
    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_d7034e83aa459a9cbf52d933.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_bb3ac04636e3d9c497da8f0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_527550def4028890d5324202.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f360cab936d4ae21562be0d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_555d6b1d6d0fa72ee120883e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d347c2fdb0c7943e535e401.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_3d122f6224cd4a43388ad333.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_62e48f881278a3f3ea80ad04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.360019;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_cbd724d96c0ca4ed9943d952.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b3e604a6511e8a961a3a95f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_20dd0636e90484fa5d7c18cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_6ac3017f6d22bd748868508a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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;}
.m3{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-19.440000px;}
.v2{vertical-align:-16.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.405187px;}
.v1{vertical-align:30.959250px;}
.ls15e{letter-spacing:-0.565578px;}
.ls59{letter-spacing:-0.475121px;}
.ls133{letter-spacing:-0.475086px;}
.ls159{letter-spacing:-0.469430px;}
.ls14a{letter-spacing:-0.463774px;}
.ls1c{letter-spacing:-0.462326px;}
.ls105{letter-spacing:-0.458152px;}
.ls148{letter-spacing:-0.458118px;}
.ls146{letter-spacing:-0.333691px;}
.ls160{letter-spacing:-0.328035px;}
.ls114{letter-spacing:-0.316724px;}
.ls15a{letter-spacing:-0.311091px;}
.ls156{letter-spacing:-0.311068px;}
.ls167{letter-spacing:-0.294669px;}
.ls15f{letter-spacing:-0.294122px;}
.ls115{letter-spacing:-0.288974px;}
.ls31{letter-spacing:-0.288466px;}
.ls10f{letter-spacing:-0.282789px;}
.ls145{letter-spacing:-0.277133px;}
.ls4e{letter-spacing:-0.271498px;}
.ls12c{letter-spacing:-0.271477px;}
.ls14d{letter-spacing:-0.265841px;}
.ls163{letter-spacing:-0.260185px;}
.ls142{letter-spacing:-0.260166px;}
.ls153{letter-spacing:-0.254510px;}
.ls9c{letter-spacing:-0.252379px;}
.ls7b{letter-spacing:-0.248873px;}
.lsfc{letter-spacing:-0.248854px;}
.ls12f{letter-spacing:-0.243217px;}
.ls113{letter-spacing:-0.243199px;}
.ls10{letter-spacing:-0.237560px;}
.ls107{letter-spacing:-0.237543px;}
.ls19{letter-spacing:-0.233703px;}
.ls5a{letter-spacing:-0.231904px;}
.lsb4{letter-spacing:-0.231887px;}
.ls51{letter-spacing:-0.226248px;}
.lsb6{letter-spacing:-0.226231px;}
.ls14{letter-spacing:-0.220592px;}
.lsb3{letter-spacing:-0.220575px;}
.ls16{letter-spacing:-0.214936px;}
.lse9{letter-spacing:-0.214920px;}
.ls33{letter-spacing:-0.209279px;}
.lsbe{letter-spacing:-0.209264px;}
.ls3c{letter-spacing:-0.203623px;}
.lsb9{letter-spacing:-0.203608px;}
.lsa{letter-spacing:-0.203220px;}
.ls10c{letter-spacing:-0.203203px;}
.ls2f{letter-spacing:-0.197967px;}
.ls9d{letter-spacing:-0.197952px;}
.ls53{letter-spacing:-0.192311px;}
.lsb7{letter-spacing:-0.192297px;}
.ls139{letter-spacing:-0.187979px;}
.ls69{letter-spacing:-0.186655px;}
.lsdf{letter-spacing:-0.186641px;}
.ls6f{letter-spacing:-0.180998px;}
.lsd3{letter-spacing:-0.180985px;}
.ls1e{letter-spacing:-0.177818px;}
.ls81{letter-spacing:-0.175342px;}
.ls9e{letter-spacing:-0.175329px;}
.ls116{letter-spacing:-0.172737px;}
.ls55{letter-spacing:-0.169686px;}
.lsaa{letter-spacing:-0.169673px;}
.ls1d{letter-spacing:-0.167657px;}
.ls6c{letter-spacing:-0.164030px;}
.lsa3{letter-spacing:-0.164018px;}
.ls5d{letter-spacing:-0.162576px;}
.ls14b{letter-spacing:-0.158374px;}
.lsd2{letter-spacing:-0.158362px;}
.ls54{letter-spacing:-0.152717px;}
.lsa0{letter-spacing:-0.152706px;}
.ls13a{letter-spacing:-0.152415px;}
.ls94{letter-spacing:-0.152402px;}
.ls117{letter-spacing:-0.147335px;}
.lsdd{letter-spacing:-0.147322px;}
.ls154{letter-spacing:-0.147061px;}
.lsa4{letter-spacing:-0.147050px;}
.ls13e{letter-spacing:-0.142254px;}
.ls10e{letter-spacing:-0.141395px;}
.ls1a{letter-spacing:-0.137174px;}
.lscc{letter-spacing:-0.137162px;}
.ls125{letter-spacing:-0.135749px;}
.ls136{letter-spacing:-0.135739px;}
.ls11f{letter-spacing:-0.134147px;}
.lsdc{letter-spacing:-0.132082px;}
.ls101{letter-spacing:-0.130093px;}
.lse7{letter-spacing:-0.130083px;}
.ls5b{letter-spacing:-0.127013px;}
.ls129{letter-spacing:-0.124427px;}
.ls12d{letter-spacing:-0.121932px;}
.ls164{letter-spacing:-0.118780px;}
.lsa1{letter-spacing:-0.118771px;}
.ls18{letter-spacing:-0.116852px;}
.ls99{letter-spacing:-0.116842px;}
.ls131{letter-spacing:-0.113116px;}
.lscd{letter-spacing:-0.111762px;}
.lsf9{letter-spacing:-0.107460px;}
.ls98{letter-spacing:-0.106682px;}
.ls79{letter-spacing:-0.101812px;}
.lsbd{letter-spacing:-0.101804px;}
.ls5e{letter-spacing:-0.101610px;}
.lsf2{letter-spacing:-0.101608px;}
.lsde{letter-spacing:-0.101602px;}
.lsce{letter-spacing:-0.096522px;}
.ls135{letter-spacing:-0.096148px;}
.lsc{letter-spacing:-0.094836px;}
.ls11a{letter-spacing:-0.091441px;}
.ls150{letter-spacing:-0.090499px;}
.ls147{letter-spacing:-0.090492px;}
.lsd{letter-spacing:-0.086808px;}
.ls20{letter-spacing:-0.086369px;}
.lsf8{letter-spacing:-0.086361px;}
.ls36{letter-spacing:-0.084843px;}
.lse2{letter-spacing:-0.084837px;}
.ls17{letter-spacing:-0.081288px;}
.ls68{letter-spacing:-0.081287px;}
.ls124{letter-spacing:-0.079187px;}
.ls134{letter-spacing:-0.079181px;}
.ls97{letter-spacing:-0.076201px;}
.ls37{letter-spacing:-0.073531px;}
.lsc9{letter-spacing:-0.073525px;}
.ls13b{letter-spacing:-0.071127px;}
.ls128{letter-spacing:-0.071121px;}
.ls166{letter-spacing:-0.071025px;}
.ls38{letter-spacing:-0.067874px;}
.ls95{letter-spacing:-0.067869px;}
.ls80{letter-spacing:-0.062218px;}
.lsbc{letter-spacing:-0.062214px;}
.ls82{letter-spacing:-0.056562px;}
.ls140{letter-spacing:-0.056558px;}
.ls165{letter-spacing:-0.055241px;}
.ls6a{letter-spacing:-0.054191px;}
.ls78{letter-spacing:-0.050906px;}
.lsa9{letter-spacing:-0.050902px;}
.lseb{letter-spacing:-0.047350px;}
.ls149{letter-spacing:-0.045250px;}
.lsbb{letter-spacing:-0.045246px;}
.ls162{letter-spacing:-0.039593px;}
.ls12b{letter-spacing:-0.039590px;}
.ls1f{letter-spacing:-0.035564px;}
.ls6e{letter-spacing:-0.033937px;}
.ls126{letter-spacing:-0.033935px;}
.ls123{letter-spacing:-0.033869px;}
.lsec{letter-spacing:-0.031566px;}
.ls70{letter-spacing:-0.030483px;}
.lsff{letter-spacing:-0.028281px;}
.ls104{letter-spacing:-0.028279px;}
.ls57{letter-spacing:-0.022625px;}
.lsf1{letter-spacing:-0.022623px;}
.ls106{letter-spacing:-0.016969px;}
.ls143{letter-spacing:-0.016967px;}
.lsea{letter-spacing:-0.015783px;}
.ls71{letter-spacing:-0.015242px;}
.lscb{letter-spacing:-0.015240px;}
.ls7f{letter-spacing:-0.013548px;}
.ls77{letter-spacing:-0.011312px;}
.lsfe{letter-spacing:-0.010161px;}
.ls11e{letter-spacing:-0.007892px;}
.lse8{letter-spacing:-0.006774px;}
.lsa7{letter-spacing:-0.005656px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005081px;}
.ls10d{letter-spacing:0.005656px;}
.ls74{letter-spacing:0.006774px;}
.ls100{letter-spacing:0.007892px;}
.ls3b{letter-spacing:0.011312px;}
.ls7c{letter-spacing:0.013548px;}
.ls13d{letter-spacing:0.015242px;}
.ls0{letter-spacing:0.015783px;}
.ls158{letter-spacing:0.016967px;}
.ls130{letter-spacing:0.016969px;}
.ls10b{letter-spacing:0.020320px;}
.ls122{letter-spacing:0.020322px;}
.ls120{letter-spacing:0.022623px;}
.ls76{letter-spacing:0.022625px;}
.ls3{letter-spacing:0.023675px;}
.ls118{letter-spacing:0.027094px;}
.ls61{letter-spacing:0.027096px;}
.lsee{letter-spacing:0.028279px;}
.ls161{letter-spacing:0.028281px;}
.ls63{letter-spacing:0.031566px;}
.ls15b{letter-spacing:0.033935px;}
.ls14f{letter-spacing:0.033937px;}
.ls4c{letter-spacing:0.035564px;}
.ls2{letter-spacing:0.039458px;}
.ls151{letter-spacing:0.039590px;}
.ls66{letter-spacing:0.039593px;}
.ls93{letter-spacing:0.040641px;}
.lsad{letter-spacing:0.045246px;}
.ls14e{letter-spacing:0.045250px;}
.lsef{letter-spacing:0.047350px;}
.ls110{letter-spacing:0.050902px;}
.ls14c{letter-spacing:0.050906px;}
.ls72{letter-spacing:0.054191px;}
.ls27{letter-spacing:0.055241px;}
.lsc1{letter-spacing:0.055881px;}
.ls103{letter-spacing:0.055886px;}
.lsf4{letter-spacing:0.056558px;}
.ls52{letter-spacing:0.056562px;}
.lsf7{letter-spacing:0.060961px;}
.ls60{letter-spacing:0.060965px;}
.ls11d{letter-spacing:0.062214px;}
.ls6d{letter-spacing:0.062218px;}
.ls42{letter-spacing:0.063133px;}
.ls6{letter-spacing:0.066047px;}
.lse3{letter-spacing:0.067739px;}
.lse6{letter-spacing:0.067869px;}
.ls50{letter-spacing:0.067874px;}
.lsfb{letter-spacing:0.069500px;}
.ls46{letter-spacing:0.070500px;}
.ls8b{letter-spacing:0.071019px;}
.ls11c{letter-spacing:0.071025px;}
.ls109{letter-spacing:0.071121px;}
.ls47{letter-spacing:0.071127px;}
.lsb1{letter-spacing:0.073525px;}
.ls39{letter-spacing:0.073531px;}
.lsd8{letter-spacing:0.074508px;}
.lsf0{letter-spacing:0.074513px;}
.ls5f{letter-spacing:0.078916px;}
.lsed{letter-spacing:0.079181px;}
.ls56{letter-spacing:0.079187px;}
.lsd6{letter-spacing:0.081281px;}
.ls73{letter-spacing:0.081287px;}
.ls9{letter-spacing:0.081288px;}
.lsbf{letter-spacing:0.084837px;}
.ls11{letter-spacing:0.084843px;}
.ls138{letter-spacing:0.086369px;}
.ls1{letter-spacing:0.086808px;}
.ls8d{letter-spacing:0.088055px;}
.ls7d{letter-spacing:0.088060px;}
.lsac{letter-spacing:0.090492px;}
.ls44{letter-spacing:0.090499px;}
.lsf5{letter-spacing:0.091449px;}
.lsd9{letter-spacing:0.094828px;}
.ls75{letter-spacing:0.094834px;}
.lsb2{letter-spacing:0.096148px;}
.lsf{letter-spacing:0.096155px;}
.ls7{letter-spacing:0.096530px;}
.ls8c{letter-spacing:0.101602px;}
.lsae{letter-spacing:0.101608px;}
.ls5c{letter-spacing:0.101610px;}
.lsba{letter-spacing:0.101804px;}
.ls2e{letter-spacing:0.101812px;}
.ls10a{letter-spacing:0.106072px;}
.ls4d{letter-spacing:0.106691px;}
.lse4{letter-spacing:0.107460px;}
.ls4{letter-spacing:0.107468px;}
.lse5{letter-spacing:0.110483px;}
.ls4b{letter-spacing:0.111771px;}
.lsb0{letter-spacing:0.113116px;}
.ls12{letter-spacing:0.113124px;}
.ls62{letter-spacing:0.115156px;}
.ls111{letter-spacing:0.116852px;}
.lsab{letter-spacing:0.118771px;}
.ls34{letter-spacing:0.118780px;}
.lsc6{letter-spacing:0.121922px;}
.ls49{letter-spacing:0.121932px;}
.lsd5{letter-spacing:0.124427px;}
.ls13{letter-spacing:0.124436px;}
.ls112{letter-spacing:0.127013px;}
.lsb5{letter-spacing:0.130083px;}
.ls15{letter-spacing:0.130093px;}
.ls85{letter-spacing:0.132082px;}
.ls8{letter-spacing:0.132093px;}
.lsda{letter-spacing:0.135739px;}
.ls7a{letter-spacing:0.135749px;}
.lsc7{letter-spacing:0.137162px;}
.lsa2{letter-spacing:0.141395px;}
.ls35{letter-spacing:0.141405px;}
.ls87{letter-spacing:0.142242px;}
.ls67{letter-spacing:0.142254px;}
.lsd1{letter-spacing:0.147050px;}
.ls4f{letter-spacing:0.147061px;}
.lsc2{letter-spacing:0.147322px;}
.lsc8{letter-spacing:0.152402px;}
.lse1{letter-spacing:0.152706px;}
.ls6b{letter-spacing:0.152717px;}
.ls88{letter-spacing:0.157482px;}
.lse{letter-spacing:0.157496px;}
.lsb8{letter-spacing:0.158362px;}
.ls2c{letter-spacing:0.158374px;}
.ls155{letter-spacing:0.159000px;}
.ls15c{letter-spacing:0.161100px;}
.ls8a{letter-spacing:0.162563px;}
.lsf3{letter-spacing:0.162573px;}
.ls9f{letter-spacing:0.164018px;}
.ls157{letter-spacing:0.164030px;}
.ls127{letter-spacing:0.167643px;}
.ls4a{letter-spacing:0.167657px;}
.ls91{letter-spacing:0.169673px;}
.ls132{letter-spacing:0.169686px;}
.ls89{letter-spacing:0.172723px;}
.lsa8{letter-spacing:0.175329px;}
.lsfd{letter-spacing:0.175342px;}
.lsc5{letter-spacing:0.177803px;}
.ls8f{letter-spacing:0.180985px;}
.ls58{letter-spacing:0.180998px;}
.ls86{letter-spacing:0.182883px;}
.ls9b{letter-spacing:0.186641px;}
.lsd7{letter-spacing:0.187963px;}
.ls96{letter-spacing:0.192297px;}
.ls2b{letter-spacing:0.192311px;}
.lsd0{letter-spacing:0.197952px;}
.ls40{letter-spacing:0.197967px;}
.ls1b{letter-spacing:0.198140px;}
.lsc3{letter-spacing:0.203203px;}
.ls90{letter-spacing:0.203608px;}
.ls3d{letter-spacing:0.203623px;}
.lsd4{letter-spacing:0.208283px;}
.lsa5{letter-spacing:0.209264px;}
.ls9a{letter-spacing:0.214920px;}
.ls3e{letter-spacing:0.214936px;}
.lsc4{letter-spacing:0.218443px;}
.lscf{letter-spacing:0.220575px;}
.ls3a{letter-spacing:0.220592px;}
.ls119{letter-spacing:0.226231px;}
.ls30{letter-spacing:0.226248px;}
.ls83{letter-spacing:0.231887px;}
.ls2d{letter-spacing:0.231904px;}
.lsa6{letter-spacing:0.237543px;}
.ls32{letter-spacing:0.237560px;}
.lsdb{letter-spacing:0.243199px;}
.ls29{letter-spacing:0.243217px;}
.ls108{letter-spacing:0.248854px;}
.ls28{letter-spacing:0.248873px;}
.lse0{letter-spacing:0.254510px;}
.ls2a{letter-spacing:0.254529px;}
.ls102{letter-spacing:0.259106px;}
.ls48{letter-spacing:0.259500px;}
.ls12a{letter-spacing:0.260166px;}
.ls45{letter-spacing:0.260185px;}
.ls152{letter-spacing:0.260550px;}
.ls65{letter-spacing:0.276810px;}
.lsc0{letter-spacing:0.284484px;}
.ls92{letter-spacing:0.288445px;}
.ls15d{letter-spacing:0.316724px;}
.ls141{letter-spacing:0.475086px;}
.ls21{letter-spacing:5.571031px;}
.ls13f{letter-spacing:41.875764px;}
.ls12e{letter-spacing:78.237059px;}
.ls137{letter-spacing:89.755764px;}
.ls22{letter-spacing:89.811031px;}
.ls8e{letter-spacing:89.955181px;}
.ls7e{letter-spacing:90.114578px;}
.lsaf{letter-spacing:90.115764px;}
.ls24{letter-spacing:92.691031px;}
.ls25{letter-spacing:96.291031px;}
.ls23{letter-spacing:102.411031px;}
.lsfa{letter-spacing:114.020525px;}
.ls121{letter-spacing:117.835764px;}
.ls13c{letter-spacing:118.197059px;}
.ls43{letter-spacing:118.197611px;}
.ls64{letter-spacing:123.756575px;}
.ls26{letter-spacing:127.611031px;}
.ls3f{letter-spacing:137.691031px;}
.lsca{letter-spacing:152.036430px;}
.ls84{letter-spacing:164.035783px;}
.ls41{letter-spacing:798.740283px;}
.ls144{letter-spacing:798.740550px;}
.ls11b{letter-spacing:798.743186px;}
.lsf6{letter-spacing:800.178750px;}
.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;}
}
.ws1c3{word-spacing:-56.557800px;}
.ws1b7{word-spacing:-14.393960px;}
.wsa5{word-spacing:-14.354370px;}
.wsa8{word-spacing:-14.343058px;}
.ws1ff{word-spacing:-14.338467px;}
.ws24{word-spacing:-14.332811px;}
.ws133{word-spacing:-14.320435px;}
.ws1f6{word-spacing:-14.310186px;}
.ws25{word-spacing:-14.298874px;}
.wscd{word-spacing:-14.297812px;}
.ws200{word-spacing:-14.293217px;}
.ws1e3{word-spacing:-14.287561px;}
.ws209{word-spacing:-14.286500px;}
.ws227{word-spacing:-14.281905px;}
.ws193{word-spacing:-14.280845px;}
.ws210{word-spacing:-14.276249px;}
.ws216{word-spacing:-14.275189px;}
.ws56{word-spacing:-14.270593px;}
.ws1ca{word-spacing:-14.269533px;}
.ws1e6{word-spacing:-14.263877px;}
.ws195{word-spacing:-14.258221px;}
.ws1b3{word-spacing:-14.253624px;}
.ws215{word-spacing:-14.252566px;}
.ws1c9{word-spacing:-14.247968px;}
.ws1f7{word-spacing:-14.246910px;}
.ws225{word-spacing:-14.242312px;}
.ws20f{word-spacing:-14.241254px;}
.ws226{word-spacing:-14.236655px;}
.ws217{word-spacing:-14.235598px;}
.ws1e4{word-spacing:-14.230999px;}
.ws154{word-spacing:-14.229942px;}
.ws1ea{word-spacing:-14.224287px;}
.ws1e2{word-spacing:-14.218631px;}
.ws1f9{word-spacing:-14.212975px;}
.ws237{word-spacing:-14.208374px;}
.ws236{word-spacing:-14.201664px;}
.ws20d{word-spacing:-14.196008px;}
.ws1cc{word-spacing:-14.163125px;}
.ws240{word-spacing:-14.157469px;}
.ws27{word-spacing:-14.151812px;}
.ws1bc{word-spacing:-14.150762px;}
.ws55{word-spacing:-14.140500px;}
.ws129{word-spacing:-14.139450px;}
.ws1e5{word-spacing:-14.129188px;}
.ws241{word-spacing:-14.117875px;}
.ws242{word-spacing:-14.112219px;}
.ws22e{word-spacing:-14.100907px;}
.ws23b{word-spacing:-14.095250px;}
.ws20a{word-spacing:-14.094204px;}
.ws23a{word-spacing:-14.089594px;}
.ws229{word-spacing:-14.082892px;}
.ws1e9{word-spacing:-14.026334px;}
.wsa7{word-spacing:-14.020679px;}
.ws231{word-spacing:-13.992400px;}
.ws1e8{word-spacing:-13.982126px;}
.ws1f3{word-spacing:-13.975432px;}
.ws54{word-spacing:-13.970814px;}
.ws198{word-spacing:-13.969777px;}
.wsa6{word-spacing:-13.964121px;}
.ws22f{word-spacing:-13.959502px;}
.ws1c8{word-spacing:-13.958465px;}
.ws1ce{word-spacing:-13.953845px;}
.ws1cf{word-spacing:-13.952809px;}
.ws53{word-spacing:-13.948189px;}
.ws1cd{word-spacing:-13.947153px;}
.ws1eb{word-spacing:-13.941498px;}
.ws1c5{word-spacing:-13.936877px;}
.ws194{word-spacing:-13.935842px;}
.ws1c7{word-spacing:-13.930186px;}
.ws2{word-spacing:-13.925564px;}
.ws1cb{word-spacing:-13.924530px;}
.ws1{word-spacing:-13.919908px;}
.ws1d0{word-spacing:-13.918875px;}
.ws1e7{word-spacing:-13.913219px;}
.ws1c6{word-spacing:-13.907563px;}
.ws1c4{word-spacing:-13.902940px;}
.ws19c{word-spacing:-13.897283px;}
.ws1f5{word-spacing:-13.896251px;}
.ws20e{word-spacing:-13.884940px;}
.ws230{word-spacing:-13.880315px;}
.ws1f4{word-spacing:-13.874659px;}
.ws1f8{word-spacing:-13.869002px;}
.ws26{word-spacing:-13.852034px;}
.ws228{word-spacing:-13.846378px;}
.ws218{word-spacing:-13.829409px;}
.ws43{word-spacing:-12.952698px;}
.ws0{word-spacing:-12.858746px;}
.ws132{word-spacing:-12.857682px;}
.ws4{word-spacing:-12.833343px;}
.ws5a{word-spacing:-12.807941px;}
.ws155{word-spacing:-12.757136px;}
.ws59{word-spacing:-12.736814px;}
.ws5{word-spacing:-12.701250px;}
.ws156{word-spacing:-12.691089px;}
.wsa4{word-spacing:-12.623999px;}
.ws58{word-spacing:-12.538674px;}
.ws199{word-spacing:-12.533594px;}
.ws7b{word-spacing:-12.498030px;}
.ws39{word-spacing:-10.096317px;}
.ws49{word-spacing:-9.711695px;}
.ws138{word-spacing:-9.214250px;}
.ws57{word-spacing:-9.144750px;}
.ws16d{word-spacing:-8.855776px;}
.ws3{word-spacing:-8.467350px;}
.ws139{word-spacing:-8.453802px;}
.ws44{word-spacing:-6.832690px;}
.ws143{word-spacing:-2.019113px;}
.ws145{word-spacing:-1.193370px;}
.ws197{word-spacing:-0.718284px;}
.ws1a2{word-spacing:-0.701317px;}
.ws165{word-spacing:-0.690005px;}
.ws201{word-spacing:-0.678694px;}
.wse3{word-spacing:-0.673038px;}
.wsa9{word-spacing:-0.667382px;}
.ws1fd{word-spacing:-0.661726px;}
.ws51{word-spacing:-0.656119px;}
.ws1bf{word-spacing:-0.656070px;}
.wsec{word-spacing:-0.655330px;}
.ws214{word-spacing:-0.650415px;}
.ws170{word-spacing:-0.644759px;}
.ws1b9{word-spacing:-0.639103px;}
.ws148{word-spacing:-0.633494px;}
.ws1df{word-spacing:-0.627792px;}
.ws204{word-spacing:-0.622136px;}
.ws20c{word-spacing:-0.616526px;}
.ws144{word-spacing:-0.616480px;}
.ws17c{word-spacing:-0.610824px;}
.ws234{word-spacing:-0.605168px;}
.ws1fe{word-spacing:-0.599557px;}
.ws1ee{word-spacing:-0.599513px;}
.ws23e{word-spacing:-0.593901px;}
.ws233{word-spacing:-0.588245px;}
.ws173{word-spacing:-0.588201px;}
.ws12{word-spacing:-0.582589px;}
.ws21a{word-spacing:-0.582545px;}
.ws14e{word-spacing:-0.576932px;}
.ws221{word-spacing:-0.576890px;}
.ws1f0{word-spacing:-0.571276px;}
.ws1d1{word-spacing:-0.571234px;}
.ws67{word-spacing:-0.565620px;}
.ws14c{word-spacing:-0.565578px;}
.ws22d{word-spacing:-0.559964px;}
.ws1e0{word-spacing:-0.559922px;}
.ws14f{word-spacing:-0.554308px;}
.ws1b6{word-spacing:-0.554266px;}
.ws22a{word-spacing:-0.548651px;}
.ws128{word-spacing:-0.548611px;}
.ws10f{word-spacing:-0.542995px;}
.ws167{word-spacing:-0.542955px;}
.ws6e{word-spacing:-0.537339px;}
.ws93{word-spacing:-0.531683px;}
.ws1a8{word-spacing:-0.531643px;}
.ws149{word-spacing:-0.526027px;}
.ws117{word-spacing:-0.525988px;}
.ws11e{word-spacing:-0.486397px;}
.ws9a{word-spacing:-0.480777px;}
.ws23f{word-spacing:-0.463808px;}
.ws116{word-spacing:-0.452462px;}
.ws91{word-spacing:-0.446840px;}
.ws15c{word-spacing:-0.435495px;}
.ws232{word-spacing:-0.424215px;}
.wsdb{word-spacing:-0.395905px;}
.ws3c{word-spacing:-0.390278px;}
.ws13c{word-spacing:-0.384593px;}
.ws202{word-spacing:-0.378937px;}
.wsb{word-spacing:-0.378798px;}
.ws235{word-spacing:-0.367626px;}
.ws183{word-spacing:-0.363015px;}
.ws1f2{word-spacing:-0.361970px;}
.ws87{word-spacing:-0.360716px;}
.ws2d{word-spacing:-0.356341px;}
.ws2b{word-spacing:-0.350684px;}
.ws207{word-spacing:-0.350658px;}
.ws2a{word-spacing:-0.345028px;}
.ws34{word-spacing:-0.339372px;}
.ws21b{word-spacing:-0.339347px;}
.ws2e{word-spacing:-0.333716px;}
.ws7{word-spacing:-0.331448px;}
.ws50{word-spacing:-0.328060px;}
.ws1bb{word-spacing:-0.323556px;}
.ws41{word-spacing:-0.322403px;}
.ws15d{word-spacing:-0.322379px;}
.ws4f{word-spacing:-0.316747px;}
.wsfe{word-spacing:-0.316724px;}
.wsc7{word-spacing:-0.311068px;}
.ws4c{word-spacing:-0.305435px;}
.ws15e{word-spacing:-0.305412px;}
.ws179{word-spacing:-0.299756px;}
.wsfd{word-spacing:-0.294101px;}
.wsba{word-spacing:-0.288445px;}
.ws71{word-spacing:-0.282810px;}
.wse2{word-spacing:-0.282789px;}
.wse9{word-spacing:-0.279404px;}
.wsbc{word-spacing:-0.277133px;}
.wsf8{word-spacing:-0.271477px;}
.ws79{word-spacing:-0.269267px;}
.wsab{word-spacing:-0.265822px;}
.ws104{word-spacing:-0.264164px;}
.wsbb{word-spacing:-0.260166px;}
.ws1dc{word-spacing:-0.254529px;}
.wsb9{word-spacing:-0.254510px;}
.ws6f{word-spacing:-0.248873px;}
.wsc9{word-spacing:-0.248854px;}
.ws38{word-spacing:-0.243217px;}
.wsbd{word-spacing:-0.243199px;}
.wsb4{word-spacing:-0.238764px;}
.ws99{word-spacing:-0.237560px;}
.wsf5{word-spacing:-0.237543px;}
.ws12c{word-spacing:-0.233703px;}
.wsb1{word-spacing:-0.233684px;}
.ws68{word-spacing:-0.231904px;}
.wsd3{word-spacing:-0.231887px;}
.ws175{word-spacing:-0.228623px;}
.ws62{word-spacing:-0.226248px;}
.ws109{word-spacing:-0.226231px;}
.ws178{word-spacing:-0.223542px;}
.ws112{word-spacing:-0.220965px;}
.ws5e{word-spacing:-0.220592px;}
.wsd0{word-spacing:-0.220575px;}
.wse7{word-spacing:-0.218443px;}
.ws3b{word-spacing:-0.214936px;}
.wsc3{word-spacing:-0.214920px;}
.wsf0{word-spacing:-0.213363px;}
.ws180{word-spacing:-0.213074px;}
.ws13{word-spacing:-0.209279px;}
.ws10b{word-spacing:-0.209264px;}
.ws131{word-spacing:-0.208301px;}
.wse8{word-spacing:-0.208283px;}
.ws33{word-spacing:-0.203623px;}
.wsd9{word-spacing:-0.203608px;}
.ws77{word-spacing:-0.203220px;}
.ws1b1{word-spacing:-0.198140px;}
.wse{word-spacing:-0.197967px;}
.wscf{word-spacing:-0.197952px;}
.ws5d{word-spacing:-0.192311px;}
.wse1{word-spacing:-0.192297px;}
.ws10{word-spacing:-0.186655px;}
.ws10c{word-spacing:-0.186641px;}
.ws1ad{word-spacing:-0.182898px;}
.ws9{word-spacing:-0.181507px;}
.ws6b{word-spacing:-0.180998px;}
.ws119{word-spacing:-0.180985px;}
.ws3f{word-spacing:-0.175342px;}
.wsdd{word-spacing:-0.175329px;}
.wsb6{word-spacing:-0.173602px;}
.ws74{word-spacing:-0.172737px;}
.ws61{word-spacing:-0.169686px;}
.wsde{word-spacing:-0.169673px;}
.ws17{word-spacing:-0.167657px;}
.ws89{word-spacing:-0.164030px;}
.ws185{word-spacing:-0.164018px;}
.ws69{word-spacing:-0.158374px;}
.wse4{word-spacing:-0.158362px;}
.ws120{word-spacing:-0.157832px;}
.ws1f1{word-spacing:-0.152717px;}
.ws172{word-spacing:-0.152706px;}
.ws161{word-spacing:-0.147322px;}
.ws203{word-spacing:-0.147061px;}
.wsd5{word-spacing:-0.147050px;}
.ws168{word-spacing:-0.141395px;}
.ws136{word-spacing:-0.137162px;}
.ws1ed{word-spacing:-0.130083px;}
.ws80{word-spacing:-0.128704px;}
.wsa{word-spacing:-0.126266px;}
.ws188{word-spacing:-0.124427px;}
.ws15f{word-spacing:-0.121922px;}
.ws19f{word-spacing:-0.118780px;}
.ws21c{word-spacing:-0.118771px;}
.ws101{word-spacing:-0.116842px;}
.wsd6{word-spacing:-0.115156px;}
.ws98{word-spacing:-0.108382px;}
.ws159{word-spacing:-0.101804px;}
.ws22{word-spacing:-0.101610px;}
.ws9c{word-spacing:-0.101608px;}
.ws17b{word-spacing:-0.101602px;}
.ws208{word-spacing:-0.096155px;}
.ws122{word-spacing:-0.096148px;}
.ws96{word-spacing:-0.094834px;}
.ws1ab{word-spacing:-0.091449px;}
.ws1d6{word-spacing:-0.090492px;}
.ws153{word-spacing:-0.086808px;}
.ws90{word-spacing:-0.086369px;}
.ws21e{word-spacing:-0.084843px;}
.ws1be{word-spacing:-0.084837px;}
.ws10d{word-spacing:-0.081287px;}
.wsb7{word-spacing:-0.081282px;}
.ws6d{word-spacing:-0.079187px;}
.ws125{word-spacing:-0.079181px;}
.ws85{word-spacing:-0.078916px;}
.ws7e{word-spacing:-0.074513px;}
.ws106{word-spacing:-0.074508px;}
.ws150{word-spacing:-0.073531px;}
.ws157{word-spacing:-0.073525px;}
.ws8c{word-spacing:-0.067874px;}
.ws18e{word-spacing:-0.067869px;}
.ws94{word-spacing:-0.067739px;}
.wsb8{word-spacing:-0.067735px;}
.ws19a{word-spacing:-0.062214px;}
.wsea{word-spacing:-0.060961px;}
.wsda{word-spacing:-0.056558px;}
.ws105{word-spacing:-0.054188px;}
.ws92{word-spacing:-0.050906px;}
.ws123{word-spacing:-0.050902px;}
.wsa3{word-spacing:-0.045250px;}
.ws192{word-spacing:-0.045246px;}
.ws7f{word-spacing:-0.040643px;}
.ws9e{word-spacing:-0.039593px;}
.ws1a6{word-spacing:-0.039590px;}
.wsd{word-spacing:-0.039458px;}
.ws1de{word-spacing:-0.033935px;}
.ws18b{word-spacing:-0.033869px;}
.ws3a{word-spacing:-0.028281px;}
.ws11c{word-spacing:-0.028279px;}
.ws9b{word-spacing:-0.027096px;}
.wsc{word-spacing:-0.023675px;}
.ws18c{word-spacing:-0.022625px;}
.wsca{word-spacing:-0.022623px;}
.ws97{word-spacing:-0.020322px;}
.ws1b8{word-spacing:-0.016967px;}
.ws23c{word-spacing:-0.015783px;}
.ws18a{word-spacing:-0.013548px;}
.ws1d9{word-spacing:-0.011312px;}
.ws7d{word-spacing:-0.007892px;}
.ws10e{word-spacing:-0.006774px;}
.wsaa{word-spacing:-0.005656px;}
.ws6{word-spacing:0.000000px;}
.ws196{word-spacing:0.005656px;}
.ws35{word-spacing:0.011312px;}
.ws17d{word-spacing:0.015240px;}
.ws28{word-spacing:0.015783px;}
.ws1a1{word-spacing:0.016967px;}
.ws42{word-spacing:0.016969px;}
.ws189{word-spacing:0.020322px;}
.ws47{word-spacing:0.022625px;}
.ws1a9{word-spacing:0.028279px;}
.ws151{word-spacing:0.028281px;}
.ws135{word-spacing:0.033935px;}
.ws32{word-spacing:0.033937px;}
.ws1c{word-spacing:0.035564px;}
.ws1a4{word-spacing:0.039590px;}
.ws86{word-spacing:0.040643px;}
.ws1a5{word-spacing:0.045246px;}
.ws20b{word-spacing:0.045250px;}
.ws1ba{word-spacing:0.047350px;}
.ws191{word-spacing:0.050902px;}
.ws66{word-spacing:0.050906px;}
.ws16e{word-spacing:0.056558px;}
.wsee{word-spacing:0.060961px;}
.ws1d{word-spacing:0.060966px;}
.ws11b{word-spacing:0.062214px;}
.ws1d2{word-spacing:0.062218px;}
.ws81{word-spacing:0.067739px;}
.wsf7{word-spacing:0.067869px;}
.ws30{word-spacing:0.067874px;}
.ws7c{word-spacing:0.071025px;}
.wsc6{word-spacing:0.073525px;}
.wsa1{word-spacing:0.073531px;}
.wsc0{word-spacing:0.079181px;}
.ws8d{word-spacing:0.079187px;}
.wsfa{word-spacing:0.084837px;}
.ws83{word-spacing:0.084843px;}
.ws127{word-spacing:0.088060px;}
.wsc4{word-spacing:0.090492px;}
.ws6c{word-spacing:0.090499px;}
.wsd4{word-spacing:0.096148px;}
.ws6a{word-spacing:0.096155px;}
.wsaf{word-spacing:0.101602px;}
.wsc1{word-spacing:0.101804px;}
.ws48{word-spacing:0.101812px;}
.ws182{word-spacing:0.102591px;}
.wsed{word-spacing:0.106682px;}
.wsdf{word-spacing:0.107460px;}
.ws36{word-spacing:0.107468px;}
.wsb3{word-spacing:0.111762px;}
.wsf9{word-spacing:0.113116px;}
.ws60{word-spacing:0.113124px;}
.ws190{word-spacing:0.116842px;}
.ws8e{word-spacing:0.116852px;}
.ws114{word-spacing:0.118374px;}
.wsc2{word-spacing:0.118771px;}
.ws70{word-spacing:0.118780px;}
.wsb2{word-spacing:0.121922px;}
.wsbf{word-spacing:0.124427px;}
.wsa2{word-spacing:0.124436px;}
.wseb{word-spacing:0.127002px;}
.wsd8{word-spacing:0.130083px;}
.ws14{word-spacing:0.130093px;}
.wsf1{word-spacing:0.132082px;}
.ws108{word-spacing:0.135739px;}
.ws72{word-spacing:0.135749px;}
.wse6{word-spacing:0.137162px;}
.ws78{word-spacing:0.137174px;}
.wse0{word-spacing:0.141395px;}
.ws37{word-spacing:0.141405px;}
.wsb0{word-spacing:0.142242px;}
.ws174{word-spacing:0.142254px;}
.wsd7{word-spacing:0.147050px;}
.ws11{word-spacing:0.147061px;}
.wsf2{word-spacing:0.147322px;}
.ws7a{word-spacing:0.147335px;}
.wsac{word-spacing:0.152402px;}
.ws12d{word-spacing:0.152415px;}
.ws110{word-spacing:0.152706px;}
.ws5c{word-spacing:0.152717px;}
.ws12f{word-spacing:0.157496px;}
.ws113{word-spacing:0.157832px;}
.ws111{word-spacing:0.158362px;}
.ws2f{word-spacing:0.158374px;}
.wsef{word-spacing:0.162563px;}
.ws1b{word-spacing:0.162576px;}
.ws11a{word-spacing:0.164018px;}
.ws95{word-spacing:0.164030px;}
.ws130{word-spacing:0.167657px;}
.wsd2{word-spacing:0.169673px;}
.ws5f{word-spacing:0.169686px;}
.ws1b0{word-spacing:0.172737px;}
.wsfb{word-spacing:0.175329px;}
.ws84{word-spacing:0.175342px;}
.ws20{word-spacing:0.177818px;}
.ws152{word-spacing:0.180985px;}
.ws9f{word-spacing:0.180998px;}
.ws16f{word-spacing:0.186641px;}
.ws65{word-spacing:0.186655px;}
.ws15a{word-spacing:0.192297px;}
.ws14b{word-spacing:0.192311px;}
.ws16{word-spacing:0.193059px;}
.ws1c0{word-spacing:0.197952px;}
.wsff{word-spacing:0.203203px;}
.ws12b{word-spacing:0.203608px;}
.ws64{word-spacing:0.203623px;}
.ws238{word-spacing:0.209264px;}
.ws23d{word-spacing:0.213074px;}
.ws171{word-spacing:0.214920px;}
.ws162{word-spacing:0.218443px;}
.ws8a{word-spacing:0.220592px;}
.ws224{word-spacing:0.226231px;}
.wse5{word-spacing:0.228604px;}
.ws1d8{word-spacing:0.231887px;}
.wscc{word-spacing:0.243844px;}
.ws1b5{word-spacing:0.243864px;}
.ws15{word-spacing:0.254025px;}
.ws1d4{word-spacing:0.254529px;}
.ws14a{word-spacing:0.269267px;}
.ws1fb{word-spacing:0.271498px;}
.ws158{word-spacing:0.277154px;}
.ws17e{word-spacing:0.279404px;}
.ws166{word-spacing:0.282789px;}
.ws222{word-spacing:0.288445px;}
.ws21f{word-spacing:0.288466px;}
.ws8f{word-spacing:0.289589px;}
.wsc8{word-spacing:0.294101px;}
.ws21{word-spacing:0.294669px;}
.ws17f{word-spacing:0.299725px;}
.ws12a{word-spacing:0.305412px;}
.ws1ec{word-spacing:0.305435px;}
.ws1a3{word-spacing:0.311068px;}
.ws1db{word-spacing:0.316724px;}
.ws21d{word-spacing:0.316747px;}
.ws18d{word-spacing:0.322379px;}
.ws206{word-spacing:0.328035px;}
.ws1af{word-spacing:0.330233px;}
.ws126{word-spacing:0.333691px;}
.ws1fa{word-spacing:0.339347px;}
.ws18{word-spacing:0.340394px;}
.ws124{word-spacing:0.345003px;}
.ws23{word-spacing:0.345474px;}
.ws211{word-spacing:0.350658px;}
.ws205{word-spacing:0.350684px;}
.ws18f{word-spacing:0.355606px;}
.ws1e1{word-spacing:0.356314px;}
.wsae{word-spacing:0.360686px;}
.ws1b2{word-spacing:0.360716px;}
.wsdc{word-spacing:0.361970px;}
.ws1dd{word-spacing:0.367626px;}
.ws134{word-spacing:0.370846px;}
.ws10a{word-spacing:0.373281px;}
.ws19{word-spacing:0.375957px;}
.wsf4{word-spacing:0.381006px;}
.ws19b{word-spacing:0.381038px;}
.ws1d7{word-spacing:0.384593px;}
.ws103{word-spacing:0.386086px;}
.ws76{word-spacing:0.386118px;}
.wsad{word-spacing:0.391166px;}
.wsf3{word-spacing:0.396246px;}
.ws75{word-spacing:0.396279px;}
.ws8{word-spacing:0.397124px;}
.wsb5{word-spacing:0.401326px;}
.ws1b4{word-spacing:0.401360px;}
.ws1c2{word-spacing:0.401560px;}
.ws177{word-spacing:0.406440px;}
.ws239{word-spacing:0.407216px;}
.ws1ae{word-spacing:0.411521px;}
.ws1fc{word-spacing:0.412872px;}
.ws1d5{word-spacing:0.412903px;}
.ws100{word-spacing:0.416567px;}
.ws160{word-spacing:0.418528px;}
.ws137{word-spacing:0.421647px;}
.ws1ac{word-spacing:0.421682px;}
.ws22b{word-spacing:0.424184px;}
.ws220{word-spacing:0.424215px;}
.ws1e{word-spacing:0.426762px;}
.ws164{word-spacing:0.429839px;}
.ws102{word-spacing:0.431807px;}
.ws176{word-spacing:0.431843px;}
.ws13a{word-spacing:0.435495px;}
.ws1c1{word-spacing:0.435527px;}
.ws1f{word-spacing:0.436923px;}
.wsc5{word-spacing:0.441151px;}
.ws1da{word-spacing:0.441184px;}
.ws118{word-spacing:0.446807px;}
.ws8b{word-spacing:0.446840px;}
.ws1aa{word-spacing:0.447084px;}
.ws11d{word-spacing:0.452462px;}
.ws22c{word-spacing:0.452496px;}
.wscb{word-spacing:0.458118px;}
.ws31{word-spacing:0.458152px;}
.ws12e{word-spacing:0.462326px;}
.wsf6{word-spacing:0.463774px;}
.ws88{word-spacing:0.463808px;}
.wsfc{word-spacing:0.469430px;}
.ws212{word-spacing:0.469465px;}
.ws107{word-spacing:0.475086px;}
.wsa0{word-spacing:0.475121px;}
.wsce{word-spacing:0.480741px;}
.ws9d{word-spacing:0.480777px;}
.wsbe{word-spacing:0.486397px;}
.ws63{word-spacing:0.486433px;}
.wsd1{word-spacing:0.492053px;}
.ws73{word-spacing:0.492089px;}
.ws1a{word-spacing:0.492809px;}
.ws15b{word-spacing:0.497709px;}
.wsf{word-spacing:0.497746px;}
.ws19e{word-spacing:0.503364px;}
.ws13b{word-spacing:0.509020px;}
.ws1a0{word-spacing:0.509058px;}
.ws223{word-spacing:0.514676px;}
.ws219{word-spacing:0.520332px;}
.ws1bd{word-spacing:0.531643px;}
.ws16c{word-spacing:0.542955px;}
.ws213{word-spacing:0.571234px;}
.ws1d3{word-spacing:0.593857px;}
.ws1ef{word-spacing:0.723940px;}
.ws13f{word-spacing:1.872063px;}
.ws140{word-spacing:3.054121px;}
.ws146{word-spacing:3.761094px;}
.ws142{word-spacing:4.835692px;}
.ws141{word-spacing:5.520041px;}
.ws13e{word-spacing:7.352514px;}
.ws147{word-spacing:12.380502px;}
.ws14d{word-spacing:31.808107px;}
.ws29{word-spacing:61.567737px;}
.ws2c{word-spacing:74.882432px;}
.ws52{word-spacing:87.128105px;}
.ws3d{word-spacing:90.731104px;}
.ws3e{word-spacing:106.568464px;}
.ws40{word-spacing:113.044813px;}
.ws4a{word-spacing:122.043827px;}
.ws4d{word-spacing:134.645841px;}
.ws19d{word-spacing:143.651159px;}
.ws115{word-spacing:143.745858px;}
.ws1a7{word-spacing:143.761642px;}
.ws4e{word-spacing:144.368849px;}
.ws4b{word-spacing:147.242198px;}
.ws181{word-spacing:148.007333px;}
.ws11f{word-spacing:148.015225px;}
.ws186{word-spacing:148.485323px;}
.ws45{word-spacing:150.483201px;}
.ws46{word-spacing:159.849868px;}
.ws184{word-spacing:172.334281px;}
.ws121{word-spacing:172.347829px;}
.ws16a{word-spacing:172.368150px;}
.ws16b{word-spacing:172.422342px;}
.ws13d{word-spacing:172.435889px;}
.ws169{word-spacing:172.716457px;}
.ws163{word-spacing:172.750324px;}
.ws17a{word-spacing:172.763871px;}
.ws187{word-spacing:172.777418px;}
.ws82{word-spacing:220.310356px;}
.ws5b{word-spacing:220.326139px;}
._40{margin-left:-173.287401px;}
._3b{margin-left:-171.968492px;}
._21{margin-left:-169.176942px;}
._20{margin-left:-166.590121px;}
._1f{margin-left:-160.138334px;}
._1e{margin-left:-157.551513px;}
._27{margin-left:-153.718547px;}
._2d{margin-left:-150.839542px;}
._39{margin-left:-147.825826px;}
._2b{margin-left:-144.300974px;}
._2a{margin-left:-141.122190px;}
._25{margin-left:-131.698961px;}
._24{margin-left:-129.151733px;}
._19{margin-left:-122.699947px;}
._18{margin-left:-120.499685px;}
._17{margin-left:-115.895538px;}
._16{margin-left:-114.032710px;}
._15{margin-left:-100.058178px;}
._14{margin-left:-97.201797px;}
._2f{margin-left:-93.598798px;}
._a{margin-left:-83.660854px;}
._9{margin-left:-81.358781px;}
._3a{margin-left:-77.398353px;}
._5{margin-left:-71.245495px;}
._4{margin-left:-68.038430px;}
._38{margin-left:-55.801645px;}
._37{margin-left:-51.484929px;}
._e{margin-left:-14.247968px;}
._f{margin-left:-12.375766px;}
._d{margin-left:-10.597781px;}
._6{margin-left:-8.917690px;}
._12{margin-left:-7.715712px;}
._c{margin-left:-6.120008px;}
._28{margin-left:-4.737958px;}
._11{margin-left:-2.419042px;}
._1{margin-left:-1.233052px;}
._0{width:1.055045px;}
._10{width:2.224895px;}
._1c{width:3.297565px;}
._1b{width:6.476349px;}
._26{width:13.485308px;}
._2c{width:17.455142px;}
._3f{width:25.073935px;}
._29{width:27.207249px;}
._3e{width:29.331241px;}
._46{width:36.459284px;}
._41{width:44.761269px;}
._3d{width:52.201070px;}
._3c{width:53.349278px;}
._45{width:65.773503px;}
._13{width:70.766639px;}
._2e{width:74.262823px;}
._36{width:75.783227px;}
._7{width:85.623556px;}
._8{width:86.760452px;}
._30{width:92.517464px;}
._32{width:95.037536px;}
._3{width:99.153186px;}
._2{width:100.652079px;}
._b{width:113.944149px;}
._33{width:143.643267px;}
._22{width:145.903617px;}
._34{width:148.453759px;}
._1d{width:168.358731px;}
._23{width:171.709108px;}
._35{width:172.770644px;}
._1a{width:174.105430px;}
._31{width:223.199346px;}
._44{width:435.733452px;}
._43{width:439.980750px;}
._42{width:468.363994px;}
.fc11{color:rgb(17,17,17);}
.fc10{color:rgb(103,107,94);}
.fcd{color:rgb(20,75,55);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(34,34,34);}
.fc6{color:rgb(48,48,48);}
.fce{color:rgb(18,61,128);}
.fc3{color:rgb(12,124,187);}
.fca{color:rgb(42,42,42);}
.fcc{color:rgb(51,51,51);}
.fc1{color:rgb(255,0,0);}
.fcf{color:rgb(118,118,118);}
.fc8{color:rgb(82,82,84);}
.fc2{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc7{color:rgb(68,71,70);}
.fc9{color:rgb(2,113,177);}
.fcb{color:rgb(17,85,204);}
.fsa{font-size:33.866400px;}
.fs5{font-size:33.869400px;}
.fs9{font-size:36.576600px;}
.fs6{font-size:36.579000px;}
.fs7{font-size:50.800800px;}
.fs0{font-size:50.805000px;}
.fs8{font-size:56.557800px;}
.fs1{font-size:56.562000px;}
.fs3{font-size:59.272200px;}
.fsd{font-size:61.977600px;}
.fsc{font-size:67.734600px;}
.fs4{font-size:67.738800px;}
.fse{font-size:76.207800px;}
.fsb{font-size:78.910200px;}
.fs2{font-size:78.916200px;}
.fsf{font-size:84.674400px;}
.y0{bottom:0.000000px;}
.y1{bottom:80.280000px;}
.y1fe{bottom:102.874705px;}
.y3a0{bottom:103.142844px;}
.y28f{bottom:105.029999px;}
.yb5{bottom:105.030000px;}
.y3c{bottom:105.030235px;}
.y3d3{bottom:105.030527px;}
.y636{bottom:105.031053px;}
.y277{bottom:105.300138px;}
.y5d5{bottom:105.660000px;}
.y261{bottom:105.660804px;}
.y486{bottom:105.930000px;}
.y8c6{bottom:106.739265px;}
.y844{bottom:108.180000px;}
.y89a{bottom:108.180432px;}
.y7aa{bottom:108.180643px;}
.y7e0{bottom:108.899697px;}
.y811{bottom:108.900144px;}
.y17b{bottom:109.260000px;}
.y608{bottom:109.352040px;}
.y231{bottom:110.789511px;}
.y74{bottom:110.880000px;}
.y562{bottom:111.059697px;}
.y4bb{bottom:113.670000px;}
.y6d4{bottom:115.831980px;}
.y4d2{bottom:116.460000px;}
.y511{bottom:116.910000px;}
.y903{bottom:117.900432px;}
.y453{bottom:118.259784px;}
.y370{bottom:118.622784px;}
.y1fd{bottom:119.164765px;}
.y39f{bottom:119.342412px;}
.y32b{bottom:119.610000px;}
.y3d2{bottom:119.610291px;}
.y635{bottom:119.610818px;}
.y17a{bottom:119.700000px;}
.yb4{bottom:121.049811px;}
.y3ee{bottom:121.139826px;}
.y3ef{bottom:121.140000px;}
.y276{bottom:121.230046px;}
.y5d4{bottom:121.770000px;}
.y260{bottom:121.860372px;}
.y485{bottom:122.220000px;}
.y8c5{bottom:123.029325px;}
.y3b{bottom:123.930000px;}
.y843{bottom:124.379325px;}
.y7a9{bottom:124.379454px;}
.y870{bottom:124.380144px;}
.y899{bottom:124.381111px;}
.y58f{bottom:124.740000px;}
.y74d{bottom:125.010432px;}
.y7df{bottom:125.189757px;}
.y810{bottom:125.189817px;}
.y607{bottom:125.551608px;}
.y230{bottom:126.898477px;}
.y73{bottom:127.080000px;}
.y561{bottom:127.349757px;}
.y2ea{bottom:127.980000px;}
.y4ba{bottom:129.960000px;}
.y6d3{bottom:132.122040px;}
.y11b{bottom:132.302038px;}
.y4e7{bottom:132.840000px;}
.y510{bottom:133.200000px;}
.y6ae{bottom:133.746060px;}
.y902{bottom:134.099879px;}
.y28e{bottom:134.280000px;}
.y3d1{bottom:134.280235px;}
.y634{bottom:134.280762px;}
.y452{bottom:134.370274px;}
.y36f{bottom:134.822351px;}
.y1d3{bottom:135.000900px;}
.y4d1{bottom:135.360000px;}
.y1fc{bottom:135.364333px;}
.y39e{bottom:135.541980px;}
.yb3{bottom:135.629576px;}
.y3ed{bottom:135.719655px;}
.y275{bottom:135.899990px;}
.y3a{bottom:136.980818px;}
.y5d3{bottom:138.060000px;}
.y25f{bottom:138.150432px;}
.y484{bottom:138.330000px;}
.y842{bottom:140.669385px;}
.y7a8{bottom:140.669514px;}
.y898{bottom:140.671171px;}
.y58e{bottom:141.030000px;}
.ye6{bottom:141.210000px;}
.y74c{bottom:141.210561px;}
.y7de{bottom:141.300246px;}
.y606{bottom:141.751176px;}
.y72{bottom:143.370000px;}
.y560{bottom:143.639817px;}
.y2e9{bottom:144.180000px;}
.y4b9{bottom:146.070000px;}
.y8c4{bottom:147.689940px;}
.y179{bottom:147.962973px;}
.y77e{bottom:148.320679px;}
.y6d2{bottom:148.321608px;}
.y11a{bottom:148.501395px;}
.y633{bottom:148.860526px;}
.y4e6{bottom:149.130000px;}
.y80f{bottom:149.759940px;}
.y6ad{bottom:149.945627px;}
.y3ec{bottom:150.299485px;}
.yb2{bottom:150.299520px;}
.y901{bottom:150.389940px;}
.y274{bottom:150.479755px;}
.y451{bottom:150.660334px;}
.y6f9{bottom:151.110744px;}
.y36e{bottom:151.112412px;}
.y1d2{bottom:151.290960px;}
.y1fb{bottom:151.563901px;}
.y22f{bottom:151.648170px;}
.ye5{bottom:151.740000px;}
.y39{bottom:151.740940px;}
.y39d{bottom:151.832040px;}
.y3d0{bottom:153.090000px;}
.y4d0{bottom:154.170000px;}
.y5d2{bottom:154.350000px;}
.y25e{bottom:154.351737px;}
.y483{bottom:154.620000px;}
.y7a7{bottom:156.869082px;}
.y897{bottom:156.870739px;}
.y74b{bottom:157.410129px;}
.y50f{bottom:157.860000px;}
.y605{bottom:158.041236px;}
.y71{bottom:159.570000px;}
.y55f{bottom:159.750307px;}
.y4b8{bottom:162.360000px;}
.y28d{bottom:162.450432px;}
.y632{bottom:163.530470px;}
.y8c3{bottom:163.981603px;}
.y178{bottom:164.253033px;}
.y6d1{bottom:164.521176px;}
.y77d{bottom:164.610739px;}
.y119{bottom:164.791251px;}
.y273{bottom:165.149698px;}
.y3eb{bottom:165.240000px;}
.y4e5{bottom:165.330000px;}
.y86f{bottom:165.330189px;}
.y58d{bottom:165.690000px;}
.y80e{bottom:166.049697px;}
.y7dd{bottom:166.049940px;}
.y3cf{bottom:166.230291px;}
.y6ac{bottom:166.235688px;}
.y38{bottom:166.320705px;}
.y900{bottom:166.680000px;}
.y450{bottom:166.950394px;}
.y36d{bottom:167.311980px;}
.y6f8{bottom:167.400804px;}
.y1d1{bottom:167.490528px;}
.y1fa{bottom:167.853961px;}
.y22e{bottom:167.938230px;}
.y39c{bottom:168.031608px;}
.y2e8{bottom:168.840000px;}
.yb1{bottom:170.100000px;}
.y5d1{bottom:170.460000px;}
.y482{bottom:170.910000px;}
.y4cf{bottom:172.980000px;}
.ye4{bottom:172.981750px;}
.y896{bottom:173.070307px;}
.y74a{bottom:173.700189px;}
.y53e{bottom:173.789385px;}
.y604{bottom:174.240804px;}
.y70{bottom:175.770000px;}
.y631{bottom:178.110235px;}
.y28c{bottom:178.650000px;}
.y28a{bottom:178.650861px;}
.y25d{bottom:179.012351px;}
.y8c2{bottom:180.181171px;}
.y177{bottom:180.452601px;}
.y6d0{bottom:180.811236px;}
.y3ce{bottom:180.990414px;}
.y37{bottom:180.990649px;}
.y118{bottom:181.081107px;}
.y3ea{bottom:181.170000px;}
.y7a6{bottom:181.529697px;}
.y841{bottom:181.529757px;}
.y4e4{bottom:181.530000px;}
.y58c{bottom:181.980000px;}
.y7dc{bottom:182.339728px;}
.y80d{bottom:182.339757px;}
.y6ab{bottom:182.435256px;}
.y50e{bottom:182.610000px;}
.y932{bottom:182.971608px;}
.y44f{bottom:183.060884px;}
.y36c{bottom:183.511548px;}
.y28b{bottom:183.600000px;}
.y1d0{bottom:183.690096px;}
.y6f7{bottom:183.690864px;}
.yb0{bottom:183.869939px;}
.y22d{bottom:184.048720px;}
.y1f9{bottom:184.053529px;}
.y39b{bottom:184.231176px;}
.y55e{bottom:184.499940px;}
.y272{bottom:184.950000px;}
.y5d0{bottom:186.750000px;}
.y669{bottom:187.020000px;}
.ye3{bottom:189.181107px;}
.y77c{bottom:189.360432px;}
.y749{bottom:189.899757px;}
.y603{bottom:190.440372px;}
.y8ff{bottom:191.249879px;}
.y4ce{bottom:191.790000px;}
.y6f{bottom:192.060000px;}
.y2e7{bottom:193.590000px;}
.y4b7{bottom:194.760000px;}
.y289{bottom:194.850429px;}
.y25c{bottom:195.302412px;}
.y481{bottom:195.480000px;}
.y36{bottom:195.480235px;}
.y271{bottom:195.930130px;}
.y8c1{bottom:196.380739px;}
.y630{bottom:196.920000px;}
.y6cf{bottom:197.010804px;}
.y117{bottom:197.191379px;}
.y4e3{bottom:197.730000px;}
.y895{bottom:197.819207px;}
.y7a5{bottom:197.819757px;}
.y840{bottom:197.819817px;}
.y58b{bottom:198.180000px;}
.y7db{bottom:198.449147px;}
.y53d{bottom:198.450000px;}
.y80c{bottom:198.450246px;}
.y6aa{bottom:198.634824px;}
.y50d{bottom:198.810000px;}
.y931{bottom:199.261668px;}
.y44e{bottom:199.350944px;}
.y2be{bottom:199.530000px;}
.y3cd{bottom:199.800000px;}
.y36b{bottom:199.801608px;}
.y6f6{bottom:199.890432px;}
.y1cf{bottom:199.980156px;}
.y1f8{bottom:200.253097px;}
.y22c{bottom:200.338780px;}
.y39a{bottom:200.521236px;}
.y55d{bottom:200.790000px;}
.yaf{bottom:201.240169px;}
.y668{bottom:203.310000px;}
.y176{bottom:205.113216px;}
.ye2{bottom:205.470963px;}
.y77b{bottom:205.561176px;}
.y34b{bottom:206.549595px;}
.y602{bottom:206.730432px;}
.y62f{bottom:207.270000px;}
.y8fe{bottom:207.539940px;}
.y6e{bottom:208.260000px;}
.y2e6{bottom:209.790000px;}
.y3cc{bottom:210.150000px;}
.y4cd{bottom:210.960000px;}
.y4b6{bottom:211.050000px;}
.y288{bottom:211.140489px;}
.y5cf{bottom:211.410000px;}
.y25b{bottom:211.501980px;}
.y480{bottom:211.770000px;}
.y6ce{bottom:213.210372px;}
.y116{bottom:213.481235px;}
.y4e2{bottom:214.020000px;}
.y894{bottom:214.109268px;}
.y7a4{bottom:214.109817px;}
.y86e{bottom:214.109878px;}
.y35{bottom:214.290000px;}
.y748{bottom:214.560372px;}
.y6a9{bottom:214.924884px;}
.y50c{bottom:215.010000px;}
.y930{bottom:215.461236px;}
.y2bd{bottom:215.730000px;}
.yae{bottom:216.000291px;}
.y36a{bottom:216.001176px;}
.y6f5{bottom:216.090000px;}
.y1ce{bottom:216.090645px;}
.y22b{bottom:216.628840px;}
.y399{bottom:216.720804px;}
.y667{bottom:219.600000px;}
.y8c0{bottom:221.130432px;}
.y175{bottom:221.403276px;}
.y77a{bottom:221.760744px;}
.y83f{bottom:222.480432px;}
.y34a{bottom:222.839656px;}
.y58a{bottom:222.840000px;}
.y601{bottom:222.930432px;}
.y7da{bottom:223.198840px;}
.y80b{bottom:223.199940px;}
.y8fd{bottom:223.830000px;}
.y44d{bottom:224.011559px;}
.y6d{bottom:224.460000px;}
.y1f7{bottom:224.913712px;}
.y34{bottom:226.170000px;}
.y55c{bottom:226.441236px;}
.y4b5{bottom:227.250000px;}
.y287{bottom:227.340057px;}
.y25a{bottom:227.701548px;}
.y47f{bottom:228.060000px;}
.y6cd{bottom:229.500432px;}
.y115{bottom:229.771091px;}
.ye1{bottom:230.041496px;}
.y893{bottom:230.219757px;}
.y4e1{bottom:230.220000px;}
.yad{bottom:230.580056px;}
.y747{bottom:230.850432px;}
.y6a8{bottom:231.124452px;}
.y92f{bottom:231.660804px;}
.y369{bottom:232.200744px;}
.y1cd{bottom:232.380706px;}
.y22a{bottom:232.739330px;}
.y398{bottom:232.920372px;}
.y53c{bottom:233.820000px;}
.y2e5{bottom:234.450000px;}
.y666{bottom:235.710000px;}
.y5ce{bottom:236.070000px;}
.y8bf{bottom:237.331360px;}
.y174{bottom:237.602844px;}
.y779{bottom:238.050804px;}
.y83e{bottom:238.679697px;}
.y7a3{bottom:238.679940px;}
.y86d{bottom:238.680000px;}
.y349{bottom:238.950145px;}
.y600{bottom:239.130000px;}
.y7d9{bottom:239.488901px;}
.y80a{bottom:239.489817px;}
.y50b{bottom:239.760000px;}
.y44c{bottom:240.211127px;}
.y2bc{bottom:240.390000px;}
.y6c{bottom:240.750000px;}
.y1f6{bottom:241.203772px;}
.y6f4{bottom:241.829450px;}
.y55b{bottom:242.731296px;}
.y4b4{bottom:243.450000px;}
.y286{bottom:243.539625px;}
.y259{bottom:243.991608px;}
.y47e{bottom:244.170000px;}
.y32a{bottom:245.071236px;}
.y6cc{bottom:245.700000px;}
.y114{bottom:245.881362px;}
.ye0{bottom:246.331352px;}
.y892{bottom:246.509817px;}
.y746{bottom:247.050643px;}
.y6a7{bottom:247.324020px;}
.y589{bottom:247.500000px;}
.y92e{bottom:247.950864px;}
.y67d{bottom:248.220000px;}
.y8fc{bottom:248.398720px;}
.y368{bottom:248.490804px;}
.y1cc{bottom:248.670766px;}
.y4cc{bottom:248.850000px;}
.y229{bottom:249.029390px;}
.y397{bottom:249.210432px;}
.yac{bottom:249.480000px;}
.y53b{bottom:250.020000px;}
.y2e4{bottom:250.740000px;}
.y665{bottom:252.000000px;}
.y5cd{bottom:252.360000px;}
.y8be{bottom:253.530928px;}
.y173{bottom:253.802412px;}
.y778{bottom:254.250372px;}
.y4e0{bottom:254.880000px;}
.y86c{bottom:254.969207px;}
.y7a2{bottom:254.969697px;}
.y83d{bottom:254.969757px;}
.y33{bottom:254.987037px;}
.y348{bottom:255.240205px;}
.y7d8{bottom:255.599390px;}
.y809{bottom:255.600307px;}
.y50a{bottom:255.960000px;}
.y44b{bottom:256.501187px;}
.y6b{bottom:256.950000px;}
.y1f5{bottom:257.403340px;}
.y6f3{bottom:258.119511px;}
.y5ff{bottom:258.480000px;}
.y55a{bottom:258.930864px;}
.y14e{bottom:259.030791px;}
.y4b3{bottom:259.740000px;}
.y285{bottom:259.829685px;}
.yab{bottom:259.830000px;}
.y258{bottom:260.191176px;}
.y47d{bottom:260.460000px;}
.y329{bottom:261.270804px;}
.y113{bottom:262.171218px;}
.y3cb{bottom:262.348170px;}
.ydf{bottom:262.621208px;}
.y891{bottom:262.709385px;}
.y745{bottom:263.250739px;}
.y6a6{bottom:263.614080px;}
.y92d{bottom:264.150432px;}
.y8fb{bottom:264.688780px;}
.y367{bottom:264.690372px;}
.y2bb{bottom:265.140000px;}
.y228{bottom:265.319450px;}
.y396{bottom:265.412601px;}
.y53a{bottom:266.220000px;}
.y62e{bottom:267.301176px;}
.y664{bottom:268.200000px;}
.y5cc{bottom:268.650000px;}
.y172{bottom:270.092472px;}
.y777{bottom:270.449940px;}
.y6cb{bottom:270.990000px;}
.y4df{bottom:271.170000px;}
.y86b{bottom:271.259268px;}
.y7a1{bottom:271.259757px;}
.y83c{bottom:271.259817px;}
.y32{bottom:271.276893px;}
.y347{bottom:271.530266px;}
.y7d7{bottom:271.889450px;}
.y509{bottom:272.160000px;}
.y588{bottom:272.250000px;}
.y44a{bottom:272.791247px;}
.y3e9{bottom:272.878294px;}
.y6a{bottom:273.150000px;}
.y1cb{bottom:273.240888px;}
.y1f4{bottom:273.602908px;}
.y6f2{bottom:274.230000px;}
.y559{bottom:275.130432px;}
.y14d{bottom:275.320647px;}
.y2e3{bottom:275.400000px;}
.y284{bottom:276.029253px;}
.y257{bottom:276.390744px;}
.y47c{bottom:276.750000px;}
.y328{bottom:277.470372px;}
.y8bd{bottom:278.280621px;}
.y3ca{bottom:278.458659px;}
.y112{bottom:278.461074px;}
.yde{bottom:278.820565px;}
.y5fe{bottom:279.540000px;}
.y6a5{bottom:279.813648px;}
.y808{bottom:280.348650px;}
.y92c{bottom:280.350000px;}
.y366{bottom:280.889940px;}
.y8fa{bottom:280.978840px;}
.y227{bottom:281.429940px;}
.y539{bottom:282.510000px;}
.y62d{bottom:283.591236px;}
.y4b2{bottom:284.400000px;}
.y5cb{bottom:284.760000px;}
.y171{bottom:286.292040px;}
.y776{bottom:286.740000px;}
.y86a{bottom:287.369757px;}
.y4de{bottom:287.370000px;}
.y7a0{bottom:287.370246px;}
.y83b{bottom:287.370307px;}
.y31{bottom:287.476250px;}
.y346{bottom:287.640755px;}
.y744{bottom:288.000432px;}
.y7d6{bottom:288.179511px;}
.y508{bottom:288.450000px;}
.y449{bottom:288.901737px;}
.y69{bottom:289.440000px;}
.y1ca{bottom:289.530949px;}
.y2ba{bottom:289.800000px;}
.y1f3{bottom:289.892968px;}
.y395{bottom:290.073216px;}
.y3e8{bottom:290.248608px;}
.y558{bottom:291.330000px;}
.y14c{bottom:291.520003px;}
.y2e2{bottom:291.600000px;}
.y283{bottom:292.228821px;}
.y256{bottom:292.680804px;}
.y47b{bottom:292.860000px;}
.y327{bottom:293.760432px;}
.y8bc{bottom:294.480189px;}
.y3c9{bottom:294.748720px;}
.ydd{bottom:295.019921px;}
.y6a4{bottom:296.013216px;}
.y8f9{bottom:297.089330px;}
.y365{bottom:297.180000px;}
.y226{bottom:297.721425px;}
.y538{bottom:298.710000px;}
.y62c{bottom:299.790804px;}
.y6f1{bottom:299.970432px;}
.y5fd{bottom:300.420000px;}
.y4b1{bottom:300.599924px;}
.y663{bottom:300.690000px;}
.y5ca{bottom:301.050000px;}
.y170{bottom:302.491608px;}
.y111{bottom:303.031607px;}
.y4dd{bottom:303.570000px;}
.y869{bottom:303.659817px;}
.y30{bottom:303.675607px;}
.y345{bottom:303.930815px;}
.y313{bottom:304.199600px;}
.y743{bottom:304.200000px;}
.y7d5{bottom:304.290288px;}
.y587{bottom:304.740000px;}
.y807{bottom:305.009265px;}
.y92b{bottom:305.010311px;}
.y448{bottom:305.191797px;}
.y68{bottom:305.640000px;}
.y1c9{bottom:305.821009px;}
.y2b9{bottom:306.000000px;}
.y1f2{bottom:306.092536px;}
.y394{bottom:306.363276px;}
.y6ca{bottom:306.810432px;}
.yaa{bottom:307.079611px;}
.y14b{bottom:307.719360px;}
.y282{bottom:308.518881px;}
.y255{bottom:308.880372px;}
.y47a{bottom:309.150000px;}
.y326{bottom:309.960566px;}
.y8bb{bottom:310.679757px;}
.y3c8{bottom:311.038780px;}
.ydc{bottom:311.309777px;}
.y775{bottom:311.400643px;}
.y79f{bottom:312.119940px;}
.y83a{bottom:312.120144px;}
.y6a3{bottom:312.303276px;}
.y507{bottom:313.020000px;}
.y8f8{bottom:313.379390px;}
.y537{bottom:314.910000px;}
.y62b{bottom:315.990372px;}
.y6f0{bottom:316.170000px;}
.y2e1{bottom:316.260000px;}
.y557{bottom:316.710000px;}
.y662{bottom:316.890000px;}
.y5c9{bottom:317.250000px;}
.y16f{bottom:318.691176px;}
.y4b0{bottom:318.960000px;}
.y110{bottom:319.321463px;}
.y4dc{bottom:319.860000px;}
.y2f{bottom:319.965463px;}
.y344{bottom:320.130383px;}
.y312{bottom:320.399168px;}
.y742{bottom:320.399385px;}
.y7d4{bottom:320.580144px;}
.y586{bottom:320.940000px;}
.y806{bottom:321.299325px;}
.y92a{bottom:321.300372px;}
.y5fc{bottom:321.390000px;}
.y447{bottom:321.391365px;}
.y67{bottom:321.840000px;}
.y1c8{bottom:321.931498px;}
.y225{bottom:322.382040px;}
.y364{bottom:322.470000px;}
.y393{bottom:322.562844px;}
.y6c9{bottom:323.010000px;}
.y5a1{bottom:324.000000px;}
.y14a{bottom:324.009216px;}
.y281{bottom:324.629371px;}
.y254{bottom:325.079940px;}
.y479{bottom:325.350000px;}
.y325{bottom:326.160134px;}
.y8ba{bottom:326.969817px;}
.y3c7{bottom:327.149269px;}
.ydb{bottom:327.420049px;}
.y774{bottom:327.599757px;}
.y868{bottom:328.320432px;}
.y839{bottom:328.408836px;}
.y79e{bottom:328.409817px;}
.y6a2{bottom:328.502844px;}
.y8f7{bottom:329.669450px;}
.y2b8{bottom:330.750000px;}
.y1f1{bottom:330.753151px;}
.y536{bottom:331.200000px;}
.ya9{bottom:331.650144px;}
.y62a{bottom:332.280432px;}
.y661{bottom:333.090000px;}
.y5c8{bottom:333.450000px;}
.y16e{bottom:334.981236px;}
.y959{bottom:335.429946px;}
.y10f{bottom:335.611319px;}
.y5fb{bottom:335.970000px;}
.y4db{bottom:336.060000px;}
.y2e{bottom:336.164820px;}
.y343{bottom:336.329951px;}
.y311{bottom:336.689228px;}
.y7d3{bottom:336.870682px;}
.y4af{bottom:337.050000px;}
.y585{bottom:337.140000px;}
.y929{bottom:337.499940px;}
.y446{bottom:337.590933px;}
.y506{bottom:337.770000px;}
.y66{bottom:338.130000px;}
.y1c7{bottom:338.221559px;}
.y224{bottom:338.581608px;}
.y392{bottom:338.762412px;}
.y280{bottom:340.919431px;}
.y2e0{bottom:341.010000px;}
.y253{bottom:341.370000px;}
.y478{bottom:341.550000px;}
.y6ef{bottom:341.910744px;}
.y324{bottom:342.450194px;}
.y8b9{bottom:343.080307px;}
.y3c6{bottom:343.439330px;}
.yda{bottom:343.709905px;}
.y773{bottom:343.889817px;}
.y838{bottom:344.519325px;}
.y867{bottom:344.520189px;}
.y6a1{bottom:344.702412px;}
.y741{bottom:345.060000px;}
.y8f6{bottom:345.779940px;}
.y805{bottom:345.959940px;}
.y1f0{bottom:347.043211px;}
.y535{bottom:347.310000px;}
.ya8{bottom:347.944112px;}
.y629{bottom:348.480000px;}
.y149{bottom:348.579749px;}
.y6c8{bottom:348.659879px;}
.y660{bottom:349.380000px;}
.y5a0{bottom:349.470000px;}
.y5c7{bottom:349.740000px;}
.y16d{bottom:351.180804px;}
.y10e{bottom:351.721591px;}
.y4da{bottom:352.260000px;}
.y2d{bottom:352.364176px;}
.y556{bottom:352.440566px;}
.y342{bottom:352.620011px;}
.y310{bottom:352.888796px;}
.y79d{bottom:352.979940px;}
.y584{bottom:353.430000px;}
.y928{bottom:353.790000px;}
.y445{bottom:353.880993px;}
.y505{bottom:354.060000px;}
.y65{bottom:354.330000px;}
.y1c6{bottom:354.421127px;}
.y223{bottom:354.871668px;}
.y391{bottom:355.052472px;}
.y2b7{bottom:355.410000px;}
.y5fa{bottom:357.030000px;}
.y27f{bottom:357.209491px;}
.y2df{bottom:357.210000px;}
.y4ae{bottom:357.300000px;}
.y6ee{bottom:358.200804px;}
.y363{bottom:358.203167px;}
.y323{bottom:358.649762px;}
.y3c5{bottom:359.729390px;}
.yd9{bottom:359.999761px;}
.y958{bottom:360.000068px;}
.y866{bottom:360.810250px;}
.y6a0{bottom:360.992472px;}
.y740{bottom:361.350129px;}
.y7d2{bottom:361.440804px;}
.y8f5{bottom:362.070382px;}
.y804{bottom:362.251797px;}
.y1ef{bottom:363.242779px;}
.y534{bottom:363.600000px;}
.ya7{bottom:364.233968px;}
.y148{bottom:364.869605px;}
.y6c7{bottom:364.949940px;}
.y65f{bottom:365.580000px;}
.y59f{bottom:365.760000px;}
.y5c6{bottom:365.850000px;}
.y477{bottom:366.210000px;}
.y252{bottom:366.571562px;}
.y16c{bottom:367.380372px;}
.y8b8{bottom:367.830000px;}
.y10d{bottom:368.011447px;}
.y4d9{bottom:368.550000px;}
.y772{bottom:368.550432px;}
.y555{bottom:368.640134px;}
.y2c{bottom:368.654032px;}
.y341{bottom:368.819579px;}
.y30f{bottom:369.088364px;}
.y837{bottom:369.179940px;}
.y79c{bottom:369.271732px;}
.y583{bottom:369.630000px;}
.y444{bottom:370.080561px;}
.y64{bottom:370.530643px;}
.y1c5{bottom:370.620695px;}
.y222{bottom:371.071236px;}
.y390{bottom:371.252040px;}
.y2b6{bottom:371.610000px;}
.y27e{bottom:373.319981px;}
.y628{bottom:374.220864px;}
.y6ed{bottom:374.400372px;}
.y362{bottom:374.493227px;}
.y322{bottom:374.849330px;}
.y3c4{bottom:375.839879px;}
.yd8{bottom:376.110033px;}
.y957{bottom:376.290129px;}
.y865{bottom:377.009817px;}
.y69f{bottom:377.192040px;}
.y73f{bottom:377.549697px;}
.y7d1{bottom:377.730864px;}
.y5f9{bottom:377.910000px;}
.y803{bottom:378.451365px;}
.y927{bottom:378.451608px;}
.y504{bottom:378.630000px;}
.y1ee{bottom:379.442347px;}
.y533{bottom:379.890000px;}
.y415{bottom:380.251926px;}
.ya6{bottom:380.433325px;}
.y147{bottom:381.159461px;}
.y6c6{bottom:381.240000px;}
.y65e{bottom:381.780000px;}
.y2de{bottom:381.870000px;}
.y476{bottom:382.500000px;}
.y16b{bottom:383.670432px;}
.y8b7{bottom:384.119817px;}
.y10c{bottom:384.301303px;}
.y771{bottom:384.750804px;}
.y2b{bottom:384.853389px;}
.y554{bottom:384.930194px;}
.y340{bottom:385.019147px;}
.y30e{bottom:385.378424px;}
.y836{bottom:385.469757px;}
.y890{bottom:385.470129px;}
.y79b{bottom:385.471300px;}
.y582{bottom:385.830000px;}
.y251{bottom:386.010904px;}
.y8f4{bottom:386.729940px;}
.y63{bottom:386.730000px;}
.y1c4{bottom:386.910755px;}
.y221{bottom:387.270804px;}
.y38f{bottom:387.451608px;}
.y2b5{bottom:387.900000px;}
.y59e{bottom:390.330000px;}
.y627{bottom:390.420432px;}
.y6ec{bottom:390.599940px;}
.y5c5{bottom:390.600000px;}
.y361{bottom:390.692795px;}
.y321{bottom:391.139390px;}
.y3c3{bottom:392.129940px;}
.yd7{bottom:392.399889px;}
.y4d8{bottom:393.120000px;}
.y864{bottom:393.209385px;}
.y69e{bottom:393.391608px;}
.y73e{bottom:393.839757px;}
.y7d0{bottom:393.930432px;}
.y802{bottom:394.650933px;}
.y926{bottom:394.651176px;}
.y443{bottom:394.741176px;}
.y503{bottom:394.920000px;}
.y532{bottom:396.000000px;}
.ya5{bottom:396.632681px;}
.y146{bottom:397.358818px;}
.y27d{bottom:398.069674px;}
.y65d{bottom:398.070000px;}
.y2dd{bottom:398.160000px;}
.y475{bottom:398.698946px;}
.y5f8{bottom:398.880000px;}
.y16a{bottom:399.870000px;}
.y1a5{bottom:399.871176px;}
.y168{bottom:399.871668px;}
.y8b6{bottom:400.230307px;}
.y10b{bottom:400.411574px;}
.y956{bottom:400.950744px;}
.y770{bottom:401.040864px;}
.y2a{bottom:401.052746px;}
.y553{bottom:401.220254px;}
.y33f{bottom:401.309207px;}
.y30d{bottom:401.577992px;}
.y835{bottom:401.669325px;}
.y88f{bottom:401.669697px;}
.y79a{bottom:401.670868px;}
.y581{bottom:402.120000px;}
.y8f3{bottom:403.020000px;}
.y1c3{bottom:403.110323px;}
.y220{bottom:403.560864px;}
.y38e{bottom:403.651176px;}
.y2b4{bottom:404.100000px;}
.y1ed{bottom:404.192040px;}
.y169{bottom:404.730000px;}
.y414{bottom:404.912541px;}
.y250{bottom:405.540000px;}
.y59d{bottom:406.620000px;}
.y6eb{bottom:406.890000px;}
.y6c5{bottom:406.890432px;}
.y360{bottom:406.982855px;}
.y320{bottom:407.249879px;}
.y3c2{bottom:408.420686px;}
.yd6{bottom:408.689745px;}
.y4d7{bottom:409.409924px;}
.y69d{bottom:409.681668px;}
.y73d{bottom:410.039325px;}
.y7cf{bottom:410.130144px;}
.y439{bottom:410.761365px;}
.y801{bottom:410.850501px;}
.y925{bottom:410.850744px;}
.y442{bottom:411.031236px;}
.y502{bottom:411.210000px;}
.y531{bottom:412.290000px;}
.ya4{bottom:412.922537px;}
.y145{bottom:413.558175px;}
.y65c{bottom:414.270000px;}
.y5c4{bottom:415.260000px;}
.y1a4{bottom:416.070744px;}
.y167{bottom:416.071236px;}
.y10a{bottom:416.701430px;}
.y76f{bottom:417.240432px;}
.y955{bottom:417.240804px;}
.y552{bottom:417.330744px;}
.y29{bottom:417.342602px;}
.y33e{bottom:417.419697px;}
.y30c{bottom:417.777560px;}
.y863{bottom:417.870129px;}
.y88e{bottom:417.959757px;}
.y799{bottom:417.960928px;}
.y580{bottom:418.320000px;}
.y1c2{bottom:419.309891px;}
.y27c{bottom:419.759590px;}
.y21f{bottom:419.760432px;}
.y62{bottom:419.940000px;}
.y38d{bottom:419.941236px;}
.y2b3{bottom:420.300000px;}
.y1ec{bottom:420.391608px;}
.y2dc{bottom:422.910000px;}
.y6c4{bottom:423.090000px;}
.y35f{bottom:423.093345px;}
.y31f{bottom:423.539940px;}
.y3c1{bottom:424.531176px;}
.yd5{bottom:424.800016px;}
.y8b5{bottom:424.980000px;}
.y474{bottom:425.518655px;}
.y5f7{bottom:425.880000px;}
.y69c{bottom:425.881236px;}
.y834{bottom:426.329940px;}
.y7ce{bottom:426.420129px;}
.y800{bottom:427.140561px;}
.y924{bottom:427.140804px;}
.y441{bottom:427.230804px;}
.y501{bottom:427.320000px;}
.y8f2{bottom:427.589879px;}
.y4d6{bottom:427.770000px;}
.y530{bottom:428.580000px;}
.ya3{bottom:429.032809px;}
.y413{bottom:429.662234px;}
.y144{bottom:429.848031px;}
.y5c3{bottom:431.550000px;}
.y626{bottom:432.270372px;}
.y166{bottom:432.270804px;}
.y1a3{bottom:432.360804px;}
.y6ea{bottom:432.540804px;}
.y109{bottom:432.900787px;}
.y76e{bottom:433.440000px;}
.y954{bottom:433.440372px;}
.y28{bottom:433.541959px;}
.y551{bottom:433.620804px;}
.y33d{bottom:433.709757px;}
.y30b{bottom:434.067620px;}
.y88d{bottom:434.159325px;}
.y862{bottom:434.160189px;}
.y798{bottom:434.160496px;}
.y57f{bottom:434.520000px;}
.y73c{bottom:434.699940px;}
.y438{bottom:435.421980px;}
.y1c1{bottom:435.599951px;}
.y21e{bottom:435.960000px;}
.y61{bottom:436.140000px;}
.y38c{bottom:436.140804px;}
.y1eb{bottom:436.591176px;}
.y65b{bottom:438.930000px;}
.y2db{bottom:439.110000px;}
.y35e{bottom:439.383405px;}
.y31e{bottom:439.829529px;}
.y3c0{bottom:440.821236px;}
.yd4{bottom:441.089872px;}
.y8b4{bottom:441.269385px;}
.y24f{bottom:441.364452px;}
.y69b{bottom:442.080804px;}
.y833{bottom:442.619757px;}
.y4d5{bottom:443.070000px;}
.y7ff{bottom:443.340129px;}
.y923{bottom:443.340372px;}
.y440{bottom:443.430372px;}
.y500{bottom:443.610000px;}
.y8f1{bottom:443.879940px;}
.y52f{bottom:444.690000px;}
.ya2{bottom:445.322665px;}
.y412{bottom:445.952294px;}
.y143{bottom:445.958302px;}
.y5f6{bottom:446.220144px;}
.y5c2{bottom:447.750000px;}
.y1a2{bottom:448.560372px;}
.y625{bottom:448.560432px;}
.y165{bottom:448.560864px;}
.y6c3{bottom:448.739879px;}
.y6e9{bottom:448.740372px;}
.y108{bottom:449.100144px;}
.y953{bottom:449.730432px;}
.y27{bottom:449.741316px;}
.y550{bottom:449.820372px;}
.y30a{bottom:450.178110px;}
.y473{bottom:450.179269px;}
.y861{bottom:450.359757px;}
.y73b{bottom:450.990250px;}
.y7cd{bottom:451.080744px;}
.y437{bottom:451.621548px;}
.y60{bottom:452.340000px;}
.y38b{bottom:452.340372px;}
.y1ea{bottom:452.881236px;}
.y2b2{bottom:453.420000px;}
.y65a{bottom:455.220000px;}
.y35d{bottom:455.582973px;}
.y3bf{bottom:457.020804px;}
.yd3{bottom:457.379728px;}
.y24e{bottom:457.564020px;}
.y76d{bottom:458.099697px;}
.y69a{bottom:458.280372px;}
.y33c{bottom:458.370372px;}
.y832{bottom:458.819325px;}
.y88c{bottom:458.819940px;}
.y797{bottom:458.821111px;}
.y57e{bottom:459.180000px;}
.y7fe{bottom:459.539697px;}
.y922{bottom:459.539940px;}
.y43f{bottom:459.720432px;}
.y4ff{bottom:459.900000px;}
.y8f0{bottom:460.170000px;}
.y1c0{bottom:460.170073px;}
.ya1{bottom:461.612521px;}
.y411{bottom:462.062784px;}
.y142{bottom:462.248158px;}
.y5f5{bottom:462.510000px;}
.y2da{bottom:463.770000px;}
.y5c1{bottom:464.040000px;}
.y624{bottom:464.759697px;}
.y1a1{bottom:464.759940px;}
.y164{bottom:464.760432px;}
.y6c2{bottom:465.029940px;}
.y6e8{bottom:465.030432px;}
.y107{bottom:465.390000px;}
.y952{bottom:465.930000px;}
.y8b3{bottom:465.930372px;}
.y26{bottom:465.940672px;}
.y54f{bottom:466.019940px;}
.y309{bottom:466.468170px;}
.y472{bottom:466.469330px;}
.y860{bottom:466.649817px;}
.y73a{bottom:467.189817px;}
.y7cc{bottom:467.370804px;}
.y436{bottom:467.911608px;}
.y5f{bottom:468.630000px;}
.y38a{bottom:468.630432px;}
.y1e9{bottom:469.080804px;}
.y52e{bottom:469.440000px;}
.y2b1{bottom:469.710000px;}
.y31d{bottom:469.890000px;}
.y21d{bottom:470.339984px;}
.y659{bottom:471.420000px;}
.y35c{bottom:471.782541px;}
.y3be{bottom:473.220372px;}
.yd2{bottom:473.490787px;}
.y24d{bottom:473.854080px;}
.y76c{bottom:474.389757px;}
.y33b{bottom:474.569940px;}
.y699{bottom:474.570432px;}
.y88b{bottom:475.110189px;}
.y796{bottom:475.111171px;}
.y57d{bottom:475.470420px;}
.y7fd{bottom:475.829757px;}
.y921{bottom:475.830643px;}
.y43e{bottom:475.920000px;}
.y4fe{bottom:476.010000px;}
.y1bf{bottom:476.460134px;}
.y4a8{bottom:477.360000px;}
.ya0{bottom:477.722793px;}
.y410{bottom:478.352844px;}
.y141{bottom:478.538014px;}
.y5f4{bottom:478.802536px;}
.y5c0{bottom:480.240000px;}
.y163{bottom:480.960000px;}
.y1a0{bottom:481.052229px;}
.y6e7{bottom:481.230000px;}
.y6c1{bottom:481.320000px;}
.y8b2{bottom:482.129940px;}
.y25{bottom:482.230528px;}
.y54e{bottom:482.312229px;}
.y308{bottom:482.758230px;}
.y471{bottom:482.759390px;}
.y85f{bottom:482.849385px;}
.y739{bottom:483.389385px;}
.y831{bottom:483.479940px;}
.y7cb{bottom:483.570372px;}
.y435{bottom:484.111176px;}
.y8ef{bottom:484.740311px;}
.y5e{bottom:484.830000px;}
.y1e8{bottom:485.280372px;}
.y52d{bottom:485.730000px;}
.y2b0{bottom:486.000000px;}
.y35b{bottom:488.072601px;}
.y2d9{bottom:488.520000px;}
.y623{bottom:489.420311px;}
.y3bd{bottom:489.510432px;}
.yd1{bottom:489.780643px;}
.y24c{bottom:490.053648px;}
.y76b{bottom:490.589325px;}
.y951{bottom:490.590372px;}
.y106{bottom:490.590904px;}
.y698{bottom:490.775877px;}
.y338{bottom:490.858720px;}
.y33a{bottom:490.860000px;}
.y88a{bottom:491.309757px;}
.y795{bottom:491.310739px;}
.y7fc{bottom:492.029325px;}
.y920{bottom:492.030000px;}
.y1be{bottom:492.750194px;}
.y9f{bottom:494.012649px;}
.y40f{bottom:494.552412px;}
.y140{bottom:494.648286px;}
.y339{bottom:495.810000px;}
.y71c{bottom:496.169655px;}
.y5bf{bottom:496.440000px;}
.y8b1{bottom:498.420000px;}
.y24{bottom:498.429885px;}
.y307{bottom:498.868720px;}
.y470{bottom:498.869879px;}
.y658{bottom:498.870000px;}
.y7ca{bottom:499.769940px;}
.y830{bottom:499.770501px;}
.y434{bottom:500.310744px;}
.y4fd{bottom:500.760000px;}
.y5d{bottom:501.030000px;}
.y8ee{bottom:501.030372px;}
.y43d{bottom:501.210000px;}
.y1e7{bottom:501.570432px;}
.y52c{bottom:501.840000px;}
.y2af{bottom:502.200000px;}
.y57c{bottom:502.201050px;}
.y4a7{bottom:502.560000px;}
.y5f3{bottom:503.372658px;}
.y35a{bottom:504.272169px;}
.y2d8{bottom:504.720000px;}
.y622{bottom:505.710372px;}
.y3bc{bottom:505.711980px;}
.y19f{bottom:505.712844px;}
.yd0{bottom:505.980000px;}
.y162{bottom:506.250421px;}
.y24b{bottom:506.253216px;}
.y6e6{bottom:506.880311px;}
.y950{bottom:506.880432px;}
.y6c0{bottom:506.970311px;}
.y54d{bottom:506.972844px;}
.y337{bottom:507.148780px;}
.y889{bottom:507.509325px;}
.y85e{bottom:507.510144px;}
.y738{bottom:508.050000px;}
.y1bd{bottom:508.949762px;}
.y105{bottom:510.120000px;}
.y9e{bottom:510.302505px;}
.y40e{bottom:510.751980px;}
.y13f{bottom:510.938142px;}
.y5be{bottom:512.730000px;}
.y59c{bottom:513.180000px;}
.y23{bottom:514.629242px;}
.y8b0{bottom:515.071168px;}
.y306{bottom:515.158780px;}
.y46f{bottom:515.159940px;}
.y76a{bottom:515.249940px;}
.y697{bottom:515.436492px;}
.y794{bottom:516.060432px;}
.y82f{bottom:516.060561px;}
.y7c9{bottom:516.061286px;}
.y433{bottom:516.600804px;}
.y7fb{bottom:516.689940px;}
.y91f{bottom:516.690804px;}
.y5ab{bottom:516.780000px;}
.y4fc{bottom:517.050000px;}
.y5c{bottom:517.320000px;}
.y8ed{bottom:517.320432px;}
.y71b{bottom:517.680000px;}
.y1e6{bottom:517.770000px;}
.y52b{bottom:518.130000px;}
.y2ae{bottom:518.400000px;}
.y21c{bottom:518.490703px;}
.y359{bottom:520.471737px;}
.y621{bottom:521.909940px;}
.y3bb{bottom:521.911548px;}
.y19e{bottom:521.912412px;}
.y24a{bottom:522.543276px;}
.y94f{bottom:523.080000px;}
.y6bf{bottom:523.169879px;}
.y6e5{bottom:523.170372px;}
.y54c{bottom:523.172412px;}
.y336{bottom:523.259269px;}
.y888{bottom:523.799385px;}
.y85d{bottom:523.799817px;}
.y737{bottom:524.339757px;}
.y1bc{bottom:525.149330px;}
.y161{bottom:525.780000px;}
.y4a6{bottom:525.870000px;}
.y9d{bottom:526.412776px;}
.y57b{bottom:526.950744px;}
.y40d{bottom:527.042040px;}
.y13e{bottom:527.227998px;}
.y5f2{bottom:528.122351px;}
.y5bd{bottom:528.840000px;}
.y2d7{bottom:529.380000px;}
.ycf{bottom:530.640820px;}
.y22{bottom:530.828599px;}
.y305{bottom:531.448840px;}
.y46e{bottom:531.450000px;}
.y769{bottom:531.540129px;}
.y696{bottom:531.726552px;}
.y82e{bottom:532.260129px;}
.y7c8{bottom:532.260643px;}
.y793{bottom:532.261286px;}
.y432{bottom:532.800372px;}
.y7fa{bottom:532.980000px;}
.y91e{bottom:532.980864px;}
.y4fb{bottom:533.250000px;}
.y5b{bottom:533.520000px;}
.y52a{bottom:534.420000px;}
.y2ad{bottom:534.600000px;}
.y657{bottom:534.601176px;}
.y43c{bottom:538.200000px;}
.y620{bottom:538.200864px;}
.y3ba{bottom:538.201608px;}
.y19d{bottom:538.202472px;}
.y249{bottom:538.742844px;}
.y6e4{bottom:539.369940px;}
.y6be{bottom:539.459940px;}
.y54b{bottom:539.462472px;}
.y335{bottom:539.549330px;}
.y85c{bottom:539.999385px;}
.y8af{bottom:540.000432px;}
.y736{bottom:540.539325px;}
.y5aa{bottom:540.540000px;}
.y21b{bottom:541.260000px;}
.y1bb{bottom:541.439390px;}
.y4a5{bottom:542.070000px;}
.y9c{bottom:542.702632px;}
.y1e5{bottom:543.060000px;}
.y57a{bottom:543.240804px;}
.y40c{bottom:543.241608px;}
.y13d{bottom:543.338269px;}
.y5f1{bottom:544.412412px;}
.y71a{bottom:544.500000px;}
.y5bc{bottom:545.130000px;}
.y358{bottom:545.132351px;}
.y2d6{bottom:545.670000px;}
.y389{bottom:545.944080px;}
.y104{bottom:545.952351px;}
.yce{bottom:546.930676px;}
.y21{bottom:547.118455px;}
.y304{bottom:547.559330px;}
.y768{bottom:547.739697px;}
.y94e{bottom:547.740744px;}
.y695{bottom:547.926120px;}
.y82d{bottom:548.459697px;}
.y792{bottom:548.460643px;}
.y887{bottom:548.460739px;}
.y7c7{bottom:548.461171px;}
.y431{bottom:548.999940px;}
.y7f9{bottom:549.180000px;}
.y91d{bottom:549.180432px;}
.y4fa{bottom:549.450000px;}
.y5a{bottom:549.720000px;}
.y529{bottom:550.530000px;}
.y656{bottom:550.891236px;}
.y59b{bottom:554.130000px;}
.y61f{bottom:554.400432px;}
.y3b9{bottom:554.401176px;}
.y19c{bottom:554.402040px;}
.y248{bottom:554.942412px;}
.y6e3{bottom:555.660000px;}
.y54a{bottom:555.662040px;}
.y6bd{bottom:555.750000px;}
.y334{bottom:555.839390px;}
.y8ae{bottom:556.200189px;}
.y46d{bottom:556.650000px;}
.y1ba{bottom:557.549879px;}
.y8ec{bottom:558.179940px;}
.y4a4{bottom:558.360000px;}
.y9b{bottom:558.992488px;}
.y579{bottom:559.440372px;}
.y40b{bottom:559.441176px;}
.y13c{bottom:559.628125px;}
.y5f0{bottom:560.611980px;}
.y719{bottom:560.700000px;}
.y5bb{bottom:561.420000px;}
.y357{bottom:561.422412px;}
.y388{bottom:562.143648px;}
.y103{bottom:562.151708px;}
.y160{bottom:562.770000px;}
.ycd{bottom:563.220532px;}
.y20{bottom:563.317812px;}
.y303{bottom:563.849390px;}
.y767{bottom:564.029757px;}
.y94d{bottom:564.030804px;}
.y694{bottom:564.125688px;}
.y82c{bottom:564.659265px;}
.y85b{bottom:564.660068px;}
.y791{bottom:564.660679px;}
.y735{bottom:565.199940px;}
.y430{bottom:565.292661px;}
.y7f8{bottom:565.380000px;}
.y4f9{bottom:565.740000px;}
.y59{bottom:566.010000px;}
.y528{bottom:566.820000px;}
.y655{bottom:567.090804px;}
.y2ac{bottom:567.720000px;}
.y2d5{bottom:570.330000px;}
.y59a{bottom:570.420000px;}
.y3b8{bottom:570.600744px;}
.y19b{bottom:570.601608px;}
.y61e{bottom:570.603648px;}
.y247{bottom:571.232472px;}
.y549{bottom:571.861608px;}
.y333{bottom:571.949879px;}
.y8ad{bottom:572.490250px;}
.y886{bottom:573.210432px;}
.y7c6{bottom:573.210864px;}
.y1b9{bottom:573.839940px;}
.y8eb{bottom:574.470000px;}
.y4a3{bottom:574.650000px;}
.y9a{bottom:575.102760px;}
.y578{bottom:575.639940px;}
.y40a{bottom:575.731236px;}
.y13b{bottom:575.917981px;}
.y5ef{bottom:576.811548px;}
.y718{bottom:576.990000px;}
.y5ba{bottom:577.530000px;}
.y356{bottom:577.621980px;}
.y387{bottom:578.433708px;}
.y102{bottom:578.441564px;}
.y1e4{bottom:578.610851px;}
.ycc{bottom:579.330804px;}
.y1f{bottom:579.517168px;}
.y302{bottom:580.139450px;}
.y766{bottom:580.229325px;}
.y94c{bottom:580.230372px;}
.y693{bottom:580.415748px;}
.y85a{bottom:580.950129px;}
.y790{bottom:580.950739px;}
.y6e2{bottom:581.310372px;}
.y6bc{bottom:581.400432px;}
.y734{bottom:581.489817px;}
.y7f7{bottom:581.670000px;}
.y4f8{bottom:581.850000px;}
.y43b{bottom:582.031025px;}
.y58{bottom:582.210000px;}
.y527{bottom:583.110000px;}
.y654{bottom:583.290372px;}
.y2ab{bottom:584.010852px;}
.y2d4{bottom:586.530000px;}
.y3b7{bottom:586.890804px;}
.y19a{bottom:586.891668px;}
.y61d{bottom:586.893708px;}
.y246{bottom:587.432040px;}
.y21a{bottom:588.061176px;}
.y548{bottom:588.151668px;}
.y332{bottom:588.239940px;}
.y8ac{bottom:588.689817px;}
.y82b{bottom:589.319879px;}
.y7c5{bottom:589.410432px;}
.y885{bottom:589.411543px;}
.y42f{bottom:589.953276px;}
.y1b8{bottom:590.130000px;}
.y91c{bottom:590.132040px;}
.y4a2{bottom:590.760000px;}
.y99{bottom:591.392616px;}
.y577{bottom:591.930000px;}
.y409{bottom:591.930804px;}
.y13a{bottom:592.028253px;}
.y46c{bottom:592.470372px;}
.y5ee{bottom:593.101608px;}
.y1e3{bottom:593.190681px;}
.y717{bottom:593.280000px;}
.y5b9{bottom:593.820000px;}
.y355{bottom:593.912040px;}
.y386{bottom:594.633276px;}
.y101{bottom:594.640921px;}
.ycb{bottom:595.620660px;}
.y1e{bottom:595.807024px;}
.y301{bottom:596.249940px;}
.y94b{bottom:596.429940px;}
.y692{bottom:596.615316px;}
.y859{bottom:597.149697px;}
.y78f{bottom:597.150307px;}
.y6bb{bottom:597.600000px;}
.y6e1{bottom:597.600432px;}
.y733{bottom:597.689385px;}
.y7f6{bottom:597.870000px;}
.y4f7{bottom:598.140000px;}
.y57{bottom:598.410787px;}
.y8ea{bottom:599.041548px;}
.y653{bottom:599.580432px;}
.y599{bottom:602.820000px;}
.y3b6{bottom:603.090372px;}
.y199{bottom:603.091236px;}
.y61c{bottom:603.093276px;}
.y245{bottom:603.631608px;}
.y219{bottom:604.351236px;}
.y331{bottom:604.530000px;}
.y8ab{bottom:604.889385px;}
.y765{bottom:604.889940px;}
.y82a{bottom:605.609940px;}
.y7c4{bottom:605.610144px;}
.y884{bottom:605.611111px;}
.y42e{bottom:606.243336px;}
.y91b{bottom:606.331608px;}
.y4a1{bottom:607.050000px;}
.y98{bottom:607.591973px;}
.y526{bottom:607.680000px;}
.y1e2{bottom:607.770510px;}
.y408{bottom:608.130372px;}
.y139{bottom:608.318109px;}
.y46b{bottom:608.760432px;}
.y5ed{bottom:609.301176px;}
.y716{bottom:609.390000px;}
.y15f{bottom:609.390680px;}
.y354{bottom:610.111608px;}
.y2aa{bottom:610.830561px;}
.y385{bottom:610.832844px;}
.y100{bottom:610.840278px;}
.y2d3{bottom:611.280000px;}
.yca{bottom:611.910516px;}
.y1d{bottom:612.006381px;}
.y300{bottom:612.539147px;}
.y94a{bottom:612.720000px;}
.y691{bottom:612.814884px;}
.y858{bottom:613.349265px;}
.y6e0{bottom:613.800000px;}
.y4f6{bottom:614.430000px;}
.y56{bottom:614.700643px;}
.y8e9{bottom:615.331608px;}
.y67c{bottom:615.690000px;}
.y652{bottom:615.779757px;}
.y576{bottom:617.220000px;}
.y5b8{bottom:618.480000px;}
.y3b5{bottom:619.289940px;}
.y198{bottom:619.290804px;}
.y61b{bottom:619.292844px;}
.y244{bottom:619.921668px;}
.y218{bottom:620.550804px;}
.y764{bottom:621.180189px;}
.y7c3{bottom:621.899757px;}
.y78e{bottom:621.900643px;}
.y883{bottom:621.901171px;}
.y732{bottom:622.350246px;}
.y1e1{bottom:622.350340px;}
.y42d{bottom:622.442904px;}
.y7f5{bottom:622.530000px;}
.y91a{bottom:622.531176px;}
.y1b7{bottom:622.980341px;}
.y4a0{bottom:623.340000px;}
.y6ba{bottom:623.340372px;}
.y97{bottom:623.791330px;}
.y525{bottom:623.969370px;}
.y15e{bottom:623.970509px;}
.y407{bottom:624.420432px;}
.y138{bottom:624.607965px;}
.y46a{bottom:624.959325px;}
.y5ec{bottom:625.500744px;}
.y715{bottom:625.680000px;}
.y353{bottom:626.311176px;}
.y384{bottom:627.122904px;}
.yff{bottom:627.130134px;}
.y598{bottom:627.480000px;}
.yc9{bottom:628.020787px;}
.y1c{bottom:628.205738px;}
.y690{bottom:629.104944px;}
.y8aa{bottom:629.550000px;}
.y330{bottom:629.730000px;}
.y4f5{bottom:630.540000px;}
.y55{bottom:630.900000px;}
.y8e8{bottom:631.621668px;}
.y2a9{bottom:635.491176px;}
.y197{bottom:635.580864px;}
.y61a{bottom:635.582904px;}
.y3b4{bottom:635.584269px;}
.y2d2{bottom:635.940000px;}
.y243{bottom:636.121236px;}
.y217{bottom:636.840864px;}
.y1e0{bottom:637.020341px;}
.y2ff{bottom:637.199762px;}
.y763{bottom:637.379757px;}
.y949{bottom:637.380372px;}
.y1b6{bottom:637.469999px;}
.y857{bottom:638.009879px;}
.y829{bottom:638.100000px;}
.y78d{bottom:638.100129px;}
.y882{bottom:638.100739px;}
.y15d{bottom:638.640510px;}
.y42c{bottom:638.642472px;}
.y7f4{bottom:638.820000px;}
.y919{bottom:638.821236px;}
.y6df{bottom:639.449269px;}
.y49f{bottom:639.450000px;}
.y6b9{bottom:639.539940px;}
.y96{bottom:640.081186px;}
.y67b{bottom:640.350000px;}
.y651{bottom:640.440372px;}
.y406{bottom:640.620000px;}
.y137{bottom:640.718237px;}
.y5eb{bottom:641.790804px;}
.y714{bottom:641.970000px;}
.y352{bottom:642.601236px;}
.y5b7{bottom:643.230000px;}
.y383{bottom:643.322472px;}
.yfe{bottom:643.329490px;}
.yc8{bottom:644.310643px;}
.y1b{bottom:644.495594px;}
.y68f{bottom:645.304512px;}
.y8a9{bottom:645.840739px;}
.y7c2{bottom:646.469879px;}
.y4f4{bottom:646.830000px;}
.y731{bottom:647.099940px;}
.y54{bottom:647.100000px;}
.y8e7{bottom:647.821236px;}
.y469{bottom:649.619940px;}
.y524{bottom:650.700000px;}
.y1df{bottom:651.600170px;}
.y196{bottom:651.780432px;}
.y2a8{bottom:651.781236px;}
.y619{bottom:651.782472px;}
.y1b5{bottom:652.140000px;}
.y1b4{bottom:652.141359px;}
.y242{bottom:652.320804px;}
.y575{bottom:652.950068px;}
.y216{bottom:653.040432px;}
.y15c{bottom:653.220340px;}
.y2fe{bottom:653.399330px;}
.y762{bottom:653.579325px;}
.y948{bottom:653.579940px;}
.y78c{bottom:654.299697px;}
.y856{bottom:654.299940px;}
.y881{bottom:654.300307px;}
.y828{bottom:654.301543px;}
.y42b{bottom:654.842040px;}
.y7f3{bottom:655.020000px;}
.y918{bottom:655.020804px;}
.y6de{bottom:655.739330px;}
.y49e{bottom:655.740000px;}
.y6b8{bottom:655.830000px;}
.y95{bottom:656.280542px;}
.y650{bottom:656.639940px;}
.y67a{bottom:656.640000px;}
.y136{bottom:657.008093px;}
.y5ea{bottom:657.990372px;}
.y713{bottom:658.080000px;}
.y351{bottom:658.800804px;}
.y382{bottom:659.522040px;}
.yfd{bottom:659.528847px;}
.y3b3{bottom:660.244884px;}
.yc7{bottom:660.510000px;}
.y1a{bottom:660.694951px;}
.y68e{bottom:661.504080px;}
.y7c1{bottom:662.759940px;}
.y53{bottom:663.390000px;}
.y730{bottom:663.390250px;}
.y8e6{bottom:664.020804px;}
.y5b6{bottom:664.830000px;}
.y32f{bottom:665.551343px;}
.y468{bottom:665.909817px;}
.y1de{bottom:666.180000px;}
.y1b3{bottom:666.721189px;}
.y15b{bottom:667.800169px;}
.y2a7{bottom:667.980804px;}
.y195{bottom:667.981737px;}
.y618{bottom:667.982040px;}
.y241{bottom:668.610864px;}
.y574{bottom:669.149636px;}
.y215{bottom:669.242973px;}
.y2fd{bottom:669.689390px;}
.y761{bottom:669.869385px;}
.y947{bottom:669.870382px;}
.y1dd{bottom:670.412028px;}
.y78b{bottom:670.589757px;}
.y8a8{bottom:670.590432px;}
.y855{bottom:670.590643px;}
.y827{bottom:670.591603px;}
.y42a{bottom:671.132100px;}
.y7f2{bottom:671.220000px;}
.y917{bottom:671.220372px;}
.y4f3{bottom:671.490000px;}
.y6dd{bottom:672.029390px;}
.y49d{bottom:672.030000px;}
.y679{bottom:672.840000px;}
.y64f{bottom:672.930000px;}
.y135{bottom:673.297949px;}
.y5e9{bottom:674.189940px;}
.y712{bottom:674.370000px;}
.y405{bottom:675.000000px;}
.y350{bottom:675.000372px;}
.y381{bottom:675.812100px;}
.yfc{bottom:675.818703px;}
.y3b2{bottom:676.444452px;}
.y2d1{bottom:676.890000px;}
.y19{bottom:676.894308px;}
.y68d{bottom:677.794140px;}
.y7c0{bottom:679.050643px;}
.y72f{bottom:679.589817px;}
.y52{bottom:679.590000px;}
.y8e5{bottom:680.310864px;}
.y94{bottom:680.940160px;}
.y1b2{bottom:681.391190px;}
.y6b7{bottom:681.479940px;}
.y15a{bottom:682.379999px;}
.y2a6{bottom:684.270864px;}
.y617{bottom:684.272100px;}
.y240{bottom:684.810432px;}
.y573{bottom:685.439697px;}
.yc6{bottom:685.800000px;}
.y2fc{bottom:685.979450px;}
.y523{bottom:686.070000px;}
.y1dc{bottom:686.522275px;}
.y78a{bottom:686.789325px;}
.y8a7{bottom:686.790189px;}
.y826{bottom:686.791171px;}
.y429{bottom:687.331668px;}
.y916{bottom:687.510432px;}
.y4f2{bottom:687.779681px;}
.y6dc{bottom:688.139879px;}
.y49c{bottom:688.140000px;}
.y678{bottom:689.040000px;}
.y5e8{bottom:690.479147px;}
.y467{bottom:690.570432px;}
.y711{bottom:690.660000px;}
.y34f{bottom:691.290432px;}
.y380{bottom:692.011668px;}
.y194{bottom:692.642351px;}
.y3b1{bottom:692.734512px;}
.y2d0{bottom:693.180000px;}
.y18{bottom:693.184164px;}
.y4bc{bottom:693.720000px;}
.y214{bottom:693.903587px;}
.y68c{bottom:693.993708px;}
.y760{bottom:694.530307px;}
.y946{bottom:694.530432px;}
.y7bf{bottom:695.249757px;}
.y880{bottom:695.250189px;}
.y32e{bottom:695.700892px;}
.y72e{bottom:695.789385px;}
.y51{bottom:695.790000px;}
.y7f1{bottom:695.970000px;}
.y1b1{bottom:695.971019px;}
.y8e4{bottom:696.510432px;}
.y157{bottom:697.049871px;}
.y159{bottom:697.050000px;}
.y93{bottom:697.230016px;}
.y6b6{bottom:697.770000px;}
.y134{bottom:697.868482px;}
.y64e{bottom:698.580311px;}
.y2a5{bottom:700.470432px;}
.y616{bottom:700.471668px;}
.yfb{bottom:700.478321px;}
.y23f{bottom:701.010000px;}
.y158{bottom:701.280000px;}
.y572{bottom:701.729757px;}
.y2fb{bottom:702.089940px;}
.y522{bottom:702.270000px;}
.y8a6{bottom:702.989757px;}
.y825{bottom:702.990739px;}
.y428{bottom:703.531236px;}
.y915{bottom:703.710000px;}
.y6db{bottom:704.429940px;}
.y677{bottom:705.330000px;}
.y4f1{bottom:706.139757px;}
.y466{bottom:706.769385px;}
.y34e{bottom:707.490000px;}
.y37f{bottom:708.211236px;}
.y193{bottom:708.932412px;}
.y3b0{bottom:708.934080px;}
.y2cf{bottom:709.290000px;}
.y17{bottom:709.383520px;}
.y68b{bottom:710.193276px;}
.y213{bottom:710.193648px;}
.y1b0{bottom:710.550849px;}
.y945{bottom:710.730382px;}
.y87f{bottom:711.449757px;}
.y789{bottom:711.449940px;}
.y7f0{bottom:712.170000px;}
.y8e3{bottom:712.710382px;}
.y49b{bottom:712.890000px;}
.y92{bottom:713.519872px;}
.y133{bottom:714.158338px;}
.y64d{bottom:714.870372px;}
.y5e7{bottom:715.049269px;}
.y710{bottom:715.230000px;}
.y156{bottom:715.860137px;}
.y615{bottom:716.671236px;}
.y2a4{bottom:716.672412px;}
.yfa{bottom:716.677678px;}
.y597{bottom:717.840000px;}
.y571{bottom:717.840246px;}
.y2fa{bottom:718.380643px;}
.y521{bottom:718.560000px;}
.y8a5{bottom:719.279817px;}
.y75f{bottom:719.280000px;}
.y427{bottom:719.730804px;}
.y7be{bottom:719.910372px;}
.y72d{bottom:720.450189px;}
.y6da{bottom:720.721679px;}
.y676{bottom:721.530000px;}
.y404{bottom:721.892784px;}
.yc5{bottom:722.790703px;}
.y6b5{bottom:723.420372px;}
.y37e{bottom:724.501296px;}
.y1af{bottom:725.130679px;}
.y192{bottom:725.131980px;}
.y3af{bottom:725.133648px;}
.y16{bottom:725.582877px;}
.y23e{bottom:726.300000px;}
.y68a{bottom:726.392844px;}
.y212{bottom:726.393216px;}
.y788{bottom:727.739757px;}
.y87e{bottom:727.739817px;}
.y854{bottom:727.740000px;}
.y824{bottom:727.740432px;}
.y7ef{bottom:728.370000px;}
.y914{bottom:728.370804px;}
.y50{bottom:728.999872px;}
.y49a{bottom:729.180000px;}
.y91{bottom:729.630144px;}
.y155{bottom:730.439967px;}
.y132{bottom:730.448194px;}
.y4f0{bottom:730.709879px;}
.y64c{bottom:731.069940px;}
.y5e6{bottom:731.339330px;}
.y465{bottom:731.430679px;}
.y70f{bottom:731.520000px;}
.y34d{bottom:732.780000px;}
.y614{bottom:732.961296px;}
.y2a3{bottom:732.962472px;}
.yf9{bottom:732.967534px;}
.y2ce{bottom:733.950000px;}
.y596{bottom:734.040000px;}
.y2f9{bottom:734.582784px;}
.y944{bottom:735.389940px;}
.y8a4{bottom:735.479385px;}
.y75e{bottom:735.480000px;}
.y426{bottom:736.020864px;}
.y7bd{bottom:736.200432px;}
.y72c{bottom:736.649757px;}
.y8e2{bottom:737.369152px;}
.y675{bottom:737.730000px;}
.y403{bottom:738.092351px;}
.y6b4{bottom:739.619940px;}
.y4e8{bottom:739.620000px;}
.y1ae{bottom:739.800680px;}
.y37d{bottom:740.700864px;}
.y191{bottom:741.422040px;}
.y3ae{bottom:741.423708px;}
.y15{bottom:741.872733px;}
.y8d2{bottom:742.498769px;}
.y570{bottom:742.589940px;}
.y689{bottom:742.682904px;}
.y211{bottom:742.683276px;}
.y520{bottom:743.220000px;}
.y853{bottom:743.938836px;}
.y787{bottom:743.939325px;}
.y87d{bottom:743.939385px;}
.y823{bottom:743.940189px;}
.y7ee{bottom:744.660000px;}
.y913{bottom:744.660864px;}
.y154{bottom:745.019796px;}
.y4f{bottom:745.110144px;}
.y499{bottom:745.290000px;}
.y6d9{bottom:745.291802px;}
.yc4{bottom:745.560000px;}
.y90{bottom:745.928703px;}
.y131{bottom:746.558465px;}
.y4ef{bottom:746.999940px;}
.y64b{bottom:747.360000px;}
.y5e5{bottom:747.629390px;}
.y70e{bottom:747.810000px;}
.y613{bottom:749.160864px;}
.y2a2{bottom:749.162040px;}
.yf8{bottom:749.166891px;}
.y2cd{bottom:750.240000px;}
.y2f8{bottom:750.782351px;}
.y75d{bottom:751.680000px;}
.y425{bottom:752.220432px;}
.y7bc{bottom:752.400643px;}
.y3e7{bottom:752.578930px;}
.y72b{bottom:752.939817px;}
.y8e1{bottom:753.568720px;}
.y674{bottom:754.020000px;}
.y1ad{bottom:754.380509px;}
.y402{bottom:754.382412px;}
.y6b3{bottom:755.910000px;}
.y464{bottom:756.180372px;}
.y37c{bottom:756.900432px;}
.y190{bottom:757.621608px;}
.y3ad{bottom:757.623276px;}
.y14{bottom:758.072090px;}
.y56f{bottom:758.880000px;}
.y688{bottom:758.882472px;}
.y210{bottom:758.882844px;}
.y822{bottom:760.139757px;}
.y8a3{bottom:760.140000px;}
.y7ed{bottom:760.860000px;}
.y912{bottom:760.860432px;}
.y153{bottom:761.130000px;}
.y4e{bottom:761.400000px;}
.y498{bottom:761.580000px;}
.y6d8{bottom:761.581862px;}
.y8f{bottom:762.128060px;}
.y130{bottom:762.848321px;}
.y4ee{bottom:763.290000px;}
.y23d{bottom:763.380000px;}
.y5e4{bottom:763.739879px;}
.y70d{bottom:763.920000px;}
.y612{bottom:765.360432px;}
.y2a1{bottom:765.361608px;}
.yf7{bottom:765.366248px;}
.y34c{bottom:765.539877px;}
.y595{bottom:766.530000px;}
.y2f7{bottom:767.072412px;}
.y8d1{bottom:767.159384px;}
.y51f{bottom:767.880000px;}
.y424{bottom:768.420246px;}
.y7bb{bottom:768.599207px;}
.y852{bottom:768.599450px;}
.y786{bottom:768.599940px;}
.y87c{bottom:768.600000px;}
.y1ac{bottom:768.960339px;}
.y8e0{bottom:769.858780px;}
.y4cb{bottom:770.040000px;}
.y673{bottom:770.220000px;}
.y401{bottom:770.581980px;}
.y463{bottom:772.379940px;}
.y64a{bottom:773.010372px;}
.y3e6{bottom:773.099514px;}
.y37b{bottom:773.102347px;}
.y18f{bottom:773.821176px;}
.y3ac{bottom:773.822844px;}
.y13{bottom:774.271447px;}
.y2cc{bottom:774.990000px;}
.y687{bottom:775.082040px;}
.y20f{bottom:775.082412px;}
.y943{bottom:776.339822px;}
.y75c{bottom:776.340432px;}
.y8a2{bottom:776.429207px;}
.y821{bottom:776.429817px;}
.y7ec{bottom:777.060000px;}
.y911{bottom:777.060382px;}
.y72a{bottom:777.600432px;}
.y4d{bottom:777.690000px;}
.y497{bottom:777.870000px;}
.y6d7{bottom:777.871922px;}
.y8e{bottom:778.327417px;}
.y12f{bottom:779.047678px;}
.y5e3{bottom:780.029940px;}
.y70c{bottom:780.210000px;}
.y2a0{bottom:781.561176px;}
.y611{bottom:781.564387px;}
.yf6{bottom:781.565604px;}
.y2f6{bottom:783.271980px;}
.y1ab{bottom:783.540168px;}
.y51e{bottom:784.080000px;}
.y56e{bottom:784.530815px;}
.y87b{bottom:784.888836px;}
.y851{bottom:784.889511px;}
.y785{bottom:784.890016px;}
.y8df{bottom:786.148840px;}
.y4ca{bottom:786.240000px;}
.y672{bottom:786.420000px;}
.y400{bottom:786.781548px;}
.y4ed{bottom:788.490000px;}
.y462{bottom:788.671171px;}
.y3e5{bottom:789.299082px;}
.y649{bottom:789.300432px;}
.y18e{bottom:790.020744px;}
.y3ab{bottom:790.022412px;}
.y12{bottom:790.561303px;}
.y594{bottom:791.100000px;}
.y686{bottom:791.281608px;}
.y20e{bottom:791.281980px;}
.y8d0{bottom:791.909077px;}
.yc3{bottom:792.363149px;}
.y942{bottom:792.539390px;}
.y8a1{bottom:792.539697px;}
.y75b{bottom:792.540246px;}
.y820{bottom:792.540307px;}
.y423{bottom:793.169940px;}
.y7ba{bottom:793.259822px;}
.y7eb{bottom:793.350000px;}
.y729{bottom:793.799697px;}
.y4c{bottom:793.800000px;}
.y496{bottom:793.980000px;}
.y6d6{bottom:793.982412px;}
.y8d{bottom:794.617273px;}
.y12e{bottom:795.247035px;}
.y5e2{bottom:796.318048px;}
.y70b{bottom:796.410000px;}
.y29f{bottom:797.851236px;}
.y37a{bottom:797.852040px;}
.yf5{bottom:797.855460px;}
.y1aa{bottom:798.210169px;}
.y2f5{bottom:799.471548px;}
.y2cb{bottom:799.560000px;}
.y454{bottom:799.650000px;}
.y51d{bottom:800.370000px;}
.y56d{bottom:800.820876px;}
.y87a{bottom:800.999325px;}
.y850{bottom:801.000144px;}
.y784{bottom:801.000288px;}
.y910{bottom:801.721115px;}
.y8de{bottom:802.259330px;}
.y4c9{bottom:802.440000px;}
.y671{bottom:802.710000px;}
.y3ff{bottom:803.071608px;}
.y648{bottom:805.500000px;}
.y3e4{bottom:805.589142px;}
.y18d{bottom:806.310804px;}
.y3aa{bottom:806.312472px;}
.y610{bottom:806.314080px;}
.y11{bottom:806.760660px;}
.y685{bottom:807.571668px;}
.y20d{bottom:807.572040px;}
.yc2{bottom:808.653005px;}
.y941{bottom:808.829450px;}
.y8a0{bottom:808.829757px;}
.y7b9{bottom:809.459390px;}
.y7ea{bottom:809.460000px;}
.y422{bottom:809.461119px;}
.y728{bottom:810.089757px;}
.y4b{bottom:810.090144px;}
.y23c{bottom:810.181980px;}
.y495{bottom:810.270000px;}
.y6d5{bottom:810.272472px;}
.y8c{bottom:810.816630px;}
.y12d{bottom:811.536891px;}
.y270{bottom:812.429754px;}
.y70a{bottom:812.610000px;}
.y1a9{bottom:812.789999px;}
.y461{bottom:813.330372px;}
.y29e{bottom:814.050804px;}
.y379{bottom:814.051608px;}
.yf4{bottom:814.054817px;}
.y2f4{bottom:815.761608px;}
.y2ca{bottom:815.850000px;}
.y8cf{bottom:816.569692px;}
.y56c{bottom:816.931365px;}
.y879{bottom:817.289385px;}
.y84f{bottom:817.289817px;}
.y75a{bottom:817.289940px;}
.y81f{bottom:817.290000px;}
.y783{bottom:817.290144px;}
.y90f{bottom:818.011176px;}
.y8dd{bottom:818.549390px;}
.y4c8{bottom:818.730000px;}
.y670{bottom:818.910000px;}
.y3fe{bottom:819.271176px;}
.y5e1{bottom:820.888170px;}
.y18c{bottom:822.510372px;}
.y3a9{bottom:822.512040px;}
.y60f{bottom:822.513648px;}
.y10{bottom:822.960016px;}
.y684{bottom:823.771236px;}
.y20c{bottom:823.771608px;}
.yc1{bottom:824.942861px;}
.y51c{bottom:825.030000px;}
.y940{bottom:825.119511px;}
.y89f{bottom:825.119817px;}
.y421{bottom:825.571608px;}
.y7b8{bottom:825.749450px;}
.y7e9{bottom:825.750000px;}
.y727{bottom:826.379817px;}
.y4a{bottom:826.380000px;}
.y494{bottom:826.470000px;}
.y23b{bottom:826.472040px;}
.y1a8{bottom:827.460000px;}
.y12c{bottom:827.736248px;}
.y709{bottom:828.900000px;}
.y460{bottom:829.529940px;}
.y3e3{bottom:830.249757px;}
.y29d{bottom:830.250372px;}
.y378{bottom:830.251176px;}
.yf3{bottom:830.254174px;}
.y647{bottom:831.150937px;}
.y1a7{bottom:831.690000px;}
.y2f3{bottom:831.961176px;}
.y56b{bottom:833.221425px;}
.y81e{bottom:833.578836px;}
.y759{bottom:833.579268px;}
.y90e{bottom:834.210744px;}
.y8dc{bottom:834.839450px;}
.y4c7{bottom:834.840000px;}
.y66f{bottom:835.110000px;}
.y3fd{bottom:835.470744px;}
.y8b{bottom:835.476248px;}
.y26f{bottom:835.560000px;}
.y5e0{bottom:837.178230px;}
.y18b{bottom:838.709940px;}
.y3a8{bottom:838.711608px;}
.y60e{bottom:838.713216px;}
.yf{bottom:839.249872px;}
.y683{bottom:839.970804px;}
.y20b{bottom:839.971176px;}
.y2c9{bottom:840.600000px;}
.yc0{bottom:841.142218px;}
.y93f{bottom:841.230000px;}
.y8ce{bottom:841.230307px;}
.y420{bottom:841.861668px;}
.y84e{bottom:841.950432px;}
.y878{bottom:841.950643px;}
.y7b7{bottom:842.039511px;}
.y7e8{bottom:842.040000px;}
.y49{bottom:842.490000px;}
.y726{bottom:842.490307px;}
.y493{bottom:842.670000px;}
.y23a{bottom:842.671608px;}
.y1ff{bottom:843.030000px;}
.y708{bottom:845.100000px;}
.y45f{bottom:845.819817px;}
.y3e2{bottom:846.449325px;}
.y29c{bottom:846.540432px;}
.y377{bottom:846.541236px;}
.y646{bottom:847.440998px;}
.y1a6{bottom:847.620427px;}
.y2f2{bottom:848.160744px;}
.y56a{bottom:849.511486px;}
.y81d{bottom:849.689325px;}
.y758{bottom:849.689757px;}
.y89e{bottom:849.689940px;}
.y51b{bottom:849.690000px;}
.y90d{bottom:850.500804px;}
.y8db{bottom:850.949940px;}
.y4c6{bottom:851.130000px;}
.y3fc{bottom:851.760804px;}
.y8a{bottom:851.766104px;}
.y12b{bottom:852.395866px;}
.y5df{bottom:853.468291px;}
.y18a{bottom:855.000000px;}
.y3a7{bottom:855.001668px;}
.y60d{bottom:855.003276px;}
.yf2{bottom:855.004291px;}
.ye{bottom:855.360144px;}
.y682{bottom:856.260864px;}
.y20a{bottom:856.261236px;}
.y2c8{bottom:856.800000px;}
.ybf{bottom:857.341574px;}
.y41f{bottom:858.061236px;}
.y84d{bottom:858.149636px;}
.y877{bottom:858.149697px;}
.y7b6{bottom:858.150288px;}
.y48{bottom:858.780144px;}
.y26e{bottom:858.871919px;}
.y492{bottom:858.960000px;}
.y239{bottom:858.961668px;}
.y66e{bottom:859.500000px;}
.y707{bottom:861.300000px;}
.y29b{bottom:862.740000px;}
.y376{bottom:862.740804px;}
.y645{bottom:863.731058px;}
.y2f1{bottom:864.450804px;}
.y569{bottom:865.621975px;}
.y93e{bottom:865.979330px;}
.y81c{bottom:865.979385px;}
.y89d{bottom:865.979757px;}
.y757{bottom:865.979817px;}
.y51a{bottom:865.980000px;}
.y7e7{bottom:866.700000px;}
.y90c{bottom:866.700372px;}
.y8da{bottom:867.240000px;}
.y725{bottom:867.240144px;}
.y4c5{bottom:867.420000px;}
.y3fb{bottom:867.960372px;}
.y89{bottom:867.965460px;}
.y12a{bottom:868.685722px;}
.y5de{bottom:869.578780px;}
.y45e{bottom:870.480432px;}
.y3e1{bottom:871.109940px;}
.y3a6{bottom:871.201236px;}
.y60c{bottom:871.202844px;}
.yf1{bottom:871.203648px;}
.yd{bottom:871.650000px;}
.y681{bottom:872.460432px;}
.y209{bottom:872.460804px;}
.ybe{bottom:873.631430px;}
.y5b5{bottom:873.900000px;}
.y41e{bottom:874.260804px;}
.y84c{bottom:874.439697px;}
.y876{bottom:874.439757px;}
.y7b5{bottom:874.440144px;}
.y47{bottom:875.070000px;}
.y491{bottom:875.160000px;}
.y238{bottom:875.161236px;}
.y26d{bottom:875.161980px;}
.y706{bottom:877.590000px;}
.y375{bottom:878.940372px;}
.y644{bottom:879.841548px;}
.y189{bottom:880.290000px;}
.y2f0{bottom:880.650372px;}
.y2c7{bottom:881.460000px;}
.y568{bottom:881.912035px;}
.y93d{bottom:882.269390px;}
.y8cd{bottom:882.269757px;}
.y89c{bottom:882.269817px;}
.y756{bottom:882.269878px;}
.y519{bottom:882.270000px;}
.y7e6{bottom:882.899940px;}
.y724{bottom:883.528836px;}
.y4c4{bottom:883.530000px;}
.y31c{bottom:883.623216px;}
.y3fa{bottom:884.159940px;}
.y88{bottom:884.164817px;}
.y129{bottom:884.885078px;}
.y5dd{bottom:885.868840px;}
.y45d{bottom:886.680129px;}
.y3e0{bottom:887.400000px;}
.y3a5{bottom:887.400804px;}
.y3de{bottom:887.402412px;}
.yf0{bottom:887.403005px;}
.y29a{bottom:888.030000px;}
.y208{bottom:888.660372px;}
.y680{bottom:888.662779px;}
.ybd{bottom:889.830787px;}
.y5b4{bottom:890.190000px;}
.y41d{bottom:890.550864px;}
.y782{bottom:890.640432px;}
.y81b{bottom:890.640643px;}
.y7b4{bottom:890.729207px;}
.y84b{bottom:890.729757px;}
.y875{bottom:890.729817px;}
.y46{bottom:891.180144px;}
.y490{bottom:891.360000px;}
.y237{bottom:891.360804px;}
.y26c{bottom:891.361548px;}
.y8d9{bottom:891.900372px;}
.y3df{bottom:892.260000px;}
.y705{bottom:893.790000px;}
.y374{bottom:895.230432px;}
.y643{bottom:896.131608px;}
.y2ef{bottom:896.849940px;}
.yc{bottom:897.570188px;}
.y2c6{bottom:897.750000px;}
.y567{bottom:898.111603px;}
.y93c{bottom:898.379879px;}
.y8cc{bottom:898.380246px;}
.y7e5{bottom:899.190000px;}
.y723{bottom:899.639325px;}
.y4c3{bottom:899.820000px;}
.y31b{bottom:899.822784px;}
.y3f9{bottom:900.451797px;}
.y87{bottom:900.454673px;}
.y128{bottom:901.084435px;}
.y5dc{bottom:902.158901px;}
.y3dd{bottom:903.601980px;}
.y3a4{bottom:903.690864px;}
.y60b{bottom:903.692472px;}
.yef{bottom:903.692861px;}
.y207{bottom:904.950432px;}
.ybc{bottom:906.030144px;}
.y5b3{bottom:906.390000px;}
.y41c{bottom:906.750432px;}
.y81a{bottom:906.839636px;}
.y781{bottom:906.839757px;}
.y89b{bottom:906.839940px;}
.y518{bottom:906.840000px;}
.y84a{bottom:906.840246px;}
.y45{bottom:907.470000px;}
.y4ec{bottom:907.650000px;}
.y236{bottom:907.650864px;}
.y26b{bottom:907.651608px;}
.y8d8{bottom:908.190432px;}
.y704{bottom:909.990000px;}
.y45c{bottom:911.340744px;}
.y373{bottom:911.430000px;}
.y642{bottom:912.331176px;}
.y2ee{bottom:913.140000px;}
.y67f{bottom:913.412472px;}
.y593{bottom:913.950000px;}
.y566{bottom:914.311171px;}
.y93b{bottom:914.669940px;}
.y17c{bottom:915.210000px;}
.y7b3{bottom:915.299330px;}
.y874{bottom:915.299940px;}
.y7e4{bottom:915.300000px;}
.y722{bottom:915.929385px;}
.y48f{bottom:916.020000px;}
.y188{bottom:916.020744px;}
.y4c2{bottom:916.110000px;}
.y31a{bottom:916.112844px;}
.y86{bottom:916.654030px;}
.y127{bottom:917.374291px;}
.y5db{bottom:918.269390px;}
.y3a3{bottom:919.890432px;}
.y3dc{bottom:919.892040px;}
.yee{bottom:919.892218px;}
.yb{bottom:920.250703px;}
.y206{bottom:921.150643px;}
.y547{bottom:921.150993px;}
.ybb{bottom:922.320000px;}
.y2c5{bottom:922.410000px;}
.y41b{bottom:922.950000px;}
.y819{bottom:923.129697px;}
.y755{bottom:923.129817px;}
.y8cb{bottom:923.129940px;}
.y44{bottom:923.760000px;}
.y4eb{bottom:923.850000px;}
.y235{bottom:923.850432px;}
.y6b2{bottom:923.850804px;}
.y26a{bottom:923.851176px;}
.y90b{bottom:923.851980px;}
.y299{bottom:923.852412px;}
.y8d7{bottom:924.390000px;}
.y3f8{bottom:925.112412px;}
.y703{bottom:926.280000px;}
.y45b{bottom:927.630804px;}
.y641{bottom:928.530744px;}
.y67e{bottom:929.612040px;}
.y565{bottom:930.601231px;}
.y5b2{bottom:930.780000px;}
.y93a{bottom:930.960000px;}
.y7b2{bottom:931.589390px;}
.y849{bottom:931.589940px;}
.y517{bottom:931.590000px;}
.y873{bottom:931.590144px;}
.y4c1{bottom:932.220000px;}
.y48e{bottom:932.310000px;}
.y187{bottom:932.310804px;}
.y319{bottom:932.312412px;}
.y126{bottom:933.573648px;}
.y5da{bottom:934.559450px;}
.y3a2{bottom:936.090000px;}
.yed{bottom:936.091574px;}
.y3db{bottom:936.091608px;}
.y372{bottom:936.720000px;}
.y205{bottom:937.350000px;}
.y592{bottom:938.610000px;}
.y818{bottom:939.419757px;}
.y754{bottom:939.419878px;}
.y8ca{bottom:939.420100px;}
.y43{bottom:939.870000px;}
.y4ea{bottom:940.050000px;}
.y6b1{bottom:940.050372px;}
.y269{bottom:940.050744px;}
.y234{bottom:940.051305px;}
.y90a{bottom:940.051548px;}
.y298{bottom:940.051980px;}
.y721{bottom:940.590643px;}
.y3f7{bottom:941.311980px;}
.y85{bottom:941.313648px;}
.y702{bottom:942.480000px;}
.ya{bottom:943.020000px;}
.y45a{bottom:943.920864px;}
.y640{bottom:944.820804px;}
.y546{bottom:945.811608px;}
.y2c4{bottom:947.070000px;}
.y2ed{bottom:947.520000px;}
.y7b1{bottom:947.879450px;}
.y516{bottom:947.880000px;}
.y848{bottom:947.880250px;}
.y41a{bottom:948.240000px;}
.y48d{bottom:948.510000px;}
.y186{bottom:948.510372px;}
.y318{bottom:948.511980px;}
.y8d6{bottom:949.050311px;}
.y125{bottom:949.773005px;}
.y5d9{bottom:950.849511px;}
.y3da{bottom:952.291176px;}
.yec{bottom:952.381430px;}
.y60a{bottom:952.381668px;}
.y5b1{bottom:954.090000px;}
.y564{bottom:955.260432px;}
.y939{bottom:955.529940px;}
.y817{bottom:955.530246px;}
.y8c9{bottom:955.530589px;}
.y42{bottom:956.160144px;}
.y66d{bottom:956.250000px;}
.y6b0{bottom:956.340432px;}
.y268{bottom:956.340804px;}
.y909{bottom:956.341608px;}
.y297{bottom:956.342040px;}
.yba{bottom:956.700000px;}
.y720{bottom:956.790000px;}
.y3f6{bottom:957.602040px;}
.y84{bottom:957.603504px;}
.y1d4{bottom:958.500000px;}
.y701{bottom:958.680000px;}
.y459{bottom:960.120432px;}
.y63f{bottom:961.020372px;}
.y3a1{bottom:961.380000px;}
.y545{bottom:962.101668px;}
.y204{bottom:962.641562px;}
.y2c3{bottom:963.360000px;}
.y7b0{bottom:963.989940px;}
.y515{bottom:963.990000px;}
.y780{bottom:963.990529px;}
.y847{bottom:963.990739px;}
.y4e9{bottom:964.710000px;}
.y233{bottom:964.711919px;}
.y48c{bottom:964.800000px;}
.y185{bottom:964.800432px;}
.y317{bottom:964.802040px;}
.y8d5{bottom:965.340372px;}
.y124{bottom:966.062861px;}
.y5d8{bottom:966.960000px;}
.yeb{bottom:968.580787px;}
.y3d9{bottom:968.581236px;}
.y5b0{bottom:970.380000px;}
.y563{bottom:971.460000px;}
.y938{bottom:971.820000px;}
.y8c8{bottom:971.820649px;}
.y41{bottom:972.450000px;}
.y267{bottom:972.540372px;}
.y6af{bottom:972.540933px;}
.y908{bottom:972.541176px;}
.y296{bottom:972.541608px;}
.y3f5{bottom:973.801608px;}
.y83{bottom:973.802861px;}
.y700{bottom:974.970000px;}
.y458{bottom:976.320739px;}
.y5a9{bottom:976.860000px;}
.y63e{bottom:977.219940px;}
.y544{bottom:978.301236px;}
.y7b{bottom:979.649728px;}
.y816{bottom:980.279940px;}
.y514{bottom:980.280000px;}
.y7af{bottom:980.280144px;}
.y753{bottom:980.280589px;}
.y846{bottom:980.280799px;}
.y4c0{bottom:980.909850px;}
.y184{bottom:981.000000px;}
.y316{bottom:981.001608px;}
.y232{bottom:981.001980px;}
.y8d4{bottom:981.539940px;}
.y71f{bottom:981.540144px;}
.y203{bottom:982.170658px;}
.y123{bottom:982.262218px;}
.yea{bottom:984.780144px;}
.y3d8{bottom:984.780804px;}
.y419{bottom:985.320000px;}
.y5af{bottom:986.580000px;}
.y2c2{bottom:988.020000px;}
.y40{bottom:988.560000px;}
.y266{bottom:988.739940px;}
.y66c{bottom:988.740000px;}
.y7e3{bottom:988.740501px;}
.y907{bottom:988.740744px;}
.y295{bottom:988.741176px;}
.y9{bottom:989.910643px;}
.y3f4{bottom:990.001176px;}
.y82{bottom:990.002218px;}
.y6ff{bottom:991.170000px;}
.y5d7{bottom:992.339850px;}
.y63d{bottom:993.510000px;}
.y543{bottom:994.500804px;}
.y7a{bottom:995.760000px;}
.y2ec{bottom:996.479850px;}
.y937{bottom:996.480372px;}
.y815{bottom:996.568775px;}
.y513{bottom:996.570000px;}
.y752{bottom:996.570649px;}
.y7ae{bottom:996.571231px;}
.y48b{bottom:997.200000px;}
.y315{bottom:997.201176px;}
.y183{bottom:997.201548px;}
.y71e{bottom:997.829385px;}
.y8d3{bottom:997.830000px;}
.y122{bottom:998.461574px;}
.y3d7{bottom:1000.980372px;}
.ye9{bottom:1001.070000px;}
.y457{bottom:1001.070432px;}
.y609{bottom:1001.070864px;}
.y202{bottom:1001.610000px;}
.y5a8{bottom:1002.780000px;}
.y5ae{bottom:1002.870000px;}
.y2c1{bottom:1004.220000px;}
.yb9{bottom:1004.759573px;}
.y3f{bottom:1004.850000px;}
.y77f{bottom:1004.939790px;}
.y872{bottom:1004.939994px;}
.y66b{bottom:1004.940000px;}
.y7e2{bottom:1005.030561px;}
.y906{bottom:1005.030804px;}
.y294{bottom:1005.031236px;}
.y265{bottom:1005.031603px;}
.y8{bottom:1006.110000px;}
.y3f3{bottom:1006.291236px;}
.y81{bottom:1006.292074px;}
.y6fe{bottom:1007.370000px;}
.y542{bottom:1010.790864px;}
.y79{bottom:1012.050000px;}
.y814{bottom:1012.679265px;}
.y936{bottom:1012.679940px;}
.y2eb{bottom:1012.680000px;}
.y8c7{bottom:1012.680307px;}
.y4bf{bottom:1013.400000px;}
.y48a{bottom:1013.490000px;}
.y314{bottom:1013.491236px;}
.y182{bottom:1013.491608px;}
.y121{bottom:1014.751430px;}
.y456{bottom:1017.270000px;}
.y3d6{bottom:1017.270432px;}
.y5a7{bottom:1019.070000px;}
.y63c{bottom:1019.160372px;}
.y66a{bottom:1021.140000px;}
.y1d9{bottom:1021.141543px;}
.y751{bottom:1021.229229px;}
.y512{bottom:1021.229850px;}
.y7e1{bottom:1021.230129px;}
.y871{bottom:1021.230189px;}
.y905{bottom:1021.230372px;}
.y7ad{bottom:1021.230432px;}
.y293{bottom:1021.230804px;}
.y71d{bottom:1022.490643px;}
.y3f2{bottom:1022.490804px;}
.y80{bottom:1022.491430px;}
.y7{bottom:1022.580000px;}
.y6fd{bottom:1023.659850px;}
.y1db{bottom:1025.370000px;}
.y1da{bottom:1026.089850px;}
.ye8{bottom:1026.360000px;}
.yb8{bottom:1026.900000px;}
.y541{bottom:1026.990432px;}
.y813{bottom:1028.969325px;}
.y2c0{bottom:1028.970000px;}
.y935{bottom:1028.970382px;}
.y5d6{bottom:1029.330000px;}
.y4be{bottom:1029.600000px;}
.y43a{bottom:1029.601176px;}
.y489{bottom:1029.690000px;}
.y264{bottom:1029.690804px;}
.y181{bottom:1029.691176px;}
.y120{bottom:1030.950787px;}
.y418{bottom:1032.210282px;}
.y3d5{bottom:1033.470000px;}
.y5a6{bottom:1035.270000px;}
.y63b{bottom:1035.450432px;}
.y750{bottom:1037.429757px;}
.y904{bottom:1037.429940px;}
.y845{bottom:1037.430000px;}
.y201{bottom:1037.430144px;}
.y292{bottom:1037.430372px;}
.y7ac{bottom:1037.430787px;}
.y1d8{bottom:1037.431603px;}
.y3e{bottom:1038.060000px;}
.y3f1{bottom:1038.690372px;}
.y7f{bottom:1038.690787px;}
.y6{bottom:1040.670000px;}
.y455{bottom:1042.560000px;}
.y4ad{bottom:1043.100000px;}
.y540{bottom:1043.190000px;}
.y812{bottom:1045.259385px;}
.y78{bottom:1045.260000px;}
.y488{bottom:1045.890000px;}
.y263{bottom:1045.890372px;}
.y180{bottom:1045.890744px;}
.y32d{bottom:1045.891236px;}
.y11f{bottom:1047.150144px;}
.y6fc{bottom:1048.320000px;}
.y417{bottom:1048.409850px;}
.y5a5{bottom:1051.560000px;}
.y63a{bottom:1051.650000px;}
.y934{bottom:1053.630372px;}
.y1d7{bottom:1053.631171px;}
.y74f{bottom:1053.719817px;}
.y200{bottom:1053.720000px;}
.y291{bottom:1053.720432px;}
.y7ab{bottom:1053.720643px;}
.y3f0{bottom:1054.980432px;}
.y7e{bottom:1054.980643px;}
.y4ac{bottom:1057.770000px;}
.y3d4{bottom:1058.760000px;}
.y591{bottom:1061.370000px;}
.y4bd{bottom:1062.090000px;}
.y32c{bottom:1062.090804px;}
.ye7{bottom:1062.090931px;}
.y487{bottom:1062.180000px;}
.y262{bottom:1062.180432px;}
.y17f{bottom:1062.180804px;}
.y5{bottom:1062.181430px;}
.y11e{bottom:1063.440000px;}
.yb7{bottom:1063.979850px;}
.y6fb{bottom:1064.520000px;}
.y5a4{bottom:1067.760000px;}
.y53f{bottom:1068.479850px;}
.y1d6{bottom:1069.830739px;}
.y371{bottom:1069.919325px;}
.y290{bottom:1069.919385px;}
.y2bf{bottom:1069.920000px;}
.y933{bottom:1069.920432px;}
.y7d{bottom:1071.180000px;}
.y4ab{bottom:1072.260000px;}
.y3d{bottom:1072.440000px;}
.y4d4{bottom:1074.060000px;}
.y639{bottom:1077.299879px;}
.y152{bottom:1078.290000px;}
.y150{bottom:1078.290372px;}
.y77{bottom:1078.380000px;}
.y17e{bottom:1078.380372px;}
.y74e{bottom:1078.380432px;}
.y4{bottom:1078.380787px;}
.y6fa{bottom:1080.810000px;}
.y416{bottom:1082.790703px;}
.y27b{bottom:1082.880000px;}
.y27a{bottom:1082.883319px;}
.y151{bottom:1083.240000px;}
.y5a3{bottom:1083.960000px;}
.y590{bottom:1086.120000px;}
.y4aa{bottom:1086.930000px;}
.y11d{bottom:1088.639210px;}
.y4d3{bottom:1090.350000px;}
.y5ad{bottom:1092.420000px;}
.y638{bottom:1093.589940px;}
.y17d{bottom:1094.579940px;}
.y76{bottom:1094.580000px;}
.y3{bottom:1094.580144px;}
.y14f{bottom:1094.580432px;}
.y279{bottom:1097.553320px;}
.y7c{bottom:1105.560000px;}
.y11c{bottom:1108.170000px;}
.y5a2{bottom:1108.620000px;}
.y5ac{bottom:1108.710000px;}
.y637{bottom:1109.880000px;}
.y4a9{bottom:1109.972845px;}
.yb6{bottom:1110.780000px;}
.y2{bottom:1110.870000px;}
.y278{bottom:1112.042978px;}
.y1d5{bottom:1138.500000px;}
.y75{bottom:1138.590000px;}
.h1a{height:22.572088px;}
.h14{height:23.514659px;}
.h13{height:24.378447px;}
.h18{height:29.715782px;}
.h7{height:29.718414px;}
.h17{height:32.093823px;}
.ha{height:32.095929px;}
.h19{height:34.776720px;}
.h1{height:34.779595px;}
.hb{height:35.275737px;}
.h12{height:38.717791px;}
.h22{height:38.720666px;}
.hd{height:39.273029px;}
.h2e{height:41.308313px;}
.h2b{height:42.428025px;}
.h10{height:44.574725px;}
.h6{height:44.578411px;}
.h30{height:44.938411px;}
.h16{height:46.369096px;}
.h4{height:46.371971px;}
.h39{height:49.621010px;}
.h24{height:49.623007px;}
.h1b{height:49.623583px;}
.h42{height:49.624627px;}
.h3a{height:49.625004px;}
.h35{height:49.625580px;}
.h1e{height:49.625602px;}
.h38{height:49.626090px;}
.h11{height:49.626156px;}
.h2d{height:49.626397px;}
.h43{height:49.626638px;}
.h2a{height:49.626886px;}
.h33{height:49.627127px;}
.h3b{height:49.627242px;}
.h32{height:49.627369px;}
.h3e{height:49.627610px;}
.h25{height:49.628038px;}
.h20{height:49.628615px;}
.h36{height:49.628639px;}
.h27{height:49.628856px;}
.h37{height:49.629085px;}
.h3f{height:49.629326px;}
.h23{height:49.629567px;}
.h2{height:49.629841px;}
.hc{height:49.630597px;}
.h40{height:49.630813px;}
.h3d{height:49.631055px;}
.h3c{height:49.631556px;}
.h1c{height:49.632249px;}
.h2f{height:49.633965px;}
.h8{height:51.501116px;}
.h28{height:51.528011px;}
.h29{height:51.533184px;}
.h1d{height:51.534442px;}
.h9{height:51.879482px;}
.h31{height:51.881338px;}
.h21{height:51.886282px;}
.h26{height:51.893666px;}
.h2c{height:51.895929px;}
.h1f{height:51.896171px;}
.h15{height:54.019580px;}
.h3{height:54.023688px;}
.h34{height:54.025069px;}
.h41{height:57.155850px;}
.h44{height:60.198206px;}
.h5{height:65.738845px;}
.he{height:65.740195px;}
.hf{height:66.100702px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:120.150000px;}
.x3{left:128.520806px;}
.x4{left:144.720162px;}
.x20{left:164.250000px;}
.x5{left:181.170129px;}
.x2{left:208.170000px;}
.xc{left:210.150000px;}
.x14{left:212.400000px;}
.x27{left:216.630000px;}
.x1f{left:218.340000px;}
.x2c{left:219.420000px;}
.x2f{left:236.159511px;}
.x22{left:240.210000px;}
.x8{left:248.220000px;}
.x10{left:252.270000px;}
.x11{left:256.500000px;}
.x3c{left:266.130000px;}
.x3d{left:269.370000px;}
.x30{left:280.170000px;}
.x9{left:288.180000px;}
.x15{left:306.360000px;}
.xa{left:328.230000px;}
.x3e{left:332.730000px;}
.x3f{left:335.880000px;}
.x25{left:344.700000px;}
.x26{left:353.790000px;}
.x34{left:364.230000px;}
.x6{left:367.470000px;}
.x35{left:368.730000px;}
.x3a{left:410.760000px;}
.x3b{left:413.910000px;}
.x39{left:425.880000px;}
.xd{left:436.320000px;}
.xe{left:440.910000px;}
.x37{left:496.350000px;}
.x1c{left:546.120000px;}
.x12{left:548.100000px;}
.x1d{left:550.710000px;}
.x13{left:554.940000px;}
.x16{left:596.250000px;}
.x17{left:600.750000px;}
.x38{left:612.540000px;}
.x33{left:632.970000px;}
.x2d{left:640.890000px;}
.x19{left:674.190000px;}
.x1a{left:677.700000px;}
.x40{left:682.470000px;}
.x41{left:685.620000px;}
.x29{left:714.240000px;}
.x32{left:720.450000px;}
.x2a{left:723.420000px;}
.x2e{left:730.708360px;}
.x36{left:734.310000px;}
.x31{left:742.499850px;}
.xf{left:746.729850px;}
.x23{left:769.139850px;}
.x1b{left:774.359850px;}
.x18{left:779.579712px;}
.x1{left:780.749850px;}
.x2b{left:783.989100px;}
.x42{left:785.519850px;}
.xb{left:787.050000px;}
.x21{left:790.377137px;}
.x28{left:795.328141px;}
.x1e{left:811.350314px;}
.x24{left:875.067680px;}
@media print{
.v4{vertical-align:-17.280000pt;}
.v2{vertical-align:-15.040000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.249055pt;}
.v1{vertical-align:27.519333pt;}
.ls15e{letter-spacing:-0.502736pt;}
.ls59{letter-spacing:-0.422330pt;}
.ls133{letter-spacing:-0.422298pt;}
.ls159{letter-spacing:-0.417271pt;}
.ls14a{letter-spacing:-0.412244pt;}
.ls1c{letter-spacing:-0.410956pt;}
.ls105{letter-spacing:-0.407246pt;}
.ls148{letter-spacing:-0.407216pt;}
.ls146{letter-spacing:-0.296614pt;}
.ls160{letter-spacing:-0.291587pt;}
.ls114{letter-spacing:-0.281532pt;}
.ls15a{letter-spacing:-0.276525pt;}
.ls156{letter-spacing:-0.276505pt;}
.ls167{letter-spacing:-0.261928pt;}
.ls15f{letter-spacing:-0.261442pt;}
.ls115{letter-spacing:-0.256866pt;}
.ls31{letter-spacing:-0.256414pt;}
.ls10f{letter-spacing:-0.251368pt;}
.ls145{letter-spacing:-0.246341pt;}
.ls4e{letter-spacing:-0.241331pt;}
.ls12c{letter-spacing:-0.241313pt;}
.ls14d{letter-spacing:-0.236303pt;}
.ls163{letter-spacing:-0.231276pt;}
.ls142{letter-spacing:-0.231259pt;}
.ls153{letter-spacing:-0.226231pt;}
.ls9c{letter-spacing:-0.224336pt;}
.ls7b{letter-spacing:-0.221220pt;}
.lsfc{letter-spacing:-0.221204pt;}
.ls12f{letter-spacing:-0.216193pt;}
.ls113{letter-spacing:-0.216176pt;}
.ls10{letter-spacing:-0.211165pt;}
.ls107{letter-spacing:-0.211149pt;}
.ls19{letter-spacing:-0.207736pt;}
.ls5a{letter-spacing:-0.206137pt;}
.lsb4{letter-spacing:-0.206122pt;}
.ls51{letter-spacing:-0.201109pt;}
.lsb6{letter-spacing:-0.201094pt;}
.ls14{letter-spacing:-0.196082pt;}
.lsb3{letter-spacing:-0.196067pt;}
.ls16{letter-spacing:-0.191054pt;}
.lse9{letter-spacing:-0.191040pt;}
.ls33{letter-spacing:-0.186026pt;}
.lsbe{letter-spacing:-0.186012pt;}
.ls3c{letter-spacing:-0.180998pt;}
.lsb9{letter-spacing:-0.180985pt;}
.lsa{letter-spacing:-0.180640pt;}
.ls10c{letter-spacing:-0.180625pt;}
.ls2f{letter-spacing:-0.175971pt;}
.ls9d{letter-spacing:-0.175958pt;}
.ls53{letter-spacing:-0.170943pt;}
.lsb7{letter-spacing:-0.170930pt;}
.ls139{letter-spacing:-0.167092pt;}
.ls69{letter-spacing:-0.165915pt;}
.lsdf{letter-spacing:-0.165903pt;}
.ls6f{letter-spacing:-0.160887pt;}
.lsd3{letter-spacing:-0.160876pt;}
.ls1e{letter-spacing:-0.158060pt;}
.ls81{letter-spacing:-0.155860pt;}
.ls9e{letter-spacing:-0.155848pt;}
.ls116{letter-spacing:-0.153544pt;}
.ls55{letter-spacing:-0.150832pt;}
.lsaa{letter-spacing:-0.150821pt;}
.ls1d{letter-spacing:-0.149028pt;}
.ls6c{letter-spacing:-0.145804pt;}
.lsa3{letter-spacing:-0.145793pt;}
.ls5d{letter-spacing:-0.144512pt;}
.ls14b{letter-spacing:-0.140777pt;}
.lsd2{letter-spacing:-0.140766pt;}
.ls54{letter-spacing:-0.135749pt;}
.lsa0{letter-spacing:-0.135739pt;}
.ls13a{letter-spacing:-0.135480pt;}
.ls94{letter-spacing:-0.135469pt;}
.ls117{letter-spacing:-0.130964pt;}
.lsdd{letter-spacing:-0.130953pt;}
.ls154{letter-spacing:-0.130721pt;}
.lsa4{letter-spacing:-0.130711pt;}
.ls13e{letter-spacing:-0.126448pt;}
.ls10e{letter-spacing:-0.125684pt;}
.ls1a{letter-spacing:-0.121932pt;}
.lscc{letter-spacing:-0.121922pt;}
.ls125{letter-spacing:-0.120666pt;}
.ls136{letter-spacing:-0.120657pt;}
.ls11f{letter-spacing:-0.119242pt;}
.lsdc{letter-spacing:-0.117406pt;}
.ls101{letter-spacing:-0.115638pt;}
.lse7{letter-spacing:-0.115629pt;}
.ls5b{letter-spacing:-0.112900pt;}
.ls129{letter-spacing:-0.110602pt;}
.ls12d{letter-spacing:-0.108384pt;}
.ls164{letter-spacing:-0.105582pt;}
.lsa1{letter-spacing:-0.105575pt;}
.ls18{letter-spacing:-0.103868pt;}
.ls99{letter-spacing:-0.103859pt;}
.ls131{letter-spacing:-0.100547pt;}
.lscd{letter-spacing:-0.099344pt;}
.lsf9{letter-spacing:-0.095520pt;}
.ls98{letter-spacing:-0.094828pt;}
.ls79{letter-spacing:-0.090499pt;}
.lsbd{letter-spacing:-0.090492pt;}
.ls5e{letter-spacing:-0.090320pt;}
.lsf2{letter-spacing:-0.090318pt;}
.lsde{letter-spacing:-0.090313pt;}
.lsce{letter-spacing:-0.085797pt;}
.ls135{letter-spacing:-0.085465pt;}
.lsc{letter-spacing:-0.084298pt;}
.ls11a{letter-spacing:-0.081281pt;}
.ls150{letter-spacing:-0.080444pt;}
.ls147{letter-spacing:-0.080438pt;}
.lsd{letter-spacing:-0.077163pt;}
.ls20{letter-spacing:-0.076772pt;}
.lsf8{letter-spacing:-0.076766pt;}
.ls36{letter-spacing:-0.075416pt;}
.lse2{letter-spacing:-0.075410pt;}
.ls17{letter-spacing:-0.072256pt;}
.ls68{letter-spacing:-0.072255pt;}
.ls124{letter-spacing:-0.070388pt;}
.ls134{letter-spacing:-0.070383pt;}
.ls97{letter-spacing:-0.067734pt;}
.ls37{letter-spacing:-0.065361pt;}
.lsc9{letter-spacing:-0.065356pt;}
.ls13b{letter-spacing:-0.063224pt;}
.ls128{letter-spacing:-0.063219pt;}
.ls166{letter-spacing:-0.063133pt;}
.ls38{letter-spacing:-0.060333pt;}
.ls95{letter-spacing:-0.060328pt;}
.ls80{letter-spacing:-0.055305pt;}
.lsbc{letter-spacing:-0.055301pt;}
.ls82{letter-spacing:-0.050277pt;}
.ls140{letter-spacing:-0.050274pt;}
.ls165{letter-spacing:-0.049103pt;}
.ls6a{letter-spacing:-0.048170pt;}
.ls78{letter-spacing:-0.045250pt;}
.lsa9{letter-spacing:-0.045246pt;}
.lseb{letter-spacing:-0.042089pt;}
.ls149{letter-spacing:-0.040222pt;}
.lsbb{letter-spacing:-0.040219pt;}
.ls162{letter-spacing:-0.035194pt;}
.ls12b{letter-spacing:-0.035192pt;}
.ls1f{letter-spacing:-0.031612pt;}
.ls6e{letter-spacing:-0.030166pt;}
.ls126{letter-spacing:-0.030164pt;}
.ls123{letter-spacing:-0.030106pt;}
.lsec{letter-spacing:-0.028059pt;}
.ls70{letter-spacing:-0.027096pt;}
.lsff{letter-spacing:-0.025139pt;}
.ls104{letter-spacing:-0.025137pt;}
.ls57{letter-spacing:-0.020111pt;}
.lsf1{letter-spacing:-0.020109pt;}
.ls106{letter-spacing:-0.015083pt;}
.ls143{letter-spacing:-0.015082pt;}
.lsea{letter-spacing:-0.014030pt;}
.ls71{letter-spacing:-0.013548pt;}
.lscb{letter-spacing:-0.013547pt;}
.ls7f{letter-spacing:-0.012042pt;}
.ls77{letter-spacing:-0.010055pt;}
.lsfe{letter-spacing:-0.009032pt;}
.ls11e{letter-spacing:-0.007015pt;}
.lse8{letter-spacing:-0.006021pt;}
.lsa7{letter-spacing:-0.005027pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004516pt;}
.ls10d{letter-spacing:0.005027pt;}
.ls74{letter-spacing:0.006021pt;}
.ls100{letter-spacing:0.007015pt;}
.ls3b{letter-spacing:0.010055pt;}
.ls7c{letter-spacing:0.012042pt;}
.ls13d{letter-spacing:0.013548pt;}
.ls0{letter-spacing:0.014030pt;}
.ls158{letter-spacing:0.015082pt;}
.ls130{letter-spacing:0.015083pt;}
.ls10b{letter-spacing:0.018062pt;}
.ls122{letter-spacing:0.018064pt;}
.ls120{letter-spacing:0.020109pt;}
.ls76{letter-spacing:0.020111pt;}
.ls3{letter-spacing:0.021044pt;}
.ls118{letter-spacing:0.024083pt;}
.ls61{letter-spacing:0.024085pt;}
.lsee{letter-spacing:0.025137pt;}
.ls161{letter-spacing:0.025139pt;}
.ls63{letter-spacing:0.028059pt;}
.ls15b{letter-spacing:0.030164pt;}
.ls14f{letter-spacing:0.030166pt;}
.ls4c{letter-spacing:0.031612pt;}
.ls2{letter-spacing:0.035074pt;}
.ls151{letter-spacing:0.035192pt;}
.ls66{letter-spacing:0.035194pt;}
.ls93{letter-spacing:0.036125pt;}
.lsad{letter-spacing:0.040219pt;}
.ls14e{letter-spacing:0.040222pt;}
.lsef{letter-spacing:0.042089pt;}
.ls110{letter-spacing:0.045246pt;}
.ls14c{letter-spacing:0.045250pt;}
.ls72{letter-spacing:0.048170pt;}
.ls27{letter-spacing:0.049103pt;}
.lsc1{letter-spacing:0.049672pt;}
.ls103{letter-spacing:0.049676pt;}
.lsf4{letter-spacing:0.050274pt;}
.ls52{letter-spacing:0.050277pt;}
.lsf7{letter-spacing:0.054188pt;}
.ls60{letter-spacing:0.054191pt;}
.ls11d{letter-spacing:0.055301pt;}
.ls6d{letter-spacing:0.055305pt;}
.ls42{letter-spacing:0.056118pt;}
.ls6{letter-spacing:0.058708pt;}
.lse3{letter-spacing:0.060212pt;}
.lse6{letter-spacing:0.060328pt;}
.ls50{letter-spacing:0.060333pt;}
.lsfb{letter-spacing:0.061778pt;}
.ls46{letter-spacing:0.062667pt;}
.ls8b{letter-spacing:0.063128pt;}
.ls11c{letter-spacing:0.063133pt;}
.ls109{letter-spacing:0.063219pt;}
.ls47{letter-spacing:0.063224pt;}
.lsb1{letter-spacing:0.065356pt;}
.ls39{letter-spacing:0.065361pt;}
.lsd8{letter-spacing:0.066229pt;}
.lsf0{letter-spacing:0.066233pt;}
.ls5f{letter-spacing:0.070148pt;}
.lsed{letter-spacing:0.070383pt;}
.ls56{letter-spacing:0.070388pt;}
.lsd6{letter-spacing:0.072250pt;}
.ls73{letter-spacing:0.072255pt;}
.ls9{letter-spacing:0.072256pt;}
.lsbf{letter-spacing:0.075410pt;}
.ls11{letter-spacing:0.075416pt;}
.ls138{letter-spacing:0.076772pt;}
.ls1{letter-spacing:0.077163pt;}
.ls8d{letter-spacing:0.078271pt;}
.ls7d{letter-spacing:0.078276pt;}
.lsac{letter-spacing:0.080438pt;}
.ls44{letter-spacing:0.080444pt;}
.lsf5{letter-spacing:0.081288pt;}
.lsd9{letter-spacing:0.084292pt;}
.ls75{letter-spacing:0.084297pt;}
.lsb2{letter-spacing:0.085465pt;}
.lsf{letter-spacing:0.085471pt;}
.ls7{letter-spacing:0.085804pt;}
.ls8c{letter-spacing:0.090313pt;}
.lsae{letter-spacing:0.090318pt;}
.ls5c{letter-spacing:0.090320pt;}
.lsba{letter-spacing:0.090492pt;}
.ls2e{letter-spacing:0.090499pt;}
.ls10a{letter-spacing:0.094286pt;}
.ls4d{letter-spacing:0.094836pt;}
.lse4{letter-spacing:0.095520pt;}
.ls4{letter-spacing:0.095527pt;}
.lse5{letter-spacing:0.098207pt;}
.ls4b{letter-spacing:0.099352pt;}
.lsb0{letter-spacing:0.100547pt;}
.ls12{letter-spacing:0.100555pt;}
.ls62{letter-spacing:0.102361pt;}
.ls111{letter-spacing:0.103868pt;}
.lsab{letter-spacing:0.105575pt;}
.ls34{letter-spacing:0.105582pt;}
.lsc6{letter-spacing:0.108375pt;}
.ls49{letter-spacing:0.108384pt;}
.lsd5{letter-spacing:0.110602pt;}
.ls13{letter-spacing:0.110610pt;}
.ls112{letter-spacing:0.112900pt;}
.lsb5{letter-spacing:0.115629pt;}
.ls15{letter-spacing:0.115638pt;}
.ls85{letter-spacing:0.117406pt;}
.ls8{letter-spacing:0.117416pt;}
.lsda{letter-spacing:0.120657pt;}
.ls7a{letter-spacing:0.120666pt;}
.lsc7{letter-spacing:0.121922pt;}
.lsa2{letter-spacing:0.125684pt;}
.ls35{letter-spacing:0.125693pt;}
.ls87{letter-spacing:0.126438pt;}
.ls67{letter-spacing:0.126448pt;}
.lsd1{letter-spacing:0.130711pt;}
.ls4f{letter-spacing:0.130721pt;}
.lsc2{letter-spacing:0.130953pt;}
.lsc8{letter-spacing:0.135469pt;}
.lse1{letter-spacing:0.135739pt;}
.ls6b{letter-spacing:0.135749pt;}
.ls88{letter-spacing:0.139984pt;}
.lse{letter-spacing:0.139996pt;}
.lsb8{letter-spacing:0.140766pt;}
.ls2c{letter-spacing:0.140777pt;}
.ls155{letter-spacing:0.141333pt;}
.ls15c{letter-spacing:0.143200pt;}
.ls8a{letter-spacing:0.144500pt;}
.lsf3{letter-spacing:0.144509pt;}
.ls9f{letter-spacing:0.145793pt;}
.ls157{letter-spacing:0.145804pt;}
.ls127{letter-spacing:0.149016pt;}
.ls4a{letter-spacing:0.149028pt;}
.ls91{letter-spacing:0.150821pt;}
.ls132{letter-spacing:0.150832pt;}
.ls89{letter-spacing:0.153531pt;}
.lsa8{letter-spacing:0.155848pt;}
.lsfd{letter-spacing:0.155860pt;}
.lsc5{letter-spacing:0.158047pt;}
.ls8f{letter-spacing:0.160876pt;}
.ls58{letter-spacing:0.160887pt;}
.ls86{letter-spacing:0.162563pt;}
.ls9b{letter-spacing:0.165903pt;}
.lsd7{letter-spacing:0.167078pt;}
.ls96{letter-spacing:0.170930pt;}
.ls2b{letter-spacing:0.170943pt;}
.lsd0{letter-spacing:0.175958pt;}
.ls40{letter-spacing:0.175971pt;}
.ls1b{letter-spacing:0.176124pt;}
.lsc3{letter-spacing:0.180625pt;}
.ls90{letter-spacing:0.180985pt;}
.ls3d{letter-spacing:0.180998pt;}
.lsd4{letter-spacing:0.185141pt;}
.lsa5{letter-spacing:0.186012pt;}
.ls9a{letter-spacing:0.191040pt;}
.ls3e{letter-spacing:0.191054pt;}
.lsc4{letter-spacing:0.194172pt;}
.lscf{letter-spacing:0.196067pt;}
.ls3a{letter-spacing:0.196082pt;}
.ls119{letter-spacing:0.201094pt;}
.ls30{letter-spacing:0.201109pt;}
.ls83{letter-spacing:0.206122pt;}
.ls2d{letter-spacing:0.206137pt;}
.lsa6{letter-spacing:0.211149pt;}
.ls32{letter-spacing:0.211165pt;}
.lsdb{letter-spacing:0.216176pt;}
.ls29{letter-spacing:0.216193pt;}
.ls108{letter-spacing:0.221204pt;}
.ls28{letter-spacing:0.221220pt;}
.lse0{letter-spacing:0.226231pt;}
.ls2a{letter-spacing:0.226248pt;}
.ls102{letter-spacing:0.230316pt;}
.ls48{letter-spacing:0.230667pt;}
.ls12a{letter-spacing:0.231259pt;}
.ls45{letter-spacing:0.231276pt;}
.ls152{letter-spacing:0.231600pt;}
.ls65{letter-spacing:0.246053pt;}
.lsc0{letter-spacing:0.252875pt;}
.ls92{letter-spacing:0.256395pt;}
.ls15d{letter-spacing:0.281532pt;}
.ls141{letter-spacing:0.422298pt;}
.ls21{letter-spacing:4.952028pt;}
.ls13f{letter-spacing:37.222901pt;}
.ls12e{letter-spacing:69.544052pt;}
.ls137{letter-spacing:79.782901pt;}
.ls22{letter-spacing:79.832028pt;}
.ls8e{letter-spacing:79.960161pt;}
.ls7e{letter-spacing:80.101847pt;}
.lsaf{letter-spacing:80.102901pt;}
.ls24{letter-spacing:82.392028pt;}
.ls25{letter-spacing:85.592028pt;}
.ls23{letter-spacing:91.032028pt;}
.lsfa{letter-spacing:101.351578pt;}
.ls121{letter-spacing:104.742901pt;}
.ls13c{letter-spacing:105.064052pt;}
.ls43{letter-spacing:105.064543pt;}
.ls64{letter-spacing:110.005844pt;}
.ls26{letter-spacing:113.432028pt;}
.ls3f{letter-spacing:122.392028pt;}
.lsca{letter-spacing:135.143493pt;}
.ls84{letter-spacing:145.809585pt;}
.ls41{letter-spacing:709.991363pt;}
.ls144{letter-spacing:709.991600pt;}
.ls11b{letter-spacing:709.993943pt;}
.lsf6{letter-spacing:711.270000pt;}
.ws1c3{word-spacing:-50.273600pt;}
.ws1b7{word-spacing:-12.794631pt;}
.wsa5{word-spacing:-12.759440pt;}
.wsa8{word-spacing:-12.749385pt;}
.ws1ff{word-spacing:-12.745304pt;}
.ws24{word-spacing:-12.740276pt;}
.ws133{word-spacing:-12.729276pt;}
.ws1f6{word-spacing:-12.720165pt;}
.ws25{word-spacing:-12.710110pt;}
.wscd{word-spacing:-12.709166pt;}
.ws200{word-spacing:-12.705082pt;}
.ws1e3{word-spacing:-12.700054pt;}
.ws209{word-spacing:-12.699111pt;}
.ws227{word-spacing:-12.695027pt;}
.ws193{word-spacing:-12.694084pt;}
.ws210{word-spacing:-12.689999pt;}
.ws216{word-spacing:-12.689057pt;}
.ws56{word-spacing:-12.684971pt;}
.ws1ca{word-spacing:-12.684029pt;}
.ws1e6{word-spacing:-12.679002pt;}
.ws195{word-spacing:-12.673975pt;}
.ws1b3{word-spacing:-12.669888pt;}
.ws215{word-spacing:-12.668947pt;}
.ws1c9{word-spacing:-12.664860pt;}
.ws1f7{word-spacing:-12.663920pt;}
.ws225{word-spacing:-12.659833pt;}
.ws20f{word-spacing:-12.658892pt;}
.ws226{word-spacing:-12.654805pt;}
.ws217{word-spacing:-12.653865pt;}
.ws1e4{word-spacing:-12.649777pt;}
.ws154{word-spacing:-12.648838pt;}
.ws1ea{word-spacing:-12.643810pt;}
.ws1e2{word-spacing:-12.638783pt;}
.ws1f9{word-spacing:-12.633756pt;}
.ws237{word-spacing:-12.629666pt;}
.ws236{word-spacing:-12.623701pt;}
.ws20d{word-spacing:-12.618674pt;}
.ws1cc{word-spacing:-12.589444pt;}
.ws240{word-spacing:-12.584417pt;}
.ws27{word-spacing:-12.579389pt;}
.ws1bc{word-spacing:-12.578455pt;}
.ws55{word-spacing:-12.569333pt;}
.ws129{word-spacing:-12.568400pt;}
.ws1e5{word-spacing:-12.559278pt;}
.ws241{word-spacing:-12.549222pt;}
.ws242{word-spacing:-12.544195pt;}
.ws22e{word-spacing:-12.534139pt;}
.ws23b{word-spacing:-12.529111pt;}
.ws20a{word-spacing:-12.528181pt;}
.ws23a{word-spacing:-12.524084pt;}
.ws229{word-spacing:-12.518126pt;}
.ws1e9{word-spacing:-12.467853pt;}
.wsa7{word-spacing:-12.462825pt;}
.ws231{word-spacing:-12.437689pt;}
.ws1e8{word-spacing:-12.428557pt;}
.ws1f3{word-spacing:-12.422607pt;}
.ws54{word-spacing:-12.418501pt;}
.ws198{word-spacing:-12.417579pt;}
.wsa6{word-spacing:-12.412552pt;}
.ws22f{word-spacing:-12.408446pt;}
.ws1c8{word-spacing:-12.407524pt;}
.ws1ce{word-spacing:-12.403418pt;}
.ws1cf{word-spacing:-12.402497pt;}
.ws53{word-spacing:-12.398390pt;}
.ws1cd{word-spacing:-12.397470pt;}
.ws1eb{word-spacing:-12.392442pt;}
.ws1c5{word-spacing:-12.388335pt;}
.ws194{word-spacing:-12.387415pt;}
.ws1c7{word-spacing:-12.382388pt;}
.ws2{word-spacing:-12.378279pt;}
.ws1cb{word-spacing:-12.377360pt;}
.ws1{word-spacing:-12.373252pt;}
.ws1d0{word-spacing:-12.372333pt;}
.ws1e7{word-spacing:-12.367306pt;}
.ws1c6{word-spacing:-12.362278pt;}
.ws1c4{word-spacing:-12.358169pt;}
.ws19c{word-spacing:-12.353141pt;}
.ws1f5{word-spacing:-12.352224pt;}
.ws20e{word-spacing:-12.342169pt;}
.ws230{word-spacing:-12.338058pt;}
.ws1f4{word-spacing:-12.333030pt;}
.ws1f8{word-spacing:-12.328002pt;}
.ws26{word-spacing:-12.312919pt;}
.ws228{word-spacing:-12.307891pt;}
.ws218{word-spacing:-12.292808pt;}
.ws43{word-spacing:-11.513509pt;}
.ws0{word-spacing:-11.429996pt;}
.ws132{word-spacing:-11.429051pt;}
.ws4{word-spacing:-11.407416pt;}
.ws5a{word-spacing:-11.384836pt;}
.ws155{word-spacing:-11.339676pt;}
.ws59{word-spacing:-11.321612pt;}
.ws5{word-spacing:-11.290000pt;}
.ws156{word-spacing:-11.280968pt;}
.wsa4{word-spacing:-11.221332pt;}
.ws58{word-spacing:-11.145488pt;}
.ws199{word-spacing:-11.140972pt;}
.ws7b{word-spacing:-11.109360pt;}
.ws39{word-spacing:-8.974504pt;}
.ws49{word-spacing:-8.632618pt;}
.ws138{word-spacing:-8.190445pt;}
.ws57{word-spacing:-8.128667pt;}
.ws16d{word-spacing:-7.871801pt;}
.ws3{word-spacing:-7.526533pt;}
.ws139{word-spacing:-7.514491pt;}
.ws44{word-spacing:-6.073502pt;}
.ws143{word-spacing:-1.794768pt;}
.ws145{word-spacing:-1.060773pt;}
.ws197{word-spacing:-0.638475pt;}
.ws1a2{word-spacing:-0.623393pt;}
.ws165{word-spacing:-0.613338pt;}
.ws201{word-spacing:-0.603283pt;}
.wse3{word-spacing:-0.598256pt;}
.wsa9{word-spacing:-0.593228pt;}
.ws1fd{word-spacing:-0.588201pt;}
.ws51{word-spacing:-0.583217pt;}
.ws1bf{word-spacing:-0.583174pt;}
.wsec{word-spacing:-0.582516pt;}
.ws214{word-spacing:-0.578146pt;}
.ws170{word-spacing:-0.573119pt;}
.ws1b9{word-spacing:-0.568092pt;}
.ws148{word-spacing:-0.563106pt;}
.ws1df{word-spacing:-0.558037pt;}
.ws204{word-spacing:-0.553010pt;}
.ws20c{word-spacing:-0.548023pt;}
.ws144{word-spacing:-0.547982pt;}
.ws17c{word-spacing:-0.542955pt;}
.ws234{word-spacing:-0.537928pt;}
.ws1fe{word-spacing:-0.532940pt;}
.ws1ee{word-spacing:-0.532900pt;}
.ws23e{word-spacing:-0.527912pt;}
.ws233{word-spacing:-0.522884pt;}
.ws173{word-spacing:-0.522845pt;}
.ws12{word-spacing:-0.517857pt;}
.ws21a{word-spacing:-0.517818pt;}
.ws14e{word-spacing:-0.512829pt;}
.ws221{word-spacing:-0.512791pt;}
.ws1f0{word-spacing:-0.507801pt;}
.ws1d1{word-spacing:-0.507763pt;}
.ws67{word-spacing:-0.502773pt;}
.ws14c{word-spacing:-0.502736pt;}
.ws22d{word-spacing:-0.497746pt;}
.ws1e0{word-spacing:-0.497709pt;}
.ws14f{word-spacing:-0.492718pt;}
.ws1b6{word-spacing:-0.492681pt;}
.ws22a{word-spacing:-0.487690pt;}
.ws128{word-spacing:-0.487654pt;}
.ws10f{word-spacing:-0.482662pt;}
.ws167{word-spacing:-0.482627pt;}
.ws6e{word-spacing:-0.477635pt;}
.ws93{word-spacing:-0.472607pt;}
.ws1a8{word-spacing:-0.472572pt;}
.ws149{word-spacing:-0.467579pt;}
.ws117{word-spacing:-0.467544pt;}
.ws11e{word-spacing:-0.432353pt;}
.ws9a{word-spacing:-0.427357pt;}
.ws23f{word-spacing:-0.412274pt;}
.ws116{word-spacing:-0.402189pt;}
.ws91{word-spacing:-0.397191pt;}
.ws15c{word-spacing:-0.387107pt;}
.ws232{word-spacing:-0.377080pt;}
.wsdb{word-spacing:-0.351915pt;}
.ws3c{word-spacing:-0.346914pt;}
.ws13c{word-spacing:-0.341860pt;}
.ws202{word-spacing:-0.336833pt;}
.wsb{word-spacing:-0.336709pt;}
.ws235{word-spacing:-0.326778pt;}
.ws183{word-spacing:-0.322680pt;}
.ws1f2{word-spacing:-0.321751pt;}
.ws87{word-spacing:-0.320636pt;}
.ws2d{word-spacing:-0.316747pt;}
.ws2b{word-spacing:-0.311719pt;}
.ws207{word-spacing:-0.311696pt;}
.ws2a{word-spacing:-0.306692pt;}
.ws34{word-spacing:-0.301664pt;}
.ws21b{word-spacing:-0.301642pt;}
.ws2e{word-spacing:-0.296636pt;}
.ws7{word-spacing:-0.294620pt;}
.ws50{word-spacing:-0.291609pt;}
.ws1bb{word-spacing:-0.287606pt;}
.ws41{word-spacing:-0.286581pt;}
.ws15d{word-spacing:-0.286560pt;}
.ws4f{word-spacing:-0.281553pt;}
.wsfe{word-spacing:-0.281532pt;}
.wsc7{word-spacing:-0.276505pt;}
.ws4c{word-spacing:-0.271498pt;}
.ws15e{word-spacing:-0.271477pt;}
.ws179{word-spacing:-0.266450pt;}
.wsfd{word-spacing:-0.261423pt;}
.wsba{word-spacing:-0.256395pt;}
.ws71{word-spacing:-0.251387pt;}
.wse2{word-spacing:-0.251368pt;}
.wse9{word-spacing:-0.248359pt;}
.wsbc{word-spacing:-0.246341pt;}
.wsf8{word-spacing:-0.241313pt;}
.ws79{word-spacing:-0.239348pt;}
.wsab{word-spacing:-0.236286pt;}
.ws104{word-spacing:-0.234813pt;}
.wsbb{word-spacing:-0.231259pt;}
.ws1dc{word-spacing:-0.226248pt;}
.wsb9{word-spacing:-0.226231pt;}
.ws6f{word-spacing:-0.221220pt;}
.wsc9{word-spacing:-0.221204pt;}
.ws38{word-spacing:-0.216193pt;}
.wsbd{word-spacing:-0.216176pt;}
.wsb4{word-spacing:-0.212234pt;}
.ws99{word-spacing:-0.211165pt;}
.wsf5{word-spacing:-0.211149pt;}
.ws12c{word-spacing:-0.207736pt;}
.wsb1{word-spacing:-0.207719pt;}
.ws68{word-spacing:-0.206137pt;}
.wsd3{word-spacing:-0.206122pt;}
.ws175{word-spacing:-0.203220pt;}
.ws62{word-spacing:-0.201109pt;}
.ws109{word-spacing:-0.201094pt;}
.ws178{word-spacing:-0.198704pt;}
.ws112{word-spacing:-0.196414pt;}
.ws5e{word-spacing:-0.196082pt;}
.wsd0{word-spacing:-0.196067pt;}
.wse7{word-spacing:-0.194172pt;}
.ws3b{word-spacing:-0.191054pt;}
.wsc3{word-spacing:-0.191040pt;}
.wsf0{word-spacing:-0.189656pt;}
.ws180{word-spacing:-0.189399pt;}
.ws13{word-spacing:-0.186026pt;}
.ws10b{word-spacing:-0.186012pt;}
.ws131{word-spacing:-0.185156pt;}
.wse8{word-spacing:-0.185141pt;}
.ws33{word-spacing:-0.180998pt;}
.wsd9{word-spacing:-0.180985pt;}
.ws77{word-spacing:-0.180640pt;}
.ws1b1{word-spacing:-0.176124pt;}
.wse{word-spacing:-0.175971pt;}
.wscf{word-spacing:-0.175958pt;}
.ws5d{word-spacing:-0.170943pt;}
.wse1{word-spacing:-0.170930pt;}
.ws10{word-spacing:-0.165915pt;}
.ws10c{word-spacing:-0.165903pt;}
.ws1ad{word-spacing:-0.162576pt;}
.ws9{word-spacing:-0.161340pt;}
.ws6b{word-spacing:-0.160887pt;}
.ws119{word-spacing:-0.160876pt;}
.ws3f{word-spacing:-0.155860pt;}
.wsdd{word-spacing:-0.155848pt;}
.wsb6{word-spacing:-0.154313pt;}
.ws74{word-spacing:-0.153544pt;}
.ws61{word-spacing:-0.150832pt;}
.wsde{word-spacing:-0.150821pt;}
.ws17{word-spacing:-0.149028pt;}
.ws89{word-spacing:-0.145804pt;}
.ws185{word-spacing:-0.145793pt;}
.ws69{word-spacing:-0.140777pt;}
.wse4{word-spacing:-0.140766pt;}
.ws120{word-spacing:-0.140295pt;}
.ws1f1{word-spacing:-0.135749pt;}
.ws172{word-spacing:-0.135739pt;}
.ws161{word-spacing:-0.130953pt;}
.ws203{word-spacing:-0.130721pt;}
.wsd5{word-spacing:-0.130711pt;}
.ws168{word-spacing:-0.125684pt;}
.ws136{word-spacing:-0.121922pt;}
.ws1ed{word-spacing:-0.115629pt;}
.ws80{word-spacing:-0.114403pt;}
.wsa{word-spacing:-0.112236pt;}
.ws188{word-spacing:-0.110602pt;}
.ws15f{word-spacing:-0.108375pt;}
.ws19f{word-spacing:-0.105582pt;}
.ws21c{word-spacing:-0.105575pt;}
.ws101{word-spacing:-0.103859pt;}
.wsd6{word-spacing:-0.102361pt;}
.ws98{word-spacing:-0.096340pt;}
.ws159{word-spacing:-0.090492pt;}
.ws22{word-spacing:-0.090320pt;}
.ws9c{word-spacing:-0.090318pt;}
.ws17b{word-spacing:-0.090313pt;}
.ws208{word-spacing:-0.085471pt;}
.ws122{word-spacing:-0.085465pt;}
.ws96{word-spacing:-0.084297pt;}
.ws1ab{word-spacing:-0.081288pt;}
.ws1d6{word-spacing:-0.080438pt;}
.ws153{word-spacing:-0.077163pt;}
.ws90{word-spacing:-0.076772pt;}
.ws21e{word-spacing:-0.075416pt;}
.ws1be{word-spacing:-0.075410pt;}
.ws10d{word-spacing:-0.072255pt;}
.wsb7{word-spacing:-0.072250pt;}
.ws6d{word-spacing:-0.070388pt;}
.ws125{word-spacing:-0.070383pt;}
.ws85{word-spacing:-0.070148pt;}
.ws7e{word-spacing:-0.066233pt;}
.ws106{word-spacing:-0.066229pt;}
.ws150{word-spacing:-0.065361pt;}
.ws157{word-spacing:-0.065356pt;}
.ws8c{word-spacing:-0.060333pt;}
.ws18e{word-spacing:-0.060328pt;}
.ws94{word-spacing:-0.060212pt;}
.wsb8{word-spacing:-0.060209pt;}
.ws19a{word-spacing:-0.055301pt;}
.wsea{word-spacing:-0.054188pt;}
.wsda{word-spacing:-0.050274pt;}
.ws105{word-spacing:-0.048167pt;}
.ws92{word-spacing:-0.045250pt;}
.ws123{word-spacing:-0.045246pt;}
.wsa3{word-spacing:-0.040222pt;}
.ws192{word-spacing:-0.040219pt;}
.ws7f{word-spacing:-0.036127pt;}
.ws9e{word-spacing:-0.035194pt;}
.ws1a6{word-spacing:-0.035192pt;}
.wsd{word-spacing:-0.035074pt;}
.ws1de{word-spacing:-0.030164pt;}
.ws18b{word-spacing:-0.030106pt;}
.ws3a{word-spacing:-0.025139pt;}
.ws11c{word-spacing:-0.025137pt;}
.ws9b{word-spacing:-0.024085pt;}
.wsc{word-spacing:-0.021044pt;}
.ws18c{word-spacing:-0.020111pt;}
.wsca{word-spacing:-0.020109pt;}
.ws97{word-spacing:-0.018064pt;}
.ws1b8{word-spacing:-0.015082pt;}
.ws23c{word-spacing:-0.014030pt;}
.ws18a{word-spacing:-0.012042pt;}
.ws1d9{word-spacing:-0.010055pt;}
.ws7d{word-spacing:-0.007015pt;}
.ws10e{word-spacing:-0.006021pt;}
.wsaa{word-spacing:-0.005027pt;}
.ws6{word-spacing:0.000000pt;}
.ws196{word-spacing:0.005027pt;}
.ws35{word-spacing:0.010055pt;}
.ws17d{word-spacing:0.013547pt;}
.ws28{word-spacing:0.014030pt;}
.ws1a1{word-spacing:0.015082pt;}
.ws42{word-spacing:0.015083pt;}
.ws189{word-spacing:0.018064pt;}
.ws47{word-spacing:0.020111pt;}
.ws1a9{word-spacing:0.025137pt;}
.ws151{word-spacing:0.025139pt;}
.ws135{word-spacing:0.030164pt;}
.ws32{word-spacing:0.030166pt;}
.ws1c{word-spacing:0.031612pt;}
.ws1a4{word-spacing:0.035192pt;}
.ws86{word-spacing:0.036127pt;}
.ws1a5{word-spacing:0.040219pt;}
.ws20b{word-spacing:0.040222pt;}
.ws1ba{word-spacing:0.042089pt;}
.ws191{word-spacing:0.045246pt;}
.ws66{word-spacing:0.045250pt;}
.ws16e{word-spacing:0.050274pt;}
.wsee{word-spacing:0.054188pt;}
.ws1d{word-spacing:0.054192pt;}
.ws11b{word-spacing:0.055301pt;}
.ws1d2{word-spacing:0.055305pt;}
.ws81{word-spacing:0.060212pt;}
.wsf7{word-spacing:0.060328pt;}
.ws30{word-spacing:0.060333pt;}
.ws7c{word-spacing:0.063133pt;}
.wsc6{word-spacing:0.065356pt;}
.wsa1{word-spacing:0.065361pt;}
.wsc0{word-spacing:0.070383pt;}
.ws8d{word-spacing:0.070388pt;}
.wsfa{word-spacing:0.075410pt;}
.ws83{word-spacing:0.075416pt;}
.ws127{word-spacing:0.078276pt;}
.wsc4{word-spacing:0.080438pt;}
.ws6c{word-spacing:0.080444pt;}
.wsd4{word-spacing:0.085465pt;}
.ws6a{word-spacing:0.085471pt;}
.wsaf{word-spacing:0.090313pt;}
.wsc1{word-spacing:0.090492pt;}
.ws48{word-spacing:0.090499pt;}
.ws182{word-spacing:0.091192pt;}
.wsed{word-spacing:0.094828pt;}
.wsdf{word-spacing:0.095520pt;}
.ws36{word-spacing:0.095527pt;}
.wsb3{word-spacing:0.099344pt;}
.wsf9{word-spacing:0.100547pt;}
.ws60{word-spacing:0.100555pt;}
.ws190{word-spacing:0.103859pt;}
.ws8e{word-spacing:0.103868pt;}
.ws114{word-spacing:0.105222pt;}
.wsc2{word-spacing:0.105575pt;}
.ws70{word-spacing:0.105582pt;}
.wsb2{word-spacing:0.108375pt;}
.wsbf{word-spacing:0.110602pt;}
.wsa2{word-spacing:0.110610pt;}
.wseb{word-spacing:0.112891pt;}
.wsd8{word-spacing:0.115629pt;}
.ws14{word-spacing:0.115638pt;}
.wsf1{word-spacing:0.117406pt;}
.ws108{word-spacing:0.120657pt;}
.ws72{word-spacing:0.120666pt;}
.wse6{word-spacing:0.121922pt;}
.ws78{word-spacing:0.121932pt;}
.wse0{word-spacing:0.125684pt;}
.ws37{word-spacing:0.125693pt;}
.wsb0{word-spacing:0.126438pt;}
.ws174{word-spacing:0.126448pt;}
.wsd7{word-spacing:0.130711pt;}
.ws11{word-spacing:0.130721pt;}
.wsf2{word-spacing:0.130953pt;}
.ws7a{word-spacing:0.130964pt;}
.wsac{word-spacing:0.135469pt;}
.ws12d{word-spacing:0.135480pt;}
.ws110{word-spacing:0.135739pt;}
.ws5c{word-spacing:0.135749pt;}
.ws12f{word-spacing:0.139996pt;}
.ws113{word-spacing:0.140295pt;}
.ws111{word-spacing:0.140766pt;}
.ws2f{word-spacing:0.140777pt;}
.wsef{word-spacing:0.144500pt;}
.ws1b{word-spacing:0.144512pt;}
.ws11a{word-spacing:0.145793pt;}
.ws95{word-spacing:0.145804pt;}
.ws130{word-spacing:0.149028pt;}
.wsd2{word-spacing:0.150821pt;}
.ws5f{word-spacing:0.150832pt;}
.ws1b0{word-spacing:0.153544pt;}
.wsfb{word-spacing:0.155848pt;}
.ws84{word-spacing:0.155860pt;}
.ws20{word-spacing:0.158060pt;}
.ws152{word-spacing:0.160876pt;}
.ws9f{word-spacing:0.160887pt;}
.ws16f{word-spacing:0.165903pt;}
.ws65{word-spacing:0.165915pt;}
.ws15a{word-spacing:0.170930pt;}
.ws14b{word-spacing:0.170943pt;}
.ws16{word-spacing:0.171608pt;}
.ws1c0{word-spacing:0.175958pt;}
.wsff{word-spacing:0.180625pt;}
.ws12b{word-spacing:0.180985pt;}
.ws64{word-spacing:0.180998pt;}
.ws238{word-spacing:0.186012pt;}
.ws23d{word-spacing:0.189399pt;}
.ws171{word-spacing:0.191040pt;}
.ws162{word-spacing:0.194172pt;}
.ws8a{word-spacing:0.196082pt;}
.ws224{word-spacing:0.201094pt;}
.wse5{word-spacing:0.203203pt;}
.ws1d8{word-spacing:0.206122pt;}
.wscc{word-spacing:0.216750pt;}
.ws1b5{word-spacing:0.216768pt;}
.ws15{word-spacing:0.225800pt;}
.ws1d4{word-spacing:0.226248pt;}
.ws14a{word-spacing:0.239348pt;}
.ws1fb{word-spacing:0.241331pt;}
.ws158{word-spacing:0.246359pt;}
.ws17e{word-spacing:0.248359pt;}
.ws166{word-spacing:0.251368pt;}
.ws222{word-spacing:0.256395pt;}
.ws21f{word-spacing:0.256414pt;}
.ws8f{word-spacing:0.257412pt;}
.wsc8{word-spacing:0.261423pt;}
.ws21{word-spacing:0.261928pt;}
.ws17f{word-spacing:0.266422pt;}
.ws12a{word-spacing:0.271477pt;}
.ws1ec{word-spacing:0.271498pt;}
.ws1a3{word-spacing:0.276505pt;}
.ws1db{word-spacing:0.281532pt;}
.ws21d{word-spacing:0.281553pt;}
.ws18d{word-spacing:0.286560pt;}
.ws206{word-spacing:0.291587pt;}
.ws1af{word-spacing:0.293540pt;}
.ws126{word-spacing:0.296614pt;}
.ws1fa{word-spacing:0.301642pt;}
.ws18{word-spacing:0.302572pt;}
.ws124{word-spacing:0.306669pt;}
.ws23{word-spacing:0.307088pt;}
.ws211{word-spacing:0.311696pt;}
.ws205{word-spacing:0.311719pt;}
.ws18f{word-spacing:0.316094pt;}
.ws1e1{word-spacing:0.316724pt;}
.wsae{word-spacing:0.320609pt;}
.ws1b2{word-spacing:0.320636pt;}
.wsdc{word-spacing:0.321751pt;}
.ws1dd{word-spacing:0.326778pt;}
.ws134{word-spacing:0.329641pt;}
.ws10a{word-spacing:0.331806pt;}
.ws19{word-spacing:0.334184pt;}
.wsf4{word-spacing:0.338672pt;}
.ws19b{word-spacing:0.338700pt;}
.ws1d7{word-spacing:0.341860pt;}
.ws103{word-spacing:0.343188pt;}
.ws76{word-spacing:0.343216pt;}
.wsad{word-spacing:0.347703pt;}
.wsf3{word-spacing:0.352219pt;}
.ws75{word-spacing:0.352248pt;}
.ws8{word-spacing:0.352999pt;}
.wsb5{word-spacing:0.356735pt;}
.ws1b4{word-spacing:0.356764pt;}
.ws1c2{word-spacing:0.356943pt;}
.ws177{word-spacing:0.361280pt;}
.ws239{word-spacing:0.361970pt;}
.ws1ae{word-spacing:0.365796pt;}
.ws1fc{word-spacing:0.366997pt;}
.ws1d5{word-spacing:0.367025pt;}
.ws100{word-spacing:0.370281pt;}
.ws160{word-spacing:0.372025pt;}
.ws137{word-spacing:0.374797pt;}
.ws1ac{word-spacing:0.374828pt;}
.ws22b{word-spacing:0.377052pt;}
.ws220{word-spacing:0.377080pt;}
.ws1e{word-spacing:0.379344pt;}
.ws164{word-spacing:0.382079pt;}
.ws102{word-spacing:0.383828pt;}
.ws176{word-spacing:0.383860pt;}
.ws13a{word-spacing:0.387107pt;}
.ws1c1{word-spacing:0.387135pt;}
.ws1f{word-spacing:0.388376pt;}
.wsc5{word-spacing:0.392134pt;}
.ws1da{word-spacing:0.392163pt;}
.ws118{word-spacing:0.397161pt;}
.ws8b{word-spacing:0.397191pt;}
.ws1aa{word-spacing:0.397408pt;}
.ws11d{word-spacing:0.402189pt;}
.ws22c{word-spacing:0.402219pt;}
.wscb{word-spacing:0.407216pt;}
.ws31{word-spacing:0.407246pt;}
.ws12e{word-spacing:0.410956pt;}
.wsf6{word-spacing:0.412244pt;}
.ws88{word-spacing:0.412274pt;}
.wsfc{word-spacing:0.417271pt;}
.ws212{word-spacing:0.417302pt;}
.ws107{word-spacing:0.422298pt;}
.wsa0{word-spacing:0.422330pt;}
.wsce{word-spacing:0.427326pt;}
.ws9d{word-spacing:0.427357pt;}
.wsbe{word-spacing:0.432353pt;}
.ws63{word-spacing:0.432385pt;}
.wsd1{word-spacing:0.437380pt;}
.ws73{word-spacing:0.437413pt;}
.ws1a{word-spacing:0.438052pt;}
.ws15b{word-spacing:0.442408pt;}
.wsf{word-spacing:0.442441pt;}
.ws19e{word-spacing:0.447435pt;}
.ws13b{word-spacing:0.452462pt;}
.ws1a0{word-spacing:0.452496pt;}
.ws223{word-spacing:0.457490pt;}
.ws219{word-spacing:0.462517pt;}
.ws1bd{word-spacing:0.472572pt;}
.ws16c{word-spacing:0.482627pt;}
.ws213{word-spacing:0.507763pt;}
.ws1d3{word-spacing:0.527873pt;}
.ws1ef{word-spacing:0.643502pt;}
.ws13f{word-spacing:1.664056pt;}
.ws140{word-spacing:2.714774pt;}
.ws146{word-spacing:3.343194pt;}
.ws142{word-spacing:4.298393pt;}
.ws141{word-spacing:4.906703pt;}
.ws13e{word-spacing:6.535568pt;}
.ws147{word-spacing:11.004891pt;}
.ws14d{word-spacing:28.273873pt;}
.ws29{word-spacing:54.726877pt;}
.ws2c{word-spacing:66.562162pt;}
.ws52{word-spacing:77.447204pt;}
.ws3d{word-spacing:80.649870pt;}
.ws3e{word-spacing:94.727524pt;}
.ws40{word-spacing:100.484278pt;}
.ws4a{word-spacing:108.483402pt;}
.ws4d{word-spacing:119.685192pt;}
.ws19d{word-spacing:127.689919pt;}
.ws115{word-spacing:127.774096pt;}
.ws1a7{word-spacing:127.788126pt;}
.ws4e{word-spacing:128.327866pt;}
.ws4b{word-spacing:130.881954pt;}
.ws181{word-spacing:131.562074pt;}
.ws11f{word-spacing:131.569089pt;}
.ws186{word-spacing:131.986954pt;}
.ws45{word-spacing:133.762845pt;}
.ws46{word-spacing:142.088772pt;}
.ws184{word-spacing:153.186028pt;}
.ws121{word-spacing:153.198070pt;}
.ws16a{word-spacing:153.216134pt;}
.ws16b{word-spacing:153.264304pt;}
.ws13d{word-spacing:153.276346pt;}
.ws169{word-spacing:153.525739pt;}
.ws163{word-spacing:153.555843pt;}
.ws17a{word-spacing:153.567885pt;}
.ws187{word-spacing:153.579927pt;}
.ws82{word-spacing:195.831427pt;}
.ws5b{word-spacing:195.845457pt;}
._40{margin-left:-154.033246pt;}
._3b{margin-left:-152.860881pt;}
._21{margin-left:-150.379504pt;}
._20{margin-left:-148.080107pt;}
._1f{margin-left:-142.345186pt;}
._1e{margin-left:-140.045789pt;}
._27{margin-left:-136.638709pt;}
._2d{margin-left:-134.079593pt;}
._39{margin-left:-131.400734pt;}
._2b{margin-left:-128.267533pt;}
._2a{margin-left:-125.441947pt;}
._25{margin-left:-117.065743pt;}
._24{margin-left:-114.801540pt;}
._19{margin-left:-109.066619pt;}
._18{margin-left:-107.110831pt;}
._17{margin-left:-103.018256pt;}
._16{margin-left:-101.362409pt;}
._15{margin-left:-88.940603pt;}
._14{margin-left:-86.401597pt;}
._2f{margin-left:-83.198931pt;}
._a{margin-left:-74.365204pt;}
._9{margin-left:-72.318916pt;}
._3a{margin-left:-68.798536pt;}
._5{margin-left:-63.329329pt;}
._4{margin-left:-60.478604pt;}
._38{margin-left:-49.601462pt;}
._37{margin-left:-45.764381pt;}
._e{margin-left:-12.664860pt;}
._f{margin-left:-11.000681pt;}
._d{margin-left:-9.420250pt;}
._6{margin-left:-7.926835pt;}
._12{margin-left:-6.858411pt;}
._c{margin-left:-5.440007pt;}
._28{margin-left:-4.211518pt;}
._11{margin-left:-2.150259pt;}
._1{margin-left:-1.096046pt;}
._0{width:0.937818pt;}
._10{width:1.977685pt;}
._1c{width:2.931169pt;}
._1b{width:5.756755pt;}
._26{width:11.986940pt;}
._2c{width:15.515682pt;}
._3f{width:22.287942pt;}
._29{width:24.184221pt;}
._3e{width:26.072215pt;}
._46{width:32.408253pt;}
._41{width:39.787794pt;}
._3d{width:46.400951pt;}
._3c{width:47.421581pt;}
._45{width:58.465336pt;}
._13{width:62.903679pt;}
._2e{width:66.011398pt;}
._36{width:67.362868pt;}
._7{width:76.109827pt;}
._8{width:77.120402pt;}
._30{width:82.237746pt;}
._32{width:84.477810pt;}
._3{width:88.136165pt;}
._2{width:89.468515pt;}
._b{width:101.283688pt;}
._33{width:127.682904pt;}
._22{width:129.692104pt;}
._34{width:131.958897pt;}
._1d{width:149.652205pt;}
._23{width:152.630318pt;}
._35{width:153.573906pt;}
._1a{width:154.760382pt;}
._31{width:198.399419pt;}
._44{width:387.318624pt;}
._43{width:391.094000pt;}
._42{width:416.323550pt;}
.fsa{font-size:30.103467pt;}
.fs5{font-size:30.106133pt;}
.fs9{font-size:32.512533pt;}
.fs6{font-size:32.514667pt;}
.fs7{font-size:45.156267pt;}
.fs0{font-size:45.160000pt;}
.fs8{font-size:50.273600pt;}
.fs1{font-size:50.277333pt;}
.fs3{font-size:52.686400pt;}
.fsd{font-size:55.091200pt;}
.fsc{font-size:60.208533pt;}
.fs4{font-size:60.212267pt;}
.fse{font-size:67.740267pt;}
.fsb{font-size:70.142400pt;}
.fs2{font-size:70.147733pt;}
.fsf{font-size:75.266133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:71.360000pt;}
.y1fe{bottom:91.444182pt;}
.y3a0{bottom:91.682528pt;}
.y28f{bottom:93.359999pt;}
.yb5{bottom:93.360000pt;}
.y3c{bottom:93.360209pt;}
.y3d3{bottom:93.360468pt;}
.y636{bottom:93.360936pt;}
.y277{bottom:93.600123pt;}
.y5d5{bottom:93.920000pt;}
.y261{bottom:93.920715pt;}
.y486{bottom:94.160000pt;}
.y8c6{bottom:94.879346pt;}
.y844{bottom:96.160000pt;}
.y89a{bottom:96.160384pt;}
.y7aa{bottom:96.160572pt;}
.y7e0{bottom:96.799730pt;}
.y811{bottom:96.800128pt;}
.y17b{bottom:97.120000pt;}
.y608{bottom:97.201813pt;}
.y231{bottom:98.479565pt;}
.y74{bottom:98.560000pt;}
.y562{bottom:98.719730pt;}
.y4bb{bottom:101.040000pt;}
.y6d4{bottom:102.961760pt;}
.y4d2{bottom:103.520000pt;}
.y511{bottom:103.920000pt;}
.y903{bottom:104.800384pt;}
.y453{bottom:105.119808pt;}
.y370{bottom:105.442474pt;}
.y1fd{bottom:105.924236pt;}
.y39f{bottom:106.082144pt;}
.y32b{bottom:106.320000pt;}
.y3d2{bottom:106.320259pt;}
.y635{bottom:106.320727pt;}
.y17a{bottom:106.400000pt;}
.yb4{bottom:107.599832pt;}
.y3ee{bottom:107.679845pt;}
.y3ef{bottom:107.680000pt;}
.y276{bottom:107.760041pt;}
.y5d4{bottom:108.240000pt;}
.y260{bottom:108.320330pt;}
.y485{bottom:108.640000pt;}
.y8c5{bottom:109.359400pt;}
.y3b{bottom:110.160000pt;}
.y843{bottom:110.559400pt;}
.y7a9{bottom:110.559514pt;}
.y870{bottom:110.560128pt;}
.y899{bottom:110.560987pt;}
.y58f{bottom:110.880000pt;}
.y74d{bottom:111.120384pt;}
.y7df{bottom:111.279784pt;}
.y810{bottom:111.279838pt;}
.y607{bottom:111.601429pt;}
.y230{bottom:112.798646pt;}
.y73{bottom:112.960000pt;}
.y561{bottom:113.199784pt;}
.y2ea{bottom:113.760000pt;}
.y4ba{bottom:115.520000pt;}
.y6d3{bottom:117.441813pt;}
.y11b{bottom:117.601812pt;}
.y4e7{bottom:118.080000pt;}
.y510{bottom:118.400000pt;}
.y6ae{bottom:118.885386pt;}
.y902{bottom:119.199893pt;}
.y28e{bottom:119.360000pt;}
.y3d1{bottom:119.360209pt;}
.y634{bottom:119.360677pt;}
.y452{bottom:119.440243pt;}
.y36f{bottom:119.842090pt;}
.y1d3{bottom:120.000800pt;}
.y4d1{bottom:120.320000pt;}
.y1fc{bottom:120.323851pt;}
.y39e{bottom:120.481760pt;}
.yb3{bottom:120.559623pt;}
.y3ed{bottom:120.639693pt;}
.y275{bottom:120.799991pt;}
.y3a{bottom:121.760727pt;}
.y5d3{bottom:122.720000pt;}
.y25f{bottom:122.800384pt;}
.y484{bottom:122.960000pt;}
.y842{bottom:125.039454pt;}
.y7a8{bottom:125.039568pt;}
.y898{bottom:125.041041pt;}
.y58e{bottom:125.360000pt;}
.ye6{bottom:125.520000pt;}
.y74c{bottom:125.520499pt;}
.y7de{bottom:125.600219pt;}
.y606{bottom:126.001045pt;}
.y72{bottom:127.440000pt;}
.y560{bottom:127.679838pt;}
.y2e9{bottom:128.160000pt;}
.y4b9{bottom:129.840000pt;}
.y8c4{bottom:131.279946pt;}
.y179{bottom:131.522642pt;}
.y77e{bottom:131.840603pt;}
.y6d2{bottom:131.841429pt;}
.y11a{bottom:132.001240pt;}
.y633{bottom:132.320468pt;}
.y4e6{bottom:132.560000pt;}
.y80f{bottom:133.119946pt;}
.y6ad{bottom:133.285002pt;}
.y3ec{bottom:133.599542pt;}
.yb2{bottom:133.599573pt;}
.y901{bottom:133.679946pt;}
.y274{bottom:133.759782pt;}
.y451{bottom:133.920297pt;}
.y6f9{bottom:134.320661pt;}
.y36e{bottom:134.322144pt;}
.y1d2{bottom:134.480853pt;}
.y1fb{bottom:134.723467pt;}
.y22f{bottom:134.798373pt;}
.ye5{bottom:134.880000pt;}
.y39{bottom:134.880836pt;}
.y39d{bottom:134.961813pt;}
.y3d0{bottom:136.080000pt;}
.y4d0{bottom:137.040000pt;}
.y5d2{bottom:137.200000pt;}
.y25e{bottom:137.201544pt;}
.y483{bottom:137.440000pt;}
.y7a7{bottom:139.439184pt;}
.y897{bottom:139.440657pt;}
.y74b{bottom:139.920115pt;}
.y50f{bottom:140.320000pt;}
.y605{bottom:140.481099pt;}
.y71{bottom:141.840000pt;}
.y55f{bottom:142.000273pt;}
.y4b8{bottom:144.320000pt;}
.y28d{bottom:144.400384pt;}
.y632{bottom:145.360418pt;}
.y8c3{bottom:145.761425pt;}
.y178{bottom:146.002696pt;}
.y6d1{bottom:146.241045pt;}
.y77d{bottom:146.320657pt;}
.y119{bottom:146.481112pt;}
.y273{bottom:146.799732pt;}
.y3eb{bottom:146.880000pt;}
.y4e5{bottom:146.960000pt;}
.y86f{bottom:146.960168pt;}
.y58d{bottom:147.280000pt;}
.y80e{bottom:147.599730pt;}
.y7dd{bottom:147.599946pt;}
.y3cf{bottom:147.760259pt;}
.y6ac{bottom:147.765056pt;}
.y38{bottom:147.840627pt;}
.y900{bottom:148.160000pt;}
.y450{bottom:148.400351pt;}
.y36d{bottom:148.721760pt;}
.y6f8{bottom:148.800715pt;}
.y1d1{bottom:148.880469pt;}
.y1fa{bottom:149.203521pt;}
.y22e{bottom:149.278427pt;}
.y39c{bottom:149.361429pt;}
.y2e8{bottom:150.080000pt;}
.yb1{bottom:151.200000pt;}
.y5d1{bottom:151.520000pt;}
.y482{bottom:151.920000pt;}
.y4cf{bottom:153.760000pt;}
.ye4{bottom:153.761556pt;}
.y896{bottom:153.840273pt;}
.y74a{bottom:154.400168pt;}
.y53e{bottom:154.479454pt;}
.y604{bottom:154.880715pt;}
.y70{bottom:156.240000pt;}
.y631{bottom:158.320209pt;}
.y28c{bottom:158.800000pt;}
.y28a{bottom:158.800765pt;}
.y25d{bottom:159.122090pt;}
.y8c2{bottom:160.161041pt;}
.y177{bottom:160.402312pt;}
.y6d0{bottom:160.721099pt;}
.y3ce{bottom:160.880368pt;}
.y37{bottom:160.880577pt;}
.y118{bottom:160.960984pt;}
.y3ea{bottom:161.040000pt;}
.y7a6{bottom:161.359730pt;}
.y841{bottom:161.359784pt;}
.y4e4{bottom:161.360000pt;}
.y58c{bottom:161.760000pt;}
.y7dc{bottom:162.079759pt;}
.y80d{bottom:162.079784pt;}
.y6ab{bottom:162.164672pt;}
.y50e{bottom:162.320000pt;}
.y932{bottom:162.641429pt;}
.y44f{bottom:162.720786pt;}
.y36c{bottom:163.121376pt;}
.y28b{bottom:163.200000pt;}
.y1d0{bottom:163.280085pt;}
.y6f7{bottom:163.280768pt;}
.yb0{bottom:163.439946pt;}
.y22d{bottom:163.598862pt;}
.y1f9{bottom:163.603137pt;}
.y39b{bottom:163.761045pt;}
.y55e{bottom:163.999946pt;}
.y272{bottom:164.400000pt;}
.y5d0{bottom:166.000000pt;}
.y669{bottom:166.240000pt;}
.ye3{bottom:168.160984pt;}
.y77c{bottom:168.320384pt;}
.y749{bottom:168.799784pt;}
.y603{bottom:169.280330pt;}
.y8ff{bottom:169.999893pt;}
.y4ce{bottom:170.480000pt;}
.y6f{bottom:170.720000pt;}
.y2e7{bottom:172.080000pt;}
.y4b7{bottom:173.120000pt;}
.y289{bottom:173.200381pt;}
.y25c{bottom:173.602144pt;}
.y481{bottom:173.760000pt;}
.y36{bottom:173.760209pt;}
.y271{bottom:174.160116pt;}
.y8c1{bottom:174.560657pt;}
.y630{bottom:175.040000pt;}
.y6cf{bottom:175.120715pt;}
.y117{bottom:175.281225pt;}
.y4e3{bottom:175.760000pt;}
.y895{bottom:175.839295pt;}
.y7a5{bottom:175.839784pt;}
.y840{bottom:175.839838pt;}
.y58b{bottom:176.160000pt;}
.y7db{bottom:176.399242pt;}
.y53d{bottom:176.400000pt;}
.y80c{bottom:176.400219pt;}
.y6aa{bottom:176.564288pt;}
.y50d{bottom:176.720000pt;}
.y931{bottom:177.121483pt;}
.y44e{bottom:177.200839pt;}
.y2be{bottom:177.360000pt;}
.y3cd{bottom:177.600000pt;}
.y36b{bottom:177.601429pt;}
.y6f6{bottom:177.680384pt;}
.y1cf{bottom:177.760139pt;}
.y1f8{bottom:178.002753pt;}
.y22c{bottom:178.078916pt;}
.y39a{bottom:178.241099pt;}
.y55d{bottom:178.480000pt;}
.yaf{bottom:178.880150pt;}
.y668{bottom:180.720000pt;}
.y176{bottom:182.322858pt;}
.ye2{bottom:182.640856pt;}
.y77b{bottom:182.721045pt;}
.y34b{bottom:183.599640pt;}
.y602{bottom:183.760384pt;}
.y62f{bottom:184.240000pt;}
.y8fe{bottom:184.479946pt;}
.y6e{bottom:185.120000pt;}
.y2e6{bottom:186.480000pt;}
.y3cc{bottom:186.800000pt;}
.y4cd{bottom:187.520000pt;}
.y4b6{bottom:187.600000pt;}
.y288{bottom:187.680435pt;}
.y5cf{bottom:187.920000pt;}
.y25b{bottom:188.001760pt;}
.y480{bottom:188.240000pt;}
.y6ce{bottom:189.520330pt;}
.y116{bottom:189.761097pt;}
.y4e2{bottom:190.240000pt;}
.y894{bottom:190.319349pt;}
.y7a4{bottom:190.319838pt;}
.y86e{bottom:190.319891pt;}
.y35{bottom:190.480000pt;}
.y748{bottom:190.720330pt;}
.y6a9{bottom:191.044341pt;}
.y50c{bottom:191.120000pt;}
.y930{bottom:191.521099pt;}
.y2bd{bottom:191.760000pt;}
.yae{bottom:192.000259pt;}
.y36a{bottom:192.001045pt;}
.y6f5{bottom:192.080000pt;}
.y1ce{bottom:192.080574pt;}
.y22b{bottom:192.558969pt;}
.y399{bottom:192.640715pt;}
.y667{bottom:195.200000pt;}
.y8c0{bottom:196.560384pt;}
.y175{bottom:196.802912pt;}
.y77a{bottom:197.120661pt;}
.y83f{bottom:197.760384pt;}
.y34a{bottom:198.079694pt;}
.y58a{bottom:198.080000pt;}
.y601{bottom:198.160384pt;}
.y7da{bottom:198.398969pt;}
.y80b{bottom:198.399946pt;}
.y8fd{bottom:198.960000pt;}
.y44d{bottom:199.121386pt;}
.y6d{bottom:199.520000pt;}
.y1f7{bottom:199.923299pt;}
.y34{bottom:201.040000pt;}
.y55c{bottom:201.281099pt;}
.y4b5{bottom:202.000000pt;}
.y287{bottom:202.080051pt;}
.y25a{bottom:202.401376pt;}
.y47f{bottom:202.720000pt;}
.y6cd{bottom:204.000384pt;}
.y115{bottom:204.240969pt;}
.ye1{bottom:204.481330pt;}
.y893{bottom:204.639784pt;}
.y4e1{bottom:204.640000pt;}
.yad{bottom:204.960050pt;}
.y747{bottom:205.200384pt;}
.y6a8{bottom:205.443957pt;}
.y92f{bottom:205.920715pt;}
.y369{bottom:206.400661pt;}
.y1cd{bottom:206.560627pt;}
.y22a{bottom:206.879404pt;}
.y398{bottom:207.040330pt;}
.y53c{bottom:207.840000pt;}
.y2e5{bottom:208.400000pt;}
.y666{bottom:209.520000pt;}
.y5ce{bottom:209.840000pt;}
.y8bf{bottom:210.961209pt;}
.y174{bottom:211.202528pt;}
.y779{bottom:211.600715pt;}
.y83e{bottom:212.159730pt;}
.y7a3{bottom:212.159946pt;}
.y86d{bottom:212.160000pt;}
.y349{bottom:212.400129pt;}
.y600{bottom:212.560000pt;}
.y7d9{bottom:212.879023pt;}
.y80a{bottom:212.879838pt;}
.y50b{bottom:213.120000pt;}
.y44c{bottom:213.521001pt;}
.y2bc{bottom:213.680000pt;}
.y6c{bottom:214.000000pt;}
.y1f6{bottom:214.403353pt;}
.y6f4{bottom:214.959511pt;}
.y55b{bottom:215.761152pt;}
.y4b4{bottom:216.400000pt;}
.y286{bottom:216.479667pt;}
.y259{bottom:216.881429pt;}
.y47e{bottom:217.040000pt;}
.y32a{bottom:217.841099pt;}
.y6cc{bottom:218.400000pt;}
.y114{bottom:218.561211pt;}
.ye0{bottom:218.961202pt;}
.y892{bottom:219.119838pt;}
.y746{bottom:219.600572pt;}
.y6a7{bottom:219.843573pt;}
.y589{bottom:220.000000pt;}
.y92e{bottom:220.400768pt;}
.y67d{bottom:220.640000pt;}
.y8fc{bottom:220.798862pt;}
.y368{bottom:220.880715pt;}
.y1cc{bottom:221.040681pt;}
.y4cc{bottom:221.200000pt;}
.y229{bottom:221.359458pt;}
.y397{bottom:221.520384pt;}
.yac{bottom:221.760000pt;}
.y53b{bottom:222.240000pt;}
.y2e4{bottom:222.880000pt;}
.y665{bottom:224.000000pt;}
.y5cd{bottom:224.320000pt;}
.y8be{bottom:225.360825pt;}
.y173{bottom:225.602144pt;}
.y778{bottom:226.000330pt;}
.y4e0{bottom:226.560000pt;}
.y86c{bottom:226.639295pt;}
.y7a2{bottom:226.639730pt;}
.y83d{bottom:226.639784pt;}
.y33{bottom:226.655144pt;}
.y348{bottom:226.880182pt;}
.y7d8{bottom:227.199458pt;}
.y809{bottom:227.200273pt;}
.y50a{bottom:227.520000pt;}
.y44b{bottom:228.001055pt;}
.y6b{bottom:228.400000pt;}
.y1f5{bottom:228.802969pt;}
.y6f3{bottom:229.439565pt;}
.y5ff{bottom:229.760000pt;}
.y55a{bottom:230.160768pt;}
.y14e{bottom:230.249592pt;}
.y4b3{bottom:230.880000pt;}
.y285{bottom:230.959720pt;}
.yab{bottom:230.960000pt;}
.y258{bottom:231.281045pt;}
.y47d{bottom:231.520000pt;}
.y329{bottom:232.240715pt;}
.y113{bottom:233.041083pt;}
.y3cb{bottom:233.198373pt;}
.ydf{bottom:233.441074pt;}
.y891{bottom:233.519454pt;}
.y745{bottom:234.000657pt;}
.y6a6{bottom:234.323627pt;}
.y92d{bottom:234.800384pt;}
.y8fb{bottom:235.278916pt;}
.y367{bottom:235.280330pt;}
.y2bb{bottom:235.680000pt;}
.y228{bottom:235.839511pt;}
.y396{bottom:235.922312pt;}
.y53a{bottom:236.640000pt;}
.y62e{bottom:237.601045pt;}
.y664{bottom:238.400000pt;}
.y5cc{bottom:238.800000pt;}
.y172{bottom:240.082197pt;}
.y777{bottom:240.399946pt;}
.y6cb{bottom:240.880000pt;}
.y4df{bottom:241.040000pt;}
.y86b{bottom:241.119349pt;}
.y7a1{bottom:241.119784pt;}
.y83c{bottom:241.119838pt;}
.y32{bottom:241.135016pt;}
.y347{bottom:241.360236pt;}
.y7d7{bottom:241.679511pt;}
.y509{bottom:241.920000pt;}
.y588{bottom:242.000000pt;}
.y44a{bottom:242.481109pt;}
.y3e9{bottom:242.558483pt;}
.y6a{bottom:242.800000pt;}
.y1cb{bottom:242.880790pt;}
.y1f4{bottom:243.202585pt;}
.y6f2{bottom:243.760000pt;}
.y559{bottom:244.560384pt;}
.y14d{bottom:244.729464pt;}
.y2e3{bottom:244.800000pt;}
.y284{bottom:245.359336pt;}
.y257{bottom:245.680661pt;}
.y47c{bottom:246.000000pt;}
.y328{bottom:246.640330pt;}
.y8bd{bottom:247.360552pt;}
.y3ca{bottom:247.518808pt;}
.y112{bottom:247.520955pt;}
.yde{bottom:247.840502pt;}
.y5fe{bottom:248.480000pt;}
.y6a5{bottom:248.723243pt;}
.y808{bottom:249.198800pt;}
.y92c{bottom:249.200000pt;}
.y366{bottom:249.679946pt;}
.y8fa{bottom:249.758969pt;}
.y227{bottom:250.159946pt;}
.y539{bottom:251.120000pt;}
.y62d{bottom:252.081099pt;}
.y4b2{bottom:252.800000pt;}
.y5cb{bottom:253.120000pt;}
.y171{bottom:254.481813pt;}
.y776{bottom:254.880000pt;}
.y86a{bottom:255.439784pt;}
.y4de{bottom:255.440000pt;}
.y7a0{bottom:255.440219pt;}
.y83b{bottom:255.440273pt;}
.y31{bottom:255.534444pt;}
.y346{bottom:255.680671pt;}
.y744{bottom:256.000384pt;}
.y7d6{bottom:256.159565pt;}
.y508{bottom:256.400000pt;}
.y449{bottom:256.801544pt;}
.y69{bottom:257.280000pt;}
.y1ca{bottom:257.360843pt;}
.y2ba{bottom:257.600000pt;}
.y1f3{bottom:257.682638pt;}
.y395{bottom:257.842858pt;}
.y3e8{bottom:257.998763pt;}
.y558{bottom:258.960000pt;}
.y14c{bottom:259.128892pt;}
.y2e2{bottom:259.200000pt;}
.y283{bottom:259.758952pt;}
.y256{bottom:260.160715pt;}
.y47b{bottom:260.320000pt;}
.y327{bottom:261.120384pt;}
.y8bc{bottom:261.760168pt;}
.y3c9{bottom:261.998862pt;}
.ydd{bottom:262.239930pt;}
.y6a4{bottom:263.122858pt;}
.y8f9{bottom:264.079404pt;}
.y365{bottom:264.160000pt;}
.y226{bottom:264.641267pt;}
.y538{bottom:265.520000pt;}
.y62c{bottom:266.480715pt;}
.y6f1{bottom:266.640384pt;}
.y5fd{bottom:267.040000pt;}
.y4b1{bottom:267.199933pt;}
.y663{bottom:267.280000pt;}
.y5ca{bottom:267.600000pt;}
.y170{bottom:268.881429pt;}
.y111{bottom:269.361429pt;}
.y4dd{bottom:269.840000pt;}
.y869{bottom:269.919838pt;}
.y30{bottom:269.933873pt;}
.y345{bottom:270.160725pt;}
.y313{bottom:270.399644pt;}
.y743{bottom:270.400000pt;}
.y7d5{bottom:270.480256pt;}
.y587{bottom:270.880000pt;}
.y807{bottom:271.119346pt;}
.y92b{bottom:271.120277pt;}
.y448{bottom:271.281597pt;}
.y68{bottom:271.680000pt;}
.y1c9{bottom:271.840897pt;}
.y2b9{bottom:272.000000pt;}
.y1f2{bottom:272.082254pt;}
.y394{bottom:272.322912pt;}
.y6ca{bottom:272.720384pt;}
.yaa{bottom:272.959654pt;}
.y14b{bottom:273.528320pt;}
.y282{bottom:274.239006pt;}
.y255{bottom:274.560330pt;}
.y47a{bottom:274.800000pt;}
.y326{bottom:275.520503pt;}
.y8bb{bottom:276.159784pt;}
.y3c8{bottom:276.478916pt;}
.ydc{bottom:276.719802pt;}
.y775{bottom:276.800572pt;}
.y79f{bottom:277.439946pt;}
.y83a{bottom:277.440128pt;}
.y6a3{bottom:277.602912pt;}
.y507{bottom:278.240000pt;}
.y8f8{bottom:278.559458pt;}
.y537{bottom:279.920000pt;}
.y62b{bottom:280.880330pt;}
.y6f0{bottom:281.040000pt;}
.y2e1{bottom:281.120000pt;}
.y557{bottom:281.520000pt;}
.y662{bottom:281.680000pt;}
.y5c9{bottom:282.000000pt;}
.y16f{bottom:283.281045pt;}
.y4b0{bottom:283.520000pt;}
.y110{bottom:283.841301pt;}
.y4dc{bottom:284.320000pt;}
.y2f{bottom:284.413745pt;}
.y344{bottom:284.560341pt;}
.y312{bottom:284.799260pt;}
.y742{bottom:284.799454pt;}
.y7d4{bottom:284.960128pt;}
.y586{bottom:285.280000pt;}
.y806{bottom:285.599400pt;}
.y92a{bottom:285.600330pt;}
.y5fc{bottom:285.680000pt;}
.y447{bottom:285.681213pt;}
.y67{bottom:286.080000pt;}
.y1c8{bottom:286.161332pt;}
.y225{bottom:286.561813pt;}
.y364{bottom:286.640000pt;}
.y393{bottom:286.722528pt;}
.y6c9{bottom:287.120000pt;}
.y5a1{bottom:288.000000pt;}
.y14a{bottom:288.008192pt;}
.y281{bottom:288.559441pt;}
.y254{bottom:288.959946pt;}
.y479{bottom:289.200000pt;}
.y325{bottom:289.920119pt;}
.y8ba{bottom:290.639838pt;}
.y3c7{bottom:290.799350pt;}
.ydb{bottom:291.040044pt;}
.y774{bottom:291.199784pt;}
.y868{bottom:291.840384pt;}
.y839{bottom:291.918965pt;}
.y79e{bottom:291.919838pt;}
.y6a2{bottom:292.002528pt;}
.y8f7{bottom:293.039511pt;}
.y2b8{bottom:294.000000pt;}
.y1f1{bottom:294.002801pt;}
.y536{bottom:294.400000pt;}
.ya9{bottom:294.800128pt;}
.y62a{bottom:295.360384pt;}
.y661{bottom:296.080000pt;}
.y5c8{bottom:296.400000pt;}
.y16e{bottom:297.761099pt;}
.y959{bottom:298.159952pt;}
.y10f{bottom:298.321173pt;}
.y5fb{bottom:298.640000pt;}
.y4db{bottom:298.720000pt;}
.y2e{bottom:298.813173pt;}
.y343{bottom:298.959956pt;}
.y311{bottom:299.279314pt;}
.y7d3{bottom:299.440606pt;}
.y4af{bottom:299.600000pt;}
.y585{bottom:299.680000pt;}
.y929{bottom:299.999946pt;}
.y446{bottom:300.080829pt;}
.y506{bottom:300.240000pt;}
.y66{bottom:300.560000pt;}
.y1c7{bottom:300.641386pt;}
.y224{bottom:300.961429pt;}
.y392{bottom:301.122144pt;}
.y280{bottom:303.039494pt;}
.y2e0{bottom:303.120000pt;}
.y253{bottom:303.440000pt;}
.y478{bottom:303.600000pt;}
.y6ef{bottom:303.920661pt;}
.y324{bottom:304.400172pt;}
.y8b9{bottom:304.960273pt;}
.y3c6{bottom:305.279404pt;}
.yda{bottom:305.519916pt;}
.y773{bottom:305.679838pt;}
.y838{bottom:306.239400pt;}
.y867{bottom:306.240168pt;}
.y6a1{bottom:306.402144pt;}
.y741{bottom:306.720000pt;}
.y8f6{bottom:307.359946pt;}
.y805{bottom:307.519946pt;}
.y1f0{bottom:308.482854pt;}
.y535{bottom:308.720000pt;}
.ya8{bottom:309.283655pt;}
.y629{bottom:309.760000pt;}
.y149{bottom:309.848666pt;}
.y6c8{bottom:309.919893pt;}
.y660{bottom:310.560000pt;}
.y5a0{bottom:310.640000pt;}
.y5c7{bottom:310.880000pt;}
.y16d{bottom:312.160715pt;}
.y10e{bottom:312.641414pt;}
.y4da{bottom:313.120000pt;}
.y2d{bottom:313.212601pt;}
.y556{bottom:313.280503pt;}
.y342{bottom:313.440010pt;}
.y310{bottom:313.678930pt;}
.y79d{bottom:313.759946pt;}
.y584{bottom:314.160000pt;}
.y928{bottom:314.480000pt;}
.y445{bottom:314.560883pt;}
.y505{bottom:314.720000pt;}
.y65{bottom:314.960000pt;}
.y1c6{bottom:315.041001pt;}
.y223{bottom:315.441483pt;}
.y391{bottom:315.602197pt;}
.y2b7{bottom:315.920000pt;}
.y5fa{bottom:317.360000pt;}
.y27f{bottom:317.519548pt;}
.y2df{bottom:317.520000pt;}
.y4ae{bottom:317.600000pt;}
.y6ee{bottom:318.400715pt;}
.y363{bottom:318.402815pt;}
.y323{bottom:318.799788pt;}
.y3c5{bottom:319.759458pt;}
.yd9{bottom:319.999788pt;}
.y958{bottom:320.000061pt;}
.y866{bottom:320.720222pt;}
.y6a0{bottom:320.882197pt;}
.y740{bottom:321.200115pt;}
.y7d2{bottom:321.280715pt;}
.y8f5{bottom:321.840340pt;}
.y804{bottom:322.001597pt;}
.y1ef{bottom:322.882470pt;}
.y534{bottom:323.200000pt;}
.ya7{bottom:323.763527pt;}
.y148{bottom:324.328538pt;}
.y6c7{bottom:324.399946pt;}
.y65f{bottom:324.960000pt;}
.y59f{bottom:325.120000pt;}
.y5c6{bottom:325.200000pt;}
.y477{bottom:325.520000pt;}
.y252{bottom:325.841388pt;}
.y16c{bottom:326.560330pt;}
.y8b8{bottom:326.960000pt;}
.y10d{bottom:327.121286pt;}
.y4d9{bottom:327.600000pt;}
.y772{bottom:327.600384pt;}
.y555{bottom:327.680119pt;}
.y2c{bottom:327.692473pt;}
.y341{bottom:327.839626pt;}
.y30f{bottom:328.078546pt;}
.y837{bottom:328.159946pt;}
.y79c{bottom:328.241540pt;}
.y583{bottom:328.560000pt;}
.y444{bottom:328.960499pt;}
.y64{bottom:329.360572pt;}
.y1c5{bottom:329.440617pt;}
.y222{bottom:329.841099pt;}
.y390{bottom:330.001813pt;}
.y2b6{bottom:330.320000pt;}
.y27e{bottom:331.839983pt;}
.y628{bottom:332.640768pt;}
.y6ed{bottom:332.800330pt;}
.y362{bottom:332.882868pt;}
.y322{bottom:333.199404pt;}
.y3c4{bottom:334.079893pt;}
.yd8{bottom:334.320029pt;}
.y957{bottom:334.480115pt;}
.y865{bottom:335.119838pt;}
.y69f{bottom:335.281813pt;}
.y73f{bottom:335.599730pt;}
.y7d1{bottom:335.760768pt;}
.y5f9{bottom:335.920000pt;}
.y803{bottom:336.401213pt;}
.y927{bottom:336.401429pt;}
.y504{bottom:336.560000pt;}
.y1ee{bottom:337.282086pt;}
.y533{bottom:337.680000pt;}
.y415{bottom:338.001712pt;}
.ya6{bottom:338.162955pt;}
.y147{bottom:338.808410pt;}
.y6c6{bottom:338.880000pt;}
.y65e{bottom:339.360000pt;}
.y2de{bottom:339.440000pt;}
.y476{bottom:340.000000pt;}
.y16b{bottom:341.040384pt;}
.y8b7{bottom:341.439838pt;}
.y10c{bottom:341.601158pt;}
.y771{bottom:342.000715pt;}
.y2b{bottom:342.091901pt;}
.y554{bottom:342.160172pt;}
.y340{bottom:342.239242pt;}
.y30e{bottom:342.558599pt;}
.y836{bottom:342.639784pt;}
.y890{bottom:342.640115pt;}
.y79b{bottom:342.641155pt;}
.y582{bottom:342.960000pt;}
.y251{bottom:343.120804pt;}
.y8f4{bottom:343.759946pt;}
.y63{bottom:343.760000pt;}
.y1c4{bottom:343.920671pt;}
.y221{bottom:344.240715pt;}
.y38f{bottom:344.401429pt;}
.y2b5{bottom:344.800000pt;}
.y59e{bottom:346.960000pt;}
.y627{bottom:347.040384pt;}
.y6ec{bottom:347.199946pt;}
.y5c5{bottom:347.200000pt;}
.y361{bottom:347.282484pt;}
.y321{bottom:347.679458pt;}
.y3c3{bottom:348.559946pt;}
.yd7{bottom:348.799901pt;}
.y4d8{bottom:349.440000pt;}
.y864{bottom:349.519454pt;}
.y69e{bottom:349.681429pt;}
.y73e{bottom:350.079784pt;}
.y7d0{bottom:350.160384pt;}
.y802{bottom:350.800829pt;}
.y926{bottom:350.801045pt;}
.y443{bottom:350.881045pt;}
.y503{bottom:351.040000pt;}
.y532{bottom:352.000000pt;}
.ya5{bottom:352.562383pt;}
.y146{bottom:353.207838pt;}
.y27d{bottom:353.839710pt;}
.y65d{bottom:353.840000pt;}
.y2dd{bottom:353.920000pt;}
.y475{bottom:354.399063pt;}
.y5f8{bottom:354.560000pt;}
.y16a{bottom:355.440000pt;}
.y1a5{bottom:355.441045pt;}
.y168{bottom:355.441483pt;}
.y8b6{bottom:355.760273pt;}
.y10b{bottom:355.921399pt;}
.y956{bottom:356.400661pt;}
.y770{bottom:356.480768pt;}
.y2a{bottom:356.491330pt;}
.y553{bottom:356.640226pt;}
.y33f{bottom:356.719295pt;}
.y30d{bottom:356.958215pt;}
.y835{bottom:357.039400pt;}
.y88f{bottom:357.039730pt;}
.y79a{bottom:357.040771pt;}
.y581{bottom:357.440000pt;}
.y8f3{bottom:358.240000pt;}
.y1c3{bottom:358.320287pt;}
.y220{bottom:358.720768pt;}
.y38e{bottom:358.801045pt;}
.y2b4{bottom:359.200000pt;}
.y1ed{bottom:359.281813pt;}
.y169{bottom:359.760000pt;}
.y414{bottom:359.922258pt;}
.y250{bottom:360.480000pt;}
.y59d{bottom:361.440000pt;}
.y6eb{bottom:361.680000pt;}
.y6c5{bottom:361.680384pt;}
.y360{bottom:361.762538pt;}
.y320{bottom:361.999893pt;}
.y3c2{bottom:363.040610pt;}
.yd6{bottom:363.279773pt;}
.y4d7{bottom:363.919933pt;}
.y69d{bottom:364.161483pt;}
.y73d{bottom:364.479400pt;}
.y7cf{bottom:364.560128pt;}
.y439{bottom:365.121213pt;}
.y801{bottom:365.200445pt;}
.y925{bottom:365.200661pt;}
.y442{bottom:365.361099pt;}
.y502{bottom:365.520000pt;}
.y531{bottom:366.480000pt;}
.ya4{bottom:367.042255pt;}
.y145{bottom:367.607266pt;}
.y65c{bottom:368.240000pt;}
.y5c4{bottom:369.120000pt;}
.y1a4{bottom:369.840661pt;}
.y167{bottom:369.841099pt;}
.y10a{bottom:370.401271pt;}
.y76f{bottom:370.880384pt;}
.y955{bottom:370.880715pt;}
.y552{bottom:370.960661pt;}
.y29{bottom:370.971202pt;}
.y33e{bottom:371.039730pt;}
.y30c{bottom:371.357831pt;}
.y863{bottom:371.440115pt;}
.y88e{bottom:371.519784pt;}
.y799{bottom:371.520825pt;}
.y580{bottom:371.840000pt;}
.y1c2{bottom:372.719903pt;}
.y27c{bottom:373.119636pt;}
.y21f{bottom:373.120384pt;}
.y62{bottom:373.280000pt;}
.y38d{bottom:373.281099pt;}
.y2b3{bottom:373.600000pt;}
.y1ec{bottom:373.681429pt;}
.y2dc{bottom:375.920000pt;}
.y6c4{bottom:376.080000pt;}
.y35f{bottom:376.082973pt;}
.y31f{bottom:376.479946pt;}
.y3c1{bottom:377.361045pt;}
.yd5{bottom:377.600015pt;}
.y8b5{bottom:377.760000pt;}
.y474{bottom:378.238804pt;}
.y5f7{bottom:378.560000pt;}
.y69c{bottom:378.561099pt;}
.y834{bottom:378.959946pt;}
.y7ce{bottom:379.040115pt;}
.y800{bottom:379.680499pt;}
.y924{bottom:379.680715pt;}
.y441{bottom:379.760715pt;}
.y501{bottom:379.840000pt;}
.y8f2{bottom:380.079893pt;}
.y4d6{bottom:380.240000pt;}
.y530{bottom:380.960000pt;}
.ya3{bottom:381.362497pt;}
.y413{bottom:381.921986pt;}
.y144{bottom:382.087138pt;}
.y5c3{bottom:383.600000pt;}
.y626{bottom:384.240330pt;}
.y166{bottom:384.240715pt;}
.y1a3{bottom:384.320715pt;}
.y6ea{bottom:384.480715pt;}
.y109{bottom:384.800700pt;}
.y76e{bottom:385.280000pt;}
.y954{bottom:385.280330pt;}
.y28{bottom:385.370630pt;}
.y551{bottom:385.440715pt;}
.y33d{bottom:385.519784pt;}
.y30b{bottom:385.837885pt;}
.y88d{bottom:385.919400pt;}
.y862{bottom:385.920168pt;}
.y798{bottom:385.920441pt;}
.y57f{bottom:386.240000pt;}
.y73c{bottom:386.399946pt;}
.y438{bottom:387.041760pt;}
.y1c1{bottom:387.199956pt;}
.y21e{bottom:387.520000pt;}
.y61{bottom:387.680000pt;}
.y38c{bottom:387.680715pt;}
.y1eb{bottom:388.081045pt;}
.y65b{bottom:390.160000pt;}
.y2db{bottom:390.320000pt;}
.y35e{bottom:390.563027pt;}
.y31e{bottom:390.959582pt;}
.y3c0{bottom:391.841099pt;}
.yd4{bottom:392.079887pt;}
.y8b4{bottom:392.239454pt;}
.y24f{bottom:392.323957pt;}
.y69b{bottom:392.960715pt;}
.y833{bottom:393.439784pt;}
.y4d5{bottom:393.840000pt;}
.y7ff{bottom:394.080115pt;}
.y923{bottom:394.080330pt;}
.y440{bottom:394.160330pt;}
.y500{bottom:394.320000pt;}
.y8f1{bottom:394.559946pt;}
.y52f{bottom:395.280000pt;}
.ya2{bottom:395.842369pt;}
.y412{bottom:396.402039pt;}
.y143{bottom:396.407380pt;}
.y5f6{bottom:396.640128pt;}
.y5c2{bottom:398.000000pt;}
.y1a2{bottom:398.720330pt;}
.y625{bottom:398.720384pt;}
.y165{bottom:398.720768pt;}
.y6c3{bottom:398.879893pt;}
.y6e9{bottom:398.880330pt;}
.y108{bottom:399.200128pt;}
.y953{bottom:399.760384pt;}
.y27{bottom:399.770058pt;}
.y550{bottom:399.840330pt;}
.y30a{bottom:400.158320pt;}
.y473{bottom:400.159350pt;}
.y861{bottom:400.319784pt;}
.y73b{bottom:400.880222pt;}
.y7cd{bottom:400.960661pt;}
.y437{bottom:401.441376pt;}
.y60{bottom:402.080000pt;}
.y38b{bottom:402.080330pt;}
.y1ea{bottom:402.561099pt;}
.y2b2{bottom:403.040000pt;}
.y65a{bottom:404.640000pt;}
.y35d{bottom:404.962642pt;}
.y3bf{bottom:406.240715pt;}
.yd3{bottom:406.559759pt;}
.y24e{bottom:406.723573pt;}
.y76d{bottom:407.199730pt;}
.y69a{bottom:407.360330pt;}
.y33c{bottom:407.440330pt;}
.y832{bottom:407.839400pt;}
.y88c{bottom:407.839946pt;}
.y797{bottom:407.840987pt;}
.y57e{bottom:408.160000pt;}
.y7fe{bottom:408.479730pt;}
.y922{bottom:408.479946pt;}
.y43f{bottom:408.640384pt;}
.y4ff{bottom:408.800000pt;}
.y8f0{bottom:409.040000pt;}
.y1c0{bottom:409.040065pt;}
.ya1{bottom:410.322241pt;}
.y411{bottom:410.722474pt;}
.y142{bottom:410.887252pt;}
.y5f5{bottom:411.120000pt;}
.y2da{bottom:412.240000pt;}
.y5c1{bottom:412.480000pt;}
.y624{bottom:413.119730pt;}
.y1a1{bottom:413.119946pt;}
.y164{bottom:413.120384pt;}
.y6c2{bottom:413.359946pt;}
.y6e8{bottom:413.360384pt;}
.y107{bottom:413.680000pt;}
.y952{bottom:414.160000pt;}
.y8b3{bottom:414.160330pt;}
.y26{bottom:414.169487pt;}
.y54f{bottom:414.239946pt;}
.y309{bottom:414.638373pt;}
.y472{bottom:414.639404pt;}
.y860{bottom:414.799838pt;}
.y73a{bottom:415.279838pt;}
.y7cc{bottom:415.440715pt;}
.y436{bottom:415.921429pt;}
.y5f{bottom:416.560000pt;}
.y38a{bottom:416.560384pt;}
.y1e9{bottom:416.960715pt;}
.y52e{bottom:417.280000pt;}
.y2b1{bottom:417.520000pt;}
.y31d{bottom:417.680000pt;}
.y21d{bottom:418.079986pt;}
.y659{bottom:419.040000pt;}
.y35c{bottom:419.362258pt;}
.y3be{bottom:420.640330pt;}
.yd2{bottom:420.880700pt;}
.y24d{bottom:421.203627pt;}
.y76c{bottom:421.679784pt;}
.y33b{bottom:421.839946pt;}
.y699{bottom:421.840384pt;}
.y88b{bottom:422.320168pt;}
.y796{bottom:422.321041pt;}
.y57d{bottom:422.640373pt;}
.y7fd{bottom:422.959784pt;}
.y921{bottom:422.960572pt;}
.y43e{bottom:423.040000pt;}
.y4fe{bottom:423.120000pt;}
.y1bf{bottom:423.520119pt;}
.y4a8{bottom:424.320000pt;}
.ya0{bottom:424.642482pt;}
.y410{bottom:425.202528pt;}
.y141{bottom:425.367124pt;}
.y5f4{bottom:425.602254pt;}
.y5c0{bottom:426.880000pt;}
.y163{bottom:427.520000pt;}
.y1a0{bottom:427.601981pt;}
.y6e7{bottom:427.760000pt;}
.y6c1{bottom:427.840000pt;}
.y8b2{bottom:428.559946pt;}
.y25{bottom:428.649359pt;}
.y54e{bottom:428.721981pt;}
.y308{bottom:429.118427pt;}
.y471{bottom:429.119458pt;}
.y85f{bottom:429.199454pt;}
.y739{bottom:429.679454pt;}
.y831{bottom:429.759946pt;}
.y7cb{bottom:429.840330pt;}
.y435{bottom:430.321045pt;}
.y8ef{bottom:430.880277pt;}
.y5e{bottom:430.960000pt;}
.y1e8{bottom:431.360330pt;}
.y52d{bottom:431.760000pt;}
.y2b0{bottom:432.000000pt;}
.y35b{bottom:433.842312pt;}
.y2d9{bottom:434.240000pt;}
.y623{bottom:435.040277pt;}
.y3bd{bottom:435.120384pt;}
.yd1{bottom:435.360572pt;}
.y24c{bottom:435.603243pt;}
.y76b{bottom:436.079400pt;}
.y951{bottom:436.080330pt;}
.y106{bottom:436.080804pt;}
.y698{bottom:436.245224pt;}
.y338{bottom:436.318862pt;}
.y33a{bottom:436.320000pt;}
.y88a{bottom:436.719784pt;}
.y795{bottom:436.720657pt;}
.y7fc{bottom:437.359400pt;}
.y920{bottom:437.360000pt;}
.y1be{bottom:438.000172pt;}
.y9f{bottom:439.122354pt;}
.y40f{bottom:439.602144pt;}
.y140{bottom:439.687365pt;}
.y339{bottom:440.720000pt;}
.y71c{bottom:441.039693pt;}
.y5bf{bottom:441.280000pt;}
.y8b1{bottom:443.040000pt;}
.y24{bottom:443.048787pt;}
.y307{bottom:443.438862pt;}
.y470{bottom:443.439893pt;}
.y658{bottom:443.440000pt;}
.y7ca{bottom:444.239946pt;}
.y830{bottom:444.240445pt;}
.y434{bottom:444.720661pt;}
.y4fd{bottom:445.120000pt;}
.y5d{bottom:445.360000pt;}
.y8ee{bottom:445.360330pt;}
.y43d{bottom:445.520000pt;}
.y1e7{bottom:445.840384pt;}
.y52c{bottom:446.080000pt;}
.y2af{bottom:446.400000pt;}
.y57c{bottom:446.400934pt;}
.y4a7{bottom:446.720000pt;}
.y5f3{bottom:447.442363pt;}
.y35a{bottom:448.241928pt;}
.y2d8{bottom:448.640000pt;}
.y622{bottom:449.520330pt;}
.y3bc{bottom:449.521760pt;}
.y19f{bottom:449.522528pt;}
.yd0{bottom:449.760000pt;}
.y162{bottom:450.000375pt;}
.y24b{bottom:450.002858pt;}
.y6e6{bottom:450.560277pt;}
.y950{bottom:450.560384pt;}
.y6c0{bottom:450.640277pt;}
.y54d{bottom:450.642528pt;}
.y337{bottom:450.798916pt;}
.y889{bottom:451.119400pt;}
.y85e{bottom:451.120128pt;}
.y738{bottom:451.600000pt;}
.y1bd{bottom:452.399788pt;}
.y105{bottom:453.440000pt;}
.y9e{bottom:453.602226pt;}
.y40e{bottom:454.001760pt;}
.y13f{bottom:454.167237pt;}
.y5be{bottom:455.760000pt;}
.y59c{bottom:456.160000pt;}
.y23{bottom:457.448215pt;}
.y8b0{bottom:457.841038pt;}
.y306{bottom:457.918916pt;}
.y46f{bottom:457.919946pt;}
.y76a{bottom:457.999946pt;}
.y697{bottom:458.165770pt;}
.y794{bottom:458.720384pt;}
.y82f{bottom:458.720499pt;}
.y7c9{bottom:458.721143pt;}
.y433{bottom:459.200715pt;}
.y7fb{bottom:459.279946pt;}
.y91f{bottom:459.280715pt;}
.y5ab{bottom:459.360000pt;}
.y4fc{bottom:459.600000pt;}
.y5c{bottom:459.840000pt;}
.y8ed{bottom:459.840384pt;}
.y71b{bottom:460.160000pt;}
.y1e6{bottom:460.240000pt;}
.y52b{bottom:460.560000pt;}
.y2ae{bottom:460.800000pt;}
.y21c{bottom:460.880625pt;}
.y359{bottom:462.641544pt;}
.y621{bottom:463.919946pt;}
.y3bb{bottom:463.921376pt;}
.y19e{bottom:463.922144pt;}
.y24a{bottom:464.482912pt;}
.y94f{bottom:464.960000pt;}
.y6bf{bottom:465.039893pt;}
.y6e5{bottom:465.040330pt;}
.y54c{bottom:465.042144pt;}
.y336{bottom:465.119350pt;}
.y888{bottom:465.599454pt;}
.y85d{bottom:465.599838pt;}
.y737{bottom:466.079784pt;}
.y1bc{bottom:466.799404pt;}
.y161{bottom:467.360000pt;}
.y4a6{bottom:467.440000pt;}
.y9d{bottom:467.922468pt;}
.y57b{bottom:468.400661pt;}
.y40d{bottom:468.481813pt;}
.y13e{bottom:468.647109pt;}
.y5f2{bottom:469.442090pt;}
.y5bd{bottom:470.080000pt;}
.y2d7{bottom:470.560000pt;}
.ycf{bottom:471.680729pt;}
.y22{bottom:471.847643pt;}
.y305{bottom:472.398969pt;}
.y46e{bottom:472.400000pt;}
.y769{bottom:472.480115pt;}
.y696{bottom:472.645824pt;}
.y82e{bottom:473.120115pt;}
.y7c8{bottom:473.120572pt;}
.y793{bottom:473.121143pt;}
.y432{bottom:473.600330pt;}
.y7fa{bottom:473.760000pt;}
.y91e{bottom:473.760768pt;}
.y4fb{bottom:474.000000pt;}
.y5b{bottom:474.240000pt;}
.y52a{bottom:475.040000pt;}
.y2ad{bottom:475.200000pt;}
.y657{bottom:475.201045pt;}
.y43c{bottom:478.400000pt;}
.y620{bottom:478.400768pt;}
.y3ba{bottom:478.401429pt;}
.y19d{bottom:478.402197pt;}
.y249{bottom:478.882528pt;}
.y6e4{bottom:479.439946pt;}
.y6be{bottom:479.519946pt;}
.y54b{bottom:479.522197pt;}
.y335{bottom:479.599404pt;}
.y85c{bottom:479.999454pt;}
.y8af{bottom:480.000384pt;}
.y736{bottom:480.479400pt;}
.y5aa{bottom:480.480000pt;}
.y21b{bottom:481.120000pt;}
.y1bb{bottom:481.279458pt;}
.y4a5{bottom:481.840000pt;}
.y9c{bottom:482.402340pt;}
.y1e5{bottom:482.720000pt;}
.y57a{bottom:482.880715pt;}
.y40c{bottom:482.881429pt;}
.y13d{bottom:482.967351pt;}
.y5f1{bottom:483.922144pt;}
.y71a{bottom:484.000000pt;}
.y5bc{bottom:484.560000pt;}
.y358{bottom:484.562090pt;}
.y2d6{bottom:485.040000pt;}
.y389{bottom:485.283627pt;}
.y104{bottom:485.290979pt;}
.yce{bottom:486.160601pt;}
.y21{bottom:486.327515pt;}
.y304{bottom:486.719404pt;}
.y768{bottom:486.879730pt;}
.y94e{bottom:486.880661pt;}
.y695{bottom:487.045440pt;}
.y82d{bottom:487.519730pt;}
.y792{bottom:487.520572pt;}
.y887{bottom:487.520657pt;}
.y7c7{bottom:487.521041pt;}
.y431{bottom:487.999946pt;}
.y7f9{bottom:488.160000pt;}
.y91d{bottom:488.160384pt;}
.y4fa{bottom:488.400000pt;}
.y5a{bottom:488.640000pt;}
.y529{bottom:489.360000pt;}
.y656{bottom:489.681099pt;}
.y59b{bottom:492.560000pt;}
.y61f{bottom:492.800384pt;}
.y3b9{bottom:492.801045pt;}
.y19c{bottom:492.801813pt;}
.y248{bottom:493.282144pt;}
.y6e3{bottom:493.920000pt;}
.y54a{bottom:493.921813pt;}
.y6bd{bottom:494.000000pt;}
.y334{bottom:494.079458pt;}
.y8ae{bottom:494.400168pt;}
.y46d{bottom:494.800000pt;}
.y1ba{bottom:495.599893pt;}
.y8ec{bottom:496.159946pt;}
.y4a4{bottom:496.320000pt;}
.y9b{bottom:496.882212pt;}
.y579{bottom:497.280330pt;}
.y40b{bottom:497.281045pt;}
.y13c{bottom:497.447223pt;}
.y5f0{bottom:498.321760pt;}
.y719{bottom:498.400000pt;}
.y5bb{bottom:499.040000pt;}
.y357{bottom:499.042144pt;}
.y388{bottom:499.683243pt;}
.y103{bottom:499.690407pt;}
.y160{bottom:500.240000pt;}
.ycd{bottom:500.640473pt;}
.y20{bottom:500.726944pt;}
.y303{bottom:501.199458pt;}
.y767{bottom:501.359784pt;}
.y94d{bottom:501.360715pt;}
.y694{bottom:501.445056pt;}
.y82c{bottom:501.919346pt;}
.y85b{bottom:501.920061pt;}
.y791{bottom:501.920603pt;}
.y735{bottom:502.399946pt;}
.y430{bottom:502.482366pt;}
.y7f8{bottom:502.560000pt;}
.y4f9{bottom:502.880000pt;}
.y59{bottom:503.120000pt;}
.y528{bottom:503.840000pt;}
.y655{bottom:504.080715pt;}
.y2ac{bottom:504.640000pt;}
.y2d5{bottom:506.960000pt;}
.y59a{bottom:507.040000pt;}
.y3b8{bottom:507.200661pt;}
.y19b{bottom:507.201429pt;}
.y61e{bottom:507.203243pt;}
.y247{bottom:507.762197pt;}
.y549{bottom:508.321429pt;}
.y333{bottom:508.399893pt;}
.y8ad{bottom:508.880222pt;}
.y886{bottom:509.520384pt;}
.y7c6{bottom:509.520768pt;}
.y1b9{bottom:510.079946pt;}
.y8eb{bottom:510.640000pt;}
.y4a3{bottom:510.800000pt;}
.y9a{bottom:511.202453pt;}
.y578{bottom:511.679946pt;}
.y40a{bottom:511.761099pt;}
.y13b{bottom:511.927095pt;}
.y5ef{bottom:512.721376pt;}
.y718{bottom:512.880000pt;}
.y5ba{bottom:513.360000pt;}
.y356{bottom:513.441760pt;}
.y387{bottom:514.163296pt;}
.y102{bottom:514.170279pt;}
.y1e4{bottom:514.320756pt;}
.ycc{bottom:514.960714pt;}
.y1f{bottom:515.126372pt;}
.y302{bottom:515.679511pt;}
.y766{bottom:515.759400pt;}
.y94c{bottom:515.760330pt;}
.y693{bottom:515.925109pt;}
.y85a{bottom:516.400115pt;}
.y790{bottom:516.400657pt;}
.y6e2{bottom:516.720330pt;}
.y6bc{bottom:516.800384pt;}
.y734{bottom:516.879838pt;}
.y7f7{bottom:517.040000pt;}
.y4f8{bottom:517.200000pt;}
.y43b{bottom:517.360911pt;}
.y58{bottom:517.520000pt;}
.y527{bottom:518.320000pt;}
.y654{bottom:518.480330pt;}
.y2ab{bottom:519.120758pt;}
.y2d4{bottom:521.360000pt;}
.y3b7{bottom:521.680715pt;}
.y19a{bottom:521.681483pt;}
.y61d{bottom:521.683296pt;}
.y246{bottom:522.161813pt;}
.y21a{bottom:522.721045pt;}
.y548{bottom:522.801483pt;}
.y332{bottom:522.879946pt;}
.y8ac{bottom:523.279838pt;}
.y82b{bottom:523.839893pt;}
.y7c5{bottom:523.920384pt;}
.y885{bottom:523.921371pt;}
.y42f{bottom:524.402912pt;}
.y1b8{bottom:524.560000pt;}
.y91c{bottom:524.561813pt;}
.y4a2{bottom:525.120000pt;}
.y99{bottom:525.682325pt;}
.y577{bottom:526.160000pt;}
.y409{bottom:526.160715pt;}
.y13a{bottom:526.247336pt;}
.y46c{bottom:526.640330pt;}
.y5ee{bottom:527.201429pt;}
.y1e3{bottom:527.280605pt;}
.y717{bottom:527.360000pt;}
.y5b9{bottom:527.840000pt;}
.y355{bottom:527.921813pt;}
.y386{bottom:528.562912pt;}
.y101{bottom:528.569707pt;}
.ycb{bottom:529.440586pt;}
.y1e{bottom:529.606244pt;}
.y301{bottom:529.999946pt;}
.y94b{bottom:530.159946pt;}
.y692{bottom:530.324725pt;}
.y859{bottom:530.799730pt;}
.y78f{bottom:530.800273pt;}
.y6bb{bottom:531.200000pt;}
.y6e1{bottom:531.200384pt;}
.y733{bottom:531.279454pt;}
.y7f6{bottom:531.440000pt;}
.y4f7{bottom:531.680000pt;}
.y57{bottom:531.920700pt;}
.y8ea{bottom:532.481376pt;}
.y653{bottom:532.960384pt;}
.y599{bottom:535.840000pt;}
.y3b6{bottom:536.080330pt;}
.y199{bottom:536.081099pt;}
.y61c{bottom:536.082912pt;}
.y245{bottom:536.561429pt;}
.y219{bottom:537.201099pt;}
.y331{bottom:537.360000pt;}
.y8ab{bottom:537.679454pt;}
.y765{bottom:537.679946pt;}
.y82a{bottom:538.319946pt;}
.y7c4{bottom:538.320128pt;}
.y884{bottom:538.320987pt;}
.y42e{bottom:538.882966pt;}
.y91b{bottom:538.961429pt;}
.y4a1{bottom:539.600000pt;}
.y98{bottom:540.081754pt;}
.y526{bottom:540.160000pt;}
.y1e2{bottom:540.240453pt;}
.y408{bottom:540.560330pt;}
.y139{bottom:540.727208pt;}
.y46b{bottom:541.120384pt;}
.y5ed{bottom:541.601045pt;}
.y716{bottom:541.680000pt;}
.y15f{bottom:541.680604pt;}
.y354{bottom:542.321429pt;}
.y2aa{bottom:542.960499pt;}
.y385{bottom:542.962528pt;}
.y100{bottom:542.969136pt;}
.y2d3{bottom:543.360000pt;}
.yca{bottom:543.920458pt;}
.y1d{bottom:544.005672pt;}
.y300{bottom:544.479242pt;}
.y94a{bottom:544.640000pt;}
.y691{bottom:544.724341pt;}
.y858{bottom:545.199346pt;}
.y6e0{bottom:545.600000pt;}
.y4f6{bottom:546.160000pt;}
.y56{bottom:546.400572pt;}
.y8e9{bottom:546.961429pt;}
.y67c{bottom:547.280000pt;}
.y652{bottom:547.359784pt;}
.y576{bottom:548.640000pt;}
.y5b8{bottom:549.760000pt;}
.y3b5{bottom:550.479946pt;}
.y198{bottom:550.480715pt;}
.y61b{bottom:550.482528pt;}
.y244{bottom:551.041483pt;}
.y218{bottom:551.600715pt;}
.y764{bottom:552.160168pt;}
.y7c3{bottom:552.799784pt;}
.y78e{bottom:552.800572pt;}
.y883{bottom:552.801041pt;}
.y732{bottom:553.200219pt;}
.y1e1{bottom:553.200302pt;}
.y42d{bottom:553.282582pt;}
.y7f5{bottom:553.360000pt;}
.y91a{bottom:553.361045pt;}
.y1b7{bottom:553.760303pt;}
.y4a0{bottom:554.080000pt;}
.y6ba{bottom:554.080330pt;}
.y97{bottom:554.481182pt;}
.y525{bottom:554.639440pt;}
.y15e{bottom:554.640453pt;}
.y407{bottom:555.040384pt;}
.y138{bottom:555.207080pt;}
.y46a{bottom:555.519400pt;}
.y5ec{bottom:556.000661pt;}
.y715{bottom:556.160000pt;}
.y353{bottom:556.721045pt;}
.y384{bottom:557.442582pt;}
.yff{bottom:557.449008pt;}
.y598{bottom:557.760000pt;}
.yc9{bottom:558.240700pt;}
.y1c{bottom:558.405100pt;}
.y690{bottom:559.204395pt;}
.y8aa{bottom:559.600000pt;}
.y330{bottom:559.760000pt;}
.y4f5{bottom:560.480000pt;}
.y55{bottom:560.800000pt;}
.y8e8{bottom:561.441483pt;}
.y2a9{bottom:564.881045pt;}
.y197{bottom:564.960768pt;}
.y61a{bottom:564.962582pt;}
.y3b4{bottom:564.963795pt;}
.y2d2{bottom:565.280000pt;}
.y243{bottom:565.441099pt;}
.y217{bottom:566.080768pt;}
.y1e0{bottom:566.240303pt;}
.y2ff{bottom:566.399788pt;}
.y763{bottom:566.559784pt;}
.y949{bottom:566.560330pt;}
.y1b6{bottom:566.639999pt;}
.y857{bottom:567.119893pt;}
.y829{bottom:567.200000pt;}
.y78d{bottom:567.200115pt;}
.y882{bottom:567.200657pt;}
.y15d{bottom:567.680453pt;}
.y42c{bottom:567.682197pt;}
.y7f4{bottom:567.840000pt;}
.y919{bottom:567.841099pt;}
.y6df{bottom:568.399350pt;}
.y49f{bottom:568.400000pt;}
.y6b9{bottom:568.479946pt;}
.y96{bottom:568.961054pt;}
.y67b{bottom:569.200000pt;}
.y651{bottom:569.280330pt;}
.y406{bottom:569.440000pt;}
.y137{bottom:569.527322pt;}
.y5eb{bottom:570.480715pt;}
.y714{bottom:570.640000pt;}
.y352{bottom:571.201099pt;}
.y5b7{bottom:571.760000pt;}
.y383{bottom:571.842197pt;}
.yfe{bottom:571.848436pt;}
.yc8{bottom:572.720572pt;}
.y1b{bottom:572.884972pt;}
.y68f{bottom:573.604011pt;}
.y8a9{bottom:574.080657pt;}
.y7c2{bottom:574.639893pt;}
.y4f4{bottom:574.960000pt;}
.y731{bottom:575.199946pt;}
.y54{bottom:575.200000pt;}
.y8e7{bottom:575.841099pt;}
.y469{bottom:577.439946pt;}
.y524{bottom:578.400000pt;}
.y1df{bottom:579.200151pt;}
.y196{bottom:579.360384pt;}
.y2a8{bottom:579.361099pt;}
.y619{bottom:579.362197pt;}
.y1b5{bottom:579.680000pt;}
.y1b4{bottom:579.681208pt;}
.y242{bottom:579.840715pt;}
.y575{bottom:580.400061pt;}
.y216{bottom:580.480384pt;}
.y15c{bottom:580.640302pt;}
.y2fe{bottom:580.799404pt;}
.y762{bottom:580.959400pt;}
.y948{bottom:580.959946pt;}
.y78c{bottom:581.599730pt;}
.y856{bottom:581.599946pt;}
.y881{bottom:581.600273pt;}
.y828{bottom:581.601371pt;}
.y42b{bottom:582.081813pt;}
.y7f3{bottom:582.240000pt;}
.y918{bottom:582.240715pt;}
.y6de{bottom:582.879404pt;}
.y49e{bottom:582.880000pt;}
.y6b8{bottom:582.960000pt;}
.y95{bottom:583.360482pt;}
.y650{bottom:583.679946pt;}
.y67a{bottom:583.680000pt;}
.y136{bottom:584.007194pt;}
.y5ea{bottom:584.880330pt;}
.y713{bottom:584.960000pt;}
.y351{bottom:585.600715pt;}
.y382{bottom:586.241813pt;}
.yfd{bottom:586.247864pt;}
.y3b3{bottom:586.884341pt;}
.yc7{bottom:587.120000pt;}
.y1a{bottom:587.284401pt;}
.y68e{bottom:588.003627pt;}
.y7c1{bottom:589.119946pt;}
.y53{bottom:589.680000pt;}
.y730{bottom:589.680222pt;}
.y8e6{bottom:590.240715pt;}
.y5b6{bottom:590.960000pt;}
.y32f{bottom:591.601193pt;}
.y468{bottom:591.919838pt;}
.y1de{bottom:592.160000pt;}
.y1b3{bottom:592.641057pt;}
.y15b{bottom:593.600151pt;}
.y2a7{bottom:593.760715pt;}
.y195{bottom:593.761544pt;}
.y618{bottom:593.761813pt;}
.y241{bottom:594.320768pt;}
.y574{bottom:594.799677pt;}
.y215{bottom:594.882642pt;}
.y2fd{bottom:595.279458pt;}
.y761{bottom:595.439454pt;}
.y947{bottom:595.440340pt;}
.y1dd{bottom:595.921803pt;}
.y78b{bottom:596.079784pt;}
.y8a8{bottom:596.080384pt;}
.y855{bottom:596.080572pt;}
.y827{bottom:596.081425pt;}
.y42a{bottom:596.561867pt;}
.y7f2{bottom:596.640000pt;}
.y917{bottom:596.640330pt;}
.y4f3{bottom:596.880000pt;}
.y6dd{bottom:597.359458pt;}
.y49d{bottom:597.360000pt;}
.y679{bottom:598.080000pt;}
.y64f{bottom:598.160000pt;}
.y135{bottom:598.487066pt;}
.y5e9{bottom:599.279946pt;}
.y712{bottom:599.440000pt;}
.y405{bottom:600.000000pt;}
.y350{bottom:600.000330pt;}
.y381{bottom:600.721867pt;}
.yfc{bottom:600.727736pt;}
.y3b2{bottom:601.283957pt;}
.y2d1{bottom:601.680000pt;}
.y19{bottom:601.683829pt;}
.y68d{bottom:602.483680pt;}
.y7c0{bottom:603.600572pt;}
.y72f{bottom:604.079838pt;}
.y52{bottom:604.080000pt;}
.y8e5{bottom:604.720768pt;}
.y94{bottom:605.280143pt;}
.y1b2{bottom:605.681058pt;}
.y6b7{bottom:605.759946pt;}
.y15a{bottom:606.559999pt;}
.y2a6{bottom:608.240768pt;}
.y617{bottom:608.241867pt;}
.y240{bottom:608.720384pt;}
.y573{bottom:609.279730pt;}
.yc6{bottom:609.600000pt;}
.y2fc{bottom:609.759511pt;}
.y523{bottom:609.840000pt;}
.y1dc{bottom:610.242022pt;}
.y78a{bottom:610.479400pt;}
.y8a7{bottom:610.480168pt;}
.y826{bottom:610.481041pt;}
.y429{bottom:610.961483pt;}
.y916{bottom:611.120384pt;}
.y4f2{bottom:611.359717pt;}
.y6dc{bottom:611.679893pt;}
.y49c{bottom:611.680000pt;}
.y678{bottom:612.480000pt;}
.y5e8{bottom:613.759242pt;}
.y467{bottom:613.840384pt;}
.y711{bottom:613.920000pt;}
.y34f{bottom:614.480384pt;}
.y380{bottom:615.121483pt;}
.y194{bottom:615.682090pt;}
.y3b1{bottom:615.764011pt;}
.y2d0{bottom:616.160000pt;}
.y18{bottom:616.163701pt;}
.y4bc{bottom:616.640000pt;}
.y214{bottom:616.803189pt;}
.y68c{bottom:616.883296pt;}
.y760{bottom:617.360273pt;}
.y946{bottom:617.360384pt;}
.y7bf{bottom:617.999784pt;}
.y880{bottom:618.000168pt;}
.y32e{bottom:618.400793pt;}
.y72e{bottom:618.479454pt;}
.y51{bottom:618.480000pt;}
.y7f1{bottom:618.640000pt;}
.y1b1{bottom:618.640906pt;}
.y8e4{bottom:619.120384pt;}
.y157{bottom:619.599885pt;}
.y159{bottom:619.600000pt;}
.y93{bottom:619.760015pt;}
.y6b6{bottom:620.240000pt;}
.y134{bottom:620.327539pt;}
.y64e{bottom:620.960277pt;}
.y2a5{bottom:622.640384pt;}
.y616{bottom:622.641483pt;}
.yfb{bottom:622.647397pt;}
.y23f{bottom:623.120000pt;}
.y158{bottom:623.360000pt;}
.y572{bottom:623.759784pt;}
.y2fb{bottom:624.079946pt;}
.y522{bottom:624.240000pt;}
.y8a6{bottom:624.879784pt;}
.y825{bottom:624.880657pt;}
.y428{bottom:625.361099pt;}
.y915{bottom:625.520000pt;}
.y6db{bottom:626.159946pt;}
.y677{bottom:626.960000pt;}
.y4f1{bottom:627.679784pt;}
.y466{bottom:628.239454pt;}
.y34e{bottom:628.880000pt;}
.y37f{bottom:629.521099pt;}
.y193{bottom:630.162144pt;}
.y3b0{bottom:630.163627pt;}
.y2cf{bottom:630.480000pt;}
.y17{bottom:630.563129pt;}
.y68b{bottom:631.282912pt;}
.y213{bottom:631.283243pt;}
.y1b0{bottom:631.600755pt;}
.y945{bottom:631.760340pt;}
.y87f{bottom:632.399784pt;}
.y789{bottom:632.399946pt;}
.y7f0{bottom:633.040000pt;}
.y8e3{bottom:633.520340pt;}
.y49b{bottom:633.680000pt;}
.y92{bottom:634.239887pt;}
.y133{bottom:634.807411pt;}
.y64d{bottom:635.440330pt;}
.y5e7{bottom:635.599350pt;}
.y710{bottom:635.760000pt;}
.y156{bottom:636.320122pt;}
.y615{bottom:637.041099pt;}
.y2a4{bottom:637.042144pt;}
.yfa{bottom:637.046825pt;}
.y597{bottom:638.080000pt;}
.y571{bottom:638.080219pt;}
.y2fa{bottom:638.560572pt;}
.y521{bottom:638.720000pt;}
.y8a5{bottom:639.359838pt;}
.y75f{bottom:639.360000pt;}
.y427{bottom:639.760715pt;}
.y7be{bottom:639.920330pt;}
.y72d{bottom:640.400168pt;}
.y6da{bottom:640.641493pt;}
.y676{bottom:641.360000pt;}
.y404{bottom:641.682474pt;}
.yc5{bottom:642.480625pt;}
.y6b5{bottom:643.040330pt;}
.y37e{bottom:644.001152pt;}
.y1af{bottom:644.560603pt;}
.y192{bottom:644.561760pt;}
.y3af{bottom:644.563243pt;}
.y16{bottom:644.962557pt;}
.y23e{bottom:645.600000pt;}
.y68a{bottom:645.682528pt;}
.y212{bottom:645.682858pt;}
.y788{bottom:646.879784pt;}
.y87e{bottom:646.879838pt;}
.y854{bottom:646.880000pt;}
.y824{bottom:646.880384pt;}
.y7ef{bottom:647.440000pt;}
.y914{bottom:647.440715pt;}
.y50{bottom:647.999887pt;}
.y49a{bottom:648.160000pt;}
.y91{bottom:648.560128pt;}
.y155{bottom:649.279970pt;}
.y132{bottom:649.287283pt;}
.y4f0{bottom:649.519893pt;}
.y64c{bottom:649.839946pt;}
.y5e6{bottom:650.079404pt;}
.y465{bottom:650.160603pt;}
.y70f{bottom:650.240000pt;}
.y34d{bottom:651.360000pt;}
.y614{bottom:651.521152pt;}
.y2a3{bottom:651.522197pt;}
.yf9{bottom:651.526697pt;}
.y2ce{bottom:652.400000pt;}
.y596{bottom:652.480000pt;}
.y2f9{bottom:652.962474pt;}
.y944{bottom:653.679946pt;}
.y8a4{bottom:653.759454pt;}
.y75e{bottom:653.760000pt;}
.y426{bottom:654.240768pt;}
.y7bd{bottom:654.400384pt;}
.y72c{bottom:654.799784pt;}
.y8e2{bottom:655.439246pt;}
.y675{bottom:655.760000pt;}
.y403{bottom:656.082090pt;}
.y6b4{bottom:657.439946pt;}
.y4e8{bottom:657.440000pt;}
.y1ae{bottom:657.600604pt;}
.y37d{bottom:658.400768pt;}
.y191{bottom:659.041813pt;}
.y3ae{bottom:659.043296pt;}
.y15{bottom:659.442429pt;}
.y8d2{bottom:659.998906pt;}
.y570{bottom:660.079946pt;}
.y689{bottom:660.162582pt;}
.y211{bottom:660.162912pt;}
.y520{bottom:660.640000pt;}
.y853{bottom:661.278965pt;}
.y787{bottom:661.279400pt;}
.y87d{bottom:661.279454pt;}
.y823{bottom:661.280168pt;}
.y7ee{bottom:661.920000pt;}
.y913{bottom:661.920768pt;}
.y154{bottom:662.239819pt;}
.y4f{bottom:662.320128pt;}
.y499{bottom:662.480000pt;}
.y6d9{bottom:662.481602pt;}
.yc4{bottom:662.720000pt;}
.y90{bottom:663.047736pt;}
.y131{bottom:663.607525pt;}
.y4ef{bottom:663.999946pt;}
.y64b{bottom:664.320000pt;}
.y5e5{bottom:664.559458pt;}
.y70e{bottom:664.720000pt;}
.y613{bottom:665.920768pt;}
.y2a2{bottom:665.921813pt;}
.yf8{bottom:665.926125pt;}
.y2cd{bottom:666.880000pt;}
.y2f8{bottom:667.362090pt;}
.y75d{bottom:668.160000pt;}
.y425{bottom:668.640384pt;}
.y7bc{bottom:668.800572pt;}
.y3e7{bottom:668.959049pt;}
.y72b{bottom:669.279838pt;}
.y8e1{bottom:669.838862pt;}
.y674{bottom:670.240000pt;}
.y1ad{bottom:670.560453pt;}
.y402{bottom:670.562144pt;}
.y6b3{bottom:671.920000pt;}
.y464{bottom:672.160330pt;}
.y37c{bottom:672.800384pt;}
.y190{bottom:673.441429pt;}
.y3ad{bottom:673.442912pt;}
.y14{bottom:673.841858pt;}
.y56f{bottom:674.560000pt;}
.y688{bottom:674.562197pt;}
.y210{bottom:674.562528pt;}
.y822{bottom:675.679784pt;}
.y8a3{bottom:675.680000pt;}
.y7ed{bottom:676.320000pt;}
.y912{bottom:676.320384pt;}
.y153{bottom:676.560000pt;}
.y4e{bottom:676.800000pt;}
.y498{bottom:676.960000pt;}
.y6d8{bottom:676.961655pt;}
.y8f{bottom:677.447165pt;}
.y130{bottom:678.087397pt;}
.y4ee{bottom:678.480000pt;}
.y23d{bottom:678.560000pt;}
.y5e4{bottom:678.879893pt;}
.y70d{bottom:679.040000pt;}
.y612{bottom:680.320384pt;}
.y2a1{bottom:680.321429pt;}
.yf7{bottom:680.325553pt;}
.y34c{bottom:680.479891pt;}
.y595{bottom:681.360000pt;}
.y2f7{bottom:681.842144pt;}
.y8d1{bottom:681.919452pt;}
.y51f{bottom:682.560000pt;}
.y424{bottom:683.040219pt;}
.y7bb{bottom:683.199295pt;}
.y852{bottom:683.199511pt;}
.y786{bottom:683.199946pt;}
.y87c{bottom:683.200000pt;}
.y1ac{bottom:683.520301pt;}
.y8e0{bottom:684.318916pt;}
.y4cb{bottom:684.480000pt;}
.y673{bottom:684.640000pt;}
.y401{bottom:684.961760pt;}
.y463{bottom:686.559946pt;}
.y64a{bottom:687.120330pt;}
.y3e6{bottom:687.199568pt;}
.y37b{bottom:687.202086pt;}
.y18f{bottom:687.841045pt;}
.y3ac{bottom:687.842528pt;}
.y13{bottom:688.241286pt;}
.y2cc{bottom:688.880000pt;}
.y687{bottom:688.961813pt;}
.y20f{bottom:688.962144pt;}
.y943{bottom:690.079842pt;}
.y75c{bottom:690.080384pt;}
.y8a2{bottom:690.159295pt;}
.y821{bottom:690.159838pt;}
.y7ec{bottom:690.720000pt;}
.y911{bottom:690.720340pt;}
.y72a{bottom:691.200384pt;}
.y4d{bottom:691.280000pt;}
.y497{bottom:691.440000pt;}
.y6d7{bottom:691.441709pt;}
.y8e{bottom:691.846593pt;}
.y12f{bottom:692.486825pt;}
.y5e3{bottom:693.359946pt;}
.y70c{bottom:693.520000pt;}
.y2a0{bottom:694.721045pt;}
.y611{bottom:694.723899pt;}
.yf6{bottom:694.724982pt;}
.y2f6{bottom:696.241760pt;}
.y1ab{bottom:696.480150pt;}
.y51e{bottom:696.960000pt;}
.y56e{bottom:697.360725pt;}
.y87b{bottom:697.678965pt;}
.y851{bottom:697.679565pt;}
.y785{bottom:697.680015pt;}
.y8df{bottom:698.798969pt;}
.y4ca{bottom:698.880000pt;}
.y672{bottom:699.040000pt;}
.y400{bottom:699.361376pt;}
.y4ed{bottom:700.880000pt;}
.y462{bottom:701.041041pt;}
.y3e5{bottom:701.599184pt;}
.y649{bottom:701.600384pt;}
.y18e{bottom:702.240661pt;}
.y3ab{bottom:702.242144pt;}
.y12{bottom:702.721158pt;}
.y594{bottom:703.200000pt;}
.y686{bottom:703.361429pt;}
.y20e{bottom:703.361760pt;}
.y8d0{bottom:703.919180pt;}
.yc3{bottom:704.322799pt;}
.y942{bottom:704.479458pt;}
.y8a1{bottom:704.479730pt;}
.y75b{bottom:704.480219pt;}
.y820{bottom:704.480273pt;}
.y423{bottom:705.039946pt;}
.y7ba{bottom:705.119842pt;}
.y7eb{bottom:705.200000pt;}
.y729{bottom:705.599730pt;}
.y4c{bottom:705.600000pt;}
.y496{bottom:705.760000pt;}
.y6d6{bottom:705.762144pt;}
.y8d{bottom:706.326465pt;}
.y12e{bottom:706.886253pt;}
.y5e2{bottom:707.838265pt;}
.y70b{bottom:707.920000pt;}
.y29f{bottom:709.201099pt;}
.y37a{bottom:709.201813pt;}
.yf5{bottom:709.204854pt;}
.y1aa{bottom:709.520151pt;}
.y2f5{bottom:710.641376pt;}
.y2cb{bottom:710.720000pt;}
.y454{bottom:710.800000pt;}
.y51d{bottom:711.440000pt;}
.y56d{bottom:711.840778pt;}
.y87a{bottom:711.999400pt;}
.y850{bottom:712.000128pt;}
.y784{bottom:712.000256pt;}
.y910{bottom:712.640991pt;}
.y8de{bottom:713.119404pt;}
.y4c9{bottom:713.280000pt;}
.y671{bottom:713.520000pt;}
.y3ff{bottom:713.841429pt;}
.y648{bottom:716.000000pt;}
.y3e4{bottom:716.079238pt;}
.y18d{bottom:716.720715pt;}
.y3aa{bottom:716.722197pt;}
.y610{bottom:716.723627pt;}
.y11{bottom:717.120586pt;}
.y685{bottom:717.841483pt;}
.y20d{bottom:717.841813pt;}
.yc2{bottom:718.802671pt;}
.y941{bottom:718.959511pt;}
.y8a0{bottom:718.959784pt;}
.y7b9{bottom:719.519458pt;}
.y7ea{bottom:719.520000pt;}
.y422{bottom:719.520994pt;}
.y728{bottom:720.079784pt;}
.y4b{bottom:720.080128pt;}
.y23c{bottom:720.161760pt;}
.y495{bottom:720.240000pt;}
.y6d5{bottom:720.242197pt;}
.y8c{bottom:720.725893pt;}
.y12d{bottom:721.366125pt;}
.y270{bottom:722.159781pt;}
.y70a{bottom:722.320000pt;}
.y1a9{bottom:722.479999pt;}
.y461{bottom:722.960330pt;}
.y29e{bottom:723.600715pt;}
.y379{bottom:723.601429pt;}
.yf4{bottom:723.604282pt;}
.y2f4{bottom:725.121429pt;}
.y2ca{bottom:725.200000pt;}
.y8cf{bottom:725.839726pt;}
.y56c{bottom:726.161213pt;}
.y879{bottom:726.479454pt;}
.y84f{bottom:726.479838pt;}
.y75a{bottom:726.479946pt;}
.y81f{bottom:726.480000pt;}
.y783{bottom:726.480128pt;}
.y90f{bottom:727.121045pt;}
.y8dd{bottom:727.599458pt;}
.y4c8{bottom:727.760000pt;}
.y670{bottom:727.920000pt;}
.y3fe{bottom:728.241045pt;}
.y5e1{bottom:729.678373pt;}
.y18c{bottom:731.120330pt;}
.y3a9{bottom:731.121813pt;}
.y60f{bottom:731.123243pt;}
.y10{bottom:731.520015pt;}
.y684{bottom:732.241099pt;}
.y20c{bottom:732.241429pt;}
.yc1{bottom:733.282543pt;}
.y51c{bottom:733.360000pt;}
.y940{bottom:733.439565pt;}
.y89f{bottom:733.439838pt;}
.y421{bottom:733.841429pt;}
.y7b8{bottom:733.999511pt;}
.y7e9{bottom:734.000000pt;}
.y727{bottom:734.559838pt;}
.y4a{bottom:734.560000pt;}
.y494{bottom:734.640000pt;}
.y23b{bottom:734.641813pt;}
.y1a8{bottom:735.520000pt;}
.y12c{bottom:735.765553pt;}
.y709{bottom:736.800000pt;}
.y460{bottom:737.359946pt;}
.y3e3{bottom:737.999784pt;}
.y29d{bottom:738.000330pt;}
.y378{bottom:738.001045pt;}
.yf3{bottom:738.003710pt;}
.y647{bottom:738.800833pt;}
.y1a7{bottom:739.280000pt;}
.y2f3{bottom:739.521045pt;}
.y56b{bottom:740.641267pt;}
.y81e{bottom:740.958965pt;}
.y759{bottom:740.959349pt;}
.y90e{bottom:741.520661pt;}
.y8dc{bottom:742.079511pt;}
.y4c7{bottom:742.080000pt;}
.y66f{bottom:742.320000pt;}
.y3fd{bottom:742.640661pt;}
.y8b{bottom:742.645553pt;}
.y26f{bottom:742.720000pt;}
.y5e0{bottom:744.158427pt;}
.y18b{bottom:745.519946pt;}
.y3a8{bottom:745.521429pt;}
.y60e{bottom:745.522858pt;}
.yf{bottom:745.999887pt;}
.y683{bottom:746.640715pt;}
.y20b{bottom:746.641045pt;}
.y2c9{bottom:747.200000pt;}
.yc0{bottom:747.681971pt;}
.y93f{bottom:747.760000pt;}
.y8ce{bottom:747.760273pt;}
.y420{bottom:748.321483pt;}
.y84e{bottom:748.400384pt;}
.y878{bottom:748.400572pt;}
.y7b7{bottom:748.479565pt;}
.y7e8{bottom:748.480000pt;}
.y49{bottom:748.880000pt;}
.y726{bottom:748.880273pt;}
.y493{bottom:749.040000pt;}
.y23a{bottom:749.041429pt;}
.y1ff{bottom:749.360000pt;}
.y708{bottom:751.200000pt;}
.y45f{bottom:751.839838pt;}
.y3e2{bottom:752.399400pt;}
.y29c{bottom:752.480384pt;}
.y377{bottom:752.481099pt;}
.y646{bottom:753.280887pt;}
.y1a6{bottom:753.440379pt;}
.y2f2{bottom:753.920661pt;}
.y56a{bottom:755.121321pt;}
.y81d{bottom:755.279400pt;}
.y758{bottom:755.279784pt;}
.y89e{bottom:755.279946pt;}
.y51b{bottom:755.280000pt;}
.y90d{bottom:756.000715pt;}
.y8db{bottom:756.399946pt;}
.y4c6{bottom:756.560000pt;}
.y3fc{bottom:757.120715pt;}
.y8a{bottom:757.125425pt;}
.y12b{bottom:757.685214pt;}
.y5df{bottom:758.638481pt;}
.y18a{bottom:760.000000pt;}
.y3a7{bottom:760.001483pt;}
.y60d{bottom:760.002912pt;}
.yf2{bottom:760.003814pt;}
.ye{bottom:760.320128pt;}
.y682{bottom:761.120768pt;}
.y20a{bottom:761.121099pt;}
.y2c8{bottom:761.600000pt;}
.ybf{bottom:762.081399pt;}
.y41f{bottom:762.721099pt;}
.y84d{bottom:762.799677pt;}
.y877{bottom:762.799730pt;}
.y7b6{bottom:762.800256pt;}
.y48{bottom:763.360128pt;}
.y26e{bottom:763.441706pt;}
.y492{bottom:763.520000pt;}
.y239{bottom:763.521483pt;}
.y66e{bottom:764.000000pt;}
.y707{bottom:765.600000pt;}
.y29b{bottom:766.880000pt;}
.y376{bottom:766.880715pt;}
.y645{bottom:767.760941pt;}
.y2f1{bottom:768.400715pt;}
.y569{bottom:769.441755pt;}
.y93e{bottom:769.759404pt;}
.y81c{bottom:769.759454pt;}
.y89d{bottom:769.759784pt;}
.y757{bottom:769.759838pt;}
.y51a{bottom:769.760000pt;}
.y7e7{bottom:770.400000pt;}
.y90c{bottom:770.400330pt;}
.y8da{bottom:770.880000pt;}
.y725{bottom:770.880128pt;}
.y4c5{bottom:771.040000pt;}
.y3fb{bottom:771.520330pt;}
.y89{bottom:771.524854pt;}
.y12a{bottom:772.165086pt;}
.y5de{bottom:772.958916pt;}
.y45e{bottom:773.760384pt;}
.y3e1{bottom:774.319946pt;}
.y3a6{bottom:774.401099pt;}
.y60c{bottom:774.402528pt;}
.yf1{bottom:774.403243pt;}
.yd{bottom:774.800000pt;}
.y681{bottom:775.520384pt;}
.y209{bottom:775.520715pt;}
.ybe{bottom:776.561271pt;}
.y5b5{bottom:776.800000pt;}
.y41e{bottom:777.120715pt;}
.y84c{bottom:777.279730pt;}
.y876{bottom:777.279784pt;}
.y7b5{bottom:777.280128pt;}
.y47{bottom:777.840000pt;}
.y491{bottom:777.920000pt;}
.y238{bottom:777.921099pt;}
.y26d{bottom:777.921760pt;}
.y706{bottom:780.080000pt;}
.y375{bottom:781.280330pt;}
.y644{bottom:782.081376pt;}
.y189{bottom:782.480000pt;}
.y2f0{bottom:782.800330pt;}
.y2c7{bottom:783.520000pt;}
.y568{bottom:783.921809pt;}
.y93d{bottom:784.239458pt;}
.y8cd{bottom:784.239784pt;}
.y89c{bottom:784.239838pt;}
.y756{bottom:784.239891pt;}
.y519{bottom:784.240000pt;}
.y7e6{bottom:784.799946pt;}
.y724{bottom:785.358965pt;}
.y4c4{bottom:785.360000pt;}
.y31c{bottom:785.442858pt;}
.y3fa{bottom:785.919946pt;}
.y88{bottom:785.924282pt;}
.y129{bottom:786.564514pt;}
.y5dd{bottom:787.438969pt;}
.y45d{bottom:788.160115pt;}
.y3e0{bottom:788.800000pt;}
.y3a5{bottom:788.800715pt;}
.y3de{bottom:788.802144pt;}
.yf0{bottom:788.802671pt;}
.y29a{bottom:789.360000pt;}
.y208{bottom:789.920330pt;}
.y680{bottom:789.922470pt;}
.ybd{bottom:790.960700pt;}
.y5b4{bottom:791.280000pt;}
.y41d{bottom:791.600768pt;}
.y782{bottom:791.680384pt;}
.y81b{bottom:791.680572pt;}
.y7b4{bottom:791.759295pt;}
.y84b{bottom:791.759784pt;}
.y875{bottom:791.759838pt;}
.y46{bottom:792.160128pt;}
.y490{bottom:792.320000pt;}
.y237{bottom:792.320715pt;}
.y26c{bottom:792.321376pt;}
.y8d9{bottom:792.800330pt;}
.y3df{bottom:793.120000pt;}
.y705{bottom:794.480000pt;}
.y374{bottom:795.760384pt;}
.y643{bottom:796.561429pt;}
.y2ef{bottom:797.199946pt;}
.yc{bottom:797.840167pt;}
.y2c6{bottom:798.000000pt;}
.y567{bottom:798.321425pt;}
.y93c{bottom:798.559893pt;}
.y8cc{bottom:798.560219pt;}
.y7e5{bottom:799.280000pt;}
.y723{bottom:799.679400pt;}
.y4c3{bottom:799.840000pt;}
.y31b{bottom:799.842474pt;}
.y3f9{bottom:800.401597pt;}
.y87{bottom:800.404154pt;}
.y128{bottom:800.963942pt;}
.y5dc{bottom:801.919023pt;}
.y3dd{bottom:803.201760pt;}
.y3a4{bottom:803.280768pt;}
.y60b{bottom:803.282197pt;}
.yef{bottom:803.282543pt;}
.y207{bottom:804.400384pt;}
.ybc{bottom:805.360128pt;}
.y5b3{bottom:805.680000pt;}
.y41c{bottom:806.000384pt;}
.y81a{bottom:806.079677pt;}
.y781{bottom:806.079784pt;}
.y89b{bottom:806.079946pt;}
.y518{bottom:806.080000pt;}
.y84a{bottom:806.080219pt;}
.y45{bottom:806.640000pt;}
.y4ec{bottom:806.800000pt;}
.y236{bottom:806.800768pt;}
.y26b{bottom:806.801429pt;}
.y8d8{bottom:807.280384pt;}
.y704{bottom:808.880000pt;}
.y45c{bottom:810.080661pt;}
.y373{bottom:810.160000pt;}
.y642{bottom:810.961045pt;}
.y2ee{bottom:811.680000pt;}
.y67f{bottom:811.922197pt;}
.y593{bottom:812.400000pt;}
.y566{bottom:812.721041pt;}
.y93b{bottom:813.039946pt;}
.y17c{bottom:813.520000pt;}
.y7b3{bottom:813.599404pt;}
.y874{bottom:813.599946pt;}
.y7e4{bottom:813.600000pt;}
.y722{bottom:814.159454pt;}
.y48f{bottom:814.240000pt;}
.y188{bottom:814.240661pt;}
.y4c2{bottom:814.320000pt;}
.y31a{bottom:814.322528pt;}
.y86{bottom:814.803582pt;}
.y127{bottom:815.443814pt;}
.y5db{bottom:816.239458pt;}
.y3a3{bottom:817.680384pt;}
.y3dc{bottom:817.681813pt;}
.yee{bottom:817.681971pt;}
.yb{bottom:818.000625pt;}
.y206{bottom:818.800572pt;}
.y547{bottom:818.800883pt;}
.ybb{bottom:819.840000pt;}
.y2c5{bottom:819.920000pt;}
.y41b{bottom:820.400000pt;}
.y819{bottom:820.559730pt;}
.y755{bottom:820.559838pt;}
.y8cb{bottom:820.559946pt;}
.y44{bottom:821.120000pt;}
.y4eb{bottom:821.200000pt;}
.y235{bottom:821.200384pt;}
.y6b2{bottom:821.200715pt;}
.y26a{bottom:821.201045pt;}
.y90b{bottom:821.201760pt;}
.y299{bottom:821.202144pt;}
.y8d7{bottom:821.680000pt;}
.y3f8{bottom:822.322144pt;}
.y703{bottom:823.360000pt;}
.y45b{bottom:824.560715pt;}
.y641{bottom:825.360661pt;}
.y67e{bottom:826.321813pt;}
.y565{bottom:827.201095pt;}
.y5b2{bottom:827.360000pt;}
.y93a{bottom:827.520000pt;}
.y7b2{bottom:828.079458pt;}
.y849{bottom:828.079946pt;}
.y517{bottom:828.080000pt;}
.y873{bottom:828.080128pt;}
.y4c1{bottom:828.640000pt;}
.y48e{bottom:828.720000pt;}
.y187{bottom:828.720715pt;}
.y319{bottom:828.722144pt;}
.y126{bottom:829.843243pt;}
.y5da{bottom:830.719511pt;}
.y3a2{bottom:832.080000pt;}
.yed{bottom:832.081399pt;}
.y3db{bottom:832.081429pt;}
.y372{bottom:832.640000pt;}
.y205{bottom:833.200000pt;}
.y592{bottom:834.320000pt;}
.y818{bottom:835.039784pt;}
.y754{bottom:835.039891pt;}
.y8ca{bottom:835.040088pt;}
.y43{bottom:835.440000pt;}
.y4ea{bottom:835.600000pt;}
.y6b1{bottom:835.600330pt;}
.y269{bottom:835.600661pt;}
.y234{bottom:835.601160pt;}
.y90a{bottom:835.601376pt;}
.y298{bottom:835.601760pt;}
.y721{bottom:836.080572pt;}
.y3f7{bottom:836.721760pt;}
.y85{bottom:836.723243pt;}
.y702{bottom:837.760000pt;}
.ya{bottom:838.240000pt;}
.y45a{bottom:839.040768pt;}
.y640{bottom:839.840715pt;}
.y546{bottom:840.721429pt;}
.y2c4{bottom:841.840000pt;}
.y2ed{bottom:842.240000pt;}
.y7b1{bottom:842.559511pt;}
.y516{bottom:842.560000pt;}
.y848{bottom:842.560222pt;}
.y41a{bottom:842.880000pt;}
.y48d{bottom:843.120000pt;}
.y186{bottom:843.120330pt;}
.y318{bottom:843.121760pt;}
.y8d6{bottom:843.600277pt;}
.y125{bottom:844.242671pt;}
.y5d9{bottom:845.199565pt;}
.y3da{bottom:846.481045pt;}
.yec{bottom:846.561271pt;}
.y60a{bottom:846.561483pt;}
.y5b1{bottom:848.080000pt;}
.y564{bottom:849.120384pt;}
.y939{bottom:849.359946pt;}
.y817{bottom:849.360219pt;}
.y8c9{bottom:849.360523pt;}
.y42{bottom:849.920128pt;}
.y66d{bottom:850.000000pt;}
.y6b0{bottom:850.080384pt;}
.y268{bottom:850.080715pt;}
.y909{bottom:850.081429pt;}
.y297{bottom:850.081813pt;}
.yba{bottom:850.400000pt;}
.y720{bottom:850.480000pt;}
.y3f6{bottom:851.201813pt;}
.y84{bottom:851.203115pt;}
.y1d4{bottom:852.000000pt;}
.y701{bottom:852.160000pt;}
.y459{bottom:853.440384pt;}
.y63f{bottom:854.240330pt;}
.y3a1{bottom:854.560000pt;}
.y545{bottom:855.201483pt;}
.y204{bottom:855.681388pt;}
.y2c3{bottom:856.320000pt;}
.y7b0{bottom:856.879946pt;}
.y515{bottom:856.880000pt;}
.y780{bottom:856.880470pt;}
.y847{bottom:856.880657pt;}
.y4e9{bottom:857.520000pt;}
.y233{bottom:857.521706pt;}
.y48c{bottom:857.600000pt;}
.y185{bottom:857.600384pt;}
.y317{bottom:857.601813pt;}
.y8d5{bottom:858.080330pt;}
.y124{bottom:858.722543pt;}
.y5d8{bottom:859.520000pt;}
.yeb{bottom:860.960700pt;}
.y3d9{bottom:860.961099pt;}
.y5b0{bottom:862.560000pt;}
.y563{bottom:863.520000pt;}
.y938{bottom:863.840000pt;}
.y8c8{bottom:863.840577pt;}
.y41{bottom:864.400000pt;}
.y267{bottom:864.480330pt;}
.y6af{bottom:864.480829pt;}
.y908{bottom:864.481045pt;}
.y296{bottom:864.481429pt;}
.y3f5{bottom:865.601429pt;}
.y83{bottom:865.602543pt;}
.y700{bottom:866.640000pt;}
.y458{bottom:867.840657pt;}
.y5a9{bottom:868.320000pt;}
.y63e{bottom:868.639946pt;}
.y544{bottom:869.601099pt;}
.y7b{bottom:870.799759pt;}
.y816{bottom:871.359946pt;}
.y514{bottom:871.360000pt;}
.y7af{bottom:871.360128pt;}
.y753{bottom:871.360523pt;}
.y846{bottom:871.360710pt;}
.y4c0{bottom:871.919867pt;}
.y184{bottom:872.000000pt;}
.y316{bottom:872.001429pt;}
.y232{bottom:872.001760pt;}
.y8d4{bottom:872.479946pt;}
.y71f{bottom:872.480128pt;}
.y203{bottom:873.040585pt;}
.y123{bottom:873.121971pt;}
.yea{bottom:875.360128pt;}
.y3d8{bottom:875.360715pt;}
.y419{bottom:875.840000pt;}
.y5af{bottom:876.960000pt;}
.y2c2{bottom:878.240000pt;}
.y40{bottom:878.720000pt;}
.y266{bottom:878.879946pt;}
.y66c{bottom:878.880000pt;}
.y7e3{bottom:878.880445pt;}
.y907{bottom:878.880661pt;}
.y295{bottom:878.881045pt;}
.y9{bottom:879.920572pt;}
.y3f4{bottom:880.001045pt;}
.y82{bottom:880.001971pt;}
.y6ff{bottom:881.040000pt;}
.y5d7{bottom:882.079867pt;}
.y63d{bottom:883.120000pt;}
.y543{bottom:884.000715pt;}
.y7a{bottom:885.120000pt;}
.y2ec{bottom:885.759867pt;}
.y937{bottom:885.760330pt;}
.y815{bottom:885.838911pt;}
.y513{bottom:885.840000pt;}
.y752{bottom:885.840577pt;}
.y7ae{bottom:885.841095pt;}
.y48b{bottom:886.400000pt;}
.y315{bottom:886.401045pt;}
.y183{bottom:886.401376pt;}
.y71e{bottom:886.959454pt;}
.y8d3{bottom:886.960000pt;}
.y122{bottom:887.521399pt;}
.y3d7{bottom:889.760330pt;}
.ye9{bottom:889.840000pt;}
.y457{bottom:889.840384pt;}
.y609{bottom:889.840768pt;}
.y202{bottom:890.320000pt;}
.y5a8{bottom:891.360000pt;}
.y5ae{bottom:891.440000pt;}
.y2c1{bottom:892.640000pt;}
.yb9{bottom:893.119621pt;}
.y3f{bottom:893.200000pt;}
.y77f{bottom:893.279813pt;}
.y872{bottom:893.279995pt;}
.y66b{bottom:893.280000pt;}
.y7e2{bottom:893.360499pt;}
.y906{bottom:893.360715pt;}
.y294{bottom:893.361099pt;}
.y265{bottom:893.361425pt;}
.y8{bottom:894.320000pt;}
.y3f3{bottom:894.481099pt;}
.y81{bottom:894.481843pt;}
.y6fe{bottom:895.440000pt;}
.y542{bottom:898.480768pt;}
.y79{bottom:899.600000pt;}
.y814{bottom:900.159346pt;}
.y936{bottom:900.159946pt;}
.y2eb{bottom:900.160000pt;}
.y8c7{bottom:900.160273pt;}
.y4bf{bottom:900.800000pt;}
.y48a{bottom:900.880000pt;}
.y314{bottom:900.881099pt;}
.y182{bottom:900.881429pt;}
.y121{bottom:902.001271pt;}
.y456{bottom:904.240000pt;}
.y3d6{bottom:904.240384pt;}
.y5a7{bottom:905.840000pt;}
.y63c{bottom:905.920330pt;}
.y66a{bottom:907.680000pt;}
.y1d9{bottom:907.681371pt;}
.y751{bottom:907.759315pt;}
.y512{bottom:907.759867pt;}
.y7e1{bottom:907.760115pt;}
.y871{bottom:907.760168pt;}
.y905{bottom:907.760330pt;}
.y7ad{bottom:907.760384pt;}
.y293{bottom:907.760715pt;}
.y71d{bottom:908.880572pt;}
.y3f2{bottom:908.880715pt;}
.y80{bottom:908.881271pt;}
.y7{bottom:908.960000pt;}
.y6fd{bottom:909.919867pt;}
.y1db{bottom:911.440000pt;}
.y1da{bottom:912.079867pt;}
.ye8{bottom:912.320000pt;}
.yb8{bottom:912.800000pt;}
.y541{bottom:912.880384pt;}
.y813{bottom:914.639400pt;}
.y2c0{bottom:914.640000pt;}
.y935{bottom:914.640340pt;}
.y5d6{bottom:914.960000pt;}
.y4be{bottom:915.200000pt;}
.y43a{bottom:915.201045pt;}
.y489{bottom:915.280000pt;}
.y264{bottom:915.280715pt;}
.y181{bottom:915.281045pt;}
.y120{bottom:916.400700pt;}
.y418{bottom:917.520251pt;}
.y3d5{bottom:918.640000pt;}
.y5a6{bottom:920.240000pt;}
.y63b{bottom:920.400384pt;}
.y750{bottom:922.159784pt;}
.y904{bottom:922.159946pt;}
.y845{bottom:922.160000pt;}
.y201{bottom:922.160128pt;}
.y292{bottom:922.160330pt;}
.y7ac{bottom:922.160700pt;}
.y1d8{bottom:922.161425pt;}
.y3e{bottom:922.720000pt;}
.y3f1{bottom:923.280330pt;}
.y7f{bottom:923.280700pt;}
.y6{bottom:925.040000pt;}
.y455{bottom:926.720000pt;}
.y4ad{bottom:927.200000pt;}
.y540{bottom:927.280000pt;}
.y812{bottom:929.119454pt;}
.y78{bottom:929.120000pt;}
.y488{bottom:929.680000pt;}
.y263{bottom:929.680330pt;}
.y180{bottom:929.680661pt;}
.y32d{bottom:929.681099pt;}
.y11f{bottom:930.800128pt;}
.y6fc{bottom:931.840000pt;}
.y417{bottom:931.919867pt;}
.y5a5{bottom:934.720000pt;}
.y63a{bottom:934.800000pt;}
.y934{bottom:936.560330pt;}
.y1d7{bottom:936.561041pt;}
.y74f{bottom:936.639838pt;}
.y200{bottom:936.640000pt;}
.y291{bottom:936.640384pt;}
.y7ab{bottom:936.640572pt;}
.y3f0{bottom:937.760384pt;}
.y7e{bottom:937.760572pt;}
.y4ac{bottom:940.240000pt;}
.y3d4{bottom:941.120000pt;}
.y591{bottom:943.440000pt;}
.y4bd{bottom:944.080000pt;}
.y32c{bottom:944.080715pt;}
.ye7{bottom:944.080828pt;}
.y487{bottom:944.160000pt;}
.y262{bottom:944.160384pt;}
.y17f{bottom:944.160715pt;}
.y5{bottom:944.161271pt;}
.y11e{bottom:945.280000pt;}
.yb7{bottom:945.759867pt;}
.y6fb{bottom:946.240000pt;}
.y5a4{bottom:949.120000pt;}
.y53f{bottom:949.759867pt;}
.y1d6{bottom:950.960657pt;}
.y371{bottom:951.039400pt;}
.y290{bottom:951.039454pt;}
.y2bf{bottom:951.040000pt;}
.y933{bottom:951.040384pt;}
.y7d{bottom:952.160000pt;}
.y4ab{bottom:953.120000pt;}
.y3d{bottom:953.280000pt;}
.y4d4{bottom:954.720000pt;}
.y639{bottom:957.599893pt;}
.y152{bottom:958.480000pt;}
.y150{bottom:958.480330pt;}
.y77{bottom:958.560000pt;}
.y17e{bottom:958.560330pt;}
.y74e{bottom:958.560384pt;}
.y4{bottom:958.560700pt;}
.y6fa{bottom:960.720000pt;}
.y416{bottom:962.480625pt;}
.y27b{bottom:962.560000pt;}
.y27a{bottom:962.562950pt;}
.y151{bottom:962.880000pt;}
.y5a3{bottom:963.520000pt;}
.y590{bottom:965.440000pt;}
.y4aa{bottom:966.160000pt;}
.y11d{bottom:967.679298pt;}
.y4d3{bottom:969.200000pt;}
.y5ad{bottom:971.040000pt;}
.y638{bottom:972.079946pt;}
.y17d{bottom:972.959946pt;}
.y76{bottom:972.960000pt;}
.y3{bottom:972.960128pt;}
.y14f{bottom:972.960384pt;}
.y279{bottom:975.602951pt;}
.y7c{bottom:982.720000pt;}
.y11c{bottom:985.040000pt;}
.y5a2{bottom:985.440000pt;}
.y5ac{bottom:985.520000pt;}
.y637{bottom:986.560000pt;}
.y4a9{bottom:986.642529pt;}
.yb6{bottom:987.360000pt;}
.y2{bottom:987.440000pt;}
.y278{bottom:988.482647pt;}
.y1d5{bottom:1012.000000pt;}
.y75{bottom:1012.080000pt;}
.h1a{height:20.064078pt;}
.h14{height:20.901919pt;}
.h13{height:21.669730pt;}
.h18{height:26.414028pt;}
.h7{height:26.416368pt;}
.h17{height:28.527843pt;}
.ha{height:28.529715pt;}
.h19{height:30.912640pt;}
.h1{height:30.915195pt;}
.hb{height:31.356211pt;}
.h12{height:34.415814pt;}
.h22{height:34.418370pt;}
.hd{height:34.909359pt;}
.h2e{height:36.718500pt;}
.h2b{height:37.713800pt;}
.h10{height:39.621978pt;}
.h6{height:39.625254pt;}
.h30{height:39.945254pt;}
.h16{height:41.216974pt;}
.h4{height:41.219530pt;}
.h39{height:44.107564pt;}
.h24{height:44.109339pt;}
.h1b{height:44.109851pt;}
.h42{height:44.110780pt;}
.h3a{height:44.111114pt;}
.h35{height:44.111626pt;}
.h1e{height:44.111646pt;}
.h38{height:44.112080pt;}
.h11{height:44.112138pt;}
.h2d{height:44.112353pt;}
.h43{height:44.112567pt;}
.h2a{height:44.112788pt;}
.h33{height:44.113002pt;}
.h3b{height:44.113104pt;}
.h32{height:44.113217pt;}
.h3e{height:44.113431pt;}
.h25{height:44.113812pt;}
.h20{height:44.114324pt;}
.h36{height:44.114346pt;}
.h27{height:44.114539pt;}
.h37{height:44.114742pt;}
.h3f{height:44.114957pt;}
.h23{height:44.115171pt;}
.h2{height:44.115414pt;}
.hc{height:44.116086pt;}
.h40{height:44.116278pt;}
.h3d{height:44.116493pt;}
.h3c{height:44.116939pt;}
.h1c{height:44.117555pt;}
.h2f{height:44.119080pt;}
.h8{height:45.778770pt;}
.h28{height:45.802676pt;}
.h29{height:45.807274pt;}
.h1d{height:45.808393pt;}
.h9{height:46.115095pt;}
.h31{height:46.116745pt;}
.h21{height:46.121140pt;}
.h26{height:46.127703pt;}
.h2c{height:46.129715pt;}
.h1f{height:46.129929pt;}
.h15{height:48.017405pt;}
.h3{height:48.021056pt;}
.h34{height:48.022283pt;}
.h41{height:50.805200pt;}
.h44{height:53.509517pt;}
.h5{height:58.434529pt;}
.he{height:58.435729pt;}
.hf{height:58.756179pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:106.800000pt;}
.x3{left:114.240716pt;}
.x4{left:128.640144pt;}
.x20{left:146.000000pt;}
.x5{left:161.040115pt;}
.x2{left:185.040000pt;}
.xc{left:186.800000pt;}
.x14{left:188.800000pt;}
.x27{left:192.560000pt;}
.x1f{left:194.080000pt;}
.x2c{left:195.040000pt;}
.x2f{left:209.919565pt;}
.x22{left:213.520000pt;}
.x8{left:220.640000pt;}
.x10{left:224.240000pt;}
.x11{left:228.000000pt;}
.x3c{left:236.560000pt;}
.x3d{left:239.440000pt;}
.x30{left:249.040000pt;}
.x9{left:256.160000pt;}
.x15{left:272.320000pt;}
.xa{left:291.760000pt;}
.x3e{left:295.760000pt;}
.x3f{left:298.560000pt;}
.x25{left:306.400000pt;}
.x26{left:314.480000pt;}
.x34{left:323.760000pt;}
.x6{left:326.640000pt;}
.x35{left:327.760000pt;}
.x3a{left:365.120000pt;}
.x3b{left:367.920000pt;}
.x39{left:378.560000pt;}
.xd{left:387.840000pt;}
.xe{left:391.920000pt;}
.x37{left:441.200000pt;}
.x1c{left:485.440000pt;}
.x12{left:487.200000pt;}
.x1d{left:489.520000pt;}
.x13{left:493.280000pt;}
.x16{left:530.000000pt;}
.x17{left:534.000000pt;}
.x38{left:544.480000pt;}
.x33{left:562.640000pt;}
.x2d{left:569.680000pt;}
.x19{left:599.280000pt;}
.x1a{left:602.400000pt;}
.x40{left:606.640000pt;}
.x41{left:609.440000pt;}
.x29{left:634.880000pt;}
.x32{left:640.400000pt;}
.x2a{left:643.040000pt;}
.x2e{left:649.518542pt;}
.x36{left:652.720000pt;}
.x31{left:659.999867pt;}
.xf{left:663.759867pt;}
.x23{left:683.679867pt;}
.x1b{left:688.319867pt;}
.x18{left:692.959744pt;}
.x1{left:693.999867pt;}
.x2b{left:696.879200pt;}
.x42{left:698.239867pt;}
.xb{left:699.600000pt;}
.x21{left:702.557455pt;}
.x28{left:706.958348pt;}
.x1e{left:721.200279pt;}
.x24{left:777.837937pt;}
}




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