
    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_83efebc7935bc95d84fe41fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9bea55e5b7792f06ba325937.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_afd4d2222a842c7c4db70e26.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_26b72e2e4d4d3c84cea6c908.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_9681baa76420f9aeae3314c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_4510285b4efad43614e99c17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_5441cb905d0dc4b2ae45b0db.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_19221a8eb7f6712a263ac679.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_118f8892071bf10a114a2e51.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_3ad30e2534b4100ddf03184e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_50ed4182b404db8d0b3ba299.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_83facfbf3cf68fb4dcddef8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859863;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_2ba527a1827d0601d0a956c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.119629;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_dde77332ae49baf8b6537bf7.woff2')format("woff");}.fff{font-family:fff;line-height:0.942383;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_25de9484d37963074a96eb60.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.823730;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_413da70e1541143377fde94e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2bef2c221d3bc97e6609a38b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_a4ec31ea8008c260991b2ca9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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_9512430c5f6ee561727b00bd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.933105;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_8ebe6905ef990d5e1c965fa4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b504ff4de07c4e48bb4d73e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_55dd61ac492aa533fcff4e60.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.123047;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);}
.v4{vertical-align:-164.160000px;}
.v2{vertical-align:-83.520000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls17{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.648000px;}
.ls33{letter-spacing:-0.576000px;}
.ls35{letter-spacing:-0.504000px;}
.ls38{letter-spacing:-0.432000px;}
.ls41{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.305400px;}
.ls46{letter-spacing:-0.294000px;}
.ls15{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.256200px;}
.ls49{letter-spacing:-0.253200px;}
.ls1{letter-spacing:-0.229800px;}
.ls13{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.164400px;}
.ls23{letter-spacing:-0.152400px;}
.ls4b{letter-spacing:-0.144000px;}
.ls4c{letter-spacing:-0.132600px;}
.ls21{letter-spacing:-0.109200px;}
.ls2d{letter-spacing:-0.094800px;}
.ls12{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.054720px;}
.ls2a{letter-spacing:-0.048960px;}
.ls47{letter-spacing:-0.037440px;}
.ls1a{letter-spacing:-0.028080px;}
.ls4d{letter-spacing:-0.025920px;}
.ls40{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.008640px;}
.ls2b{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.061200px;}
.ls19{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.154800px;}
.ls3e{letter-spacing:0.175800px;}
.ls4{letter-spacing:0.205800px;}
.ls32{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.313800px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.894000px;}
.ls1d{letter-spacing:1.296000px;}
.ls18{letter-spacing:2.880000px;}
.ls37{letter-spacing:3.888000px;}
.ls1b{letter-spacing:8.640000px;}
.ls39{letter-spacing:11.520000px;}
.lsa{letter-spacing:21.221280px;}
.ls36{letter-spacing:24.480000px;}
.ls3c{letter-spacing:28.224000px;}
.ls3b{letter-spacing:31.824000px;}
.ls44{letter-spacing:32.544000px;}
.ls3a{letter-spacing:33.264000px;}
.ls11{letter-spacing:33.984000px;}
.ls27{letter-spacing:34.865280px;}
.ls4e{letter-spacing:36.000000px;}
.ls26{letter-spacing:37.745280px;}
.ls24{letter-spacing:38.465280px;}
.ls28{letter-spacing:41.345280px;}
.ls42{letter-spacing:44.784000px;}
.ls7{letter-spacing:61.896000px;}
.lsb{letter-spacing:64.200000px;}
.ls14{letter-spacing:64.224000px;}
.ls45{letter-spacing:65.664000px;}
.lsc{letter-spacing:66.581280px;}
.ls25{letter-spacing:69.425280px;}
.ls30{letter-spacing:85.800000px;}
.ls2f{letter-spacing:89.400000px;}
.ls31{letter-spacing:105.240000px;}
.lsd{letter-spacing:111.401280px;}
.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;}
}
.ws2{word-spacing:-25.765800px;}
.ws9{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.060000px;}
.ws12{word-spacing:-21.031920px;}
.ws8{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.160000px;}
.ws25{word-spacing:-20.016000px;}
.ws26{word-spacing:-19.944000px;}
.ws27{word-spacing:-19.800000px;}
.ws20{word-spacing:-19.448640px;}
.ws2d{word-spacing:-19.440000px;}
.ws3a{word-spacing:-19.414080px;}
.ws14{word-spacing:-19.296000px;}
.ws3{word-spacing:-19.099440px;}
.ws1{word-spacing:-19.038240px;}
.ws15{word-spacing:-18.864000px;}
.ws0{word-spacing:-18.808440px;}
.ws16{word-spacing:-18.648000px;}
.ws13{word-spacing:-18.576000px;}
.wsb{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.432000px;}
.ws17{word-spacing:-18.414720px;}
.ws18{word-spacing:-18.305520px;}
.wse{word-spacing:-18.288000px;}
.ws1a{word-spacing:-18.262320px;}
.ws3b{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.109320px;}
.ws32{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws23{word-spacing:-17.573760px;}
.ws22{word-spacing:-17.478960px;}
.ws24{word-spacing:-17.409360px;}
.ws2c{word-spacing:-16.632000px;}
.ws5{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.488000px;}
.ws2e{word-spacing:-16.344000px;}
.ws28{word-spacing:-16.272000px;}
.ws2f{word-spacing:-16.271994px;}
.ws29{word-spacing:-16.200000px;}
.ws34{word-spacing:-15.984000px;}
.ws3c{word-spacing:-15.696000px;}
.ws21{word-spacing:-15.300000px;}
.ws37{word-spacing:-15.284040px;}
.ws1b{word-spacing:-15.226440px;}
.ws2a{word-spacing:-15.099840px;}
.ws1f{word-spacing:-15.030840px;}
.ws1c{word-spacing:-14.970240px;}
.ws30{word-spacing:-14.940000px;}
.ws36{word-spacing:-14.932800px;}
.ws1d{word-spacing:-14.921280px;}
.ws39{word-spacing:-14.915520px;}
.ws1e{word-spacing:-14.754240px;}
.ws38{word-spacing:-14.717040px;}
.ws35{word-spacing:-14.676240px;}
.ws31{word-spacing:-14.580000px;}
.ws33{word-spacing:-11.057040px;}
.ws4{word-spacing:0.000000px;}
._69{margin-left:-98.376000px;}
._13{margin-left:-18.948000px;}
._11{margin-left:-17.580000px;}
._14{margin-left:-16.452000px;}
._16{margin-left:-15.072000px;}
._e{margin-left:-13.968000px;}
._15{margin-left:-12.636000px;}
._f{margin-left:-10.728000px;}
._12{margin-left:-8.472000px;}
._10{margin-left:-7.041840px;}
._a{margin-left:-4.536000px;}
._9{margin-left:-2.723040px;}
._0{margin-left:-1.406160px;}
._1{width:1.212000px;}
._4{width:2.472000px;}
._7{width:4.104000px;}
._5{width:5.616000px;}
._6{width:7.284000px;}
._8{width:9.266160px;}
._1a{width:10.709520px;}
._2{width:12.312000px;}
._3{width:13.464000px;}
._b{width:15.312000px;}
._c{width:16.416000px;}
._54{width:17.424000px;}
._53{width:18.902160px;}
._1c{width:19.944000px;}
._19{width:21.062160px;}
._18{width:22.248000px;}
._1d{width:23.256000px;}
._1b{width:24.768000px;}
._22{width:26.606160px;}
._1e{width:27.936000px;}
._1f{width:29.160000px;}
._26{width:30.888000px;}
._27{width:31.968000px;}
._2a{width:32.976000px;}
._23{width:34.632000px;}
._24{width:35.688000px;}
._20{width:37.008000px;}
._21{width:38.316000px;}
._29{width:39.480000px;}
._2d{width:41.544000px;}
._28{width:43.382160px;}
._57{width:45.192000px;}
._2e{width:46.560000px;}
._3f{width:47.592000px;}
._42{width:49.212000px;}
._48{width:50.400000px;}
._25{width:56.520000px;}
._2c{width:57.528000px;}
._51{width:59.520720px;}
._40{width:61.560000px;}
._41{width:63.192000px;}
._3c{width:65.592000px;}
._36{width:71.748000px;}
._60{width:73.332000px;}
._2f{width:77.040000px;}
._2b{width:78.240000px;}
._68{width:90.000000px;}
._34{width:95.328000px;}
._35{width:96.444000px;}
._30{width:124.416000px;}
._31{width:125.616000px;}
._5d{width:131.174400px;}
._50{width:134.728560px;}
._4c{width:141.188160px;}
._62{width:142.680000px;}
._4d{width:145.660320px;}
._47{width:147.600000px;}
._61{width:157.932000px;}
._5e{width:164.844000px;}
._5c{width:180.396000px;}
._3b{width:185.018160px;}
._3a{width:186.120000px;}
._4f{width:192.259200px;}
._5f{width:198.876000px;}
._4b{width:200.505600px;}
._4e{width:201.553920px;}
._45{width:237.960000px;}
._46{width:239.076000px;}
._37{width:242.928000px;}
._43{width:251.676000px;}
._44{width:252.856320px;}
._49{width:278.424000px;}
._4a{width:279.444000px;}
._3d{width:292.968000px;}
._39{width:455.940000px;}
._32{width:474.192000px;}
._33{width:475.452000px;}
._63{width:565.341600px;}
._65{width:606.860640px;}
._66{width:611.703600px;}
._56{width:717.564000px;}
._38{width:839.808000px;}
._17{width:843.096000px;}
._d{width:846.388320px;}
._64{width:857.865120px;}
._3e{width:881.352000px;}
._67{width:939.534000px;}
._55{width:1041.012000px;}
._5b{width:1104.012000px;}
._58{width:1135.812000px;}
._59{width:1321.284000px;}
._5a{width:1343.148000px;}
._52{width:1575.926160px;}
.fc11{color:rgb(247,137,74);}
.fc10{color:rgb(212,140,0);}
.fcf{color:rgb(255,200,61);}
.fce{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(54,95,145);}
.fcb{color:rgb(2,94,141);}
.fcc{color:rgb(11,83,148);}
.fc3{color:rgb(17,85,204);}
.fcd{color:rgb(49,132,155);}
.fc9{color:rgb(39,78,19);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(116,27,71);}
.fc5{color:rgb(56,118,29);}
.fc7{color:rgb(67,67,67);}
.fc8{color:rgb(229,178,23);}
.fc6{color:rgb(7,55,99);}
.fca{color:rgb(84,141,212);}
.fsf{font-size:2.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fsa{font-size:90.000000px;}
.fse{font-size:95.760000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.fs10{font-size:120.240000px;}
.fsd{font-size:131.760000px;}
.fsc{font-size:144.000000px;}
.fs0{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:3.240000px;}
.y3a7{bottom:3.780000px;}
.y181{bottom:3.960000px;}
.y219{bottom:4.500000px;}
.y3bc{bottom:4.860000px;}
.y4f9{bottom:5.220000px;}
.y19f{bottom:5.400000px;}
.y4d0{bottom:5.760000px;}
.y1dd{bottom:6.300000px;}
.y1db{bottom:6.480000px;}
.y210{bottom:6.660000px;}
.y1c4{bottom:6.840000px;}
.y18e{bottom:7.020000px;}
.y196{bottom:7.200000px;}
.y1ea{bottom:7.380000px;}
.y608{bottom:7.560000px;}
.y1df{bottom:7.740000px;}
.y21b{bottom:7.920000px;}
.y1b1{bottom:8.100000px;}
.y1c9{bottom:8.460000px;}
.y689{bottom:9.000000px;}
.y591{bottom:9.900000px;}
.y1af{bottom:10.260000px;}
.y194{bottom:10.620000px;}
.y58f{bottom:10.800000px;}
.y19d{bottom:11.160000px;}
.y212{bottom:12.240000px;}
.y66d{bottom:12.600000px;}
.y1f0{bottom:12.960000px;}
.y27a{bottom:14.220000px;}
.y49d{bottom:14.400000px;}
.y1ad{bottom:14.445000px;}
.y1ce{bottom:15.120000px;}
.y614{bottom:15.660000px;}
.y611{bottom:16.020000px;}
.y657{bottom:16.200000px;}
.y271{bottom:16.380000px;}
.y1a8{bottom:16.740000px;}
.y2ad{bottom:16.770000px;}
.y1e6{bottom:16.920000px;}
.y261{bottom:17.100000px;}
.y199{bottom:17.280000px;}
.y190{bottom:17.460000px;}
.y1fd{bottom:17.640000px;}
.y353{bottom:18.180000px;}
.y2ab{bottom:18.360000px;}
.y28a{bottom:18.540000px;}
.y26f{bottom:18.720000px;}
.y45d{bottom:18.750000px;}
.y27c{bottom:18.900000px;}
.y243{bottom:19.080000px;}
.y259{bottom:19.800000px;}
.y3ca{bottom:19.980000px;}
.y4da{bottom:20.010000px;}
.y545{bottom:20.205000px;}
.y5e6{bottom:20.340000px;}
.y5be{bottom:20.880000px;}
.y1ec{bottom:21.240000px;}
.y68e{bottom:21.960000px;}
.y408{bottom:22.500000px;}
.y288{bottom:22.680000px;}
.y60c{bottom:22.725000px;}
.y66f{bottom:22.860000px;}
.y673{bottom:22.890000px;}
.y2a4{bottom:23.040000px;}
.y675{bottom:23.220000px;}
.y1fb{bottom:23.400000px;}
.y371{bottom:23.580000px;}
.y68a{bottom:23.760000px;}
.y247{bottom:23.940000px;}
.y21e{bottom:24.120000px;}
.y64e{bottom:24.345000px;}
.y180{bottom:24.660000px;}
.y694{bottom:24.690000px;}
.y63d{bottom:24.840000px;}
.y5ce{bottom:25.020000px;}
.y61b{bottom:25.065000px;}
.y5e1{bottom:25.200000px;}
.y256{bottom:26.280000px;}
.y5e3{bottom:26.640000px;}
.y450{bottom:26.820000px;}
.y3bb{bottom:26.850000px;}
.y245{bottom:27.000000px;}
.y1da{bottom:27.180000px;}
.y638{bottom:27.210000px;}
.y20f{bottom:27.360000px;}
.y1c3{bottom:27.540000px;}
.y1e9{bottom:28.080000px;}
.y620{bottom:28.254000px;}
.y22b{bottom:28.260000px;}
.y217{bottom:28.440000px;}
.y5e9{bottom:28.620000px;}
.y500{bottom:28.980000px;}
.y1c8{bottom:29.160000px;}
.y4fd{bottom:29.190000px;}
.y504{bottom:29.205000px;}
.y430{bottom:29.340000px;}
.y36f{bottom:29.520000px;}
.y29f{bottom:29.700000px;}
.y62e{bottom:30.060000px;}
.y439{bottom:30.420000px;}
.y18d{bottom:30.780000px;}
.y197{bottom:30.960000px;}
.y627{bottom:31.140000px;}
.y4cf{bottom:31.320000px;}
.y5d0{bottom:31.680000px;}
.y251{bottom:32.040000px;}
.y278{bottom:32.220000px;}
.y5e4{bottom:32.400000px;}
.y62a{bottom:32.580000px;}
.y34b{bottom:32.940000px;}
.y1f8{bottom:32.985000px;}
.y5db{bottom:33.840000px;}
.y34f{bottom:34.020000px;}
.y1ac{bottom:35.145000px;}
.y5df{bottom:37.260000px;}
.y1a7{bottom:37.440000px;}
.y260{bottom:37.800000px;}
.y640{bottom:38.880000px;}
.y2aa{bottom:39.060000px;}
.y26e{bottom:39.420000px;}
.y242{bottom:39.780000px;}
.y610{bottom:39.960000px;}
.y356{bottom:40.140000px;}
.y46a{bottom:40.500000px;}
.y45c{bottom:40.530000px;}
.y647{bottom:41.400000px;}
.y650{bottom:41.580000px;}
.y443{bottom:41.760000px;}
.y3ed{bottom:41.940000px;}
.y4e5{bottom:41.970000px;}
.y5d9{bottom:42.480000px;}
.y287{bottom:43.380000px;}
.y1fa{bottom:44.100000px;}
.y66e{bottom:44.820000px;}
.y672{bottom:44.850000px;}
.y679{bottom:45.000000px;}
.y5d2{bottom:45.180000px;}
.y187{bottom:45.360000px;}
.y693{bottom:45.390000px;}
.y28c{bottom:45.405000px;}
.y407{bottom:45.750000px;}
.y60b{bottom:46.665000px;}
.y255{bottom:46.980000px;}
.y1d9{bottom:47.880000px;}
.y20e{bottom:48.060000px;}
.y64d{bottom:48.105000px;}
.y1c2{bottom:48.240000px;}
.y1e8{bottom:48.780000px;}
.y3ba{bottom:48.810000px;}
.y22a{bottom:48.960000px;}
.y216{bottom:49.140000px;}
.y1c7{bottom:49.860000px;}
.y29e{bottom:50.400000px;}
.y42f{bottom:51.300000px;}
.y34a{bottom:51.840000px;}
.y438{bottom:52.380000px;}
.y5e8{bottom:52.560000px;}
.y250{bottom:52.740000px;}
.y277{bottom:52.920000px;}
.y4fc{bottom:52.950000px;}
.y503{bottom:52.965000px;}
.y1f7{bottom:53.685000px;}
.y62d{bottom:53.820000px;}
.y3ad{bottom:54.390000px;}
.y5d7{bottom:54.540000px;}
.y605{bottom:54.585000px;}
.y607{bottom:55.080000px;}
.y64a{bottom:55.110000px;}
.y3c9{bottom:55.800000px;}
.y1ab{bottom:55.845000px;}
.y61f{bottom:55.974000px;}
.y63b{bottom:56.160000px;}
.y625{bottom:56.205000px;}
.y352{bottom:56.340000px;}
.y3f6{bottom:56.700000px;}
.y417{bottom:56.880000px;}
.y54e{bottom:56.910000px;}
.y5cc{bottom:57.240000px;}
.y14{bottom:57.420000px;}
.y1a6{bottom:58.140000px;}
.y544{bottom:58.725000px;}
.y509{bottom:58.890000px;}
.y355{bottom:59.220000px;}
.y2a9{bottom:59.760000px;}
.y26d{bottom:60.120000px;}
.y241{bottom:60.480000px;}
.y68d{bottom:60.705000px;}
.y5de{bottom:61.200000px;}
.y692{bottom:61.560000px;}
.y63f{bottom:62.820000px;}
.y613{bottom:63.180000px;}
.y442{bottom:63.720000px;}
.y4eb{bottom:63.765000px;}
.y3ec{bottom:63.930000px;}
.y286{bottom:64.080000px;}
.y646{bottom:65.160000px;}
.y2a1{bottom:65.340000px;}
.y186{bottom:66.060000px;}
.y23e{bottom:66.105000px;}
.y671{bottom:66.810000px;}
.y5e0{bottom:66.960000px;}
.y674{bottom:67.170000px;}
.y67a{bottom:67.320000px;}
.y254{bottom:67.725000px;}
.y1d8{bottom:68.580000px;}
.y20d{bottom:68.760000px;}
.y1c1{bottom:68.805000px;}
.y406{bottom:68.970000px;}
.y229{bottom:69.660000px;}
.y215{bottom:69.840000px;}
.y60a{bottom:70.425000px;}
.y1c6{bottom:70.560000px;}
.y44f{bottom:70.740000px;}
.y576{bottom:70.770000px;}
.y349{bottom:70.920000px;}
.y29d{bottom:71.145000px;}
.y5eb{bottom:71.820000px;}
.y34e{bottom:72.000000px;}
.y42e{bottom:73.260000px;}
.y24f{bottom:73.440000px;}
.y437{bottom:74.340000px;}
.y1f6{bottom:74.385000px;}
.y36e{bottom:74.730000px;}
.y351{bottom:75.420000px;}
.y5d1{bottom:76.365000px;}
.y5cb{bottom:76.500000px;}
.y1aa{bottom:76.545000px;}
.y4ff{bottom:76.680000px;}
.y4fb{bottom:76.710000px;}
.y502{bottom:76.725000px;}
.y45b{bottom:77.610000px;}
.y497{bottom:77.760000px;}
.y62c{bottom:77.805000px;}
.y354{bottom:78.120000px;}
.y5d6{bottom:78.510000px;}
.y604{bottom:78.525000px;}
.y1a5{bottom:78.840000px;}
.y525{bottom:78.870000px;}
.y649{bottom:79.050000px;}
.y624{bottom:79.965000px;}
.y5ff{bottom:80.280000px;}
.y393{bottom:80.670000px;}
.y26c{bottom:80.820000px;}
.y5d8{bottom:84.270000px;}
.y1d5{bottom:84.780000px;}
.y285{bottom:84.825000px;}
.y5dd{bottom:85.005000px;}
.y441{bottom:85.680000px;}
.y4ea{bottom:85.725000px;}
.y4e4{bottom:85.890000px;}
.y643{bottom:86.580000px;}
.y185{bottom:86.625000px;}
.y1e5{bottom:86.760000px;}
.y23d{bottom:86.805000px;}
.y61e{bottom:87.114000px;}
.y63a{bottom:87.150000px;}
.y253{bottom:88.425000px;}
.y645{bottom:89.100000px;}
.y1d7{bottom:89.280000px;}
.y20c{bottom:89.460000px;}
.y1c0{bottom:89.505000px;}
.y348{bottom:89.820000px;}
.y37d{bottom:89.850000px;}
.y3ac{bottom:90.210000px;}
.y228{bottom:90.360000px;}
.y214{bottom:90.540000px;}
.y34d{bottom:90.900000px;}
.y1c5{bottom:91.260000px;}
.y3c8{bottom:91.470000px;}
.y29c{bottom:91.845000px;}
.y405{bottom:92.010000px;}
.y44e{bottom:92.700000px;}
.y3f5{bottom:93.780000px;}
.y54d{bottom:93.810000px;}
.y5a7{bottom:93.990000px;}
.y24e{bottom:94.140000px;}
.y1f5{bottom:95.085000px;}
.y42d{bottom:95.220000px;}
.y436{bottom:96.300000px;}
.y508{bottom:97.590000px;}
.y26a{bottom:99.045000px;}
.y1a4{bottom:99.585000px;}
.y68c{bottom:100.305000px;}
.y3eb{bottom:100.830000px;}
.y691{bottom:101.520000px;}
.y5d5{bottom:102.270000px;}
.y603{bottom:102.285000px;}
.y623{bottom:103.725000px;}
.y36d{bottom:104.970000px;}
.y22f{bottom:105.345000px;}
.y1d4{bottom:105.480000px;}
.y284{bottom:105.525000px;}
.y184{bottom:107.325000px;}
.y1e4{bottom:107.460000px;}
.y23c{bottom:107.505000px;}
.y440{bottom:107.640000px;}
.y4e9{bottom:107.685000px;}
.y4d9{bottom:107.820000px;}
.y4e3{bottom:107.850000px;}
.y347{bottom:108.720000px;}
.y34c{bottom:109.980000px;}
.y20b{bottom:110.160000px;}
.y1bf{bottom:110.205000px;}
.y642{bottom:110.340000px;}
.y63e{bottom:110.385000px;}
.y227{bottom:111.060000px;}
.y282{bottom:111.240000px;}
.y29b{bottom:112.545000px;}
.y45a{bottom:114.510000px;}
.y453{bottom:114.660000px;}
.y24d{bottom:114.840000px;}
.y404{bottom:115.230000px;}
.y5bb{bottom:115.770000px;}
.y1f4{bottom:115.785000px;}
.y42c{bottom:117.225000px;}
.y435{bottom:118.290000px;}
.y269{bottom:119.745000px;}
.y37c{bottom:120.090000px;}
.y1a3{bottom:120.285000px;}
.y3ea{bottom:122.790000px;}
.y690{bottom:125.820000px;}
.y3ab{bottom:125.850000px;}
.y22e{bottom:126.045000px;}
.y1d3{bottom:126.180000px;}
.y3c7{bottom:127.290000px;}
.y183{bottom:128.025000px;}
.y1e3{bottom:128.160000px;}
.y23b{bottom:128.205000px;}
.y43f{bottom:129.600000px;}
.y4e8{bottom:129.645000px;}
.y4d8{bottom:129.780000px;}
.y4e2{bottom:129.810000px;}
.y112{bottom:130.680000px;}
.y554{bottom:130.710000px;}
.y20a{bottom:130.860000px;}
.y54c{bottom:130.890000px;}
.y1be{bottom:130.905000px;}
.y226{bottom:131.760000px;}
.y281{bottom:131.940000px;}
.y29a{bottom:133.245000px;}
.y13{bottom:134.460000px;}
.y446{bottom:134.640000px;}
.y36c{bottom:135.210000px;}
.y155{bottom:135.360000px;}
.y24c{bottom:135.540000px;}
.y507{bottom:136.470000px;}
.y1f3{bottom:136.485000px;}
.y452{bottom:136.650000px;}
.y44d{bottom:136.800000px;}
.y2df{bottom:137.520000px;}
.y403{bottom:138.450000px;}
.y16c{bottom:138.600000px;}
.y49c{bottom:138.645000px;}
.y42b{bottom:139.185000px;}
.y434{bottom:140.250000px;}
.y268{bottom:140.445000px;}
.y4f{bottom:140.760000px;}
.y4de{bottom:140.940000px;}
.y1a2{bottom:140.985000px;}
.y3ae{bottom:141.120000px;}
.yf1{bottom:141.660000px;}
.ya3{bottom:142.380000px;}
.y5a9{bottom:142.740000px;}
.y2ae{bottom:142.920000px;}
.y3cc{bottom:143.280000px;}
.y5f3{bottom:143.316000px;}
.y555{bottom:144.180000px;}
.y244{bottom:144.720000px;}
.y3e9{bottom:144.750000px;}
.y4b2{bottom:145.080000px;}
.y297{bottom:145.980000px;}
.y630{bottom:146.376000px;}
.y168{bottom:146.520000px;}
.y22d{bottom:146.745000px;}
.y1d2{bottom:146.880000px;}
.y54a{bottom:147.060000px;}
.y538{bottom:147.240000px;}
.y61d{bottom:147.276000px;}
.y424{bottom:147.420000px;}
.y111{bottom:147.780000px;}
.y1e2{bottom:148.860000px;}
.y23a{bottom:148.905000px;}
.y49a{bottom:149.400000px;}
.y292{bottom:149.445000px;}
.y21c{bottom:149.580000px;}
.y602{bottom:149.805000px;}
.y4ed{bottom:149.940000px;}
.y19b{bottom:150.300000px;}
.y37b{bottom:150.330000px;}
.y459{bottom:151.410000px;}
.y209{bottom:151.560000px;}
.y1bd{bottom:151.605000px;}
.y4dd{bottom:151.740000px;}
.y4e1{bottom:151.770000px;}
.y43e{bottom:151.785000px;}
.y1ca{bottom:152.280000px;}
.y655{bottom:152.460000px;}
.y225{bottom:152.505000px;}
.y280{bottom:152.640000px;}
.y60d{bottom:153.570000px;}
.y299{bottom:153.945000px;}
.y50a{bottom:154.440000px;}
.y53a{bottom:155.340000px;}
.y394{bottom:155.700000px;}
.y24b{bottom:156.285000px;}
.y577{bottom:156.780000px;}
.y575{bottom:157.170000px;}
.y392{bottom:157.500000px;}
.yb4{bottom:158.760000px;}
.y11c{bottom:159.480000px;}
.y524{bottom:159.690000px;}
.y3f8{bottom:160.380000px;}
.y1ee{bottom:160.740000px;}
.y35a{bottom:160.920000px;}
.y267{bottom:161.145000px;}
.y42a{bottom:161.325000px;}
.ye4{bottom:161.460000px;}
.y3aa{bottom:161.490000px;}
.y1a1{bottom:161.685000px;}
.y38a{bottom:162.180000px;}
.y2cb{bottom:162.720000px;}
.y3c6{bottom:162.930000px;}
.y695{bottom:163.080000px;}
.y387{bottom:163.260000px;}
.y483{bottom:164.340000px;}
.y384{bottom:164.520000px;}
.y110{bottom:165.420000px;}
.y36b{bottom:165.450000px;}
.y588{bottom:165.780000px;}
.y154{bottom:166.320000px;}
.y4d7{bottom:166.680000px;}
.y3e8{bottom:166.710000px;}
.y5f2{bottom:167.250000px;}
.y1d1{bottom:167.580000px;}
.y46f{bottom:167.760000px;}
.y416{bottom:167.790000px;}
.y3f4{bottom:167.805000px;}
.y64f{bottom:168.150000px;}
.y2de{bottom:168.660000px;}
.y1e1{bottom:169.560000px;}
.y239{bottom:169.605000px;}
.y543{bottom:169.785000px;}
.y56a{bottom:169.920000px;}
.y499{bottom:170.100000px;}
.y4b1{bottom:170.280000px;}
.y296{bottom:170.460000px;}
.y264{bottom:170.820000px;}
.y10f{bottom:171.360000px;}
.y126{bottom:171.540000px;}
.y30f{bottom:171.720000px;}
.y4e{bottom:172.260000px;}
.y1bc{bottom:172.305000px;}
.yf0{bottom:172.620000px;}
.y224{bottom:173.205000px;}
.ya2{bottom:173.340000px;}
.y27f{bottom:173.385000px;}
.y2e1{bottom:173.520000px;}
.y563{bottom:173.880000px;}
.y5ba{bottom:174.450000px;}
.y92{bottom:174.600000px;}
.y12{bottom:174.960000px;}
.y506{bottom:175.170000px;}
.y654{bottom:176.220000px;}
.y402{bottom:176.610000px;}
.y24a{bottom:176.985000px;}
.y433{bottom:177.330000px;}
.y167{bottom:177.480000px;}
.y291{bottom:177.705000px;}
.y561{bottom:178.380000px;}
.y5a6{bottom:178.770000px;}
.y4cb{bottom:180.540000px;}
.y37a{bottom:180.570000px;}
.y4ee{bottom:181.080000px;}
.y359{bottom:181.620000px;}
.y523{bottom:181.650000px;}
.y266{bottom:181.845000px;}
.y445{bottom:183.240000px;}
.y10e{bottom:184.320000px;}
.yc2{bottom:184.500000px;}
.y5dc{bottom:186.330000px;}
.y62f{bottom:187.230000px;}
.yd6{bottom:187.740000px;}
.y132{bottom:188.460000px;}
.y458{bottom:188.490000px;}
.y4dc{bottom:188.640000px;}
.y3e7{bottom:188.670000px;}
.y43d{bottom:188.685000px;}
.yb3{bottom:189.720000px;}
.y25d{bottom:190.260000px;}
.y275{bottom:190.290000px;}
.y238{bottom:190.305000px;}
.y11b{bottom:190.620000px;}
.y4cc{bottom:190.980000px;}
.y5f1{bottom:191.010000px;}
.ye3{bottom:192.600000px;}
.y208{bottom:192.960000px;}
.y1bb{bottom:193.005000px;}
.y21a{bottom:193.320000px;}
.y2ca{bottom:193.860000px;}
.y223{bottom:193.905000px;}
.y574{bottom:194.070000px;}
.y27e{bottom:194.085000px;}
.y448{bottom:194.220000px;}
.y2f{bottom:195.480000px;}
.y4b0{bottom:195.660000px;}
.y423{bottom:196.020000px;}
.y19a{bottom:196.380000px;}
.y290{bottom:196.965000px;}
.y2f9{bottom:197.280000px;}
.y3a9{bottom:197.310000px;}
.y153{bottom:197.460000px;}
.y5b9{bottom:197.490000px;}
.y2ac{bottom:198.180000px;}
.y429{bottom:198.225000px;}
.y3c5{bottom:198.570000px;}
.yf9{bottom:199.620000px;}
.y401{bottom:199.650000px;}
.y494{bottom:200.205000px;}
.y653{bottom:200.700000px;}
.y498{bottom:202.140000px;}
.y590{bottom:202.530000px;}
.y125{bottom:202.710000px;}
.y30e{bottom:202.890000px;}
.y4d{bottom:203.610000px;}
.yef{bottom:203.790000px;}
.y75{bottom:204.510000px;}
.y415{bottom:204.690000px;}
.y3f3{bottom:204.705000px;}
.y549{bottom:204.870000px;}
.y91{bottom:205.590000px;}
.y61c{bottom:207.210000px;}
.y166{bottom:208.650000px;}
.y535{bottom:209.730000px;}
.y36a{bottom:210.630000px;}
.y25c{bottom:210.960000px;}
.y274{bottom:210.990000px;}
.y237{bottom:211.005000px;}
.y207{bottom:213.660000px;}
.y11{bottom:213.690000px;}
.y1ba{bottom:213.705000px;}
.y62b{bottom:213.870000px;}
.y505{bottom:214.050000px;}
.y263{bottom:214.590000px;}
.y222{bottom:214.605000px;}
.y5f0{bottom:214.770000px;}
.yc1{bottom:215.670000px;}
.y5a5{bottom:215.850000px;}
.y28f{bottom:215.865000px;}
.y13c{bottom:216.750000px;}
.y358{bottom:217.470000px;}
.yd5{bottom:218.730000px;}
.y131{bottom:219.450000px;}
.yb2{bottom:220.890000px;}
.y11a{bottom:221.610000px;}
.y4ec{bottom:221.790000px;}
.y198{bottom:222.150000px;}
.y400{bottom:222.870000px;}
.y422{bottom:223.230000px;}
.ye2{bottom:223.590000px;}
.y541{bottom:225.030000px;}
.y457{bottom:225.390000px;}
.y652{bottom:225.750000px;}
.y152{bottom:228.450000px;}
.y43b{bottom:228.645000px;}
.y33b{bottom:228.990000px;}
.y295{bottom:229.350000px;}
.y482{bottom:230.430000px;}
.yf8{bottom:230.610000px;}
.y2dd{bottom:230.790000px;}
.y25b{bottom:231.690000px;}
.y236{bottom:231.705000px;}
.y3e6{bottom:232.770000px;}
.y3a8{bottom:232.950000px;}
.y218{bottom:233.130000px;}
.y124{bottom:233.670000px;}
.y32c{bottom:233.850000px;}
.y3c4{bottom:234.210000px;}
.y206{bottom:234.390000px;}
.y1b9{bottom:234.405000px;}
.yee{bottom:234.750000px;}
.y4c{bottom:234.930000px;}
.y28e{bottom:234.945000px;}
.y221{bottom:235.305000px;}
.ya1{bottom:235.470000px;}
.y74{bottom:235.650000px;}
.y4d6{bottom:237.090000px;}
.y493{bottom:237.105000px;}
.y46e{bottom:237.810000px;}
.y2c9{bottom:239.790000px;}
.y357{bottom:239.970000px;}
.y522{bottom:240.690000px;}
.y4ca{bottom:241.050000px;}
.y2e{bottom:241.590000px;}
.y55d{bottom:241.605000px;}
.y414{bottom:241.770000px;}
.y68f{bottom:243.390000px;}
.y469{bottom:243.405000px;}
.y58e{bottom:244.470000px;}
.y240{bottom:246.090000px;}
.yc0{bottom:246.630000px;}
.y10{bottom:247.170000px;}
.y456{bottom:247.395000px;}
.y90{bottom:247.890000px;}
.y2a8{bottom:249.510000px;}
.yd4{bottom:249.690000px;}
.y17d{bottom:249.870000px;}
.y130{bottom:250.590000px;}
.y43a{bottom:250.605000px;}
.y444{bottom:251.490000px;}
.yb1{bottom:251.850000px;}
.y235{bottom:252.405000px;}
.y3f2{bottom:252.585000px;}
.y5ef{bottom:253.650000px;}
.y28d{bottom:253.845000px;}
.ye1{bottom:254.730000px;}
.y205{bottom:255.090000px;}
.y1b8{bottom:255.105000px;}
.y369{bottom:255.810000px;}
.y1eb{bottom:257.430000px;}
.y27b{bottom:258.510000px;}
.y5b8{bottom:258.870000px;}
.y4d5{bottom:259.095000px;}
.y151{bottom:259.590000px;}
.y33a{bottom:259.950000px;}
.y48b{bottom:260.670000px;}
.y4af{bottom:261.210000px;}
.yf7{bottom:261.750000px;}
.y496{bottom:262.110000px;}
.y421{bottom:262.290000px;}
.y378{bottom:263.910000px;}
.y123{bottom:264.810000px;}
.y32b{bottom:264.990000px;}
.y64c{bottom:265.170000px;}
.yed{bottom:265.890000px;}
.y61a{bottom:266.070000px;}
.y4b{bottom:266.430000px;}
.y73{bottom:266.610000px;}
.y350{bottom:267.330000px;}
.y10d{bottom:267.690000px;}
.y3ff{bottom:269.130000px;}
.y67b{bottom:269.310000px;}
.y119{bottom:269.850000px;}
.y3c3{bottom:270.030000px;}
.y2c8{bottom:270.930000px;}
.y540{bottom:271.110000px;}
.y213{bottom:272.190000px;}
.y2d{bottom:272.550000px;}
.yf{bottom:272.910000px;}
.y234{bottom:273.105000px;}
.y262{bottom:273.450000px;}
.y492{bottom:274.005000px;}
.y204{bottom:275.790000px;}
.y1b7{bottom:275.805000px;}
.y3e5{bottom:276.690000px;}
.y2f8{bottom:277.410000px;}
.y5ee{bottom:277.455000px;}
.y521{bottom:277.590000px;}
.ybf{bottom:277.770000px;}
.y481{bottom:278.310000px;}
.y413{bottom:278.670000px;}
.y55c{bottom:278.685000px;}
.y13b{bottom:278.850000px;}
.y46d{bottom:279.210000px;}
.y4c9{bottom:280.110000px;}
.y600{bottom:280.335000px;}
.y294{bottom:280.650000px;}
.yfa{bottom:280.830000px;}
.y54b{bottom:281.010000px;}
.y12f{bottom:281.550000px;}
.y5b7{bottom:282.090000px;}
.yb0{bottom:282.990000px;}
.y455{bottom:283.395000px;}
.ye0{bottom:285.690000px;}
.y58d{bottom:287.490000px;}
.y17c{bottom:288.930000px;}
.y666{bottom:289.110000px;}
.y391{bottom:289.650000px;}
.y3f1{bottom:289.665000px;}
.y150{bottom:290.550000px;}
.y339{bottom:291.090000px;}
.yf6{bottom:292.710000px;}
.y2dc{bottom:292.890000px;}
.y233{bottom:293.835000px;}
.y55f{bottom:295.050000px;}
.yd3{bottom:295.770000px;}
.y32a{bottom:295.950000px;}
.y203{bottom:296.490000px;}
.y1b6{bottom:296.535000px;}
.y53f{bottom:296.670000px;}
.ya0{bottom:297.570000px;}
.y4a{bottom:297.750000px;}
.y425{bottom:297.930000px;}
.y4d4{bottom:297.975000px;}
.y3e4{bottom:298.695000px;}
.y520{bottom:299.595000px;}
.y46c{bottom:299.910000px;}
.y412{bottom:300.630000px;}
.y324{bottom:300.990000px;}
.y368{bottom:301.215000px;}
.y4ae{bottom:301.530000px;}
.y2c7{bottom:301.890000px;}
.y5da{bottom:303.015000px;}
.y2c{bottom:303.690000px;}
.y5b6{bottom:305.175000px;}
.y58a{bottom:305.535000px;}
.y3c2{bottom:305.715000px;}
.y43c{bottom:306.930000px;}
.y3a5{bottom:307.335000px;}
.y2f7{bottom:308.550000px;}
.ybe{bottom:308.730000px;}
.y5a4{bottom:308.775000px;}
.y1e7{bottom:308.910000px;}
.y377{bottom:309.090000px;}
.y279{bottom:309.270000px;}
.y572{bottom:309.495000px;}
.y13a{bottom:309.990000px;}
.y491{bottom:311.085000px;}
.y480{bottom:311.250000px;}
.y3f0{bottom:311.625000px;}
.y8f{bottom:311.790000px;}
.y12e{bottom:312.690000px;}
.y420{bottom:313.410000px;}
.y10b{bottom:313.770000px;}
.y30d{bottom:313.950000px;}
.y2a7{bottom:314.535000px;}
.y553{bottom:315.570000px;}
.y55b{bottom:315.585000px;}
.y548{bottom:315.750000px;}
.y557{bottom:315.795000px;}
.ydf{bottom:316.830000px;}
.y202{bottom:317.190000px;}
.y1b5{bottom:317.235000px;}
.ye{bottom:317.370000px;}
.y454{bottom:319.035000px;}
.y10c{bottom:320.610000px;}
.y14f{bottom:321.690000px;}
.yf5{bottom:323.850000px;}
.y629{bottom:324.075000px;}
.y25f{bottom:324.930000px;}
.y665{bottom:326.190000px;}
.y4ad{bottom:326.730000px;}
.y122{bottom:326.910000px;}
.y329{bottom:327.090000px;}
.y589{bottom:327.495000px;}
.y118{bottom:327.990000px;}
.y3a4{bottom:328.035000px;}
.y5b5{bottom:328.395000px;}
.y72{bottom:328.710000px;}
.y3ef{bottom:328.725000px;}
.yaf{bottom:328.890000px;}
.y49{bottom:329.070000px;}
.y63c{bottom:329.475000px;}
.y58c{bottom:329.970000px;}
.y3fe{bottom:330.555000px;}
.y5a3{bottom:330.735000px;}
.y367{bottom:331.275000px;}
.y323{bottom:331.950000px;}
.y2c6{bottom:333.030000px;}
.y2b{bottom:334.650000px;}
.y2a6{bottom:335.235000px;}
.y3e3{bottom:335.595000px;}
.y53e{bottom:335.730000px;}
.y51f{bottom:336.495000px;}
.y195{bottom:336.630000px;}
.y201{bottom:337.890000px;}
.y1b4{bottom:337.935000px;}
.y23f{bottom:338.250000px;}
.y4c8{bottom:338.610000px;}
.y376{bottom:339.375000px;}
.y2f6{bottom:339.510000px;}
.ybd{bottom:339.870000px;}
.y338{bottom:340.050000px;}
.y5ed{bottom:340.455000px;}
.y139{bottom:340.950000px;}
.y46b{bottom:341.310000px;}
.y3c1{bottom:341.355000px;}
.yd2{bottom:341.850000px;}
.yd{bottom:342.750000px;}
.y8e{bottom:342.930000px;}
.y33e{bottom:343.110000px;}
.y12d{bottom:343.650000px;}
.y47f{bottom:344.190000px;}
.y10a{bottom:344.730000px;}
.y30c{bottom:345.090000px;}
.y64b{bottom:345.135000px;}
.y17b{bottom:347.070000px;}
.yde{bottom:347.790000px;}
.y490{bottom:347.985000px;}
.y678{bottom:349.950000px;}
.y4ac{bottom:351.930000px;}
.y14e{bottom:352.650000px;}
.y55a{bottom:352.665000px;}
.y552{bottom:352.695000px;}
.y3fd{bottom:353.775000px;}
.y5ca{bottom:354.630000px;}
.yf4{bottom:354.810000px;}
.y571{bottom:355.575000px;}
.y2a5{bottom:355.935000px;}
.y619{bottom:357.015000px;}
.y3e2{bottom:357.555000px;}
.y293{bottom:357.690000px;}
.y121{bottom:357.870000px;}
.y41f{bottom:358.050000px;}
.y276{bottom:358.230000px;}
.y200{bottom:358.590000px;}
.y1b3{bottom:358.635000px;}
.y117{bottom:358.950000px;}
.y411{bottom:359.310000px;}
.y9f{bottom:359.670000px;}
.y71{bottom:359.850000px;}
.y48{bottom:360.570000px;}
.y390{bottom:360.930000px;}
.y366{bottom:361.515000px;}
.y319{bottom:363.090000px;}
.y3a3{bottom:363.855000px;}
.y2c5{bottom:363.990000px;}
.y2a{bottom:365.790000px;}
.y5b4{bottom:366.555000px;}
.y45e{bottom:367.050000px;}
.y609{bottom:367.815000px;}
.y375{bottom:369.615000px;}
.y16b{bottom:369.750000px;}
.y2f5{bottom:370.650000px;}
.y337{bottom:371.190000px;}
.y2db{bottom:371.550000px;}
.y138{bottom:372.090000px;}
.y58b{bottom:372.450000px;}
.yd1{bottom:372.990000px;}
.y8d{bottom:373.890000px;}
.yae{bottom:374.970000px;}
.y664{bottom:375.690000px;}
.y109{bottom:375.870000px;}
.y30b{bottom:376.050000px;}
.yc{bottom:376.410000px;}
.y3fc{bottom:376.815000px;}
.y193{bottom:376.950000px;}
.y3c0{bottom:377.175000px;}
.y4ab{bottom:377.310000px;}
.y41e{bottom:377.490000px;}
.y570{bottom:377.535000px;}
.y17a{bottom:378.210000px;}
.y5c9{bottom:378.390000px;}
.y165{bottom:378.750000px;}
.y3e1{bottom:379.515000px;}
.y51e{bottom:380.595000px;}
.y618{bottom:380.775000px;}
.y5ec{bottom:381.135000px;}
.y38f{bottom:381.630000px;}
.y1b2{bottom:381.810000px;}
.y410{bottom:382.395000px;}
.y14d{bottom:383.790000px;}
.y48f{bottom:385.065000px;}
.ybc{bottom:385.950000px;}
.y639{bottom:385.995000px;}
.y5d4{bottom:386.715000px;}
.y68b{bottom:387.030000px;}
.y4e7{bottom:388.830000px;}
.y120{bottom:389.010000px;}
.y33d{bottom:389.190000px;}
.y12c{bottom:389.730000px;}
.y5a2{bottom:389.775000px;}
.y116{bottom:390.090000px;}
.y70{bottom:390.810000px;}
.y232{bottom:391.170000px;}
.y586{bottom:391.395000px;}
.y365{bottom:391.755000px;}
.y47{bottom:391.890000px;}
.y559{bottom:391.905000px;}
.y551{bottom:391.935000px;}
.y547{bottom:392.070000px;}
.y556{bottom:392.115000px;}
.y47e{bottom:392.250000px;}
.ydd{bottom:393.870000px;}
.y318{bottom:394.050000px;}
.y25e{bottom:394.410000px;}
.y211{bottom:394.590000px;}
.y2c4{bottom:395.130000px;}
.y495{bottom:395.490000px;}
.y648{bottom:397.155000px;}
.y41d{bottom:398.190000px;}
.y3a2{bottom:399.495000px;}
.y374{bottom:399.855000px;}
.yf3{bottom:400.890000px;}
.y3e0{bottom:401.475000px;}
.y336{bottom:402.150000px;}
.y38e{bottom:402.330000px;}
.y4aa{bottom:402.510000px;}
.y51d{bottom:402.555000px;}
.y137{bottom:403.050000px;}
.y5fe{bottom:403.095000px;}
.yd0{bottom:403.950000px;}
.y617{bottom:404.535000px;}
.y8c{bottom:405.030000px;}
.y30a{bottom:407.190000px;}
.y2da{bottom:408.630000px;}
.y179{bottom:409.170000px;}
.y164{bottom:409.890000px;}
.y28b{bottom:410.610000px;}
.y29{bottom:411.690000px;}
.y5a1{bottom:411.735000px;}
.y322{bottom:412.050000px;}
.y4c7{bottom:412.590000px;}
.y3bf{bottom:412.815000px;}
.y663{bottom:412.950000px;}
.y628{bottom:412.995000px;}
.y585{bottom:413.535000px;}
.y56f{bottom:414.435000px;}
.y3a6{bottom:414.570000px;}
.y14c{bottom:414.750000px;}
.y41c{bottom:418.890000px;}
.y2f4{bottom:419.610000px;}
.y11f{bottom:419.970000px;}
.y40f{bottom:420.555000px;}
.y12b{bottom:420.690000px;}
.y192{bottom:420.870000px;}
.yad{bottom:421.050000px;}
.y6f{bottom:421.950000px;}
.y364{bottom:421.995000px;}
.y501{bottom:422.850000px;}
.y46{bottom:423.210000px;}
.y3df{bottom:423.435000px;}
.ydc{bottom:424.830000px;}
.y317{bottom:425.190000px;}
.yb{bottom:425.550000px;}
.y2c3{bottom:426.090000px;}
.y4a9{bottom:427.890000px;}
.y573{bottom:428.610000px;}
.y3fb{bottom:429.735000px;}
.y373{bottom:430.095000px;}
.ybb{bottom:431.850000px;}
.y9e{bottom:433.110000px;}
.y335{bottom:433.290000px;}
.y5a0{bottom:433.695000px;}
.y136{bottom:434.190000px;}
.ycf{bottom:435.090000px;}
.y8b{bottom:435.990000px;}
.y5b3{bottom:436.035000px;}
.y3a1{bottom:436.575000px;}
.y328{bottom:438.195000px;}
.y51c{bottom:439.455000px;}
.y41b{bottom:439.635000px;}
.y28{bottom:442.875000px;}
.y1ff{bottom:443.055000px;}
.y321{bottom:443.235000px;}
.y1e0{bottom:443.775000px;}
.y3de{bottom:445.395000px;}
.y14b{bottom:445.935000px;}
.y53d{bottom:446.655000px;}
.y25a{bottom:447.375000px;}
.y381{bottom:448.275000px;}
.y3be{bottom:448.455000px;}
.y5ea{bottom:449.385000px;}
.y38d{bottom:449.535000px;}
.y5c8{bottom:449.895000px;}
.y662{bottom:450.255000px;}
.y2f3{bottom:450.795000px;}
.y11e{bottom:451.155000px;}
.y4c6{bottom:451.335000px;}
.y12a{bottom:451.875000px;}
.yac{bottom:452.235000px;}
.y5fd{bottom:452.445000px;}
.y677{bottom:452.775000px;}
.y6e{bottom:452.955000px;}
.y4a8{bottom:453.135000px;}
.y45{bottom:454.755000px;}
.y178{bottom:455.295000px;}
.y59f{bottom:455.655000px;}
.ydb{bottom:456.015000px;}
.y309{bottom:456.195000px;}
.y2c2{bottom:457.275000px;}
.y47d{bottom:458.175000px;}
.y48e{bottom:458.895000px;}
.y5b2{bottom:459.255000px;}
.y584{bottom:459.435000px;}
.y41a{bottom:460.335000px;}
.y3a0{bottom:460.515000px;}
.y191{bottom:461.235000px;}
.ya{bottom:461.415000px;}
.yba{bottom:463.035000px;}
.y334{bottom:464.295000px;}
.y135{bottom:465.195000px;}
.y626{bottom:465.945000px;}
.yce{bottom:466.095000px;}
.y40e{bottom:466.995000px;}
.y8a{bottom:467.175000px;}
.y3dd{bottom:467.535000px;}
.y327{bottom:469.335000px;}
.y546{bottom:471.135000px;}
.y468{bottom:472.935000px;}
.y27{bottom:473.835000px;}
.y320{bottom:474.195000px;}
.y380{bottom:475.995000px;}
.y4c5{bottom:476.535000px;}
.y14a{bottom:476.895000px;}
.y4a7{bottom:478.335000px;}
.y606{bottom:479.265000px;}
.y56e{bottom:479.955000px;}
.y419{bottom:481.035000px;}
.y48d{bottom:481.395000px;}
.y3fa{bottom:481.575000px;}
.y2f2{bottom:481.755000px;}
.y11d{bottom:482.115000px;}
.y4e6{bottom:482.475000px;}
.y129{bottom:482.835000px;}
.y2d9{bottom:483.015000px;}
.yab{bottom:483.195000px;}
.y6d{bottom:484.095000px;}
.y4d3{bottom:484.125000px;}
.y39f{bottom:484.275000px;}
.y616{bottom:484.665000px;}
.y431{bottom:484.995000px;}
.y537{bottom:485.355000px;}
.y44{bottom:486.075000px;}
.yda{bottom:486.975000px;}
.y308{bottom:487.335000px;}
.y2c1{bottom:488.235000px;}
.y5c7{bottom:488.595000px;}
.y3dc{bottom:489.495000px;}
.y587{bottom:489.855000px;}
.y40d{bottom:490.215000px;}
.y539{bottom:491.295000px;}
.y53c{bottom:492.555000px;}
.yb9{bottom:493.995000px;}
.y389{bottom:494.355000px;}
.y38c{bottom:494.535000px;}
.y333{bottom:495.255000px;}
.y273{bottom:495.795000px;}
.y9d{bottom:496.335000px;}
.y386{bottom:497.055000px;}
.y9{bottom:497.235000px;}
.y363{bottom:497.415000px;}
.y383{bottom:497.775000px;}
.y89{bottom:498.135000px;}
.y51b{bottom:498.495000px;}
.y177{bottom:501.375000px;}
.y18f{bottom:501.555000px;}
.y418{bottom:501.735000px;}
.y4c4{bottom:501.915000px;}
.y4a6{bottom:503.715000px;}
.y37f{bottom:504.615000px;}
.y26{bottom:504.975000px;}
.y637{bottom:505.005000px;}
.y48c{bottom:505.155000px;}
.y31f{bottom:505.335000px;}
.y56d{bottom:505.365000px;}
.y3bd{bottom:506.055000px;}
.y583{bottom:506.595000px;}
.y149{bottom:508.035000px;}
.y644{bottom:508.605000px;}
.y467{bottom:508.755000px;}
.y5c6{bottom:512.535000px;}
.y2f1{bottom:512.895000px;}
.yec{bottom:513.255000px;}
.yaa{bottom:514.335000px;}
.y59e{bottom:514.545000px;}
.y108{bottom:515.055000px;}
.y43{bottom:517.395000px;}
.yd9{bottom:518.115000px;}
.y316{bottom:518.295000px;}
.y2c0{bottom:519.375000px;}
.y2d8{bottom:520.275000px;}
.y51a{bottom:520.455000px;}
.y5b1{bottom:520.635000px;}
.y5d3{bottom:520.665000px;}
.y39e{bottom:523.005000px;}
.y661{bottom:524.595000px;}
.yb8{bottom:525.135000px;}
.y128{bottom:525.315000px;}
.y615{bottom:525.345000px;}
.y3db{bottom:526.395000px;}
.y4c3{bottom:527.115000px;}
.y134{bottom:527.295000px;}
.y409{bottom:527.475000px;}
.ycd{bottom:528.195000px;}
.y4a5{bottom:528.915000px;}
.y88{bottom:529.275000px;}
.y466{bottom:529.455000px;}
.y6c{bottom:529.995000px;}
.y176{bottom:532.335000px;}
.yf2{bottom:533.235000px;}
.y676{bottom:533.415000px;}
.y4fe{bottom:534.675000px;}
.y25{bottom:535.935000px;}
.y307{bottom:536.295000px;}
.y40c{bottom:536.475000px;}
.y59d{bottom:536.505000px;}
.y3f9{bottom:537.225000px;}
.y148{bottom:538.995000px;}
.y451{bottom:539.175000px;}
.y8{bottom:540.615000px;}
.y56c{bottom:542.265000px;}
.y362{bottom:542.625000px;}
.y5fc{bottom:543.345000px;}
.y5b0{bottom:543.705000px;}
.y2f0{bottom:543.855000px;}
.yeb{bottom:544.215000px;}
.y332{bottom:544.395000px;}
.ya9{bottom:545.295000px;}
.y107{bottom:546.195000px;}
.y346{bottom:546.915000px;}
.y39d{bottom:546.945000px;}
.y534{bottom:547.815000px;}
.y3da{bottom:548.385000px;}
.y42{bottom:548.895000px;}
.yd8{bottom:549.075000px;}
.y326{bottom:549.255000px;}
.y465{bottom:550.200000px;}
.y612{bottom:551.985000px;}
.y18c{bottom:552.315000px;}
.y5e7{bottom:552.885000px;}
.y582{bottom:554.685000px;}
.y688{bottom:555.915000px;}
.y16a{bottom:556.095000px;}
.y37e{bottom:556.815000px;}
.y519{bottom:557.385000px;}
.y2d7{bottom:557.535000px;}
.y133{bottom:558.255000px;}
.y59c{bottom:558.465000px;}
.ycc{bottom:559.335000px;}
.y40b{bottom:559.695000px;}
.y5c5{bottom:560.055000px;}
.y87{bottom:560.235000px;}
.y6b{bottom:561.135000px;}
.y660{bottom:561.855000px;}
.y175{bottom:563.475000px;}
.yb7{bottom:564.195000px;}
.y2bf{bottom:565.455000px;}
.y5af{bottom:566.925000px;}
.y24{bottom:567.075000px;}
.y5fb{bottom:567.105000px;}
.y306{bottom:567.255000px;}
.y4a4{bottom:569.235000px;}
.y147{bottom:569.955000px;}
.y7{bottom:570.135000px;}
.y3d9{bottom:570.345000px;}
.y39c{bottom:570.705000px;}
.y464{bottom:571.980000px;}
.y47c{bottom:572.115000px;}
.y361{bottom:572.865000px;}
.y432{bottom:574.635000px;}
.yea{bottom:575.355000px;}
.ya8{bottom:576.255000px;}
.y581{bottom:577.005000px;}
.y106{bottom:577.155000px;}
.y622{bottom:577.185000px;}
.y4c2{bottom:577.695000px;}
.y550{bottom:579.315000px;}
.y41{bottom:580.215000px;}
.y59b{bottom:580.425000px;}
.y40a{bottom:582.735000px;}
.y56b{bottom:584.025000px;}
.y31e{bottom:585.255000px;}
.y533{bottom:585.795000px;}
.y127{bottom:588.315000px;}
.ycb{bottom:590.295000px;}
.y601{bottom:590.685000px;}
.y5fa{bottom:590.865000px;}
.y86{bottom:591.375000px;}
.y6a{bottom:592.095000px;}
.y3d8{bottom:592.305000px;}
.y2ef{bottom:592.815000px;}
.y518{bottom:594.285000px;}
.y174{bottom:594.435000px;}
.y169{bottom:595.335000px;}
.y636{bottom:595.725000px;}
.y305{bottom:598.395000px;}
.y580{bottom:598.965000px;}
.y372{bottom:599.295000px;}
.y687{bottom:600.375000px;}
.y146{bottom:601.095000px;}
.y59a{bottom:602.565000px;}
.y4c1{bottom:602.895000px;}
.y2d6{bottom:603.255000px;}
.y5ae{bottom:605.085000px;}
.ye9{bottom:606.315000px;}
.y331{bottom:606.495000px;}
.y115{bottom:607.395000px;}
.y105{bottom:608.295000px;}
.y463{bottom:608.880000px;}
.y39b{bottom:609.405000px;}
.y3b8{bottom:610.845000px;}
.yd7{bottom:611.175000px;}
.y2be{bottom:611.355000px;}
.y40{bottom:611.535000px;}
.y3d7{bottom:614.265000px;}
.y5f9{bottom:614.805000px;}
.y23{bottom:615.135000px;}
.y31d{bottom:616.395000px;}
.y517{bottom:616.425000px;}
.y360{bottom:618.045000px;}
.y635{bottom:619.665000px;}
.yca{bottom:621.255000px;}
.y6{bottom:621.795000px;}
.y85{bottom:622.335000px;}
.y532{bottom:622.875000px;}
.y69{bottom:623.235000px;}
.y2ee{bottom:623.955000px;}
.y18b{bottom:624.855000px;}
.y4c0{bottom:628.095000px;}
.y5ad{bottom:628.305000px;}
.y304{bottom:629.355000px;}
.y4f7{bottom:629.925000px;}
.y641{bottom:630.150000px;}
.y47b{bottom:630.795000px;}
.y145{bottom:632.055000px;}
.y39a{bottom:633.345000px;}
.y5cf{bottom:633.390000px;}
.y55e{bottom:634.935000px;}
.y3d6{bottom:636.225000px;}
.y5e5{bottom:637.170000px;}
.ye8{bottom:637.455000px;}
.y114{bottom:638.355000px;}
.y104{bottom:639.255000px;}
.y599{bottom:639.465000px;}
.y686{bottom:639.795000px;}
.y5c4{bottom:639.975000px;}
.y173{bottom:640.515000px;}
.y2bd{bottom:642.495000px;}
.y3f{bottom:643.035000px;}
.y634{bottom:643.470000px;}
.y57f{bottom:645.045000px;}
.y462{bottom:645.780000px;}
.y4fa{bottom:646.275000px;}
.y3b7{bottom:646.485000px;}
.y1de{bottom:646.635000px;}
.y31c{bottom:647.355000px;}
.y4a3{bottom:647.535000px;}
.y60f{bottom:647.790000px;}
.y35f{bottom:648.285000px;}
.y65f{bottom:648.435000px;}
.y2d5{bottom:649.335000px;}
.y4e0{bottom:649.515000px;}
.y670{bottom:650.955000px;}
.yc9{bottom:652.395000px;}
.y516{bottom:653.325000px;}
.y84{bottom:653.475000px;}
.y5f8{bottom:653.550000px;}
.y4f6{bottom:653.865000px;}
.y2e0{bottom:654.195000px;}
.y2ed{bottom:654.915000px;}
.y330{bottom:655.455000px;}
.y399{bottom:657.105000px;}
.y163{bottom:657.255000px;}
.y47a{bottom:657.975000px;}
.y5{bottom:658.155000px;}
.y3d5{bottom:658.185000px;}
.y531{bottom:659.775000px;}
.y303{bottom:660.495000px;}
.y598{bottom:661.425000px;}
.y144{bottom:663.195000px;}
.y22{bottom:664.275000px;}
.y3b9{bottom:665.715000px;}
.y57e{bottom:667.005000px;}
.y633{bottom:667.230000px;}
.ye7{bottom:668.415000px;}
.y68{bottom:669.315000px;}
.y113{bottom:669.495000px;}
.y4a2{bottom:672.195000px;}
.y2bc{bottom:673.485000px;}
.y3e{bottom:674.385000px;}
.y515{bottom:675.285000px;}
.y5f7{bottom:677.490000px;}
.y31b{bottom:678.525000px;}
.y4bf{bottom:678.705000px;}
.y685{bottom:679.245000px;}
.y3d4{bottom:680.325000px;}
.y5c3{bottom:680.505000px;}
.y398{bottom:680.865000px;}
.y5ac{bottom:681.045000px;}
.y3b6{bottom:682.305000px;}
.y461{bottom:682.860000px;}
.yc8{bottom:683.385000px;}
.y83{bottom:684.465000px;}
.y103{bottom:685.365000px;}
.y65e{bottom:685.725000px;}
.y18a{bottom:686.085000px;}
.y172{bottom:686.625000px;}
.y162{bottom:688.425000px;}
.y1d0{bottom:688.965000px;}
.y5e2{bottom:690.090000px;}
.y302{bottom:691.485000px;}
.y4f5{bottom:692.565000px;}
.y35e{bottom:693.465000px;}
.y143{bottom:694.185000px;}
.y4{bottom:694.365000px;}
.y2d4{bottom:695.445000px;}
.y289{bottom:696.345000px;}
.y4a1{bottom:696.705000px;}
.y5cd{bottom:696.750000px;}
.y530{bottom:696.885000px;}
.y479{bottom:697.065000px;}
.y514{bottom:697.245000px;}
.ye6{bottom:699.585000px;}
.y67{bottom:700.305000px;}
.y5f6{bottom:701.250000px;}
.y3d3{bottom:702.285000px;}
.y5c2{bottom:704.265000px;}
.y2bb{bottom:704.625000px;}
.y597{bottom:705.345000px;}
.y3d{bottom:705.885000px;}
.y632{bottom:706.470000px;}
.y558{bottom:707.505000px;}
.y315{bottom:709.485000px;}
.y21{bottom:710.385000px;}
.y258{bottom:712.185000px;}
.y621{bottom:713.490000px;}
.yc7{bottom:714.525000px;}
.y82{bottom:715.605000px;}
.y102{bottom:716.325000px;}
.y2ec{bottom:717.045000px;}
.y171{bottom:717.585000px;}
.y3b5{bottom:717.945000px;}
.y231{bottom:718.305000px;}
.y684{bottom:718.665000px;}
.y44c{bottom:718.890000px;}
.y4be{bottom:719.025000px;}
.y161{bottom:719.385000px;}
.y397{bottom:719.565000px;}
.y460{bottom:719.760000px;}
.y60e{bottom:720.150000px;}
.y301{bottom:722.625000px;}
.y65d{bottom:722.985000px;}
.y3{bottom:723.525000px;}
.y3d2{bottom:724.245000px;}
.y5f5{bottom:725.010000px;}
.y142{bottom:725.325000px;}
.y1dc{bottom:725.505000px;}
.y2d3{bottom:726.405000px;}
.y596{bottom:727.305000px;}
.y5c1{bottom:728.025000px;}
.ye5{bottom:730.545000px;}
.y4f4{bottom:731.310000px;}
.y66{bottom:731.445000px;}
.y189{bottom:732.165000px;}
.y52f{bottom:732.885000px;}
.y4d2{bottom:735.270000px;}
.y4a0{bottom:735.765000px;}
.y3c{bottom:737.205000px;}
.y513{bottom:738.105000px;}
.y35d{bottom:738.645000px;}
.y66b{bottom:739.365000px;}
.y44b{bottom:739.590000px;}
.y427{bottom:740.280000px;}
.y314{bottom:740.625000px;}
.y20{bottom:741.345000px;}
.y45f{bottom:741.720000px;}
.y4df{bottom:743.325000px;}
.yc6{bottom:745.485000px;}
.y3d1{bottom:746.205000px;}
.y9c{bottom:746.565000px;}
.y631{bottom:747.150000px;}
.y101{bottom:747.465000px;}
.y2eb{bottom:748.185000px;}
.y5f4{bottom:748.770000px;}
.y595{bottom:749.310000px;}
.y160{bottom:750.345000px;}
.y2ba{bottom:750.705000px;}
.y27d{bottom:751.065000px;}
.y3f7{bottom:752.505000px;}
.y396{bottom:753.225000px;}
.y300{bottom:753.585000px;}
.y5c0{bottom:753.765000px;}
.y478{bottom:755.745000px;}
.y141{bottom:756.285000px;}
.y2d2{bottom:757.545000px;}
.y4f8{bottom:758.085000px;}
.y683{bottom:758.265000px;}
.y4bd{bottom:759.345000px;}
.y65c{bottom:760.065000px;}
.y57d{bottom:760.110000px;}
.y272{bottom:760.785000px;}
.y220{bottom:760.965000px;}
.y66a{bottom:761.325000px;}
.y81{bottom:761.685000px;}
.y426{bottom:762.240000px;}
.y65{bottom:762.405000px;}
.y67f{bottom:763.170000px;}
.y170{bottom:763.665000px;}
.y32f{bottom:766.725000px;}
.y1d6{bottom:767.265000px;}
.y249{bottom:768.165000px;}
.y3d0{bottom:768.210000px;}
.y3b{bottom:768.525000px;}
.y4f3{bottom:770.190000px;}
.y594{bottom:771.270000px;}
.y188{bottom:771.405000px;}
.y313{bottom:771.585000px;}
.y1f{bottom:772.485000px;}
.y1b0{bottom:773.745000px;}
.y4d1{bottom:773.790000px;}
.y44a{bottom:775.230000px;}
.yc5{bottom:776.625000px;}
.y9b{bottom:777.705000px;}
.y3ee{bottom:778.245000px;}
.y100{bottom:778.425000px;}
.y2ea{bottom:779.145000px;}
.y15f{bottom:781.485000px;}
.y2b9{bottom:781.665000px;}
.y5ab{bottom:782.610000px;}
.y2a3{bottom:783.105000px;}
.y35c{bottom:784.050000px;}
.y4bc{bottom:784.545000px;}
.y140{bottom:787.425000px;}
.y67e{bottom:787.470000px;}
.y2d1{bottom:788.505000px;}
.y52e{bottom:789.225000px;}
.y3b4{bottom:789.450000px;}
.y31a{bottom:789.585000px;}
.y80{bottom:792.645000px;}
.y5bf{bottom:792.825000px;}
.y64{bottom:793.545000px;}
.y49f{bottom:794.445000px;}
.y57c{bottom:797.190000px;}
.y230{bottom:797.325000px;}
.y682{bottom:797.685000px;}
.y3a{bottom:800.025000px;}
.y48a{bottom:800.925000px;}
.y669{bottom:801.330000px;}
.y2ff{bottom:802.725000px;}
.y1e{bottom:803.445000px;}
.y257{bottom:804.525000px;}
.y477{bottom:805.425000px;}
.yc4{bottom:807.585000px;}
.y9a{bottom:808.665000px;}
.y4f2{bottom:808.890000px;}
.y428{bottom:809.025000px;}
.y67d{bottom:809.430000px;}
.yff{bottom:809.565000px;}
.y16f{bottom:809.745000px;}
.y52d{bottom:809.925000px;}
.y3cf{bottom:811.050000px;}
.y379{bottom:812.085000px;}
.y15e{bottom:812.445000px;}
.y2b8{bottom:812.805000px;}
.y265{bottom:814.425000px;}
.y32e{bottom:815.685000px;}
.y1a0{bottom:816.405000px;}
.y449{bottom:816.810000px;}
.y13f{bottom:818.385000px;}
.y57b{bottom:819.150000px;}
.y2d0{bottom:819.645000px;}
.y312{bottom:820.725000px;}
.y7f{bottom:823.785000px;}
.y182{bottom:824.145000px;}
.y63{bottom:824.505000px;}
.y536{bottom:825.045000px;}
.y3b3{bottom:825.090000px;}
.y569{bottom:826.485000px;}
.y593{bottom:827.070000px;}
.y388{bottom:827.205000px;}
.y2e9{bottom:828.285000px;}
.y5aa{bottom:828.690000px;}
.y560{bottom:828.825000px;}
.y382{bottom:829.185000px;}
.y53b{bottom:829.365000px;}
.y38b{bottom:830.085000px;}
.y564{bottom:830.985000px;}
.y39{bottom:831.345000px;}
.y385{bottom:832.605000px;}
.y2fe{bottom:833.685000px;}
.y66c{bottom:834.225000px;}
.y1d{bottom:834.585000px;}
.y1fe{bottom:834.945000px;}
.y4bb{bottom:835.125000px;}
.y562{bottom:835.485000px;}
.y59{bottom:838.005000px;}
.yc3{bottom:838.725000px;}
.y283{bottom:839.625000px;}
.y99{bottom:839.805000px;}
.yfe{bottom:840.525000px;}
.y16e{bottom:840.885000px;}
.y298{bottom:842.325000px;}
.y15d{bottom:843.585000px;}
.y2b7{bottom:843.765000px;}
.y52c{bottom:845.745000px;}
.y65b{bottom:846.825000px;}
.y4f1{bottom:847.770000px;}
.y22c{bottom:849.525000px;}
.y2cf{bottom:850.605000px;}
.y681{bottom:851.325000px;}
.y476{bottom:851.505000px;}
.y311{bottom:851.685000px;}
.y7e{bottom:854.745000px;}
.y62{bottom:855.645000px;}
.y57a{bottom:856.050000px;}
.y252{bottom:856.725000px;}
.y568{bottom:857.625000px;}
.y1ae{bottom:859.065000px;}
.y2e8{bottom:859.245000px;}
.y4ba{bottom:860.325000px;}
.y3b2{bottom:860.730000px;}
.y489{bottom:861.945000px;}
.y38{bottom:862.665000px;}
.y270{bottom:863.385000px;}
.y13e{bottom:864.465000px;}
.y2fd{bottom:864.825000px;}
.y49e{bottom:865.185000px;}
.y1c{bottom:865.545000px;}
.y345{bottom:865.905000px;}
.ya7{bottom:869.685000px;}
.y3ce{bottom:870.630000px;}
.y98{bottom:870.765000px;}
.yfd{bottom:871.665000px;}
.y58{bottom:872.025000px;}
.y475{bottom:872.385000px;}
.y2b6{bottom:874.905000px;}
.y2a2{bottom:878.685000px;}
.y1f2{bottom:880.665000px;}
.y52b{bottom:881.385000px;}
.y2ce{bottom:881.745000px;}
.y310{bottom:882.825000px;}
.y65a{bottom:884.085000px;}
.y4cd{bottom:884.850000px;}
.y4b9{bottom:885.705000px;}
.y7d{bottom:885.885000px;}
.y592{bottom:886.290000px;}
.y61{bottom:886.605000px;}
.y4f0{bottom:886.650000px;}
.y16d{bottom:886.785000px;}
.y668{bottom:888.090000px;}
.y15c{bottom:889.665000px;}
.y1cf{bottom:889.845000px;}
.y2e7{bottom:890.385000px;}
.y680{bottom:890.745000px;}
.y49b{bottom:890.925000px;}
.y579{bottom:893.130000px;}
.y37{bottom:894.165000px;}
.y474{bottom:894.705000px;}
.y13d{bottom:895.605000px;}
.y32d{bottom:895.785000px;}
.y67c{bottom:896.010000px;}
.y3b1{bottom:896.550000px;}
.y488{bottom:899.205000px;}
.ya6{bottom:900.825000px;}
.y1a9{bottom:901.545000px;}
.y97{bottom:901.905000px;}
.y3cd{bottom:902.490000px;}
.yfc{bottom:902.625000px;}
.y57{bottom:903.345000px;}
.y567{bottom:903.705000px;}
.y2b5{bottom:905.865000px;}
.y542{bottom:906.045000px;}
.y4db{bottom:910.410000px;}
.y4b8{bottom:910.950000px;}
.y1b{bottom:911.670000px;}
.y344{bottom:911.850000px;}
.y2cd{bottom:912.750000px;}
.y2fc{bottom:913.830000px;}
.y578{bottom:915.090000px;}
.y5bd{bottom:915.270000px;}
.y26b{bottom:915.450000px;}
.y7c{bottom:916.890000px;}
.y52a{bottom:917.070000px;}
.y60{bottom:917.790000px;}
.y1fc{bottom:920.130000px;}
.y15b{bottom:920.670000px;}
.y659{bottom:921.210000px;}
.y487{bottom:921.750000px;}
.y4ef{bottom:925.350000px;}
.y36{bottom:925.530000px;}
.y33c{bottom:926.970000px;}
.y2a0{bottom:930.930000px;}
.y1cd{bottom:931.470000px;}
.ya5{bottom:931.830000px;}
.y3b0{bottom:932.190000px;}
.y96{bottom:932.910000px;}
.yfb{bottom:933.810000px;}
.y566{bottom:934.710000px;}
.y56{bottom:934.890000px;}
.y4b7{bottom:936.150000px;}
.y2b4{bottom:937.050000px;}
.y395{bottom:937.770000px;}
.y343{bottom:939.030000px;}
.y2e6{bottom:939.390000px;}
.y5bc{bottom:941.010000px;}
.y1a{bottom:942.810000px;}
.y2fb{bottom:944.970000px;}
.y7b{bottom:947.850000px;}
.y5f{bottom:948.750000px;}
.y15a{bottom:951.810000px;}
.y2cc{bottom:951.990000px;}
.y512{bottom:955.050000px;}
.y35{bottom:956.850000px;}
.y658{bottom:958.470000px;}
.ya4{bottom:962.970000px;}
.y95{bottom:964.050000px;}
.y529{bottom:964.230000px;}
.y565{bottom:965.670000px;}
.y3af{bottom:967.830000px;}
.y2b3{bottom:968.010000px;}
.y473{bottom:969.990000px;}
.y2e5{bottom:970.530000px;}
.y486{bottom:970.890000px;}
.y55{bottom:971.430000px;}
.y1f9{bottom:973.050000px;}
.y19{bottom:973.770000px;}
.y2fa{bottom:975.930000px;}
.y4b6{bottom:976.470000px;}
.y342{bottom:978.090000px;}
.y248{bottom:978.270000px;}
.yb6{bottom:978.990000px;}
.y5e{bottom:979.890000px;}
.y159{bottom:982.770000px;}
.y17f{bottom:985.470000px;}
.y34{bottom:988.350000px;}
.y528{bottom:991.410000px;}
.y7a{bottom:993.930000px;}
.y94{bottom:995.010000px;}
.y4ce{bottom:998.430000px;}
.y2b2{bottom:999.150000px;}
.y511{bottom:1000.050000px;}
.y35b{bottom:1000.410000px;}
.y2e4{bottom:1001.490000px;}
.y54{bottom:1003.470000px;}
.y341{bottom:1004.010000px;}
.y18{bottom:1004.910000px;}
.y472{bottom:1006.890000px;}
.y325{bottom:1007.070000px;}
.y1cc{bottom:1007.970000px;}
.yb5{bottom:1009.950000px;}
.y5d{bottom:1010.850000px;}
.y19e{bottom:1011.390000px;}
.y158{bottom:1013.910000px;}
.y54f{bottom:1014.270000px;}
.y4b5{bottom:1016.790000px;}
.y510{bottom:1017.330000px;}
.y33{bottom:1019.670000px;}
.y79{bottom:1025.070000px;}
.y53{bottom:1025.250000px;}
.y2e3{bottom:1025.430000px;}
.y5a8{bottom:1026.150000px;}
.y340{bottom:1028.490000px;}
.y21f{bottom:1029.570000px;}
.y246{bottom:1029.750000px;}
.y2b1{bottom:1030.110000px;}
.y527{bottom:1030.470000px;}
.y50f{bottom:1034.610000px;}
.y17{bottom:1035.870000px;}
.y485{bottom:1036.950000px;}
.y93{bottom:1041.090000px;}
.y5c{bottom:1041.990000px;}
.y2{bottom:1043.430000px;}
.y471{bottom:1043.790000px;}
.y447{bottom:1044.330000px;}
.y157{bottom:1044.870000px;}
.y656{bottom:1045.230000px;}
.y2e2{bottom:1049.190000px;}
.y1f1{bottom:1050.270000px;}
.y32{bottom:1050.990000px;}
.y19c{bottom:1051.530000px;}
.y17e{bottom:1051.890000px;}
.y52{bottom:1055.310000px;}
.y78{bottom:1056.030000px;}
.y1cb{bottom:1063.770000px;}
.y16{bottom:1067.010000px;}
.y4b4{bottom:1067.190000px;}
.y50e{bottom:1069.170000px;}
.y2b0{bottom:1069.350000px;}
.y5b{bottom:1072.950000px;}
.y667{bottom:1075.830000px;}
.y156{bottom:1076.010000px;}
.y370{bottom:1076.550000px;}
.y21d{bottom:1080.870000px;}
.y31{bottom:1082.490000px;}
.y484{bottom:1084.830000px;}
.y50d{bottom:1086.450000px;}
.y51{bottom:1086.630000px;}
.y77{bottom:1087.170000px;}
.y526{bottom:1089.150000px;}
.y1ef{bottom:1092.030000px;}
.y4b3{bottom:1092.570000px;}
.y1{bottom:1097.610000px;}
.y33f{bottom:1098.510000px;}
.y50c{bottom:1103.730000px;}
.y30{bottom:1109.130000px;}
.y15{bottom:1115.070000px;}
.y5a{bottom:1115.250000px;}
.y651{bottom:1116.510000px;}
.y3cb{bottom:1116.690000px;}
.y470{bottom:1117.770000px;}
.y50{bottom:1117.950000px;}
.y76{bottom:1118.130000px;}
.y2af{bottom:1119.390000px;}
.y50b{bottom:1120.830000px;}
.h91{height:2.902500px;}
.hb1{height:2.948906px;}
.h71{height:20.160000px;}
.hac{height:20.520000px;}
.h31{height:20.700000px;}
.hae{height:21.060000px;}
.ha8{height:21.960000px;}
.ha7{height:21.996000px;}
.h3c{height:23.580000px;}
.h19{height:23.760000px;}
.h1a{height:23.796000px;}
.h1c{height:23.940000px;}
.h41{height:24.120000px;}
.h42{height:24.696000px;}
.h21{height:25.020000px;}
.hb0{height:25.560000px;}
.h30{height:25.920000px;}
.h46{height:26.100000px;}
.haf{height:26.460000px;}
.h2d{height:26.676000px;}
.h24{height:26.820000px;}
.h25{height:27.000000px;}
.h1b{height:27.360000px;}
.h32{height:27.396000px;}
.h4a{height:27.540000px;}
.h26{height:27.720000px;}
.hd9{height:29.340000px;}
.he0{height:29.376000px;}
.h3d{height:30.780000px;}
.h3f{height:31.860000px;}
.h1f{height:32.220000px;}
.h74{height:32.940000px;}
.h54{height:33.120000px;}
.h38{height:33.840000px;}
.h1e{height:34.020000px;}
.h18{height:34.200000px;}
.hc2{height:34.380000px;}
.hbb{height:35.100000px;}
.h57{height:35.640000px;}
.h2c{height:36.180000px;}
.h29{height:36.360000px;}
.h5f{height:36.396000px;}
.h34{height:36.540000px;}
.h72{height:36.720000px;}
.h66{height:36.900000px;}
.h55{height:37.080000px;}
.hcd{height:37.116000px;}
.h3b{height:37.260000px;}
.h36{height:37.980000px;}
.h5a{height:38.160000px;}
.he1{height:38.700000px;}
.he3{height:38.736000px;}
.h4e{height:39.420000px;}
.h63{height:40.140000px;}
.hb6{height:40.500000px;}
.h15{height:41.400000px;}
.hd1{height:41.580000px;}
.h60{height:42.660000px;}
.h12{height:43.554375px;}
.h4b{height:43.740000px;}
.h5c{height:43.776000px;}
.h51{height:43.920000px;}
.h8f{height:43.956000px;}
.h43{height:45.000000px;}
.h11{height:47.344922px;}
.h17{height:47.520000px;}
.h1d{height:47.700000px;}
.h6a{height:48.420000px;}
.h6f{height:49.320000px;}
.he4{height:49.860000px;}
.h95{height:51.300000px;}
.he2{height:52.920000px;}
.h9{height:53.709961px;}
.hd7{height:53.789062px;}
.h50{height:54.540000px;}
.hab{height:54.984375px;}
.hc8{height:56.700000px;}
.hdd{height:57.960000px;}
.h14{height:58.651172px;}
.haa{height:59.439023px;}
.hb9{height:59.760000px;}
.hca{height:59.796000px;}
.h73{height:60.226875px;}
.h3a{height:60.840000px;}
.h2b{height:62.100000px;}
.h13{height:62.327813px;}
.h64{height:63.351562px;}
.h10{height:64.546875px;}
.hd6{height:64.836000px;}
.h8{height:64.978594px;}
.h28{height:65.010937px;}
.h35{height:65.520000px;}
.h6e{height:65.884219px;}
.h7c{height:65.916000px;}
.hbf{height:67.140000px;}
.h6d{height:67.824844px;}
.hbd{height:68.580000px;}
.h4{height:69.086250px;}
.hc0{height:69.300000px;}
.h56{height:69.660000px;}
.hf{height:70.628906px;}
.hb{height:70.664062px;}
.h7e{height:71.613281px;}
.hc{height:72.562500px;}
.hce{height:73.080000px;}
.h7d{height:73.722656px;}
.hb3{height:73.980000px;}
.h48{height:74.704922px;}
.he{height:75.093750px;}
.h62{height:76.500000px;}
.h49{height:77.220000px;}
.h7a{height:77.342344px;}
.h67{height:78.367500px;}
.h79{height:79.620469px;}
.hdb{height:79.920000px;}
.hc9{height:79.956000px;}
.h5e{height:82.080000px;}
.h37{height:82.676953px;}
.ha{height:84.898125px;}
.h3{height:86.255508px;}
.hc7{height:87.156000px;}
.h84{height:87.169922px;}
.h5{height:87.859687px;}
.hc1{height:88.560000px;}
.h20{height:90.703125px;}
.h23{height:93.276000px;}
.hcf{height:94.536000px;}
.h9c{height:95.220000px;}
.h81{height:95.245664px;}
.h9b{height:95.256000px;}
.hc5{height:95.580000px;}
.hc6{height:95.616000px;}
.hd5{height:95.796000px;}
.hc3{height:97.020000px;}
.h53{height:97.560000px;}
.hda{height:98.051133px;}
.h78{height:98.367188px;}
.h7{height:100.293047px;}
.hbe{height:101.736000px;}
.hdc{height:101.916000px;}
.hde{height:102.096000px;}
.hcb{height:103.860000px;}
.hd0{height:103.896000px;}
.h4d{height:105.156000px;}
.hd4{height:105.840000px;}
.h2f{height:106.020000px;}
.h40{height:107.280000px;}
.hd{height:107.419922px;}
.h2a{height:108.000000px;}
.h6{height:108.843750px;}
.h6b{height:110.583984px;}
.ha2{height:110.880000px;}
.hba{height:111.096000px;}
.h75{height:115.596000px;}
.he5{height:117.396000px;}
.hbc{height:119.016000px;}
.hcc{height:120.456000px;}
.h59{height:122.256000px;}
.h9e{height:125.406562px;}
.hd3{height:127.080000px;}
.hd2{height:127.116000px;}
.h90{height:131.760000px;}
.h80{height:134.912461px;}
.he6{height:142.920000px;}
.h76{height:143.226562px;}
.h16{height:144.756000px;}
.h94{height:147.445312px;}
.h39{height:153.210000px;}
.h8c{height:153.750000px;}
.h65{height:157.460625px;}
.h2{height:159.978164px;}
.h45{height:163.470000px;}
.hc4{height:166.530000px;}
.h5d{height:170.670000px;}
.h8b{height:175.860000px;}
.h22{height:178.410000px;}
.h96{height:183.780000px;}
.h99{height:183.810000px;}
.h2e{height:184.320000px;}
.hb5{height:184.860000px;}
.h33{height:186.300000px;}
.h92{height:186.330000px;}
.h4c{height:193.710000px;}
.h88{height:194.430000px;}
.h52{height:198.570000px;}
.h97{height:205.740000px;}
.h89{height:205.770000px;}
.h58{height:210.810000px;}
.h87{height:215.310000px;}
.h9f{height:219.090000px;}
.h4f{height:248.430000px;}
.h44{height:252.030000px;}
.h69{height:263.010000px;}
.h5b{height:269.175000px;}
.h68{height:303.690000px;}
.ha1{height:306.795000px;}
.h47{height:310.575000px;}
.had{height:344.595000px;}
.h82{height:347.610000px;}
.h61{height:372.675000px;}
.h3e{height:375.330000px;}
.h27{height:375.375000px;}
.ha5{height:417.630000px;}
.ha3{height:417.675000px;}
.ha0{height:417.810000px;}
.ha4{height:417.855000px;}
.h70{height:460.695000px;}
.h8e{height:523.695000px;}
.h83{height:568.725000px;}
.h85{height:598.395000px;}
.ha6{height:618.225000px;}
.h8d{height:758.805000px;}
.h9d{height:769.650000px;}
.h86{height:779.325000px;}
.h6c{height:817.710000px;}
.h8a{height:833.550000px;}
.hb4{height:860.190000px;}
.hb7{height:893.160000px;}
.hb8{height:893.250000px;}
.hd8{height:904.830000px;}
.hdf{height:912.750000px;}
.h7f{height:933.990000px;}
.h93{height:934.170000px;}
.h9a{height:944.070000px;}
.hb2{height:963.690000px;}
.ha9{height:969.090000px;}
.h77{height:970.170000px;}
.h98{height:984.210000px;}
.h7b{height:984.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6a{width:30.960000px;}
.w6b{width:31.140000px;}
.w37{width:43.596000px;}
.w66{width:67.140000px;}
.w65{width:68.256000px;}
.w67{width:70.596000px;}
.w10{width:83.520000px;}
.wf{width:84.240000px;}
.w26{width:90.540000px;}
.w3f{width:143.676000px;}
.w4{width:147.456000px;}
.w3e{width:148.140000px;}
.w3d{width:148.176000px;}
.w7{width:157.890000px;}
.w5{width:158.040000px;}
.w3c{width:160.590000px;}
.w43{width:163.800000px;}
.w4d{width:163.830000px;}
.w54{width:166.530000px;}
.w6{width:168.690000px;}
.w13{width:175.530000px;}
.w19{width:176.970000px;}
.w1b{width:177.690000px;}
.w1f{width:178.770000px;}
.w20{width:180.030000px;}
.w1d{width:181.110000px;}
.w53{width:183.090000px;}
.w50{width:185.430000px;}
.w51{width:186.330000px;}
.w52{width:190.830000px;}
.w5d{width:195.480000px;}
.w61{width:196.200000px;}
.w5f{width:200.010000px;}
.w62{width:200.730000px;}
.w5e{width:207.390000px;}
.w24{width:209.730000px;}
.w22{width:210.630000px;}
.w1c{width:210.810000px;}
.w1e{width:212.970000px;}
.w18{width:213.510000px;}
.w1a{width:214.230000px;}
.w12{width:217.470000px;}
.w5b{width:220.890000px;}
.w11{width:241.950000px;}
.w17{width:243.030000px;}
.w23{width:244.110000px;}
.w21{width:245.190000px;}
.w55{width:261.930000px;}
.w8{width:274.890000px;}
.w14{width:288.030000px;}
.wb{width:290.190000px;}
.w34{width:301.170000px;}
.w29{width:307.650000px;}
.w38{width:315.930000px;}
.w36{width:316.830000px;}
.w33{width:329.250000px;}
.w3a{width:333.795000px;}
.w3b{width:336.090000px;}
.w49{width:336.135000px;}
.w32{width:342.795000px;}
.wd{width:344.595000px;}
.wc{width:345.315000px;}
.w48{width:346.215000px;}
.w16{width:346.935000px;}
.w15{width:347.655000px;}
.w28{width:348.555000px;}
.w9{width:359.895000px;}
.w35{width:372.135000px;}
.w25{width:501.765000px;}
.w42{width:506.985000px;}
.w64{width:507.165000px;}
.w4c{width:517.245000px;}
.w69{width:520.305000px;}
.we{width:551.445000px;}
.w2b{width:576.825000px;}
.w2d{width:594.825000px;}
.w2e{width:600.945000px;}
.wa{width:636.405000px;}
.w27{width:647.025000px;}
.w4e{width:668.445000px;}
.w45{width:679.290000px;}
.w6c{width:679.785000px;}
.w44{width:680.370000px;}
.w46{width:682.710000px;}
.w47{width:683.790000px;}
.w4f{width:685.050000px;}
.w2f{width:685.950000px;}
.w30{width:687.210000px;}
.w31{width:696.210000px;}
.w39{width:697.290000px;}
.w4b{width:697.650000px;}
.w40{width:698.550000px;}
.w2c{width:699.630000px;}
.w2a{width:701.790000px;}
.w4a{width:705.390000px;}
.w63{width:717.660000px;}
.w41{width:720.150000px;}
.w68{width:722.340000px;}
.w5a{width:816.585000px;}
.w5c{width:817.305000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w59{width:1038.210000px;}
.w60{width:1038.930000px;}
.w57{width:1262.250000px;}
.w58{width:1262.519981px;}
.w56{width:1262.520000px;}
.x0{left:0.000000px;}
.x2a{left:6.660000px;}
.x33{left:8.100000px;}
.xa5{left:9.180000px;}
.x34{left:12.240000px;}
.x49{left:14.040000px;}
.x52{left:17.280000px;}
.x70{left:21.420000px;}
.x30{left:25.200000px;}
.x3d{left:26.460000px;}
.x77{left:27.540000px;}
.x29{left:28.845000px;}
.x81{left:29.880000px;}
.x26{left:32.430000px;}
.x21{left:34.554000px;}
.x6d{left:36.900000px;}
.x47{left:38.730000px;}
.x20{left:40.134000px;}
.x24{left:42.660000px;}
.x83{left:44.460000px;}
.x23{left:45.720000px;}
.x6e{left:47.880000px;}
.x6c{left:52.914000px;}
.x85{left:54.180000px;}
.x86{left:55.980000px;}
.x8a{left:57.780000px;}
.x73{left:60.834000px;}
.x89{left:62.454000px;}
.x4b{left:64.800000px;}
.x3f{left:65.880000px;}
.x36{left:68.220000px;}
.x8e{left:69.300000px;}
.x7c{left:72.000000px;}
.x91{left:73.800000px;}
.x97{left:75.234000px;}
.x76{left:77.220000px;}
.x8d{left:78.474000px;}
.x90{left:80.094000px;}
.x8c{left:82.254000px;}
.x27{left:84.270000px;}
.x8f{left:85.314000px;}
.x99{left:87.705000px;}
.x8b{left:89.454000px;}
.x55{left:91.794000px;}
.x96{left:93.234000px;}
.x9d{left:95.445000px;}
.x9b{left:99.390000px;}
.x3a{left:100.614000px;}
.x2d{left:101.874000px;}
.x9f{left:105.840000px;}
.x7a{left:107.136000px;}
.x74{left:109.296000px;}
.x54{left:112.896000px;}
.x5b{left:113.976000px;}
.x69{left:115.236000px;}
.x65{left:116.316000px;}
.x50{left:117.756000px;}
.x2f{left:122.250000px;}
.x3c{left:123.510000px;}
.x66{left:124.596000px;}
.x4f{left:126.755987px;}
.x5{left:128.195987px;}
.xc{left:131.435987px;}
.x15{left:132.695987px;}
.xa{left:136.475987px;}
.x6b{left:138.275987px;}
.x78{left:141.159000px;}
.x4{left:142.775987px;}
.x12{left:144.215987px;}
.x9{left:145.475987px;}
.x1f{left:148.895987px;}
.x88{left:152.859000px;}
.x14{left:154.649987px;}
.x5c{left:157.170000px;}
.x13{left:160.589987px;}
.x5d{left:163.830000px;}
.x2c{left:167.799000px;}
.x19{left:170.129987px;}
.x44{left:180.579000px;}
.x16{left:181.649987px;}
.x1e{left:185.609987px;}
.xd{left:186.689987px;}
.x38{left:194.439000px;}
.x42{left:197.319000px;}
.x41{left:198.399000px;}
.x92{left:199.479000px;}
.x39{left:207.399000px;}
.x18{left:208.649987px;}
.x17{left:212.609987px;}
.x5f{left:215.319000px;}
.x46{left:216.399000px;}
.x56{left:219.099000px;}
.x31{left:223.059000px;}
.x1{left:227.729987px;}
.x4c{left:230.619000px;}
.x4d{left:235.649987px;}
.x80{left:247.539000px;}
.xa1{left:253.695000px;}
.xa0{left:271.515000px;}
.x60{left:275.979000px;}
.x22{left:277.275000px;}
.x2{left:280.334987px;}
.x87{left:296.679000px;}
.x63{left:300.639000px;}
.x6{left:306.074987px;}
.x6f{left:316.875000px;}
.x7{left:320.834987px;}
.x98{left:325.290000px;}
.x8{left:338.474987px;}
.x1d{left:343.694987px;}
.xb{left:345.494987px;}
.x82{left:368.715000px;}
.x35{left:371.055000px;}
.x3e{left:372.855000px;}
.x4a{left:374.475000px;}
.x2b{left:404.895000px;}
.x3b{left:417.135000px;}
.x2e{left:419.475000px;}
.xf{left:428.114987px;}
.x25{left:436.755000px;}
.x68{left:442.875000px;}
.xe{left:446.684987px;}
.x9e{left:447.879000px;}
.x6a{left:464.325000px;}
.x71{left:466.665000px;}
.x53{left:467.745000px;}
.x67{left:468.825000px;}
.x79{left:475.305000px;}
.x94{left:477.069000px;}
.x10{left:487.904987px;}
.x5e{left:501.414000px;}
.x62{left:503.034000px;}
.x9a{left:536.835000px;}
.x84{left:556.665000px;}
.x43{left:583.665000px;}
.x48{left:584.745000px;}
.x45{left:586.005000px;}
.x40{left:587.805000px;}
.x37{left:589.245000px;}
.xa2{left:596.445000px;}
.x28{left:606.885000px;}
.x72{left:616.245000px;}
.x3{left:624.524987px;}
.xa4{left:628.350000px;}
.x75{left:635.910000px;}
.x7b{left:641.490000px;}
.x1b{left:642.569973px;}
.x1c{left:648.689987px;}
.x4e{left:653.010000px;}
.xa6{left:660.210000px;}
.x61{left:666.654000px;}
.x7d{left:667.769987px;}
.x7e{left:669.929987px;}
.x7f{left:672.269987px;}
.x32{left:680.550000px;}
.x5a{left:691.709987px;}
.x58{left:692.789987px;}
.x57{left:693.869987px;}
.x59{left:695.129987px;}
.xa7{left:723.930000px;}
.xa3{left:734.910000px;}
.x9c{left:745.665000px;}
.x64{left:747.869987px;}
.x1a{left:749.309987px;}
.xa8{left:755.790000px;}
.x11{left:757.589987px;}
.x51{left:765.689987px;}
.x95{left:946.410000px;}
.x93{left:1118.699981px;}
@media print{
.v4{vertical-align:-145.920000pt;}
.v2{vertical-align:-74.240000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.576000pt;}
.ls33{letter-spacing:-0.512000pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.271467pt;}
.ls46{letter-spacing:-0.261333pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.227733pt;}
.ls49{letter-spacing:-0.225067pt;}
.ls1{letter-spacing:-0.204267pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.146133pt;}
.ls23{letter-spacing:-0.135467pt;}
.ls4b{letter-spacing:-0.128000pt;}
.ls4c{letter-spacing:-0.117867pt;}
.ls21{letter-spacing:-0.097067pt;}
.ls2d{letter-spacing:-0.084267pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.048640pt;}
.ls2a{letter-spacing:-0.043520pt;}
.ls47{letter-spacing:-0.033280pt;}
.ls1a{letter-spacing:-0.024960pt;}
.ls4d{letter-spacing:-0.023040pt;}
.ls40{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.007680pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.054400pt;}
.ls19{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.137600pt;}
.ls3e{letter-spacing:0.156267pt;}
.ls4{letter-spacing:0.182933pt;}
.ls32{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.278933pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.794667pt;}
.ls1d{letter-spacing:1.152000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls37{letter-spacing:3.456000pt;}
.ls1b{letter-spacing:7.680000pt;}
.ls39{letter-spacing:10.240000pt;}
.lsa{letter-spacing:18.863360pt;}
.ls36{letter-spacing:21.760000pt;}
.ls3c{letter-spacing:25.088000pt;}
.ls3b{letter-spacing:28.288000pt;}
.ls44{letter-spacing:28.928000pt;}
.ls3a{letter-spacing:29.568000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls27{letter-spacing:30.991360pt;}
.ls4e{letter-spacing:32.000000pt;}
.ls26{letter-spacing:33.551360pt;}
.ls24{letter-spacing:34.191360pt;}
.ls28{letter-spacing:36.751360pt;}
.ls42{letter-spacing:39.808000pt;}
.ls7{letter-spacing:55.018667pt;}
.lsb{letter-spacing:57.066667pt;}
.ls14{letter-spacing:57.088000pt;}
.ls45{letter-spacing:58.368000pt;}
.lsc{letter-spacing:59.183360pt;}
.ls25{letter-spacing:61.711360pt;}
.ls30{letter-spacing:76.266667pt;}
.ls2f{letter-spacing:79.466667pt;}
.ls31{letter-spacing:93.546667pt;}
.lsd{letter-spacing:99.023360pt;}
.ws2{word-spacing:-22.902933pt;}
.ws9{word-spacing:-19.040000pt;}
.wsa{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws25{word-spacing:-17.792000pt;}
.ws26{word-spacing:-17.728000pt;}
.ws27{word-spacing:-17.600000pt;}
.ws20{word-spacing:-17.287680pt;}
.ws2d{word-spacing:-17.280000pt;}
.ws3a{word-spacing:-17.256960pt;}
.ws14{word-spacing:-17.152000pt;}
.ws3{word-spacing:-16.977280pt;}
.ws1{word-spacing:-16.922880pt;}
.ws15{word-spacing:-16.768000pt;}
.ws0{word-spacing:-16.718613pt;}
.ws16{word-spacing:-16.576000pt;}
.ws13{word-spacing:-16.512000pt;}
.wsb{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws17{word-spacing:-16.368640pt;}
.ws18{word-spacing:-16.271573pt;}
.wse{word-spacing:-16.256000pt;}
.ws1a{word-spacing:-16.233173pt;}
.ws3b{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.097173pt;}
.ws32{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws23{word-spacing:-15.621120pt;}
.ws22{word-spacing:-15.536853pt;}
.ws24{word-spacing:-15.474987pt;}
.ws2c{word-spacing:-14.784000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.656000pt;}
.ws2e{word-spacing:-14.528000pt;}
.ws28{word-spacing:-14.464000pt;}
.ws2f{word-spacing:-14.463995pt;}
.ws29{word-spacing:-14.400000pt;}
.ws34{word-spacing:-14.208000pt;}
.ws3c{word-spacing:-13.952000pt;}
.ws21{word-spacing:-13.600000pt;}
.ws37{word-spacing:-13.585813pt;}
.ws1b{word-spacing:-13.534613pt;}
.ws2a{word-spacing:-13.422080pt;}
.ws1f{word-spacing:-13.360747pt;}
.ws1c{word-spacing:-13.306880pt;}
.ws30{word-spacing:-13.280000pt;}
.ws36{word-spacing:-13.273600pt;}
.ws1d{word-spacing:-13.263360pt;}
.ws39{word-spacing:-13.258240pt;}
.ws1e{word-spacing:-13.114880pt;}
.ws38{word-spacing:-13.081813pt;}
.ws35{word-spacing:-13.045547pt;}
.ws31{word-spacing:-12.960000pt;}
.ws33{word-spacing:-9.828480pt;}
.ws4{word-spacing:0.000000pt;}
._69{margin-left:-87.445333pt;}
._13{margin-left:-16.842667pt;}
._11{margin-left:-15.626667pt;}
._14{margin-left:-14.624000pt;}
._16{margin-left:-13.397333pt;}
._e{margin-left:-12.416000pt;}
._15{margin-left:-11.232000pt;}
._f{margin-left:-9.536000pt;}
._12{margin-left:-7.530667pt;}
._10{margin-left:-6.259413pt;}
._a{margin-left:-4.032000pt;}
._9{margin-left:-2.420480pt;}
._0{margin-left:-1.249920pt;}
._1{width:1.077333pt;}
._4{width:2.197333pt;}
._7{width:3.648000pt;}
._5{width:4.992000pt;}
._6{width:6.474667pt;}
._8{width:8.236587pt;}
._1a{width:9.519573pt;}
._2{width:10.944000pt;}
._3{width:11.968000pt;}
._b{width:13.610667pt;}
._c{width:14.592000pt;}
._54{width:15.488000pt;}
._53{width:16.801920pt;}
._1c{width:17.728000pt;}
._19{width:18.721920pt;}
._18{width:19.776000pt;}
._1d{width:20.672000pt;}
._1b{width:22.016000pt;}
._22{width:23.649920pt;}
._1e{width:24.832000pt;}
._1f{width:25.920000pt;}
._26{width:27.456000pt;}
._27{width:28.416000pt;}
._2a{width:29.312000pt;}
._23{width:30.784000pt;}
._24{width:31.722667pt;}
._20{width:32.896000pt;}
._21{width:34.058667pt;}
._29{width:35.093333pt;}
._2d{width:36.928000pt;}
._28{width:38.561920pt;}
._57{width:40.170667pt;}
._2e{width:41.386667pt;}
._3f{width:42.304000pt;}
._42{width:43.744000pt;}
._48{width:44.800000pt;}
._25{width:50.240000pt;}
._2c{width:51.136000pt;}
._51{width:52.907307pt;}
._40{width:54.720000pt;}
._41{width:56.170667pt;}
._3c{width:58.304000pt;}
._36{width:63.776000pt;}
._60{width:65.184000pt;}
._2f{width:68.480000pt;}
._2b{width:69.546667pt;}
._68{width:80.000000pt;}
._34{width:84.736000pt;}
._35{width:85.728000pt;}
._30{width:110.592000pt;}
._31{width:111.658667pt;}
._5d{width:116.599467pt;}
._50{width:119.758720pt;}
._4c{width:125.500587pt;}
._62{width:126.826667pt;}
._4d{width:129.475840pt;}
._47{width:131.200000pt;}
._61{width:140.384000pt;}
._5e{width:146.528000pt;}
._5c{width:160.352000pt;}
._3b{width:164.460587pt;}
._3a{width:165.440000pt;}
._4f{width:170.897067pt;}
._5f{width:176.778667pt;}
._4b{width:178.227200pt;}
._4e{width:179.159040pt;}
._45{width:211.520000pt;}
._46{width:212.512000pt;}
._37{width:215.936000pt;}
._43{width:223.712000pt;}
._44{width:224.761173pt;}
._49{width:247.488000pt;}
._4a{width:248.394667pt;}
._3d{width:260.416000pt;}
._39{width:405.280000pt;}
._32{width:421.504000pt;}
._33{width:422.624000pt;}
._63{width:502.525867pt;}
._65{width:539.431680pt;}
._66{width:543.736533pt;}
._56{width:637.834667pt;}
._38{width:746.496000pt;}
._17{width:749.418667pt;}
._d{width:752.345173pt;}
._64{width:762.546773pt;}
._3e{width:783.424000pt;}
._67{width:835.141333pt;}
._55{width:925.344000pt;}
._5b{width:981.344000pt;}
._58{width:1009.610667pt;}
._59{width:1174.474667pt;}
._5a{width:1193.909333pt;}
._52{width:1400.823253pt;}
.fsf{font-size:2.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fsa{font-size:80.000000pt;}
.fse{font-size:85.120000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.fs10{font-size:106.880000pt;}
.fsd{font-size:117.120000pt;}
.fsc{font-size:128.000000pt;}
.fs0{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:2.880000pt;}
.y3a7{bottom:3.360000pt;}
.y181{bottom:3.520000pt;}
.y219{bottom:4.000000pt;}
.y3bc{bottom:4.320000pt;}
.y4f9{bottom:4.640000pt;}
.y19f{bottom:4.800000pt;}
.y4d0{bottom:5.120000pt;}
.y1dd{bottom:5.600000pt;}
.y1db{bottom:5.760000pt;}
.y210{bottom:5.920000pt;}
.y1c4{bottom:6.080000pt;}
.y18e{bottom:6.240000pt;}
.y196{bottom:6.400000pt;}
.y1ea{bottom:6.560000pt;}
.y608{bottom:6.720000pt;}
.y1df{bottom:6.880000pt;}
.y21b{bottom:7.040000pt;}
.y1b1{bottom:7.200000pt;}
.y1c9{bottom:7.520000pt;}
.y689{bottom:8.000000pt;}
.y591{bottom:8.800000pt;}
.y1af{bottom:9.120000pt;}
.y194{bottom:9.440000pt;}
.y58f{bottom:9.600000pt;}
.y19d{bottom:9.920000pt;}
.y212{bottom:10.880000pt;}
.y66d{bottom:11.200000pt;}
.y1f0{bottom:11.520000pt;}
.y27a{bottom:12.640000pt;}
.y49d{bottom:12.800000pt;}
.y1ad{bottom:12.840000pt;}
.y1ce{bottom:13.440000pt;}
.y614{bottom:13.920000pt;}
.y611{bottom:14.240000pt;}
.y657{bottom:14.400000pt;}
.y271{bottom:14.560000pt;}
.y1a8{bottom:14.880000pt;}
.y2ad{bottom:14.906667pt;}
.y1e6{bottom:15.040000pt;}
.y261{bottom:15.200000pt;}
.y199{bottom:15.360000pt;}
.y190{bottom:15.520000pt;}
.y1fd{bottom:15.680000pt;}
.y353{bottom:16.160000pt;}
.y2ab{bottom:16.320000pt;}
.y28a{bottom:16.480000pt;}
.y26f{bottom:16.640000pt;}
.y45d{bottom:16.666667pt;}
.y27c{bottom:16.800000pt;}
.y243{bottom:16.960000pt;}
.y259{bottom:17.600000pt;}
.y3ca{bottom:17.760000pt;}
.y4da{bottom:17.786667pt;}
.y545{bottom:17.960000pt;}
.y5e6{bottom:18.080000pt;}
.y5be{bottom:18.560000pt;}
.y1ec{bottom:18.880000pt;}
.y68e{bottom:19.520000pt;}
.y408{bottom:20.000000pt;}
.y288{bottom:20.160000pt;}
.y60c{bottom:20.200000pt;}
.y66f{bottom:20.320000pt;}
.y673{bottom:20.346667pt;}
.y2a4{bottom:20.480000pt;}
.y675{bottom:20.640000pt;}
.y1fb{bottom:20.800000pt;}
.y371{bottom:20.960000pt;}
.y68a{bottom:21.120000pt;}
.y247{bottom:21.280000pt;}
.y21e{bottom:21.440000pt;}
.y64e{bottom:21.640000pt;}
.y180{bottom:21.920000pt;}
.y694{bottom:21.946667pt;}
.y63d{bottom:22.080000pt;}
.y5ce{bottom:22.240000pt;}
.y61b{bottom:22.280000pt;}
.y5e1{bottom:22.400000pt;}
.y256{bottom:23.360000pt;}
.y5e3{bottom:23.680000pt;}
.y450{bottom:23.840000pt;}
.y3bb{bottom:23.866667pt;}
.y245{bottom:24.000000pt;}
.y1da{bottom:24.160000pt;}
.y638{bottom:24.186667pt;}
.y20f{bottom:24.320000pt;}
.y1c3{bottom:24.480000pt;}
.y1e9{bottom:24.960000pt;}
.y620{bottom:25.114667pt;}
.y22b{bottom:25.120000pt;}
.y217{bottom:25.280000pt;}
.y5e9{bottom:25.440000pt;}
.y500{bottom:25.760000pt;}
.y1c8{bottom:25.920000pt;}
.y4fd{bottom:25.946667pt;}
.y504{bottom:25.960000pt;}
.y430{bottom:26.080000pt;}
.y36f{bottom:26.240000pt;}
.y29f{bottom:26.400000pt;}
.y62e{bottom:26.720000pt;}
.y439{bottom:27.040000pt;}
.y18d{bottom:27.360000pt;}
.y197{bottom:27.520000pt;}
.y627{bottom:27.680000pt;}
.y4cf{bottom:27.840000pt;}
.y5d0{bottom:28.160000pt;}
.y251{bottom:28.480000pt;}
.y278{bottom:28.640000pt;}
.y5e4{bottom:28.800000pt;}
.y62a{bottom:28.960000pt;}
.y34b{bottom:29.280000pt;}
.y1f8{bottom:29.320000pt;}
.y5db{bottom:30.080000pt;}
.y34f{bottom:30.240000pt;}
.y1ac{bottom:31.240000pt;}
.y5df{bottom:33.120000pt;}
.y1a7{bottom:33.280000pt;}
.y260{bottom:33.600000pt;}
.y640{bottom:34.560000pt;}
.y2aa{bottom:34.720000pt;}
.y26e{bottom:35.040000pt;}
.y242{bottom:35.360000pt;}
.y610{bottom:35.520000pt;}
.y356{bottom:35.680000pt;}
.y46a{bottom:36.000000pt;}
.y45c{bottom:36.026667pt;}
.y647{bottom:36.800000pt;}
.y650{bottom:36.960000pt;}
.y443{bottom:37.120000pt;}
.y3ed{bottom:37.280000pt;}
.y4e5{bottom:37.306667pt;}
.y5d9{bottom:37.760000pt;}
.y287{bottom:38.560000pt;}
.y1fa{bottom:39.200000pt;}
.y66e{bottom:39.840000pt;}
.y672{bottom:39.866667pt;}
.y679{bottom:40.000000pt;}
.y5d2{bottom:40.160000pt;}
.y187{bottom:40.320000pt;}
.y693{bottom:40.346667pt;}
.y28c{bottom:40.360000pt;}
.y407{bottom:40.666667pt;}
.y60b{bottom:41.480000pt;}
.y255{bottom:41.760000pt;}
.y1d9{bottom:42.560000pt;}
.y20e{bottom:42.720000pt;}
.y64d{bottom:42.760000pt;}
.y1c2{bottom:42.880000pt;}
.y1e8{bottom:43.360000pt;}
.y3ba{bottom:43.386667pt;}
.y22a{bottom:43.520000pt;}
.y216{bottom:43.680000pt;}
.y1c7{bottom:44.320000pt;}
.y29e{bottom:44.800000pt;}
.y42f{bottom:45.600000pt;}
.y34a{bottom:46.080000pt;}
.y438{bottom:46.560000pt;}
.y5e8{bottom:46.720000pt;}
.y250{bottom:46.880000pt;}
.y277{bottom:47.040000pt;}
.y4fc{bottom:47.066667pt;}
.y503{bottom:47.080000pt;}
.y1f7{bottom:47.720000pt;}
.y62d{bottom:47.840000pt;}
.y3ad{bottom:48.346667pt;}
.y5d7{bottom:48.480000pt;}
.y605{bottom:48.520000pt;}
.y607{bottom:48.960000pt;}
.y64a{bottom:48.986667pt;}
.y3c9{bottom:49.600000pt;}
.y1ab{bottom:49.640000pt;}
.y61f{bottom:49.754667pt;}
.y63b{bottom:49.920000pt;}
.y625{bottom:49.960000pt;}
.y352{bottom:50.080000pt;}
.y3f6{bottom:50.400000pt;}
.y417{bottom:50.560000pt;}
.y54e{bottom:50.586667pt;}
.y5cc{bottom:50.880000pt;}
.y14{bottom:51.040000pt;}
.y1a6{bottom:51.680000pt;}
.y544{bottom:52.200000pt;}
.y509{bottom:52.346667pt;}
.y355{bottom:52.640000pt;}
.y2a9{bottom:53.120000pt;}
.y26d{bottom:53.440000pt;}
.y241{bottom:53.760000pt;}
.y68d{bottom:53.960000pt;}
.y5de{bottom:54.400000pt;}
.y692{bottom:54.720000pt;}
.y63f{bottom:55.840000pt;}
.y613{bottom:56.160000pt;}
.y442{bottom:56.640000pt;}
.y4eb{bottom:56.680000pt;}
.y3ec{bottom:56.826667pt;}
.y286{bottom:56.960000pt;}
.y646{bottom:57.920000pt;}
.y2a1{bottom:58.080000pt;}
.y186{bottom:58.720000pt;}
.y23e{bottom:58.760000pt;}
.y671{bottom:59.386667pt;}
.y5e0{bottom:59.520000pt;}
.y674{bottom:59.706667pt;}
.y67a{bottom:59.840000pt;}
.y254{bottom:60.200000pt;}
.y1d8{bottom:60.960000pt;}
.y20d{bottom:61.120000pt;}
.y1c1{bottom:61.160000pt;}
.y406{bottom:61.306667pt;}
.y229{bottom:61.920000pt;}
.y215{bottom:62.080000pt;}
.y60a{bottom:62.600000pt;}
.y1c6{bottom:62.720000pt;}
.y44f{bottom:62.880000pt;}
.y576{bottom:62.906667pt;}
.y349{bottom:63.040000pt;}
.y29d{bottom:63.240000pt;}
.y5eb{bottom:63.840000pt;}
.y34e{bottom:64.000000pt;}
.y42e{bottom:65.120000pt;}
.y24f{bottom:65.280000pt;}
.y437{bottom:66.080000pt;}
.y1f6{bottom:66.120000pt;}
.y36e{bottom:66.426667pt;}
.y351{bottom:67.040000pt;}
.y5d1{bottom:67.880000pt;}
.y5cb{bottom:68.000000pt;}
.y1aa{bottom:68.040000pt;}
.y4ff{bottom:68.160000pt;}
.y4fb{bottom:68.186667pt;}
.y502{bottom:68.200000pt;}
.y45b{bottom:68.986667pt;}
.y497{bottom:69.120000pt;}
.y62c{bottom:69.160000pt;}
.y354{bottom:69.440000pt;}
.y5d6{bottom:69.786667pt;}
.y604{bottom:69.800000pt;}
.y1a5{bottom:70.080000pt;}
.y525{bottom:70.106667pt;}
.y649{bottom:70.266667pt;}
.y624{bottom:71.080000pt;}
.y5ff{bottom:71.360000pt;}
.y393{bottom:71.706667pt;}
.y26c{bottom:71.840000pt;}
.y5d8{bottom:74.906667pt;}
.y1d5{bottom:75.360000pt;}
.y285{bottom:75.400000pt;}
.y5dd{bottom:75.560000pt;}
.y441{bottom:76.160000pt;}
.y4ea{bottom:76.200000pt;}
.y4e4{bottom:76.346667pt;}
.y643{bottom:76.960000pt;}
.y185{bottom:77.000000pt;}
.y1e5{bottom:77.120000pt;}
.y23d{bottom:77.160000pt;}
.y61e{bottom:77.434667pt;}
.y63a{bottom:77.466667pt;}
.y253{bottom:78.600000pt;}
.y645{bottom:79.200000pt;}
.y1d7{bottom:79.360000pt;}
.y20c{bottom:79.520000pt;}
.y1c0{bottom:79.560000pt;}
.y348{bottom:79.840000pt;}
.y37d{bottom:79.866667pt;}
.y3ac{bottom:80.186667pt;}
.y228{bottom:80.320000pt;}
.y214{bottom:80.480000pt;}
.y34d{bottom:80.800000pt;}
.y1c5{bottom:81.120000pt;}
.y3c8{bottom:81.306667pt;}
.y29c{bottom:81.640000pt;}
.y405{bottom:81.786667pt;}
.y44e{bottom:82.400000pt;}
.y3f5{bottom:83.360000pt;}
.y54d{bottom:83.386667pt;}
.y5a7{bottom:83.546667pt;}
.y24e{bottom:83.680000pt;}
.y1f5{bottom:84.520000pt;}
.y42d{bottom:84.640000pt;}
.y436{bottom:85.600000pt;}
.y508{bottom:86.746667pt;}
.y26a{bottom:88.040000pt;}
.y1a4{bottom:88.520000pt;}
.y68c{bottom:89.160000pt;}
.y3eb{bottom:89.626667pt;}
.y691{bottom:90.240000pt;}
.y5d5{bottom:90.906667pt;}
.y603{bottom:90.920000pt;}
.y623{bottom:92.200000pt;}
.y36d{bottom:93.306667pt;}
.y22f{bottom:93.640000pt;}
.y1d4{bottom:93.760000pt;}
.y284{bottom:93.800000pt;}
.y184{bottom:95.400000pt;}
.y1e4{bottom:95.520000pt;}
.y23c{bottom:95.560000pt;}
.y440{bottom:95.680000pt;}
.y4e9{bottom:95.720000pt;}
.y4d9{bottom:95.840000pt;}
.y4e3{bottom:95.866667pt;}
.y347{bottom:96.640000pt;}
.y34c{bottom:97.760000pt;}
.y20b{bottom:97.920000pt;}
.y1bf{bottom:97.960000pt;}
.y642{bottom:98.080000pt;}
.y63e{bottom:98.120000pt;}
.y227{bottom:98.720000pt;}
.y282{bottom:98.880000pt;}
.y29b{bottom:100.040000pt;}
.y45a{bottom:101.786667pt;}
.y453{bottom:101.920000pt;}
.y24d{bottom:102.080000pt;}
.y404{bottom:102.426667pt;}
.y5bb{bottom:102.906667pt;}
.y1f4{bottom:102.920000pt;}
.y42c{bottom:104.200000pt;}
.y435{bottom:105.146667pt;}
.y269{bottom:106.440000pt;}
.y37c{bottom:106.746667pt;}
.y1a3{bottom:106.920000pt;}
.y3ea{bottom:109.146667pt;}
.y690{bottom:111.840000pt;}
.y3ab{bottom:111.866667pt;}
.y22e{bottom:112.040000pt;}
.y1d3{bottom:112.160000pt;}
.y3c7{bottom:113.146667pt;}
.y183{bottom:113.800000pt;}
.y1e3{bottom:113.920000pt;}
.y23b{bottom:113.960000pt;}
.y43f{bottom:115.200000pt;}
.y4e8{bottom:115.240000pt;}
.y4d8{bottom:115.360000pt;}
.y4e2{bottom:115.386667pt;}
.y112{bottom:116.160000pt;}
.y554{bottom:116.186667pt;}
.y20a{bottom:116.320000pt;}
.y54c{bottom:116.346667pt;}
.y1be{bottom:116.360000pt;}
.y226{bottom:117.120000pt;}
.y281{bottom:117.280000pt;}
.y29a{bottom:118.440000pt;}
.y13{bottom:119.520000pt;}
.y446{bottom:119.680000pt;}
.y36c{bottom:120.186667pt;}
.y155{bottom:120.320000pt;}
.y24c{bottom:120.480000pt;}
.y507{bottom:121.306667pt;}
.y1f3{bottom:121.320000pt;}
.y452{bottom:121.466667pt;}
.y44d{bottom:121.600000pt;}
.y2df{bottom:122.240000pt;}
.y403{bottom:123.066667pt;}
.y16c{bottom:123.200000pt;}
.y49c{bottom:123.240000pt;}
.y42b{bottom:123.720000pt;}
.y434{bottom:124.666667pt;}
.y268{bottom:124.840000pt;}
.y4f{bottom:125.120000pt;}
.y4de{bottom:125.280000pt;}
.y1a2{bottom:125.320000pt;}
.y3ae{bottom:125.440000pt;}
.yf1{bottom:125.920000pt;}
.ya3{bottom:126.560000pt;}
.y5a9{bottom:126.880000pt;}
.y2ae{bottom:127.040000pt;}
.y3cc{bottom:127.360000pt;}
.y5f3{bottom:127.392000pt;}
.y555{bottom:128.160000pt;}
.y244{bottom:128.640000pt;}
.y3e9{bottom:128.666667pt;}
.y4b2{bottom:128.960000pt;}
.y297{bottom:129.760000pt;}
.y630{bottom:130.112000pt;}
.y168{bottom:130.240000pt;}
.y22d{bottom:130.440000pt;}
.y1d2{bottom:130.560000pt;}
.y54a{bottom:130.720000pt;}
.y538{bottom:130.880000pt;}
.y61d{bottom:130.912000pt;}
.y424{bottom:131.040000pt;}
.y111{bottom:131.360000pt;}
.y1e2{bottom:132.320000pt;}
.y23a{bottom:132.360000pt;}
.y49a{bottom:132.800000pt;}
.y292{bottom:132.840000pt;}
.y21c{bottom:132.960000pt;}
.y602{bottom:133.160000pt;}
.y4ed{bottom:133.280000pt;}
.y19b{bottom:133.600000pt;}
.y37b{bottom:133.626667pt;}
.y459{bottom:134.586667pt;}
.y209{bottom:134.720000pt;}
.y1bd{bottom:134.760000pt;}
.y4dd{bottom:134.880000pt;}
.y4e1{bottom:134.906667pt;}
.y43e{bottom:134.920000pt;}
.y1ca{bottom:135.360000pt;}
.y655{bottom:135.520000pt;}
.y225{bottom:135.560000pt;}
.y280{bottom:135.680000pt;}
.y60d{bottom:136.506667pt;}
.y299{bottom:136.840000pt;}
.y50a{bottom:137.280000pt;}
.y53a{bottom:138.080000pt;}
.y394{bottom:138.400000pt;}
.y24b{bottom:138.920000pt;}
.y577{bottom:139.360000pt;}
.y575{bottom:139.706667pt;}
.y392{bottom:140.000000pt;}
.yb4{bottom:141.120000pt;}
.y11c{bottom:141.760000pt;}
.y524{bottom:141.946667pt;}
.y3f8{bottom:142.560000pt;}
.y1ee{bottom:142.880000pt;}
.y35a{bottom:143.040000pt;}
.y267{bottom:143.240000pt;}
.y42a{bottom:143.400000pt;}
.ye4{bottom:143.520000pt;}
.y3aa{bottom:143.546667pt;}
.y1a1{bottom:143.720000pt;}
.y38a{bottom:144.160000pt;}
.y2cb{bottom:144.640000pt;}
.y3c6{bottom:144.826667pt;}
.y695{bottom:144.960000pt;}
.y387{bottom:145.120000pt;}
.y483{bottom:146.080000pt;}
.y384{bottom:146.240000pt;}
.y110{bottom:147.040000pt;}
.y36b{bottom:147.066667pt;}
.y588{bottom:147.360000pt;}
.y154{bottom:147.840000pt;}
.y4d7{bottom:148.160000pt;}
.y3e8{bottom:148.186667pt;}
.y5f2{bottom:148.666667pt;}
.y1d1{bottom:148.960000pt;}
.y46f{bottom:149.120000pt;}
.y416{bottom:149.146667pt;}
.y3f4{bottom:149.160000pt;}
.y64f{bottom:149.466667pt;}
.y2de{bottom:149.920000pt;}
.y1e1{bottom:150.720000pt;}
.y239{bottom:150.760000pt;}
.y543{bottom:150.920000pt;}
.y56a{bottom:151.040000pt;}
.y499{bottom:151.200000pt;}
.y4b1{bottom:151.360000pt;}
.y296{bottom:151.520000pt;}
.y264{bottom:151.840000pt;}
.y10f{bottom:152.320000pt;}
.y126{bottom:152.480000pt;}
.y30f{bottom:152.640000pt;}
.y4e{bottom:153.120000pt;}
.y1bc{bottom:153.160000pt;}
.yf0{bottom:153.440000pt;}
.y224{bottom:153.960000pt;}
.ya2{bottom:154.080000pt;}
.y27f{bottom:154.120000pt;}
.y2e1{bottom:154.240000pt;}
.y563{bottom:154.560000pt;}
.y5ba{bottom:155.066667pt;}
.y92{bottom:155.200000pt;}
.y12{bottom:155.520000pt;}
.y506{bottom:155.706667pt;}
.y654{bottom:156.640000pt;}
.y402{bottom:156.986667pt;}
.y24a{bottom:157.320000pt;}
.y433{bottom:157.626667pt;}
.y167{bottom:157.760000pt;}
.y291{bottom:157.960000pt;}
.y561{bottom:158.560000pt;}
.y5a6{bottom:158.906667pt;}
.y4cb{bottom:160.480000pt;}
.y37a{bottom:160.506667pt;}
.y4ee{bottom:160.960000pt;}
.y359{bottom:161.440000pt;}
.y523{bottom:161.466667pt;}
.y266{bottom:161.640000pt;}
.y445{bottom:162.880000pt;}
.y10e{bottom:163.840000pt;}
.yc2{bottom:164.000000pt;}
.y5dc{bottom:165.626667pt;}
.y62f{bottom:166.426667pt;}
.yd6{bottom:166.880000pt;}
.y132{bottom:167.520000pt;}
.y458{bottom:167.546667pt;}
.y4dc{bottom:167.680000pt;}
.y3e7{bottom:167.706667pt;}
.y43d{bottom:167.720000pt;}
.yb3{bottom:168.640000pt;}
.y25d{bottom:169.120000pt;}
.y275{bottom:169.146667pt;}
.y238{bottom:169.160000pt;}
.y11b{bottom:169.440000pt;}
.y4cc{bottom:169.760000pt;}
.y5f1{bottom:169.786667pt;}
.ye3{bottom:171.200000pt;}
.y208{bottom:171.520000pt;}
.y1bb{bottom:171.560000pt;}
.y21a{bottom:171.840000pt;}
.y2ca{bottom:172.320000pt;}
.y223{bottom:172.360000pt;}
.y574{bottom:172.506667pt;}
.y27e{bottom:172.520000pt;}
.y448{bottom:172.640000pt;}
.y2f{bottom:173.760000pt;}
.y4b0{bottom:173.920000pt;}
.y423{bottom:174.240000pt;}
.y19a{bottom:174.560000pt;}
.y290{bottom:175.080000pt;}
.y2f9{bottom:175.360000pt;}
.y3a9{bottom:175.386667pt;}
.y153{bottom:175.520000pt;}
.y5b9{bottom:175.546667pt;}
.y2ac{bottom:176.160000pt;}
.y429{bottom:176.200000pt;}
.y3c5{bottom:176.506667pt;}
.yf9{bottom:177.440000pt;}
.y401{bottom:177.466667pt;}
.y494{bottom:177.960000pt;}
.y653{bottom:178.400000pt;}
.y498{bottom:179.680000pt;}
.y590{bottom:180.026667pt;}
.y125{bottom:180.186667pt;}
.y30e{bottom:180.346667pt;}
.y4d{bottom:180.986667pt;}
.yef{bottom:181.146667pt;}
.y75{bottom:181.786667pt;}
.y415{bottom:181.946667pt;}
.y3f3{bottom:181.960000pt;}
.y549{bottom:182.106667pt;}
.y91{bottom:182.746667pt;}
.y61c{bottom:184.186667pt;}
.y166{bottom:185.466667pt;}
.y535{bottom:186.426667pt;}
.y36a{bottom:187.226667pt;}
.y25c{bottom:187.520000pt;}
.y274{bottom:187.546667pt;}
.y237{bottom:187.560000pt;}
.y207{bottom:189.920000pt;}
.y11{bottom:189.946667pt;}
.y1ba{bottom:189.960000pt;}
.y62b{bottom:190.106667pt;}
.y505{bottom:190.266667pt;}
.y263{bottom:190.746667pt;}
.y222{bottom:190.760000pt;}
.y5f0{bottom:190.906667pt;}
.yc1{bottom:191.706667pt;}
.y5a5{bottom:191.866667pt;}
.y28f{bottom:191.880000pt;}
.y13c{bottom:192.666667pt;}
.y358{bottom:193.306667pt;}
.yd5{bottom:194.426667pt;}
.y131{bottom:195.066667pt;}
.yb2{bottom:196.346667pt;}
.y11a{bottom:196.986667pt;}
.y4ec{bottom:197.146667pt;}
.y198{bottom:197.466667pt;}
.y400{bottom:198.106667pt;}
.y422{bottom:198.426667pt;}
.ye2{bottom:198.746667pt;}
.y541{bottom:200.026667pt;}
.y457{bottom:200.346667pt;}
.y652{bottom:200.666667pt;}
.y152{bottom:203.066667pt;}
.y43b{bottom:203.240000pt;}
.y33b{bottom:203.546667pt;}
.y295{bottom:203.866667pt;}
.y482{bottom:204.826667pt;}
.yf8{bottom:204.986667pt;}
.y2dd{bottom:205.146667pt;}
.y25b{bottom:205.946667pt;}
.y236{bottom:205.960000pt;}
.y3e6{bottom:206.906667pt;}
.y3a8{bottom:207.066667pt;}
.y218{bottom:207.226667pt;}
.y124{bottom:207.706667pt;}
.y32c{bottom:207.866667pt;}
.y3c4{bottom:208.186667pt;}
.y206{bottom:208.346667pt;}
.y1b9{bottom:208.360000pt;}
.yee{bottom:208.666667pt;}
.y4c{bottom:208.826667pt;}
.y28e{bottom:208.840000pt;}
.y221{bottom:209.160000pt;}
.ya1{bottom:209.306667pt;}
.y74{bottom:209.466667pt;}
.y4d6{bottom:210.746667pt;}
.y493{bottom:210.760000pt;}
.y46e{bottom:211.386667pt;}
.y2c9{bottom:213.146667pt;}
.y357{bottom:213.306667pt;}
.y522{bottom:213.946667pt;}
.y4ca{bottom:214.266667pt;}
.y2e{bottom:214.746667pt;}
.y55d{bottom:214.760000pt;}
.y414{bottom:214.906667pt;}
.y68f{bottom:216.346667pt;}
.y469{bottom:216.360000pt;}
.y58e{bottom:217.306667pt;}
.y240{bottom:218.746667pt;}
.yc0{bottom:219.226667pt;}
.y10{bottom:219.706667pt;}
.y456{bottom:219.906667pt;}
.y90{bottom:220.346667pt;}
.y2a8{bottom:221.786667pt;}
.yd4{bottom:221.946667pt;}
.y17d{bottom:222.106667pt;}
.y130{bottom:222.746667pt;}
.y43a{bottom:222.760000pt;}
.y444{bottom:223.546667pt;}
.yb1{bottom:223.866667pt;}
.y235{bottom:224.360000pt;}
.y3f2{bottom:224.520000pt;}
.y5ef{bottom:225.466667pt;}
.y28d{bottom:225.640000pt;}
.ye1{bottom:226.426667pt;}
.y205{bottom:226.746667pt;}
.y1b8{bottom:226.760000pt;}
.y369{bottom:227.386667pt;}
.y1eb{bottom:228.826667pt;}
.y27b{bottom:229.786667pt;}
.y5b8{bottom:230.106667pt;}
.y4d5{bottom:230.306667pt;}
.y151{bottom:230.746667pt;}
.y33a{bottom:231.066667pt;}
.y48b{bottom:231.706667pt;}
.y4af{bottom:232.186667pt;}
.yf7{bottom:232.666667pt;}
.y496{bottom:232.986667pt;}
.y421{bottom:233.146667pt;}
.y378{bottom:234.586667pt;}
.y123{bottom:235.386667pt;}
.y32b{bottom:235.546667pt;}
.y64c{bottom:235.706667pt;}
.yed{bottom:236.346667pt;}
.y61a{bottom:236.506667pt;}
.y4b{bottom:236.826667pt;}
.y73{bottom:236.986667pt;}
.y350{bottom:237.626667pt;}
.y10d{bottom:237.946667pt;}
.y3ff{bottom:239.226667pt;}
.y67b{bottom:239.386667pt;}
.y119{bottom:239.866667pt;}
.y3c3{bottom:240.026667pt;}
.y2c8{bottom:240.826667pt;}
.y540{bottom:240.986667pt;}
.y213{bottom:241.946667pt;}
.y2d{bottom:242.266667pt;}
.yf{bottom:242.586667pt;}
.y234{bottom:242.760000pt;}
.y262{bottom:243.066667pt;}
.y492{bottom:243.560000pt;}
.y204{bottom:245.146667pt;}
.y1b7{bottom:245.160000pt;}
.y3e5{bottom:245.946667pt;}
.y2f8{bottom:246.586667pt;}
.y5ee{bottom:246.626667pt;}
.y521{bottom:246.746667pt;}
.ybf{bottom:246.906667pt;}
.y481{bottom:247.386667pt;}
.y413{bottom:247.706667pt;}
.y55c{bottom:247.720000pt;}
.y13b{bottom:247.866667pt;}
.y46d{bottom:248.186667pt;}
.y4c9{bottom:248.986667pt;}
.y600{bottom:249.186667pt;}
.y294{bottom:249.466667pt;}
.yfa{bottom:249.626667pt;}
.y54b{bottom:249.786667pt;}
.y12f{bottom:250.266667pt;}
.y5b7{bottom:250.746667pt;}
.yb0{bottom:251.546667pt;}
.y455{bottom:251.906667pt;}
.ye0{bottom:253.946667pt;}
.y58d{bottom:255.546667pt;}
.y17c{bottom:256.826667pt;}
.y666{bottom:256.986667pt;}
.y391{bottom:257.466667pt;}
.y3f1{bottom:257.480000pt;}
.y150{bottom:258.266667pt;}
.y339{bottom:258.746667pt;}
.yf6{bottom:260.186667pt;}
.y2dc{bottom:260.346667pt;}
.y233{bottom:261.186667pt;}
.y55f{bottom:262.266667pt;}
.yd3{bottom:262.906667pt;}
.y32a{bottom:263.066667pt;}
.y203{bottom:263.546667pt;}
.y1b6{bottom:263.586667pt;}
.y53f{bottom:263.706667pt;}
.ya0{bottom:264.506667pt;}
.y4a{bottom:264.666667pt;}
.y425{bottom:264.826667pt;}
.y4d4{bottom:264.866667pt;}
.y3e4{bottom:265.506667pt;}
.y520{bottom:266.306667pt;}
.y46c{bottom:266.586667pt;}
.y412{bottom:267.226667pt;}
.y324{bottom:267.546667pt;}
.y368{bottom:267.746667pt;}
.y4ae{bottom:268.026667pt;}
.y2c7{bottom:268.346667pt;}
.y5da{bottom:269.346667pt;}
.y2c{bottom:269.946667pt;}
.y5b6{bottom:271.266667pt;}
.y58a{bottom:271.586667pt;}
.y3c2{bottom:271.746667pt;}
.y43c{bottom:272.826667pt;}
.y3a5{bottom:273.186667pt;}
.y2f7{bottom:274.266667pt;}
.ybe{bottom:274.426667pt;}
.y5a4{bottom:274.466667pt;}
.y1e7{bottom:274.586667pt;}
.y377{bottom:274.746667pt;}
.y279{bottom:274.906667pt;}
.y572{bottom:275.106667pt;}
.y13a{bottom:275.546667pt;}
.y491{bottom:276.520000pt;}
.y480{bottom:276.666667pt;}
.y3f0{bottom:277.000000pt;}
.y8f{bottom:277.146667pt;}
.y12e{bottom:277.946667pt;}
.y420{bottom:278.586667pt;}
.y10b{bottom:278.906667pt;}
.y30d{bottom:279.066667pt;}
.y2a7{bottom:279.586667pt;}
.y553{bottom:280.506667pt;}
.y55b{bottom:280.520000pt;}
.y548{bottom:280.666667pt;}
.y557{bottom:280.706667pt;}
.ydf{bottom:281.626667pt;}
.y202{bottom:281.946667pt;}
.y1b5{bottom:281.986667pt;}
.ye{bottom:282.106667pt;}
.y454{bottom:283.586667pt;}
.y10c{bottom:284.986667pt;}
.y14f{bottom:285.946667pt;}
.yf5{bottom:287.866667pt;}
.y629{bottom:288.066667pt;}
.y25f{bottom:288.826667pt;}
.y665{bottom:289.946667pt;}
.y4ad{bottom:290.426667pt;}
.y122{bottom:290.586667pt;}
.y329{bottom:290.746667pt;}
.y589{bottom:291.106667pt;}
.y118{bottom:291.546667pt;}
.y3a4{bottom:291.586667pt;}
.y5b5{bottom:291.906667pt;}
.y72{bottom:292.186667pt;}
.y3ef{bottom:292.200000pt;}
.yaf{bottom:292.346667pt;}
.y49{bottom:292.506667pt;}
.y63c{bottom:292.866667pt;}
.y58c{bottom:293.306667pt;}
.y3fe{bottom:293.826667pt;}
.y5a3{bottom:293.986667pt;}
.y367{bottom:294.466667pt;}
.y323{bottom:295.066667pt;}
.y2c6{bottom:296.026667pt;}
.y2b{bottom:297.466667pt;}
.y2a6{bottom:297.986667pt;}
.y3e3{bottom:298.306667pt;}
.y53e{bottom:298.426667pt;}
.y51f{bottom:299.106667pt;}
.y195{bottom:299.226667pt;}
.y201{bottom:300.346667pt;}
.y1b4{bottom:300.386667pt;}
.y23f{bottom:300.666667pt;}
.y4c8{bottom:300.986667pt;}
.y376{bottom:301.666667pt;}
.y2f6{bottom:301.786667pt;}
.ybd{bottom:302.106667pt;}
.y338{bottom:302.266667pt;}
.y5ed{bottom:302.626667pt;}
.y139{bottom:303.066667pt;}
.y46b{bottom:303.386667pt;}
.y3c1{bottom:303.426667pt;}
.yd2{bottom:303.866667pt;}
.yd{bottom:304.666667pt;}
.y8e{bottom:304.826667pt;}
.y33e{bottom:304.986667pt;}
.y12d{bottom:305.466667pt;}
.y47f{bottom:305.946667pt;}
.y10a{bottom:306.426667pt;}
.y30c{bottom:306.746667pt;}
.y64b{bottom:306.786667pt;}
.y17b{bottom:308.506667pt;}
.yde{bottom:309.146667pt;}
.y490{bottom:309.320000pt;}
.y678{bottom:311.066667pt;}
.y4ac{bottom:312.826667pt;}
.y14e{bottom:313.466667pt;}
.y55a{bottom:313.480000pt;}
.y552{bottom:313.506667pt;}
.y3fd{bottom:314.466667pt;}
.y5ca{bottom:315.226667pt;}
.yf4{bottom:315.386667pt;}
.y571{bottom:316.066667pt;}
.y2a5{bottom:316.386667pt;}
.y619{bottom:317.346667pt;}
.y3e2{bottom:317.826667pt;}
.y293{bottom:317.946667pt;}
.y121{bottom:318.106667pt;}
.y41f{bottom:318.266667pt;}
.y276{bottom:318.426667pt;}
.y200{bottom:318.746667pt;}
.y1b3{bottom:318.786667pt;}
.y117{bottom:319.066667pt;}
.y411{bottom:319.386667pt;}
.y9f{bottom:319.706667pt;}
.y71{bottom:319.866667pt;}
.y48{bottom:320.506667pt;}
.y390{bottom:320.826667pt;}
.y366{bottom:321.346667pt;}
.y319{bottom:322.746667pt;}
.y3a3{bottom:323.426667pt;}
.y2c5{bottom:323.546667pt;}
.y2a{bottom:325.146667pt;}
.y5b4{bottom:325.826667pt;}
.y45e{bottom:326.266667pt;}
.y609{bottom:326.946667pt;}
.y375{bottom:328.546667pt;}
.y16b{bottom:328.666667pt;}
.y2f5{bottom:329.466667pt;}
.y337{bottom:329.946667pt;}
.y2db{bottom:330.266667pt;}
.y138{bottom:330.746667pt;}
.y58b{bottom:331.066667pt;}
.yd1{bottom:331.546667pt;}
.y8d{bottom:332.346667pt;}
.yae{bottom:333.306667pt;}
.y664{bottom:333.946667pt;}
.y109{bottom:334.106667pt;}
.y30b{bottom:334.266667pt;}
.yc{bottom:334.586667pt;}
.y3fc{bottom:334.946667pt;}
.y193{bottom:335.066667pt;}
.y3c0{bottom:335.266667pt;}
.y4ab{bottom:335.386667pt;}
.y41e{bottom:335.546667pt;}
.y570{bottom:335.586667pt;}
.y17a{bottom:336.186667pt;}
.y5c9{bottom:336.346667pt;}
.y165{bottom:336.666667pt;}
.y3e1{bottom:337.346667pt;}
.y51e{bottom:338.306667pt;}
.y618{bottom:338.466667pt;}
.y5ec{bottom:338.786667pt;}
.y38f{bottom:339.226667pt;}
.y1b2{bottom:339.386667pt;}
.y410{bottom:339.906667pt;}
.y14d{bottom:341.146667pt;}
.y48f{bottom:342.280000pt;}
.ybc{bottom:343.066667pt;}
.y639{bottom:343.106667pt;}
.y5d4{bottom:343.746667pt;}
.y68b{bottom:344.026667pt;}
.y4e7{bottom:345.626667pt;}
.y120{bottom:345.786667pt;}
.y33d{bottom:345.946667pt;}
.y12c{bottom:346.426667pt;}
.y5a2{bottom:346.466667pt;}
.y116{bottom:346.746667pt;}
.y70{bottom:347.386667pt;}
.y232{bottom:347.706667pt;}
.y586{bottom:347.906667pt;}
.y365{bottom:348.226667pt;}
.y47{bottom:348.346667pt;}
.y559{bottom:348.360000pt;}
.y551{bottom:348.386667pt;}
.y547{bottom:348.506667pt;}
.y556{bottom:348.546667pt;}
.y47e{bottom:348.666667pt;}
.ydd{bottom:350.106667pt;}
.y318{bottom:350.266667pt;}
.y25e{bottom:350.586667pt;}
.y211{bottom:350.746667pt;}
.y2c4{bottom:351.226667pt;}
.y495{bottom:351.546667pt;}
.y648{bottom:353.026667pt;}
.y41d{bottom:353.946667pt;}
.y3a2{bottom:355.106667pt;}
.y374{bottom:355.426667pt;}
.yf3{bottom:356.346667pt;}
.y3e0{bottom:356.866667pt;}
.y336{bottom:357.466667pt;}
.y38e{bottom:357.626667pt;}
.y4aa{bottom:357.786667pt;}
.y51d{bottom:357.826667pt;}
.y137{bottom:358.266667pt;}
.y5fe{bottom:358.306667pt;}
.yd0{bottom:359.066667pt;}
.y617{bottom:359.586667pt;}
.y8c{bottom:360.026667pt;}
.y30a{bottom:361.946667pt;}
.y2da{bottom:363.226667pt;}
.y179{bottom:363.706667pt;}
.y164{bottom:364.346667pt;}
.y28b{bottom:364.986667pt;}
.y29{bottom:365.946667pt;}
.y5a1{bottom:365.986667pt;}
.y322{bottom:366.266667pt;}
.y4c7{bottom:366.746667pt;}
.y3bf{bottom:366.946667pt;}
.y663{bottom:367.066667pt;}
.y628{bottom:367.106667pt;}
.y585{bottom:367.586667pt;}
.y56f{bottom:368.386667pt;}
.y3a6{bottom:368.506667pt;}
.y14c{bottom:368.666667pt;}
.y41c{bottom:372.346667pt;}
.y2f4{bottom:372.986667pt;}
.y11f{bottom:373.306667pt;}
.y40f{bottom:373.826667pt;}
.y12b{bottom:373.946667pt;}
.y192{bottom:374.106667pt;}
.yad{bottom:374.266667pt;}
.y6f{bottom:375.066667pt;}
.y364{bottom:375.106667pt;}
.y501{bottom:375.866667pt;}
.y46{bottom:376.186667pt;}
.y3df{bottom:376.386667pt;}
.ydc{bottom:377.626667pt;}
.y317{bottom:377.946667pt;}
.yb{bottom:378.266667pt;}
.y2c3{bottom:378.746667pt;}
.y4a9{bottom:380.346667pt;}
.y573{bottom:380.986667pt;}
.y3fb{bottom:381.986667pt;}
.y373{bottom:382.306667pt;}
.ybb{bottom:383.866667pt;}
.y9e{bottom:384.986667pt;}
.y335{bottom:385.146667pt;}
.y5a0{bottom:385.506667pt;}
.y136{bottom:385.946667pt;}
.ycf{bottom:386.746667pt;}
.y8b{bottom:387.546667pt;}
.y5b3{bottom:387.586667pt;}
.y3a1{bottom:388.066667pt;}
.y328{bottom:389.506667pt;}
.y51c{bottom:390.626667pt;}
.y41b{bottom:390.786667pt;}
.y28{bottom:393.666667pt;}
.y1ff{bottom:393.826667pt;}
.y321{bottom:393.986667pt;}
.y1e0{bottom:394.466667pt;}
.y3de{bottom:395.906667pt;}
.y14b{bottom:396.386667pt;}
.y53d{bottom:397.026667pt;}
.y25a{bottom:397.666667pt;}
.y381{bottom:398.466667pt;}
.y3be{bottom:398.626667pt;}
.y5ea{bottom:399.453333pt;}
.y38d{bottom:399.586667pt;}
.y5c8{bottom:399.906667pt;}
.y662{bottom:400.226667pt;}
.y2f3{bottom:400.706667pt;}
.y11e{bottom:401.026667pt;}
.y4c6{bottom:401.186667pt;}
.y12a{bottom:401.666667pt;}
.yac{bottom:401.986667pt;}
.y5fd{bottom:402.173333pt;}
.y677{bottom:402.466667pt;}
.y6e{bottom:402.626667pt;}
.y4a8{bottom:402.786667pt;}
.y45{bottom:404.226667pt;}
.y178{bottom:404.706667pt;}
.y59f{bottom:405.026667pt;}
.ydb{bottom:405.346667pt;}
.y309{bottom:405.506667pt;}
.y2c2{bottom:406.466667pt;}
.y47d{bottom:407.266667pt;}
.y48e{bottom:407.906667pt;}
.y5b2{bottom:408.226667pt;}
.y584{bottom:408.386667pt;}
.y41a{bottom:409.186667pt;}
.y3a0{bottom:409.346667pt;}
.y191{bottom:409.986667pt;}
.ya{bottom:410.146667pt;}
.yba{bottom:411.586667pt;}
.y334{bottom:412.706667pt;}
.y135{bottom:413.506667pt;}
.y626{bottom:414.173333pt;}
.yce{bottom:414.306667pt;}
.y40e{bottom:415.106667pt;}
.y8a{bottom:415.266667pt;}
.y3dd{bottom:415.586667pt;}
.y327{bottom:417.186667pt;}
.y546{bottom:418.786667pt;}
.y468{bottom:420.386667pt;}
.y27{bottom:421.186667pt;}
.y320{bottom:421.506667pt;}
.y380{bottom:423.106667pt;}
.y4c5{bottom:423.586667pt;}
.y14a{bottom:423.906667pt;}
.y4a7{bottom:425.186667pt;}
.y606{bottom:426.013333pt;}
.y56e{bottom:426.626667pt;}
.y419{bottom:427.586667pt;}
.y48d{bottom:427.906667pt;}
.y3fa{bottom:428.066667pt;}
.y2f2{bottom:428.226667pt;}
.y11d{bottom:428.546667pt;}
.y4e6{bottom:428.866667pt;}
.y129{bottom:429.186667pt;}
.y2d9{bottom:429.346667pt;}
.yab{bottom:429.506667pt;}
.y6d{bottom:430.306667pt;}
.y4d3{bottom:430.333333pt;}
.y39f{bottom:430.466667pt;}
.y616{bottom:430.813333pt;}
.y431{bottom:431.106667pt;}
.y537{bottom:431.426667pt;}
.y44{bottom:432.066667pt;}
.yda{bottom:432.866667pt;}
.y308{bottom:433.186667pt;}
.y2c1{bottom:433.986667pt;}
.y5c7{bottom:434.306667pt;}
.y3dc{bottom:435.106667pt;}
.y587{bottom:435.426667pt;}
.y40d{bottom:435.746667pt;}
.y539{bottom:436.706667pt;}
.y53c{bottom:437.826667pt;}
.yb9{bottom:439.106667pt;}
.y389{bottom:439.426667pt;}
.y38c{bottom:439.586667pt;}
.y333{bottom:440.226667pt;}
.y273{bottom:440.706667pt;}
.y9d{bottom:441.186667pt;}
.y386{bottom:441.826667pt;}
.y9{bottom:441.986667pt;}
.y363{bottom:442.146667pt;}
.y383{bottom:442.466667pt;}
.y89{bottom:442.786667pt;}
.y51b{bottom:443.106667pt;}
.y177{bottom:445.666667pt;}
.y18f{bottom:445.826667pt;}
.y418{bottom:445.986667pt;}
.y4c4{bottom:446.146667pt;}
.y4a6{bottom:447.746667pt;}
.y37f{bottom:448.546667pt;}
.y26{bottom:448.866667pt;}
.y637{bottom:448.893333pt;}
.y48c{bottom:449.026667pt;}
.y31f{bottom:449.186667pt;}
.y56d{bottom:449.213333pt;}
.y3bd{bottom:449.826667pt;}
.y583{bottom:450.306667pt;}
.y149{bottom:451.586667pt;}
.y644{bottom:452.093333pt;}
.y467{bottom:452.226667pt;}
.y5c6{bottom:455.586667pt;}
.y2f1{bottom:455.906667pt;}
.yec{bottom:456.226667pt;}
.yaa{bottom:457.186667pt;}
.y59e{bottom:457.373333pt;}
.y108{bottom:457.826667pt;}
.y43{bottom:459.906667pt;}
.yd9{bottom:460.546667pt;}
.y316{bottom:460.706667pt;}
.y2c0{bottom:461.666667pt;}
.y2d8{bottom:462.466667pt;}
.y51a{bottom:462.626667pt;}
.y5b1{bottom:462.786667pt;}
.y5d3{bottom:462.813333pt;}
.y39e{bottom:464.893333pt;}
.y661{bottom:466.306667pt;}
.yb8{bottom:466.786667pt;}
.y128{bottom:466.946667pt;}
.y615{bottom:466.973333pt;}
.y3db{bottom:467.906667pt;}
.y4c3{bottom:468.546667pt;}
.y134{bottom:468.706667pt;}
.y409{bottom:468.866667pt;}
.ycd{bottom:469.506667pt;}
.y4a5{bottom:470.146667pt;}
.y88{bottom:470.466667pt;}
.y466{bottom:470.626667pt;}
.y6c{bottom:471.106667pt;}
.y176{bottom:473.186667pt;}
.yf2{bottom:473.986667pt;}
.y676{bottom:474.146667pt;}
.y4fe{bottom:475.266667pt;}
.y25{bottom:476.386667pt;}
.y307{bottom:476.706667pt;}
.y40c{bottom:476.866667pt;}
.y59d{bottom:476.893333pt;}
.y3f9{bottom:477.533333pt;}
.y148{bottom:479.106667pt;}
.y451{bottom:479.266667pt;}
.y8{bottom:480.546667pt;}
.y56c{bottom:482.013333pt;}
.y362{bottom:482.333333pt;}
.y5fc{bottom:482.973333pt;}
.y5b0{bottom:483.293333pt;}
.y2f0{bottom:483.426667pt;}
.yeb{bottom:483.746667pt;}
.y332{bottom:483.906667pt;}
.ya9{bottom:484.706667pt;}
.y107{bottom:485.506667pt;}
.y346{bottom:486.146667pt;}
.y39d{bottom:486.173333pt;}
.y534{bottom:486.946667pt;}
.y3da{bottom:487.453333pt;}
.y42{bottom:487.906667pt;}
.yd8{bottom:488.066667pt;}
.y326{bottom:488.226667pt;}
.y465{bottom:489.066667pt;}
.y612{bottom:490.653333pt;}
.y18c{bottom:490.946667pt;}
.y5e7{bottom:491.453333pt;}
.y582{bottom:493.053333pt;}
.y688{bottom:494.146667pt;}
.y16a{bottom:494.306667pt;}
.y37e{bottom:494.946667pt;}
.y519{bottom:495.453333pt;}
.y2d7{bottom:495.586667pt;}
.y133{bottom:496.226667pt;}
.y59c{bottom:496.413333pt;}
.ycc{bottom:497.186667pt;}
.y40b{bottom:497.506667pt;}
.y5c5{bottom:497.826667pt;}
.y87{bottom:497.986667pt;}
.y6b{bottom:498.786667pt;}
.y660{bottom:499.426667pt;}
.y175{bottom:500.866667pt;}
.yb7{bottom:501.506667pt;}
.y2bf{bottom:502.626667pt;}
.y5af{bottom:503.933333pt;}
.y24{bottom:504.066667pt;}
.y5fb{bottom:504.093333pt;}
.y306{bottom:504.226667pt;}
.y4a4{bottom:505.986667pt;}
.y147{bottom:506.626667pt;}
.y7{bottom:506.786667pt;}
.y3d9{bottom:506.973333pt;}
.y39c{bottom:507.293333pt;}
.y464{bottom:508.426667pt;}
.y47c{bottom:508.546667pt;}
.y361{bottom:509.213333pt;}
.y432{bottom:510.786667pt;}
.yea{bottom:511.426667pt;}
.ya8{bottom:512.226667pt;}
.y581{bottom:512.893333pt;}
.y106{bottom:513.026667pt;}
.y622{bottom:513.053333pt;}
.y4c2{bottom:513.506667pt;}
.y550{bottom:514.946667pt;}
.y41{bottom:515.746667pt;}
.y59b{bottom:515.933333pt;}
.y40a{bottom:517.986667pt;}
.y56b{bottom:519.133333pt;}
.y31e{bottom:520.226667pt;}
.y533{bottom:520.706667pt;}
.y127{bottom:522.946667pt;}
.ycb{bottom:524.706667pt;}
.y601{bottom:525.053333pt;}
.y5fa{bottom:525.213333pt;}
.y86{bottom:525.666667pt;}
.y6a{bottom:526.306667pt;}
.y3d8{bottom:526.493333pt;}
.y2ef{bottom:526.946667pt;}
.y518{bottom:528.253333pt;}
.y174{bottom:528.386667pt;}
.y169{bottom:529.186667pt;}
.y636{bottom:529.533333pt;}
.y305{bottom:531.906667pt;}
.y580{bottom:532.413333pt;}
.y372{bottom:532.706667pt;}
.y687{bottom:533.666667pt;}
.y146{bottom:534.306667pt;}
.y59a{bottom:535.613333pt;}
.y4c1{bottom:535.906667pt;}
.y2d6{bottom:536.226667pt;}
.y5ae{bottom:537.853333pt;}
.ye9{bottom:538.946667pt;}
.y331{bottom:539.106667pt;}
.y115{bottom:539.906667pt;}
.y105{bottom:540.706667pt;}
.y463{bottom:541.226667pt;}
.y39b{bottom:541.693333pt;}
.y3b8{bottom:542.973333pt;}
.yd7{bottom:543.266667pt;}
.y2be{bottom:543.426667pt;}
.y40{bottom:543.586667pt;}
.y3d7{bottom:546.013333pt;}
.y5f9{bottom:546.493333pt;}
.y23{bottom:546.786667pt;}
.y31d{bottom:547.906667pt;}
.y517{bottom:547.933333pt;}
.y360{bottom:549.373333pt;}
.y635{bottom:550.813333pt;}
.yca{bottom:552.226667pt;}
.y6{bottom:552.706667pt;}
.y85{bottom:553.186667pt;}
.y532{bottom:553.666667pt;}
.y69{bottom:553.986667pt;}
.y2ee{bottom:554.626667pt;}
.y18b{bottom:555.426667pt;}
.y4c0{bottom:558.306667pt;}
.y5ad{bottom:558.493333pt;}
.y304{bottom:559.426667pt;}
.y4f7{bottom:559.933333pt;}
.y641{bottom:560.133333pt;}
.y47b{bottom:560.706667pt;}
.y145{bottom:561.826667pt;}
.y39a{bottom:562.973333pt;}
.y5cf{bottom:563.013333pt;}
.y55e{bottom:564.386667pt;}
.y3d6{bottom:565.533333pt;}
.y5e5{bottom:566.373333pt;}
.ye8{bottom:566.626667pt;}
.y114{bottom:567.426667pt;}
.y104{bottom:568.226667pt;}
.y599{bottom:568.413333pt;}
.y686{bottom:568.706667pt;}
.y5c4{bottom:568.866667pt;}
.y173{bottom:569.346667pt;}
.y2bd{bottom:571.106667pt;}
.y3f{bottom:571.586667pt;}
.y634{bottom:571.973333pt;}
.y57f{bottom:573.373333pt;}
.y462{bottom:574.026667pt;}
.y4fa{bottom:574.466667pt;}
.y3b7{bottom:574.653333pt;}
.y1de{bottom:574.786667pt;}
.y31c{bottom:575.426667pt;}
.y4a3{bottom:575.586667pt;}
.y60f{bottom:575.813333pt;}
.y35f{bottom:576.253333pt;}
.y65f{bottom:576.386667pt;}
.y2d5{bottom:577.186667pt;}
.y4e0{bottom:577.346667pt;}
.y670{bottom:578.626667pt;}
.yc9{bottom:579.906667pt;}
.y516{bottom:580.733333pt;}
.y84{bottom:580.866667pt;}
.y5f8{bottom:580.933333pt;}
.y4f6{bottom:581.213333pt;}
.y2e0{bottom:581.506667pt;}
.y2ed{bottom:582.146667pt;}
.y330{bottom:582.626667pt;}
.y399{bottom:584.093333pt;}
.y163{bottom:584.226667pt;}
.y47a{bottom:584.866667pt;}
.y5{bottom:585.026667pt;}
.y3d5{bottom:585.053333pt;}
.y531{bottom:586.466667pt;}
.y303{bottom:587.106667pt;}
.y598{bottom:587.933333pt;}
.y144{bottom:589.506667pt;}
.y22{bottom:590.466667pt;}
.y3b9{bottom:591.746667pt;}
.y57e{bottom:592.893333pt;}
.y633{bottom:593.093333pt;}
.ye7{bottom:594.146667pt;}
.y68{bottom:594.946667pt;}
.y113{bottom:595.106667pt;}
.y4a2{bottom:597.506667pt;}
.y2bc{bottom:598.653333pt;}
.y3e{bottom:599.453333pt;}
.y515{bottom:600.253333pt;}
.y5f7{bottom:602.213333pt;}
.y31b{bottom:603.133333pt;}
.y4bf{bottom:603.293333pt;}
.y685{bottom:603.773333pt;}
.y3d4{bottom:604.733333pt;}
.y5c3{bottom:604.893333pt;}
.y398{bottom:605.213333pt;}
.y5ac{bottom:605.373333pt;}
.y3b6{bottom:606.493333pt;}
.y461{bottom:606.986667pt;}
.yc8{bottom:607.453333pt;}
.y83{bottom:608.413333pt;}
.y103{bottom:609.213333pt;}
.y65e{bottom:609.533333pt;}
.y18a{bottom:609.853333pt;}
.y172{bottom:610.333333pt;}
.y162{bottom:611.933333pt;}
.y1d0{bottom:612.413333pt;}
.y5e2{bottom:613.413333pt;}
.y302{bottom:614.653333pt;}
.y4f5{bottom:615.613333pt;}
.y35e{bottom:616.413333pt;}
.y143{bottom:617.053333pt;}
.y4{bottom:617.213333pt;}
.y2d4{bottom:618.173333pt;}
.y289{bottom:618.973333pt;}
.y4a1{bottom:619.293333pt;}
.y5cd{bottom:619.333333pt;}
.y530{bottom:619.453333pt;}
.y479{bottom:619.613333pt;}
.y514{bottom:619.773333pt;}
.ye6{bottom:621.853333pt;}
.y67{bottom:622.493333pt;}
.y5f6{bottom:623.333333pt;}
.y3d3{bottom:624.253333pt;}
.y5c2{bottom:626.013333pt;}
.y2bb{bottom:626.333333pt;}
.y597{bottom:626.973333pt;}
.y3d{bottom:627.453333pt;}
.y632{bottom:627.973333pt;}
.y558{bottom:628.893333pt;}
.y315{bottom:630.653333pt;}
.y21{bottom:631.453333pt;}
.y258{bottom:633.053333pt;}
.y621{bottom:634.213333pt;}
.yc7{bottom:635.133333pt;}
.y82{bottom:636.093333pt;}
.y102{bottom:636.733333pt;}
.y2ec{bottom:637.373333pt;}
.y171{bottom:637.853333pt;}
.y3b5{bottom:638.173333pt;}
.y231{bottom:638.493333pt;}
.y684{bottom:638.813333pt;}
.y44c{bottom:639.013333pt;}
.y4be{bottom:639.133333pt;}
.y161{bottom:639.453333pt;}
.y397{bottom:639.613333pt;}
.y460{bottom:639.786667pt;}
.y60e{bottom:640.133333pt;}
.y301{bottom:642.333333pt;}
.y65d{bottom:642.653333pt;}
.y3{bottom:643.133333pt;}
.y3d2{bottom:643.773333pt;}
.y5f5{bottom:644.453333pt;}
.y142{bottom:644.733333pt;}
.y1dc{bottom:644.893333pt;}
.y2d3{bottom:645.693333pt;}
.y596{bottom:646.493333pt;}
.y5c1{bottom:647.133333pt;}
.ye5{bottom:649.373333pt;}
.y4f4{bottom:650.053333pt;}
.y66{bottom:650.173333pt;}
.y189{bottom:650.813333pt;}
.y52f{bottom:651.453333pt;}
.y4d2{bottom:653.573333pt;}
.y4a0{bottom:654.013333pt;}
.y3c{bottom:655.293333pt;}
.y513{bottom:656.093333pt;}
.y35d{bottom:656.573333pt;}
.y66b{bottom:657.213333pt;}
.y44b{bottom:657.413333pt;}
.y427{bottom:658.026667pt;}
.y314{bottom:658.333333pt;}
.y20{bottom:658.973333pt;}
.y45f{bottom:659.306667pt;}
.y4df{bottom:660.733333pt;}
.yc6{bottom:662.653333pt;}
.y3d1{bottom:663.293333pt;}
.y9c{bottom:663.613333pt;}
.y631{bottom:664.133333pt;}
.y101{bottom:664.413333pt;}
.y2eb{bottom:665.053333pt;}
.y5f4{bottom:665.573333pt;}
.y595{bottom:666.053333pt;}
.y160{bottom:666.973333pt;}
.y2ba{bottom:667.293333pt;}
.y27d{bottom:667.613333pt;}
.y3f7{bottom:668.893333pt;}
.y396{bottom:669.533333pt;}
.y300{bottom:669.853333pt;}
.y5c0{bottom:670.013333pt;}
.y478{bottom:671.773333pt;}
.y141{bottom:672.253333pt;}
.y2d2{bottom:673.373333pt;}
.y4f8{bottom:673.853333pt;}
.y683{bottom:674.013333pt;}
.y4bd{bottom:674.973333pt;}
.y65c{bottom:675.613333pt;}
.y57d{bottom:675.653333pt;}
.y272{bottom:676.253333pt;}
.y220{bottom:676.413333pt;}
.y66a{bottom:676.733333pt;}
.y81{bottom:677.053333pt;}
.y426{bottom:677.546667pt;}
.y65{bottom:677.693333pt;}
.y67f{bottom:678.373333pt;}
.y170{bottom:678.813333pt;}
.y32f{bottom:681.533333pt;}
.y1d6{bottom:682.013333pt;}
.y249{bottom:682.813333pt;}
.y3d0{bottom:682.853333pt;}
.y3b{bottom:683.133333pt;}
.y4f3{bottom:684.613333pt;}
.y594{bottom:685.573333pt;}
.y188{bottom:685.693333pt;}
.y313{bottom:685.853333pt;}
.y1f{bottom:686.653333pt;}
.y1b0{bottom:687.773333pt;}
.y4d1{bottom:687.813333pt;}
.y44a{bottom:689.093333pt;}
.yc5{bottom:690.333333pt;}
.y9b{bottom:691.293333pt;}
.y3ee{bottom:691.773333pt;}
.y100{bottom:691.933333pt;}
.y2ea{bottom:692.573333pt;}
.y15f{bottom:694.653333pt;}
.y2b9{bottom:694.813333pt;}
.y5ab{bottom:695.653333pt;}
.y2a3{bottom:696.093333pt;}
.y35c{bottom:696.933333pt;}
.y4bc{bottom:697.373333pt;}
.y140{bottom:699.933333pt;}
.y67e{bottom:699.973333pt;}
.y2d1{bottom:700.893333pt;}
.y52e{bottom:701.533333pt;}
.y3b4{bottom:701.733333pt;}
.y31a{bottom:701.853333pt;}
.y80{bottom:704.573333pt;}
.y5bf{bottom:704.733333pt;}
.y64{bottom:705.373333pt;}
.y49f{bottom:706.173333pt;}
.y57c{bottom:708.613333pt;}
.y230{bottom:708.733333pt;}
.y682{bottom:709.053333pt;}
.y3a{bottom:711.133333pt;}
.y48a{bottom:711.933333pt;}
.y669{bottom:712.293333pt;}
.y2ff{bottom:713.533333pt;}
.y1e{bottom:714.173333pt;}
.y257{bottom:715.133333pt;}
.y477{bottom:715.933333pt;}
.yc4{bottom:717.853333pt;}
.y9a{bottom:718.813333pt;}
.y4f2{bottom:719.013333pt;}
.y428{bottom:719.133333pt;}
.y67d{bottom:719.493333pt;}
.yff{bottom:719.613333pt;}
.y16f{bottom:719.773333pt;}
.y52d{bottom:719.933333pt;}
.y3cf{bottom:720.933333pt;}
.y379{bottom:721.853333pt;}
.y15e{bottom:722.173333pt;}
.y2b8{bottom:722.493333pt;}
.y265{bottom:723.933333pt;}
.y32e{bottom:725.053333pt;}
.y1a0{bottom:725.693333pt;}
.y449{bottom:726.053333pt;}
.y13f{bottom:727.453333pt;}
.y57b{bottom:728.133333pt;}
.y2d0{bottom:728.573333pt;}
.y312{bottom:729.533333pt;}
.y7f{bottom:732.253333pt;}
.y182{bottom:732.573333pt;}
.y63{bottom:732.893333pt;}
.y536{bottom:733.373333pt;}
.y3b3{bottom:733.413333pt;}
.y569{bottom:734.653333pt;}
.y593{bottom:735.173333pt;}
.y388{bottom:735.293333pt;}
.y2e9{bottom:736.253333pt;}
.y5aa{bottom:736.613333pt;}
.y560{bottom:736.733333pt;}
.y382{bottom:737.053333pt;}
.y53b{bottom:737.213333pt;}
.y38b{bottom:737.853333pt;}
.y564{bottom:738.653333pt;}
.y39{bottom:738.973333pt;}
.y385{bottom:740.093333pt;}
.y2fe{bottom:741.053333pt;}
.y66c{bottom:741.533333pt;}
.y1d{bottom:741.853333pt;}
.y1fe{bottom:742.173333pt;}
.y4bb{bottom:742.333333pt;}
.y562{bottom:742.653333pt;}
.y59{bottom:744.893333pt;}
.yc3{bottom:745.533333pt;}
.y283{bottom:746.333333pt;}
.y99{bottom:746.493333pt;}
.yfe{bottom:747.133333pt;}
.y16e{bottom:747.453333pt;}
.y298{bottom:748.733333pt;}
.y15d{bottom:749.853333pt;}
.y2b7{bottom:750.013333pt;}
.y52c{bottom:751.773333pt;}
.y65b{bottom:752.733333pt;}
.y4f1{bottom:753.573333pt;}
.y22c{bottom:755.133333pt;}
.y2cf{bottom:756.093333pt;}
.y681{bottom:756.733333pt;}
.y476{bottom:756.893333pt;}
.y311{bottom:757.053333pt;}
.y7e{bottom:759.773333pt;}
.y62{bottom:760.573333pt;}
.y57a{bottom:760.933333pt;}
.y252{bottom:761.533333pt;}
.y568{bottom:762.333333pt;}
.y1ae{bottom:763.613333pt;}
.y2e8{bottom:763.773333pt;}
.y4ba{bottom:764.733333pt;}
.y3b2{bottom:765.093333pt;}
.y489{bottom:766.173333pt;}
.y38{bottom:766.813333pt;}
.y270{bottom:767.453333pt;}
.y13e{bottom:768.413333pt;}
.y2fd{bottom:768.733333pt;}
.y49e{bottom:769.053333pt;}
.y1c{bottom:769.373333pt;}
.y345{bottom:769.693333pt;}
.ya7{bottom:773.053333pt;}
.y3ce{bottom:773.893333pt;}
.y98{bottom:774.013333pt;}
.yfd{bottom:774.813333pt;}
.y58{bottom:775.133333pt;}
.y475{bottom:775.453333pt;}
.y2b6{bottom:777.693333pt;}
.y2a2{bottom:781.053333pt;}
.y1f2{bottom:782.813333pt;}
.y52b{bottom:783.453333pt;}
.y2ce{bottom:783.773333pt;}
.y310{bottom:784.733333pt;}
.y65a{bottom:785.853333pt;}
.y4cd{bottom:786.533333pt;}
.y4b9{bottom:787.293333pt;}
.y7d{bottom:787.453333pt;}
.y592{bottom:787.813333pt;}
.y61{bottom:788.093333pt;}
.y4f0{bottom:788.133333pt;}
.y16d{bottom:788.253333pt;}
.y668{bottom:789.413333pt;}
.y15c{bottom:790.813333pt;}
.y1cf{bottom:790.973333pt;}
.y2e7{bottom:791.453333pt;}
.y680{bottom:791.773333pt;}
.y49b{bottom:791.933333pt;}
.y579{bottom:793.893333pt;}
.y37{bottom:794.813333pt;}
.y474{bottom:795.293333pt;}
.y13d{bottom:796.093333pt;}
.y32d{bottom:796.253333pt;}
.y67c{bottom:796.453333pt;}
.y3b1{bottom:796.933333pt;}
.y488{bottom:799.293333pt;}
.ya6{bottom:800.733333pt;}
.y1a9{bottom:801.373333pt;}
.y97{bottom:801.693333pt;}
.y3cd{bottom:802.213333pt;}
.yfc{bottom:802.333333pt;}
.y57{bottom:802.973333pt;}
.y567{bottom:803.293333pt;}
.y2b5{bottom:805.213333pt;}
.y542{bottom:805.373333pt;}
.y4db{bottom:809.253333pt;}
.y4b8{bottom:809.733333pt;}
.y1b{bottom:810.373333pt;}
.y344{bottom:810.533333pt;}
.y2cd{bottom:811.333333pt;}
.y2fc{bottom:812.293333pt;}
.y578{bottom:813.413333pt;}
.y5bd{bottom:813.573333pt;}
.y26b{bottom:813.733333pt;}
.y7c{bottom:815.013333pt;}
.y52a{bottom:815.173333pt;}
.y60{bottom:815.813333pt;}
.y1fc{bottom:817.893333pt;}
.y15b{bottom:818.373333pt;}
.y659{bottom:818.853333pt;}
.y487{bottom:819.333333pt;}
.y4ef{bottom:822.533333pt;}
.y36{bottom:822.693333pt;}
.y33c{bottom:823.973333pt;}
.y2a0{bottom:827.493333pt;}
.y1cd{bottom:827.973333pt;}
.ya5{bottom:828.293333pt;}
.y3b0{bottom:828.613333pt;}
.y96{bottom:829.253333pt;}
.yfb{bottom:830.053333pt;}
.y566{bottom:830.853333pt;}
.y56{bottom:831.013333pt;}
.y4b7{bottom:832.133333pt;}
.y2b4{bottom:832.933333pt;}
.y395{bottom:833.573333pt;}
.y343{bottom:834.693333pt;}
.y2e6{bottom:835.013333pt;}
.y5bc{bottom:836.453333pt;}
.y1a{bottom:838.053333pt;}
.y2fb{bottom:839.973333pt;}
.y7b{bottom:842.533333pt;}
.y5f{bottom:843.333333pt;}
.y15a{bottom:846.053333pt;}
.y2cc{bottom:846.213333pt;}
.y512{bottom:848.933333pt;}
.y35{bottom:850.533333pt;}
.y658{bottom:851.973333pt;}
.ya4{bottom:855.973333pt;}
.y95{bottom:856.933333pt;}
.y529{bottom:857.093333pt;}
.y565{bottom:858.373333pt;}
.y3af{bottom:860.293333pt;}
.y2b3{bottom:860.453333pt;}
.y473{bottom:862.213333pt;}
.y2e5{bottom:862.693333pt;}
.y486{bottom:863.013333pt;}
.y55{bottom:863.493333pt;}
.y1f9{bottom:864.933333pt;}
.y19{bottom:865.573333pt;}
.y2fa{bottom:867.493333pt;}
.y4b6{bottom:867.973333pt;}
.y342{bottom:869.413333pt;}
.y248{bottom:869.573333pt;}
.yb6{bottom:870.213333pt;}
.y5e{bottom:871.013333pt;}
.y159{bottom:873.573333pt;}
.y17f{bottom:875.973333pt;}
.y34{bottom:878.533333pt;}
.y528{bottom:881.253333pt;}
.y7a{bottom:883.493333pt;}
.y94{bottom:884.453333pt;}
.y4ce{bottom:887.493333pt;}
.y2b2{bottom:888.133333pt;}
.y511{bottom:888.933333pt;}
.y35b{bottom:889.253333pt;}
.y2e4{bottom:890.213333pt;}
.y54{bottom:891.973333pt;}
.y341{bottom:892.453333pt;}
.y18{bottom:893.253333pt;}
.y472{bottom:895.013333pt;}
.y325{bottom:895.173333pt;}
.y1cc{bottom:895.973333pt;}
.yb5{bottom:897.733333pt;}
.y5d{bottom:898.533333pt;}
.y19e{bottom:899.013333pt;}
.y158{bottom:901.253333pt;}
.y54f{bottom:901.573333pt;}
.y4b5{bottom:903.813333pt;}
.y510{bottom:904.293333pt;}
.y33{bottom:906.373333pt;}
.y79{bottom:911.173333pt;}
.y53{bottom:911.333333pt;}
.y2e3{bottom:911.493333pt;}
.y5a8{bottom:912.133333pt;}
.y340{bottom:914.213333pt;}
.y21f{bottom:915.173333pt;}
.y246{bottom:915.333333pt;}
.y2b1{bottom:915.653333pt;}
.y527{bottom:915.973333pt;}
.y50f{bottom:919.653333pt;}
.y17{bottom:920.773333pt;}
.y485{bottom:921.733333pt;}
.y93{bottom:925.413333pt;}
.y5c{bottom:926.213333pt;}
.y2{bottom:927.493333pt;}
.y471{bottom:927.813333pt;}
.y447{bottom:928.293333pt;}
.y157{bottom:928.773333pt;}
.y656{bottom:929.093333pt;}
.y2e2{bottom:932.613333pt;}
.y1f1{bottom:933.573333pt;}
.y32{bottom:934.213333pt;}
.y19c{bottom:934.693333pt;}
.y17e{bottom:935.013333pt;}
.y52{bottom:938.053333pt;}
.y78{bottom:938.693333pt;}
.y1cb{bottom:945.573333pt;}
.y16{bottom:948.453333pt;}
.y4b4{bottom:948.613333pt;}
.y50e{bottom:950.373333pt;}
.y2b0{bottom:950.533333pt;}
.y5b{bottom:953.733333pt;}
.y667{bottom:956.293333pt;}
.y156{bottom:956.453333pt;}
.y370{bottom:956.933333pt;}
.y21d{bottom:960.773333pt;}
.y31{bottom:962.213333pt;}
.y484{bottom:964.293333pt;}
.y50d{bottom:965.733333pt;}
.y51{bottom:965.893333pt;}
.y77{bottom:966.373333pt;}
.y526{bottom:968.133333pt;}
.y1ef{bottom:970.693333pt;}
.y4b3{bottom:971.173333pt;}
.y1{bottom:975.653333pt;}
.y33f{bottom:976.453333pt;}
.y50c{bottom:981.093333pt;}
.y30{bottom:985.893333pt;}
.y15{bottom:991.173333pt;}
.y5a{bottom:991.333333pt;}
.y651{bottom:992.453333pt;}
.y3cb{bottom:992.613333pt;}
.y470{bottom:993.573333pt;}
.y50{bottom:993.733333pt;}
.y76{bottom:993.893333pt;}
.y2af{bottom:995.013333pt;}
.y50b{bottom:996.293333pt;}
.h91{height:2.580000pt;}
.hb1{height:2.621250pt;}
.h71{height:17.920000pt;}
.hac{height:18.240000pt;}
.h31{height:18.400000pt;}
.hae{height:18.720000pt;}
.ha8{height:19.520000pt;}
.ha7{height:19.552000pt;}
.h3c{height:20.960000pt;}
.h19{height:21.120000pt;}
.h1a{height:21.152000pt;}
.h1c{height:21.280000pt;}
.h41{height:21.440000pt;}
.h42{height:21.952000pt;}
.h21{height:22.240000pt;}
.hb0{height:22.720000pt;}
.h30{height:23.040000pt;}
.h46{height:23.200000pt;}
.haf{height:23.520000pt;}
.h2d{height:23.712000pt;}
.h24{height:23.840000pt;}
.h25{height:24.000000pt;}
.h1b{height:24.320000pt;}
.h32{height:24.352000pt;}
.h4a{height:24.480000pt;}
.h26{height:24.640000pt;}
.hd9{height:26.080000pt;}
.he0{height:26.112000pt;}
.h3d{height:27.360000pt;}
.h3f{height:28.320000pt;}
.h1f{height:28.640000pt;}
.h74{height:29.280000pt;}
.h54{height:29.440000pt;}
.h38{height:30.080000pt;}
.h1e{height:30.240000pt;}
.h18{height:30.400000pt;}
.hc2{height:30.560000pt;}
.hbb{height:31.200000pt;}
.h57{height:31.680000pt;}
.h2c{height:32.160000pt;}
.h29{height:32.320000pt;}
.h5f{height:32.352000pt;}
.h34{height:32.480000pt;}
.h72{height:32.640000pt;}
.h66{height:32.800000pt;}
.h55{height:32.960000pt;}
.hcd{height:32.992000pt;}
.h3b{height:33.120000pt;}
.h36{height:33.760000pt;}
.h5a{height:33.920000pt;}
.he1{height:34.400000pt;}
.he3{height:34.432000pt;}
.h4e{height:35.040000pt;}
.h63{height:35.680000pt;}
.hb6{height:36.000000pt;}
.h15{height:36.800000pt;}
.hd1{height:36.960000pt;}
.h60{height:37.920000pt;}
.h12{height:38.715000pt;}
.h4b{height:38.880000pt;}
.h5c{height:38.912000pt;}
.h51{height:39.040000pt;}
.h8f{height:39.072000pt;}
.h43{height:40.000000pt;}
.h11{height:42.084375pt;}
.h17{height:42.240000pt;}
.h1d{height:42.400000pt;}
.h6a{height:43.040000pt;}
.h6f{height:43.840000pt;}
.he4{height:44.320000pt;}
.h95{height:45.600000pt;}
.he2{height:47.040000pt;}
.h9{height:47.742188pt;}
.hd7{height:47.812500pt;}
.h50{height:48.480000pt;}
.hab{height:48.875000pt;}
.hc8{height:50.400000pt;}
.hdd{height:51.520000pt;}
.h14{height:52.134375pt;}
.haa{height:52.834688pt;}
.hb9{height:53.120000pt;}
.hca{height:53.152000pt;}
.h73{height:53.535000pt;}
.h3a{height:54.080000pt;}
.h2b{height:55.200000pt;}
.h13{height:55.402500pt;}
.h64{height:56.312500pt;}
.h10{height:57.375000pt;}
.hd6{height:57.632000pt;}
.h8{height:57.758750pt;}
.h28{height:57.787500pt;}
.h35{height:58.240000pt;}
.h6e{height:58.563750pt;}
.h7c{height:58.592000pt;}
.hbf{height:59.680000pt;}
.h6d{height:60.288750pt;}
.hbd{height:60.960000pt;}
.h4{height:61.410000pt;}
.hc0{height:61.600000pt;}
.h56{height:61.920000pt;}
.hf{height:62.781250pt;}
.hb{height:62.812500pt;}
.h7e{height:63.656250pt;}
.hc{height:64.500000pt;}
.hce{height:64.960000pt;}
.h7d{height:65.531250pt;}
.hb3{height:65.760000pt;}
.h48{height:66.404375pt;}
.he{height:66.750000pt;}
.h62{height:68.000000pt;}
.h49{height:68.640000pt;}
.h7a{height:68.748750pt;}
.h67{height:69.660000pt;}
.h79{height:70.773750pt;}
.hdb{height:71.040000pt;}
.hc9{height:71.072000pt;}
.h5e{height:72.960000pt;}
.h37{height:73.490625pt;}
.ha{height:75.465000pt;}
.h3{height:76.671562pt;}
.hc7{height:77.472000pt;}
.h84{height:77.484375pt;}
.h5{height:78.097500pt;}
.hc1{height:78.720000pt;}
.h20{height:80.625000pt;}
.h23{height:82.912000pt;}
.hcf{height:84.032000pt;}
.h9c{height:84.640000pt;}
.h81{height:84.662813pt;}
.h9b{height:84.672000pt;}
.hc5{height:84.960000pt;}
.hc6{height:84.992000pt;}
.hd5{height:85.152000pt;}
.hc3{height:86.240000pt;}
.h53{height:86.720000pt;}
.hda{height:87.156562pt;}
.h78{height:87.437500pt;}
.h7{height:89.149375pt;}
.hbe{height:90.432000pt;}
.hdc{height:90.592000pt;}
.hde{height:90.752000pt;}
.hcb{height:92.320000pt;}
.hd0{height:92.352000pt;}
.h4d{height:93.472000pt;}
.hd4{height:94.080000pt;}
.h2f{height:94.240000pt;}
.h40{height:95.360000pt;}
.hd{height:95.484375pt;}
.h2a{height:96.000000pt;}
.h6{height:96.750000pt;}
.h6b{height:98.296875pt;}
.ha2{height:98.560000pt;}
.hba{height:98.752000pt;}
.h75{height:102.752000pt;}
.he5{height:104.352000pt;}
.hbc{height:105.792000pt;}
.hcc{height:107.072000pt;}
.h59{height:108.672000pt;}
.h9e{height:111.472500pt;}
.hd3{height:112.960000pt;}
.hd2{height:112.992000pt;}
.h90{height:117.120000pt;}
.h80{height:119.922187pt;}
.he6{height:127.040000pt;}
.h76{height:127.312500pt;}
.h16{height:128.672000pt;}
.h94{height:131.062500pt;}
.h39{height:136.186667pt;}
.h8c{height:136.666667pt;}
.h65{height:139.965000pt;}
.h2{height:142.202812pt;}
.h45{height:145.306667pt;}
.hc4{height:148.026667pt;}
.h5d{height:151.706667pt;}
.h8b{height:156.320000pt;}
.h22{height:158.586667pt;}
.h96{height:163.360000pt;}
.h99{height:163.386667pt;}
.h2e{height:163.840000pt;}
.hb5{height:164.320000pt;}
.h33{height:165.600000pt;}
.h92{height:165.626667pt;}
.h4c{height:172.186667pt;}
.h88{height:172.826667pt;}
.h52{height:176.506667pt;}
.h97{height:182.880000pt;}
.h89{height:182.906667pt;}
.h58{height:187.386667pt;}
.h87{height:191.386667pt;}
.h9f{height:194.746667pt;}
.h4f{height:220.826667pt;}
.h44{height:224.026667pt;}
.h69{height:233.786667pt;}
.h5b{height:239.266667pt;}
.h68{height:269.946667pt;}
.ha1{height:272.706667pt;}
.h47{height:276.066667pt;}
.had{height:306.306667pt;}
.h82{height:308.986667pt;}
.h61{height:331.266667pt;}
.h3e{height:333.626667pt;}
.h27{height:333.666667pt;}
.ha5{height:371.226667pt;}
.ha3{height:371.266667pt;}
.ha0{height:371.386667pt;}
.ha4{height:371.426667pt;}
.h70{height:409.506667pt;}
.h8e{height:465.506667pt;}
.h83{height:505.533333pt;}
.h85{height:531.906667pt;}
.ha6{height:549.533333pt;}
.h8d{height:674.493333pt;}
.h9d{height:684.133333pt;}
.h86{height:692.733333pt;}
.h6c{height:726.853333pt;}
.h8a{height:740.933333pt;}
.hb4{height:764.613333pt;}
.hb7{height:793.920000pt;}
.hb8{height:794.000000pt;}
.hd8{height:804.293333pt;}
.hdf{height:811.333333pt;}
.h7f{height:830.213333pt;}
.h93{height:830.373333pt;}
.h9a{height:839.173333pt;}
.hb2{height:856.613333pt;}
.ha9{height:861.413333pt;}
.h77{height:862.373333pt;}
.h98{height:874.853333pt;}
.h7b{height:875.333333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6a{width:27.520000pt;}
.w6b{width:27.680000pt;}
.w37{width:38.752000pt;}
.w66{width:59.680000pt;}
.w65{width:60.672000pt;}
.w67{width:62.752000pt;}
.w10{width:74.240000pt;}
.wf{width:74.880000pt;}
.w26{width:80.480000pt;}
.w3f{width:127.712000pt;}
.w4{width:131.072000pt;}
.w3e{width:131.680000pt;}
.w3d{width:131.712000pt;}
.w7{width:140.346667pt;}
.w5{width:140.480000pt;}
.w3c{width:142.746667pt;}
.w43{width:145.600000pt;}
.w4d{width:145.626667pt;}
.w54{width:148.026667pt;}
.w6{width:149.946667pt;}
.w13{width:156.026667pt;}
.w19{width:157.306667pt;}
.w1b{width:157.946667pt;}
.w1f{width:158.906667pt;}
.w20{width:160.026667pt;}
.w1d{width:160.986667pt;}
.w53{width:162.746667pt;}
.w50{width:164.826667pt;}
.w51{width:165.626667pt;}
.w52{width:169.626667pt;}
.w5d{width:173.760000pt;}
.w61{width:174.400000pt;}
.w5f{width:177.786667pt;}
.w62{width:178.426667pt;}
.w5e{width:184.346667pt;}
.w24{width:186.426667pt;}
.w22{width:187.226667pt;}
.w1c{width:187.386667pt;}
.w1e{width:189.306667pt;}
.w18{width:189.786667pt;}
.w1a{width:190.426667pt;}
.w12{width:193.306667pt;}
.w5b{width:196.346667pt;}
.w11{width:215.066667pt;}
.w17{width:216.026667pt;}
.w23{width:216.986667pt;}
.w21{width:217.946667pt;}
.w55{width:232.826667pt;}
.w8{width:244.346667pt;}
.w14{width:256.026667pt;}
.wb{width:257.946667pt;}
.w34{width:267.706667pt;}
.w29{width:273.466667pt;}
.w38{width:280.826667pt;}
.w36{width:281.626667pt;}
.w33{width:292.666667pt;}
.w3a{width:296.706667pt;}
.w3b{width:298.746667pt;}
.w49{width:298.786667pt;}
.w32{width:304.706667pt;}
.wd{width:306.306667pt;}
.wc{width:306.946667pt;}
.w48{width:307.746667pt;}
.w16{width:308.386667pt;}
.w15{width:309.026667pt;}
.w28{width:309.826667pt;}
.w9{width:319.906667pt;}
.w35{width:330.786667pt;}
.w25{width:446.013333pt;}
.w42{width:450.653333pt;}
.w64{width:450.813333pt;}
.w4c{width:459.773333pt;}
.w69{width:462.493333pt;}
.we{width:490.173333pt;}
.w2b{width:512.733333pt;}
.w2d{width:528.733333pt;}
.w2e{width:534.173333pt;}
.wa{width:565.693333pt;}
.w27{width:575.133333pt;}
.w4e{width:594.173333pt;}
.w45{width:603.813333pt;}
.w6c{width:604.253333pt;}
.w44{width:604.773333pt;}
.w46{width:606.853333pt;}
.w47{width:607.813333pt;}
.w4f{width:608.933333pt;}
.w2f{width:609.733333pt;}
.w30{width:610.853333pt;}
.w31{width:618.853333pt;}
.w39{width:619.813333pt;}
.w4b{width:620.133333pt;}
.w40{width:620.933333pt;}
.w2c{width:621.893333pt;}
.w2a{width:623.813333pt;}
.w4a{width:627.013333pt;}
.w63{width:637.920000pt;}
.w41{width:640.133333pt;}
.w68{width:642.080000pt;}
.w5a{width:725.853333pt;}
.w5c{width:726.493333pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w59{width:922.853333pt;}
.w60{width:923.493333pt;}
.w57{width:1122.000000pt;}
.w58{width:1122.239983pt;}
.w56{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x2a{left:5.920000pt;}
.x33{left:7.200000pt;}
.xa5{left:8.160000pt;}
.x34{left:10.880000pt;}
.x49{left:12.480000pt;}
.x52{left:15.360000pt;}
.x70{left:19.040000pt;}
.x30{left:22.400000pt;}
.x3d{left:23.520000pt;}
.x77{left:24.480000pt;}
.x29{left:25.640000pt;}
.x81{left:26.560000pt;}
.x26{left:28.826667pt;}
.x21{left:30.714667pt;}
.x6d{left:32.800000pt;}
.x47{left:34.426667pt;}
.x20{left:35.674667pt;}
.x24{left:37.920000pt;}
.x83{left:39.520000pt;}
.x23{left:40.640000pt;}
.x6e{left:42.560000pt;}
.x6c{left:47.034667pt;}
.x85{left:48.160000pt;}
.x86{left:49.760000pt;}
.x8a{left:51.360000pt;}
.x73{left:54.074667pt;}
.x89{left:55.514667pt;}
.x4b{left:57.600000pt;}
.x3f{left:58.560000pt;}
.x36{left:60.640000pt;}
.x8e{left:61.600000pt;}
.x7c{left:64.000000pt;}
.x91{left:65.600000pt;}
.x97{left:66.874667pt;}
.x76{left:68.640000pt;}
.x8d{left:69.754667pt;}
.x90{left:71.194667pt;}
.x8c{left:73.114667pt;}
.x27{left:74.906667pt;}
.x8f{left:75.834667pt;}
.x99{left:77.960000pt;}
.x8b{left:79.514667pt;}
.x55{left:81.594667pt;}
.x96{left:82.874667pt;}
.x9d{left:84.840000pt;}
.x9b{left:88.346667pt;}
.x3a{left:89.434667pt;}
.x2d{left:90.554667pt;}
.x9f{left:94.080000pt;}
.x7a{left:95.232000pt;}
.x74{left:97.152000pt;}
.x54{left:100.352000pt;}
.x5b{left:101.312000pt;}
.x69{left:102.432000pt;}
.x65{left:103.392000pt;}
.x50{left:104.672000pt;}
.x2f{left:108.666667pt;}
.x3c{left:109.786667pt;}
.x66{left:110.752000pt;}
.x4f{left:112.671988pt;}
.x5{left:113.951988pt;}
.xc{left:116.831988pt;}
.x15{left:117.951988pt;}
.xa{left:121.311988pt;}
.x6b{left:122.911988pt;}
.x78{left:125.474667pt;}
.x4{left:126.911988pt;}
.x12{left:128.191988pt;}
.x9{left:129.311988pt;}
.x1f{left:132.351988pt;}
.x88{left:135.874667pt;}
.x14{left:137.466655pt;}
.x5c{left:139.706667pt;}
.x13{left:142.746655pt;}
.x5d{left:145.626667pt;}
.x2c{left:149.154667pt;}
.x19{left:151.226655pt;}
.x44{left:160.514667pt;}
.x16{left:161.466655pt;}
.x1e{left:164.986655pt;}
.xd{left:165.946655pt;}
.x38{left:172.834667pt;}
.x42{left:175.394667pt;}
.x41{left:176.354667pt;}
.x92{left:177.314667pt;}
.x39{left:184.354667pt;}
.x18{left:185.466655pt;}
.x17{left:188.986655pt;}
.x5f{left:191.394667pt;}
.x46{left:192.354667pt;}
.x56{left:194.754667pt;}
.x31{left:198.274667pt;}
.x1{left:202.426655pt;}
.x4c{left:204.994667pt;}
.x4d{left:209.466655pt;}
.x80{left:220.034667pt;}
.xa1{left:225.506667pt;}
.xa0{left:241.346667pt;}
.x60{left:245.314667pt;}
.x22{left:246.466667pt;}
.x2{left:249.186655pt;}
.x87{left:263.714667pt;}
.x63{left:267.234667pt;}
.x6{left:272.066655pt;}
.x6f{left:281.666667pt;}
.x7{left:285.186655pt;}
.x98{left:289.146667pt;}
.x8{left:300.866655pt;}
.x1d{left:305.506655pt;}
.xb{left:307.106655pt;}
.x82{left:327.746667pt;}
.x35{left:329.826667pt;}
.x3e{left:331.426667pt;}
.x4a{left:332.866667pt;}
.x2b{left:359.906667pt;}
.x3b{left:370.786667pt;}
.x2e{left:372.866667pt;}
.xf{left:380.546655pt;}
.x25{left:388.226667pt;}
.x68{left:393.666667pt;}
.xe{left:397.053322pt;}
.x9e{left:398.114667pt;}
.x6a{left:412.733333pt;}
.x71{left:414.813333pt;}
.x53{left:415.773333pt;}
.x67{left:416.733333pt;}
.x79{left:422.493333pt;}
.x94{left:424.061333pt;}
.x10{left:433.693322pt;}
.x5e{left:445.701333pt;}
.x62{left:447.141333pt;}
.x9a{left:477.186667pt;}
.x84{left:494.813333pt;}
.x43{left:518.813333pt;}
.x48{left:519.773333pt;}
.x45{left:520.893333pt;}
.x40{left:522.493333pt;}
.x37{left:523.773333pt;}
.xa2{left:530.173333pt;}
.x28{left:539.453333pt;}
.x72{left:547.773333pt;}
.x3{left:555.133322pt;}
.xa4{left:558.533333pt;}
.x75{left:565.253333pt;}
.x7b{left:570.213333pt;}
.x1b{left:571.173310pt;}
.x1c{left:576.613322pt;}
.x4e{left:580.453333pt;}
.xa6{left:586.853333pt;}
.x61{left:592.581333pt;}
.x7d{left:593.573322pt;}
.x7e{left:595.493322pt;}
.x7f{left:597.573322pt;}
.x32{left:604.933333pt;}
.x5a{left:614.853322pt;}
.x58{left:615.813322pt;}
.x57{left:616.773322pt;}
.x59{left:617.893322pt;}
.xa7{left:643.493333pt;}
.xa3{left:653.253333pt;}
.x9c{left:662.813333pt;}
.x64{left:664.773322pt;}
.x1a{left:666.053322pt;}
.xa8{left:671.813333pt;}
.x11{left:673.413322pt;}
.x51{left:680.613322pt;}
.x95{left:841.253333pt;}
.x93{left:994.399983pt;}
}




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