
    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_0bdf2a8d33821205394ebe09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2866bac67c95ebda6bcc1730.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_8f114458c84256efb4d2124c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_2dad40bfc91196bb35ef28b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_975a839188ff9bf9a64e021b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_f880372e388b8fc624523b5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fedd651f8b2f6592a654bae7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_c0842cd08a32dc9d4ddc732b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_0fa9fd3f69624895f7db3373.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.364746;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_75ce2cf11ff4d3a7f808fcfd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e2e1cf63b2b400252f455c73.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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);}
.v1{vertical-align:-123.120000px;}
.v4{vertical-align:-95.040000px;}
.v2{vertical-align:-85.020480px;}
.v3{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.060000px;}
.ls21{letter-spacing:-2.304000px;}
.ls89{letter-spacing:-1.584000px;}
.ls67{letter-spacing:-1.440000px;}
.ls87{letter-spacing:-1.436400px;}
.ls6f{letter-spacing:-1.296000px;}
.ls57{letter-spacing:-1.152000px;}
.ls7b{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.792000px;}
.ls36{letter-spacing:-0.758160px;}
.ls30{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.511920px;}
.ls58{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.341280px;}
.ls54{letter-spacing:-0.336960px;}
.ls66{letter-spacing:-0.298800px;}
.ls5{letter-spacing:-0.270000px;}
.ls2e{letter-spacing:-0.240480px;}
.ls6{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.191520px;}
.ls8{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.170640px;}
.ls1d{letter-spacing:-0.167760px;}
.ls18{letter-spacing:-0.144000px;}
.ls72{letter-spacing:-0.132480px;}
.ls3a{letter-spacing:-0.119520px;}
.ls35{letter-spacing:-0.084240px;}
.ls88{letter-spacing:-0.081360px;}
.lsa{letter-spacing:-0.077760px;}
.ls1a{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.ls8c{letter-spacing:0.018720px;}
.ls8a{letter-spacing:0.027360px;}
.ls23{letter-spacing:0.056880px;}
.ls7a{letter-spacing:0.059760px;}
.ls53{letter-spacing:0.072000px;}
.ls5d{letter-spacing:0.119520px;}
.ls41{letter-spacing:0.120240px;}
.ls39{letter-spacing:0.136800px;}
.ls10{letter-spacing:0.144000px;}
.ls73{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.227520px;}
.ls5f{letter-spacing:0.239040px;}
.ls5b{letter-spacing:0.280800px;}
.lsb{letter-spacing:0.288000px;}
.ls63{letter-spacing:0.298800px;}
.ls8d{letter-spacing:0.335520px;}
.ls78{letter-spacing:0.336960px;}
.ls77{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.418320px;}
.ls5e{letter-spacing:0.478080px;}
.ls40{letter-spacing:0.504000px;}
.ls75{letter-spacing:0.537840px;}
.ls7{letter-spacing:0.540000px;}
.ls56{letter-spacing:0.574560px;}
.ls24{letter-spacing:0.576000px;}
.ls60{letter-spacing:0.597600px;}
.ls8b{letter-spacing:0.648000px;}
.ls76{letter-spacing:0.657360px;}
.ls71{letter-spacing:0.681264px;}
.ls62{letter-spacing:0.717120px;}
.ls64{letter-spacing:0.776880px;}
.ls2b{letter-spacing:0.864000px;}
.ls70{letter-spacing:1.093608px;}
.ls3c{letter-spacing:1.576800px;}
.ls29{letter-spacing:1.584000px;}
.ls3{letter-spacing:1.620000px;}
.ls51{letter-spacing:2.289600px;}
.ls46{letter-spacing:2.296800px;}
.ls12{letter-spacing:2.304000px;}
.ls4f{letter-spacing:2.592000px;}
.ls4e{letter-spacing:3.016800px;}
.ls13{letter-spacing:3.024000px;}
.ls6b{letter-spacing:3.736800px;}
.lsc{letter-spacing:3.744000px;}
.ls52{letter-spacing:4.464000px;}
.ls4b{letter-spacing:5.184000px;}
.ls86{letter-spacing:5.896800px;}
.ls14{letter-spacing:5.904000px;}
.ls50{letter-spacing:6.624000px;}
.ls6e{letter-spacing:7.315200px;}
.ls11{letter-spacing:7.344000px;}
.ls2a{letter-spacing:8.064000px;}
.ls3f{letter-spacing:8.784000px;}
.ls32{letter-spacing:9.504000px;}
.ls68{letter-spacing:10.224000px;}
.ls2c{letter-spacing:10.944000px;}
.ls2d{letter-spacing:11.664000px;}
.ls3d{letter-spacing:12.384000px;}
.ls3b{letter-spacing:13.096800px;}
.lsf{letter-spacing:13.104000px;}
.lse{letter-spacing:13.824000px;}
.ls38{letter-spacing:14.544000px;}
.ls6d{letter-spacing:15.264000px;}
.ls34{letter-spacing:15.984000px;}
.ls6c{letter-spacing:16.704000px;}
.ls7f{letter-spacing:17.424000px;}
.ls6a{letter-spacing:18.144000px;}
.ls79{letter-spacing:18.856800px;}
.ls4d{letter-spacing:18.864000px;}
.ls5a{letter-spacing:19.584000px;}
.ls7d{letter-spacing:20.296800px;}
.ls7c{letter-spacing:20.304000px;}
.ls5c{letter-spacing:21.009600px;}
.ls55{letter-spacing:21.024000px;}
.ls80{letter-spacing:22.464000px;}
.ls47{letter-spacing:23.184000px;}
.ls7e{letter-spacing:23.904000px;}
.ls4c{letter-spacing:24.624000px;}
.ls4a{letter-spacing:25.344000px;}
.ls49{letter-spacing:26.064000px;}
.ls48{letter-spacing:28.224000px;}
.ls59{letter-spacing:29.664000px;}
.ls69{letter-spacing:33.984000px;}
.ls85{letter-spacing:36.144000px;}
.ls42{letter-spacing:44.784000px;}
.ls45{letter-spacing:46.224000px;}
.ls1b{letter-spacing:48.389760px;}
.ls1c{letter-spacing:50.549760px;}
.ls33{letter-spacing:54.864000px;}
.ls84{letter-spacing:72.144000px;}
.ls83{letter-spacing:75.744000px;}
.ls27{letter-spacing:96.629760px;}
.ls26{letter-spacing:100.949760px;}
.ls82{letter-spacing:112.464000px;}
.ls81{letter-spacing:116.064000px;}
.ls74{letter-spacing:176.531040px;}
.ls65{letter-spacing:176.544000px;}
.ls28{letter-spacing:192.384000px;}
.ls4{letter-spacing:192.960000px;}
.ls44{letter-spacing:224.784000px;}
.ls43{letter-spacing:249.264000px;}
.ls3e{letter-spacing:519.984000px;}
.ls37{letter-spacing:675.504000px;}
.ls15{letter-spacing:699.264000px;}
.ls1{letter-spacing:982.260000px;}
.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;}
}
.ws30{word-spacing:-46.469520px;}
.wsc7{word-spacing:-44.748000px;}
.wsc8{word-spacing:-44.666640px;}
.ws99{word-spacing:-35.975520px;}
.ws79{word-spacing:-33.546960px;}
.ws2{word-spacing:-29.808000px;}
.ws8b{word-spacing:-27.195840px;}
.ws42{word-spacing:-26.429760px;}
.ws4{word-spacing:-25.380000px;}
.wsc5{word-spacing:-25.184880px;}
.wsb2{word-spacing:-23.755680px;}
.ws52{word-spacing:-23.334480px;}
.ws89{word-spacing:-23.081760px;}
.ws3{word-spacing:-21.960000px;}
.wsd2{word-spacing:-20.880000px;}
.ws36{word-spacing:-20.592000px;}
.wsc6{word-spacing:-20.520000px;}
.wsc{word-spacing:-20.304000px;}
.ws40{word-spacing:-20.232000px;}
.wse{word-spacing:-20.160000px;}
.wsb4{word-spacing:-20.088000px;}
.ws10{word-spacing:-20.016000px;}
.ws12{word-spacing:-19.944000px;}
.wsf{word-spacing:-19.872000px;}
.ws5c{word-spacing:-19.800000px;}
.ws64{word-spacing:-19.584000px;}
.ws90{word-spacing:-19.512000px;}
.ws11{word-spacing:-19.440000px;}
.ws43{word-spacing:-19.296000px;}
.ws44{word-spacing:-19.224000px;}
.wsd{word-spacing:-19.152000px;}
.wsb9{word-spacing:-19.080000px;}
.ws8f{word-spacing:-18.864000px;}
.ws34{word-spacing:-17.712000px;}
.wsb5{word-spacing:-16.673040px;}
.wsb6{word-spacing:-16.613280px;}
.ws72{word-spacing:-16.493760px;}
.ws32{word-spacing:-16.040160px;}
.ws41{word-spacing:-15.869520px;}
.ws33{word-spacing:-15.755760px;}
.ws35{word-spacing:-15.642000px;}
.ws31{word-spacing:-15.471360px;}
.wsac{word-spacing:-5.904000px;}
.ws24{word-spacing:-5.184000px;}
.wsa6{word-spacing:-4.896000px;}
.ws25{word-spacing:-4.752000px;}
.ws46{word-spacing:-4.464000px;}
.ws47{word-spacing:-4.032000px;}
.ws57{word-spacing:-3.744000px;}
.ws91{word-spacing:-3.672000px;}
.wsbe{word-spacing:-3.456000px;}
.ws61{word-spacing:-3.024000px;}
.ws9a{word-spacing:-2.592000px;}
.wscf{word-spacing:-2.520000px;}
.ws2c{word-spacing:-2.304000px;}
.wsbc{word-spacing:-2.160000px;}
.wsd9{word-spacing:-1.649520px;}
.ws16{word-spacing:-1.584000px;}
.ws86{word-spacing:-1.512000px;}
.wsc2{word-spacing:-1.440000px;}
.ws3a{word-spacing:-1.365120px;}
.wsc1{word-spacing:-1.224000px;}
.wsd6{word-spacing:-0.910080px;}
.ws6{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.864000px;}
.wsca{word-spacing:-0.732240px;}
.ws2f{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.670320px;}
.ws9f{word-spacing:-0.657360px;}
.wsb0{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.478800px;}
.ws55{word-spacing:-0.432000px;}
.ws6b{word-spacing:-0.360720px;}
.ws7{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.288000px;}
.ws70{word-spacing:-0.252720px;}
.ws8c{word-spacing:-0.240480px;}
.wsd4{word-spacing:-0.227520px;}
.wsb7{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.170640px;}
.wsd8{word-spacing:-0.167760px;}
.ws23{word-spacing:-0.144000px;}
.ws9b{word-spacing:-0.119520px;}
.ws3b{word-spacing:-0.072000px;}
.wsae{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:0.056880px;}
.ws71{word-spacing:0.059760px;}
.ws75{word-spacing:0.072000px;}
.wsb{word-spacing:0.077760px;}
.wsc9{word-spacing:0.081360px;}
.ws38{word-spacing:0.113760px;}
.ws5e{word-spacing:0.119520px;}
.wsaf{word-spacing:0.132480px;}
.ws1{word-spacing:0.144000px;}
.ws54{word-spacing:0.191520px;}
.ws51{word-spacing:0.216000px;}
.ws9c{word-spacing:0.239040px;}
.ws37{word-spacing:0.288000px;}
.wsd3{word-spacing:0.335520px;}
.ws65{word-spacing:0.336960px;}
.ws3f{word-spacing:0.341280px;}
.wsa{word-spacing:0.360000px;}
.ws39{word-spacing:0.398160px;}
.ws5b{word-spacing:0.421200px;}
.ws2d{word-spacing:0.432000px;}
.ws5{word-spacing:0.450000px;}
.wsbb{word-spacing:0.480960px;}
.wsd7{word-spacing:0.511920px;}
.ws13{word-spacing:0.576000px;}
.ws3c{word-spacing:0.720000px;}
.ws56{word-spacing:0.766080px;}
.ws5f{word-spacing:0.776880px;}
.ws95{word-spacing:0.792000px;}
.wsd5{word-spacing:0.796320px;}
.ws63{word-spacing:0.864000px;}
.ws5d{word-spacing:0.936000px;}
.wsc0{word-spacing:0.957600px;}
.wsba{word-spacing:1.008000px;}
.ws59{word-spacing:1.095120px;}
.wsb3{word-spacing:1.152000px;}
.ws14{word-spacing:1.296000px;}
.ws88{word-spacing:1.440000px;}
.wsd1{word-spacing:1.584000px;}
.ws9{word-spacing:1.800000px;}
.ws28{word-spacing:2.016000px;}
.ws7b{word-spacing:2.160000px;}
.ws6e{word-spacing:2.202480px;}
.ws17{word-spacing:2.736000px;}
.wsaa{word-spacing:2.880000px;}
.ws2a{word-spacing:3.024000px;}
.ws76{word-spacing:3.168000px;}
.ws18{word-spacing:3.456000px;}
.ws98{word-spacing:3.744000px;}
.wsa7{word-spacing:3.888000px;}
.ws69{word-spacing:4.176000px;}
.ws66{word-spacing:4.896000px;}
.wsc3{word-spacing:5.256000px;}
.ws2e{word-spacing:5.616000px;}
.ws26{word-spacing:6.336000px;}
.ws7d{word-spacing:6.696000px;}
.ws27{word-spacing:7.056000px;}
.wsce{word-spacing:7.488000px;}
.ws2b{word-spacing:7.776000px;}
.wsa2{word-spacing:8.208000px;}
.ws45{word-spacing:8.496000px;}
.ws87{word-spacing:8.856000px;}
.wsa5{word-spacing:9.000000px;}
.ws21{word-spacing:9.216000px;}
.ws1f{word-spacing:9.936000px;}
.ws20{word-spacing:10.656000px;}
.ws4d{word-spacing:11.088000px;}
.ws4e{word-spacing:11.376000px;}
.ws7e{word-spacing:11.736000px;}
.ws6a{word-spacing:12.096000px;}
.ws7c{word-spacing:12.456000px;}
.ws68{word-spacing:12.816000px;}
.ws96{word-spacing:13.248000px;}
.ws1a{word-spacing:13.536000px;}
.wsa4{word-spacing:13.608000px;}
.wscd{word-spacing:13.668480px;}
.ws19{word-spacing:13.968000px;}
.ws62{word-spacing:14.256000px;}
.ws53{word-spacing:14.976000px;}
.ws5a{word-spacing:15.408000px;}
.ws4c{word-spacing:15.696000px;}
.wsa9{word-spacing:16.416000px;}
.wsa8{word-spacing:16.704000px;}
.wsb1{word-spacing:16.776000px;}
.ws83{word-spacing:17.136000px;}
.ws84{word-spacing:17.568000px;}
.ws92{word-spacing:17.856000px;}
.ws9e{word-spacing:18.288000px;}
.ws81{word-spacing:18.576000px;}
.ws6f{word-spacing:19.296000px;}
.ws1e{word-spacing:20.016000px;}
.ws8d{word-spacing:20.736000px;}
.ws7a{word-spacing:21.456000px;}
.ws97{word-spacing:22.176000px;}
.wsb8{word-spacing:22.464000px;}
.wsc4{word-spacing:22.536000px;}
.ws4f{word-spacing:22.896000px;}
.ws4a{word-spacing:23.616000px;}
.ws58{word-spacing:24.336000px;}
.wscb{word-spacing:24.624000px;}
.ws22{word-spacing:25.056000px;}
.ws7f{word-spacing:25.416000px;}
.ws80{word-spacing:25.560000px;}
.ws1c{word-spacing:25.776000px;}
.ws48{word-spacing:26.496000px;}
.ws49{word-spacing:27.216000px;}
.wsbd{word-spacing:27.648000px;}
.ws4b{word-spacing:27.936000px;}
.ws93{word-spacing:28.656000px;}
.ws78{word-spacing:29.376000px;}
.ws94{word-spacing:29.736000px;}
.ws77{word-spacing:30.096000px;}
.ws8e{word-spacing:30.816000px;}
.ws9d{word-spacing:31.536000px;}
.ws74{word-spacing:32.256000px;}
.ws85{word-spacing:32.688000px;}
.wsa1{word-spacing:32.976000px;}
.wsad{word-spacing:33.696000px;}
.ws6c{word-spacing:35.136000px;}
.ws6d{word-spacing:35.856000px;}
.ws1b{word-spacing:37.296000px;}
.wscc{word-spacing:38.016000px;}
.ws82{word-spacing:39.456000px;}
.wsd0{word-spacing:40.176000px;}
.ws1d{word-spacing:41.616000px;}
.ws50{word-spacing:43.776000px;}
.wsbf{word-spacing:45.936000px;}
.wsa3{word-spacing:53.856000px;}
.wsa0{word-spacing:58.176000px;}
.ws8a{word-spacing:64.656000px;}
.ws73{word-spacing:74.736000px;}
.wsab{word-spacing:107.136000px;}
._29{margin-left:-175.428000px;}
._12{margin-left:-62.935200px;}
._25{margin-left:-32.896800px;}
._14{margin-left:-21.228480px;}
._d{margin-left:-19.123920px;}
._10{margin-left:-17.884800px;}
._c{margin-left:-16.118640px;}
._f{margin-left:-14.284800px;}
._b{margin-left:-12.474000px;}
._2e{margin-left:-11.441520px;}
._e{margin-left:-10.180800px;}
._11{margin-left:-8.575200px;}
._2c{margin-left:-7.469280px;}
._7{margin-left:-5.810400px;}
._2d{margin-left:-4.758480px;}
._3{margin-left:-3.690000px;}
._2{margin-left:-1.821600px;}
._1{width:1.530000px;}
._5{width:3.150000px;}
._4{width:4.860000px;}
._1a{width:5.932800px;}
._9{width:7.200000px;}
._8{width:8.301600px;}
._20{width:9.331200px;}
._16{width:11.109600px;}
._1e{width:12.448800px;}
._21{width:13.579200px;}
._23{width:14.688000px;}
._15{width:16.545600px;}
._1f{width:21.477600px;}
._27{width:23.904000px;}
._18{width:26.085600px;}
._22{width:27.504000px;}
._1d{width:29.646000px;}
._24{width:31.968000px;}
._2a{width:40.104000px;}
._19{width:44.280000px;}
._2b{width:46.080000px;}
._13{width:66.672000px;}
._28{width:111.312000px;}
._1b{width:129.448800px;}
._26{width:176.531040px;}
._1c{width:192.384000px;}
._17{width:265.248000px;}
._0{width:838.980000px;}
._a{width:843.984000px;}
._6{width:846.000000px;}
.fcc{color:rgb(255,128,0);}
.fca{color:rgb(0,0,128);}
.fc7{color:rgb(255,0,0);}
.fc9{color:rgb(0,128,0);}
.fc6{color:rgb(0,0,255);}
.fc8{color:rgb(128,0,255);}
.fc5{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fcb{color:rgb(128,128,128);}
.fc4{color:rgb(68,84,106);}
.fc3{color:rgb(242,242,242);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fsa{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsc{font-size:81.360000px;}
.fs9{font-size:84.240000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.960000px;}
.y2ae{bottom:4.140000px;}
.y36a{bottom:4.500000px;}
.ydc{bottom:7.020000px;}
.y18d{bottom:7.200000px;}
.y2f2{bottom:18.360000px;}
.y13c{bottom:30.780000px;}
.y146{bottom:30.960000px;}
.y2f0{bottom:35.640000px;}
.y176{bottom:54.540000px;}
.y1bd{bottom:54.719850px;}
.y157{bottom:54.720000px;}
.y4{bottom:57.420000px;}
.y7f{bottom:78.120000px;}
.yce{bottom:78.480000px;}
.y123{bottom:102.240000px;}
.y15e{bottom:102.420000px;}
.y20b{bottom:111.960000px;}
.y487{bottom:113.580000px;}
.y6e{bottom:116.460000px;}
.y40e{bottom:118.440000px;}
.y490{bottom:118.800000px;}
.y244{bottom:123.660000px;}
.y253{bottom:124.200000px;}
.ya0{bottom:124.380000px;}
.y1ec{bottom:125.460000px;}
.yd7{bottom:126.000000px;}
.y115{bottom:126.180000px;}
.y4b5{bottom:126.360000px;}
.y1d0{bottom:127.088820px;}
.y27d{bottom:129.780000px;}
.y305{bottom:130.500000px;}
.y2ef{bottom:130.680000px;}
.y299{bottom:132.120000px;}
.y3de{bottom:132.660000px;}
.y2bd{bottom:134.820000px;}
.y377{bottom:138.960000px;}
.y3af{bottom:140.220000px;}
.y6d{bottom:140.400000px;}
.y40d{bottom:142.200000px;}
.y1ab{bottom:142.740000px;}
.y385{bottom:146.520000px;}
.y498{bottom:147.240000px;}
.y252{bottom:147.960000px;}
.y469{bottom:148.320000px;}
.y470{bottom:148.500000px;}
.y2f3{bottom:149.040000px;}
.yde{bottom:149.760000px;}
.y27c{bottom:153.720000px;}
.y3d7{bottom:155.160000px;}
.y298{bottom:155.880000px;}
.y20a{bottom:156.240000px;}
.y2a5{bottom:157.500000px;}
.y2e2{bottom:157.860000px;}
.y275{bottom:158.220000px;}
.y243{bottom:158.580000px;}
.y2bc{bottom:158.760000px;}
.y376{bottom:162.720000px;}
.y6c{bottom:164.160000px;}
.y352{bottom:164.340000px;}
.y17c{bottom:164.700000px;}
.y40c{bottom:165.960000px;}
.y2f1{bottom:166.320000px;}
.y1aa{bottom:166.500000px;}
.y3a3{bottom:167.220000px;}
.y2ee{bottom:171.180000px;}
.y43a{bottom:171.720000px;}
.y251{bottom:171.900000px;}
.y497{bottom:172.620000px;}
.y34b{bottom:173.340000px;}
.y192{bottom:173.699850px;}
.y1b1{bottom:173.700000px;}
.yf1{bottom:173.880000px;}
.y2bf{bottom:174.420000px;}
.y9f{bottom:175.140000px;}
.y1eb{bottom:176.220000px;}
.y205{bottom:176.760000px;}
.y4b4{bottom:177.120000px;}
.y27b{bottom:177.480000px;}
.y3d6{bottom:179.100000px;}
.y297{bottom:179.820000px;}
.y461{bottom:180.540000px;}
.y304{bottom:181.440000px;}
.y2e1{bottom:181.620000px;}
.y2bb{bottom:182.520000px;}
.y375{bottom:186.660000px;}
.y6b{bottom:187.740000px;}
.y351{bottom:188.100000px;}
.y339{bottom:189.180000px;}
.y40b{bottom:189.900000px;}
.y384{bottom:190.800000px;}
.y1a4{bottom:191.160000px;}
.y31e{bottom:192.240000px;}
.y2ed{bottom:195.120000px;}
.y439{bottom:195.660000px;}
.y250{bottom:195.840000px;}
.y34a{bottom:197.100000px;}
.yf0{bottom:197.640000px;}
.y1a9{bottom:198.180000px;}
.y468{bottom:199.080000px;}
.y184{bottom:199.980000px;}
.y204{bottom:200.700000px;}
.y46f{bottom:201.060000px;}
.y27a{bottom:201.240000px;}
.y242{bottom:202.680000px;}
.y3d5{bottom:202.860000px;}
.y460{bottom:204.300000px;}
.y296{bottom:204.660000px;}
.y303{bottom:205.200000px;}
.y2e0{bottom:205.560000px;}
.y2ba{bottom:206.460000px;}
.y3e6{bottom:206.640000px;}
.y274{bottom:208.980000px;}
.y374{bottom:210.420000px;}
.y6a{bottom:211.500000px;}
.y338{bottom:212.940000px;}
.y40a{bottom:213.660000px;}
.y1cf{bottom:214.200000px;}
.y486{bottom:215.460000px;}
.y17b{bottom:215.640000px;}
.y31d{bottom:216.180000px;}
.y10d{bottom:217.260000px;}
.y3a2{bottom:217.980000px;}
.y2ec{bottom:218.880000px;}
.y47c{bottom:219.614760px;}
.y349{bottom:220.860000px;}
.y241{bottom:221.400000px;}
.yef{bottom:221.760000px;}
.y1a8{bottom:221.940000px;}
.y44d{bottom:223.020000px;}
.y4a6{bottom:223.200000px;}
.y48f{bottom:223.740000px;}
.y1ea{bottom:223.920000px;}
.y203{bottom:224.460000px;}
.y46e{bottom:225.000000px;}
.y9e{bottom:225.900000px;}
.y3d4{bottom:226.620000px;}
.y4b3{bottom:228.060000px;}
.y224{bottom:228.420000px;}
.y295{bottom:228.600000px;}
.y302{bottom:228.960000px;}
.y38e{bottom:229.500000px;}
.y3e5{bottom:230.580000px;}
.y2b9{bottom:231.300000px;}
.y273{bottom:232.920000px;}
.y496{bottom:233.280000px;}
.y69{bottom:235.440000px;}
.y337{bottom:236.880000px;}
.y409{bottom:237.420000px;}
.y1ce{bottom:237.960000px;}
.y350{bottom:238.860000px;}
.y485{bottom:239.040000px;}
.y31c{bottom:239.940000px;}
.y10c{bottom:240.840000px;}
.y4cd{bottom:241.740000px;}
.y3a1{bottom:241.920000px;}
.y3ce{bottom:242.100000px;}
.y348{bottom:244.800000px;}
.y240{bottom:245.160000px;}
.yee{bottom:245.340000px;}
.y1a7{bottom:245.700000px;}
.y438{bottom:246.240000px;}
.y1e9{bottom:247.680000px;}
.y446{bottom:247.860000px;}
.y202{bottom:248.220000px;}
.y46d{bottom:248.760000px;}
.y9d{bottom:249.840000px;}
.y3d3{bottom:250.380000px;}
.y183{bottom:250.740000px;}
.y279{bottom:252.000000px;}
.y223{bottom:252.180000px;}
.y294{bottom:252.360000px;}
.y301{bottom:252.720000px;}
.y38d{bottom:253.440000px;}
.y3e4{bottom:254.340000px;}
.y45f{bottom:255.060000px;}
.y2b8{bottom:255.240000px;}
.y2df{bottom:256.320000px;}
.y272{bottom:256.680000px;}
.y47b{bottom:260.111700px;}
.y373{bottom:261.180000px;}
.y1cc{bottom:262.440000px;}
.y34f{bottom:262.620000px;}
.y484{bottom:262.800000px;}
.y31b{bottom:263.700000px;}
.y4cc{bottom:265.500000px;}
.y17a{bottom:266.400000px;}
.y44c{bottom:267.300000px;}
.y68{bottom:268.200000px;}
.y347{bottom:268.560000px;}
.y23f{bottom:268.920000px;}
.yb7{bottom:269.280000px;}
.y1a6{bottom:269.460000px;}
.y2eb{bottom:269.640000px;}
.y24f{bottom:271.440000px;}
.y445{bottom:271.800000px;}
.y201{bottom:271.980000px;}
.y416{bottom:272.700000px;}
.y9c{bottom:273.600000px;}
.y3ec{bottom:273.780000px;}
.y3d2{bottom:274.140000px;}
.y182{bottom:274.500000px;}
.y278{bottom:275.760000px;}
.y222{bottom:276.120000px;}
.y495{bottom:277.380000px;}
.y3e3{bottom:278.100000px;}
.y38c{bottom:278.280000px;}
.y45e{bottom:279.000000px;}
.y12a{bottom:279.360000px;}
.y2de{bottom:280.080000px;}
.y271{bottom:280.440000px;}
.y46c{bottom:283.680000px;}
.y47a{bottom:283.868820px;}
.y372{bottom:284.940000px;}
.y34e{bottom:286.740000px;}
.y336{bottom:287.460000px;}
.y1e8{bottom:289.080000px;}
.y4cb{bottom:289.440000px;}
.y3ae{bottom:290.700000px;}
.y10b{bottom:291.780000px;}
.y346{bottom:292.320000px;}
.y23e{bottom:292.680000px;}
.y3a0{bottom:292.860000px;}
.y1a5{bottom:293.400000px;}
.yed{bottom:296.100000px;}
.y408{bottom:296.280000px;}
.y415{bottom:296.460000px;}
.y437{bottom:297.000000px;}
.y3eb{bottom:297.540000px;}
.y181{bottom:298.260000px;}
.y48e{bottom:298.620000px;}
.y4a5{bottom:299.520000px;}
.y221{bottom:299.880000px;}
.y467{bottom:300.780000px;}
.y67{bottom:300.960000px;}
.y38b{bottom:302.040000px;}
.y4b2{bottom:302.580000px;}
.y45d{bottom:302.760000px;}
.y127{bottom:303.300000px;}
.y300{bottom:303.660000px;}
.y2dd{bottom:303.840000px;}
.y270{bottom:304.200000px;}
.y24e{bottom:306.360000px;}
.y2b7{bottom:307.080000px;}
.y371{bottom:308.880000px;}
.y34d{bottom:310.320000px;}
.y277{bottom:310.860000px;}
.y335{bottom:311.220000px;}
.y23{bottom:312.315120px;}
.y4ca{bottom:313.200000px;}
.y483{bottom:313.560000px;}
.y31a{bottom:314.460000px;}
.y3d1{bottom:315.540000px;}
.y10a{bottom:316.620000px;}
.y179{bottom:317.160000px;}
.y2ea{bottom:317.340000px;}
.y39f{bottom:317.700000px;}
.y200{bottom:319.680000px;}
.yec{bottom:319.860000px;}
.yb6{bottom:320.040000px;}
.y414{bottom:320.220000px;}
.y436{bottom:320.940000px;}
.y3ea{bottom:321.300000px;}
.y180{bottom:322.200000px;}
.y444{bottom:322.560000px;}
.y4a4{bottom:323.460000px;}
.y220{bottom:323.640000px;}
.y293{bottom:323.820000px;}
.y49a{bottom:324.000000px;}
.y9b{bottom:324.360000px;}
.y479{bottom:324.548820px;}
.y66{bottom:324.900000px;}
.y38a{bottom:325.980000px;}
.y45c{bottom:326.520000px;}
.y2ff{bottom:327.420000px;}
.y2dc{bottom:327.780000px;}
.y26f{bottom:328.140000px;}
.y3e2{bottom:328.860000px;}
.y2b6{bottom:330.840000px;}
.y370{bottom:332.640000px;}
.y129{bottom:334.080000px;}
.y22{bottom:334.087920px;}
.y334{bottom:335.160000px;}
.y24d{bottom:335.520000px;}
.y4c9{bottom:336.960000px;}
.y482{bottom:337.500000px;}
.y319{bottom:338.220000px;}
.y3ad{bottom:338.400000px;}
.y276{bottom:339.840000px;}
.y23d{bottom:340.380000px;}
.y109{bottom:340.560000px;}
.y1cd{bottom:340.920000px;}
.y39e{bottom:341.460000px;}
.y407{bottom:341.640000px;}
.y345{bottom:343.080000px;}
.y48{bottom:343.440000px;}
.y3cd{bottom:343.620000px;}
.yeb{bottom:343.800000px;}
.y413{bottom:344.160000px;}
.y3b2{bottom:344.340000px;}
.y1e7{bottom:345.240000px;}
.y48d{bottom:346.140000px;}
.y443{bottom:346.320000px;}
.y21f{bottom:347.400000px;}
.y292{bottom:347.760000px;}
.y9a{bottom:348.120000px;}
.y478{bottom:348.122880px;}
.y65{bottom:348.660000px;}
.ycb{bottom:349.020000px;}
.y2fe{bottom:351.180000px;}
.y466{bottom:351.540000px;}
.y26e{bottom:351.900000px;}
.y3e1{bottom:352.800000px;}
.y2b5{bottom:354.780000px;}
.y36f{bottom:356.400000px;}
.y21{bottom:356.580000px;}
.y128{bottom:357.840000px;}
.y1a3{bottom:358.380000px;}
.y406{bottom:358.560000px;}
.y333{bottom:358.920000px;}
.y4c8{bottom:360.720000px;}
.y481{bottom:361.260000px;}
.y3ac{bottom:362.160000px;}
.y23c{bottom:364.320000px;}
.y39d{bottom:365.220000px;}
.y344{bottom:367.020000px;}
.y1ff{bottom:367.200000px;}
.y2db{bottom:367.740000px;}
.y178{bottom:367.920000px;}
.y2e9{bottom:368.280000px;}
.y1e6{bottom:369.000000px;}
.y48c{bottom:369.900000px;}
.y442{bottom:370.080000px;}
.yb5{bottom:370.800000px;}
.y353{bottom:370.980000px;}
.y4a3{bottom:371.160000px;}
.y21e{bottom:371.340000px;}
.y3d0{bottom:371.700000px;}
.y477{bottom:371.880000px;}
.y99{bottom:372.060000px;}
.y64{bottom:372.420000px;}
.yca{bottom:372.780000px;}
.y17f{bottom:372.960000px;}
.y2fd{bottom:374.940000px;}
.y405{bottom:375.480000px;}
.y26d{bottom:375.660000px;}
.y45b{bottom:377.280000px;}
.y389{bottom:377.820000px;}
.y2b4{bottom:378.540000px;}
.y20{bottom:378.900000px;}
.y36e{bottom:380.160000px;}
.y1cb{bottom:382.320000px;}
.y332{bottom:382.680000px;}
.y1a2{bottom:383.040000px;}
.yea{bottom:383.760000px;}
.y4c7{bottom:384.480000px;}
.y47{bottom:384.840000px;}
.y480{bottom:385.020000px;}
.y3e0{bottom:387.720000px;}
.y23b{bottom:389.160000px;}
.y343{bottom:390.780000px;}
.y1fe{bottom:390.960000px;}
.y108{bottom:392.400000px;}
.y404{bottom:392.580000px;}
.y1e5{bottom:392.760000px;}
.y2e8{bottom:393.120000px;}
.y48b{bottom:393.660000px;}
.y3cc{bottom:394.380000px;}
.yb4{bottom:394.560000px;}
.y4a2{bottom:394.740000px;}
.y21d{bottom:395.100000px;}
.y98{bottom:395.820000px;}
.y3e9{bottom:396.000000px;}
.y63{bottom:396.180000px;}
.y2fc{bottom:398.880000px;}
.y122{bottom:399.240000px;}
.y26c{bottom:399.420000px;}
.y1f{bottom:399.600000px;}
.y4b1{bottom:401.040000px;}
.y45a{bottom:401.220000px;}
.y2b3{bottom:402.300000px;}
.y177{bottom:402.840000px;}
.y36d{bottom:404.100000px;}
.y46{bottom:405.540000px;}
.y1ca{bottom:406.800000px;}
.y1a1{bottom:407.520000px;}
.y17e{bottom:407.880000px;}
.y4c6{bottom:408.420000px;}
.y403{bottom:409.500000px;}
.y355{bottom:412.020000px;}
.yc9{bottom:412.920000px;}
.y23a{bottom:413.100000px;}
.y342{bottom:414.540000px;}
.y1fd{bottom:414.900000px;}
.y425{bottom:415.260000px;}
.y1e4{bottom:416.700000px;}
.y2e7{bottom:417.060000px;}
.y48a{bottom:417.420000px;}
.y412{bottom:418.680000px;}
.y21c{bottom:418.860000px;}
.y383{bottom:419.400000px;}
.y97{bottom:419.580000px;}
.y1e{bottom:420.300000px;}
.y441{bottom:421.020000px;}
.y2da{bottom:421.200000px;}
.y435{bottom:422.460000px;}
.y26b{bottom:423.360000px;}
.y476{bottom:424.440000px;}
.y4b0{bottom:424.800000px;}
.y459{bottom:424.980000px;}
.y402{bottom:426.600000px;}
.y175{bottom:426.780000px;}
.y36c{bottom:427.860000px;}
.y388{bottom:428.580000px;}
.y62{bottom:428.940000px;}
.y3cb{bottom:429.300000px;}
.y126{bottom:430.020000px;}
.y2e3{bottom:430.740000px;}
.y3e8{bottom:430.920000px;}
.y3df{bottom:431.820000px;}
.y1a0{bottom:432.180000px;}
.y331{bottom:433.620000px;}
.y107{bottom:433.800000px;}
.y318{bottom:436.680000px;}
.ye9{bottom:437.220000px;}
.y47f{bottom:437.580000px;}
.y3ab{bottom:438.120000px;}
.y424{bottom:439.200000px;}
.y1d{bottom:441.000000px;}
.y2e6{bottom:442.080000px;}
.y411{bottom:442.440000px;}
.y21b{bottom:442.620000px;}
.y382{bottom:443.160000px;}
.y96{bottom:443.340000px;}
.y401{bottom:443.520000px;}
.y45{bottom:444.240000px;}
.y440{bottom:444.780000px;}
.yb3{bottom:445.320000px;}
.y4a1{bottom:445.680000px;}
.y26a{bottom:447.120000px;}
.y475{bottom:448.380000px;}
.y458{bottom:448.740000px;}
.y138{bottom:448.920000px;}
.y2fb{bottom:449.640000px;}
.y3cf{bottom:450.900000px;}
.y17d{bottom:452.160000px;}
.y489{bottom:452.340000px;}
.y2b2{bottom:453.060000px;}
.y125{bottom:453.780000px;}
.y44b{bottom:454.140000px;}
.y1c9{bottom:455.220000px;}
.y4c5{bottom:455.940000px;}
.y330{bottom:457.380000px;}
.y174{bottom:457.560000px;}
.y317{bottom:460.440000px;}
.ye8{bottom:461.160000px;}
.y1c{bottom:461.697840px;}
.y61{bottom:461.700000px;}
.y36b{bottom:462.780000px;}
.y423{bottom:462.960000px;}
.y3aa{bottom:463.140000px;}
.y387{bottom:463.680000px;}
.y44{bottom:464.940000px;}
.y341{bottom:465.300000px;}
.y1fc{bottom:465.660000px;}
.yc8{bottom:466.380000px;}
.y21a{bottom:466.560000px;}
.y381{bottom:466.920000px;}
.y1e3{bottom:467.460000px;}
.y3c9{bottom:467.640000px;}
.y43f{bottom:468.540000px;}
.y4a0{bottom:469.620000px;}
.y269{bottom:471.060000px;}
.y2d9{bottom:472.140000px;}
.y137{bottom:472.860000px;}
.y434{bottom:473.220000px;}
.y2fa{bottom:473.400000px;}
.y3ca{bottom:473.580000px;}
.y3e7{bottom:475.020000px;}
.y2b1{bottom:477.180000px;}
.y400{bottom:477.540000px;}
.y124{bottom:477.720000px;}
.y44a{bottom:477.900000px;}
.y1c7{bottom:479.700000px;}
.y19f{bottom:480.420000px;}
.y32f{bottom:481.320000px;}
.y316{bottom:484.380000px;}
.y95{bottom:484.740000px;}
.y43{bottom:485.640000px;}
.y60{bottom:485.820000px;}
.y354{bottom:486.540000px;}
.y1c8{bottom:486.720000px;}
.y422{bottom:486.900000px;}
.y3a9{bottom:488.160000px;}
.y1b{bottom:488.700000px;}
.y340{bottom:489.240000px;}
.y106{bottom:489.960000px;}
.yc7{bottom:490.140000px;}
.y219{bottom:490.320000px;}
.y1e2{bottom:491.220000px;}
.y3c8{bottom:491.400000px;}
.y43e{bottom:492.300000px;}
.y49f{bottom:493.200000px;}
.y2e5{bottom:493.920000px;}
.y3ff{bottom:494.460000px;}
.y268{bottom:494.640000px;}
.yb2{bottom:496.260000px;}
.y136{bottom:496.620000px;}
.y2f9{bottom:497.160000px;}
.y172{bottom:498.960000px;}
.y4af{bottom:499.320000px;}
.y457{bottom:499.500000px;}
.y1fb{bottom:500.580000px;}
.y499{bottom:501.660000px;}
.y449{bottom:502.020000px;}
.ye7{bottom:502.380000px;}
.y4c4{bottom:503.640000px;}
.y465{bottom:504.000000px;}
.y32e{bottom:504.900000px;}
.y1bb{bottom:505.620000px;}
.y173{bottom:505.980000px;}
.y42{bottom:506.340000px;}
.y386{bottom:507.780000px;}
.y369{bottom:508.140000px;}
.y39c{bottom:509.400000px;}
.y5f{bottom:509.580000px;}
.y3fe{bottom:511.560000px;}
.y421{bottom:511.740000px;}
.y474{bottom:512.100000px;}
.y291{bottom:512.280000px;}
.y1a{bottom:512.295480px;}
.y33f{bottom:513.180000px;}
.y105{bottom:513.900000px;}
.yc6{bottom:514.080000px;}
.y1e1{bottom:514.980000px;}
.y3c7{bottom:515.160000px;}
.y239{bottom:515.880000px;}
.y43d{bottom:516.240000px;}
.y49e{bottom:516.960000px;}
.y2e4{bottom:517.680000px;}
.y171{bottom:517.860000px;}
.y267{bottom:518.400000px;}
.y11e{bottom:518.940000px;}
.yb1{bottom:520.020000px;}
.y2f8{bottom:520.920000px;}
.y433{bottom:521.100000px;}
.y2b0{bottom:521.640000px;}
.y2d8{bottom:522.900000px;}
.y456{bottom:523.440000px;}
.y368{bottom:525.060000px;}
.y121{bottom:525.960000px;}
.y41{bottom:527.040000px;}
.y4c3{bottom:527.400000px;}
.y3fd{bottom:528.480000px;}
.y32d{bottom:528.660000px;}
.y19e{bottom:528.840000px;}
.y1b3{bottom:529.380000px;}
.y3ed{bottom:531.360000px;}
.y5e{bottom:533.160000px;}
.y315{bottom:535.140000px;}
.y420{bottom:535.500000px;}
.y1ba{bottom:536.400000px;}
.y135{bottom:536.580000px;}
.y33e{bottom:536.760000px;}
.y218{bottom:537.840000px;}
.y1e0{bottom:538.740000px;}
.y3c6{bottom:538.920000px;}
.y238{bottom:539.640000px;}
.y19{bottom:540.018000px;}
.y94{bottom:540.900000px;}
.y380{bottom:541.620000px;}
.y367{bottom:542.160000px;}
.y266{bottom:542.340000px;}
.yb0{bottom:543.780000px;}
.y1fa{bottom:544.860000px;}
.y3fc{bottom:545.400000px;}
.y2d7{bottom:546.660000px;}
.y16f{bottom:547.200000px;}
.y40{bottom:547.740000px;}
.y120{bottom:549.900000px;}
.y43c{bottom:551.160000px;}
.y1c5{bottom:551.880000px;}
.y494{bottom:552.240000px;}
.y448{bottom:552.600000px;}
.y2af{bottom:552.780000px;}
.yc5{bottom:554.040000px;}
.y170{bottom:554.220000px;}
.y464{bottom:554.760000px;}
.y19d{bottom:554.940000px;}
.y104{bottom:555.120000px;}
.y5d{bottom:556.920000px;}
.ye6{bottom:558.540000px;}
.y1c6{bottom:558.900000px;}
.y366{bottom:559.080000px;}
.y41f{bottom:559.440000px;}
.y1b9{bottom:560.340000px;}
.y33d{bottom:560.520000px;}
.y155{bottom:561.600000px;}
.y3fb{bottom:562.140000px;}
.y237{bottom:563.400000px;}
.y93{bottom:564.660000px;}
.y410{bottom:564.840000px;}
.y3a8{bottom:565.020000px;}
.y37f{bottom:565.380000px;}
.y473{bottom:565.740000px;}
.y265{bottom:566.100000px;}
.y16e{bottom:566.280000px;}
.y18{bottom:567.549000px;}
.y49d{bottom:567.720000px;}
.y3f{bottom:568.440000px;}
.y2f7{bottom:568.620000px;}
.y2d6{bottom:570.420000px;}
.y432{bottom:571.680000px;}
.y46b{bottom:572.040000px;}
.y11f{bottom:573.660000px;}
.y4ae{bottom:574.020000px;}
.y4c2{bottom:574.920000px;}
.y365{bottom:575.640000px;}
.y493{bottom:576.180000px;}
.y2a4{bottom:576.540000px;}
.y1df{bottom:578.880000px;}
.y3fa{bottom:579.420000px;}
.y32c{bottom:579.780000px;}
.y39b{bottom:580.680000px;}
.y5c{bottom:581.040000px;}
.y314{bottom:582.660000px;}
.y41e{bottom:583.380000px;}
.y1b8{bottom:584.100000px;}
.y154{bottom:585.360000px;}
.y217{bottom:585.540000px;}
.y447{bottom:587.520000px;}
.y92{bottom:588.600000px;}
.y3a7{bottom:588.780000px;}
.y3e{bottom:589.140000px;}
.y463{bottom:589.680000px;}
.y264{bottom:589.860000px;}
.y134{bottom:590.220000px;}
.y46a{bottom:590.400000px;}
.y290{bottom:592.380000px;}
.y364{bottom:593.100000px;}
.ye5{bottom:593.640000px;}
.y2d5{bottom:594.360000px;}
.yaf{bottom:594.540000px;}
.y17{bottom:595.080000px;}
.y43b{bottom:595.260000px;}
.y16d{bottom:595.620000px;}
.y3f9{bottom:596.520000px;}
.y2ad{bottom:597.960000px;}
.y4c1{bottom:598.860000px;}
.y47e{bottom:599.580000px;}
.y492{bottom:599.760000px;}
.y1c4{bottom:600.300000px;}
.y472{bottom:600.660000px;}
.y49c{bottom:602.820000px;}
.y32b{bottom:603.360000px;}
.y39a{bottom:604.620000px;}
.y5b{bottom:604.800000px;}
.y313{bottom:606.600000px;}
.yc4{bottom:607.500000px;}
.y1b7{bottom:607.860000px;}
.y41d{bottom:608.220000px;}
.y153{bottom:609.120000px;}
.y216{bottom:609.300000px;}
.y3d{bottom:609.840000px;}
.y363{bottom:610.020000px;}
.y103{bottom:611.280000px;}
.y91{bottom:612.360000px;}
.y19c{bottom:613.440000px;}
.y263{bottom:613.620000px;}
.y133{bottom:613.980000px;}
.y2ac{bottom:614.700000px;}
.y11a{bottom:614.880000px;}
.y28f{bottom:616.140000px;}
.ydd{bottom:617.400000px;}
.y455{bottom:621.720000px;}
.y11d{bottom:621.900000px;}
.y431{bottom:622.440000px;}
.y4c0{bottom:622.620000px;}
.ye4{bottom:624.420000px;}
.y3c5{bottom:624.780000px;}
.y1c3{bottom:626.220000px;}
.y16c{bottom:626.400000px;}
.y32a{bottom:627.120000px;}
.y5a{bottom:628.560000px;}
.y3a6{bottom:628.920000px;}
.y37e{bottom:629.280000px;}
.y312{bottom:630.360000px;}
.y3c{bottom:630.540000px;}
.y16{bottom:631.440000px;}
.y1b6{bottom:631.620000px;}
.y2ab{bottom:631.980000px;}
.y1de{bottom:632.340000px;}
.y215{bottom:633.060000px;}
.y462{bottom:633.780000px;}
.y491{bottom:634.680000px;}
.y33c{bottom:635.220000px;}
.y102{bottom:635.400000px;}
.y90{bottom:636.120000px;}
.y262{bottom:637.560000px;}
.y132{bottom:637.740000px;}
.y28e{bottom:639.900000px;}
.y362{bottom:643.680000px;}
.y47d{bottom:643.860000px;}
.y471{bottom:644.760000px;}
.y2d4{bottom:645.120000px;}
.yae{bottom:645.480000px;}
.y454{bottom:645.660000px;}
.y11c{bottom:645.840000px;}
.y430{bottom:646.200000px;}
.y4bf{bottom:646.380000px;}
.y49b{bottom:646.920000px;}
.y3f8{bottom:647.460000px;}
.ye3{bottom:648.180000px;}
.y19b{bottom:648.360000px;}
.y3b1{bottom:648.540000px;}
.y2aa{bottom:649.080000px;}
.y152{bottom:649.260000px;}
.y329{bottom:650.880000px;}
.y3b{bottom:651.240000px;}
.y59{bottom:652.140000px;}
.y311{bottom:654.120000px;}
.yc3{bottom:655.200000px;}
.y1b5{bottom:655.560000px;}
.y41c{bottom:655.740000px;}
.y1dd{bottom:656.280000px;}
.y399{bottom:656.460000px;}
.y214{bottom:656.820000px;}
.y15{bottom:657.180000px;}
.y101{bottom:658.980000px;}
.y8f{bottom:659.880000px;}
.y236{bottom:660.960000px;}
.y261{bottom:661.320000px;}
.y131{bottom:661.500000px;}
.y28d{bottom:663.660000px;}
.y3f7{bottom:664.380000px;}
.y2a9{bottom:665.640000px;}
.y2f6{bottom:667.080000px;}
.y16b{bottom:667.800000px;}
.y2d3{bottom:668.880000px;}
.yad{bottom:669.240000px;}
.y11b{bottom:669.600000px;}
.y3c4{bottom:670.140000px;}
.y3a{bottom:671.940000px;}
.ye2{bottom:672.120000px;}
.y19a{bottom:672.300000px;}
.y4ad{bottom:672.660000px;}
.y328{bottom:674.820000px;}
.y310{bottom:677.880000px;}
.y361{bottom:678.060000px;}
.yc2{bottom:678.960000px;}
.y1b4{bottom:679.320000px;}
.y41b{bottom:679.680000px;}
.y1dc{bottom:680.040000px;}
.y398{bottom:680.400000px;}
.y213{bottom:680.760000px;}
.y3f6{bottom:681.480000px;}
.y3a5{bottom:682.380000px;}
.y100{bottom:682.740000px;}
.y2a8{bottom:682.920000px;}
.y14{bottom:683.100000px;}
.y8e{bottom:683.820000px;}
.y235{bottom:684.720000px;}
.y1c2{bottom:684.900000px;}
.y58{bottom:685.080000px;}
.y260{bottom:685.260000px;}
.y16a{bottom:686.700000px;}
.y3c3{bottom:687.060000px;}
.y28c{bottom:687.600000px;}
.y2d2{bottom:692.640000px;}
.y3b0{bottom:693.360000px;}
.y4be{bottom:694.080000px;}
.y360{bottom:694.980000px;}
.ye1{bottom:695.880000px;}
.y453{bottom:696.420000px;}
.y191{bottom:696.780000px;}
.y42f{bottom:697.140000px;}
.y3f5{bottom:698.040000px;}
.y7e{bottom:699.660000px;}
.y2a7{bottom:700.020000px;}
.y30f{bottom:701.820000px;}
.y2f5{bottom:702.180000px;}
.y151{bottom:702.720000px;}
.y199{bottom:703.800000px;}
.y3c2{bottom:703.980000px;}
.y212{bottom:704.520000px;}
.yff{bottom:706.500000px;}
.y40f{bottom:707.580000px;}
.y234{bottom:708.480000px;}
.y13{bottom:709.020000px;}
.y25f{bottom:710.100000px;}
.y39{bottom:710.640000px;}
.y114{bottom:710.820000px;}
.y28b{bottom:711.360000px;}
.y35f{bottom:712.080000px;}
.y130{bottom:712.440000px;}
.y3f4{bottom:715.320000px;}
.y168{bottom:716.040000px;}
.y2d1{bottom:716.580000px;}
.y2a6{bottom:716.940000px;}
.y57{bottom:717.840000px;}
.y119{bottom:718.020000px;}
.ye0{bottom:719.640000px;}
.y1c1{bottom:719.820000px;}
.yac{bottom:720.000000px;}
.y452{bottom:720.180000px;}
.yc1{bottom:720.360000px;}
.y1b0{bottom:720.540000px;}
.y42e{bottom:720.900000px;}
.y3c1{bottom:721.080000px;}
.y169{bottom:723.240000px;}
.y327{bottom:725.580000px;}
.y198{bottom:727.560000px;}
.y211{bottom:728.460000px;}
.y35e{bottom:729.000000px;}
.y3a4{bottom:729.180000px;}
.y37d{bottom:730.440000px;}
.y1db{bottom:730.800000px;}
.y2f4{bottom:730.980000px;}
.y397{bottom:731.160000px;}
.y3f3{bottom:732.420000px;}
.y25e{bottom:733.860000px;}
.y8d{bottom:734.580000px;}
.y12{bottom:734.760000px;}
.y28a{bottom:735.120000px;}
.y12f{bottom:736.200000px;}
.y150{bottom:737.640000px;}
.y2d0{bottom:740.340000px;}
.y56{bottom:741.600000px;}
.y118{bottom:741.780000px;}
.ydf{bottom:743.400000px;}
.y1be{bottom:743.580000px;}
.y451{bottom:743.940000px;}
.y35d{bottom:745.920000px;}
.y167{bottom:747.000000px;}
.y38{bottom:749.340000px;}
.y1c0{bottom:750.780000px;}
.y197{bottom:751.500000px;}
.y210{bottom:752.220000px;}
.y30e{bottom:752.580000px;}
.y37c{bottom:754.200000px;}
.y1da{bottom:754.560000px;}
.y396{bottom:754.920000px;}
.y3c0{bottom:755.100000px;}
.yfe{bottom:757.440000px;}
.y25d{bottom:757.800000px;}
.y8c{bottom:758.340000px;}
.y289{bottom:758.880000px;}
.y233{bottom:759.420000px;}
.y12e{bottom:759.960000px;}
.y11{bottom:760.860000px;}
.y14e{bottom:761.400000px;}
.y7d{bottom:761.580000px;}
.y35c{bottom:762.660000px;}
.y4bd{bottom:765.360000px;}
.y55{bottom:765.540000px;}
.y3f2{bottom:766.440000px;}
.y450{bottom:767.880000px;}
.y14f{bottom:768.600000px;}
.y37{bottom:770.040000px;}
.yab{bottom:770.760000px;}
.y4ac{bottom:770.940000px;}
.y42d{bottom:771.660000px;}
.y3bf{bottom:772.020000px;}
.y1f8{bottom:772.920000px;}
.y326{bottom:773.100000px;}
.y1bf{bottom:774.540000px;}
.y196{bottom:775.260000px;}
.y20f{bottom:775.980000px;}
.y30d{bottom:776.340000px;}
.yc0{bottom:776.700000px;}
.y37b{bottom:777.960000px;}
.y1d9{bottom:778.500000px;}
.y395{bottom:778.680000px;}
.y35b{bottom:779.580000px;}
.y14d{bottom:780.479850px;}
.yfd{bottom:781.200000px;}
.y25c{bottom:781.560000px;}
.y8b{bottom:782.100000px;}
.y288{bottom:782.820000px;}
.y232{bottom:783.180000px;}
.y3f1{bottom:783.360000px;}
.y12d{bottom:783.720000px;}
.yd6{bottom:784.800000px;}
.y7c{bottom:785.340000px;}
.y10{bottom:786.420000px;}
.y190{bottom:787.140000px;}
.y163{bottom:788.220000px;}
.y3be{bottom:788.940000px;}
.y117{bottom:789.300000px;}
.y54{bottom:789.479850px;}
.y2cf{bottom:791.100000px;}
.yaa{bottom:794.700000px;}
.y166{bottom:795.240000px;}
.y42c{bottom:795.420000px;}
.y325{bottom:797.040000px;}
.y195{bottom:799.020000px;}
.y20e{bottom:799.740000px;}
.y30c{bottom:800.100000px;}
.y3f0{bottom:800.280000px;}
.ybf{bottom:801.720000px;}
.y394{bottom:802.620000px;}
.y44f{bottom:802.800000px;}
.y1d8{bottom:803.520000px;}
.yfc{bottom:804.960000px;}
.y25b{bottom:805.320000px;}
.y3bd{bottom:805.680000px;}
.y209{bottom:805.860000px;}
.y8a{bottom:806.040000px;}
.y287{bottom:806.580000px;}
.y231{bottom:806.940000px;}
.y12c{bottom:807.660000px;}
.y36{bottom:808.740000px;}
.y7b{bottom:809.100000px;}
.y14b{bottom:809.820000px;}
.y3dd{bottom:811.620000px;}
.y53{bottom:813.060000px;}
.y116{bottom:813.240000px;}
.yf{bottom:813.420000px;}
.y35a{bottom:813.960000px;}
.y2ce{bottom:814.860000px;}
.ydb{bottom:815.580000px;}
.y1bc{bottom:815.760000px;}
.y14c{bottom:816.840000px;}
.y3ef{bottom:817.020000px;}
.ya9{bottom:818.460000px;}
.y165{bottom:819.180000px;}
.y42b{bottom:819.360000px;}
.y324{bottom:820.800000px;}
.y33b{bottom:821.340000px;}
.y4ab{bottom:821.700000px;}
.y194{bottom:822.780000px;}
.y3bc{bottom:822.960000px;}
.y1f7{bottom:823.500000px;}
.y41a{bottom:823.680000px;}
.y30b{bottom:824.040000px;}
.y393{bottom:826.380000px;}
.y1d7{bottom:827.280000px;}
.y14a{bottom:828.720000px;}
.yfb{bottom:828.900000px;}
.y25a{bottom:829.080000px;}
.y35{bottom:829.440000px;}
.y208{bottom:829.620000px;}
.y1f9{bottom:829.800000px;}
.y89{bottom:829.980000px;}
.y286{bottom:830.340000px;}
.y230{bottom:830.700000px;}
.y359{bottom:830.880000px;}
.y162{bottom:831.060000px;}
.y7a{bottom:833.040000px;}
.y3ee{bottom:834.300000px;}
.y3dc{bottom:835.380000px;}
.y4bc{bottom:836.820000px;}
.y52{bottom:837.000000px;}
.y2cd{bottom:838.800000px;}
.yda{bottom:839.340000px;}
.y3bb{bottom:840.060000px;}
.y164{bottom:842.940000px;}
.ye{bottom:844.389000px;}
.y4aa{bottom:845.460000px;}
.y193{bottom:846.720000px;}
.y44e{bottom:846.900000px;}
.y1f6{bottom:847.260000px;}
.y12b{bottom:847.620000px;}
.y30a{bottom:847.800000px;}
.y358{bottom:847.979850px;}
.y34{bottom:850.140000px;}
.y392{bottom:850.320000px;}
.y1d6{bottom:851.220000px;}
.y37a{bottom:852.660000px;}
.yfa{bottom:852.840000px;}
.y259{bottom:853.020000px;}
.y88{bottom:853.560000px;}
.y285{bottom:854.100000px;}
.y10f{bottom:854.460000px;}
.y22f{bottom:854.640000px;}
.y2a3{bottom:855.720000px;}
.y3ba{bottom:856.979850px;}
.y149{bottom:858.240000px;}
.y3db{bottom:860.040000px;}
.y4bb{bottom:860.580000px;}
.y51{bottom:860.760000px;}
.y113{bottom:861.479850px;}
.y2cc{bottom:862.560000px;}
.yd9{bottom:863.280000px;}
.y357{bottom:864.540000px;}
.y79{bottom:865.800000px;}
.ya8{bottom:869.220000px;}
.y42a{bottom:870.120000px;}
.y1b2{bottom:870.479850px;}
.y33{bottom:870.840000px;}
.y1f5{bottom:871.200000px;}
.y24c{bottom:871.380000px;}
.y309{bottom:871.560000px;}
.y3b9{bottom:874.080000px;}
.y33a{bottom:874.800000px;}
.y391{bottom:875.340000px;}
.yd{bottom:875.520000px;}
.y1d5{bottom:876.060000px;}
.y379{bottom:876.420000px;}
.yf9{bottom:876.600000px;}
.y258{bottom:876.780000px;}
.y148{bottom:877.140000px;}
.ybe{bottom:877.320000px;}
.y284{bottom:878.040000px;}
.y22e{bottom:878.400000px;}
.y2a2{bottom:879.840000px;}
.y207{bottom:880.380000px;}
.y356{bottom:882.000000px;}
.y15d{bottom:884.160000px;}
.y50{bottom:884.520000px;}
.y112{bottom:885.240000px;}
.y2cb{bottom:886.320000px;}
.yd8{bottom:887.040000px;}
.y18f{bottom:887.940000px;}
.y3b8{bottom:891.000000px;}
.y161{bottom:891.360000px;}
.y32{bottom:891.540000px;}
.y429{bottom:893.880000px;}
.y24b{bottom:895.140000px;}
.y323{bottom:895.320000px;}
.y1f4{bottom:896.220000px;}
.y78{bottom:898.560000px;}
.y419{bottom:899.460000px;}
.y1d4{bottom:900.000000px;}
.yf8{bottom:900.360000px;}
.y257{bottom:900.540000px;}
.ybd{bottom:901.080000px;}
.y283{bottom:901.800000px;}
.y2a1{bottom:903.420000px;}
.y87{bottom:904.320000px;}
.y145{bottom:906.480000px;}
.yc{bottom:906.489000px;}
.y3b7{bottom:907.920000px;}
.y4f{bottom:908.280000px;}
.y111{bottom:909.180000px;}
.y2ca{bottom:910.080000px;}
.y1af{bottom:911.700000px;}
.y31{bottom:912.240000px;}
.y18e{bottom:912.420000px;}
.y147{bottom:913.680000px;}
.y160{bottom:915.120000px;}
.y22d{bottom:918.540000px;}
.y24a{bottom:918.900000px;}
.y322{bottom:919.080000px;}
.ya7{bottom:919.980000px;}
.y4a9{bottom:920.160000px;}
.y308{bottom:922.320000px;}
.y418{bottom:923.220000px;}
.y256{bottom:924.300000px;}
.y3b6{bottom:924.660000px;}
.ybc{bottom:925.020000px;}
.y144{bottom:925.560000px;}
.y2a0{bottom:927.180000px;}
.y86{bottom:928.080000px;}
.yd2{bottom:928.260000px;}
.y77{bottom:931.320000px;}
.y4ba{bottom:932.040000px;}
.y30{bottom:932.940000px;}
.y3da{bottom:935.100000px;}
.yd5{bottom:935.280000px;}
.y1ae{bottom:936.360000px;}
.y18c{bottom:937.080000px;}
.y15c{bottom:938.880000px;}
.y4e{bottom:941.040000px;}
.y3b5{bottom:941.940000px;}
.y321{bottom:943.020000px;}
.y1f3{bottom:943.740000px;}
.ya6{bottom:943.920000px;}
.y428{bottom:944.640000px;}
.y2c9{bottom:945.180000px;}
.y307{bottom:946.080000px;}
.y255{bottom:948.240000px;}
.y282{bottom:949.320000px;}
.yf7{bottom:950.940000px;}
.y29f{bottom:951.120000px;}
.y1d3{bottom:951.840000px;}
.y85{bottom:952.020000px;}
.y2f{bottom:953.640000px;}
.y142{bottom:954.900000px;}
.y76{bottom:955.080000px;}
.y4b9{bottom:955.800000px;}
.y110{bottom:956.700000px;}
.y3b4{bottom:959.040000px;}
.yd4{bottom:959.220000px;}
.y249{bottom:960.300000px;}
.y1ad{bottom:960.840000px;}
.y189{bottom:961.560000px;}
.y143{bottom:961.920000px;}
.y15f{bottom:962.640000px;}
.y417{bottom:964.620000px;}
.ybb{bottom:966.240000px;}
.y320{bottom:966.780000px;}
.y1f2{bottom:967.500000px;}
.ya5{bottom:967.680000px;}
.yb{bottom:968.589000px;}
.y2be{bottom:968.940000px;}
.y306{bottom:970.020000px;}
.y4a8{bottom:970.920000px;}
.y22c{bottom:972.000000px;}
.y281{bottom:973.080000px;}
.y4d{bottom:973.800000px;}
.y2e{bottom:974.340000px;}
.yf6{bottom:974.880000px;}
.y206{bottom:975.600000px;}
.y84{bottom:975.780000px;}
.y3b3{bottom:975.960000px;}
.y4b8{bottom:979.560000px;}
.yd3{bottom:982.980000px;}
.y1ac{bottom:985.320000px;}
.y75{bottom:988.020000px;}
.y2c8{bottom:990.000000px;}
.y1f1{bottom:991.260000px;}
.y1d2{bottom:991.980000px;}
.y18b{bottom:992.520000px;}
.y34c{bottom:993.780000px;}
.y4a7{bottom:994.860000px;}
.y2d{bottom:995.040000px;}
.y427{bottom:995.580000px;}
.y22b{bottom:995.760000px;}
.y280{bottom:997.020000px;}
.y4c{bottom:997.560000px;}
.y390{bottom:998.640000px;}
.y83{bottom:999.540000px;}
.ya{bottom:999.720000px;}
.y140{bottom:1003.320000px;}
.y4b7{bottom:1003.500000px;}
.y15a{bottom:1004.040000px;}
.y188{bottom:1004.400000px;}
.y2c7{bottom:1007.460000px;}
.y141{bottom:1010.340000px;}
.y15b{bottom:1011.060000px;}
.y10e{bottom:1011.780000px;}
.yf5{bottom:1014.840000px;}
.y1f0{bottom:1015.200000px;}
.y2c{bottom:1015.740000px;}
.y18a{bottom:1016.280000px;}
.y248{bottom:1016.460000px;}
.y31f{bottom:1017.540000px;}
.ya4{bottom:1018.440000px;}
.y22a{bottom:1019.520000px;}
.y74{bottom:1020.780000px;}
.y4b{bottom:1021.500000px;}
.y13f{bottom:1022.220000px;}
.yba{bottom:1022.580000px;}
.y159{bottom:1022.940000px;}
.y82{bottom:1023.300000px;}
.ycd{bottom:1024.200000px;}
.y2c6{bottom:1024.380000px;}
.y378{bottom:1025.640000px;}
.y29e{bottom:1025.820000px;}
.y9{bottom:1030.689000px;}
.yd1{bottom:1031.400000px;}
.y2b{bottom:1036.440000px;}
.y38f{bottom:1038.600000px;}
.y1ef{bottom:1039.140000px;}
.y20d{bottom:1040.220000px;}
.y247{bottom:1040.400000px;}
.y3d9{bottom:1041.300000px;}
.y2c5{bottom:1041.480000px;}
.y229{bottom:1043.280000px;}
.y488{bottom:1044.360000px;}
.y27f{bottom:1044.540000px;}
.y73{bottom:1044.720000px;}
.y1d1{bottom:1045.440000px;}
.yb9{bottom:1046.340000px;}
.y29d{bottom:1049.400000px;}
.y13e{bottom:1051.560000px;}
.y156{bottom:1052.280000px;}
.y4a{bottom:1054.260000px;}
.yd0{bottom:1055.160000px;}
.y2a{bottom:1057.140000px;}
.y187{bottom:1057.500000px;}
.y2c4{bottom:1058.040000px;}
.y158{bottom:1059.480000px;}
.y8{bottom:1061.820000px;}
.y1ee{bottom:1063.980000px;}
.y20c{bottom:1064.160000px;}
.y81{bottom:1064.700000px;}
.y3d8{bottom:1065.240000px;}
.y4b6{bottom:1066.500000px;}
.y228{bottom:1067.220000px;}
.yf4{bottom:1068.300000px;}
.y72{bottom:1068.480000px;}
.ya3{bottom:1069.200000px;}
.yb8{bottom:1070.100000px;}
.y426{bottom:1070.280000px;}
.y29c{bottom:1073.160000px;}
.y2c3{bottom:1074.960000px;}
.y13b{bottom:1076.220000px;}
.y29{bottom:1077.840000px;}
.ycf{bottom:1078.920000px;}
.y13d{bottom:1083.240000px;}
.y1ed{bottom:1087.920000px;}
.y227{bottom:1090.980000px;}
.y254{bottom:1091.160000px;}
.y2c2{bottom:1092.060000px;}
.y27e{bottom:1092.240000px;}
.y71{bottom:1092.420000px;}
.ya2{bottom:1093.140000px;}
.y13a{bottom:1095.120000px;}
.y29b{bottom:1097.100000px;}
.y28{bottom:1098.540000px;}
.y2{bottom:1105.200000px;}
.y245{bottom:1105.560000px;}
.y186{bottom:1105.920000px;}
.y2c1{bottom:1109.340000px;}
.y25{bottom:1114.560000px;}
.y226{bottom:1114.740000px;}
.yf3{bottom:1116.000000px;}
.y70{bottom:1116.180000px;}
.y49{bottom:1117.260000px;}
.y27{bottom:1119.240000px;}
.y246{bottom:1122.660000px;}
.y2c0{bottom:1126.080000px;}
.y80{bottom:1128.600000px;}
.y185{bottom:1132.020000px;}
.ycc{bottom:1134.000000px;}
.ya1{bottom:1134.360000px;}
.y1{bottom:1135.620000px;}
.y139{bottom:1135.980000px;}
.y29a{bottom:1137.060000px;}
.y225{bottom:1138.680000px;}
.yf2{bottom:1139.760000px;}
.y6f{bottom:1139.940000px;}
.y24{bottom:1140.120000px;}
.y26{bottom:1140.300000px;}
.y3{bottom:1193.220000px;}
.y5{bottom:1199.340000px;}
.y7{bottom:1199.520000px;}
.h4{height:20.700000px;}
.h5{height:20.701500px;}
.h15{height:23.760000px;}
.h1b{height:23.940000px;}
.h1e{height:23.941500px;}
.h2c{height:41.221500px;}
.h14{height:47.520000px;}
.h16{height:47.700000px;}
.h19{height:47.701500px;}
.h21{height:56.320312px;}
.h2d{height:57.524062px;}
.h28{height:58.500000px;}
.h24{height:58.621992px;}
.h23{height:59.059688px;}
.h11{height:62.327813px;}
.h25{height:64.978594px;}
.h27{height:65.463750px;}
.ha{height:70.664062px;}
.h1a{height:71.280000px;}
.h17{height:71.460000px;}
.h1f{height:71.461500px;}
.h3{height:75.093750px;}
.h9{height:76.317188px;}
.h8{height:81.101250px;}
.hd{height:87.859687px;}
.h2{height:93.867188px;}
.he{height:95.220000px;}
.h7{height:99.874688px;}
.h6{height:112.640625px;}
.h20{height:118.980000px;}
.h13{height:118.981500px;}
.h18{height:119.160000px;}
.hc{height:125.406562px;}
.hf{height:142.741500px;}
.h12{height:142.920000px;}
.h1d{height:166.500000px;}
.h10{height:166.501500px;}
.h22{height:169.918500px;}
.hb{height:174.968437px;}
.h26{height:186.840000px;}
.h1c{height:190.440000px;}
.h2a{height:356.760000px;}
.h29{height:424.800000px;}
.h2b{height:543.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:106.380000px;}
.w9{width:123.480000px;}
.w10{width:180.718500px;}
.w6{width:202.320000px;}
.wb{width:222.121500px;}
.w4{width:241.200000px;}
.we{width:243.000000px;}
.w11{width:297.181500px;}
.wf{width:338.580000px;}
.wa{width:404.278500px;}
.w5{width:445.320000px;}
.wc{width:455.940000px;}
.w7{width:493.380000px;}
.w8{width:554.580000px;}
.wd{width:678.780000px;}
.w3{width:680.220000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x19{left:10.800000px;}
.x2d{left:34.740000px;}
.x31{left:61.740000px;}
.x5{left:63.900000px;}
.x48{left:70.920000px;}
.x5a{left:78.660000px;}
.x32{left:85.860000px;}
.x4{left:95.580000px;}
.x3e{left:100.800000px;}
.x4e{left:103.500000px;}
.x2{left:106.380000px;}
.x18{left:107.460000px;}
.x1d{left:114.840000px;}
.x6{left:117.360000px;}
.x1a{left:133.380000px;}
.x67{left:140.580000px;}
.x14{left:148.860000px;}
.x12{left:159.480000px;}
.x1c{left:160.740000px;}
.x1b{left:186.480000px;}
.xf{left:192.600000px;}
.x66{left:193.680000px;}
.x52{left:201.240000px;}
.x34{left:202.680000px;}
.x4d{left:204.120000px;}
.x53{left:205.560000px;}
.x6b{left:209.520000px;}
.x37{left:213.480000px;}
.x4f{left:223.380000px;}
.x63{left:227.880000px;}
.x23{left:231.300000px;}
.xa{left:233.460000px;}
.x24{left:239.040000px;}
.x3a{left:241.380000px;}
.x28{left:245.880000px;}
.x40{left:251.640000px;}
.x25{left:256.320000px;}
.x58{left:259.200000px;}
.x3d{left:262.620000px;}
.x42{left:263.880000px;}
.x56{left:266.400000px;}
.x3b{left:268.380000px;}
.x5f{left:269.640000px;}
.x21{left:271.800000px;}
.x6a{left:274.320000px;}
.x6c{left:279.540000px;}
.x59{left:282.600000px;}
.xd{left:284.580000px;}
.x44{left:288.360000px;}
.x7{left:289.620000px;}
.x33{left:293.760000px;}
.x4b{left:297.720000px;}
.x43{left:300.960000px;}
.x30{left:303.300000px;}
.x55{left:305.820000px;}
.x61{left:307.620000px;}
.x39{left:308.880000px;}
.xc{left:310.860000px;}
.x11{left:315.360000px;}
.x22{left:317.880000px;}
.x10{left:320.220000px;}
.x51{left:324.360000px;}
.x36{left:327.600000px;}
.x2b{left:329.940000px;}
.x2c{left:337.680000px;}
.x1f{left:349.020000px;}
.x20{left:356.760000px;}
.x5c{left:361.440000px;}
.x2e{left:364.680000px;}
.x5d{left:370.620000px;}
.xb{left:374.040000px;}
.xe{left:375.300000px;}
.x9{left:377.100000px;}
.x26{left:381.600000px;}
.x15{left:385.740000px;}
.x27{left:389.340000px;}
.x2f{left:391.680000px;}
.x4c{left:399.240000px;}
.x5b{left:403.920000px;}
.x29{left:436.500000px;}
.x16{left:441.360000px;}
.x8{left:446.580000px;}
.x1{left:451.800000px;}
.x13{left:452.880000px;}
.x64{left:454.680000px;}
.x3{left:473.040000px;}
.x65{left:483.120000px;}
.x54{left:525.780000px;}
.x46{left:543.600000px;}
.x60{left:550.440000px;}
.x45{left:560.520000px;}
.x4a{left:566.820000px;}
.x47{left:590.040000px;}
.x5e{left:594.360000px;}
.x49{left:600.300000px;}
.x50{left:605.700000px;}
.x62{left:623.160000px;}
.x3f{left:624.240000px;}
.x41{left:628.020000px;}
.x57{left:635.400000px;}
.x3c{left:642.240000px;}
.x38{left:688.500000px;}
.x35{left:718.200000px;}
.x69{left:728.820000px;}
.x68{left:761.040000px;}
.x17{left:786.600000px;}
.x2a{left:839.700000px;}
@media print{
.v1{vertical-align:-109.440000pt;}
.v4{vertical-align:-84.480000pt;}
.v2{vertical-align:-75.573760pt;}
.v3{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.720000pt;}
.ls21{letter-spacing:-2.048000pt;}
.ls89{letter-spacing:-1.408000pt;}
.ls67{letter-spacing:-1.280000pt;}
.ls87{letter-spacing:-1.276800pt;}
.ls6f{letter-spacing:-1.152000pt;}
.ls57{letter-spacing:-1.024000pt;}
.ls7b{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls36{letter-spacing:-0.673920pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.455040pt;}
.ls58{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.303360pt;}
.ls54{letter-spacing:-0.299520pt;}
.ls66{letter-spacing:-0.265600pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls2e{letter-spacing:-0.213760pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.170240pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.151680pt;}
.ls1d{letter-spacing:-0.149120pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls72{letter-spacing:-0.117760pt;}
.ls3a{letter-spacing:-0.106240pt;}
.ls35{letter-spacing:-0.074880pt;}
.ls88{letter-spacing:-0.072320pt;}
.lsa{letter-spacing:-0.069120pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8c{letter-spacing:0.016640pt;}
.ls8a{letter-spacing:0.024320pt;}
.ls23{letter-spacing:0.050560pt;}
.ls7a{letter-spacing:0.053120pt;}
.ls53{letter-spacing:0.064000pt;}
.ls5d{letter-spacing:0.106240pt;}
.ls41{letter-spacing:0.106880pt;}
.ls39{letter-spacing:0.121600pt;}
.ls10{letter-spacing:0.128000pt;}
.ls73{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.202240pt;}
.ls5f{letter-spacing:0.212480pt;}
.ls5b{letter-spacing:0.249600pt;}
.lsb{letter-spacing:0.256000pt;}
.ls63{letter-spacing:0.265600pt;}
.ls8d{letter-spacing:0.298240pt;}
.ls78{letter-spacing:0.299520pt;}
.ls77{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.371840pt;}
.ls5e{letter-spacing:0.424960pt;}
.ls40{letter-spacing:0.448000pt;}
.ls75{letter-spacing:0.478080pt;}
.ls7{letter-spacing:0.480000pt;}
.ls56{letter-spacing:0.510720pt;}
.ls24{letter-spacing:0.512000pt;}
.ls60{letter-spacing:0.531200pt;}
.ls8b{letter-spacing:0.576000pt;}
.ls76{letter-spacing:0.584320pt;}
.ls71{letter-spacing:0.605568pt;}
.ls62{letter-spacing:0.637440pt;}
.ls64{letter-spacing:0.690560pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls70{letter-spacing:0.972096pt;}
.ls3c{letter-spacing:1.401600pt;}
.ls29{letter-spacing:1.408000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls51{letter-spacing:2.035200pt;}
.ls46{letter-spacing:2.041600pt;}
.ls12{letter-spacing:2.048000pt;}
.ls4f{letter-spacing:2.304000pt;}
.ls4e{letter-spacing:2.681600pt;}
.ls13{letter-spacing:2.688000pt;}
.ls6b{letter-spacing:3.321600pt;}
.lsc{letter-spacing:3.328000pt;}
.ls52{letter-spacing:3.968000pt;}
.ls4b{letter-spacing:4.608000pt;}
.ls86{letter-spacing:5.241600pt;}
.ls14{letter-spacing:5.248000pt;}
.ls50{letter-spacing:5.888000pt;}
.ls6e{letter-spacing:6.502400pt;}
.ls11{letter-spacing:6.528000pt;}
.ls2a{letter-spacing:7.168000pt;}
.ls3f{letter-spacing:7.808000pt;}
.ls32{letter-spacing:8.448000pt;}
.ls68{letter-spacing:9.088000pt;}
.ls2c{letter-spacing:9.728000pt;}
.ls2d{letter-spacing:10.368000pt;}
.ls3d{letter-spacing:11.008000pt;}
.ls3b{letter-spacing:11.641600pt;}
.lsf{letter-spacing:11.648000pt;}
.lse{letter-spacing:12.288000pt;}
.ls38{letter-spacing:12.928000pt;}
.ls6d{letter-spacing:13.568000pt;}
.ls34{letter-spacing:14.208000pt;}
.ls6c{letter-spacing:14.848000pt;}
.ls7f{letter-spacing:15.488000pt;}
.ls6a{letter-spacing:16.128000pt;}
.ls79{letter-spacing:16.761600pt;}
.ls4d{letter-spacing:16.768000pt;}
.ls5a{letter-spacing:17.408000pt;}
.ls7d{letter-spacing:18.041600pt;}
.ls7c{letter-spacing:18.048000pt;}
.ls5c{letter-spacing:18.675200pt;}
.ls55{letter-spacing:18.688000pt;}
.ls80{letter-spacing:19.968000pt;}
.ls47{letter-spacing:20.608000pt;}
.ls7e{letter-spacing:21.248000pt;}
.ls4c{letter-spacing:21.888000pt;}
.ls4a{letter-spacing:22.528000pt;}
.ls49{letter-spacing:23.168000pt;}
.ls48{letter-spacing:25.088000pt;}
.ls59{letter-spacing:26.368000pt;}
.ls69{letter-spacing:30.208000pt;}
.ls85{letter-spacing:32.128000pt;}
.ls42{letter-spacing:39.808000pt;}
.ls45{letter-spacing:41.088000pt;}
.ls1b{letter-spacing:43.013120pt;}
.ls1c{letter-spacing:44.933120pt;}
.ls33{letter-spacing:48.768000pt;}
.ls84{letter-spacing:64.128000pt;}
.ls83{letter-spacing:67.328000pt;}
.ls27{letter-spacing:85.893120pt;}
.ls26{letter-spacing:89.733120pt;}
.ls82{letter-spacing:99.968000pt;}
.ls81{letter-spacing:103.168000pt;}
.ls74{letter-spacing:156.916480pt;}
.ls65{letter-spacing:156.928000pt;}
.ls28{letter-spacing:171.008000pt;}
.ls4{letter-spacing:171.520000pt;}
.ls44{letter-spacing:199.808000pt;}
.ls43{letter-spacing:221.568000pt;}
.ls3e{letter-spacing:462.208000pt;}
.ls37{letter-spacing:600.448000pt;}
.ls15{letter-spacing:621.568000pt;}
.ls1{letter-spacing:873.120000pt;}
.ws30{word-spacing:-41.306240pt;}
.wsc7{word-spacing:-39.776000pt;}
.wsc8{word-spacing:-39.703680pt;}
.ws99{word-spacing:-31.978240pt;}
.ws79{word-spacing:-29.819520pt;}
.ws2{word-spacing:-26.496000pt;}
.ws8b{word-spacing:-24.174080pt;}
.ws42{word-spacing:-23.493120pt;}
.ws4{word-spacing:-22.560000pt;}
.wsc5{word-spacing:-22.386560pt;}
.wsb2{word-spacing:-21.116160pt;}
.ws52{word-spacing:-20.741760pt;}
.ws89{word-spacing:-20.517120pt;}
.ws3{word-spacing:-19.520000pt;}
.wsd2{word-spacing:-18.560000pt;}
.ws36{word-spacing:-18.304000pt;}
.wsc6{word-spacing:-18.240000pt;}
.wsc{word-spacing:-18.048000pt;}
.ws40{word-spacing:-17.984000pt;}
.wse{word-spacing:-17.920000pt;}
.wsb4{word-spacing:-17.856000pt;}
.ws10{word-spacing:-17.792000pt;}
.ws12{word-spacing:-17.728000pt;}
.wsf{word-spacing:-17.664000pt;}
.ws5c{word-spacing:-17.600000pt;}
.ws64{word-spacing:-17.408000pt;}
.ws90{word-spacing:-17.344000pt;}
.ws11{word-spacing:-17.280000pt;}
.ws43{word-spacing:-17.152000pt;}
.ws44{word-spacing:-17.088000pt;}
.wsd{word-spacing:-17.024000pt;}
.wsb9{word-spacing:-16.960000pt;}
.ws8f{word-spacing:-16.768000pt;}
.ws34{word-spacing:-15.744000pt;}
.wsb5{word-spacing:-14.820480pt;}
.wsb6{word-spacing:-14.767360pt;}
.ws72{word-spacing:-14.661120pt;}
.ws32{word-spacing:-14.257920pt;}
.ws41{word-spacing:-14.106240pt;}
.ws33{word-spacing:-14.005120pt;}
.ws35{word-spacing:-13.904000pt;}
.ws31{word-spacing:-13.752320pt;}
.wsac{word-spacing:-5.248000pt;}
.ws24{word-spacing:-4.608000pt;}
.wsa6{word-spacing:-4.352000pt;}
.ws25{word-spacing:-4.224000pt;}
.ws46{word-spacing:-3.968000pt;}
.ws47{word-spacing:-3.584000pt;}
.ws57{word-spacing:-3.328000pt;}
.ws91{word-spacing:-3.264000pt;}
.wsbe{word-spacing:-3.072000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws9a{word-spacing:-2.304000pt;}
.wscf{word-spacing:-2.240000pt;}
.ws2c{word-spacing:-2.048000pt;}
.wsbc{word-spacing:-1.920000pt;}
.wsd9{word-spacing:-1.466240pt;}
.ws16{word-spacing:-1.408000pt;}
.ws86{word-spacing:-1.344000pt;}
.wsc2{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-1.213440pt;}
.wsc1{word-spacing:-1.088000pt;}
.wsd6{word-spacing:-0.808960pt;}
.ws6{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.768000pt;}
.wsca{word-spacing:-0.650880pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.595840pt;}
.ws9f{word-spacing:-0.584320pt;}
.wsb0{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.425600pt;}
.ws55{word-spacing:-0.384000pt;}
.ws6b{word-spacing:-0.320640pt;}
.ws7{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.256000pt;}
.ws70{word-spacing:-0.224640pt;}
.ws8c{word-spacing:-0.213760pt;}
.wsd4{word-spacing:-0.202240pt;}
.wsb7{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.151680pt;}
.wsd8{word-spacing:-0.149120pt;}
.ws23{word-spacing:-0.128000pt;}
.ws9b{word-spacing:-0.106240pt;}
.ws3b{word-spacing:-0.064000pt;}
.wsae{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.050560pt;}
.ws71{word-spacing:0.053120pt;}
.ws75{word-spacing:0.064000pt;}
.wsb{word-spacing:0.069120pt;}
.wsc9{word-spacing:0.072320pt;}
.ws38{word-spacing:0.101120pt;}
.ws5e{word-spacing:0.106240pt;}
.wsaf{word-spacing:0.117760pt;}
.ws1{word-spacing:0.128000pt;}
.ws54{word-spacing:0.170240pt;}
.ws51{word-spacing:0.192000pt;}
.ws9c{word-spacing:0.212480pt;}
.ws37{word-spacing:0.256000pt;}
.wsd3{word-spacing:0.298240pt;}
.ws65{word-spacing:0.299520pt;}
.ws3f{word-spacing:0.303360pt;}
.wsa{word-spacing:0.320000pt;}
.ws39{word-spacing:0.353920pt;}
.ws5b{word-spacing:0.374400pt;}
.ws2d{word-spacing:0.384000pt;}
.ws5{word-spacing:0.400000pt;}
.wsbb{word-spacing:0.427520pt;}
.wsd7{word-spacing:0.455040pt;}
.ws13{word-spacing:0.512000pt;}
.ws3c{word-spacing:0.640000pt;}
.ws56{word-spacing:0.680960pt;}
.ws5f{word-spacing:0.690560pt;}
.ws95{word-spacing:0.704000pt;}
.wsd5{word-spacing:0.707840pt;}
.ws63{word-spacing:0.768000pt;}
.ws5d{word-spacing:0.832000pt;}
.wsc0{word-spacing:0.851200pt;}
.wsba{word-spacing:0.896000pt;}
.ws59{word-spacing:0.973440pt;}
.wsb3{word-spacing:1.024000pt;}
.ws14{word-spacing:1.152000pt;}
.ws88{word-spacing:1.280000pt;}
.wsd1{word-spacing:1.408000pt;}
.ws9{word-spacing:1.600000pt;}
.ws28{word-spacing:1.792000pt;}
.ws7b{word-spacing:1.920000pt;}
.ws6e{word-spacing:1.957760pt;}
.ws17{word-spacing:2.432000pt;}
.wsaa{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.688000pt;}
.ws76{word-spacing:2.816000pt;}
.ws18{word-spacing:3.072000pt;}
.ws98{word-spacing:3.328000pt;}
.wsa7{word-spacing:3.456000pt;}
.ws69{word-spacing:3.712000pt;}
.ws66{word-spacing:4.352000pt;}
.wsc3{word-spacing:4.672000pt;}
.ws2e{word-spacing:4.992000pt;}
.ws26{word-spacing:5.632000pt;}
.ws7d{word-spacing:5.952000pt;}
.ws27{word-spacing:6.272000pt;}
.wsce{word-spacing:6.656000pt;}
.ws2b{word-spacing:6.912000pt;}
.wsa2{word-spacing:7.296000pt;}
.ws45{word-spacing:7.552000pt;}
.ws87{word-spacing:7.872000pt;}
.wsa5{word-spacing:8.000000pt;}
.ws21{word-spacing:8.192000pt;}
.ws1f{word-spacing:8.832000pt;}
.ws20{word-spacing:9.472000pt;}
.ws4d{word-spacing:9.856000pt;}
.ws4e{word-spacing:10.112000pt;}
.ws7e{word-spacing:10.432000pt;}
.ws6a{word-spacing:10.752000pt;}
.ws7c{word-spacing:11.072000pt;}
.ws68{word-spacing:11.392000pt;}
.ws96{word-spacing:11.776000pt;}
.ws1a{word-spacing:12.032000pt;}
.wsa4{word-spacing:12.096000pt;}
.wscd{word-spacing:12.149760pt;}
.ws19{word-spacing:12.416000pt;}
.ws62{word-spacing:12.672000pt;}
.ws53{word-spacing:13.312000pt;}
.ws5a{word-spacing:13.696000pt;}
.ws4c{word-spacing:13.952000pt;}
.wsa9{word-spacing:14.592000pt;}
.wsa8{word-spacing:14.848000pt;}
.wsb1{word-spacing:14.912000pt;}
.ws83{word-spacing:15.232000pt;}
.ws84{word-spacing:15.616000pt;}
.ws92{word-spacing:15.872000pt;}
.ws9e{word-spacing:16.256000pt;}
.ws81{word-spacing:16.512000pt;}
.ws6f{word-spacing:17.152000pt;}
.ws1e{word-spacing:17.792000pt;}
.ws8d{word-spacing:18.432000pt;}
.ws7a{word-spacing:19.072000pt;}
.ws97{word-spacing:19.712000pt;}
.wsb8{word-spacing:19.968000pt;}
.wsc4{word-spacing:20.032000pt;}
.ws4f{word-spacing:20.352000pt;}
.ws4a{word-spacing:20.992000pt;}
.ws58{word-spacing:21.632000pt;}
.wscb{word-spacing:21.888000pt;}
.ws22{word-spacing:22.272000pt;}
.ws7f{word-spacing:22.592000pt;}
.ws80{word-spacing:22.720000pt;}
.ws1c{word-spacing:22.912000pt;}
.ws48{word-spacing:23.552000pt;}
.ws49{word-spacing:24.192000pt;}
.wsbd{word-spacing:24.576000pt;}
.ws4b{word-spacing:24.832000pt;}
.ws93{word-spacing:25.472000pt;}
.ws78{word-spacing:26.112000pt;}
.ws94{word-spacing:26.432000pt;}
.ws77{word-spacing:26.752000pt;}
.ws8e{word-spacing:27.392000pt;}
.ws9d{word-spacing:28.032000pt;}
.ws74{word-spacing:28.672000pt;}
.ws85{word-spacing:29.056000pt;}
.wsa1{word-spacing:29.312000pt;}
.wsad{word-spacing:29.952000pt;}
.ws6c{word-spacing:31.232000pt;}
.ws6d{word-spacing:31.872000pt;}
.ws1b{word-spacing:33.152000pt;}
.wscc{word-spacing:33.792000pt;}
.ws82{word-spacing:35.072000pt;}
.wsd0{word-spacing:35.712000pt;}
.ws1d{word-spacing:36.992000pt;}
.ws50{word-spacing:38.912000pt;}
.wsbf{word-spacing:40.832000pt;}
.wsa3{word-spacing:47.872000pt;}
.wsa0{word-spacing:51.712000pt;}
.ws8a{word-spacing:57.472000pt;}
.ws73{word-spacing:66.432000pt;}
.wsab{word-spacing:95.232000pt;}
._29{margin-left:-155.936000pt;}
._12{margin-left:-55.942400pt;}
._25{margin-left:-29.241600pt;}
._14{margin-left:-18.869760pt;}
._d{margin-left:-16.999040pt;}
._10{margin-left:-15.897600pt;}
._c{margin-left:-14.327680pt;}
._f{margin-left:-12.697600pt;}
._b{margin-left:-11.088000pt;}
._2e{margin-left:-10.170240pt;}
._e{margin-left:-9.049600pt;}
._11{margin-left:-7.622400pt;}
._2c{margin-left:-6.639360pt;}
._7{margin-left:-5.164800pt;}
._2d{margin-left:-4.229760pt;}
._3{margin-left:-3.280000pt;}
._2{margin-left:-1.619200pt;}
._1{width:1.360000pt;}
._5{width:2.800000pt;}
._4{width:4.320000pt;}
._1a{width:5.273600pt;}
._9{width:6.400000pt;}
._8{width:7.379200pt;}
._20{width:8.294400pt;}
._16{width:9.875200pt;}
._1e{width:11.065600pt;}
._21{width:12.070400pt;}
._23{width:13.056000pt;}
._15{width:14.707200pt;}
._1f{width:19.091200pt;}
._27{width:21.248000pt;}
._18{width:23.187200pt;}
._22{width:24.448000pt;}
._1d{width:26.352000pt;}
._24{width:28.416000pt;}
._2a{width:35.648000pt;}
._19{width:39.360000pt;}
._2b{width:40.960000pt;}
._13{width:59.264000pt;}
._28{width:98.944000pt;}
._1b{width:115.065600pt;}
._26{width:156.916480pt;}
._1c{width:171.008000pt;}
._17{width:235.776000pt;}
._0{width:745.760000pt;}
._a{width:750.208000pt;}
._6{width:752.000000pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fsa{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsc{font-size:72.320000pt;}
.fs9{font-size:74.880000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.520000pt;}
.y2ae{bottom:3.680000pt;}
.y36a{bottom:4.000000pt;}
.ydc{bottom:6.240000pt;}
.y18d{bottom:6.400000pt;}
.y2f2{bottom:16.320000pt;}
.y13c{bottom:27.360000pt;}
.y146{bottom:27.520000pt;}
.y2f0{bottom:31.680000pt;}
.y176{bottom:48.480000pt;}
.y1bd{bottom:48.639867pt;}
.y157{bottom:48.640000pt;}
.y4{bottom:51.040000pt;}
.y7f{bottom:69.440000pt;}
.yce{bottom:69.760000pt;}
.y123{bottom:90.880000pt;}
.y15e{bottom:91.040000pt;}
.y20b{bottom:99.520000pt;}
.y487{bottom:100.960000pt;}
.y6e{bottom:103.520000pt;}
.y40e{bottom:105.280000pt;}
.y490{bottom:105.600000pt;}
.y244{bottom:109.920000pt;}
.y253{bottom:110.400000pt;}
.ya0{bottom:110.560000pt;}
.y1ec{bottom:111.520000pt;}
.yd7{bottom:112.000000pt;}
.y115{bottom:112.160000pt;}
.y4b5{bottom:112.320000pt;}
.y1d0{bottom:112.967840pt;}
.y27d{bottom:115.360000pt;}
.y305{bottom:116.000000pt;}
.y2ef{bottom:116.160000pt;}
.y299{bottom:117.440000pt;}
.y3de{bottom:117.920000pt;}
.y2bd{bottom:119.840000pt;}
.y377{bottom:123.520000pt;}
.y3af{bottom:124.640000pt;}
.y6d{bottom:124.800000pt;}
.y40d{bottom:126.400000pt;}
.y1ab{bottom:126.880000pt;}
.y385{bottom:130.240000pt;}
.y498{bottom:130.880000pt;}
.y252{bottom:131.520000pt;}
.y469{bottom:131.840000pt;}
.y470{bottom:132.000000pt;}
.y2f3{bottom:132.480000pt;}
.yde{bottom:133.120000pt;}
.y27c{bottom:136.640000pt;}
.y3d7{bottom:137.920000pt;}
.y298{bottom:138.560000pt;}
.y20a{bottom:138.880000pt;}
.y2a5{bottom:140.000000pt;}
.y2e2{bottom:140.320000pt;}
.y275{bottom:140.640000pt;}
.y243{bottom:140.960000pt;}
.y2bc{bottom:141.120000pt;}
.y376{bottom:144.640000pt;}
.y6c{bottom:145.920000pt;}
.y352{bottom:146.080000pt;}
.y17c{bottom:146.400000pt;}
.y40c{bottom:147.520000pt;}
.y2f1{bottom:147.840000pt;}
.y1aa{bottom:148.000000pt;}
.y3a3{bottom:148.640000pt;}
.y2ee{bottom:152.160000pt;}
.y43a{bottom:152.640000pt;}
.y251{bottom:152.800000pt;}
.y497{bottom:153.440000pt;}
.y34b{bottom:154.080000pt;}
.y192{bottom:154.399867pt;}
.y1b1{bottom:154.400000pt;}
.yf1{bottom:154.560000pt;}
.y2bf{bottom:155.040000pt;}
.y9f{bottom:155.680000pt;}
.y1eb{bottom:156.640000pt;}
.y205{bottom:157.120000pt;}
.y4b4{bottom:157.440000pt;}
.y27b{bottom:157.760000pt;}
.y3d6{bottom:159.200000pt;}
.y297{bottom:159.840000pt;}
.y461{bottom:160.480000pt;}
.y304{bottom:161.280000pt;}
.y2e1{bottom:161.440000pt;}
.y2bb{bottom:162.240000pt;}
.y375{bottom:165.920000pt;}
.y6b{bottom:166.880000pt;}
.y351{bottom:167.200000pt;}
.y339{bottom:168.160000pt;}
.y40b{bottom:168.800000pt;}
.y384{bottom:169.600000pt;}
.y1a4{bottom:169.920000pt;}
.y31e{bottom:170.880000pt;}
.y2ed{bottom:173.440000pt;}
.y439{bottom:173.920000pt;}
.y250{bottom:174.080000pt;}
.y34a{bottom:175.200000pt;}
.yf0{bottom:175.680000pt;}
.y1a9{bottom:176.160000pt;}
.y468{bottom:176.960000pt;}
.y184{bottom:177.760000pt;}
.y204{bottom:178.400000pt;}
.y46f{bottom:178.720000pt;}
.y27a{bottom:178.880000pt;}
.y242{bottom:180.160000pt;}
.y3d5{bottom:180.320000pt;}
.y460{bottom:181.600000pt;}
.y296{bottom:181.920000pt;}
.y303{bottom:182.400000pt;}
.y2e0{bottom:182.720000pt;}
.y2ba{bottom:183.520000pt;}
.y3e6{bottom:183.680000pt;}
.y274{bottom:185.760000pt;}
.y374{bottom:187.040000pt;}
.y6a{bottom:188.000000pt;}
.y338{bottom:189.280000pt;}
.y40a{bottom:189.920000pt;}
.y1cf{bottom:190.400000pt;}
.y486{bottom:191.520000pt;}
.y17b{bottom:191.680000pt;}
.y31d{bottom:192.160000pt;}
.y10d{bottom:193.120000pt;}
.y3a2{bottom:193.760000pt;}
.y2ec{bottom:194.560000pt;}
.y47c{bottom:195.213120pt;}
.y349{bottom:196.320000pt;}
.y241{bottom:196.800000pt;}
.yef{bottom:197.120000pt;}
.y1a8{bottom:197.280000pt;}
.y44d{bottom:198.240000pt;}
.y4a6{bottom:198.400000pt;}
.y48f{bottom:198.880000pt;}
.y1ea{bottom:199.040000pt;}
.y203{bottom:199.520000pt;}
.y46e{bottom:200.000000pt;}
.y9e{bottom:200.800000pt;}
.y3d4{bottom:201.440000pt;}
.y4b3{bottom:202.720000pt;}
.y224{bottom:203.040000pt;}
.y295{bottom:203.200000pt;}
.y302{bottom:203.520000pt;}
.y38e{bottom:204.000000pt;}
.y3e5{bottom:204.960000pt;}
.y2b9{bottom:205.600000pt;}
.y273{bottom:207.040000pt;}
.y496{bottom:207.360000pt;}
.y69{bottom:209.280000pt;}
.y337{bottom:210.560000pt;}
.y409{bottom:211.040000pt;}
.y1ce{bottom:211.520000pt;}
.y350{bottom:212.320000pt;}
.y485{bottom:212.480000pt;}
.y31c{bottom:213.280000pt;}
.y10c{bottom:214.080000pt;}
.y4cd{bottom:214.880000pt;}
.y3a1{bottom:215.040000pt;}
.y3ce{bottom:215.200000pt;}
.y348{bottom:217.600000pt;}
.y240{bottom:217.920000pt;}
.yee{bottom:218.080000pt;}
.y1a7{bottom:218.400000pt;}
.y438{bottom:218.880000pt;}
.y1e9{bottom:220.160000pt;}
.y446{bottom:220.320000pt;}
.y202{bottom:220.640000pt;}
.y46d{bottom:221.120000pt;}
.y9d{bottom:222.080000pt;}
.y3d3{bottom:222.560000pt;}
.y183{bottom:222.880000pt;}
.y279{bottom:224.000000pt;}
.y223{bottom:224.160000pt;}
.y294{bottom:224.320000pt;}
.y301{bottom:224.640000pt;}
.y38d{bottom:225.280000pt;}
.y3e4{bottom:226.080000pt;}
.y45f{bottom:226.720000pt;}
.y2b8{bottom:226.880000pt;}
.y2df{bottom:227.840000pt;}
.y272{bottom:228.160000pt;}
.y47b{bottom:231.210400pt;}
.y373{bottom:232.160000pt;}
.y1cc{bottom:233.280000pt;}
.y34f{bottom:233.440000pt;}
.y484{bottom:233.600000pt;}
.y31b{bottom:234.400000pt;}
.y4cc{bottom:236.000000pt;}
.y17a{bottom:236.800000pt;}
.y44c{bottom:237.600000pt;}
.y68{bottom:238.400000pt;}
.y347{bottom:238.720000pt;}
.y23f{bottom:239.040000pt;}
.yb7{bottom:239.360000pt;}
.y1a6{bottom:239.520000pt;}
.y2eb{bottom:239.680000pt;}
.y24f{bottom:241.280000pt;}
.y445{bottom:241.600000pt;}
.y201{bottom:241.760000pt;}
.y416{bottom:242.400000pt;}
.y9c{bottom:243.200000pt;}
.y3ec{bottom:243.360000pt;}
.y3d2{bottom:243.680000pt;}
.y182{bottom:244.000000pt;}
.y278{bottom:245.120000pt;}
.y222{bottom:245.440000pt;}
.y495{bottom:246.560000pt;}
.y3e3{bottom:247.200000pt;}
.y38c{bottom:247.360000pt;}
.y45e{bottom:248.000000pt;}
.y12a{bottom:248.320000pt;}
.y2de{bottom:248.960000pt;}
.y271{bottom:249.280000pt;}
.y46c{bottom:252.160000pt;}
.y47a{bottom:252.327840pt;}
.y372{bottom:253.280000pt;}
.y34e{bottom:254.880000pt;}
.y336{bottom:255.520000pt;}
.y1e8{bottom:256.960000pt;}
.y4cb{bottom:257.280000pt;}
.y3ae{bottom:258.400000pt;}
.y10b{bottom:259.360000pt;}
.y346{bottom:259.840000pt;}
.y23e{bottom:260.160000pt;}
.y3a0{bottom:260.320000pt;}
.y1a5{bottom:260.800000pt;}
.yed{bottom:263.200000pt;}
.y408{bottom:263.360000pt;}
.y415{bottom:263.520000pt;}
.y437{bottom:264.000000pt;}
.y3eb{bottom:264.480000pt;}
.y181{bottom:265.120000pt;}
.y48e{bottom:265.440000pt;}
.y4a5{bottom:266.240000pt;}
.y221{bottom:266.560000pt;}
.y467{bottom:267.360000pt;}
.y67{bottom:267.520000pt;}
.y38b{bottom:268.480000pt;}
.y4b2{bottom:268.960000pt;}
.y45d{bottom:269.120000pt;}
.y127{bottom:269.600000pt;}
.y300{bottom:269.920000pt;}
.y2dd{bottom:270.080000pt;}
.y270{bottom:270.400000pt;}
.y24e{bottom:272.320000pt;}
.y2b7{bottom:272.960000pt;}
.y371{bottom:274.560000pt;}
.y34d{bottom:275.840000pt;}
.y277{bottom:276.320000pt;}
.y335{bottom:276.640000pt;}
.y23{bottom:277.613440pt;}
.y4ca{bottom:278.400000pt;}
.y483{bottom:278.720000pt;}
.y31a{bottom:279.520000pt;}
.y3d1{bottom:280.480000pt;}
.y10a{bottom:281.440000pt;}
.y179{bottom:281.920000pt;}
.y2ea{bottom:282.080000pt;}
.y39f{bottom:282.400000pt;}
.y200{bottom:284.160000pt;}
.yec{bottom:284.320000pt;}
.yb6{bottom:284.480000pt;}
.y414{bottom:284.640000pt;}
.y436{bottom:285.280000pt;}
.y3ea{bottom:285.600000pt;}
.y180{bottom:286.400000pt;}
.y444{bottom:286.720000pt;}
.y4a4{bottom:287.520000pt;}
.y220{bottom:287.680000pt;}
.y293{bottom:287.840000pt;}
.y49a{bottom:288.000000pt;}
.y9b{bottom:288.320000pt;}
.y479{bottom:288.487840pt;}
.y66{bottom:288.800000pt;}
.y38a{bottom:289.760000pt;}
.y45c{bottom:290.240000pt;}
.y2ff{bottom:291.040000pt;}
.y2dc{bottom:291.360000pt;}
.y26f{bottom:291.680000pt;}
.y3e2{bottom:292.320000pt;}
.y2b6{bottom:294.080000pt;}
.y370{bottom:295.680000pt;}
.y129{bottom:296.960000pt;}
.y22{bottom:296.967040pt;}
.y334{bottom:297.920000pt;}
.y24d{bottom:298.240000pt;}
.y4c9{bottom:299.520000pt;}
.y482{bottom:300.000000pt;}
.y319{bottom:300.640000pt;}
.y3ad{bottom:300.800000pt;}
.y276{bottom:302.080000pt;}
.y23d{bottom:302.560000pt;}
.y109{bottom:302.720000pt;}
.y1cd{bottom:303.040000pt;}
.y39e{bottom:303.520000pt;}
.y407{bottom:303.680000pt;}
.y345{bottom:304.960000pt;}
.y48{bottom:305.280000pt;}
.y3cd{bottom:305.440000pt;}
.yeb{bottom:305.600000pt;}
.y413{bottom:305.920000pt;}
.y3b2{bottom:306.080000pt;}
.y1e7{bottom:306.880000pt;}
.y48d{bottom:307.680000pt;}
.y443{bottom:307.840000pt;}
.y21f{bottom:308.800000pt;}
.y292{bottom:309.120000pt;}
.y9a{bottom:309.440000pt;}
.y478{bottom:309.442560pt;}
.y65{bottom:309.920000pt;}
.ycb{bottom:310.240000pt;}
.y2fe{bottom:312.160000pt;}
.y466{bottom:312.480000pt;}
.y26e{bottom:312.800000pt;}
.y3e1{bottom:313.600000pt;}
.y2b5{bottom:315.360000pt;}
.y36f{bottom:316.800000pt;}
.y21{bottom:316.960000pt;}
.y128{bottom:318.080000pt;}
.y1a3{bottom:318.560000pt;}
.y406{bottom:318.720000pt;}
.y333{bottom:319.040000pt;}
.y4c8{bottom:320.640000pt;}
.y481{bottom:321.120000pt;}
.y3ac{bottom:321.920000pt;}
.y23c{bottom:323.840000pt;}
.y39d{bottom:324.640000pt;}
.y344{bottom:326.240000pt;}
.y1ff{bottom:326.400000pt;}
.y2db{bottom:326.880000pt;}
.y178{bottom:327.040000pt;}
.y2e9{bottom:327.360000pt;}
.y1e6{bottom:328.000000pt;}
.y48c{bottom:328.800000pt;}
.y442{bottom:328.960000pt;}
.yb5{bottom:329.600000pt;}
.y353{bottom:329.760000pt;}
.y4a3{bottom:329.920000pt;}
.y21e{bottom:330.080000pt;}
.y3d0{bottom:330.400000pt;}
.y477{bottom:330.560000pt;}
.y99{bottom:330.720000pt;}
.y64{bottom:331.040000pt;}
.yca{bottom:331.360000pt;}
.y17f{bottom:331.520000pt;}
.y2fd{bottom:333.280000pt;}
.y405{bottom:333.760000pt;}
.y26d{bottom:333.920000pt;}
.y45b{bottom:335.360000pt;}
.y389{bottom:335.840000pt;}
.y2b4{bottom:336.480000pt;}
.y20{bottom:336.800000pt;}
.y36e{bottom:337.920000pt;}
.y1cb{bottom:339.840000pt;}
.y332{bottom:340.160000pt;}
.y1a2{bottom:340.480000pt;}
.yea{bottom:341.120000pt;}
.y4c7{bottom:341.760000pt;}
.y47{bottom:342.080000pt;}
.y480{bottom:342.240000pt;}
.y3e0{bottom:344.640000pt;}
.y23b{bottom:345.920000pt;}
.y343{bottom:347.360000pt;}
.y1fe{bottom:347.520000pt;}
.y108{bottom:348.800000pt;}
.y404{bottom:348.960000pt;}
.y1e5{bottom:349.120000pt;}
.y2e8{bottom:349.440000pt;}
.y48b{bottom:349.920000pt;}
.y3cc{bottom:350.560000pt;}
.yb4{bottom:350.720000pt;}
.y4a2{bottom:350.880000pt;}
.y21d{bottom:351.200000pt;}
.y98{bottom:351.840000pt;}
.y3e9{bottom:352.000000pt;}
.y63{bottom:352.160000pt;}
.y2fc{bottom:354.560000pt;}
.y122{bottom:354.880000pt;}
.y26c{bottom:355.040000pt;}
.y1f{bottom:355.200000pt;}
.y4b1{bottom:356.480000pt;}
.y45a{bottom:356.640000pt;}
.y2b3{bottom:357.600000pt;}
.y177{bottom:358.080000pt;}
.y36d{bottom:359.200000pt;}
.y46{bottom:360.480000pt;}
.y1ca{bottom:361.600000pt;}
.y1a1{bottom:362.240000pt;}
.y17e{bottom:362.560000pt;}
.y4c6{bottom:363.040000pt;}
.y403{bottom:364.000000pt;}
.y355{bottom:366.240000pt;}
.yc9{bottom:367.040000pt;}
.y23a{bottom:367.200000pt;}
.y342{bottom:368.480000pt;}
.y1fd{bottom:368.800000pt;}
.y425{bottom:369.120000pt;}
.y1e4{bottom:370.400000pt;}
.y2e7{bottom:370.720000pt;}
.y48a{bottom:371.040000pt;}
.y412{bottom:372.160000pt;}
.y21c{bottom:372.320000pt;}
.y383{bottom:372.800000pt;}
.y97{bottom:372.960000pt;}
.y1e{bottom:373.600000pt;}
.y441{bottom:374.240000pt;}
.y2da{bottom:374.400000pt;}
.y435{bottom:375.520000pt;}
.y26b{bottom:376.320000pt;}
.y476{bottom:377.280000pt;}
.y4b0{bottom:377.600000pt;}
.y459{bottom:377.760000pt;}
.y402{bottom:379.200000pt;}
.y175{bottom:379.360000pt;}
.y36c{bottom:380.320000pt;}
.y388{bottom:380.960000pt;}
.y62{bottom:381.280000pt;}
.y3cb{bottom:381.600000pt;}
.y126{bottom:382.240000pt;}
.y2e3{bottom:382.880000pt;}
.y3e8{bottom:383.040000pt;}
.y3df{bottom:383.840000pt;}
.y1a0{bottom:384.160000pt;}
.y331{bottom:385.440000pt;}
.y107{bottom:385.600000pt;}
.y318{bottom:388.160000pt;}
.ye9{bottom:388.640000pt;}
.y47f{bottom:388.960000pt;}
.y3ab{bottom:389.440000pt;}
.y424{bottom:390.400000pt;}
.y1d{bottom:392.000000pt;}
.y2e6{bottom:392.960000pt;}
.y411{bottom:393.280000pt;}
.y21b{bottom:393.440000pt;}
.y382{bottom:393.920000pt;}
.y96{bottom:394.080000pt;}
.y401{bottom:394.240000pt;}
.y45{bottom:394.880000pt;}
.y440{bottom:395.360000pt;}
.yb3{bottom:395.840000pt;}
.y4a1{bottom:396.160000pt;}
.y26a{bottom:397.440000pt;}
.y475{bottom:398.560000pt;}
.y458{bottom:398.880000pt;}
.y138{bottom:399.040000pt;}
.y2fb{bottom:399.680000pt;}
.y3cf{bottom:400.800000pt;}
.y17d{bottom:401.920000pt;}
.y489{bottom:402.080000pt;}
.y2b2{bottom:402.720000pt;}
.y125{bottom:403.360000pt;}
.y44b{bottom:403.680000pt;}
.y1c9{bottom:404.640000pt;}
.y4c5{bottom:405.280000pt;}
.y330{bottom:406.560000pt;}
.y174{bottom:406.720000pt;}
.y317{bottom:409.280000pt;}
.ye8{bottom:409.920000pt;}
.y1c{bottom:410.398080pt;}
.y61{bottom:410.400000pt;}
.y36b{bottom:411.360000pt;}
.y423{bottom:411.520000pt;}
.y3aa{bottom:411.680000pt;}
.y387{bottom:412.160000pt;}
.y44{bottom:413.280000pt;}
.y341{bottom:413.600000pt;}
.y1fc{bottom:413.920000pt;}
.yc8{bottom:414.560000pt;}
.y21a{bottom:414.720000pt;}
.y381{bottom:415.040000pt;}
.y1e3{bottom:415.520000pt;}
.y3c9{bottom:415.680000pt;}
.y43f{bottom:416.480000pt;}
.y4a0{bottom:417.440000pt;}
.y269{bottom:418.720000pt;}
.y2d9{bottom:419.680000pt;}
.y137{bottom:420.320000pt;}
.y434{bottom:420.640000pt;}
.y2fa{bottom:420.800000pt;}
.y3ca{bottom:420.960000pt;}
.y3e7{bottom:422.240000pt;}
.y2b1{bottom:424.160000pt;}
.y400{bottom:424.480000pt;}
.y124{bottom:424.640000pt;}
.y44a{bottom:424.800000pt;}
.y1c7{bottom:426.400000pt;}
.y19f{bottom:427.040000pt;}
.y32f{bottom:427.840000pt;}
.y316{bottom:430.560000pt;}
.y95{bottom:430.880000pt;}
.y43{bottom:431.680000pt;}
.y60{bottom:431.840000pt;}
.y354{bottom:432.480000pt;}
.y1c8{bottom:432.640000pt;}
.y422{bottom:432.800000pt;}
.y3a9{bottom:433.920000pt;}
.y1b{bottom:434.400000pt;}
.y340{bottom:434.880000pt;}
.y106{bottom:435.520000pt;}
.yc7{bottom:435.680000pt;}
.y219{bottom:435.840000pt;}
.y1e2{bottom:436.640000pt;}
.y3c8{bottom:436.800000pt;}
.y43e{bottom:437.600000pt;}
.y49f{bottom:438.400000pt;}
.y2e5{bottom:439.040000pt;}
.y3ff{bottom:439.520000pt;}
.y268{bottom:439.680000pt;}
.yb2{bottom:441.120000pt;}
.y136{bottom:441.440000pt;}
.y2f9{bottom:441.920000pt;}
.y172{bottom:443.520000pt;}
.y4af{bottom:443.840000pt;}
.y457{bottom:444.000000pt;}
.y1fb{bottom:444.960000pt;}
.y499{bottom:445.920000pt;}
.y449{bottom:446.240000pt;}
.ye7{bottom:446.560000pt;}
.y4c4{bottom:447.680000pt;}
.y465{bottom:448.000000pt;}
.y32e{bottom:448.800000pt;}
.y1bb{bottom:449.440000pt;}
.y173{bottom:449.760000pt;}
.y42{bottom:450.080000pt;}
.y386{bottom:451.360000pt;}
.y369{bottom:451.680000pt;}
.y39c{bottom:452.800000pt;}
.y5f{bottom:452.960000pt;}
.y3fe{bottom:454.720000pt;}
.y421{bottom:454.880000pt;}
.y474{bottom:455.200000pt;}
.y291{bottom:455.360000pt;}
.y1a{bottom:455.373760pt;}
.y33f{bottom:456.160000pt;}
.y105{bottom:456.800000pt;}
.yc6{bottom:456.960000pt;}
.y1e1{bottom:457.760000pt;}
.y3c7{bottom:457.920000pt;}
.y239{bottom:458.560000pt;}
.y43d{bottom:458.880000pt;}
.y49e{bottom:459.520000pt;}
.y2e4{bottom:460.160000pt;}
.y171{bottom:460.320000pt;}
.y267{bottom:460.800000pt;}
.y11e{bottom:461.280000pt;}
.yb1{bottom:462.240000pt;}
.y2f8{bottom:463.040000pt;}
.y433{bottom:463.200000pt;}
.y2b0{bottom:463.680000pt;}
.y2d8{bottom:464.800000pt;}
.y456{bottom:465.280000pt;}
.y368{bottom:466.720000pt;}
.y121{bottom:467.520000pt;}
.y41{bottom:468.480000pt;}
.y4c3{bottom:468.800000pt;}
.y3fd{bottom:469.760000pt;}
.y32d{bottom:469.920000pt;}
.y19e{bottom:470.080000pt;}
.y1b3{bottom:470.560000pt;}
.y3ed{bottom:472.320000pt;}
.y5e{bottom:473.920000pt;}
.y315{bottom:475.680000pt;}
.y420{bottom:476.000000pt;}
.y1ba{bottom:476.800000pt;}
.y135{bottom:476.960000pt;}
.y33e{bottom:477.120000pt;}
.y218{bottom:478.080000pt;}
.y1e0{bottom:478.880000pt;}
.y3c6{bottom:479.040000pt;}
.y238{bottom:479.680000pt;}
.y19{bottom:480.016000pt;}
.y94{bottom:480.800000pt;}
.y380{bottom:481.440000pt;}
.y367{bottom:481.920000pt;}
.y266{bottom:482.080000pt;}
.yb0{bottom:483.360000pt;}
.y1fa{bottom:484.320000pt;}
.y3fc{bottom:484.800000pt;}
.y2d7{bottom:485.920000pt;}
.y16f{bottom:486.400000pt;}
.y40{bottom:486.880000pt;}
.y120{bottom:488.800000pt;}
.y43c{bottom:489.920000pt;}
.y1c5{bottom:490.560000pt;}
.y494{bottom:490.880000pt;}
.y448{bottom:491.200000pt;}
.y2af{bottom:491.360000pt;}
.yc5{bottom:492.480000pt;}
.y170{bottom:492.640000pt;}
.y464{bottom:493.120000pt;}
.y19d{bottom:493.280000pt;}
.y104{bottom:493.440000pt;}
.y5d{bottom:495.040000pt;}
.ye6{bottom:496.480000pt;}
.y1c6{bottom:496.800000pt;}
.y366{bottom:496.960000pt;}
.y41f{bottom:497.280000pt;}
.y1b9{bottom:498.080000pt;}
.y33d{bottom:498.240000pt;}
.y155{bottom:499.200000pt;}
.y3fb{bottom:499.680000pt;}
.y237{bottom:500.800000pt;}
.y93{bottom:501.920000pt;}
.y410{bottom:502.080000pt;}
.y3a8{bottom:502.240000pt;}
.y37f{bottom:502.560000pt;}
.y473{bottom:502.880000pt;}
.y265{bottom:503.200000pt;}
.y16e{bottom:503.360000pt;}
.y18{bottom:504.488000pt;}
.y49d{bottom:504.640000pt;}
.y3f{bottom:505.280000pt;}
.y2f7{bottom:505.440000pt;}
.y2d6{bottom:507.040000pt;}
.y432{bottom:508.160000pt;}
.y46b{bottom:508.480000pt;}
.y11f{bottom:509.920000pt;}
.y4ae{bottom:510.240000pt;}
.y4c2{bottom:511.040000pt;}
.y365{bottom:511.680000pt;}
.y493{bottom:512.160000pt;}
.y2a4{bottom:512.480000pt;}
.y1df{bottom:514.560000pt;}
.y3fa{bottom:515.040000pt;}
.y32c{bottom:515.360000pt;}
.y39b{bottom:516.160000pt;}
.y5c{bottom:516.480000pt;}
.y314{bottom:517.920000pt;}
.y41e{bottom:518.560000pt;}
.y1b8{bottom:519.200000pt;}
.y154{bottom:520.320000pt;}
.y217{bottom:520.480000pt;}
.y447{bottom:522.240000pt;}
.y92{bottom:523.200000pt;}
.y3a7{bottom:523.360000pt;}
.y3e{bottom:523.680000pt;}
.y463{bottom:524.160000pt;}
.y264{bottom:524.320000pt;}
.y134{bottom:524.640000pt;}
.y46a{bottom:524.800000pt;}
.y290{bottom:526.560000pt;}
.y364{bottom:527.200000pt;}
.ye5{bottom:527.680000pt;}
.y2d5{bottom:528.320000pt;}
.yaf{bottom:528.480000pt;}
.y17{bottom:528.960000pt;}
.y43b{bottom:529.120000pt;}
.y16d{bottom:529.440000pt;}
.y3f9{bottom:530.240000pt;}
.y2ad{bottom:531.520000pt;}
.y4c1{bottom:532.320000pt;}
.y47e{bottom:532.960000pt;}
.y492{bottom:533.120000pt;}
.y1c4{bottom:533.600000pt;}
.y472{bottom:533.920000pt;}
.y49c{bottom:535.840000pt;}
.y32b{bottom:536.320000pt;}
.y39a{bottom:537.440000pt;}
.y5b{bottom:537.600000pt;}
.y313{bottom:539.200000pt;}
.yc4{bottom:540.000000pt;}
.y1b7{bottom:540.320000pt;}
.y41d{bottom:540.640000pt;}
.y153{bottom:541.440000pt;}
.y216{bottom:541.600000pt;}
.y3d{bottom:542.080000pt;}
.y363{bottom:542.240000pt;}
.y103{bottom:543.360000pt;}
.y91{bottom:544.320000pt;}
.y19c{bottom:545.280000pt;}
.y263{bottom:545.440000pt;}
.y133{bottom:545.760000pt;}
.y2ac{bottom:546.400000pt;}
.y11a{bottom:546.560000pt;}
.y28f{bottom:547.680000pt;}
.ydd{bottom:548.800000pt;}
.y455{bottom:552.640000pt;}
.y11d{bottom:552.800000pt;}
.y431{bottom:553.280000pt;}
.y4c0{bottom:553.440000pt;}
.ye4{bottom:555.040000pt;}
.y3c5{bottom:555.360000pt;}
.y1c3{bottom:556.640000pt;}
.y16c{bottom:556.800000pt;}
.y32a{bottom:557.440000pt;}
.y5a{bottom:558.720000pt;}
.y3a6{bottom:559.040000pt;}
.y37e{bottom:559.360000pt;}
.y312{bottom:560.320000pt;}
.y3c{bottom:560.480000pt;}
.y16{bottom:561.280000pt;}
.y1b6{bottom:561.440000pt;}
.y2ab{bottom:561.760000pt;}
.y1de{bottom:562.080000pt;}
.y215{bottom:562.720000pt;}
.y462{bottom:563.360000pt;}
.y491{bottom:564.160000pt;}
.y33c{bottom:564.640000pt;}
.y102{bottom:564.800000pt;}
.y90{bottom:565.440000pt;}
.y262{bottom:566.720000pt;}
.y132{bottom:566.880000pt;}
.y28e{bottom:568.800000pt;}
.y362{bottom:572.160000pt;}
.y47d{bottom:572.320000pt;}
.y471{bottom:573.120000pt;}
.y2d4{bottom:573.440000pt;}
.yae{bottom:573.760000pt;}
.y454{bottom:573.920000pt;}
.y11c{bottom:574.080000pt;}
.y430{bottom:574.400000pt;}
.y4bf{bottom:574.560000pt;}
.y49b{bottom:575.040000pt;}
.y3f8{bottom:575.520000pt;}
.ye3{bottom:576.160000pt;}
.y19b{bottom:576.320000pt;}
.y3b1{bottom:576.480000pt;}
.y2aa{bottom:576.960000pt;}
.y152{bottom:577.120000pt;}
.y329{bottom:578.560000pt;}
.y3b{bottom:578.880000pt;}
.y59{bottom:579.680000pt;}
.y311{bottom:581.440000pt;}
.yc3{bottom:582.400000pt;}
.y1b5{bottom:582.720000pt;}
.y41c{bottom:582.880000pt;}
.y1dd{bottom:583.360000pt;}
.y399{bottom:583.520000pt;}
.y214{bottom:583.840000pt;}
.y15{bottom:584.160000pt;}
.y101{bottom:585.760000pt;}
.y8f{bottom:586.560000pt;}
.y236{bottom:587.520000pt;}
.y261{bottom:587.840000pt;}
.y131{bottom:588.000000pt;}
.y28d{bottom:589.920000pt;}
.y3f7{bottom:590.560000pt;}
.y2a9{bottom:591.680000pt;}
.y2f6{bottom:592.960000pt;}
.y16b{bottom:593.600000pt;}
.y2d3{bottom:594.560000pt;}
.yad{bottom:594.880000pt;}
.y11b{bottom:595.200000pt;}
.y3c4{bottom:595.680000pt;}
.y3a{bottom:597.280000pt;}
.ye2{bottom:597.440000pt;}
.y19a{bottom:597.600000pt;}
.y4ad{bottom:597.920000pt;}
.y328{bottom:599.840000pt;}
.y310{bottom:602.560000pt;}
.y361{bottom:602.720000pt;}
.yc2{bottom:603.520000pt;}
.y1b4{bottom:603.840000pt;}
.y41b{bottom:604.160000pt;}
.y1dc{bottom:604.480000pt;}
.y398{bottom:604.800000pt;}
.y213{bottom:605.120000pt;}
.y3f6{bottom:605.760000pt;}
.y3a5{bottom:606.560000pt;}
.y100{bottom:606.880000pt;}
.y2a8{bottom:607.040000pt;}
.y14{bottom:607.200000pt;}
.y8e{bottom:607.840000pt;}
.y235{bottom:608.640000pt;}
.y1c2{bottom:608.800000pt;}
.y58{bottom:608.960000pt;}
.y260{bottom:609.120000pt;}
.y16a{bottom:610.400000pt;}
.y3c3{bottom:610.720000pt;}
.y28c{bottom:611.200000pt;}
.y2d2{bottom:615.680000pt;}
.y3b0{bottom:616.320000pt;}
.y4be{bottom:616.960000pt;}
.y360{bottom:617.760000pt;}
.ye1{bottom:618.560000pt;}
.y453{bottom:619.040000pt;}
.y191{bottom:619.360000pt;}
.y42f{bottom:619.680000pt;}
.y3f5{bottom:620.480000pt;}
.y7e{bottom:621.920000pt;}
.y2a7{bottom:622.240000pt;}
.y30f{bottom:623.840000pt;}
.y2f5{bottom:624.160000pt;}
.y151{bottom:624.640000pt;}
.y199{bottom:625.600000pt;}
.y3c2{bottom:625.760000pt;}
.y212{bottom:626.240000pt;}
.yff{bottom:628.000000pt;}
.y40f{bottom:628.960000pt;}
.y234{bottom:629.760000pt;}
.y13{bottom:630.240000pt;}
.y25f{bottom:631.200000pt;}
.y39{bottom:631.680000pt;}
.y114{bottom:631.840000pt;}
.y28b{bottom:632.320000pt;}
.y35f{bottom:632.960000pt;}
.y130{bottom:633.280000pt;}
.y3f4{bottom:635.840000pt;}
.y168{bottom:636.480000pt;}
.y2d1{bottom:636.960000pt;}
.y2a6{bottom:637.280000pt;}
.y57{bottom:638.080000pt;}
.y119{bottom:638.240000pt;}
.ye0{bottom:639.680000pt;}
.y1c1{bottom:639.840000pt;}
.yac{bottom:640.000000pt;}
.y452{bottom:640.160000pt;}
.yc1{bottom:640.320000pt;}
.y1b0{bottom:640.480000pt;}
.y42e{bottom:640.800000pt;}
.y3c1{bottom:640.960000pt;}
.y169{bottom:642.880000pt;}
.y327{bottom:644.960000pt;}
.y198{bottom:646.720000pt;}
.y211{bottom:647.520000pt;}
.y35e{bottom:648.000000pt;}
.y3a4{bottom:648.160000pt;}
.y37d{bottom:649.280000pt;}
.y1db{bottom:649.600000pt;}
.y2f4{bottom:649.760000pt;}
.y397{bottom:649.920000pt;}
.y3f3{bottom:651.040000pt;}
.y25e{bottom:652.320000pt;}
.y8d{bottom:652.960000pt;}
.y12{bottom:653.120000pt;}
.y28a{bottom:653.440000pt;}
.y12f{bottom:654.400000pt;}
.y150{bottom:655.680000pt;}
.y2d0{bottom:658.080000pt;}
.y56{bottom:659.200000pt;}
.y118{bottom:659.360000pt;}
.ydf{bottom:660.800000pt;}
.y1be{bottom:660.960000pt;}
.y451{bottom:661.280000pt;}
.y35d{bottom:663.040000pt;}
.y167{bottom:664.000000pt;}
.y38{bottom:666.080000pt;}
.y1c0{bottom:667.360000pt;}
.y197{bottom:668.000000pt;}
.y210{bottom:668.640000pt;}
.y30e{bottom:668.960000pt;}
.y37c{bottom:670.400000pt;}
.y1da{bottom:670.720000pt;}
.y396{bottom:671.040000pt;}
.y3c0{bottom:671.200000pt;}
.yfe{bottom:673.280000pt;}
.y25d{bottom:673.600000pt;}
.y8c{bottom:674.080000pt;}
.y289{bottom:674.560000pt;}
.y233{bottom:675.040000pt;}
.y12e{bottom:675.520000pt;}
.y11{bottom:676.320000pt;}
.y14e{bottom:676.800000pt;}
.y7d{bottom:676.960000pt;}
.y35c{bottom:677.920000pt;}
.y4bd{bottom:680.320000pt;}
.y55{bottom:680.480000pt;}
.y3f2{bottom:681.280000pt;}
.y450{bottom:682.560000pt;}
.y14f{bottom:683.200000pt;}
.y37{bottom:684.480000pt;}
.yab{bottom:685.120000pt;}
.y4ac{bottom:685.280000pt;}
.y42d{bottom:685.920000pt;}
.y3bf{bottom:686.240000pt;}
.y1f8{bottom:687.040000pt;}
.y326{bottom:687.200000pt;}
.y1bf{bottom:688.480000pt;}
.y196{bottom:689.120000pt;}
.y20f{bottom:689.760000pt;}
.y30d{bottom:690.080000pt;}
.yc0{bottom:690.400000pt;}
.y37b{bottom:691.520000pt;}
.y1d9{bottom:692.000000pt;}
.y395{bottom:692.160000pt;}
.y35b{bottom:692.960000pt;}
.y14d{bottom:693.759867pt;}
.yfd{bottom:694.400000pt;}
.y25c{bottom:694.720000pt;}
.y8b{bottom:695.200000pt;}
.y288{bottom:695.840000pt;}
.y232{bottom:696.160000pt;}
.y3f1{bottom:696.320000pt;}
.y12d{bottom:696.640000pt;}
.yd6{bottom:697.600000pt;}
.y7c{bottom:698.080000pt;}
.y10{bottom:699.040000pt;}
.y190{bottom:699.680000pt;}
.y163{bottom:700.640000pt;}
.y3be{bottom:701.280000pt;}
.y117{bottom:701.600000pt;}
.y54{bottom:701.759867pt;}
.y2cf{bottom:703.200000pt;}
.yaa{bottom:706.400000pt;}
.y166{bottom:706.880000pt;}
.y42c{bottom:707.040000pt;}
.y325{bottom:708.480000pt;}
.y195{bottom:710.240000pt;}
.y20e{bottom:710.880000pt;}
.y30c{bottom:711.200000pt;}
.y3f0{bottom:711.360000pt;}
.ybf{bottom:712.640000pt;}
.y394{bottom:713.440000pt;}
.y44f{bottom:713.600000pt;}
.y1d8{bottom:714.240000pt;}
.yfc{bottom:715.520000pt;}
.y25b{bottom:715.840000pt;}
.y3bd{bottom:716.160000pt;}
.y209{bottom:716.320000pt;}
.y8a{bottom:716.480000pt;}
.y287{bottom:716.960000pt;}
.y231{bottom:717.280000pt;}
.y12c{bottom:717.920000pt;}
.y36{bottom:718.880000pt;}
.y7b{bottom:719.200000pt;}
.y14b{bottom:719.840000pt;}
.y3dd{bottom:721.440000pt;}
.y53{bottom:722.720000pt;}
.y116{bottom:722.880000pt;}
.yf{bottom:723.040000pt;}
.y35a{bottom:723.520000pt;}
.y2ce{bottom:724.320000pt;}
.ydb{bottom:724.960000pt;}
.y1bc{bottom:725.120000pt;}
.y14c{bottom:726.080000pt;}
.y3ef{bottom:726.240000pt;}
.ya9{bottom:727.520000pt;}
.y165{bottom:728.160000pt;}
.y42b{bottom:728.320000pt;}
.y324{bottom:729.600000pt;}
.y33b{bottom:730.080000pt;}
.y4ab{bottom:730.400000pt;}
.y194{bottom:731.360000pt;}
.y3bc{bottom:731.520000pt;}
.y1f7{bottom:732.000000pt;}
.y41a{bottom:732.160000pt;}
.y30b{bottom:732.480000pt;}
.y393{bottom:734.560000pt;}
.y1d7{bottom:735.360000pt;}
.y14a{bottom:736.640000pt;}
.yfb{bottom:736.800000pt;}
.y25a{bottom:736.960000pt;}
.y35{bottom:737.280000pt;}
.y208{bottom:737.440000pt;}
.y1f9{bottom:737.600000pt;}
.y89{bottom:737.760000pt;}
.y286{bottom:738.080000pt;}
.y230{bottom:738.400000pt;}
.y359{bottom:738.560000pt;}
.y162{bottom:738.720000pt;}
.y7a{bottom:740.480000pt;}
.y3ee{bottom:741.600000pt;}
.y3dc{bottom:742.560000pt;}
.y4bc{bottom:743.840000pt;}
.y52{bottom:744.000000pt;}
.y2cd{bottom:745.600000pt;}
.yda{bottom:746.080000pt;}
.y3bb{bottom:746.720000pt;}
.y164{bottom:749.280000pt;}
.ye{bottom:750.568000pt;}
.y4aa{bottom:751.520000pt;}
.y193{bottom:752.640000pt;}
.y44e{bottom:752.800000pt;}
.y1f6{bottom:753.120000pt;}
.y12b{bottom:753.440000pt;}
.y30a{bottom:753.600000pt;}
.y358{bottom:753.759867pt;}
.y34{bottom:755.680000pt;}
.y392{bottom:755.840000pt;}
.y1d6{bottom:756.640000pt;}
.y37a{bottom:757.920000pt;}
.yfa{bottom:758.080000pt;}
.y259{bottom:758.240000pt;}
.y88{bottom:758.720000pt;}
.y285{bottom:759.200000pt;}
.y10f{bottom:759.520000pt;}
.y22f{bottom:759.680000pt;}
.y2a3{bottom:760.640000pt;}
.y3ba{bottom:761.759867pt;}
.y149{bottom:762.880000pt;}
.y3db{bottom:764.480000pt;}
.y4bb{bottom:764.960000pt;}
.y51{bottom:765.120000pt;}
.y113{bottom:765.759867pt;}
.y2cc{bottom:766.720000pt;}
.yd9{bottom:767.360000pt;}
.y357{bottom:768.480000pt;}
.y79{bottom:769.600000pt;}
.ya8{bottom:772.640000pt;}
.y42a{bottom:773.440000pt;}
.y1b2{bottom:773.759867pt;}
.y33{bottom:774.080000pt;}
.y1f5{bottom:774.400000pt;}
.y24c{bottom:774.560000pt;}
.y309{bottom:774.720000pt;}
.y3b9{bottom:776.960000pt;}
.y33a{bottom:777.600000pt;}
.y391{bottom:778.080000pt;}
.yd{bottom:778.240000pt;}
.y1d5{bottom:778.720000pt;}
.y379{bottom:779.040000pt;}
.yf9{bottom:779.200000pt;}
.y258{bottom:779.360000pt;}
.y148{bottom:779.680000pt;}
.ybe{bottom:779.840000pt;}
.y284{bottom:780.480000pt;}
.y22e{bottom:780.800000pt;}
.y2a2{bottom:782.080000pt;}
.y207{bottom:782.560000pt;}
.y356{bottom:784.000000pt;}
.y15d{bottom:785.920000pt;}
.y50{bottom:786.240000pt;}
.y112{bottom:786.880000pt;}
.y2cb{bottom:787.840000pt;}
.yd8{bottom:788.480000pt;}
.y18f{bottom:789.280000pt;}
.y3b8{bottom:792.000000pt;}
.y161{bottom:792.320000pt;}
.y32{bottom:792.480000pt;}
.y429{bottom:794.560000pt;}
.y24b{bottom:795.680000pt;}
.y323{bottom:795.840000pt;}
.y1f4{bottom:796.640000pt;}
.y78{bottom:798.720000pt;}
.y419{bottom:799.520000pt;}
.y1d4{bottom:800.000000pt;}
.yf8{bottom:800.320000pt;}
.y257{bottom:800.480000pt;}
.ybd{bottom:800.960000pt;}
.y283{bottom:801.600000pt;}
.y2a1{bottom:803.040000pt;}
.y87{bottom:803.840000pt;}
.y145{bottom:805.760000pt;}
.yc{bottom:805.768000pt;}
.y3b7{bottom:807.040000pt;}
.y4f{bottom:807.360000pt;}
.y111{bottom:808.160000pt;}
.y2ca{bottom:808.960000pt;}
.y1af{bottom:810.400000pt;}
.y31{bottom:810.880000pt;}
.y18e{bottom:811.040000pt;}
.y147{bottom:812.160000pt;}
.y160{bottom:813.440000pt;}
.y22d{bottom:816.480000pt;}
.y24a{bottom:816.800000pt;}
.y322{bottom:816.960000pt;}
.ya7{bottom:817.760000pt;}
.y4a9{bottom:817.920000pt;}
.y308{bottom:819.840000pt;}
.y418{bottom:820.640000pt;}
.y256{bottom:821.600000pt;}
.y3b6{bottom:821.920000pt;}
.ybc{bottom:822.240000pt;}
.y144{bottom:822.720000pt;}
.y2a0{bottom:824.160000pt;}
.y86{bottom:824.960000pt;}
.yd2{bottom:825.120000pt;}
.y77{bottom:827.840000pt;}
.y4ba{bottom:828.480000pt;}
.y30{bottom:829.280000pt;}
.y3da{bottom:831.200000pt;}
.yd5{bottom:831.360000pt;}
.y1ae{bottom:832.320000pt;}
.y18c{bottom:832.960000pt;}
.y15c{bottom:834.560000pt;}
.y4e{bottom:836.480000pt;}
.y3b5{bottom:837.280000pt;}
.y321{bottom:838.240000pt;}
.y1f3{bottom:838.880000pt;}
.ya6{bottom:839.040000pt;}
.y428{bottom:839.680000pt;}
.y2c9{bottom:840.160000pt;}
.y307{bottom:840.960000pt;}
.y255{bottom:842.880000pt;}
.y282{bottom:843.840000pt;}
.yf7{bottom:845.280000pt;}
.y29f{bottom:845.440000pt;}
.y1d3{bottom:846.080000pt;}
.y85{bottom:846.240000pt;}
.y2f{bottom:847.680000pt;}
.y142{bottom:848.800000pt;}
.y76{bottom:848.960000pt;}
.y4b9{bottom:849.600000pt;}
.y110{bottom:850.400000pt;}
.y3b4{bottom:852.480000pt;}
.yd4{bottom:852.640000pt;}
.y249{bottom:853.600000pt;}
.y1ad{bottom:854.080000pt;}
.y189{bottom:854.720000pt;}
.y143{bottom:855.040000pt;}
.y15f{bottom:855.680000pt;}
.y417{bottom:857.440000pt;}
.ybb{bottom:858.880000pt;}
.y320{bottom:859.360000pt;}
.y1f2{bottom:860.000000pt;}
.ya5{bottom:860.160000pt;}
.yb{bottom:860.968000pt;}
.y2be{bottom:861.280000pt;}
.y306{bottom:862.240000pt;}
.y4a8{bottom:863.040000pt;}
.y22c{bottom:864.000000pt;}
.y281{bottom:864.960000pt;}
.y4d{bottom:865.600000pt;}
.y2e{bottom:866.080000pt;}
.yf6{bottom:866.560000pt;}
.y206{bottom:867.200000pt;}
.y84{bottom:867.360000pt;}
.y3b3{bottom:867.520000pt;}
.y4b8{bottom:870.720000pt;}
.yd3{bottom:873.760000pt;}
.y1ac{bottom:875.840000pt;}
.y75{bottom:878.240000pt;}
.y2c8{bottom:880.000000pt;}
.y1f1{bottom:881.120000pt;}
.y1d2{bottom:881.760000pt;}
.y18b{bottom:882.240000pt;}
.y34c{bottom:883.360000pt;}
.y4a7{bottom:884.320000pt;}
.y2d{bottom:884.480000pt;}
.y427{bottom:884.960000pt;}
.y22b{bottom:885.120000pt;}
.y280{bottom:886.240000pt;}
.y4c{bottom:886.720000pt;}
.y390{bottom:887.680000pt;}
.y83{bottom:888.480000pt;}
.ya{bottom:888.640000pt;}
.y140{bottom:891.840000pt;}
.y4b7{bottom:892.000000pt;}
.y15a{bottom:892.480000pt;}
.y188{bottom:892.800000pt;}
.y2c7{bottom:895.520000pt;}
.y141{bottom:898.080000pt;}
.y15b{bottom:898.720000pt;}
.y10e{bottom:899.360000pt;}
.yf5{bottom:902.080000pt;}
.y1f0{bottom:902.400000pt;}
.y2c{bottom:902.880000pt;}
.y18a{bottom:903.360000pt;}
.y248{bottom:903.520000pt;}
.y31f{bottom:904.480000pt;}
.ya4{bottom:905.280000pt;}
.y22a{bottom:906.240000pt;}
.y74{bottom:907.360000pt;}
.y4b{bottom:908.000000pt;}
.y13f{bottom:908.640000pt;}
.yba{bottom:908.960000pt;}
.y159{bottom:909.280000pt;}
.y82{bottom:909.600000pt;}
.ycd{bottom:910.400000pt;}
.y2c6{bottom:910.560000pt;}
.y378{bottom:911.680000pt;}
.y29e{bottom:911.840000pt;}
.y9{bottom:916.168000pt;}
.yd1{bottom:916.800000pt;}
.y2b{bottom:921.280000pt;}
.y38f{bottom:923.200000pt;}
.y1ef{bottom:923.680000pt;}
.y20d{bottom:924.640000pt;}
.y247{bottom:924.800000pt;}
.y3d9{bottom:925.600000pt;}
.y2c5{bottom:925.760000pt;}
.y229{bottom:927.360000pt;}
.y488{bottom:928.320000pt;}
.y27f{bottom:928.480000pt;}
.y73{bottom:928.640000pt;}
.y1d1{bottom:929.280000pt;}
.yb9{bottom:930.080000pt;}
.y29d{bottom:932.800000pt;}
.y13e{bottom:934.720000pt;}
.y156{bottom:935.360000pt;}
.y4a{bottom:937.120000pt;}
.yd0{bottom:937.920000pt;}
.y2a{bottom:939.680000pt;}
.y187{bottom:940.000000pt;}
.y2c4{bottom:940.480000pt;}
.y158{bottom:941.760000pt;}
.y8{bottom:943.840000pt;}
.y1ee{bottom:945.760000pt;}
.y20c{bottom:945.920000pt;}
.y81{bottom:946.400000pt;}
.y3d8{bottom:946.880000pt;}
.y4b6{bottom:948.000000pt;}
.y228{bottom:948.640000pt;}
.yf4{bottom:949.600000pt;}
.y72{bottom:949.760000pt;}
.ya3{bottom:950.400000pt;}
.yb8{bottom:951.200000pt;}
.y426{bottom:951.360000pt;}
.y29c{bottom:953.920000pt;}
.y2c3{bottom:955.520000pt;}
.y13b{bottom:956.640000pt;}
.y29{bottom:958.080000pt;}
.ycf{bottom:959.040000pt;}
.y13d{bottom:962.880000pt;}
.y1ed{bottom:967.040000pt;}
.y227{bottom:969.760000pt;}
.y254{bottom:969.920000pt;}
.y2c2{bottom:970.720000pt;}
.y27e{bottom:970.880000pt;}
.y71{bottom:971.040000pt;}
.ya2{bottom:971.680000pt;}
.y13a{bottom:973.440000pt;}
.y29b{bottom:975.200000pt;}
.y28{bottom:976.480000pt;}
.y2{bottom:982.400000pt;}
.y245{bottom:982.720000pt;}
.y186{bottom:983.040000pt;}
.y2c1{bottom:986.080000pt;}
.y25{bottom:990.720000pt;}
.y226{bottom:990.880000pt;}
.yf3{bottom:992.000000pt;}
.y70{bottom:992.160000pt;}
.y49{bottom:993.120000pt;}
.y27{bottom:994.880000pt;}
.y246{bottom:997.920000pt;}
.y2c0{bottom:1000.960000pt;}
.y80{bottom:1003.200000pt;}
.y185{bottom:1006.240000pt;}
.ycc{bottom:1008.000000pt;}
.ya1{bottom:1008.320000pt;}
.y1{bottom:1009.440000pt;}
.y139{bottom:1009.760000pt;}
.y29a{bottom:1010.720000pt;}
.y225{bottom:1012.160000pt;}
.yf2{bottom:1013.120000pt;}
.y6f{bottom:1013.280000pt;}
.y24{bottom:1013.440000pt;}
.y26{bottom:1013.600000pt;}
.y3{bottom:1060.640000pt;}
.y5{bottom:1066.080000pt;}
.y7{bottom:1066.240000pt;}
.h4{height:18.400000pt;}
.h5{height:18.401333pt;}
.h15{height:21.120000pt;}
.h1b{height:21.280000pt;}
.h1e{height:21.281333pt;}
.h2c{height:36.641333pt;}
.h14{height:42.240000pt;}
.h16{height:42.400000pt;}
.h19{height:42.401333pt;}
.h21{height:50.062500pt;}
.h2d{height:51.132500pt;}
.h28{height:52.000000pt;}
.h24{height:52.108438pt;}
.h23{height:52.497500pt;}
.h11{height:55.402500pt;}
.h25{height:57.758750pt;}
.h27{height:58.190000pt;}
.ha{height:62.812500pt;}
.h1a{height:63.360000pt;}
.h17{height:63.520000pt;}
.h1f{height:63.521333pt;}
.h3{height:66.750000pt;}
.h9{height:67.837500pt;}
.h8{height:72.090000pt;}
.hd{height:78.097500pt;}
.h2{height:83.437500pt;}
.he{height:84.640000pt;}
.h7{height:88.777500pt;}
.h6{height:100.125000pt;}
.h20{height:105.760000pt;}
.h13{height:105.761333pt;}
.h18{height:105.920000pt;}
.hc{height:111.472500pt;}
.hf{height:126.881333pt;}
.h12{height:127.040000pt;}
.h1d{height:148.000000pt;}
.h10{height:148.001333pt;}
.h22{height:151.038667pt;}
.hb{height:155.527500pt;}
.h26{height:166.080000pt;}
.h1c{height:169.280000pt;}
.h2a{height:317.120000pt;}
.h29{height:377.600000pt;}
.h2b{height:483.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:94.560000pt;}
.w9{width:109.760000pt;}
.w10{width:160.638667pt;}
.w6{width:179.840000pt;}
.wb{width:197.441333pt;}
.w4{width:214.400000pt;}
.we{width:216.000000pt;}
.w11{width:264.161333pt;}
.wf{width:300.960000pt;}
.wa{width:359.358667pt;}
.w5{width:395.840000pt;}
.wc{width:405.280000pt;}
.w7{width:438.560000pt;}
.w8{width:492.960000pt;}
.wd{width:603.360000pt;}
.w3{width:604.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x19{left:9.600000pt;}
.x2d{left:30.880000pt;}
.x31{left:54.880000pt;}
.x5{left:56.800000pt;}
.x48{left:63.040000pt;}
.x5a{left:69.920000pt;}
.x32{left:76.320000pt;}
.x4{left:84.960000pt;}
.x3e{left:89.600000pt;}
.x4e{left:92.000000pt;}
.x2{left:94.560000pt;}
.x18{left:95.520000pt;}
.x1d{left:102.080000pt;}
.x6{left:104.320000pt;}
.x1a{left:118.560000pt;}
.x67{left:124.960000pt;}
.x14{left:132.320000pt;}
.x12{left:141.760000pt;}
.x1c{left:142.880000pt;}
.x1b{left:165.760000pt;}
.xf{left:171.200000pt;}
.x66{left:172.160000pt;}
.x52{left:178.880000pt;}
.x34{left:180.160000pt;}
.x4d{left:181.440000pt;}
.x53{left:182.720000pt;}
.x6b{left:186.240000pt;}
.x37{left:189.760000pt;}
.x4f{left:198.560000pt;}
.x63{left:202.560000pt;}
.x23{left:205.600000pt;}
.xa{left:207.520000pt;}
.x24{left:212.480000pt;}
.x3a{left:214.560000pt;}
.x28{left:218.560000pt;}
.x40{left:223.680000pt;}
.x25{left:227.840000pt;}
.x58{left:230.400000pt;}
.x3d{left:233.440000pt;}
.x42{left:234.560000pt;}
.x56{left:236.800000pt;}
.x3b{left:238.560000pt;}
.x5f{left:239.680000pt;}
.x21{left:241.600000pt;}
.x6a{left:243.840000pt;}
.x6c{left:248.480000pt;}
.x59{left:251.200000pt;}
.xd{left:252.960000pt;}
.x44{left:256.320000pt;}
.x7{left:257.440000pt;}
.x33{left:261.120000pt;}
.x4b{left:264.640000pt;}
.x43{left:267.520000pt;}
.x30{left:269.600000pt;}
.x55{left:271.840000pt;}
.x61{left:273.440000pt;}
.x39{left:274.560000pt;}
.xc{left:276.320000pt;}
.x11{left:280.320000pt;}
.x22{left:282.560000pt;}
.x10{left:284.640000pt;}
.x51{left:288.320000pt;}
.x36{left:291.200000pt;}
.x2b{left:293.280000pt;}
.x2c{left:300.160000pt;}
.x1f{left:310.240000pt;}
.x20{left:317.120000pt;}
.x5c{left:321.280000pt;}
.x2e{left:324.160000pt;}
.x5d{left:329.440000pt;}
.xb{left:332.480000pt;}
.xe{left:333.600000pt;}
.x9{left:335.200000pt;}
.x26{left:339.200000pt;}
.x15{left:342.880000pt;}
.x27{left:346.080000pt;}
.x2f{left:348.160000pt;}
.x4c{left:354.880000pt;}
.x5b{left:359.040000pt;}
.x29{left:388.000000pt;}
.x16{left:392.320000pt;}
.x8{left:396.960000pt;}
.x1{left:401.600000pt;}
.x13{left:402.560000pt;}
.x64{left:404.160000pt;}
.x3{left:420.480000pt;}
.x65{left:429.440000pt;}
.x54{left:467.360000pt;}
.x46{left:483.200000pt;}
.x60{left:489.280000pt;}
.x45{left:498.240000pt;}
.x4a{left:503.840000pt;}
.x47{left:524.480000pt;}
.x5e{left:528.320000pt;}
.x49{left:533.600000pt;}
.x50{left:538.400000pt;}
.x62{left:553.920000pt;}
.x3f{left:554.880000pt;}
.x41{left:558.240000pt;}
.x57{left:564.800000pt;}
.x3c{left:570.880000pt;}
.x38{left:612.000000pt;}
.x35{left:638.400000pt;}
.x69{left:647.840000pt;}
.x68{left:676.480000pt;}
.x17{left:699.200000pt;}
.x2a{left:746.400000pt;}
}




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