
    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_4b2796c23f51d23a0ef8b613.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fcce6ab98ca53ec7ea9e677b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1d2e500148651fe4be3489a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_926d24c2a615409682720470.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_43779213523bf7e7fdfa70f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_64d09aee8a5b6ae16cc7dc2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_2d1b9b0e315c7c6f009bd766.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_f56fde38d7251cf3ea3b38cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_390e2124016009b2d5a8d881.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.lsa0{letter-spacing:-2.640000px;}
.ls68{letter-spacing:-2.160000px;}
.ls44{letter-spacing:-1.776000px;}
.lsf{letter-spacing:-0.780000px;}
.ls36{letter-spacing:-0.240000px;}
.ls8e{letter-spacing:-0.192000px;}
.ls5b{letter-spacing:-0.180000px;}
.ls9c{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls4b{letter-spacing:-0.096000px;}
.ls40{letter-spacing:-0.060000px;}
.ls8d{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls6e{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls70{letter-spacing:0.096000px;}
.ls1e{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.192000px;}
.ls15{letter-spacing:0.240000px;}
.ls6f{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.300000px;}
.ls9e{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.384000px;}
.ls2a{letter-spacing:0.420000px;}
.ls6a{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.480000px;}
.ls94{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.600000px;}
.ls86{letter-spacing:0.624000px;}
.ls12{letter-spacing:0.660000px;}
.ls98{letter-spacing:0.672000px;}
.ls29{letter-spacing:0.720000px;}
.ls7e{letter-spacing:0.768000px;}
.ls21{letter-spacing:0.780000px;}
.ls3a{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls82{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.900000px;}
.ls69{letter-spacing:0.912000px;}
.ls24{letter-spacing:0.960000px;}
.ls6b{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.020000px;}
.ls47{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls84{letter-spacing:1.104000px;}
.ls4{letter-spacing:1.140000px;}
.ls78{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls8c{letter-spacing:1.248000px;}
.ls39{letter-spacing:1.260000px;}
.ls49{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.320000px;}
.ls71{letter-spacing:1.344000px;}
.ls16{letter-spacing:1.380000px;}
.ls9b{letter-spacing:1.392000px;}
.ls1c{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.500000px;}
.ls8f{letter-spacing:1.536000px;}
.ls18{letter-spacing:1.560000px;}
.ls7f{letter-spacing:1.584000px;}
.ls31{letter-spacing:1.620000px;}
.ls9d{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.680000px;}
.ls97{letter-spacing:1.728000px;}
.ls43{letter-spacing:1.740000px;}
.ls92{letter-spacing:1.776000px;}
.ls2d{letter-spacing:1.800000px;}
.ls93{letter-spacing:1.824000px;}
.ls3f{letter-spacing:1.860000px;}
.ls2c{letter-spacing:1.920000px;}
.ls38{letter-spacing:1.980000px;}
.ls7c{letter-spacing:2.016000px;}
.ls2e{letter-spacing:2.040000px;}
.ls7a{letter-spacing:2.064000px;}
.ls51{letter-spacing:2.100000px;}
.ls89{letter-spacing:2.112000px;}
.ls1d{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.220000px;}
.ls20{letter-spacing:2.280000px;}
.ls83{letter-spacing:2.304000px;}
.ls61{letter-spacing:2.340000px;}
.ls74{letter-spacing:2.352000px;}
.ls1f{letter-spacing:2.400000px;}
.ls8a{letter-spacing:2.448000px;}
.ls14{letter-spacing:2.460000px;}
.ls7d{letter-spacing:2.496000px;}
.ls22{letter-spacing:2.520000px;}
.ls46{letter-spacing:2.544000px;}
.ls13{letter-spacing:2.580000px;}
.ls7{letter-spacing:2.640000px;}
.ls88{letter-spacing:2.688000px;}
.lsa{letter-spacing:2.700000px;}
.ls9f{letter-spacing:2.736000px;}
.ls3d{letter-spacing:2.760000px;}
.ls95{letter-spacing:2.784000px;}
.ls54{letter-spacing:2.820000px;}
.lsb{letter-spacing:2.880000px;}
.ls8{letter-spacing:2.940000px;}
.ls6c{letter-spacing:2.976000px;}
.ls55{letter-spacing:3.000000px;}
.ls17{letter-spacing:3.060000px;}
.ls4e{letter-spacing:3.120000px;}
.ls41{letter-spacing:3.180000px;}
.ls52{letter-spacing:3.240000px;}
.ls48{letter-spacing:3.264000px;}
.ls6{letter-spacing:3.300000px;}
.ls73{letter-spacing:3.312000px;}
.ls1{letter-spacing:3.360000px;}
.ls85{letter-spacing:3.408000px;}
.ls25{letter-spacing:3.420000px;}
.ls42{letter-spacing:3.480000px;}
.ls9a{letter-spacing:3.504000px;}
.ls56{letter-spacing:3.540000px;}
.ls7b{letter-spacing:3.552000px;}
.ls3{letter-spacing:3.600000px;}
.ls35{letter-spacing:3.720000px;}
.ls28{letter-spacing:3.780000px;}
.ls77{letter-spacing:3.792000px;}
.ls3c{letter-spacing:3.840000px;}
.ls96{letter-spacing:3.888000px;}
.ls3e{letter-spacing:3.960000px;}
.ls8b{letter-spacing:3.984000px;}
.ls60{letter-spacing:4.020000px;}
.ls91{letter-spacing:4.032000px;}
.ls58{letter-spacing:4.080000px;}
.ls5d{letter-spacing:4.128000px;}
.ls4c{letter-spacing:4.140000px;}
.ls80{letter-spacing:4.368000px;}
.ls4d{letter-spacing:4.380000px;}
.ls90{letter-spacing:4.416000px;}
.ls50{letter-spacing:4.500000px;}
.ls5f{letter-spacing:4.560000px;}
.ls37{letter-spacing:4.620000px;}
.ls87{letter-spacing:4.656000px;}
.ls99{letter-spacing:4.848000px;}
.ls5e{letter-spacing:4.860000px;}
.ls45{letter-spacing:4.920000px;}
.ls64{letter-spacing:5.040000px;}
.ls79{letter-spacing:5.136000px;}
.ls67{letter-spacing:5.400000px;}
.ls53{letter-spacing:5.520000px;}
.ls59{letter-spacing:5.820000px;}
.ls57{letter-spacing:6.120000px;}
.ls63{letter-spacing:6.240000px;}
.ls5a{letter-spacing:6.360000px;}
.ls75{letter-spacing:6.384000px;}
.ls62{letter-spacing:6.480000px;}
.ls19{letter-spacing:6.540000px;}
.ls1b{letter-spacing:7.200000px;}
.ls65{letter-spacing:7.260000px;}
.ls23{letter-spacing:7.500000px;}
.ls4f{letter-spacing:7.620000px;}
.ls81{letter-spacing:8.304000px;}
.ls66{letter-spacing:8.940000px;}
.ls76{letter-spacing:10.368000px;}
.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;}
}
.wsb4{word-spacing:-19.020000px;}
.wsc4{word-spacing:-18.384000px;}
.ws84{word-spacing:-18.180000px;}
.wsa3{word-spacing:-18.060000px;}
.ws3{word-spacing:-17.880000px;}
.ws97{word-spacing:-17.760000px;}
.ws83{word-spacing:-17.700000px;}
.wsb{word-spacing:-17.580000px;}
.ws15{word-spacing:-17.520000px;}
.wsb3{word-spacing:-17.340000px;}
.ws10{word-spacing:-17.280000px;}
.wse{word-spacing:-17.220000px;}
.wsb6{word-spacing:-17.100000px;}
.ws117{word-spacing:-17.040000px;}
.ws18{word-spacing:-16.920000px;}
.wsf9{word-spacing:-16.848000px;}
.ws62{word-spacing:-16.800000px;}
.ws63{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.wsd{word-spacing:-16.560000px;}
.wsa2{word-spacing:-16.440000px;}
.wsb1{word-spacing:-16.380000px;}
.ws17{word-spacing:-16.320000px;}
.ws95{word-spacing:-16.140000px;}
.ws11{word-spacing:-16.080000px;}
.ws98{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.960000px;}
.ws49{word-spacing:-15.900000px;}
.ws14{word-spacing:-15.780000px;}
.ws91{word-spacing:-15.720000px;}
.ws82{word-spacing:-15.660000px;}
.wsfd{word-spacing:-15.504000px;}
.ws73{word-spacing:-15.480000px;}
.wsb2{word-spacing:-15.420000px;}
.wsc{word-spacing:-15.360000px;}
.wsb5{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.240000px;}
.ws19{word-spacing:-15.180000px;}
.ws75{word-spacing:-15.120000px;}
.ws74{word-spacing:-15.060000px;}
.ws12{word-spacing:-15.000000px;}
.wsc0{word-spacing:-14.976000px;}
.ws4a{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.760000px;}
.wsc9{word-spacing:-14.496000px;}
.ws11a{word-spacing:-14.400000px;}
.wsed{word-spacing:-14.064000px;}
.wsc8{word-spacing:-14.016000px;}
.wsf1{word-spacing:-13.824000px;}
.ws118{word-spacing:-13.632000px;}
.wsca{word-spacing:-13.584000px;}
.wsee{word-spacing:-13.536000px;}
.ws96{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.344000px;}
.wsc6{word-spacing:-13.200000px;}
.wsf2{word-spacing:-13.152000px;}
.wsf4{word-spacing:-13.104000px;}
.wsfa{word-spacing:-13.056000px;}
.wsc7{word-spacing:-13.008000px;}
.wsf5{word-spacing:-12.960000px;}
.wscb{word-spacing:-12.864000px;}
.wsf7{word-spacing:-12.816000px;}
.wsfc{word-spacing:-12.720000px;}
.ws11b{word-spacing:-12.672000px;}
.ws11d{word-spacing:-12.624000px;}
.wsc3{word-spacing:-12.576000px;}
.wsf8{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.wsf3{word-spacing:-12.480000px;}
.ws119{word-spacing:-12.432000px;}
.wsc5{word-spacing:-12.384000px;}
.wsc1{word-spacing:-12.288000px;}
.wsf0{word-spacing:-12.192000px;}
.wsa0{word-spacing:-12.144000px;}
.wsfb{word-spacing:-12.096000px;}
.wsef{word-spacing:-12.048000px;}
.ws3e{word-spacing:-12.000000px;}
.wsf6{word-spacing:-11.952000px;}
.wsc2{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.508400px;}
.ws11c{word-spacing:-9.360000px;}
.ws80{word-spacing:-7.824000px;}
.wsad{word-spacing:-6.480000px;}
.wsdb{word-spacing:-6.384000px;}
.ws7e{word-spacing:-5.040000px;}
.ws76{word-spacing:-4.920000px;}
.wsa6{word-spacing:-4.860000px;}
.wse9{word-spacing:-4.656000px;}
.ws41{word-spacing:-4.620000px;}
.ws103{word-spacing:-4.416000px;}
.ws88{word-spacing:-4.380000px;}
.ws9a{word-spacing:-4.140000px;}
.ws10f{word-spacing:-4.128000px;}
.wsab{word-spacing:-4.020000px;}
.wseb{word-spacing:-3.984000px;}
.ws109{word-spacing:-3.888000px;}
.ws56{word-spacing:-3.840000px;}
.ws2d{word-spacing:-3.780000px;}
.ws3f{word-spacing:-3.720000px;}
.wsa9{word-spacing:-3.600000px;}
.wsdf{word-spacing:-3.552000px;}
.ws99{word-spacing:-3.540000px;}
.ws113{word-spacing:-3.504000px;}
.ws6f{word-spacing:-3.480000px;}
.ws85{word-spacing:-3.420000px;}
.wsda{word-spacing:-3.360000px;}
.ws9c{word-spacing:-3.300000px;}
.ws5d{word-spacing:-3.180000px;}
.ws8b{word-spacing:-3.120000px;}
.wsbe{word-spacing:-3.000000px;}
.wsd2{word-spacing:-2.976000px;}
.ws6{word-spacing:-2.886000px;}
.ws102{word-spacing:-2.880000px;}
.ws90{word-spacing:-2.820000px;}
.ws108{word-spacing:-2.784000px;}
.ws57{word-spacing:-2.760000px;}
.ws7b{word-spacing:-2.700000px;}
.wsea{word-spacing:-2.688000px;}
.ws3d{word-spacing:-2.580000px;}
.ws10b{word-spacing:-2.544000px;}
.ws29{word-spacing:-2.520000px;}
.wse1{word-spacing:-2.496000px;}
.wscf{word-spacing:-2.400000px;}
.ws116{word-spacing:-2.352000px;}
.wsae{word-spacing:-2.340000px;}
.wse7{word-spacing:-2.304000px;}
.ws21{word-spacing:-2.280000px;}
.ws20{word-spacing:-2.220000px;}
.wsd6{word-spacing:-2.160000px;}
.wsbf{word-spacing:-2.100000px;}
.wsde{word-spacing:-2.064000px;}
.ws100{word-spacing:-2.016000px;}
.ws7a{word-spacing:-1.980000px;}
.wsfe{word-spacing:-1.968000px;}
.ws31{word-spacing:-1.920000px;}
.ws5e{word-spacing:-1.860000px;}
.ws107{word-spacing:-1.824000px;}
.ws32{word-spacing:-1.800000px;}
.ws104{word-spacing:-1.776000px;}
.ws71{word-spacing:-1.740000px;}
.ws115{word-spacing:-1.728000px;}
.ws43{word-spacing:-1.680000px;}
.ws121{word-spacing:-1.632000px;}
.ws1e{word-spacing:-1.620000px;}
.ws59{word-spacing:-1.560000px;}
.ws3a{word-spacing:-1.500000px;}
.ws42{word-spacing:-1.440000px;}
.wsd5{word-spacing:-1.392000px;}
.ws40{word-spacing:-1.380000px;}
.ws39{word-spacing:-1.320000px;}
.ws46{word-spacing:-1.260000px;}
.ws122{word-spacing:-1.248000px;}
.ws120{word-spacing:-1.200000px;}
.wsdd{word-spacing:-1.152000px;}
.ws27{word-spacing:-1.140000px;}
.wse8{word-spacing:-1.104000px;}
.ws22{word-spacing:-1.080000px;}
.wsd7{word-spacing:-1.056000px;}
.ws8d{word-spacing:-1.020000px;}
.ws10e{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.960000px;}
.wsd0{word-spacing:-0.912000px;}
.ws45{word-spacing:-0.900000px;}
.wse6{word-spacing:-0.864000px;}
.ws28{word-spacing:-0.840000px;}
.ws114{word-spacing:-0.816000px;}
.ws89{word-spacing:-0.780000px;}
.wse2{word-spacing:-0.768000px;}
.ws61{word-spacing:-0.720000px;}
.ws10d{word-spacing:-0.672000px;}
.ws72{word-spacing:-0.660000px;}
.wsec{word-spacing:-0.624000px;}
.ws5a{word-spacing:-0.600000px;}
.wsd9{word-spacing:-0.576000px;}
.ws47{word-spacing:-0.540000px;}
.ws10a{word-spacing:-0.528000px;}
.ws54{word-spacing:-0.480000px;}
.wsd1{word-spacing:-0.432000px;}
.ws2f{word-spacing:-0.420000px;}
.wsdc{word-spacing:-0.384000px;}
.ws1d{word-spacing:-0.360000px;}
.ws124{word-spacing:-0.336000px;}
.ws5c{word-spacing:-0.300000px;}
.wsd4{word-spacing:-0.288000px;}
.wscc{word-spacing:-0.240000px;}
.ws81{word-spacing:-0.192000px;}
.ws35{word-spacing:-0.180000px;}
.wsd8{word-spacing:-0.144000px;}
.ws6d{word-spacing:-0.120000px;}
.wse5{word-spacing:-0.096000px;}
.ws5f{word-spacing:-0.060000px;}
.wsd3{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws10c{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws7d{word-spacing:0.096000px;}
.ws44{word-spacing:0.120000px;}
.ws110{word-spacing:0.144000px;}
.ws9d{word-spacing:0.180000px;}
.wse0{word-spacing:0.192000px;}
.wsb7{word-spacing:0.240000px;}
.ws112{word-spacing:0.288000px;}
.ws8a{word-spacing:0.300000px;}
.ws106{word-spacing:0.336000px;}
.ws70{word-spacing:0.360000px;}
.ws78{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.ws1c{word-spacing:0.540000px;}
.ws123{word-spacing:0.576000px;}
.ws1b{word-spacing:0.600000px;}
.wsbb{word-spacing:0.660000px;}
.wse3{word-spacing:0.672000px;}
.wsa4{word-spacing:0.720000px;}
.wsb9{word-spacing:0.780000px;}
.ws48{word-spacing:0.816000px;}
.wsba{word-spacing:0.840000px;}
.wsbc{word-spacing:0.900000px;}
.ws111{word-spacing:0.912000px;}
.ws92{word-spacing:0.960000px;}
.ws77{word-spacing:1.080000px;}
.ws1a{word-spacing:1.140000px;}
.ws125{word-spacing:1.152000px;}
.ws24{word-spacing:1.200000px;}
.ws11e{word-spacing:1.296000px;}
.ws79{word-spacing:1.380000px;}
.wsb8{word-spacing:1.440000px;}
.ws8c{word-spacing:1.560000px;}
.wsaa{word-spacing:1.620000px;}
.ws34{word-spacing:1.680000px;}
.ws36{word-spacing:1.740000px;}
.wsac{word-spacing:1.800000px;}
.wsa{word-spacing:1.860000px;}
.wsb0{word-spacing:1.920000px;}
.ws101{word-spacing:1.968000px;}
.ws3b{word-spacing:1.980000px;}
.ws26{word-spacing:2.040000px;}
.ws33{word-spacing:2.100000px;}
.ws105{word-spacing:2.256000px;}
.ws9e{word-spacing:2.280000px;}
.ws9f{word-spacing:2.340000px;}
.ws2b{word-spacing:2.400000px;}
.wsff{word-spacing:2.448000px;}
.ws2e{word-spacing:2.460000px;}
.ws94{word-spacing:2.544000px;}
.ws93{word-spacing:2.640000px;}
.ws60{word-spacing:2.700000px;}
.ws58{word-spacing:2.820000px;}
.wsa7{word-spacing:2.940000px;}
.ws38{word-spacing:3.000000px;}
.ws9b{word-spacing:3.060000px;}
.ws5b{word-spacing:3.180000px;}
.ws23{word-spacing:3.240000px;}
.ws25{word-spacing:3.300000px;}
.ws86{word-spacing:3.660000px;}
.wse4{word-spacing:3.744000px;}
.ws30{word-spacing:3.780000px;}
.ws6e{word-spacing:3.840000px;}
.ws11f{word-spacing:3.888000px;}
.ws1f{word-spacing:3.900000px;}
.ws7c{word-spacing:3.936000px;}
.wsa8{word-spacing:3.960000px;}
.ws7f{word-spacing:3.984000px;}
.ws8f{word-spacing:4.020000px;}
.ws3c{word-spacing:4.080000px;}
.wsa1{word-spacing:4.128000px;}
.ws37{word-spacing:4.260000px;}
.wsaf{word-spacing:4.320000px;}
.wsa5{word-spacing:4.500000px;}
.ws8e{word-spacing:4.560000px;}
.ws2c{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.wscd{word-spacing:5.460000px;}
.wsce{word-spacing:5.520000px;}
.ws87{word-spacing:5.580000px;}
.wsbd{word-spacing:8.640000px;}
.ws52{word-spacing:48.480000px;}
.ws51{word-spacing:75.408000px;}
.ws4f{word-spacing:83.376000px;}
.ws50{word-spacing:100.368000px;}
.ws53{word-spacing:100.704000px;}
.ws64{word-spacing:101.088000px;}
.ws68{word-spacing:126.624000px;}
.ws6b{word-spacing:127.488000px;}
.ws69{word-spacing:128.400000px;}
.ws6a{word-spacing:131.952000px;}
.ws67{word-spacing:161.184000px;}
.ws66{word-spacing:163.872000px;}
.ws4d{word-spacing:207.840000px;}
.ws4e{word-spacing:270.528000px;}
.ws65{word-spacing:322.224000px;}
.ws4c{word-spacing:334.512000px;}
.ws6c{word-spacing:373.248000px;}
.ws4b{word-spacing:495.120000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._58{margin-left:-7.740000px;}
._b{margin-left:-6.465600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.375000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.139400px;}
._4{width:1.056000px;}
._5{width:2.064000px;}
._8{width:3.240000px;}
._9{width:4.500000px;}
._6{width:6.000000px;}
._7{width:7.200000px;}
._a{width:8.400000px;}
._d{width:9.600000px;}
._56{width:10.800000px;}
._57{width:12.000000px;}
._54{width:37.941000px;}
._36{width:49.152000px;}
._32{width:51.744000px;}
._39{width:53.136000px;}
._55{width:59.424000px;}
._37{width:60.918000px;}
._38{width:63.792000px;}
._48{width:74.160000px;}
._4a{width:78.720000px;}
._3a{width:85.824000px;}
._44{width:91.824000px;}
._3e{width:94.560000px;}
._49{width:95.616000px;}
._40{width:102.528000px;}
._42{width:110.496000px;}
._41{width:113.136000px;}
._2d{width:122.544000px;}
._3c{width:130.512000px;}
._3b{width:131.856000px;}
._4f{width:132.864000px;}
._4d{width:138.144000px;}
._47{width:140.105400px;}
._30{width:143.088000px;}
._33{width:145.776000px;}
._53{width:148.800000px;}
._51{width:151.440000px;}
._50{width:159.504000px;}
._52{width:162.144000px;}
._46{width:182.988600px;}
._34{width:191.775600px;}
._35{width:193.776000px;}
._4b{width:198.281400px;}
._3d{width:206.777400px;}
._45{width:208.278000px;}
._43{width:216.294000px;}
._24{width:219.840000px;}
._31{width:221.328000px;}
._28{width:225.161400px;}
._23{width:233.904000px;}
._17{width:235.296000px;}
._15{width:237.888000px;}
._20{width:243.216000px;}
._1c{width:244.512000px;}
._26{width:259.968000px;}
._2a{width:274.560000px;}
._27{width:275.904000px;}
._13{width:279.888000px;}
._2c{width:282.528000px;}
._10{width:291.833400px;}
._25{width:293.334000px;}
._21{width:301.350000px;}
._12{width:308.544000px;}
._1a{width:310.800000px;}
._1e{width:312.528000px;}
._22{width:320.496000px;}
._2e{width:328.848000px;}
._3f{width:334.224000px;}
._4e{width:385.248000px;}
._29{width:396.639000px;}
._4c{width:400.752000px;}
._18{width:412.992000px;}
._14{width:456.528000px;}
._1b{width:469.872000px;}
._2f{width:511.680000px;}
._1f{width:541.872000px;}
._1d{width:553.824000px;}
._16{width:586.854000px;}
._19{width:597.711000px;}
._11{width:645.888000px;}
._2b{width:699.174000px;}
._f{width:938.448000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y127{bottom:80.170350px;}
.y24b{bottom:80.263500px;}
.y20a{bottom:83.121900px;}
.y12a{bottom:83.236050px;}
.y1e0{bottom:83.628600px;}
.yf1{bottom:83.667000px;}
.y63{bottom:83.770350px;}
.y1be{bottom:83.772600px;}
.y7a{bottom:83.889150px;}
.y188{bottom:84.853950px;}
.y20{bottom:88.026750px;}
.ybe{bottom:92.284800px;}
.ya1{bottom:92.957850px;}
.y15c{bottom:94.112100px;}
.y24a{bottom:95.263500px;}
.y209{bottom:98.121900px;}
.y126{bottom:98.170350px;}
.y129{bottom:98.980050px;}
.yf0{bottom:99.411000px;}
.y79{bottom:99.633150px;}
.y1df{bottom:101.628600px;}
.y62{bottom:101.770350px;}
.y1bd{bottom:101.772600px;}
.y1f{bottom:103.023000px;}
.ya2{bottom:103.325850px;}
.ybd{bottom:108.532800px;}
.ya0{bottom:109.457850px;}
.y249{bottom:110.263500px;}
.y15b{bottom:112.112100px;}
.y208{bottom:113.121900px;}
.y128{bottom:114.724050px;}
.y125{bottom:116.170350px;}
.y1de{bottom:119.628600px;}
.y61{bottom:119.770350px;}
.y1bc{bottom:119.772600px;}
.ybc{bottom:124.780800px;}
.y248{bottom:125.263500px;}
.y9f{bottom:125.957850px;}
.y207{bottom:128.121900px;}
.y15a{bottom:130.112100px;}
.y124{bottom:134.170350px;}
.y1dd{bottom:137.628600px;}
.y60{bottom:137.770350px;}
.y1bb{bottom:137.772600px;}
.y247{bottom:140.263500px;}
.ybb{bottom:141.028800px;}
.y9d{bottom:142.205850px;}
.y9e{bottom:142.457850px;}
.y206{bottom:143.121900px;}
.y159{bottom:148.112100px;}
.y123{bottom:152.170350px;}
.y246{bottom:155.263500px;}
.y1dc{bottom:155.628600px;}
.y5f{bottom:155.770350px;}
.y1ba{bottom:155.772600px;}
.yba{bottom:157.276800px;}
.y205{bottom:158.121900px;}
.y9c{bottom:158.705850px;}
.y28{bottom:161.158350px;}
.y158{bottom:166.112100px;}
.y122{bottom:170.170350px;}
.y245{bottom:170.263500px;}
.y204{bottom:173.121900px;}
.yb9{bottom:173.524800px;}
.y1db{bottom:173.628600px;}
.y5e{bottom:173.770350px;}
.y1b9{bottom:173.772600px;}
.y27{bottom:179.158350px;}
.y157{bottom:184.112100px;}
.y244{bottom:185.263500px;}
.y203{bottom:188.121900px;}
.y121{bottom:188.170350px;}
.yb8{bottom:189.772800px;}
.y9b{bottom:190.217850px;}
.y65{bottom:191.365350px;}
.y1da{bottom:191.628600px;}
.y5d{bottom:191.770350px;}
.y1b8{bottom:191.772600px;}
.y26{bottom:197.158350px;}
.y243{bottom:200.263500px;}
.y156{bottom:202.112100px;}
.y202{bottom:203.121900px;}
.yb7{bottom:206.020800px;}
.y120{bottom:206.170350px;}
.y1d9{bottom:209.628600px;}
.y5c{bottom:209.770350px;}
.y1b7{bottom:209.772600px;}
.y25{bottom:215.158350px;}
.y242{bottom:215.263500px;}
.y201{bottom:218.121900px;}
.y155{bottom:220.112100px;}
.y11f{bottom:224.170350px;}
.y9a{bottom:225.112950px;}
.y64{bottom:227.230350px;}
.y1d8{bottom:227.628600px;}
.y5b{bottom:227.770350px;}
.y1b6{bottom:227.772600px;}
.y241{bottom:230.263500px;}
.y200{bottom:233.121900px;}
.y24{bottom:233.158350px;}
.yb6{bottom:237.532800px;}
.y154{bottom:238.112100px;}
.y11e{bottom:242.170350px;}
.y240{bottom:245.263500px;}
.y1d7{bottom:245.628600px;}
.y5a{bottom:245.770350px;}
.y1b5{bottom:245.772600px;}
.y1ff{bottom:248.121900px;}
.y23{bottom:251.158350px;}
.y153{bottom:256.112100px;}
.y11d{bottom:260.170350px;}
.y23f{bottom:260.263500px;}
.y1fe{bottom:263.121900px;}
.y1d6{bottom:263.628600px;}
.y59{bottom:263.770350px;}
.y1b4{bottom:263.772600px;}
.y22{bottom:269.158350px;}
.yb5{bottom:272.427900px;}
.y152{bottom:274.112100px;}
.y23e{bottom:275.263500px;}
.y1fd{bottom:278.121900px;}
.y11c{bottom:278.170350px;}
.y99{bottom:279.367800px;}
.y1d5{bottom:281.628600px;}
.y58{bottom:281.770350px;}
.y1b3{bottom:281.772600px;}
.y187{bottom:281.777100px;}
.y2a{bottom:287.158350px;}
.y23d{bottom:290.263500px;}
.yb4{bottom:291.927900px;}
.y151{bottom:292.112100px;}
.y1fc{bottom:293.121900px;}
.y98{bottom:295.615800px;}
.y11b{bottom:296.170350px;}
.y1d4{bottom:299.628600px;}
.y57{bottom:299.770350px;}
.y1b2{bottom:299.772600px;}
.y186{bottom:299.777100px;}
.y21{bottom:304.753350px;}
.y29{bottom:305.158350px;}
.y23c{bottom:305.263500px;}
.y1fb{bottom:308.121900px;}
.y150{bottom:310.112100px;}
.yb3{bottom:311.427900px;}
.y97{bottom:311.863800px;}
.y11a{bottom:314.170350px;}
.y1d3{bottom:317.628600px;}
.y56{bottom:317.770350px;}
.y1b1{bottom:317.772600px;}
.y185{bottom:317.777100px;}
.y23b{bottom:320.263500px;}
.y1fa{bottom:323.121900px;}
.y96{bottom:328.111800px;}
.y14f{bottom:328.112100px;}
.y119{bottom:332.170350px;}
.y23a{bottom:335.263500px;}
.y1d2{bottom:335.628600px;}
.y55{bottom:335.770350px;}
.y1b0{bottom:335.772600px;}
.y184{bottom:335.777100px;}
.y1f9{bottom:338.121900px;}
.y95{bottom:344.359800px;}
.y14e{bottom:346.112100px;}
.y118{bottom:350.170350px;}
.y239{bottom:350.263500px;}
.y1f8{bottom:353.121900px;}
.y1d1{bottom:353.628600px;}
.y54{bottom:353.770350px;}
.y1af{bottom:353.772600px;}
.y183{bottom:353.777100px;}
.y94{bottom:360.607800px;}
.yb2{bottom:362.300550px;}
.y14d{bottom:364.112100px;}
.y238{bottom:365.263500px;}
.y1f7{bottom:368.121900px;}
.y117{bottom:368.170350px;}
.y1d0{bottom:371.628600px;}
.y53{bottom:371.770350px;}
.y1ae{bottom:371.772600px;}
.y182{bottom:371.777100px;}
.y1e{bottom:375.064200px;}
.y93{bottom:376.855800px;}
.yb1{bottom:378.548550px;}
.y237{bottom:380.263500px;}
.y14c{bottom:382.112100px;}
.y1f6{bottom:383.121900px;}
.y116{bottom:386.170350px;}
.y1cf{bottom:389.628600px;}
.y52{bottom:389.770350px;}
.y1ad{bottom:389.772600px;}
.y181{bottom:389.777100px;}
.y92{bottom:393.103800px;}
.yb0{bottom:394.796550px;}
.y236{bottom:395.263500px;}
.y1f5{bottom:398.121900px;}
.y14b{bottom:400.112100px;}
.y1d{bottom:402.409200px;}
.y115{bottom:404.170350px;}
.y1ce{bottom:407.628600px;}
.y51{bottom:407.770350px;}
.y1ac{bottom:407.772600px;}
.y180{bottom:407.777100px;}
.y91{bottom:409.351800px;}
.y235{bottom:410.263500px;}
.yaf{bottom:411.044550px;}
.y1f4{bottom:413.121900px;}
.y14a{bottom:418.112100px;}
.y1c{bottom:420.409200px;}
.y114{bottom:422.170350px;}
.y234{bottom:425.263500px;}
.y90{bottom:425.599800px;}
.y1cd{bottom:425.628600px;}
.y50{bottom:425.770350px;}
.y1ab{bottom:425.772600px;}
.y17f{bottom:425.777100px;}
.yae{bottom:427.292550px;}
.y1f3{bottom:428.121900px;}
.y18a{bottom:435.313950px;}
.y149{bottom:436.112100px;}
.y1b{bottom:438.409200px;}
.y113{bottom:440.170350px;}
.y233{bottom:440.263500px;}
.y8f{bottom:441.847800px;}
.y78{bottom:442.881150px;}
.y1f2{bottom:443.121900px;}
.yad{bottom:443.540550px;}
.y1cc{bottom:443.628600px;}
.y4f{bottom:443.770350px;}
.y1aa{bottom:443.772600px;}
.y17e{bottom:443.777100px;}
.y189{bottom:451.057950px;}
.y148{bottom:454.112100px;}
.y232{bottom:455.263500px;}
.y1a{bottom:456.409200px;}
.y8e{bottom:458.095800px;}
.y1f1{bottom:458.121900px;}
.y112{bottom:458.170350px;}
.yac{bottom:459.788550px;}
.y1cb{bottom:461.223600px;}
.y4e{bottom:461.770350px;}
.y1a9{bottom:461.772600px;}
.y17d{bottom:461.777100px;}
.y231{bottom:470.263500px;}
.y147{bottom:472.112100px;}
.y1f0{bottom:473.121900px;}
.y8d{bottom:474.343800px;}
.y19{bottom:474.409200px;}
.yab{bottom:476.036550px;}
.y111{bottom:476.170350px;}
.y4d{bottom:479.770350px;}
.y1a8{bottom:479.772600px;}
.y17c{bottom:479.777100px;}
.y230{bottom:485.263500px;}
.y1ef{bottom:488.121900px;}
.y146{bottom:490.112100px;}
.yaa{bottom:492.284550px;}
.y18{bottom:492.409200px;}
.y110{bottom:494.170350px;}
.y1ca{bottom:497.628600px;}
.y4c{bottom:497.770350px;}
.y1a7{bottom:497.772600px;}
.y17b{bottom:497.777100px;}
.y22f{bottom:500.263500px;}
.y1ee{bottom:503.121900px;}
.y8c{bottom:503.347800px;}
.y145{bottom:508.112100px;}
.y17{bottom:510.409200px;}
.y10f{bottom:512.170350px;}
.y22e{bottom:515.263500px;}
.y1c9{bottom:515.628600px;}
.y4b{bottom:515.770350px;}
.y1a6{bottom:515.772600px;}
.y17a{bottom:515.777100px;}
.y8a{bottom:517.843800px;}
.y1ed{bottom:518.121900px;}
.ya9{bottom:523.796550px;}
.y144{bottom:526.112100px;}
.y16{bottom:528.409200px;}
.y10e{bottom:530.170350px;}
.y22d{bottom:530.263500px;}
.y8b{bottom:532.351800px;}
.y1ec{bottom:533.121900px;}
.y1c8{bottom:533.628600px;}
.y4a{bottom:533.770350px;}
.y1a5{bottom:533.772600px;}
.y179{bottom:533.777100px;}
.y143{bottom:544.112100px;}
.y22c{bottom:545.263500px;}
.y15{bottom:546.409200px;}
.y1eb{bottom:548.121900px;}
.y10d{bottom:548.170350px;}
.y1c7{bottom:551.628600px;}
.y49{bottom:551.770350px;}
.y1a4{bottom:551.772600px;}
.y178{bottom:551.777100px;}
.ya8{bottom:558.685350px;}
.y22b{bottom:560.263500px;}
.y142{bottom:562.112100px;}
.y1ea{bottom:563.121900px;}
.y14{bottom:564.409200px;}
.y89{bottom:564.760350px;}
.y10c{bottom:566.170350px;}
.y1c6{bottom:569.628600px;}
.y48{bottom:569.770350px;}
.y1a3{bottom:569.772600px;}
.y177{bottom:569.777100px;}
.yd7{bottom:570.049350px;}
.y22a{bottom:575.263500px;}
.y1e9{bottom:578.121900px;}
.ya7{bottom:578.185350px;}
.yef{bottom:578.547000px;}
.y141{bottom:580.112100px;}
.y13{bottom:582.409200px;}
.y10b{bottom:584.170350px;}
.y1c5{bottom:587.628600px;}
.y47{bottom:587.770350px;}
.y1a2{bottom:587.772600px;}
.y176{bottom:587.777100px;}
.yd6{bottom:588.049350px;}
.y229{bottom:590.263500px;}
.y1e8{bottom:593.121900px;}
.yee{bottom:593.547000px;}
.ya6{bottom:597.685350px;}
.y140{bottom:598.112100px;}
.y12{bottom:600.409200px;}
.y10a{bottom:602.170350px;}
.y228{bottom:605.263500px;}
.y1c4{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.y1a1{bottom:605.772600px;}
.y175{bottom:605.777100px;}
.yd5{bottom:606.049350px;}
.y1e7{bottom:608.121900px;}
.yed{bottom:608.547000px;}
.y13f{bottom:616.112100px;}
.y11{bottom:618.409200px;}
.y109{bottom:620.170350px;}
.y227{bottom:620.263500px;}
.yec{bottom:623.547000px;}
.y1c3{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.y1a0{bottom:623.772600px;}
.y174{bottom:623.777100px;}
.y88{bottom:623.785350px;}
.y7e{bottom:623.920350px;}
.yd4{bottom:624.049350px;}
.y226{bottom:635.263500px;}
.y10{bottom:636.409200px;}
.y108{bottom:638.170350px;}
.yeb{bottom:638.547000px;}
.y1e6{bottom:641.230350px;}
.y1c2{bottom:641.635350px;}
.y44{bottom:641.770350px;}
.y19f{bottom:641.772600px;}
.y173{bottom:641.777100px;}
.y87{bottom:641.785350px;}
.y7d{bottom:641.920350px;}
.yd3{bottom:642.049350px;}
.y225{bottom:650.263500px;}
.y13e{bottom:650.952750px;}
.yea{bottom:653.547000px;}
.yf{bottom:654.409200px;}
.y107{bottom:656.170350px;}
.y43{bottom:659.770350px;}
.y19e{bottom:659.772600px;}
.y172{bottom:659.777100px;}
.y86{bottom:659.785350px;}
.yd2{bottom:660.049350px;}
.y224{bottom:665.263500px;}
.y13d{bottom:666.558750px;}
.ye9{bottom:668.547000px;}
.ye{bottom:672.409200px;}
.y106{bottom:674.170350px;}
.y1c1{bottom:677.230350px;}
.y7c{bottom:677.515350px;}
.y42{bottom:677.770350px;}
.y19d{bottom:677.772600px;}
.y171{bottom:677.777100px;}
.y85{bottom:677.785350px;}
.yd1{bottom:678.049350px;}
.y265{bottom:680.263500px;}
.y223{bottom:680.265900px;}
.y13c{bottom:680.920350px;}
.ye8{bottom:683.547000px;}
.yd{bottom:690.409200px;}
.y105{bottom:692.170350px;}
.y264{bottom:695.263500px;}
.y222{bottom:695.265900px;}
.y41{bottom:695.770350px;}
.y19c{bottom:695.772600px;}
.y170{bottom:695.777100px;}
.y84{bottom:695.785350px;}
.yd0{bottom:696.049350px;}
.y13b{bottom:698.515350px;}
.ye7{bottom:698.547000px;}
.yc{bottom:708.409200px;}
.y104{bottom:710.170350px;}
.y263{bottom:710.263500px;}
.y221{bottom:710.265900px;}
.y1e5{bottom:713.365350px;}
.y40{bottom:713.770350px;}
.y19b{bottom:713.772600px;}
.y16f{bottom:713.777100px;}
.y83{bottom:713.785350px;}
.ycf{bottom:714.049350px;}
.y13a{bottom:716.515350px;}
.y262{bottom:725.263500px;}
.y220{bottom:725.265900px;}
.y103{bottom:728.170350px;}
.ya5{bottom:731.365350px;}
.ye6{bottom:731.659350px;}
.y3f{bottom:731.770350px;}
.y19a{bottom:731.772600px;}
.y16e{bottom:731.777100px;}
.y82{bottom:731.785350px;}
.yce{bottom:732.049350px;}
.y261{bottom:740.263500px;}
.y21f{bottom:740.265900px;}
.y102{bottom:746.170350px;}
.y1e4{bottom:749.365350px;}
.y3e{bottom:749.770350px;}
.y199{bottom:749.772600px;}
.y16d{bottom:749.777100px;}
.y81{bottom:749.785350px;}
.ycd{bottom:750.049350px;}
.y139{bottom:752.770350px;}
.yb{bottom:753.567300px;}
.y260{bottom:755.263500px;}
.y21e{bottom:755.265900px;}
.y101{bottom:764.170350px;}
.ya{bottom:766.018050px;}
.ya4{bottom:767.230350px;}
.y3d{bottom:767.770350px;}
.y198{bottom:767.772600px;}
.y16c{bottom:767.777100px;}
.y80{bottom:767.785350px;}
.ye5{bottom:767.914350px;}
.ycc{bottom:768.049350px;}
.y25f{bottom:770.263500px;}
.y21d{bottom:770.265900px;}
.y138{bottom:770.770350px;}
.y100{bottom:782.170350px;}
.y25e{bottom:785.263500px;}
.y21c{bottom:785.265900px;}
.y1e3{bottom:785.365350px;}
.y3c{bottom:785.770350px;}
.y197{bottom:785.772600px;}
.y16b{bottom:785.777100px;}
.y7f{bottom:785.785350px;}
.ye4{bottom:785.914350px;}
.ycb{bottom:786.049350px;}
.y137{bottom:788.770350px;}
.yff{bottom:800.170350px;}
.y25d{bottom:800.263500px;}
.y21b{bottom:800.265900px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y196{bottom:803.772600px;}
.y16a{bottom:803.777100px;}
.y77{bottom:803.785350px;}
.ye3{bottom:803.914350px;}
.y69{bottom:803.920350px;}
.yca{bottom:804.049350px;}
.y136{bottom:806.770350px;}
.y25c{bottom:815.263500px;}
.y21a{bottom:815.265900px;}
.yfe{bottom:818.170350px;}
.y8{bottom:821.094150px;}
.y3a{bottom:821.770350px;}
.y195{bottom:821.772600px;}
.y169{bottom:821.777100px;}
.y76{bottom:821.785350px;}
.ye2{bottom:821.914350px;}
.y68{bottom:821.920350px;}
.yc9{bottom:822.049350px;}
.y135{bottom:824.770350px;}
.y25b{bottom:830.263500px;}
.y219{bottom:830.265900px;}
.yfd{bottom:836.170350px;}
.y1e2{bottom:839.365350px;}
.y39{bottom:839.770350px;}
.y194{bottom:839.772600px;}
.y168{bottom:839.777100px;}
.y75{bottom:839.785350px;}
.yc8{bottom:840.049350px;}
.y134{bottom:842.770350px;}
.y25a{bottom:845.263500px;}
.y218{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.yfc{bottom:854.170350px;}
.ye1{bottom:857.509350px;}
.y67{bottom:857.515350px;}
.y38{bottom:857.770350px;}
.y193{bottom:857.772600px;}
.y167{bottom:857.777100px;}
.y74{bottom:857.785350px;}
.yc7{bottom:858.049350px;}
.y259{bottom:860.263500px;}
.y217{bottom:860.265900px;}
.y133{bottom:860.770350px;}
.yfb{bottom:872.170350px;}
.y258{bottom:875.263500px;}
.y216{bottom:875.265900px;}
.ye0{bottom:875.509350px;}
.y37{bottom:875.770350px;}
.y192{bottom:875.772600px;}
.y166{bottom:875.777100px;}
.y73{bottom:875.785350px;}
.y132{bottom:878.770350px;}
.yfa{bottom:890.170350px;}
.y257{bottom:890.263500px;}
.y215{bottom:890.265900px;}
.yc6{bottom:893.644350px;}
.y36{bottom:893.770350px;}
.y191{bottom:893.772600px;}
.y165{bottom:893.777100px;}
.y72{bottom:893.785350px;}
.y131{bottom:896.770350px;}
.y6{bottom:897.543600px;}
.y256{bottom:905.263500px;}
.y214{bottom:905.265900px;}
.yf9{bottom:908.170350px;}
.ydf{bottom:911.764350px;}
.y35{bottom:911.770350px;}
.y190{bottom:911.772600px;}
.y164{bottom:911.777100px;}
.y71{bottom:911.785350px;}
.y130{bottom:914.770350px;}
.y255{bottom:920.263500px;}
.y213{bottom:920.265900px;}
.yc5{bottom:929.509350px;}
.yde{bottom:929.764350px;}
.y34{bottom:929.770350px;}
.y18f{bottom:929.772600px;}
.y163{bottom:929.777100px;}
.y70{bottom:929.785350px;}
.y12f{bottom:932.770350px;}
.y5{bottom:934.004400px;}
.y254{bottom:935.263500px;}
.y212{bottom:935.265900px;}
.yf8{bottom:943.663500px;}
.y1e1{bottom:947.365350px;}
.yc4{bottom:947.509350px;}
.ydd{bottom:947.764350px;}
.y33{bottom:947.770350px;}
.y18e{bottom:947.772600px;}
.y162{bottom:947.777100px;}
.y6f{bottom:947.785350px;}
.y253{bottom:950.263500px;}
.y211{bottom:950.265900px;}
.y12e{bottom:950.770350px;}
.yf7{bottom:958.663500px;}
.y252{bottom:965.263500px;}
.y210{bottom:965.265900px;}
.yc3{bottom:965.509350px;}
.ydc{bottom:965.764350px;}
.y32{bottom:965.770350px;}
.y18d{bottom:965.772600px;}
.y161{bottom:965.777100px;}
.y6e{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.yf6{bottom:973.663500px;}
.y251{bottom:980.263500px;}
.y20f{bottom:980.265900px;}
.yc2{bottom:983.509350px;}
.ydb{bottom:983.764350px;}
.y31{bottom:983.770350px;}
.y18c{bottom:983.772600px;}
.y160{bottom:983.777100px;}
.y6d{bottom:983.785350px;}
.y12d{bottom:986.263500px;}
.yf5{bottom:988.663500px;}
.y250{bottom:995.263500px;}
.y20e{bottom:995.265900px;}
.yc1{bottom:1001.509350px;}
.yda{bottom:1001.764350px;}
.y30{bottom:1001.770350px;}
.y18b{bottom:1001.772600px;}
.y15f{bottom:1001.777100px;}
.y6c{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y24f{bottom:1010.263500px;}
.y20d{bottom:1010.265900px;}
.y12c{bottom:1019.371200px;}
.yd9{bottom:1019.764350px;}
.y2f{bottom:1019.770350px;}
.y1c0{bottom:1019.772600px;}
.yf4{bottom:1019.776200px;}
.y15e{bottom:1019.777100px;}
.y6b{bottom:1019.785350px;}
.y24e{bottom:1025.263500px;}
.y20c{bottom:1025.265900px;}
.yc0{bottom:1037.367600px;}
.yf3{bottom:1037.371200px;}
.yd8{bottom:1037.764350px;}
.y2e{bottom:1037.770350px;}
.y1bf{bottom:1037.772600px;}
.y15d{bottom:1037.777100px;}
.y6a{bottom:1037.785350px;}
.y24d{bottom:1040.263500px;}
.y20b{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y66{bottom:1132.418700px;}
.yf2{bottom:1132.419000px;}
.ya3{bottom:1132.421850px;}
.y24c{bottom:1132.423500px;}
.y7b{bottom:1132.425150px;}
.y12b{bottom:1132.432050px;}
.ybf{bottom:1132.444800px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h13{height:37.520508px;}
.h12{height:41.660156px;}
.he{height:41.689453px;}
.hd{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x21{left:95.091000px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.939450px;}
.x2f{left:102.047250px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x27{left:111.771900px;}
.x1f{left:119.256000px;}
.x19{left:121.189350px;}
.x26{left:123.307350px;}
.x3{left:125.433000px;}
.x20{left:128.001000px;}
.x6{left:131.816400px;}
.x24{left:142.174800px;}
.x1e{left:192.769200px;}
.x22{left:195.531000px;}
.x5{left:212.876400px;}
.x2e{left:215.545350px;}
.x2a{left:221.055900px;}
.x25{left:228.484800px;}
.x1a{left:232.360350px;}
.x28{left:250.116900px;}
.x29{left:251.961000px;}
.x1b{left:325.371450px;}
.x1d{left:334.816200px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x23{left:482.661000px;}
.xd{left:491.135400px;}
.x18{left:503.869350px;}
.x12{left:512.365350px;}
.xe{left:525.305400px;}
.x2d{left:570.695400px;}
.x17{left:626.341350px;}
.x16{left:644.341350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x2b{left:721.717650px;}
.xf{left:728.391600px;}
.x2c{left:743.868150px;}
.x14{left:749.647350px;}
.x13{left:762.175350px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.lsa0{letter-spacing:-2.346667pt;}
.ls68{letter-spacing:-1.920000pt;}
.ls44{letter-spacing:-1.578667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls8e{letter-spacing:-0.170667pt;}
.ls5b{letter-spacing:-0.160000pt;}
.ls9c{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls4b{letter-spacing:-0.085333pt;}
.ls40{letter-spacing:-0.053333pt;}
.ls8d{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls6e{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls70{letter-spacing:0.085333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls15{letter-spacing:0.213333pt;}
.ls6f{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls9e{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.341333pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls6a{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.426667pt;}
.ls94{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls86{letter-spacing:0.554667pt;}
.ls12{letter-spacing:0.586667pt;}
.ls98{letter-spacing:0.597333pt;}
.ls29{letter-spacing:0.640000pt;}
.ls7e{letter-spacing:0.682667pt;}
.ls21{letter-spacing:0.693333pt;}
.ls3a{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls82{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls69{letter-spacing:0.810667pt;}
.ls24{letter-spacing:0.853333pt;}
.ls6b{letter-spacing:0.896000pt;}
.ls2{letter-spacing:0.906667pt;}
.ls47{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls84{letter-spacing:0.981333pt;}
.ls4{letter-spacing:1.013333pt;}
.ls78{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls8c{letter-spacing:1.109333pt;}
.ls39{letter-spacing:1.120000pt;}
.ls49{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.173333pt;}
.ls71{letter-spacing:1.194667pt;}
.ls16{letter-spacing:1.226667pt;}
.ls9b{letter-spacing:1.237333pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.333333pt;}
.ls8f{letter-spacing:1.365333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls7f{letter-spacing:1.408000pt;}
.ls31{letter-spacing:1.440000pt;}
.ls9d{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls97{letter-spacing:1.536000pt;}
.ls43{letter-spacing:1.546667pt;}
.ls92{letter-spacing:1.578667pt;}
.ls2d{letter-spacing:1.600000pt;}
.ls93{letter-spacing:1.621333pt;}
.ls3f{letter-spacing:1.653333pt;}
.ls2c{letter-spacing:1.706667pt;}
.ls38{letter-spacing:1.760000pt;}
.ls7c{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:1.813333pt;}
.ls7a{letter-spacing:1.834667pt;}
.ls51{letter-spacing:1.866667pt;}
.ls89{letter-spacing:1.877333pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls20{letter-spacing:2.026667pt;}
.ls83{letter-spacing:2.048000pt;}
.ls61{letter-spacing:2.080000pt;}
.ls74{letter-spacing:2.090667pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls8a{letter-spacing:2.176000pt;}
.ls14{letter-spacing:2.186667pt;}
.ls7d{letter-spacing:2.218667pt;}
.ls22{letter-spacing:2.240000pt;}
.ls46{letter-spacing:2.261333pt;}
.ls13{letter-spacing:2.293333pt;}
.ls7{letter-spacing:2.346667pt;}
.ls88{letter-spacing:2.389333pt;}
.lsa{letter-spacing:2.400000pt;}
.ls9f{letter-spacing:2.432000pt;}
.ls3d{letter-spacing:2.453333pt;}
.ls95{letter-spacing:2.474667pt;}
.ls54{letter-spacing:2.506667pt;}
.lsb{letter-spacing:2.560000pt;}
.ls8{letter-spacing:2.613333pt;}
.ls6c{letter-spacing:2.645333pt;}
.ls55{letter-spacing:2.666667pt;}
.ls17{letter-spacing:2.720000pt;}
.ls4e{letter-spacing:2.773333pt;}
.ls41{letter-spacing:2.826667pt;}
.ls52{letter-spacing:2.880000pt;}
.ls48{letter-spacing:2.901333pt;}
.ls6{letter-spacing:2.933333pt;}
.ls73{letter-spacing:2.944000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls85{letter-spacing:3.029333pt;}
.ls25{letter-spacing:3.040000pt;}
.ls42{letter-spacing:3.093333pt;}
.ls9a{letter-spacing:3.114667pt;}
.ls56{letter-spacing:3.146667pt;}
.ls7b{letter-spacing:3.157333pt;}
.ls3{letter-spacing:3.200000pt;}
.ls35{letter-spacing:3.306667pt;}
.ls28{letter-spacing:3.360000pt;}
.ls77{letter-spacing:3.370667pt;}
.ls3c{letter-spacing:3.413333pt;}
.ls96{letter-spacing:3.456000pt;}
.ls3e{letter-spacing:3.520000pt;}
.ls8b{letter-spacing:3.541333pt;}
.ls60{letter-spacing:3.573333pt;}
.ls91{letter-spacing:3.584000pt;}
.ls58{letter-spacing:3.626667pt;}
.ls5d{letter-spacing:3.669333pt;}
.ls4c{letter-spacing:3.680000pt;}
.ls80{letter-spacing:3.882667pt;}
.ls4d{letter-spacing:3.893333pt;}
.ls90{letter-spacing:3.925333pt;}
.ls50{letter-spacing:4.000000pt;}
.ls5f{letter-spacing:4.053333pt;}
.ls37{letter-spacing:4.106667pt;}
.ls87{letter-spacing:4.138667pt;}
.ls99{letter-spacing:4.309333pt;}
.ls5e{letter-spacing:4.320000pt;}
.ls45{letter-spacing:4.373333pt;}
.ls64{letter-spacing:4.480000pt;}
.ls79{letter-spacing:4.565333pt;}
.ls67{letter-spacing:4.800000pt;}
.ls53{letter-spacing:4.906667pt;}
.ls59{letter-spacing:5.173333pt;}
.ls57{letter-spacing:5.440000pt;}
.ls63{letter-spacing:5.546667pt;}
.ls5a{letter-spacing:5.653333pt;}
.ls75{letter-spacing:5.674667pt;}
.ls62{letter-spacing:5.760000pt;}
.ls19{letter-spacing:5.813333pt;}
.ls1b{letter-spacing:6.400000pt;}
.ls65{letter-spacing:6.453333pt;}
.ls23{letter-spacing:6.666667pt;}
.ls4f{letter-spacing:6.773333pt;}
.ls81{letter-spacing:7.381333pt;}
.ls66{letter-spacing:7.946667pt;}
.ls76{letter-spacing:9.216000pt;}
.wsb4{word-spacing:-16.906667pt;}
.wsc4{word-spacing:-16.341333pt;}
.ws84{word-spacing:-16.160000pt;}
.wsa3{word-spacing:-16.053333pt;}
.ws3{word-spacing:-15.893333pt;}
.ws97{word-spacing:-15.786667pt;}
.ws83{word-spacing:-15.733333pt;}
.wsb{word-spacing:-15.626667pt;}
.ws15{word-spacing:-15.573333pt;}
.wsb3{word-spacing:-15.413333pt;}
.ws10{word-spacing:-15.360000pt;}
.wse{word-spacing:-15.306667pt;}
.wsb6{word-spacing:-15.200000pt;}
.ws117{word-spacing:-15.146667pt;}
.ws18{word-spacing:-15.040000pt;}
.wsf9{word-spacing:-14.976000pt;}
.ws62{word-spacing:-14.933333pt;}
.ws63{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.wsd{word-spacing:-14.720000pt;}
.wsa2{word-spacing:-14.613333pt;}
.wsb1{word-spacing:-14.560000pt;}
.ws17{word-spacing:-14.506667pt;}
.ws95{word-spacing:-14.346667pt;}
.ws11{word-spacing:-14.293333pt;}
.ws98{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.186667pt;}
.ws49{word-spacing:-14.133333pt;}
.ws14{word-spacing:-14.026667pt;}
.ws91{word-spacing:-13.973333pt;}
.ws82{word-spacing:-13.920000pt;}
.wsfd{word-spacing:-13.781333pt;}
.ws73{word-spacing:-13.760000pt;}
.wsb2{word-spacing:-13.706667pt;}
.wsc{word-spacing:-13.653333pt;}
.wsb5{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.546667pt;}
.ws19{word-spacing:-13.493333pt;}
.ws75{word-spacing:-13.440000pt;}
.ws74{word-spacing:-13.386667pt;}
.ws12{word-spacing:-13.333333pt;}
.wsc0{word-spacing:-13.312000pt;}
.ws4a{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.120000pt;}
.wsc9{word-spacing:-12.885333pt;}
.ws11a{word-spacing:-12.800000pt;}
.wsed{word-spacing:-12.501333pt;}
.wsc8{word-spacing:-12.458667pt;}
.wsf1{word-spacing:-12.288000pt;}
.ws118{word-spacing:-12.117333pt;}
.wsca{word-spacing:-12.074667pt;}
.wsee{word-spacing:-12.032000pt;}
.ws96{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsc6{word-spacing:-11.733333pt;}
.wsf2{word-spacing:-11.690667pt;}
.wsf4{word-spacing:-11.648000pt;}
.wsfa{word-spacing:-11.605333pt;}
.wsc7{word-spacing:-11.562667pt;}
.wsf5{word-spacing:-11.520000pt;}
.wscb{word-spacing:-11.434667pt;}
.wsf7{word-spacing:-11.392000pt;}
.wsfc{word-spacing:-11.306667pt;}
.ws11b{word-spacing:-11.264000pt;}
.ws11d{word-spacing:-11.221333pt;}
.wsc3{word-spacing:-11.178667pt;}
.wsf8{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.wsf3{word-spacing:-11.093333pt;}
.ws119{word-spacing:-11.050667pt;}
.wsc5{word-spacing:-11.008000pt;}
.wsc1{word-spacing:-10.922667pt;}
.wsf0{word-spacing:-10.837333pt;}
.wsa0{word-spacing:-10.794667pt;}
.wsfb{word-spacing:-10.752000pt;}
.wsef{word-spacing:-10.709333pt;}
.ws3e{word-spacing:-10.666667pt;}
.wsf6{word-spacing:-10.624000pt;}
.wsc2{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.340800pt;}
.ws11c{word-spacing:-8.320000pt;}
.ws80{word-spacing:-6.954667pt;}
.wsad{word-spacing:-5.760000pt;}
.wsdb{word-spacing:-5.674667pt;}
.ws7e{word-spacing:-4.480000pt;}
.ws76{word-spacing:-4.373333pt;}
.wsa6{word-spacing:-4.320000pt;}
.wse9{word-spacing:-4.138667pt;}
.ws41{word-spacing:-4.106667pt;}
.ws103{word-spacing:-3.925333pt;}
.ws88{word-spacing:-3.893333pt;}
.ws9a{word-spacing:-3.680000pt;}
.ws10f{word-spacing:-3.669333pt;}
.wsab{word-spacing:-3.573333pt;}
.wseb{word-spacing:-3.541333pt;}
.ws109{word-spacing:-3.456000pt;}
.ws56{word-spacing:-3.413333pt;}
.ws2d{word-spacing:-3.360000pt;}
.ws3f{word-spacing:-3.306667pt;}
.wsa9{word-spacing:-3.200000pt;}
.wsdf{word-spacing:-3.157333pt;}
.ws99{word-spacing:-3.146667pt;}
.ws113{word-spacing:-3.114667pt;}
.ws6f{word-spacing:-3.093333pt;}
.ws85{word-spacing:-3.040000pt;}
.wsda{word-spacing:-2.986667pt;}
.ws9c{word-spacing:-2.933333pt;}
.ws5d{word-spacing:-2.826667pt;}
.ws8b{word-spacing:-2.773333pt;}
.wsbe{word-spacing:-2.666667pt;}
.wsd2{word-spacing:-2.645333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws102{word-spacing:-2.560000pt;}
.ws90{word-spacing:-2.506667pt;}
.ws108{word-spacing:-2.474667pt;}
.ws57{word-spacing:-2.453333pt;}
.ws7b{word-spacing:-2.400000pt;}
.wsea{word-spacing:-2.389333pt;}
.ws3d{word-spacing:-2.293333pt;}
.ws10b{word-spacing:-2.261333pt;}
.ws29{word-spacing:-2.240000pt;}
.wse1{word-spacing:-2.218667pt;}
.wscf{word-spacing:-2.133333pt;}
.ws116{word-spacing:-2.090667pt;}
.wsae{word-spacing:-2.080000pt;}
.wse7{word-spacing:-2.048000pt;}
.ws21{word-spacing:-2.026667pt;}
.ws20{word-spacing:-1.973333pt;}
.wsd6{word-spacing:-1.920000pt;}
.wsbf{word-spacing:-1.866667pt;}
.wsde{word-spacing:-1.834667pt;}
.ws100{word-spacing:-1.792000pt;}
.ws7a{word-spacing:-1.760000pt;}
.wsfe{word-spacing:-1.749333pt;}
.ws31{word-spacing:-1.706667pt;}
.ws5e{word-spacing:-1.653333pt;}
.ws107{word-spacing:-1.621333pt;}
.ws32{word-spacing:-1.600000pt;}
.ws104{word-spacing:-1.578667pt;}
.ws71{word-spacing:-1.546667pt;}
.ws115{word-spacing:-1.536000pt;}
.ws43{word-spacing:-1.493333pt;}
.ws121{word-spacing:-1.450667pt;}
.ws1e{word-spacing:-1.440000pt;}
.ws59{word-spacing:-1.386667pt;}
.ws3a{word-spacing:-1.333333pt;}
.ws42{word-spacing:-1.280000pt;}
.wsd5{word-spacing:-1.237333pt;}
.ws40{word-spacing:-1.226667pt;}
.ws39{word-spacing:-1.173333pt;}
.ws46{word-spacing:-1.120000pt;}
.ws122{word-spacing:-1.109333pt;}
.ws120{word-spacing:-1.066667pt;}
.wsdd{word-spacing:-1.024000pt;}
.ws27{word-spacing:-1.013333pt;}
.wse8{word-spacing:-0.981333pt;}
.ws22{word-spacing:-0.960000pt;}
.wsd7{word-spacing:-0.938667pt;}
.ws8d{word-spacing:-0.906667pt;}
.ws10e{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.853333pt;}
.wsd0{word-spacing:-0.810667pt;}
.ws45{word-spacing:-0.800000pt;}
.wse6{word-spacing:-0.768000pt;}
.ws28{word-spacing:-0.746667pt;}
.ws114{word-spacing:-0.725333pt;}
.ws89{word-spacing:-0.693333pt;}
.wse2{word-spacing:-0.682667pt;}
.ws61{word-spacing:-0.640000pt;}
.ws10d{word-spacing:-0.597333pt;}
.ws72{word-spacing:-0.586667pt;}
.wsec{word-spacing:-0.554667pt;}
.ws5a{word-spacing:-0.533333pt;}
.wsd9{word-spacing:-0.512000pt;}
.ws47{word-spacing:-0.480000pt;}
.ws10a{word-spacing:-0.469333pt;}
.ws54{word-spacing:-0.426667pt;}
.wsd1{word-spacing:-0.384000pt;}
.ws2f{word-spacing:-0.373333pt;}
.wsdc{word-spacing:-0.341333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws124{word-spacing:-0.298667pt;}
.ws5c{word-spacing:-0.266667pt;}
.wsd4{word-spacing:-0.256000pt;}
.wscc{word-spacing:-0.213333pt;}
.ws81{word-spacing:-0.170667pt;}
.ws35{word-spacing:-0.160000pt;}
.wsd8{word-spacing:-0.128000pt;}
.ws6d{word-spacing:-0.106667pt;}
.wse5{word-spacing:-0.085333pt;}
.ws5f{word-spacing:-0.053333pt;}
.wsd3{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws7d{word-spacing:0.085333pt;}
.ws44{word-spacing:0.106667pt;}
.ws110{word-spacing:0.128000pt;}
.ws9d{word-spacing:0.160000pt;}
.wse0{word-spacing:0.170667pt;}
.wsb7{word-spacing:0.213333pt;}
.ws112{word-spacing:0.256000pt;}
.ws8a{word-spacing:0.266667pt;}
.ws106{word-spacing:0.298667pt;}
.ws70{word-spacing:0.320000pt;}
.ws78{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.480000pt;}
.ws123{word-spacing:0.512000pt;}
.ws1b{word-spacing:0.533333pt;}
.wsbb{word-spacing:0.586667pt;}
.wse3{word-spacing:0.597333pt;}
.wsa4{word-spacing:0.640000pt;}
.wsb9{word-spacing:0.693333pt;}
.ws48{word-spacing:0.725333pt;}
.wsba{word-spacing:0.746667pt;}
.wsbc{word-spacing:0.800000pt;}
.ws111{word-spacing:0.810667pt;}
.ws92{word-spacing:0.853333pt;}
.ws77{word-spacing:0.960000pt;}
.ws1a{word-spacing:1.013333pt;}
.ws125{word-spacing:1.024000pt;}
.ws24{word-spacing:1.066667pt;}
.ws11e{word-spacing:1.152000pt;}
.ws79{word-spacing:1.226667pt;}
.wsb8{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.386667pt;}
.wsaa{word-spacing:1.440000pt;}
.ws34{word-spacing:1.493333pt;}
.ws36{word-spacing:1.546667pt;}
.wsac{word-spacing:1.600000pt;}
.wsa{word-spacing:1.653333pt;}
.wsb0{word-spacing:1.706667pt;}
.ws101{word-spacing:1.749333pt;}
.ws3b{word-spacing:1.760000pt;}
.ws26{word-spacing:1.813333pt;}
.ws33{word-spacing:1.866667pt;}
.ws105{word-spacing:2.005333pt;}
.ws9e{word-spacing:2.026667pt;}
.ws9f{word-spacing:2.080000pt;}
.ws2b{word-spacing:2.133333pt;}
.wsff{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.186667pt;}
.ws94{word-spacing:2.261333pt;}
.ws93{word-spacing:2.346667pt;}
.ws60{word-spacing:2.400000pt;}
.ws58{word-spacing:2.506667pt;}
.wsa7{word-spacing:2.613333pt;}
.ws38{word-spacing:2.666667pt;}
.ws9b{word-spacing:2.720000pt;}
.ws5b{word-spacing:2.826667pt;}
.ws23{word-spacing:2.880000pt;}
.ws25{word-spacing:2.933333pt;}
.ws86{word-spacing:3.253333pt;}
.wse4{word-spacing:3.328000pt;}
.ws30{word-spacing:3.360000pt;}
.ws6e{word-spacing:3.413333pt;}
.ws11f{word-spacing:3.456000pt;}
.ws1f{word-spacing:3.466667pt;}
.ws7c{word-spacing:3.498667pt;}
.wsa8{word-spacing:3.520000pt;}
.ws7f{word-spacing:3.541333pt;}
.ws8f{word-spacing:3.573333pt;}
.ws3c{word-spacing:3.626667pt;}
.wsa1{word-spacing:3.669333pt;}
.ws37{word-spacing:3.786667pt;}
.wsaf{word-spacing:3.840000pt;}
.wsa5{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.053333pt;}
.ws2c{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.wscd{word-spacing:4.853333pt;}
.wsce{word-spacing:4.906667pt;}
.ws87{word-spacing:4.960000pt;}
.wsbd{word-spacing:7.680000pt;}
.ws52{word-spacing:43.093333pt;}
.ws51{word-spacing:67.029333pt;}
.ws4f{word-spacing:74.112000pt;}
.ws50{word-spacing:89.216000pt;}
.ws53{word-spacing:89.514667pt;}
.ws64{word-spacing:89.856000pt;}
.ws68{word-spacing:112.554667pt;}
.ws6b{word-spacing:113.322667pt;}
.ws69{word-spacing:114.133333pt;}
.ws6a{word-spacing:117.290667pt;}
.ws67{word-spacing:143.274667pt;}
.ws66{word-spacing:145.664000pt;}
.ws4d{word-spacing:184.746667pt;}
.ws4e{word-spacing:240.469333pt;}
.ws65{word-spacing:286.421333pt;}
.ws4c{word-spacing:297.344000pt;}
.ws6c{word-spacing:331.776000pt;}
.ws4b{word-spacing:440.106667pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._58{margin-left:-6.880000pt;}
._b{margin-left:-5.747200pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.000000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.012800pt;}
._4{width:0.938667pt;}
._5{width:1.834667pt;}
._8{width:2.880000pt;}
._9{width:4.000000pt;}
._6{width:5.333333pt;}
._7{width:6.400000pt;}
._a{width:7.466667pt;}
._d{width:8.533333pt;}
._56{width:9.600000pt;}
._57{width:10.666667pt;}
._54{width:33.725333pt;}
._36{width:43.690667pt;}
._32{width:45.994667pt;}
._39{width:47.232000pt;}
._55{width:52.821333pt;}
._37{width:54.149333pt;}
._38{width:56.704000pt;}
._48{width:65.920000pt;}
._4a{width:69.973333pt;}
._3a{width:76.288000pt;}
._44{width:81.621333pt;}
._3e{width:84.053333pt;}
._49{width:84.992000pt;}
._40{width:91.136000pt;}
._42{width:98.218667pt;}
._41{width:100.565333pt;}
._2d{width:108.928000pt;}
._3c{width:116.010667pt;}
._3b{width:117.205333pt;}
._4f{width:118.101333pt;}
._4d{width:122.794667pt;}
._47{width:124.538133pt;}
._30{width:127.189333pt;}
._33{width:129.578667pt;}
._53{width:132.266667pt;}
._51{width:134.613333pt;}
._50{width:141.781333pt;}
._52{width:144.128000pt;}
._46{width:162.656533pt;}
._34{width:170.467200pt;}
._35{width:172.245333pt;}
._4b{width:176.250133pt;}
._3d{width:183.802133pt;}
._45{width:185.136000pt;}
._43{width:192.261333pt;}
._24{width:195.413333pt;}
._31{width:196.736000pt;}
._28{width:200.143467pt;}
._23{width:207.914667pt;}
._17{width:209.152000pt;}
._15{width:211.456000pt;}
._20{width:216.192000pt;}
._1c{width:217.344000pt;}
._26{width:231.082667pt;}
._2a{width:244.053333pt;}
._27{width:245.248000pt;}
._13{width:248.789333pt;}
._2c{width:251.136000pt;}
._10{width:259.407467pt;}
._25{width:260.741333pt;}
._21{width:267.866667pt;}
._12{width:274.261333pt;}
._1a{width:276.266667pt;}
._1e{width:277.802667pt;}
._22{width:284.885333pt;}
._2e{width:292.309333pt;}
._3f{width:297.088000pt;}
._4e{width:342.442667pt;}
._29{width:352.568000pt;}
._4c{width:356.224000pt;}
._18{width:367.104000pt;}
._14{width:405.802667pt;}
._1b{width:417.664000pt;}
._2f{width:454.826667pt;}
._1f{width:481.664000pt;}
._1d{width:492.288000pt;}
._16{width:521.648000pt;}
._19{width:531.298667pt;}
._11{width:574.122667pt;}
._2b{width:621.488000pt;}
._f{width:834.176000pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y127{bottom:71.262533pt;}
.y24b{bottom:71.345333pt;}
.y20a{bottom:73.886133pt;}
.y12a{bottom:73.987600pt;}
.y1e0{bottom:74.336533pt;}
.yf1{bottom:74.370667pt;}
.y63{bottom:74.462533pt;}
.y1be{bottom:74.464533pt;}
.y7a{bottom:74.568133pt;}
.y188{bottom:75.425733pt;}
.y20{bottom:78.246000pt;}
.ybe{bottom:82.030933pt;}
.ya1{bottom:82.629200pt;}
.y15c{bottom:83.655200pt;}
.y24a{bottom:84.678667pt;}
.y209{bottom:87.219467pt;}
.y126{bottom:87.262533pt;}
.y129{bottom:87.982267pt;}
.yf0{bottom:88.365333pt;}
.y79{bottom:88.562800pt;}
.y1df{bottom:90.336533pt;}
.y62{bottom:90.462533pt;}
.y1bd{bottom:90.464533pt;}
.y1f{bottom:91.576000pt;}
.ya2{bottom:91.845200pt;}
.ybd{bottom:96.473600pt;}
.ya0{bottom:97.295867pt;}
.y249{bottom:98.012000pt;}
.y15b{bottom:99.655200pt;}
.y208{bottom:100.552800pt;}
.y128{bottom:101.976933pt;}
.y125{bottom:103.262533pt;}
.y1de{bottom:106.336533pt;}
.y61{bottom:106.462533pt;}
.y1bc{bottom:106.464533pt;}
.ybc{bottom:110.916267pt;}
.y248{bottom:111.345333pt;}
.y9f{bottom:111.962533pt;}
.y207{bottom:113.886133pt;}
.y15a{bottom:115.655200pt;}
.y124{bottom:119.262533pt;}
.y1dd{bottom:122.336533pt;}
.y60{bottom:122.462533pt;}
.y1bb{bottom:122.464533pt;}
.y247{bottom:124.678667pt;}
.ybb{bottom:125.358933pt;}
.y9d{bottom:126.405200pt;}
.y9e{bottom:126.629200pt;}
.y206{bottom:127.219467pt;}
.y159{bottom:131.655200pt;}
.y123{bottom:135.262533pt;}
.y246{bottom:138.012000pt;}
.y1dc{bottom:138.336533pt;}
.y5f{bottom:138.462533pt;}
.y1ba{bottom:138.464533pt;}
.yba{bottom:139.801600pt;}
.y205{bottom:140.552800pt;}
.y9c{bottom:141.071867pt;}
.y28{bottom:143.251867pt;}
.y158{bottom:147.655200pt;}
.y122{bottom:151.262533pt;}
.y245{bottom:151.345333pt;}
.y204{bottom:153.886133pt;}
.yb9{bottom:154.244267pt;}
.y1db{bottom:154.336533pt;}
.y5e{bottom:154.462533pt;}
.y1b9{bottom:154.464533pt;}
.y27{bottom:159.251867pt;}
.y157{bottom:163.655200pt;}
.y244{bottom:164.678667pt;}
.y203{bottom:167.219467pt;}
.y121{bottom:167.262533pt;}
.yb8{bottom:168.686933pt;}
.y9b{bottom:169.082533pt;}
.y65{bottom:170.102533pt;}
.y1da{bottom:170.336533pt;}
.y5d{bottom:170.462533pt;}
.y1b8{bottom:170.464533pt;}
.y26{bottom:175.251867pt;}
.y243{bottom:178.012000pt;}
.y156{bottom:179.655200pt;}
.y202{bottom:180.552800pt;}
.yb7{bottom:183.129600pt;}
.y120{bottom:183.262533pt;}
.y1d9{bottom:186.336533pt;}
.y5c{bottom:186.462533pt;}
.y1b7{bottom:186.464533pt;}
.y25{bottom:191.251867pt;}
.y242{bottom:191.345333pt;}
.y201{bottom:193.886133pt;}
.y155{bottom:195.655200pt;}
.y11f{bottom:199.262533pt;}
.y9a{bottom:200.100400pt;}
.y64{bottom:201.982533pt;}
.y1d8{bottom:202.336533pt;}
.y5b{bottom:202.462533pt;}
.y1b6{bottom:202.464533pt;}
.y241{bottom:204.678667pt;}
.y200{bottom:207.219467pt;}
.y24{bottom:207.251867pt;}
.yb6{bottom:211.140267pt;}
.y154{bottom:211.655200pt;}
.y11e{bottom:215.262533pt;}
.y240{bottom:218.012000pt;}
.y1d7{bottom:218.336533pt;}
.y5a{bottom:218.462533pt;}
.y1b5{bottom:218.464533pt;}
.y1ff{bottom:220.552800pt;}
.y23{bottom:223.251867pt;}
.y153{bottom:227.655200pt;}
.y11d{bottom:231.262533pt;}
.y23f{bottom:231.345333pt;}
.y1fe{bottom:233.886133pt;}
.y1d6{bottom:234.336533pt;}
.y59{bottom:234.462533pt;}
.y1b4{bottom:234.464533pt;}
.y22{bottom:239.251867pt;}
.yb5{bottom:242.158133pt;}
.y152{bottom:243.655200pt;}
.y23e{bottom:244.678667pt;}
.y1fd{bottom:247.219467pt;}
.y11c{bottom:247.262533pt;}
.y99{bottom:248.326933pt;}
.y1d5{bottom:250.336533pt;}
.y58{bottom:250.462533pt;}
.y1b3{bottom:250.464533pt;}
.y187{bottom:250.468533pt;}
.y2a{bottom:255.251867pt;}
.y23d{bottom:258.012000pt;}
.yb4{bottom:259.491467pt;}
.y151{bottom:259.655200pt;}
.y1fc{bottom:260.552800pt;}
.y98{bottom:262.769600pt;}
.y11b{bottom:263.262533pt;}
.y1d4{bottom:266.336533pt;}
.y57{bottom:266.462533pt;}
.y1b2{bottom:266.464533pt;}
.y186{bottom:266.468533pt;}
.y21{bottom:270.891867pt;}
.y29{bottom:271.251867pt;}
.y23c{bottom:271.345333pt;}
.y1fb{bottom:273.886133pt;}
.y150{bottom:275.655200pt;}
.yb3{bottom:276.824800pt;}
.y97{bottom:277.212267pt;}
.y11a{bottom:279.262533pt;}
.y1d3{bottom:282.336533pt;}
.y56{bottom:282.462533pt;}
.y1b1{bottom:282.464533pt;}
.y185{bottom:282.468533pt;}
.y23b{bottom:284.678667pt;}
.y1fa{bottom:287.219467pt;}
.y96{bottom:291.654933pt;}
.y14f{bottom:291.655200pt;}
.y119{bottom:295.262533pt;}
.y23a{bottom:298.012000pt;}
.y1d2{bottom:298.336533pt;}
.y55{bottom:298.462533pt;}
.y1b0{bottom:298.464533pt;}
.y184{bottom:298.468533pt;}
.y1f9{bottom:300.552800pt;}
.y95{bottom:306.097600pt;}
.y14e{bottom:307.655200pt;}
.y118{bottom:311.262533pt;}
.y239{bottom:311.345333pt;}
.y1f8{bottom:313.886133pt;}
.y1d1{bottom:314.336533pt;}
.y54{bottom:314.462533pt;}
.y1af{bottom:314.464533pt;}
.y183{bottom:314.468533pt;}
.y94{bottom:320.540267pt;}
.yb2{bottom:322.044933pt;}
.y14d{bottom:323.655200pt;}
.y238{bottom:324.678667pt;}
.y1f7{bottom:327.219467pt;}
.y117{bottom:327.262533pt;}
.y1d0{bottom:330.336533pt;}
.y53{bottom:330.462533pt;}
.y1ae{bottom:330.464533pt;}
.y182{bottom:330.468533pt;}
.y1e{bottom:333.390400pt;}
.y93{bottom:334.982933pt;}
.yb1{bottom:336.487600pt;}
.y237{bottom:338.012000pt;}
.y14c{bottom:339.655200pt;}
.y1f6{bottom:340.552800pt;}
.y116{bottom:343.262533pt;}
.y1cf{bottom:346.336533pt;}
.y52{bottom:346.462533pt;}
.y1ad{bottom:346.464533pt;}
.y181{bottom:346.468533pt;}
.y92{bottom:349.425600pt;}
.yb0{bottom:350.930267pt;}
.y236{bottom:351.345333pt;}
.y1f5{bottom:353.886133pt;}
.y14b{bottom:355.655200pt;}
.y1d{bottom:357.697067pt;}
.y115{bottom:359.262533pt;}
.y1ce{bottom:362.336533pt;}
.y51{bottom:362.462533pt;}
.y1ac{bottom:362.464533pt;}
.y180{bottom:362.468533pt;}
.y91{bottom:363.868267pt;}
.y235{bottom:364.678667pt;}
.yaf{bottom:365.372933pt;}
.y1f4{bottom:367.219467pt;}
.y14a{bottom:371.655200pt;}
.y1c{bottom:373.697067pt;}
.y114{bottom:375.262533pt;}
.y234{bottom:378.012000pt;}
.y90{bottom:378.310933pt;}
.y1cd{bottom:378.336533pt;}
.y50{bottom:378.462533pt;}
.y1ab{bottom:378.464533pt;}
.y17f{bottom:378.468533pt;}
.yae{bottom:379.815600pt;}
.y1f3{bottom:380.552800pt;}
.y18a{bottom:386.945733pt;}
.y149{bottom:387.655200pt;}
.y1b{bottom:389.697067pt;}
.y113{bottom:391.262533pt;}
.y233{bottom:391.345333pt;}
.y8f{bottom:392.753600pt;}
.y78{bottom:393.672133pt;}
.y1f2{bottom:393.886133pt;}
.yad{bottom:394.258267pt;}
.y1cc{bottom:394.336533pt;}
.y4f{bottom:394.462533pt;}
.y1aa{bottom:394.464533pt;}
.y17e{bottom:394.468533pt;}
.y189{bottom:400.940400pt;}
.y148{bottom:403.655200pt;}
.y232{bottom:404.678667pt;}
.y1a{bottom:405.697067pt;}
.y8e{bottom:407.196267pt;}
.y1f1{bottom:407.219467pt;}
.y112{bottom:407.262533pt;}
.yac{bottom:408.700933pt;}
.y1cb{bottom:409.976533pt;}
.y4e{bottom:410.462533pt;}
.y1a9{bottom:410.464533pt;}
.y17d{bottom:410.468533pt;}
.y231{bottom:418.012000pt;}
.y147{bottom:419.655200pt;}
.y1f0{bottom:420.552800pt;}
.y8d{bottom:421.638933pt;}
.y19{bottom:421.697067pt;}
.yab{bottom:423.143600pt;}
.y111{bottom:423.262533pt;}
.y4d{bottom:426.462533pt;}
.y1a8{bottom:426.464533pt;}
.y17c{bottom:426.468533pt;}
.y230{bottom:431.345333pt;}
.y1ef{bottom:433.886133pt;}
.y146{bottom:435.655200pt;}
.yaa{bottom:437.586267pt;}
.y18{bottom:437.697067pt;}
.y110{bottom:439.262533pt;}
.y1ca{bottom:442.336533pt;}
.y4c{bottom:442.462533pt;}
.y1a7{bottom:442.464533pt;}
.y17b{bottom:442.468533pt;}
.y22f{bottom:444.678667pt;}
.y1ee{bottom:447.219467pt;}
.y8c{bottom:447.420267pt;}
.y145{bottom:451.655200pt;}
.y17{bottom:453.697067pt;}
.y10f{bottom:455.262533pt;}
.y22e{bottom:458.012000pt;}
.y1c9{bottom:458.336533pt;}
.y4b{bottom:458.462533pt;}
.y1a6{bottom:458.464533pt;}
.y17a{bottom:458.468533pt;}
.y8a{bottom:460.305600pt;}
.y1ed{bottom:460.552800pt;}
.ya9{bottom:465.596933pt;}
.y144{bottom:467.655200pt;}
.y16{bottom:469.697067pt;}
.y10e{bottom:471.262533pt;}
.y22d{bottom:471.345333pt;}
.y8b{bottom:473.201600pt;}
.y1ec{bottom:473.886133pt;}
.y1c8{bottom:474.336533pt;}
.y4a{bottom:474.462533pt;}
.y1a5{bottom:474.464533pt;}
.y179{bottom:474.468533pt;}
.y143{bottom:483.655200pt;}
.y22c{bottom:484.678667pt;}
.y15{bottom:485.697067pt;}
.y1eb{bottom:487.219467pt;}
.y10d{bottom:487.262533pt;}
.y1c7{bottom:490.336533pt;}
.y49{bottom:490.462533pt;}
.y1a4{bottom:490.464533pt;}
.y178{bottom:490.468533pt;}
.ya8{bottom:496.609200pt;}
.y22b{bottom:498.012000pt;}
.y142{bottom:499.655200pt;}
.y1ea{bottom:500.552800pt;}
.y14{bottom:501.697067pt;}
.y89{bottom:502.009200pt;}
.y10c{bottom:503.262533pt;}
.y1c6{bottom:506.336533pt;}
.y48{bottom:506.462533pt;}
.y1a3{bottom:506.464533pt;}
.y177{bottom:506.468533pt;}
.yd7{bottom:506.710533pt;}
.y22a{bottom:511.345333pt;}
.y1e9{bottom:513.886133pt;}
.ya7{bottom:513.942533pt;}
.yef{bottom:514.264000pt;}
.y141{bottom:515.655200pt;}
.y13{bottom:517.697067pt;}
.y10b{bottom:519.262533pt;}
.y1c5{bottom:522.336533pt;}
.y47{bottom:522.462533pt;}
.y1a2{bottom:522.464533pt;}
.y176{bottom:522.468533pt;}
.yd6{bottom:522.710533pt;}
.y229{bottom:524.678667pt;}
.y1e8{bottom:527.219467pt;}
.yee{bottom:527.597333pt;}
.ya6{bottom:531.275867pt;}
.y140{bottom:531.655200pt;}
.y12{bottom:533.697067pt;}
.y10a{bottom:535.262533pt;}
.y228{bottom:538.012000pt;}
.y1c4{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.y1a1{bottom:538.464533pt;}
.y175{bottom:538.468533pt;}
.yd5{bottom:538.710533pt;}
.y1e7{bottom:540.552800pt;}
.yed{bottom:540.930667pt;}
.y13f{bottom:547.655200pt;}
.y11{bottom:549.697067pt;}
.y109{bottom:551.262533pt;}
.y227{bottom:551.345333pt;}
.yec{bottom:554.264000pt;}
.y1c3{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.y1a0{bottom:554.464533pt;}
.y174{bottom:554.468533pt;}
.y88{bottom:554.475867pt;}
.y7e{bottom:554.595867pt;}
.yd4{bottom:554.710533pt;}
.y226{bottom:564.678667pt;}
.y10{bottom:565.697067pt;}
.y108{bottom:567.262533pt;}
.yeb{bottom:567.597333pt;}
.y1e6{bottom:569.982533pt;}
.y1c2{bottom:570.342533pt;}
.y44{bottom:570.462533pt;}
.y19f{bottom:570.464533pt;}
.y173{bottom:570.468533pt;}
.y87{bottom:570.475867pt;}
.y7d{bottom:570.595867pt;}
.yd3{bottom:570.710533pt;}
.y225{bottom:578.012000pt;}
.y13e{bottom:578.624667pt;}
.yea{bottom:580.930667pt;}
.yf{bottom:581.697067pt;}
.y107{bottom:583.262533pt;}
.y43{bottom:586.462533pt;}
.y19e{bottom:586.464533pt;}
.y172{bottom:586.468533pt;}
.y86{bottom:586.475867pt;}
.yd2{bottom:586.710533pt;}
.y224{bottom:591.345333pt;}
.y13d{bottom:592.496667pt;}
.ye9{bottom:594.264000pt;}
.ye{bottom:597.697067pt;}
.y106{bottom:599.262533pt;}
.y1c1{bottom:601.982533pt;}
.y7c{bottom:602.235867pt;}
.y42{bottom:602.462533pt;}
.y19d{bottom:602.464533pt;}
.y171{bottom:602.468533pt;}
.y85{bottom:602.475867pt;}
.yd1{bottom:602.710533pt;}
.y265{bottom:604.678667pt;}
.y223{bottom:604.680800pt;}
.y13c{bottom:605.262533pt;}
.ye8{bottom:607.597333pt;}
.yd{bottom:613.697067pt;}
.y105{bottom:615.262533pt;}
.y264{bottom:618.012000pt;}
.y222{bottom:618.014133pt;}
.y41{bottom:618.462533pt;}
.y19c{bottom:618.464533pt;}
.y170{bottom:618.468533pt;}
.y84{bottom:618.475867pt;}
.yd0{bottom:618.710533pt;}
.y13b{bottom:620.902533pt;}
.ye7{bottom:620.930667pt;}
.yc{bottom:629.697067pt;}
.y104{bottom:631.262533pt;}
.y263{bottom:631.345333pt;}
.y221{bottom:631.347467pt;}
.y1e5{bottom:634.102533pt;}
.y40{bottom:634.462533pt;}
.y19b{bottom:634.464533pt;}
.y16f{bottom:634.468533pt;}
.y83{bottom:634.475867pt;}
.ycf{bottom:634.710533pt;}
.y13a{bottom:636.902533pt;}
.y262{bottom:644.678667pt;}
.y220{bottom:644.680800pt;}
.y103{bottom:647.262533pt;}
.ya5{bottom:650.102533pt;}
.ye6{bottom:650.363867pt;}
.y3f{bottom:650.462533pt;}
.y19a{bottom:650.464533pt;}
.y16e{bottom:650.468533pt;}
.y82{bottom:650.475867pt;}
.yce{bottom:650.710533pt;}
.y261{bottom:658.012000pt;}
.y21f{bottom:658.014133pt;}
.y102{bottom:663.262533pt;}
.y1e4{bottom:666.102533pt;}
.y3e{bottom:666.462533pt;}
.y199{bottom:666.464533pt;}
.y16d{bottom:666.468533pt;}
.y81{bottom:666.475867pt;}
.ycd{bottom:666.710533pt;}
.y139{bottom:669.129200pt;}
.yb{bottom:669.837600pt;}
.y260{bottom:671.345333pt;}
.y21e{bottom:671.347467pt;}
.y101{bottom:679.262533pt;}
.ya{bottom:680.904933pt;}
.ya4{bottom:681.982533pt;}
.y3d{bottom:682.462533pt;}
.y198{bottom:682.464533pt;}
.y16c{bottom:682.468533pt;}
.y80{bottom:682.475867pt;}
.ye5{bottom:682.590533pt;}
.ycc{bottom:682.710533pt;}
.y25f{bottom:684.678667pt;}
.y21d{bottom:684.680800pt;}
.y138{bottom:685.129200pt;}
.y100{bottom:695.262533pt;}
.y25e{bottom:698.012000pt;}
.y21c{bottom:698.014133pt;}
.y1e3{bottom:698.102533pt;}
.y3c{bottom:698.462533pt;}
.y197{bottom:698.464533pt;}
.y16b{bottom:698.468533pt;}
.y7f{bottom:698.475867pt;}
.ye4{bottom:698.590533pt;}
.ycb{bottom:698.710533pt;}
.y137{bottom:701.129200pt;}
.yff{bottom:711.262533pt;}
.y25d{bottom:711.345333pt;}
.y21b{bottom:711.347467pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y196{bottom:714.464533pt;}
.y16a{bottom:714.468533pt;}
.y77{bottom:714.475867pt;}
.ye3{bottom:714.590533pt;}
.y69{bottom:714.595867pt;}
.yca{bottom:714.710533pt;}
.y136{bottom:717.129200pt;}
.y25c{bottom:724.678667pt;}
.y21a{bottom:724.680800pt;}
.yfe{bottom:727.262533pt;}
.y8{bottom:729.861467pt;}
.y3a{bottom:730.462533pt;}
.y195{bottom:730.464533pt;}
.y169{bottom:730.468533pt;}
.y76{bottom:730.475867pt;}
.ye2{bottom:730.590533pt;}
.y68{bottom:730.595867pt;}
.yc9{bottom:730.710533pt;}
.y135{bottom:733.129200pt;}
.y25b{bottom:738.012000pt;}
.y219{bottom:738.014133pt;}
.yfd{bottom:743.262533pt;}
.y1e2{bottom:746.102533pt;}
.y39{bottom:746.462533pt;}
.y194{bottom:746.464533pt;}
.y168{bottom:746.468533pt;}
.y75{bottom:746.475867pt;}
.yc8{bottom:746.710533pt;}
.y134{bottom:749.129200pt;}
.y25a{bottom:751.345333pt;}
.y218{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.yfc{bottom:759.262533pt;}
.ye1{bottom:762.230533pt;}
.y67{bottom:762.235867pt;}
.y38{bottom:762.462533pt;}
.y193{bottom:762.464533pt;}
.y167{bottom:762.468533pt;}
.y74{bottom:762.475867pt;}
.yc7{bottom:762.710533pt;}
.y259{bottom:764.678667pt;}
.y217{bottom:764.680800pt;}
.y133{bottom:765.129200pt;}
.yfb{bottom:775.262533pt;}
.y258{bottom:778.012000pt;}
.y216{bottom:778.014133pt;}
.ye0{bottom:778.230533pt;}
.y37{bottom:778.462533pt;}
.y192{bottom:778.464533pt;}
.y166{bottom:778.468533pt;}
.y73{bottom:778.475867pt;}
.y132{bottom:781.129200pt;}
.yfa{bottom:791.262533pt;}
.y257{bottom:791.345333pt;}
.y215{bottom:791.347467pt;}
.yc6{bottom:794.350533pt;}
.y36{bottom:794.462533pt;}
.y191{bottom:794.464533pt;}
.y165{bottom:794.468533pt;}
.y72{bottom:794.475867pt;}
.y131{bottom:797.129200pt;}
.y6{bottom:797.816533pt;}
.y256{bottom:804.678667pt;}
.y214{bottom:804.680800pt;}
.yf9{bottom:807.262533pt;}
.ydf{bottom:810.457200pt;}
.y35{bottom:810.462533pt;}
.y190{bottom:810.464533pt;}
.y164{bottom:810.468533pt;}
.y71{bottom:810.475867pt;}
.y130{bottom:813.129200pt;}
.y255{bottom:818.012000pt;}
.y213{bottom:818.014133pt;}
.yc5{bottom:826.230533pt;}
.yde{bottom:826.457200pt;}
.y34{bottom:826.462533pt;}
.y18f{bottom:826.464533pt;}
.y163{bottom:826.468533pt;}
.y70{bottom:826.475867pt;}
.y12f{bottom:829.129200pt;}
.y5{bottom:830.226133pt;}
.y254{bottom:831.345333pt;}
.y212{bottom:831.347467pt;}
.yf8{bottom:838.812000pt;}
.y1e1{bottom:842.102533pt;}
.yc4{bottom:842.230533pt;}
.ydd{bottom:842.457200pt;}
.y33{bottom:842.462533pt;}
.y18e{bottom:842.464533pt;}
.y162{bottom:842.468533pt;}
.y6f{bottom:842.475867pt;}
.y253{bottom:844.678667pt;}
.y211{bottom:844.680800pt;}
.y12e{bottom:845.129200pt;}
.yf7{bottom:852.145333pt;}
.y252{bottom:858.012000pt;}
.y210{bottom:858.014133pt;}
.yc3{bottom:858.230533pt;}
.ydc{bottom:858.457200pt;}
.y32{bottom:858.462533pt;}
.y18d{bottom:858.464533pt;}
.y161{bottom:858.468533pt;}
.y6e{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.yf6{bottom:865.478667pt;}
.y251{bottom:871.345333pt;}
.y20f{bottom:871.347467pt;}
.yc2{bottom:874.230533pt;}
.ydb{bottom:874.457200pt;}
.y31{bottom:874.462533pt;}
.y18c{bottom:874.464533pt;}
.y160{bottom:874.468533pt;}
.y6d{bottom:874.475867pt;}
.y12d{bottom:876.678667pt;}
.yf5{bottom:878.812000pt;}
.y250{bottom:884.678667pt;}
.y20e{bottom:884.680800pt;}
.yc1{bottom:890.230533pt;}
.yda{bottom:890.457200pt;}
.y30{bottom:890.462533pt;}
.y18b{bottom:890.464533pt;}
.y15f{bottom:890.468533pt;}
.y6c{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y24f{bottom:898.012000pt;}
.y20d{bottom:898.014133pt;}
.y12c{bottom:906.107733pt;}
.yd9{bottom:906.457200pt;}
.y2f{bottom:906.462533pt;}
.y1c0{bottom:906.464533pt;}
.yf4{bottom:906.467733pt;}
.y15e{bottom:906.468533pt;}
.y6b{bottom:906.475867pt;}
.y24e{bottom:911.345333pt;}
.y20c{bottom:911.347467pt;}
.yc0{bottom:922.104533pt;}
.yf3{bottom:922.107733pt;}
.yd8{bottom:922.457200pt;}
.y2e{bottom:922.462533pt;}
.y1bf{bottom:922.464533pt;}
.y15d{bottom:922.468533pt;}
.y6a{bottom:922.475867pt;}
.y24d{bottom:924.678667pt;}
.y20b{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y66{bottom:1006.594400pt;}
.yf2{bottom:1006.594667pt;}
.ya3{bottom:1006.597200pt;}
.y24c{bottom:1006.598667pt;}
.y7b{bottom:1006.600133pt;}
.y12b{bottom:1006.606267pt;}
.ybf{bottom:1006.617600pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h13{height:33.351562pt;}
.h12{height:37.031250pt;}
.he{height:37.057292pt;}
.hd{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x21{left:84.525333pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.835067pt;}
.x2f{left:90.708667pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x27{left:99.352800pt;}
.x1f{left:106.005333pt;}
.x19{left:107.723867pt;}
.x26{left:109.606533pt;}
.x3{left:111.496000pt;}
.x20{left:113.778667pt;}
.x6{left:117.170133pt;}
.x24{left:126.377600pt;}
.x1e{left:171.350400pt;}
.x22{left:173.805333pt;}
.x5{left:189.223467pt;}
.x2e{left:191.595867pt;}
.x2a{left:196.494133pt;}
.x25{left:203.097600pt;}
.x1a{left:206.542533pt;}
.x28{left:222.326133pt;}
.x29{left:223.965333pt;}
.x1b{left:289.219067pt;}
.x1d{left:297.614400pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x23{left:429.032000pt;}
.xd{left:436.564800pt;}
.x18{left:447.883867pt;}
.x12{left:455.435867pt;}
.xe{left:466.938133pt;}
.x2d{left:507.284800pt;}
.x17{left:556.747867pt;}
.x16{left:572.747867pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2b{left:641.526800pt;}
.xf{left:647.459200pt;}
.x2c{left:661.216133pt;}
.x14{left:666.353200pt;}
.x13{left:677.489200pt;}
}




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