
    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_c4ca64d626ec7428a3957988.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.686854;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_8289b89d455743bace28b7d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_d1135a5a24c11b11ea38deb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738000;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_c4ca64d626ec7428a3957988.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686854;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_8289b89d455743bace28b7d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.762000;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_d417f45afb6b93350e1c4968.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.043000;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_e863ce92b79caa51c59eae82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_95e3a7dcefd5c5ad1d3db605.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.048000;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_dbe06b427ce1478227ba8f48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943000;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_c4ca64d626ec7428a3957988.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.686854;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_8289b89d455743bace28b7d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762000;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_bbc2025e247a7ee8efcdd3e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738000;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_6eb60f8dcb0f81c9cbe76ef3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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.000000,0.262155,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.262155,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.262155,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);-ms-transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);-webkit-transform:matrix(0.002208,0.262146,-0.249991,0.002105,0,0);}
.m5{transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238407,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:25.974000px;}
.v1{vertical-align:35.964000px;}
.ls8{letter-spacing:-3.120000px;}
.ls5{letter-spacing:-1.638000px;}
.ls1{letter-spacing:-1.620000px;}
.ls7{letter-spacing:-1.560000px;}
.ls2{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.468000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:5.462400px;}
.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;}
}
.wsc8{word-spacing:-21.816000px;}
.ws1{word-spacing:-20.196000px;}
.ws77{word-spacing:-16.536000px;}
.wsf5{word-spacing:-15.264000px;}
.wsf4{word-spacing:-14.544000px;}
.ws1a{word-spacing:-14.196000px;}
.wsef{word-spacing:-13.416000px;}
.ws78{word-spacing:-12.558000px;}
.wsee{word-spacing:-11.076000px;}
.ws3{word-spacing:-10.368000px;}
.ws2{word-spacing:-9.640488px;}
.ws94{word-spacing:-8.892000px;}
.wsdd{word-spacing:-8.658000px;}
.ws58{word-spacing:-8.502000px;}
.ws3f{word-spacing:-7.644000px;}
.wsb7{word-spacing:-7.410000px;}
.ws4b{word-spacing:-7.098000px;}
.wsf{word-spacing:-6.864000px;}
.wsaa{word-spacing:-6.396000px;}
.wsb8{word-spacing:-6.318000px;}
.wsf0{word-spacing:-6.162000px;}
.ws3a{word-spacing:-5.928000px;}
.wsc1{word-spacing:-5.148000px;}
.wscb{word-spacing:-4.968000px;}
.ws7e{word-spacing:-4.914000px;}
.ws9b{word-spacing:-4.836000px;}
.ws2d{word-spacing:-4.680000px;}
.wsc4{word-spacing:-4.602000px;}
.ws36{word-spacing:-4.212000px;}
.wsc{word-spacing:-4.134000px;}
.ws66{word-spacing:-3.822000px;}
.wsa{word-spacing:-3.744000px;}
.wsd2{word-spacing:-3.666000px;}
.wsd{word-spacing:-3.510000px;}
.wsbb{word-spacing:-3.432000px;}
.wsab{word-spacing:-3.276000px;}
.wsf2{word-spacing:-3.198000px;}
.ws28{word-spacing:-3.042000px;}
.wse1{word-spacing:-2.964000px;}
.wsf6{word-spacing:-2.952000px;}
.ws2f{word-spacing:-2.730000px;}
.wsda{word-spacing:-2.652000px;}
.wsa6{word-spacing:-2.592000px;}
.ws60{word-spacing:-2.574000px;}
.wsdf{word-spacing:-2.496000px;}
.ws91{word-spacing:-2.340000px;}
.wsd1{word-spacing:-2.184000px;}
.ws57{word-spacing:-2.028000px;}
.ws39{word-spacing:-1.950000px;}
.ws9a{word-spacing:-1.656000px;}
.wsca{word-spacing:-1.638000px;}
.ws9e{word-spacing:-1.560000px;}
.wse4{word-spacing:-1.482000px;}
.wsb9{word-spacing:-1.404000px;}
.wscc{word-spacing:-1.326000px;}
.ws41{word-spacing:-1.248000px;}
.ws2e{word-spacing:-1.170000px;}
.ws43{word-spacing:-1.092000px;}
.ws47{word-spacing:-1.014000px;}
.ws65{word-spacing:-0.858000px;}
.wsb{word-spacing:-0.780000px;}
.ws38{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.594000px;}
.wsf1{word-spacing:-0.546000px;}
.ws5b{word-spacing:-0.390000px;}
.wsf3{word-spacing:-0.238792px;}
.ws0{word-spacing:-0.205259px;}
.wsbe{word-spacing:-0.156000px;}
.ws4{word-spacing:0.000000px;}
.wse3{word-spacing:0.078000px;}
.ws19{word-spacing:0.378000px;}
.ws51{word-spacing:0.432000px;}
.ws53{word-spacing:0.468000px;}
.ws13{word-spacing:0.648000px;}
.ws5a{word-spacing:0.780000px;}
.wsc9{word-spacing:0.858000px;}
.wsc7{word-spacing:1.092000px;}
.ws11{word-spacing:1.242000px;}
.ws86{word-spacing:1.560000px;}
.ws97{word-spacing:1.638000px;}
.wsd0{word-spacing:1.716000px;}
.wse6{word-spacing:1.950000px;}
.wse5{word-spacing:2.106000px;}
.ws79{word-spacing:2.262000px;}
.ws33{word-spacing:2.340000px;}
.ws7f{word-spacing:2.574000px;}
.ws7a{word-spacing:2.730000px;}
.wsa5{word-spacing:2.964000px;}
.ws95{word-spacing:3.120000px;}
.ws18{word-spacing:3.132000px;}
.ws27{word-spacing:3.198000px;}
.ws73{word-spacing:3.276000px;}
.ws7d{word-spacing:3.354000px;}
.wsd9{word-spacing:3.432000px;}
.wsc6{word-spacing:3.588000px;}
.wsae{word-spacing:3.600000px;}
.ws14{word-spacing:3.618000px;}
.ws17{word-spacing:3.888000px;}
.ws10{word-spacing:3.900000px;}
.ws8d{word-spacing:3.978000px;}
.ws98{word-spacing:4.134000px;}
.ws34{word-spacing:4.212000px;}
.ws96{word-spacing:4.290000px;}
.ws59{word-spacing:4.368000px;}
.ws1e{word-spacing:4.446000px;}
.wsa1{word-spacing:4.758000px;}
.ws37{word-spacing:4.914000px;}
.ws55{word-spacing:4.992000px;}
.ws68{word-spacing:5.148000px;}
.wsa2{word-spacing:5.226000px;}
.ws8f{word-spacing:5.304000px;}
.wsdc{word-spacing:5.382000px;}
.ws2a{word-spacing:5.460000px;}
.wsb6{word-spacing:5.538000px;}
.ws5d{word-spacing:5.694000px;}
.wsb5{word-spacing:5.772000px;}
.ws93{word-spacing:5.850000px;}
.ws4a{word-spacing:6.084000px;}
.ws35{word-spacing:6.162000px;}
.ws8{word-spacing:6.240000px;}
.ws3c{word-spacing:6.396000px;}
.ws69{word-spacing:6.474000px;}
.ws5c{word-spacing:6.552000px;}
.ws4e{word-spacing:6.630000px;}
.ws3e{word-spacing:6.708000px;}
.wsde{word-spacing:6.786000px;}
.wsa9{word-spacing:6.864000px;}
.ws84{word-spacing:7.020000px;}
.ws49{word-spacing:7.098000px;}
.wsaf{word-spacing:7.176000px;}
.wsdb{word-spacing:7.254000px;}
.ws32{word-spacing:7.332000px;}
.ws85{word-spacing:7.410000px;}
.ws70{word-spacing:7.566000px;}
.ws87{word-spacing:7.722000px;}
.ws75{word-spacing:7.878000px;}
.ws6d{word-spacing:7.956000px;}
.wsb2{word-spacing:8.112000px;}
.ws6e{word-spacing:8.190000px;}
.ws7b{word-spacing:8.268000px;}
.ws2c{word-spacing:8.346000px;}
.wsd7{word-spacing:8.424000px;}
.ws76{word-spacing:8.580000px;}
.ws56{word-spacing:8.658000px;}
.wsbd{word-spacing:8.736000px;}
.ws22{word-spacing:8.814000px;}
.wsac{word-spacing:8.928000px;}
.ws48{word-spacing:8.970000px;}
.wsd3{word-spacing:9.126000px;}
.ws62{word-spacing:9.204000px;}
.wsbc{word-spacing:9.216000px;}
.wsc3{word-spacing:9.282000px;}
.ws82{word-spacing:9.360000px;}
.wsb3{word-spacing:9.438000px;}
.wse0{word-spacing:9.672000px;}
.ws54{word-spacing:9.828000px;}
.wsa4{word-spacing:9.906000px;}
.ws21{word-spacing:9.984000px;}
.wsea{word-spacing:10.218000px;}
.ws63{word-spacing:10.296000px;}
.wse8{word-spacing:10.374000px;}
.ws4c{word-spacing:10.608000px;}
.ws26{word-spacing:10.686000px;}
.ws72{word-spacing:10.764000px;}
.ws12{word-spacing:10.854000px;}
.ws67{word-spacing:10.872000px;}
.wsd6{word-spacing:10.920000px;}
.wse2{word-spacing:10.998000px;}
.wse9{word-spacing:11.076000px;}
.ws1d{word-spacing:11.232000px;}
.wsa3{word-spacing:11.310000px;}
.wsba{word-spacing:11.388000px;}
.ws7c{word-spacing:11.466000px;}
.ws7{word-spacing:11.622000px;}
.ws50{word-spacing:11.778000px;}
.ws90{word-spacing:11.856000px;}
.ws4f{word-spacing:11.934000px;}
.ws16{word-spacing:12.042000px;}
.ws5e{word-spacing:12.090000px;}
.ws4d{word-spacing:12.168000px;}
.ws6a{word-spacing:12.324000px;}
.ws6b{word-spacing:12.480000px;}
.wsa7{word-spacing:12.636000px;}
.ws9f{word-spacing:12.792000px;}
.ws25{word-spacing:12.870000px;}
.ws3b{word-spacing:13.026000px;}
.wsc2{word-spacing:13.104000px;}
.ws74{word-spacing:13.182000px;}
.ws61{word-spacing:13.416000px;}
.wsd4{word-spacing:13.728000px;}
.ws9d{word-spacing:13.806000px;}
.wsb1{word-spacing:13.884000px;}
.ws1b{word-spacing:13.962000px;}
.wsa8{word-spacing:14.040000px;}
.ws5f{word-spacing:14.118000px;}
.ws45{word-spacing:14.274000px;}
.ws80{word-spacing:14.352000px;}
.ws2b{word-spacing:14.430000px;}
.ws30{word-spacing:14.664000px;}
.wsa0{word-spacing:14.820000px;}
.wsce{word-spacing:14.898000px;}
.ws6c{word-spacing:15.132000px;}
.wsb4{word-spacing:15.600000px;}
.ws71{word-spacing:15.834000px;}
.ws9c{word-spacing:15.912000px;}
.wsb0{word-spacing:16.146000px;}
.ws42{word-spacing:16.380000px;}
.ws24{word-spacing:16.848000px;}
.ws3d{word-spacing:16.926000px;}
.wse{word-spacing:17.004000px;}
.ws8c{word-spacing:17.550000px;}
.ws64{word-spacing:17.628000px;}
.ws99{word-spacing:18.018000px;}
.ws83{word-spacing:18.642000px;}
.ws6f{word-spacing:19.188000px;}
.wsbf{word-spacing:19.266000px;}
.ws23{word-spacing:19.344000px;}
.wsc0{word-spacing:19.968000px;}
.ws88{word-spacing:20.436000px;}
.ws8b{word-spacing:20.592000px;}
.wsec{word-spacing:20.826000px;}
.wscf{word-spacing:20.982000px;}
.ws92{word-spacing:21.138000px;}
.wsd5{word-spacing:21.294000px;}
.ws89{word-spacing:21.528000px;}
.wsed{word-spacing:22.386000px;}
.ws6{word-spacing:22.854000px;}
.ws81{word-spacing:23.712000px;}
.wseb{word-spacing:23.946000px;}
.ws1f{word-spacing:25.194000px;}
.wscd{word-spacing:25.350000px;}
.ws1c{word-spacing:25.974000px;}
.wsc5{word-spacing:26.598000px;}
.ws5{word-spacing:26.676000px;}
.ws20{word-spacing:28.314000px;}
.wse7{word-spacing:30.108000px;}
.ws52{word-spacing:30.420000px;}
.ws29{word-spacing:30.498000px;}
.ws40{word-spacing:30.654000px;}
.ws46{word-spacing:32.292000px;}
.ws44{word-spacing:32.526000px;}
.ws8e{word-spacing:34.476000px;}
.wsd8{word-spacing:35.256000px;}
.wsad{word-spacing:36.114000px;}
.ws8a{word-spacing:36.504000px;}
.ws31{word-spacing:40.092000px;}
.ws9{word-spacing:41.964000px;}
._8{margin-left:-12.144000px;}
._c{margin-left:-8.788800px;}
._2{margin-left:-7.776000px;}
._b{margin-left:-6.724200px;}
._1{margin-left:-4.104000px;}
._3{margin-left:-3.024000px;}
._5{margin-left:-1.605600px;}
._0{width:1.285200px;}
._4{width:2.488200px;}
._9{width:3.588000px;}
._e{width:5.536200px;}
._d{width:8.700000px;}
._a{width:11.785200px;}
._7{width:154.008000px;}
._6{width:164.602800px;}
.fc5{color:rgb(0,104,56);}
.fc4{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(29,100,52);}
.fs9{font-size:45.474000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:62.964000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs5{font-size:108.000000px;}
.fsb{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs0{font-size:152.428800px;}
.fs1{font-size:205.258874px;}
.fsc{font-size:238.791600px;}
.fs3{font-size:871.128000px;}
.fs4{font-size:958.240800px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.816000px;}
.y12e{bottom:79.815900px;}
.y10b{bottom:92.099400px;}
.y21{bottom:92.267850px;}
.y82{bottom:92.676300px;}
.yc0{bottom:102.702750px;}
.y12d{bottom:105.315900px;}
.y20{bottom:110.267850px;}
.yf1{bottom:114.775200px;}
.y105{bottom:116.572050px;}
.ya8{bottom:119.099400px;}
.y81{bottom:119.676300px;}
.y1f{bottom:128.267850px;}
.ybf{bottom:129.702750px;}
.y12c{bottom:130.815900px;}
.yf0{bottom:141.775200px;}
.y104{bottom:143.572050px;}
.y3a{bottom:146.099400px;}
.y1e{bottom:146.267850px;}
.y80{bottom:146.676300px;}
.y12f{bottom:152.094150px;}
.y12b{bottom:156.315900px;}
.ybe{bottom:156.702750px;}
.y4b{bottom:163.107300px;}
.y1d{bottom:164.267850px;}
.yef{bottom:168.775200px;}
.y39{bottom:170.099400px;}
.y103{bottom:170.572050px;}
.ya7{bottom:173.099400px;}
.y7f{bottom:173.676300px;}
.ybd{bottom:183.702750px;}
.y1c{bottom:184.394100px;}
.y6d{bottom:188.134050px;}
.y4a{bottom:190.107300px;}
.y12a{bottom:190.319850px;}
.yee{bottom:195.775200px;}
.y102{bottom:197.572050px;}
.ya6{bottom:200.099400px;}
.y7e{bottom:200.676300px;}
.y1b{bottom:202.394100px;}
.yaa{bottom:215.099400px;}
.y6c{bottom:215.134050px;}
.y129{bottom:215.819850px;}
.y49{bottom:217.107300px;}
.y1a{bottom:220.394100px;}
.yed{bottom:222.775200px;}
.y101{bottom:224.572050px;}
.ya5{bottom:227.099400px;}
.y7d{bottom:227.676300px;}
.ybc{bottom:227.710650px;}
.y19{bottom:238.394100px;}
.ya9{bottom:239.099400px;}
.y128{bottom:241.319850px;}
.y6b{bottom:242.134050px;}
.y48{bottom:244.107300px;}
.ycd{bottom:251.543550px;}
.y100{bottom:251.572050px;}
.ybb{bottom:251.710650px;}
.ya4{bottom:254.099400px;}
.y7c{bottom:254.676300px;}
.y18{bottom:256.394100px;}
.yec{bottom:266.783100px;}
.y127{bottom:266.819850px;}
.y6a{bottom:269.134050px;}
.y47{bottom:271.107300px;}
.y17{bottom:274.394100px;}
.ycc{bottom:278.543550px;}
.yff{bottom:278.572050px;}
.ya3{bottom:281.099400px;}
.y7b{bottom:281.676300px;}
.y16{bottom:292.394100px;}
.yeb{bottom:293.783100px;}
.y69{bottom:296.134050px;}
.y46{bottom:298.107300px;}
.y126{bottom:300.823800px;}
.ycb{bottom:305.543550px;}
.yfe{bottom:305.572050px;}
.ya2{bottom:308.099400px;}
.y7a{bottom:308.676300px;}
.yea{bottom:320.783100px;}
.y68{bottom:323.134050px;}
.y45{bottom:325.107300px;}
.y125{bottom:326.323800px;}
.yca{bottom:332.543550px;}
.yfd{bottom:332.572050px;}
.ya1{bottom:335.099400px;}
.ye9{bottom:347.783100px;}
.y67{bottom:350.134050px;}
.y124{bottom:351.823800px;}
.y44{bottom:352.107300px;}
.y59{bottom:356.519400px;}
.y15{bottom:359.427300px;}
.yc9{bottom:359.543550px;}
.yfc{bottom:359.572050px;}
.ya0{bottom:362.099400px;}
.y79{bottom:365.440050px;}
.ye8{bottom:374.783100px;}
.y66{bottom:377.134050px;}
.y123{bottom:377.323800px;}
.y43{bottom:379.107300px;}
.y58{bottom:383.519400px;}
.ydb{bottom:384.850200px;}
.y14{bottom:386.427300px;}
.yc8{bottom:386.543550px;}
.y9f{bottom:389.099400px;}
.ye7{bottom:401.783100px;}
.yfb{bottom:403.579800px;}
.y65{bottom:404.134050px;}
.y145{bottom:405.351600px;}
.y42{bottom:406.107300px;}
.y57{bottom:410.519400px;}
.y122{bottom:411.327750px;}
.yda{bottom:411.850200px;}
.y13{bottom:413.427300px;}
.yc7{bottom:413.543550px;}
.y9e{bottom:416.099400px;}
.y144{bottom:427.851600px;}
.ye6{bottom:428.783100px;}
.yfa{bottom:430.579800px;}
.y64{bottom:431.134050px;}
.y121{bottom:436.827750px;}
.y56{bottom:437.519400px;}
.yd9{bottom:438.850200px;}
.y78{bottom:440.203800px;}
.y12{bottom:440.427300px;}
.y9d{bottom:443.099400px;}
.y41{bottom:450.115200px;}
.y143{bottom:450.351600px;}
.ye5{bottom:455.783100px;}
.yf9{bottom:457.579800px;}
.y63{bottom:458.134050px;}
.y120{bottom:462.327750px;}
.y55{bottom:464.519400px;}
.yd8{bottom:465.850200px;}
.y77{bottom:467.203800px;}
.y11{bottom:467.427300px;}
.y9c{bottom:470.099400px;}
.y40{bottom:477.115200px;}
.ye4{bottom:482.783100px;}
.yf8{bottom:484.579800px;}
.y62{bottom:485.134050px;}
.y11f{bottom:487.827750px;}
.yc6{bottom:489.351450px;}
.y54{bottom:491.519400px;}
.yd7{bottom:492.850200px;}
.y76{bottom:494.203800px;}
.y10{bottom:494.427300px;}
.y142{bottom:495.351600px;}
.y9b{bottom:497.099400px;}
.y3f{bottom:504.115200px;}
.yf7{bottom:511.579800px;}
.y11e{bottom:513.327750px;}
.yc5{bottom:513.351450px;}
.y10a{bottom:514.107300px;}
.y141{bottom:517.851600px;}
.y53{bottom:518.519400px;}
.yd6{bottom:519.850200px;}
.y75{bottom:521.203800px;}
.yf{bottom:521.427300px;}
.y9a{bottom:524.099400px;}
.ye3{bottom:526.791000px;}
.y61{bottom:529.141950px;}
.y3e{bottom:531.115200px;}
.yf6{bottom:538.579800px;}
.y11d{bottom:538.827750px;}
.y109{bottom:541.107300px;}
.y52{bottom:545.519400px;}
.yd5{bottom:546.850200px;}
.y74{bottom:548.203800px;}
.ye{bottom:548.427300px;}
.y99{bottom:551.099400px;}
.ye2{bottom:553.791000px;}
.y60{bottom:556.141950px;}
.y3d{bottom:558.115200px;}
.yf5{bottom:565.579800px;}
.y108{bottom:568.107300px;}
.y51{bottom:572.519400px;}
.y11c{bottom:572.831700px;}
.yd4{bottom:573.850200px;}
.y73{bottom:575.203800px;}
.yd{bottom:575.427300px;}
.y98{bottom:578.099400px;}
.ye1{bottom:580.791000px;}
.y5f{bottom:583.141950px;}
.y3c{bottom:585.115200px;}
.y140{bottom:585.351600px;}
.y107{bottom:595.107300px;}
.y11b{bottom:598.331700px;}
.y50{bottom:599.519400px;}
.yd3{bottom:600.850200px;}
.y72{bottom:602.203800px;}
.yc{bottom:602.427300px;}
.y97{bottom:605.099400px;}
.ye0{bottom:607.791000px;}
.y5e{bottom:610.141950px;}
.y3b{bottom:612.115200px;}
.y13f{bottom:616.355550px;}
.y106{bottom:622.107300px;}
.yf4{bottom:622.343700px;}
.y11a{bottom:623.831700px;}
.y4f{bottom:626.519400px;}
.yd2{bottom:627.850200px;}
.y71{bottom:629.203800px;}
.yb{bottom:629.427300px;}
.ydf{bottom:634.791000px;}
.y5d{bottom:637.141950px;}
.y38{bottom:639.115200px;}
.y2{bottom:641.213550px;}
.y96{bottom:649.107300px;}
.y4e{bottom:653.519400px;}
.yd1{bottom:654.850200px;}
.y70{bottom:656.203800px;}
.ya{bottom:656.427300px;}
.y119{bottom:657.835650px;}
.yde{bottom:661.791000px;}
.y5c{bottom:664.141950px;}
.y37{bottom:666.115200px;}
.y13e{bottom:674.111550px;}
.y95{bottom:676.107300px;}
.yd0{bottom:681.850200px;}
.y118{bottom:683.335650px;}
.y5b{bottom:691.141950px;}
.y36{bottom:693.115200px;}
.yf3{bottom:697.107450px;}
.y4d{bottom:697.527300px;}
.y6f{bottom:700.211700px;}
.y94{bottom:703.107300px;}
.y13d{bottom:705.115350px;}
.ydd{bottom:705.798900px;}
.y117{bottom:708.835650px;}
.y9{bottom:713.191050px;}
.y35{bottom:720.115200px;}
.yba{bottom:720.726450px;}
.yf2{bottom:721.107450px;}
.y4c{bottom:721.527300px;}
.y6e{bottom:724.211700px;}
.ycf{bottom:725.858100px;}
.ydc{bottom:729.798900px;}
.y93{bottom:730.107300px;}
.y116{bottom:734.335650px;}
.y5a{bottom:735.149700px;}
.y34{bottom:747.115200px;}
.yb9{bottom:747.726450px;}
.yce{bottom:749.858100px;}
.y92{bottom:757.107300px;}
.y115{bottom:759.835650px;}
.y13c{bottom:761.971350px;}
.y1{bottom:767.316150px;}
.y33{bottom:774.115200px;}
.yb8{bottom:774.726450px;}
.y91{bottom:784.107300px;}
.y13b{bottom:784.471350px;}
.y114{bottom:793.839600px;}
.y8{bottom:795.702900px;}
.y32{bottom:801.115200px;}
.yb7{bottom:801.726450px;}
.y13a{bottom:806.971350px;}
.y90{bottom:811.107300px;}
.y113{bottom:819.339600px;}
.y31{bottom:828.115200px;}
.yb6{bottom:828.726450px;}
.y139{bottom:829.471350px;}
.y8f{bottom:838.107300px;}
.y7{bottom:839.710650px;}
.y112{bottom:844.839600px;}
.y138{bottom:851.971350px;}
.y30{bottom:855.115200px;}
.yb5{bottom:855.726450px;}
.y8e{bottom:865.107300px;}
.y111{bottom:870.339600px;}
.y2f{bottom:882.115200px;}
.yb4{bottom:882.726450px;}
.y137{bottom:882.975150px;}
.y6{bottom:884.710650px;}
.y8d{bottom:892.107300px;}
.y110{bottom:904.343550px;}
.y2e{bottom:909.115200px;}
.yb3{bottom:909.726450px;}
.y8c{bottom:919.107300px;}
.y10f{bottom:929.843550px;}
.y2d{bottom:936.115200px;}
.yb2{bottom:936.726450px;}
.y136{bottom:939.831150px;}
.y8b{bottom:946.107300px;}
.y10e{bottom:955.343550px;}
.y2c{bottom:963.115200px;}
.yb1{bottom:963.726450px;}
.y135{bottom:970.834950px;}
.y5{bottom:972.173100px;}
.y8a{bottom:973.107300px;}
.y10d{bottom:980.843550px;}
.y2b{bottom:990.115200px;}
.yb0{bottom:990.726450px;}
.y89{bottom:1017.115050px;}
.y2a{bottom:1017.115200px;}
.yaf{bottom:1017.726450px;}
.y10c{bottom:1023.351450px;}
.y134{bottom:1027.690950px;}
.y88{bottom:1044.115050px;}
.y29{bottom:1044.115200px;}
.yae{bottom:1044.726450px;}
.y133{bottom:1050.190950px;}
.y87{bottom:1071.115050px;}
.y28{bottom:1071.115200px;}
.yad{bottom:1071.726450px;}
.y132{bottom:1072.690950px;}
.y4{bottom:1074.027300px;}
.y131{bottom:1095.190950px;}
.y86{bottom:1098.115050px;}
.y27{bottom:1098.115200px;}
.yc4{bottom:1102.367100px;}
.y85{bottom:1125.115050px;}
.y26{bottom:1125.115200px;}
.y130{bottom:1126.194900px;}
.yac{bottom:1128.490200px;}
.yc3{bottom:1129.367100px;}
.y23{bottom:1139.604000px;}
.y84{bottom:1152.115050px;}
.y25{bottom:1152.115200px;}
.yc2{bottom:1156.367100px;}
.yab{bottom:1173.490200px;}
.y83{bottom:1179.115050px;}
.y24{bottom:1179.115200px;}
.yc1{bottom:1183.367100px;}
.y22{bottom:1190.604000px;}
.ha{height:44.658000px;}
.h8{height:49.992188px;}
.hc{height:51.912000px;}
.hf{height:59.544000px;}
.he{height:60.048000px;}
.h9{height:64.506000px;}
.h7{height:90.072000px;}
.hb{height:95.832000px;}
.h2{height:102.388989px;}
.h4{height:104.544000px;}
.h3{height:153.944155px;}
.hd{height:161.720678px;}
.h5{height:585.151334px;}
.h6{height:718.680600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:52.276050px;}
.x5{left:61.653450px;}
.x3{left:71.357100px;}
.x6{left:104.173200px;}
.x7{left:108.425100px;}
.x8{left:159.448800px;}
.xc{left:163.700850px;}
.xd{left:370.563150px;}
.x9{left:782.590650px;}
.xa{left:783.811500px;}
.xb{left:805.928850px;}
.x1{left:812.505450px;}
.x2{left:815.936850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.088000pt;}
.v1{vertical-align:31.968000pt;}
.ls8{letter-spacing:-2.773333pt;}
.ls5{letter-spacing:-1.456000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls7{letter-spacing:-1.386667pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.416000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:4.855467pt;}
.wsc8{word-spacing:-19.392000pt;}
.ws1{word-spacing:-17.952000pt;}
.ws77{word-spacing:-14.698667pt;}
.wsf5{word-spacing:-13.568000pt;}
.wsf4{word-spacing:-12.928000pt;}
.ws1a{word-spacing:-12.618667pt;}
.wsef{word-spacing:-11.925333pt;}
.ws78{word-spacing:-11.162667pt;}
.wsee{word-spacing:-9.845333pt;}
.ws3{word-spacing:-9.216000pt;}
.ws2{word-spacing:-8.569323pt;}
.ws94{word-spacing:-7.904000pt;}
.wsdd{word-spacing:-7.696000pt;}
.ws58{word-spacing:-7.557333pt;}
.ws3f{word-spacing:-6.794667pt;}
.wsb7{word-spacing:-6.586667pt;}
.ws4b{word-spacing:-6.309333pt;}
.wsf{word-spacing:-6.101333pt;}
.wsaa{word-spacing:-5.685333pt;}
.wsb8{word-spacing:-5.616000pt;}
.wsf0{word-spacing:-5.477333pt;}
.ws3a{word-spacing:-5.269333pt;}
.wsc1{word-spacing:-4.576000pt;}
.wscb{word-spacing:-4.416000pt;}
.ws7e{word-spacing:-4.368000pt;}
.ws9b{word-spacing:-4.298667pt;}
.ws2d{word-spacing:-4.160000pt;}
.wsc4{word-spacing:-4.090667pt;}
.ws36{word-spacing:-3.744000pt;}
.wsc{word-spacing:-3.674667pt;}
.ws66{word-spacing:-3.397333pt;}
.wsa{word-spacing:-3.328000pt;}
.wsd2{word-spacing:-3.258667pt;}
.wsd{word-spacing:-3.120000pt;}
.wsbb{word-spacing:-3.050667pt;}
.wsab{word-spacing:-2.912000pt;}
.wsf2{word-spacing:-2.842667pt;}
.ws28{word-spacing:-2.704000pt;}
.wse1{word-spacing:-2.634667pt;}
.wsf6{word-spacing:-2.624000pt;}
.ws2f{word-spacing:-2.426667pt;}
.wsda{word-spacing:-2.357333pt;}
.wsa6{word-spacing:-2.304000pt;}
.ws60{word-spacing:-2.288000pt;}
.wsdf{word-spacing:-2.218667pt;}
.ws91{word-spacing:-2.080000pt;}
.wsd1{word-spacing:-1.941333pt;}
.ws57{word-spacing:-1.802667pt;}
.ws39{word-spacing:-1.733333pt;}
.ws9a{word-spacing:-1.472000pt;}
.wsca{word-spacing:-1.456000pt;}
.ws9e{word-spacing:-1.386667pt;}
.wse4{word-spacing:-1.317333pt;}
.wsb9{word-spacing:-1.248000pt;}
.wscc{word-spacing:-1.178667pt;}
.ws41{word-spacing:-1.109333pt;}
.ws2e{word-spacing:-1.040000pt;}
.ws43{word-spacing:-0.970667pt;}
.ws47{word-spacing:-0.901333pt;}
.ws65{word-spacing:-0.762667pt;}
.wsb{word-spacing:-0.693333pt;}
.ws38{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.528000pt;}
.wsf1{word-spacing:-0.485333pt;}
.ws5b{word-spacing:-0.346667pt;}
.wsf3{word-spacing:-0.212259pt;}
.ws0{word-spacing:-0.182452pt;}
.wsbe{word-spacing:-0.138667pt;}
.ws4{word-spacing:0.000000pt;}
.wse3{word-spacing:0.069333pt;}
.ws19{word-spacing:0.336000pt;}
.ws51{word-spacing:0.384000pt;}
.ws53{word-spacing:0.416000pt;}
.ws13{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.693333pt;}
.wsc9{word-spacing:0.762667pt;}
.wsc7{word-spacing:0.970667pt;}
.ws11{word-spacing:1.104000pt;}
.ws86{word-spacing:1.386667pt;}
.ws97{word-spacing:1.456000pt;}
.wsd0{word-spacing:1.525333pt;}
.wse6{word-spacing:1.733333pt;}
.wse5{word-spacing:1.872000pt;}
.ws79{word-spacing:2.010667pt;}
.ws33{word-spacing:2.080000pt;}
.ws7f{word-spacing:2.288000pt;}
.ws7a{word-spacing:2.426667pt;}
.wsa5{word-spacing:2.634667pt;}
.ws95{word-spacing:2.773333pt;}
.ws18{word-spacing:2.784000pt;}
.ws27{word-spacing:2.842667pt;}
.ws73{word-spacing:2.912000pt;}
.ws7d{word-spacing:2.981333pt;}
.wsd9{word-spacing:3.050667pt;}
.wsc6{word-spacing:3.189333pt;}
.wsae{word-spacing:3.200000pt;}
.ws14{word-spacing:3.216000pt;}
.ws17{word-spacing:3.456000pt;}
.ws10{word-spacing:3.466667pt;}
.ws8d{word-spacing:3.536000pt;}
.ws98{word-spacing:3.674667pt;}
.ws34{word-spacing:3.744000pt;}
.ws96{word-spacing:3.813333pt;}
.ws59{word-spacing:3.882667pt;}
.ws1e{word-spacing:3.952000pt;}
.wsa1{word-spacing:4.229333pt;}
.ws37{word-spacing:4.368000pt;}
.ws55{word-spacing:4.437333pt;}
.ws68{word-spacing:4.576000pt;}
.wsa2{word-spacing:4.645333pt;}
.ws8f{word-spacing:4.714667pt;}
.wsdc{word-spacing:4.784000pt;}
.ws2a{word-spacing:4.853333pt;}
.wsb6{word-spacing:4.922667pt;}
.ws5d{word-spacing:5.061333pt;}
.wsb5{word-spacing:5.130667pt;}
.ws93{word-spacing:5.200000pt;}
.ws4a{word-spacing:5.408000pt;}
.ws35{word-spacing:5.477333pt;}
.ws8{word-spacing:5.546667pt;}
.ws3c{word-spacing:5.685333pt;}
.ws69{word-spacing:5.754667pt;}
.ws5c{word-spacing:5.824000pt;}
.ws4e{word-spacing:5.893333pt;}
.ws3e{word-spacing:5.962667pt;}
.wsde{word-spacing:6.032000pt;}
.wsa9{word-spacing:6.101333pt;}
.ws84{word-spacing:6.240000pt;}
.ws49{word-spacing:6.309333pt;}
.wsaf{word-spacing:6.378667pt;}
.wsdb{word-spacing:6.448000pt;}
.ws32{word-spacing:6.517333pt;}
.ws85{word-spacing:6.586667pt;}
.ws70{word-spacing:6.725333pt;}
.ws87{word-spacing:6.864000pt;}
.ws75{word-spacing:7.002667pt;}
.ws6d{word-spacing:7.072000pt;}
.wsb2{word-spacing:7.210667pt;}
.ws6e{word-spacing:7.280000pt;}
.ws7b{word-spacing:7.349333pt;}
.ws2c{word-spacing:7.418667pt;}
.wsd7{word-spacing:7.488000pt;}
.ws76{word-spacing:7.626667pt;}
.ws56{word-spacing:7.696000pt;}
.wsbd{word-spacing:7.765333pt;}
.ws22{word-spacing:7.834667pt;}
.wsac{word-spacing:7.936000pt;}
.ws48{word-spacing:7.973333pt;}
.wsd3{word-spacing:8.112000pt;}
.ws62{word-spacing:8.181333pt;}
.wsbc{word-spacing:8.192000pt;}
.wsc3{word-spacing:8.250667pt;}
.ws82{word-spacing:8.320000pt;}
.wsb3{word-spacing:8.389333pt;}
.wse0{word-spacing:8.597333pt;}
.ws54{word-spacing:8.736000pt;}
.wsa4{word-spacing:8.805333pt;}
.ws21{word-spacing:8.874667pt;}
.wsea{word-spacing:9.082667pt;}
.ws63{word-spacing:9.152000pt;}
.wse8{word-spacing:9.221333pt;}
.ws4c{word-spacing:9.429333pt;}
.ws26{word-spacing:9.498667pt;}
.ws72{word-spacing:9.568000pt;}
.ws12{word-spacing:9.648000pt;}
.ws67{word-spacing:9.664000pt;}
.wsd6{word-spacing:9.706667pt;}
.wse2{word-spacing:9.776000pt;}
.wse9{word-spacing:9.845333pt;}
.ws1d{word-spacing:9.984000pt;}
.wsa3{word-spacing:10.053333pt;}
.wsba{word-spacing:10.122667pt;}
.ws7c{word-spacing:10.192000pt;}
.ws7{word-spacing:10.330667pt;}
.ws50{word-spacing:10.469333pt;}
.ws90{word-spacing:10.538667pt;}
.ws4f{word-spacing:10.608000pt;}
.ws16{word-spacing:10.704000pt;}
.ws5e{word-spacing:10.746667pt;}
.ws4d{word-spacing:10.816000pt;}
.ws6a{word-spacing:10.954667pt;}
.ws6b{word-spacing:11.093333pt;}
.wsa7{word-spacing:11.232000pt;}
.ws9f{word-spacing:11.370667pt;}
.ws25{word-spacing:11.440000pt;}
.ws3b{word-spacing:11.578667pt;}
.wsc2{word-spacing:11.648000pt;}
.ws74{word-spacing:11.717333pt;}
.ws61{word-spacing:11.925333pt;}
.wsd4{word-spacing:12.202667pt;}
.ws9d{word-spacing:12.272000pt;}
.wsb1{word-spacing:12.341333pt;}
.ws1b{word-spacing:12.410667pt;}
.wsa8{word-spacing:12.480000pt;}
.ws5f{word-spacing:12.549333pt;}
.ws45{word-spacing:12.688000pt;}
.ws80{word-spacing:12.757333pt;}
.ws2b{word-spacing:12.826667pt;}
.ws30{word-spacing:13.034667pt;}
.wsa0{word-spacing:13.173333pt;}
.wsce{word-spacing:13.242667pt;}
.ws6c{word-spacing:13.450667pt;}
.wsb4{word-spacing:13.866667pt;}
.ws71{word-spacing:14.074667pt;}
.ws9c{word-spacing:14.144000pt;}
.wsb0{word-spacing:14.352000pt;}
.ws42{word-spacing:14.560000pt;}
.ws24{word-spacing:14.976000pt;}
.ws3d{word-spacing:15.045333pt;}
.wse{word-spacing:15.114667pt;}
.ws8c{word-spacing:15.600000pt;}
.ws64{word-spacing:15.669333pt;}
.ws99{word-spacing:16.016000pt;}
.ws83{word-spacing:16.570667pt;}
.ws6f{word-spacing:17.056000pt;}
.wsbf{word-spacing:17.125333pt;}
.ws23{word-spacing:17.194667pt;}
.wsc0{word-spacing:17.749333pt;}
.ws88{word-spacing:18.165333pt;}
.ws8b{word-spacing:18.304000pt;}
.wsec{word-spacing:18.512000pt;}
.wscf{word-spacing:18.650667pt;}
.ws92{word-spacing:18.789333pt;}
.wsd5{word-spacing:18.928000pt;}
.ws89{word-spacing:19.136000pt;}
.wsed{word-spacing:19.898667pt;}
.ws6{word-spacing:20.314667pt;}
.ws81{word-spacing:21.077333pt;}
.wseb{word-spacing:21.285333pt;}
.ws1f{word-spacing:22.394667pt;}
.wscd{word-spacing:22.533333pt;}
.ws1c{word-spacing:23.088000pt;}
.wsc5{word-spacing:23.642667pt;}
.ws5{word-spacing:23.712000pt;}
.ws20{word-spacing:25.168000pt;}
.wse7{word-spacing:26.762667pt;}
.ws52{word-spacing:27.040000pt;}
.ws29{word-spacing:27.109333pt;}
.ws40{word-spacing:27.248000pt;}
.ws46{word-spacing:28.704000pt;}
.ws44{word-spacing:28.912000pt;}
.ws8e{word-spacing:30.645333pt;}
.wsd8{word-spacing:31.338667pt;}
.wsad{word-spacing:32.101333pt;}
.ws8a{word-spacing:32.448000pt;}
.ws31{word-spacing:35.637333pt;}
.ws9{word-spacing:37.301333pt;}
._8{margin-left:-10.794667pt;}
._c{margin-left:-7.812267pt;}
._2{margin-left:-6.912000pt;}
._b{margin-left:-5.977067pt;}
._1{margin-left:-3.648000pt;}
._3{margin-left:-2.688000pt;}
._5{margin-left:-1.427200pt;}
._0{width:1.142400pt;}
._4{width:2.211733pt;}
._9{width:3.189333pt;}
._e{width:4.921067pt;}
._d{width:7.733333pt;}
._a{width:10.475733pt;}
._7{width:136.896000pt;}
._6{width:146.313600pt;}
.fs9{font-size:40.421333pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:55.968000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs5{font-size:96.000000pt;}
.fsb{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs0{font-size:135.492267pt;}
.fs1{font-size:182.452332pt;}
.fsc{font-size:212.259200pt;}
.fs3{font-size:774.336000pt;}
.fs4{font-size:851.769600pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:35.392000pt;}
.y12e{bottom:70.947467pt;}
.y10b{bottom:81.866133pt;}
.y21{bottom:82.015867pt;}
.y82{bottom:82.378933pt;}
.yc0{bottom:91.291333pt;}
.y12d{bottom:93.614133pt;}
.y20{bottom:98.015867pt;}
.yf1{bottom:102.022400pt;}
.y105{bottom:103.619600pt;}
.ya8{bottom:105.866133pt;}
.y81{bottom:106.378933pt;}
.y1f{bottom:114.015867pt;}
.ybf{bottom:115.291333pt;}
.y12c{bottom:116.280800pt;}
.yf0{bottom:126.022400pt;}
.y104{bottom:127.619600pt;}
.y3a{bottom:129.866133pt;}
.y1e{bottom:130.015867pt;}
.y80{bottom:130.378933pt;}
.y12f{bottom:135.194800pt;}
.y12b{bottom:138.947467pt;}
.ybe{bottom:139.291333pt;}
.y4b{bottom:144.984267pt;}
.y1d{bottom:146.015867pt;}
.yef{bottom:150.022400pt;}
.y39{bottom:151.199467pt;}
.y103{bottom:151.619600pt;}
.ya7{bottom:153.866133pt;}
.y7f{bottom:154.378933pt;}
.ybd{bottom:163.291333pt;}
.y1c{bottom:163.905867pt;}
.y6d{bottom:167.230267pt;}
.y4a{bottom:168.984267pt;}
.y12a{bottom:169.173200pt;}
.yee{bottom:174.022400pt;}
.y102{bottom:175.619600pt;}
.ya6{bottom:177.866133pt;}
.y7e{bottom:178.378933pt;}
.y1b{bottom:179.905867pt;}
.yaa{bottom:191.199467pt;}
.y6c{bottom:191.230267pt;}
.y129{bottom:191.839867pt;}
.y49{bottom:192.984267pt;}
.y1a{bottom:195.905867pt;}
.yed{bottom:198.022400pt;}
.y101{bottom:199.619600pt;}
.ya5{bottom:201.866133pt;}
.y7d{bottom:202.378933pt;}
.ybc{bottom:202.409467pt;}
.y19{bottom:211.905867pt;}
.ya9{bottom:212.532800pt;}
.y128{bottom:214.506533pt;}
.y6b{bottom:215.230267pt;}
.y48{bottom:216.984267pt;}
.ycd{bottom:223.594267pt;}
.y100{bottom:223.619600pt;}
.ybb{bottom:223.742800pt;}
.ya4{bottom:225.866133pt;}
.y7c{bottom:226.378933pt;}
.y18{bottom:227.905867pt;}
.yec{bottom:237.140533pt;}
.y127{bottom:237.173200pt;}
.y6a{bottom:239.230267pt;}
.y47{bottom:240.984267pt;}
.y17{bottom:243.905867pt;}
.ycc{bottom:247.594267pt;}
.yff{bottom:247.619600pt;}
.ya3{bottom:249.866133pt;}
.y7b{bottom:250.378933pt;}
.y16{bottom:259.905867pt;}
.yeb{bottom:261.140533pt;}
.y69{bottom:263.230267pt;}
.y46{bottom:264.984267pt;}
.y126{bottom:267.398933pt;}
.ycb{bottom:271.594267pt;}
.yfe{bottom:271.619600pt;}
.ya2{bottom:273.866133pt;}
.y7a{bottom:274.378933pt;}
.yea{bottom:285.140533pt;}
.y68{bottom:287.230267pt;}
.y45{bottom:288.984267pt;}
.y125{bottom:290.065600pt;}
.yca{bottom:295.594267pt;}
.yfd{bottom:295.619600pt;}
.ya1{bottom:297.866133pt;}
.ye9{bottom:309.140533pt;}
.y67{bottom:311.230267pt;}
.y124{bottom:312.732267pt;}
.y44{bottom:312.984267pt;}
.y59{bottom:316.906133pt;}
.y15{bottom:319.490933pt;}
.yc9{bottom:319.594267pt;}
.yfc{bottom:319.619600pt;}
.ya0{bottom:321.866133pt;}
.y79{bottom:324.835600pt;}
.ye8{bottom:333.140533pt;}
.y66{bottom:335.230267pt;}
.y123{bottom:335.398933pt;}
.y43{bottom:336.984267pt;}
.y58{bottom:340.906133pt;}
.ydb{bottom:342.089067pt;}
.y14{bottom:343.490933pt;}
.yc8{bottom:343.594267pt;}
.y9f{bottom:345.866133pt;}
.ye7{bottom:357.140533pt;}
.yfb{bottom:358.737600pt;}
.y65{bottom:359.230267pt;}
.y145{bottom:360.312533pt;}
.y42{bottom:360.984267pt;}
.y57{bottom:364.906133pt;}
.y122{bottom:365.624667pt;}
.yda{bottom:366.089067pt;}
.y13{bottom:367.490933pt;}
.yc7{bottom:367.594267pt;}
.y9e{bottom:369.866133pt;}
.y144{bottom:380.312533pt;}
.ye6{bottom:381.140533pt;}
.yfa{bottom:382.737600pt;}
.y64{bottom:383.230267pt;}
.y121{bottom:388.291333pt;}
.y56{bottom:388.906133pt;}
.yd9{bottom:390.089067pt;}
.y78{bottom:391.292267pt;}
.y12{bottom:391.490933pt;}
.y9d{bottom:393.866133pt;}
.y41{bottom:400.102400pt;}
.y143{bottom:400.312533pt;}
.ye5{bottom:405.140533pt;}
.yf9{bottom:406.737600pt;}
.y63{bottom:407.230267pt;}
.y120{bottom:410.958000pt;}
.y55{bottom:412.906133pt;}
.yd8{bottom:414.089067pt;}
.y77{bottom:415.292267pt;}
.y11{bottom:415.490933pt;}
.y9c{bottom:417.866133pt;}
.y40{bottom:424.102400pt;}
.ye4{bottom:429.140533pt;}
.yf8{bottom:430.737600pt;}
.y62{bottom:431.230267pt;}
.y11f{bottom:433.624667pt;}
.yc6{bottom:434.979067pt;}
.y54{bottom:436.906133pt;}
.yd7{bottom:438.089067pt;}
.y76{bottom:439.292267pt;}
.y10{bottom:439.490933pt;}
.y142{bottom:440.312533pt;}
.y9b{bottom:441.866133pt;}
.y3f{bottom:448.102400pt;}
.yf7{bottom:454.737600pt;}
.y11e{bottom:456.291333pt;}
.yc5{bottom:456.312400pt;}
.y10a{bottom:456.984267pt;}
.y141{bottom:460.312533pt;}
.y53{bottom:460.906133pt;}
.yd6{bottom:462.089067pt;}
.y75{bottom:463.292267pt;}
.yf{bottom:463.490933pt;}
.y9a{bottom:465.866133pt;}
.ye3{bottom:468.258667pt;}
.y61{bottom:470.348400pt;}
.y3e{bottom:472.102400pt;}
.yf6{bottom:478.737600pt;}
.y11d{bottom:478.958000pt;}
.y109{bottom:480.984267pt;}
.y52{bottom:484.906133pt;}
.yd5{bottom:486.089067pt;}
.y74{bottom:487.292267pt;}
.ye{bottom:487.490933pt;}
.y99{bottom:489.866133pt;}
.ye2{bottom:492.258667pt;}
.y60{bottom:494.348400pt;}
.y3d{bottom:496.102400pt;}
.yf5{bottom:502.737600pt;}
.y108{bottom:504.984267pt;}
.y51{bottom:508.906133pt;}
.y11c{bottom:509.183733pt;}
.yd4{bottom:510.089067pt;}
.y73{bottom:511.292267pt;}
.yd{bottom:511.490933pt;}
.y98{bottom:513.866133pt;}
.ye1{bottom:516.258667pt;}
.y5f{bottom:518.348400pt;}
.y3c{bottom:520.102400pt;}
.y140{bottom:520.312533pt;}
.y107{bottom:528.984267pt;}
.y11b{bottom:531.850400pt;}
.y50{bottom:532.906133pt;}
.yd3{bottom:534.089067pt;}
.y72{bottom:535.292267pt;}
.yc{bottom:535.490933pt;}
.y97{bottom:537.866133pt;}
.ye0{bottom:540.258667pt;}
.y5e{bottom:542.348400pt;}
.y3b{bottom:544.102400pt;}
.y13f{bottom:547.871600pt;}
.y106{bottom:552.984267pt;}
.yf4{bottom:553.194400pt;}
.y11a{bottom:554.517067pt;}
.y4f{bottom:556.906133pt;}
.yd2{bottom:558.089067pt;}
.y71{bottom:559.292267pt;}
.yb{bottom:559.490933pt;}
.ydf{bottom:564.258667pt;}
.y5d{bottom:566.348400pt;}
.y38{bottom:568.102400pt;}
.y2{bottom:569.967600pt;}
.y96{bottom:576.984267pt;}
.y4e{bottom:580.906133pt;}
.yd1{bottom:582.089067pt;}
.y70{bottom:583.292267pt;}
.ya{bottom:583.490933pt;}
.y119{bottom:584.742800pt;}
.yde{bottom:588.258667pt;}
.y5c{bottom:590.348400pt;}
.y37{bottom:592.102400pt;}
.y13e{bottom:599.210267pt;}
.y95{bottom:600.984267pt;}
.yd0{bottom:606.089067pt;}
.y118{bottom:607.409467pt;}
.y5b{bottom:614.348400pt;}
.y36{bottom:616.102400pt;}
.yf3{bottom:619.651067pt;}
.y4d{bottom:620.024267pt;}
.y6f{bottom:622.410400pt;}
.y94{bottom:624.984267pt;}
.y13d{bottom:626.769200pt;}
.ydd{bottom:627.376800pt;}
.y117{bottom:630.076133pt;}
.y9{bottom:633.947600pt;}
.y35{bottom:640.102400pt;}
.yba{bottom:640.645733pt;}
.yf2{bottom:640.984400pt;}
.y4c{bottom:641.357600pt;}
.y6e{bottom:643.743733pt;}
.ycf{bottom:645.207200pt;}
.ydc{bottom:648.710133pt;}
.y93{bottom:648.984267pt;}
.y116{bottom:652.742800pt;}
.y5a{bottom:653.466400pt;}
.y34{bottom:664.102400pt;}
.yb9{bottom:664.645733pt;}
.yce{bottom:666.540533pt;}
.y92{bottom:672.984267pt;}
.y115{bottom:675.409467pt;}
.y13c{bottom:677.307867pt;}
.y1{bottom:682.058800pt;}
.y33{bottom:688.102400pt;}
.yb8{bottom:688.645733pt;}
.y91{bottom:696.984267pt;}
.y13b{bottom:697.307867pt;}
.y114{bottom:705.635200pt;}
.y8{bottom:707.291467pt;}
.y32{bottom:712.102400pt;}
.yb7{bottom:712.645733pt;}
.y13a{bottom:717.307867pt;}
.y90{bottom:720.984267pt;}
.y113{bottom:728.301867pt;}
.y31{bottom:736.102400pt;}
.yb6{bottom:736.645733pt;}
.y139{bottom:737.307867pt;}
.y8f{bottom:744.984267pt;}
.y7{bottom:746.409467pt;}
.y112{bottom:750.968533pt;}
.y138{bottom:757.307867pt;}
.y30{bottom:760.102400pt;}
.yb5{bottom:760.645733pt;}
.y8e{bottom:768.984267pt;}
.y111{bottom:773.635200pt;}
.y2f{bottom:784.102400pt;}
.yb4{bottom:784.645733pt;}
.y137{bottom:784.866800pt;}
.y6{bottom:786.409467pt;}
.y8d{bottom:792.984267pt;}
.y110{bottom:803.860933pt;}
.y2e{bottom:808.102400pt;}
.yb3{bottom:808.645733pt;}
.y8c{bottom:816.984267pt;}
.y10f{bottom:826.527600pt;}
.y2d{bottom:832.102400pt;}
.yb2{bottom:832.645733pt;}
.y136{bottom:835.405467pt;}
.y8b{bottom:840.984267pt;}
.y10e{bottom:849.194267pt;}
.y2c{bottom:856.102400pt;}
.yb1{bottom:856.645733pt;}
.y135{bottom:862.964400pt;}
.y5{bottom:864.153867pt;}
.y8a{bottom:864.984267pt;}
.y10d{bottom:871.860933pt;}
.y2b{bottom:880.102400pt;}
.yb0{bottom:880.645733pt;}
.y89{bottom:904.102267pt;}
.y2a{bottom:904.102400pt;}
.yaf{bottom:904.645733pt;}
.y10c{bottom:909.645733pt;}
.y134{bottom:913.503067pt;}
.y88{bottom:928.102267pt;}
.y29{bottom:928.102400pt;}
.yae{bottom:928.645733pt;}
.y133{bottom:933.503067pt;}
.y87{bottom:952.102267pt;}
.y28{bottom:952.102400pt;}
.yad{bottom:952.645733pt;}
.y132{bottom:953.503067pt;}
.y4{bottom:954.690933pt;}
.y131{bottom:973.503067pt;}
.y86{bottom:976.102267pt;}
.y27{bottom:976.102400pt;}
.yc4{bottom:979.881867pt;}
.y85{bottom:1000.102267pt;}
.y26{bottom:1000.102400pt;}
.y130{bottom:1001.062133pt;}
.yac{bottom:1003.102400pt;}
.yc3{bottom:1003.881867pt;}
.y23{bottom:1012.981333pt;}
.y84{bottom:1024.102267pt;}
.y25{bottom:1024.102400pt;}
.yc2{bottom:1027.881867pt;}
.yab{bottom:1043.102400pt;}
.y83{bottom:1048.102267pt;}
.y24{bottom:1048.102400pt;}
.yc1{bottom:1051.881867pt;}
.y22{bottom:1058.314667pt;}
.ha{height:39.696000pt;}
.h8{height:44.437500pt;}
.hc{height:46.144000pt;}
.hf{height:52.928000pt;}
.he{height:53.376000pt;}
.h9{height:57.338667pt;}
.h7{height:80.064000pt;}
.hb{height:85.184000pt;}
.h2{height:91.012435pt;}
.h4{height:92.928000pt;}
.h3{height:136.839249pt;}
.hd{height:143.751714pt;}
.h5{height:520.134519pt;}
.h6{height:638.827200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:46.467600pt;}
.x5{left:54.803067pt;}
.x3{left:63.428533pt;}
.x6{left:92.598400pt;}
.x7{left:96.377867pt;}
.x8{left:141.732267pt;}
.xc{left:145.511867pt;}
.xd{left:329.389467pt;}
.x9{left:695.636133pt;}
.xa{left:696.721333pt;}
.xb{left:716.381200pt;}
.x1{left:722.227067pt;}
.x2{left:725.277200pt;}
}




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