
    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_b9f2f7839186e9a650290110.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b8b27e33c3c3afceb49087a0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9edbb92c13d612e5a8f6fb4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9240a96185dda96706d824d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c3f3dbbc61fbfc89d0429202.woff')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_8111e7ebd491ddaee54fd031.woff')format("woff");}.ff6{font-family:ff6;line-height:1.179000;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_bdb591f724b2f96e56773263.woff')format("woff");}.ff7{font-family:ff7;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b3c8e26a718b89ee814526fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e995a9aadbd5f5cc635c101.woff')format("woff");}.ff9{font-family:ff9;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a1211dfcae29bce43e0fc494.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_b1088aecbe7a77f00b08488c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_f0743ee2fc89e1f3c75a8e8b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_651a8d2e5f88110bd59d298c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ab6aaff4160d4fae7a9a33cb.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.fff{font-family:fff;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_438943624b00778ee5f840f3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_097cf9e3bbbf7cdb80d2e795.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_362e3da20fda6eeddbb7e1d9.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3038de9e15330e3e4faa9130.woff')format("woff");}.ff13{font-family:ff13;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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:ff16;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff17{font-family:ff17;line-height:0.758789;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-23.301270px;}
.v2{vertical-align:-20.399963px;}
.v6{vertical-align:-1.392092px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400009px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:24.000000px;}
.v5{vertical-align:59.976000px;}
.ls51{letter-spacing:-1.980000px;}
.lsbc{letter-spacing:-1.734000px;}
.ls5e{letter-spacing:-1.581000px;}
.ls57{letter-spacing:-1.440000px;}
.ls5d{letter-spacing:-1.368000px;}
.lsbd{letter-spacing:-1.275000px;}
.lsd4{letter-spacing:-1.224000px;}
.ls50{letter-spacing:-1.080000px;}
.lsd3{letter-spacing:-1.071000px;}
.lsdf{letter-spacing:-1.026000px;}
.ls7b{letter-spacing:-1.020000px;}
.ls55{letter-spacing:-1.008000px;}
.lsbb{letter-spacing:-0.969000px;}
.ls7c{letter-spacing:-0.960000px;}
.lsd8{letter-spacing:-0.918000px;}
.ls54{letter-spacing:-0.900000px;}
.ls92{letter-spacing:-0.840000px;}
.lsd7{letter-spacing:-0.816000px;}
.lsd5{letter-spacing:-0.765000px;}
.ls47{letter-spacing:-0.746640px;}
.ls7d{letter-spacing:-0.720000px;}
.lsd2{letter-spacing:-0.714000px;}
.lsba{letter-spacing:-0.663000px;}
.lsd6{letter-spacing:-0.612000px;}
.lsbe{letter-spacing:-0.561000px;}
.ls56{letter-spacing:-0.540000px;}
.lsb9{letter-spacing:-0.510000px;}
.ls7a{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.468000px;}
.lsde{letter-spacing:-0.459000px;}
.ls6a{letter-spacing:-0.420000px;}
.lsc0{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.360000px;}
.lsa7{letter-spacing:-0.357000px;}
.ls4e{letter-spacing:-0.351360px;}
.ls4d{letter-spacing:-0.307440px;}
.lsa8{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls4c{letter-spacing:-0.263520px;}
.lsbf{letter-spacing:-0.255000px;}
.ls45{letter-spacing:-0.240000px;}
.lsa6{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.lsaa{letter-spacing:-0.153000px;}
.ls4a{letter-spacing:-0.131760px;}
.ls18{letter-spacing:-0.120000px;}
.lse0{letter-spacing:-0.106800px;}
.lsac{letter-spacing:-0.102000px;}
.ls48{letter-spacing:-0.087840px;}
.ls69{letter-spacing:-0.060000px;}
.lsa5{letter-spacing:-0.051000px;}
.ls46{letter-spacing:-0.043920px;}
.ls17{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000039px;}
.ls85{letter-spacing:0.005993px;}
.ls3a{letter-spacing:0.030000px;}
.ls40{letter-spacing:0.043920px;}
.lsa1{letter-spacing:0.051000px;}
.lse5{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.060000px;}
.ls43{letter-spacing:0.087840px;}
.ls9b{letter-spacing:0.102000px;}
.lse6{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.120000px;}
.ls9c{letter-spacing:0.127500px;}
.ls3d{letter-spacing:0.131760px;}
.ls79{letter-spacing:0.150000px;}
.lsb1{letter-spacing:0.153000px;}
.lsc7{letter-spacing:0.172794px;}
.ls41{letter-spacing:0.175680px;}
.lsb8{letter-spacing:0.178500px;}
.ls16{letter-spacing:0.178791px;}
.ls22{letter-spacing:0.180000px;}
.ls5f{letter-spacing:0.204000px;}
.lse1{letter-spacing:0.206400px;}
.ls3f{letter-spacing:0.219600px;}
.ls9a{letter-spacing:0.229500px;}
.ls93{letter-spacing:0.239974px;}
.ls2{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.245972px;}
.ls33{letter-spacing:0.252000px;}
.ls15{letter-spacing:0.255000px;}
.ls42{letter-spacing:0.263520px;}
.lsa0{letter-spacing:0.264000px;}
.ls61{letter-spacing:0.270000px;}
.ls7f{letter-spacing:0.276000px;}
.lsa2{letter-spacing:0.288000px;}
.ls7e{letter-spacing:0.293988px;}
.ls66{letter-spacing:0.299979px;}
.ls76{letter-spacing:0.299986px;}
.ls4{letter-spacing:0.300000px;}
.lsad{letter-spacing:0.306000px;}
.ls44{letter-spacing:0.307440px;}
.ls1d{letter-spacing:0.330000px;}
.ls65{letter-spacing:0.342000px;}
.ls3e{letter-spacing:0.351360px;}
.ls9d{letter-spacing:0.357000px;}
.ls78{letter-spacing:0.359962px;}
.lsc{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.390000px;}
.lsb7{letter-spacing:0.408000px;}
.ls21{letter-spacing:0.420000px;}
.ls6d{letter-spacing:0.438000px;}
.ls25{letter-spacing:0.450000px;}
.ls9e{letter-spacing:0.459000px;}
.ls8{letter-spacing:0.474071px;}
.ls20{letter-spacing:0.480000px;}
.ls49{letter-spacing:0.483120px;}
.ls71{letter-spacing:0.504000px;}
.ls6e{letter-spacing:0.510000px;}
.ls73{letter-spacing:0.527977px;}
.lsd9{letter-spacing:0.535500px;}
.ls9{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.557992px;}
.lsae{letter-spacing:0.561000px;}
.ls84{letter-spacing:0.564000px;}
.ls2d{letter-spacing:0.570000px;}
.ls4b{letter-spacing:0.570960px;}
.ls12{letter-spacing:0.600000px;}
.ls9f{letter-spacing:0.612000px;}
.ls5{letter-spacing:0.630000px;}
.lsc2{letter-spacing:0.637500px;}
.ls75{letter-spacing:0.641982px;}
.lsb{letter-spacing:0.660000px;}
.ls96{letter-spacing:0.663000px;}
.ls94{letter-spacing:0.672000px;}
.lsc1{letter-spacing:0.688500px;}
.ls67{letter-spacing:0.689978px;}
.lsa9{letter-spacing:0.714000px;}
.ls80{letter-spacing:0.719946px;}
.lsa{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.731990px;}
.ls1e{letter-spacing:0.750000px;}
.lsaf{letter-spacing:0.765000px;}
.ls7{letter-spacing:0.780000px;}
.lsc8{letter-spacing:0.790500px;}
.ls68{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.810000px;}
.ls98{letter-spacing:0.816000px;}
.ls1c{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.840000px;}
.ls34{letter-spacing:0.857991px;}
.ls97{letter-spacing:0.867000px;}
.ls29{letter-spacing:0.870000px;}
.lse{letter-spacing:0.900000px;}
.ls81{letter-spacing:0.911975px;}
.ls6b{letter-spacing:0.911993px;}
.lsb5{letter-spacing:0.918000px;}
.ls60{letter-spacing:0.930000px;}
.lsf{letter-spacing:0.960000px;}
.ls35{letter-spacing:0.966000px;}
.lsc3{letter-spacing:0.969000px;}
.ls62{letter-spacing:0.984000px;}
.ls2b{letter-spacing:0.990000px;}
.lsda{letter-spacing:0.994500px;}
.ls23{letter-spacing:1.020000px;}
.ls13{letter-spacing:1.032000px;}
.ls2c{letter-spacing:1.050000px;}
.lsa4{letter-spacing:1.071000px;}
.ls32{letter-spacing:1.080000px;}
.lsd1{letter-spacing:1.096500px;}
.lscb{letter-spacing:1.122000px;}
.lsd{letter-spacing:1.140000px;}
.ls3b{letter-spacing:1.164000px;}
.ls36{letter-spacing:1.170000px;}
.ls99{letter-spacing:1.173000px;}
.ls74{letter-spacing:1.175973px;}
.ls83{letter-spacing:1.175989px;}
.ls2a{letter-spacing:1.200000px;}
.lsb0{letter-spacing:1.224000px;}
.lsc4{letter-spacing:1.231650px;}
.lsc6{letter-spacing:1.231874px;}
.lsc5{letter-spacing:1.232424px;}
.ls24{letter-spacing:1.260000px;}
.lsdc{letter-spacing:1.275000px;}
.ls39{letter-spacing:1.278000px;}
.ls10{letter-spacing:1.320000px;}
.lsa3{letter-spacing:1.326000px;}
.lsce{letter-spacing:1.377000px;}
.ls28{letter-spacing:1.380000px;}
.lsb4{letter-spacing:1.402500px;}
.ls70{letter-spacing:1.410000px;}
.ls63{letter-spacing:1.440000px;}
.lsb3{letter-spacing:1.479000px;}
.ls37{letter-spacing:1.500000px;}
.ls38{letter-spacing:1.530000px;}
.lsdb{letter-spacing:1.555500px;}
.ls1b{letter-spacing:1.560000px;}
.lscc{letter-spacing:1.581000px;}
.ls2e{letter-spacing:1.620000px;}
.ls91{letter-spacing:1.680000px;}
.lsab{letter-spacing:1.683000px;}
.lsb6{letter-spacing:1.734000px;}
.ls8e{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.799990px;}
.ls26{letter-spacing:1.800000px;}
.lsb2{letter-spacing:1.836000px;}
.ls89{letter-spacing:1.859981px;}
.ls72{letter-spacing:1.860000px;}
.lscf{letter-spacing:1.887000px;}
.ls64{letter-spacing:1.920000px;}
.ls95{letter-spacing:1.962000px;}
.ls31{letter-spacing:1.980000px;}
.ls8b{letter-spacing:2.010000px;}
.ls82{letter-spacing:2.040000px;}
.ls90{letter-spacing:2.100000px;}
.ls6f{letter-spacing:2.160000px;}
.lsdd{letter-spacing:2.193000px;}
.ls8f{letter-spacing:2.220000px;}
.lsca{letter-spacing:2.244000px;}
.ls77{letter-spacing:2.280000px;}
.ls3c{letter-spacing:2.340000px;}
.ls8a{letter-spacing:2.346000px;}
.lscd{letter-spacing:2.371500px;}
.ls86{letter-spacing:2.400000px;}
.ls8d{letter-spacing:2.460000px;}
.ls8c{letter-spacing:2.640000px;}
.lsc9{letter-spacing:2.652000px;}
.lsd0{letter-spacing:2.947800px;}
.ls87{letter-spacing:3.060000px;}
.ls0{letter-spacing:3.990000px;}
.ls58{letter-spacing:40.608000px;}
.ls5b{letter-spacing:44.568000px;}
.ls59{letter-spacing:47.196000px;}
.ls53{letter-spacing:50.616000px;}
.ls5a{letter-spacing:51.192000px;}
.lse4{letter-spacing:64.026720px;}
.lse3{letter-spacing:64.206720px;}
.ls5c{letter-spacing:64.548000px;}
.ls52{letter-spacing:119.448000px;}
.lse2{letter-spacing:845.741280px;}
.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;}
}
.ws12d{word-spacing:-59.760000px;}
.ws129{word-spacing:-16.560000px;}
.ws89{word-spacing:-15.960000px;}
.ws29{word-spacing:-15.900000px;}
.ws28{word-spacing:-15.870000px;}
.ws2{word-spacing:-15.789000px;}
.wsaf{word-spacing:-15.780000px;}
.wsbf{word-spacing:-15.660000px;}
.ws88{word-spacing:-15.540000px;}
.ws27{word-spacing:-15.360000px;}
.ws47{word-spacing:-15.300000px;}
.wsa4{word-spacing:-15.240000px;}
.ws12c{word-spacing:-15.146400px;}
.ws12f{word-spacing:-15.046800px;}
.ws8{word-spacing:-15.000000px;}
.ws12e{word-spacing:-14.993280px;}
.ws87{word-spacing:-14.940000px;}
.ws12a{word-spacing:-14.833200px;}
.ws12b{word-spacing:-14.580000px;}
.ws120{word-spacing:-13.770000px;}
.ws110{word-spacing:-13.719000px;}
.ws122{word-spacing:-13.209000px;}
.ws83{word-spacing:-13.005000px;}
.ws82{word-spacing:-12.954000px;}
.wsc3{word-spacing:-12.852000px;}
.ws53{word-spacing:-12.780720px;}
.wsd{word-spacing:-12.750000px;}
.ws121{word-spacing:-12.699000px;}
.ws51{word-spacing:-12.692880px;}
.wsfa{word-spacing:-12.495000px;}
.ws112{word-spacing:-12.444000px;}
.ws3{word-spacing:-12.420000px;}
.ws54{word-spacing:-12.385440px;}
.ws58{word-spacing:-12.341520px;}
.ws4f{word-spacing:-12.253680px;}
.wse1{word-spacing:-12.240000px;}
.ws4c{word-spacing:-12.209760px;}
.ws4d{word-spacing:-12.165840px;}
.ws7{word-spacing:-12.150000px;}
.ws50{word-spacing:-12.121920px;}
.ws52{word-spacing:-12.078000px;}
.ws9{word-spacing:-12.060000px;}
.ws104{word-spacing:-11.985000px;}
.ws55{word-spacing:-11.946240px;}
.ws56{word-spacing:-11.902320px;}
.ws57{word-spacing:-11.858400px;}
.wsa{word-spacing:-11.520000px;}
.wse2{word-spacing:-11.475000px;}
.ws4e{word-spacing:-11.463120px;}
.ws6{word-spacing:-11.400000px;}
.ws1{word-spacing:-9.996000px;}
.wsc2{word-spacing:-9.894000px;}
.ws128{word-spacing:-9.720000px;}
.ws6f{word-spacing:-9.000000px;}
.wsc{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws78{word-spacing:-8.100000px;}
.ws15{word-spacing:-7.500000px;}
.ws74{word-spacing:-4.500000px;}
.wsb8{word-spacing:-2.640000px;}
.wsb9{word-spacing:-2.460000px;}
.wsb6{word-spacing:-2.340000px;}
.wsbc{word-spacing:-2.220000px;}
.wsc1{word-spacing:-2.160000px;}
.wsb7{word-spacing:-2.040000px;}
.wsba{word-spacing:-1.920000px;}
.wsaa{word-spacing:-1.860000px;}
.ws8f{word-spacing:-1.800000px;}
.wsbb{word-spacing:-1.740000px;}
.ws124{word-spacing:-1.581000px;}
.ws61{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws43{word-spacing:-1.440000px;}
.ws91{word-spacing:-1.380000px;}
.ws10{word-spacing:-1.320000px;}
.ws85{word-spacing:-1.275000px;}
.wsfc{word-spacing:-1.267350px;}
.ws1b{word-spacing:-1.260000px;}
.wsf4{word-spacing:-1.224000px;}
.ws4a{word-spacing:-1.200000px;}
.wsda{word-spacing:-1.173000px;}
.wsb1{word-spacing:-1.140000px;}
.ws11b{word-spacing:-1.122000px;}
.wsa6{word-spacing:-1.080000px;}
.wsd3{word-spacing:-1.071000px;}
.ws19{word-spacing:-1.020000px;}
.wsd1{word-spacing:-0.969000px;}
.ws98{word-spacing:-0.960000px;}
.wsea{word-spacing:-0.918000px;}
.ws31{word-spacing:-0.900000px;}
.ws113{word-spacing:-0.867000px;}
.ws45{word-spacing:-0.840000px;}
.ws10f{word-spacing:-0.816000px;}
.ws18{word-spacing:-0.780000px;}
.wsd4{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsd5{word-spacing:-0.714000px;}
.ws95{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.612000px;}
.ws8b{word-spacing:-0.600000px;}
.wsd9{word-spacing:-0.561000px;}
.ws8d{word-spacing:-0.540000px;}
.wsd0{word-spacing:-0.510000px;}
.ws6a{word-spacing:-0.483120px;}
.ws37{word-spacing:-0.480000px;}
.ws7e{word-spacing:-0.468000px;}
.ws127{word-spacing:-0.459000px;}
.ws34{word-spacing:-0.420000px;}
.ws26{word-spacing:-0.408000px;}
.ws2d{word-spacing:-0.360000px;}
.wsec{word-spacing:-0.357000px;}
.ws7c{word-spacing:-0.324000px;}
.ws101{word-spacing:-0.306000px;}
.ws5{word-spacing:-0.300000px;}
.wscf{word-spacing:-0.264000px;}
.ws69{word-spacing:-0.263520px;}
.ws86{word-spacing:-0.255000px;}
.ws44{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.219600px;}
.wsf6{word-spacing:-0.204000px;}
.ws4b{word-spacing:-0.180000px;}
.ws6c{word-spacing:-0.175680px;}
.ws105{word-spacing:-0.153000px;}
.ws66{word-spacing:-0.131760px;}
.ws20{word-spacing:-0.120000px;}
.wsb{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws68{word-spacing:-0.043920px;}
.wsfd{word-spacing:-0.035700px;}
.wse{word-spacing:0.000000px;}
.ws67{word-spacing:0.043920px;}
.ws115{word-spacing:0.051000px;}
.ws93{word-spacing:0.060000px;}
.ws6b{word-spacing:0.087840px;}
.ws14{word-spacing:0.120000px;}
.ws11a{word-spacing:0.153000px;}
.ws2b{word-spacing:0.180000px;}
.ws5f{word-spacing:0.240000px;}
.wsc7{word-spacing:0.255000px;}
.ws92{word-spacing:0.300000px;}
.wsf3{word-spacing:0.306000px;}
.wsc8{word-spacing:0.357000px;}
.ws3e{word-spacing:0.360000px;}
.wsdc{word-spacing:0.408000px;}
.ws9b{word-spacing:0.420000px;}
.ws11c{word-spacing:0.459000px;}
.ws46{word-spacing:0.480000px;}
.wsdb{word-spacing:0.510000px;}
.wsab{word-spacing:0.540000px;}
.wsa7{word-spacing:0.600000px;}
.wseb{word-spacing:0.612000px;}
.wsae{word-spacing:0.720000px;}
.wsf2{word-spacing:0.765000px;}
.ws9a{word-spacing:0.780000px;}
.ws102{word-spacing:0.816000px;}
.ws36{word-spacing:0.840000px;}
.ws2f{word-spacing:0.900000px;}
.wsa9{word-spacing:0.960000px;}
.wsce{word-spacing:0.969000px;}
.ws11d{word-spacing:1.020000px;}
.ws116{word-spacing:1.122000px;}
.ws38{word-spacing:1.140000px;}
.wsd2{word-spacing:1.173000px;}
.ws8c{word-spacing:1.200000px;}
.ws111{word-spacing:1.224000px;}
.ws60{word-spacing:1.260000px;}
.wscd{word-spacing:1.275000px;}
.wsa8{word-spacing:1.320000px;}
.wsf9{word-spacing:1.326000px;}
.wsef{word-spacing:1.377000px;}
.ws1d{word-spacing:1.380000px;}
.wse4{word-spacing:1.428000px;}
.ws2e{word-spacing:1.440000px;}
.wsd7{word-spacing:1.479000px;}
.ws17{word-spacing:1.500000px;}
.wscc{word-spacing:1.530000px;}
.ws22{word-spacing:1.560000px;}
.ws84{word-spacing:1.581000px;}
.ws41{word-spacing:1.620000px;}
.ws99{word-spacing:1.680000px;}
.wse9{word-spacing:1.683000px;}
.ws5a{word-spacing:1.740000px;}
.wsfb{word-spacing:1.785000px;}
.ws13{word-spacing:1.800000px;}
.wsc9{word-spacing:1.836000px;}
.ws12{word-spacing:1.860000px;}
.wse5{word-spacing:1.887000px;}
.wsa1{word-spacing:1.920000px;}
.wse7{word-spacing:1.938000px;}
.wsb3{word-spacing:1.980000px;}
.ws10a{word-spacing:1.989000px;}
.ws40{word-spacing:2.040000px;}
.wsdd{word-spacing:2.091000px;}
.ws3c{word-spacing:2.100000px;}
.wscb{word-spacing:2.142000px;}
.ws30{word-spacing:2.160000px;}
.ws123{word-spacing:2.193000px;}
.ws59{word-spacing:2.220000px;}
.ws65{word-spacing:2.280000px;}
.wse6{word-spacing:2.295000px;}
.ws1c{word-spacing:2.340000px;}
.wsf8{word-spacing:2.346000px;}
.wsca{word-spacing:2.397000px;}
.ws1e{word-spacing:2.400000px;}
.ws11e{word-spacing:2.448000px;}
.wsa3{word-spacing:2.460000px;}
.wsf7{word-spacing:2.499000px;}
.ws97{word-spacing:2.520000px;}
.wse0{word-spacing:2.550000px;}
.ws49{word-spacing:2.580000px;}
.ws9d{word-spacing:2.640000px;}
.wsf0{word-spacing:2.652000px;}
.ws23{word-spacing:2.700000px;}
.wsad{word-spacing:2.760000px;}
.ws39{word-spacing:2.820000px;}
.ws100{word-spacing:2.856000px;}
.ws5c{word-spacing:2.880000px;}
.ws107{word-spacing:2.907000px;}
.ws48{word-spacing:2.940000px;}
.wsa2{word-spacing:3.000000px;}
.ws96{word-spacing:3.060000px;}
.wsff{word-spacing:3.111000px;}
.ws5e{word-spacing:3.180000px;}
.wsfe{word-spacing:3.213000px;}
.wsbd{word-spacing:3.240000px;}
.ws119{word-spacing:3.264000px;}
.ws33{word-spacing:3.300000px;}
.ws9f{word-spacing:3.360000px;}
.wsd8{word-spacing:3.366000px;}
.wse3{word-spacing:3.417000px;}
.ws21{word-spacing:3.420000px;}
.ws11f{word-spacing:3.468000px;}
.wsc6{word-spacing:3.480000px;}
.ws1a{word-spacing:3.540000px;}
.ws117{word-spacing:3.570000px;}
.ws5b{word-spacing:3.600000px;}
.ws42{word-spacing:3.660000px;}
.ws94{word-spacing:3.780000px;}
.ws3a{word-spacing:3.960000px;}
.ws3b{word-spacing:4.020000px;}
.ws103{word-spacing:4.029000px;}
.wsa0{word-spacing:4.080000px;}
.ws109{word-spacing:4.131000px;}
.ws9e{word-spacing:4.140000px;}
.wsf5{word-spacing:4.182000px;}
.ws32{word-spacing:4.200000px;}
.wse8{word-spacing:4.233000px;}
.wsc0{word-spacing:4.260000px;}
.ws106{word-spacing:4.284000px;}
.wsc5{word-spacing:4.320000px;}
.ws35{word-spacing:4.380000px;}
.ws1f{word-spacing:4.440000px;}
.wsa5{word-spacing:4.560000px;}
.wsd6{word-spacing:4.590000px;}
.ws8a{word-spacing:4.680000px;}
.ws3f{word-spacing:4.740000px;}
.ws118{word-spacing:4.743000px;}
.wsb4{word-spacing:4.860000px;}
.ws90{word-spacing:4.920000px;}
.wsb5{word-spacing:5.100000px;}
.ws62{word-spacing:5.340000px;}
.wsee{word-spacing:5.457000px;}
.ws63{word-spacing:5.520000px;}
.ws10d{word-spacing:5.559000px;}
.ws2a{word-spacing:5.640000px;}
.ws108{word-spacing:5.661000px;}
.ws2c{word-spacing:5.700000px;}
.wsde{word-spacing:5.865000px;}
.wsc4{word-spacing:5.940000px;}
.wsdf{word-spacing:6.324000px;}
.ws114{word-spacing:6.375000px;}
.wsb0{word-spacing:6.540000px;}
.wsb2{word-spacing:6.600000px;}
.wsf1{word-spacing:6.732000px;}
.ws8e{word-spacing:6.840000px;}
.ws3d{word-spacing:6.900000px;}
.wsed{word-spacing:7.191000px;}
.ws9c{word-spacing:7.260000px;}
.ws5d{word-spacing:7.680000px;}
.ws10e{word-spacing:8.313000px;}
.ws125{word-spacing:8.466000px;}
.wsac{word-spacing:9.120000px;}
.ws10c{word-spacing:9.333000px;}
.ws64{word-spacing:9.420000px;}
.ws126{word-spacing:11.067000px;}
.ws10b{word-spacing:11.475000px;}
.ws77{word-spacing:27.612000px;}
.ws7f{word-spacing:35.604000px;}
.ws80{word-spacing:39.312000px;}
.ws7d{word-spacing:51.624000px;}
.ws6e{word-spacing:68.050848px;}
.ws25{word-spacing:72.267000px;}
.ws71{word-spacing:149.148000px;}
.ws7b{word-spacing:158.940000px;}
.ws75{word-spacing:167.148000px;}
.ws79{word-spacing:218.484000px;}
.ws81{word-spacing:232.272000px;}
.ws72{word-spacing:261.900000px;}
.ws76{word-spacing:272.232000px;}
.ws70{word-spacing:274.427991px;}
.ws7a{word-spacing:280.440000px;}
.wsbe{word-spacing:340.575034px;}
.ws73{word-spacing:342.468000px;}
._80{margin-left:-26.877000px;}
._7b{margin-left:-21.777000px;}
._7c{margin-left:-19.252500px;}
._7d{margin-left:-18.156000px;}
._7{margin-left:-16.575000px;}
._7a{margin-left:-15.402000px;}
._78{margin-left:-14.331000px;}
._7f{margin-left:-12.801000px;}
._f{margin-left:-11.220000px;}
._c{margin-left:-9.540000px;}
._10{margin-left:-7.949398px;}
._5{margin-left:-6.108000px;}
._6{margin-left:-3.998997px;}
._2{margin-left:-2.964602px;}
._0{margin-left:-1.632000px;}
._1{width:1.814400px;}
._b{width:2.958602px;}
._e{width:4.790997px;}
._11{width:6.096585px;}
._53{width:7.925992px;}
._d{width:9.126000px;}
._71{width:10.760983px;}
._81{width:11.964024px;}
._4{width:13.110000px;}
._72{width:14.356500px;}
._3{width:15.780000px;}
._8{width:18.360000px;}
._7e{width:19.737000px;}
._76{width:21.601202px;}
._79{width:23.052000px;}
._75{width:24.758415px;}
._74{width:26.193008px;}
._73{width:29.091600px;}
._77{width:31.746600px;}
._3f{width:35.244000px;}
._82{width:37.230000px;}
._25{width:38.304000px;}
._2b{width:40.032000px;}
._15{width:46.116000px;}
._3a{width:48.276000px;}
._9{width:54.621000px;}
._14{width:57.023991px;}
._46{width:58.032000px;}
._44{width:62.676000px;}
._47{width:65.448000px;}
._3d{width:70.452000px;}
._34{width:80.460000px;}
._4e{width:84.492000px;}
._4d{width:89.460000px;}
._1f{width:91.344000px;}
._2a{width:100.728000px;}
._30{width:102.456000px;}
._36{width:107.460000px;}
._48{width:109.476000px;}
._32{width:112.260000px;}
._21{width:114.480000px;}
._50{width:116.460000px;}
._45{width:121.032000px;}
._22{width:127.992594px;}
._3c{width:138.525600px;}
._2e{width:140.976000px;}
._42{width:146.916009px;}
._13{width:148.608000px;}
._4f{width:154.008000px;}
._1a{width:155.628000px;}
._20{width:157.644000px;}
._26{width:158.688000px;}
._37{width:160.488000px;}
._38{width:164.016000px;}
._31{width:167.688000px;}
._29{width:169.164000px;}
._3e{width:172.008000px;}
._17{width:174.132000px;}
._2f{width:175.392000px;}
._51{width:178.488000px;}
._33{width:183.456000px;}
._2d{width:186.480000px;}
._35{width:191.016000px;}
._23{width:192.525600px;}
._28{width:200.484000px;}
._4a{width:205.704000px;}
._24{width:213.012000px;}
._52{width:218.016000px;}
._12{width:220.423776px;}
._19{width:225.684000px;}
._39{width:227.448000px;}
._4b{width:228.456000px;}
._43{width:231.372000px;}
._2c{width:232.521600px;}
._41{width:240.192000px;}
._1d{width:241.704000px;}
._16{width:244.260000px;}
._1e{width:253.008000px;}
._18{width:258.012000px;}
._49{width:276.088224px;}
._1c{width:289.440000px;}
._61{width:293.351961px;}
._40{width:304.668000px;}
._4c{width:324.468000px;}
._1b{width:351.468000px;}
._70{width:359.753961px;}
._59{width:372.554961px;}
._57{width:386.579961px;}
._63{width:389.894961px;}
._27{width:408.996000px;}
._3b{width:437.088602px;}
._6c{width:467.414961px;}
._6f{width:502.706961px;}
._58{width:562.441166px;}
._68{width:566.711961px;}
._6e{width:587.723961px;}
._55{width:594.578958px;}
._5b{width:649.914561px;}
._56{width:652.901961px;}
._5d{width:678.371958px;}
._66{width:700.943961px;}
._54{width:709.380561px;}
._5e{width:736.694961px;}
._6b{width:754.850961px;}
._6a{width:768.977961px;}
._6d{width:793.151961px;}
._69{width:821.609961px;}
._67{width:825.077993px;}
._5a{width:837.011961px;}
._83{width:847.310400px;}
._62{width:851.138961px;}
._5f{width:957.422961px;}
._5c{width:975.651561px;}
._60{width:1002.761961px;}
._64{width:1005.566961px;}
._65{width:1015.715961px;}
._a{width:2357.729933px;}
.fc5{color:transparent;}
.fc4{color:rgb(19,19,20);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:25.199999px;}
.fsa{font-size:29.279400px;}
.fs7{font-size:35.699999px;}
.fsb{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:43.920000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fse{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y376{bottom:3.240000px;}
.y489{bottom:3.780000px;}
.y40e{bottom:4.320000px;}
.y44c{bottom:7.194000px;}
.y438{bottom:7.200000px;}
.y447{bottom:7.245000px;}
.y443{bottom:7.380000px;}
.y423{bottom:16.020000px;}
.y435{bottom:16.560000px;}
.y499{bottom:16.740000px;}
.y477{bottom:17.100000px;}
.y417{bottom:17.280000px;}
.y3b6{bottom:20.340000px;}
.y379{bottom:20.520000px;}
.y3bb{bottom:20.550000px;}
.y488{bottom:21.090000px;}
.y475{bottom:21.240000px;}
.y433{bottom:22.500000px;}
.y422{bottom:33.300000px;}
.y416{bottom:34.560000px;}
.y426{bottom:35.460000px;}
.y3b5{bottom:37.620000px;}
.y3ca{bottom:37.650000px;}
.y385{bottom:37.800000px;}
.y3a2{bottom:37.830000px;}
.y3d1{bottom:37.845000px;}
.y474{bottom:38.340000px;}
.y487{bottom:38.370000px;}
.y432{bottom:39.780000px;}
.y498{bottom:47.340000px;}
.y421{bottom:51.660000px;}
.y48b{bottom:51.840000px;}
.y415{bottom:52.740000px;}
.y3b4{bottom:54.900000px;}
.y3ba{bottom:54.930000px;}
.y3c2{bottom:54.945000px;}
.y384{bottom:55.080000px;}
.y3a1{bottom:55.110000px;}
.y3d0{bottom:55.125000px;}
.y473{bottom:55.620000px;}
.y431{bottom:57.060000px;}
.y358{bottom:57.600000px;}
.y42b{bottom:57.636000px;}
.y3e7{bottom:60.525000px;}
.y497{bottom:65.880000px;}
.y1{bottom:68.829002px;}
.y420{bottom:68.940000px;}
.y425{bottom:70.020000px;}
.y414{bottom:71.100000px;}
.y388{bottom:72.180000px;}
.y3b9{bottom:72.210000px;}
.y383{bottom:72.360000px;}
.y3a0{bottom:72.390000px;}
.y3cf{bottom:72.405000px;}
.y472{bottom:72.900000px;}
.y412{bottom:73.260000px;}
.y430{bottom:74.340000px;}
.y3e6{bottom:77.625000px;}
.y496{bottom:84.420000px;}
.y41f{bottom:87.300000px;}
.y413{bottom:88.380000px;}
.y3b3{bottom:89.460000px;}
.y3b8{bottom:89.490000px;}
.y382{bottom:89.640000px;}
.y39f{bottom:89.670000px;}
.y3ce{bottom:89.685000px;}
.y471{bottom:90.180000px;}
.y411{bottom:90.540000px;}
.y42f{bottom:91.440000px;}
.y3e5{bottom:94.905000px;}
.y41e{bottom:104.580000px;}
.y38c{bottom:106.740000px;}
.y39e{bottom:106.770000px;}
.y381{bottom:106.785000px;}
.y470{bottom:107.460000px;}
.y410{bottom:107.820000px;}
.y3e4{bottom:112.185000px;}
.y3a3{bottom:112.500000px;}
.y158{bottom:112.632305px;}
.y1c7{bottom:112.672806px;}
.ybf{bottom:112.932152px;}
.ybe{bottom:112.932300px;}
.y37{bottom:112.938300px;}
.yc6{bottom:112.943414px;}
.yd2{bottom:112.952420px;}
.ydd{bottom:112.961427px;}
.ye9{bottom:112.970433px;}
.y134{bottom:112.970442px;}
.yf8{bottom:112.979440px;}
.y13b{bottom:112.979449px;}
.yfd{bottom:112.988447px;}
.y100{bottom:112.997453px;}
.y10c{bottom:113.006460px;}
.y68{bottom:113.415298px;}
.y157{bottom:113.415344px;}
.y176{bottom:114.735260px;}
.y20b{bottom:114.770556px;}
.y1d3{bottom:114.877806px;}
.y241{bottom:115.698445px;}
.y3ec{bottom:115.920000px;}
.y2cc{bottom:116.260800px;}
.y283{bottom:116.614823px;}
.y30e{bottom:116.656050px;}
.y2c5{bottom:117.010073px;}
.y484{bottom:117.936000px;}
.y494{bottom:119.736000px;}
.y40a{bottom:120.060000px;}
.y41d{bottom:121.680000px;}
.yc7{bottom:121.943414px;}
.yd3{bottom:121.952420px;}
.yde{bottom:121.961427px;}
.yea{bottom:121.970433px;}
.y135{bottom:121.970442px;}
.y11d{bottom:121.979440px;}
.y12f{bottom:121.988447px;}
.y101{bottom:121.997453px;}
.y10d{bottom:122.006460px;}
.y2c{bottom:122.461349px;}
.y424{bottom:122.760000px;}
.y3c9{bottom:123.870000px;}
.y3b2{bottom:123.885000px;}
.y3ef{bottom:124.020000px;}
.y38b{bottom:124.050000px;}
.y380{bottom:124.065000px;}
.y46f{bottom:124.740000px;}
.y44d{bottom:126.576000px;}
.y46c{bottom:126.936000px;}
.y373{bottom:127.440000px;}
.ybd{bottom:128.343218px;}
.y3e3{bottom:129.465000px;}
.y20a{bottom:129.764556px;}
.y38d{bottom:130.500000px;}
.y240{bottom:130.692445px;}
.y2cb{bottom:131.254800px;}
.y1c6{bottom:131.422806px;}
.y282{bottom:131.608823px;}
.y30d{bottom:131.650050px;}
.y2c4{bottom:132.004073px;}
.y67{bottom:132.165298px;}
.y156{bottom:132.165344px;}
.y36{bottom:133.032303px;}
.y175{bottom:133.485260px;}
.y1d2{bottom:133.627806px;}
.y3c4{bottom:138.600000px;}
.y483{bottom:139.176000px;}
.yb9{bottom:139.702264px;}
.y41c{bottom:140.085000px;}
.y493{bottom:140.976000px;}
.y3c8{bottom:141.150000px;}
.y41a{bottom:141.165000px;}
.y2b{bottom:141.211349px;}
.y3ee{bottom:141.300000px;}
.y39d{bottom:141.330000px;}
.y37f{bottom:141.345000px;}
.y409{bottom:141.840000px;}
.y209{bottom:144.758556px;}
.y23f{bottom:145.686445px;}
.y2ca{bottom:146.248800px;}
.y281{bottom:146.602823px;}
.y30c{bottom:146.644050px;}
.y3e2{bottom:146.745000px;}
.y2c3{bottom:146.998073px;}
.y44b{bottom:147.816000px;}
.y46b{bottom:148.176000px;}
.y1c5{bottom:150.172806px;}
.y35{bottom:150.485553px;}
.y66{bottom:150.915298px;}
.y155{bottom:150.915344px;}
.yb8{bottom:152.230444px;}
.y174{bottom:152.235260px;}
.y182{bottom:152.235306px;}
.y1d1{bottom:152.377806px;}
.y41b{bottom:157.365000px;}
.y3c7{bottom:158.430000px;}
.y419{bottom:158.445000px;}
.y39c{bottom:158.610000px;}
.y37e{bottom:158.625000px;}
.y208{bottom:159.752556px;}
.y2a{bottom:159.961349px;}
.y372{bottom:160.020000px;}
.y482{bottom:160.410000px;}
.y408{bottom:160.560000px;}
.y23e{bottom:160.680445px;}
.y2c9{bottom:161.242800px;}
.y280{bottom:161.596823px;}
.y30b{bottom:161.638050px;}
.y2c2{bottom:161.992073px;}
.y492{bottom:162.210000px;}
.y3e1{bottom:163.845000px;}
.y1c4{bottom:168.922806px;}
.y44a{bottom:169.050000px;}
.y46a{bottom:169.230000px;}
.y65{bottom:169.665298px;}
.y154{bottom:169.665344px;}
.y34{bottom:170.579556px;}
.y173{bottom:170.985260px;}
.y181{bottom:170.985306px;}
.y1d0{bottom:171.127806px;}
.y207{bottom:174.746556px;}
.y23d{bottom:175.674445px;}
.y3c6{bottom:175.710000px;}
.y402{bottom:175.725000px;}
.y39b{bottom:175.890000px;}
.y37d{bottom:175.905000px;}
.y2c8{bottom:176.236800px;}
.y27f{bottom:176.590823px;}
.y30a{bottom:176.632050px;}
.y2c1{bottom:176.986073px;}
.y407{bottom:177.870000px;}
.y29{bottom:178.711349px;}
.y481{bottom:181.650000px;}
.y491{bottom:183.450000px;}
.y3eb{bottom:185.610000px;}
.y1c3{bottom:187.672806px;}
.y33{bottom:188.032794px;}
.y64{bottom:188.415298px;}
.y153{bottom:188.415344px;}
.y172{bottom:189.735260px;}
.y180{bottom:189.735306px;}
.y206{bottom:189.740556px;}
.y1cf{bottom:189.877806px;}
.y449{bottom:190.290000px;}
.y469{bottom:190.470000px;}
.y23c{bottom:190.668445px;}
.y2c7{bottom:191.230800px;}
.y27e{bottom:191.584823px;}
.y309{bottom:191.626050px;}
.y1bc{bottom:191.726527px;}
.y2c0{bottom:191.980073px;}
.y371{bottom:192.450000px;}
.y3c5{bottom:192.990000px;}
.y401{bottom:193.005000px;}
.y39a{bottom:193.170000px;}
.y37c{bottom:193.185000px;}
.y406{bottom:194.970000px;}
.y28{bottom:197.461349px;}
.yc8{bottom:198.254414px;}
.yd4{bottom:198.263420px;}
.ydf{bottom:198.272427px;}
.yeb{bottom:198.281433px;}
.y136{bottom:198.281442px;}
.y11e{bottom:198.290440px;}
.y130{bottom:198.299447px;}
.y102{bottom:198.308453px;}
.y10e{bottom:198.317460px;}
.y480{bottom:202.890000px;}
.y490{bottom:204.690000px;}
.y23b{bottom:205.662445px;}
.y2c6{bottom:206.230800px;}
.y1c2{bottom:206.422806px;}
.y27d{bottom:206.578823px;}
.y308{bottom:206.620050px;}
.y2bf{bottom:206.974073px;}
.y63{bottom:207.165298px;}
.y152{bottom:207.165344px;}
.y32{bottom:208.126808px;}
.y171{bottom:208.485260px;}
.y17f{bottom:208.485306px;}
.y1ce{bottom:208.627806px;}
.y405{bottom:209.730000px;}
.y399{bottom:210.270000px;}
.y37b{bottom:210.285000px;}
.y1bb{bottom:210.443527px;}
.y448{bottom:211.530000px;}
.y468{bottom:211.710000px;}
.y27{bottom:216.211349px;}
.y205{bottom:219.741306px;}
.y23a{bottom:220.656445px;}
.y27c{bottom:221.572823px;}
.y307{bottom:221.614050px;}
.y2be{bottom:221.968073px;}
.y47f{bottom:224.130000px;}
.y370{bottom:225.030000px;}
.y1c1{bottom:225.172806px;}
.y31{bottom:225.580059px;}
.y62{bottom:225.915298px;}
.y151{bottom:225.915344px;}
.y170{bottom:227.235260px;}
.y17e{bottom:227.235306px;}
.y1cd{bottom:227.377806px;}
.y398{bottom:227.550000px;}
.y3cd{bottom:227.565000px;}
.y404{bottom:227.730000px;}
.yb7{bottom:228.014404px;}
.y1ba{bottom:229.160527px;}
.y446{bottom:232.770000px;}
.y467{bottom:232.950000px;}
.y204{bottom:234.735306px;}
.y26{bottom:234.961349px;}
.y239{bottom:235.650445px;}
.y27b{bottom:236.566823px;}
.y306{bottom:236.608050px;}
.y2bd{bottom:236.962073px;}
.y49b{bottom:237.675000px;}
.y48f{bottom:239.295000px;}
.yb6{bottom:240.696304px;}
.y1c0{bottom:243.922806px;}
.yb5{bottom:244.354797px;}
.y61{bottom:244.665298px;}
.y150{bottom:244.665344px;}
.y397{bottom:244.830000px;}
.y47e{bottom:245.235000px;}
.y30{bottom:245.674049px;}
.y403{bottom:245.730000px;}
.y16f{bottom:245.985260px;}
.y17d{bottom:245.985306px;}
.y1cc{bottom:246.127806px;}
.y1b9{bottom:247.877527px;}
.y238{bottom:250.644445px;}
.y27a{bottom:251.560823px;}
.y305{bottom:251.602050px;}
.y2bc{bottom:251.956073px;}
.yb4{bottom:253.306144px;}
.y25{bottom:253.711349px;}
.y445{bottom:254.055000px;}
.y466{bottom:254.235000px;}
.y3ea{bottom:255.450000px;}
.y36f{bottom:257.430000px;}
.y396{bottom:262.110000px;}
.y1bf{bottom:262.672806px;}
.y1b8{bottom:262.871527px;}
.y7e{bottom:263.415298px;}
.y14f{bottom:263.415344px;}
.y16e{bottom:264.735260px;}
.y17c{bottom:264.735306px;}
.y1cb{bottom:264.877806px;}
.y237{bottom:265.638445px;}
.yb3{bottom:265.911184px;}
.y47d{bottom:266.475000px;}
.y279{bottom:266.554823px;}
.y304{bottom:266.596050px;}
.y2bb{bottom:266.950073px;}
.y49a{bottom:268.275000px;}
.y2f{bottom:270.675150px;}
.yaf{bottom:271.895285px;}
.y24{bottom:272.461349px;}
.y48e{bottom:273.675000px;}
.y444{bottom:275.115000px;}
.y465{bottom:275.475000px;}
.yb2{bottom:278.516224px;}
.y395{bottom:279.390000px;}
.y236{bottom:280.632445px;}
.y400{bottom:281.010000px;}
.y1be{bottom:281.422806px;}
.y278{bottom:281.548823px;}
.y1b7{bottom:281.588527px;}
.y303{bottom:281.590050px;}
.y2ba{bottom:281.944073px;}
.y60{bottom:282.165298px;}
.y14e{bottom:282.165344px;}
.y495{bottom:282.315000px;}
.y16d{bottom:283.485260px;}
.y17b{bottom:283.485306px;}
.y1ca{bottom:283.627806px;}
.yae{bottom:284.423465px;}
.y2e{bottom:285.669150px;}
.y47c{bottom:287.715000px;}
.y3e9{bottom:290.550000px;}
.y36e{bottom:291.090000px;}
.yb1{bottom:291.198124px;}
.y23{bottom:291.211349px;}
.yc9{bottom:292.169414px;}
.y48d{bottom:294.915000px;}
.y235{bottom:295.626445px;}
.y442{bottom:296.355000px;}
.y394{bottom:296.535000px;}
.y277{bottom:296.542823px;}
.y1b6{bottom:296.582527px;}
.y302{bottom:296.584050px;}
.y464{bottom:296.715000px;}
.y2b9{bottom:296.938073px;}
.y7d{bottom:300.915298px;}
.y14d{bottom:300.915344px;}
.y16c{bottom:302.235260px;}
.y17a{bottom:302.235306px;}
.y1c9{bottom:302.377806px;}
.yb0{bottom:303.803164px;}
.ybc{bottom:305.439641px;}
.y22{bottom:309.961349px;}
.y234{bottom:310.620445px;}
.y276{bottom:311.536823px;}
.y301{bottom:311.578050px;}
.y2b8{bottom:311.932073px;}
.y393{bottom:313.815000px;}
.y1b5{bottom:315.299527px;}
.y48c{bottom:316.155000px;}
.y2d{bottom:316.485900px;}
.y441{bottom:317.595000px;}
.y463{bottom:317.955000px;}
.y1bd{bottom:318.922806px;}
.y5f{bottom:319.665298px;}
.y14c{bottom:319.665344px;}
.y16b{bottom:320.985260px;}
.y179{bottom:320.985306px;}
.y1c8{bottom:321.127806px;}
.y47b{bottom:322.275000px;}
.y36d{bottom:324.930000px;}
.y233{bottom:325.614445px;}
.y3e8{bottom:325.830000px;}
.y275{bottom:326.530823px;}
.y300{bottom:326.572050px;}
.y2b7{bottom:326.926073px;}
.y21{bottom:328.711349px;}
.y392{bottom:331.095000px;}
.y1b4{bottom:334.016527px;}
.y5e{bottom:338.415298px;}
.y14b{bottom:338.415344px;}
.y440{bottom:338.835000px;}
.y462{bottom:339.195000px;}
.y16a{bottom:339.735260px;}
.y203{bottom:339.735306px;}
.y232{bottom:340.608445px;}
.y274{bottom:341.524823px;}
.y2ff{bottom:341.566050px;}
.y2b6{bottom:341.920073px;}
.y3c3{bottom:346.350000px;}
.y20{bottom:347.461349px;}
.y391{bottom:348.375000px;}
.y1b3{bottom:349.010527px;}
.yab{bottom:349.941123px;}
.y48a{bottom:351.435000px;}
.y231{bottom:355.602445px;}
.y273{bottom:356.518823px;}
.y2fe{bottom:356.560050px;}
.y47a{bottom:356.835000px;}
.y2b5{bottom:356.914073px;}
.y5d{bottom:357.165298px;}
.y14a{bottom:357.165344px;}
.y169{bottom:358.485260px;}
.y178{bottom:358.485306px;}
.y43f{bottom:360.075000px;}
.y461{bottom:360.435000px;}
.yad{bottom:362.546163px;}
.yaa{bottom:362.623023px;}
.y3c1{bottom:364.350000px;}
.y390{bottom:365.655000px;}
.yc0{bottom:367.067407px;}
.yca{bottom:367.076414px;}
.y1b2{bottom:367.727527px;}
.y230{bottom:370.596445px;}
.y272{bottom:371.512823px;}
.y2fd{bottom:371.554050px;}
.y2b4{bottom:371.908073px;}
.y36c{bottom:372.810000px;}
.yac{bottom:375.228063px;}
.y5c{bottom:375.915298px;}
.y149{bottom:375.915344px;}
.y168{bottom:377.235260px;}
.y202{bottom:377.235306px;}
.y479{bottom:378.075000px;}
.y3e0{bottom:378.390000px;}
.y43e{bottom:381.315000px;}
.y460{bottom:381.675000px;}
.y1fc{bottom:382.313527px;}
.y38f{bottom:382.935000px;}
.y1f{bottom:384.961349px;}
.y22f{bottom:385.590445px;}
.y1b1{bottom:386.444527px;}
.y271{bottom:386.506823px;}
.y2fc{bottom:386.548050px;}
.y2b3{bottom:386.902073px;}
.y7c{bottom:394.665298px;}
.y148{bottom:394.665344px;}
.y167{bottom:395.985260px;}
.y201{bottom:395.985306px;}
.y1fb{bottom:397.307527px;}
.y478{bottom:399.135000px;}
.y38e{bottom:400.035000px;}
.y22e{bottom:400.584445px;}
.y270{bottom:401.500823px;}
.y2fb{bottom:401.542050px;}
.y2b2{bottom:401.896073px;}
.y43d{bottom:402.555000px;}
.y45f{bottom:402.915000px;}
.y486{bottom:403.995000px;}
.y1b0{bottom:405.161527px;}
.y36b{bottom:407.370000px;}
.y5b{bottom:413.415298px;}
.y147{bottom:413.415344px;}
.y166{bottom:414.735260px;}
.y200{bottom:414.735306px;}
.y22d{bottom:415.578445px;}
.y1fa{bottom:416.101027px;}
.y26f{bottom:416.494823px;}
.y2fa{bottom:416.536050px;}
.y2b1{bottom:416.890073px;}
.y1af{bottom:420.155527px;}
.y43c{bottom:423.825000px;}
.y45e{bottom:424.005000px;}
.ya7{bottom:428.140683px;}
.y22c{bottom:430.572445px;}
.y26e{bottom:431.488823px;}
.y2f9{bottom:431.530050px;}
.y2b0{bottom:431.884073px;}
.y7b{bottom:432.165298px;}
.y146{bottom:432.165344px;}
.y165{bottom:433.485260px;}
.y1ff{bottom:433.485306px;}
.y3c0{bottom:434.055000px;}
.y476{bottom:434.445000px;}
.y1f9{bottom:434.818027px;}
.y1ae{bottom:435.149527px;}
.ya9{bottom:437.319963px;}
.yc1{bottom:438.518407px;}
.ycb{bottom:438.527414px;}
.yd5{bottom:438.536420px;}
.ye0{bottom:438.545427px;}
.yec{bottom:438.554433px;}
.y137{bottom:438.554442px;}
.yf9{bottom:438.563440px;}
.y13c{bottom:438.563449px;}
.yfe{bottom:438.572447px;}
.y103{bottom:438.581453px;}
.y10f{bottom:438.590460px;}
.ya6{bottom:440.745723px;}
.y1e{bottom:441.211395px;}
.y43b{bottom:445.065000px;}
.y45d{bottom:445.245000px;}
.y22b{bottom:445.566445px;}
.y26d{bottom:446.482823px;}
.y2f8{bottom:446.524050px;}
.y2af{bottom:446.878073px;}
.ya8{bottom:449.925003px;}
.y1ad{bottom:450.143527px;}
.y145{bottom:450.915344px;}
.y164{bottom:452.235260px;}
.y1fe{bottom:452.235306px;}
.y1f8{bottom:453.535027px;}
.y36a{bottom:453.855000px;}
.y1d{bottom:459.961395px;}
.y22a{bottom:460.560445px;}
.y26c{bottom:461.476823px;}
.y2f7{bottom:461.518050px;}
.y2ae{bottom:461.872073px;}
.y1ac{bottom:465.137527px;}
.y46e{bottom:466.305000px;}
.y45c{bottom:466.485000px;}
.y1f7{bottom:468.529027px;}
.y7a{bottom:469.665298px;}
.y5a{bottom:469.665344px;}
.y163{bottom:470.985260px;}
.y485{bottom:473.685000px;}
.y229{bottom:475.554445px;}
.y26b{bottom:476.470823px;}
.y2f6{bottom:476.512050px;}
.y2ad{bottom:476.866073px;}
.y43a{bottom:479.445000px;}
.y1ab{bottom:480.131527px;}
.y1f6{bottom:483.523027px;}
.y369{bottom:484.995000px;}
.y45b{bottom:487.725000px;}
.y79{bottom:488.415298px;}
.y59{bottom:488.415344px;}
.y162{bottom:489.735260px;}
.y1fd{bottom:489.735306px;}
.y228{bottom:490.548445px;}
.y26a{bottom:491.464823px;}
.y2f5{bottom:491.506050px;}
.y2ac{bottom:491.860073px;}
.y1aa{bottom:495.125527px;}
.y1c{bottom:497.461395px;}
.y1f5{bottom:498.517027px;}
.y3bf{bottom:503.895000px;}
.y227{bottom:505.542445px;}
.y3ff{bottom:506.055000px;}
.y269{bottom:506.458823px;}
.y2f4{bottom:506.500050px;}
.y2ab{bottom:506.854073px;}
.y78{bottom:507.165298px;}
.y58{bottom:507.165344px;}
.y161{bottom:508.485260px;}
.y45a{bottom:508.965000px;}
.y1a9{bottom:513.842527px;}
.y439{bottom:514.005000px;}
.y1b{bottom:516.211395px;}
.ybb{bottom:516.299561px;}
.y1f4{bottom:517.234027px;}
.y368{bottom:517.395000px;}
.y330{bottom:520.330844px;}
.y356{bottom:520.458362px;}
.y226{bottom:520.536445px;}
.yc2{bottom:521.327407px;}
.ycc{bottom:521.336414px;}
.yd6{bottom:521.345420px;}
.ye1{bottom:521.354427px;}
.yed{bottom:521.363433px;}
.y138{bottom:521.363442px;}
.yfa{bottom:521.372440px;}
.y13d{bottom:521.372449px;}
.yff{bottom:521.381447px;}
.y104{bottom:521.390453px;}
.y110{bottom:521.399460px;}
.y268{bottom:521.452823px;}
.y2f3{bottom:521.494050px;}
.y2aa{bottom:521.848073px;}
.y3be{bottom:521.895000px;}
.ya1{bottom:522.832199px;}
.y77{bottom:525.915298px;}
.y57{bottom:525.915344px;}
.y160{bottom:527.235260px;}
.y459{bottom:530.205000px;}
.ycd{bottom:530.336414px;}
.yd7{bottom:530.345420px;}
.y12c{bottom:530.354427px;}
.yee{bottom:530.363433px;}
.yfb{bottom:530.372440px;}
.y13e{bottom:530.372449px;}
.y105{bottom:530.390453px;}
.y111{bottom:530.399460px;}
.y1a8{bottom:532.559527px;}
.y1a{bottom:534.961395px;}
.y437{bottom:535.245000px;}
.ya5{bottom:535.283519px;}
.y32f{bottom:535.324844px;}
.ya0{bottom:535.360379px;}
.y355{bottom:535.452362px;}
.y225{bottom:535.530445px;}
.y1f3{bottom:535.951027px;}
.y267{bottom:536.446823px;}
.y2f2{bottom:536.488050px;}
.y2a9{bottom:536.842073px;}
.y76{bottom:544.665298px;}
.y56{bottom:544.665344px;}
.y38a{bottom:545.295000px;}
.y15f{bottom:545.985260px;}
.y1a7{bottom:547.553527px;}
.ya4{bottom:547.811699px;}
.y9f{bottom:548.042279px;}
.y32e{bottom:550.318844px;}
.y224{bottom:550.524445px;}
.y266{bottom:551.440823px;}
.y458{bottom:551.445000px;}
.y2f1{bottom:551.482050px;}
.y2a8{bottom:551.836073px;}
.y19{bottom:553.711395px;}
.y1f2{bottom:554.668027px;}
.y436{bottom:556.485000px;}
.y3df{bottom:556.995000px;}
.ya3{bottom:560.493599px;}
.y9e{bottom:560.647319px;}
.y75{bottom:563.415298px;}
.y55{bottom:563.415344px;}
.y15e{bottom:564.735260px;}
.y32d{bottom:565.312844px;}
.y354{bottom:565.542361px;}
.y1a6{bottom:566.270527px;}
.y265{bottom:566.434823px;}
.y2f0{bottom:566.476050px;}
.y2a7{bottom:566.830073px;}
.y367{bottom:570.495000px;}
.y18{bottom:572.461395px;}
.y457{bottom:572.685000px;}
.ya2{bottom:573.098639px;}
.y1f1{bottom:573.385027px;}
.y9c{bottom:574.130549px;}
.y3bd{bottom:574.275000px;}
.y3fe{bottom:575.895000px;}
.y32c{bottom:580.306844px;}
.y353{bottom:580.536361px;}
.y1a5{bottom:581.264527px;}
.y264{bottom:581.428823px;}
.y2ef{bottom:581.470050px;}
.y2a6{bottom:581.824073px;}
.y74{bottom:582.165298px;}
.y54{bottom:582.165344px;}
.y15d{bottom:583.485260px;}
.y223{bottom:584.274445px;}
.y9d{bottom:585.473099px;}
.y9b{bottom:589.124549px;}
.y17{bottom:591.211395px;}
.y434{bottom:591.765000px;}
.y1f0{bottom:592.102027px;}
.y3de{bottom:592.275000px;}
.y456{bottom:593.925000px;}
.y32b{bottom:595.300844px;}
.y352{bottom:595.530361px;}
.y263{bottom:596.422823px;}
.y2ee{bottom:596.464050px;}
.y2a5{bottom:596.818073px;}
.y1a4{bottom:599.981527px;}
.y73{bottom:600.915298px;}
.y53{bottom:600.915344px;}
.y15c{bottom:602.235260px;}
.y9a{bottom:604.118549px;}
.yc3{bottom:606.188407px;}
.yce{bottom:606.197414px;}
.yd8{bottom:606.206420px;}
.ye2{bottom:606.215427px;}
.yef{bottom:606.224433px;}
.yfc{bottom:606.233440px;}
.y13f{bottom:606.233449px;}
.y106{bottom:606.251453px;}
.y112{bottom:606.260460px;}
.y16{bottom:609.961395px;}
.y3dd{bottom:610.275000px;}
.y32a{bottom:610.294844px;}
.y351{bottom:610.524361px;}
.y1ef{bottom:610.819027px;}
.y262{bottom:611.416823px;}
.y2ed{bottom:611.458050px;}
.y2a4{bottom:611.812073px;}
.y366{bottom:611.895000px;}
.y128{bottom:615.197414px;}
.y119{bottom:615.206420px;}
.y455{bottom:615.210000px;}
.y12d{bottom:615.215427px;}
.y129{bottom:615.224433px;}
.y107{bottom:615.251453px;}
.y113{bottom:615.260460px;}
.y1a3{bottom:618.698527px;}
.y72{bottom:619.665298px;}
.y52{bottom:619.665344px;}
.y15b{bottom:620.985260px;}
.y46d{bottom:622.410000px;}
.y42e{bottom:623.130000px;}
.y99{bottom:624.212540px;}
.y329{bottom:625.288844px;}
.yba{bottom:625.468457px;}
.y350{bottom:625.518361px;}
.y1ee{bottom:625.813027px;}
.y429{bottom:625.935000px;}
.y261{bottom:626.410823px;}
.y2ec{bottom:626.452050px;}
.y2a3{bottom:626.806073px;}
.y3bc{bottom:626.835000px;}
.y3fd{bottom:628.275000px;}
.y15{bottom:628.711395px;}
.y3dc{bottom:631.515000px;}
.y98{bottom:634.112549px;}
.y454{bottom:636.450000px;}
.y1a2{bottom:637.415527px;}
.y71{bottom:638.415298px;}
.y51{bottom:638.415344px;}
.y177{bottom:639.735260px;}
.y328{bottom:640.282844px;}
.y34f{bottom:640.512361px;}
.y1ed{bottom:640.807027px;}
.y260{bottom:641.404823px;}
.y2eb{bottom:641.446050px;}
.y2a2{bottom:641.800073px;}
.y3b7{bottom:644.835000px;}
.y14{bottom:647.461395px;}
.y3db{bottom:648.795000px;}
.y1a1{bottom:652.409527px;}
.y327{bottom:655.276844px;}
.y34e{bottom:655.506361px;}
.y1ec{bottom:655.801027px;}
.y25f{bottom:656.398823px;}
.y2ea{bottom:656.440050px;}
.y2a1{bottom:656.794073px;}
.y50{bottom:657.165344px;}
.y453{bottom:657.690000px;}
.y15a{bottom:658.485260px;}
.y428{bottom:659.805000px;}
.y222{bottom:660.093323px;}
.y365{bottom:663.585000px;}
.y3da{bottom:666.105000px;}
.y13{bottom:666.211395px;}
.y326{bottom:670.270844px;}
.y34d{bottom:670.500361px;}
.y1eb{bottom:670.795027px;}
.y1a0{bottom:671.126527px;}
.y25e{bottom:671.392823px;}
.y2e9{bottom:671.434050px;}
.y2a0{bottom:671.788073px;}
.y221{bottom:675.087323px;}
.y427{bottom:675.285000px;}
.y70{bottom:675.915298px;}
.y4f{bottom:675.915344px;}
.y8f{bottom:677.235260px;}
.y97{bottom:677.235306px;}
.y452{bottom:678.750000px;}
.y3d9{bottom:680.865000px;}
.y389{bottom:684.105000px;}
.y12{bottom:684.961395px;}
.y325{bottom:685.264844px;}
.y34c{bottom:685.494361px;}
.y19f{bottom:686.120527px;}
.y25d{bottom:686.386823px;}
.y2e8{bottom:686.428050px;}
.y29f{bottom:686.782073px;}
.y1ea{bottom:689.512027px;}
.y220{bottom:690.081323px;}
.y4e{bottom:694.665344px;}
.y8e{bottom:695.985260px;}
.y96{bottom:695.985306px;}
.y451{bottom:699.990000px;}
.y324{bottom:700.258844px;}
.y34b{bottom:700.488361px;}
.y19e{bottom:701.114527px;}
.y25c{bottom:701.380823px;}
.y2e7{bottom:701.422050px;}
.y29e{bottom:701.776073px;}
.y387{bottom:702.105000px;}
.y11{bottom:703.711395px;}
.y21f{bottom:705.075323px;}
.yc4{bottom:706.556407px;}
.ycf{bottom:706.565414px;}
.y11a{bottom:706.574420px;}
.ye3{bottom:706.583427px;}
.yf0{bottom:706.592433px;}
.y12a{bottom:706.601440px;}
.y140{bottom:706.601449px;}
.y123{bottom:706.610447px;}
.y108{bottom:706.619453px;}
.y114{bottom:706.628460px;}
.y1e9{bottom:708.229027px;}
.y364{bottom:710.025000px;}
.y4d{bottom:713.415344px;}
.y8d{bottom:714.735260px;}
.y323{bottom:715.252844px;}
.y34a{bottom:715.482361px;}
.y12e{bottom:715.583427px;}
.y19d{bottom:716.108527px;}
.y25b{bottom:716.374823px;}
.y2e6{bottom:716.416050px;}
.y29d{bottom:716.770073px;}
.y21e{bottom:720.069323px;}
.y450{bottom:721.230000px;}
.y10{bottom:722.461395px;}
.y1e8{bottom:726.946027px;}
.y322{bottom:730.246844px;}
.y349{bottom:730.476361px;}
.y25a{bottom:731.368823px;}
.y2e5{bottom:731.410050px;}
.y29c{bottom:731.764073px;}
.y4c{bottom:732.165344px;}
.y3d8{bottom:733.425000px;}
.y8c{bottom:733.485260px;}
.y95{bottom:733.485306px;}
.y19c{bottom:734.825527px;}
.y21d{bottom:735.063323px;}
.yf{bottom:741.211395px;}
.y44f{bottom:742.470000px;}
.y321{bottom:745.240844px;}
.y348{bottom:745.470361px;}
.y1e7{bottom:745.663027px;}
.y259{bottom:746.362823px;}
.y2e4{bottom:746.404050px;}
.y29b{bottom:746.758073px;}
.y42d{bottom:747.690000px;}
.y19b{bottom:749.819527px;}
.y21c{bottom:750.057323px;}
.y4b{bottom:750.915344px;}
.y363{bottom:751.425000px;}
.y8b{bottom:752.235260px;}
.ye{bottom:759.961395px;}
.y320{bottom:760.234844px;}
.y347{bottom:760.464361px;}
.y1e6{bottom:760.657027px;}
.y258{bottom:761.356823px;}
.y2e3{bottom:761.398050px;}
.y29a{bottom:761.752073px;}
.y44e{bottom:763.710000px;}
.y19a{bottom:764.813527px;}
.y21b{bottom:765.051323px;}
.y3fc{bottom:767.085000px;}
.y3d7{bottom:769.425000px;}
.y42c{bottom:769.470000px;}
.y4a{bottom:769.665344px;}
.y8a{bottom:770.985260px;}
.y31f{bottom:775.228844px;}
.y346{bottom:775.458361px;}
.y1e5{bottom:775.651027px;}
.y257{bottom:776.350823px;}
.y2e2{bottom:776.392050px;}
.y299{bottom:776.746073px;}
.yd{bottom:778.711395px;}
.y418{bottom:779.865000px;}
.y21a{bottom:780.045323px;}
.y199{bottom:783.530527px;}
.y3b1{bottom:783.645000px;}
.y3fb{bottom:785.085000px;}
.y3d6{bottom:787.425000px;}
.y49{bottom:788.415344px;}
.y386{bottom:789.045000px;}
.y94{bottom:789.735260px;}
.y31e{bottom:790.222844px;}
.y345{bottom:790.452361px;}
.y1e4{bottom:790.645027px;}
.y362{bottom:791.025000px;}
.y256{bottom:791.344823px;}
.y2e1{bottom:791.386050px;}
.y298{bottom:791.740073px;}
.y219{bottom:795.039323px;}
.yc{bottom:797.461395px;}
.y198{bottom:802.247527px;}
.y31d{bottom:805.216844px;}
.y3d5{bottom:805.245000px;}
.y344{bottom:805.446361px;}
.y1e3{bottom:805.639027px;}
.y3fa{bottom:806.325000px;}
.y255{bottom:806.338823px;}
.y2e0{bottom:806.380050px;}
.y297{bottom:806.734073px;}
.y37a{bottom:807.045000px;}
.y48{bottom:807.165344px;}
.y89{bottom:808.485260px;}
.y218{bottom:810.033323px;}
.yb{bottom:816.211395px;}
.y31c{bottom:820.210844px;}
.y343{bottom:820.440361px;}
.y1e2{bottom:820.633027px;}
.y197{bottom:820.964527px;}
.yc5{bottom:821.306407px;}
.yf2{bottom:821.315414px;}
.y11b{bottom:821.324420px;}
.y254{bottom:821.332823px;}
.ye4{bottom:821.333427px;}
.yf1{bottom:821.342433px;}
.y12b{bottom:821.351440px;}
.y141{bottom:821.351449px;}
.y124{bottom:821.360447px;}
.y2df{bottom:821.374050px;}
.y296{bottom:821.728073px;}
.y3d4{bottom:823.245000px;}
.y3f9{bottom:823.605000px;}
.y42a{bottom:824.400000px;}
.y217{bottom:825.027323px;}
.y47{bottom:825.915344px;}
.y93{bottom:827.235260px;}
.yf3{bottom:830.315414px;}
.yd9{bottom:830.324420px;}
.ye5{bottom:830.333427px;}
.y11c{bottom:830.342433px;}
.y11f{bottom:830.351440px;}
.y125{bottom:830.360447px;}
.y109{bottom:830.369453px;}
.y115{bottom:830.378460px;}
.y31b{bottom:835.204844px;}
.y342{bottom:835.434361px;}
.y253{bottom:836.326823px;}
.y2de{bottom:836.368050px;}
.y295{bottom:836.722073px;}
.y361{bottom:837.465000px;}
.y132{bottom:837.839433px;}
.y1e1{bottom:839.350027px;}
.y196{bottom:839.681527px;}
.y3f8{bottom:840.885000px;}
.y3d3{bottom:841.245000px;}
.y46{bottom:844.665344px;}
.y88{bottom:845.985260px;}
.y31a{bottom:850.198844px;}
.y341{bottom:850.428361px;}
.y252{bottom:851.320823px;}
.y2dd{bottom:851.362050px;}
.y294{bottom:851.716073px;}
.y1e0{bottom:854.344027px;}
.y195{bottom:854.675527px;}
.y216{bottom:855.028073px;}
.y3f7{bottom:857.985000px;}
.y3d2{bottom:859.245000px;}
.ya{bottom:860.394153px;}
.y45{bottom:863.415344px;}
.y92{bottom:864.735260px;}
.y319{bottom:865.192844px;}
.y340{bottom:865.422361px;}
.y251{bottom:866.314823px;}
.y2dc{bottom:866.356050px;}
.y293{bottom:866.710073px;}
.y194{bottom:869.669527px;}
.y3f6{bottom:872.745000px;}
.y1df{bottom:873.061027px;}
.y9{bottom:875.388153px;}
.y3cc{bottom:877.245000px;}
.y360{bottom:878.865000px;}
.y318{bottom:880.186844px;}
.y33f{bottom:880.416361px;}
.y250{bottom:881.308823px;}
.y2db{bottom:881.350050px;}
.y292{bottom:881.704073px;}
.y44{bottom:882.165344px;}
.y91{bottom:883.485260px;}
.y193{bottom:888.386527px;}
.y3f5{bottom:890.745000px;}
.y1de{bottom:891.778027px;}
.y215{bottom:892.474823px;}
.y317{bottom:895.180844px;}
.y33e{bottom:895.410361px;}
.y24f{bottom:896.302823px;}
.y2da{bottom:896.344050px;}
.y291{bottom:896.698073px;}
.y43{bottom:900.915344px;}
.y87{bottom:902.235260px;}
.yf4{bottom:902.819411px;}
.yda{bottom:902.828418px;}
.ye6{bottom:902.837425px;}
.yf5{bottom:902.846431px;}
.y139{bottom:902.846440px;}
.y120{bottom:902.855438px;}
.y126{bottom:902.864444px;}
.y10a{bottom:902.873451px;}
.y116{bottom:902.882458px;}
.y192{bottom:903.380527px;}
.y133{bottom:907.337433px;}
.y3f4{bottom:908.790000px;}
.y316{bottom:910.174844px;}
.y33d{bottom:910.404361px;}
.y1dd{bottom:910.495027px;}
.y24e{bottom:911.296823px;}
.y2d9{bottom:911.338050px;}
.y290{bottom:911.692073px;}
.y144{bottom:911.828418px;}
.y8{bottom:917.988190px;}
.y191{bottom:918.374527px;}
.y42{bottom:919.665344px;}
.y86{bottom:920.985260px;}
.y3b0{bottom:922.290000px;}
.y214{bottom:922.474823px;}
.y315{bottom:925.168844px;}
.y35f{bottom:925.350000px;}
.y33c{bottom:925.398361px;}
.y1dc{bottom:925.489027px;}
.y24d{bottom:926.290823px;}
.y2d8{bottom:926.332050px;}
.y28f{bottom:926.686073px;}
.y3f3{bottom:926.790000px;}
.y190{bottom:933.368527px;}
.y7{bottom:936.738190px;}
.y41{bottom:938.415344px;}
.y85{bottom:939.735260px;}
.y314{bottom:940.162844px;}
.y3af{bottom:940.290000px;}
.y33b{bottom:940.392361px;}
.y1db{bottom:940.483027px;}
.y24c{bottom:941.284823px;}
.y2d7{bottom:941.326050px;}
.y28e{bottom:941.680073px;}
.y3f2{bottom:944.790000px;}
.y18f{bottom:948.362527px;}
.y40f{bottom:952.350000px;}
.y313{bottom:955.156844px;}
.y33a{bottom:955.386361px;}
.y24b{bottom:956.278823px;}
.y213{bottom:956.283280px;}
.y2d6{bottom:956.320050px;}
.y28d{bottom:956.674073px;}
.y40{bottom:957.165344px;}
.y3ae{bottom:958.290000px;}
.y90{bottom:958.485260px;}
.y1da{bottom:959.200027px;}
.y35e{bottom:959.910000px;}
.y3f1{bottom:962.790000px;}
.y18e{bottom:967.079527px;}
.y312{bottom:970.150844px;}
.y339{bottom:970.380361px;}
.y24a{bottom:971.272823px;}
.y212{bottom:971.277280px;}
.y2d5{bottom:971.314050px;}
.y28c{bottom:971.668073px;}
.y6f{bottom:975.915298px;}
.y3f{bottom:975.915344px;}
.y84{bottom:977.235260px;}
.y1d9{bottom:977.917027px;}
.y3ad{bottom:979.530000px;}
.yd0{bottom:980.093411px;}
.ydb{bottom:980.102418px;}
.ye7{bottom:980.111425px;}
.yf6{bottom:980.120431px;}
.y13a{bottom:980.120440px;}
.y121{bottom:980.129438px;}
.y142{bottom:980.129447px;}
.y127{bottom:980.138444px;}
.y10b{bottom:980.147451px;}
.y117{bottom:980.156458px;}
.y3f0{bottom:980.790000px;}
.y6{bottom:981.424622px;}
.y311{bottom:985.144844px;}
.y338{bottom:985.374361px;}
.y18d{bottom:985.796527px;}
.y249{bottom:986.266823px;}
.y2d4{bottom:986.308050px;}
.y28b{bottom:986.662073px;}
.yd1{bottom:989.093411px;}
.ydc{bottom:989.102418px;}
.ye8{bottom:989.111425px;}
.yf7{bottom:989.120431px;}
.y122{bottom:989.129438px;}
.y143{bottom:989.129447px;}
.y131{bottom:989.147451px;}
.y118{bottom:989.156458px;}
.y6e{bottom:994.665298px;}
.y3e{bottom:994.665344px;}
.y159{bottom:995.985260px;}
.y1d8{bottom:996.634027px;}
.y3ac{bottom:996.810000px;}
.y3ed{bottom:998.790000px;}
.y310{bottom:1000.138844px;}
.y337{bottom:1000.368361px;}
.y18c{bottom:1000.790527px;}
.y248{bottom:1001.260823px;}
.y211{bottom:1001.278030px;}
.y2d3{bottom:1001.302050px;}
.y28a{bottom:1001.656073px;}
.y35d{bottom:1006.350000px;}
.y5{bottom:1008.424622px;}
.y1d7{bottom:1011.628027px;}
.y6d{bottom:1013.415298px;}
.y3d{bottom:1013.415344px;}
.y3ab{bottom:1014.090000px;}
.y83{bottom:1014.735260px;}
.y30f{bottom:1015.132844px;}
.y336{bottom:1015.362361px;}
.y247{bottom:1016.254823px;}
.y210{bottom:1016.272030px;}
.y2d2{bottom:1016.296050px;}
.y289{bottom:1016.650073px;}
.y18b{bottom:1019.507527px;}
.y1d6{bottom:1026.622027px;}
.y3aa{bottom:1028.850000px;}
.y187{bottom:1030.126844px;}
.y335{bottom:1030.356361px;}
.y246{bottom:1031.248823px;}
.y20f{bottom:1031.266030px;}
.y2d1{bottom:1031.290050px;}
.y288{bottom:1031.644073px;}
.y378{bottom:1032.090000px;}
.y6c{bottom:1032.165298px;}
.y3c{bottom:1032.165344px;}
.y82{bottom:1033.485260px;}
.y18a{bottom:1038.224527px;}
.y35c{bottom:1040.910000px;}
.y1d5{bottom:1041.616027px;}
.y186{bottom:1045.120844px;}
.y334{bottom:1045.350361px;}
.y245{bottom:1046.242823px;}
.y20e{bottom:1046.260030px;}
.y2d0{bottom:1046.284050px;}
.y287{bottom:1046.638073px;}
.y3a9{bottom:1046.850000px;}
.y6b{bottom:1050.915298px;}
.y3b{bottom:1050.915344px;}
.y81{bottom:1052.235260px;}
.y1d4{bottom:1056.610027px;}
.y189{bottom:1056.941527px;}
.y185{bottom:1060.114844px;}
.y333{bottom:1060.344361px;}
.y244{bottom:1061.236823px;}
.y2cf{bottom:1061.278050px;}
.y286{bottom:1061.632073px;}
.y3a8{bottom:1064.850000px;}
.y377{bottom:1067.370000px;}
.y6a{bottom:1069.665298px;}
.y3a{bottom:1069.665344px;}
.y80{bottom:1070.985260px;}
.y35b{bottom:1073.130000px;}
.y40d{bottom:1074.210000px;}
.y184{bottom:1075.108844px;}
.y332{bottom:1075.338361px;}
.y4{bottom:1076.132080px;}
.y243{bottom:1076.230823px;}
.y20d{bottom:1076.260780px;}
.y2ce{bottom:1076.272050px;}
.y285{bottom:1076.626073px;}
.y3a7{bottom:1082.850000px;}
.y188{bottom:1084.277527px;}
.y375{bottom:1085.370000px;}
.y69{bottom:1088.415298px;}
.y39{bottom:1088.415344px;}
.y7f{bottom:1089.735260px;}
.y183{bottom:1090.102844px;}
.y331{bottom:1090.332361px;}
.y242{bottom:1091.224823px;}
.y20c{bottom:1091.254780px;}
.y2cd{bottom:1091.266050px;}
.y284{bottom:1091.620073px;}
.y40c{bottom:1093.290000px;}
.y3a6{bottom:1100.850000px;}
.y35a{bottom:1106.970000px;}
.y374{bottom:1107.150000px;}
.y3{bottom:1109.586556px;}
.y40b{bottom:1117.590000px;}
.y3a5{bottom:1118.850000px;}
.y3cb{bottom:1119.570000px;}
.y2{bottom:1126.582306px;}
.y38{bottom:1127.482361px;}
.y3a4{bottom:1136.850000px;}
.y359{bottom:1139.370000px;}
.y357{bottom:1194.300000px;}
.h2c{height:17.100000px;}
.h22{height:17.280000px;}
.h28{height:17.316000px;}
.h35{height:18.180000px;}
.h41{height:21.060000px;}
.h42{height:21.096000px;}
.h3f{height:21.240000px;}
.h40{height:21.276000px;}
.hf{height:21.315403px;}
.h20{height:27.166641px;}
.h3e{height:30.456000px;}
.h44{height:31.140000px;}
.he{height:31.973760px;}
.h10{height:32.017680px;}
.h2{height:33.840000px;}
.hc{height:34.307699px;}
.h32{height:34.380000px;}
.h23{height:34.560000px;}
.h12{height:34.596000px;}
.h13{height:36.828000px;}
.h15{height:38.617162px;}
.h11{height:38.617208px;}
.h14{height:38.617757px;}
.h1f{height:41.756133px;}
.h1d{height:42.164648px;}
.h7{height:43.260000px;}
.h36{height:43.506914px;}
.h3a{height:44.265586px;}
.h3{height:44.676000px;}
.h21{height:46.283906px;}
.h1c{height:46.736719px;}
.h1e{height:48.046641px;}
.h34{height:48.224531px;}
.hb{height:49.011000px;}
.h2b{height:51.660000px;}
.h2a{height:51.840000px;}
.ha{height:51.912000px;}
.h16{height:52.173000px;}
.h45{height:52.416000px;}
.h17{height:53.160000px;}
.h4{height:55.461000px;}
.h1b{height:55.987031px;}
.h8{height:57.660000px;}
.hd{height:59.004000px;}
.h9{height:61.380000px;}
.h6{height:64.866000px;}
.h2d{height:68.940000px;}
.h2e{height:68.976000px;}
.h5{height:85.056000px;}
.h25{height:86.220000px;}
.h46{height:98.460000px;}
.h39{height:104.580000px;}
.h3d{height:105.480000px;}
.h18{height:108.987000px;}
.h37{height:121.860000px;}
.h29{height:137.916000px;}
.h26{height:138.096000px;}
.h43{height:138.600000px;}
.h33{height:155.370000px;}
.h38{height:172.470000px;}
.h31{height:177.870000px;}
.h2f{height:207.030000px;}
.h24{height:224.310000px;}
.h30{height:241.590000px;}
.h27{height:414.075000px;}
.h3b{height:892.980000px;}
.h3c{height:893.250000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.h19{height:1262.880000px;}
.h1a{height:1263.000000px;}
.w16{width:47.520000px;}
.we{width:47.880000px;}
.w1e{width:68.580000px;}
.w1f{width:68.760000px;}
.w2a{width:68.940000px;}
.w2b{width:68.976000px;}
.w18{width:70.740000px;}
.w17{width:70.776000px;}
.w20{width:72.000000px;}
.w21{width:72.216000px;}
.w19{width:72.360000px;}
.w29{width:72.900000px;}
.w28{width:73.080000px;}
.w2d{width:73.476000px;}
.w2c{width:73.620000px;}
.w1a{width:73.836000px;}
.w1b{width:73.980000px;}
.w27{width:75.240000px;}
.w26{width:75.456000px;}
.w1c{width:75.600000px;}
.w1d{width:75.636000px;}
.w32{width:78.156000px;}
.w33{width:80.100000px;}
.w5{width:83.880000px;}
.w36{width:84.960000px;}
.w37{width:85.140000px;}
.w34{width:88.920000px;}
.w35{width:88.956000px;}
.w31{width:93.816000px;}
.w38{width:94.716000px;}
.w7{width:127.620000px;}
.w13{width:136.980000px;}
.w15{width:137.556000px;}
.wd{width:138.276000px;}
.wf{width:140.796000px;}
.w24{width:141.156000px;}
.w14{width:143.856000px;}
.w10{width:144.360000px;}
.w23{width:145.620000px;}
.w25{width:146.736000px;}
.w11{width:147.456000px;}
.w22{width:150.330000px;}
.w12{width:150.870000px;}
.w2e{width:157.890000px;}
.w30{width:169.740000px;}
.w2f{width:177.510000px;}
.w9{width:251.670000px;}
.w8{width:297.795000px;}
.w6{width:590.865000px;}
.w4{width:675.645000px;}
.w39{width:787.110000px;}
.w0{width:892.914000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:1262.879981px;}
.wa{width:1262.880000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.xdb{left:7.740000px;}
.xea{left:10.080000px;}
.xed{left:13.320000px;}
.xfd{left:14.940000px;}
.xe4{left:16.560000px;}
.xe5{left:18.540000px;}
.xf1{left:20.520000px;}
.xf3{left:22.140000px;}
.xe7{left:23.400000px;}
.xe8{left:25.740000px;}
.xf5{left:27.720000px;}
.xef{left:28.980000px;}
.xe6{left:31.140000px;}
.xf2{left:32.220000px;}
.xdf{left:35.100000px;}
.xeb{left:38.190000px;}
.xec{left:39.270000px;}
.xe1{left:42.834000px;}
.x101{left:44.820000px;}
.xf9{left:47.880000px;}
.xfa{left:58.140000px;}
.xe0{left:62.145000px;}
.xee{left:70.560000px;}
.x102{left:71.820000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.xe2{left:89.145000px;}
.x6{left:93.530404px;}
.x5{left:97.796100px;}
.xd9{left:102.048152px;}
.x33{left:107.673145px;}
.x10{left:108.775955px;}
.xe3{left:116.145000px;}
.x34{left:121.173145px;}
.x11{left:122.275955px;}
.xda{left:124.055987px;}
.x35{left:134.673145px;}
.x12{left:135.775955px;}
.x95{left:157.497143px;}
.x36{left:159.000145px;}
.x13{left:161.047955px;}
.x96{left:170.997143px;}
.x37{left:172.500145px;}
.x14{left:174.547955px;}
.x97{left:184.497143px;}
.x38{left:186.000145px;}
.x15{left:188.047955px;}
.xdc{left:193.530000px;}
.x98{left:197.997143px;}
.x39{left:199.500145px;}
.x16{left:201.547955px;}
.x8a{left:203.397145px;}
.x99{left:211.497143px;}
.x3a{left:213.000145px;}
.x17{left:215.047955px;}
.x8b{left:216.897145px;}
.x9a{left:224.997143px;}
.x3b{left:226.500145px;}
.x18{left:228.547955px;}
.x8c{left:230.397145px;}
.xdd{left:235.650000px;}
.x9b{left:238.497143px;}
.x3c{left:240.000145px;}
.x19{left:242.047955px;}
.x8d{left:246.300145px;}
.x9c{left:251.997143px;}
.x3d{left:253.500145px;}
.x6a{left:254.994145px;}
.x8e{left:259.800145px;}
.x9d{left:265.497143px;}
.x3e{left:267.000145px;}
.x6b{left:268.494145px;}
.xd7{left:276.874661px;}
.x9e{left:278.997143px;}
.x3f{left:280.500145px;}
.x6c{left:281.994145px;}
.xbc{left:286.196994px;}
.x9f{left:292.497143px;}
.x5f{left:294.000145px;}
.x40{left:296.403145px;}
.x8f{left:297.996145px;}
.xbd{left:299.696994px;}
.xa0{left:305.997143px;}
.x75{left:307.500145px;}
.x41{left:309.903145px;}
.x90{left:311.496145px;}
.xbe{left:313.196994px;}
.xa1{left:319.497143px;}
.x76{left:321.000145px;}
.x1a{left:323.290955px;}
.x6d{left:324.897145px;}
.xbf{left:329.099994px;}
.xa2{left:332.997143px;}
.x77{left:334.500145px;}
.x1b{left:336.790955px;}
.xc9{left:337.803143px;}
.x42{left:339.306145px;}
.xc0{left:342.599994px;}
.xa3{left:346.497143px;}
.x78{left:348.000145px;}
.x1c{left:350.290955px;}
.xca{left:351.303143px;}
.x43{left:352.806145px;}
.xc1{left:358.502994px;}
.xa4{left:359.997143px;}
.x79{left:361.500145px;}
.x1d{left:363.790955px;}
.xcb{left:364.803143px;}
.x44{left:366.306145px;}
.xf{left:367.570496px;}
.xfe{left:369.615000px;}
.xc2{left:372.002994px;}
.xa5{left:373.497143px;}
.x7a{left:375.000145px;}
.x1e{left:377.290955px;}
.x45{left:379.806145px;}
.xc3{left:385.502994px;}
.xa6{left:386.997143px;}
.x7b{left:388.500145px;}
.x1f{left:390.790955px;}
.x6e{left:392.397145px;}
.xcc{left:394.206143px;}
.x46{left:398.481145px;}
.xa7{left:400.497143px;}
.xd{left:402.743517px;}
.x7{left:404.529007px;}
.x91{left:405.996145px;}
.x6f{left:408.300145px;}
.x47{left:411.981145px;}
.xa8{left:413.997143px;}
.x7c{left:415.500145px;}
.x20{left:417.790955px;}
.x92{left:419.496145px;}
.x70{left:421.800145px;}
.x48{left:425.481145px;}
.xa9{left:427.497143px;}
.x7d{left:429.000145px;}
.x60{left:431.403145px;}
.x93{left:432.996145px;}
.x71{left:435.300145px;}
.x49{left:438.981145px;}
.xaa{left:440.997143px;}
.x7e{left:442.500145px;}
.x8{left:443.818635px;}
.x61{left:444.903145px;}
.x94{left:446.496145px;}
.x72{left:448.800145px;}
.x4a{left:452.481145px;}
.xab{left:454.497143px;}
.x7f{left:456.000145px;}
.x4{left:459.212540px;}
.x62{left:460.806145px;}
.x73{left:462.300145px;}
.x4b{left:465.981145px;}
.xac{left:467.997143px;}
.x80{left:469.500145px;}
.xb4{left:472.803143px;}
.x63{left:474.306145px;}
.x74{left:475.800145px;}
.x4c{left:479.481145px;}
.xad{left:481.497143px;}
.x81{left:483.000145px;}
.xd8{left:484.725290px;}
.xb5{left:486.303143px;}
.xcd{left:488.706143px;}
.x21{left:489.736955px;}
.xe{left:492.775394px;}
.xae{left:494.997143px;}
.x82{left:496.500145px;}
.xb6{left:499.803143px;}
.xce{left:502.206143px;}
.x22{left:503.236955px;}
.x4d{left:506.481145px;}
.xaf{left:508.497143px;}
.x83{left:510.000145px;}
.xc6{left:513.303143px;}
.xb7{left:515.706143px;}
.x23{left:516.736955px;}
.xcf{left:518.109143px;}
.x4e{left:519.981145px;}
.x84{left:523.500145px;}
.xc7{left:526.803143px;}
.xb8{left:529.206143px;}
.x24{left:530.236955px;}
.xd0{left:531.609143px;}
.xde{left:533.445000px;}
.x4f{left:535.884145px;}
.x85{left:537.000145px;}
.xc8{left:540.303143px;}
.x103{left:541.335000px;}
.xb9{left:542.706143px;}
.x25{left:543.736955px;}
.x50{left:549.384145px;}
.x86{left:550.500145px;}
.xd5{left:552.198152px;}
.xba{left:556.206143px;}
.x26{left:557.236955px;}
.xd6{left:561.199652px;}
.x51{left:562.884145px;}
.x87{left:564.000145px;}
.xbb{left:569.706143px;}
.x27{left:570.736955px;}
.x64{left:573.612145px;}
.x52{left:576.384145px;}
.x88{left:577.500145px;}
.xe9{left:580.395000px;}
.xc4{left:582.945143px;}
.x28{left:584.236955px;}
.x65{left:587.112145px;}
.x53{left:589.884145px;}
.x89{left:591.000145px;}
.xd1{left:596.877142px;}
.x66{left:600.612145px;}
.x54{left:603.384145px;}
.x29{left:604.414952px;}
.x67{left:614.112145px;}
.x55{left:616.884145px;}
.x2a{left:617.914952px;}
.xc5{left:621.141143px;}
.x56{left:630.384145px;}
.x2b{left:631.414952px;}
.xb0{left:634.803143px;}
.xd2{left:635.835888px;}
.x9{left:643.795724px;}
.x2c{left:644.914952px;}
.x57{left:646.287145px;}
.xb1{left:648.303143px;}
.xd3{left:654.591138px;}
.x68{left:657.015145px;}
.x2d{left:658.414952px;}
.x58{left:659.787145px;}
.xa{left:661.144538px;}
.x69{left:670.515145px;}
.x2e{left:671.914952px;}
.x59{left:675.690145px;}
.x2f{left:685.414952px;}
.xb{left:686.669998px;}
.x5a{left:689.190145px;}
.xc{left:690.714020px;}
.x30{left:698.914952px;}
.x5b{left:702.690145px;}
.x31{left:712.414952px;}
.xb2{left:715.803143px;}
.x5c{left:718.593145px;}
.x32{left:725.914952px;}
.x1{left:728.220612px;}
.xb3{left:729.303143px;}
.x5d{left:732.093145px;}
.xd4{left:744.094482px;}
.x5e{left:745.593145px;}
.xff{left:801.285000px;}
.xf6{left:803.805000px;}
.xfb{left:870.270000px;}
.xf0{left:879.450000px;}
.x100{left:942.630000px;}
.xf7{left:948.030000px;}
.xfc{left:1014.990000px;}
.xf4{left:1016.790000px;}
.xf8{left:1088.790000px;}
@media print{
.v4{vertical-align:-20.712240pt;}
.v2{vertical-align:-18.133301pt;}
.v6{vertical-align:-1.237415pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800008pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:21.333333pt;}
.v5{vertical-align:53.312000pt;}
.ls51{letter-spacing:-1.760000pt;}
.lsbc{letter-spacing:-1.541333pt;}
.ls5e{letter-spacing:-1.405333pt;}
.ls57{letter-spacing:-1.280000pt;}
.ls5d{letter-spacing:-1.216000pt;}
.lsbd{letter-spacing:-1.133333pt;}
.lsd4{letter-spacing:-1.088000pt;}
.ls50{letter-spacing:-0.960000pt;}
.lsd3{letter-spacing:-0.952000pt;}
.lsdf{letter-spacing:-0.912000pt;}
.ls7b{letter-spacing:-0.906667pt;}
.ls55{letter-spacing:-0.896000pt;}
.lsbb{letter-spacing:-0.861333pt;}
.ls7c{letter-spacing:-0.853333pt;}
.lsd8{letter-spacing:-0.816000pt;}
.ls54{letter-spacing:-0.800000pt;}
.ls92{letter-spacing:-0.746667pt;}
.lsd7{letter-spacing:-0.725333pt;}
.lsd5{letter-spacing:-0.680000pt;}
.ls47{letter-spacing:-0.663680pt;}
.ls7d{letter-spacing:-0.640000pt;}
.lsd2{letter-spacing:-0.634667pt;}
.lsba{letter-spacing:-0.589333pt;}
.lsd6{letter-spacing:-0.544000pt;}
.lsbe{letter-spacing:-0.498667pt;}
.ls56{letter-spacing:-0.480000pt;}
.lsb9{letter-spacing:-0.453333pt;}
.ls7a{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.416000pt;}
.lsde{letter-spacing:-0.408000pt;}
.ls6a{letter-spacing:-0.373333pt;}
.lsc0{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.320000pt;}
.lsa7{letter-spacing:-0.317333pt;}
.ls4e{letter-spacing:-0.312320pt;}
.ls4d{letter-spacing:-0.273280pt;}
.lsa8{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls4c{letter-spacing:-0.234240pt;}
.lsbf{letter-spacing:-0.226667pt;}
.ls45{letter-spacing:-0.213333pt;}
.lsa6{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.lsaa{letter-spacing:-0.136000pt;}
.ls4a{letter-spacing:-0.117120pt;}
.ls18{letter-spacing:-0.106667pt;}
.lse0{letter-spacing:-0.094933pt;}
.lsac{letter-spacing:-0.090667pt;}
.ls48{letter-spacing:-0.078080pt;}
.ls69{letter-spacing:-0.053333pt;}
.lsa5{letter-spacing:-0.045333pt;}
.ls46{letter-spacing:-0.039040pt;}
.ls17{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000035pt;}
.ls85{letter-spacing:0.005327pt;}
.ls3a{letter-spacing:0.026667pt;}
.ls40{letter-spacing:0.039040pt;}
.lsa1{letter-spacing:0.045333pt;}
.lse5{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.053333pt;}
.ls43{letter-spacing:0.078080pt;}
.ls9b{letter-spacing:0.090667pt;}
.lse6{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.106667pt;}
.ls9c{letter-spacing:0.113333pt;}
.ls3d{letter-spacing:0.117120pt;}
.ls79{letter-spacing:0.133333pt;}
.lsb1{letter-spacing:0.136000pt;}
.lsc7{letter-spacing:0.153595pt;}
.ls41{letter-spacing:0.156160pt;}
.lsb8{letter-spacing:0.158667pt;}
.ls16{letter-spacing:0.158926pt;}
.ls22{letter-spacing:0.160000pt;}
.ls5f{letter-spacing:0.181333pt;}
.lse1{letter-spacing:0.183467pt;}
.ls3f{letter-spacing:0.195200pt;}
.ls9a{letter-spacing:0.204000pt;}
.ls93{letter-spacing:0.213311pt;}
.ls2{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.218642pt;}
.ls33{letter-spacing:0.224000pt;}
.ls15{letter-spacing:0.226667pt;}
.ls42{letter-spacing:0.234240pt;}
.lsa0{letter-spacing:0.234667pt;}
.ls61{letter-spacing:0.240000pt;}
.ls7f{letter-spacing:0.245333pt;}
.lsa2{letter-spacing:0.256000pt;}
.ls7e{letter-spacing:0.261323pt;}
.ls66{letter-spacing:0.266648pt;}
.ls76{letter-spacing:0.266654pt;}
.ls4{letter-spacing:0.266667pt;}
.lsad{letter-spacing:0.272000pt;}
.ls44{letter-spacing:0.273280pt;}
.ls1d{letter-spacing:0.293333pt;}
.ls65{letter-spacing:0.304000pt;}
.ls3e{letter-spacing:0.312320pt;}
.ls9d{letter-spacing:0.317333pt;}
.ls78{letter-spacing:0.319967pt;}
.lsc{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.346667pt;}
.lsb7{letter-spacing:0.362667pt;}
.ls21{letter-spacing:0.373333pt;}
.ls6d{letter-spacing:0.389333pt;}
.ls25{letter-spacing:0.400000pt;}
.ls9e{letter-spacing:0.408000pt;}
.ls8{letter-spacing:0.421397pt;}
.ls20{letter-spacing:0.426667pt;}
.ls49{letter-spacing:0.429440pt;}
.ls71{letter-spacing:0.448000pt;}
.ls6e{letter-spacing:0.453333pt;}
.ls73{letter-spacing:0.469313pt;}
.lsd9{letter-spacing:0.476000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.495993pt;}
.lsae{letter-spacing:0.498667pt;}
.ls84{letter-spacing:0.501333pt;}
.ls2d{letter-spacing:0.506667pt;}
.ls4b{letter-spacing:0.507520pt;}
.ls12{letter-spacing:0.533333pt;}
.ls9f{letter-spacing:0.544000pt;}
.ls5{letter-spacing:0.560000pt;}
.lsc2{letter-spacing:0.566667pt;}
.ls75{letter-spacing:0.570651pt;}
.lsb{letter-spacing:0.586667pt;}
.ls96{letter-spacing:0.589333pt;}
.ls94{letter-spacing:0.597333pt;}
.lsc1{letter-spacing:0.612000pt;}
.ls67{letter-spacing:0.613314pt;}
.lsa9{letter-spacing:0.634667pt;}
.ls80{letter-spacing:0.639952pt;}
.lsa{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.650658pt;}
.ls1e{letter-spacing:0.666667pt;}
.lsaf{letter-spacing:0.680000pt;}
.ls7{letter-spacing:0.693333pt;}
.lsc8{letter-spacing:0.702667pt;}
.ls68{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.720000pt;}
.ls98{letter-spacing:0.725333pt;}
.ls1c{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.746667pt;}
.ls34{letter-spacing:0.762658pt;}
.ls97{letter-spacing:0.770667pt;}
.ls29{letter-spacing:0.773333pt;}
.lse{letter-spacing:0.800000pt;}
.ls81{letter-spacing:0.810645pt;}
.ls6b{letter-spacing:0.810661pt;}
.lsb5{letter-spacing:0.816000pt;}
.ls60{letter-spacing:0.826667pt;}
.lsf{letter-spacing:0.853333pt;}
.ls35{letter-spacing:0.858667pt;}
.lsc3{letter-spacing:0.861333pt;}
.ls62{letter-spacing:0.874667pt;}
.ls2b{letter-spacing:0.880000pt;}
.lsda{letter-spacing:0.884000pt;}
.ls23{letter-spacing:0.906667pt;}
.ls13{letter-spacing:0.917333pt;}
.ls2c{letter-spacing:0.933333pt;}
.lsa4{letter-spacing:0.952000pt;}
.ls32{letter-spacing:0.960000pt;}
.lsd1{letter-spacing:0.974667pt;}
.lscb{letter-spacing:0.997333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls3b{letter-spacing:1.034667pt;}
.ls36{letter-spacing:1.040000pt;}
.ls99{letter-spacing:1.042667pt;}
.ls74{letter-spacing:1.045309pt;}
.ls83{letter-spacing:1.045323pt;}
.ls2a{letter-spacing:1.066667pt;}
.lsb0{letter-spacing:1.088000pt;}
.lsc4{letter-spacing:1.094800pt;}
.lsc6{letter-spacing:1.094999pt;}
.lsc5{letter-spacing:1.095488pt;}
.ls24{letter-spacing:1.120000pt;}
.lsdc{letter-spacing:1.133333pt;}
.ls39{letter-spacing:1.136000pt;}
.ls10{letter-spacing:1.173333pt;}
.lsa3{letter-spacing:1.178667pt;}
.lsce{letter-spacing:1.224000pt;}
.ls28{letter-spacing:1.226667pt;}
.lsb4{letter-spacing:1.246667pt;}
.ls70{letter-spacing:1.253333pt;}
.ls63{letter-spacing:1.280000pt;}
.lsb3{letter-spacing:1.314667pt;}
.ls37{letter-spacing:1.333333pt;}
.ls38{letter-spacing:1.360000pt;}
.lsdb{letter-spacing:1.382667pt;}
.ls1b{letter-spacing:1.386667pt;}
.lscc{letter-spacing:1.405333pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls91{letter-spacing:1.493333pt;}
.lsab{letter-spacing:1.496000pt;}
.lsb6{letter-spacing:1.541333pt;}
.ls8e{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.599991pt;}
.ls26{letter-spacing:1.600000pt;}
.lsb2{letter-spacing:1.632000pt;}
.ls89{letter-spacing:1.653316pt;}
.ls72{letter-spacing:1.653333pt;}
.lscf{letter-spacing:1.677333pt;}
.ls64{letter-spacing:1.706667pt;}
.ls95{letter-spacing:1.744000pt;}
.ls31{letter-spacing:1.760000pt;}
.ls8b{letter-spacing:1.786667pt;}
.ls82{letter-spacing:1.813333pt;}
.ls90{letter-spacing:1.866667pt;}
.ls6f{letter-spacing:1.920000pt;}
.lsdd{letter-spacing:1.949333pt;}
.ls8f{letter-spacing:1.973333pt;}
.lsca{letter-spacing:1.994667pt;}
.ls77{letter-spacing:2.026667pt;}
.ls3c{letter-spacing:2.080000pt;}
.ls8a{letter-spacing:2.085333pt;}
.lscd{letter-spacing:2.108000pt;}
.ls86{letter-spacing:2.133333pt;}
.ls8d{letter-spacing:2.186667pt;}
.ls8c{letter-spacing:2.346667pt;}
.lsc9{letter-spacing:2.357333pt;}
.lsd0{letter-spacing:2.620267pt;}
.ls87{letter-spacing:2.720000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls58{letter-spacing:36.096000pt;}
.ls5b{letter-spacing:39.616000pt;}
.ls59{letter-spacing:41.952000pt;}
.ls53{letter-spacing:44.992000pt;}
.ls5a{letter-spacing:45.504000pt;}
.lse4{letter-spacing:56.912640pt;}
.lse3{letter-spacing:57.072640pt;}
.ls5c{letter-spacing:57.376000pt;}
.ls52{letter-spacing:106.176000pt;}
.lse2{letter-spacing:751.770027pt;}
.ws12d{word-spacing:-53.120000pt;}
.ws129{word-spacing:-14.720000pt;}
.ws89{word-spacing:-14.186667pt;}
.ws29{word-spacing:-14.133333pt;}
.ws28{word-spacing:-14.106667pt;}
.ws2{word-spacing:-14.034667pt;}
.wsaf{word-spacing:-14.026667pt;}
.wsbf{word-spacing:-13.920000pt;}
.ws88{word-spacing:-13.813333pt;}
.ws27{word-spacing:-13.653333pt;}
.ws47{word-spacing:-13.600000pt;}
.wsa4{word-spacing:-13.546667pt;}
.ws12c{word-spacing:-13.463467pt;}
.ws12f{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.333333pt;}
.ws12e{word-spacing:-13.327360pt;}
.ws87{word-spacing:-13.280000pt;}
.ws12a{word-spacing:-13.185067pt;}
.ws12b{word-spacing:-12.960000pt;}
.ws120{word-spacing:-12.240000pt;}
.ws110{word-spacing:-12.194667pt;}
.ws122{word-spacing:-11.741333pt;}
.ws83{word-spacing:-11.560000pt;}
.ws82{word-spacing:-11.514667pt;}
.wsc3{word-spacing:-11.424000pt;}
.ws53{word-spacing:-11.360640pt;}
.wsd{word-spacing:-11.333333pt;}
.ws121{word-spacing:-11.288000pt;}
.ws51{word-spacing:-11.282560pt;}
.wsfa{word-spacing:-11.106667pt;}
.ws112{word-spacing:-11.061333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws54{word-spacing:-11.009280pt;}
.ws58{word-spacing:-10.970240pt;}
.ws4f{word-spacing:-10.892160pt;}
.wse1{word-spacing:-10.880000pt;}
.ws4c{word-spacing:-10.853120pt;}
.ws4d{word-spacing:-10.814080pt;}
.ws7{word-spacing:-10.800000pt;}
.ws50{word-spacing:-10.775040pt;}
.ws52{word-spacing:-10.736000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws104{word-spacing:-10.653333pt;}
.ws55{word-spacing:-10.618880pt;}
.ws56{word-spacing:-10.579840pt;}
.ws57{word-spacing:-10.540800pt;}
.wsa{word-spacing:-10.240000pt;}
.wse2{word-spacing:-10.200000pt;}
.ws4e{word-spacing:-10.189440pt;}
.ws6{word-spacing:-10.133333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsc2{word-spacing:-8.794667pt;}
.ws128{word-spacing:-8.640000pt;}
.ws6f{word-spacing:-8.000000pt;}
.wsc{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws78{word-spacing:-7.200000pt;}
.ws15{word-spacing:-6.666667pt;}
.ws74{word-spacing:-4.000000pt;}
.wsb8{word-spacing:-2.346667pt;}
.wsb9{word-spacing:-2.186667pt;}
.wsb6{word-spacing:-2.080000pt;}
.wsbc{word-spacing:-1.973333pt;}
.wsc1{word-spacing:-1.920000pt;}
.wsb7{word-spacing:-1.813333pt;}
.wsba{word-spacing:-1.706667pt;}
.wsaa{word-spacing:-1.653333pt;}
.ws8f{word-spacing:-1.600000pt;}
.wsbb{word-spacing:-1.546667pt;}
.ws124{word-spacing:-1.405333pt;}
.ws61{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws43{word-spacing:-1.280000pt;}
.ws91{word-spacing:-1.226667pt;}
.ws10{word-spacing:-1.173333pt;}
.ws85{word-spacing:-1.133333pt;}
.wsfc{word-spacing:-1.126533pt;}
.ws1b{word-spacing:-1.120000pt;}
.wsf4{word-spacing:-1.088000pt;}
.ws4a{word-spacing:-1.066667pt;}
.wsda{word-spacing:-1.042667pt;}
.wsb1{word-spacing:-1.013333pt;}
.ws11b{word-spacing:-0.997333pt;}
.wsa6{word-spacing:-0.960000pt;}
.wsd3{word-spacing:-0.952000pt;}
.ws19{word-spacing:-0.906667pt;}
.wsd1{word-spacing:-0.861333pt;}
.ws98{word-spacing:-0.853333pt;}
.wsea{word-spacing:-0.816000pt;}
.ws31{word-spacing:-0.800000pt;}
.ws113{word-spacing:-0.770667pt;}
.ws45{word-spacing:-0.746667pt;}
.ws10f{word-spacing:-0.725333pt;}
.ws18{word-spacing:-0.693333pt;}
.wsd4{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsd5{word-spacing:-0.634667pt;}
.ws95{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.544000pt;}
.ws8b{word-spacing:-0.533333pt;}
.wsd9{word-spacing:-0.498667pt;}
.ws8d{word-spacing:-0.480000pt;}
.wsd0{word-spacing:-0.453333pt;}
.ws6a{word-spacing:-0.429440pt;}
.ws37{word-spacing:-0.426667pt;}
.ws7e{word-spacing:-0.416000pt;}
.ws127{word-spacing:-0.408000pt;}
.ws34{word-spacing:-0.373333pt;}
.ws26{word-spacing:-0.362667pt;}
.ws2d{word-spacing:-0.320000pt;}
.wsec{word-spacing:-0.317333pt;}
.ws7c{word-spacing:-0.288000pt;}
.ws101{word-spacing:-0.272000pt;}
.ws5{word-spacing:-0.266667pt;}
.wscf{word-spacing:-0.234667pt;}
.ws69{word-spacing:-0.234240pt;}
.ws86{word-spacing:-0.226667pt;}
.ws44{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.195200pt;}
.wsf6{word-spacing:-0.181333pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws6c{word-spacing:-0.156160pt;}
.ws105{word-spacing:-0.136000pt;}
.ws66{word-spacing:-0.117120pt;}
.ws20{word-spacing:-0.106667pt;}
.wsb{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws68{word-spacing:-0.039040pt;}
.wsfd{word-spacing:-0.031733pt;}
.wse{word-spacing:0.000000pt;}
.ws67{word-spacing:0.039040pt;}
.ws115{word-spacing:0.045333pt;}
.ws93{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.078080pt;}
.ws14{word-spacing:0.106667pt;}
.ws11a{word-spacing:0.136000pt;}
.ws2b{word-spacing:0.160000pt;}
.ws5f{word-spacing:0.213333pt;}
.wsc7{word-spacing:0.226667pt;}
.ws92{word-spacing:0.266667pt;}
.wsf3{word-spacing:0.272000pt;}
.wsc8{word-spacing:0.317333pt;}
.ws3e{word-spacing:0.320000pt;}
.wsdc{word-spacing:0.362667pt;}
.ws9b{word-spacing:0.373333pt;}
.ws11c{word-spacing:0.408000pt;}
.ws46{word-spacing:0.426667pt;}
.wsdb{word-spacing:0.453333pt;}
.wsab{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.533333pt;}
.wseb{word-spacing:0.544000pt;}
.wsae{word-spacing:0.640000pt;}
.wsf2{word-spacing:0.680000pt;}
.ws9a{word-spacing:0.693333pt;}
.ws102{word-spacing:0.725333pt;}
.ws36{word-spacing:0.746667pt;}
.ws2f{word-spacing:0.800000pt;}
.wsa9{word-spacing:0.853333pt;}
.wsce{word-spacing:0.861333pt;}
.ws11d{word-spacing:0.906667pt;}
.ws116{word-spacing:0.997333pt;}
.ws38{word-spacing:1.013333pt;}
.wsd2{word-spacing:1.042667pt;}
.ws8c{word-spacing:1.066667pt;}
.ws111{word-spacing:1.088000pt;}
.ws60{word-spacing:1.120000pt;}
.wscd{word-spacing:1.133333pt;}
.wsa8{word-spacing:1.173333pt;}
.wsf9{word-spacing:1.178667pt;}
.wsef{word-spacing:1.224000pt;}
.ws1d{word-spacing:1.226667pt;}
.wse4{word-spacing:1.269333pt;}
.ws2e{word-spacing:1.280000pt;}
.wsd7{word-spacing:1.314667pt;}
.ws17{word-spacing:1.333333pt;}
.wscc{word-spacing:1.360000pt;}
.ws22{word-spacing:1.386667pt;}
.ws84{word-spacing:1.405333pt;}
.ws41{word-spacing:1.440000pt;}
.ws99{word-spacing:1.493333pt;}
.wse9{word-spacing:1.496000pt;}
.ws5a{word-spacing:1.546667pt;}
.wsfb{word-spacing:1.586667pt;}
.ws13{word-spacing:1.600000pt;}
.wsc9{word-spacing:1.632000pt;}
.ws12{word-spacing:1.653333pt;}
.wse5{word-spacing:1.677333pt;}
.wsa1{word-spacing:1.706667pt;}
.wse7{word-spacing:1.722667pt;}
.wsb3{word-spacing:1.760000pt;}
.ws10a{word-spacing:1.768000pt;}
.ws40{word-spacing:1.813333pt;}
.wsdd{word-spacing:1.858667pt;}
.ws3c{word-spacing:1.866667pt;}
.wscb{word-spacing:1.904000pt;}
.ws30{word-spacing:1.920000pt;}
.ws123{word-spacing:1.949333pt;}
.ws59{word-spacing:1.973333pt;}
.ws65{word-spacing:2.026667pt;}
.wse6{word-spacing:2.040000pt;}
.ws1c{word-spacing:2.080000pt;}
.wsf8{word-spacing:2.085333pt;}
.wsca{word-spacing:2.130667pt;}
.ws1e{word-spacing:2.133333pt;}
.ws11e{word-spacing:2.176000pt;}
.wsa3{word-spacing:2.186667pt;}
.wsf7{word-spacing:2.221333pt;}
.ws97{word-spacing:2.240000pt;}
.wse0{word-spacing:2.266667pt;}
.ws49{word-spacing:2.293333pt;}
.ws9d{word-spacing:2.346667pt;}
.wsf0{word-spacing:2.357333pt;}
.ws23{word-spacing:2.400000pt;}
.wsad{word-spacing:2.453333pt;}
.ws39{word-spacing:2.506667pt;}
.ws100{word-spacing:2.538667pt;}
.ws5c{word-spacing:2.560000pt;}
.ws107{word-spacing:2.584000pt;}
.ws48{word-spacing:2.613333pt;}
.wsa2{word-spacing:2.666667pt;}
.ws96{word-spacing:2.720000pt;}
.wsff{word-spacing:2.765333pt;}
.ws5e{word-spacing:2.826667pt;}
.wsfe{word-spacing:2.856000pt;}
.wsbd{word-spacing:2.880000pt;}
.ws119{word-spacing:2.901333pt;}
.ws33{word-spacing:2.933333pt;}
.ws9f{word-spacing:2.986667pt;}
.wsd8{word-spacing:2.992000pt;}
.wse3{word-spacing:3.037333pt;}
.ws21{word-spacing:3.040000pt;}
.ws11f{word-spacing:3.082667pt;}
.wsc6{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.146667pt;}
.ws117{word-spacing:3.173333pt;}
.ws5b{word-spacing:3.200000pt;}
.ws42{word-spacing:3.253333pt;}
.ws94{word-spacing:3.360000pt;}
.ws3a{word-spacing:3.520000pt;}
.ws3b{word-spacing:3.573333pt;}
.ws103{word-spacing:3.581333pt;}
.wsa0{word-spacing:3.626667pt;}
.ws109{word-spacing:3.672000pt;}
.ws9e{word-spacing:3.680000pt;}
.wsf5{word-spacing:3.717333pt;}
.ws32{word-spacing:3.733333pt;}
.wse8{word-spacing:3.762667pt;}
.wsc0{word-spacing:3.786667pt;}
.ws106{word-spacing:3.808000pt;}
.wsc5{word-spacing:3.840000pt;}
.ws35{word-spacing:3.893333pt;}
.ws1f{word-spacing:3.946667pt;}
.wsa5{word-spacing:4.053333pt;}
.wsd6{word-spacing:4.080000pt;}
.ws8a{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.213333pt;}
.ws118{word-spacing:4.216000pt;}
.wsb4{word-spacing:4.320000pt;}
.ws90{word-spacing:4.373333pt;}
.wsb5{word-spacing:4.533333pt;}
.ws62{word-spacing:4.746667pt;}
.wsee{word-spacing:4.850667pt;}
.ws63{word-spacing:4.906667pt;}
.ws10d{word-spacing:4.941333pt;}
.ws2a{word-spacing:5.013333pt;}
.ws108{word-spacing:5.032000pt;}
.ws2c{word-spacing:5.066667pt;}
.wsde{word-spacing:5.213333pt;}
.wsc4{word-spacing:5.280000pt;}
.wsdf{word-spacing:5.621333pt;}
.ws114{word-spacing:5.666667pt;}
.wsb0{word-spacing:5.813333pt;}
.wsb2{word-spacing:5.866667pt;}
.wsf1{word-spacing:5.984000pt;}
.ws8e{word-spacing:6.080000pt;}
.ws3d{word-spacing:6.133333pt;}
.wsed{word-spacing:6.392000pt;}
.ws9c{word-spacing:6.453333pt;}
.ws5d{word-spacing:6.826667pt;}
.ws10e{word-spacing:7.389333pt;}
.ws125{word-spacing:7.525333pt;}
.wsac{word-spacing:8.106667pt;}
.ws10c{word-spacing:8.296000pt;}
.ws64{word-spacing:8.373333pt;}
.ws126{word-spacing:9.837333pt;}
.ws10b{word-spacing:10.200000pt;}
.ws77{word-spacing:24.544000pt;}
.ws7f{word-spacing:31.648000pt;}
.ws80{word-spacing:34.944000pt;}
.ws7d{word-spacing:45.888000pt;}
.ws6e{word-spacing:60.489643pt;}
.ws25{word-spacing:64.237333pt;}
.ws71{word-spacing:132.576000pt;}
.ws7b{word-spacing:141.280000pt;}
.ws75{word-spacing:148.576000pt;}
.ws79{word-spacing:194.208000pt;}
.ws81{word-spacing:206.464000pt;}
.ws72{word-spacing:232.800000pt;}
.ws76{word-spacing:241.984000pt;}
.ws70{word-spacing:243.935992pt;}
.ws7a{word-spacing:249.280000pt;}
.wsbe{word-spacing:302.733364pt;}
.ws73{word-spacing:304.416000pt;}
._80{margin-left:-23.890667pt;}
._7b{margin-left:-19.357333pt;}
._7c{margin-left:-17.113333pt;}
._7d{margin-left:-16.138667pt;}
._7{margin-left:-14.733333pt;}
._7a{margin-left:-13.690667pt;}
._78{margin-left:-12.738667pt;}
._7f{margin-left:-11.378667pt;}
._f{margin-left:-9.973333pt;}
._c{margin-left:-8.480000pt;}
._10{margin-left:-7.066131pt;}
._5{margin-left:-5.429333pt;}
._6{margin-left:-3.554664pt;}
._2{margin-left:-2.635202pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.612800pt;}
._b{width:2.629869pt;}
._e{width:4.258664pt;}
._11{width:5.419186pt;}
._53{width:7.045326pt;}
._d{width:8.112000pt;}
._71{width:9.565318pt;}
._81{width:10.634688pt;}
._4{width:11.653333pt;}
._72{width:12.761333pt;}
._3{width:14.026667pt;}
._8{width:16.320000pt;}
._7e{width:17.544000pt;}
._76{width:19.201069pt;}
._79{width:20.490667pt;}
._75{width:22.007480pt;}
._74{width:23.282674pt;}
._73{width:25.859200pt;}
._77{width:28.219200pt;}
._3f{width:31.328000pt;}
._82{width:33.093333pt;}
._25{width:34.048000pt;}
._2b{width:35.584000pt;}
._15{width:40.992000pt;}
._3a{width:42.912000pt;}
._9{width:48.552000pt;}
._14{width:50.687992pt;}
._46{width:51.584000pt;}
._44{width:55.712000pt;}
._47{width:58.176000pt;}
._3d{width:62.624000pt;}
._34{width:71.520000pt;}
._4e{width:75.104000pt;}
._4d{width:79.520000pt;}
._1f{width:81.194667pt;}
._2a{width:89.536000pt;}
._30{width:91.072000pt;}
._36{width:95.520000pt;}
._48{width:97.312000pt;}
._32{width:99.786667pt;}
._21{width:101.760000pt;}
._50{width:103.520000pt;}
._45{width:107.584000pt;}
._22{width:113.771194pt;}
._3c{width:123.133867pt;}
._2e{width:125.312000pt;}
._42{width:130.592008pt;}
._13{width:132.096000pt;}
._4f{width:136.896000pt;}
._1a{width:138.336000pt;}
._20{width:140.128000pt;}
._26{width:141.056000pt;}
._37{width:142.656000pt;}
._38{width:145.792000pt;}
._31{width:149.056000pt;}
._29{width:150.368000pt;}
._3e{width:152.896000pt;}
._17{width:154.784000pt;}
._2f{width:155.904000pt;}
._51{width:158.656000pt;}
._33{width:163.072000pt;}
._2d{width:165.760000pt;}
._35{width:169.792000pt;}
._23{width:171.133867pt;}
._28{width:178.208000pt;}
._4a{width:182.848000pt;}
._24{width:189.344000pt;}
._52{width:193.792000pt;}
._12{width:195.932245pt;}
._19{width:200.608000pt;}
._39{width:202.176000pt;}
._4b{width:203.072000pt;}
._43{width:205.664000pt;}
._2c{width:206.685867pt;}
._41{width:213.504000pt;}
._1d{width:214.848000pt;}
._16{width:217.120000pt;}
._1e{width:224.896000pt;}
._18{width:229.344000pt;}
._49{width:245.411755pt;}
._1c{width:257.280000pt;}
._61{width:260.757299pt;}
._40{width:270.816000pt;}
._4c{width:288.416000pt;}
._1b{width:312.416000pt;}
._70{width:319.781299pt;}
._59{width:331.159965pt;}
._57{width:343.626632pt;}
._63{width:346.573299pt;}
._27{width:363.552000pt;}
._3b{width:388.523202pt;}
._6c{width:415.479965pt;}
._6f{width:446.850632pt;}
._58{width:499.947703pt;}
._68{width:503.743965pt;}
._6e{width:522.421299pt;}
._55{width:528.514630pt;}
._5b{width:577.701832pt;}
._56{width:580.357299pt;}
._5d{width:602.997296pt;}
._66{width:623.061299pt;}
._54{width:630.560499pt;}
._5e{width:654.839965pt;}
._6b{width:670.978632pt;}
._6a{width:683.535965pt;}
._6d{width:705.023965pt;}
._69{width:730.319965pt;}
._67{width:733.402660pt;}
._5a{width:744.010632pt;}
._83{width:753.164800pt;}
._62{width:756.567965pt;}
._5f{width:851.042632pt;}
._5c{width:867.245832pt;}
._60{width:891.343965pt;}
._64{width:893.837299pt;}
._65{width:902.858632pt;}
._a{width:2095.759940pt;}
.fsc{font-size:22.399999pt;}
.fsa{font-size:26.026133pt;}
.fs7{font-size:31.733332pt;}
.fsb{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:39.040000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fse{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y376{bottom:2.880000pt;}
.y489{bottom:3.360000pt;}
.y40e{bottom:3.840000pt;}
.y44c{bottom:6.394667pt;}
.y438{bottom:6.400000pt;}
.y447{bottom:6.440000pt;}
.y443{bottom:6.560000pt;}
.y423{bottom:14.240000pt;}
.y435{bottom:14.720000pt;}
.y499{bottom:14.880000pt;}
.y477{bottom:15.200000pt;}
.y417{bottom:15.360000pt;}
.y3b6{bottom:18.080000pt;}
.y379{bottom:18.240000pt;}
.y3bb{bottom:18.266667pt;}
.y488{bottom:18.746667pt;}
.y475{bottom:18.880000pt;}
.y433{bottom:20.000000pt;}
.y422{bottom:29.600000pt;}
.y416{bottom:30.720000pt;}
.y426{bottom:31.520000pt;}
.y3b5{bottom:33.440000pt;}
.y3ca{bottom:33.466667pt;}
.y385{bottom:33.600000pt;}
.y3a2{bottom:33.626667pt;}
.y3d1{bottom:33.640000pt;}
.y474{bottom:34.080000pt;}
.y487{bottom:34.106667pt;}
.y432{bottom:35.360000pt;}
.y498{bottom:42.080000pt;}
.y421{bottom:45.920000pt;}
.y48b{bottom:46.080000pt;}
.y415{bottom:46.880000pt;}
.y3b4{bottom:48.800000pt;}
.y3ba{bottom:48.826667pt;}
.y3c2{bottom:48.840000pt;}
.y384{bottom:48.960000pt;}
.y3a1{bottom:48.986667pt;}
.y3d0{bottom:49.000000pt;}
.y473{bottom:49.440000pt;}
.y431{bottom:50.720000pt;}
.y358{bottom:51.200000pt;}
.y42b{bottom:51.232000pt;}
.y3e7{bottom:53.800000pt;}
.y497{bottom:58.560000pt;}
.y1{bottom:61.181335pt;}
.y420{bottom:61.280000pt;}
.y425{bottom:62.240000pt;}
.y414{bottom:63.200000pt;}
.y388{bottom:64.160000pt;}
.y3b9{bottom:64.186667pt;}
.y383{bottom:64.320000pt;}
.y3a0{bottom:64.346667pt;}
.y3cf{bottom:64.360000pt;}
.y472{bottom:64.800000pt;}
.y412{bottom:65.120000pt;}
.y430{bottom:66.080000pt;}
.y3e6{bottom:69.000000pt;}
.y496{bottom:75.040000pt;}
.y41f{bottom:77.600000pt;}
.y413{bottom:78.560000pt;}
.y3b3{bottom:79.520000pt;}
.y3b8{bottom:79.546667pt;}
.y382{bottom:79.680000pt;}
.y39f{bottom:79.706667pt;}
.y3ce{bottom:79.720000pt;}
.y471{bottom:80.160000pt;}
.y411{bottom:80.480000pt;}
.y42f{bottom:81.280000pt;}
.y3e5{bottom:84.360000pt;}
.y41e{bottom:92.960000pt;}
.y38c{bottom:94.880000pt;}
.y39e{bottom:94.906667pt;}
.y381{bottom:94.920000pt;}
.y470{bottom:95.520000pt;}
.y410{bottom:95.840000pt;}
.y3e4{bottom:99.720000pt;}
.y3a3{bottom:100.000000pt;}
.y158{bottom:100.117605pt;}
.y1c7{bottom:100.153605pt;}
.ybf{bottom:100.384135pt;}
.ybe{bottom:100.384267pt;}
.y37{bottom:100.389600pt;}
.yc6{bottom:100.394146pt;}
.yd2{bottom:100.402151pt;}
.ydd{bottom:100.410157pt;}
.ye9{bottom:100.418163pt;}
.y134{bottom:100.418171pt;}
.yf8{bottom:100.426169pt;}
.y13b{bottom:100.426177pt;}
.yfd{bottom:100.434175pt;}
.y100{bottom:100.442181pt;}
.y10c{bottom:100.450186pt;}
.y68{bottom:100.813599pt;}
.y157{bottom:100.813639pt;}
.y176{bottom:101.986898pt;}
.y20b{bottom:102.018272pt;}
.y1d3{bottom:102.113605pt;}
.y241{bottom:102.843062pt;}
.y3ec{bottom:103.040000pt;}
.y2cc{bottom:103.342933pt;}
.y283{bottom:103.657620pt;}
.y30e{bottom:103.694267pt;}
.y2c5{bottom:104.008954pt;}
.y484{bottom:104.832000pt;}
.y494{bottom:106.432000pt;}
.y40a{bottom:106.720000pt;}
.y41d{bottom:108.160000pt;}
.yc7{bottom:108.394146pt;}
.yd3{bottom:108.402151pt;}
.yde{bottom:108.410157pt;}
.yea{bottom:108.418163pt;}
.y135{bottom:108.418171pt;}
.y11d{bottom:108.426169pt;}
.y12f{bottom:108.434175pt;}
.y101{bottom:108.442181pt;}
.y10d{bottom:108.450186pt;}
.y2c{bottom:108.854533pt;}
.y424{bottom:109.120000pt;}
.y3c9{bottom:110.106667pt;}
.y3b2{bottom:110.120000pt;}
.y3ef{bottom:110.240000pt;}
.y38b{bottom:110.266667pt;}
.y380{bottom:110.280000pt;}
.y46f{bottom:110.880000pt;}
.y44d{bottom:112.512000pt;}
.y46c{bottom:112.832000pt;}
.y373{bottom:113.280000pt;}
.ybd{bottom:114.082861pt;}
.y3e3{bottom:115.080000pt;}
.y20a{bottom:115.346272pt;}
.y38d{bottom:116.000000pt;}
.y240{bottom:116.171062pt;}
.y2cb{bottom:116.670933pt;}
.y1c6{bottom:116.820272pt;}
.y282{bottom:116.985620pt;}
.y30d{bottom:117.022267pt;}
.y2c4{bottom:117.336954pt;}
.y67{bottom:117.480265pt;}
.y156{bottom:117.480306pt;}
.y36{bottom:118.250936pt;}
.y175{bottom:118.653564pt;}
.y1d2{bottom:118.780272pt;}
.y3c4{bottom:123.200000pt;}
.y483{bottom:123.712000pt;}
.yb9{bottom:124.179791pt;}
.y41c{bottom:124.520000pt;}
.y493{bottom:125.312000pt;}
.y3c8{bottom:125.466667pt;}
.y41a{bottom:125.480000pt;}
.y2b{bottom:125.521200pt;}
.y3ee{bottom:125.600000pt;}
.y39d{bottom:125.626667pt;}
.y37f{bottom:125.640000pt;}
.y409{bottom:126.080000pt;}
.y209{bottom:128.674272pt;}
.y23f{bottom:129.499062pt;}
.y2ca{bottom:129.998933pt;}
.y281{bottom:130.313620pt;}
.y30c{bottom:130.350267pt;}
.y3e2{bottom:130.440000pt;}
.y2c3{bottom:130.664954pt;}
.y44b{bottom:131.392000pt;}
.y46b{bottom:131.712000pt;}
.y1c5{bottom:133.486938pt;}
.y35{bottom:133.764936pt;}
.y66{bottom:134.146932pt;}
.y155{bottom:134.146973pt;}
.yb8{bottom:135.315951pt;}
.y174{bottom:135.320231pt;}
.y182{bottom:135.320272pt;}
.y1d1{bottom:135.446938pt;}
.y41b{bottom:139.880000pt;}
.y3c7{bottom:140.826667pt;}
.y419{bottom:140.840000pt;}
.y39c{bottom:140.986667pt;}
.y37e{bottom:141.000000pt;}
.y208{bottom:142.002272pt;}
.y2a{bottom:142.187866pt;}
.y372{bottom:142.240000pt;}
.y482{bottom:142.586667pt;}
.y408{bottom:142.720000pt;}
.y23e{bottom:142.827062pt;}
.y2c9{bottom:143.326933pt;}
.y280{bottom:143.641620pt;}
.y30b{bottom:143.678267pt;}
.y2c2{bottom:143.992954pt;}
.y492{bottom:144.186667pt;}
.y3e1{bottom:145.640000pt;}
.y1c4{bottom:150.153605pt;}
.y44a{bottom:150.266667pt;}
.y46a{bottom:150.426667pt;}
.y65{bottom:150.813599pt;}
.y154{bottom:150.813639pt;}
.y34{bottom:151.626272pt;}
.y173{bottom:151.986898pt;}
.y181{bottom:151.986938pt;}
.y1d0{bottom:152.113605pt;}
.y207{bottom:155.330272pt;}
.y23d{bottom:156.155062pt;}
.y3c6{bottom:156.186667pt;}
.y402{bottom:156.200000pt;}
.y39b{bottom:156.346667pt;}
.y37d{bottom:156.360000pt;}
.y2c8{bottom:156.654933pt;}
.y27f{bottom:156.969620pt;}
.y30a{bottom:157.006267pt;}
.y2c1{bottom:157.320954pt;}
.y407{bottom:158.106667pt;}
.y29{bottom:158.854533pt;}
.y481{bottom:161.466667pt;}
.y491{bottom:163.066667pt;}
.y3eb{bottom:164.986667pt;}
.y1c3{bottom:166.820272pt;}
.y33{bottom:167.140262pt;}
.y64{bottom:167.480265pt;}
.y153{bottom:167.480306pt;}
.y172{bottom:168.653564pt;}
.y180{bottom:168.653605pt;}
.y206{bottom:168.658272pt;}
.y1cf{bottom:168.780272pt;}
.y449{bottom:169.146667pt;}
.y469{bottom:169.306667pt;}
.y23c{bottom:169.483062pt;}
.y2c7{bottom:169.982933pt;}
.y27e{bottom:170.297620pt;}
.y309{bottom:170.334267pt;}
.y1bc{bottom:170.423579pt;}
.y2c0{bottom:170.648954pt;}
.y371{bottom:171.066667pt;}
.y3c5{bottom:171.546667pt;}
.y401{bottom:171.560000pt;}
.y39a{bottom:171.706667pt;}
.y37c{bottom:171.720000pt;}
.y406{bottom:173.306667pt;}
.y28{bottom:175.521200pt;}
.yc8{bottom:176.226146pt;}
.yd4{bottom:176.234151pt;}
.ydf{bottom:176.242157pt;}
.yeb{bottom:176.250163pt;}
.y136{bottom:176.250171pt;}
.y11e{bottom:176.258169pt;}
.y130{bottom:176.266175pt;}
.y102{bottom:176.274181pt;}
.y10e{bottom:176.282186pt;}
.y480{bottom:180.346667pt;}
.y490{bottom:181.946667pt;}
.y23b{bottom:182.811062pt;}
.y2c6{bottom:183.316267pt;}
.y1c2{bottom:183.486938pt;}
.y27d{bottom:183.625620pt;}
.y308{bottom:183.662267pt;}
.y2bf{bottom:183.976954pt;}
.y63{bottom:184.146932pt;}
.y152{bottom:184.146973pt;}
.y32{bottom:185.001607pt;}
.y171{bottom:185.320231pt;}
.y17f{bottom:185.320272pt;}
.y1ce{bottom:185.446938pt;}
.y405{bottom:186.426667pt;}
.y399{bottom:186.906667pt;}
.y37b{bottom:186.920000pt;}
.y1bb{bottom:187.060913pt;}
.y448{bottom:188.026667pt;}
.y468{bottom:188.186667pt;}
.y27{bottom:192.187866pt;}
.y205{bottom:195.325605pt;}
.y23a{bottom:196.139062pt;}
.y27c{bottom:196.953620pt;}
.y307{bottom:196.990267pt;}
.y2be{bottom:197.304954pt;}
.y47f{bottom:199.226667pt;}
.y370{bottom:200.026667pt;}
.y1c1{bottom:200.153605pt;}
.y31{bottom:200.515608pt;}
.y62{bottom:200.813599pt;}
.y151{bottom:200.813639pt;}
.y170{bottom:201.986898pt;}
.y17e{bottom:201.986938pt;}
.y1cd{bottom:202.113605pt;}
.y398{bottom:202.266667pt;}
.y3cd{bottom:202.280000pt;}
.y404{bottom:202.426667pt;}
.yb7{bottom:202.679471pt;}
.y1ba{bottom:203.698246pt;}
.y446{bottom:206.906667pt;}
.y467{bottom:207.066667pt;}
.y204{bottom:208.653605pt;}
.y26{bottom:208.854533pt;}
.y239{bottom:209.467062pt;}
.y27b{bottom:210.281620pt;}
.y306{bottom:210.318267pt;}
.y2bd{bottom:210.632954pt;}
.y49b{bottom:211.266667pt;}
.y48f{bottom:212.706667pt;}
.yb6{bottom:213.952271pt;}
.y1c0{bottom:216.820272pt;}
.yb5{bottom:217.204264pt;}
.y61{bottom:217.480265pt;}
.y150{bottom:217.480306pt;}
.y397{bottom:217.626667pt;}
.y47e{bottom:217.986667pt;}
.y30{bottom:218.376933pt;}
.y403{bottom:218.426667pt;}
.y16f{bottom:218.653564pt;}
.y17d{bottom:218.653605pt;}
.y1cc{bottom:218.780272pt;}
.y1b9{bottom:220.335579pt;}
.y238{bottom:222.795062pt;}
.y27a{bottom:223.609620pt;}
.y305{bottom:223.646267pt;}
.y2bc{bottom:223.960954pt;}
.yb4{bottom:225.161017pt;}
.y25{bottom:225.521200pt;}
.y445{bottom:225.826667pt;}
.y466{bottom:225.986667pt;}
.y3ea{bottom:227.066667pt;}
.y36f{bottom:228.826667pt;}
.y396{bottom:232.986667pt;}
.y1bf{bottom:233.486938pt;}
.y1b8{bottom:233.663579pt;}
.y7e{bottom:234.146932pt;}
.y14f{bottom:234.146973pt;}
.y16e{bottom:235.320231pt;}
.y17c{bottom:235.320272pt;}
.y1cb{bottom:235.446938pt;}
.y237{bottom:236.123062pt;}
.yb3{bottom:236.365497pt;}
.y47d{bottom:236.866667pt;}
.y279{bottom:236.937620pt;}
.y304{bottom:236.974267pt;}
.y2bb{bottom:237.288954pt;}
.y49a{bottom:238.466667pt;}
.y2f{bottom:240.600133pt;}
.yaf{bottom:241.684698pt;}
.y24{bottom:242.187866pt;}
.y48e{bottom:243.266667pt;}
.y444{bottom:244.546667pt;}
.y465{bottom:244.866667pt;}
.yb2{bottom:247.569977pt;}
.y395{bottom:248.346667pt;}
.y236{bottom:249.451062pt;}
.y400{bottom:249.786667pt;}
.y1be{bottom:250.153605pt;}
.y278{bottom:250.265620pt;}
.y1b7{bottom:250.300913pt;}
.y303{bottom:250.302267pt;}
.y2ba{bottom:250.616954pt;}
.y60{bottom:250.813599pt;}
.y14e{bottom:250.813639pt;}
.y495{bottom:250.946667pt;}
.y16d{bottom:251.986898pt;}
.y17b{bottom:251.986938pt;}
.y1ca{bottom:252.113605pt;}
.yae{bottom:252.820858pt;}
.y2e{bottom:253.928133pt;}
.y47c{bottom:255.746667pt;}
.y3e9{bottom:258.266667pt;}
.y36e{bottom:258.746667pt;}
.yb1{bottom:258.842777pt;}
.y23{bottom:258.854533pt;}
.yc9{bottom:259.706146pt;}
.y48d{bottom:262.146667pt;}
.y235{bottom:262.779062pt;}
.y442{bottom:263.426667pt;}
.y394{bottom:263.586667pt;}
.y277{bottom:263.593620pt;}
.y1b6{bottom:263.628913pt;}
.y302{bottom:263.630267pt;}
.y464{bottom:263.746667pt;}
.y2b9{bottom:263.944954pt;}
.y7d{bottom:267.480265pt;}
.y14d{bottom:267.480306pt;}
.y16c{bottom:268.653564pt;}
.y17a{bottom:268.653605pt;}
.y1c9{bottom:268.780272pt;}
.yb0{bottom:270.047257pt;}
.ybc{bottom:271.501903pt;}
.y22{bottom:275.521200pt;}
.y234{bottom:276.107062pt;}
.y276{bottom:276.921620pt;}
.y301{bottom:276.958267pt;}
.y2b8{bottom:277.272954pt;}
.y393{bottom:278.946667pt;}
.y1b5{bottom:280.266246pt;}
.y48c{bottom:281.026667pt;}
.y2d{bottom:281.320800pt;}
.y441{bottom:282.306667pt;}
.y463{bottom:282.626667pt;}
.y1bd{bottom:283.486938pt;}
.y5f{bottom:284.146932pt;}
.y14c{bottom:284.146973pt;}
.y16b{bottom:285.320231pt;}
.y179{bottom:285.320272pt;}
.y1c8{bottom:285.446938pt;}
.y47b{bottom:286.466667pt;}
.y36d{bottom:288.826667pt;}
.y233{bottom:289.435062pt;}
.y3e8{bottom:289.626667pt;}
.y275{bottom:290.249620pt;}
.y300{bottom:290.286267pt;}
.y2b7{bottom:290.600954pt;}
.y21{bottom:292.187866pt;}
.y392{bottom:294.306667pt;}
.y1b4{bottom:296.903579pt;}
.y5e{bottom:300.813599pt;}
.y14b{bottom:300.813639pt;}
.y440{bottom:301.186667pt;}
.y462{bottom:301.506667pt;}
.y16a{bottom:301.986898pt;}
.y203{bottom:301.986938pt;}
.y232{bottom:302.763062pt;}
.y274{bottom:303.577620pt;}
.y2ff{bottom:303.614267pt;}
.y2b6{bottom:303.928954pt;}
.y3c3{bottom:307.866667pt;}
.y20{bottom:308.854533pt;}
.y391{bottom:309.666667pt;}
.y1b3{bottom:310.231579pt;}
.yab{bottom:311.058776pt;}
.y48a{bottom:312.386667pt;}
.y231{bottom:316.091062pt;}
.y273{bottom:316.905620pt;}
.y2fe{bottom:316.942267pt;}
.y47a{bottom:317.186667pt;}
.y2b5{bottom:317.256954pt;}
.y5d{bottom:317.480265pt;}
.y14a{bottom:317.480306pt;}
.y169{bottom:318.653564pt;}
.y178{bottom:318.653605pt;}
.y43f{bottom:320.066667pt;}
.y461{bottom:320.386667pt;}
.yad{bottom:322.263256pt;}
.yaa{bottom:322.331576pt;}
.y3c1{bottom:323.866667pt;}
.y390{bottom:325.026667pt;}
.yc0{bottom:326.282140pt;}
.yca{bottom:326.290146pt;}
.y1b2{bottom:326.868913pt;}
.y230{bottom:329.419062pt;}
.y272{bottom:330.233620pt;}
.y2fd{bottom:330.270267pt;}
.y2b4{bottom:330.584954pt;}
.y36c{bottom:331.386667pt;}
.yac{bottom:333.536056pt;}
.y5c{bottom:334.146932pt;}
.y149{bottom:334.146973pt;}
.y168{bottom:335.320231pt;}
.y202{bottom:335.320272pt;}
.y479{bottom:336.066667pt;}
.y3e0{bottom:336.346667pt;}
.y43e{bottom:338.946667pt;}
.y460{bottom:339.266667pt;}
.y1fc{bottom:339.834246pt;}
.y38f{bottom:340.386667pt;}
.y1f{bottom:342.187866pt;}
.y22f{bottom:342.747062pt;}
.y1b1{bottom:343.506246pt;}
.y271{bottom:343.561620pt;}
.y2fc{bottom:343.598267pt;}
.y2b3{bottom:343.912954pt;}
.y7c{bottom:350.813599pt;}
.y148{bottom:350.813639pt;}
.y167{bottom:351.986898pt;}
.y201{bottom:351.986938pt;}
.y1fb{bottom:353.162246pt;}
.y478{bottom:354.786667pt;}
.y38e{bottom:355.586667pt;}
.y22e{bottom:356.075062pt;}
.y270{bottom:356.889620pt;}
.y2fb{bottom:356.926267pt;}
.y2b2{bottom:357.240954pt;}
.y43d{bottom:357.826667pt;}
.y45f{bottom:358.146667pt;}
.y486{bottom:359.106667pt;}
.y1b0{bottom:360.143579pt;}
.y36b{bottom:362.106667pt;}
.y5b{bottom:367.480265pt;}
.y147{bottom:367.480306pt;}
.y166{bottom:368.653564pt;}
.y200{bottom:368.653605pt;}
.y22d{bottom:369.403062pt;}
.y1fa{bottom:369.867579pt;}
.y26f{bottom:370.217620pt;}
.y2fa{bottom:370.254267pt;}
.y2b1{bottom:370.568954pt;}
.y1af{bottom:373.471579pt;}
.y43c{bottom:376.733333pt;}
.y45e{bottom:376.893333pt;}
.ya7{bottom:380.569496pt;}
.y22c{bottom:382.731062pt;}
.y26e{bottom:383.545620pt;}
.y2f9{bottom:383.582267pt;}
.y2b0{bottom:383.896954pt;}
.y7b{bottom:384.146932pt;}
.y146{bottom:384.146973pt;}
.y165{bottom:385.320231pt;}
.y1ff{bottom:385.320272pt;}
.y3c0{bottom:385.826667pt;}
.y476{bottom:386.173333pt;}
.y1f9{bottom:386.504913pt;}
.y1ae{bottom:386.799579pt;}
.ya9{bottom:388.728856pt;}
.yc1{bottom:389.794140pt;}
.ycb{bottom:389.802146pt;}
.yd5{bottom:389.810151pt;}
.ye0{bottom:389.818157pt;}
.yec{bottom:389.826163pt;}
.y137{bottom:389.826171pt;}
.yf9{bottom:389.834169pt;}
.y13c{bottom:389.834177pt;}
.yfe{bottom:389.842175pt;}
.y103{bottom:389.850181pt;}
.y10f{bottom:389.858186pt;}
.ya6{bottom:391.773976pt;}
.y1e{bottom:392.187907pt;}
.y43b{bottom:395.613333pt;}
.y45d{bottom:395.773333pt;}
.y22b{bottom:396.059062pt;}
.y26d{bottom:396.873620pt;}
.y2f8{bottom:396.910267pt;}
.y2af{bottom:397.224954pt;}
.ya8{bottom:399.933336pt;}
.y1ad{bottom:400.127579pt;}
.y145{bottom:400.813639pt;}
.y164{bottom:401.986898pt;}
.y1fe{bottom:401.986938pt;}
.y1f8{bottom:403.142246pt;}
.y36a{bottom:403.426667pt;}
.y1d{bottom:408.854574pt;}
.y22a{bottom:409.387062pt;}
.y26c{bottom:410.201620pt;}
.y2f7{bottom:410.238267pt;}
.y2ae{bottom:410.552954pt;}
.y1ac{bottom:413.455579pt;}
.y46e{bottom:414.493333pt;}
.y45c{bottom:414.653333pt;}
.y1f7{bottom:416.470246pt;}
.y7a{bottom:417.480265pt;}
.y5a{bottom:417.480306pt;}
.y163{bottom:418.653564pt;}
.y485{bottom:421.053333pt;}
.y229{bottom:422.715062pt;}
.y26b{bottom:423.529620pt;}
.y2f6{bottom:423.566267pt;}
.y2ad{bottom:423.880954pt;}
.y43a{bottom:426.173333pt;}
.y1ab{bottom:426.783579pt;}
.y1f6{bottom:429.798246pt;}
.y369{bottom:431.106667pt;}
.y45b{bottom:433.533333pt;}
.y79{bottom:434.146932pt;}
.y59{bottom:434.146973pt;}
.y162{bottom:435.320231pt;}
.y1fd{bottom:435.320272pt;}
.y228{bottom:436.043062pt;}
.y26a{bottom:436.857620pt;}
.y2f5{bottom:436.894267pt;}
.y2ac{bottom:437.208954pt;}
.y1aa{bottom:440.111579pt;}
.y1c{bottom:442.187907pt;}
.y1f5{bottom:443.126246pt;}
.y3bf{bottom:447.906667pt;}
.y227{bottom:449.371062pt;}
.y3ff{bottom:449.826667pt;}
.y269{bottom:450.185620pt;}
.y2f4{bottom:450.222267pt;}
.y2ab{bottom:450.536954pt;}
.y78{bottom:450.813599pt;}
.y58{bottom:450.813639pt;}
.y161{bottom:451.986898pt;}
.y45a{bottom:452.413333pt;}
.y1a9{bottom:456.748913pt;}
.y439{bottom:456.893333pt;}
.y1b{bottom:458.854574pt;}
.ybb{bottom:458.932943pt;}
.y1f4{bottom:459.763579pt;}
.y368{bottom:459.906667pt;}
.y330{bottom:462.516306pt;}
.y356{bottom:462.629655pt;}
.y226{bottom:462.699062pt;}
.yc2{bottom:463.402140pt;}
.ycc{bottom:463.410146pt;}
.yd6{bottom:463.418151pt;}
.ye1{bottom:463.426157pt;}
.yed{bottom:463.434163pt;}
.y138{bottom:463.434171pt;}
.yfa{bottom:463.442169pt;}
.y13d{bottom:463.442177pt;}
.yff{bottom:463.450175pt;}
.y104{bottom:463.458181pt;}
.y110{bottom:463.466186pt;}
.y268{bottom:463.513620pt;}
.y2f3{bottom:463.550267pt;}
.y2aa{bottom:463.864954pt;}
.y3be{bottom:463.906667pt;}
.ya1{bottom:464.739732pt;}
.y77{bottom:467.480265pt;}
.y57{bottom:467.480306pt;}
.y160{bottom:468.653564pt;}
.y459{bottom:471.293333pt;}
.ycd{bottom:471.410146pt;}
.yd7{bottom:471.418151pt;}
.y12c{bottom:471.426157pt;}
.yee{bottom:471.434163pt;}
.yfb{bottom:471.442169pt;}
.y13e{bottom:471.442177pt;}
.y105{bottom:471.458181pt;}
.y111{bottom:471.466186pt;}
.y1a8{bottom:473.386246pt;}
.y1a{bottom:475.521240pt;}
.y437{bottom:475.773333pt;}
.ya5{bottom:475.807572pt;}
.y32f{bottom:475.844306pt;}
.ya0{bottom:475.875892pt;}
.y355{bottom:475.957655pt;}
.y225{bottom:476.027062pt;}
.y1f3{bottom:476.400913pt;}
.y267{bottom:476.841620pt;}
.y2f2{bottom:476.878267pt;}
.y2a9{bottom:477.192954pt;}
.y76{bottom:484.146932pt;}
.y56{bottom:484.146973pt;}
.y38a{bottom:484.706667pt;}
.y15f{bottom:485.320231pt;}
.y1a7{bottom:486.714246pt;}
.ya4{bottom:486.943732pt;}
.y9f{bottom:487.148692pt;}
.y32e{bottom:489.172306pt;}
.y224{bottom:489.355062pt;}
.y266{bottom:490.169620pt;}
.y458{bottom:490.173333pt;}
.y2f1{bottom:490.206267pt;}
.y2a8{bottom:490.520954pt;}
.y19{bottom:492.187907pt;}
.y1f2{bottom:493.038246pt;}
.y436{bottom:494.653333pt;}
.y3df{bottom:495.106667pt;}
.ya3{bottom:498.216532pt;}
.y9e{bottom:498.353172pt;}
.y75{bottom:500.813599pt;}
.y55{bottom:500.813639pt;}
.y15e{bottom:501.986898pt;}
.y32d{bottom:502.500306pt;}
.y354{bottom:502.704321pt;}
.y1a6{bottom:503.351579pt;}
.y265{bottom:503.497620pt;}
.y2f0{bottom:503.534267pt;}
.y2a7{bottom:503.848954pt;}
.y367{bottom:507.106667pt;}
.y18{bottom:508.854574pt;}
.y457{bottom:509.053333pt;}
.ya2{bottom:509.421012pt;}
.y1f1{bottom:509.675579pt;}
.y9c{bottom:510.338266pt;}
.y3bd{bottom:510.466667pt;}
.y3fe{bottom:511.906667pt;}
.y32c{bottom:515.828306pt;}
.y353{bottom:516.032321pt;}
.y1a5{bottom:516.679579pt;}
.y264{bottom:516.825620pt;}
.y2ef{bottom:516.862267pt;}
.y2a6{bottom:517.176954pt;}
.y74{bottom:517.480265pt;}
.y54{bottom:517.480306pt;}
.y15d{bottom:518.653564pt;}
.y223{bottom:519.355062pt;}
.y9d{bottom:520.420532pt;}
.y9b{bottom:523.666266pt;}
.y17{bottom:525.521240pt;}
.y434{bottom:526.013333pt;}
.y1f0{bottom:526.312913pt;}
.y3de{bottom:526.466667pt;}
.y456{bottom:527.933333pt;}
.y32b{bottom:529.156306pt;}
.y352{bottom:529.360321pt;}
.y263{bottom:530.153620pt;}
.y2ee{bottom:530.190267pt;}
.y2a5{bottom:530.504954pt;}
.y1a4{bottom:533.316913pt;}
.y73{bottom:534.146932pt;}
.y53{bottom:534.146973pt;}
.y15c{bottom:535.320231pt;}
.y9a{bottom:536.994266pt;}
.yc3{bottom:538.834140pt;}
.yce{bottom:538.842146pt;}
.yd8{bottom:538.850151pt;}
.ye2{bottom:538.858157pt;}
.yef{bottom:538.866163pt;}
.yfc{bottom:538.874169pt;}
.y13f{bottom:538.874177pt;}
.y106{bottom:538.890181pt;}
.y112{bottom:538.898186pt;}
.y16{bottom:542.187907pt;}
.y3dd{bottom:542.466667pt;}
.y32a{bottom:542.484306pt;}
.y351{bottom:542.688321pt;}
.y1ef{bottom:542.950246pt;}
.y262{bottom:543.481620pt;}
.y2ed{bottom:543.518267pt;}
.y2a4{bottom:543.832954pt;}
.y366{bottom:543.906667pt;}
.y128{bottom:546.842146pt;}
.y119{bottom:546.850151pt;}
.y455{bottom:546.853333pt;}
.y12d{bottom:546.858157pt;}
.y129{bottom:546.866163pt;}
.y107{bottom:546.890181pt;}
.y113{bottom:546.898186pt;}
.y1a3{bottom:549.954246pt;}
.y72{bottom:550.813599pt;}
.y52{bottom:550.813639pt;}
.y15b{bottom:551.986898pt;}
.y46d{bottom:553.253333pt;}
.y42e{bottom:553.893333pt;}
.y99{bottom:554.855591pt;}
.y329{bottom:555.812306pt;}
.yba{bottom:555.971962pt;}
.y350{bottom:556.016321pt;}
.y1ee{bottom:556.278246pt;}
.y429{bottom:556.386667pt;}
.y261{bottom:556.809620pt;}
.y2ec{bottom:556.846267pt;}
.y2a3{bottom:557.160954pt;}
.y3bc{bottom:557.186667pt;}
.y3fd{bottom:558.466667pt;}
.y15{bottom:558.854574pt;}
.y3dc{bottom:561.346667pt;}
.y98{bottom:563.655599pt;}
.y454{bottom:565.733333pt;}
.y1a2{bottom:566.591579pt;}
.y71{bottom:567.480265pt;}
.y51{bottom:567.480306pt;}
.y177{bottom:568.653564pt;}
.y328{bottom:569.140306pt;}
.y34f{bottom:569.344321pt;}
.y1ed{bottom:569.606246pt;}
.y260{bottom:570.137620pt;}
.y2eb{bottom:570.174267pt;}
.y2a2{bottom:570.488954pt;}
.y3b7{bottom:573.186667pt;}
.y14{bottom:575.521240pt;}
.y3db{bottom:576.706667pt;}
.y1a1{bottom:579.919579pt;}
.y327{bottom:582.468306pt;}
.y34e{bottom:582.672321pt;}
.y1ec{bottom:582.934246pt;}
.y25f{bottom:583.465620pt;}
.y2ea{bottom:583.502267pt;}
.y2a1{bottom:583.816954pt;}
.y50{bottom:584.146973pt;}
.y453{bottom:584.613333pt;}
.y15a{bottom:585.320231pt;}
.y428{bottom:586.493333pt;}
.y222{bottom:586.749620pt;}
.y365{bottom:589.853333pt;}
.y3da{bottom:592.093333pt;}
.y13{bottom:592.187907pt;}
.y326{bottom:595.796306pt;}
.y34d{bottom:596.000321pt;}
.y1eb{bottom:596.262246pt;}
.y1a0{bottom:596.556913pt;}
.y25e{bottom:596.793620pt;}
.y2e9{bottom:596.830267pt;}
.y2a0{bottom:597.144954pt;}
.y221{bottom:600.077620pt;}
.y427{bottom:600.253333pt;}
.y70{bottom:600.813599pt;}
.y4f{bottom:600.813639pt;}
.y8f{bottom:601.986898pt;}
.y97{bottom:601.986938pt;}
.y452{bottom:603.333333pt;}
.y3d9{bottom:605.213333pt;}
.y389{bottom:608.093333pt;}
.y12{bottom:608.854574pt;}
.y325{bottom:609.124306pt;}
.y34c{bottom:609.328321pt;}
.y19f{bottom:609.884913pt;}
.y25d{bottom:610.121620pt;}
.y2e8{bottom:610.158267pt;}
.y29f{bottom:610.472954pt;}
.y1ea{bottom:612.899579pt;}
.y220{bottom:613.405620pt;}
.y4e{bottom:617.480306pt;}
.y8e{bottom:618.653564pt;}
.y96{bottom:618.653605pt;}
.y451{bottom:622.213333pt;}
.y324{bottom:622.452306pt;}
.y34b{bottom:622.656321pt;}
.y19e{bottom:623.212913pt;}
.y25c{bottom:623.449620pt;}
.y2e7{bottom:623.486267pt;}
.y29e{bottom:623.800954pt;}
.y387{bottom:624.093333pt;}
.y11{bottom:625.521240pt;}
.y21f{bottom:626.733620pt;}
.yc4{bottom:628.050140pt;}
.ycf{bottom:628.058146pt;}
.y11a{bottom:628.066151pt;}
.ye3{bottom:628.074157pt;}
.yf0{bottom:628.082163pt;}
.y12a{bottom:628.090169pt;}
.y140{bottom:628.090177pt;}
.y123{bottom:628.098175pt;}
.y108{bottom:628.106181pt;}
.y114{bottom:628.114186pt;}
.y1e9{bottom:629.536913pt;}
.y364{bottom:631.133333pt;}
.y4d{bottom:634.146973pt;}
.y8d{bottom:635.320231pt;}
.y323{bottom:635.780306pt;}
.y34a{bottom:635.984321pt;}
.y12e{bottom:636.074157pt;}
.y19d{bottom:636.540913pt;}
.y25b{bottom:636.777620pt;}
.y2e6{bottom:636.814267pt;}
.y29d{bottom:637.128954pt;}
.y21e{bottom:640.061620pt;}
.y450{bottom:641.093333pt;}
.y10{bottom:642.187907pt;}
.y1e8{bottom:646.174246pt;}
.y322{bottom:649.108306pt;}
.y349{bottom:649.312321pt;}
.y25a{bottom:650.105620pt;}
.y2e5{bottom:650.142267pt;}
.y29c{bottom:650.456954pt;}
.y4c{bottom:650.813639pt;}
.y3d8{bottom:651.933333pt;}
.y8c{bottom:651.986898pt;}
.y95{bottom:651.986938pt;}
.y19c{bottom:653.178246pt;}
.y21d{bottom:653.389620pt;}
.yf{bottom:658.854574pt;}
.y44f{bottom:659.973333pt;}
.y321{bottom:662.436306pt;}
.y348{bottom:662.640321pt;}
.y1e7{bottom:662.811579pt;}
.y259{bottom:663.433620pt;}
.y2e4{bottom:663.470267pt;}
.y29b{bottom:663.784954pt;}
.y42d{bottom:664.613333pt;}
.y19b{bottom:666.506246pt;}
.y21c{bottom:666.717620pt;}
.y4b{bottom:667.480306pt;}
.y363{bottom:667.933333pt;}
.y8b{bottom:668.653564pt;}
.ye{bottom:675.521240pt;}
.y320{bottom:675.764306pt;}
.y347{bottom:675.968321pt;}
.y1e6{bottom:676.139579pt;}
.y258{bottom:676.761620pt;}
.y2e3{bottom:676.798267pt;}
.y29a{bottom:677.112954pt;}
.y44e{bottom:678.853333pt;}
.y19a{bottom:679.834246pt;}
.y21b{bottom:680.045620pt;}
.y3fc{bottom:681.853333pt;}
.y3d7{bottom:683.933333pt;}
.y42c{bottom:683.973333pt;}
.y4a{bottom:684.146973pt;}
.y8a{bottom:685.320231pt;}
.y31f{bottom:689.092306pt;}
.y346{bottom:689.296321pt;}
.y1e5{bottom:689.467579pt;}
.y257{bottom:690.089620pt;}
.y2e2{bottom:690.126267pt;}
.y299{bottom:690.440954pt;}
.yd{bottom:692.187907pt;}
.y418{bottom:693.213333pt;}
.y21a{bottom:693.373620pt;}
.y199{bottom:696.471579pt;}
.y3b1{bottom:696.573333pt;}
.y3fb{bottom:697.853333pt;}
.y3d6{bottom:699.933333pt;}
.y49{bottom:700.813639pt;}
.y386{bottom:701.373333pt;}
.y94{bottom:701.986898pt;}
.y31e{bottom:702.420306pt;}
.y345{bottom:702.624321pt;}
.y1e4{bottom:702.795579pt;}
.y362{bottom:703.133333pt;}
.y256{bottom:703.417620pt;}
.y2e1{bottom:703.454267pt;}
.y298{bottom:703.768954pt;}
.y219{bottom:706.701620pt;}
.yc{bottom:708.854574pt;}
.y198{bottom:713.108913pt;}
.y31d{bottom:715.748306pt;}
.y3d5{bottom:715.773333pt;}
.y344{bottom:715.952321pt;}
.y1e3{bottom:716.123579pt;}
.y3fa{bottom:716.733333pt;}
.y255{bottom:716.745620pt;}
.y2e0{bottom:716.782267pt;}
.y297{bottom:717.096954pt;}
.y37a{bottom:717.373333pt;}
.y48{bottom:717.480306pt;}
.y89{bottom:718.653564pt;}
.y218{bottom:720.029620pt;}
.yb{bottom:725.521240pt;}
.y31c{bottom:729.076306pt;}
.y343{bottom:729.280321pt;}
.y1e2{bottom:729.451579pt;}
.y197{bottom:729.746246pt;}
.yc5{bottom:730.050140pt;}
.yf2{bottom:730.058146pt;}
.y11b{bottom:730.066151pt;}
.y254{bottom:730.073620pt;}
.ye4{bottom:730.074157pt;}
.yf1{bottom:730.082163pt;}
.y12b{bottom:730.090169pt;}
.y141{bottom:730.090177pt;}
.y124{bottom:730.098175pt;}
.y2df{bottom:730.110267pt;}
.y296{bottom:730.424954pt;}
.y3d4{bottom:731.773333pt;}
.y3f9{bottom:732.093333pt;}
.y42a{bottom:732.800000pt;}
.y217{bottom:733.357620pt;}
.y47{bottom:734.146973pt;}
.y93{bottom:735.320231pt;}
.yf3{bottom:738.058146pt;}
.yd9{bottom:738.066151pt;}
.ye5{bottom:738.074157pt;}
.y11c{bottom:738.082163pt;}
.y11f{bottom:738.090169pt;}
.y125{bottom:738.098175pt;}
.y109{bottom:738.106181pt;}
.y115{bottom:738.114186pt;}
.y31b{bottom:742.404306pt;}
.y342{bottom:742.608321pt;}
.y253{bottom:743.401620pt;}
.y2de{bottom:743.438267pt;}
.y295{bottom:743.752954pt;}
.y361{bottom:744.413333pt;}
.y132{bottom:744.746163pt;}
.y1e1{bottom:746.088913pt;}
.y196{bottom:746.383579pt;}
.y3f8{bottom:747.453333pt;}
.y3d3{bottom:747.773333pt;}
.y46{bottom:750.813639pt;}
.y88{bottom:751.986898pt;}
.y31a{bottom:755.732306pt;}
.y341{bottom:755.936321pt;}
.y252{bottom:756.729620pt;}
.y2dd{bottom:756.766267pt;}
.y294{bottom:757.080954pt;}
.y1e0{bottom:759.416913pt;}
.y195{bottom:759.711579pt;}
.y216{bottom:760.024954pt;}
.y3f7{bottom:762.653333pt;}
.y3d2{bottom:763.773333pt;}
.ya{bottom:764.794803pt;}
.y45{bottom:767.480306pt;}
.y92{bottom:768.653564pt;}
.y319{bottom:769.060306pt;}
.y340{bottom:769.264321pt;}
.y251{bottom:770.057620pt;}
.y2dc{bottom:770.094267pt;}
.y293{bottom:770.408954pt;}
.y194{bottom:773.039579pt;}
.y3f6{bottom:775.773333pt;}
.y1df{bottom:776.054246pt;}
.y9{bottom:778.122803pt;}
.y3cc{bottom:779.773333pt;}
.y360{bottom:781.213333pt;}
.y318{bottom:782.388306pt;}
.y33f{bottom:782.592321pt;}
.y250{bottom:783.385620pt;}
.y2db{bottom:783.422267pt;}
.y292{bottom:783.736954pt;}
.y44{bottom:784.146973pt;}
.y91{bottom:785.320231pt;}
.y193{bottom:789.676913pt;}
.y3f5{bottom:791.773333pt;}
.y1de{bottom:792.691579pt;}
.y215{bottom:793.310954pt;}
.y317{bottom:795.716306pt;}
.y33e{bottom:795.920321pt;}
.y24f{bottom:796.713620pt;}
.y2da{bottom:796.750267pt;}
.y291{bottom:797.064954pt;}
.y43{bottom:800.813639pt;}
.y87{bottom:801.986898pt;}
.yf4{bottom:802.506144pt;}
.yda{bottom:802.514149pt;}
.ye6{bottom:802.522155pt;}
.yf5{bottom:802.530161pt;}
.y139{bottom:802.530169pt;}
.y120{bottom:802.538167pt;}
.y126{bottom:802.546173pt;}
.y10a{bottom:802.554179pt;}
.y116{bottom:802.562185pt;}
.y192{bottom:803.004913pt;}
.y133{bottom:806.522163pt;}
.y3f4{bottom:807.813333pt;}
.y316{bottom:809.044306pt;}
.y33d{bottom:809.248321pt;}
.y1dd{bottom:809.328913pt;}
.y24e{bottom:810.041620pt;}
.y2d9{bottom:810.078267pt;}
.y290{bottom:810.392954pt;}
.y144{bottom:810.514149pt;}
.y8{bottom:815.989502pt;}
.y191{bottom:816.332913pt;}
.y42{bottom:817.480306pt;}
.y86{bottom:818.653564pt;}
.y3b0{bottom:819.813333pt;}
.y214{bottom:819.977620pt;}
.y315{bottom:822.372306pt;}
.y35f{bottom:822.533333pt;}
.y33c{bottom:822.576321pt;}
.y1dc{bottom:822.656913pt;}
.y24d{bottom:823.369620pt;}
.y2d8{bottom:823.406267pt;}
.y28f{bottom:823.720954pt;}
.y3f3{bottom:823.813333pt;}
.y190{bottom:829.660913pt;}
.y7{bottom:832.656169pt;}
.y41{bottom:834.146973pt;}
.y85{bottom:835.320231pt;}
.y314{bottom:835.700306pt;}
.y3af{bottom:835.813333pt;}
.y33b{bottom:835.904321pt;}
.y1db{bottom:835.984913pt;}
.y24c{bottom:836.697620pt;}
.y2d7{bottom:836.734267pt;}
.y28e{bottom:837.048954pt;}
.y3f2{bottom:839.813333pt;}
.y18f{bottom:842.988913pt;}
.y40f{bottom:846.533333pt;}
.y313{bottom:849.028306pt;}
.y33a{bottom:849.232321pt;}
.y24b{bottom:850.025620pt;}
.y213{bottom:850.029582pt;}
.y2d6{bottom:850.062267pt;}
.y28d{bottom:850.376954pt;}
.y40{bottom:850.813639pt;}
.y3ae{bottom:851.813333pt;}
.y90{bottom:851.986898pt;}
.y1da{bottom:852.622246pt;}
.y35e{bottom:853.253333pt;}
.y3f1{bottom:855.813333pt;}
.y18e{bottom:859.626246pt;}
.y312{bottom:862.356306pt;}
.y339{bottom:862.560321pt;}
.y24a{bottom:863.353620pt;}
.y212{bottom:863.357582pt;}
.y2d5{bottom:863.390267pt;}
.y28c{bottom:863.704954pt;}
.y6f{bottom:867.480265pt;}
.y3f{bottom:867.480306pt;}
.y84{bottom:868.653564pt;}
.y1d9{bottom:869.259579pt;}
.y3ad{bottom:870.693333pt;}
.yd0{bottom:871.194144pt;}
.ydb{bottom:871.202149pt;}
.ye7{bottom:871.210155pt;}
.yf6{bottom:871.218161pt;}
.y13a{bottom:871.218169pt;}
.y121{bottom:871.226167pt;}
.y142{bottom:871.226175pt;}
.y127{bottom:871.234173pt;}
.y10b{bottom:871.242179pt;}
.y117{bottom:871.250185pt;}
.y3f0{bottom:871.813333pt;}
.y6{bottom:872.377441pt;}
.y311{bottom:875.684306pt;}
.y338{bottom:875.888321pt;}
.y18d{bottom:876.263579pt;}
.y249{bottom:876.681620pt;}
.y2d4{bottom:876.718267pt;}
.y28b{bottom:877.032954pt;}
.yd1{bottom:879.194144pt;}
.ydc{bottom:879.202149pt;}
.ye8{bottom:879.210155pt;}
.yf7{bottom:879.218161pt;}
.y122{bottom:879.226167pt;}
.y143{bottom:879.226175pt;}
.y131{bottom:879.242179pt;}
.y118{bottom:879.250185pt;}
.y6e{bottom:884.146932pt;}
.y3e{bottom:884.146973pt;}
.y159{bottom:885.320231pt;}
.y1d8{bottom:885.896913pt;}
.y3ac{bottom:886.053333pt;}
.y3ed{bottom:887.813333pt;}
.y310{bottom:889.012306pt;}
.y337{bottom:889.216321pt;}
.y18c{bottom:889.591579pt;}
.y248{bottom:890.009620pt;}
.y211{bottom:890.024916pt;}
.y2d3{bottom:890.046267pt;}
.y28a{bottom:890.360954pt;}
.y35d{bottom:894.533333pt;}
.y5{bottom:896.377441pt;}
.y1d7{bottom:899.224913pt;}
.y6d{bottom:900.813599pt;}
.y3d{bottom:900.813639pt;}
.y3ab{bottom:901.413333pt;}
.y83{bottom:901.986898pt;}
.y30f{bottom:902.340306pt;}
.y336{bottom:902.544321pt;}
.y247{bottom:903.337620pt;}
.y210{bottom:903.352916pt;}
.y2d2{bottom:903.374267pt;}
.y289{bottom:903.688954pt;}
.y18b{bottom:906.228913pt;}
.y1d6{bottom:912.552913pt;}
.y3aa{bottom:914.533333pt;}
.y187{bottom:915.668306pt;}
.y335{bottom:915.872321pt;}
.y246{bottom:916.665620pt;}
.y20f{bottom:916.680916pt;}
.y2d1{bottom:916.702267pt;}
.y288{bottom:917.016954pt;}
.y378{bottom:917.413333pt;}
.y6c{bottom:917.480265pt;}
.y3c{bottom:917.480306pt;}
.y82{bottom:918.653564pt;}
.y18a{bottom:922.866246pt;}
.y35c{bottom:925.253333pt;}
.y1d5{bottom:925.880913pt;}
.y186{bottom:928.996306pt;}
.y334{bottom:929.200321pt;}
.y245{bottom:929.993620pt;}
.y20e{bottom:930.008916pt;}
.y2d0{bottom:930.030267pt;}
.y287{bottom:930.344954pt;}
.y3a9{bottom:930.533333pt;}
.y6b{bottom:934.146932pt;}
.y3b{bottom:934.146973pt;}
.y81{bottom:935.320231pt;}
.y1d4{bottom:939.208913pt;}
.y189{bottom:939.503579pt;}
.y185{bottom:942.324306pt;}
.y333{bottom:942.528321pt;}
.y244{bottom:943.321620pt;}
.y2cf{bottom:943.358267pt;}
.y286{bottom:943.672954pt;}
.y3a8{bottom:946.533333pt;}
.y377{bottom:948.773333pt;}
.y6a{bottom:950.813599pt;}
.y3a{bottom:950.813639pt;}
.y80{bottom:951.986898pt;}
.y35b{bottom:953.893333pt;}
.y40d{bottom:954.853333pt;}
.y184{bottom:955.652306pt;}
.y332{bottom:955.856321pt;}
.y4{bottom:956.561849pt;}
.y243{bottom:956.649620pt;}
.y20d{bottom:956.676249pt;}
.y2ce{bottom:956.686267pt;}
.y285{bottom:957.000954pt;}
.y3a7{bottom:962.533333pt;}
.y188{bottom:963.802246pt;}
.y375{bottom:964.773333pt;}
.y69{bottom:967.480265pt;}
.y39{bottom:967.480306pt;}
.y7f{bottom:968.653564pt;}
.y183{bottom:968.980306pt;}
.y331{bottom:969.184321pt;}
.y242{bottom:969.977620pt;}
.y20c{bottom:970.004249pt;}
.y2cd{bottom:970.014267pt;}
.y284{bottom:970.328954pt;}
.y40c{bottom:971.813333pt;}
.y3a6{bottom:978.533333pt;}
.y35a{bottom:983.973333pt;}
.y374{bottom:984.133333pt;}
.y3{bottom:986.299161pt;}
.y40b{bottom:993.413333pt;}
.y3a5{bottom:994.533333pt;}
.y3cb{bottom:995.173333pt;}
.y2{bottom:1001.406494pt;}
.y38{bottom:1002.206543pt;}
.y3a4{bottom:1010.533333pt;}
.y359{bottom:1012.773333pt;}
.y357{bottom:1061.600000pt;}
.h2c{height:15.200000pt;}
.h22{height:15.360000pt;}
.h28{height:15.392000pt;}
.h35{height:16.160000pt;}
.h41{height:18.720000pt;}
.h42{height:18.752000pt;}
.h3f{height:18.880000pt;}
.h40{height:18.912000pt;}
.hf{height:18.947025pt;}
.h20{height:24.148125pt;}
.h3e{height:27.072000pt;}
.h44{height:27.680000pt;}
.he{height:28.421120pt;}
.h10{height:28.460160pt;}
.h2{height:30.080000pt;}
.hc{height:30.495732pt;}
.h32{height:30.560000pt;}
.h23{height:30.720000pt;}
.h12{height:30.752000pt;}
.h13{height:32.736000pt;}
.h15{height:34.326366pt;}
.h11{height:34.326407pt;}
.h14{height:34.326895pt;}
.h1f{height:37.116563pt;}
.h1d{height:37.479688pt;}
.h7{height:38.453333pt;}
.h36{height:38.672812pt;}
.h3a{height:39.347188pt;}
.h3{height:39.712000pt;}
.h21{height:41.141250pt;}
.h1c{height:41.543750pt;}
.h1e{height:42.708125pt;}
.h34{height:42.866250pt;}
.hb{height:43.565333pt;}
.h2b{height:45.920000pt;}
.h2a{height:46.080000pt;}
.ha{height:46.144000pt;}
.h16{height:46.376000pt;}
.h45{height:46.592000pt;}
.h17{height:47.253333pt;}
.h4{height:49.298667pt;}
.h1b{height:49.766250pt;}
.h8{height:51.253333pt;}
.hd{height:52.448000pt;}
.h9{height:54.560000pt;}
.h6{height:57.658667pt;}
.h2d{height:61.280000pt;}
.h2e{height:61.312000pt;}
.h5{height:75.605333pt;}
.h25{height:76.640000pt;}
.h46{height:87.520000pt;}
.h39{height:92.960000pt;}
.h3d{height:93.760000pt;}
.h18{height:96.877333pt;}
.h37{height:108.320000pt;}
.h29{height:122.592000pt;}
.h26{height:122.752000pt;}
.h43{height:123.200000pt;}
.h33{height:138.106667pt;}
.h38{height:153.306667pt;}
.h31{height:158.106667pt;}
.h2f{height:184.026667pt;}
.h24{height:199.386667pt;}
.h30{height:214.746667pt;}
.h27{height:368.066667pt;}
.h3b{height:793.760000pt;}
.h3c{height:794.000000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.h19{height:1122.560000pt;}
.h1a{height:1122.666667pt;}
.w16{width:42.240000pt;}
.we{width:42.560000pt;}
.w1e{width:60.960000pt;}
.w1f{width:61.120000pt;}
.w2a{width:61.280000pt;}
.w2b{width:61.312000pt;}
.w18{width:62.880000pt;}
.w17{width:62.912000pt;}
.w20{width:64.000000pt;}
.w21{width:64.192000pt;}
.w19{width:64.320000pt;}
.w29{width:64.800000pt;}
.w28{width:64.960000pt;}
.w2d{width:65.312000pt;}
.w2c{width:65.440000pt;}
.w1a{width:65.632000pt;}
.w1b{width:65.760000pt;}
.w27{width:66.880000pt;}
.w26{width:67.072000pt;}
.w1c{width:67.200000pt;}
.w1d{width:67.232000pt;}
.w32{width:69.472000pt;}
.w33{width:71.200000pt;}
.w5{width:74.560000pt;}
.w36{width:75.520000pt;}
.w37{width:75.680000pt;}
.w34{width:79.040000pt;}
.w35{width:79.072000pt;}
.w31{width:83.392000pt;}
.w38{width:84.192000pt;}
.w7{width:113.440000pt;}
.w13{width:121.760000pt;}
.w15{width:122.272000pt;}
.wd{width:122.912000pt;}
.wf{width:125.152000pt;}
.w24{width:125.472000pt;}
.w14{width:127.872000pt;}
.w10{width:128.320000pt;}
.w23{width:129.440000pt;}
.w25{width:130.432000pt;}
.w11{width:131.072000pt;}
.w22{width:133.626667pt;}
.w12{width:134.106667pt;}
.w2e{width:140.346667pt;}
.w30{width:150.880000pt;}
.w2f{width:157.786667pt;}
.w9{width:223.706667pt;}
.w8{width:264.706667pt;}
.w6{width:525.213333pt;}
.w4{width:600.573333pt;}
.w39{width:699.653333pt;}
.w0{width:793.701333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:1122.559983pt;}
.wa{width:1122.560000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xdb{left:6.880000pt;}
.xea{left:8.960000pt;}
.xed{left:11.840000pt;}
.xfd{left:13.280000pt;}
.xe4{left:14.720000pt;}
.xe5{left:16.480000pt;}
.xf1{left:18.240000pt;}
.xf3{left:19.680000pt;}
.xe7{left:20.800000pt;}
.xe8{left:22.880000pt;}
.xf5{left:24.640000pt;}
.xef{left:25.760000pt;}
.xe6{left:27.680000pt;}
.xf2{left:28.640000pt;}
.xdf{left:31.200000pt;}
.xeb{left:33.946667pt;}
.xec{left:34.906667pt;}
.xe1{left:38.074667pt;}
.x101{left:39.840000pt;}
.xf9{left:42.560000pt;}
.xfa{left:51.680000pt;}
.xe0{left:55.240000pt;}
.xee{left:62.720000pt;}
.x102{left:63.840000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.xe2{left:79.240000pt;}
.x6{left:83.138137pt;}
.x5{left:86.929867pt;}
.xd9{left:90.709469pt;}
.x33{left:95.709462pt;}
.x10{left:96.689738pt;}
.xe3{left:103.240000pt;}
.x34{left:107.709462pt;}
.x11{left:108.689738pt;}
.xda{left:110.271988pt;}
.x35{left:119.709462pt;}
.x12{left:120.689738pt;}
.x95{left:139.997461pt;}
.x36{left:141.333462pt;}
.x13{left:143.153738pt;}
.x96{left:151.997461pt;}
.x37{left:153.333462pt;}
.x14{left:155.153738pt;}
.x97{left:163.997461pt;}
.x38{left:165.333462pt;}
.x15{left:167.153738pt;}
.xdc{left:172.026667pt;}
.x98{left:175.997461pt;}
.x39{left:177.333462pt;}
.x16{left:179.153738pt;}
.x8a{left:180.797462pt;}
.x99{left:187.997461pt;}
.x3a{left:189.333462pt;}
.x17{left:191.153738pt;}
.x8b{left:192.797462pt;}
.x9a{left:199.997461pt;}
.x3b{left:201.333462pt;}
.x18{left:203.153738pt;}
.x8c{left:204.797462pt;}
.xdd{left:209.466667pt;}
.x9b{left:211.997461pt;}
.x3c{left:213.333462pt;}
.x19{left:215.153738pt;}
.x8d{left:218.933462pt;}
.x9c{left:223.997461pt;}
.x3d{left:225.333462pt;}
.x6a{left:226.661462pt;}
.x8e{left:230.933462pt;}
.x9d{left:235.997461pt;}
.x3e{left:237.333462pt;}
.x6b{left:238.661462pt;}
.xd7{left:246.110810pt;}
.x9e{left:247.997461pt;}
.x3f{left:249.333462pt;}
.x6c{left:250.661462pt;}
.xbc{left:254.397328pt;}
.x9f{left:259.997461pt;}
.x5f{left:261.333462pt;}
.x40{left:263.469462pt;}
.x8f{left:264.885462pt;}
.xbd{left:266.397328pt;}
.xa0{left:271.997461pt;}
.x75{left:273.333462pt;}
.x41{left:275.469462pt;}
.x90{left:276.885462pt;}
.xbe{left:278.397328pt;}
.xa1{left:283.997461pt;}
.x76{left:285.333462pt;}
.x1a{left:287.369738pt;}
.x6d{left:288.797462pt;}
.xbf{left:292.533328pt;}
.xa2{left:295.997461pt;}
.x77{left:297.333462pt;}
.x1b{left:299.369738pt;}
.xc9{left:300.269461pt;}
.x42{left:301.605462pt;}
.xc0{left:304.533328pt;}
.xa3{left:307.997461pt;}
.x78{left:309.333462pt;}
.x1c{left:311.369738pt;}
.xca{left:312.269461pt;}
.x43{left:313.605462pt;}
.xc1{left:318.669328pt;}
.xa4{left:319.997461pt;}
.x79{left:321.333462pt;}
.x1d{left:323.369738pt;}
.xcb{left:324.269461pt;}
.x44{left:325.605462pt;}
.xf{left:326.729329pt;}
.xfe{left:328.546667pt;}
.xc2{left:330.669328pt;}
.xa5{left:331.997461pt;}
.x7a{left:333.333462pt;}
.x1e{left:335.369738pt;}
.x45{left:337.605462pt;}
.xc3{left:342.669328pt;}
.xa6{left:343.997461pt;}
.x7b{left:345.333462pt;}
.x1f{left:347.369738pt;}
.x6e{left:348.797462pt;}
.xcc{left:350.405461pt;}
.x46{left:354.205462pt;}
.xa7{left:355.997461pt;}
.xd{left:357.994238pt;}
.x7{left:359.581340pt;}
.x91{left:360.885462pt;}
.x6f{left:362.933462pt;}
.x47{left:366.205462pt;}
.xa8{left:367.997461pt;}
.x7c{left:369.333462pt;}
.x20{left:371.369738pt;}
.x92{left:372.885462pt;}
.x70{left:374.933462pt;}
.x48{left:378.205462pt;}
.xa9{left:379.997461pt;}
.x7d{left:381.333462pt;}
.x60{left:383.469462pt;}
.x93{left:384.885462pt;}
.x71{left:386.933462pt;}
.x49{left:390.205462pt;}
.xaa{left:391.997461pt;}
.x7e{left:393.333462pt;}
.x8{left:394.505454pt;}
.x61{left:395.469462pt;}
.x94{left:396.885462pt;}
.x72{left:398.933462pt;}
.x4a{left:402.205462pt;}
.xab{left:403.997461pt;}
.x7f{left:405.333462pt;}
.x4{left:408.188924pt;}
.x62{left:409.605462pt;}
.x73{left:410.933462pt;}
.x4b{left:414.205462pt;}
.xac{left:415.997461pt;}
.x80{left:417.333462pt;}
.xb4{left:420.269461pt;}
.x63{left:421.605462pt;}
.x74{left:422.933462pt;}
.x4c{left:426.205462pt;}
.xad{left:427.997461pt;}
.x81{left:429.333462pt;}
.xd8{left:430.866924pt;}
.xb5{left:432.269461pt;}
.xcd{left:434.405461pt;}
.x21{left:435.321738pt;}
.xe{left:438.022572pt;}
.xae{left:439.997461pt;}
.x82{left:441.333462pt;}
.xb6{left:444.269461pt;}
.xce{left:446.405461pt;}
.x22{left:447.321738pt;}
.x4d{left:450.205462pt;}
.xaf{left:451.997461pt;}
.x83{left:453.333462pt;}
.xc6{left:456.269461pt;}
.xb7{left:458.405461pt;}
.x23{left:459.321738pt;}
.xcf{left:460.541461pt;}
.x4e{left:462.205462pt;}
.x84{left:465.333462pt;}
.xc7{left:468.269461pt;}
.xb8{left:470.405461pt;}
.x24{left:471.321738pt;}
.xd0{left:472.541461pt;}
.xde{left:474.173333pt;}
.x4f{left:476.341462pt;}
.x85{left:477.333462pt;}
.xc8{left:480.269461pt;}
.x103{left:481.186667pt;}
.xb9{left:482.405461pt;}
.x25{left:483.321738pt;}
.x50{left:488.341462pt;}
.x86{left:489.333462pt;}
.xd5{left:490.842801pt;}
.xba{left:494.405461pt;}
.x26{left:495.321738pt;}
.xd6{left:498.844135pt;}
.x51{left:500.341462pt;}
.x87{left:501.333462pt;}
.xbb{left:506.405461pt;}
.x27{left:507.321738pt;}
.x64{left:509.877462pt;}
.x52{left:512.341462pt;}
.x88{left:513.333462pt;}
.xe9{left:515.906667pt;}
.xc4{left:518.173461pt;}
.x28{left:519.321738pt;}
.x65{left:521.877462pt;}
.x53{left:524.341462pt;}
.x89{left:525.333462pt;}
.xd1{left:530.557460pt;}
.x66{left:533.877462pt;}
.x54{left:536.341462pt;}
.x29{left:537.257735pt;}
.x67{left:545.877462pt;}
.x55{left:548.341462pt;}
.x2a{left:549.257735pt;}
.xc5{left:552.125461pt;}
.x56{left:560.341462pt;}
.x2b{left:561.257735pt;}
.xb0{left:564.269461pt;}
.xd2{left:565.187456pt;}
.x9{left:572.262866pt;}
.x2c{left:573.257735pt;}
.x57{left:574.477462pt;}
.xb1{left:576.269461pt;}
.xd3{left:581.858790pt;}
.x68{left:584.013462pt;}
.x2d{left:585.257735pt;}
.x58{left:586.477462pt;}
.xa{left:587.684033pt;}
.x69{left:596.013462pt;}
.x2e{left:597.257735pt;}
.x59{left:600.613462pt;}
.x2f{left:609.257735pt;}
.xb{left:610.373332pt;}
.x5a{left:612.613462pt;}
.xc{left:613.968018pt;}
.x30{left:621.257735pt;}
.x5b{left:624.613462pt;}
.x31{left:633.257735pt;}
.xb2{left:636.269461pt;}
.x5c{left:638.749462pt;}
.x32{left:645.257735pt;}
.x1{left:647.307210pt;}
.xb3{left:648.269461pt;}
.x5d{left:650.749462pt;}
.xd4{left:661.417318pt;}
.x5e{left:662.749462pt;}
.xff{left:712.253333pt;}
.xf6{left:714.493333pt;}
.xfb{left:773.573333pt;}
.xf0{left:781.733333pt;}
.x100{left:837.893333pt;}
.xf7{left:842.693333pt;}
.xfc{left:902.213333pt;}
.xf4{left:903.813333pt;}
.xf8{left:967.813333pt;}
}




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