
    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_0564c032120246523bbc016b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_35b73f0da262d980fbb492f8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ed6fb81b92dd8d159731c9ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.060000;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_8434e2044ae52eba285f9066.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_dcb540776fc4018a1f861847.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_ca64de252931ff99e2c329f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_acef681af8335e7962caef6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.508000;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_5ff3a53bac36b9a07641ac47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.721000;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_44f32a1d47a50dfbbb12fcdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_cfd66cded0e5212a422af2b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.471000;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_c29d8bbe6efe8ed5f1d5dd59.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.264000;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_beeb6d6d9e36dbb7d6359e49.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.279000;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_f66ff7e705f00b684b13dcb0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.039000;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_6891e1ba6be5525469506b9f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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_39ac7939584020faa21761ee.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7803aab559b1e70eb351bb6c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.023000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{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;}
.ls1a{letter-spacing:-1.246547px;}
.ls11{letter-spacing:-1.206012px;}
.lse{letter-spacing:-1.194012px;}
.ls1e{letter-spacing:-1.164228px;}
.ls21{letter-spacing:-1.158348px;}
.ls13{letter-spacing:-1.128948px;}
.ls1f{letter-spacing:-1.123069px;}
.ls5d{letter-spacing:-1.120481px;}
.ls5b{letter-spacing:-1.111485px;}
.ls16{letter-spacing:-1.111309px;}
.ls20{letter-spacing:-1.105429px;}
.ls12{letter-spacing:-1.104011px;}
.ls5c{letter-spacing:-1.102485px;}
.ls1b{letter-spacing:-1.099549px;}
.ls18{letter-spacing:-1.093669px;}
.ls59{letter-spacing:-1.088985px;}
.ls31{letter-spacing:-1.087789px;}
.ls19{letter-spacing:-1.081909px;}
.ls10{letter-spacing:-1.080011px;}
.ls5a{letter-spacing:-1.079986px;}
.ls1c{letter-spacing:-1.076029px;}
.ls2f{letter-spacing:-1.070149px;}
.ls15{letter-spacing:-1.064269px;}
.ls17{letter-spacing:-1.058389px;}
.lsd{letter-spacing:-1.056011px;}
.ls14{letter-spacing:-1.052509px;}
.ls36{letter-spacing:-1.040749px;}
.lsf{letter-spacing:-1.014010px;}
.ls37{letter-spacing:-0.999590px;}
.ls33{letter-spacing:-0.958424px;}
.ls30{letter-spacing:-0.876111px;}
.ls1d{letter-spacing:-0.858471px;}
.ls32{letter-spacing:-0.829072px;}
.ls65{letter-spacing:-0.008400px;}
.lsb{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.044968px;}
.ls54{letter-spacing:0.045032px;}
.ls61{letter-spacing:0.089937px;}
.ls3b{letter-spacing:0.117613px;}
.ls62{letter-spacing:0.134969px;}
.ls3c{letter-spacing:0.176340px;}
.ls6{letter-spacing:0.176398px;}
.ls2e{letter-spacing:0.176400px;}
.ls2d{letter-spacing:0.176425px;}
.ls64{letter-spacing:0.404969px;}
.ls60{letter-spacing:0.454494px;}
.ls34{letter-spacing:0.535075px;}
.ls56{letter-spacing:0.544493px;}
.ls5f{letter-spacing:0.548993px;}
.ls63{letter-spacing:0.598492px;}
.ls27{letter-spacing:0.599754px;}
.ls4d{letter-spacing:0.607492px;}
.ls2b{letter-spacing:0.611514px;}
.ls57{letter-spacing:0.620992px;}
.ls22{letter-spacing:0.623274px;}
.ls52{letter-spacing:0.629992px;}
.ls38{letter-spacing:0.640913px;}
.ls53{letter-spacing:0.643491px;}
.ls23{letter-spacing:0.658553px;}
.ls39{letter-spacing:0.670313px;}
.ls35{letter-spacing:0.734993px;}
.ls58{letter-spacing:0.765032px;}
.ls24{letter-spacing:0.823213px;}
.ls4a{letter-spacing:1.134828px;}
.ls5{letter-spacing:1.170012px;}
.ls4{letter-spacing:1.176012px;}
.ls4e{letter-spacing:1.187984px;}
.ls1{letter-spacing:1.188012px;}
.ls3f{letter-spacing:1.193628px;}
.ls4f{letter-spacing:1.196984px;}
.ls44{letter-spacing:1.199508px;}
.ls3{letter-spacing:1.200012px;}
.ls42{letter-spacing:1.211268px;}
.ls49{letter-spacing:1.217148px;}
.ls2{letter-spacing:1.218012px;}
.ls50{letter-spacing:1.219484px;}
.ls51{letter-spacing:1.228484px;}
.ls40{letter-spacing:1.228902px;}
.ls3e{letter-spacing:1.234787px;}
.ls43{letter-spacing:1.240667px;}
.lsc{letter-spacing:1.242012px;}
.ls41{letter-spacing:1.252427px;}
.ls4c{letter-spacing:13.499777px;}
.ls29{letter-spacing:15.405431px;}
.ls2c{letter-spacing:15.405491px;}
.ls7{letter-spacing:17.110625px;}
.ls25{letter-spacing:17.804471px;}
.ls4b{letter-spacing:17.992618px;}
.ls26{letter-spacing:18.157271px;}
.ls5e{letter-spacing:18.515280px;}
.ls45{letter-spacing:18.792251px;}
.ls3a{letter-spacing:18.815831px;}
.ls48{letter-spacing:21.520571px;}
.ls46{letter-spacing:22.226171px;}
.ls8{letter-spacing:22.872967px;}
.ls28{letter-spacing:23.214011px;}
.ls9{letter-spacing:23.225763px;}
.ls3d{letter-spacing:23.578571px;}
.ls47{letter-spacing:23.931371px;}
.lsa{letter-spacing:27.988514px;}
.ls2a{letter-spacing:29.340911px;}
.ls0{letter-spacing:42.912179px;}
.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;}
}
.ws10b{word-spacing:-18.577080px;}
.ws11c{word-spacing:-10.920000px;}
.wsd4{word-spacing:-1.275947px;}
.ws110{word-spacing:-0.688491px;}
.ws118{word-spacing:-0.665991px;}
.ws56{word-spacing:-0.593874px;}
.ws1b{word-spacing:-0.061800px;}
.ws25{word-spacing:-0.058799px;}
.ws49{word-spacing:-0.047999px;}
.ws3d{word-spacing:-0.044999px;}
.ws45{word-spacing:-0.041999px;}
.ws4a{word-spacing:0.000000px;}
.ws52{word-spacing:0.770272px;}
.ws37{word-spacing:1.105429px;}
.ws3c{word-spacing:11.879842px;}
.ws107{word-spacing:12.055339px;}
.ws108{word-spacing:12.136338px;}
.ws106{word-spacing:12.347835px;}
.ws105{word-spacing:12.356835px;}
.ws42{word-spacing:12.431822px;}
.ws43{word-spacing:12.515821px;}
.ws46{word-spacing:12.599820px;}
.ws44{word-spacing:12.683819px;}
.wsff{word-spacing:13.004827px;}
.ws112{word-spacing:13.184824px;}
.ws113{word-spacing:13.229824px;}
.wsfe{word-spacing:13.238823px;}
.ws101{word-spacing:13.252323px;}
.ws100{word-spacing:13.261323px;}
.ws103{word-spacing:13.270319px;}
.ws114{word-spacing:13.274823px;}
.ws102{word-spacing:13.315318px;}
.ws41{word-spacing:13.319822px;}
.ws111{word-spacing:13.364822px;}
.ws109{word-spacing:13.409821px;}
.wsfb{word-spacing:13.454821px;}
.wsfa{word-spacing:13.499820px;}
.wsf8{word-spacing:13.544802px;}
.wsfc{word-spacing:13.544819px;}
.ws3e{word-spacing:13.589819px;}
.ws3f{word-spacing:13.634818px;}
.ws40{word-spacing:13.679818px;}
.wsf9{word-spacing:13.724817px;}
.ws119{word-spacing:13.769816px;}
.wsfd{word-spacing:13.814816px;}
.ws10a{word-spacing:13.859815px;}
.ws10c{word-spacing:13.949814px;}
.wsed{word-spacing:14.111824px;}
.wsd1{word-spacing:14.159823px;}
.ws48{word-spacing:14.207822px;}
.wsb5{word-spacing:14.255822px;}
.ws47{word-spacing:14.495819px;}
.wsb4{word-spacing:14.495837px;}
.ws8d{word-spacing:14.523452px;}
.ws5b{word-spacing:14.817449px;}
.ws93{word-spacing:14.876248px;}
.ws8a{word-spacing:14.993847px;}
.wsf2{word-spacing:15.170245px;}
.wsf1{word-spacing:15.523042px;}
.wsf0{word-spacing:15.640640px;}
.ws4b{word-spacing:16.063996px;}
.wsd3{word-spacing:16.116921px;}
.ws34{word-spacing:16.269794px;}
.wsce{word-spacing:16.340353px;}
.ws5a{word-spacing:16.346233px;}
.ws4c{word-spacing:16.457952px;}
.ws8b{word-spacing:16.816628px;}
.ws17{word-spacing:16.854169px;}
.ws2b{word-spacing:16.957747px;}
.ws1d{word-spacing:16.993027px;}
.ws15{word-spacing:17.136171px;}
.ws18{word-spacing:17.160172px;}
.ws1e{word-spacing:17.169425px;}
.ws19{word-spacing:17.280173px;}
.ws104{word-spacing:17.302269px;}
.ws10f{word-spacing:17.333735px;}
.ws11b{word-spacing:17.356269px;}
.ws1a{word-spacing:17.364174px;}
.ws10d{word-spacing:17.369768px;}
.ws83{word-spacing:17.398742px;}
.wsb2{word-spacing:17.404622px;}
.ws117{word-spacing:17.410268px;}
.ws16{word-spacing:17.454175px;}
.ws7f{word-spacing:17.463422px;}
.ws10e{word-spacing:17.495767px;}
.ws29{word-spacing:17.516341px;}
.ws9b{word-spacing:17.522204px;}
.ws28{word-spacing:17.522221px;}
.ws5e{word-spacing:17.581021px;}
.ws116{word-spacing:17.590265px;}
.ws60{word-spacing:17.698619px;}
.ws57{word-spacing:17.757419px;}
.ws82{word-spacing:17.775059px;}
.wsab{word-spacing:17.816218px;}
.ws31{word-spacing:17.875018px;}
.ws8e{word-spacing:17.933817px;}
.wsbd{word-spacing:17.992616px;}
.wsc{word-spacing:18.000180px;}
.ws85{word-spacing:18.039656px;}
.ws81{word-spacing:18.051416px;}
.wsa{word-spacing:18.060181px;}
.ws23{word-spacing:18.063176px;}
.wsb{word-spacing:18.180182px;}
.wse{word-spacing:18.240182px;}
.wsd{word-spacing:18.300183px;}
.ws5f{word-spacing:18.463012px;}
.ws11a{word-spacing:18.494753px;}
.ws1f{word-spacing:18.521811px;}
.wse5{word-spacing:18.580610px;}
.ws9{word-spacing:18.600186px;}
.ws115{word-spacing:18.629752px;}
.wsa8{word-spacing:18.874607px;}
.wsbe{word-spacing:18.992206px;}
.wsa7{word-spacing:19.109805px;}
.ws50{word-spacing:19.168604px;}
.ws7e{word-spacing:19.227404px;}
.ws98{word-spacing:19.286203px;}
.ws21{word-spacing:19.345003px;}
.wse6{word-spacing:19.462601px;}
.ws70{word-spacing:19.521401px;}
.ws8{word-spacing:19.536178px;}
.wsba{word-spacing:19.580200px;}
.ws6{word-spacing:19.602178px;}
.ws26{word-spacing:19.644880px;}
.ws5{word-spacing:19.734179px;}
.ws7{word-spacing:19.800180px;}
.ws54{word-spacing:19.956516px;}
.ws24{word-spacing:19.985916px;}
.ws6d{word-spacing:20.109395px;}
.wsb0{word-spacing:20.168194px;}
.ws32{word-spacing:20.226994px;}
.ws78{word-spacing:20.285793px;}
.ws8c{word-spacing:20.403392px;}
.ws51{word-spacing:20.550390px;}
.ws6e{word-spacing:20.579790px;}
.wsc9{word-spacing:20.638589px;}
.wsc1{word-spacing:20.697389px;}
.wsd5{word-spacing:20.873787px;}
.wsf3{word-spacing:21.050185px;}
.ws8f{word-spacing:21.108985px;}
.wse8{word-spacing:21.167784px;}
.ws6f{word-spacing:21.226583px;}
.wse7{word-spacing:21.285383px;}
.ws89{word-spacing:21.402982px;}
.ws59{word-spacing:21.432381px;}
.ws6c{word-spacing:21.461781px;}
.ws5d{word-spacing:21.520580px;}
.ws88{word-spacing:21.732258px;}
.wsaf{word-spacing:21.814577px;}
.ws6a{word-spacing:21.873377px;}
.ws55{word-spacing:21.920416px;}
.ws63{word-spacing:21.990976px;}
.ws58{word-spacing:22.038015px;}
.wsd9{word-spacing:22.049775px;}
.ws4f{word-spacing:22.108574px;}
.wsda{word-spacing:22.167374px;}
.ws22{word-spacing:22.226173px;}
.ws33{word-spacing:22.232053px;}
.wsd8{word-spacing:22.284973px;}
.wsaa{word-spacing:22.343772px;}
.wsa9{word-spacing:22.402560px;}
.wsbc{word-spacing:22.461371px;}
.ws10{word-spacing:22.482225px;}
.ws13{word-spacing:22.494225px;}
.wsdd{word-spacing:22.520170px;}
.ws11{word-spacing:22.560226px;}
.wsf{word-spacing:22.572226px;}
.wscb{word-spacing:22.584855px;}
.ws2c{word-spacing:22.755368px;}
.ws30{word-spacing:22.872967px;}
.ws14{word-spacing:22.890229px;}
.ws2f{word-spacing:22.931766px;}
.ws12{word-spacing:22.944229px;}
.ws20{word-spacing:22.990565px;}
.ws80{word-spacing:23.031725px;}
.wse2{word-spacing:23.108164px;}
.wsc8{word-spacing:23.343362px;}
.ws75{word-spacing:23.402161px;}
.wsa3{word-spacing:23.460961px;}
.wsf7{word-spacing:23.519760px;}
.wsc5{word-spacing:23.578559px;}
.ws0{word-spacing:23.634000px;}
.wsc7{word-spacing:23.754958px;}
.wscd{word-spacing:23.778477px;}
.wse3{word-spacing:23.813757px;}
.wsb8{word-spacing:23.872556px;}
.ws92{word-spacing:23.931356px;}
.ws9d{word-spacing:23.990155px;}
.wsea{word-spacing:24.166553px;}
.ws9f{word-spacing:24.284152px;}
.ws95{word-spacing:24.636949px;}
.wsb1{word-spacing:24.695748px;}
.wsc0{word-spacing:24.754547px;}
.wsb7{word-spacing:24.872146px;}
.ws96{word-spacing:24.930946px;}
.ws7b{word-spacing:25.166143px;}
.wsa1{word-spacing:25.283742px;}
.wsad{word-spacing:25.401341px;}
.wsdb{word-spacing:25.460140px;}
.ws2e{word-spacing:25.518940px;}
.ws9c{word-spacing:25.636538px;}
.ws79{word-spacing:25.695338px;}
.ws74{word-spacing:25.754137px;}
.ws65{word-spacing:25.989335px;}
.ws2a{word-spacing:26.024614px;}
.ws66{word-spacing:26.048134px;}
.wscf{word-spacing:26.101054px;}
.ws64{word-spacing:26.165733px;}
.ws36{word-spacing:26.201013px;}
.ws97{word-spacing:26.342131px;}
.ws38{word-spacing:26.406811px;}
.wsee{word-spacing:26.577329px;}
.wsb6{word-spacing:26.636128px;}
.wsbf{word-spacing:26.812526px;}
.wsde{word-spacing:26.871326px;}
.ws87{word-spacing:26.965405px;}
.ws61{word-spacing:27.047724px;}
.ws86{word-spacing:27.112403px;}
.wsa0{word-spacing:27.282922px;}
.ws4e{word-spacing:27.400520px;}
.wse1{word-spacing:27.576919px;}
.ws1c{word-spacing:27.635718px;}
.wsa6{word-spacing:27.694517px;}
.wsbb{word-spacing:27.753317px;}
.ws9a{word-spacing:27.812116px;}
.ws84{word-spacing:27.823876px;}
.ws99{word-spacing:27.870916px;}
.wsa5{word-spacing:27.929715px;}
.ws76{word-spacing:27.988514px;}
.wsf4{word-spacing:28.047314px;}
.ws35{word-spacing:28.182552px;}
.wsa2{word-spacing:28.223712px;}
.wsf5{word-spacing:28.282511px;}
.wse9{word-spacing:28.341311px;}
.wse4{word-spacing:28.458910px;}
.ws53{word-spacing:28.476544px;}
.wsae{word-spacing:28.635308px;}
.wse0{word-spacing:28.694107px;}
.wsf6{word-spacing:28.752907px;}
.wsc4{word-spacing:28.811706px;}
.wsb9{word-spacing:28.870505px;}
.ws7d{word-spacing:28.929305px;}
.wsef{word-spacing:29.164502px;}
.ws72{word-spacing:29.282101px;}
.wsa4{word-spacing:29.399700px;}
.ws71{word-spacing:29.458499px;}
.ws69{word-spacing:29.634898px;}
.ws62{word-spacing:29.811296px;}
.ws3a{word-spacing:29.940654px;}
.ws90{word-spacing:30.105293px;}
.ws39{word-spacing:30.211132px;}
.ws3b{word-spacing:30.264051px;}
.ws5c{word-spacing:30.340490px;}
.wsca{word-spacing:30.440449px;}
.ws4d{word-spacing:30.752086px;}
.wsc6{word-spacing:31.104883px;}
.ws67{word-spacing:31.222481px;}
.wsd6{word-spacing:31.810475px;}
.wsd2{word-spacing:31.963354px;}
.wsb3{word-spacing:32.280871px;}
.wsc3{word-spacing:32.398469px;}
.wsc2{word-spacing:32.516068px;}
.wsd0{word-spacing:32.745386px;}
.wsdf{word-spacing:32.927664px;}
.wscc{word-spacing:32.968824px;}
.ws27{word-spacing:32.980583px;}
.ws9e{word-spacing:33.104062px;}
.ws91{word-spacing:33.221661px;}
.wsac{word-spacing:33.280460px;}
.ws73{word-spacing:33.692056px;}
.wsec{word-spacing:34.044853px;}
.ws2d{word-spacing:34.338850px;}
.ws94{word-spacing:35.044442px;}
.ws68{word-spacing:35.691236px;}
.ws6b{word-spacing:36.455628px;}
.ws77{word-spacing:38.454808px;}
.wseb{word-spacing:40.453987px;}
.ws7c{word-spacing:40.806784px;}
.wsdc{word-spacing:41.982772px;}
.wsd7{word-spacing:42.629565px;}
.ws3{word-spacing:42.912179px;}
.ws2{word-spacing:43.200180px;}
.ws1{word-spacing:43.344181px;}
.ws4{word-spacing:43.632182px;}
.ws7a{word-spacing:58.564202px;}
._1c{margin-left:-17.922000px;}
._14{margin-left:-5.644742px;}
._1a{margin-left:-3.605285px;}
._f{margin-left:-2.469575px;}
._b{margin-left:-1.080011px;}
._6{width:1.440014px;}
._15{width:2.462373px;}
._0{width:8.970000px;}
._1b{width:12.509833px;}
._12{width:13.523807px;}
._a{width:15.120151px;}
._7{width:17.160172px;}
._5{width:19.140191px;}
._13{width:20.344592px;}
._10{width:21.350248px;}
._9{width:23.100231px;}
._8{width:25.008250px;}
._d{width:26.372102px;}
._16{width:27.459320px;}
._c{width:28.782877px;}
._11{width:30.458089px;}
._1{width:32.682000px;}
._18{width:33.750856px;}
._e{width:36.220430px;}
._17{width:39.748394px;}
._4{width:42.480177px;}
._3{width:44.064184px;}
._1d{width:64.619138px;}
._1e{width:65.879122px;}
._19{width:1428.030091px;}
._2{width:1602.276000px;}
.fc4{color:rgb(41,40,41);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(19,20,19);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fsb{font-size:39.194400px;}
.fs9{font-size:41.999400px;}
.fsc{font-size:42.000000px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fsd{font-size:65.999400px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y3d{bottom:65.394085px;}
.y3c{bottom:77.384914px;}
.y1a0{bottom:81.501150px;}
.y170{bottom:89.300205px;}
.y128{bottom:89.315850px;}
.y76{bottom:89.351865px;}
.yab{bottom:89.373225px;}
.y3b{bottom:89.375743px;}
.y19f{bottom:93.502650px;}
.yd3{bottom:98.645550px;}
.y3a{bottom:101.366571px;}
.y16f{bottom:102.822525px;}
.y127{bottom:102.838170px;}
.y75{bottom:107.373885px;}
.yaa{bottom:107.395245px;}
.y39{bottom:113.357400px;}
.y16e{bottom:116.344845px;}
.y126{bottom:116.360490px;}
.y19e{bottom:118.818150px;}
.y74{bottom:125.322390px;}
.ya9{bottom:125.343765px;}
.y16d{bottom:129.777165px;}
.y125{bottom:129.792810px;}
.y19d{bottom:136.815150px;}
.y38{bottom:138.783180px;}
.y16c{bottom:143.299485px;}
.y124{bottom:143.315130px;}
.y73{bottom:143.344410px;}
.ya8{bottom:143.365770px;}
.y37{bottom:152.305500px;}
.y19c{bottom:154.812150px;}
.y16b{bottom:156.821805px;}
.y36{bottom:157.322850px;}
.y72{bottom:161.366430px;}
.ya7{bottom:161.387790px;}
.y31{bottom:165.545804px;}
.y35{bottom:165.825630px;}
.y16a{bottom:170.344125px;}
.y19b{bottom:172.809150px;}
.y123{bottom:175.455960px;}
.y71{bottom:179.314935px;}
.ya6{bottom:179.336310px;}
.y34{bottom:179.347950px;}
.y30{bottom:183.567820px;}
.y169{bottom:183.776445px;}
.y33{bottom:184.280250px;}
.y122{bottom:188.978280px;}
.y19a{bottom:190.806150px;}
.y32{bottom:192.784200px;}
.y168{bottom:197.298765px;}
.y70{bottom:197.336955px;}
.ya5{bottom:197.358315px;}
.y2f{bottom:201.516336px;}
.y121{bottom:202.500600px;}
.y199{bottom:208.803150px;}
.y167{bottom:210.821085px;}
.y6f{bottom:215.358975px;}
.ya4{bottom:215.380335px;}
.y120{bottom:215.932920px;}
.y2e{bottom:219.538353px;}
.y166{bottom:224.343405px;}
.y198{bottom:226.800150px;}
.y11f{bottom:229.455240px;}
.y6e{bottom:233.307495px;}
.ya3{bottom:233.328855px;}
.y23{bottom:237.530969px;}
.y2d{bottom:237.560369px;}
.y165{bottom:237.775725px;}
.y11e{bottom:242.977560px;}
.y1a2{bottom:248.899080px;}
.y164{bottom:251.298045px;}
.y6d{bottom:251.329500px;}
.ya2{bottom:251.350875px;}
.y22{bottom:255.479486px;}
.y2c{bottom:255.508886px;}
.y11d{bottom:256.499880px;}
.y163{bottom:264.820365px;}
.y1a1{bottom:268.698900px;}
.y6c{bottom:269.351520px;}
.ya1{bottom:269.372880px;}
.y11c{bottom:269.932200px;}
.y21{bottom:273.501502px;}
.y2b{bottom:273.530902px;}
.y162{bottom:278.342685px;}
.y11b{bottom:283.454520px;}
.y6b{bottom:287.300040px;}
.ya0{bottom:287.321400px;}
.y20{bottom:291.523518px;}
.y2a{bottom:291.552918px;}
.y161{bottom:291.775005px;}
.y11a{bottom:296.976840px;}
.y160{bottom:305.297325px;}
.y6a{bottom:305.322045px;}
.y9f{bottom:305.343420px;}
.y1f{bottom:309.472035px;}
.y29{bottom:309.501435px;}
.y15f{bottom:318.819645px;}
.y69{bottom:323.344065px;}
.y9e{bottom:323.365425px;}
.y1e{bottom:327.494051px;}
.y28{bottom:327.523451px;}
.y119{bottom:329.117655px;}
.y15e{bottom:332.341965px;}
.y68{bottom:341.292585px;}
.y9d{bottom:341.313945px;}
.y118{bottom:342.639975px;}
.y1d{bottom:345.516067px;}
.y27{bottom:345.545467px;}
.y15d{bottom:345.774285px;}
.y117{bottom:356.072295px;}
.y15c{bottom:359.296605px;}
.y67{bottom:359.314605px;}
.y9c{bottom:359.335965px;}
.y1c{bottom:363.464584px;}
.y26{bottom:363.493984px;}
.y116{bottom:369.594615px;}
.y15b{bottom:372.818925px;}
.y66{bottom:377.336610px;}
.y9b{bottom:377.357970px;}
.y1b{bottom:381.486600px;}
.y25{bottom:381.516000px;}
.y115{bottom:383.116935px;}
.y15a{bottom:386.341245px;}
.y65{bottom:395.285130px;}
.ybe{bottom:395.291445px;}
.y9a{bottom:395.306490px;}
.yd1{bottom:395.335575px;}
.y114{bottom:396.639255px;}
.y1a{bottom:399.514800px;}
.y24{bottom:399.538016px;}
.y159{bottom:399.773565px;}
.y113{bottom:410.071575px;}
.y158{bottom:413.295885px;}
.y64{bottom:413.307150px;}
.ybd{bottom:413.313465px;}
.y99{bottom:413.328510px;}
.ye7{bottom:413.335830px;}
.yd0{bottom:413.357580px;}
.yfa{bottom:413.379945px;}
.y157{bottom:426.818205px;}
.y63{bottom:431.329155px;}
.ybc{bottom:431.335485px;}
.y98{bottom:431.350530px;}
.ye6{bottom:431.357835px;}
.ycf{bottom:431.379600px;}
.yf9{bottom:431.401965px;}
.y156{bottom:440.340525px;}
.y112{bottom:442.212390px;}
.y19{bottom:445.199520px;}
.y62{bottom:449.277675px;}
.ybb{bottom:449.283990px;}
.y97{bottom:449.299035px;}
.ye5{bottom:449.306355px;}
.yce{bottom:449.328120px;}
.yf8{bottom:449.350470px;}
.y155{bottom:453.772845px;}
.y111{bottom:455.734710px;}
.y154{bottom:467.295165px;}
.y61{bottom:467.299695px;}
.yba{bottom:467.306010px;}
.y96{bottom:467.321055px;}
.ye4{bottom:467.328375px;}
.ycd{bottom:467.350125px;}
.yf7{bottom:467.372490px;}
.y18{bottom:470.714776px;}
.y153{bottom:480.817485px;}
.y60{bottom:485.321715px;}
.yb9{bottom:485.328030px;}
.y95{bottom:485.343075px;}
.ye3{bottom:485.350380px;}
.ycc{bottom:485.372145px;}
.yf6{bottom:485.394510px;}
.y110{bottom:487.875540px;}
.y17{bottom:488.654955px;}
.y152{bottom:494.339805px;}
.y10f{bottom:501.397860px;}
.y5f{bottom:503.270220px;}
.yb8{bottom:503.276550px;}
.y94{bottom:503.291595px;}
.ye2{bottom:503.298900px;}
.ycb{bottom:503.320665px;}
.yf5{bottom:503.343015px;}
.y16{bottom:506.685135px;}
.y151{bottom:507.772125px;}
.y197{bottom:516.792255px;}
.y5e{bottom:521.292240px;}
.y150{bottom:521.294445px;}
.yb7{bottom:521.298555px;}
.y93{bottom:521.313600px;}
.ye1{bottom:521.320920px;}
.yca{bottom:521.342685px;}
.yf4{bottom:521.365035px;}
.y15{bottom:529.215361px;}
.y196{bottom:530.314575px;}
.y10e{bottom:533.538675px;}
.y14f{bottom:534.816765px;}
.y5d{bottom:539.314260px;}
.yb6{bottom:539.320575px;}
.y92{bottom:539.335620px;}
.ye0{bottom:539.342940px;}
.yc9{bottom:539.364690px;}
.yf3{bottom:539.387055px;}
.y195{bottom:543.836895px;}
.y10d{bottom:547.060995px;}
.y14{bottom:547.155540px;}
.y14e{bottom:548.339085px;}
.y5c{bottom:557.262765px;}
.yb5{bottom:557.269095px;}
.y194{bottom:557.269215px;}
.y5a{bottom:557.270220px;}
.y91{bottom:557.284140px;}
.ydf{bottom:557.291445px;}
.yc8{bottom:557.313210px;}
.yf2{bottom:557.335575px;}
.y10c{bottom:560.493315px;}
.y14d{bottom:561.771405px;}
.y5b{bottom:563.810850px;}
.y13{bottom:565.185720px;}
.y193{bottom:570.791535px;}
.y10b{bottom:574.015635px;}
.yb4{bottom:575.291100px;}
.y59{bottom:575.292240px;}
.y14c{bottom:575.293725px;}
.y90{bottom:575.306145px;}
.yde{bottom:575.313465px;}
.yc7{bottom:575.335230px;}
.yf1{bottom:575.357580px;}
.y12{bottom:583.215901px;}
.y192{bottom:584.313855px;}
.y14b{bottom:588.816045px;}
.y58{bottom:593.314260px;}
.yb3{bottom:593.319585px;}
.y8f{bottom:593.328165px;}
.ydd{bottom:593.335485px;}
.yc6{bottom:593.357235px;}
.yf0{bottom:593.379600px;}
.y191{bottom:597.836175px;}
.y11{bottom:601.156080px;}
.y14a{bottom:602.338365px;}
.y10a{bottom:606.196665px;}
.y57{bottom:611.262765px;}
.y190{bottom:611.268495px;}
.y8e{bottom:611.276685px;}
.ydc{bottom:611.283990px;}
.yc5{bottom:611.305755px;}
.yef{bottom:611.328120px;}
.y149{bottom:615.770685px;}
.y10{bottom:623.686305px;}
.y109{bottom:624.218685px;}
.y18f{bottom:624.790815px;}
.y56{bottom:629.291250px;}
.y148{bottom:629.293005px;}
.y8d{bottom:629.298690px;}
.yb2{bottom:629.299695px;}
.ydb{bottom:629.306010px;}
.yc4{bottom:629.327775px;}
.yee{bottom:629.350125px;}
.y18e{bottom:638.313135px;}
.yf{bottom:641.716486px;}
.y108{bottom:642.167205px;}
.y147{bottom:642.815325px;}
.y8c{bottom:647.320710px;}
.yb1{bottom:647.321715px;}
.yda{bottom:647.328030px;}
.yc3{bottom:647.349795px;}
.yed{bottom:647.372145px;}
.y18d{bottom:651.835455px;}
.y146{bottom:656.337645px;}
.ye{bottom:659.656665px;}
.y107{bottom:660.189210px;}
.y18c{bottom:665.267775px;}
.y8b{bottom:665.269230px;}
.yb0{bottom:665.270220px;}
.yd9{bottom:665.276550px;}
.yc2{bottom:665.298300px;}
.y55{bottom:665.314890px;}
.yec{bottom:665.320665px;}
.y145{bottom:669.769965px;}
.y106{bottom:678.211230px;}
.y18b{bottom:678.790095px;}
.yd{bottom:682.186890px;}
.y8a{bottom:683.291250px;}
.yaf{bottom:683.292240px;}
.yd8{bottom:683.298555px;}
.yc1{bottom:683.320320px;}
.y54{bottom:683.336910px;}
.yeb{bottom:683.342685px;}
.y18a{bottom:692.312400px;}
.y105{bottom:696.159750px;}
.yc{bottom:700.217071px;}
.yae{bottom:701.314260px;}
.y89{bottom:701.319585px;}
.yd7{bottom:701.320575px;}
.yc0{bottom:701.342340px;}
.y53{bottom:701.358930px;}
.yea{bottom:701.364690px;}
.y189{bottom:705.834720px;}
.y104{bottom:714.181770px;}
.yb{bottom:718.157250px;}
.yad{bottom:719.262765px;}
.y188{bottom:719.267055px;}
.yd6{bottom:719.269095px;}
.ybf{bottom:719.290845px;}
.y52{bottom:719.307450px;}
.ye9{bottom:719.313210px;}
.y144{bottom:728.275575px;}
.y103{bottom:732.203775px;}
.y187{bottom:732.789360px;}
.yd5{bottom:737.291100px;}
.y51{bottom:737.329455px;}
.ye8{bottom:737.335230px;}
.y88{bottom:737.380125px;}
.ya{bottom:745.199850px;}
.y186{bottom:746.311680px;}
.y102{bottom:750.152295px;}
.y143{bottom:755.320215px;}
.y50{bottom:755.351475px;}
.y87{bottom:755.402130px;}
.y185{bottom:759.834000px;}
.yd2{bottom:765.864435px;}
.y101{bottom:768.174315px;}
.y142{bottom:768.842535px;}
.y184{bottom:773.266320px;}
.y4f{bottom:773.299995px;}
.y86{bottom:773.350650px;}
.yfb{bottom:779.640750px;}
.y141{bottom:782.274855px;}
.y100{bottom:786.196320px;}
.y183{bottom:786.788640px;}
.y4e{bottom:791.322000px;}
.y85{bottom:791.372670px;}
.y140{bottom:795.797175px;}
.y182{bottom:800.310960px;}
.y8{bottom:802.941450px;}
.yff{bottom:804.144840px;}
.y13d{bottom:809.318415px;}
.y13f{bottom:809.319495px;}
.y4d{bottom:809.344020px;}
.y84{bottom:809.394690px;}
.y9{bottom:810.254850px;}
.y181{bottom:813.833280px;}
.y13e{bottom:814.336755px;}
.yfe{bottom:822.166860px;}
.y13c{bottom:822.840735px;}
.y13a{bottom:822.844500px;}
.y6{bottom:823.946250px;}
.y180{bottom:827.265600px;}
.y4c{bottom:827.292540px;}
.y83{bottom:827.343195px;}
.y13b{bottom:827.773035px;}
.y7{bottom:831.259650px;}
.y137{bottom:836.276025px;}
.y139{bottom:836.276820px;}
.yfd{bottom:840.188880px;}
.y17f{bottom:840.787920px;}
.y138{bottom:841.294380px;}
.y4b{bottom:845.314560px;}
.y82{bottom:845.365215px;}
.y134{bottom:849.797175px;}
.y136{bottom:849.798345px;}
.y17e{bottom:854.310240px;}
.y135{bottom:854.815515px;}
.yfc{bottom:858.132015px;}
.y5{bottom:859.931513px;}
.y133{bottom:863.319495px;}
.y4a{bottom:863.336565px;}
.y81{bottom:863.387235px;}
.y17d{bottom:867.832560px;}
.y132{bottom:868.336755px;}
.y131{bottom:876.842535px;}
.y17c{bottom:881.264880px;}
.y49{bottom:881.285085px;}
.y80{bottom:881.335740px;}
.y17b{bottom:894.787200px;}
.y4{bottom:898.955675px;}
.y48{bottom:899.307105px;}
.y7f{bottom:899.357760px;}
.y130{bottom:903.797175px;}
.y17a{bottom:908.309520px;}
.y12f{bottom:917.319495px;}
.y47{bottom:917.329110px;}
.y7e{bottom:917.379780px;}
.y179{bottom:921.831840px;}
.y12e{bottom:930.840735px;}
.y178{bottom:935.264160px;}
.y46{bottom:935.277630px;}
.y7d{bottom:935.328300px;}
.y3{bottom:937.907837px;}
.y177{bottom:948.786480px;}
.y45{bottom:953.299650px;}
.y7c{bottom:953.350305px;}
.y176{bottom:962.308800px;}
.y44{bottom:971.321655px;}
.y12d{bottom:971.349120px;}
.y7b{bottom:971.372325px;}
.y175{bottom:975.831120px;}
.y2{bottom:976.932000px;}
.y12c{bottom:984.871440px;}
.y174{bottom:989.263440px;}
.y43{bottom:989.270175px;}
.y7a{bottom:989.320845px;}
.y12b{bottom:998.303760px;}
.y173{bottom:1002.785760px;}
.y42{bottom:1007.292195px;}
.y79{bottom:1007.342850px;}
.y172{bottom:1016.308080px;}
.y41{bottom:1025.314215px;}
.y78{bottom:1025.364870px;}
.y171{bottom:1029.830400px;}
.y12a{bottom:1029.859590px;}
.y1{bottom:1033.908300px;}
.y40{bottom:1043.262720px;}
.y129{bottom:1043.291910px;}
.y77{bottom:1043.313390px;}
.y3f{bottom:1112.827987px;}
.yd4{bottom:1127.788680px;}
.y3e{bottom:1127.791800px;}
.yac{bottom:1127.791815px;}
.ha{height:21.626539px;}
.he{height:28.376746px;}
.hb{height:30.281567px;}
.h5{height:31.721260px;}
.hf{height:32.130000px;}
.h9{height:32.444567px;}
.hd{height:34.607567px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.h4{height:47.586433px;}
.h10{height:49.631549px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x10{left:89.036250px;}
.x1{left:91.077150px;}
.xd{left:94.818900px;}
.x12{left:97.034430px;}
.x1f{left:107.578980px;}
.x13{left:175.351200px;}
.x14{left:189.722850px;}
.xc{left:204.944850px;}
.x3{left:220.166850px;}
.x4{left:237.940050px;}
.x11{left:270.680250px;}
.x15{left:340.242435px;}
.x16{left:354.614085px;}
.x5{left:358.355850px;}
.x6{left:363.968400px;}
.xe{left:457.048454px;}
.x17{left:461.083335px;}
.xf{left:469.028832px;}
.x21{left:477.596835px;}
.x1e{left:479.626080px;}
.x20{left:485.548050px;}
.x7{left:499.351050px;}
.x8{left:505.048650px;}
.x1a{left:540.084915px;}
.x1b{left:544.081785px;}
.x18{left:581.669085px;}
.x19{left:585.751050px;}
.x9{left:597.656550px;}
.xa{left:610.922700px;}
.x1c{left:668.749335px;}
.x1d{left:672.831300px;}
.xb{left:699.703800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.108042pt;}
.ls11{letter-spacing:-1.072011pt;}
.lse{letter-spacing:-1.061344pt;}
.ls1e{letter-spacing:-1.034869pt;}
.ls21{letter-spacing:-1.029643pt;}
.ls13{letter-spacing:-1.003510pt;}
.ls1f{letter-spacing:-0.998283pt;}
.ls5d{letter-spacing:-0.995983pt;}
.ls5b{letter-spacing:-0.987987pt;}
.ls16{letter-spacing:-0.987830pt;}
.ls20{letter-spacing:-0.982603pt;}
.ls12{letter-spacing:-0.981343pt;}
.ls5c{letter-spacing:-0.979987pt;}
.ls1b{letter-spacing:-0.977377pt;}
.ls18{letter-spacing:-0.972150pt;}
.ls59{letter-spacing:-0.967987pt;}
.ls31{letter-spacing:-0.966923pt;}
.ls19{letter-spacing:-0.961697pt;}
.ls10{letter-spacing:-0.960010pt;}
.ls5a{letter-spacing:-0.959987pt;}
.ls1c{letter-spacing:-0.956470pt;}
.ls2f{letter-spacing:-0.951244pt;}
.ls15{letter-spacing:-0.946017pt;}
.ls17{letter-spacing:-0.940790pt;}
.lsd{letter-spacing:-0.938676pt;}
.ls14{letter-spacing:-0.935564pt;}
.ls36{letter-spacing:-0.925111pt;}
.lsf{letter-spacing:-0.901342pt;}
.ls37{letter-spacing:-0.888524pt;}
.ls33{letter-spacing:-0.851933pt;}
.ls30{letter-spacing:-0.778765pt;}
.ls1d{letter-spacing:-0.763086pt;}
.ls32{letter-spacing:-0.736952pt;}
.ls65{letter-spacing:-0.007467pt;}
.lsb{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.039972pt;}
.ls54{letter-spacing:0.040028pt;}
.ls61{letter-spacing:0.079944pt;}
.ls3b{letter-spacing:0.104545pt;}
.ls62{letter-spacing:0.119972pt;}
.ls3c{letter-spacing:0.156747pt;}
.ls6{letter-spacing:0.156798pt;}
.ls2e{letter-spacing:0.156800pt;}
.ls2d{letter-spacing:0.156822pt;}
.ls64{letter-spacing:0.359972pt;}
.ls60{letter-spacing:0.403995pt;}
.ls34{letter-spacing:0.475622pt;}
.ls56{letter-spacing:0.483994pt;}
.ls5f{letter-spacing:0.487993pt;}
.ls63{letter-spacing:0.531993pt;}
.ls27{letter-spacing:0.533115pt;}
.ls4d{letter-spacing:0.539993pt;}
.ls2b{letter-spacing:0.543568pt;}
.ls57{letter-spacing:0.551993pt;}
.ls22{letter-spacing:0.554021pt;}
.ls52{letter-spacing:0.559993pt;}
.ls38{letter-spacing:0.569701pt;}
.ls53{letter-spacing:0.571992pt;}
.ls23{letter-spacing:0.585381pt;}
.ls39{letter-spacing:0.595834pt;}
.ls35{letter-spacing:0.653327pt;}
.ls58{letter-spacing:0.680029pt;}
.ls24{letter-spacing:0.731745pt;}
.ls4a{letter-spacing:1.008736pt;}
.ls5{letter-spacing:1.040010pt;}
.ls4{letter-spacing:1.045344pt;}
.ls4e{letter-spacing:1.055986pt;}
.ls1{letter-spacing:1.056011pt;}
.ls3f{letter-spacing:1.061003pt;}
.ls4f{letter-spacing:1.063986pt;}
.ls44{letter-spacing:1.066229pt;}
.ls3{letter-spacing:1.066677pt;}
.ls42{letter-spacing:1.076682pt;}
.ls49{letter-spacing:1.081909pt;}
.ls2{letter-spacing:1.082677pt;}
.ls50{letter-spacing:1.083986pt;}
.ls51{letter-spacing:1.091985pt;}
.ls40{letter-spacing:1.092357pt;}
.ls3e{letter-spacing:1.097589pt;}
.ls43{letter-spacing:1.102815pt;}
.lsc{letter-spacing:1.104011pt;}
.ls41{letter-spacing:1.113269pt;}
.ls4c{letter-spacing:11.999802pt;}
.ls29{letter-spacing:13.693716pt;}
.ls2c{letter-spacing:13.693770pt;}
.ls7{letter-spacing:15.209445pt;}
.ls25{letter-spacing:15.826196pt;}
.ls4b{letter-spacing:15.993438pt;}
.ls26{letter-spacing:16.139796pt;}
.ls5e{letter-spacing:16.458027pt;}
.ls45{letter-spacing:16.704223pt;}
.ls3a{letter-spacing:16.725183pt;}
.ls48{letter-spacing:19.129396pt;}
.ls46{letter-spacing:19.756596pt;}
.ls8{letter-spacing:20.331526pt;}
.ls28{letter-spacing:20.634676pt;}
.ls9{letter-spacing:20.645123pt;}
.ls3d{letter-spacing:20.958730pt;}
.ls47{letter-spacing:21.272330pt;}
.lsa{letter-spacing:24.878679pt;}
.ls2a{letter-spacing:26.080810pt;}
.ls0{letter-spacing:38.144159pt;}
.ws10b{word-spacing:-16.512960pt;}
.ws11c{word-spacing:-9.706667pt;}
.wsd4{word-spacing:-1.134175pt;}
.ws110{word-spacing:-0.611992pt;}
.ws118{word-spacing:-0.591992pt;}
.ws56{word-spacing:-0.527888pt;}
.ws1b{word-spacing:-0.054933pt;}
.ws25{word-spacing:-0.052266pt;}
.ws49{word-spacing:-0.042666pt;}
.ws3d{word-spacing:-0.039999pt;}
.ws45{word-spacing:-0.037333pt;}
.ws4a{word-spacing:0.000000pt;}
.ws52{word-spacing:0.684686pt;}
.ws37{word-spacing:0.982603pt;}
.ws3c{word-spacing:10.559859pt;}
.ws107{word-spacing:10.715857pt;}
.ws108{word-spacing:10.787856pt;}
.ws106{word-spacing:10.975854pt;}
.ws105{word-spacing:10.983854pt;}
.ws42{word-spacing:11.050509pt;}
.ws43{word-spacing:11.125174pt;}
.ws46{word-spacing:11.199840pt;}
.ws44{word-spacing:11.274506pt;}
.wsff{word-spacing:11.559846pt;}
.ws112{word-spacing:11.719844pt;}
.ws113{word-spacing:11.759843pt;}
.wsfe{word-spacing:11.767843pt;}
.ws101{word-spacing:11.779843pt;}
.ws100{word-spacing:11.787843pt;}
.ws103{word-spacing:11.795839pt;}
.ws114{word-spacing:11.799843pt;}
.ws102{word-spacing:11.835838pt;}
.ws41{word-spacing:11.839842pt;}
.ws111{word-spacing:11.879842pt;}
.ws109{word-spacing:11.919841pt;}
.wsfb{word-spacing:11.959841pt;}
.wsfa{word-spacing:11.999840pt;}
.wsf8{word-spacing:12.039824pt;}
.wsfc{word-spacing:12.039839pt;}
.ws3e{word-spacing:12.079839pt;}
.ws3f{word-spacing:12.119838pt;}
.ws40{word-spacing:12.159838pt;}
.wsf9{word-spacing:12.199837pt;}
.ws119{word-spacing:12.239837pt;}
.wsfd{word-spacing:12.279836pt;}
.ws10a{word-spacing:12.319836pt;}
.ws10c{word-spacing:12.399835pt;}
.wsed{word-spacing:12.543843pt;}
.wsd1{word-spacing:12.586509pt;}
.ws48{word-spacing:12.629175pt;}
.wsb5{word-spacing:12.671842pt;}
.ws47{word-spacing:12.885172pt;}
.wsb4{word-spacing:12.885189pt;}
.ws8d{word-spacing:12.909735pt;}
.ws5b{word-spacing:13.171066pt;}
.ws93{word-spacing:13.223332pt;}
.ws8a{word-spacing:13.327864pt;}
.wsf2{word-spacing:13.484662pt;}
.wsf1{word-spacing:13.798259pt;}
.wsf0{word-spacing:13.902791pt;}
.ws4b{word-spacing:14.279108pt;}
.wsd3{word-spacing:14.326152pt;}
.ws34{word-spacing:14.462039pt;}
.wsce{word-spacing:14.524758pt;}
.ws5a{word-spacing:14.529985pt;}
.ws4c{word-spacing:14.629291pt;}
.ws8b{word-spacing:14.948114pt;}
.ws17{word-spacing:14.981483pt;}
.ws2b{word-spacing:15.073553pt;}
.ws1d{word-spacing:15.104913pt;}
.ws15{word-spacing:15.232152pt;}
.ws18{word-spacing:15.253486pt;}
.ws1e{word-spacing:15.261711pt;}
.ws19{word-spacing:15.360154pt;}
.ws104{word-spacing:15.379795pt;}
.ws10f{word-spacing:15.407764pt;}
.ws11b{word-spacing:15.427794pt;}
.ws1a{word-spacing:15.434821pt;}
.ws10d{word-spacing:15.439794pt;}
.ws83{word-spacing:15.465549pt;}
.wsb2{word-spacing:15.470775pt;}
.ws117{word-spacing:15.475794pt;}
.ws16{word-spacing:15.514822pt;}
.ws7f{word-spacing:15.523042pt;}
.ws10e{word-spacing:15.551793pt;}
.ws29{word-spacing:15.570081pt;}
.ws9b{word-spacing:15.575293pt;}
.ws28{word-spacing:15.575308pt;}
.ws5e{word-spacing:15.627574pt;}
.ws116{word-spacing:15.635792pt;}
.ws60{word-spacing:15.732106pt;}
.ws57{word-spacing:15.784372pt;}
.ws82{word-spacing:15.800052pt;}
.wsab{word-spacing:15.836638pt;}
.ws31{word-spacing:15.888905pt;}
.ws8e{word-spacing:15.941171pt;}
.wsbd{word-spacing:15.993437pt;}
.wsc{word-spacing:16.000160pt;}
.ws85{word-spacing:16.035250pt;}
.ws81{word-spacing:16.045703pt;}
.wsa{word-spacing:16.053494pt;}
.ws23{word-spacing:16.056156pt;}
.wsb{word-spacing:16.160162pt;}
.wse{word-spacing:16.213495pt;}
.wsd{word-spacing:16.266829pt;}
.ws5f{word-spacing:16.411566pt;}
.ws11a{word-spacing:16.439781pt;}
.ws1f{word-spacing:16.463832pt;}
.wse5{word-spacing:16.516098pt;}
.ws9{word-spacing:16.533499pt;}
.ws115{word-spacing:16.559779pt;}
.wsa8{word-spacing:16.777429pt;}
.wsbe{word-spacing:16.881961pt;}
.wsa7{word-spacing:16.986493pt;}
.ws50{word-spacing:17.038759pt;}
.ws7e{word-spacing:17.091026pt;}
.ws98{word-spacing:17.143292pt;}
.ws21{word-spacing:17.195558pt;}
.wse6{word-spacing:17.300090pt;}
.ws70{word-spacing:17.352356pt;}
.ws8{word-spacing:17.365491pt;}
.wsba{word-spacing:17.404622pt;}
.ws6{word-spacing:17.424158pt;}
.ws26{word-spacing:17.462115pt;}
.ws5{word-spacing:17.541493pt;}
.ws7{word-spacing:17.600160pt;}
.ws54{word-spacing:17.739126pt;}
.ws24{word-spacing:17.765259pt;}
.ws6d{word-spacing:17.875018pt;}
.wsb0{word-spacing:17.927284pt;}
.ws32{word-spacing:17.979550pt;}
.ws78{word-spacing:18.031816pt;}
.ws8c{word-spacing:18.136348pt;}
.ws51{word-spacing:18.267014pt;}
.ws6e{word-spacing:18.293147pt;}
.wsc9{word-spacing:18.345413pt;}
.wsc1{word-spacing:18.397679pt;}
.wsd5{word-spacing:18.554477pt;}
.wsf3{word-spacing:18.711276pt;}
.ws8f{word-spacing:18.763542pt;}
.wse8{word-spacing:18.815808pt;}
.ws6f{word-spacing:18.868074pt;}
.wse7{word-spacing:18.920340pt;}
.ws89{word-spacing:19.024873pt;}
.ws59{word-spacing:19.051006pt;}
.ws6c{word-spacing:19.077139pt;}
.ws5d{word-spacing:19.129405pt;}
.ws88{word-spacing:19.317563pt;}
.wsaf{word-spacing:19.390735pt;}
.ws6a{word-spacing:19.443002pt;}
.ws55{word-spacing:19.484815pt;}
.ws63{word-spacing:19.547534pt;}
.ws58{word-spacing:19.589347pt;}
.wsd9{word-spacing:19.599800pt;}
.ws4f{word-spacing:19.652066pt;}
.wsda{word-spacing:19.704332pt;}
.ws22{word-spacing:19.756598pt;}
.ws33{word-spacing:19.761825pt;}
.wsd8{word-spacing:19.808865pt;}
.wsaa{word-spacing:19.861131pt;}
.wsa9{word-spacing:19.913387pt;}
.wsbc{word-spacing:19.965663pt;}
.ws10{word-spacing:19.984200pt;}
.ws13{word-spacing:19.994867pt;}
.wsdd{word-spacing:20.017929pt;}
.ws11{word-spacing:20.053534pt;}
.wsf{word-spacing:20.064201pt;}
.wscb{word-spacing:20.075427pt;}
.ws2c{word-spacing:20.226994pt;}
.ws30{word-spacing:20.331526pt;}
.ws14{word-spacing:20.346870pt;}
.ws2f{word-spacing:20.383792pt;}
.ws12{word-spacing:20.394871pt;}
.ws20{word-spacing:20.436058pt;}
.ws80{word-spacing:20.472644pt;}
.wse2{word-spacing:20.540590pt;}
.wsc8{word-spacing:20.749655pt;}
.ws75{word-spacing:20.801921pt;}
.wsa3{word-spacing:20.854187pt;}
.wsf7{word-spacing:20.906453pt;}
.wsc5{word-spacing:20.958719pt;}
.ws0{word-spacing:21.008000pt;}
.wsc7{word-spacing:21.115518pt;}
.wscd{word-spacing:21.136424pt;}
.wse3{word-spacing:21.167784pt;}
.wsb8{word-spacing:21.220050pt;}
.ws92{word-spacing:21.272316pt;}
.ws9d{word-spacing:21.324582pt;}
.wsea{word-spacing:21.481381pt;}
.ws9f{word-spacing:21.585913pt;}
.ws95{word-spacing:21.899510pt;}
.wsb1{word-spacing:21.951776pt;}
.wsc0{word-spacing:22.004042pt;}
.wsb7{word-spacing:22.108574pt;}
.ws96{word-spacing:22.160841pt;}
.ws7b{word-spacing:22.369905pt;}
.wsa1{word-spacing:22.474437pt;}
.wsad{word-spacing:22.578970pt;}
.wsdb{word-spacing:22.631236pt;}
.ws2e{word-spacing:22.683502pt;}
.ws9c{word-spacing:22.788034pt;}
.ws79{word-spacing:22.840300pt;}
.ws74{word-spacing:22.892566pt;}
.ws65{word-spacing:23.101631pt;}
.ws2a{word-spacing:23.132991pt;}
.ws66{word-spacing:23.153897pt;}
.wscf{word-spacing:23.200937pt;}
.ws64{word-spacing:23.258429pt;}
.ws36{word-spacing:23.289789pt;}
.ws97{word-spacing:23.415228pt;}
.ws38{word-spacing:23.472720pt;}
.wsee{word-spacing:23.624292pt;}
.wsb6{word-spacing:23.676558pt;}
.wsbf{word-spacing:23.833357pt;}
.wsde{word-spacing:23.885623pt;}
.ws87{word-spacing:23.969249pt;}
.ws61{word-spacing:24.042421pt;}
.ws86{word-spacing:24.099914pt;}
.wsa0{word-spacing:24.251486pt;}
.ws4e{word-spacing:24.356018pt;}
.wse1{word-spacing:24.512817pt;}
.ws1c{word-spacing:24.565083pt;}
.wsa6{word-spacing:24.617349pt;}
.wsbb{word-spacing:24.669615pt;}
.ws9a{word-spacing:24.721881pt;}
.ws84{word-spacing:24.732334pt;}
.ws99{word-spacing:24.774147pt;}
.wsa5{word-spacing:24.826413pt;}
.ws76{word-spacing:24.878679pt;}
.wsf4{word-spacing:24.930946pt;}
.ws35{word-spacing:25.051158pt;}
.wsa2{word-spacing:25.087744pt;}
.wsf5{word-spacing:25.140010pt;}
.wse9{word-spacing:25.192276pt;}
.wse4{word-spacing:25.296809pt;}
.ws53{word-spacing:25.312483pt;}
.wsae{word-spacing:25.453607pt;}
.wse0{word-spacing:25.505873pt;}
.wsf6{word-spacing:25.558139pt;}
.wsc4{word-spacing:25.610405pt;}
.wsb9{word-spacing:25.662671pt;}
.ws7d{word-spacing:25.714938pt;}
.wsef{word-spacing:25.924002pt;}
.ws72{word-spacing:26.028534pt;}
.wsa4{word-spacing:26.133067pt;}
.ws71{word-spacing:26.185333pt;}
.ws69{word-spacing:26.342131pt;}
.ws62{word-spacing:26.498930pt;}
.ws3a{word-spacing:26.613915pt;}
.ws90{word-spacing:26.760260pt;}
.ws39{word-spacing:26.854339pt;}
.ws3b{word-spacing:26.901379pt;}
.ws5c{word-spacing:26.969325pt;}
.wsca{word-spacing:27.058177pt;}
.ws4d{word-spacing:27.335188pt;}
.wsc6{word-spacing:27.648785pt;}
.ws67{word-spacing:27.753317pt;}
.wsd6{word-spacing:28.275978pt;}
.wsd2{word-spacing:28.411870pt;}
.wsb3{word-spacing:28.694107pt;}
.wsc3{word-spacing:28.798639pt;}
.wsc2{word-spacing:28.903172pt;}
.wsd0{word-spacing:29.107010pt;}
.wsdf{word-spacing:29.269035pt;}
.wscc{word-spacing:29.305621pt;}
.ws27{word-spacing:29.316074pt;}
.ws9e{word-spacing:29.425833pt;}
.ws91{word-spacing:29.530365pt;}
.wsac{word-spacing:29.582631pt;}
.ws73{word-spacing:29.948494pt;}
.wsec{word-spacing:30.262091pt;}
.ws2d{word-spacing:30.523422pt;}
.ws94{word-spacing:31.150615pt;}
.ws68{word-spacing:31.725543pt;}
.ws6b{word-spacing:32.405003pt;}
.ws77{word-spacing:34.182051pt;}
.wseb{word-spacing:35.959100pt;}
.ws7c{word-spacing:36.272697pt;}
.wsdc{word-spacing:37.318019pt;}
.wsd7{word-spacing:37.892947pt;}
.ws3{word-spacing:38.144159pt;}
.ws2{word-spacing:38.400160pt;}
.ws1{word-spacing:38.528161pt;}
.ws4{word-spacing:38.784162pt;}
.ws7a{word-spacing:52.057069pt;}
._1c{margin-left:-15.930667pt;}
._14{margin-left:-5.017549pt;}
._1a{margin-left:-3.204697pt;}
._f{margin-left:-2.195178pt;}
._b{margin-left:-0.960010pt;}
._6{width:1.280013pt;}
._15{width:2.188776pt;}
._0{width:7.973333pt;}
._1b{width:11.119852pt;}
._12{width:12.021162pt;}
._a{width:13.440134pt;}
._7{width:15.253486pt;}
._5{width:17.013503pt;}
._13{width:18.084082pt;}
._10{width:18.977998pt;}
._9{width:20.533539pt;}
._8{width:22.229556pt;}
._d{width:23.441868pt;}
._16{width:24.408284pt;}
._c{width:25.584780pt;}
._11{width:27.073857pt;}
._1{width:29.050667pt;}
._18{width:30.000761pt;}
._e{width:32.195938pt;}
._17{width:35.331906pt;}
._4{width:37.760157pt;}
._3{width:39.168163pt;}
._1d{width:57.439234pt;}
._1e{width:58.559219pt;}
._19{width:1269.360081pt;}
._2{width:1424.245333pt;}
.fs8{font-size:26.662400pt;}
.fsb{font-size:34.839467pt;}
.fs9{font-size:37.332800pt;}
.fsc{font-size:37.333333pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fsd{font-size:58.666133pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:58.128076pt;}
.y3c{bottom:68.786590pt;}
.y1a0{bottom:72.445467pt;}
.y170{bottom:79.377960pt;}
.y128{bottom:79.391867pt;}
.y76{bottom:79.423880pt;}
.yab{bottom:79.442867pt;}
.y3b{bottom:79.445105pt;}
.y19f{bottom:83.113467pt;}
.yd3{bottom:87.684933pt;}
.y3a{bottom:90.103619pt;}
.y16f{bottom:91.397800pt;}
.y127{bottom:91.411707pt;}
.y75{bottom:95.443453pt;}
.yaa{bottom:95.462440pt;}
.y39{bottom:100.762133pt;}
.y16e{bottom:103.417640pt;}
.y126{bottom:103.431547pt;}
.y19e{bottom:105.616133pt;}
.y74{bottom:111.397680pt;}
.ya9{bottom:111.416680pt;}
.y16d{bottom:115.357480pt;}
.y125{bottom:115.371387pt;}
.y19d{bottom:121.613467pt;}
.y38{bottom:123.362827pt;}
.y16c{bottom:127.377320pt;}
.y124{bottom:127.391227pt;}
.y73{bottom:127.417253pt;}
.ya8{bottom:127.436240pt;}
.y37{bottom:135.382667pt;}
.y19c{bottom:137.610800pt;}
.y16b{bottom:139.397160pt;}
.y36{bottom:139.842533pt;}
.y72{bottom:143.436827pt;}
.ya7{bottom:143.455813pt;}
.y31{bottom:147.151825pt;}
.y35{bottom:147.400560pt;}
.y16a{bottom:151.417000pt;}
.y19b{bottom:153.608133pt;}
.y123{bottom:155.960853pt;}
.y71{bottom:159.391053pt;}
.ya6{bottom:159.410053pt;}
.y34{bottom:159.420400pt;}
.y30{bottom:163.171395pt;}
.y169{bottom:163.356840pt;}
.y33{bottom:163.804667pt;}
.y122{bottom:167.980693pt;}
.y19a{bottom:169.605467pt;}
.y32{bottom:171.363733pt;}
.y168{bottom:175.376680pt;}
.y70{bottom:175.410627pt;}
.ya5{bottom:175.429613pt;}
.y2f{bottom:179.125632pt;}
.y121{bottom:180.000533pt;}
.y199{bottom:185.602800pt;}
.y167{bottom:187.396520pt;}
.y6f{bottom:191.430200pt;}
.ya4{bottom:191.449187pt;}
.y120{bottom:191.940373pt;}
.y2e{bottom:195.145202pt;}
.y166{bottom:199.416360pt;}
.y198{bottom:201.600133pt;}
.y11f{bottom:203.960213pt;}
.y6e{bottom:207.384440pt;}
.ya3{bottom:207.403427pt;}
.y23{bottom:211.138639pt;}
.y2d{bottom:211.164772pt;}
.y165{bottom:211.356200pt;}
.y11e{bottom:215.980053pt;}
.y1a2{bottom:221.243627pt;}
.y164{bottom:223.376040pt;}
.y6d{bottom:223.404000pt;}
.ya2{bottom:223.423000pt;}
.y22{bottom:227.092876pt;}
.y2c{bottom:227.119009pt;}
.y11d{bottom:227.999893pt;}
.y163{bottom:235.395880pt;}
.y1a1{bottom:238.843467pt;}
.y6c{bottom:239.423573pt;}
.ya1{bottom:239.442560pt;}
.y11c{bottom:239.939733pt;}
.y21{bottom:243.112446pt;}
.y2b{bottom:243.138579pt;}
.y162{bottom:247.415720pt;}
.y11b{bottom:251.959573pt;}
.y6b{bottom:255.377813pt;}
.ya0{bottom:255.396800pt;}
.y20{bottom:259.132016pt;}
.y2a{bottom:259.158149pt;}
.y161{bottom:259.355560pt;}
.y11a{bottom:263.979413pt;}
.y160{bottom:271.375400pt;}
.y6a{bottom:271.397373pt;}
.y9f{bottom:271.416373pt;}
.y1f{bottom:275.086253pt;}
.y29{bottom:275.112386pt;}
.y15f{bottom:283.395240pt;}
.y69{bottom:287.416947pt;}
.y9e{bottom:287.435933pt;}
.y1e{bottom:291.105823pt;}
.y28{bottom:291.131956pt;}
.y119{bottom:292.549027pt;}
.y15e{bottom:295.415080pt;}
.y68{bottom:303.371187pt;}
.y9d{bottom:303.390173pt;}
.y118{bottom:304.568867pt;}
.y1d{bottom:307.125393pt;}
.y27{bottom:307.151526pt;}
.y15d{bottom:307.354920pt;}
.y117{bottom:316.508707pt;}
.y15c{bottom:319.374760pt;}
.y67{bottom:319.390760pt;}
.y9c{bottom:319.409747pt;}
.y1c{bottom:323.079630pt;}
.y26{bottom:323.105763pt;}
.y116{bottom:328.528547pt;}
.y15b{bottom:331.394600pt;}
.y66{bottom:335.410320pt;}
.y9b{bottom:335.429307pt;}
.y1b{bottom:339.099200pt;}
.y25{bottom:339.125333pt;}
.y115{bottom:340.548387pt;}
.y15a{bottom:343.414440pt;}
.y65{bottom:351.364560pt;}
.ybe{bottom:351.370173pt;}
.y9a{bottom:351.383547pt;}
.yd1{bottom:351.409400pt;}
.y114{bottom:352.568227pt;}
.y1a{bottom:355.124267pt;}
.y24{bottom:355.144903pt;}
.y159{bottom:355.354280pt;}
.y113{bottom:364.508067pt;}
.y158{bottom:367.374120pt;}
.y64{bottom:367.384133pt;}
.ybd{bottom:367.389747pt;}
.y99{bottom:367.403120pt;}
.ye7{bottom:367.409627pt;}
.yd0{bottom:367.428960pt;}
.yfa{bottom:367.448840pt;}
.y157{bottom:379.393960pt;}
.y63{bottom:383.403693pt;}
.ybc{bottom:383.409320pt;}
.y98{bottom:383.422693pt;}
.ye6{bottom:383.429187pt;}
.ycf{bottom:383.448533pt;}
.yf9{bottom:383.468413pt;}
.y156{bottom:391.413800pt;}
.y112{bottom:393.077680pt;}
.y19{bottom:395.732907pt;}
.y62{bottom:399.357933pt;}
.ybb{bottom:399.363547pt;}
.y97{bottom:399.376920pt;}
.ye5{bottom:399.383427pt;}
.yce{bottom:399.402773pt;}
.yf8{bottom:399.422640pt;}
.y155{bottom:403.353640pt;}
.y111{bottom:405.097520pt;}
.y154{bottom:415.373480pt;}
.y61{bottom:415.377507pt;}
.yba{bottom:415.383120pt;}
.y96{bottom:415.396493pt;}
.ye4{bottom:415.403000pt;}
.ycd{bottom:415.422333pt;}
.yf7{bottom:415.442213pt;}
.y18{bottom:418.413134pt;}
.y153{bottom:427.393320pt;}
.y60{bottom:431.397080pt;}
.yb9{bottom:431.402693pt;}
.y95{bottom:431.416067pt;}
.ye3{bottom:431.422560pt;}
.ycc{bottom:431.441907pt;}
.yf6{bottom:431.461787pt;}
.y110{bottom:433.667147pt;}
.y17{bottom:434.359960pt;}
.y152{bottom:439.413160pt;}
.y10f{bottom:445.686987pt;}
.y5f{bottom:447.351307pt;}
.yb8{bottom:447.356933pt;}
.y94{bottom:447.370307pt;}
.ye2{bottom:447.376800pt;}
.ycb{bottom:447.396147pt;}
.yf5{bottom:447.416013pt;}
.y16{bottom:450.386787pt;}
.y151{bottom:451.353000pt;}
.y197{bottom:459.370893pt;}
.y5e{bottom:463.370880pt;}
.y150{bottom:463.372840pt;}
.yb7{bottom:463.376493pt;}
.y93{bottom:463.389867pt;}
.ye1{bottom:463.396373pt;}
.yca{bottom:463.415720pt;}
.yf4{bottom:463.435587pt;}
.y15{bottom:470.413654pt;}
.y196{bottom:471.390733pt;}
.y10e{bottom:474.256600pt;}
.y14f{bottom:475.392680pt;}
.y5d{bottom:479.390453pt;}
.yb6{bottom:479.396067pt;}
.y92{bottom:479.409440pt;}
.ye0{bottom:479.415947pt;}
.yc9{bottom:479.435280pt;}
.yf3{bottom:479.455160pt;}
.y195{bottom:483.410573pt;}
.y10d{bottom:486.276440pt;}
.y14{bottom:486.360480pt;}
.y14e{bottom:487.412520pt;}
.y5c{bottom:495.344680pt;}
.yb5{bottom:495.350307pt;}
.y194{bottom:495.350413pt;}
.y5a{bottom:495.351307pt;}
.y91{bottom:495.363680pt;}
.ydf{bottom:495.370173pt;}
.yc8{bottom:495.389520pt;}
.yf2{bottom:495.409400pt;}
.y10c{bottom:498.216280pt;}
.y14d{bottom:499.352360pt;}
.y5b{bottom:501.165200pt;}
.y13{bottom:502.387307pt;}
.y193{bottom:507.370253pt;}
.y10b{bottom:510.236120pt;}
.yb4{bottom:511.369867pt;}
.y59{bottom:511.370880pt;}
.y14c{bottom:511.372200pt;}
.y90{bottom:511.383240pt;}
.yde{bottom:511.389747pt;}
.yc7{bottom:511.409093pt;}
.yf1{bottom:511.428960pt;}
.y12{bottom:518.414134pt;}
.y192{bottom:519.390093pt;}
.y14b{bottom:523.392040pt;}
.y58{bottom:527.390453pt;}
.yb3{bottom:527.395187pt;}
.y8f{bottom:527.402813pt;}
.ydd{bottom:527.409320pt;}
.yc6{bottom:527.428653pt;}
.yf0{bottom:527.448533pt;}
.y191{bottom:531.409933pt;}
.y11{bottom:534.360960pt;}
.y14a{bottom:535.411880pt;}
.y10a{bottom:538.841480pt;}
.y57{bottom:543.344680pt;}
.y190{bottom:543.349773pt;}
.y8e{bottom:543.357053pt;}
.ydc{bottom:543.363547pt;}
.yc5{bottom:543.382893pt;}
.yef{bottom:543.402773pt;}
.y149{bottom:547.351720pt;}
.y10{bottom:554.387827pt;}
.y109{bottom:554.861053pt;}
.y18f{bottom:555.369613pt;}
.y56{bottom:559.370000pt;}
.y148{bottom:559.371560pt;}
.y8d{bottom:559.376613pt;}
.yb2{bottom:559.377507pt;}
.ydb{bottom:559.383120pt;}
.yc4{bottom:559.402467pt;}
.yee{bottom:559.422333pt;}
.y18e{bottom:567.389453pt;}
.yf{bottom:570.414654pt;}
.y108{bottom:570.815293pt;}
.y147{bottom:571.391400pt;}
.y8c{bottom:575.396187pt;}
.yb1{bottom:575.397080pt;}
.yda{bottom:575.402693pt;}
.yc3{bottom:575.422040pt;}
.yed{bottom:575.441907pt;}
.y18d{bottom:579.409293pt;}
.y146{bottom:583.411240pt;}
.ye{bottom:586.361480pt;}
.y107{bottom:586.834853pt;}
.y18c{bottom:591.349133pt;}
.y8b{bottom:591.350427pt;}
.yb0{bottom:591.351307pt;}
.yd9{bottom:591.356933pt;}
.yc2{bottom:591.376267pt;}
.y55{bottom:591.391013pt;}
.yec{bottom:591.396147pt;}
.y145{bottom:595.351080pt;}
.y106{bottom:602.854427pt;}
.y18b{bottom:603.368973pt;}
.yd{bottom:606.388347pt;}
.y8a{bottom:607.370000pt;}
.yaf{bottom:607.370880pt;}
.yd8{bottom:607.376493pt;}
.yc1{bottom:607.395840pt;}
.y54{bottom:607.410587pt;}
.yeb{bottom:607.415720pt;}
.y18a{bottom:615.388800pt;}
.y105{bottom:618.808667pt;}
.yc{bottom:622.415174pt;}
.yae{bottom:623.390453pt;}
.y89{bottom:623.395187pt;}
.yd7{bottom:623.396067pt;}
.yc0{bottom:623.415413pt;}
.y53{bottom:623.430160pt;}
.yea{bottom:623.435280pt;}
.y189{bottom:627.408640pt;}
.y104{bottom:634.828240pt;}
.yb{bottom:638.362000pt;}
.yad{bottom:639.344680pt;}
.y188{bottom:639.348493pt;}
.yd6{bottom:639.350307pt;}
.ybf{bottom:639.369640pt;}
.y52{bottom:639.384400pt;}
.ye9{bottom:639.389520pt;}
.y144{bottom:647.356067pt;}
.y103{bottom:650.847800pt;}
.y187{bottom:651.368320pt;}
.yd5{bottom:655.369867pt;}
.y51{bottom:655.403960pt;}
.ye8{bottom:655.409093pt;}
.y88{bottom:655.449000pt;}
.ya{bottom:662.399867pt;}
.y186{bottom:663.388160pt;}
.y102{bottom:666.802040pt;}
.y143{bottom:671.395747pt;}
.y50{bottom:671.423533pt;}
.y87{bottom:671.468560pt;}
.y185{bottom:675.408000pt;}
.yd2{bottom:680.768387pt;}
.y101{bottom:682.821613pt;}
.y142{bottom:683.415587pt;}
.y184{bottom:687.347840pt;}
.y4f{bottom:687.377773pt;}
.y86{bottom:687.422800pt;}
.yfb{bottom:693.014000pt;}
.y141{bottom:695.355427pt;}
.y100{bottom:698.841173pt;}
.y183{bottom:699.367680pt;}
.y4e{bottom:703.397333pt;}
.y85{bottom:703.442373pt;}
.y140{bottom:707.375267pt;}
.y182{bottom:711.387520pt;}
.y8{bottom:713.725733pt;}
.yff{bottom:714.795413pt;}
.y13d{bottom:719.394147pt;}
.y13f{bottom:719.395107pt;}
.y4d{bottom:719.416907pt;}
.y84{bottom:719.461947pt;}
.y9{bottom:720.226533pt;}
.y181{bottom:723.407360pt;}
.y13e{bottom:723.854893pt;}
.yfe{bottom:730.814987pt;}
.y13c{bottom:731.413987pt;}
.y13a{bottom:731.417333pt;}
.y6{bottom:732.396667pt;}
.y180{bottom:735.347200pt;}
.y4c{bottom:735.371147pt;}
.y83{bottom:735.416173pt;}
.y13b{bottom:735.798253pt;}
.y7{bottom:738.897467pt;}
.y137{bottom:743.356467pt;}
.y139{bottom:743.357173pt;}
.yfd{bottom:746.834560pt;}
.y17f{bottom:747.367040pt;}
.y138{bottom:747.817227pt;}
.y4b{bottom:751.390720pt;}
.y82{bottom:751.435747pt;}
.y134{bottom:755.375267pt;}
.y136{bottom:755.376307pt;}
.y17e{bottom:759.386880pt;}
.y135{bottom:759.836013pt;}
.yfc{bottom:762.784013pt;}
.y5{bottom:764.383567pt;}
.y133{bottom:767.395107pt;}
.y4a{bottom:767.410280pt;}
.y81{bottom:767.455320pt;}
.y17d{bottom:771.406720pt;}
.y132{bottom:771.854893pt;}
.y131{bottom:779.415587pt;}
.y17c{bottom:783.346560pt;}
.y49{bottom:783.364520pt;}
.y80{bottom:783.409547pt;}
.y17b{bottom:795.366400pt;}
.y4{bottom:799.071711pt;}
.y48{bottom:799.384093pt;}
.y7f{bottom:799.429120pt;}
.y130{bottom:803.375267pt;}
.y17a{bottom:807.386240pt;}
.y12f{bottom:815.395107pt;}
.y47{bottom:815.403653pt;}
.y7e{bottom:815.448693pt;}
.y179{bottom:819.406080pt;}
.y12e{bottom:827.413987pt;}
.y178{bottom:831.345920pt;}
.y46{bottom:831.357893pt;}
.y7d{bottom:831.402933pt;}
.y3{bottom:833.695855pt;}
.y177{bottom:843.365760pt;}
.y45{bottom:847.377467pt;}
.y7c{bottom:847.422493pt;}
.y176{bottom:855.385600pt;}
.y44{bottom:863.397027pt;}
.y12d{bottom:863.421440pt;}
.y7b{bottom:863.442067pt;}
.y175{bottom:867.405440pt;}
.y2{bottom:868.384000pt;}
.y12c{bottom:875.441280pt;}
.y174{bottom:879.345280pt;}
.y43{bottom:879.351267pt;}
.y7a{bottom:879.396307pt;}
.y12b{bottom:887.381120pt;}
.y173{bottom:891.365120pt;}
.y42{bottom:895.370840pt;}
.y79{bottom:895.415867pt;}
.y172{bottom:903.384960pt;}
.y41{bottom:911.390413pt;}
.y78{bottom:911.435440pt;}
.y171{bottom:915.404800pt;}
.y12a{bottom:915.430747pt;}
.y1{bottom:919.029600pt;}
.y40{bottom:927.344640pt;}
.y129{bottom:927.370587pt;}
.y77{bottom:927.389680pt;}
.y3f{bottom:989.180433pt;}
.yd4{bottom:1002.478827pt;}
.y3e{bottom:1002.481600pt;}
.yac{bottom:1002.481613pt;}
.ha{height:19.223590pt;}
.he{height:25.223774pt;}
.hb{height:26.916949pt;}
.h5{height:28.196676pt;}
.hf{height:28.560000pt;}
.h9{height:28.839615pt;}
.hd{height:30.762282pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.h4{height:42.299051pt;}
.h10{height:44.116932pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x10{left:79.143333pt;}
.x1{left:80.957467pt;}
.xd{left:84.283467pt;}
.x12{left:86.252827pt;}
.x1f{left:95.625760pt;}
.x13{left:155.867733pt;}
.x14{left:168.642533pt;}
.xc{left:182.173200pt;}
.x3{left:195.703867pt;}
.x4{left:211.502267pt;}
.x11{left:240.604667pt;}
.x15{left:302.437720pt;}
.x16{left:315.212520pt;}
.x5{left:318.538533pt;}
.x6{left:323.527467pt;}
.xe{left:406.265292pt;}
.x17{left:409.851853pt;}
.xf{left:416.914517pt;}
.x21{left:424.530520pt;}
.x1e{left:426.334293pt;}
.x20{left:431.598267pt;}
.x7{left:443.867600pt;}
.x8{left:448.932133pt;}
.x1a{left:480.075480pt;}
.x1b{left:483.628253pt;}
.x18{left:517.039187pt;}
.x19{left:520.667600pt;}
.x9{left:531.250267pt;}
.xa{left:543.042400pt;}
.x1c{left:594.443853pt;}
.x1d{left:598.072267pt;}
.xb{left:621.958933pt;}
}




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