
    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_74914101222ed3832a80f57d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d79bad79597832a2a1ad83a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78550f1a77d2723cd47ad66f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_f49fcc56a5f1dd6cd278ad9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cda3be20f9ff8a5f0b1830ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_6314203f2d6cae827c0ec7c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_c343eb4427635a8b6debdd22.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.283203;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_d78871a817d281536983bc58.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_08a67ae0e69269aa3ee6965e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5794768c281240df3221e5d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945312;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_1bb59c958c3885c5475c7206.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091797;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_46cc5bb09ecf595fd17b36b7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5eb41fcc169a810102281ddc.woff2')format("woff");}.fff{font-family:fff;line-height:1.087891;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_bc3f8e95a4ebd033d8d4dd18.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.030273;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_9f6529f4e311b9006fe38fbf.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.087891;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_9f2b44daf9dd3aaebeb1c9f0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.030273;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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_9155a59ecdd21ccd4565fd3b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.971191;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_9aba4cbecd769d625060f4d1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760132px;}
.ls6e{letter-spacing:-0.720000px;}
.ls75{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.432000px;}
.ls79{letter-spacing:-0.414600px;}
.ls3b{letter-spacing:-0.330000px;}
.ls1f{letter-spacing:-0.324000px;}
.ls52{letter-spacing:-0.319800px;}
.ls3f{letter-spacing:-0.318000px;}
.ls5f{letter-spacing:-0.306000px;}
.ls78{letter-spacing:-0.305400px;}
.ls57{letter-spacing:-0.294000px;}
.ls8{letter-spacing:-0.288000px;}
.ls6a{letter-spacing:-0.270000px;}
.ls5d{letter-spacing:-0.265200px;}
.ls72{letter-spacing:-0.262200px;}
.ls51{letter-spacing:-0.252000px;}
.ls66{letter-spacing:-0.234000px;}
.ls22{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.211800px;}
.ls48{letter-spacing:-0.175800px;}
.ls50{letter-spacing:-0.166800px;}
.ls6d{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.135600px;}
.ls4d{letter-spacing:-0.133800px;}
.ls18{letter-spacing:-0.128400px;}
.ls3a{letter-spacing:-0.115200px;}
.ls74{letter-spacing:-0.109200px;}
.ls45{letter-spacing:-0.097800px;}
.ls46{letter-spacing:-0.089400px;}
.ls64{letter-spacing:-0.072000px;}
.ls60{letter-spacing:-0.054000px;}
.ls53{letter-spacing:-0.044640px;}
.ls61{letter-spacing:-0.036000px;}
.ls2a{letter-spacing:-0.029520px;}
.ls40{letter-spacing:-0.028800px;}
.ls47{letter-spacing:-0.025920px;}
.ls3e{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000002px;}
.lsb{letter-spacing:0.000005px;}
.ls20{letter-spacing:0.000011px;}
.lsc{letter-spacing:0.000051px;}
.ls5{letter-spacing:0.000117px;}
.ls1e{letter-spacing:0.000220px;}
.ls62{letter-spacing:0.018000px;}
.ls63{letter-spacing:0.036000px;}
.ls67{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.067800px;}
.ls27{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.077760px;}
.ls71{letter-spacing:0.109200px;}
.ls55{letter-spacing:0.115200px;}
.ls38{letter-spacing:0.118200px;}
.ls58{letter-spacing:0.118329px;}
.ls69{letter-spacing:0.126000px;}
.ls39{letter-spacing:0.128400px;}
.ls43{letter-spacing:0.138000px;}
.ls4c{letter-spacing:0.139800px;}
.ls2{letter-spacing:0.143912px;}
.ls31{letter-spacing:0.144000px;}
.ls7a{letter-spacing:0.144278px;}
.ls6c{letter-spacing:0.152400px;}
.ls2c{letter-spacing:0.158394px;}
.ls36{letter-spacing:0.162600px;}
.ls2e{letter-spacing:0.168502px;}
.ls44{letter-spacing:0.177000px;}
.ls33{letter-spacing:0.180044px;}
.ls73{letter-spacing:0.195600px;}
.ls25{letter-spacing:0.198012px;}
.ls4f{letter-spacing:0.198600px;}
.ls54{letter-spacing:0.200400px;}
.ls7{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.234600px;}
.ls4e{letter-spacing:0.236400px;}
.ls6b{letter-spacing:0.252000px;}
.ls70{letter-spacing:0.262087px;}
.ls76{letter-spacing:0.262200px;}
.ls35{letter-spacing:0.264021px;}
.ls59{letter-spacing:0.276600px;}
.ls0{letter-spacing:0.287962px;}
.ls3{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.288007px;}
.ls2d{letter-spacing:0.298792px;}
.ls6f{letter-spacing:0.305400px;}
.ls5b{letter-spacing:0.313800px;}
.ls3c{letter-spacing:0.339600px;}
.ls65{letter-spacing:0.342000px;}
.ls29{letter-spacing:0.346324px;}
.ls68{letter-spacing:0.359971px;}
.ls2b{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.390000px;}
.ls4a{letter-spacing:0.460610px;}
.ls49{letter-spacing:0.460976px;}
.ls5e{letter-spacing:0.480088px;}
.ls15{letter-spacing:0.503984px;}
.lsa{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.504117px;}
.ls41{letter-spacing:0.508200px;}
.ls77{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.747283px;}
.ls13{letter-spacing:1.223996px;}
.ls12{letter-spacing:1.224000px;}
.lsf{letter-spacing:1.944059px;}
.ls17{letter-spacing:2.664029px;}
.ls14{letter-spacing:3.384000px;}
.ls16{letter-spacing:4.103971px;}
.ls11{letter-spacing:4.824308px;}
.ls1d{letter-spacing:7.704007px;}
.ls1b{letter-spacing:9.143949px;}
.ls23{letter-spacing:15.624051px;}
.ls32{letter-spacing:18.413276px;}
.ls2f{letter-spacing:21.384000px;}
.ls28{letter-spacing:33.984000px;}
.ls1a{letter-spacing:44.784018px;}
.ls30{letter-spacing:55.386720px;}
.ls10{letter-spacing:58.553280px;}
.ls21{letter-spacing:63.503989px;}
.lse{letter-spacing:82.493278px;}
.ls19{letter-spacing:85.913311px;}
.ls5a{letter-spacing:846.120026px;}
.ls1c{letter-spacing:846.179810px;}
.ls6{letter-spacing:846.300018px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws0{word-spacing:-42.048000px;}
.ws38{word-spacing:-31.536000px;}
.ws2{word-spacing:-24.408720px;}
.wsb{word-spacing:-24.280320px;}
.ws40{word-spacing:-20.437920px;}
.ws1{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.439280px;}
.ws4e{word-spacing:-18.720000px;}
.ws48{word-spacing:-18.610320px;}
.ws47{word-spacing:-18.414720px;}
.ws49{word-spacing:-18.305520px;}
.ws4c{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws4d{word-spacing:-17.712000px;}
.wse{word-spacing:-17.100720px;}
.wsf{word-spacing:-17.071200px;}
.ws45{word-spacing:-16.865400px;}
.ws4b{word-spacing:-16.822200px;}
.ws42{word-spacing:-16.712400px;}
.ws46{word-spacing:-16.669200px;}
.ws41{word-spacing:-16.560000px;}
.ws51{word-spacing:-16.450800px;}
.ws43{word-spacing:-16.407600px;}
.ws4f{word-spacing:-16.254600px;}
.ws50{word-spacing:-16.145400px;}
.ws4a{word-spacing:-15.948000px;}
.ws44{word-spacing:-15.840000px;}
.ws10{word-spacing:-14.976000px;}
.ws11{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.904000px;}
.ws5{word-spacing:-14.832000px;}
.ws4{word-spacing:-14.616000px;}
.wsa{word-spacing:-14.472000px;}
.ws12{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.328000px;}
.ws35{word-spacing:-11.322000px;}
.ws37{word-spacing:-11.304000px;}
.ws32{word-spacing:-11.178000px;}
.ws3b{word-spacing:-11.088000px;}
.ws3f{word-spacing:-11.034000px;}
.ws3a{word-spacing:-11.016000px;}
.ws36{word-spacing:-10.998000px;}
.ws3e{word-spacing:-10.980000px;}
.ws31{word-spacing:-10.962000px;}
.ws34{word-spacing:-10.926000px;}
.ws33{word-spacing:-10.908000px;}
.ws39{word-spacing:-10.728000px;}
.ws3d{word-spacing:-10.692000px;}
.ws3c{word-spacing:-10.674000px;}
.ws1f{word-spacing:-8.400840px;}
.ws7{word-spacing:-8.341680px;}
.ws18{word-spacing:-8.232240px;}
.ws2f{word-spacing:-8.206440px;}
.ws29{word-spacing:-8.129040px;}
.ws27{word-spacing:-8.127240px;}
.ws2a{word-spacing:-8.091240px;}
.ws22{word-spacing:-8.069640px;}
.ws16{word-spacing:-8.055240px;}
.ws2e{word-spacing:-8.032440px;}
.ws21{word-spacing:-8.030640px;}
.ws1a{word-spacing:-8.010840px;}
.ws19{word-spacing:-7.970400px;}
.ws20{word-spacing:-7.960440px;}
.ws14{word-spacing:-7.892640px;}
.ws1c{word-spacing:-7.875360px;}
.ws25{word-spacing:-7.866720px;}
.ws1e{word-spacing:-7.863840px;}
.ws2d{word-spacing:-7.848000px;}
.ws24{word-spacing:-7.803240px;}
.ws23{word-spacing:-7.794840px;}
.ws15{word-spacing:-7.777440px;}
.ws28{word-spacing:-7.758840px;}
.ws2b{word-spacing:-7.725840px;}
.ws26{word-spacing:-7.716840px;}
.ws1b{word-spacing:-7.680840px;}
.ws2c{word-spacing:-7.640640px;}
.ws30{word-spacing:-7.627440px;}
.ws1d{word-spacing:-7.574640px;}
.ws17{word-spacing:-7.562640px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-12.282768px;}
._22{margin-left:-10.391978px;}
._1e{margin-left:-8.697106px;}
._21{margin-left:-6.516031px;}
._1f{margin-left:-4.967996px;}
._b{margin-left:-3.456000px;}
._7{margin-left:-2.202480px;}
._0{margin-left:-1.139932px;}
._2{width:1.075680px;}
._1{width:2.123929px;}
._6{width:3.698078px;}
._14{width:4.969355px;}
._8{width:6.118645px;}
._10{width:7.417355px;}
._f{width:9.072000px;}
._e{width:10.224000px;}
._13{width:11.393280px;}
._50{width:12.456000px;}
._1b{width:13.464000px;}
._74{width:14.686560px;}
._c{width:15.912000px;}
._9{width:17.064000px;}
._51{width:18.144000px;}
._19{width:19.152000px;}
._1a{width:20.664000px;}
._18{width:22.536000px;}
._3{width:24.408000px;}
._15{width:25.703985px;}
._16{width:26.864730px;}
._17{width:27.951209px;}
._12{width:29.303968px;}
._11{width:30.312011px;}
._a4{width:31.312789px;}
._57{width:32.325120px;}
._58{width:33.398812px;}
._4e{width:34.776000px;}
._4f{width:35.856000px;}
._d{width:37.080000px;}
._a{width:38.448000px;}
._56{width:39.456000px;}
._65{width:40.731840px;}
._64{width:41.775858px;}
._5e{width:43.487982px;}
._5f{width:44.932412px;}
._4c{width:46.008000px;}
._4d{width:47.088000px;}
._7d{width:48.600000px;}
._5b{width:49.896000px;}
._5c{width:50.921280px;}
._63{width:52.757320px;}
._5d{width:54.647982px;}
._82{width:55.926738px;}
._91{width:57.149262px;}
._73{width:58.786560px;}
._59{width:60.696000px;}
._5a{width:61.848000px;}
._68{width:63.797767px;}
._89{width:65.707200px;}
._7e{width:66.912480px;}
._7c{width:68.856480px;}
._75{width:70.100640px;}
._66{width:71.422560px;}
._8f{width:72.666720px;}
._a5{width:74.610720px;}
._60{width:75.816000px;}
._a6{width:76.943520px;}
._71{width:78.109920px;}
._ae{width:79.152022px;}
._a3{width:80.209440px;}
._8b{width:81.842400px;}
._6a{width:82.853280px;}
._ba{width:84.384720px;}
._6d{width:85.497120px;}
._6e{width:86.741280px;}
._6c{width:88.918560px;}
._9d{width:90.901440px;}
._1c{width:92.880000px;}
._1d{width:94.032000px;}
._8d{width:95.294880px;}
._94{width:97.083360px;}
._79{width:98.210880px;}
._62{width:99.302444px;}
._7f{width:100.465920px;}
._72{width:102.720960px;}
._b3{width:104.276160px;}
._7b{width:106.064640px;}
._70{width:108.086400px;}
._af{width:111.157920px;}
._6b{width:112.168800px;}
._b9{width:113.670000px;}
._88{width:114.812640px;}
._77{width:115.862400px;}
._61{width:118.195200px;}
._98{width:119.478240px;}
._9b{width:120.566880px;}
._83{width:122.355360px;}
._95{width:123.366240px;}
._b1{width:124.377120px;}
._78{width:126.087840px;}
._8e{width:128.187360px;}
._92{width:130.986720px;}
._76{width:131.997600px;}
._97{width:133.902720px;}
._90{width:135.807840px;}
._96{width:137.440800px;}
._b8{width:138.510000px;}
._6f{width:140.317920px;}
._9e{width:142.202895px;}
._b5{width:143.742002px;}
._99{width:148.677120px;}
._a8{width:149.843520px;}
._86{width:152.292960px;}
._85{width:153.653760px;}
._8c{width:155.403360px;}
._b6{width:156.978000px;}
._ab{width:158.572932px;}
._84{width:159.680160px;}
._a1{width:161.896320px;}
._b4{width:164.160000px;}
._67{width:165.628800px;}
._a7{width:169.555680px;}
._69{width:172.743840px;}
._93{width:174.339404px;}
._9f{width:175.659840px;}
._4{width:176.702412px;}
._8a{width:179.664480px;}
._9a{width:183.630240px;}
._80{width:184.641120px;}
._81{width:188.101440px;}
._a0{width:189.734400px;}
._b0{width:193.272480px;}
._b2{width:202.253760px;}
._5{width:204.012732px;}
._7a{width:213.956640px;}
._a2{width:216.095040px;}
._b7{width:226.692000px;}
._87{width:246.343680px;}
._ac{width:260.573760px;}
._aa{width:268.777440px;}
._9c{width:286.079040px;}
._a9{width:287.945280px;}
._ad{width:329.702400px;}
._2a{width:435.112417px;}
._33{width:460.587285px;}
._34{width:476.134965px;}
._32{width:762.784417px;}
._48{width:764.800417px;}
._4b{width:1174.336417px;}
._3e{width:1228.480417px;}
._55{width:1250.778051px;}
._2b{width:1266.072165px;}
._53{width:1337.124234px;}
._54{width:1358.777868px;}
._4a{width:1387.312417px;}
._30{width:1404.736417px;}
._31{width:1409.780737px;}
._47{width:1520.432669px;}
._3a{width:1559.595285px;}
._3d{width:1596.688417px;}
._3c{width:1603.974716px;}
._24{width:1637.308485px;}
._2f{width:1644.000165px;}
._3f{width:1683.096165px;}
._2d{width:1692.960165px;}
._42{width:1714.480417px;}
._23{width:1735.432417px;}
._3b{width:1753.014716px;}
._36{width:1763.664165px;}
._29{width:1780.724737px;}
._27{width:1794.256417px;}
._38{width:1798.944165px;}
._39{width:1831.056165px;}
._35{width:1854.816165px;}
._45{width:1857.328417px;}
._41{width:1868.352165px;}
._26{width:1876.624417px;}
._52{width:1897.283872px;}
._25{width:1938.980737px;}
._2c{width:1960.224165px;}
._37{width:1997.592165px;}
._2e{width:2110.056165px;}
._49{width:2162.040165px;}
._43{width:2173.624417px;}
._44{width:2175.936165px;}
._40{width:2188.024417px;}
._46{width:2223.816165px;}
._28{width:2797.584165px;}
.fc13{color:rgb(34,34,34);}
.fc11{color:rgb(68,68,68);}
.fc10{color:rgb(31,31,31);}
.fce{color:rgb(74,74,74);}
.fcd{color:rgb(5,99,193);}
.fc0{color:rgb(191,191,191);}
.fc1{color:rgb(38,38,38);}
.fc2{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fcb{color:rgb(255,255,255);}
.fc12{color:rgb(51,51,51);}
.fc4{color:rgb(243,149,120);}
.fc5{color:rgb(233,113,50);}
.fca{color:rgb(17,85,204);}
.fc7{color:rgb(15,71,97);}
.fc6{color:rgb(233,112,50);}
.fc8{color:rgb(70,120,134);}
.fc9{color:rgb(14,40,65);}
.fcf{color:transparent;}
.fcc{color:rgb(0,0,255);}
.fs7{font-size:2.880000px;}
.fsc{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:43.200000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5b8{bottom:3.060013px;}
.y60d{bottom:3.419998px;}
.y67e{bottom:3.420003px;}
.y5b0{bottom:3.599991px;}
.y617{bottom:3.600002px;}
.y5ba{bottom:3.600014px;}
.y5b9{bottom:3.600037px;}
.y63e{bottom:3.644989px;}
.y5cb{bottom:3.779984px;}
.y5dc{bottom:3.779995px;}
.y5c6{bottom:3.780001px;}
.y5d9{bottom:3.780006px;}
.y5d0{bottom:3.780029px;}
.y613{bottom:3.825005px;}
.y665{bottom:3.959976px;}
.y661{bottom:3.960005px;}
.y669{bottom:3.960022px;}
.y330{bottom:4.499994px;}
.y2f8{bottom:4.500000px;}
.y48d{bottom:4.500006px;}
.y417{bottom:4.544998px;}
.y464{bottom:4.545021px;}
.y3c2{bottom:4.679993px;}
.y469{bottom:4.680004px;}
.y33a{bottom:4.680038px;}
.y5af{bottom:6.120026px;}
.y539{bottom:6.299973px;}
.y50b{bottom:6.299995px;}
.y55b{bottom:6.300007px;}
.y560{bottom:6.300018px;}
.y588{bottom:6.479965px;}
.y59d{bottom:6.479988px;}
.y521{bottom:6.480000px;}
.y5aa{bottom:6.480011px;}
.y32c{bottom:7.605010px;}
.y17{bottom:8.279938px;}
.y26{bottom:8.279984px;}
.y37{bottom:8.280006px;}
.y1a{bottom:8.280029px;}
.y28{bottom:8.459976px;}
.y3c{bottom:8.459999px;}
.y1f{bottom:8.460022px;}
.y3a{bottom:9.899986px;}
.y4bb{bottom:10.260000px;}
.y42a{bottom:12.060013px;}
.y307{bottom:12.240005px;}
.y35{bottom:12.960022px;}
.y33{bottom:15.120026px;}
.y548{bottom:15.839996px;}
.y584{bottom:15.840008px;}
.y5a6{bottom:15.840009px;}
.y47a{bottom:16.199982px;}
.y345{bottom:18.173996px;}
.y461{bottom:18.179970px;}
.y2f7{bottom:18.179993px;}
.y32f{bottom:18.179999px;}
.y428{bottom:18.180003px;}
.y310{bottom:18.180004px;}
.y3e6{bottom:18.180005px;}
.y322{bottom:18.180016px;}
.y312{bottom:18.180038px;}
.y412{bottom:18.209976px;}
.y38a{bottom:18.210022px;}
.y317{bottom:18.224991px;}
.y3da{bottom:18.225001px;}
.y458{bottom:18.225014px;}
.y3fd{bottom:18.225037px;}
.y3a5{bottom:18.359985px;}
.y447{bottom:18.359997px;}
.y40e{bottom:18.360008px;}
.y31d{bottom:18.360031px;}
.y301{bottom:18.390015px;}
.y416{bottom:18.405006px;}
.y478{bottom:20.699982px;}
.y5b7{bottom:21.270035px;}
.y32b{bottom:21.285004px;}
.y612{bottom:22.320007px;}
.y646{bottom:22.365005px;}
.y5c0{bottom:22.493992px;}
.y651{bottom:22.499978px;}
.y397{bottom:22.500000px;}
.y67d{bottom:22.500006px;}
.y6d5{bottom:22.529984px;}
.y6c3{bottom:22.530029px;}
.y635{bottom:22.544998px;}
.y65f{bottom:22.673996px;}
.y5bd{bottom:22.679993px;}
.y5c7{bottom:22.679998px;}
.y699{bottom:22.680003px;}
.y630{bottom:22.680004px;}
.y5f6{bottom:22.680016px;}
.y61d{bottom:22.680038px;}
.y673{bottom:22.709976px;}
.y6a0{bottom:22.724991px;}
.y6ee{bottom:22.725002px;}
.y614{bottom:22.725014px;}
.y4ba{bottom:23.939993px;}
.y664{bottom:24.659958px;}
.y660{bottom:24.659998px;}
.y668{bottom:24.660004px;}
.y538{bottom:25.199982px;}
.y50a{bottom:25.200005px;}
.y587{bottom:25.379974px;}
.y520{bottom:25.379997px;}
.y580{bottom:25.380009px;}
.y593{bottom:25.380020px;}
.y5a4{bottom:25.425008px;}
.y5{bottom:26.136000px;}
.y476{bottom:27.540024px;}
.y344{bottom:31.854000px;}
.y2f6{bottom:31.859985px;}
.y4a7{bottom:31.859995px;}
.y30f{bottom:31.859997px;}
.y3e5{bottom:31.859998px;}
.y392{bottom:31.860001px;}
.y35c{bottom:31.860003px;}
.y304{bottom:31.860008px;}
.y2fd{bottom:31.860031px;}
.y449{bottom:31.889969px;}
.y321{bottom:31.889992px;}
.y389{bottom:31.890015px;}
.y336{bottom:31.904984px;}
.y3d9{bottom:31.904995px;}
.y498{bottom:31.904996px;}
.y3ad{bottom:31.905006px;}
.y3c4{bottom:31.905029px;}
.y381{bottom:32.034004px;}
.y3c1{bottom:32.039978px;}
.y3a4{bottom:32.040001px;}
.y31c{bottom:32.040024px;}
.y300{bottom:32.070007px;}
.y368{bottom:32.085000px;}
.y1d{bottom:33.480011px;}
.y19{bottom:33.660004px;}
.y93{bottom:33.704956px;}
.y4ea{bottom:34.193997px;}
.y477{bottom:34.380020px;}
.y547{bottom:34.739960px;}
.y513{bottom:34.740005px;}
.y583{bottom:34.919998px;}
.y5a5{bottom:34.965009px;}
.y32a{bottom:34.965019px;}
.y396{bottom:36.179993px;}
.y4b9{bottom:37.619997px;}
.y5b6{bottom:39.630020px;}
.y641{bottom:41.394001px;}
.y636{bottom:41.399963px;}
.y63a{bottom:41.399986px;}
.y67c{bottom:41.400003px;}
.y60c{bottom:41.400009px;}
.y650{bottom:41.430016px;}
.y645{bottom:41.445007px;}
.y5c4{bottom:41.573994px;}
.y65e{bottom:41.574005px;}
.y621{bottom:41.579956px;}
.y6aa{bottom:41.579980px;}
.y5fe{bottom:41.579990px;}
.y5bb{bottom:41.580002px;}
.y65a{bottom:41.580025px;}
.y672{bottom:41.609985px;}
.y64d{bottom:41.610009px;}
.y6c2{bottom:41.610031px;}
.y68f{bottom:41.624989px;}
.y5d2{bottom:41.625000px;}
.y5cc{bottom:41.759995px;}
.y5c8{bottom:41.760000px;}
.y6bd{bottom:41.760005px;}
.y62f{bottom:41.760006px;}
.y5fa{bottom:41.760017px;}
.y61c{bottom:41.760040px;}
.y69f{bottom:41.804993px;}
.y615{bottom:41.805016px;}
.y51f{bottom:44.273998px;}
.y586{bottom:44.279938px;}
.y537{bottom:44.279984px;}
.y509{bottom:44.280006px;}
.y592{bottom:44.280029px;}
.y5a3{bottom:44.324995px;}
.y667{bottom:45.359985px;}
.y663{bottom:45.360031px;}
.y402{bottom:45.533993px;}
.y343{bottom:45.534004px;}
.y3e4{bottom:45.534005px;}
.y2f5{bottom:45.539978px;}
.y4d9{bottom:45.539995px;}
.y303{bottom:45.540000px;}
.y3e0{bottom:45.540002px;}
.y35b{bottom:45.540007px;}
.y2fc{bottom:45.540024px;}
.y3ba{bottom:45.569984px;}
.y365{bottom:45.570007px;}
.y348{bottom:45.584976px;}
.y3de{bottom:45.584988px;}
.y497{bottom:45.584989px;}
.y3ac{bottom:45.584999px;}
.y3d8{bottom:45.585011px;}
.y35f{bottom:45.585022px;}
.y380{bottom:45.713997px;}
.y3a3{bottom:45.719971px;}
.y3bd{bottom:45.719993px;}
.y468{bottom:45.720005px;}
.y31b{bottom:45.720016px;}
.y2ff{bottom:45.750000px;}
.y367{bottom:45.764993px;}
.y335{bottom:45.765015px;}
.y4e9{bottom:47.874000px;}
.y4{bottom:48.095999px;}
.y329{bottom:48.645012px;}
.y395{bottom:49.859985px;}
.y4b8{bottom:51.300001px;}
.y55e{bottom:53.634006px;}
.y546{bottom:53.639969px;}
.y512{bottom:53.639992px;}
.y528{bottom:53.813999px;}
.y551{bottom:53.820007px;}
.y4fd{bottom:54.585022px;}
.y5b5{bottom:57.810013px;}
.y1c{bottom:58.859985px;}
.y390{bottom:59.213997px;}
.y3e3{bottom:59.213998px;}
.y36a{bottom:59.214008px;}
.y314{bottom:59.219971px;}
.y302{bottom:59.219994px;}
.y35a{bottom:59.219999px;}
.y30e{bottom:59.220005px;}
.y2fb{bottom:59.220016px;}
.y364{bottom:59.250000px;}
.y342{bottom:59.258995px;}
.y4c5{bottom:59.264969px;}
.y3b3{bottom:59.264992px;}
.y3e2{bottom:59.265003px;}
.y3ab{bottom:59.265015px;}
.y37f{bottom:59.394001px;}
.y3c0{bottom:59.399963px;}
.y3eb{bottom:59.399986px;}
.y44e{bottom:59.399998px;}
.y31a{bottom:59.400009px;}
.y3a2{bottom:59.429993px;}
.y388{bottom:59.430038px;}
.y4d7{bottom:59.444996px;}
.y334{bottom:59.445007px;}
.y640{bottom:60.293999px;}
.y61a{bottom:60.299973px;}
.y611{bottom:60.300018px;}
.y639{bottom:60.330025px;}
.y644{bottom:60.345016px;}
.y5fd{bottom:60.473991px;}
.y67b{bottom:60.473997px;}
.y684{bottom:60.474003px;}
.y5ce{bottom:60.479965px;}
.y63c{bottom:60.479988px;}
.y5e8{bottom:60.480011px;}
.y6ce{bottom:60.509972px;}
.y6c1{bottom:60.509995px;}
.y64f{bottom:60.510018px;}
.y5c3{bottom:60.518990px;}
.y6f9{bottom:60.524963px;}
.y68e{bottom:60.524998px;}
.y62d{bottom:60.525009px;}
.y5e2{bottom:60.653996px;}
.y6ad{bottom:60.654007px;}
.y620{bottom:60.659958px;}
.y5be{bottom:60.659981px;}
.y5d7{bottom:60.660004px;}
.y6ea{bottom:60.660027px;}
.y671{bottom:60.689987px;}
.y64c{bottom:60.690011px;}
.y65d{bottom:60.699005px;}
.y6ed{bottom:60.704990px;}
.y5d1{bottom:60.705002px;}
.y4e8{bottom:61.554005px;}
.y328{bottom:62.325005px;}
.y55a{bottom:63.173996px;}
.y51e{bottom:63.174007px;}
.y536{bottom:63.179993px;}
.y508{bottom:63.209999px;}
.y57f{bottom:63.354000px;}
.y59c{bottom:63.360008px;}
.y394{bottom:63.539978px;}
.y39d{bottom:63.584976px;}
.y4f9{bottom:63.945007px;}
.y4b7{bottom:64.973997px;}
.y66f{bottom:66.059967px;}
.y666{bottom:66.060013px;}
.y3{bottom:68.256002px;}
.y525{bottom:72.713997px;}
.y582{bottom:72.714008px;}
.y545{bottom:72.719971px;}
.y5a1{bottom:72.719994px;}
.y511{bottom:72.749977px;}
.y550{bottom:72.750000px;}
.y30d{bottom:72.894001px;}
.y3fb{bottom:72.894002px;}
.y359{bottom:72.894007px;}
.y36c{bottom:72.899963px;}
.y33e{bottom:72.899986px;}
.y2fa{bottom:72.900009px;}
.y4bf{bottom:72.900055px;}
.y363{bottom:72.929993px;}
.y421{bottom:72.930016px;}
.y38f{bottom:72.938999px;}
.y4c4{bottom:72.944962px;}
.y3aa{bottom:72.945007px;}
.y446{bottom:73.073994px;}
.y467{bottom:73.074005px;}
.y3b8{bottom:73.080002px;}
.y3a1{bottom:73.109985px;}
.y40b{bottom:73.110008px;}
.y387{bottom:73.110031px;}
.y37e{bottom:73.119002px;}
.y333{bottom:73.125000px;}
.y4d6{bottom:73.125011px;}
.y4fb{bottom:73.485031px;}
.y4e7{bottom:75.278996px;}
.y5b4{bottom:75.990005px;}
.y327{bottom:76.005020px;}
.y393{bottom:77.220016px;}
.y39c{bottom:77.445007px;}
.y4b6{bottom:78.654001px;}
.y5fc{bottom:79.374001px;}
.y67a{bottom:79.374006px;}
.y6b7{bottom:79.379974px;}
.y60b{bottom:79.380020px;}
.y64e{bottom:79.409982px;}
.y5e1{bottom:79.553993px;}
.y6ac{bottom:79.554005px;}
.y5d6{bottom:79.559967px;}
.y629{bottom:79.559990px;}
.y5e7{bottom:79.560013px;}
.y6b9{bottom:79.589973px;}
.y5f5{bottom:79.589996px;}
.y64b{bottom:79.590020px;}
.y5c2{bottom:79.598991px;}
.y698{bottom:79.599003px;}
.y6e8{bottom:79.599014px;}
.y6f8{bottom:79.604965px;}
.y69e{bottom:79.604988px;}
.y68d{bottom:79.605000px;}
.y62c{bottom:79.605011px;}
.y6a7{bottom:79.739983px;}
.y68a{bottom:79.740005px;}
.y535{bottom:82.080002px;}
.y54b{bottom:82.109985px;}
.y507{bottom:82.110008px;}
.y559{bottom:82.119003px;}
.y51d{bottom:82.253998px;}
.y577{bottom:82.259994px;}
.y4f7{bottom:83.025009px;}
.y2{bottom:85.535997px;}
.y45a{bottom:86.256002px;}
.y358{bottom:86.573999px;}
.y3ed{bottom:86.574005px;}
.y354{bottom:86.580002px;}
.y4be{bottom:86.580048px;}
.y4f3{bottom:86.609985px;}
.y3f7{bottom:86.610008px;}
.y3ff{bottom:86.610031px;}
.y5c5{bottom:86.615999px;}
.y38e{bottom:86.618992px;}
.y3cd{bottom:86.619003px;}
.y3fa{bottom:86.619005px;}
.y471{bottom:86.619015px;}
.y3a9{bottom:86.625000px;}
.y30c{bottom:86.753998px;}
.y466{bottom:86.754009px;}
.y3b7{bottom:86.759995px;}
.y437{bottom:86.760017px;}
.y3e7{bottom:86.760040px;}
.y3ca{bottom:86.789978px;}
.y40a{bottom:86.790001px;}
.y362{bottom:86.790024px;}
.y37d{bottom:86.798996px;}
.y332{bottom:86.804993px;}
.y4d5{bottom:86.805003px;}
.y44d{bottom:86.976002px;}
.y308{bottom:87.875999px;}
.y4cf{bottom:88.050018px;}
.y391{bottom:88.595999px;}
.y4e6{bottom:88.958989px;}
.y4d8{bottom:89.136000px;}
.y326{bottom:89.685013px;}
.y355{bottom:90.035997px;}
.y39b{bottom:91.125000px;}
.y43e{bottom:91.476002px;}
.y544{bottom:91.619980px;}
.y510{bottom:91.649986px;}
.y54f{bottom:91.650009px;}
.y523{bottom:91.659004px;}
.y581{bottom:91.793999px;}
.y5a0{bottom:91.799995px;}
.y4b5{bottom:92.333994px;}
.y4fa{bottom:92.385040px;}
.y4b0{bottom:92.736002px;}
.y5b3{bottom:94.350037px;}
.y32e{bottom:94.716001px;}
.y48c{bottom:95.075998px;}
.y6e1{bottom:95.436000px;}
.y6d9{bottom:95.795998px;}
.y484{bottom:95.976002px;}
.y4aa{bottom:97.416000px;}
.y679{bottom:98.274003px;}
.y634{bottom:98.280029px;}
.y60a{bottom:98.325027px;}
.y5d5{bottom:98.459976px;}
.y675{bottom:98.459999px;}
.y5e6{bottom:98.460022px;}
.y69b{bottom:98.489983px;}
.y6de{bottom:98.490005px;}
.y659{bottom:98.490028px;}
.y5db{bottom:98.496002px;}
.y5c1{bottom:98.499001px;}
.y69a{bottom:98.499012px;}
.y61f{bottom:98.504974px;}
.y62b{bottom:98.504997px;}
.y68c{bottom:98.505009px;}
.y6a2{bottom:98.505020px;}
.y5e0{bottom:98.633995px;}
.y6a6{bottom:98.639969px;}
.y628{bottom:98.639992px;}
.y5f9{bottom:98.640015px;}
.y6b8{bottom:98.669975px;}
.y5f4{bottom:98.669998px;}
.y64a{bottom:98.670022px;}
.y65c{bottom:98.678993px;}
.y6dd{bottom:98.679005px;}
.y69d{bottom:98.684990px;}
.y687{bottom:98.685013px;}
.y6a3{bottom:99.396000px;}
.y346{bottom:99.936000px;}
.y357{bottom:100.254003px;}
.y39f{bottom:100.259995px;}
.y353{bottom:100.260017px;}
.y4bd{bottom:100.260040px;}
.y3f6{bottom:100.290001px;}
.y62e{bottom:100.295998px;}
.y470{bottom:100.299007px;}
.y453{bottom:100.304993px;}
.y3a8{bottom:100.305016px;}
.y30b{bottom:100.434001px;}
.y445{bottom:100.434002px;}
.y3b6{bottom:100.440033px;}
.y409{bottom:100.469994px;}
.y361{bottom:100.470016px;}
.y37c{bottom:100.479012px;}
.y383{bottom:100.484985px;}
.y4d4{bottom:100.484997px;}
.y43a{bottom:100.485031px;}
.y465{bottom:100.655994px;}
.y556{bottom:101.019012px;}
.y534{bottom:101.024963px;}
.y576{bottom:101.160004px;}
.y54a{bottom:101.189987px;}
.y506{bottom:101.190010px;}
.y6bc{bottom:101.195995px;}
.y51c{bottom:101.199005px;}
.y4ce{bottom:101.730011px;}
.y4f8{bottom:101.925018px;}
.y5fb{bottom:102.096005px;}
.y427{bottom:102.275997px;}
.y4e5{bottom:102.639005px;}
.y5a7{bottom:102.815998px;}
.y278{bottom:103.896000px;}
.y57d{bottom:104.255997px;}
.y39a{bottom:104.804993px;}
.y4ec{bottom:104.979000px;}
.y4b4{bottom:106.058996px;}
.y66e{bottom:107.459976px;}
.y435{bottom:108.215996px;}
.y3ae{bottom:108.755997px;}
.y499{bottom:110.016003px;}
.y472{bottom:110.375999px;}
.y595{bottom:110.519989px;}
.y4ff{bottom:110.549995px;}
.y54e{bottom:110.550018px;}
.y55d{bottom:110.558990px;}
.y543{bottom:110.564987px;}
.y596{bottom:110.700005px;}
.y515{bottom:110.739006px;}
.y180{bottom:110.916000px;}
.y4a6{bottom:111.096005px;}
.y419{bottom:111.456000px;}
.y4fc{bottom:111.465042px;}
.y5b2{bottom:112.530029px;}
.ydb{bottom:113.255997px;}
.y424{bottom:113.616005px;}
.y514{bottom:113.795998px;}
.y3d3{bottom:113.939987px;}
.y352{bottom:113.940010px;}
.y43c{bottom:113.940033px;}
.y3f5{bottom:113.969994px;}
.y4de{bottom:113.970016px;}
.y356{bottom:113.978994px;}
.y452{bottom:113.984985px;}
.y434{bottom:113.985008px;}
.y43d{bottom:114.120003px;}
.y408{bottom:114.149986px;}
.y3c9{bottom:114.150009px;}
.y18f{bottom:114.155994px;}
.y444{bottom:114.158993px;}
.y30a{bottom:114.159004px;}
.y4c3{bottom:114.164978px;}
.y4d3{bottom:114.165012px;}
.y439{bottom:114.165024px;}
.y459{bottom:114.516003px;}
.y150{bottom:114.875999px;}
.y1d6{bottom:115.056004px;}
.y3be{bottom:115.235996px;}
.y4cd{bottom:115.410004px;}
.y189{bottom:115.956000px;}
.y169{bottom:116.136005px;}
.y4e4{bottom:116.318997px;}
.y369{bottom:116.675995px;}
.y633{bottom:117.179993px;}
.y632{bottom:117.359985px;}
.y3db{bottom:117.396000px;}
.y678{bottom:117.398993px;}
.y609{bottom:117.404984px;}
.y68b{bottom:117.404995px;}
.y6a8{bottom:117.405006px;}
.y5e5{bottom:117.405029px;}
.y5d4{bottom:117.539978px;}
.y5f8{bottom:117.540001px;}
.y693{bottom:117.540024px;}
.y649{bottom:117.569985px;}
.y5f3{bottom:117.570007px;}
.y658{bottom:117.570030px;}
.y63f{bottom:117.576004px;}
.y6dc{bottom:117.578991px;}
.y5df{bottom:117.579002px;}
.y6b2{bottom:117.579014px;}
.y6b5{bottom:117.584976px;}
.y6bb{bottom:117.584999px;}
.y686{bottom:117.585022px;}
.y6d0{bottom:118.476002px;}
.y399{bottom:118.484985px;}
.y4eb{bottom:118.658994px;}
.y6c4{bottom:119.375999px;}
.y4b3{bottom:119.738989px;}
.y117{bottom:119.916000px;}
.y5a9{bottom:120.059967px;}
.y575{bottom:120.059990px;}
.y591{bottom:120.060013px;}
.y505{bottom:120.089973px;}
.y554{bottom:120.089996px;}
.y51b{bottom:120.098991px;}
.y57e{bottom:120.099014px;}
.y52d{bottom:120.104965px;}
.y697{bottom:120.275997px;}
.y6e7{bottom:121.175995px;}
.y4df{bottom:122.436000px;}
.y26e{bottom:122.976002px;}
.y555{bottom:123.335999px;}
.yb8{bottom:125.136005px;}
.y404{bottom:127.619980px;}
.y351{bottom:127.620003px;}
.y3d2{bottom:127.620026px;}
.y4dd{bottom:127.650009px;}
.y451{bottom:127.664978px;}
.y433{bottom:127.665001px;}
.y3c8{bottom:127.830002px;}
.y3f4{bottom:127.830025px;}
.y309{bottom:127.838997px;}
.y443{bottom:127.839008px;}
.y4c2{bottom:127.844971px;}
.y4d2{bottom:127.845005px;}
.y4ef{bottom:127.845016px;}
.y66d{bottom:128.160004px;}
.y1a0{bottom:128.195995px;}
.y281{bottom:128.556004px;}
.y11{bottom:128.916000px;}
.y4cc{bottom:129.089996px;}
.y50f{bottom:129.450005px;}
.y2c1{bottom:129.456000px;}
.y55c{bottom:129.459000px;}
.y542{bottom:129.464996px;}
.y58a{bottom:129.599991px;}
.y54d{bottom:129.629974px;}
.y401{bottom:129.636005px;}
.y522{bottom:129.638992px;}
.y4e3{bottom:129.998990px;}
.y38d{bottom:130.355999px;}
.y2ab{bottom:131.255997px;}
.y36f{bottom:131.795998px;}
.y4e2{bottom:132.339009px;}
.y618{bottom:132.695995px;}
.y1f6{bottom:133.056004px;}
.y4b2{bottom:133.419004px;}
.y296{bottom:134.496002px;}
.y4f2{bottom:134.669998px;}
.y232{bottom:135.396000px;}
.y17f{bottom:136.116005px;}
.y677{bottom:136.299002px;}
.y608{bottom:136.304993px;}
.y5d3{bottom:136.439987px;}
.y6fd{bottom:136.440009px;}
.y692{bottom:136.440033px;}
.y6e6{bottom:136.469971px;}
.y657{bottom:136.469994px;}
.y627{bottom:136.470016px;}
.y6b1{bottom:136.479000px;}
.y6c7{bottom:136.479012px;}
.y695{bottom:136.484985px;}
.y6ba{bottom:136.485008px;}
.y5e4{bottom:136.485031px;}
.y6df{bottom:136.620003px;}
.y6cb{bottom:136.620026px;}
.y5f2{bottom:136.650009px;}
.y5de{bottom:136.659004px;}
.y65b{bottom:137.375999px;}
.yda{bottom:138.815998px;}
.y504{bottom:138.989983px;}
.y553{bottom:138.990005px;}
.y558{bottom:138.999001px;}
.y52c{bottom:139.004974px;}
.y590{bottom:139.005020px;}
.y59b{bottom:139.139992px;}
.y51a{bottom:139.178993px;}
.y418{bottom:139.536003px;}
.y1d5{bottom:140.255997px;}
.y350{bottom:141.299995px;}
.y3d1{bottom:141.300018px;}
.y4dc{bottom:141.330002px;}
.y168{bottom:141.335999px;}
.y450{bottom:141.344971px;}
.y432{bottom:141.345016px;}
.y3c7{bottom:141.509995px;}
.y3f3{bottom:141.510017px;}
.y442{bottom:141.519001px;}
.y37b{bottom:141.519012px;}
.y4c1{bottom:141.524963px;}
.y4d1{bottom:141.524998px;}
.y4ee{bottom:141.525009px;}
.y341{bottom:141.875999px;}
.y4cb{bottom:142.769989px;}
.y5bf{bottom:144.576004px;}
.y116{bottom:145.116005px;}
.y146{bottom:145.295998px;}
.y4e1{bottom:146.019002px;}
.y1bf{bottom:146.375999px;}
.y4b1{bottom:147.098997px;}
.y18e{bottom:148.175995px;}
.y4f1{bottom:148.349991px;}
.y1da{bottom:148.355999px;}
.y59f{bottom:148.500000px;}
.y54c{bottom:148.529984px;}
.y50e{bottom:148.530006px;}
.y524{bottom:148.539001px;}
.y53a{bottom:148.544998px;}
.y66c{bottom:148.904984px;}
.y260{bottom:149.076004px;}
.y188{bottom:149.976002px;}
.y32d{bottom:151.049995px;}
.y483{bottom:151.770000px;}
.y4a5{bottom:153.209999px;}
.y2c0{bottom:154.830002px;}
.y3d7{bottom:154.979988px;}
.y34f{bottom:154.980011px;}
.y431{bottom:155.025009px;}
.y3c6{bottom:155.189987px;}
.y3f2{bottom:155.190010px;}
.y441{bottom:155.198994px;}
.y37a{bottom:155.199005px;}
.y4ed{bottom:155.205002px;}
.y691{bottom:155.339996px;}
.y656{bottom:155.370003px;}
.y6c6{bottom:155.378998px;}
.y676{bottom:155.379003px;}
.y6b0{bottom:155.379009px;}
.y5f1{bottom:155.384995px;}
.y6fa{bottom:155.519989px;}
.y6fc{bottom:155.520012px;}
.y6ca{bottom:155.520035px;}
.y6e5{bottom:155.549973px;}
.y423{bottom:155.549995px;}
.y626{bottom:155.550018px;}
.y5dd{bottom:155.558990px;}
.y6e3{bottom:155.564987px;}
.y6f2{bottom:155.565033px;}
.y251{bottom:156.450005px;}
.y4ca{bottom:156.450027px;}
.y616{bottom:157.350002px;}
.y3b2{bottom:157.709999px;}
.y503{bottom:157.889992px;}
.y557{bottom:157.899010px;}
.y52b{bottom:157.904984px;}
.y59a{bottom:158.039978px;}
.y56d{bottom:158.069984px;}
.yb7{bottom:158.069996px;}
.y552{bottom:158.070007px;}
.y519{bottom:158.079002px;}
.y58f{bottom:158.085022px;}
.y62a{bottom:158.250000px;}
.y10{bottom:158.430004px;}
.y4d0{bottom:158.609997px;}
.y295{bottom:159.689999px;}
.y4e0{bottom:159.698995px;}
.y231{bottom:160.589996px;}
.y145{bottom:161.310000px;}
.y17e{bottom:161.490005px;}
.y19f{bottom:162.209999px;}
.yd9{bottom:164.189999px;}
.y1d9{bottom:164.370003px;}
.y1d4{bottom:165.450005px;}
.y496{bottom:165.810000px;}
.y167{bottom:166.529995px;}
.y50d{bottom:167.430016px;}
.y527{bottom:167.439011px;}
.y541{bottom:167.444962px;}
.y594{bottom:167.445007px;}
.y59e{bottom:167.609985px;}
.y34e{bottom:168.660004px;}
.y3d6{bottom:168.690010px;}
.y430{bottom:168.705002px;}
.y3c5{bottom:168.869980px;}
.y3f1{bottom:168.870003px;}
.y379{bottom:168.878998px;}
.y440{bottom:168.879009px;}
.y66b{bottom:169.604965px;}
.y44c{bottom:169.950005px;}
.y4c9{bottom:170.130020px;}
.y115{bottom:170.490005px;}
.y88{bottom:170.669998px;}
.y3dd{bottom:171.390003px;}
.y63{bottom:172.830002px;}
.y26d{bottom:173.549995px;}
.y2ea{bottom:174.270000px;}
.y607{bottom:174.285004px;}
.y6c9{bottom:174.419998px;}
.y625{bottom:174.449982px;}
.y25f{bottom:174.450005px;}
.y6c5{bottom:174.459000px;}
.y6af{bottom:174.459011px;}
.y5f0{bottom:174.464996px;}
.y6ec{bottom:175.350002px;}
.y6e0{bottom:176.250000px;}
.y12e{bottom:176.430004px;}
.y502{bottom:176.969994px;}
.y599{bottom:176.970016px;}
.y518{bottom:176.979012px;}
.y52a{bottom:176.984985px;}
.y58e{bottom:176.985031px;}
.y42f{bottom:177.509995px;}
.y3a7{bottom:178.049995px;}
.y5a2{bottom:179.310000px;}
.y2bf{bottom:180.029995px;}
.y250{bottom:181.830002px;}
.y18d{bottom:182.189999px;}
.y34d{bottom:182.340019px;}
.y3d5{bottom:182.370003px;}
.y3f0{bottom:182.549995px;}
.y43f{bottom:182.559002px;}
.y378{bottom:182.559013px;}
.y1f5{bottom:183.629997px;}
.y4c8{bottom:183.810013px;}
.y3ec{bottom:184.350002px;}
.y3e1{bottom:185.069996px;}
.y230{bottom:185.790000px;}
.y50c{bottom:186.329979px;}
.y540{bottom:186.344971px;}
.y57c{bottom:186.509972px;}
.y526{bottom:186.519012px;}
.y17d{bottom:186.689999px;}
.yf{bottom:187.950005px;}
.yd8{bottom:189.569996px;}
.y1d3{bottom:190.830002px;}
.yb6{bottom:191.009995px;}
.y166{bottom:191.910004px;}
.y12d{bottom:192.450005px;}
.y325{bottom:192.809990px;}
.y606{bottom:193.185013px;}
.y683{bottom:193.349991px;}
.y5ef{bottom:193.365005px;}
.y624{bottom:193.529984px;}
.y62{bottom:193.530006px;}
.y6e2{bottom:193.544998px;}
.y63d{bottom:194.250000px;}
.y415{bottom:194.969994px;}
.y114{bottom:195.690010px;}
.y501{bottom:195.870003px;}
.y517{bottom:195.878998px;}
.y533{bottom:195.884995px;}
.y87{bottom:196.049995px;}
.y598{bottom:196.050018px;}
.y377{bottom:196.239006px;}
.y69c{bottom:196.950005px;}
.y463{bottom:197.309990px;}
.y4c7{bottom:197.490005px;}
.y294{bottom:197.849991px;}
.y5f7{bottom:197.894989px;}
.y26c{bottom:198.750000px;}
.y400{bottom:198.794998px;}
.y40d{bottom:199.514992px;}
.y25e{bottom:199.650009px;}
.y2be{bottom:205.230011px;}
.y579{bottom:205.409981px;}
.y53f{bottom:205.424973px;}
.y138{bottom:206.849991px;}
.y48b{bottom:206.894989px;}
.y24f{bottom:207.030006px;}
.y482{bottom:207.794998px;}
.y1f4{bottom:208.830002px;}
.y4a9{bottom:209.235008px;}
.y6f5{bottom:209.594994px;}
.y376{bottom:209.918999px;}
.y6d8{bottom:210.674995px;}
.y340{bottom:211.035004px;}
.y22f{bottom:211.169998px;}
.y17c{bottom:212.070007px;}
.y6f7{bottom:212.264969px;}
.y5ee{bottom:212.265015px;}
.y623{bottom:212.429993px;}
.y602{bottom:212.445007px;}
.y3f9{bottom:212.474991px;}
.y3cc{bottom:213.195007px;}
.y293{bottom:213.690010px;}
.y34c{bottom:214.094994px;}
.y61{bottom:214.230011px;}
.y500{bottom:214.770012px;}
.y532{bottom:214.785004px;}
.y597{bottom:214.949982px;}
.y56c{bottom:214.950005px;}
.y516{bottom:214.959000px;}
.yd7{bottom:215.129997px;}
.y6cf{bottom:215.174995px;}
.y1d2{bottom:216.030006px;}
.y6fb{bottom:216.974991px;}
.y165{bottom:217.110008px;}
.ye{bottom:217.469994px;}
.y49f{bottom:220.575005px;}
.y113{bottom:221.070007px;}
.y86{bottom:221.250000px;}
.y495{bottom:221.655006px;}
.y4a4{bottom:222.915000px;}
.y375{bottom:223.598991px;}
.yb5{bottom:223.950005px;}
.y564{bottom:224.309990px;}
.y53e{bottom:224.324982px;}
.y25d{bottom:224.849991px;}
.y44b{bottom:225.434990px;}
.y306{bottom:225.615005px;}
.y3ea{bottom:226.155006px;}
.y38c{bottom:227.054993px;}
.y19e{bottom:230.070007px;}
.y2bd{bottom:230.610008px;}
.y605{bottom:231.165024px;}
.y26b{bottom:231.330002px;}
.y5ed{bottom:231.345016px;}
.y137{bottom:232.049995px;}
.y2aa{bottom:232.230011px;}
.y652{bottom:232.275009px;}
.y24e{bottom:232.410004px;}
.y6db{bottom:233.174995px;}
.y531{bottom:233.684967px;}
.y56b{bottom:233.850014px;}
.y58d{bottom:233.865005px;}
.y6ab{bottom:234.075005px;}
.y1f3{bottom:234.209999px;}
.y60{bottom:234.929993px;}
.y696{bottom:234.974991px;}
.y22e{bottom:236.370003px;}
.y414{bottom:236.955002px;}
.y2eb{bottom:237.089996px;}
.y17b{bottom:237.269989px;}
.y374{bottom:237.279007px;}
.y46f{bottom:238.394989px;}
.yd6{bottom:240.509995px;}
.y3b1{bottom:240.735008px;}
.y40c{bottom:241.455002px;}
.y3d4{bottom:242.174995px;}
.y164{bottom:242.490005px;}
.y53d{bottom:243.224991px;}
.y563{bottom:243.389992px;}
.y112{bottom:246.269989px;}
.y85{bottom:246.629997px;}
.yd{bottom:246.990005px;}
.y305{bottom:247.754997px;}
.y1cc{bottom:248.070007px;}
.y2e9{bottom:250.049995px;}
.y6b4{bottom:250.244980px;}
.y5ec{bottom:250.245026px;}
.y4af{bottom:250.275009px;}
.y601{bottom:250.425018px;}
.y373{bottom:250.959000px;}
.y6eb{bottom:252.254997px;}
.y56a{bottom:252.749977px;}
.y530{bottom:252.764969px;}
.y58c{bottom:252.765015px;}
.y422{bottom:252.794998px;}
.y44a{bottom:253.514992px;}
.y610{bottom:254.054993px;}
.y3df{bottom:254.415000px;}
.y3cb{bottom:255.134995px;}
.y5f{bottom:255.629997px;}
.y2bc{bottom:255.809990px;}
.yb4{bottom:256.889992px;}
.y136{bottom:257.429993px;}
.y24d{bottom:257.610008px;}
.y3e{bottom:258.690010px;}
.y5bc{bottom:259.275009px;}
.y1f2{bottom:259.410004px;}
.y1d1{bottom:260.490005px;}
.y674{bottom:261.794998px;}
.y53c{bottom:262.125000px;}
.y562{bottom:262.290001px;}
.y17a{bottom:262.469994px;}
.y48a{bottom:262.695007px;}
.y25c{bottom:263.009995px;}
.y481{bottom:263.594994px;}
.y19d{bottom:263.910004px;}
.y372{bottom:264.639015px;}
.yd5{bottom:266.070007px;}
.y33f{bottom:266.474991px;}
.y3bc{bottom:267.195007px;}
.y163{bottom:267.690010px;}
.y3f8{bottom:268.094994px;}
.y6d7{bottom:268.455002px;}
.y604{bottom:269.145035px;}
.y1e7{bottom:269.309990px;}
.y5eb{bottom:269.325027px;}
.y5da{bottom:270.254997px;}
.y63b{bottom:271.155006px;}
.y111{bottom:271.469994px;}
.y569{bottom:271.649986px;}
.y52f{bottom:271.664978px;}
.y58b{bottom:271.665024px;}
.y84{bottom:271.830002px;}
.y622{bottom:272.955002px;}
.y1cb{bottom:273.269989px;}
.y6e4{bottom:273.855011px;}
.y2e8{bottom:275.429993px;}
.y561{bottom:275.655006px;}
.yc{bottom:276.330002px;}
.y494{bottom:277.634995px;}
.y371{bottom:278.348991px;}
.y413{bottom:278.714996px;}
.y25b{bottom:279.030006px;}
.y22d{bottom:281.009995px;}
.y578{bottom:281.190010px;}
.y53b{bottom:281.204956px;}
.y366{bottom:282.495003px;}
.y135{bottom:282.674995px;}
.y2a9{bottom:282.855011px;}
.y3d{bottom:283.934990px;}
.y26a{bottom:284.294998px;}
.y1f1{bottom:284.834999px;}
.y603{bottom:288.044998px;}
.y600{bottom:288.224991px;}
.y5ea{bottom:288.225037px;}
.y3a6{bottom:288.254997px;}
.yb3{bottom:289.875000px;}
.y49e{bottom:290.235008px;}
.y52e{bottom:290.564941px;}
.y568{bottom:290.729988px;}
.y689{bottom:290.955002px;}
.yd4{bottom:291.495003px;}
.y6a5{bottom:291.855011px;}
.y370{bottom:292.028984px;}
.y324{bottom:292.394989px;}
.y1e6{bottom:294.554993px;}
.y33d{bottom:294.735008px;}
.y3e9{bottom:295.455002px;}
.y24c{bottom:295.815010px;}
.y38b{bottom:296.174995px;}
.y110{bottom:296.894989px;}
.y5e{bottom:297.075005px;}
.y1ca{bottom:298.695007px;}
.y57b{bottom:300.089973px;}
.y269{bottom:300.495003px;}
.y39{bottom:301.575005px;}
.y3b{bottom:302.294998px;}
.y19c{bottom:303.195007px;}
.y6f4{bottom:305.355011px;}
.yb{bottom:305.894989px;}
.y2bb{bottom:306.434990px;}
.y5e9{bottom:307.125000px;}
.y46e{bottom:307.514992px;}
.y134{bottom:307.875000px;}
.y2a8{bottom:308.054993px;}
.y436{bottom:309.134995px;}
.y567{bottom:309.629997px;}
.y426{bottom:309.855011px;}
.y1f0{bottom:310.035004px;}
.y4c6{bottom:310.394989px;}
.y6ae{bottom:310.934990px;}
.y24b{bottom:311.834999px;}
.y2e7{bottom:312.735008px;}
.y1d0{bottom:313.634995px;}
.yd3{bottom:316.875000px;}
.y5d{bottom:317.775009px;}
.y489{bottom:318.674995px;}
.y57a{bottom:319.169975px;}
.y480{bottom:319.575005px;}
.y1e5{bottom:319.934990px;}
.y162{bottom:321.735008px;}
.y83{bottom:322.455002px;}
.y3bb{bottom:322.815010px;}
.yb2{bottom:322.995003px;}
.y3b0{bottom:323.535004px;}
.y1c9{bottom:323.894989px;}
.y3ef{bottom:324.254997px;}
.y6d6{bottom:326.235008px;}
.y5d8{bottom:328.035004px;}
.y19b{bottom:328.394989px;}
.y566{bottom:328.575005px;}
.y6e9{bottom:328.934990px;}
.y38{bottom:329.115005px;}
.y1cf{bottom:329.655006px;}
.y4f4{bottom:329.834999px;}
.y60f{bottom:330.735008px;}
.y179{bottom:331.094994px;}
.y2ba{bottom:331.634995px;}
.y549{bottom:332.535004px;}
.y133{bottom:333.254997px;}
.y2a7{bottom:333.434990px;}
.y10f{bottom:333.794998px;}
.y323{bottom:334.155006px;}
.y1ef{bottom:335.235008px;}
.ya{bottom:335.415000px;}
.y457{bottom:335.775009px;}
.y22c{bottom:336.134995px;}
.y420{bottom:336.495003px;}
.y3dc{bottom:337.214996px;}
.y2e6{bottom:337.934990px;}
.y5c{bottom:338.474991px;}
.y407{bottom:338.655006px;}
.y4fe{bottom:342.075005px;}
.yd2{bottom:342.434990px;}
.y3a0{bottom:343.695007px;}
.y1e4{bottom:345.134995px;}
.y82{bottom:346.394989px;}
.y565{bottom:347.655006px;}
.y638{bottom:348.014992px;}
.y4a8{bottom:348.195007px;}
.y462{bottom:348.735008px;}
.y6a9{bottom:348.915000px;}
.y1c8{bottom:349.094994px;}
.y6cd{bottom:349.815010px;}
.y3fe{bottom:350.894989px;}
.y19a{bottom:353.775009px;}
.y36{bottom:355.214996px;}
.yb1{bottom:355.934990px;}
.y42e{bottom:356.115005px;}
.y178{bottom:356.294998px;}
.y2a6{bottom:358.634995px;}
.y5b{bottom:359.174995px;}
.y49d{bottom:359.714996px;}
.y4ae{bottom:360.794998px;}
.y4a3{bottom:361.875000px;}
.y2e5{bottom:363.315010px;}
.y456{bottom:363.855011px;}
.y3e8{bottom:364.575005px;}
.y9{bottom:364.934990px;}
.y360{bottom:365.294998px;}
.y132{bottom:365.834999px;}
.y574{bottom:366.555016px;}
.y648{bottom:366.915000px;}
.yd1{bottom:367.815010px;}
.y2b9{bottom:368.714996px;}
.y1e3{bottom:370.334999px;}
.y81{bottom:371.415000px;}
.y201{bottom:372.495003px;}
.y4f0{bottom:373.214996px;}
.y1c7{bottom:374.474991px;}
.y47f{bottom:375.375000px;}
.y320{bottom:376.094994px;}
.y670{bottom:376.455002px;}
.y460{bottom:376.815010px;}
.y33c{bottom:377.535004px;}
.y3b9{bottom:378.254997px;}
.y199{bottom:378.974991px;}
.y22b{bottom:379.514992px;}
.y5a{bottom:379.875000px;}
.y34{bottom:381.134995px;}
.y25a{bottom:382.214996px;}
.y2a5{bottom:384.015015px;}
.y6d4{bottom:384.195007px;}
.y573{bottom:385.454979px;}
.y2fe{bottom:385.994980px;}
.y6c0{bottom:386.894989px;}
.y2e4{bottom:388.515015px;}
.yb0{bottom:388.875000px;}
.y493{bottom:389.414978px;}
.y411{bottom:389.775009px;}
.y448{bottom:391.935013px;}
.y386{bottom:392.654984px;}
.yd0{bottom:393.375000px;}
.y5b1{bottom:393.914978px;}
.y1e2{bottom:395.714996px;}
.y80{bottom:396.794998px;}
.y10e{bottom:397.154984px;}
.y177{bottom:399.675018px;}
.y59{bottom:400.574982px;}
.y682{bottom:404.025009px;}
.y198{bottom:404.175018px;}
.y572{bottom:404.354988px;}
.y22a{bottom:404.714996px;}
.y46d{bottom:404.925018px;}
.y33b{bottom:405.644989px;}
.y688{bottom:405.824982px;}
.y21c{bottom:406.154984px;}
.y3af{bottom:406.365005px;}
.y425{bottom:407.265015px;}
.y259{bottom:407.414978px;}
.y60e{bottom:407.625000px;}
.y43b{bottom:407.984985px;}
.y2a4{bottom:409.214996px;}
.y8{bottom:410.474991px;}
.y32{bottom:411.734985px;}
.y42d{bottom:411.765015px;}
.y200{bottom:413.714996px;}
.y1ba{bottom:415.875000px;}
.y277{bottom:416.054993px;}
.y4ad{bottom:416.804993px;}
.y31f{bottom:417.884995px;}
.ycf{bottom:418.755020px;}
.y34b{bottom:420.044998px;}
.y24a{bottom:420.734985px;}
.y1e1{bottom:420.914978px;}
.y58{bottom:421.275009px;}
.y1ee{bottom:421.455002px;}
.yaf{bottom:421.814987px;}
.y7f{bottom:421.994980px;}
.y10d{bottom:422.535004px;}
.y18c{bottom:423.255020px;}
.y571{bottom:423.434990px;}
.y637{bottom:424.724991px;}
.y176{bottom:424.875000px;}
.y1c6{bottom:425.054993px;}
.y39e{bottom:426.705002px;}
.y2c4{bottom:428.115005px;}
.y229{bottom:430.095016px;}
.y47e{bottom:431.205002px;}
.y21b{bottom:431.355011px;}
.y49c{bottom:431.564987px;}
.y2b8{bottom:432.074982px;}
.y45f{bottom:432.285004px;}
.y258{bottom:432.794998px;}
.y41f{bottom:433.005020px;}
.y36e{bottom:433.724991px;}
.y2a3{bottom:434.414978px;}
.y131{bottom:434.955002px;}
.y1ff{bottom:436.755020px;}
.y14f{bottom:437.835022px;}
.y2e3{bottom:439.095016px;}
.y6f3{bottom:439.125000px;}
.y276{bottom:441.255020px;}
.y2f9{bottom:441.644989px;}
.y7{bottom:441.794998px;}
.y57{bottom:441.974991px;}
.y6d3{bottom:442.005020px;}
.y570{bottom:442.334999px;}
.y1ed{bottom:442.515015px;}
.yce{bottom:444.134995px;}
.y488{bottom:444.164978px;}
.y31{bottom:444.675018px;}
.y6a4{bottom:444.705002px;}
.y492{bottom:445.244980px;}
.y13a{bottom:445.574982px;}
.y6b6{bottom:445.605011px;}
.y410{bottom:445.964996px;}
.y249{bottom:446.115005px;}
.y1e0{bottom:446.294998px;}
.y46c{bottom:446.685013px;}
.y7e{bottom:447.195007px;}
.y339{bottom:447.404984px;}
.y197{bottom:447.554993px;}
.y10c{bottom:447.734985px;}
.y3d0{bottom:448.304993px;}
.y144{bottom:450.615005px;}
.y1b9{bottom:453.134995px;}
.y66a{bottom:453.345016px;}
.yae{bottom:454.755020px;}
.y228{bottom:455.294998px;}
.y21a{bottom:456.734985px;}
.y2b7{bottom:457.275009px;}
.y280{bottom:457.455002px;}
.y1c5{bottom:457.634995px;}
.y257{bottom:457.994980px;}
.y31e{bottom:459.644989px;}
.y2a2{bottom:459.794998px;}
.y1fe{bottom:459.974991px;}
.y56f{bottom:461.235008px;}
.y139{bottom:461.595016px;}
.y36d{bottom:461.984985px;}
.y56{bottom:462.675018px;}
.y406{bottom:462.705002px;}
.y14e{bottom:463.035004px;}
.y6da{bottom:463.605011px;}
.y2e2{bottom:464.294998px;}
.y6cc{bottom:464.505020px;}
.y589{bottom:465.224991px;}
.y2c3{bottom:466.275009px;}
.y275{bottom:466.634995px;}
.y42c{bottom:467.205002px;}
.y292{bottom:468.615005px;}
.y175{bottom:469.515015px;}
.ycd{bottom:469.695007px;}
.yf2{bottom:470.595016px;}
.y248{bottom:471.314987px;}
.y1df{bottom:471.494980px;}
.y7d{bottom:472.574982px;}
.y196{bottom:472.755020px;}
.y10b{bottom:472.935013px;}
.y34a{bottom:475.664978px;}
.y143{bottom:475.814987px;}
.y1ec{bottom:477.974991px;}
.y161{bottom:478.154984px;}
.y1b8{bottom:478.335022px;}
.y30{bottom:478.875000px;}
.y56e{bottom:480.315010px;}
.y227{bottom:480.494980px;}
.y681{bottom:480.884995px;}
.y219{bottom:481.935013px;}
.y2c2{bottom:482.294998px;}
.y27f{bottom:482.654984px;}
.y6bf{bottom:482.685013px;}
.y1fd{bottom:483.195007px;}
.y55{bottom:483.375000px;}
.y694{bottom:483.585022px;}
.y5e3{bottom:484.484985px;}
.y2a1{bottom:484.994980px;}
.y4db{bottom:486.285004px;}
.y47d{bottom:487.185013px;}
.y49b{bottom:487.365005px;}
.yad{bottom:487.695007px;}
.y319{bottom:487.724991px;}
.y14d{bottom:488.414978px;}
.y46b{bottom:488.625000px;}
.y385{bottom:489.345016px;}
.y2e1{bottom:489.675018px;}
.y256{bottom:490.574982px;}
.y274{bottom:491.835022px;}
.y291{bottom:493.814987px;}
.y1eb{bottom:493.994980px;}
.ycc{bottom:495.074982px;}
.yf1{bottom:495.974991px;}
.y247{bottom:496.695007px;}
.y6f1{bottom:496.904984px;}
.y7c{bottom:497.775009px;}
.y195{bottom:498.134995px;}
.y10a{bottom:498.314987px;}
.y6d2{bottom:499.785004px;}
.y4ac{bottom:499.964996px;}
.y647{bottom:500.685013px;}
.y142{bottom:501.015015px;}
.y491{bottom:501.044998px;}
.y45e{bottom:501.404984px;}
.y61e{bottom:501.585022px;}
.y41e{bottom:502.304993px;}
.y338{bottom:503.025009px;}
.y160{bottom:503.355011px;}
.y5ff{bottom:503.384995px;}
.y1b7{bottom:503.714996px;}
.y455{bottom:503.744980px;}
.y529{bottom:503.925018px;}
.y54{bottom:504.074982px;}
.y2f{bottom:504.255020px;}
.y226{bottom:505.875000px;}
.y1fc{bottom:506.234985px;}
.y218{bottom:507.314987px;}
.y2b6{bottom:507.855011px;}
.y27e{bottom:508.035004px;}
.y2a0{bottom:510.375000px;}
.y1c4{bottom:512.714996px;}
.y14c{bottom:513.615005px;}
.y2e0{bottom:514.875000px;}
.y3ee{bottom:516.705002px;}
.y273{bottom:517.035004px;}
.y349{bottom:517.425018px;}
.y405{bottom:518.144989px;}
.y290{bottom:519.015015px;}
.y680{bottom:519.585022px;}
.y685{bottom:520.484985px;}
.yac{bottom:520.634995px;}
.yf0{bottom:521.175018px;}
.y246{bottom:521.894989px;}
.y5ae{bottom:522.464996px;}
.y7b{bottom:523.154984px;}
.y194{bottom:523.335022px;}
.y109{bottom:523.515015px;}
.y2f4{bottom:524.445007px;}
.y174{bottom:524.595016px;}
.y53{bottom:524.775009px;}
.y141{bottom:526.394989px;}
.y487{bottom:527.324982px;}
.y12c{bottom:527.835022px;}
.y2e{bottom:528.015015px;}
.y15f{bottom:528.554993px;}
.y1b6{bottom:528.914978px;}
.y1fb{bottom:529.455002px;}
.y40f{bottom:529.664978px;}
.y225{bottom:531.074982px;}
.y384{bottom:531.105011px;}
.y438{bottom:531.824982px;}
.y217{bottom:532.515015px;}
.y2b5{bottom:533.054993px;}
.y27d{bottom:533.234985px;}
.y29f{bottom:535.574982px;}
.y398{bottom:536.865005px;}
.y1c3{bottom:537.914978px;}
.y655{bottom:538.664978px;}
.y14b{bottom:538.814987px;}
.y6a1{bottom:539.564987px;}
.y2df{bottom:540.074982px;}
.y6b3{bottom:541.365005px;}
.y47c{bottom:542.984985px;}
.y45d{bottom:543.345016px;}
.y255{bottom:543.675018px;}
.y46a{bottom:544.064987px;}
.y28f{bottom:544.394989px;}
.y337{bottom:544.785004px;}
.y52{bottom:545.474991px;}
.y4c0{bottom:545.505020px;}
.ycb{bottom:546.015015px;}
.yef{bottom:546.554993px;}
.y245{bottom:547.095016px;}
.y7a{bottom:548.355011px;}
.y193{bottom:548.535004px;}
.y187{bottom:548.714996px;}
.y108{bottom:548.894989px;}
.y173{bottom:549.974991px;}
.y140{bottom:551.595016px;}
.y12b{bottom:553.214996px;}
.yab{bottom:553.574982px;}
.y1b5{bottom:554.115005px;}
.y272{bottom:555.195007px;}
.y224{bottom:556.275009px;}
.y318{bottom:557.025009px;}
.y5cf{bottom:557.564987px;}
.y216{bottom:557.714996px;}
.y41d{bottom:557.744980px;}
.y2d{bottom:558.074982px;}
.y27c{bottom:558.435013px;}
.y35e{bottom:558.464996px;}
.y454{bottom:559.185013px;}
.y254{bottom:559.515015px;}
.y29e{bottom:560.775009px;}
.y5ad{bottom:560.984985px;}
.y1c2{bottom:563.294998px;}
.y42b{bottom:563.685013px;}
.y14a{bottom:564.195007px;}
.y1de{bottom:564.945007px;}
.y2de{bottom:565.484985px;}
.y51{bottom:566.205002px;}
.y15e{bottom:566.744980px;}
.y1fa{bottom:569.085022px;}
.y28e{bottom:569.625000px;}
.y4f6{bottom:570.164978px;}
.y490{bottom:570.705002px;}
.y271{bottom:571.244980px;}
.yca{bottom:571.425018px;}
.yee{bottom:571.785004px;}
.y3c3{bottom:572.144989px;}
.y244{bottom:572.505020px;}
.y347{bottom:572.865005px;}
.y79{bottom:573.585022px;}
.y107{bottom:574.125000px;}
.y172{bottom:575.205002px;}
.y6d1{bottom:576.644989px;}
.y13f{bottom:576.824982px;}
.y643{bottom:577.544998px;}
.y12a{bottom:578.445007px;}
.y6f6{bottom:579.345016px;}
.y1b4{bottom:579.525009px;}
.y15d{bottom:582.765015px;}
.y186{bottom:582.945007px;}
.y215{bottom:583.125000px;}
.y486{bottom:583.304993px;}
.y2b4{bottom:583.664978px;}
.y27b{bottom:583.845016px;}
.y1f9{bottom:585.105011px;}
.y3fc{bottom:585.824982px;}
.y149{bottom:586.185013px;}
.yaa{bottom:586.544998px;}
.y50{bottom:586.904984px;}
.y44f{bottom:587.445007px;}
.y2c{bottom:588.164978px;}
.y2dd{bottom:590.685013px;}
.y192{bottom:591.765015px;}
.y28d{bottom:595.005020px;}
.yc9{bottom:596.984985px;}
.y2f3{bottom:597.164978px;}
.y13e{bottom:597.705002px;}
.y45c{bottom:598.830002px;}
.y78{bottom:598.964996px;}
.y47b{bottom:599.009995px;}
.y49a{bottom:599.189987px;}
.y106{bottom:599.324982px;}
.y3cf{bottom:599.550018px;}
.y223{bottom:599.685013px;}
.y3b5{bottom:600.269989px;}
.y171{bottom:600.585022px;}
.y403{bottom:601.169998px;}
.y1c1{bottom:601.304993px;}
.y129{bottom:603.644989px;}
.y1b3{bottom:604.724991px;}
.y1dd{bottom:607.064987px;}
.y4f{bottom:607.605011px;}
.y214{bottom:608.324982px;}
.y27a{bottom:609.044998px;}
.y29d{bottom:611.384995px;}
.y4da{bottom:611.789978px;}
.y316{bottom:613.230011px;}
.y35d{bottom:613.949982px;}
.y654{bottom:615.390015px;}
.y2dc{bottom:615.884995px;}
.y61b{bottom:616.289978px;}
.y6c8{bottom:617.189987px;}
.y1c0{bottom:617.324982px;}
.y2b{bottom:618.224991px;}
.y148{bottom:618.765015px;}
.y429{bottom:619.349991px;}
.ya9{bottom:619.484985px;}
.y28c{bottom:620.205002px;}
.yc8{bottom:622.365005px;}
.y243{bottom:622.904984px;}
.y77{bottom:624.164978px;}
.y105{bottom:624.705002px;}
.y222{bottom:624.884995px;}
.y170{bottom:625.785004px;}
.y48f{bottom:626.550018px;}
.y41c{bottom:626.910004px;}
.y3bf{bottom:627.630020px;}
.y4e{bottom:628.125000px;}
.y128{bottom:629.025009px;}
.y13d{bottom:630.105011px;}
.y9a{bottom:630.285004px;}
.y1be{bottom:632.984985px;}
.y213{bottom:633.525009px;}
.y279{bottom:634.244980px;}
.y5cd{bottom:634.470016px;}
.y6be{bottom:635.369980px;}
.y690{bottom:636.269989px;}
.y29c{bottom:636.585022px;}
.y5ac{bottom:636.810013px;}
.y2f2{bottom:640.050018px;}
.y4a2{bottom:640.230011px;}
.y45b{bottom:640.589996px;}
.y2db{bottom:641.265015px;}
.y315{bottom:641.490005px;}
.y191{bottom:641.984985px;}
.yed{bottom:647.564987px;}
.yc7{bottom:647.925018px;}
.y242{bottom:648.285004px;}
.y4d{bottom:648.824982px;}
.y76{bottom:649.365005px;}
.y104{bottom:649.904984px;}
.y221{bottom:650.265015px;}
.y16f{bottom:650.984985px;}
.y2a{bottom:651.164978px;}
.ya8{bottom:652.425018px;}
.y127{bottom:654.224991px;}
.y642{bottom:654.269989px;}
.y1d8{bottom:654.404984px;}
.y3ce{bottom:655.169998px;}
.y1b2{bottom:655.304993px;}
.y99{bottom:655.484985px;}
.y36b{bottom:655.890015px;}
.y1bd{bottom:658.185013px;}
.y28b{bottom:658.365005px;}
.y268{bottom:658.724991px;}
.y5ab{bottom:658.949982px;}
.y2b3{bottom:659.445007px;}
.y29b{bottom:661.964996px;}
.y1a6{bottom:663.585022px;}
.y2f1{bottom:665.250000px;}
.y212{bottom:666.285004px;}
.y2da{bottom:666.464996px;}
.y1dc{bottom:668.265015px;}
.y6f0{bottom:668.669998px;}
.y4c{bottom:669.525009px;}
.y313{bottom:669.570007px;}
.y29{bottom:671.685013px;}
.yec{bottom:672.765015px;}
.yc6{bottom:673.304993px;}
.y67f{bottom:673.349991px;}
.y631{bottom:674.250000px;}
.y28a{bottom:674.384995px;}
.y5a8{bottom:674.429993px;}
.y75{bottom:674.744980px;}
.y103{bottom:675.285004px;}
.y220{bottom:675.464996px;}
.y126{bottom:679.605011px;}
.y4ab{bottom:680.189987px;}
.y1b1{bottom:680.505020px;}
.y241{bottom:680.865005px;}
.y475{bottom:682.169998px;}
.y41b{bottom:682.529984px;}
.y13c{bottom:683.205002px;}
.y331{bottom:683.250000px;}
.y1bc{bottom:683.564987px;}
.y18b{bottom:683.744980px;}
.y267{bottom:684.105011px;}
.y1db{bottom:684.464996px;}
.y2b2{bottom:684.824982px;}
.ya7{bottom:685.365005px;}
.y29a{bottom:687.164978px;}
.y147{bottom:687.705002px;}
.y1d7{bottom:688.425018px;}
.y2ec{bottom:689.685013px;}
.y98{bottom:689.865005px;}
.y4b{bottom:690.224991px;}
.y2f0{bottom:690.630020px;}
.y2d9{bottom:691.845016px;}
.y653{bottom:692.250000px;}
.y16e{bottom:694.365005px;}
.y382{bottom:696.929993px;}
.y4bc{bottom:697.289978px;}
.y27{bottom:697.605011px;}
.yeb{bottom:698.144989px;}
.yc5{bottom:698.685013px;}
.y13b{bottom:699.224991px;}
.y74{bottom:699.945007px;}
.y102{bottom:700.484985px;}
.y479{bottom:704.669998px;}
.y125{bottom:704.804993px;}
.y1b0{bottom:705.884995px;}
.y1a5{bottom:706.785004px;}
.y21f{bottom:708.044998px;}
.y266{bottom:709.304993px;}
.y4a1{bottom:709.890015px;}
.y2b1{bottom:710.025009px;}
.y3b4{bottom:710.609985px;}
.y5ca{bottom:711.150009px;}
.y299{bottom:712.544998px;}
.y97{bottom:716.505020px;}
.y211{bottom:717.044998px;}
.y18a{bottom:717.765015px;}
.ya6{bottom:718.304993px;}
.y16d{bottom:719.564987px;}
.y1bb{bottom:721.544998px;}
.y25{bottom:723.705002px;}
.y4a{bottom:724.244980px;}
.y41a{bottom:724.289978px;}
.y73{bottom:725.324982px;}
.y2c9{bottom:725.685013px;}
.y2ef{bottom:727.529984px;}
.y1af{bottom:731.085022px;}
.y619{bottom:731.130020px;}
.yea{bottom:732.345016px;}
.y265{bottom:734.505020px;}
.y2b0{bottom:735.224991px;}
.y240{bottom:735.945007px;}
.y124{bottom:737.384995px;}
.y101{bottom:737.744980px;}
.y485{bottom:738.330002px;}
.y2d8{bottom:742.244980px;}
.y96{bottom:742.425018px;}
.y662{bottom:744.990005px;}
.y298{bottom:746.564987px;}
.y1a4{bottom:747.824982px;}
.y24{bottom:749.625000px;}
.y585{bottom:750.210022px;}
.y72{bottom:750.525009px;}
.y2c8{bottom:751.064987px;}
.ya5{bottom:751.244980px;}
.y474{bottom:751.289978px;}
.y6fe{bottom:751.470016px;}
.y48e{bottom:752.009995px;}
.y16c{bottom:752.144989px;}
.y311{bottom:752.369980px;}
.y1f8{bottom:753.404984px;}
.y210{bottom:754.845016px;}
.y1ae{bottom:756.285004px;}
.ye9{bottom:757.904984px;}
.y264{bottom:759.884995px;}
.y2af{bottom:760.605011px;}
.y21e{bottom:760.964996px;}
.y23f{bottom:761.324982px;}
.y49{bottom:762.585022px;}
.y100{bottom:762.945007px;}
.y2d7{bottom:767.625000px;}
.y95{bottom:768.524963px;}
.y5c9{bottom:769.109985px;}
.y55f{bottom:769.289978px;}
.y1f7{bottom:769.425018px;}
.y289{bottom:773.925018px;}
.yc4{bottom:775.184967px;}
.y23{bottom:775.725037px;}
.y20f{bottom:776.085022px;}
.y2c7{bottom:776.265015px;}
.y21d{bottom:777.164978px;}
.y4a0{bottom:779.370026px;}
.y1ad{bottom:781.664978px;}
.y48{bottom:783.285004px;}
.y6ef{bottom:783.329956px;}
.ya4{bottom:784.184967px;}
.y297{bottom:784.545044px;}
.y263{bottom:785.085022px;}
.y473{bottom:785.309967px;}
.y4f5{bottom:785.489960px;}
.y2ae{bottom:785.804993px;}
.y23e{bottom:786.524963px;}
.yff{bottom:788.324982px;}
.y2ee{bottom:791.070007px;}
.y2d6{bottom:792.824982px;}
.y94{bottom:794.445007px;}
.y123{bottom:798.225037px;}
.y288{bottom:799.125000px;}
.yc3{bottom:800.565033px;}
.y71{bottom:801.105011px;}
.y20e{bottom:801.285004px;}
.y2c6{bottom:801.464996px;}
.y22{bottom:801.644989px;}
.y1ea{bottom:801.824982px;}
.y130{bottom:803.265015px;}
.y47{bottom:803.984985px;}
.y1ce{bottom:804.885040px;}
.y16b{bottom:805.065033px;}
.y1ac{bottom:806.864960px;}
.y6{bottom:807.585022px;}
.ye8{bottom:808.664978px;}
.y2ad{bottom:811.184967px;}
.y23d{bottom:811.725037px;}
.yfe{bottom:813.524963px;}
.ya3{bottom:817.304993px;}
.y2d5{bottom:818.024963px;}
.y12f{bottom:819.464996px;}
.y92{bottom:820.545044px;}
.y1cd{bottom:821.085022px;}
.y16a{bottom:821.265015px;}
.y2ed{bottom:822.960022px;}
.y262{bottom:823.245026px;}
.y287{bottom:824.504974px;}
.y46{bottom:824.684967px;}
.yc2{bottom:825.945007px;}
.y70{bottom:826.304993px;}
.y20d{bottom:826.484985px;}
.y2c5{bottom:826.844971px;}
.y21{bottom:827.745026px;}
.ye7{bottom:834.225037px;}
.y2ac{bottom:836.385040px;}
.y23c{bottom:837.105011px;}
.yfd{bottom:838.725037px;}
.y261{bottom:839.085022px;}
.y1ab{bottom:839.445007px;}
.y1e9{bottom:839.984985px;}
.y2d4{bottom:843.405029px;}
.y45{bottom:845.385040px;}
.y286{bottom:849.750000px;}
.ya2{bottom:850.289978px;}
.y6f{bottom:851.730011px;}
.y20c{bottom:851.910004px;}
.yc1{bottom:852.629974px;}
.y15c{bottom:852.989960px;}
.y20{bottom:853.890015px;}
.y1e8{bottom:856.230011px;}
.ye6{bottom:859.649963px;}
.y122{bottom:861.629974px;}
.y23b{bottom:862.350037px;}
.yfc{bottom:864.149963px;}
.y2d3{bottom:868.649963px;}
.y91{bottom:871.890015px;}
.y270{bottom:872.250000px;}
.y285{bottom:874.949982px;}
.y6e{bottom:876.929993px;}
.y20b{bottom:877.109985px;}
.y15b{bottom:878.370026px;}
.y1e{bottom:879.809967px;}
.ya1{bottom:883.230011px;}
.ye5{bottom:885.210022px;}
.y121{bottom:887.010040px;}
.y23a{bottom:887.730011px;}
.yc0{bottom:888.269989px;}
.yfb{bottom:889.350037px;}
.y1aa{bottom:890.250000px;}
.y2d2{bottom:894.030029px;}
.y284{bottom:900.329956px;}
.y6d{bottom:902.129974px;}
.y20a{bottom:902.489960px;}
.y15a{bottom:903.570007px;}
.y1b{bottom:905.910004px;}
.ybf{bottom:909.149963px;}
.ye4{bottom:910.589996px;}
.y1a9{bottom:910.949982px;}
.y120{bottom:912.210022px;}
.y239{bottom:912.929993px;}
.yfa{bottom:914.730011px;}
.ya0{bottom:916.170044px;}
.y2d1{bottom:919.230011px;}
.y90{bottom:923.190033px;}
.y283{bottom:925.530029px;}
.y6c{bottom:927.510040px;}
.y209{bottom:927.690033px;}
.y159{bottom:928.769989px;}
.y190{bottom:929.309967px;}
.ye3{bottom:935.969971px;}
.y11f{bottom:937.589996px;}
.y238{bottom:938.129974px;}
.yf9{bottom:939.929993px;}
.ybe{bottom:941.910004px;}
.y2d0{bottom:944.429993px;}
.y1a8{bottom:948.929993px;}
.y8f{bottom:949.109985px;}
.y6b{bottom:952.710022px;}
.y208{bottom:952.890015px;}
.y158{bottom:954.149963px;}
.y282{bottom:958.109985px;}
.y44{bottom:958.829956px;}
.ye2{bottom:961.530029px;}
.y11e{bottom:962.789978px;}
.y237{bottom:963.510040px;}
.yf8{bottom:965.129974px;}
.y2cf{bottom:969.809967px;}
.y185{bottom:969.989960px;}
.ybd{bottom:974.850037px;}
.y8e{bottom:975.210022px;}
.y6a{bottom:977.910004px;}
.y207{bottom:978.269989px;}
.y157{bottom:979.350037px;}
.y9f{bottom:982.050018px;}
.y18{bottom:982.410004px;}
.ye1{bottom:986.910004px;}
.y11d{bottom:987.989960px;}
.y236{bottom:988.710022px;}
.yf7{bottom:990.510040px;}
.y2ce{bottom:995.010040px;}
.y184{bottom:995.370026px;}
.y43{bottom:995.550018px;}
.y8d{bottom:1001.129974px;}
.y69{bottom:1003.289978px;}
.y206{bottom:1003.469971px;}
.y156{bottom:1004.550018px;}
.ybc{bottom:1007.789978px;}
.y253{bottom:1009.949982px;}
.ye0{bottom:1012.469971px;}
.y11c{bottom:1013.370026px;}
.y235{bottom:1014.089996px;}
.y42{bottom:1014.809967px;}
.y9e{bottom:1014.989960px;}
.yf6{bottom:1015.710022px;}
.y2cd{bottom:1020.390015px;}
.y183{bottom:1020.570007px;}
.y252{bottom:1025.969971px;}
.y8c{bottom:1027.230011px;}
.y68{bottom:1028.489960px;}
.y205{bottom:1028.670044px;}
.y155{bottom:1029.929993px;}
.y16{bottom:1033.710022px;}
.y41{bottom:1035.510040px;}
.ydf{bottom:1037.850037px;}
.y11b{bottom:1038.570007px;}
.y234{bottom:1039.289978px;}
.ybb{bottom:1040.730011px;}
.yf5{bottom:1041.089996px;}
.y1a3{bottom:1041.989960px;}
.y2cc{bottom:1045.589996px;}
.y182{bottom:1045.769989px;}
.y9d{bottom:1047.929993px;}
.y40{bottom:1052.429993px;}
.y8b{bottom:1053.329956px;}
.y67{bottom:1053.690033px;}
.y204{bottom:1054.050018px;}
.y154{bottom:1055.129974px;}
.yde{bottom:1063.230011px;}
.y11a{bottom:1063.769989px;}
.yf4{bottom:1066.289978px;}
.y26f{bottom:1069.350037px;}
.y2cb{bottom:1070.789978px;}
.y181{bottom:1071.149963px;}
.y15{bottom:1072.050018px;}
.yba{bottom:1073.670044px;}
.y9c{bottom:1073.850037px;}
.y1a2{bottom:1075.829956px;}
.y233{bottom:1076.190033px;}
.y66{bottom:1079.250000px;}
.y153{bottom:1080.510040px;}
.y203{bottom:1086.629974px;}
.ydd{bottom:1088.789978px;}
.y119{bottom:1089.149963px;}
.yf3{bottom:1091.489960px;}
.y2ca{bottom:1091.670044px;}
.y65{bottom:1100.129974px;}
.y8a{bottom:1105.350037px;}
.y152{bottom:1105.710022px;}
.yb9{bottom:1106.789978px;}
.y14{bottom:1107.329956px;}
.y1a1{bottom:1109.850037px;}
.ydc{bottom:1114.170044px;}
.y118{bottom:1114.350037px;}
.y9b{bottom:1128.570007px;}
.y64{bottom:1134.000000px;}
.y3f{bottom:1134.179993px;}
.y13{bottom:1136.879974px;}
.y1a7{bottom:1139.579956px;}
.y89{bottom:1139.760040px;}
.y202{bottom:1141.199982px;}
.y151{bottom:1143.899963px;}
.y1{bottom:1192.859985px;}
.y12{bottom:1200.299100px;}
.h15{height:2.496094px;}
.h55{height:21.240000px;}
.h30{height:21.420000px;}
.h96{height:23.616000px;}
.h82{height:23.760000px;}
.hb{height:25.199999px;}
.hf{height:25.235999px;}
.he{height:25.380000px;}
.h14{height:26.819999px;}
.h33{height:27.360000px;}
.h34{height:27.396000px;}
.h41{height:27.540000px;}
.h13{height:29.880000px;}
.h12{height:32.040000px;}
.h6f{height:33.660000px;}
.h2c{height:33.697266px;}
.h4c{height:33.754219px;}
.h5a{height:37.079999px;}
.h81{height:37.800000px;}
.h69{height:37.836000px;}
.h88{height:37.980000px;}
.h36{height:41.040000px;}
.h37{height:41.076000px;}
.h40{height:41.219999px;}
.h53{height:41.256000px;}
.h8a{height:41.400000px;}
.h27{height:41.809570px;}
.h9{height:42.335156px;}
.h23{height:45.641602px;}
.h72{height:45.695391px;}
.h1f{height:46.669922px;}
.h22{height:46.801758px;}
.h63{height:46.880859px;}
.hc{height:50.580002px;}
.h1b{height:50.615999px;}
.h25{height:51.648047px;}
.h10{height:51.793945px;}
.h4{height:53.573906px;}
.h2b{height:54.719999px;}
.h32{height:54.756002px;}
.h3a{height:54.899998px;}
.h6e{height:54.914062px;}
.h2e{height:54.936000px;}
.h73{height:56.879997px;}
.h6b{height:56.916000px;}
.h76{height:57.060000px;}
.h80{height:57.095999px;}
.h26{height:57.248437px;}
.h19{height:57.410156px;}
.h5{height:58.651172px;}
.h8f{height:59.383125px;}
.h59{height:59.580002px;}
.h20{height:60.855469px;}
.h8b{height:61.956000px;}
.h21{height:62.226562px;}
.h6{height:62.402344px;}
.h11{height:62.507812px;}
.h71{height:65.010937px;}
.h2f{height:68.399998px;}
.h3b{height:68.436000px;}
.h35{height:68.580002px;}
.h5b{height:68.615999px;}
.h7e{height:69.086250px;}
.h16{height:70.664062px;}
.h8{height:73.010742px;}
.h1e{height:73.134141px;}
.h3{height:75.093750px;}
.hd{height:75.780000px;}
.h83{height:75.815998px;}
.h74{height:75.959999px;}
.h77{height:75.996002px;}
.h94{height:79.919998px;}
.h1d{height:80.937773px;}
.h2d{height:82.080002px;}
.h49{height:82.115999px;}
.h4f{height:82.260000px;}
.h47{height:82.295998px;}
.h70{height:82.582031px;}
.h2a{height:82.995117px;}
.h1a{height:83.135391px;}
.h44{height:86.399998px;}
.ha{height:93.761719px;}
.h18{height:93.983203px;}
.h7d{height:94.860003px;}
.h86{height:94.896000px;}
.h3f{height:95.760000px;}
.h43{height:95.795998px;}
.h4e{height:95.939999px;}
.h39{height:95.976002px;}
.h38{height:98.855999px;}
.h17{height:99.874688px;}
.h8c{height:103.500000px;}
.h7{height:104.211914px;}
.h24{height:104.388047px;}
.h46{height:109.439999px;}
.h48{height:109.476002px;}
.h4a{height:109.620003px;}
.h3e{height:109.655994px;}
.h8e{height:113.759995px;}
.h75{height:113.795998px;}
.h84{height:113.939999px;}
.h90{height:113.976002px;}
.h57{height:123.120003px;}
.h3d{height:123.155994px;}
.h52{height:123.335999px;}
.h1c{height:125.406562px;}
.h45{height:127.655994px;}
.h6d{height:132.695995px;}
.h7c{height:132.839996px;}
.h87{height:132.875999px;}
.h54{height:136.799995px;}
.h31{height:137.016003px;}
.h51{height:150.480000px;}
.h4d{height:150.509995px;}
.h5d{height:150.689999px;}
.h78{height:151.740005px;}
.h91{height:151.770000px;}
.h93{height:151.919998px;}
.h7b{height:151.950005px;}
.h5c{height:156.270000px;}
.h61{height:157.529995px;}
.h58{height:164.189999px;}
.h60{height:164.370003px;}
.h5f{height:168.870003px;}
.h67{height:170.669998px;}
.h98{height:170.819996px;}
.h79{height:170.850002px;}
.h62{height:171.930004px;}
.h56{height:177.870003px;}
.h4b{height:178.049995px;}
.h8d{height:186.330002px;}
.h89{height:189.750000px;}
.h50{height:191.730000px;}
.h3c{height:205.230011px;}
.h68{height:208.469994px;}
.h95{height:208.830002px;}
.h64{height:227.370003px;}
.h65{height:227.549995px;}
.h97{height:227.594994px;}
.h85{height:227.730011px;}
.h5e{height:234.030006px;}
.h92{height:265.575005px;}
.h6c{height:284.250000px;}
.h42{height:301.214996px;}
.h66{height:303.195007px;}
.h7f{height:303.554993px;}
.h7a{height:322.455002px;}
.h6a{height:492.914978px;}
.h28{height:892.980000px;}
.h29{height:893.250000px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:27.756000px;}
.w2f{width:35.819999px;}
.w13{width:36.180000px;}
.w16{width:41.040000px;}
.w19{width:41.760000px;}
.w2e{width:41.939999px;}
.w36{width:43.020000px;}
.w14{width:45.000000px;}
.w12{width:50.436000px;}
.w5{width:52.055998px;}
.w2c{width:52.199999px;}
.w1a{width:52.379997px;}
.w32{width:52.416000px;}
.w1d{width:52.595999px;}
.w2a{width:56.736002px;}
.w30{width:60.120003px;}
.w18{width:62.100002px;}
.w1c{width:63.000000px;}
.w34{width:70.560000px;}
.w22{width:73.080002px;}
.w1e{width:73.620003px;}
.w21{width:77.760000px;}
.w2b{width:79.379997px;}
.w1f{width:81.540000px;}
.w31{width:82.260000px;}
.w26{width:84.095999px;}
.w1b{width:84.456000px;}
.w33{width:94.679998px;}
.w23{width:95.256002px;}
.w20{width:101.916000px;}
.w2d{width:105.660004px;}
.w3c{width:108.215996px;}
.w37{width:110.556004px;}
.w15{width:114.299995px;}
.w27{width:115.919998px;}
.w6{width:116.100002px;}
.w3d{width:125.100002px;}
.w39{width:130.715996px;}
.w28{width:137.160004px;}
.w24{width:156.779995px;}
.w38{width:163.439999px;}
.w7{width:178.589996px;}
.w3b{width:184.680004px;}
.w3a{width:200.549995px;}
.wc{width:216.434990px;}
.w29{width:219.450005px;}
.wb{width:231.690010px;}
.w9{width:231.735008px;}
.w3{width:253.875000px;}
.wd{width:360.434990px;}
.we{width:360.615005px;}
.w8{width:393.914978px;}
.wa{width:395.894978px;}
.w4{width:479.595016px;}
.w25{width:559.695007px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w35{width:1028.670044px;}
.w11{width:1262.879974px;}
.wf{width:1262.880000px;}
.w10{width:1263.000000px;}
.x0{left:0.000000px;}
.x39{left:2.879997px;}
.x69{left:6.299995px;}
.x5{left:8.136000px;}
.x49{left:10.080048px;}
.x71{left:12.779984px;}
.x72{left:16.380020px;}
.x6a{left:17.639992px;}
.x68{left:19.260017px;}
.x63{left:23.580002px;}
.x6c{left:26.279984px;}
.x6e{left:30.240005px;}
.x67{left:31.320030px;}
.x75{left:32.579956px;}
.x66{left:34.785027px;}
.x76{left:39.419952px;}
.x6d{left:54.179993px;}
.x6f{left:76.500000px;}
.x1{left:84.959986px;}
.x10{left:101.555990px;}
.x37{left:106.199986px;}
.x4a{left:107.459999px;}
.x11{left:111.995989px;}
.x19{left:115.595991px;}
.x7{left:138.636005px;}
.x1a{left:142.595991px;}
.x3a{left:158.430004px;}
.x2{left:161.489992px;}
.x53{left:164.730000px;}
.x32{left:165.989992px;}
.x38{left:182.729981px;}
.x33{left:192.989992px;}
.x3b{left:195.330002px;}
.xe{left:200.189997px;}
.x4b{left:210.269989px;}
.x64{left:218.549995px;}
.x3c{left:241.049995px;}
.x54{left:244.830002px;}
.x8{left:255.629997px;}
.xa{left:264.629997px;}
.x4c{left:288.929993px;}
.x55{left:297.929993px;}
.x61{left:307.649998px;}
.x27{left:319.214983px;}
.x18{left:325.514978px;}
.x23{left:337.034990px;}
.x6{left:340.455002px;}
.x3d{left:356.070007px;}
.x4d{left:363.089996px;}
.x65{left:382.889992px;}
.x3e{left:397.830002px;}
.x56{left:404.310013px;}
.x21{left:427.214983px;}
.x2e{left:429.734972px;}
.x9{left:435.134995px;}
.x22{left:442.694994px;}
.xc{left:444.134995px;}
.x1e{left:445.574968px;}
.xf{left:447.015015px;}
.x57{left:457.634995px;}
.x4e{left:459.435013px;}
.x2b{left:464.654970px;}
.x3f{left:489.314987px;}
.xb{left:497.085022px;}
.x58{left:500.294998px;}
.x6b{left:514.515015px;}
.x2c{left:516.704989px;}
.x1f{left:532.544985px;}
.x20{left:535.964983px;}
.x59{left:537.015015px;}
.x1b{left:546.765001px;}
.x40{left:574.275009px;}
.x30{left:585.824968px;}
.x5a{left:597.855011px;}
.x1d{left:612.464983px;}
.x4f{left:617.115005px;}
.x24{left:619.304979px;}
.x34{left:623.624987px;}
.x41{left:627.375000px;}
.x35{left:645.944994px;}
.x29{left:652.244967px;}
.x2a{left:653.864992px;}
.x36{left:668.624987px;}
.x12{left:671.324968px;}
.x4{left:675.356415px;}
.xd{left:676.544998px;}
.x5b{left:680.835022px;}
.x13{left:693.464983px;}
.x26{left:694.724978px;}
.x50{left:702.285004px;}
.x42{left:712.544998px;}
.x70{left:715.964996px;}
.x2d{left:734.189974px;}
.x1c{left:736.529970px;}
.x15{left:747.329989px;}
.x31{left:753.269976px;}
.x28{left:757.229998px;}
.x43{left:765.644989px;}
.x2f{left:768.210009px;}
.x14{left:780.809954px;}
.x16{left:788.729998px;}
.x5c{left:797.864960px;}
.x25{left:800.249987px;}
.x3{left:807.449968px;}
.x51{left:819.285004px;}
.x17{left:828.870012px;}
.x5d{left:850.964996px;}
.x44{left:872.024963px;}
.x73{left:901.545044px;}
.x45{left:914.504974px;}
.x5e{left:946.545044px;}
.x52{left:957.344971px;}
.x46{left:967.605011px;}
.x74{left:1010.670044px;}
.x47{left:1020.929993px;}
.x5f{left:1031.730011px;}
.x48{left:1095.269989px;}
.x60{left:1106.250000px;}
.x62{left:1136.670044px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120117pt;}
.ls6e{letter-spacing:-0.640000pt;}
.ls75{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls79{letter-spacing:-0.368533pt;}
.ls3b{letter-spacing:-0.293333pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls52{letter-spacing:-0.284267pt;}
.ls3f{letter-spacing:-0.282667pt;}
.ls5f{letter-spacing:-0.272000pt;}
.ls78{letter-spacing:-0.271467pt;}
.ls57{letter-spacing:-0.261333pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6a{letter-spacing:-0.240000pt;}
.ls5d{letter-spacing:-0.235733pt;}
.ls72{letter-spacing:-0.233067pt;}
.ls51{letter-spacing:-0.224000pt;}
.ls66{letter-spacing:-0.208000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.188267pt;}
.ls48{letter-spacing:-0.156267pt;}
.ls50{letter-spacing:-0.148267pt;}
.ls6d{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.120533pt;}
.ls4d{letter-spacing:-0.118933pt;}
.ls18{letter-spacing:-0.114133pt;}
.ls3a{letter-spacing:-0.102400pt;}
.ls74{letter-spacing:-0.097067pt;}
.ls45{letter-spacing:-0.086933pt;}
.ls46{letter-spacing:-0.079467pt;}
.ls64{letter-spacing:-0.064000pt;}
.ls60{letter-spacing:-0.048000pt;}
.ls53{letter-spacing:-0.039680pt;}
.ls61{letter-spacing:-0.032000pt;}
.ls2a{letter-spacing:-0.026240pt;}
.ls40{letter-spacing:-0.025600pt;}
.ls47{letter-spacing:-0.023040pt;}
.ls3e{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000002pt;}
.lsb{letter-spacing:0.000005pt;}
.ls20{letter-spacing:0.000010pt;}
.lsc{letter-spacing:0.000046pt;}
.ls5{letter-spacing:0.000104pt;}
.ls1e{letter-spacing:0.000195pt;}
.ls62{letter-spacing:0.016000pt;}
.ls63{letter-spacing:0.032000pt;}
.ls67{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.060267pt;}
.ls27{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.069120pt;}
.ls71{letter-spacing:0.097067pt;}
.ls55{letter-spacing:0.102400pt;}
.ls38{letter-spacing:0.105067pt;}
.ls58{letter-spacing:0.105181pt;}
.ls69{letter-spacing:0.112000pt;}
.ls39{letter-spacing:0.114133pt;}
.ls43{letter-spacing:0.122667pt;}
.ls4c{letter-spacing:0.124267pt;}
.ls2{letter-spacing:0.127922pt;}
.ls31{letter-spacing:0.128000pt;}
.ls7a{letter-spacing:0.128247pt;}
.ls6c{letter-spacing:0.135467pt;}
.ls2c{letter-spacing:0.140795pt;}
.ls36{letter-spacing:0.144533pt;}
.ls2e{letter-spacing:0.149779pt;}
.ls44{letter-spacing:0.157333pt;}
.ls33{letter-spacing:0.160039pt;}
.ls73{letter-spacing:0.173867pt;}
.ls25{letter-spacing:0.176011pt;}
.ls4f{letter-spacing:0.176533pt;}
.ls54{letter-spacing:0.178133pt;}
.ls7{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.208533pt;}
.ls4e{letter-spacing:0.210133pt;}
.ls6b{letter-spacing:0.224000pt;}
.ls70{letter-spacing:0.232967pt;}
.ls76{letter-spacing:0.233067pt;}
.ls35{letter-spacing:0.234685pt;}
.ls59{letter-spacing:0.245867pt;}
.ls0{letter-spacing:0.255966pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.256007pt;}
.ls2d{letter-spacing:0.265593pt;}
.ls6f{letter-spacing:0.271467pt;}
.ls5b{letter-spacing:0.278933pt;}
.ls3c{letter-spacing:0.301867pt;}
.ls65{letter-spacing:0.304000pt;}
.ls29{letter-spacing:0.307843pt;}
.ls68{letter-spacing:0.319974pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.346667pt;}
.ls4a{letter-spacing:0.409431pt;}
.ls49{letter-spacing:0.409756pt;}
.ls5e{letter-spacing:0.426745pt;}
.ls15{letter-spacing:0.447985pt;}
.lsa{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.448104pt;}
.ls41{letter-spacing:0.451733pt;}
.ls77{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.664252pt;}
.ls13{letter-spacing:1.087997pt;}
.ls12{letter-spacing:1.088000pt;}
.lsf{letter-spacing:1.728052pt;}
.ls17{letter-spacing:2.368026pt;}
.ls14{letter-spacing:3.008000pt;}
.ls16{letter-spacing:3.647974pt;}
.ls11{letter-spacing:4.288273pt;}
.ls1d{letter-spacing:6.848007pt;}
.ls1b{letter-spacing:8.127954pt;}
.ls23{letter-spacing:13.888046pt;}
.ls32{letter-spacing:16.367357pt;}
.ls2f{letter-spacing:19.008000pt;}
.ls28{letter-spacing:30.208000pt;}
.ls1a{letter-spacing:39.808016pt;}
.ls30{letter-spacing:49.232640pt;}
.ls10{letter-spacing:52.047360pt;}
.ls21{letter-spacing:56.447990pt;}
.lse{letter-spacing:73.327358pt;}
.ls19{letter-spacing:76.367388pt;}
.ls5a{letter-spacing:752.106689pt;}
.ls1c{letter-spacing:752.159831pt;}
.ls6{letter-spacing:752.266683pt;}
.ws8{word-spacing:-64.000000pt;}
.ws0{word-spacing:-37.376000pt;}
.ws38{word-spacing:-28.032000pt;}
.ws2{word-spacing:-21.696640pt;}
.wsb{word-spacing:-21.582507pt;}
.ws40{word-spacing:-18.167040pt;}
.ws1{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.279360pt;}
.ws4e{word-spacing:-16.640000pt;}
.ws48{word-spacing:-16.542507pt;}
.ws47{word-spacing:-16.368640pt;}
.ws49{word-spacing:-16.271573pt;}
.ws4c{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws4d{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.200640pt;}
.wsf{word-spacing:-15.174400pt;}
.ws45{word-spacing:-14.991467pt;}
.ws4b{word-spacing:-14.953067pt;}
.ws42{word-spacing:-14.855467pt;}
.ws46{word-spacing:-14.817067pt;}
.ws41{word-spacing:-14.720000pt;}
.ws51{word-spacing:-14.622933pt;}
.ws43{word-spacing:-14.584533pt;}
.ws4f{word-spacing:-14.448533pt;}
.ws50{word-spacing:-14.351467pt;}
.ws4a{word-spacing:-14.176000pt;}
.ws44{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.312000pt;}
.ws11{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.248000pt;}
.ws5{word-spacing:-13.184000pt;}
.ws4{word-spacing:-12.992000pt;}
.wsa{word-spacing:-12.864000pt;}
.ws12{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.736000pt;}
.ws35{word-spacing:-10.064000pt;}
.ws37{word-spacing:-10.048000pt;}
.ws32{word-spacing:-9.936000pt;}
.ws3b{word-spacing:-9.856000pt;}
.ws3f{word-spacing:-9.808000pt;}
.ws3a{word-spacing:-9.792000pt;}
.ws36{word-spacing:-9.776000pt;}
.ws3e{word-spacing:-9.760000pt;}
.ws31{word-spacing:-9.744000pt;}
.ws34{word-spacing:-9.712000pt;}
.ws33{word-spacing:-9.696000pt;}
.ws39{word-spacing:-9.536000pt;}
.ws3d{word-spacing:-9.504000pt;}
.ws3c{word-spacing:-9.488000pt;}
.ws1f{word-spacing:-7.467413pt;}
.ws7{word-spacing:-7.414827pt;}
.ws18{word-spacing:-7.317547pt;}
.ws2f{word-spacing:-7.294613pt;}
.ws29{word-spacing:-7.225813pt;}
.ws27{word-spacing:-7.224213pt;}
.ws2a{word-spacing:-7.192213pt;}
.ws22{word-spacing:-7.173013pt;}
.ws16{word-spacing:-7.160213pt;}
.ws2e{word-spacing:-7.139947pt;}
.ws21{word-spacing:-7.138347pt;}
.ws1a{word-spacing:-7.120747pt;}
.ws19{word-spacing:-7.084800pt;}
.ws20{word-spacing:-7.075947pt;}
.ws14{word-spacing:-7.015680pt;}
.ws1c{word-spacing:-7.000320pt;}
.ws25{word-spacing:-6.992640pt;}
.ws1e{word-spacing:-6.990080pt;}
.ws2d{word-spacing:-6.976000pt;}
.ws24{word-spacing:-6.936213pt;}
.ws23{word-spacing:-6.928747pt;}
.ws15{word-spacing:-6.913280pt;}
.ws28{word-spacing:-6.896747pt;}
.ws2b{word-spacing:-6.867413pt;}
.ws26{word-spacing:-6.859413pt;}
.ws1b{word-spacing:-6.827413pt;}
.ws2c{word-spacing:-6.791680pt;}
.ws30{word-spacing:-6.779947pt;}
.ws1d{word-spacing:-6.733013pt;}
.ws17{word-spacing:-6.722347pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-10.918016pt;}
._22{margin-left:-9.237314pt;}
._1e{margin-left:-7.730761pt;}
._21{margin-left:-5.792028pt;}
._1f{margin-left:-4.415997pt;}
._b{margin-left:-3.072000pt;}
._7{margin-left:-1.957760pt;}
._0{margin-left:-1.013273pt;}
._2{width:0.956160pt;}
._1{width:1.887937pt;}
._6{width:3.287180pt;}
._14{width:4.417204pt;}
._8{width:5.438796pt;}
._10{width:6.593204pt;}
._f{width:8.064000pt;}
._e{width:9.088000pt;}
._13{width:10.127360pt;}
._50{width:11.072000pt;}
._1b{width:11.968000pt;}
._74{width:13.054720pt;}
._c{width:14.144000pt;}
._9{width:15.168000pt;}
._51{width:16.128000pt;}
._19{width:17.024000pt;}
._1a{width:18.368000pt;}
._18{width:20.032000pt;}
._3{width:21.696000pt;}
._15{width:22.847987pt;}
._16{width:23.879760pt;}
._17{width:24.845520pt;}
._12{width:26.047972pt;}
._11{width:26.944009pt;}
._a4{width:27.833591pt;}
._57{width:28.733440pt;}
._58{width:29.687833pt;}
._4e{width:30.912000pt;}
._4f{width:31.872000pt;}
._d{width:32.960000pt;}
._a{width:34.176000pt;}
._56{width:35.072000pt;}
._65{width:36.206080pt;}
._64{width:37.134096pt;}
._5e{width:38.655984pt;}
._5f{width:39.939921pt;}
._4c{width:40.896000pt;}
._4d{width:41.856000pt;}
._7d{width:43.200000pt;}
._5b{width:44.352000pt;}
._5c{width:45.263360pt;}
._63{width:46.895396pt;}
._5d{width:48.575984pt;}
._82{width:49.712656pt;}
._91{width:50.799344pt;}
._73{width:52.254720pt;}
._59{width:53.952000pt;}
._5a{width:54.976000pt;}
._68{width:56.709127pt;}
._89{width:58.406400pt;}
._7e{width:59.477760pt;}
._7c{width:61.205760pt;}
._75{width:62.311680pt;}
._66{width:63.486720pt;}
._8f{width:64.592640pt;}
._a5{width:66.320640pt;}
._60{width:67.392000pt;}
._a6{width:68.394240pt;}
._71{width:69.431040pt;}
._ae{width:70.357353pt;}
._a3{width:71.297280pt;}
._8b{width:72.748800pt;}
._6a{width:73.647360pt;}
._ba{width:75.008640pt;}
._6d{width:75.997440pt;}
._6e{width:77.103360pt;}
._6c{width:79.038720pt;}
._9d{width:80.801280pt;}
._1c{width:82.560000pt;}
._1d{width:83.584000pt;}
._8d{width:84.706560pt;}
._94{width:86.296320pt;}
._79{width:87.298560pt;}
._62{width:88.268839pt;}
._7f{width:89.303040pt;}
._72{width:91.307520pt;}
._b3{width:92.689920pt;}
._7b{width:94.279680pt;}
._70{width:96.076800pt;}
._af{width:98.807040pt;}
._6b{width:99.705600pt;}
._b9{width:101.040000pt;}
._88{width:102.055680pt;}
._77{width:102.988800pt;}
._61{width:105.062400pt;}
._98{width:106.202880pt;}
._9b{width:107.170560pt;}
._83{width:108.760320pt;}
._95{width:109.658880pt;}
._b1{width:110.557440pt;}
._78{width:112.078080pt;}
._8e{width:113.944320pt;}
._92{width:116.432640pt;}
._76{width:117.331200pt;}
._97{width:119.024640pt;}
._90{width:120.718080pt;}
._96{width:122.169600pt;}
._b8{width:123.120000pt;}
._6f{width:124.727040pt;}
._9e{width:126.402573pt;}
._b5{width:127.770668pt;}
._99{width:132.157440pt;}
._a8{width:133.194240pt;}
._86{width:135.371520pt;}
._85{width:136.581120pt;}
._8c{width:138.136320pt;}
._b6{width:139.536000pt;}
._ab{width:140.953717pt;}
._84{width:141.937920pt;}
._a1{width:143.907840pt;}
._b4{width:145.920000pt;}
._67{width:147.225600pt;}
._a7{width:150.716160pt;}
._69{width:153.550080pt;}
._93{width:154.968359pt;}
._9f{width:156.142080pt;}
._4{width:157.068811pt;}
._8a{width:159.701760pt;}
._9a{width:163.226880pt;}
._80{width:164.125440pt;}
._81{width:167.201280pt;}
._a0{width:168.652800pt;}
._b0{width:171.797760pt;}
._b2{width:179.781120pt;}
._5{width:181.344651pt;}
._7a{width:190.183680pt;}
._a2{width:192.084480pt;}
._b7{width:201.504000pt;}
._87{width:218.972160pt;}
._ac{width:231.621120pt;}
._aa{width:238.913280pt;}
._9c{width:254.292480pt;}
._a9{width:255.951360pt;}
._ad{width:293.068800pt;}
._2a{width:386.766593pt;}
._33{width:409.410920pt;}
._34{width:423.231080pt;}
._32{width:678.030593pt;}
._48{width:679.822593pt;}
._4b{width:1043.854593pt;}
._3e{width:1091.982593pt;}
._55{width:1111.802712pt;}
._2b{width:1125.397480pt;}
._53{width:1188.554875pt;}
._54{width:1207.802549pt;}
._4a{width:1233.166593pt;}
._30{width:1248.654593pt;}
._31{width:1253.138433pt;}
._47{width:1351.495706pt;}
._3a{width:1386.306920pt;}
._3d{width:1419.278593pt;}
._3c{width:1425.755303pt;}
._24{width:1455.385320pt;}
._2f{width:1461.333480pt;}
._3f{width:1496.085480pt;}
._2d{width:1504.853480pt;}
._42{width:1523.982593pt;}
._23{width:1542.606593pt;}
._3b{width:1558.235303pt;}
._36{width:1567.701480pt;}
._29{width:1582.866433pt;}
._27{width:1594.894593pt;}
._38{width:1599.061480pt;}
._39{width:1627.605480pt;}
._35{width:1648.725480pt;}
._45{width:1650.958593pt;}
._41{width:1660.757480pt;}
._26{width:1668.110593pt;}
._52{width:1686.474553pt;}
._25{width:1723.538433pt;}
._2c{width:1742.421480pt;}
._37{width:1775.637480pt;}
._2e{width:1875.605480pt;}
._49{width:1921.813480pt;}
._43{width:1932.110593pt;}
._44{width:1934.165480pt;}
._40{width:1944.910593pt;}
._46{width:1976.725480pt;}
._28{width:2486.741480pt;}
.fs7{font-size:2.560000pt;}
.fsc{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:38.400000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5b8{bottom:2.720011pt;}
.y60d{bottom:3.039998pt;}
.y67e{bottom:3.040002pt;}
.y5b0{bottom:3.199992pt;}
.y617{bottom:3.200002pt;}
.y5ba{bottom:3.200012pt;}
.y5b9{bottom:3.200033pt;}
.y63e{bottom:3.239990pt;}
.y5cb{bottom:3.359985pt;}
.y5dc{bottom:3.359996pt;}
.y5c6{bottom:3.360001pt;}
.y5d9{bottom:3.360006pt;}
.y5d0{bottom:3.360026pt;}
.y613{bottom:3.400004pt;}
.y665{bottom:3.519979pt;}
.y661{bottom:3.520004pt;}
.y669{bottom:3.520020pt;}
.y330{bottom:3.999995pt;}
.y2f8{bottom:4.000000pt;}
.y48d{bottom:4.000005pt;}
.y417{bottom:4.039998pt;}
.y464{bottom:4.040019pt;}
.y3c2{bottom:4.159993pt;}
.y469{bottom:4.160004pt;}
.y33a{bottom:4.160034pt;}
.y5af{bottom:5.440023pt;}
.y539{bottom:5.599976pt;}
.y50b{bottom:5.599996pt;}
.y55b{bottom:5.600006pt;}
.y560{bottom:5.600016pt;}
.y588{bottom:5.759969pt;}
.y59d{bottom:5.759989pt;}
.y521{bottom:5.760000pt;}
.y5aa{bottom:5.760010pt;}
.y32c{bottom:6.760009pt;}
.y17{bottom:7.359945pt;}
.y26{bottom:7.359985pt;}
.y37{bottom:7.360006pt;}
.y1a{bottom:7.360026pt;}
.y28{bottom:7.519979pt;}
.y3c{bottom:7.519999pt;}
.y1f{bottom:7.520020pt;}
.y3a{bottom:8.799988pt;}
.y4bb{bottom:9.120000pt;}
.y42a{bottom:10.720011pt;}
.y307{bottom:10.880005pt;}
.y35{bottom:11.520020pt;}
.y33{bottom:13.440023pt;}
.y548{bottom:14.079997pt;}
.y584{bottom:14.080007pt;}
.y5a6{bottom:14.080008pt;}
.y47a{bottom:14.399984pt;}
.y345{bottom:16.154663pt;}
.y461{bottom:16.159973pt;}
.y2f7{bottom:16.159993pt;}
.y32f{bottom:16.159999pt;}
.y428{bottom:16.160003pt;}
.y310{bottom:16.160004pt;}
.y3e6{bottom:16.160005pt;}
.y322{bottom:16.160014pt;}
.y312{bottom:16.160034pt;}
.y412{bottom:16.186646pt;}
.y38a{bottom:16.186686pt;}
.y317{bottom:16.199992pt;}
.y3da{bottom:16.200001pt;}
.y458{bottom:16.200012pt;}
.y3fd{bottom:16.200033pt;}
.y3a5{bottom:16.319987pt;}
.y447{bottom:16.319997pt;}
.y40e{bottom:16.320007pt;}
.y31d{bottom:16.320028pt;}
.y301{bottom:16.346680pt;}
.y416{bottom:16.360006pt;}
.y478{bottom:18.399984pt;}
.y5b7{bottom:18.906698pt;}
.y32b{bottom:18.920003pt;}
.y612{bottom:19.840007pt;}
.y646{bottom:19.880005pt;}
.y5c0{bottom:19.994659pt;}
.y651{bottom:19.999980pt;}
.y397{bottom:20.000000pt;}
.y67d{bottom:20.000005pt;}
.y6d5{bottom:20.026652pt;}
.y6c3{bottom:20.026693pt;}
.y635{bottom:20.039998pt;}
.y65f{bottom:20.154663pt;}
.y5bd{bottom:20.159993pt;}
.y5c7{bottom:20.159999pt;}
.y699{bottom:20.160003pt;}
.y630{bottom:20.160004pt;}
.y5f6{bottom:20.160014pt;}
.y61d{bottom:20.160034pt;}
.y673{bottom:20.186646pt;}
.y6a0{bottom:20.199992pt;}
.y6ee{bottom:20.200002pt;}
.y614{bottom:20.200012pt;}
.y4ba{bottom:21.279994pt;}
.y664{bottom:21.919963pt;}
.y660{bottom:21.919998pt;}
.y668{bottom:21.920003pt;}
.y538{bottom:22.399984pt;}
.y50a{bottom:22.400004pt;}
.y587{bottom:22.559977pt;}
.y520{bottom:22.559998pt;}
.y580{bottom:22.560008pt;}
.y593{bottom:22.560018pt;}
.y5a4{bottom:22.600007pt;}
.y5{bottom:23.232000pt;}
.y476{bottom:24.480021pt;}
.y344{bottom:28.314667pt;}
.y2f6{bottom:28.319987pt;}
.y4a7{bottom:28.319996pt;}
.y30f{bottom:28.319997pt;}
.y3e5{bottom:28.319998pt;}
.y392{bottom:28.320001pt;}
.y35c{bottom:28.320002pt;}
.y304{bottom:28.320007pt;}
.y2fd{bottom:28.320028pt;}
.y449{bottom:28.346639pt;}
.y321{bottom:28.346659pt;}
.y389{bottom:28.346680pt;}
.y336{bottom:28.359985pt;}
.y3d9{bottom:28.359996pt;}
.y498{bottom:28.359997pt;}
.y3ad{bottom:28.360006pt;}
.y3c4{bottom:28.360026pt;}
.y381{bottom:28.474670pt;}
.y3c1{bottom:28.479980pt;}
.y3a4{bottom:28.480001pt;}
.y31c{bottom:28.480021pt;}
.y300{bottom:28.506673pt;}
.y368{bottom:28.520000pt;}
.y1d{bottom:29.760010pt;}
.y19{bottom:29.920003pt;}
.y93{bottom:29.959961pt;}
.y4ea{bottom:30.394664pt;}
.y477{bottom:30.560018pt;}
.y547{bottom:30.879964pt;}
.y513{bottom:30.880005pt;}
.y583{bottom:31.039998pt;}
.y5a5{bottom:31.080008pt;}
.y32a{bottom:31.080017pt;}
.y396{bottom:32.159993pt;}
.y4b9{bottom:33.439997pt;}
.y5b6{bottom:35.226685pt;}
.y641{bottom:36.794668pt;}
.y636{bottom:36.799967pt;}
.y63a{bottom:36.799988pt;}
.y67c{bottom:36.800002pt;}
.y60c{bottom:36.800008pt;}
.y650{bottom:36.826681pt;}
.y645{bottom:36.840007pt;}
.y5c4{bottom:36.954661pt;}
.y65e{bottom:36.954671pt;}
.y621{bottom:36.959961pt;}
.y6aa{bottom:36.959982pt;}
.y5fe{bottom:36.959991pt;}
.y5bb{bottom:36.960002pt;}
.y65a{bottom:36.960022pt;}
.y672{bottom:36.986654pt;}
.y64d{bottom:36.986675pt;}
.y6c2{bottom:36.986694pt;}
.y68f{bottom:36.999990pt;}
.y5d2{bottom:37.000000pt;}
.y5cc{bottom:37.119995pt;}
.y5c8{bottom:37.120000pt;}
.y6bd{bottom:37.120004pt;}
.y62f{bottom:37.120005pt;}
.y5fa{bottom:37.120015pt;}
.y61c{bottom:37.120036pt;}
.y69f{bottom:37.159993pt;}
.y615{bottom:37.160014pt;}
.y51f{bottom:39.354665pt;}
.y586{bottom:39.359945pt;}
.y537{bottom:39.359985pt;}
.y509{bottom:39.360006pt;}
.y592{bottom:39.360026pt;}
.y5a3{bottom:39.399995pt;}
.y667{bottom:40.319987pt;}
.y663{bottom:40.320028pt;}
.y402{bottom:40.474660pt;}
.y343{bottom:40.474670pt;}
.y3e4{bottom:40.474672pt;}
.y2f5{bottom:40.479980pt;}
.y4d9{bottom:40.479996pt;}
.y303{bottom:40.480000pt;}
.y3e0{bottom:40.480002pt;}
.y35b{bottom:40.480006pt;}
.y2fc{bottom:40.480021pt;}
.y3ba{bottom:40.506653pt;}
.y365{bottom:40.506673pt;}
.y348{bottom:40.519979pt;}
.y3de{bottom:40.519989pt;}
.y497{bottom:40.519990pt;}
.y3ac{bottom:40.519999pt;}
.y3d8{bottom:40.520009pt;}
.y35f{bottom:40.520020pt;}
.y380{bottom:40.634664pt;}
.y3a3{bottom:40.639974pt;}
.y3bd{bottom:40.639993pt;}
.y468{bottom:40.640004pt;}
.y31b{bottom:40.640015pt;}
.y2ff{bottom:40.666667pt;}
.y367{bottom:40.679993pt;}
.y335{bottom:40.680013pt;}
.y4e9{bottom:42.554667pt;}
.y4{bottom:42.751999pt;}
.y329{bottom:43.240011pt;}
.y395{bottom:44.319987pt;}
.y4b8{bottom:45.600001pt;}
.y55e{bottom:47.674672pt;}
.y546{bottom:47.679972pt;}
.y512{bottom:47.679993pt;}
.y528{bottom:47.834666pt;}
.y551{bottom:47.840007pt;}
.y4fd{bottom:48.520020pt;}
.y5b5{bottom:51.386678pt;}
.y1c{bottom:52.319987pt;}
.y390{bottom:52.634664pt;}
.y3e3{bottom:52.634665pt;}
.y36a{bottom:52.634674pt;}
.y314{bottom:52.639974pt;}
.y302{bottom:52.639994pt;}
.y35a{bottom:52.639999pt;}
.y30e{bottom:52.640004pt;}
.y2fb{bottom:52.640015pt;}
.y364{bottom:52.666667pt;}
.y342{bottom:52.674662pt;}
.y4c5{bottom:52.679972pt;}
.y3b3{bottom:52.679993pt;}
.y3e2{bottom:52.680003pt;}
.y3ab{bottom:52.680013pt;}
.y37f{bottom:52.794668pt;}
.y3c0{bottom:52.799967pt;}
.y3eb{bottom:52.799988pt;}
.y44e{bottom:52.799998pt;}
.y31a{bottom:52.800008pt;}
.y3a2{bottom:52.826660pt;}
.y388{bottom:52.826701pt;}
.y4d7{bottom:52.839996pt;}
.y334{bottom:52.840007pt;}
.y640{bottom:53.594666pt;}
.y61a{bottom:53.599976pt;}
.y611{bottom:53.600016pt;}
.y639{bottom:53.626689pt;}
.y644{bottom:53.640015pt;}
.y5fd{bottom:53.754659pt;}
.y67b{bottom:53.754664pt;}
.y684{bottom:53.754669pt;}
.y5ce{bottom:53.759969pt;}
.y63c{bottom:53.759989pt;}
.y5e8{bottom:53.760010pt;}
.y6ce{bottom:53.786641pt;}
.y6c1{bottom:53.786662pt;}
.y64f{bottom:53.786683pt;}
.y5c3{bottom:53.794657pt;}
.y6f9{bottom:53.799967pt;}
.y68e{bottom:53.799998pt;}
.y62d{bottom:53.800008pt;}
.y5e2{bottom:53.914663pt;}
.y6ad{bottom:53.914673pt;}
.y620{bottom:53.919963pt;}
.y5be{bottom:53.919983pt;}
.y5d7{bottom:53.920003pt;}
.y6ea{bottom:53.920024pt;}
.y671{bottom:53.946655pt;}
.y64c{bottom:53.946676pt;}
.y65d{bottom:53.954671pt;}
.y6ed{bottom:53.959991pt;}
.y5d1{bottom:53.960002pt;}
.y4e8{bottom:54.714672pt;}
.y328{bottom:55.400004pt;}
.y55a{bottom:56.154663pt;}
.y51e{bottom:56.154673pt;}
.y536{bottom:56.159993pt;}
.y508{bottom:56.186666pt;}
.y57f{bottom:56.314667pt;}
.y59c{bottom:56.320007pt;}
.y394{bottom:56.479980pt;}
.y39d{bottom:56.519979pt;}
.y4f9{bottom:56.840007pt;}
.y4b7{bottom:57.754664pt;}
.y66f{bottom:58.719971pt;}
.y666{bottom:58.720011pt;}
.y3{bottom:60.672002pt;}
.y525{bottom:64.634664pt;}
.y582{bottom:64.634674pt;}
.y545{bottom:64.639974pt;}
.y5a1{bottom:64.639994pt;}
.y511{bottom:64.666646pt;}
.y550{bottom:64.666667pt;}
.y30d{bottom:64.794667pt;}
.y3fb{bottom:64.794669pt;}
.y359{bottom:64.794673pt;}
.y36c{bottom:64.799967pt;}
.y33e{bottom:64.799988pt;}
.y2fa{bottom:64.800008pt;}
.y4bf{bottom:64.800049pt;}
.y363{bottom:64.826660pt;}
.y421{bottom:64.826681pt;}
.y38f{bottom:64.834666pt;}
.y4c4{bottom:64.839966pt;}
.y3aa{bottom:64.840007pt;}
.y446{bottom:64.954661pt;}
.y467{bottom:64.954671pt;}
.y3b8{bottom:64.960002pt;}
.y3a1{bottom:64.986654pt;}
.y40b{bottom:64.986674pt;}
.y387{bottom:64.986694pt;}
.y37e{bottom:64.994669pt;}
.y333{bottom:65.000000pt;}
.y4d6{bottom:65.000010pt;}
.y4fb{bottom:65.320028pt;}
.y4e7{bottom:66.914663pt;}
.y5b4{bottom:67.546672pt;}
.y327{bottom:67.560018pt;}
.y393{bottom:68.640015pt;}
.y39c{bottom:68.840007pt;}
.y4b6{bottom:69.914668pt;}
.y5fc{bottom:70.554667pt;}
.y67a{bottom:70.554672pt;}
.y6b7{bottom:70.559977pt;}
.y60b{bottom:70.560018pt;}
.y64e{bottom:70.586650pt;}
.y5e1{bottom:70.714661pt;}
.y6ac{bottom:70.714671pt;}
.y5d6{bottom:70.719971pt;}
.y629{bottom:70.719991pt;}
.y5e7{bottom:70.720011pt;}
.y6b9{bottom:70.746643pt;}
.y5f5{bottom:70.746663pt;}
.y64b{bottom:70.746685pt;}
.y5c2{bottom:70.754659pt;}
.y698{bottom:70.754669pt;}
.y6e8{bottom:70.754679pt;}
.y6f8{bottom:70.759969pt;}
.y69e{bottom:70.759989pt;}
.y68d{bottom:70.760000pt;}
.y62c{bottom:70.760010pt;}
.y6a7{bottom:70.879985pt;}
.y68a{bottom:70.880005pt;}
.y535{bottom:72.960002pt;}
.y54b{bottom:72.986654pt;}
.y507{bottom:72.986674pt;}
.y559{bottom:72.994670pt;}
.y51d{bottom:73.114665pt;}
.y577{bottom:73.119994pt;}
.y4f7{bottom:73.800008pt;}
.y2{bottom:76.031998pt;}
.y45a{bottom:76.672002pt;}
.y358{bottom:76.954666pt;}
.y3ed{bottom:76.954671pt;}
.y354{bottom:76.960002pt;}
.y4be{bottom:76.960042pt;}
.y4f3{bottom:76.986654pt;}
.y3f7{bottom:76.986674pt;}
.y3ff{bottom:76.986694pt;}
.y5c5{bottom:76.991999pt;}
.y38e{bottom:76.994659pt;}
.y3cd{bottom:76.994670pt;}
.y3fa{bottom:76.994671pt;}
.y471{bottom:76.994680pt;}
.y3a9{bottom:77.000000pt;}
.y30c{bottom:77.114665pt;}
.y466{bottom:77.114675pt;}
.y3b7{bottom:77.119995pt;}
.y437{bottom:77.120015pt;}
.y3e7{bottom:77.120036pt;}
.y3ca{bottom:77.146647pt;}
.y40a{bottom:77.146667pt;}
.y362{bottom:77.146688pt;}
.y37d{bottom:77.154663pt;}
.y332{bottom:77.159993pt;}
.y4d5{bottom:77.160003pt;}
.y44d{bottom:77.312002pt;}
.y308{bottom:78.112000pt;}
.y4cf{bottom:78.266683pt;}
.y391{bottom:78.751999pt;}
.y4e6{bottom:79.074657pt;}
.y4d8{bottom:79.232000pt;}
.y326{bottom:79.720011pt;}
.y355{bottom:80.031998pt;}
.y39b{bottom:81.000000pt;}
.y43e{bottom:81.312002pt;}
.y544{bottom:81.439982pt;}
.y510{bottom:81.466654pt;}
.y54f{bottom:81.466675pt;}
.y523{bottom:81.474670pt;}
.y581{bottom:81.594666pt;}
.y5a0{bottom:81.599996pt;}
.y4b5{bottom:82.074661pt;}
.y4fa{bottom:82.120036pt;}
.y4b0{bottom:82.432002pt;}
.y5b3{bottom:83.866699pt;}
.y32e{bottom:84.192001pt;}
.y48c{bottom:84.511998pt;}
.y6e1{bottom:84.832000pt;}
.y6d9{bottom:85.151998pt;}
.y484{bottom:85.312002pt;}
.y4aa{bottom:86.592000pt;}
.y679{bottom:87.354669pt;}
.y634{bottom:87.360026pt;}
.y60a{bottom:87.400024pt;}
.y5d5{bottom:87.519979pt;}
.y675{bottom:87.519999pt;}
.y5e6{bottom:87.520020pt;}
.y69b{bottom:87.546651pt;}
.y6de{bottom:87.546672pt;}
.y659{bottom:87.546692pt;}
.y5db{bottom:87.552002pt;}
.y5c1{bottom:87.554667pt;}
.y69a{bottom:87.554677pt;}
.y61f{bottom:87.559977pt;}
.y62b{bottom:87.559998pt;}
.y68c{bottom:87.560008pt;}
.y6a2{bottom:87.560018pt;}
.y5e0{bottom:87.674662pt;}
.y6a6{bottom:87.679972pt;}
.y628{bottom:87.679993pt;}
.y5f9{bottom:87.680013pt;}
.y6b8{bottom:87.706645pt;}
.y5f4{bottom:87.706665pt;}
.y64a{bottom:87.706686pt;}
.y65c{bottom:87.714661pt;}
.y6dd{bottom:87.714671pt;}
.y69d{bottom:87.719991pt;}
.y687{bottom:87.720011pt;}
.y6a3{bottom:88.352000pt;}
.y346{bottom:88.832000pt;}
.y357{bottom:89.114669pt;}
.y39f{bottom:89.119995pt;}
.y353{bottom:89.120015pt;}
.y4bd{bottom:89.120036pt;}
.y3f6{bottom:89.146667pt;}
.y62e{bottom:89.151998pt;}
.y470{bottom:89.154673pt;}
.y453{bottom:89.159993pt;}
.y3a8{bottom:89.160014pt;}
.y30b{bottom:89.274667pt;}
.y445{bottom:89.274668pt;}
.y3b6{bottom:89.280029pt;}
.y409{bottom:89.306661pt;}
.y361{bottom:89.306681pt;}
.y37c{bottom:89.314677pt;}
.y383{bottom:89.319987pt;}
.y4d4{bottom:89.319997pt;}
.y43a{bottom:89.320028pt;}
.y465{bottom:89.471995pt;}
.y556{bottom:89.794678pt;}
.y534{bottom:89.799967pt;}
.y576{bottom:89.920003pt;}
.y54a{bottom:89.946655pt;}
.y506{bottom:89.946676pt;}
.y6bc{bottom:89.951996pt;}
.y51c{bottom:89.954671pt;}
.y4ce{bottom:90.426676pt;}
.y4f8{bottom:90.600016pt;}
.y5fb{bottom:90.752004pt;}
.y427{bottom:90.911997pt;}
.y4e5{bottom:91.234671pt;}
.y5a7{bottom:91.391998pt;}
.y278{bottom:92.352000pt;}
.y57d{bottom:92.671997pt;}
.y39a{bottom:93.159993pt;}
.y4ec{bottom:93.314667pt;}
.y4b4{bottom:94.274663pt;}
.y66e{bottom:95.519979pt;}
.y435{bottom:96.191996pt;}
.y3ae{bottom:96.671997pt;}
.y499{bottom:97.792002pt;}
.y472{bottom:98.112000pt;}
.y595{bottom:98.239990pt;}
.y4ff{bottom:98.266663pt;}
.y54e{bottom:98.266683pt;}
.y55d{bottom:98.274658pt;}
.y543{bottom:98.279989pt;}
.y596{bottom:98.400004pt;}
.y515{bottom:98.434672pt;}
.y180{bottom:98.592000pt;}
.y4a6{bottom:98.752004pt;}
.y419{bottom:99.072000pt;}
.y4fc{bottom:99.080037pt;}
.y5b2{bottom:100.026693pt;}
.ydb{bottom:100.671997pt;}
.y424{bottom:100.992004pt;}
.y514{bottom:101.151998pt;}
.y3d3{bottom:101.279989pt;}
.y352{bottom:101.280009pt;}
.y43c{bottom:101.280029pt;}
.y3f5{bottom:101.306661pt;}
.y4de{bottom:101.306681pt;}
.y356{bottom:101.314662pt;}
.y452{bottom:101.319987pt;}
.y434{bottom:101.320007pt;}
.y43d{bottom:101.440002pt;}
.y408{bottom:101.466654pt;}
.y3c9{bottom:101.466675pt;}
.y18f{bottom:101.471995pt;}
.y444{bottom:101.474660pt;}
.y30a{bottom:101.474670pt;}
.y4c3{bottom:101.479980pt;}
.y4d3{bottom:101.480011pt;}
.y439{bottom:101.480021pt;}
.y459{bottom:101.792002pt;}
.y150{bottom:102.112000pt;}
.y1d6{bottom:102.272003pt;}
.y3be{bottom:102.431997pt;}
.y4cd{bottom:102.586670pt;}
.y189{bottom:103.072000pt;}
.y169{bottom:103.232005pt;}
.y4e4{bottom:103.394664pt;}
.y369{bottom:103.711995pt;}
.y633{bottom:104.159993pt;}
.y632{bottom:104.319987pt;}
.y3db{bottom:104.352000pt;}
.y678{bottom:104.354660pt;}
.y609{bottom:104.359985pt;}
.y68b{bottom:104.359996pt;}
.y6a8{bottom:104.360006pt;}
.y5e5{bottom:104.360026pt;}
.y5d4{bottom:104.479980pt;}
.y5f8{bottom:104.480001pt;}
.y693{bottom:104.480021pt;}
.y649{bottom:104.506654pt;}
.y5f3{bottom:104.506673pt;}
.y658{bottom:104.506694pt;}
.y63f{bottom:104.512004pt;}
.y6dc{bottom:104.514659pt;}
.y5df{bottom:104.514669pt;}
.y6b2{bottom:104.514679pt;}
.y6b5{bottom:104.519979pt;}
.y6bb{bottom:104.519999pt;}
.y686{bottom:104.520020pt;}
.y6d0{bottom:105.312002pt;}
.y399{bottom:105.319987pt;}
.y4eb{bottom:105.474661pt;}
.y6c4{bottom:106.112000pt;}
.y4b3{bottom:106.434657pt;}
.y117{bottom:106.592000pt;}
.y5a9{bottom:106.719971pt;}
.y575{bottom:106.719991pt;}
.y591{bottom:106.720011pt;}
.y505{bottom:106.746643pt;}
.y554{bottom:106.746663pt;}
.y51b{bottom:106.754659pt;}
.y57e{bottom:106.754679pt;}
.y52d{bottom:106.759969pt;}
.y697{bottom:106.911997pt;}
.y6e7{bottom:107.711995pt;}
.y4df{bottom:108.832000pt;}
.y26e{bottom:109.312002pt;}
.y555{bottom:109.631999pt;}
.yb8{bottom:111.232005pt;}
.y404{bottom:113.439982pt;}
.y351{bottom:113.440002pt;}
.y3d2{bottom:113.440023pt;}
.y4dd{bottom:113.466675pt;}
.y451{bottom:113.479980pt;}
.y433{bottom:113.480001pt;}
.y3c8{bottom:113.626668pt;}
.y3f4{bottom:113.626689pt;}
.y309{bottom:113.634664pt;}
.y443{bottom:113.634674pt;}
.y4c2{bottom:113.639974pt;}
.y4d2{bottom:113.640004pt;}
.y4ef{bottom:113.640015pt;}
.y66d{bottom:113.920003pt;}
.y1a0{bottom:113.951996pt;}
.y281{bottom:114.272003pt;}
.y11{bottom:114.592000pt;}
.y4cc{bottom:114.746663pt;}
.y50f{bottom:115.066671pt;}
.y2c1{bottom:115.072000pt;}
.y55c{bottom:115.074666pt;}
.y542{bottom:115.079997pt;}
.y58a{bottom:115.199992pt;}
.y54d{bottom:115.226644pt;}
.y401{bottom:115.232005pt;}
.y522{bottom:115.234660pt;}
.y4e3{bottom:115.554658pt;}
.y38d{bottom:115.871999pt;}
.y2ab{bottom:116.671997pt;}
.y36f{bottom:117.151998pt;}
.y4e2{bottom:117.634675pt;}
.y618{bottom:117.951996pt;}
.y1f6{bottom:118.272003pt;}
.y4b2{bottom:118.594671pt;}
.y296{bottom:119.552002pt;}
.y4f2{bottom:119.706665pt;}
.y232{bottom:120.352000pt;}
.y17f{bottom:120.992004pt;}
.y677{bottom:121.154668pt;}
.y608{bottom:121.159993pt;}
.y5d3{bottom:121.279989pt;}
.y6fd{bottom:121.280008pt;}
.y692{bottom:121.280029pt;}
.y6e6{bottom:121.306641pt;}
.y657{bottom:121.306661pt;}
.y627{bottom:121.306681pt;}
.y6b1{bottom:121.314667pt;}
.y6c7{bottom:121.314677pt;}
.y695{bottom:121.319987pt;}
.y6ba{bottom:121.320007pt;}
.y5e4{bottom:121.320028pt;}
.y6df{bottom:121.440002pt;}
.y6cb{bottom:121.440023pt;}
.y5f2{bottom:121.466675pt;}
.y5de{bottom:121.474670pt;}
.y65b{bottom:122.112000pt;}
.yda{bottom:123.391998pt;}
.y504{bottom:123.546651pt;}
.y553{bottom:123.546672pt;}
.y558{bottom:123.554667pt;}
.y52c{bottom:123.559977pt;}
.y590{bottom:123.560018pt;}
.y59b{bottom:123.679993pt;}
.y51a{bottom:123.714661pt;}
.y418{bottom:124.032003pt;}
.y1d5{bottom:124.671997pt;}
.y350{bottom:125.599996pt;}
.y3d1{bottom:125.600016pt;}
.y4dc{bottom:125.626668pt;}
.y168{bottom:125.631999pt;}
.y450{bottom:125.639974pt;}
.y432{bottom:125.640015pt;}
.y3c7{bottom:125.786662pt;}
.y3f3{bottom:125.786682pt;}
.y442{bottom:125.794668pt;}
.y37b{bottom:125.794678pt;}
.y4c1{bottom:125.799967pt;}
.y4d1{bottom:125.799998pt;}
.y4ee{bottom:125.800008pt;}
.y341{bottom:126.112000pt;}
.y4cb{bottom:126.906657pt;}
.y5bf{bottom:128.512004pt;}
.y116{bottom:128.992004pt;}
.y146{bottom:129.151998pt;}
.y4e1{bottom:129.794668pt;}
.y1bf{bottom:130.112000pt;}
.y4b1{bottom:130.754664pt;}
.y18e{bottom:131.711995pt;}
.y4f1{bottom:131.866659pt;}
.y1da{bottom:131.871999pt;}
.y59f{bottom:132.000000pt;}
.y54c{bottom:132.026652pt;}
.y50e{bottom:132.026672pt;}
.y524{bottom:132.034668pt;}
.y53a{bottom:132.039998pt;}
.y66c{bottom:132.359985pt;}
.y260{bottom:132.512004pt;}
.y188{bottom:133.312002pt;}
.y32d{bottom:134.266663pt;}
.y483{bottom:134.906667pt;}
.y4a5{bottom:136.186666pt;}
.y2c0{bottom:137.626668pt;}
.y3d7{bottom:137.759989pt;}
.y34f{bottom:137.760010pt;}
.y431{bottom:137.800008pt;}
.y3c6{bottom:137.946655pt;}
.y3f2{bottom:137.946676pt;}
.y441{bottom:137.954661pt;}
.y37a{bottom:137.954671pt;}
.y4ed{bottom:137.960002pt;}
.y691{bottom:138.079997pt;}
.y656{bottom:138.106669pt;}
.y6c6{bottom:138.114665pt;}
.y676{bottom:138.114669pt;}
.y6b0{bottom:138.114675pt;}
.y5f1{bottom:138.119995pt;}
.y6fa{bottom:138.239990pt;}
.y6fc{bottom:138.240011pt;}
.y6ca{bottom:138.240031pt;}
.y6e5{bottom:138.266642pt;}
.y423{bottom:138.266663pt;}
.y626{bottom:138.266683pt;}
.y5dd{bottom:138.274658pt;}
.y6e3{bottom:138.279989pt;}
.y6f2{bottom:138.280029pt;}
.y251{bottom:139.066671pt;}
.y4ca{bottom:139.066691pt;}
.y616{bottom:139.866669pt;}
.y3b2{bottom:140.186666pt;}
.y503{bottom:140.346659pt;}
.y557{bottom:140.354675pt;}
.y52b{bottom:140.359985pt;}
.y59a{bottom:140.479980pt;}
.y56d{bottom:140.506653pt;}
.yb7{bottom:140.506663pt;}
.y552{bottom:140.506673pt;}
.y519{bottom:140.514669pt;}
.y58f{bottom:140.520020pt;}
.y62a{bottom:140.666667pt;}
.y10{bottom:140.826670pt;}
.y4d0{bottom:140.986664pt;}
.y295{bottom:141.946665pt;}
.y4e0{bottom:141.954662pt;}
.y231{bottom:142.746663pt;}
.y145{bottom:143.386667pt;}
.y17e{bottom:143.546672pt;}
.y19f{bottom:144.186666pt;}
.yd9{bottom:145.946665pt;}
.y1d9{bottom:146.106669pt;}
.y1d4{bottom:147.066671pt;}
.y496{bottom:147.386667pt;}
.y167{bottom:148.026662pt;}
.y50d{bottom:148.826681pt;}
.y527{bottom:148.834676pt;}
.y541{bottom:148.839966pt;}
.y594{bottom:148.840007pt;}
.y59e{bottom:148.986654pt;}
.y34e{bottom:149.920003pt;}
.y3d6{bottom:149.946676pt;}
.y430{bottom:149.960002pt;}
.y3c5{bottom:150.106649pt;}
.y3f1{bottom:150.106669pt;}
.y379{bottom:150.114665pt;}
.y440{bottom:150.114675pt;}
.y66b{bottom:150.759969pt;}
.y44c{bottom:151.066671pt;}
.y4c9{bottom:151.226685pt;}
.y115{bottom:151.546672pt;}
.y88{bottom:151.706665pt;}
.y3dd{bottom:152.346670pt;}
.y63{bottom:153.626668pt;}
.y26d{bottom:154.266663pt;}
.y2ea{bottom:154.906667pt;}
.y607{bottom:154.920003pt;}
.y6c9{bottom:155.039998pt;}
.y625{bottom:155.066650pt;}
.y25f{bottom:155.066671pt;}
.y6c5{bottom:155.074666pt;}
.y6af{bottom:155.074677pt;}
.y5f0{bottom:155.079997pt;}
.y6ec{bottom:155.866669pt;}
.y6e0{bottom:156.666667pt;}
.y12e{bottom:156.826670pt;}
.y502{bottom:157.306661pt;}
.y599{bottom:157.306681pt;}
.y518{bottom:157.314677pt;}
.y52a{bottom:157.319987pt;}
.y58e{bottom:157.320028pt;}
.y42f{bottom:157.786662pt;}
.y3a7{bottom:158.266663pt;}
.y5a2{bottom:159.386667pt;}
.y2bf{bottom:160.026662pt;}
.y250{bottom:161.626668pt;}
.y18d{bottom:161.946665pt;}
.y34d{bottom:162.080017pt;}
.y3d5{bottom:162.106669pt;}
.y3f0{bottom:162.266663pt;}
.y43f{bottom:162.274668pt;}
.y378{bottom:162.274679pt;}
.y1f5{bottom:163.226664pt;}
.y4c8{bottom:163.386678pt;}
.y3ec{bottom:163.866669pt;}
.y3e1{bottom:164.506663pt;}
.y230{bottom:165.146667pt;}
.y50c{bottom:165.626648pt;}
.y540{bottom:165.639974pt;}
.y57c{bottom:165.786641pt;}
.y526{bottom:165.794678pt;}
.y17d{bottom:165.946665pt;}
.yf{bottom:167.066671pt;}
.yd8{bottom:168.506663pt;}
.y1d3{bottom:169.626668pt;}
.yb6{bottom:169.786662pt;}
.y166{bottom:170.586670pt;}
.y12d{bottom:171.066671pt;}
.y325{bottom:171.386658pt;}
.y606{bottom:171.720011pt;}
.y683{bottom:171.866659pt;}
.y5ef{bottom:171.880005pt;}
.y624{bottom:172.026652pt;}
.y62{bottom:172.026672pt;}
.y6e2{bottom:172.039998pt;}
.y63d{bottom:172.666667pt;}
.y415{bottom:173.306661pt;}
.y114{bottom:173.946676pt;}
.y501{bottom:174.106669pt;}
.y517{bottom:174.114665pt;}
.y533{bottom:174.119995pt;}
.y87{bottom:174.266663pt;}
.y598{bottom:174.266683pt;}
.y377{bottom:174.434672pt;}
.y69c{bottom:175.066671pt;}
.y463{bottom:175.386658pt;}
.y4c7{bottom:175.546672pt;}
.y294{bottom:175.866659pt;}
.y5f7{bottom:175.906657pt;}
.y26c{bottom:176.666667pt;}
.y400{bottom:176.706665pt;}
.y40d{bottom:177.346659pt;}
.y25e{bottom:177.466675pt;}
.y2be{bottom:182.426676pt;}
.y579{bottom:182.586650pt;}
.y53f{bottom:182.599976pt;}
.y138{bottom:183.866659pt;}
.y48b{bottom:183.906657pt;}
.y24f{bottom:184.026672pt;}
.y482{bottom:184.706665pt;}
.y1f4{bottom:185.626668pt;}
.y4a9{bottom:185.986674pt;}
.y6f5{bottom:186.306661pt;}
.y376{bottom:186.594666pt;}
.y6d8{bottom:187.266663pt;}
.y340{bottom:187.586670pt;}
.y22f{bottom:187.706665pt;}
.y17c{bottom:188.506673pt;}
.y6f7{bottom:188.679972pt;}
.y5ee{bottom:188.680013pt;}
.y623{bottom:188.826660pt;}
.y602{bottom:188.840007pt;}
.y3f9{bottom:188.866659pt;}
.y3cc{bottom:189.506673pt;}
.y293{bottom:189.946676pt;}
.y34c{bottom:190.306661pt;}
.y61{bottom:190.426676pt;}
.y500{bottom:190.906677pt;}
.y532{bottom:190.920003pt;}
.y597{bottom:191.066650pt;}
.y56c{bottom:191.066671pt;}
.y516{bottom:191.074666pt;}
.yd7{bottom:191.226664pt;}
.y6cf{bottom:191.266663pt;}
.y1d2{bottom:192.026672pt;}
.y6fb{bottom:192.866659pt;}
.y165{bottom:192.986674pt;}
.ye{bottom:193.306661pt;}
.y49f{bottom:196.066671pt;}
.y113{bottom:196.506673pt;}
.y86{bottom:196.666667pt;}
.y495{bottom:197.026672pt;}
.y4a4{bottom:198.146667pt;}
.y375{bottom:198.754659pt;}
.yb5{bottom:199.066671pt;}
.y564{bottom:199.386658pt;}
.y53e{bottom:199.399984pt;}
.y25d{bottom:199.866659pt;}
.y44b{bottom:200.386658pt;}
.y306{bottom:200.546672pt;}
.y3ea{bottom:201.026672pt;}
.y38c{bottom:201.826660pt;}
.y19e{bottom:204.506673pt;}
.y2bd{bottom:204.986674pt;}
.y605{bottom:205.480021pt;}
.y26b{bottom:205.626668pt;}
.y5ed{bottom:205.640015pt;}
.y137{bottom:206.266663pt;}
.y2aa{bottom:206.426676pt;}
.y652{bottom:206.466675pt;}
.y24e{bottom:206.586670pt;}
.y6db{bottom:207.266663pt;}
.y531{bottom:207.719971pt;}
.y56b{bottom:207.866679pt;}
.y58d{bottom:207.880005pt;}
.y6ab{bottom:208.066671pt;}
.y1f3{bottom:208.186666pt;}
.y60{bottom:208.826660pt;}
.y696{bottom:208.866659pt;}
.y22e{bottom:210.106669pt;}
.y414{bottom:210.626668pt;}
.y2eb{bottom:210.746663pt;}
.y17b{bottom:210.906657pt;}
.y374{bottom:210.914673pt;}
.y46f{bottom:211.906657pt;}
.yd6{bottom:213.786662pt;}
.y3b1{bottom:213.986674pt;}
.y40c{bottom:214.626668pt;}
.y3d4{bottom:215.266663pt;}
.y164{bottom:215.546672pt;}
.y53d{bottom:216.199992pt;}
.y563{bottom:216.346659pt;}
.y112{bottom:218.906657pt;}
.y85{bottom:219.226664pt;}
.yd{bottom:219.546672pt;}
.y305{bottom:220.226664pt;}
.y1cc{bottom:220.506673pt;}
.y2e9{bottom:222.266663pt;}
.y6b4{bottom:222.439982pt;}
.y5ec{bottom:222.440023pt;}
.y4af{bottom:222.466675pt;}
.y601{bottom:222.600016pt;}
.y373{bottom:223.074666pt;}
.y6eb{bottom:224.226664pt;}
.y56a{bottom:224.666646pt;}
.y530{bottom:224.679972pt;}
.y58c{bottom:224.680013pt;}
.y422{bottom:224.706665pt;}
.y44a{bottom:225.346659pt;}
.y610{bottom:225.826660pt;}
.y3df{bottom:226.146667pt;}
.y3cb{bottom:226.786662pt;}
.y5f{bottom:227.226664pt;}
.y2bc{bottom:227.386658pt;}
.yb4{bottom:228.346659pt;}
.y136{bottom:228.826660pt;}
.y24d{bottom:228.986674pt;}
.y3e{bottom:229.946676pt;}
.y5bc{bottom:230.466675pt;}
.y1f2{bottom:230.586670pt;}
.y1d1{bottom:231.546672pt;}
.y674{bottom:232.706665pt;}
.y53c{bottom:233.000000pt;}
.y562{bottom:233.146667pt;}
.y17a{bottom:233.306661pt;}
.y48a{bottom:233.506673pt;}
.y25c{bottom:233.786662pt;}
.y481{bottom:234.306661pt;}
.y19d{bottom:234.586670pt;}
.y372{bottom:235.234680pt;}
.yd5{bottom:236.506673pt;}
.y33f{bottom:236.866659pt;}
.y3bc{bottom:237.506673pt;}
.y163{bottom:237.946676pt;}
.y3f8{bottom:238.306661pt;}
.y6d7{bottom:238.626668pt;}
.y604{bottom:239.240031pt;}
.y1e7{bottom:239.386658pt;}
.y5eb{bottom:239.400024pt;}
.y5da{bottom:240.226664pt;}
.y63b{bottom:241.026672pt;}
.y111{bottom:241.306661pt;}
.y569{bottom:241.466654pt;}
.y52f{bottom:241.479980pt;}
.y58b{bottom:241.480021pt;}
.y84{bottom:241.626668pt;}
.y622{bottom:242.626668pt;}
.y1cb{bottom:242.906657pt;}
.y6e4{bottom:243.426676pt;}
.y2e8{bottom:244.826660pt;}
.y561{bottom:245.026672pt;}
.yc{bottom:245.626668pt;}
.y494{bottom:246.786662pt;}
.y371{bottom:247.421326pt;}
.y413{bottom:247.746663pt;}
.y25b{bottom:248.026672pt;}
.y22d{bottom:249.786662pt;}
.y578{bottom:249.946676pt;}
.y53b{bottom:249.959961pt;}
.y366{bottom:251.106669pt;}
.y135{bottom:251.266663pt;}
.y2a9{bottom:251.426676pt;}
.y3d{bottom:252.386658pt;}
.y26a{bottom:252.706665pt;}
.y1f1{bottom:253.186666pt;}
.y603{bottom:256.039998pt;}
.y600{bottom:256.199992pt;}
.y5ea{bottom:256.200033pt;}
.y3a6{bottom:256.226664pt;}
.yb3{bottom:257.666667pt;}
.y49e{bottom:257.986674pt;}
.y52e{bottom:258.279948pt;}
.y568{bottom:258.426656pt;}
.y689{bottom:258.626668pt;}
.yd4{bottom:259.106669pt;}
.y6a5{bottom:259.426676pt;}
.y370{bottom:259.581319pt;}
.y324{bottom:259.906657pt;}
.y1e6{bottom:261.826660pt;}
.y33d{bottom:261.986674pt;}
.y3e9{bottom:262.626668pt;}
.y24c{bottom:262.946676pt;}
.y38b{bottom:263.266663pt;}
.y110{bottom:263.906657pt;}
.y5e{bottom:264.066671pt;}
.y1ca{bottom:265.506673pt;}
.y57b{bottom:266.746643pt;}
.y269{bottom:267.106669pt;}
.y39{bottom:268.066671pt;}
.y3b{bottom:268.706665pt;}
.y19c{bottom:269.506673pt;}
.y6f4{bottom:271.426676pt;}
.yb{bottom:271.906657pt;}
.y2bb{bottom:272.386658pt;}
.y5e9{bottom:273.000000pt;}
.y46e{bottom:273.346659pt;}
.y134{bottom:273.666667pt;}
.y2a8{bottom:273.826660pt;}
.y436{bottom:274.786662pt;}
.y567{bottom:275.226664pt;}
.y426{bottom:275.426676pt;}
.y1f0{bottom:275.586670pt;}
.y4c6{bottom:275.906657pt;}
.y6ae{bottom:276.386658pt;}
.y24b{bottom:277.186666pt;}
.y2e7{bottom:277.986674pt;}
.y1d0{bottom:278.786662pt;}
.yd3{bottom:281.666667pt;}
.y5d{bottom:282.466675pt;}
.y489{bottom:283.266663pt;}
.y57a{bottom:283.706645pt;}
.y480{bottom:284.066671pt;}
.y1e5{bottom:284.386658pt;}
.y162{bottom:285.986674pt;}
.y83{bottom:286.626668pt;}
.y3bb{bottom:286.946676pt;}
.yb2{bottom:287.106669pt;}
.y3b0{bottom:287.586670pt;}
.y1c9{bottom:287.906657pt;}
.y3ef{bottom:288.226664pt;}
.y6d6{bottom:289.986674pt;}
.y5d8{bottom:291.586670pt;}
.y19b{bottom:291.906657pt;}
.y566{bottom:292.066671pt;}
.y6e9{bottom:292.386658pt;}
.y38{bottom:292.546672pt;}
.y1cf{bottom:293.026672pt;}
.y4f4{bottom:293.186666pt;}
.y60f{bottom:293.986674pt;}
.y179{bottom:294.306661pt;}
.y2ba{bottom:294.786662pt;}
.y549{bottom:295.586670pt;}
.y133{bottom:296.226664pt;}
.y2a7{bottom:296.386658pt;}
.y10f{bottom:296.706665pt;}
.y323{bottom:297.026672pt;}
.y1ef{bottom:297.986674pt;}
.ya{bottom:298.146667pt;}
.y457{bottom:298.466675pt;}
.y22c{bottom:298.786662pt;}
.y420{bottom:299.106669pt;}
.y3dc{bottom:299.746663pt;}
.y2e6{bottom:300.386658pt;}
.y5c{bottom:300.866659pt;}
.y407{bottom:301.026672pt;}
.y4fe{bottom:304.066671pt;}
.yd2{bottom:304.386658pt;}
.y3a0{bottom:305.506673pt;}
.y1e4{bottom:306.786662pt;}
.y82{bottom:307.906657pt;}
.y565{bottom:309.026672pt;}
.y638{bottom:309.346659pt;}
.y4a8{bottom:309.506673pt;}
.y462{bottom:309.986674pt;}
.y6a9{bottom:310.146667pt;}
.y1c8{bottom:310.306661pt;}
.y6cd{bottom:310.946676pt;}
.y3fe{bottom:311.906657pt;}
.y19a{bottom:314.466675pt;}
.y36{bottom:315.746663pt;}
.yb1{bottom:316.386658pt;}
.y42e{bottom:316.546672pt;}
.y178{bottom:316.706665pt;}
.y2a6{bottom:318.786662pt;}
.y5b{bottom:319.266663pt;}
.y49d{bottom:319.746663pt;}
.y4ae{bottom:320.706665pt;}
.y4a3{bottom:321.666667pt;}
.y2e5{bottom:322.946676pt;}
.y456{bottom:323.426676pt;}
.y3e8{bottom:324.066671pt;}
.y9{bottom:324.386658pt;}
.y360{bottom:324.706665pt;}
.y132{bottom:325.186666pt;}
.y574{bottom:325.826681pt;}
.y648{bottom:326.146667pt;}
.yd1{bottom:326.946676pt;}
.y2b9{bottom:327.746663pt;}
.y1e3{bottom:329.186666pt;}
.y81{bottom:330.146667pt;}
.y201{bottom:331.106669pt;}
.y4f0{bottom:331.746663pt;}
.y1c7{bottom:332.866659pt;}
.y47f{bottom:333.666667pt;}
.y320{bottom:334.306661pt;}
.y670{bottom:334.626668pt;}
.y460{bottom:334.946676pt;}
.y33c{bottom:335.586670pt;}
.y3b9{bottom:336.226664pt;}
.y199{bottom:336.866659pt;}
.y22b{bottom:337.346659pt;}
.y5a{bottom:337.666667pt;}
.y34{bottom:338.786662pt;}
.y25a{bottom:339.746663pt;}
.y2a5{bottom:341.346680pt;}
.y6d4{bottom:341.506673pt;}
.y573{bottom:342.626648pt;}
.y2fe{bottom:343.106649pt;}
.y6c0{bottom:343.906657pt;}
.y2e4{bottom:345.346680pt;}
.yb0{bottom:345.666667pt;}
.y493{bottom:346.146647pt;}
.y411{bottom:346.466675pt;}
.y448{bottom:348.386678pt;}
.y386{bottom:349.026652pt;}
.yd0{bottom:349.666667pt;}
.y5b1{bottom:350.146647pt;}
.y1e2{bottom:351.746663pt;}
.y80{bottom:352.706665pt;}
.y10e{bottom:353.026652pt;}
.y177{bottom:355.266683pt;}
.y59{bottom:356.066650pt;}
.y682{bottom:359.133341pt;}
.y198{bottom:359.266683pt;}
.y572{bottom:359.426656pt;}
.y22a{bottom:359.746663pt;}
.y46d{bottom:359.933350pt;}
.y33b{bottom:360.573324pt;}
.y688{bottom:360.733317pt;}
.y21c{bottom:361.026652pt;}
.y3af{bottom:361.213338pt;}
.y425{bottom:362.013346pt;}
.y259{bottom:362.146647pt;}
.y60e{bottom:362.333333pt;}
.y43b{bottom:362.653320pt;}
.y2a4{bottom:363.746663pt;}
.y8{bottom:364.866659pt;}
.y32{bottom:365.986654pt;}
.y42d{bottom:366.013346pt;}
.y200{bottom:367.746663pt;}
.y1ba{bottom:369.666667pt;}
.y277{bottom:369.826660pt;}
.y4ad{bottom:370.493327pt;}
.y31f{bottom:371.453328pt;}
.ycf{bottom:372.226685pt;}
.y34b{bottom:373.373332pt;}
.y24a{bottom:373.986654pt;}
.y1e1{bottom:374.146647pt;}
.y58{bottom:374.466675pt;}
.y1ee{bottom:374.626668pt;}
.yaf{bottom:374.946655pt;}
.y7f{bottom:375.106649pt;}
.y10d{bottom:375.586670pt;}
.y18c{bottom:376.226685pt;}
.y571{bottom:376.386658pt;}
.y637{bottom:377.533325pt;}
.y176{bottom:377.666667pt;}
.y1c6{bottom:377.826660pt;}
.y39e{bottom:379.293335pt;}
.y2c4{bottom:380.546672pt;}
.y229{bottom:382.306681pt;}
.y47e{bottom:383.293335pt;}
.y21b{bottom:383.426676pt;}
.y49c{bottom:383.613322pt;}
.y2b8{bottom:384.066650pt;}
.y45f{bottom:384.253337pt;}
.y258{bottom:384.706665pt;}
.y41f{bottom:384.893351pt;}
.y36e{bottom:385.533325pt;}
.y2a3{bottom:386.146647pt;}
.y131{bottom:386.626668pt;}
.y1ff{bottom:388.226685pt;}
.y14f{bottom:389.186686pt;}
.y2e3{bottom:390.306681pt;}
.y6f3{bottom:390.333333pt;}
.y276{bottom:392.226685pt;}
.y2f9{bottom:392.573324pt;}
.y7{bottom:392.706665pt;}
.y57{bottom:392.866659pt;}
.y6d3{bottom:392.893351pt;}
.y570{bottom:393.186666pt;}
.y1ed{bottom:393.346680pt;}
.yce{bottom:394.786662pt;}
.y488{bottom:394.813314pt;}
.y31{bottom:395.266683pt;}
.y6a4{bottom:395.293335pt;}
.y492{bottom:395.773315pt;}
.y13a{bottom:396.066650pt;}
.y6b6{bottom:396.093343pt;}
.y410{bottom:396.413330pt;}
.y249{bottom:396.546672pt;}
.y1e0{bottom:396.706665pt;}
.y46c{bottom:397.053345pt;}
.y7e{bottom:397.506673pt;}
.y339{bottom:397.693319pt;}
.y197{bottom:397.826660pt;}
.y10c{bottom:397.986654pt;}
.y3d0{bottom:398.493327pt;}
.y144{bottom:400.546672pt;}
.y1b9{bottom:402.786662pt;}
.y66a{bottom:402.973348pt;}
.yae{bottom:404.226685pt;}
.y228{bottom:404.706665pt;}
.y21a{bottom:405.986654pt;}
.y2b7{bottom:406.466675pt;}
.y280{bottom:406.626668pt;}
.y1c5{bottom:406.786662pt;}
.y257{bottom:407.106649pt;}
.y31e{bottom:408.573324pt;}
.y2a2{bottom:408.706665pt;}
.y1fe{bottom:408.866659pt;}
.y56f{bottom:409.986674pt;}
.y139{bottom:410.306681pt;}
.y36d{bottom:410.653320pt;}
.y56{bottom:411.266683pt;}
.y406{bottom:411.293335pt;}
.y14e{bottom:411.586670pt;}
.y6da{bottom:412.093343pt;}
.y2e2{bottom:412.706665pt;}
.y6cc{bottom:412.893351pt;}
.y589{bottom:413.533325pt;}
.y2c3{bottom:414.466675pt;}
.y275{bottom:414.786662pt;}
.y42c{bottom:415.293335pt;}
.y292{bottom:416.546672pt;}
.y175{bottom:417.346680pt;}
.ycd{bottom:417.506673pt;}
.yf2{bottom:418.306681pt;}
.y248{bottom:418.946655pt;}
.y1df{bottom:419.106649pt;}
.y7d{bottom:420.066650pt;}
.y196{bottom:420.226685pt;}
.y10b{bottom:420.386678pt;}
.y34a{bottom:422.813314pt;}
.y143{bottom:422.946655pt;}
.y1ec{bottom:424.866659pt;}
.y161{bottom:425.026652pt;}
.y1b8{bottom:425.186686pt;}
.y30{bottom:425.666667pt;}
.y56e{bottom:426.946676pt;}
.y227{bottom:427.106649pt;}
.y681{bottom:427.453328pt;}
.y219{bottom:428.386678pt;}
.y2c2{bottom:428.706665pt;}
.y27f{bottom:429.026652pt;}
.y6bf{bottom:429.053345pt;}
.y1fd{bottom:429.506673pt;}
.y55{bottom:429.666667pt;}
.y694{bottom:429.853353pt;}
.y5e3{bottom:430.653320pt;}
.y2a1{bottom:431.106649pt;}
.y4db{bottom:432.253337pt;}
.y47d{bottom:433.053345pt;}
.y49b{bottom:433.213338pt;}
.yad{bottom:433.506673pt;}
.y319{bottom:433.533325pt;}
.y14d{bottom:434.146647pt;}
.y46b{bottom:434.333333pt;}
.y385{bottom:434.973348pt;}
.y2e1{bottom:435.266683pt;}
.y256{bottom:436.066650pt;}
.y274{bottom:437.186686pt;}
.y291{bottom:438.946655pt;}
.y1eb{bottom:439.106649pt;}
.ycc{bottom:440.066650pt;}
.yf1{bottom:440.866659pt;}
.y247{bottom:441.506673pt;}
.y6f1{bottom:441.693319pt;}
.y7c{bottom:442.466675pt;}
.y195{bottom:442.786662pt;}
.y10a{bottom:442.946655pt;}
.y6d2{bottom:444.253337pt;}
.y4ac{bottom:444.413330pt;}
.y647{bottom:445.053345pt;}
.y142{bottom:445.346680pt;}
.y491{bottom:445.373332pt;}
.y45e{bottom:445.693319pt;}
.y61e{bottom:445.853353pt;}
.y41e{bottom:446.493327pt;}
.y338{bottom:447.133341pt;}
.y160{bottom:447.426676pt;}
.y5ff{bottom:447.453328pt;}
.y1b7{bottom:447.746663pt;}
.y455{bottom:447.773315pt;}
.y529{bottom:447.933350pt;}
.y54{bottom:448.066650pt;}
.y2f{bottom:448.226685pt;}
.y226{bottom:449.666667pt;}
.y1fc{bottom:449.986654pt;}
.y218{bottom:450.946655pt;}
.y2b6{bottom:451.426676pt;}
.y27e{bottom:451.586670pt;}
.y2a0{bottom:453.666667pt;}
.y1c4{bottom:455.746663pt;}
.y14c{bottom:456.546672pt;}
.y2e0{bottom:457.666667pt;}
.y3ee{bottom:459.293335pt;}
.y273{bottom:459.586670pt;}
.y349{bottom:459.933350pt;}
.y405{bottom:460.573324pt;}
.y290{bottom:461.346680pt;}
.y680{bottom:461.853353pt;}
.y685{bottom:462.653320pt;}
.yac{bottom:462.786662pt;}
.yf0{bottom:463.266683pt;}
.y246{bottom:463.906657pt;}
.y5ae{bottom:464.413330pt;}
.y7b{bottom:465.026652pt;}
.y194{bottom:465.186686pt;}
.y109{bottom:465.346680pt;}
.y2f4{bottom:466.173340pt;}
.y174{bottom:466.306681pt;}
.y53{bottom:466.466675pt;}
.y141{bottom:467.906657pt;}
.y487{bottom:468.733317pt;}
.y12c{bottom:469.186686pt;}
.y2e{bottom:469.346680pt;}
.y15f{bottom:469.826660pt;}
.y1b6{bottom:470.146647pt;}
.y1fb{bottom:470.626668pt;}
.y40f{bottom:470.813314pt;}
.y225{bottom:472.066650pt;}
.y384{bottom:472.093343pt;}
.y438{bottom:472.733317pt;}
.y217{bottom:473.346680pt;}
.y2b5{bottom:473.826660pt;}
.y27d{bottom:473.986654pt;}
.y29f{bottom:476.066650pt;}
.y398{bottom:477.213338pt;}
.y1c3{bottom:478.146647pt;}
.y655{bottom:478.813314pt;}
.y14b{bottom:478.946655pt;}
.y6a1{bottom:479.613322pt;}
.y2df{bottom:480.066650pt;}
.y6b3{bottom:481.213338pt;}
.y47c{bottom:482.653320pt;}
.y45d{bottom:482.973348pt;}
.y255{bottom:483.266683pt;}
.y46a{bottom:483.613322pt;}
.y28f{bottom:483.906657pt;}
.y337{bottom:484.253337pt;}
.y52{bottom:484.866659pt;}
.y4c0{bottom:484.893351pt;}
.ycb{bottom:485.346680pt;}
.yef{bottom:485.826660pt;}
.y245{bottom:486.306681pt;}
.y7a{bottom:487.426676pt;}
.y193{bottom:487.586670pt;}
.y187{bottom:487.746663pt;}
.y108{bottom:487.906657pt;}
.y173{bottom:488.866659pt;}
.y140{bottom:490.306681pt;}
.y12b{bottom:491.746663pt;}
.yab{bottom:492.066650pt;}
.y1b5{bottom:492.546672pt;}
.y272{bottom:493.506673pt;}
.y224{bottom:494.466675pt;}
.y318{bottom:495.133341pt;}
.y5cf{bottom:495.613322pt;}
.y216{bottom:495.746663pt;}
.y41d{bottom:495.773315pt;}
.y2d{bottom:496.066650pt;}
.y27c{bottom:496.386678pt;}
.y35e{bottom:496.413330pt;}
.y454{bottom:497.053345pt;}
.y254{bottom:497.346680pt;}
.y29e{bottom:498.466675pt;}
.y5ad{bottom:498.653320pt;}
.y1c2{bottom:500.706665pt;}
.y42b{bottom:501.053345pt;}
.y14a{bottom:501.506673pt;}
.y1de{bottom:502.173340pt;}
.y2de{bottom:502.653320pt;}
.y51{bottom:503.293335pt;}
.y15e{bottom:503.773315pt;}
.y1fa{bottom:505.853353pt;}
.y28e{bottom:506.333333pt;}
.y4f6{bottom:506.813314pt;}
.y490{bottom:507.293335pt;}
.y271{bottom:507.773315pt;}
.yca{bottom:507.933350pt;}
.yee{bottom:508.253337pt;}
.y3c3{bottom:508.573324pt;}
.y244{bottom:508.893351pt;}
.y347{bottom:509.213338pt;}
.y79{bottom:509.853353pt;}
.y107{bottom:510.333333pt;}
.y172{bottom:511.293335pt;}
.y6d1{bottom:512.573324pt;}
.y13f{bottom:512.733317pt;}
.y643{bottom:513.373332pt;}
.y12a{bottom:514.173340pt;}
.y6f6{bottom:514.973348pt;}
.y1b4{bottom:515.133341pt;}
.y15d{bottom:518.013346pt;}
.y186{bottom:518.173340pt;}
.y215{bottom:518.333333pt;}
.y486{bottom:518.493327pt;}
.y2b4{bottom:518.813314pt;}
.y27b{bottom:518.973348pt;}
.y1f9{bottom:520.093343pt;}
.y3fc{bottom:520.733317pt;}
.y149{bottom:521.053345pt;}
.yaa{bottom:521.373332pt;}
.y50{bottom:521.693319pt;}
.y44f{bottom:522.173340pt;}
.y2c{bottom:522.813314pt;}
.y2dd{bottom:525.053345pt;}
.y192{bottom:526.013346pt;}
.y28d{bottom:528.893351pt;}
.yc9{bottom:530.653320pt;}
.y2f3{bottom:530.813314pt;}
.y13e{bottom:531.293335pt;}
.y45c{bottom:532.293335pt;}
.y78{bottom:532.413330pt;}
.y47b{bottom:532.453328pt;}
.y49a{bottom:532.613322pt;}
.y106{bottom:532.733317pt;}
.y3cf{bottom:532.933350pt;}
.y223{bottom:533.053345pt;}
.y3b5{bottom:533.573324pt;}
.y171{bottom:533.853353pt;}
.y403{bottom:534.373332pt;}
.y1c1{bottom:534.493327pt;}
.y129{bottom:536.573324pt;}
.y1b3{bottom:537.533325pt;}
.y1dd{bottom:539.613322pt;}
.y4f{bottom:540.093343pt;}
.y214{bottom:540.733317pt;}
.y27a{bottom:541.373332pt;}
.y29d{bottom:543.453328pt;}
.y4da{bottom:543.813314pt;}
.y316{bottom:545.093343pt;}
.y35d{bottom:545.733317pt;}
.y654{bottom:547.013346pt;}
.y2dc{bottom:547.453328pt;}
.y61b{bottom:547.813314pt;}
.y6c8{bottom:548.613322pt;}
.y1c0{bottom:548.733317pt;}
.y2b{bottom:549.533325pt;}
.y148{bottom:550.013346pt;}
.y429{bottom:550.533325pt;}
.ya9{bottom:550.653320pt;}
.y28c{bottom:551.293335pt;}
.yc8{bottom:553.213338pt;}
.y243{bottom:553.693319pt;}
.y77{bottom:554.813314pt;}
.y105{bottom:555.293335pt;}
.y222{bottom:555.453328pt;}
.y170{bottom:556.253337pt;}
.y48f{bottom:556.933350pt;}
.y41c{bottom:557.253337pt;}
.y3bf{bottom:557.893351pt;}
.y4e{bottom:558.333333pt;}
.y128{bottom:559.133341pt;}
.y13d{bottom:560.093343pt;}
.y9a{bottom:560.253337pt;}
.y1be{bottom:562.653320pt;}
.y213{bottom:563.133341pt;}
.y279{bottom:563.773315pt;}
.y5cd{bottom:563.973348pt;}
.y6be{bottom:564.773315pt;}
.y690{bottom:565.573324pt;}
.y29c{bottom:565.853353pt;}
.y5ac{bottom:566.053345pt;}
.y2f2{bottom:568.933350pt;}
.y4a2{bottom:569.093343pt;}
.y45b{bottom:569.413330pt;}
.y2db{bottom:570.013346pt;}
.y315{bottom:570.213338pt;}
.y191{bottom:570.653320pt;}
.yed{bottom:575.613322pt;}
.yc7{bottom:575.933350pt;}
.y242{bottom:576.253337pt;}
.y4d{bottom:576.733317pt;}
.y76{bottom:577.213338pt;}
.y104{bottom:577.693319pt;}
.y221{bottom:578.013346pt;}
.y16f{bottom:578.653320pt;}
.y2a{bottom:578.813314pt;}
.ya8{bottom:579.933350pt;}
.y127{bottom:581.533325pt;}
.y642{bottom:581.573324pt;}
.y1d8{bottom:581.693319pt;}
.y3ce{bottom:582.373332pt;}
.y1b2{bottom:582.493327pt;}
.y99{bottom:582.653320pt;}
.y36b{bottom:583.013346pt;}
.y1bd{bottom:585.053345pt;}
.y28b{bottom:585.213338pt;}
.y268{bottom:585.533325pt;}
.y5ab{bottom:585.733317pt;}
.y2b3{bottom:586.173340pt;}
.y29b{bottom:588.413330pt;}
.y1a6{bottom:589.853353pt;}
.y2f1{bottom:591.333333pt;}
.y212{bottom:592.253337pt;}
.y2da{bottom:592.413330pt;}
.y1dc{bottom:594.013346pt;}
.y6f0{bottom:594.373332pt;}
.y4c{bottom:595.133341pt;}
.y313{bottom:595.173340pt;}
.y29{bottom:597.053345pt;}
.yec{bottom:598.013346pt;}
.yc6{bottom:598.493327pt;}
.y67f{bottom:598.533325pt;}
.y631{bottom:599.333333pt;}
.y28a{bottom:599.453328pt;}
.y5a8{bottom:599.493327pt;}
.y75{bottom:599.773315pt;}
.y103{bottom:600.253337pt;}
.y220{bottom:600.413330pt;}
.y126{bottom:604.093343pt;}
.y4ab{bottom:604.613322pt;}
.y1b1{bottom:604.893351pt;}
.y241{bottom:605.213338pt;}
.y475{bottom:606.373332pt;}
.y41b{bottom:606.693319pt;}
.y13c{bottom:607.293335pt;}
.y331{bottom:607.333333pt;}
.y1bc{bottom:607.613322pt;}
.y18b{bottom:607.773315pt;}
.y267{bottom:608.093343pt;}
.y1db{bottom:608.413330pt;}
.y2b2{bottom:608.733317pt;}
.ya7{bottom:609.213338pt;}
.y29a{bottom:610.813314pt;}
.y147{bottom:611.293335pt;}
.y1d7{bottom:611.933350pt;}
.y2ec{bottom:613.053345pt;}
.y98{bottom:613.213338pt;}
.y4b{bottom:613.533325pt;}
.y2f0{bottom:613.893351pt;}
.y2d9{bottom:614.973348pt;}
.y653{bottom:615.333333pt;}
.y16e{bottom:617.213338pt;}
.y382{bottom:619.493327pt;}
.y4bc{bottom:619.813314pt;}
.y27{bottom:620.093343pt;}
.yeb{bottom:620.573324pt;}
.yc5{bottom:621.053345pt;}
.y13b{bottom:621.533325pt;}
.y74{bottom:622.173340pt;}
.y102{bottom:622.653320pt;}
.y479{bottom:626.373332pt;}
.y125{bottom:626.493327pt;}
.y1b0{bottom:627.453328pt;}
.y1a5{bottom:628.253337pt;}
.y21f{bottom:629.373332pt;}
.y266{bottom:630.493327pt;}
.y4a1{bottom:631.013346pt;}
.y2b1{bottom:631.133341pt;}
.y3b4{bottom:631.653320pt;}
.y5ca{bottom:632.133341pt;}
.y299{bottom:633.373332pt;}
.y97{bottom:636.893351pt;}
.y211{bottom:637.373332pt;}
.y18a{bottom:638.013346pt;}
.ya6{bottom:638.493327pt;}
.y16d{bottom:639.613322pt;}
.y1bb{bottom:641.373332pt;}
.y25{bottom:643.293335pt;}
.y4a{bottom:643.773315pt;}
.y41a{bottom:643.813314pt;}
.y73{bottom:644.733317pt;}
.y2c9{bottom:645.053345pt;}
.y2ef{bottom:646.693319pt;}
.y1af{bottom:649.853353pt;}
.y619{bottom:649.893351pt;}
.yea{bottom:650.973348pt;}
.y265{bottom:652.893351pt;}
.y2b0{bottom:653.533325pt;}
.y240{bottom:654.173340pt;}
.y124{bottom:655.453328pt;}
.y101{bottom:655.773315pt;}
.y485{bottom:656.293335pt;}
.y2d8{bottom:659.773315pt;}
.y96{bottom:659.933350pt;}
.y662{bottom:662.213338pt;}
.y298{bottom:663.613322pt;}
.y1a4{bottom:664.733317pt;}
.y24{bottom:666.333333pt;}
.y585{bottom:666.853353pt;}
.y72{bottom:667.133341pt;}
.y2c8{bottom:667.613322pt;}
.ya5{bottom:667.773315pt;}
.y474{bottom:667.813314pt;}
.y6fe{bottom:667.973348pt;}
.y48e{bottom:668.453328pt;}
.y16c{bottom:668.573324pt;}
.y311{bottom:668.773315pt;}
.y1f8{bottom:669.693319pt;}
.y210{bottom:670.973348pt;}
.y1ae{bottom:672.253337pt;}
.ye9{bottom:673.693319pt;}
.y264{bottom:675.453328pt;}
.y2af{bottom:676.093343pt;}
.y21e{bottom:676.413330pt;}
.y23f{bottom:676.733317pt;}
.y49{bottom:677.853353pt;}
.y100{bottom:678.173340pt;}
.y2d7{bottom:682.333333pt;}
.y95{bottom:683.133301pt;}
.y5c9{bottom:683.653320pt;}
.y55f{bottom:683.813314pt;}
.y1f7{bottom:683.933350pt;}
.y289{bottom:687.933350pt;}
.yc4{bottom:689.053304pt;}
.y23{bottom:689.533366pt;}
.y20f{bottom:689.853353pt;}
.y2c7{bottom:690.013346pt;}
.y21d{bottom:690.813314pt;}
.y4a0{bottom:692.773356pt;}
.y1ad{bottom:694.813314pt;}
.y48{bottom:696.253337pt;}
.y6ef{bottom:696.293294pt;}
.ya4{bottom:697.053304pt;}
.y297{bottom:697.373372pt;}
.y263{bottom:697.853353pt;}
.y473{bottom:698.053304pt;}
.y4f5{bottom:698.213298pt;}
.y2ae{bottom:698.493327pt;}
.y23e{bottom:699.133301pt;}
.yff{bottom:700.733317pt;}
.y2ee{bottom:703.173340pt;}
.y2d6{bottom:704.733317pt;}
.y94{bottom:706.173340pt;}
.y123{bottom:709.533366pt;}
.y288{bottom:710.333333pt;}
.yc3{bottom:711.613363pt;}
.y71{bottom:712.093343pt;}
.y20e{bottom:712.253337pt;}
.y2c6{bottom:712.413330pt;}
.y22{bottom:712.573324pt;}
.y1ea{bottom:712.733317pt;}
.y130{bottom:714.013346pt;}
.y47{bottom:714.653320pt;}
.y1ce{bottom:715.453369pt;}
.y16b{bottom:715.613363pt;}
.y1ac{bottom:717.213298pt;}
.y6{bottom:717.853353pt;}
.ye8{bottom:718.813314pt;}
.y2ad{bottom:721.053304pt;}
.y23d{bottom:721.533366pt;}
.yfe{bottom:723.133301pt;}
.ya3{bottom:726.493327pt;}
.y2d5{bottom:727.133301pt;}
.y12f{bottom:728.413330pt;}
.y92{bottom:729.373372pt;}
.y1cd{bottom:729.853353pt;}
.y16a{bottom:730.013346pt;}
.y2ed{bottom:731.520020pt;}
.y262{bottom:731.773356pt;}
.y287{bottom:732.893311pt;}
.y46{bottom:733.053304pt;}
.yc2{bottom:734.173340pt;}
.y70{bottom:734.493327pt;}
.y20d{bottom:734.653320pt;}
.y2c5{bottom:734.973307pt;}
.y21{bottom:735.773356pt;}
.ye7{bottom:741.533366pt;}
.y2ac{bottom:743.453369pt;}
.y23c{bottom:744.093343pt;}
.yfd{bottom:745.533366pt;}
.y261{bottom:745.853353pt;}
.y1ab{bottom:746.173340pt;}
.y1e9{bottom:746.653320pt;}
.y2d4{bottom:749.693359pt;}
.y45{bottom:751.453369pt;}
.y286{bottom:755.333333pt;}
.ya2{bottom:755.813314pt;}
.y6f{bottom:757.093343pt;}
.y20c{bottom:757.253337pt;}
.yc1{bottom:757.893311pt;}
.y15c{bottom:758.213298pt;}
.y20{bottom:759.013346pt;}
.y1e8{bottom:761.093343pt;}
.ye6{bottom:764.133301pt;}
.y122{bottom:765.893311pt;}
.y23b{bottom:766.533366pt;}
.yfc{bottom:768.133301pt;}
.y2d3{bottom:772.133301pt;}
.y91{bottom:775.013346pt;}
.y270{bottom:775.333333pt;}
.y285{bottom:777.733317pt;}
.y6e{bottom:779.493327pt;}
.y20b{bottom:779.653320pt;}
.y15b{bottom:780.773356pt;}
.y1e{bottom:782.053304pt;}
.ya1{bottom:785.093343pt;}
.ye5{bottom:786.853353pt;}
.y121{bottom:788.453369pt;}
.y23a{bottom:789.093343pt;}
.yc0{bottom:789.573324pt;}
.yfb{bottom:790.533366pt;}
.y1aa{bottom:791.333333pt;}
.y2d2{bottom:794.693359pt;}
.y284{bottom:800.293294pt;}
.y6d{bottom:801.893311pt;}
.y20a{bottom:802.213298pt;}
.y15a{bottom:803.173340pt;}
.y1b{bottom:805.253337pt;}
.ybf{bottom:808.133301pt;}
.ye4{bottom:809.413330pt;}
.y1a9{bottom:809.733317pt;}
.y120{bottom:810.853353pt;}
.y239{bottom:811.493327pt;}
.yfa{bottom:813.093343pt;}
.ya0{bottom:814.373372pt;}
.y2d1{bottom:817.093343pt;}
.y90{bottom:820.613363pt;}
.y283{bottom:822.693359pt;}
.y6c{bottom:824.453369pt;}
.y209{bottom:824.613363pt;}
.y159{bottom:825.573324pt;}
.y190{bottom:826.053304pt;}
.ye3{bottom:831.973307pt;}
.y11f{bottom:833.413330pt;}
.y238{bottom:833.893311pt;}
.yf9{bottom:835.493327pt;}
.ybe{bottom:837.253337pt;}
.y2d0{bottom:839.493327pt;}
.y1a8{bottom:843.493327pt;}
.y8f{bottom:843.653320pt;}
.y6b{bottom:846.853353pt;}
.y208{bottom:847.013346pt;}
.y158{bottom:848.133301pt;}
.y282{bottom:851.653320pt;}
.y44{bottom:852.293294pt;}
.ye2{bottom:854.693359pt;}
.y11e{bottom:855.813314pt;}
.y237{bottom:856.453369pt;}
.yf8{bottom:857.893311pt;}
.y2cf{bottom:862.053304pt;}
.y185{bottom:862.213298pt;}
.ybd{bottom:866.533366pt;}
.y8e{bottom:866.853353pt;}
.y6a{bottom:869.253337pt;}
.y207{bottom:869.573324pt;}
.y157{bottom:870.533366pt;}
.y9f{bottom:872.933350pt;}
.y18{bottom:873.253337pt;}
.ye1{bottom:877.253337pt;}
.y11d{bottom:878.213298pt;}
.y236{bottom:878.853353pt;}
.yf7{bottom:880.453369pt;}
.y2ce{bottom:884.453369pt;}
.y184{bottom:884.773356pt;}
.y43{bottom:884.933350pt;}
.y8d{bottom:889.893311pt;}
.y69{bottom:891.813314pt;}
.y206{bottom:891.973307pt;}
.y156{bottom:892.933350pt;}
.ybc{bottom:895.813314pt;}
.y253{bottom:897.733317pt;}
.ye0{bottom:899.973307pt;}
.y11c{bottom:900.773356pt;}
.y235{bottom:901.413330pt;}
.y42{bottom:902.053304pt;}
.y9e{bottom:902.213298pt;}
.yf6{bottom:902.853353pt;}
.y2cd{bottom:907.013346pt;}
.y183{bottom:907.173340pt;}
.y252{bottom:911.973307pt;}
.y8c{bottom:913.093343pt;}
.y68{bottom:914.213298pt;}
.y205{bottom:914.373372pt;}
.y155{bottom:915.493327pt;}
.y16{bottom:918.853353pt;}
.y41{bottom:920.453369pt;}
.ydf{bottom:922.533366pt;}
.y11b{bottom:923.173340pt;}
.y234{bottom:923.813314pt;}
.ybb{bottom:925.093343pt;}
.yf5{bottom:925.413330pt;}
.y1a3{bottom:926.213298pt;}
.y2cc{bottom:929.413330pt;}
.y182{bottom:929.573324pt;}
.y9d{bottom:931.493327pt;}
.y40{bottom:935.493327pt;}
.y8b{bottom:936.293294pt;}
.y67{bottom:936.613363pt;}
.y204{bottom:936.933350pt;}
.y154{bottom:937.893311pt;}
.yde{bottom:945.093343pt;}
.y11a{bottom:945.573324pt;}
.yf4{bottom:947.813314pt;}
.y26f{bottom:950.533366pt;}
.y2cb{bottom:951.813314pt;}
.y181{bottom:952.133301pt;}
.y15{bottom:952.933350pt;}
.yba{bottom:954.373372pt;}
.y9c{bottom:954.533366pt;}
.y1a2{bottom:956.293294pt;}
.y233{bottom:956.613363pt;}
.y66{bottom:959.333333pt;}
.y153{bottom:960.453369pt;}
.y203{bottom:965.893311pt;}
.ydd{bottom:967.813314pt;}
.y119{bottom:968.133301pt;}
.yf3{bottom:970.213298pt;}
.y2ca{bottom:970.373372pt;}
.y65{bottom:977.893311pt;}
.y8a{bottom:982.533366pt;}
.y152{bottom:982.853353pt;}
.yb9{bottom:983.813314pt;}
.y14{bottom:984.293294pt;}
.y1a1{bottom:986.533366pt;}
.ydc{bottom:990.373372pt;}
.y118{bottom:990.533366pt;}
.y9b{bottom:1003.173340pt;}
.y64{bottom:1008.000000pt;}
.y3f{bottom:1008.159993pt;}
.y13{bottom:1010.559977pt;}
.y1a7{bottom:1012.959961pt;}
.y89{bottom:1013.120036pt;}
.y202{bottom:1014.399984pt;}
.y151{bottom:1016.799967pt;}
.y1{bottom:1060.319987pt;}
.y12{bottom:1066.932533pt;}
.h15{height:2.218750pt;}
.h55{height:18.880000pt;}
.h30{height:19.040000pt;}
.h96{height:20.992000pt;}
.h82{height:21.120000pt;}
.hb{height:22.399999pt;}
.hf{height:22.431999pt;}
.he{height:22.560000pt;}
.h14{height:23.839999pt;}
.h33{height:24.320000pt;}
.h34{height:24.352000pt;}
.h41{height:24.480000pt;}
.h13{height:26.560000pt;}
.h12{height:28.480000pt;}
.h6f{height:29.920000pt;}
.h2c{height:29.953125pt;}
.h4c{height:30.003750pt;}
.h5a{height:32.959999pt;}
.h81{height:33.600000pt;}
.h69{height:33.632000pt;}
.h88{height:33.760000pt;}
.h36{height:36.480000pt;}
.h37{height:36.512000pt;}
.h40{height:36.639999pt;}
.h53{height:36.672000pt;}
.h8a{height:36.800000pt;}
.h27{height:37.164062pt;}
.h9{height:37.631250pt;}
.h23{height:40.570312pt;}
.h72{height:40.618125pt;}
.h1f{height:41.484375pt;}
.h22{height:41.601562pt;}
.h63{height:41.671875pt;}
.hc{height:44.960002pt;}
.h1b{height:44.991999pt;}
.h25{height:45.909375pt;}
.h10{height:46.039063pt;}
.h4{height:47.621250pt;}
.h2b{height:48.639999pt;}
.h32{height:48.672002pt;}
.h3a{height:48.799998pt;}
.h6e{height:48.812500pt;}
.h2e{height:48.832000pt;}
.h73{height:50.559998pt;}
.h6b{height:50.592000pt;}
.h76{height:50.720000pt;}
.h80{height:50.751999pt;}
.h26{height:50.887500pt;}
.h19{height:51.031250pt;}
.h5{height:52.134375pt;}
.h8f{height:52.785000pt;}
.h59{height:52.960002pt;}
.h20{height:54.093750pt;}
.h8b{height:55.072000pt;}
.h21{height:55.312500pt;}
.h6{height:55.468750pt;}
.h11{height:55.562500pt;}
.h71{height:57.787500pt;}
.h2f{height:60.799998pt;}
.h3b{height:60.832000pt;}
.h35{height:60.960002pt;}
.h5b{height:60.991999pt;}
.h7e{height:61.410000pt;}
.h16{height:62.812500pt;}
.h8{height:64.898438pt;}
.h1e{height:65.008125pt;}
.h3{height:66.750000pt;}
.hd{height:67.360000pt;}
.h83{height:67.391998pt;}
.h74{height:67.519999pt;}
.h77{height:67.552002pt;}
.h94{height:71.039998pt;}
.h1d{height:71.944688pt;}
.h2d{height:72.960002pt;}
.h49{height:72.991999pt;}
.h4f{height:73.120000pt;}
.h47{height:73.151998pt;}
.h70{height:73.406250pt;}
.h2a{height:73.773438pt;}
.h1a{height:73.898125pt;}
.h44{height:76.799998pt;}
.ha{height:83.343750pt;}
.h18{height:83.540625pt;}
.h7d{height:84.320002pt;}
.h86{height:84.352000pt;}
.h3f{height:85.120000pt;}
.h43{height:85.151998pt;}
.h4e{height:85.279999pt;}
.h39{height:85.312002pt;}
.h38{height:87.871999pt;}
.h17{height:88.777500pt;}
.h8c{height:92.000000pt;}
.h7{height:92.632812pt;}
.h24{height:92.789375pt;}
.h46{height:97.279999pt;}
.h48{height:97.312002pt;}
.h4a{height:97.440002pt;}
.h3e{height:97.471995pt;}
.h8e{height:101.119995pt;}
.h75{height:101.151998pt;}
.h84{height:101.279999pt;}
.h90{height:101.312002pt;}
.h57{height:109.440002pt;}
.h3d{height:109.471995pt;}
.h52{height:109.631999pt;}
.h1c{height:111.472500pt;}
.h45{height:113.471995pt;}
.h6d{height:117.951996pt;}
.h7c{height:118.079997pt;}
.h87{height:118.112000pt;}
.h54{height:121.599996pt;}
.h31{height:121.792002pt;}
.h51{height:133.760000pt;}
.h4d{height:133.786662pt;}
.h5d{height:133.946665pt;}
.h78{height:134.880005pt;}
.h91{height:134.906667pt;}
.h93{height:135.039998pt;}
.h7b{height:135.066671pt;}
.h5c{height:138.906667pt;}
.h61{height:140.026662pt;}
.h58{height:145.946665pt;}
.h60{height:146.106669pt;}
.h5f{height:150.106669pt;}
.h67{height:151.706665pt;}
.h98{height:151.839996pt;}
.h79{height:151.866669pt;}
.h62{height:152.826670pt;}
.h56{height:158.106669pt;}
.h4b{height:158.266663pt;}
.h8d{height:165.626668pt;}
.h89{height:168.666667pt;}
.h50{height:170.426666pt;}
.h3c{height:182.426676pt;}
.h68{height:185.306661pt;}
.h95{height:185.626668pt;}
.h64{height:202.106669pt;}
.h65{height:202.266663pt;}
.h97{height:202.306661pt;}
.h85{height:202.426676pt;}
.h5e{height:208.026672pt;}
.h92{height:236.066671pt;}
.h6c{height:252.666667pt;}
.h42{height:267.746663pt;}
.h66{height:269.506673pt;}
.h7f{height:269.826660pt;}
.h7a{height:286.626668pt;}
.h6a{height:438.146647pt;}
.h28{height:793.760000pt;}
.h29{height:794.000000pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:24.672000pt;}
.w2f{width:31.839999pt;}
.w13{width:32.160000pt;}
.w16{width:36.480000pt;}
.w19{width:37.120000pt;}
.w2e{width:37.279999pt;}
.w36{width:38.240000pt;}
.w14{width:40.000000pt;}
.w12{width:44.832000pt;}
.w5{width:46.271998pt;}
.w2c{width:46.399999pt;}
.w1a{width:46.559998pt;}
.w32{width:46.592000pt;}
.w1d{width:46.751999pt;}
.w2a{width:50.432002pt;}
.w30{width:53.440002pt;}
.w18{width:55.200002pt;}
.w1c{width:56.000000pt;}
.w34{width:62.720000pt;}
.w22{width:64.960002pt;}
.w1e{width:65.440002pt;}
.w21{width:69.120000pt;}
.w2b{width:70.559998pt;}
.w1f{width:72.480000pt;}
.w31{width:73.120000pt;}
.w26{width:74.751999pt;}
.w1b{width:75.072000pt;}
.w33{width:84.159999pt;}
.w23{width:84.672002pt;}
.w20{width:90.592000pt;}
.w2d{width:93.920003pt;}
.w3c{width:96.191996pt;}
.w37{width:98.272003pt;}
.w15{width:101.599996pt;}
.w27{width:103.039998pt;}
.w6{width:103.200002pt;}
.w3d{width:111.200002pt;}
.w39{width:116.191996pt;}
.w28{width:121.920003pt;}
.w24{width:139.359996pt;}
.w38{width:145.279999pt;}
.w7{width:158.746663pt;}
.w3b{width:164.160004pt;}
.w3a{width:178.266663pt;}
.wc{width:192.386658pt;}
.w29{width:195.066671pt;}
.wb{width:205.946676pt;}
.w9{width:205.986674pt;}
.w3{width:225.666667pt;}
.wd{width:320.386658pt;}
.we{width:320.546672pt;}
.w8{width:350.146647pt;}
.wa{width:351.906647pt;}
.w4{width:426.306681pt;}
.w25{width:497.506673pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w35{width:914.373372pt;}
.w11{width:1122.559977pt;}
.wf{width:1122.560000pt;}
.w10{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x39{left:2.559998pt;}
.x69{left:5.599996pt;}
.x5{left:7.232000pt;}
.x49{left:8.960042pt;}
.x71{left:11.359985pt;}
.x72{left:14.560018pt;}
.x6a{left:15.679993pt;}
.x68{left:17.120015pt;}
.x63{left:20.960002pt;}
.x6c{left:23.359985pt;}
.x6e{left:26.880005pt;}
.x67{left:27.840027pt;}
.x75{left:28.959961pt;}
.x66{left:30.920024pt;}
.x76{left:35.039958pt;}
.x6d{left:48.159993pt;}
.x6f{left:68.000000pt;}
.x1{left:75.519987pt;}
.x10{left:90.271991pt;}
.x37{left:94.399987pt;}
.x4a{left:95.519999pt;}
.x11{left:99.551990pt;}
.x19{left:102.751992pt;}
.x7{left:123.232005pt;}
.x1a{left:126.751992pt;}
.x3a{left:140.826670pt;}
.x2{left:143.546660pt;}
.x53{left:146.426666pt;}
.x32{left:147.546660pt;}
.x38{left:162.426650pt;}
.x33{left:171.546660pt;}
.x3b{left:173.626668pt;}
.xe{left:177.946664pt;}
.x4b{left:186.906657pt;}
.x64{left:194.266663pt;}
.x3c{left:214.266663pt;}
.x54{left:217.626668pt;}
.x8{left:227.226664pt;}
.xa{left:235.226664pt;}
.x4c{left:256.826660pt;}
.x55{left:264.826660pt;}
.x61{left:273.466665pt;}
.x27{left:283.746652pt;}
.x18{left:289.346648pt;}
.x23{left:299.586658pt;}
.x6{left:302.626668pt;}
.x3d{left:316.506673pt;}
.x4d{left:322.746663pt;}
.x65{left:340.346659pt;}
.x3e{left:353.626668pt;}
.x56{left:359.386678pt;}
.x21{left:379.746652pt;}
.x2e{left:381.986642pt;}
.x9{left:386.786662pt;}
.x22{left:393.506661pt;}
.xc{left:394.786662pt;}
.x1e{left:396.066639pt;}
.xf{left:397.346680pt;}
.x57{left:406.786662pt;}
.x4e{left:408.386678pt;}
.x2b{left:413.026640pt;}
.x3f{left:434.946655pt;}
.xb{left:441.853353pt;}
.x58{left:444.706665pt;}
.x6b{left:457.346680pt;}
.x2c{left:459.293323pt;}
.x1f{left:473.373320pt;}
.x20{left:476.413318pt;}
.x59{left:477.346680pt;}
.x1b{left:486.013335pt;}
.x40{left:510.466675pt;}
.x30{left:520.733305pt;}
.x5a{left:531.426676pt;}
.x1d{left:544.413318pt;}
.x4f{left:548.546672pt;}
.x24{left:550.493315pt;}
.x34{left:554.333322pt;}
.x41{left:557.666667pt;}
.x35{left:574.173328pt;}
.x29{left:579.773304pt;}
.x2a{left:581.213326pt;}
.x36{left:594.333322pt;}
.x12{left:596.733305pt;}
.x4{left:600.316813pt;}
.xd{left:601.373332pt;}
.x5b{left:605.186686pt;}
.x13{left:616.413318pt;}
.x26{left:617.533313pt;}
.x50{left:624.253337pt;}
.x42{left:633.373332pt;}
.x70{left:636.413330pt;}
.x2d{left:652.613310pt;}
.x1c{left:654.693307pt;}
.x15{left:664.293323pt;}
.x31{left:669.573312pt;}
.x28{left:673.093331pt;}
.x43{left:680.573324pt;}
.x2f{left:682.853341pt;}
.x14{left:694.053292pt;}
.x16{left:701.093331pt;}
.x5c{left:709.213298pt;}
.x25{left:711.333322pt;}
.x3{left:717.733305pt;}
.x51{left:728.253337pt;}
.x17{left:736.773344pt;}
.x5d{left:756.413330pt;}
.x44{left:775.133301pt;}
.x73{left:801.373372pt;}
.x45{left:812.893311pt;}
.x5e{left:841.373372pt;}
.x52{left:850.973307pt;}
.x46{left:860.093343pt;}
.x74{left:898.373372pt;}
.x47{left:907.493327pt;}
.x5f{left:917.093343pt;}
.x48{left:973.573324pt;}
.x60{left:983.333333pt;}
.x62{left:1010.373372pt;}
}




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