
    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_5d1faa8cc89c90c602152cde.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_4133bac4b2b8b90eccffa011.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_c0437950a0dbe0cf81b7b651.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_ba28a67cfab9abcf1a9a3e43.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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_879f23ad745625bad3812490.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;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_35b4a7290f4a5b222c8cc115.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3cdceddd9c0f6e3668325d93.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_232ef041b09b5ffd021db0e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e215f578ae9e149aa84901de.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ca4c081dd06277880fdda064.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.687000;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:ff11;src:url('chunks/assets/font_f3aa47486bfbc7bd330a72dd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.691000;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:ff12;src:url('chunks/assets/font_580043e9c080883a987c2641.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.706000;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:ff13;src:url('chunks/assets/font_e6f4d99d0a956b529766c10f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;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:ff14;src:url('chunks/assets/font_4a2196944f0f3c38a13786dd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400009px;}
.v5{vertical-align:-17.281128px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.290405px;}
.v4{vertical-align:18.377930px;}
.v3{vertical-align:20.399963px;}
.v1{vertical-align:24.000000px;}
.lsce{letter-spacing:-0.867000px;}
.ls59{letter-spacing:-0.840000px;}
.lscd{letter-spacing:-0.714000px;}
.lscf{letter-spacing:-0.663000px;}
.ls49{letter-spacing:-0.612000px;}
.ls5a{letter-spacing:-0.600000px;}
.lsd0{letter-spacing:-0.561000px;}
.ls5b{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.480000px;}
.ls87{letter-spacing:-0.438859px;}
.ls15{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.360000px;}
.lsb7{letter-spacing:-0.357000px;}
.lsc4{letter-spacing:-0.306000px;}
.ls31{letter-spacing:-0.300000px;}
.lsba{letter-spacing:-0.255000px;}
.ls14{letter-spacing:-0.240000px;}
.lsb8{letter-spacing:-0.204000px;}
.ls35{letter-spacing:-0.180000px;}
.lsb9{letter-spacing:-0.153000px;}
.ls82{letter-spacing:-0.145920px;}
.ls2f{letter-spacing:-0.120000px;}
.ls86{letter-spacing:-0.109715px;}
.ls83{letter-spacing:-0.109440px;}
.lsb6{letter-spacing:-0.102000px;}
.ls16{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.054857px;}
.lsb5{letter-spacing:-0.051000px;}
.ls48{letter-spacing:-0.043346px;}
.ls13{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000037px;}
.ls0{letter-spacing:0.000085px;}
.ls77{letter-spacing:0.014339px;}
.ls92{letter-spacing:0.027649px;}
.ls45{letter-spacing:0.030000px;}
.ls46{letter-spacing:0.043346px;}
.lsa0{letter-spacing:0.051000px;}
.ls88{letter-spacing:0.054857px;}
.ls5c{letter-spacing:0.059990px;}
.ls18{letter-spacing:0.060000px;}
.lsb4{letter-spacing:0.076500px;}
.ls90{letter-spacing:0.078000px;}
.ls9d{letter-spacing:0.090000px;}
.lsaa{letter-spacing:0.102000px;}
.ls81{letter-spacing:0.109440px;}
.ls9b{letter-spacing:0.109715px;}
.ls17{letter-spacing:0.120000px;}
.lsbc{letter-spacing:0.127500px;}
.ls84{letter-spacing:0.145920px;}
.ls4a{letter-spacing:0.150000px;}
.lsaf{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.178791px;}
.ls3{letter-spacing:0.180000px;}
.ls8d{letter-spacing:0.184845px;}
.ls91{letter-spacing:0.185988px;}
.ls10{letter-spacing:0.204000px;}
.ls8b{letter-spacing:0.209999px;}
.ls8a{letter-spacing:0.238774px;}
.ls1{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.255000px;}
.lsa6{letter-spacing:0.264000px;}
.ls95{letter-spacing:0.269990px;}
.lsa3{letter-spacing:0.280500px;}
.lsab{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.lsa4{letter-spacing:0.306000px;}
.ls43{letter-spacing:0.330000px;}
.lsa9{letter-spacing:0.357000px;}
.ls5{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.373215px;}
.lsc0{letter-spacing:0.382500px;}
.ls4b{letter-spacing:0.390000px;}
.ls76{letter-spacing:0.392944px;}
.lsa5{letter-spacing:0.408000px;}
.ls69{letter-spacing:0.419998px;}
.ls4{letter-spacing:0.420000px;}
.ls70{letter-spacing:0.450000px;}
.lsa8{letter-spacing:0.459000px;}
.lse{letter-spacing:0.480000px;}
.ls8f{letter-spacing:0.509949px;}
.ls9e{letter-spacing:0.510000px;}
.lscb{letter-spacing:0.535500px;}
.lsb{letter-spacing:0.540000px;}
.lsbb{letter-spacing:0.561000px;}
.lsbd{letter-spacing:0.586500px;}
.ls50{letter-spacing:0.587989px;}
.ls93{letter-spacing:0.588000px;}
.ls75{letter-spacing:0.595818px;}
.ls1e{letter-spacing:0.600000px;}
.lsa1{letter-spacing:0.612000px;}
.ls33{letter-spacing:0.630000px;}
.lsf{letter-spacing:0.660000px;}
.lsac{letter-spacing:0.663000px;}
.lsae{letter-spacing:0.714000px;}
.ls1f{letter-spacing:0.720000px;}
.lscc{letter-spacing:0.729279px;}
.lsc3{letter-spacing:0.739500px;}
.ls4e{letter-spacing:0.741028px;}
.ls44{letter-spacing:0.750000px;}
.ls89{letter-spacing:0.762000px;}
.lsa7{letter-spacing:0.765000px;}
.ls8c{letter-spacing:0.770946px;}
.ls9{letter-spacing:0.780000px;}
.ls9f{letter-spacing:0.816000px;}
.ls8{letter-spacing:0.840000px;}
.ls4d{letter-spacing:0.840599px;}
.lsc1{letter-spacing:0.841500px;}
.lsc2{letter-spacing:0.867000px;}
.ls34{letter-spacing:0.870000px;}
.lsc5{letter-spacing:0.892500px;}
.ls7{letter-spacing:0.900000px;}
.lsb0{letter-spacing:0.918000px;}
.ls6f{letter-spacing:0.938965px;}
.ls4c{letter-spacing:0.959987px;}
.ls19{letter-spacing:0.960000px;}
.lsb1{letter-spacing:0.969000px;}
.ls1c{letter-spacing:0.990000px;}
.ls32{letter-spacing:1.020000px;}
.ls4f{letter-spacing:1.026000px;}
.ls22{letter-spacing:1.050000px;}
.ls8e{letter-spacing:1.054202px;}
.lsad{letter-spacing:1.071000px;}
.ls74{letter-spacing:1.077576px;}
.ls72{letter-spacing:1.078129px;}
.lsa{letter-spacing:1.080000px;}
.lsc7{letter-spacing:1.122000px;}
.ls1d{letter-spacing:1.140000px;}
.ls53{letter-spacing:1.152000px;}
.lsc6{letter-spacing:1.173000px;}
.ls37{letter-spacing:1.200000px;}
.ls54{letter-spacing:1.205993px;}
.ls38{letter-spacing:1.230000px;}
.ls26{letter-spacing:1.260000px;}
.lsb2{letter-spacing:1.275000px;}
.ls1b{letter-spacing:1.320000px;}
.lsa2{letter-spacing:1.326000px;}
.ls6c{letter-spacing:1.357799px;}
.lsbf{letter-spacing:1.377000px;}
.ls6{letter-spacing:1.380000px;}
.ls55{letter-spacing:1.410000px;}
.lsc{letter-spacing:1.440000px;}
.lsbe{letter-spacing:1.479000px;}
.ls71{letter-spacing:1.494069px;}
.ls1a{letter-spacing:1.500000px;}
.ls73{letter-spacing:1.513308px;}
.lsc9{letter-spacing:1.530000px;}
.ls5d{letter-spacing:1.547991px;}
.ls39{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.lsc8{letter-spacing:1.632000px;}
.ls96{letter-spacing:1.650000px;}
.ls24{letter-spacing:1.680000px;}
.lsca{letter-spacing:1.683000px;}
.ls57{letter-spacing:1.703963px;}
.ls23{letter-spacing:1.710000px;}
.ls2a{letter-spacing:1.740000px;}
.ls6e{letter-spacing:1.788013px;}
.ls25{letter-spacing:1.800000px;}
.ls51{letter-spacing:1.830000px;}
.ls2d{letter-spacing:1.860000px;}
.ls29{letter-spacing:1.890000px;}
.ls27{letter-spacing:1.920000px;}
.ls6b{letter-spacing:1.956591px;}
.ls94{letter-spacing:1.960828px;}
.ls5e{letter-spacing:1.974000px;}
.ls2c{letter-spacing:1.980000px;}
.ls52{letter-spacing:2.027978px;}
.lsd{letter-spacing:2.040000px;}
.ls3e{letter-spacing:2.070000px;}
.ls58{letter-spacing:2.093989px;}
.ls20{letter-spacing:2.100000px;}
.ls21{letter-spacing:2.160000px;}
.ls3c{letter-spacing:2.220000px;}
.ls2e{letter-spacing:2.280000px;}
.lsb3{letter-spacing:2.295000px;}
.ls42{letter-spacing:2.340000px;}
.ls40{letter-spacing:2.400000px;}
.ls3a{letter-spacing:2.490000px;}
.ls6d{letter-spacing:2.520000px;}
.ls56{letter-spacing:2.531948px;}
.ls41{letter-spacing:2.580000px;}
.ls3d{letter-spacing:2.640000px;}
.ls28{letter-spacing:2.700000px;}
.ls3b{letter-spacing:2.820000px;}
.ls3f{letter-spacing:3.120000px;}
.ls98{letter-spacing:13.629174px;}
.ls7d{letter-spacing:13.635766px;}
.ls80{letter-spacing:13.796965px;}
.ls9c{letter-spacing:13.905480px;}
.ls7c{letter-spacing:13.906304px;}
.ls99{letter-spacing:22.901968px;}
.ls9a{letter-spacing:22.902517px;}
.ls7f{letter-spacing:22.953088px;}
.ls7e{letter-spacing:22.959680px;}
.ls64{letter-spacing:71.675391px;}
.ls67{letter-spacing:71.675941px;}
.ls68{letter-spacing:89.524695px;}
.ls63{letter-spacing:89.525428px;}
.ls66{letter-spacing:89.525977px;}
.ls65{letter-spacing:124.460303px;}
.ls62{letter-spacing:124.460486px;}
.ls78{letter-spacing:141.995399px;}
.ls7a{letter-spacing:143.075355px;}
.ls79{letter-spacing:158.406000px;}
.ls7b{letter-spacing:159.477000px;}
.ls5f{letter-spacing:310.793979px;}
.ls97{letter-spacing:490.050489px;}
.ls61{letter-spacing:511.020000px;}
.ls60{letter-spacing:528.053990px;}
.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;}
}
.ws26{word-spacing:-16.920000px;}
.ws27{word-spacing:-16.620000px;}
.ws75{word-spacing:-16.200000px;}
.wsaf{word-spacing:-16.140000px;}
.ws7{word-spacing:-15.780000px;}
.ws28{word-spacing:-15.720000px;}
.wsd0{word-spacing:-15.600000px;}
.ws94{word-spacing:-15.480000px;}
.ws50{word-spacing:-15.360000px;}
.ws66{word-spacing:-15.300000px;}
.ws67{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.wsd7{word-spacing:-14.832000px;}
.ws25{word-spacing:-14.544000px;}
.wsbe{word-spacing:-13.275491px;}
.wsd8{word-spacing:-13.005000px;}
.ws9f{word-spacing:-12.750000px;}
.ws115{word-spacing:-12.495000px;}
.ws80{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws83{word-spacing:-12.138000px;}
.ws5{word-spacing:-11.520000px;}
.wsc5{word-spacing:-10.500000px;}
.wsd6{word-spacing:-10.302000px;}
.ws1{word-spacing:-9.996000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws8b{word-spacing:-7.500000px;}
.wsac{word-spacing:-6.375000px;}
.ws7d{word-spacing:-2.340000px;}
.wsf6{word-spacing:-2.295000px;}
.ws74{word-spacing:-2.280000px;}
.ws7b{word-spacing:-2.220000px;}
.ws44{word-spacing:-2.100000px;}
.ws73{word-spacing:-2.040000px;}
.ws41{word-spacing:-1.920000px;}
.ws9{word-spacing:-1.890000px;}
.ws8a{word-spacing:-1.680000px;}
.ws55{word-spacing:-1.620000px;}
.ws6d{word-spacing:-1.560000px;}
.ws119{word-spacing:-1.530000px;}
.wsb{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.380000px;}
.ws4f{word-spacing:-1.320000px;}
.wsdb{word-spacing:-1.275000px;}
.ws85{word-spacing:-1.260000px;}
.ws11d{word-spacing:-1.224000px;}
.ws51{word-spacing:-1.200000px;}
.ws111{word-spacing:-1.173000px;}
.ws33{word-spacing:-1.140000px;}
.wsf3{word-spacing:-1.122000px;}
.ws15{word-spacing:-1.080000px;}
.wsea{word-spacing:-1.071000px;}
.ws43{word-spacing:-1.020000px;}
.wsde{word-spacing:-0.969000px;}
.ws86{word-spacing:-0.960000px;}
.wse{word-spacing:-0.900000px;}
.ws10f{word-spacing:-0.867000px;}
.ws35{word-spacing:-0.840000px;}
.ws10b{word-spacing:-0.816000px;}
.ws5d{word-spacing:-0.780000px;}
.wseb{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.wsec{word-spacing:-0.714000px;}
.ws112{word-spacing:-0.663000px;}
.ws4e{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.ws5c{word-spacing:-0.600000px;}
.ws11e{word-spacing:-0.561000px;}
.ws16{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.510000px;}
.ws5f{word-spacing:-0.480000px;}
.wsfc{word-spacing:-0.459000px;}
.ws4a{word-spacing:-0.420000px;}
.ws110{word-spacing:-0.408000px;}
.ws3a{word-spacing:-0.360000px;}
.wsf9{word-spacing:-0.357000px;}
.wsdf{word-spacing:-0.306000px;}
.ws21{word-spacing:-0.300000px;}
.wse3{word-spacing:-0.264000px;}
.wse0{word-spacing:-0.255000px;}
.ws38{word-spacing:-0.240000px;}
.wse8{word-spacing:-0.204000px;}
.ws57{word-spacing:-0.180000px;}
.wse7{word-spacing:-0.153000px;}
.wsbb{word-spacing:-0.145920px;}
.ws5a{word-spacing:-0.120000px;}
.wsc2{word-spacing:-0.109440px;}
.wsc1{word-spacing:-0.102000px;}
.ws82{word-spacing:-0.086692px;}
.ws84{word-spacing:-0.060000px;}
.wsb8{word-spacing:-0.054857px;}
.wsf1{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws81{word-spacing:-0.043346px;}
.wsa{word-spacing:0.000000px;}
.ws8c{word-spacing:0.043346px;}
.wsfe{word-spacing:0.051000px;}
.wsc3{word-spacing:0.054857px;}
.ws1e{word-spacing:0.060000px;}
.wsc8{word-spacing:0.072960px;}
.wsb9{word-spacing:0.109440px;}
.wsc4{word-spacing:0.109715px;}
.ws29{word-spacing:0.120000px;}
.wsce{word-spacing:0.145920px;}
.wsad{word-spacing:0.153000px;}
.ws65{word-spacing:0.180000px;}
.ws103{word-spacing:0.204000px;}
.ws71{word-spacing:0.240000px;}
.ws48{word-spacing:0.300000px;}
.wsae{word-spacing:0.306000px;}
.wsfa{word-spacing:0.357000px;}
.ws36{word-spacing:0.360000px;}
.wscc{word-spacing:0.420000px;}
.wsff{word-spacing:0.459000px;}
.ws58{word-spacing:0.480000px;}
.ws104{word-spacing:0.510000px;}
.ws30{word-spacing:0.540000px;}
.ws102{word-spacing:0.561000px;}
.ws78{word-spacing:0.600000px;}
.ws116{word-spacing:0.612000px;}
.ws109{word-spacing:0.714000px;}
.ws87{word-spacing:0.720000px;}
.ws105{word-spacing:0.765000px;}
.ws6e{word-spacing:0.780000px;}
.wse4{word-spacing:0.816000px;}
.ws2f{word-spacing:0.840000px;}
.wsf8{word-spacing:0.867000px;}
.ws6f{word-spacing:0.900000px;}
.ws69{word-spacing:0.960000px;}
.wse1{word-spacing:1.020000px;}
.wse5{word-spacing:1.071000px;}
.ws64{word-spacing:1.140000px;}
.wse9{word-spacing:1.173000px;}
.ws4b{word-spacing:1.200000px;}
.ws76{word-spacing:1.260000px;}
.wsdc{word-spacing:1.275000px;}
.ws5e{word-spacing:1.320000px;}
.wsed{word-spacing:1.377000px;}
.ws5b{word-spacing:1.380000px;}
.ws11b{word-spacing:1.428000px;}
.wsc{word-spacing:1.440000px;}
.wsee{word-spacing:1.479000px;}
.wsd{word-spacing:1.500000px;}
.wsd9{word-spacing:1.530000px;}
.ws1f{word-spacing:1.560000px;}
.wsc0{word-spacing:1.581000px;}
.ws1c{word-spacing:1.620000px;}
.wsfb{word-spacing:1.632000px;}
.ws63{word-spacing:1.680000px;}
.ws101{word-spacing:1.734000px;}
.ws13{word-spacing:1.740000px;}
.ws10c{word-spacing:1.785000px;}
.ws1d{word-spacing:1.800000px;}
.wsf4{word-spacing:1.836000px;}
.ws39{word-spacing:1.860000px;}
.wse6{word-spacing:1.887000px;}
.ws12{word-spacing:1.920000px;}
.ws100{word-spacing:1.938000px;}
.ws68{word-spacing:1.980000px;}
.ws108{word-spacing:1.989000px;}
.ws34{word-spacing:2.040000px;}
.ws10a{word-spacing:2.091000px;}
.ws3e{word-spacing:2.100000px;}
.ws11{word-spacing:2.160000px;}
.wsda{word-spacing:2.193000px;}
.ws2d{word-spacing:2.220000px;}
.wse2{word-spacing:2.244000px;}
.ws20{word-spacing:2.280000px;}
.ws10e{word-spacing:2.295000px;}
.ws42{word-spacing:2.340000px;}
.ws11f{word-spacing:2.346000px;}
.ws96{word-spacing:2.400000px;}
.ws11c{word-spacing:2.448000px;}
.ws3f{word-spacing:2.460000px;}
.ws95{word-spacing:2.520000px;}
.ws114{word-spacing:2.550000px;}
.ws97{word-spacing:2.580000px;}
.wsf0{word-spacing:2.601000px;}
.ws53{word-spacing:2.640000px;}
.ws10d{word-spacing:2.652000px;}
.ws2a{word-spacing:2.700000px;}
.ws113{word-spacing:2.754000px;}
.ws49{word-spacing:2.760000px;}
.wsf2{word-spacing:2.856000px;}
.ws60{word-spacing:2.880000px;}
.ws4d{word-spacing:2.940000px;}
.ws8e{word-spacing:2.958000px;}
.ws6a{word-spacing:3.000000px;}
.wsfd{word-spacing:3.009000px;}
.ws17{word-spacing:3.060000px;}
.ws2b{word-spacing:3.120000px;}
.wsbf{word-spacing:3.180000px;}
.ws14{word-spacing:3.240000px;}
.ws31{word-spacing:3.300000px;}
.wsef{word-spacing:3.315000px;}
.ws47{word-spacing:3.360000px;}
.ws9c{word-spacing:3.366000px;}
.ws45{word-spacing:3.420000px;}
.ws3b{word-spacing:3.480000px;}
.ws7c{word-spacing:3.540000px;}
.ws9d{word-spacing:3.570000px;}
.ws32{word-spacing:3.600000px;}
.ws9a{word-spacing:3.720000px;}
.wsca{word-spacing:3.780000px;}
.ws7a{word-spacing:3.840000px;}
.ws117{word-spacing:3.876000px;}
.ws6b{word-spacing:3.900000px;}
.ws3c{word-spacing:3.960000px;}
.ws54{word-spacing:4.020000px;}
.ws46{word-spacing:4.140000px;}
.ws8f{word-spacing:4.182000px;}
.ws72{word-spacing:4.200000px;}
.wsd5{word-spacing:4.260000px;}
.ws3d{word-spacing:4.380000px;}
.wsbd{word-spacing:4.428854px;}
.wsf5{word-spacing:4.437000px;}
.ws2e{word-spacing:4.440000px;}
.ws6c{word-spacing:4.500000px;}
.wsc6{word-spacing:4.541223px;}
.wsc7{word-spacing:4.543607px;}
.ws10{word-spacing:4.560000px;}
.ws37{word-spacing:4.620000px;}
.wsba{word-spacing:4.633692px;}
.wsab{word-spacing:4.680000px;}
.wsdd{word-spacing:4.794000px;}
.ws77{word-spacing:4.800000px;}
.wsd3{word-spacing:4.860000px;}
.ws107{word-spacing:4.896000px;}
.wsd4{word-spacing:4.920000px;}
.ws18{word-spacing:4.980000px;}
.ws4c{word-spacing:5.040000px;}
.ws62{word-spacing:5.100000px;}
.ws2c{word-spacing:5.220000px;}
.ws106{word-spacing:5.457000px;}
.ws70{word-spacing:5.460000px;}
.ws40{word-spacing:5.520000px;}
.ws7e{word-spacing:5.580000px;}
.ws91{word-spacing:5.661000px;}
.ws56{word-spacing:5.820000px;}
.wsd2{word-spacing:5.880000px;}
.ws89{word-spacing:6.000000px;}
.ws88{word-spacing:6.240000px;}
.ws118{word-spacing:6.273000px;}
.ws1a{word-spacing:6.420000px;}
.ws11a{word-spacing:6.477000px;}
.wsd1{word-spacing:6.600000px;}
.ws9b{word-spacing:6.732000px;}
.ws59{word-spacing:6.780000px;}
.ws61{word-spacing:7.080000px;}
.ws98{word-spacing:7.200000px;}
.ws99{word-spacing:7.260000px;}
.ws79{word-spacing:7.380000px;}
.ws93{word-spacing:7.701000px;}
.wscd{word-spacing:7.800000px;}
.ws7f{word-spacing:7.860000px;}
.ws1b{word-spacing:8.040000px;}
.wscb{word-spacing:8.280000px;}
.ws90{word-spacing:8.721000px;}
.ws92{word-spacing:9.027000px;}
.wsf7{word-spacing:9.537000px;}
.wscf{word-spacing:9.894000px;}
.ws9e{word-spacing:12.495000px;}
.ws120{word-spacing:13.668000px;}
.ws8d{word-spacing:14.790000px;}
.ws121{word-spacing:17.799000px;}
.wsbc{word-spacing:18.259668px;}
.wsb4{word-spacing:37.994994px;}
.wsb3{word-spacing:37.995000px;}
.wsb7{word-spacing:39.066000px;}
.wsc9{word-spacing:41.197907px;}
.wsb1{word-spacing:49.317000px;}
.wsb2{word-spacing:49.878000px;}
.wsb6{word-spacing:50.388000px;}
.wsa1{word-spacing:62.750246px;}
.wsa4{word-spacing:62.750429px;}
.wsa7{word-spacing:62.750978px;}
.ws24{word-spacing:72.267000px;}
.wsa6{word-spacing:76.755000px;}
.wsa2{word-spacing:79.835451px;}
.wsa8{word-spacing:94.605000px;}
.wsa5{word-spacing:97.685304px;}
.wsa3{word-spacing:97.685487px;}
.wsaa{word-spacing:111.690000px;}
.wsa9{word-spacing:129.540000px;}
.wsa0{word-spacing:167.790000px;}
.wsb0{word-spacing:542.742000px;}
.wsb5{word-spacing:544.934976px;}
._13{margin-left:-909.091426px;}
._12{margin-left:-848.147228px;}
._8{margin-left:-16.575000px;}
._19{margin-left:-12.858000px;}
._14{margin-left:-11.709010px;}
._16{margin-left:-10.620000px;}
._10{margin-left:-9.612000px;}
._2{margin-left:-8.448000px;}
._7{margin-left:-6.540000px;}
._17{margin-left:-5.460000px;}
._5{margin-left:-4.440000px;}
._1{margin-left:-3.360000px;}
._0{margin-left:-1.632000px;}
._4{width:1.254000px;}
._d{width:2.478000px;}
._c{width:3.486000px;}
._6{width:4.638000px;}
._18{width:6.017991px;}
._e{width:7.206000px;}
._11{width:9.719989px;}
._30{width:10.980000px;}
._1a{width:12.623990px;}
._15{width:14.190000px;}
._f{width:15.606000px;}
._9{width:18.360000px;}
._3{width:39.544790px;}
._3a{width:50.744994px;}
._44{width:51.816000px;}
._a{width:54.621000px;}
._3c{width:56.865012px;}
._36{width:66.300000px;}
._41{width:67.575000px;}
._2d{width:71.246982px;}
._34{width:76.245000px;}
._40{width:77.316000px;}
._31{width:88.801803px;}
._3d{width:89.864505px;}
._33{width:101.744994px;}
._3f{width:102.816000px;}
._35{width:104.702994px;}
._37{width:105.978000px;}
._2e{width:107.355000px;}
._25{width:114.386982px;}
._2f{width:124.629143px;}
._3b{width:129.387000px;}
._46{width:130.458000px;}
._39{width:132.192000px;}
._43{width:133.263000px;}
._2a{width:142.305640px;}
._38{width:158.406000px;}
._42{width:159.477000px;}
._24{width:162.690000px;}
._45{width:164.679000px;}
._26{width:180.540000px;}
._2c{width:183.446982px;}
._32{width:204.816000px;}
._3e{width:205.887000px;}
._1b{width:222.461990px;}
._28{width:231.641982px;}
._1d{width:237.098979px;}
._2b{width:248.165982px;}
._29{width:258.161982px;}
._1c{width:296.304000px;}
._27{width:306.356982px;}
._22{width:426.819000px;}
._1f{width:437.325000px;}
._23{width:439.796982px;}
._1e{width:454.358990px;}
._21{width:491.538000px;}
._20{width:501.534000px;}
._b{width:2571.266947px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:35.699999px;}
.fsc{font-size:36.480000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:43.345800px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fsb{font-size:54.857400px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:64.800000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y198{bottom:112.933800px;}
.y259{bottom:112.938300px;}
.y18b{bottom:112.956300px;}
.y1e7{bottom:113.307300px;}
.yfe{bottom:113.415298px;}
.y74{bottom:113.415344px;}
.ya7{bottom:113.544296px;}
.y16a{bottom:113.554802px;}
.y2bd{bottom:114.289048px;}
.y1d7{bottom:114.432289px;}
.y239{bottom:114.523200px;}
.yda{bottom:114.735146px;}
.y2fa{bottom:114.762312px;}
.y334{bottom:115.492844px;}
.y376{bottom:115.888094px;}
.y3e{bottom:118.032303px;}
.y2d{bottom:122.973450px;}
.y18a{bottom:127.950300px;}
.y2bc{bottom:129.283048px;}
.y2f9{bottom:129.756312px;}
.y333{bottom:130.486844px;}
.y375{bottom:130.882094px;}
.y197{bottom:131.683800px;}
.y1e6{bottom:132.057300px;}
.yfd{bottom:132.165298px;}
.y73{bottom:132.165344px;}
.ya6{bottom:132.294296px;}
.y169{bottom:132.304802px;}
.y258{bottom:133.032303px;}
.y1d6{bottom:133.182289px;}
.y238{bottom:133.273200px;}
.yd9{bottom:133.485146px;}
.y13e{bottom:134.786407px;}
.y11f{bottom:135.911407px;}
.y3d{bottom:140.579556px;}
.y2c{bottom:141.723450px;}
.y189{bottom:142.944300px;}
.y2bb{bottom:144.277048px;}
.y2f8{bottom:144.750312px;}
.y332{bottom:145.480844px;}
.y374{bottom:145.876094px;}
.y3b6{bottom:146.602823px;}
.y196{bottom:150.433800px;}
.y1e5{bottom:150.807289px;}
.yfc{bottom:150.915298px;}
.y72{bottom:150.915344px;}
.ya5{bottom:151.044296px;}
.y168{bottom:151.054802px;}
.y1d5{bottom:151.932289px;}
.y237{bottom:152.023200px;}
.y13d{bottom:153.536407px;}
.y11e{bottom:154.661407px;}
.y188{bottom:157.938300px;}
.y3c{bottom:158.032794px;}
.y2ba{bottom:159.271048px;}
.y2f7{bottom:159.744312px;}
.y2b{bottom:160.473450px;}
.y331{bottom:160.474844px;}
.y373{bottom:160.870094px;}
.y3b5{bottom:161.596823px;}
.y3f4{bottom:161.877276px;}
.y195{bottom:169.183800px;}
.y1e4{bottom:169.557289px;}
.yfb{bottom:169.665298px;}
.y71{bottom:169.665344px;}
.ya4{bottom:169.794296px;}
.y1d4{bottom:170.682289px;}
.y236{bottom:170.773200px;}
.yd8{bottom:170.991146px;}
.y13c{bottom:172.286407px;}
.y11d{bottom:173.411407px;}
.y2b9{bottom:174.265048px;}
.y2f6{bottom:174.738312px;}
.y330{bottom:175.468844px;}
.y372{bottom:175.864094px;}
.y3b4{bottom:176.590823px;}
.y3f3{bottom:176.871276px;}
.y187{bottom:178.032303px;}
.y3b{bottom:178.126797px;}
.y2a{bottom:179.223450px;}
.y194{bottom:187.933800px;}
.y1e3{bottom:188.307289px;}
.yfa{bottom:188.415298px;}
.y70{bottom:188.415344px;}
.ya3{bottom:188.544296px;}
.y167{bottom:188.554802px;}
.y2b8{bottom:189.259048px;}
.y1d3{bottom:189.432289px;}
.y235{bottom:189.523200px;}
.y2f5{bottom:189.732312px;}
.yd7{bottom:189.735146px;}
.y32f{bottom:190.462844px;}
.y371{bottom:190.858094px;}
.y13b{bottom:191.036407px;}
.y3b3{bottom:191.584823px;}
.y11c{bottom:192.161407px;}
.y29{bottom:197.973450px;}
.y3a{bottom:203.187772px;}
.y2b7{bottom:204.253048px;}
.y2f4{bottom:204.726312px;}
.y32e{bottom:205.456844px;}
.y370{bottom:205.852094px;}
.y3b2{bottom:206.578823px;}
.y193{bottom:206.683800px;}
.y3f2{bottom:206.961275px;}
.y1e2{bottom:207.057289px;}
.yf9{bottom:207.165298px;}
.y6f{bottom:207.165344px;}
.ya2{bottom:207.294296px;}
.y1d2{bottom:208.182289px;}
.y234{bottom:208.273200px;}
.y13a{bottom:209.786407px;}
.y11b{bottom:210.911407px;}
.y28{bottom:216.723450px;}
.y39{bottom:218.181772px;}
.y2b6{bottom:219.247048px;}
.y2f3{bottom:219.720312px;}
.y32d{bottom:220.450844px;}
.y36f{bottom:220.846094px;}
.y3b1{bottom:221.572823px;}
.y3f1{bottom:221.955275px;}
.y1e1{bottom:225.807289px;}
.yf8{bottom:225.915298px;}
.y6e{bottom:225.915344px;}
.ya1{bottom:226.044296px;}
.y166{bottom:226.054802px;}
.y1d1{bottom:226.932289px;}
.y233{bottom:227.023200px;}
.yd6{bottom:227.229332px;}
.y139{bottom:228.536407px;}
.y11a{bottom:229.661407px;}
.y2f2{bottom:234.714312px;}
.y32c{bottom:235.444844px;}
.y27{bottom:235.473450px;}
.y36e{bottom:235.840094px;}
.y3b0{bottom:236.566823px;}
.y3f0{bottom:236.949275px;}
.y1e0{bottom:244.557289px;}
.yf7{bottom:244.665298px;}
.y6d{bottom:244.665344px;}
.ya0{bottom:244.794296px;}
.y1d0{bottom:245.682289px;}
.y232{bottom:245.773200px;}
.yd5{bottom:245.979332px;}
.y138{bottom:247.286407px;}
.y119{bottom:248.411407px;}
.y38{bottom:248.998522px;}
.y2b5{bottom:249.247798px;}
.y2f1{bottom:249.708312px;}
.y32b{bottom:250.438844px;}
.y36d{bottom:250.834094px;}
.y3af{bottom:251.560823px;}
.y3ef{bottom:251.943275px;}
.y26{bottom:254.223450px;}
.y1df{bottom:263.307289px;}
.yf6{bottom:263.415298px;}
.y6c{bottom:263.415344px;}
.y9f{bottom:263.544296px;}
.y37{bottom:263.992522px;}
.y2b4{bottom:264.241798px;}
.y1cf{bottom:264.432289px;}
.y231{bottom:264.523200px;}
.y2f0{bottom:264.702312px;}
.yd4{bottom:264.729332px;}
.y32a{bottom:265.432844px;}
.y36c{bottom:265.828094px;}
.y137{bottom:266.036407px;}
.y3ae{bottom:266.554823px;}
.y3ee{bottom:266.937275px;}
.y1bd{bottom:267.096748px;}
.y118{bottom:267.161407px;}
.y25{bottom:272.973450px;}
.y36{bottom:278.986522px;}
.y2ef{bottom:279.696312px;}
.y329{bottom:280.426844px;}
.y36b{bottom:280.822094px;}
.y1bc{bottom:281.273700px;}
.y3ad{bottom:281.548823px;}
.y3ed{bottom:281.931275px;}
.y1de{bottom:282.057289px;}
.yf5{bottom:282.165298px;}
.y6b{bottom:282.165344px;}
.y9e{bottom:282.294296px;}
.y165{bottom:282.304779px;}
.y1ce{bottom:283.182289px;}
.yd3{bottom:283.479332px;}
.y136{bottom:284.786407px;}
.y117{bottom:285.911407px;}
.y24{bottom:291.723450px;}
.y35{bottom:293.980522px;}
.y2ee{bottom:294.690312px;}
.y328{bottom:295.420844px;}
.y36a{bottom:295.816094px;}
.y1bb{bottom:296.267700px;}
.y3ac{bottom:296.542823px;}
.y3ec{bottom:296.925275px;}
.y1dd{bottom:300.807289px;}
.yf4{bottom:300.915298px;}
.y6a{bottom:300.915344px;}
.y9d{bottom:301.044296px;}
.y164{bottom:301.054779px;}
.y2b3{bottom:301.688548px;}
.y1cd{bottom:301.932289px;}
.y230{bottom:302.023200px;}
.yd2{bottom:302.229332px;}
.y135{bottom:303.536407px;}
.y116{bottom:304.661407px;}
.y34{bottom:308.974522px;}
.y2ed{bottom:309.684312px;}
.y327{bottom:310.414844px;}
.y23{bottom:310.473450px;}
.y369{bottom:310.810094px;}
.y3ab{bottom:311.536823px;}
.y3eb{bottom:311.919275px;}
.y2b2{bottom:316.682548px;}
.y1dc{bottom:319.557289px;}
.yf3{bottom:319.665298px;}
.y69{bottom:319.665344px;}
.y163{bottom:319.804779px;}
.y273{bottom:320.682289px;}
.y1cc{bottom:320.682312px;}
.yd1{bottom:320.979332px;}
.y134{bottom:322.286407px;}
.y115{bottom:323.411407px;}
.y33{bottom:323.968522px;}
.y1c6{bottom:324.506699px;}
.y2ec{bottom:324.678312px;}
.y326{bottom:325.408844px;}
.y368{bottom:325.804094px;}
.y3aa{bottom:326.530823px;}
.y3ea{bottom:326.913275px;}
.y22{bottom:329.223450px;}
.y1db{bottom:338.307289px;}
.yf2{bottom:338.415298px;}
.y68{bottom:338.415344px;}
.y9c{bottom:338.544296px;}
.y162{bottom:338.554779px;}
.y32{bottom:338.962522px;}
.y1cb{bottom:339.432312px;}
.y22f{bottom:339.523178px;}
.y2eb{bottom:339.672312px;}
.yd0{bottom:339.729332px;}
.y325{bottom:340.402844px;}
.y367{bottom:340.798094px;}
.y133{bottom:341.036407px;}
.y3a9{bottom:341.524823px;}
.y3e9{bottom:341.907275px;}
.y114{bottom:342.161407px;}
.y1c5{bottom:343.294189px;}
.y2b1{bottom:346.683298px;}
.y21{bottom:347.973450px;}
.y31{bottom:353.956522px;}
.y2ea{bottom:354.666312px;}
.y324{bottom:355.396844px;}
.y366{bottom:355.792094px;}
.y3a8{bottom:356.518823px;}
.y3e8{bottom:356.901275px;}
.y1da{bottom:357.057289px;}
.yf1{bottom:357.165298px;}
.y67{bottom:357.165344px;}
.y161{bottom:357.304779px;}
.y1ca{bottom:358.182312px;}
.y272{bottom:358.188289px;}
.y22e{bottom:358.273178px;}
.ycf{bottom:358.479332px;}
.y132{bottom:359.786407px;}
.y113{bottom:360.911407px;}
.y2b0{bottom:361.677298px;}
.y1c4{bottom:362.006699px;}
.y20{bottom:366.723450px;}
.y30{bottom:368.950522px;}
.y2e9{bottom:369.660312px;}
.y323{bottom:370.390844px;}
.y365{bottom:370.786094px;}
.y3a7{bottom:371.512823px;}
.y3e7{bottom:371.895275px;}
.y1d9{bottom:375.807289px;}
.yf0{bottom:375.915298px;}
.y66{bottom:375.915344px;}
.y9b{bottom:376.044342px;}
.y160{bottom:376.054779px;}
.y2af{bottom:376.671298px;}
.y271{bottom:376.932289px;}
.y1c9{bottom:376.932312px;}
.y22d{bottom:377.023178px;}
.yce{bottom:377.229332px;}
.y131{bottom:378.536407px;}
.y112{bottom:379.661407px;}
.y1c3{bottom:380.719208px;}
.y2f{bottom:383.944522px;}
.y2e8{bottom:384.654312px;}
.y322{bottom:385.384844px;}
.y1f{bottom:385.473450px;}
.y364{bottom:385.780094px;}
.y3a6{bottom:386.506823px;}
.y3e6{bottom:386.889275px;}
.y2ae{bottom:391.665298px;}
.yef{bottom:394.665298px;}
.y65{bottom:394.665344px;}
.y9a{bottom:394.794342px;}
.y15f{bottom:394.804779px;}
.y1c8{bottom:395.682312px;}
.y22c{bottom:395.773178px;}
.ycd{bottom:395.979332px;}
.y130{bottom:397.286407px;}
.y111{bottom:398.411407px;}
.y2e{bottom:398.938522px;}
.y1c2{bottom:399.431717px;}
.y2e7{bottom:399.648312px;}
.y321{bottom:400.378844px;}
.y363{bottom:400.774094px;}
.y3a5{bottom:401.500823px;}
.y3e5{bottom:401.883275px;}
.y1e{bottom:404.223450px;}
.y1d8{bottom:413.307312px;}
.yee{bottom:413.415298px;}
.y64{bottom:413.415344px;}
.y99{bottom:413.544342px;}
.y15e{bottom:413.554779px;}
.y1c7{bottom:414.432312px;}
.y22b{bottom:414.523178px;}
.y243{bottom:414.523224px;}
.y2e6{bottom:414.642312px;}
.ycc{bottom:414.729332px;}
.y320{bottom:415.372844px;}
.y362{bottom:415.768094px;}
.y12f{bottom:416.036407px;}
.y3a4{bottom:416.494823px;}
.y3e4{bottom:416.877275px;}
.y110{bottom:417.161407px;}
.y1c1{bottom:418.144180px;}
.y2ad{bottom:421.665298px;}
.y1d{bottom:422.973450px;}
.y270{bottom:423.298828px;}
.y2e5{bottom:429.636312px;}
.y31f{bottom:430.366844px;}
.y361{bottom:430.762094px;}
.y3a3{bottom:431.488823px;}
.y3e3{bottom:431.871275px;}
.yed{bottom:432.165298px;}
.y63{bottom:432.165344px;}
.y98{bottom:432.294342px;}
.y15d{bottom:432.304779px;}
.y22a{bottom:433.273178px;}
.y242{bottom:433.273224px;}
.ycb{bottom:433.479332px;}
.y12e{bottom:434.786407px;}
.y10f{bottom:435.911407px;}
.y1c0{bottom:436.856689px;}
.y1c{bottom:441.723450px;}
.y26f{bottom:442.048828px;}
.y1ba{bottom:444.499200px;}
.y2e4{bottom:444.630312px;}
.y31e{bottom:445.360844px;}
.y360{bottom:445.756094px;}
.y3a2{bottom:446.482823px;}
.y3e2{bottom:446.865275px;}
.yec{bottom:450.915298px;}
.y62{bottom:450.915344px;}
.y97{bottom:451.044342px;}
.y15c{bottom:451.054779px;}
.y229{bottom:452.023178px;}
.y241{bottom:452.023224px;}
.yca{bottom:452.229332px;}
.y12d{bottom:453.536407px;}
.y10e{bottom:454.661407px;}
.y1bf{bottom:455.568458px;}
.y1b9{bottom:459.493200px;}
.y2e3{bottom:459.624312px;}
.y31d{bottom:460.354844px;}
.y1b{bottom:460.473450px;}
.y35f{bottom:460.750094px;}
.y26e{bottom:460.798828px;}
.y3a1{bottom:461.476823px;}
.y3e1{bottom:461.859275px;}
.y2ac{bottom:467.480548px;}
.yeb{bottom:469.665298px;}
.y61{bottom:469.665344px;}
.y96{bottom:469.794342px;}
.y15b{bottom:469.804779px;}
.y228{bottom:470.773178px;}
.y240{bottom:470.773224px;}
.yc9{bottom:470.979332px;}
.y12c{bottom:472.286407px;}
.y10d{bottom:473.411407px;}
.y1b8{bottom:474.487200px;}
.y2e2{bottom:474.618312px;}
.y31c{bottom:475.348844px;}
.y35e{bottom:475.744094px;}
.y3a0{bottom:476.470823px;}
.y3e0{bottom:476.853275px;}
.y1a{bottom:479.223450px;}
.y26d{bottom:479.548828px;}
.y2ab{bottom:482.474548px;}
.y1be{bottom:483.656708px;}
.yea{bottom:488.415298px;}
.y60{bottom:488.415344px;}
.y95{bottom:488.544342px;}
.y15a{bottom:488.554779px;}
.y1b7{bottom:489.481200px;}
.y227{bottom:489.523178px;}
.y23f{bottom:489.523224px;}
.y2e1{bottom:489.612312px;}
.yc8{bottom:489.729332px;}
.y31b{bottom:490.342844px;}
.y35d{bottom:490.738094px;}
.y12b{bottom:491.036407px;}
.y39f{bottom:491.464823px;}
.y3df{bottom:491.847275px;}
.y10c{bottom:492.161407px;}
.y2aa{bottom:497.468548px;}
.y26c{bottom:498.298828px;}
.y218{bottom:503.592066px;}
.y2e0{bottom:504.606312px;}
.y31a{bottom:505.336844px;}
.y35c{bottom:505.732094px;}
.y39e{bottom:506.458823px;}
.y3de{bottom:506.841275px;}
.ye9{bottom:507.165298px;}
.y5f{bottom:507.165344px;}
.y94{bottom:507.294342px;}
.y159{bottom:507.304779px;}
.y226{bottom:508.273178px;}
.y23e{bottom:508.273224px;}
.yc7{bottom:508.479332px;}
.y10b{bottom:510.911407px;}
.y2a9{bottom:512.462548px;}
.y26b{bottom:517.048828px;}
.y20a{bottom:519.157059px;}
.y2df{bottom:519.600312px;}
.y319{bottom:520.330844px;}
.y35b{bottom:520.726094px;}
.y39d{bottom:521.452823px;}
.y3dd{bottom:521.835275px;}
.ye8{bottom:525.915298px;}
.y5e{bottom:525.915344px;}
.y93{bottom:526.044342px;}
.y158{bottom:526.054779px;}
.y23d{bottom:527.023224px;}
.yc6{bottom:527.229332px;}
.y12a{bottom:528.536407px;}
.y10a{bottom:529.661407px;}
.y2de{bottom:534.594312px;}
.y20d{bottom:535.134447px;}
.y217{bottom:535.135071px;}
.y318{bottom:535.324844px;}
.y19{bottom:535.473450px;}
.y35a{bottom:535.720094px;}
.y26a{bottom:535.798828px;}
.y39c{bottom:536.446823px;}
.y3dc{bottom:536.829275px;}
.y2a8{bottom:542.463298px;}
.ye7{bottom:544.665298px;}
.y5d{bottom:544.665344px;}
.y92{bottom:544.794342px;}
.y157{bottom:544.804779px;}
.y225{bottom:545.773178px;}
.y23c{bottom:545.773224px;}
.yc5{bottom:545.979332px;}
.y129{bottom:547.286407px;}
.y109{bottom:548.411407px;}
.y1ad{bottom:548.657410px;}
.y2dd{bottom:549.588312px;}
.y317{bottom:550.318844px;}
.y359{bottom:550.714094px;}
.y39b{bottom:551.440823px;}
.y3db{bottom:551.823275px;}
.y18{bottom:554.223450px;}
.y269{bottom:554.548828px;}
.y211{bottom:554.609013px;}
.y20f{bottom:555.020554px;}
.y2a7{bottom:557.457298px;}
.y1ac{bottom:562.797775px;}
.ye6{bottom:563.415298px;}
.y5c{bottom:563.415344px;}
.y91{bottom:563.544342px;}
.y23b{bottom:564.523224px;}
.y2dc{bottom:564.582312px;}
.yc4{bottom:564.729332px;}
.y316{bottom:565.312844px;}
.y358{bottom:565.708094px;}
.y128{bottom:566.036407px;}
.y39a{bottom:566.434823px;}
.y207{bottom:566.581055px;}
.y3da{bottom:566.817275px;}
.y108{bottom:567.161407px;}
.y2a6{bottom:572.451298px;}
.y268{bottom:573.298828px;}
.y206{bottom:576.518663px;}
.y1ab{bottom:577.791775px;}
.y2db{bottom:579.576312px;}
.y315{bottom:580.306844px;}
.y357{bottom:580.702094px;}
.y399{bottom:581.428823px;}
.y3d9{bottom:581.811275px;}
.ye5{bottom:582.165298px;}
.y5b{bottom:582.165344px;}
.y90{bottom:582.294342px;}
.y156{bottom:582.304779px;}
.y224{bottom:583.273178px;}
.y23a{bottom:583.273224px;}
.yc3{bottom:583.479332px;}
.y210{bottom:584.163437px;}
.y127{bottom:584.786407px;}
.y107{bottom:585.911407px;}
.y2a5{bottom:587.445298px;}
.y20c{bottom:591.431854px;}
.y205{bottom:591.512663px;}
.y17{bottom:591.723450px;}
.y267{bottom:592.048828px;}
.y2da{bottom:594.570312px;}
.y314{bottom:595.300844px;}
.y356{bottom:595.696094px;}
.y398{bottom:596.422823px;}
.y3d8{bottom:596.805275px;}
.ye4{bottom:600.915298px;}
.y5a{bottom:600.915344px;}
.y8f{bottom:601.044342px;}
.y223{bottom:602.023224px;}
.yc2{bottom:602.229332px;}
.y2a4{bottom:602.439298px;}
.y126{bottom:603.536407px;}
.y106{bottom:604.661407px;}
.y1b6{bottom:606.067200px;}
.y204{bottom:606.506663px;}
.y216{bottom:606.997825px;}
.y2d9{bottom:609.564312px;}
.y313{bottom:610.294844px;}
.y16{bottom:610.473450px;}
.y355{bottom:610.690094px;}
.y266{bottom:610.798828px;}
.y397{bottom:611.416823px;}
.y3d7{bottom:611.799275px;}
.y213{bottom:615.432209px;}
.y2a3{bottom:617.433298px;}
.y20e{bottom:619.271988px;}
.ye3{bottom:619.665298px;}
.y59{bottom:619.665344px;}
.y8e{bottom:619.794342px;}
.y155{bottom:619.804779px;}
.y222{bottom:620.773224px;}
.yc1{bottom:620.979332px;}
.y203{bottom:621.500663px;}
.y125{bottom:622.286407px;}
.y105{bottom:623.411407px;}
.y2d8{bottom:624.558312px;}
.y208{bottom:624.689117px;}
.y1b5{bottom:624.854691px;}
.y312{bottom:625.288844px;}
.y354{bottom:625.684094px;}
.y396{bottom:626.410823px;}
.y3d6{bottom:626.793275px;}
.y15{bottom:629.223450px;}
.y265{bottom:629.548828px;}
.y2a2{bottom:632.427298px;}
.y202{bottom:636.494663px;}
.y215{bottom:636.757965px;}
.ye2{bottom:638.415298px;}
.y58{bottom:638.415344px;}
.y8d{bottom:638.544342px;}
.y154{bottom:638.554779px;}
.y221{bottom:639.523224px;}
.y2d7{bottom:639.552312px;}
.yc0{bottom:639.729332px;}
.y311{bottom:640.282844px;}
.y353{bottom:640.678094px;}
.y124{bottom:641.036407px;}
.y395{bottom:641.404823px;}
.y3d5{bottom:641.787275px;}
.y104{bottom:642.161407px;}
.y1b4{bottom:643.567200px;}
.y212{bottom:644.986633px;}
.y2a1{bottom:647.421298px;}
.y14{bottom:647.973450px;}
.y264{bottom:648.298828px;}
.y201{bottom:651.488663px;}
.y2d6{bottom:654.546312px;}
.y310{bottom:655.276844px;}
.y352{bottom:655.672094px;}
.y394{bottom:656.398823px;}
.y3d4{bottom:656.781275px;}
.y214{bottom:656.849145px;}
.y28b{bottom:657.162277px;}
.ye1{bottom:657.165298px;}
.y57{bottom:657.165344px;}
.y8c{bottom:657.294342px;}
.y153{bottom:657.304779px;}
.y220{bottom:658.273224px;}
.ybf{bottom:658.479332px;}
.y123{bottom:659.786407px;}
.y103{bottom:660.911407px;}
.y1b3{bottom:662.279709px;}
.y2a0{bottom:662.415298px;}
.y200{bottom:666.482663px;}
.y13{bottom:666.723450px;}
.y263{bottom:667.048828px;}
.y2d5{bottom:669.540312px;}
.y30f{bottom:670.270844px;}
.y351{bottom:670.666094px;}
.y393{bottom:671.392823px;}
.y3d3{bottom:671.775275px;}
.y28a{bottom:675.912277px;}
.ye0{bottom:675.915298px;}
.y56{bottom:675.915344px;}
.y8b{bottom:676.044342px;}
.y152{bottom:676.054779px;}
.y21f{bottom:677.023224px;}
.ybe{bottom:677.229332px;}
.y122{bottom:678.536407px;}
.y209{bottom:679.477203px;}
.y102{bottom:679.661407px;}
.y1b2{bottom:680.992218px;}
.y1ff{bottom:681.476663px;}
.y2d4{bottom:684.534312px;}
.y30e{bottom:685.264844px;}
.y12{bottom:685.473450px;}
.y350{bottom:685.660094px;}
.y262{bottom:685.798828px;}
.y392{bottom:686.386823px;}
.y3d2{bottom:686.769275px;}
.y20b{bottom:688.392150px;}
.y289{bottom:694.662277px;}
.ydf{bottom:694.665298px;}
.y55{bottom:694.665344px;}
.y8a{bottom:694.794342px;}
.y151{bottom:694.804779px;}
.y21e{bottom:695.773224px;}
.ybd{bottom:695.979332px;}
.y1fe{bottom:696.470663px;}
.y121{bottom:697.286407px;}
.y101{bottom:698.411407px;}
.y2d3{bottom:699.528312px;}
.y1b1{bottom:699.704681px;}
.y30d{bottom:700.258844px;}
.y34f{bottom:700.654094px;}
.y391{bottom:701.380823px;}
.y3d1{bottom:701.763275px;}
.y11{bottom:704.223450px;}
.y261{bottom:704.548828px;}
.y29f{bottom:711.165344px;}
.y288{bottom:713.412277px;}
.yde{bottom:713.415298px;}
.y54{bottom:713.415344px;}
.y89{bottom:713.544342px;}
.y150{bottom:713.554779px;}
.y2d2{bottom:714.522312px;}
.y21d{bottom:714.523224px;}
.ybc{bottom:714.729332px;}
.y30c{bottom:715.252844px;}
.y34e{bottom:715.648094px;}
.y390{bottom:716.374823px;}
.y3d0{bottom:716.757275px;}
.y100{bottom:717.161407px;}
.y1b0{bottom:718.417191px;}
.y10{bottom:722.973450px;}
.y260{bottom:723.298828px;}
.y1aa{bottom:726.023275px;}
.y2d1{bottom:729.516312px;}
.y29e{bottom:729.915344px;}
.y30b{bottom:730.246844px;}
.y34d{bottom:730.642094px;}
.y38f{bottom:731.368823px;}
.y3cf{bottom:731.751275px;}
.y287{bottom:732.162277px;}
.ydd{bottom:732.165298px;}
.y53{bottom:732.165344px;}
.y88{bottom:732.294342px;}
.y21c{bottom:733.273224px;}
.ybb{bottom:733.479332px;}
.y120{bottom:734.786407px;}
.yff{bottom:735.911407px;}
.y1af{bottom:737.128959px;}
.y1a9{bottom:741.017275px;}
.yf{bottom:741.723450px;}
.y25f{bottom:742.048828px;}
.y2d0{bottom:744.510312px;}
.y30a{bottom:745.240844px;}
.y34c{bottom:745.636094px;}
.y38e{bottom:746.362823px;}
.y3ce{bottom:746.745275px;}
.y29d{bottom:748.665344px;}
.y286{bottom:750.912277px;}
.ydc{bottom:750.915298px;}
.y52{bottom:750.915344px;}
.y17d{bottom:750.919762px;}
.y87{bottom:751.044342px;}
.y21b{bottom:752.023224px;}
.yba{bottom:752.229332px;}
.y1a8{bottom:756.011275px;}
.y186{bottom:759.485377px;}
.y2cf{bottom:759.504312px;}
.y309{bottom:760.234844px;}
.ye{bottom:760.473450px;}
.y34b{bottom:760.630094px;}
.y25e{bottom:760.798828px;}
.y38d{bottom:761.356823px;}
.y3cd{bottom:761.739275px;}
.y1ae{bottom:765.217209px;}
.y29c{bottom:767.415344px;}
.y1f8{bottom:769.059277px;}
.y285{bottom:769.662277px;}
.y51{bottom:769.665344px;}
.y17c{bottom:769.669762px;}
.y86{bottom:769.794342px;}
.y21a{bottom:770.773224px;}
.yb9{bottom:770.979332px;}
.y1a7{bottom:771.005275px;}
.y185{bottom:774.479377px;}
.y2ce{bottom:774.498312px;}
.y308{bottom:775.228844px;}
.y34a{bottom:775.624094px;}
.y38c{bottom:776.350823px;}
.y3cc{bottom:776.733275px;}
.yd{bottom:779.223450px;}
.y25d{bottom:779.548828px;}
.y1f7{bottom:784.053277px;}
.y29b{bottom:786.165344px;}
.y284{bottom:788.412277px;}
.y50{bottom:788.415344px;}
.y17b{bottom:788.419762px;}
.ydb{bottom:788.421344px;}
.y85{bottom:788.544342px;}
.y184{bottom:789.473377px;}
.y2cd{bottom:789.492312px;}
.yb8{bottom:789.729332px;}
.y307{bottom:790.222844px;}
.y349{bottom:790.618094px;}
.y38b{bottom:791.344823px;}
.y3cb{bottom:791.727275px;}
.yc{bottom:797.973450px;}
.y25c{bottom:798.298828px;}
.y183{bottom:804.467377px;}
.y2cc{bottom:804.486312px;}
.y29a{bottom:804.915344px;}
.y306{bottom:805.216844px;}
.y348{bottom:805.612094px;}
.y38a{bottom:806.338823px;}
.y3ca{bottom:806.721275px;}
.y283{bottom:807.162277px;}
.y4f{bottom:807.165344px;}
.y17a{bottom:807.169762px;}
.y84{bottom:807.294342px;}
.y14f{bottom:807.858582px;}
.y219{bottom:808.273224px;}
.yb7{bottom:808.479332px;}
.y1fd{bottom:812.151413px;}
.yb{bottom:816.723450px;}
.y2cb{bottom:819.480312px;}
.y305{bottom:820.210844px;}
.y347{bottom:820.606094px;}
.y389{bottom:821.332823px;}
.y3c9{bottom:821.715275px;}
.y299{bottom:823.665344px;}
.y282{bottom:825.912277px;}
.y4e{bottom:825.915344px;}
.y179{bottom:825.919762px;}
.y83{bottom:826.044342px;}
.yb6{bottom:827.229332px;}
.y1fc{bottom:830.944913px;}
.y1a6{bottom:834.143275px;}
.y2ca{bottom:834.474312px;}
.y304{bottom:835.204844px;}
.ya{bottom:835.473450px;}
.y346{bottom:835.600094px;}
.y25b{bottom:835.804828px;}
.y388{bottom:836.326823px;}
.y3c8{bottom:836.709275px;}
.y298{bottom:842.415344px;}
.y181{bottom:842.862970px;}
.y281{bottom:844.662277px;}
.y4d{bottom:844.665344px;}
.y178{bottom:844.669762px;}
.y82{bottom:844.794342px;}
.yb5{bottom:845.979332px;}
.y2c9{bottom:849.468312px;}
.y1fb{bottom:849.661913px;}
.y303{bottom:850.198844px;}
.y345{bottom:850.594094px;}
.y387{bottom:851.320823px;}
.y3c7{bottom:851.703275px;}
.y1a5{bottom:852.936775px;}
.y25a{bottom:854.548828px;}
.y1f6{bottom:857.289277px;}
.y14b{bottom:860.378214px;}
.y297{bottom:861.165344px;}
.y280{bottom:863.412277px;}
.y4c{bottom:863.415344px;}
.y177{bottom:863.419762px;}
.y81{bottom:863.544342px;}
.y2c8{bottom:864.462312px;}
.yb4{bottom:864.729332px;}
.y302{bottom:865.192844px;}
.y344{bottom:865.588094px;}
.y386{bottom:866.314823px;}
.y3c6{bottom:866.697275px;}
.y1fa{bottom:868.378913px;}
.y1a4{bottom:871.653775px;}
.y1f5{bottom:872.283277px;}
.y2c7{bottom:879.456312px;}
.y9{bottom:879.656208px;}
.y296{bottom:879.915344px;}
.y301{bottom:880.186844px;}
.y343{bottom:880.582094px;}
.y385{bottom:881.308823px;}
.y3c5{bottom:881.691275px;}
.y27f{bottom:882.162277px;}
.y4b{bottom:882.165344px;}
.y176{bottom:882.169762px;}
.y80{bottom:882.294342px;}
.yb3{bottom:883.479332px;}
.y14e{bottom:886.097076px;}
.y256{bottom:886.447174px;}
.y1f4{bottom:887.277277px;}
.y255{bottom:888.985865px;}
.y1a3{bottom:890.370775px;}
.y2c6{bottom:894.450312px;}
.y8{bottom:894.650208px;}
.y300{bottom:895.180844px;}
.y342{bottom:895.576094px;}
.y384{bottom:896.302823px;}
.y1f9{bottom:896.467163px;}
.y3c4{bottom:896.685275px;}
.y180{bottom:896.904346px;}
.y14a{bottom:897.638214px;}
.y295{bottom:898.665344px;}
.y27e{bottom:900.912277px;}
.y4a{bottom:900.915344px;}
.y175{bottom:900.919762px;}
.y7f{bottom:901.044342px;}
.yb2{bottom:902.229332px;}
.y1f3{bottom:902.271277px;}
.y1a2{bottom:909.087775px;}
.y2c5{bottom:909.444312px;}
.y2ff{bottom:910.174844px;}
.y341{bottom:910.570094px;}
.y383{bottom:911.296823px;}
.y3c3{bottom:911.679275px;}
.y257{bottom:915.110870px;}
.y141{bottom:917.171082px;}
.y294{bottom:917.415344px;}
.y27d{bottom:919.662277px;}
.y49{bottom:919.665344px;}
.y174{bottom:919.669762px;}
.y7e{bottom:919.794342px;}
.y254{bottom:920.528870px;}
.y143{bottom:920.742907px;}
.yb1{bottom:920.979332px;}
.y2c4{bottom:924.438312px;}
.y2fe{bottom:925.168844px;}
.y340{bottom:925.564094px;}
.y382{bottom:926.290823px;}
.y3c2{bottom:926.673275px;}
.y1a1{bottom:927.804775px;}
.y293{bottom:936.165344px;}
.y24d{bottom:936.710804px;}
.y7{bottom:937.250244px;}
.y27c{bottom:938.412277px;}
.y48{bottom:938.415344px;}
.y173{bottom:938.419762px;}
.y7d{bottom:938.544342px;}
.y24b{bottom:938.698334px;}
.y2c3{bottom:939.432312px;}
.yb0{bottom:939.729332px;}
.y2fd{bottom:940.162844px;}
.y33f{bottom:940.558094px;}
.y381{bottom:941.284823px;}
.y3c1{bottom:941.667275px;}
.y140{bottom:944.127777px;}
.y1a0{bottom:946.521775px;}
.y292{bottom:954.915344px;}
.y2fc{bottom:955.156844px;}
.y33e{bottom:955.552094px;}
.y142{bottom:955.670105px;}
.y380{bottom:956.278823px;}
.y3c0{bottom:956.661275px;}
.y1ed{bottom:956.903594px;}
.y27b{bottom:957.162277px;}
.y47{bottom:957.165344px;}
.y172{bottom:957.169762px;}
.y7c{bottom:957.294342px;}
.yaf{bottom:958.479332px;}
.y19f{bottom:965.238775px;}
.y24c{bottom:966.265228px;}
.y2fb{bottom:970.150844px;}
.y33d{bottom:970.546094px;}
.y37f{bottom:971.272823px;}
.y3bf{bottom:971.655275px;}
.y1ec{bottom:971.897594px;}
.y2c2{bottom:973.182312px;}
.y291{bottom:973.665344px;}
.y247{bottom:975.202972px;}
.y75{bottom:975.909344px;}
.y27a{bottom:975.912277px;}
.y192{bottom:975.915298px;}
.y46{bottom:975.915344px;}
.y171{bottom:975.919762px;}
.y7b{bottom:976.044342px;}
.y24a{bottom:976.825195px;}
.yae{bottom:977.229332px;}
.y6{bottom:981.936768px;}
.y17f{bottom:982.241390px;}
.y149{bottom:982.824266px;}
.y19e{bottom:983.955775px;}
.y246{bottom:985.144844px;}
.y33c{bottom:985.540094px;}
.y37e{bottom:986.266823px;}
.y3be{bottom:986.649275px;}
.y253{bottom:992.390984px;}
.y290{bottom:992.415344px;}
.y145{bottom:992.544420px;}
.y279{bottom:994.662277px;}
.y191{bottom:994.665298px;}
.y45{bottom:994.665344px;}
.y170{bottom:994.669762px;}
.y7a{bottom:994.794342px;}
.yad{bottom:995.979332px;}
.y1f2{bottom:999.961777px;}
.y245{bottom:1000.138844px;}
.y14c{bottom:1000.379425px;}
.y33b{bottom:1000.534094px;}
.y37d{bottom:1001.260823px;}
.y3bd{bottom:1001.643275px;}
.y19d{bottom:1002.672775px;}
.y248{bottom:1004.665375px;}
.y24f{bottom:1005.693043px;}
.y5{bottom:1008.936768px;}
.y28f{bottom:1011.165344px;}
.y278{bottom:1013.412277px;}
.y190{bottom:1013.415298px;}
.y44{bottom:1013.415344px;}
.y16f{bottom:1013.419762px;}
.y79{bottom:1013.544342px;}
.yac{bottom:1014.729332px;}
.y244{bottom:1015.132844px;}
.y33a{bottom:1015.528094px;}
.y37c{bottom:1016.254823px;}
.y3bc{bottom:1016.637275px;}
.y148{bottom:1017.751465px;}
.y1f1{bottom:1018.755277px;}
.y252{bottom:1022.151123px;}
.y144{bottom:1027.471619px;}
.y28e{bottom:1029.915344px;}
.y1eb{bottom:1030.126844px;}
.y339{bottom:1030.522094px;}
.y19c{bottom:1030.748275px;}
.y37b{bottom:1031.248823px;}
.y3bb{bottom:1031.631275px;}
.y277{bottom:1032.162277px;}
.y18f{bottom:1032.165298px;}
.y43{bottom:1032.165344px;}
.y16e{bottom:1032.169762px;}
.y78{bottom:1032.294342px;}
.yab{bottom:1033.479332px;}
.y24e{bottom:1035.247467px;}
.y1f0{bottom:1037.472277px;}
.y147{bottom:1041.443888px;}
.y1ea{bottom:1045.120844px;}
.y2c1{bottom:1045.192048px;}
.y338{bottom:1045.516094px;}
.y37a{bottom:1046.242823px;}
.y3ba{bottom:1046.625275px;}
.y14d{bottom:1048.285675px;}
.y28d{bottom:1048.665344px;}
.y19b{bottom:1049.618274px;}
.y251{bottom:1050.470423px;}
.y276{bottom:1050.912277px;}
.y18e{bottom:1050.915298px;}
.y42{bottom:1050.915344px;}
.y16d{bottom:1050.919762px;}
.yaa{bottom:1052.229332px;}
.y1ef{bottom:1056.189277px;}
.y1e9{bottom:1060.114844px;}
.y2c0{bottom:1060.186048px;}
.y337{bottom:1060.510094px;}
.y13f{bottom:1061.178406px;}
.y379{bottom:1061.236823px;}
.y3b9{bottom:1061.619275px;}
.y19a{bottom:1064.612274px;}
.y249{bottom:1068.093567px;}
.y17e{bottom:1069.149719px;}
.y275{bottom:1069.662277px;}
.y18d{bottom:1069.665298px;}
.y41{bottom:1069.665344px;}
.y16c{bottom:1069.669762px;}
.y77{bottom:1069.800342px;}
.ya9{bottom:1070.979332px;}
.y1e8{bottom:1075.108844px;}
.y2bf{bottom:1075.180048px;}
.y336{bottom:1075.504094px;}
.y378{bottom:1076.230823px;}
.y3b8{bottom:1076.613275px;}
.y146{bottom:1078.703888px;}
.y250{bottom:1082.013428px;}
.y1ee{bottom:1084.277527px;}
.y28c{bottom:1086.165344px;}
.y274{bottom:1088.412277px;}
.y18c{bottom:1088.415298px;}
.y40{bottom:1088.415344px;}
.y16b{bottom:1088.419762px;}
.y76{bottom:1088.544342px;}
.ya8{bottom:1089.729332px;}
.y199{bottom:1090.102844px;}
.y2be{bottom:1090.174048px;}
.y335{bottom:1090.498094px;}
.y182{bottom:1090.660217px;}
.y377{bottom:1091.224823px;}
.y3b7{bottom:1091.607275px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3f{bottom:1127.482361px;}
.hd{height:25.204199px;}
.h13{height:30.125331px;}
.h29{height:31.772487px;}
.h15{height:31.773037px;}
.h19{height:31.773586px;}
.h2{height:33.840000px;}
.hb{height:36.006000px;}
.hc{height:36.855469px;}
.h27{height:38.125893px;}
.h8{height:42.360000px;}
.h2b{height:43.074890px;}
.h2c{height:43.730797px;}
.h4{height:44.676000px;}
.h11{height:45.036000px;}
.ha{height:45.186000px;}
.h1a{height:45.603613px;}
.h17{height:45.604163px;}
.h1b{height:45.604254px;}
.h18{height:45.604346px;}
.h16{height:45.607126px;}
.h25{height:45.923964px;}
.h26{height:45.925133px;}
.h20{height:45.925683px;}
.h21{height:45.925866px;}
.h23{height:45.925869px;}
.h24{height:45.926415px;}
.h2a{height:45.926964px;}
.h22{height:45.927514px;}
.h1f{height:52.022603px;}
.h14{height:52.173000px;}
.h9{height:53.160000px;}
.h28{height:53.651817px;}
.h12{height:53.652000px;}
.h3{height:54.862258px;}
.h1d{height:56.921611px;}
.h1e{height:56.921978px;}
.hf{height:59.004000px;}
.h7{height:59.340000px;}
.h10{height:61.380000px;}
.h1c{height:61.380044px;}
.h6{height:64.866000px;}
.he{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x1d{left:80.773854px;}
.x21{left:87.039611px;}
.x7{left:93.545402px;}
.x5{left:97.796100px;}
.x38{left:102.048152px;}
.xd{left:148.114203px;}
.xc{left:150.819603px;}
.x1e{left:223.467911px;}
.x1c{left:227.087594px;}
.x16{left:239.231689px;}
.x1f{left:259.496109px;}
.x22{left:267.821845px;}
.x2a{left:293.388768px;}
.x29{left:295.720207px;}
.xf{left:299.377353px;}
.xe{left:321.862953px;}
.x1b{left:325.590919px;}
.x19{left:326.793755px;}
.x23{left:328.794754px;}
.x31{left:332.292297px;}
.x18{left:358.167458px;}
.x20{left:375.074854px;}
.x1a{left:377.681734px;}
.xb{left:405.483444px;}
.x2c{left:421.435299px;}
.x17{left:424.789948px;}
.x2b{left:440.498245px;}
.x35{left:455.720261px;}
.x4{left:459.215389px;}
.x11{left:473.729248px;}
.x8{left:476.222538px;}
.x24{left:483.012772px;}
.x37{left:484.725290px;}
.xa{left:487.833435px;}
.x10{left:494.643448px;}
.x15{left:503.206635px;}
.x14{left:522.792435px;}
.x26{left:541.595078px;}
.x2e{left:563.332719px;}
.x34{left:569.092760px;}
.x2d{left:581.024231px;}
.x33{left:586.784271px;}
.x30{left:594.051892px;}
.x28{left:611.058609px;}
.x32{left:615.240738px;}
.x9{left:638.830948px;}
.x12{left:654.144287px;}
.x13{left:656.849684px;}
.x25{left:672.360580px;}
.x1{left:728.220612px;}
.x27{left:729.645802px;}
.x2f{left:732.383518px;}
.x36{left:743.217728px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v5{vertical-align:-15.361002pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.924805pt;}
.v4{vertical-align:16.335938pt;}
.v3{vertical-align:18.133301pt;}
.v1{vertical-align:21.333333pt;}
.lsce{letter-spacing:-0.770667pt;}
.ls59{letter-spacing:-0.746667pt;}
.lscd{letter-spacing:-0.634667pt;}
.lscf{letter-spacing:-0.589333pt;}
.ls49{letter-spacing:-0.544000pt;}
.ls5a{letter-spacing:-0.533333pt;}
.lsd0{letter-spacing:-0.498667pt;}
.ls5b{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.426667pt;}
.ls87{letter-spacing:-0.390097pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.320000pt;}
.lsb7{letter-spacing:-0.317333pt;}
.lsc4{letter-spacing:-0.272000pt;}
.ls31{letter-spacing:-0.266667pt;}
.lsba{letter-spacing:-0.226667pt;}
.ls14{letter-spacing:-0.213333pt;}
.lsb8{letter-spacing:-0.181333pt;}
.ls35{letter-spacing:-0.160000pt;}
.lsb9{letter-spacing:-0.136000pt;}
.ls82{letter-spacing:-0.129707pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls86{letter-spacing:-0.097524pt;}
.ls83{letter-spacing:-0.097280pt;}
.lsb6{letter-spacing:-0.090667pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.048762pt;}
.lsb5{letter-spacing:-0.045333pt;}
.ls48{letter-spacing:-0.038530pt;}
.ls13{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000033pt;}
.ls0{letter-spacing:0.000076pt;}
.ls77{letter-spacing:0.012745pt;}
.ls92{letter-spacing:0.024577pt;}
.ls45{letter-spacing:0.026667pt;}
.ls46{letter-spacing:0.038530pt;}
.lsa0{letter-spacing:0.045333pt;}
.ls88{letter-spacing:0.048762pt;}
.ls5c{letter-spacing:0.053324pt;}
.ls18{letter-spacing:0.053333pt;}
.lsb4{letter-spacing:0.068000pt;}
.ls90{letter-spacing:0.069333pt;}
.ls9d{letter-spacing:0.080000pt;}
.lsaa{letter-spacing:0.090667pt;}
.ls81{letter-spacing:0.097280pt;}
.ls9b{letter-spacing:0.097524pt;}
.ls17{letter-spacing:0.106667pt;}
.lsbc{letter-spacing:0.113333pt;}
.ls84{letter-spacing:0.129707pt;}
.ls4a{letter-spacing:0.133333pt;}
.lsaf{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.158926pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8d{letter-spacing:0.164307pt;}
.ls91{letter-spacing:0.165323pt;}
.ls10{letter-spacing:0.181333pt;}
.ls8b{letter-spacing:0.186666pt;}
.ls8a{letter-spacing:0.212243pt;}
.ls1{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.226667pt;}
.lsa6{letter-spacing:0.234667pt;}
.ls95{letter-spacing:0.239991pt;}
.lsa3{letter-spacing:0.249333pt;}
.lsab{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.lsa4{letter-spacing:0.272000pt;}
.ls43{letter-spacing:0.293333pt;}
.lsa9{letter-spacing:0.317333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.331746pt;}
.lsc0{letter-spacing:0.340000pt;}
.ls4b{letter-spacing:0.346667pt;}
.ls76{letter-spacing:0.349284pt;}
.lsa5{letter-spacing:0.362667pt;}
.ls69{letter-spacing:0.373332pt;}
.ls4{letter-spacing:0.373333pt;}
.ls70{letter-spacing:0.400000pt;}
.lsa8{letter-spacing:0.408000pt;}
.lse{letter-spacing:0.426667pt;}
.ls8f{letter-spacing:0.453288pt;}
.ls9e{letter-spacing:0.453333pt;}
.lscb{letter-spacing:0.476000pt;}
.lsb{letter-spacing:0.480000pt;}
.lsbb{letter-spacing:0.498667pt;}
.lsbd{letter-spacing:0.521333pt;}
.ls50{letter-spacing:0.522656pt;}
.ls93{letter-spacing:0.522667pt;}
.ls75{letter-spacing:0.529616pt;}
.ls1e{letter-spacing:0.533333pt;}
.lsa1{letter-spacing:0.544000pt;}
.ls33{letter-spacing:0.560000pt;}
.lsf{letter-spacing:0.586667pt;}
.lsac{letter-spacing:0.589333pt;}
.lsae{letter-spacing:0.634667pt;}
.ls1f{letter-spacing:0.640000pt;}
.lscc{letter-spacing:0.648248pt;}
.lsc3{letter-spacing:0.657333pt;}
.ls4e{letter-spacing:0.658691pt;}
.ls44{letter-spacing:0.666667pt;}
.ls89{letter-spacing:0.677333pt;}
.lsa7{letter-spacing:0.680000pt;}
.ls8c{letter-spacing:0.685285pt;}
.ls9{letter-spacing:0.693333pt;}
.ls9f{letter-spacing:0.725333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls4d{letter-spacing:0.747199pt;}
.lsc1{letter-spacing:0.748000pt;}
.lsc2{letter-spacing:0.770667pt;}
.ls34{letter-spacing:0.773333pt;}
.lsc5{letter-spacing:0.793333pt;}
.ls7{letter-spacing:0.800000pt;}
.lsb0{letter-spacing:0.816000pt;}
.ls6f{letter-spacing:0.834635pt;}
.ls4c{letter-spacing:0.853321pt;}
.ls19{letter-spacing:0.853333pt;}
.lsb1{letter-spacing:0.861333pt;}
.ls1c{letter-spacing:0.880000pt;}
.ls32{letter-spacing:0.906667pt;}
.ls4f{letter-spacing:0.912000pt;}
.ls22{letter-spacing:0.933333pt;}
.ls8e{letter-spacing:0.937068pt;}
.lsad{letter-spacing:0.952000pt;}
.ls74{letter-spacing:0.957845pt;}
.ls72{letter-spacing:0.958337pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc7{letter-spacing:0.997333pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls53{letter-spacing:1.024000pt;}
.lsc6{letter-spacing:1.042667pt;}
.ls37{letter-spacing:1.066667pt;}
.ls54{letter-spacing:1.071994pt;}
.ls38{letter-spacing:1.093333pt;}
.ls26{letter-spacing:1.120000pt;}
.lsb2{letter-spacing:1.133333pt;}
.ls1b{letter-spacing:1.173333pt;}
.lsa2{letter-spacing:1.178667pt;}
.ls6c{letter-spacing:1.206932pt;}
.lsbf{letter-spacing:1.224000pt;}
.ls6{letter-spacing:1.226667pt;}
.ls55{letter-spacing:1.253333pt;}
.lsc{letter-spacing:1.280000pt;}
.lsbe{letter-spacing:1.314667pt;}
.ls71{letter-spacing:1.328062pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls73{letter-spacing:1.345163pt;}
.lsc9{letter-spacing:1.360000pt;}
.ls5d{letter-spacing:1.375992pt;}
.ls39{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.lsc8{letter-spacing:1.450667pt;}
.ls96{letter-spacing:1.466667pt;}
.ls24{letter-spacing:1.493333pt;}
.lsca{letter-spacing:1.496000pt;}
.ls57{letter-spacing:1.514634pt;}
.ls23{letter-spacing:1.520000pt;}
.ls2a{letter-spacing:1.546667pt;}
.ls6e{letter-spacing:1.589345pt;}
.ls25{letter-spacing:1.600000pt;}
.ls51{letter-spacing:1.626667pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls29{letter-spacing:1.680000pt;}
.ls27{letter-spacing:1.706667pt;}
.ls6b{letter-spacing:1.739192pt;}
.ls94{letter-spacing:1.742958pt;}
.ls5e{letter-spacing:1.754667pt;}
.ls2c{letter-spacing:1.760000pt;}
.ls52{letter-spacing:1.802648pt;}
.lsd{letter-spacing:1.813333pt;}
.ls3e{letter-spacing:1.840000pt;}
.ls58{letter-spacing:1.861323pt;}
.ls20{letter-spacing:1.866667pt;}
.ls21{letter-spacing:1.920000pt;}
.ls3c{letter-spacing:1.973333pt;}
.ls2e{letter-spacing:2.026667pt;}
.lsb3{letter-spacing:2.040000pt;}
.ls42{letter-spacing:2.080000pt;}
.ls40{letter-spacing:2.133333pt;}
.ls3a{letter-spacing:2.213333pt;}
.ls6d{letter-spacing:2.240000pt;}
.ls56{letter-spacing:2.250620pt;}
.ls41{letter-spacing:2.293333pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls28{letter-spacing:2.400000pt;}
.ls3b{letter-spacing:2.506667pt;}
.ls3f{letter-spacing:2.773333pt;}
.ls98{letter-spacing:12.114822pt;}
.ls7d{letter-spacing:12.120681pt;}
.ls80{letter-spacing:12.263969pt;}
.ls9c{letter-spacing:12.360427pt;}
.ls7c{letter-spacing:12.361159pt;}
.ls99{letter-spacing:20.357305pt;}
.ls9a{letter-spacing:20.357793pt;}
.ls7f{letter-spacing:20.402745pt;}
.ls7e{letter-spacing:20.408604pt;}
.ls64{letter-spacing:63.711459pt;}
.ls67{letter-spacing:63.711947pt;}
.ls68{letter-spacing:79.577507pt;}
.ls63{letter-spacing:79.578158pt;}
.ls66{letter-spacing:79.578646pt;}
.ls65{letter-spacing:110.631381pt;}
.ls62{letter-spacing:110.631543pt;}
.ls78{letter-spacing:126.218132pt;}
.ls7a{letter-spacing:127.178093pt;}
.ls79{letter-spacing:140.805333pt;}
.ls7b{letter-spacing:141.757333pt;}
.ls5f{letter-spacing:276.261314pt;}
.ls97{letter-spacing:435.600434pt;}
.ls61{letter-spacing:454.240000pt;}
.ls60{letter-spacing:469.381325pt;}
.ws26{word-spacing:-15.040000pt;}
.ws27{word-spacing:-14.773333pt;}
.ws75{word-spacing:-14.400000pt;}
.wsaf{word-spacing:-14.346667pt;}
.ws7{word-spacing:-14.026667pt;}
.ws28{word-spacing:-13.973333pt;}
.wsd0{word-spacing:-13.866667pt;}
.ws94{word-spacing:-13.760000pt;}
.ws50{word-spacing:-13.653333pt;}
.ws66{word-spacing:-13.600000pt;}
.ws67{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.wsd7{word-spacing:-13.184000pt;}
.ws25{word-spacing:-12.928000pt;}
.wsbe{word-spacing:-11.800436pt;}
.wsd8{word-spacing:-11.560000pt;}
.ws9f{word-spacing:-11.333333pt;}
.ws115{word-spacing:-11.106667pt;}
.ws80{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws83{word-spacing:-10.789333pt;}
.ws5{word-spacing:-10.240000pt;}
.wsc5{word-spacing:-9.333333pt;}
.wsd6{word-spacing:-9.157333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws8b{word-spacing:-6.666667pt;}
.wsac{word-spacing:-5.666667pt;}
.ws7d{word-spacing:-2.080000pt;}
.wsf6{word-spacing:-2.040000pt;}
.ws74{word-spacing:-2.026667pt;}
.ws7b{word-spacing:-1.973333pt;}
.ws44{word-spacing:-1.866667pt;}
.ws73{word-spacing:-1.813333pt;}
.ws41{word-spacing:-1.706667pt;}
.ws9{word-spacing:-1.680000pt;}
.ws8a{word-spacing:-1.493333pt;}
.ws55{word-spacing:-1.440000pt;}
.ws6d{word-spacing:-1.386667pt;}
.ws119{word-spacing:-1.360000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.226667pt;}
.ws4f{word-spacing:-1.173333pt;}
.wsdb{word-spacing:-1.133333pt;}
.ws85{word-spacing:-1.120000pt;}
.ws11d{word-spacing:-1.088000pt;}
.ws51{word-spacing:-1.066667pt;}
.ws111{word-spacing:-1.042667pt;}
.ws33{word-spacing:-1.013333pt;}
.wsf3{word-spacing:-0.997333pt;}
.ws15{word-spacing:-0.960000pt;}
.wsea{word-spacing:-0.952000pt;}
.ws43{word-spacing:-0.906667pt;}
.wsde{word-spacing:-0.861333pt;}
.ws86{word-spacing:-0.853333pt;}
.wse{word-spacing:-0.800000pt;}
.ws10f{word-spacing:-0.770667pt;}
.ws35{word-spacing:-0.746667pt;}
.ws10b{word-spacing:-0.725333pt;}
.ws5d{word-spacing:-0.693333pt;}
.wseb{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.wsec{word-spacing:-0.634667pt;}
.ws112{word-spacing:-0.589333pt;}
.ws4e{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.ws5c{word-spacing:-0.533333pt;}
.ws11e{word-spacing:-0.498667pt;}
.ws16{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.453333pt;}
.ws5f{word-spacing:-0.426667pt;}
.wsfc{word-spacing:-0.408000pt;}
.ws4a{word-spacing:-0.373333pt;}
.ws110{word-spacing:-0.362667pt;}
.ws3a{word-spacing:-0.320000pt;}
.wsf9{word-spacing:-0.317333pt;}
.wsdf{word-spacing:-0.272000pt;}
.ws21{word-spacing:-0.266667pt;}
.wse3{word-spacing:-0.234667pt;}
.wse0{word-spacing:-0.226667pt;}
.ws38{word-spacing:-0.213333pt;}
.wse8{word-spacing:-0.181333pt;}
.ws57{word-spacing:-0.160000pt;}
.wse7{word-spacing:-0.136000pt;}
.wsbb{word-spacing:-0.129707pt;}
.ws5a{word-spacing:-0.106667pt;}
.wsc2{word-spacing:-0.097280pt;}
.wsc1{word-spacing:-0.090667pt;}
.ws82{word-spacing:-0.077059pt;}
.ws84{word-spacing:-0.053333pt;}
.wsb8{word-spacing:-0.048762pt;}
.wsf1{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws81{word-spacing:-0.038530pt;}
.wsa{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.038530pt;}
.wsfe{word-spacing:0.045333pt;}
.wsc3{word-spacing:0.048762pt;}
.ws1e{word-spacing:0.053333pt;}
.wsc8{word-spacing:0.064853pt;}
.wsb9{word-spacing:0.097280pt;}
.wsc4{word-spacing:0.097524pt;}
.ws29{word-spacing:0.106667pt;}
.wsce{word-spacing:0.129707pt;}
.wsad{word-spacing:0.136000pt;}
.ws65{word-spacing:0.160000pt;}
.ws103{word-spacing:0.181333pt;}
.ws71{word-spacing:0.213333pt;}
.ws48{word-spacing:0.266667pt;}
.wsae{word-spacing:0.272000pt;}
.wsfa{word-spacing:0.317333pt;}
.ws36{word-spacing:0.320000pt;}
.wscc{word-spacing:0.373333pt;}
.wsff{word-spacing:0.408000pt;}
.ws58{word-spacing:0.426667pt;}
.ws104{word-spacing:0.453333pt;}
.ws30{word-spacing:0.480000pt;}
.ws102{word-spacing:0.498667pt;}
.ws78{word-spacing:0.533333pt;}
.ws116{word-spacing:0.544000pt;}
.ws109{word-spacing:0.634667pt;}
.ws87{word-spacing:0.640000pt;}
.ws105{word-spacing:0.680000pt;}
.ws6e{word-spacing:0.693333pt;}
.wse4{word-spacing:0.725333pt;}
.ws2f{word-spacing:0.746667pt;}
.wsf8{word-spacing:0.770667pt;}
.ws6f{word-spacing:0.800000pt;}
.ws69{word-spacing:0.853333pt;}
.wse1{word-spacing:0.906667pt;}
.wse5{word-spacing:0.952000pt;}
.ws64{word-spacing:1.013333pt;}
.wse9{word-spacing:1.042667pt;}
.ws4b{word-spacing:1.066667pt;}
.ws76{word-spacing:1.120000pt;}
.wsdc{word-spacing:1.133333pt;}
.ws5e{word-spacing:1.173333pt;}
.wsed{word-spacing:1.224000pt;}
.ws5b{word-spacing:1.226667pt;}
.ws11b{word-spacing:1.269333pt;}
.wsc{word-spacing:1.280000pt;}
.wsee{word-spacing:1.314667pt;}
.wsd{word-spacing:1.333333pt;}
.wsd9{word-spacing:1.360000pt;}
.ws1f{word-spacing:1.386667pt;}
.wsc0{word-spacing:1.405333pt;}
.ws1c{word-spacing:1.440000pt;}
.wsfb{word-spacing:1.450667pt;}
.ws63{word-spacing:1.493333pt;}
.ws101{word-spacing:1.541333pt;}
.ws13{word-spacing:1.546667pt;}
.ws10c{word-spacing:1.586667pt;}
.ws1d{word-spacing:1.600000pt;}
.wsf4{word-spacing:1.632000pt;}
.ws39{word-spacing:1.653333pt;}
.wse6{word-spacing:1.677333pt;}
.ws12{word-spacing:1.706667pt;}
.ws100{word-spacing:1.722667pt;}
.ws68{word-spacing:1.760000pt;}
.ws108{word-spacing:1.768000pt;}
.ws34{word-spacing:1.813333pt;}
.ws10a{word-spacing:1.858667pt;}
.ws3e{word-spacing:1.866667pt;}
.ws11{word-spacing:1.920000pt;}
.wsda{word-spacing:1.949333pt;}
.ws2d{word-spacing:1.973333pt;}
.wse2{word-spacing:1.994667pt;}
.ws20{word-spacing:2.026667pt;}
.ws10e{word-spacing:2.040000pt;}
.ws42{word-spacing:2.080000pt;}
.ws11f{word-spacing:2.085333pt;}
.ws96{word-spacing:2.133333pt;}
.ws11c{word-spacing:2.176000pt;}
.ws3f{word-spacing:2.186667pt;}
.ws95{word-spacing:2.240000pt;}
.ws114{word-spacing:2.266667pt;}
.ws97{word-spacing:2.293333pt;}
.wsf0{word-spacing:2.312000pt;}
.ws53{word-spacing:2.346667pt;}
.ws10d{word-spacing:2.357333pt;}
.ws2a{word-spacing:2.400000pt;}
.ws113{word-spacing:2.448000pt;}
.ws49{word-spacing:2.453333pt;}
.wsf2{word-spacing:2.538667pt;}
.ws60{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.613333pt;}
.ws8e{word-spacing:2.629333pt;}
.ws6a{word-spacing:2.666667pt;}
.wsfd{word-spacing:2.674667pt;}
.ws17{word-spacing:2.720000pt;}
.ws2b{word-spacing:2.773333pt;}
.wsbf{word-spacing:2.826667pt;}
.ws14{word-spacing:2.880000pt;}
.ws31{word-spacing:2.933333pt;}
.wsef{word-spacing:2.946667pt;}
.ws47{word-spacing:2.986667pt;}
.ws9c{word-spacing:2.992000pt;}
.ws45{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.093333pt;}
.ws7c{word-spacing:3.146667pt;}
.ws9d{word-spacing:3.173333pt;}
.ws32{word-spacing:3.200000pt;}
.ws9a{word-spacing:3.306667pt;}
.wsca{word-spacing:3.360000pt;}
.ws7a{word-spacing:3.413333pt;}
.ws117{word-spacing:3.445333pt;}
.ws6b{word-spacing:3.466667pt;}
.ws3c{word-spacing:3.520000pt;}
.ws54{word-spacing:3.573333pt;}
.ws46{word-spacing:3.680000pt;}
.ws8f{word-spacing:3.717333pt;}
.ws72{word-spacing:3.733333pt;}
.wsd5{word-spacing:3.786667pt;}
.ws3d{word-spacing:3.893333pt;}
.wsbd{word-spacing:3.936759pt;}
.wsf5{word-spacing:3.944000pt;}
.ws2e{word-spacing:3.946667pt;}
.ws6c{word-spacing:4.000000pt;}
.wsc6{word-spacing:4.036643pt;}
.wsc7{word-spacing:4.038762pt;}
.ws10{word-spacing:4.053333pt;}
.ws37{word-spacing:4.106667pt;}
.wsba{word-spacing:4.118837pt;}
.wsab{word-spacing:4.160000pt;}
.wsdd{word-spacing:4.261333pt;}
.ws77{word-spacing:4.266667pt;}
.wsd3{word-spacing:4.320000pt;}
.ws107{word-spacing:4.352000pt;}
.wsd4{word-spacing:4.373333pt;}
.ws18{word-spacing:4.426667pt;}
.ws4c{word-spacing:4.480000pt;}
.ws62{word-spacing:4.533333pt;}
.ws2c{word-spacing:4.640000pt;}
.ws106{word-spacing:4.850667pt;}
.ws70{word-spacing:4.853333pt;}
.ws40{word-spacing:4.906667pt;}
.ws7e{word-spacing:4.960000pt;}
.ws91{word-spacing:5.032000pt;}
.ws56{word-spacing:5.173333pt;}
.wsd2{word-spacing:5.226667pt;}
.ws89{word-spacing:5.333333pt;}
.ws88{word-spacing:5.546667pt;}
.ws118{word-spacing:5.576000pt;}
.ws1a{word-spacing:5.706667pt;}
.ws11a{word-spacing:5.757333pt;}
.wsd1{word-spacing:5.866667pt;}
.ws9b{word-spacing:5.984000pt;}
.ws59{word-spacing:6.026667pt;}
.ws61{word-spacing:6.293333pt;}
.ws98{word-spacing:6.400000pt;}
.ws99{word-spacing:6.453333pt;}
.ws79{word-spacing:6.560000pt;}
.ws93{word-spacing:6.845333pt;}
.wscd{word-spacing:6.933333pt;}
.ws7f{word-spacing:6.986667pt;}
.ws1b{word-spacing:7.146667pt;}
.wscb{word-spacing:7.360000pt;}
.ws90{word-spacing:7.752000pt;}
.ws92{word-spacing:8.024000pt;}
.wsf7{word-spacing:8.477333pt;}
.wscf{word-spacing:8.794667pt;}
.ws9e{word-spacing:11.106667pt;}
.ws120{word-spacing:12.149333pt;}
.ws8d{word-spacing:13.146667pt;}
.ws121{word-spacing:15.821333pt;}
.wsbc{word-spacing:16.230816pt;}
.wsb4{word-spacing:33.773328pt;}
.wsb3{word-spacing:33.773333pt;}
.wsb7{word-spacing:34.725333pt;}
.wsc9{word-spacing:36.620362pt;}
.wsb1{word-spacing:43.837333pt;}
.wsb2{word-spacing:44.336000pt;}
.wsb6{word-spacing:44.789333pt;}
.wsa1{word-spacing:55.777996pt;}
.wsa4{word-spacing:55.778159pt;}
.wsa7{word-spacing:55.778647pt;}
.ws24{word-spacing:64.237333pt;}
.wsa6{word-spacing:68.226667pt;}
.wsa2{word-spacing:70.964845pt;}
.wsa8{word-spacing:84.093333pt;}
.wsa5{word-spacing:86.831381pt;}
.wsa3{word-spacing:86.831544pt;}
.wsaa{word-spacing:99.280000pt;}
.wsa9{word-spacing:115.146667pt;}
.wsa0{word-spacing:149.146667pt;}
.wsb0{word-spacing:482.437333pt;}
.wsb5{word-spacing:484.386645pt;}
._13{margin-left:-808.081268pt;}
._12{margin-left:-753.908647pt;}
._8{margin-left:-14.733333pt;}
._19{margin-left:-11.429333pt;}
._14{margin-left:-10.408009pt;}
._16{margin-left:-9.440000pt;}
._10{margin-left:-8.544000pt;}
._2{margin-left:-7.509333pt;}
._7{margin-left:-5.813333pt;}
._17{margin-left:-4.853333pt;}
._5{margin-left:-3.946667pt;}
._1{margin-left:-2.986667pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.114667pt;}
._d{width:2.202667pt;}
._c{width:3.098667pt;}
._6{width:4.122667pt;}
._18{width:5.349326pt;}
._e{width:6.405333pt;}
._11{width:8.639990pt;}
._30{width:9.760000pt;}
._1a{width:11.221324pt;}
._15{width:12.613333pt;}
._f{width:13.872000pt;}
._9{width:16.320000pt;}
._3{width:35.150924pt;}
._3a{width:45.106661pt;}
._44{width:46.058667pt;}
._a{width:48.552000pt;}
._3c{width:50.546677pt;}
._36{width:58.933333pt;}
._41{width:60.066666pt;}
._2d{width:63.330651pt;}
._34{width:67.773333pt;}
._40{width:68.725333pt;}
._31{width:78.934936pt;}
._3d{width:79.879560pt;}
._33{width:90.439995pt;}
._3f{width:91.392000pt;}
._35{width:93.069328pt;}
._37{width:94.202667pt;}
._2e{width:95.426667pt;}
._25{width:101.677317pt;}
._2f{width:110.781461pt;}
._3b{width:115.010667pt;}
._46{width:115.962667pt;}
._39{width:117.504000pt;}
._43{width:118.456000pt;}
._2a{width:126.493902pt;}
._38{width:140.805333pt;}
._42{width:141.757333pt;}
._24{width:144.613333pt;}
._45{width:146.381333pt;}
._26{width:160.480000pt;}
._2c{width:163.063984pt;}
._32{width:182.058667pt;}
._3e{width:183.010667pt;}
._1b{width:197.743991pt;}
._28{width:205.903984pt;}
._1d{width:210.754648pt;}
._2b{width:220.591984pt;}
._29{width:229.477317pt;}
._1c{width:263.381333pt;}
._27{width:272.317317pt;}
._22{width:379.394667pt;}
._1f{width:388.733333pt;}
._23{width:390.930651pt;}
._1e{width:403.874658pt;}
._21{width:436.922667pt;}
._20{width:445.808000pt;}
._b{width:2285.570620pt;}
.fs6{font-size:31.733332pt;}
.fsc{font-size:32.426667pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:38.529600pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fsb{font-size:48.762133pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:57.600000pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y198{bottom:100.385600pt;}
.y259{bottom:100.389600pt;}
.y18b{bottom:100.405600pt;}
.y1e7{bottom:100.717600pt;}
.yfe{bottom:100.813599pt;}
.y74{bottom:100.813639pt;}
.ya7{bottom:100.928263pt;}
.y16a{bottom:100.937602pt;}
.y2bd{bottom:101.590265pt;}
.y1d7{bottom:101.717590pt;}
.y239{bottom:101.798400pt;}
.yda{bottom:101.986796pt;}
.y2fa{bottom:102.010944pt;}
.y334{bottom:102.660306pt;}
.y376{bottom:103.011639pt;}
.y3e{bottom:104.917603pt;}
.y2d{bottom:109.309733pt;}
.y18a{bottom:113.733600pt;}
.y2bc{bottom:114.918265pt;}
.y2f9{bottom:115.338944pt;}
.y333{bottom:115.988306pt;}
.y375{bottom:116.339639pt;}
.y197{bottom:117.052266pt;}
.y1e6{bottom:117.384267pt;}
.yfd{bottom:117.480265pt;}
.y73{bottom:117.480306pt;}
.ya6{bottom:117.594930pt;}
.y169{bottom:117.604268pt;}
.y258{bottom:118.250936pt;}
.y1d6{bottom:118.384257pt;}
.y238{bottom:118.465067pt;}
.yd9{bottom:118.653463pt;}
.y13e{bottom:119.810140pt;}
.y11f{bottom:120.810140pt;}
.y3d{bottom:124.959605pt;}
.y2c{bottom:125.976400pt;}
.y189{bottom:127.061600pt;}
.y2bb{bottom:128.246265pt;}
.y2f8{bottom:128.666944pt;}
.y332{bottom:129.316306pt;}
.y374{bottom:129.667639pt;}
.y3b6{bottom:130.313620pt;}
.y196{bottom:133.718933pt;}
.y1e5{bottom:134.050924pt;}
.yfc{bottom:134.146932pt;}
.y72{bottom:134.146973pt;}
.ya5{bottom:134.261597pt;}
.y168{bottom:134.270935pt;}
.y1d5{bottom:135.050924pt;}
.y237{bottom:135.131733pt;}
.y13d{bottom:136.476807pt;}
.y11e{bottom:137.476807pt;}
.y188{bottom:140.389600pt;}
.y3c{bottom:140.473595pt;}
.y2ba{bottom:141.574265pt;}
.y2f7{bottom:141.994944pt;}
.y2b{bottom:142.643066pt;}
.y331{bottom:142.644306pt;}
.y373{bottom:142.995639pt;}
.y3b5{bottom:143.641620pt;}
.y3f4{bottom:143.890912pt;}
.y195{bottom:150.385600pt;}
.y1e4{bottom:150.717590pt;}
.yfb{bottom:150.813599pt;}
.y71{bottom:150.813639pt;}
.ya4{bottom:150.928263pt;}
.y1d4{bottom:151.717590pt;}
.y236{bottom:151.798400pt;}
.yd8{bottom:151.992129pt;}
.y13c{bottom:153.143473pt;}
.y11d{bottom:154.143473pt;}
.y2b9{bottom:154.902265pt;}
.y2f6{bottom:155.322944pt;}
.y330{bottom:155.972306pt;}
.y372{bottom:156.323639pt;}
.y3b4{bottom:156.969620pt;}
.y3f3{bottom:157.218912pt;}
.y187{bottom:158.250936pt;}
.y3b{bottom:158.334930pt;}
.y2a{bottom:159.309733pt;}
.y194{bottom:167.052266pt;}
.y1e3{bottom:167.384257pt;}
.yfa{bottom:167.480265pt;}
.y70{bottom:167.480306pt;}
.ya3{bottom:167.594930pt;}
.y167{bottom:167.604268pt;}
.y2b8{bottom:168.230265pt;}
.y1d3{bottom:168.384257pt;}
.y235{bottom:168.465067pt;}
.y2f5{bottom:168.650944pt;}
.yd7{bottom:168.653463pt;}
.y32f{bottom:169.300306pt;}
.y371{bottom:169.651639pt;}
.y13b{bottom:169.810140pt;}
.y3b3{bottom:170.297620pt;}
.y11c{bottom:170.810140pt;}
.y29{bottom:175.976400pt;}
.y3a{bottom:180.611353pt;}
.y2b7{bottom:181.558265pt;}
.y2f4{bottom:181.978944pt;}
.y32e{bottom:182.628306pt;}
.y370{bottom:182.979639pt;}
.y3b2{bottom:183.625620pt;}
.y193{bottom:183.718933pt;}
.y3f2{bottom:183.965578pt;}
.y1e2{bottom:184.050924pt;}
.yf9{bottom:184.146932pt;}
.y6f{bottom:184.146973pt;}
.ya2{bottom:184.261597pt;}
.y1d2{bottom:185.050924pt;}
.y234{bottom:185.131733pt;}
.y13a{bottom:186.476807pt;}
.y11b{bottom:187.476807pt;}
.y28{bottom:192.643066pt;}
.y39{bottom:193.939353pt;}
.y2b6{bottom:194.886265pt;}
.y2f3{bottom:195.306944pt;}
.y32d{bottom:195.956306pt;}
.y36f{bottom:196.307639pt;}
.y3b1{bottom:196.953620pt;}
.y3f1{bottom:197.293578pt;}
.y1e1{bottom:200.717590pt;}
.yf8{bottom:200.813599pt;}
.y6e{bottom:200.813639pt;}
.ya1{bottom:200.928263pt;}
.y166{bottom:200.937602pt;}
.y1d1{bottom:201.717590pt;}
.y233{bottom:201.798400pt;}
.yd6{bottom:201.981628pt;}
.y139{bottom:203.143473pt;}
.y11a{bottom:204.143473pt;}
.y2f2{bottom:208.634944pt;}
.y32c{bottom:209.284306pt;}
.y27{bottom:209.309733pt;}
.y36e{bottom:209.635639pt;}
.y3b0{bottom:210.281620pt;}
.y3f0{bottom:210.621578pt;}
.y1e0{bottom:217.384257pt;}
.yf7{bottom:217.480265pt;}
.y6d{bottom:217.480306pt;}
.ya0{bottom:217.594930pt;}
.y1d0{bottom:218.384257pt;}
.y232{bottom:218.465067pt;}
.yd5{bottom:218.648295pt;}
.y138{bottom:219.810140pt;}
.y119{bottom:220.810140pt;}
.y38{bottom:221.332020pt;}
.y2b5{bottom:221.553599pt;}
.y2f1{bottom:221.962944pt;}
.y32b{bottom:222.612306pt;}
.y36d{bottom:222.963639pt;}
.y3af{bottom:223.609620pt;}
.y3ef{bottom:223.949578pt;}
.y26{bottom:225.976400pt;}
.y1df{bottom:234.050924pt;}
.yf6{bottom:234.146932pt;}
.y6c{bottom:234.146973pt;}
.y9f{bottom:234.261597pt;}
.y37{bottom:234.660020pt;}
.y2b4{bottom:234.881599pt;}
.y1cf{bottom:235.050924pt;}
.y231{bottom:235.131733pt;}
.y2f0{bottom:235.290944pt;}
.yd4{bottom:235.314962pt;}
.y32a{bottom:235.940306pt;}
.y36c{bottom:236.291639pt;}
.y137{bottom:236.476807pt;}
.y3ae{bottom:236.937620pt;}
.y3ee{bottom:237.277578pt;}
.y1bd{bottom:237.419332pt;}
.y118{bottom:237.476807pt;}
.y25{bottom:242.643066pt;}
.y36{bottom:247.988020pt;}
.y2ef{bottom:248.618944pt;}
.y329{bottom:249.268306pt;}
.y36b{bottom:249.619639pt;}
.y1bc{bottom:250.021066pt;}
.y3ad{bottom:250.265620pt;}
.y3ed{bottom:250.605578pt;}
.y1de{bottom:250.717590pt;}
.yf5{bottom:250.813599pt;}
.y6b{bottom:250.813639pt;}
.y9e{bottom:250.928263pt;}
.y165{bottom:250.937581pt;}
.y1ce{bottom:251.717590pt;}
.yd3{bottom:251.981628pt;}
.y136{bottom:253.143473pt;}
.y117{bottom:254.143473pt;}
.y24{bottom:259.309733pt;}
.y35{bottom:261.316020pt;}
.y2ee{bottom:261.946944pt;}
.y328{bottom:262.596306pt;}
.y36a{bottom:262.947639pt;}
.y1bb{bottom:263.349066pt;}
.y3ac{bottom:263.593620pt;}
.y3ec{bottom:263.933578pt;}
.y1dd{bottom:267.384257pt;}
.yf4{bottom:267.480265pt;}
.y6a{bottom:267.480306pt;}
.y9d{bottom:267.594930pt;}
.y164{bottom:267.604248pt;}
.y2b3{bottom:268.167599pt;}
.y1cd{bottom:268.384257pt;}
.y230{bottom:268.465067pt;}
.yd2{bottom:268.648295pt;}
.y135{bottom:269.810140pt;}
.y116{bottom:270.810140pt;}
.y34{bottom:274.644020pt;}
.y2ed{bottom:275.274944pt;}
.y327{bottom:275.924306pt;}
.y23{bottom:275.976400pt;}
.y369{bottom:276.275639pt;}
.y3ab{bottom:276.921620pt;}
.y3eb{bottom:277.261578pt;}
.y2b2{bottom:281.495599pt;}
.y1dc{bottom:284.050924pt;}
.yf3{bottom:284.146932pt;}
.y69{bottom:284.146973pt;}
.y163{bottom:284.270915pt;}
.y273{bottom:285.050924pt;}
.y1cc{bottom:285.050944pt;}
.yd1{bottom:285.314962pt;}
.y134{bottom:286.476807pt;}
.y115{bottom:287.476807pt;}
.y33{bottom:287.972020pt;}
.y1c6{bottom:288.450399pt;}
.y2ec{bottom:288.602944pt;}
.y326{bottom:289.252306pt;}
.y368{bottom:289.603639pt;}
.y3aa{bottom:290.249620pt;}
.y3ea{bottom:290.589578pt;}
.y22{bottom:292.643066pt;}
.y1db{bottom:300.717590pt;}
.yf2{bottom:300.813599pt;}
.y68{bottom:300.813639pt;}
.y9c{bottom:300.928263pt;}
.y162{bottom:300.937581pt;}
.y32{bottom:301.300020pt;}
.y1cb{bottom:301.717611pt;}
.y22f{bottom:301.798381pt;}
.y2eb{bottom:301.930944pt;}
.yd0{bottom:301.981628pt;}
.y325{bottom:302.580306pt;}
.y367{bottom:302.931639pt;}
.y133{bottom:303.143473pt;}
.y3a9{bottom:303.577620pt;}
.y3e9{bottom:303.917578pt;}
.y114{bottom:304.143473pt;}
.y1c5{bottom:305.150391pt;}
.y2b1{bottom:308.162932pt;}
.y21{bottom:309.309733pt;}
.y31{bottom:314.628020pt;}
.y2ea{bottom:315.258944pt;}
.y324{bottom:315.908306pt;}
.y366{bottom:316.259639pt;}
.y3a8{bottom:316.905620pt;}
.y3e8{bottom:317.245578pt;}
.y1da{bottom:317.384257pt;}
.yf1{bottom:317.480265pt;}
.y67{bottom:317.480306pt;}
.y161{bottom:317.604248pt;}
.y1ca{bottom:318.384277pt;}
.y272{bottom:318.389590pt;}
.y22e{bottom:318.465047pt;}
.ycf{bottom:318.648295pt;}
.y132{bottom:319.810140pt;}
.y113{bottom:320.810140pt;}
.y2b0{bottom:321.490932pt;}
.y1c4{bottom:321.783732pt;}
.y20{bottom:325.976400pt;}
.y30{bottom:327.956020pt;}
.y2e9{bottom:328.586944pt;}
.y323{bottom:329.236306pt;}
.y365{bottom:329.587639pt;}
.y3a7{bottom:330.233620pt;}
.y3e7{bottom:330.573578pt;}
.y1d9{bottom:334.050924pt;}
.yf0{bottom:334.146932pt;}
.y66{bottom:334.146973pt;}
.y9b{bottom:334.261637pt;}
.y160{bottom:334.270915pt;}
.y2af{bottom:334.818932pt;}
.y271{bottom:335.050924pt;}
.y1c9{bottom:335.050944pt;}
.y22d{bottom:335.131714pt;}
.yce{bottom:335.314962pt;}
.y131{bottom:336.476807pt;}
.y112{bottom:337.476807pt;}
.y1c3{bottom:338.417074pt;}
.y2f{bottom:341.284020pt;}
.y2e8{bottom:341.914944pt;}
.y322{bottom:342.564306pt;}
.y1f{bottom:342.643066pt;}
.y364{bottom:342.915639pt;}
.y3a6{bottom:343.561620pt;}
.y3e6{bottom:343.901578pt;}
.y2ae{bottom:348.146932pt;}
.yef{bottom:350.813599pt;}
.y65{bottom:350.813639pt;}
.y9a{bottom:350.928304pt;}
.y15f{bottom:350.937581pt;}
.y1c8{bottom:351.717611pt;}
.y22c{bottom:351.798381pt;}
.ycd{bottom:351.981628pt;}
.y130{bottom:353.143473pt;}
.y111{bottom:354.143473pt;}
.y2e{bottom:354.612020pt;}
.y1c2{bottom:355.050415pt;}
.y2e7{bottom:355.242944pt;}
.y321{bottom:355.892306pt;}
.y363{bottom:356.243639pt;}
.y3a5{bottom:356.889620pt;}
.y3e5{bottom:357.229578pt;}
.y1e{bottom:359.309733pt;}
.y1d8{bottom:367.384277pt;}
.yee{bottom:367.480265pt;}
.y64{bottom:367.480306pt;}
.y99{bottom:367.594971pt;}
.y15e{bottom:367.604248pt;}
.y1c7{bottom:368.384277pt;}
.y22b{bottom:368.465047pt;}
.y243{bottom:368.465088pt;}
.y2e6{bottom:368.570944pt;}
.ycc{bottom:368.648295pt;}
.y320{bottom:369.220306pt;}
.y362{bottom:369.571639pt;}
.y12f{bottom:369.810140pt;}
.y3a4{bottom:370.217620pt;}
.y3e4{bottom:370.557578pt;}
.y110{bottom:370.810140pt;}
.y1c1{bottom:371.683716pt;}
.y2ad{bottom:374.813599pt;}
.y1d{bottom:375.976400pt;}
.y270{bottom:376.265625pt;}
.y2e5{bottom:381.898944pt;}
.y31f{bottom:382.548306pt;}
.y361{bottom:382.899639pt;}
.y3a3{bottom:383.545620pt;}
.y3e3{bottom:383.885578pt;}
.yed{bottom:384.146932pt;}
.y63{bottom:384.146973pt;}
.y98{bottom:384.261637pt;}
.y15d{bottom:384.270915pt;}
.y22a{bottom:385.131714pt;}
.y242{bottom:385.131755pt;}
.ycb{bottom:385.314962pt;}
.y12e{bottom:386.476807pt;}
.y10f{bottom:387.476807pt;}
.y1c0{bottom:388.317057pt;}
.y1c{bottom:392.643066pt;}
.y26f{bottom:392.932292pt;}
.y1ba{bottom:395.110400pt;}
.y2e4{bottom:395.226944pt;}
.y31e{bottom:395.876306pt;}
.y360{bottom:396.227639pt;}
.y3a2{bottom:396.873620pt;}
.y3e2{bottom:397.213578pt;}
.yec{bottom:400.813599pt;}
.y62{bottom:400.813639pt;}
.y97{bottom:400.928304pt;}
.y15c{bottom:400.937581pt;}
.y229{bottom:401.798381pt;}
.y241{bottom:401.798421pt;}
.yca{bottom:401.981628pt;}
.y12d{bottom:403.143473pt;}
.y10e{bottom:404.143473pt;}
.y1bf{bottom:404.949740pt;}
.y1b9{bottom:408.438400pt;}
.y2e3{bottom:408.554944pt;}
.y31d{bottom:409.204306pt;}
.y1b{bottom:409.309733pt;}
.y35f{bottom:409.555639pt;}
.y26e{bottom:409.598958pt;}
.y3a1{bottom:410.201620pt;}
.y3e1{bottom:410.541578pt;}
.y2ac{bottom:415.538265pt;}
.yeb{bottom:417.480265pt;}
.y61{bottom:417.480306pt;}
.y96{bottom:417.594971pt;}
.y15b{bottom:417.604248pt;}
.y228{bottom:418.465047pt;}
.y240{bottom:418.465088pt;}
.yc9{bottom:418.648295pt;}
.y12c{bottom:419.810140pt;}
.y10d{bottom:420.810140pt;}
.y1b8{bottom:421.766400pt;}
.y2e2{bottom:421.882944pt;}
.y31c{bottom:422.532306pt;}
.y35e{bottom:422.883639pt;}
.y3a0{bottom:423.529620pt;}
.y3e0{bottom:423.869578pt;}
.y1a{bottom:425.976400pt;}
.y26d{bottom:426.265625pt;}
.y2ab{bottom:428.866265pt;}
.y1be{bottom:429.917074pt;}
.yea{bottom:434.146932pt;}
.y60{bottom:434.146973pt;}
.y95{bottom:434.261637pt;}
.y15a{bottom:434.270915pt;}
.y1b7{bottom:435.094400pt;}
.y227{bottom:435.131714pt;}
.y23f{bottom:435.131755pt;}
.y2e1{bottom:435.210944pt;}
.yc8{bottom:435.314962pt;}
.y31b{bottom:435.860306pt;}
.y35d{bottom:436.211639pt;}
.y12b{bottom:436.476807pt;}
.y39f{bottom:436.857620pt;}
.y3df{bottom:437.197578pt;}
.y10c{bottom:437.476807pt;}
.y2aa{bottom:442.194265pt;}
.y26c{bottom:442.932292pt;}
.y218{bottom:447.637392pt;}
.y2e0{bottom:448.538944pt;}
.y31a{bottom:449.188306pt;}
.y35c{bottom:449.539639pt;}
.y39e{bottom:450.185620pt;}
.y3de{bottom:450.525578pt;}
.ye9{bottom:450.813599pt;}
.y5f{bottom:450.813639pt;}
.y94{bottom:450.928304pt;}
.y159{bottom:450.937581pt;}
.y226{bottom:451.798381pt;}
.y23e{bottom:451.798421pt;}
.yc7{bottom:451.981628pt;}
.y10b{bottom:454.143473pt;}
.y2a9{bottom:455.522265pt;}
.y26b{bottom:459.598958pt;}
.y20a{bottom:461.472941pt;}
.y2df{bottom:461.866944pt;}
.y319{bottom:462.516306pt;}
.y35b{bottom:462.867639pt;}
.y39d{bottom:463.513620pt;}
.y3dd{bottom:463.853578pt;}
.ye8{bottom:467.480265pt;}
.y5e{bottom:467.480306pt;}
.y93{bottom:467.594971pt;}
.y158{bottom:467.604248pt;}
.y23d{bottom:468.465088pt;}
.yc6{bottom:468.648295pt;}
.y12a{bottom:469.810140pt;}
.y10a{bottom:470.810140pt;}
.y2de{bottom:475.194944pt;}
.y20d{bottom:475.675064pt;}
.y217{bottom:475.675618pt;}
.y318{bottom:475.844306pt;}
.y19{bottom:475.976400pt;}
.y35a{bottom:476.195639pt;}
.y26a{bottom:476.265625pt;}
.y39c{bottom:476.841620pt;}
.y3dc{bottom:477.181578pt;}
.y2a8{bottom:482.189599pt;}
.ye7{bottom:484.146932pt;}
.y5d{bottom:484.146973pt;}
.y92{bottom:484.261637pt;}
.y157{bottom:484.270915pt;}
.y225{bottom:485.131714pt;}
.y23c{bottom:485.131755pt;}
.yc5{bottom:485.314962pt;}
.y129{bottom:486.476807pt;}
.y109{bottom:487.476807pt;}
.y1ad{bottom:487.695475pt;}
.y2dd{bottom:488.522944pt;}
.y317{bottom:489.172306pt;}
.y359{bottom:489.523639pt;}
.y39b{bottom:490.169620pt;}
.y3db{bottom:490.509578pt;}
.y18{bottom:492.643066pt;}
.y269{bottom:492.932292pt;}
.y211{bottom:492.985789pt;}
.y20f{bottom:493.351603pt;}
.y2a7{bottom:495.517599pt;}
.y1ac{bottom:500.264689pt;}
.ye6{bottom:500.813599pt;}
.y5c{bottom:500.813639pt;}
.y91{bottom:500.928304pt;}
.y23b{bottom:501.798421pt;}
.y2dc{bottom:501.850944pt;}
.yc4{bottom:501.981628pt;}
.y316{bottom:502.500306pt;}
.y358{bottom:502.851639pt;}
.y128{bottom:503.143473pt;}
.y39a{bottom:503.497620pt;}
.y207{bottom:503.627604pt;}
.y3da{bottom:503.837578pt;}
.y108{bottom:504.143473pt;}
.y2a6{bottom:508.845599pt;}
.y268{bottom:509.598958pt;}
.y206{bottom:512.461034pt;}
.y1ab{bottom:513.592689pt;}
.y2db{bottom:515.178944pt;}
.y315{bottom:515.828306pt;}
.y357{bottom:516.179639pt;}
.y399{bottom:516.825620pt;}
.y3d9{bottom:517.165578pt;}
.ye5{bottom:517.480265pt;}
.y5b{bottom:517.480306pt;}
.y90{bottom:517.594971pt;}
.y156{bottom:517.604248pt;}
.y224{bottom:518.465047pt;}
.y23a{bottom:518.465088pt;}
.yc3{bottom:518.648295pt;}
.y210{bottom:519.256388pt;}
.y127{bottom:519.810140pt;}
.y107{bottom:520.810140pt;}
.y2a5{bottom:522.173599pt;}
.y20c{bottom:525.717204pt;}
.y205{bottom:525.789034pt;}
.y17{bottom:525.976400pt;}
.y267{bottom:526.265625pt;}
.y2da{bottom:528.506944pt;}
.y314{bottom:529.156306pt;}
.y356{bottom:529.507639pt;}
.y398{bottom:530.153620pt;}
.y3d8{bottom:530.493578pt;}
.ye4{bottom:534.146932pt;}
.y5a{bottom:534.146973pt;}
.y8f{bottom:534.261637pt;}
.y223{bottom:535.131755pt;}
.yc2{bottom:535.314962pt;}
.y2a4{bottom:535.501599pt;}
.y126{bottom:536.476807pt;}
.y106{bottom:537.476807pt;}
.y1b6{bottom:538.726400pt;}
.y204{bottom:539.117034pt;}
.y216{bottom:539.553623pt;}
.y2d9{bottom:541.834944pt;}
.y313{bottom:542.484306pt;}
.y16{bottom:542.643066pt;}
.y355{bottom:542.835639pt;}
.y266{bottom:542.932292pt;}
.y397{bottom:543.481620pt;}
.y3d7{bottom:543.821578pt;}
.y213{bottom:547.050852pt;}
.y2a3{bottom:548.829599pt;}
.y20e{bottom:550.463989pt;}
.ye3{bottom:550.813599pt;}
.y59{bottom:550.813639pt;}
.y8e{bottom:550.928304pt;}
.y155{bottom:550.937581pt;}
.y222{bottom:551.798421pt;}
.yc1{bottom:551.981628pt;}
.y203{bottom:552.445034pt;}
.y125{bottom:553.143473pt;}
.y105{bottom:554.143473pt;}
.y2d8{bottom:555.162944pt;}
.y208{bottom:555.279215pt;}
.y1b5{bottom:555.426392pt;}
.y312{bottom:555.812306pt;}
.y354{bottom:556.163639pt;}
.y396{bottom:556.809620pt;}
.y3d6{bottom:557.149578pt;}
.y15{bottom:559.309733pt;}
.y265{bottom:559.598958pt;}
.y2a2{bottom:562.157599pt;}
.y202{bottom:565.773034pt;}
.y215{bottom:566.007080pt;}
.ye2{bottom:567.480265pt;}
.y58{bottom:567.480306pt;}
.y8d{bottom:567.594971pt;}
.y154{bottom:567.604248pt;}
.y221{bottom:568.465088pt;}
.y2d7{bottom:568.490944pt;}
.yc0{bottom:568.648295pt;}
.y311{bottom:569.140306pt;}
.y353{bottom:569.491639pt;}
.y124{bottom:569.810140pt;}
.y395{bottom:570.137620pt;}
.y3d5{bottom:570.477578pt;}
.y104{bottom:570.810140pt;}
.y1b4{bottom:572.059733pt;}
.y212{bottom:573.321452pt;}
.y2a1{bottom:575.485599pt;}
.y14{bottom:575.976400pt;}
.y264{bottom:576.265625pt;}
.y201{bottom:579.101034pt;}
.y2d6{bottom:581.818944pt;}
.y310{bottom:582.468306pt;}
.y352{bottom:582.819639pt;}
.y394{bottom:583.465620pt;}
.y3d4{bottom:583.805578pt;}
.y214{bottom:583.865907pt;}
.y28b{bottom:584.144246pt;}
.ye1{bottom:584.146932pt;}
.y57{bottom:584.146973pt;}
.y8c{bottom:584.261637pt;}
.y153{bottom:584.270915pt;}
.y220{bottom:585.131755pt;}
.ybf{bottom:585.314962pt;}
.y123{bottom:586.476807pt;}
.y103{bottom:587.476807pt;}
.y1b3{bottom:588.693075pt;}
.y2a0{bottom:588.813599pt;}
.y200{bottom:592.429034pt;}
.y13{bottom:592.643066pt;}
.y263{bottom:592.932292pt;}
.y2d5{bottom:595.146944pt;}
.y30f{bottom:595.796306pt;}
.y351{bottom:596.147639pt;}
.y393{bottom:596.793620pt;}
.y3d3{bottom:597.133578pt;}
.y28a{bottom:600.810913pt;}
.ye0{bottom:600.813599pt;}
.y56{bottom:600.813639pt;}
.y8b{bottom:600.928304pt;}
.y152{bottom:600.937581pt;}
.y21f{bottom:601.798421pt;}
.ybe{bottom:601.981628pt;}
.y122{bottom:603.143473pt;}
.y209{bottom:603.979736pt;}
.y102{bottom:604.143473pt;}
.y1b2{bottom:605.326416pt;}
.y1ff{bottom:605.757034pt;}
.y2d4{bottom:608.474944pt;}
.y30e{bottom:609.124306pt;}
.y12{bottom:609.309733pt;}
.y350{bottom:609.475639pt;}
.y262{bottom:609.598958pt;}
.y392{bottom:610.121620pt;}
.y3d2{bottom:610.461578pt;}
.y20b{bottom:611.904133pt;}
.y289{bottom:617.477580pt;}
.ydf{bottom:617.480265pt;}
.y55{bottom:617.480306pt;}
.y8a{bottom:617.594971pt;}
.y151{bottom:617.604248pt;}
.y21e{bottom:618.465088pt;}
.ybd{bottom:618.648295pt;}
.y1fe{bottom:619.085034pt;}
.y121{bottom:619.810140pt;}
.y101{bottom:620.810140pt;}
.y2d3{bottom:621.802944pt;}
.y1b1{bottom:621.959717pt;}
.y30d{bottom:622.452306pt;}
.y34f{bottom:622.803639pt;}
.y391{bottom:623.449620pt;}
.y3d1{bottom:623.789578pt;}
.y11{bottom:625.976400pt;}
.y261{bottom:626.265625pt;}
.y29f{bottom:632.146973pt;}
.y288{bottom:634.144246pt;}
.yde{bottom:634.146932pt;}
.y54{bottom:634.146973pt;}
.y89{bottom:634.261637pt;}
.y150{bottom:634.270915pt;}
.y2d2{bottom:635.130944pt;}
.y21d{bottom:635.131755pt;}
.ybc{bottom:635.314962pt;}
.y30c{bottom:635.780306pt;}
.y34e{bottom:636.131639pt;}
.y390{bottom:636.777620pt;}
.y3d0{bottom:637.117578pt;}
.y100{bottom:637.476807pt;}
.y1b0{bottom:638.593058pt;}
.y10{bottom:642.643066pt;}
.y260{bottom:642.932292pt;}
.y1aa{bottom:645.354023pt;}
.y2d1{bottom:648.458944pt;}
.y29e{bottom:648.813639pt;}
.y30b{bottom:649.108306pt;}
.y34d{bottom:649.459639pt;}
.y38f{bottom:650.105620pt;}
.y3cf{bottom:650.445578pt;}
.y287{bottom:650.810913pt;}
.ydd{bottom:650.813599pt;}
.y53{bottom:650.813639pt;}
.y88{bottom:650.928304pt;}
.y21c{bottom:651.798421pt;}
.ybb{bottom:651.981628pt;}
.y120{bottom:653.143473pt;}
.yff{bottom:654.143473pt;}
.y1af{bottom:655.225741pt;}
.y1a9{bottom:658.682023pt;}
.yf{bottom:659.309733pt;}
.y25f{bottom:659.598958pt;}
.y2d0{bottom:661.786944pt;}
.y30a{bottom:662.436306pt;}
.y34c{bottom:662.787639pt;}
.y38e{bottom:663.433620pt;}
.y3ce{bottom:663.773578pt;}
.y29d{bottom:665.480306pt;}
.y286{bottom:667.477580pt;}
.ydc{bottom:667.480265pt;}
.y52{bottom:667.480306pt;}
.y17d{bottom:667.484233pt;}
.y87{bottom:667.594971pt;}
.y21b{bottom:668.465088pt;}
.yba{bottom:668.648295pt;}
.y1a8{bottom:672.010023pt;}
.y186{bottom:675.098113pt;}
.y2cf{bottom:675.114944pt;}
.y309{bottom:675.764306pt;}
.ye{bottom:675.976400pt;}
.y34b{bottom:676.115639pt;}
.y25e{bottom:676.265625pt;}
.y38d{bottom:676.761620pt;}
.y3cd{bottom:677.101578pt;}
.y1ae{bottom:680.193075pt;}
.y29c{bottom:682.146973pt;}
.y1f8{bottom:683.608246pt;}
.y285{bottom:684.144246pt;}
.y51{bottom:684.146973pt;}
.y17c{bottom:684.150899pt;}
.y86{bottom:684.261637pt;}
.y21a{bottom:685.131755pt;}
.yb9{bottom:685.314962pt;}
.y1a7{bottom:685.338023pt;}
.y185{bottom:688.426113pt;}
.y2ce{bottom:688.442944pt;}
.y308{bottom:689.092306pt;}
.y34a{bottom:689.443639pt;}
.y38c{bottom:690.089620pt;}
.y3cc{bottom:690.429578pt;}
.yd{bottom:692.643066pt;}
.y25d{bottom:692.932292pt;}
.y1f7{bottom:696.936246pt;}
.y29b{bottom:698.813639pt;}
.y284{bottom:700.810913pt;}
.y50{bottom:700.813639pt;}
.y17b{bottom:700.817566pt;}
.ydb{bottom:700.818973pt;}
.y85{bottom:700.928304pt;}
.y184{bottom:701.754113pt;}
.y2cd{bottom:701.770944pt;}
.yb8{bottom:701.981628pt;}
.y307{bottom:702.420306pt;}
.y349{bottom:702.771639pt;}
.y38b{bottom:703.417620pt;}
.y3cb{bottom:703.757578pt;}
.yc{bottom:709.309733pt;}
.y25c{bottom:709.598958pt;}
.y183{bottom:715.082113pt;}
.y2cc{bottom:715.098944pt;}
.y29a{bottom:715.480306pt;}
.y306{bottom:715.748306pt;}
.y348{bottom:716.099639pt;}
.y38a{bottom:716.745620pt;}
.y3ca{bottom:717.085578pt;}
.y283{bottom:717.477580pt;}
.y4f{bottom:717.480306pt;}
.y17a{bottom:717.484233pt;}
.y84{bottom:717.594971pt;}
.y14f{bottom:718.096517pt;}
.y219{bottom:718.465088pt;}
.yb7{bottom:718.648295pt;}
.y1fd{bottom:721.912367pt;}
.yb{bottom:725.976400pt;}
.y2cb{bottom:728.426944pt;}
.y305{bottom:729.076306pt;}
.y347{bottom:729.427639pt;}
.y389{bottom:730.073620pt;}
.y3c9{bottom:730.413578pt;}
.y299{bottom:732.146973pt;}
.y282{bottom:734.144246pt;}
.y4e{bottom:734.146973pt;}
.y179{bottom:734.150899pt;}
.y83{bottom:734.261637pt;}
.yb6{bottom:735.314962pt;}
.y1fc{bottom:738.617701pt;}
.y1a6{bottom:741.460689pt;}
.y2ca{bottom:741.754944pt;}
.y304{bottom:742.404306pt;}
.ya{bottom:742.643066pt;}
.y346{bottom:742.755639pt;}
.y25b{bottom:742.937625pt;}
.y388{bottom:743.401620pt;}
.y3c8{bottom:743.741578pt;}
.y298{bottom:748.813639pt;}
.y181{bottom:749.211529pt;}
.y281{bottom:750.810913pt;}
.y4d{bottom:750.813639pt;}
.y178{bottom:750.817566pt;}
.y82{bottom:750.928304pt;}
.yb5{bottom:751.981628pt;}
.y2c9{bottom:755.082944pt;}
.y1fb{bottom:755.255034pt;}
.y303{bottom:755.732306pt;}
.y345{bottom:756.083639pt;}
.y387{bottom:756.729620pt;}
.y3c7{bottom:757.069578pt;}
.y1a5{bottom:758.166023pt;}
.y25a{bottom:759.598958pt;}
.y1f6{bottom:762.034913pt;}
.y14b{bottom:764.780635pt;}
.y297{bottom:765.480306pt;}
.y280{bottom:767.477580pt;}
.y4c{bottom:767.480306pt;}
.y177{bottom:767.484233pt;}
.y81{bottom:767.594971pt;}
.y2c8{bottom:768.410944pt;}
.yb4{bottom:768.648295pt;}
.y302{bottom:769.060306pt;}
.y344{bottom:769.411639pt;}
.y386{bottom:770.057620pt;}
.y3c6{bottom:770.397578pt;}
.y1fa{bottom:771.892367pt;}
.y1a4{bottom:774.803356pt;}
.y1f5{bottom:775.362913pt;}
.y2c7{bottom:781.738944pt;}
.y9{bottom:781.916629pt;}
.y296{bottom:782.146973pt;}
.y301{bottom:782.388306pt;}
.y343{bottom:782.739639pt;}
.y385{bottom:783.385620pt;}
.y3c5{bottom:783.725578pt;}
.y27f{bottom:784.144246pt;}
.y4b{bottom:784.146973pt;}
.y176{bottom:784.150899pt;}
.y80{bottom:784.261637pt;}
.yb3{bottom:785.314962pt;}
.y14e{bottom:787.641846pt;}
.y256{bottom:787.953044pt;}
.y1f4{bottom:788.690913pt;}
.y255{bottom:790.209657pt;}
.y1a3{bottom:791.440689pt;}
.y2c6{bottom:795.066944pt;}
.y8{bottom:795.244629pt;}
.y300{bottom:795.716306pt;}
.y342{bottom:796.067639pt;}
.y384{bottom:796.713620pt;}
.y1f9{bottom:796.859701pt;}
.y3c4{bottom:797.053578pt;}
.y180{bottom:797.248308pt;}
.y14a{bottom:797.900635pt;}
.y295{bottom:798.813639pt;}
.y27e{bottom:800.810913pt;}
.y4a{bottom:800.813639pt;}
.y175{bottom:800.817566pt;}
.y7f{bottom:800.928304pt;}
.yb2{bottom:801.981628pt;}
.y1f3{bottom:802.018913pt;}
.y1a2{bottom:808.078023pt;}
.y2c5{bottom:808.394944pt;}
.y2ff{bottom:809.044306pt;}
.y341{bottom:809.395639pt;}
.y383{bottom:810.041620pt;}
.y3c3{bottom:810.381578pt;}
.y257{bottom:813.431885pt;}
.y141{bottom:815.263184pt;}
.y294{bottom:815.480306pt;}
.y27d{bottom:817.477580pt;}
.y49{bottom:817.480306pt;}
.y174{bottom:817.484233pt;}
.y7e{bottom:817.594971pt;}
.y254{bottom:818.247884pt;}
.y143{bottom:818.438139pt;}
.yb1{bottom:818.648295pt;}
.y2c4{bottom:821.722944pt;}
.y2fe{bottom:822.372306pt;}
.y340{bottom:822.723639pt;}
.y382{bottom:823.369620pt;}
.y3c2{bottom:823.709578pt;}
.y1a1{bottom:824.715356pt;}
.y293{bottom:832.146973pt;}
.y24d{bottom:832.631826pt;}
.y7{bottom:833.111328pt;}
.y27c{bottom:834.144246pt;}
.y48{bottom:834.146973pt;}
.y173{bottom:834.150899pt;}
.y7d{bottom:834.261637pt;}
.y24b{bottom:834.398519pt;}
.y2c3{bottom:835.050944pt;}
.yb0{bottom:835.314962pt;}
.y2fd{bottom:835.700306pt;}
.y33f{bottom:836.051639pt;}
.y381{bottom:836.697620pt;}
.y3c1{bottom:837.037578pt;}
.y140{bottom:839.224691pt;}
.y1a0{bottom:841.352689pt;}
.y292{bottom:848.813639pt;}
.y2fc{bottom:849.028306pt;}
.y33e{bottom:849.379639pt;}
.y142{bottom:849.484538pt;}
.y380{bottom:850.025620pt;}
.y3c0{bottom:850.365578pt;}
.y1ed{bottom:850.580973pt;}
.y27b{bottom:850.810913pt;}
.y47{bottom:850.813639pt;}
.y172{bottom:850.817566pt;}
.y7c{bottom:850.928304pt;}
.yaf{bottom:851.981628pt;}
.y19f{bottom:857.990023pt;}
.y24c{bottom:858.902425pt;}
.y2fb{bottom:862.356306pt;}
.y33d{bottom:862.707639pt;}
.y37f{bottom:863.353620pt;}
.y3bf{bottom:863.693578pt;}
.y1ec{bottom:863.908973pt;}
.y2c2{bottom:865.050944pt;}
.y291{bottom:865.480306pt;}
.y247{bottom:866.847087pt;}
.y75{bottom:867.474973pt;}
.y27a{bottom:867.477580pt;}
.y192{bottom:867.480265pt;}
.y46{bottom:867.480306pt;}
.y171{bottom:867.484233pt;}
.y7b{bottom:867.594971pt;}
.y24a{bottom:868.289062pt;}
.yae{bottom:868.648295pt;}
.y6{bottom:872.832682pt;}
.y17f{bottom:873.103458pt;}
.y149{bottom:873.621570pt;}
.y19e{bottom:874.627356pt;}
.y246{bottom:875.684306pt;}
.y33c{bottom:876.035639pt;}
.y37e{bottom:876.681620pt;}
.y3be{bottom:877.021578pt;}
.y253{bottom:882.125319pt;}
.y290{bottom:882.146973pt;}
.y145{bottom:882.261707pt;}
.y279{bottom:884.144246pt;}
.y191{bottom:884.146932pt;}
.y45{bottom:884.146973pt;}
.y170{bottom:884.150899pt;}
.y7a{bottom:884.261637pt;}
.yad{bottom:885.314962pt;}
.y1f2{bottom:888.854913pt;}
.y245{bottom:889.012306pt;}
.y14c{bottom:889.226156pt;}
.y33b{bottom:889.363639pt;}
.y37d{bottom:890.009620pt;}
.y3bd{bottom:890.349578pt;}
.y19d{bottom:891.264689pt;}
.y248{bottom:893.035889pt;}
.y24f{bottom:893.949371pt;}
.y5{bottom:896.832682pt;}
.y28f{bottom:898.813639pt;}
.y278{bottom:900.810913pt;}
.y190{bottom:900.813599pt;}
.y44{bottom:900.813639pt;}
.y16f{bottom:900.817566pt;}
.y79{bottom:900.928304pt;}
.yac{bottom:901.981628pt;}
.y244{bottom:902.340306pt;}
.y33a{bottom:902.691639pt;}
.y37c{bottom:903.337620pt;}
.y3bc{bottom:903.677578pt;}
.y148{bottom:904.667969pt;}
.y1f1{bottom:905.560246pt;}
.y252{bottom:908.578776pt;}
.y144{bottom:913.308105pt;}
.y28e{bottom:915.480306pt;}
.y1eb{bottom:915.668306pt;}
.y339{bottom:916.019639pt;}
.y19c{bottom:916.220689pt;}
.y37b{bottom:916.665620pt;}
.y3bb{bottom:917.005578pt;}
.y277{bottom:917.477580pt;}
.y18f{bottom:917.480265pt;}
.y43{bottom:917.480306pt;}
.y16e{bottom:917.484233pt;}
.y78{bottom:917.594971pt;}
.yab{bottom:918.648295pt;}
.y24e{bottom:920.219971pt;}
.y1f0{bottom:922.197579pt;}
.y147{bottom:925.727900pt;}
.y1ea{bottom:928.996306pt;}
.y2c1{bottom:929.059599pt;}
.y338{bottom:929.347639pt;}
.y37a{bottom:929.993620pt;}
.y3ba{bottom:930.333578pt;}
.y14d{bottom:931.809489pt;}
.y28d{bottom:932.146973pt;}
.y19b{bottom:932.994021pt;}
.y251{bottom:933.751487pt;}
.y276{bottom:934.144246pt;}
.y18e{bottom:934.146932pt;}
.y42{bottom:934.146973pt;}
.y16d{bottom:934.150899pt;}
.yaa{bottom:935.314962pt;}
.y1ef{bottom:938.834913pt;}
.y1e9{bottom:942.324306pt;}
.y2c0{bottom:942.387599pt;}
.y337{bottom:942.675639pt;}
.y13f{bottom:943.269694pt;}
.y379{bottom:943.321620pt;}
.y3b9{bottom:943.661578pt;}
.y19a{bottom:946.322021pt;}
.y249{bottom:949.416504pt;}
.y17e{bottom:950.355306pt;}
.y275{bottom:950.810913pt;}
.y18d{bottom:950.813599pt;}
.y41{bottom:950.813639pt;}
.y16c{bottom:950.817566pt;}
.y77{bottom:950.933637pt;}
.ya9{bottom:951.981628pt;}
.y1e8{bottom:955.652306pt;}
.y2bf{bottom:955.715599pt;}
.y336{bottom:956.003639pt;}
.y378{bottom:956.649620pt;}
.y3b8{bottom:956.989578pt;}
.y146{bottom:958.847900pt;}
.y250{bottom:961.789714pt;}
.y1ee{bottom:963.802246pt;}
.y28c{bottom:965.480306pt;}
.y274{bottom:967.477580pt;}
.y18c{bottom:967.480265pt;}
.y40{bottom:967.480306pt;}
.y16b{bottom:967.484233pt;}
.y76{bottom:967.594971pt;}
.ya8{bottom:968.648295pt;}
.y199{bottom:968.980306pt;}
.y2be{bottom:969.043599pt;}
.y335{bottom:969.331639pt;}
.y182{bottom:969.475749pt;}
.y377{bottom:969.977620pt;}
.y3b7{bottom:970.317578pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3f{bottom:1002.206543pt;}
.hd{height:22.403733pt;}
.h13{height:26.778072pt;}
.h29{height:28.242211pt;}
.h15{height:28.242699pt;}
.h19{height:28.243187pt;}
.h2{height:30.080000pt;}
.hb{height:32.005333pt;}
.hc{height:32.760417pt;}
.h27{height:33.889683pt;}
.h8{height:37.653333pt;}
.h2b{height:38.288791pt;}
.h2c{height:38.871820pt;}
.h4{height:39.712000pt;}
.h11{height:40.032000pt;}
.ha{height:40.165333pt;}
.h1a{height:40.536545pt;}
.h17{height:40.537033pt;}
.h1b{height:40.537115pt;}
.h18{height:40.537196pt;}
.h16{height:40.539668pt;}
.h25{height:40.821302pt;}
.h26{height:40.822341pt;}
.h20{height:40.822829pt;}
.h21{height:40.822992pt;}
.h23{height:40.822995pt;}
.h24{height:40.823480pt;}
.h2a{height:40.823968pt;}
.h22{height:40.824457pt;}
.h1f{height:46.242314pt;}
.h14{height:46.376000pt;}
.h9{height:47.253333pt;}
.h28{height:47.690504pt;}
.h12{height:47.690667pt;}
.h3{height:48.766452pt;}
.h1d{height:50.596988pt;}
.h1e{height:50.597314pt;}
.hf{height:52.448000pt;}
.h7{height:52.746667pt;}
.h10{height:54.560000pt;}
.h1c{height:54.560039pt;}
.h6{height:57.658667pt;}
.he{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x1d{left:71.798981pt;}
.x21{left:77.368543pt;}
.x7{left:83.151469pt;}
.x5{left:86.929867pt;}
.x38{left:90.709469pt;}
.xd{left:131.657069pt;}
.xc{left:134.061869pt;}
.x1e{left:198.638143pt;}
.x1c{left:201.855639pt;}
.x16{left:212.650391pt;}
.x1f{left:230.663208pt;}
.x22{left:238.063862pt;}
.x2a{left:260.790016pt;}
.x29{left:262.862406pt;}
.xf{left:266.113203pt;}
.xe{left:286.100403pt;}
.x1b{left:289.414150pt;}
.x19{left:290.483337pt;}
.x23{left:292.262004pt;}
.x31{left:295.370931pt;}
.x18{left:318.371073pt;}
.x20{left:333.399870pt;}
.x1a{left:335.717097pt;}
.xb{left:360.429728pt;}
.x2c{left:374.609154pt;}
.x17{left:377.591064pt;}
.x2b{left:391.553996pt;}
.x35{left:405.084676pt;}
.x4{left:408.191457pt;}
.x11{left:421.092665pt;}
.x8{left:423.308923pt;}
.x24{left:429.344686pt;}
.x37{left:430.866924pt;}
.xa{left:433.629720pt;}
.x10{left:439.683065pt;}
.x15{left:447.294786pt;}
.x14{left:464.704386pt;}
.x26{left:481.417847pt;}
.x2e{left:500.740195pt;}
.x34{left:505.860231pt;}
.x2d{left:516.465983pt;}
.x33{left:521.586019pt;}
.x30{left:528.046126pt;}
.x28{left:543.163208pt;}
.x32{left:546.880656pt;}
.x9{left:567.849731pt;}
.x12{left:581.461589pt;}
.x13{left:583.866386pt;}
.x25{left:597.653849pt;}
.x1{left:647.307210pt;}
.x27{left:648.574046pt;}
.x2f{left:651.007571pt;}
.x36{left:660.637980pt;}
.x2{left:671.546549pt;}
}




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