
    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_892723ab441d51fa01a9d2d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_984d59a6fc3493fb3a6f3a93.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_17500f9f80e7c22b646474e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f4258b97073528bca6718b1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_0467675fd09b386d6c91610a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f18d22da6ec3c1c74443b112.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_f584ddc462f5b34e373c3886.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a81ee4ac04eacb7351c8718e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c5d669eca1d94f5c7cf55e85.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fc27e8bfccad24f452e07966.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7d8388eb6ddaa41a20a42152.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4a8e31942ea51023d61400c8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_25b0c9f8c3343261ab08651c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130859;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_02d45d0c085a979a2f2e8b2f.woff2')format("woff");}.fff{font-family:fff;line-height:0.983398;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_2081acff1a9dc9baaf0106a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.860840;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_051ab5178ec8b4ff7d46f9f3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3b720669b1b7c64b7e30b4e7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.064941;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_182e49a77dc214f66b9ae291.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.940000px;}
.v1{vertical-align:24.000000px;}
.ls10{letter-spacing:-1.548000px;}
.ls3c{letter-spacing:-1.242000px;}
.ls3f{letter-spacing:-0.852000px;}
.ls40{letter-spacing:-0.822000px;}
.ls8{letter-spacing:-0.696000px;}
.ls2e{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.552000px;}
.ls2c{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.405600px;}
.ls3{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.378000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.357600px;}
.ls5{letter-spacing:-0.348000px;}
.ls24{letter-spacing:-0.294000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.252000px;}
.ls1d{letter-spacing:-0.222000px;}
.ls34{letter-spacing:-0.192000px;}
.ls22{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.138000px;}
.ls1f{letter-spacing:0.150000px;}
.ls35{letter-spacing:0.156000px;}
.ls1c{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.222000px;}
.ls1{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.252000px;}
.ls3a{letter-spacing:0.258000px;}
.ls37{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.325200px;}
.ls31{letter-spacing:0.336000px;}
.ls2d{letter-spacing:0.348000px;}
.ls1a{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.378000px;}
.ls38{letter-spacing:0.385200px;}
.ls2a{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.444000px;}
.ls7{letter-spacing:0.462000px;}
.ls18{letter-spacing:0.474000px;}
.ls30{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.534000px;}
.ls29{letter-spacing:0.558000px;}
.ls27{letter-spacing:0.564000px;}
.ls15{letter-spacing:0.582000px;}
.lsf{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.684000px;}
.ls11{letter-spacing:0.852000px;}
.lsd{letter-spacing:10.632000px;}
.ls14{letter-spacing:12.852000px;}
.lsb{letter-spacing:16.452000px;}
.ls36{letter-spacing:844.314000px;}
.ls4{letter-spacing:845.982000px;}
.ls33{letter-spacing:849.318000px;}
.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;}
}
.wsb{word-spacing:-66.000000px;}
.ws22{word-spacing:-48.000000px;}
.ws26{word-spacing:-41.700000px;}
.ws9{word-spacing:-26.688000px;}
.ws0{word-spacing:-25.020000px;}
.ws2{word-spacing:-19.632000px;}
.ws24{word-spacing:-18.948000px;}
.ws6{word-spacing:-18.852000px;}
.wsd{word-spacing:-18.810000px;}
.ws23{word-spacing:-18.696000px;}
.wsa{word-spacing:-18.570000px;}
.ws5{word-spacing:-18.348000px;}
.ws8{word-spacing:-18.096000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.970000px;}
.ws25{word-spacing:-17.748000px;}
.wse{word-spacing:-17.742000px;}
.ws7{word-spacing:-17.652000px;}
.ws30{word-spacing:-17.526000px;}
.ws2f{word-spacing:-17.496000px;}
.ws1{word-spacing:-16.920000px;}
.ws1e{word-spacing:-15.054000px;}
.ws1d{word-spacing:-14.622000px;}
.ws1b{word-spacing:-13.398000px;}
.ws11{word-spacing:-13.344000px;}
.ws1c{word-spacing:-13.236000px;}
.ws10{word-spacing:-13.056000px;}
.ws14{word-spacing:-12.540000px;}
.ws18{word-spacing:-12.426000px;}
.ws1a{word-spacing:-12.366000px;}
.ws13{word-spacing:-12.300000px;}
.ws19{word-spacing:-12.204000px;}
.ws27{word-spacing:-12.180000px;}
.wsf{word-spacing:-11.124000px;}
.ws15{word-spacing:-10.962000px;}
.ws17{word-spacing:-10.926000px;}
.ws20{word-spacing:-10.848000px;}
.ws16{word-spacing:-10.740000px;}
.ws2c{word-spacing:-10.474800px;}
.ws21{word-spacing:-10.416000px;}
.ws2e{word-spacing:-10.117200px;}
.ws29{word-spacing:-10.080000px;}
.ws2b{word-spacing:-10.069200px;}
.ws1f{word-spacing:-9.744000px;}
.ws28{word-spacing:-9.312000px;}
.ws2a{word-spacing:-9.264000px;}
.ws2d{word-spacing:-9.232800px;}
.ws12{word-spacing:-8.940000px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-16.842000px;}
._6{margin-left:-15.738000px;}
._8{margin-left:-14.046000px;}
._7{margin-left:-11.970000px;}
._a{margin-left:-9.738000px;}
._4{margin-left:-8.508000px;}
._3{margin-left:-7.302000px;}
._9{margin-left:-5.862000px;}
._21{margin-left:-4.356000px;}
._5{margin-left:-3.042000px;}
._0{margin-left:-1.200000px;}
._1{width:1.200000px;}
._10{width:2.508000px;}
._d{width:3.894000px;}
._c{width:5.082000px;}
._13{width:6.426000px;}
._e{width:7.788000px;}
._f{width:8.904000px;}
._20{width:10.296000px;}
._16{width:11.352000px;}
._17{width:12.462000px;}
._18{width:14.388000px;}
._14{width:15.774000px;}
._15{width:17.346000px;}
._11{width:19.722000px;}
._12{width:21.570000px;}
._2a{width:23.232000px;}
._1e{width:25.092000px;}
._1c{width:26.892000px;}
._19{width:27.906000px;}
._1a{width:28.908000px;}
._2b{width:30.150000px;}
._2c{width:31.494000px;}
._2f{width:32.628000px;}
._2e{width:33.660000px;}
._26{width:39.480000px;}
._25{width:40.656000px;}
._1f{width:42.174000px;}
._1b{width:45.528000px;}
._22{width:47.046000px;}
._23{width:48.180000px;}
._24{width:50.160000px;}
._29{width:59.322000px;}
._28{width:81.036000px;}
._27{width:82.038000px;}
._2d{width:83.712000px;}
._31{width:87.522000px;}
._1d{width:839.310000px;}
._2{width:845.982000px;}
._30{width:850.986000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(14,40,65);}
.fc2{color:transparent;}
.fc5{color:rgb(70,120,134);}
.fc1{color:rgb(30,100,200);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.000000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:51.600000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y3a8{bottom:2.700000px;}
.y21e{bottom:3.300000px;}
.y2d9{bottom:3.315000px;}
.y237{bottom:3.330000px;}
.y2f6{bottom:3.337500px;}
.y2d0{bottom:3.345000px;}
.y1d3{bottom:3.600000px;}
.y435{bottom:3.615000px;}
.y437{bottom:3.645000px;}
.y309{bottom:3.885000px;}
.y1cb{bottom:3.900000px;}
.y312{bottom:3.915000px;}
.y319{bottom:3.945000px;}
.y2cb{bottom:4.200000px;}
.y201{bottom:4.500000px;}
.y204{bottom:4.800000px;}
.y209{bottom:4.815000px;}
.y207{bottom:5.100000px;}
.y20b{bottom:5.115000px;}
.y379{bottom:5.385000px;}
.y222{bottom:5.400000px;}
.y376{bottom:5.415000px;}
.y367{bottom:5.685000px;}
.y389{bottom:5.692500px;}
.y224{bottom:5.700000px;}
.y22f{bottom:5.715000px;}
.y39c{bottom:5.730000px;}
.y386{bottom:5.745000px;}
.y326{bottom:6.000000px;}
.y3c3{bottom:6.015000px;}
.y335{bottom:6.285000px;}
.y332{bottom:6.300000px;}
.y310{bottom:6.315000px;}
.y343{bottom:6.345000px;}
.y31d{bottom:8.085000px;}
.y305{bottom:8.100000px;}
.y321{bottom:8.385000px;}
.y303{bottom:8.400000px;}
.y189{bottom:9.285000px;}
.y182{bottom:9.300000px;}
.y17f{bottom:9.315000px;}
.y19c{bottom:9.330000px;}
.y206{bottom:10.500000px;}
.y203{bottom:10.515000px;}
.y401{bottom:11.400000px;}
.y1e6{bottom:12.000000px;}
.y1e5{bottom:12.300000px;}
.y31a{bottom:12.345000px;}
.y2bc{bottom:13.185000px;}
.y2c8{bottom:13.192500px;}
.y1b7{bottom:13.200000px;}
.y2c6{bottom:13.215000px;}
.y1b4{bottom:13.230000px;}
.y1b6{bottom:13.500000px;}
.y1f4{bottom:13.545000px;}
.y1f1{bottom:13.800000px;}
.y1d8{bottom:14.400000px;}
.y1d7{bottom:14.700000px;}
.y407{bottom:15.600000px;}
.y41a{bottom:15.645000px;}
.y30c{bottom:16.500000px;}
.y3c0{bottom:16.792500px;}
.y353{bottom:16.800000px;}
.y357{bottom:16.815000px;}
.y3a5{bottom:16.845000px;}
.y368{bottom:17.085000px;}
.y38a{bottom:17.092500px;}
.y355{bottom:17.100000px;}
.y3f7{bottom:17.107500px;}
.y359{bottom:17.115000px;}
.y35b{bottom:17.130000px;}
.y363{bottom:17.145000px;}
.y1df{bottom:17.400000px;}
.y3c6{bottom:17.685000px;}
.y1de{bottom:17.700000px;}
.y21d{bottom:18.000000px;}
.y2cf{bottom:18.045000px;}
.y400{bottom:19.200000px;}
.y421{bottom:19.237500px;}
.y446{bottom:19.245000px;}
.y1d1{bottom:20.100000px;}
.y1e8{bottom:20.145000px;}
.y30d{bottom:20.385000px;}
.y1cf{bottom:20.400000px;}
.y2ff{bottom:20.430000px;}
.y1ca{bottom:20.445000px;}
.y2be{bottom:22.230000px;}
.y1bc{bottom:22.500000px;}
.y1c0{bottom:22.507500px;}
.y30f{bottom:22.815000px;}
.y1ef{bottom:23.715000px;}
.y200{bottom:24.600000px;}
.y3a9{bottom:27.600000px;}
.y17e{bottom:30.000000px;}
.y181{bottom:30.030000px;}
.y1bf{bottom:31.492500px;}
.y1bb{bottom:31.500000px;}
.y2bf{bottom:31.530000px;}
.y3c5{bottom:32.385000px;}
.y372{bottom:32.400000px;}
.y3ab{bottom:32.700000px;}
.y351{bottom:32.715000px;}
.y2ce{bottom:32.745000px;}
.y2{bottom:33.300000px;}
.y1c6{bottom:33.600000px;}
.y1f0{bottom:33.900000px;}
.y425{bottom:35.700000px;}
.y3fc{bottom:35.745000px;}
.y1ce{bottom:36.900000px;}
.y1b3{bottom:40.530000px;}
.y199{bottom:50.685000px;}
.y1cd{bottom:53.400000px;}
.y1b2{bottom:58.845000px;}
.y2fc{bottom:63.337500px;}
.y2fb{bottom:75.337500px;}
.y247{bottom:77.137500px;}
.y2fa{bottom:90.037500px;}
.y423{bottom:92.437500px;}
.y246{bottom:93.937500px;}
.y2f9{bottom:104.737500px;}
.y3c1{bottom:106.237500px;}
.y422{bottom:108.937500px;}
.y111{bottom:110.137500px;}
.y245{bottom:110.737500px;}
.y1c1{bottom:112.537500px;}
.y1fd{bottom:113.137500px;}
.y38c{bottom:113.437500px;}
.y15b{bottom:114.637500px;}
.y2c9{bottom:117.337500px;}
.y146{bottom:117.937500px;}
.y2f8{bottom:119.437500px;}
.y4b8{bottom:119.737500px;}
.y4b9{bottom:120.337500px;}
.y26f{bottom:123.037500px;}
.yef{bottom:123.937500px;}
.y25b{bottom:126.337500px;}
.y169{bottom:127.237500px;}
.y244{bottom:127.837500px;}
.y3f8{bottom:128.137500px;}
.y12d{bottom:128.437500px;}
.y1fc{bottom:129.337500px;}
.y38b{bottom:129.637500px;}
.y1be{bottom:130.237500px;}
.y5d{bottom:133.837500px;}
.y2f7{bottom:134.137500px;}
.y3bf{bottom:134.737500px;}
.y286{bottom:135.637500px;}
.y291{bottom:137.737500px;}
.y110{bottom:138.637500px;}
.y2c7{bottom:139.237500px;}
.y420{bottom:139.837500px;}
.y15a{bottom:143.137500px;}
.y243{bottom:144.637500px;}
.y3f6{bottom:145.237500px;}
.y4ab{bottom:145.837500px;}
.y145{bottom:146.437500px;}
.yd5{bottom:146.737500px;}
.y2a6{bottom:148.237500px;}
.y2f5{bottom:148.837500px;}
.y3de{bottom:150.630000px;}
.y26e{bottom:151.530000px;}
.yee{bottom:152.430000px;}
.y219{bottom:153.930000px;}
.y25a{bottom:154.830000px;}
.y168{bottom:155.745000px;}
.y1ec{bottom:155.775000px;}
.y242{bottom:156.675000px;}
.y12c{bottom:156.930000px;}
.y1fb{bottom:158.730000px;}
.y3f5{bottom:162.330000px;}
.y2f4{bottom:163.275000px;}
.y44a{bottom:163.575000px;}
.y388{bottom:163.830000px;}
.y285{bottom:165.330000px;}
.y290{bottom:166.245000px;}
.y2c5{bottom:166.530000px;}
.y10f{bottom:167.130000px;}
.y3dd{bottom:167.730000px;}
.y1eb{bottom:168.075000px;}
.y3be{bottom:168.630000px;}
.y5c{bottom:169.845000px;}
.y41f{bottom:171.075000px;}
.y159{bottom:171.630000px;}
.y241{bottom:173.775000px;}
.y218{bottom:174.030000px;}
.y4aa{bottom:174.330000px;}
.y144{bottom:174.930000px;}
.y1bd{bottom:175.830000px;}
.y4b7{bottom:176.745000px;}
.y47c{bottom:177.330000px;}
.y2f3{bottom:177.975000px;}
.y3f4{bottom:179.130000px;}
.y449{bottom:179.775000px;}
.y26d{bottom:180.045000px;}
.y387{bottom:180.630000px;}
.yed{bottom:180.930000px;}
.y259{bottom:183.345000px;}
.y167{bottom:184.245000px;}
.y3dc{bottom:184.830000px;}
.y12b{bottom:185.130000px;}
.y1ea{bottom:185.475000px;}
.y2a5{bottom:185.730000px;}
.y48e{bottom:186.345000px;}
.y41e{bottom:186.675000px;}
.y1fa{bottom:187.830000px;}
.yd4{bottom:188.130000px;}
.y32a{bottom:189.345000px;}
.y240{bottom:190.875000px;}
.y2f2{bottom:192.675000px;}
.y284{bottom:193.830000px;}
.y217{bottom:194.445000px;}
.y28f{bottom:194.745000px;}
.y448{bottom:195.375000px;}
.y3f3{bottom:196.230000px;}
.y10e{bottom:196.845000px;}
.y385{bottom:197.730000px;}
.y495{bottom:199.845000px;}
.y158{bottom:200.130000px;}
.y3db{bottom:201.975000px;}
.y41d{bottom:202.275000px;}
.y3bd{bottom:202.875000px;}
.y1ba{bottom:203.175000px;}
.y143{bottom:203.475000px;}
.y5b{bottom:205.875000px;}
.y2f1{bottom:207.375000px;}
.y23f{bottom:207.675000px;}
.y26c{bottom:208.575000px;}
.yec{bottom:209.475000px;}
.y258{bottom:211.875000px;}
.y2c4{bottom:212.175000px;}
.y166{bottom:212.775000px;}
.y3f2{bottom:213.375000px;}
.y12a{bottom:213.675000px;}
.y2a4{bottom:213.975000px;}
.y4b6{bottom:214.275000px;}
.y216{bottom:214.575000px;}
.y384{bottom:214.875000px;}
.y466{bottom:216.675000px;}
.y1f9{bottom:216.975000px;}
.y41c{bottom:217.875000px;}
.y3da{bottom:218.775000px;}
.y1e9{bottom:219.675000px;}
.y2f0{bottom:222.075000px;}
.y283{bottom:222.375000px;}
.y28e{bottom:222.975000px;}
.y329{bottom:223.275000px;}
.y24{bottom:224.775000px;}
.y447{bottom:226.575000px;}
.y494{bottom:228.375000px;}
.yd3{bottom:229.875000px;}
.y3f1{bottom:230.475000px;}
.y215{bottom:230.775000px;}
.y157{bottom:231.375000px;}
.y142{bottom:231.975000px;}
.y41b{bottom:233.475000px;}
.y47b{bottom:234.375000px;}
.y3d9{bottom:235.875000px;}
.y26b{bottom:236.775000px;}
.yeb{bottom:238.875000px;}
.y2c3{bottom:239.475000px;}
.y328{bottom:240.075000px;}
.y257{bottom:240.375000px;}
.y10d{bottom:240.975000px;}
.y5a{bottom:241.875000px;}
.y129{bottom:242.175000px;}
.y2a3{bottom:242.475000px;}
.y4b5{bottom:242.775000px;}
.y487{bottom:243.375000px;}
.y23{bottom:245.175000px;}
.y1f8{bottom:246.075000px;}
.y34e{bottom:246.375000px;}
.y3f0{bottom:247.275000px;}
.y1b9{bottom:248.775000px;}
.y419{bottom:249.075000px;}
.y282{bottom:250.575000px;}
.y2ef{bottom:251.175000px;}
.y214{bottom:252.075000px;}
.y3d8{bottom:252.975000px;}
.y1e7{bottom:253.875000px;}
.y465{bottom:254.175000px;}
.y40{bottom:255.675000px;}
.y493{bottom:256.575000px;}
.y445{bottom:257.475000px;}
.y23e{bottom:258.975000px;}
.y141{bottom:260.475000px;}
.y325{bottom:261.075000px;}
.y22{bottom:264.375000px;}
.y26a{bottom:265.275000px;}
.y418{bottom:265.320000px;}
.y383{bottom:265.875000px;}
.y2ee{bottom:265.920000px;}
.y2c2{bottom:266.775000px;}
.y34d{bottom:267.675000px;}
.y256{bottom:268.575000px;}
.y10c{bottom:269.475000px;}
.y3d7{bottom:270.075000px;}
.y128{bottom:270.675000px;}
.y2a2{bottom:270.975000px;}
.yd2{bottom:271.275000px;}
.y47a{bottom:271.575000px;}
.y156{bottom:271.875000px;}
.y213{bottom:273.375000px;}
.y1f7{bottom:275.175000px;}
.y23d{bottom:275.820000px;}
.y3f{bottom:276.075000px;}
.y59{bottom:277.875000px;}
.y281{bottom:279.075000px;}
.y48d{bottom:280.575000px;}
.y2ed{bottom:280.620000px;}
.y417{bottom:280.920000px;}
.y3ef{bottom:281.475000px;}
.y327{bottom:281.775000px;}
.y464{bottom:282.375000px;}
.y382{bottom:282.975000px;}
.y21{bottom:283.275000px;}
.y3d6{bottom:286.875000px;}
.y3bc{bottom:287.775000px;}
.y1e4{bottom:287.820000px;}
.y34c{bottom:288.675000px;}
.y444{bottom:288.720000px;}
.y140{bottom:288.975000px;}
.y23c{bottom:292.920000px;}
.y269{bottom:293.775000px;}
.y2c1{bottom:294.075000px;}
.y212{bottom:294.675000px;}
.y3e{bottom:294.975000px;}
.y2ec{bottom:295.320000px;}
.y416{bottom:296.520000px;}
.y255{bottom:297.075000px;}
.y10b{bottom:297.975000px;}
.y3ee{bottom:298.575000px;}
.y2a1{bottom:299.475000px;}
.y381{bottom:300.075000px;}
.y155{bottom:300.375000px;}
.y127{bottom:301.875000px;}
.y20{bottom:302.175000px;}
.y324{bottom:302.775000px;}
.y1b8{bottom:303.375000px;}
.y3d5{bottom:303.975000px;}
.y1f6{bottom:304.275000px;}
.y443{bottom:304.320000px;}
.y3bb{bottom:304.875000px;}
.y4a9{bottom:306.075000px;}
.y280{bottom:307.575000px;}
.y48c{bottom:309.075000px;}
.y34b{bottom:309.675000px;}
.y23b{bottom:310.020000px;}
.y463{bottom:310.875000px;}
.yea{bottom:311.775000px;}
.y415{bottom:312.120000px;}
.yd1{bottom:312.675000px;}
.y58{bottom:313.875000px;}
.y1e3{bottom:313.920000px;}
.y3d{bottom:314.175000px;}
.y3ed{bottom:315.375000px;}
.y211{bottom:315.675000px;}
.y380{bottom:316.875000px;}
.y13f{bottom:317.475000px;}
.y442{bottom:320.520000px;}
.y1f{bottom:321.075000px;}
.y2c0{bottom:321.375000px;}
.y3ba{bottom:321.975000px;}
.y492{bottom:322.575000px;}
.y2eb{bottom:324.720000px;}
.y254{bottom:325.575000px;}
.y10a{bottom:326.475000px;}
.y23a{bottom:327.120000px;}
.y414{bottom:327.720000px;}
.y479{bottom:328.575000px;}
.y154{bottom:328.875000px;}
.y268{bottom:331.275000px;}
.y1e2{bottom:331.320000px;}
.y1b5{bottom:331.575000px;}
.y3ec{bottom:332.475000px;}
.y3c{bottom:333.075000px;}
.y1f5{bottom:333.375000px;}
.y37f{bottom:333.975000px;}
.y4a8{bottom:334.575000px;}
.y27f{bottom:336.075000px;}
.y441{bottom:336.120000px;}
.y210{bottom:336.975000px;}
.y48b{bottom:337.575000px;}
.y3d4{bottom:338.175000px;}
.y3b9{bottom:339.075000px;}
.y2ea{bottom:339.120000px;}
.ye9{bottom:340.275000px;}
.y34a{bottom:340.875000px;}
.y1e{bottom:341.175000px;}
.y126{bottom:342.375000px;}
.y413{bottom:343.020000px;}
.y21b{bottom:343.575000px;}
.y239{bottom:343.920000px;}
.y13e{bottom:345.675000px;}
.y28d{bottom:345.975000px;}
.y462{bottom:348.375000px;}
.y1e1{bottom:349.020000px;}
.y2bd{bottom:349.575000px;}
.y57{bottom:349.875000px;}
.y37e{bottom:351.075000px;}
.y440{bottom:351.720000px;}
.y3b{bottom:351.975000px;}
.y2e9{bottom:353.820000px;}
.y17c{bottom:354.075000px;}
.y109{bottom:354.975000px;}
.y3b8{bottom:355.875000px;}
.y153{bottom:357.375000px;}
.y20f{bottom:358.275000px;}
.y412{bottom:358.620000px;}
.y139{bottom:359.475000px;}
.y267{bottom:359.775000px;}
.y323{bottom:361.275000px;}
.y238{bottom:361.920000px;}
.y1f3{bottom:362.775000px;}
.y4a7{bottom:363.075000px;}
.y1d{bottom:363.975000px;}
.y27e{bottom:364.575000px;}
.y2a0{bottom:365.505000px;}
.y478{bottom:366.120000px;}
.y3eb{bottom:366.705000px;}
.y43f{bottom:367.320000px;}
.y37d{bottom:368.205000px;}
.y2e8{bottom:368.520000px;}
.ye8{bottom:368.820000px;}
.y125{bottom:370.905000px;}
.y3d3{bottom:372.105000px;}
.y3a{bottom:372.120000px;}
.y3b7{bottom:373.005000px;}
.y72{bottom:373.905000px;}
.y13d{bottom:374.205000px;}
.y411{bottom:374.220000px;}
.y28c{bottom:374.505000px;}
.y48a{bottom:375.120000px;}
.y461{bottom:376.905000px;}
.yd0{bottom:378.720000px;}
.y20e{bottom:379.605000px;}
.y322{bottom:382.320000px;}
.y253{bottom:382.620000px;}
.y43e{bottom:382.950000px;}
.y1e0{bottom:383.250000px;}
.y108{bottom:383.505000px;}
.y165{bottom:384.705000px;}
.y37c{bottom:385.005000px;}
.y56{bottom:385.620000px;}
.y152{bottom:385.920000px;}
.y1c{bottom:386.820000px;}
.y349{bottom:387.120000px;}
.y266{bottom:388.305000px;}
.y491{bottom:388.620000px;}
.y3d2{bottom:389.205000px;}
.yb7{bottom:389.220000px;}
.y410{bottom:389.850000px;}
.y3b6{bottom:390.105000px;}
.y17b{bottom:391.605000px;}
.y1f2{bottom:391.905000px;}
.y27d{bottom:393.120000px;}
.y29f{bottom:394.005000px;}
.y477{bottom:394.605000px;}
.y39{bottom:394.905000px;}
.y2bb{bottom:395.820000px;}
.y236{bottom:396.750000px;}
.y138{bottom:397.005000px;}
.ye7{bottom:397.320000px;}
.y2e7{bottom:397.950000px;}
.y43d{bottom:398.550000px;}
.y124{bottom:399.405000px;}
.y20d{bottom:400.605000px;}
.y21a{bottom:400.620000px;}
.y37b{bottom:402.105000px;}
.y13c{bottom:402.705000px;}
.y28b{bottom:403.005000px;}
.y320{bottom:403.320000px;}
.y489{bottom:403.605000px;}
.y460{bottom:405.405000px;}
.y40f{bottom:405.450000px;}
.y3d1{bottom:406.320000px;}
.y3b5{bottom:407.205000px;}
.y1b{bottom:409.620000px;}
.y71{bottom:410.505000px;}
.y252{bottom:411.120000px;}
.y107{bottom:412.005000px;}
.y2e6{bottom:412.650000px;}
.y55{bottom:414.120000px;}
.y43c{bottom:414.150000px;}
.ycf{bottom:416.205000px;}
.y265{bottom:416.820000px;}
.y490{bottom:417.105000px;}
.y1dd{bottom:417.150000px;}
.y38{bottom:417.705000px;}
.y37a{bottom:419.205000px;}
.y17a{bottom:420.120000px;}
.y1ee{bottom:421.605000px;}
.y27c{bottom:421.620000px;}
.y40e{bottom:421.650000px;}
.y20c{bottom:421.905000px;}
.y29e{bottom:422.505000px;}
.y3d0{bottom:423.105000px;}
.y486{bottom:423.120000px;}
.y3b4{bottom:424.005000px;}
.y31f{bottom:424.320000px;}
.y137{bottom:425.505000px;}
.ye6{bottom:425.820000px;}
.yb6{bottom:426.705000px;}
.y2e5{bottom:427.050000px;}
.ya0{bottom:427.320000px;}
.y123{bottom:427.905000px;}
.y164{bottom:429.120000px;}
.y348{bottom:429.705000px;}
.y43b{bottom:429.750000px;}
.y1a{bottom:431.205000px;}
.y28a{bottom:431.505000px;}
.y235{bottom:431.550000px;}
.y476{bottom:432.105000px;}
.y198{bottom:433.320000px;}
.y3ea{bottom:434.820000px;}
.y378{bottom:436.320000px;}
.y40d{bottom:437.250000px;}
.y88{bottom:437.505000px;}
.y251{bottom:439.620000px;}
.y3cf{bottom:440.205000px;}
.y37{bottom:440.505000px;}
.y3b3{bottom:441.105000px;}
.y2e4{bottom:441.750000px;}
.y151{bottom:442.620000px;}
.y347{bottom:442.905000px;}
.y45f{bottom:442.920000px;}
.y20a{bottom:443.205000px;}
.yce{bottom:444.705000px;}
.y43a{bottom:445.050000px;}
.y264{bottom:445.320000px;}
.y234{bottom:448.350000px;}
.y179{bottom:448.620000px;}
.y1dc{bottom:448.650000px;}
.y54{bottom:450.120000px;}
.y29d{bottom:450.705000px;}
.y3e9{bottom:451.605000px;}
.y70{bottom:451.620000px;}
.y40c{bottom:452.850000px;}
.y377{bottom:453.105000px;}
.y19{bottom:454.005000px;}
.ye5{bottom:454.320000px;}
.yb5{bottom:454.905000px;}
.y122{bottom:456.420000px;}
.y2e3{bottom:456.450000px;}
.y2ba{bottom:457.005000px;}
.y3ce{bottom:457.320000px;}
.y163{bottom:457.605000px;}
.y3b2{bottom:458.205000px;}
.y27b{bottom:459.105000px;}
.y4b4{bottom:460.005000px;}
.y475{bottom:460.620000px;}
.y439{bottom:460.650000px;}
.y31e{bottom:461.820000px;}
.y36{bottom:462.120000px;}
.y13b{bottom:462.405000px;}
.y346{bottom:464.205000px;}
.y208{bottom:464.505000px;}
.y233{bottom:465.150000px;}
.y1db{bottom:466.350000px;}
.y250{bottom:468.120000px;}
.y106{bottom:468.705000px;}
.y9f{bottom:470.205000px;}
.y150{bottom:471.105000px;}
.y2e2{bottom:471.150000px;}
.y45e{bottom:471.420000px;}
.y1ed{bottom:471.705000px;}
.ycd{bottom:472.905000px;}
.y263{bottom:473.505000px;}
.y3cd{bottom:474.405000px;}
.y87{bottom:475.005000px;}
.y3b1{bottom:475.320000px;}
.y178{bottom:477.120000px;}
.y438{bottom:477.150000px;}
.y29c{bottom:479.205000px;}
.y18{bottom:480.120000px;}
.y232{bottom:482.250000px;}
.ye4{bottom:482.505000px;}
.y31c{bottom:482.820000px;}
.yb4{bottom:483.420000px;}
.y1da{bottom:483.750000px;}
.y40b{bottom:484.050000px;}
.y35{bottom:484.920000px;}
.y345{bottom:485.505000px;}
.y3e8{bottom:485.820000px;}
.y2e1{bottom:485.850000px;}
.y53{bottom:486.105000px;}
.y205{bottom:486.405000px;}
.y27a{bottom:487.320000px;}
.y4b3{bottom:488.505000px;}
.y485{bottom:489.120000px;}
.y2b9{bottom:489.705000px;}
.y3cc{bottom:491.205000px;}
.y3b0{bottom:492.105000px;}
.y436{bottom:492.750000px;}
.y6f{bottom:493.320000px;}
.y13a{bottom:495.105000px;}
.y197{bottom:495.405000px;}
.y24f{bottom:496.320000px;}
.y1b1{bottom:496.905000px;}
.y105{bottom:497.205000px;}
.y474{bottom:498.105000px;}
.y17{bottom:499.005000px;}
.y231{bottom:499.095000px;}
.y14f{bottom:499.605000px;}
.y40a{bottom:499.695000px;}
.y45d{bottom:499.905000px;}
.y2e0{bottom:500.295000px;}
.ycc{bottom:501.405000px;}
.y1d9{bottom:501.495000px;}
.y262{bottom:502.005000px;}
.y3e7{bottom:502.905000px;}
.y31b{bottom:503.805000px;}
.y375{bottom:504.405000px;}
.y177{bottom:505.305000px;}
.y2b4{bottom:506.220000px;}
.y344{bottom:506.505000px;}
.y202{bottom:507.705000px;}
.y9e{bottom:507.720000px;}
.y434{bottom:508.080000px;}
.y3cb{bottom:508.305000px;}
.y3af{bottom:509.205000px;}
.y34{bottom:510.705000px;}
.ye3{bottom:511.005000px;}
.yb3{bottom:511.905000px;}
.y86{bottom:512.505000px;}
.y121{bottom:513.105000px;}
.y162{bottom:514.320000px;}
.y2df{bottom:514.995000px;}
.y409{bottom:515.295000px;}
.y279{bottom:515.805000px;}
.y230{bottom:515.895000px;}
.y196{bottom:516.105000px;}
.y4b2{bottom:517.005000px;}
.y484{bottom:517.305000px;}
.y1b0{bottom:517.605000px;}
.y16{bottom:517.905000px;}
.y3e6{bottom:519.705000px;}
.y374{bottom:521.205000px;}
.y52{bottom:522.105000px;}
.y4a6{bottom:523.320000px;}
.y433{bottom:523.695000px;}
.y24e{bottom:524.820000px;}
.y318{bottom:525.405000px;}
.y104{bottom:525.705000px;}
.y3ae{bottom:526.305000px;}
.y473{bottom:526.320000px;}
.y342{bottom:527.805000px;}
.y22e{bottom:527.880000px;}
.y14e{bottom:528.120000px;}
.y6e{bottom:529.350000px;}
.y1ff{bottom:529.650000px;}
.y2de{bottom:529.695000px;}
.y33{bottom:529.950000px;}
.y261{bottom:530.550000px;}
.y408{bottom:530.595000px;}
.y176{bottom:533.850000px;}
.y2b8{bottom:534.150000px;}
.y1c4{bottom:534.750000px;}
.y1d6{bottom:535.695000px;}
.y9d{bottom:536.250000px;}
.y15{bottom:536.850000px;}
.y3e5{bottom:537.750000px;}
.y1af{bottom:538.350000px;}
.y373{bottom:539.250000px;}
.ye2{bottom:539.550000px;}
.yb2{bottom:540.450000px;}
.y85{bottom:541.050000px;}
.y120{bottom:541.650000px;}
.y161{bottom:542.850000px;}
.y3ca{bottom:543.150000px;}
.y3ad{bottom:544.050000px;}
.y278{bottom:544.350000px;}
.y2dd{bottom:544.395000px;}
.y22d{bottom:544.995000px;}
.y483{bottom:545.850000px;}
.y406{bottom:546.195000px;}
.y32{bottom:548.850000px;}
.y341{bottom:549.150000px;}
.y4a5{bottom:551.850000px;}
.y24d{bottom:553.350000px;}
.y103{bottom:554.250000px;}
.y3e4{bottom:554.550000px;}
.y472{bottom:554.850000px;}
.y432{bottom:554.895000px;}
.y14{bottom:556.050000px;}
.y14d{bottom:556.650000px;}
.y195{bottom:557.550000px;}
.y51{bottom:558.150000px;}
.ycb{bottom:558.450000px;}
.y1ae{bottom:559.050000px;}
.y2dc{bottom:559.095000px;}
.y3c9{bottom:560.250000px;}
.y3ac{bottom:561.150000px;}
.y22c{bottom:562.095000px;}
.y175{bottom:562.350000px;}
.y405{bottom:562.695000px;}
.y2b3{bottom:563.250000px;}
.y317{bottom:563.850000px;}
.y1d5{bottom:564.195000px;}
.y9c{bottom:564.750000px;}
.y6d{bottom:565.350000px;}
.y45c{bottom:565.650000px;}
.y31{bottom:567.750000px;}
.ye1{bottom:568.050000px;}
.yb1{bottom:568.950000px;}
.y84{bottom:569.550000px;}
.y11f{bottom:570.150000px;}
.y340{bottom:570.450000px;}
.y431{bottom:570.495000px;}
.y160{bottom:571.350000px;}
.y3e3{bottom:572.550000px;}
.y1c3{bottom:572.850000px;}
.y2db{bottom:573.795000px;}
.y371{bottom:574.050000px;}
.y482{bottom:574.350000px;}
.y13{bottom:577.350000px;}
.y3c8{bottom:577.950000px;}
.y194{bottom:578.250000px;}
.y404{bottom:578.295000px;}
.y3aa{bottom:578.850000px;}
.y22b{bottom:579.195000px;}
.y1ad{bottom:579.750000px;}
.y1d4{bottom:581.895000px;}
.y102{bottom:582.750000px;}
.y471{bottom:583.350000px;}
.y1fe{bottom:583.950000px;}
.y14c{bottom:585.150000px;}
.y430{bottom:586.095000px;}
.y30{bottom:586.650000px;}
.yca{bottom:586.950000px;}
.y260{bottom:587.550000px;}
.y2da{bottom:588.195000px;}
.y4a4{bottom:589.350000px;}
.y174{bottom:590.850000px;}
.y33f{bottom:591.450000px;}
.y2b2{bottom:591.750000px;}
.y29b{bottom:593.250000px;}
.y403{bottom:593.595000px;}
.y50{bottom:594.150000px;}
.y22a{bottom:595.995000px;}
.y136{bottom:596.250000px;}
.ye0{bottom:596.550000px;}
.yb0{bottom:597.450000px;}
.y11e{bottom:598.650000px;}
.y193{bottom:598.950000px;}
.y1d2{bottom:599.295000px;}
.y15f{bottom:599.850000px;}
.y6c{bottom:601.050000px;}
.y277{bottom:601.350000px;}
.y42f{bottom:601.695000px;}
.y9b{bottom:602.250000px;}
.y2d8{bottom:602.880000px;}
.y12{bottom:605.850000px;}
.y83{bottom:607.050000px;}
.y2f{bottom:608.250000px;}
.y402{bottom:609.225000px;}
.y1c2{bottom:610.350000px;}
.y101{bottom:611.250000px;}
.y481{bottom:611.850000px;}
.y33e{bottom:612.750000px;}
.y229{bottom:613.125000px;}
.y14b{bottom:613.350000px;}
.yc9{bottom:615.450000px;}
.y316{bottom:615.750000px;}
.y25f{bottom:616.050000px;}
.y3e2{bottom:616.350000px;}
.y1d0{bottom:617.025000px;}
.y2d7{bottom:617.625000px;}
.y4a3{bottom:617.850000px;}
.y42e{bottom:617.925000px;}
.y173{bottom:619.350000px;}
.y192{bottom:619.650000px;}
.y2b1{bottom:620.250000px;}
.y470{bottom:620.850000px;}
.y1ac{bottom:621.150000px;}
.y45b{bottom:622.650000px;}
.y3a7{bottom:622.950000px;}
.y135{bottom:624.750000px;}
.y3ff{bottom:624.825000px;}
.ydf{bottom:625.050000px;}
.yaf{bottom:625.950000px;}
.y11d{bottom:627.150000px;}
.y15e{bottom:628.350000px;}
.y4f{bottom:629.850000px;}
.y228{bottom:630.225000px;}
.y9a{bottom:630.750000px;}
.y2d6{bottom:632.325000px;}
.y3e1{bottom:633.450000px;}
.y42d{bottom:633.525000px;}
.y33d{bottom:634.050000px;}
.y11{bottom:634.350000px;}
.y3c7{bottom:634.950000px;}
.y82{bottom:635.550000px;}
.y2e{bottom:636.750000px;}
.y6b{bottom:637.050000px;}
.y100{bottom:639.750000px;}
.y191{bottom:640.350000px;}
.y14a{bottom:641.850000px;}
.yc8{bottom:643.950000px;}
.y25e{bottom:644.550000px;}
.y4a2{bottom:646.350000px;}
.y370{bottom:646.950000px;}
.y2d5{bottom:647.025000px;}
.y227{bottom:647.325000px;}
.y172{bottom:647.850000px;}
.y2b0{bottom:648.750000px;}
.y42c{bottom:649.125000px;}
.y46f{bottom:649.350000px;}
.y315{bottom:649.950000px;}
.y3e0{bottom:650.550000px;}
.y3a6{bottom:651.150000px;}
.y1cc{bottom:651.825000px;}
.y134{bottom:653.250000px;}
.yde{bottom:653.550000px;}
.yae{bottom:654.450000px;}
.y33c{bottom:655.350000px;}
.y11c{bottom:655.650000px;}
.y15d{bottom:656.850000px;}
.y3fe{bottom:656.925000px;}
.y276{bottom:658.350000px;}
.y99{bottom:659.250000px;}
.y45a{bottom:660.150000px;}
.y190{bottom:661.050000px;}
.y2d4{bottom:661.725000px;}
.y1ab{bottom:662.550000px;}
.y10{bottom:662.850000px;}
.y81{bottom:664.050000px;}
.y226{bottom:664.125000px;}
.y42b{bottom:664.725000px;}
.y2d{bottom:665.250000px;}
.y4e{bottom:665.850000px;}
.y289{bottom:668.250000px;}
.y480{bottom:668.850000px;}
.yff{bottom:669.450000px;}
.y149{bottom:670.350000px;}
.y3fd{bottom:672.225000px;}
.yc7{bottom:672.450000px;}
.y6a{bottom:673.050000px;}
.y4a1{bottom:674.850000px;}
.y2d3{bottom:676.125000px;}
.y171{bottom:676.350000px;}
.y2af{bottom:677.250000px;}
.y46e{bottom:677.850000px;}
.y42a{bottom:680.325000px;}
.y36f{bottom:681.150000px;}
.y225{bottom:681.225000px;}
.y133{bottom:681.750000px;}
.ydd{bottom:682.050000px;}
.yad{bottom:682.650000px;}
.y1aa{bottom:683.250000px;}
.y15c{bottom:685.350000px;}
.y275{bottom:686.550000px;}
.y11b{bottom:686.850000px;}
.y98{bottom:687.450000px;}
.y459{bottom:688.650000px;}
.y3fb{bottom:688.725000px;}
.y314{bottom:689.850000px;}
.y2d2{bottom:690.825000px;}
.y80{bottom:692.250000px;}
.y2c{bottom:693.780000px;}
.yf{bottom:695.880000px;}
.y429{bottom:695.925000px;}
.y288{bottom:696.495000px;}
.y33b{bottom:697.680000px;}
.y36e{bottom:698.280000px;}
.y223{bottom:698.325000px;}
.y148{bottom:698.880000px;}
.yc6{bottom:700.695000px;}
.y25d{bottom:701.280000px;}
.y4d{bottom:701.880000px;}
.y3a4{bottom:702.180000px;}
.y18f{bottom:702.480000px;}
.y4a0{bottom:703.380000px;}
.y1a9{bottom:703.980000px;}
.y170{bottom:704.580000px;}
.y2ae{bottom:705.480000px;}
.y2d1{bottom:705.525000px;}
.y4b1{bottom:705.780000px;}
.y46d{bottom:706.380000px;}
.y313{bottom:706.680000px;}
.y69{bottom:709.080000px;}
.ydc{bottom:710.280000px;}
.yac{bottom:711.180000px;}
.y428{bottom:711.225000px;}
.yfe{bottom:713.595000px;}
.y36d{bottom:715.080000px;}
.y221{bottom:715.425000px;}
.y29a{bottom:715.980000px;}
.y458{bottom:717.195000px;}
.y33a{bottom:718.980000px;}
.y3a3{bottom:719.280000px;}
.y1c9{bottom:719.625000px;}
.y2cd{bottom:720.825000px;}
.y18e{bottom:723.180000px;}
.y274{bottom:724.095000px;}
.y1a8{bottom:724.680000px;}
.y97{bottom:724.980000px;}
.y2b{bottom:726.780000px;}
.y11a{bottom:727.380000px;}
.y30e{bottom:727.680000px;}
.y427{bottom:727.770000px;}
.yc5{bottom:729.195000px;}
.y7f{bottom:729.780000px;}
.y36c{bottom:732.180000px;}
.y16f{bottom:733.080000px;}
.y220{bottom:733.170000px;}
.y2ad{bottom:733.995000px;}
.y47f{bottom:734.580000px;}
.y3a2{bottom:736.380000px;}
.y4c{bottom:737.880000px;}
.ydb{bottom:738.780000px;}
.yab{bottom:739.695000px;}
.y339{bottom:740.280000px;}
.y49f{bottom:740.595000px;}
.yfd{bottom:742.080000px;}
.ye{bottom:743.280000px;}
.y426{bottom:743.370000px;}
.y46c{bottom:743.580000px;}
.y18d{bottom:743.880000px;}
.y299{bottom:744.480000px;}
.y68{bottom:745.080000px;}
.y1a7{bottom:745.380000px;}
.y311{bottom:748.680000px;}
.y36b{bottom:749.280000px;}
.y21f{bottom:750.270000px;}
.y273{bottom:752.595000px;}
.y3fa{bottom:752.670000px;}
.y96{bottom:753.480000px;}
.y3a1{bottom:753.495000px;}
.y457{bottom:754.380000px;}
.y287{bottom:754.695000px;}
.y119{bottom:755.880000px;}
.yc4{bottom:757.695000px;}
.y7e{bottom:758.280000px;}
.y424{bottom:759.570000px;}
.y338{bottom:761.280000px;}
.y16e{bottom:761.580000px;}
.y2ac{bottom:762.495000px;}
.y47e{bottom:763.080000px;}
.y18c{bottom:764.595000px;}
.y2cc{bottom:765.570000px;}
.y1a6{bottom:766.095000px;}
.y36a{bottom:766.395000px;}
.yda{bottom:767.280000px;}
.y21c{bottom:767.970000px;}
.yaa{bottom:768.195000px;}
.y132{bottom:768.480000px;}
.y49e{bottom:769.080000px;}
.y30b{bottom:769.695000px;}
.y3a0{bottom:770.295000px;}
.yfc{bottom:770.580000px;}
.y4b0{bottom:771.480000px;}
.y46b{bottom:772.080000px;}
.y298{bottom:772.980000px;}
.y4b{bottom:773.880000px;}
.y2a{bottom:774.195000px;}
.y1c8{bottom:774.570000px;}
.y67{bottom:781.080000px;}
.y95{bottom:781.980000px;}
.y337{bottom:782.580000px;}
.y456{bottom:782.880000px;}
.y369{bottom:783.195000px;}
.y118{bottom:784.380000px;}
.y18b{bottom:785.280000px;}
.y3f9{bottom:785.370000px;}
.yc3{bottom:786.195000px;}
.y1a5{bottom:786.780000px;}
.y7d{bottom:786.795000px;}
.y39f{bottom:787.380000px;}
.y16d{bottom:790.080000px;}
.yd{bottom:790.695000px;}
.y2ab{bottom:790.995000px;}
.yd9{bottom:795.780000px;}
.y2ca{bottom:795.870000px;}
.ya9{bottom:796.695000px;}
.y49d{bottom:797.580000px;}
.yfb{bottom:799.080000px;}
.y4af{bottom:799.980000px;}
.y366{bottom:800.295000px;}
.y46a{bottom:800.580000px;}
.y297{bottom:801.495000px;}
.y1c7{bottom:803.070000px;}
.y336{bottom:803.895000px;}
.y39e{bottom:804.480000px;}
.y18a{bottom:805.995000px;}
.y30a{bottom:807.195000px;}
.y1a4{bottom:807.495000px;}
.y272{bottom:809.580000px;}
.y4a{bottom:809.880000px;}
.y94{bottom:810.480000px;}
.y455{bottom:811.380000px;}
.y117{bottom:812.880000px;}
.yc2{bottom:814.695000px;}
.y7c{bottom:815.295000px;}
.y147{bottom:815.580000px;}
.y66{bottom:817.080000px;}
.y365{bottom:817.380000px;}
.y16c{bottom:818.580000px;}
.y2aa{bottom:819.480000px;}
.y29{bottom:821.580000px;}
.yd8{bottom:824.295000px;}
.ya8{bottom:825.195000px;}
.y188{bottom:826.695000px;}
.yfa{bottom:827.580000px;}
.y1a3{bottom:828.195000px;}
.y4ae{bottom:828.495000px;}
.y469{bottom:829.080000px;}
.y296{bottom:829.995000px;}
.y364{bottom:834.495000px;}
.y49c{bottom:835.080000px;}
.yc{bottom:838.080000px;}
.y39d{bottom:838.380000px;}
.y93{bottom:838.980000px;}
.y116{bottom:841.080000px;}
.yc1{bottom:843.195000px;}
.y7b{bottom:843.795000px;}
.y49{bottom:845.880000px;}
.y334{bottom:846.195000px;}
.y16b{bottom:847.080000px;}
.y187{bottom:847.395000px;}
.y2a9{bottom:847.980000px;}
.y454{bottom:848.880000px;}
.y1a2{bottom:848.895000px;}
.y308{bottom:849.195000px;}
.y362{bottom:851.280000px;}
.yd7{bottom:852.795000px;}
.y65{bottom:853.080000px;}
.ya7{bottom:853.695000px;}
.y39b{bottom:855.495000px;}
.yf9{bottom:856.080000px;}
.y1c5{bottom:856.200000px;}
.y47d{bottom:857.625000px;}
.y49b{bottom:863.625000px;}
.y4ad{bottom:866.025000px;}
.y271{bottom:866.625000px;}
.y92{bottom:867.525000px;}
.y186{bottom:868.125000px;}
.y361{bottom:868.425000px;}
.y28{bottom:869.025000px;}
.y115{bottom:869.625000px;}
.y307{bottom:870.225000px;}
.yc0{bottom:871.725000px;}
.y7a{bottom:872.325000px;}
.y39a{bottom:872.625000px;}
.y16a{bottom:875.625000px;}
.y2a8{bottom:876.525000px;}
.y453{bottom:877.425000px;}
.yd6{bottom:881.325000px;}
.y48{bottom:881.925000px;}
.yf8{bottom:884.625000px;}
.y360{bottom:885.525000px;}
.yb{bottom:885.825000px;}
.y64{bottom:888.825000px;}
.y399{bottom:889.725000px;}
.y1a1{bottom:890.325000px;}
.y306{bottom:891.225000px;}
.y49a{bottom:892.125000px;}
.y4ac{bottom:894.825000px;}
.y468{bottom:895.125000px;}
.y91{bottom:895.725000px;}
.y114{bottom:898.125000px;}
.ybf{bottom:899.925000px;}
.y35f{bottom:902.625000px;}
.y24c{bottom:904.125000px;}
.y2a7{bottom:904.725000px;}
.y452{bottom:905.925000px;}
.y398{bottom:906.525000px;}
.y79{bottom:909.525000px;}
.y333{bottom:910.125000px;}
.ya6{bottom:910.425000px;}
.y1a0{bottom:911.025000px;}
.y304{bottom:912.225000px;}
.yf7{bottom:913.125000px;}
.y27{bottom:916.425000px;}
.y47{bottom:917.625000px;}
.y35e{bottom:919.425000px;}
.y499{bottom:920.625000px;}
.y397{bottom:923.625000px;}
.y295{bottom:924.225000px;}
.y63{bottom:924.825000px;}
.y113{bottom:926.625000px;}
.ybe{bottom:928.425000px;}
.y185{bottom:930.225000px;}
.y331{bottom:931.125000px;}
.y24b{bottom:932.325000px;}
.y302{bottom:932.925000px;}
.y90{bottom:933.225000px;}
.y451{bottom:934.425000px;}
.ya{bottom:936.225000px;}
.y25c{bottom:936.525000px;}
.y78{bottom:938.025000px;}
.ya5{bottom:938.925000px;}
.y396{bottom:940.725000px;}
.yf6{bottom:941.325000px;}
.y184{bottom:950.925000px;}
.y488{bottom:952.125000px;}
.y19f{bottom:952.425000px;}
.y294{bottom:952.725000px;}
.y330{bottom:953.325000px;}
.y46{bottom:953.625000px;}
.y301{bottom:953.925000px;}
.y131{bottom:955.125000px;}
.ybd{bottom:956.925000px;}
.y112{bottom:957.825000px;}
.y498{bottom:958.125000px;}
.y62{bottom:960.825000px;}
.y467{bottom:961.125000px;}
.y8f{bottom:961.725000px;}
.y450{bottom:962.925000px;}
.y77{bottom:966.525000px;}
.y9{bottom:967.125000px;}
.ya4{bottom:967.425000px;}
.yf5{bottom:969.825000px;}
.y35d{bottom:970.725000px;}
.y183{bottom:971.625000px;}
.y19e{bottom:973.125000px;}
.y395{bottom:974.625000px;}
.y300{bottom:975.825000px;}
.y48f{bottom:980.325000px;}
.y293{bottom:981.225000px;}
.y130{bottom:983.625000px;}
.ybc{bottom:985.425000px;}
.y497{bottom:986.325000px;}
.y32f{bottom:986.925000px;}
.y35c{bottom:987.525000px;}
.y24a{bottom:989.325000px;}
.y45{bottom:989.625000px;}
.y8e{bottom:990.225000px;}
.y394{bottom:991.725000px;}
.y180{bottom:992.925000px;}
.y19d{bottom:993.825000px;}
.y76{bottom:995.025000px;}
.ya3{bottom:995.925000px;}
.y2b7{bottom:996.225000px;}
.y61{bottom:996.825000px;}
.y8{bottom:998.025000px;}
.yf4{bottom:998.325000px;}
.y44f{bottom:1000.125000px;}
.y35a{bottom:1004.625000px;}
.y393{bottom:1008.825000px;}
.y292{bottom:1010.925000px;}
.y12f{bottom:1012.125000px;}
.ybb{bottom:1013.925000px;}
.y19b{bottom:1014.525000px;}
.y496{bottom:1014.825000px;}
.y249{bottom:1017.825000px;}
.y8d{bottom:1018.725000px;}
.y358{bottom:1021.755000px;}
.y75{bottom:1023.570000px;}
.ya2{bottom:1024.455000px;}
.y44{bottom:1025.670000px;}
.y392{bottom:1025.955000px;}
.yf3{bottom:1026.855000px;}
.y2b6{bottom:1027.455000px;}
.y44e{bottom:1028.670000px;}
.y7{bottom:1028.955000px;}
.y60{bottom:1032.870000px;}
.y17d{bottom:1035.255000px;}
.y32e{bottom:1035.570000px;}
.y356{bottom:1038.855000px;}
.yba{bottom:1042.455000px;}
.y391{bottom:1042.755000px;}
.y12e{bottom:1043.355000px;}
.y248{bottom:1046.370000px;}
.y8c{bottom:1047.255000px;}
.y74{bottom:1052.070000px;}
.ya1{bottom:1054.170000px;}
.yf2{bottom:1055.355000px;}
.y19a{bottom:1055.955000px;}
.y354{bottom:1056.555000px;}
.y6{bottom:1056.870000px;}
.y44d{bottom:1057.155000px;}
.y3df{bottom:1059.855000px;}
.y2b5{bottom:1060.155000px;}
.y390{bottom:1060.755000px;}
.y43{bottom:1061.670000px;}
.y2fe{bottom:1066.170000px;}
.y5f{bottom:1068.855000px;}
.y32d{bottom:1069.755000px;}
.yb9{bottom:1070.955000px;}
.y352{bottom:1073.655000px;}
.y270{bottom:1074.870000px;}
.y8b{bottom:1075.755000px;}
.y38f{bottom:1077.555000px;}
.y73{bottom:1081.755000px;}
.yf1{bottom:1083.870000px;}
.y5{bottom:1084.755000px;}
.y26{bottom:1090.155000px;}
.y350{bottom:1091.355000px;}
.y38e{bottom:1094.655000px;}
.y44c{bottom:1094.670000px;}
.y3c4{bottom:1095.570000px;}
.y42{bottom:1097.655000px;}
.yb8{bottom:1099.455000px;}
.y2fd{bottom:1100.370000px;}
.y8a{bottom:1104.255000px;}
.y5e{bottom:1104.870000px;}
.y32c{bottom:1109.955000px;}
.y38d{bottom:1112.355000px;}
.yf0{bottom:1112.370000px;}
.y4{bottom:1112.655000px;}
.y44b{bottom:1118.070000px;}
.y41{bottom:1121.070000px;}
.y89{bottom:1133.955000px;}
.y25{bottom:1136.655000px;}
.y3c2{bottom:1139.355000px;}
.y34f{bottom:1139.370000px;}
.y3{bottom:1140.870000px;}
.y32b{bottom:1143.855000px;}
.y1{bottom:1225.800000px;}
.h51{height:14.385000px;}
.h4f{height:14.400000px;}
.h52{height:14.437500px;}
.h4d{height:14.700000px;}
.h50{height:14.737500px;}
.h65{height:15.300000px;}
.h6d{height:15.337500px;}
.h6c{height:15.585000px;}
.h64{height:15.600000px;}
.h68{height:15.637500px;}
.h53{height:16.200000px;}
.h2c{height:16.485000px;}
.h2d{height:16.500000px;}
.h2a{height:16.522500px;}
.h2e{height:16.537500px;}
.h3f{height:16.785000px;}
.h43{height:16.800000px;}
.h42{height:16.837500px;}
.h5e{height:17.085000px;}
.h41{height:17.100000px;}
.h5d{height:17.122500px;}
.h44{height:17.137500px;}
.h14{height:20.685000px;}
.h11{height:20.700000px;}
.h13{height:20.722500px;}
.h17{height:20.737500px;}
.h3a{height:21.000000px;}
.h59{height:21.285000px;}
.h3b{height:21.300000px;}
.h58{height:21.322500px;}
.h3d{height:21.337500px;}
.h49{height:22.800000px;}
.h30{height:24.900000px;}
.h1c{height:27.300000px;}
.h20{height:27.337500px;}
.h5f{height:27.600000px;}
.h34{height:29.100000px;}
.h35{height:29.137500px;}
.h4a{height:29.385000px;}
.h37{height:29.400000px;}
.h2f{height:30.300000px;}
.h6a{height:30.900000px;}
.h67{height:31.200000px;}
.h69{height:31.237500px;}
.h55{height:32.700000px;}
.h27{height:33.000000px;}
.h24{height:33.037500px;}
.h40{height:33.328125px;}
.h12{height:35.414062px;}
.h19{height:36.093750px;}
.h56{height:37.200000px;}
.h54{height:37.500000px;}
.h46{height:38.625000px;}
.h38{height:40.200000px;}
.he{height:41.400000px;}
.h10{height:41.437500px;}
.h45{height:41.484375px;}
.h4b{height:41.601562px;}
.h4e{height:41.671875px;}
.hf{height:43.054688px;}
.h60{height:43.785000px;}
.h5b{height:43.800000px;}
.h5c{height:44.100000px;}
.h4c{height:44.137500px;}
.h63{height:44.721680px;}
.h66{height:44.797266px;}
.h15{height:44.849180px;}
.h16{height:44.909180px;}
.h1f{height:45.600000px;}
.h48{height:45.637500px;}
.h2b{height:46.669922px;}
.h25{height:46.801758px;}
.h28{height:46.880859px;}
.h62{height:47.437500px;}
.h6b{height:47.685000px;}
.h31{height:47.742188px;}
.h57{height:48.436523px;}
.hb{height:48.694336px;}
.h32{height:49.200000px;}
.h33{height:49.500000px;}
.h47{height:49.628906px;}
.h1e{height:51.855469px;}
.h1b{height:52.001953px;}
.h1d{height:52.089844px;}
.h3e{height:53.109375px;}
.h29{height:53.709961px;}
.h5{height:53.818359px;}
.h21{height:57.202148px;}
.h36{height:57.298828px;}
.h2{height:59.200195px;}
.h5a{height:60.960938px;}
.hd{height:61.672852px;}
.h18{height:62.100000px;}
.h9{height:62.402344px;}
.h6{height:64.582031px;}
.h39{height:65.645508px;}
.h26{height:66.000000px;}
.hc{height:66.041016px;}
.h3c{height:67.579102px;}
.h61{height:71.121094px;}
.h1a{height:72.937500px;}
.h7{height:75.345703px;}
.h4{height:80.727539px;}
.ha{height:86.109375px;}
.h3{height:112.792969px;}
.h8{height:134.545898px;}
.h22{height:893.100000px;}
.h23{height:893.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w19{width:1.800000px;}
.w72{width:10.800000px;}
.w71{width:11.100000px;}
.w76{width:11.137500px;}
.wa{width:12.300000px;}
.w91{width:12.900000px;}
.w4c{width:31.800000px;}
.w51{width:32.100000px;}
.w38{width:35.700000px;}
.w46{width:36.300000px;}
.w48{width:36.600000px;}
.w47{width:37.800000px;}
.w43{width:38.137500px;}
.w84{width:38.400000px;}
.w8d{width:38.700000px;}
.w94{width:39.300000px;}
.w82{width:41.437500px;}
.we{width:41.737500px;}
.w7c{width:42.000000px;}
.w50{width:42.600000px;}
.w45{width:42.637500px;}
.w9a{width:43.200000px;}
.w83{width:43.500000px;}
.w9b{width:43.800000px;}
.w99{width:44.137500px;}
.w42{width:47.100000px;}
.w14{width:48.000000px;}
.w6a{width:48.937500px;}
.wf{width:49.500000px;}
.w93{width:50.400000px;}
.w8e{width:50.437500px;}
.w88{width:51.000000px;}
.w6b{width:51.600000px;}
.w8c{width:52.200000px;}
.w7f{width:52.500000px;}
.w10{width:52.537500px;}
.w52{width:52.800000px;}
.w13{width:52.837500px;}
.w3e{width:53.100000px;}
.wc{width:53.137500px;}
.w8b{width:53.400000px;}
.w55{width:55.837500px;}
.w12{width:56.137500px;}
.w8a{width:56.437500px;}
.w7b{width:57.900000px;}
.w89{width:58.800000px;}
.w32{width:59.100000px;}
.w2f{width:59.400000px;}
.w9c{width:59.437500px;}
.w85{width:59.737500px;}
.w97{width:60.000000px;}
.w20{width:60.300000px;}
.w54{width:61.200000px;}
.w4d{width:61.837500px;}
.w11{width:62.700000px;}
.w65{width:63.300000px;}
.w5{width:63.600000px;}
.w7{width:63.637500px;}
.w8{width:63.900000px;}
.w6{width:63.937500px;}
.w56{width:64.237500px;}
.w5b{width:65.400000px;}
.w5a{width:65.437500px;}
.w31{width:66.337500px;}
.w5f{width:67.500000px;}
.w2e{width:68.437500px;}
.w6c{width:70.537500px;}
.w36{width:71.137500px;}
.w1f{width:71.437500px;}
.wd{width:72.900000px;}
.w66{width:73.237500px;}
.w44{width:74.400000px;}
.w41{width:74.437500px;}
.w21{width:74.737500px;}
.w22{width:75.000000px;}
.w3d{width:78.937500px;}
.w3f{width:80.737500px;}
.w73{width:81.337500px;}
.w78{width:81.600000px;}
.w4e{width:82.800000px;}
.w4a{width:84.937500px;}
.w7e{width:85.237500px;}
.w8f{width:86.100000px;}
.w86{width:86.400000px;}
.w77{width:86.437500px;}
.w7d{width:86.700000px;}
.w96{width:87.037500px;}
.w80{width:87.937500px;}
.w63{width:93.037500px;}
.w95{width:93.600000px;}
.w64{width:93.637500px;}
.w33{width:97.537500px;}
.w28{width:98.437500px;}
.w67{width:100.237500px;}
.w35{width:103.500000px;}
.w39{width:104.437500px;}
.w29{width:105.337500px;}
.w30{width:106.837500px;}
.w5e{width:108.637500px;}
.w60{width:112.537500px;}
.w69{width:116.737500px;}
.w37{width:125.137500px;}
.w40{width:127.500000px;}
.w26{width:128.137500px;}
.w27{width:130.537500px;}
.w59{width:131.437500px;}
.w23{width:131.737500px;}
.w5c{width:136.837500px;}
.w1c{width:138.300000px;}
.w1b{width:138.337500px;}
.w1e{width:148.537500px;}
.w1d{width:148.837500px;}
.w34{width:185.775000px;}
.w4{width:191.475000px;}
.w1a{width:202.245000px;}
.w25{width:206.475000px;}
.w70{width:209.175000px;}
.w4f{width:212.445000px;}
.w6d{width:212.475000px;}
.w3c{width:213.030000px;}
.w98{width:222.330000px;}
.w2d{width:222.975000px;}
.w81{width:228.030000px;}
.w75{width:231.675000px;}
.w2c{width:234.675000px;}
.w2b{width:238.875000px;}
.w61{width:241.275000px;}
.w58{width:244.875000px;}
.w6f{width:265.875000px;}
.w3{width:319.005000px;}
.w4b{width:351.075000px;}
.w3b{width:361.575000px;}
.wb{width:369.405000px;}
.w87{width:371.820000px;}
.w92{width:382.275000px;}
.w7a{width:384.420000px;}
.w53{width:414.720000px;}
.w6e{width:508.050000px;}
.w74{width:530.595000px;}
.w24{width:662.625000px;}
.w62{width:676.125000px;}
.w2a{width:696.525000px;}
.w9{width:701.925000px;}
.w5d{width:707.925000px;}
.w68{width:713.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.w49{width:914.580000px;}
.w3a{width:989.325000px;}
.w18{width:1057.425000px;}
.w90{width:1072.425000px;}
.w79{width:1077.570000px;}
.w57{width:1209.900000px;}
.w17{width:1262.699981px;}
.w15{width:1262.700000px;}
.w16{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:1.200000px;}
.x35{left:4.200000px;}
.xf{left:5.400000px;}
.x6{left:8.100000px;}
.x4c{left:10.200000px;}
.x9{left:11.700000px;}
.xa{left:14.085000px;}
.x87{left:17.700000px;}
.x19{left:21.600000px;}
.x61{left:24.900000px;}
.x41{left:29.392500px;}
.xb{left:31.500000px;}
.x34{left:42.600000px;}
.x4d{left:52.800000px;}
.x88{left:55.800000px;}
.x6d{left:74.700000px;}
.x1b{left:84.937500px;}
.x5{left:95.737500px;}
.x29{left:101.137500px;}
.x1{left:106.237487px;}
.x55{left:108.637500px;}
.x36{left:127.537500px;}
.x4{left:133.237487px;}
.x89{left:148.837487px;}
.x2{left:159.344987px;}
.x1a{left:170.129981px;}
.x3{left:201.974987px;}
.x58{left:204.075000px;}
.x56{left:209.175000px;}
.x66{left:234.075000px;}
.x5c{left:255.075000px;}
.x7{left:287.220000px;}
.x4e{left:297.675000px;}
.x59{left:300.120000px;}
.x25{left:312.720000px;}
.x67{left:315.420000px;}
.x57{left:320.220000px;}
.x68{left:326.520000px;}
.x69{left:337.320000px;}
.x2a{left:340.020000px;}
.x8{left:350.820000px;}
.x5a{left:365.520000px;}
.x5d{left:371.820000px;}
.x30{left:390.405000px;}
.x2c{left:408.450000px;}
.x5e{left:420.750000px;}
.x1e{left:425.220000px;}
.x4f{left:436.020000px;}
.x26{left:440.850000px;}
.x78{left:446.520000px;}
.x6b{left:458.550000px;}
.x31{left:461.550000px;}
.x2d{left:467.850000px;}
.x5f{left:472.350000px;}
.x11{left:475.650000px;}
.x42{left:478.620000px;}
.x37{left:489.120000px;}
.x79{left:497.520000px;}
.x65{left:499.950000px;}
.xc{left:502.350000px;}
.x49{left:510.450000px;}
.x6e{left:517.020000px;}
.x7f{left:518.220000px;}
.x6c{left:522.195000px;}
.x43{left:525.720000px;}
.x12{left:528.780000px;}
.x3d{left:536.520000px;}
.x5b{left:543.495000px;}
.x7a{left:556.320000px;}
.x44{left:557.520000px;}
.x6f{left:559.020000px;}
.x1f{left:563.520000px;}
.x27{left:571.395000px;}
.x2b{left:574.695000px;}
.x62{left:581.280000px;}
.x50{left:584.850000px;}
.x32{left:586.695000px;}
.x63{left:592.395000px;}
.x13{left:601.695000px;}
.x64{left:603.195000px;}
.x60{left:606.780000px;}
.x80{left:610.650000px;}
.x70{left:612.150000px;}
.x6a{left:614.895000px;}
.x45{left:619.350000px;}
.x33{left:622.395000px;}
.x4a{left:624.780000px;}
.x3e{left:627.750000px;}
.x2e{left:641.025000px;}
.x14{left:643.425000px;}
.x16{left:657.825000px;}
.x28{left:670.125000px;}
.x4b{left:680.625000px;}
.xd{left:693.825000px;}
.x71{left:698.850000px;}
.x2f{left:700.125000px;}
.x38{left:702.150000px;}
.x81{left:704.250000px;}
.x17{left:707.325000px;}
.x20{left:712.350000px;}
.x74{left:740.280000px;}
.x15{left:745.470000px;}
.x84{left:748.395000px;}
.xe{left:757.470000px;}
.x18{left:760.155000px;}
.x46{left:776.595000px;}
.x39{left:781.095000px;}
.x72{left:784.095000px;}
.x82{left:791.595000px;}
.x10{left:808.170000px;}
.x3a{left:834.195000px;}
.x47{left:835.995000px;}
.x7b{left:837.495000px;}
.x51{left:850.695000px;}
.x21{left:860.880000px;}
.x3b{left:914.925000px;}
.x52{left:916.125000px;}
.x73{left:924.525000px;}
.x22{left:932.325000px;}
.x83{left:950.025000px;}
.x3f{left:952.725000px;}
.x48{left:957.225000px;}
.x75{left:967.725000px;}
.x7c{left:977.625000px;}
.x53{left:981.525000px;}
.x40{left:989.325000px;}
.x23{left:992.625000px;}
.x76{left:1006.125000px;}
.x7d{left:1016.325000px;}
.x85{left:1030.125000px;}
.x3c{left:1042.425000px;}
.x77{left:1065.870000px;}
.x24{left:1067.070000px;}
.x86{left:1089.570000px;}
.x54{left:1118.370000px;}
.x1c{left:1142.370000px;}
.x7e{left:1157.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.946667pt;}
.v1{vertical-align:21.333333pt;}
.ls10{letter-spacing:-1.376000pt;}
.ls3c{letter-spacing:-1.104000pt;}
.ls3f{letter-spacing:-0.757333pt;}
.ls40{letter-spacing:-0.730667pt;}
.ls8{letter-spacing:-0.618667pt;}
.ls2e{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.490667pt;}
.ls2c{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.360533pt;}
.ls3{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.336000pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.317867pt;}
.ls5{letter-spacing:-0.309333pt;}
.ls24{letter-spacing:-0.261333pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.224000pt;}
.ls1d{letter-spacing:-0.197333pt;}
.ls34{letter-spacing:-0.170667pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.122667pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls35{letter-spacing:0.138667pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.197333pt;}
.ls1{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.224000pt;}
.ls3a{letter-spacing:0.229333pt;}
.ls37{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.289067pt;}
.ls31{letter-spacing:0.298667pt;}
.ls2d{letter-spacing:0.309333pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.336000pt;}
.ls38{letter-spacing:0.342400pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.394667pt;}
.ls7{letter-spacing:0.410667pt;}
.ls18{letter-spacing:0.421333pt;}
.ls30{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.474667pt;}
.ls29{letter-spacing:0.496000pt;}
.ls27{letter-spacing:0.501333pt;}
.ls15{letter-spacing:0.517333pt;}
.lsf{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.608000pt;}
.ls11{letter-spacing:0.757333pt;}
.lsd{letter-spacing:9.450667pt;}
.ls14{letter-spacing:11.424000pt;}
.lsb{letter-spacing:14.624000pt;}
.ls36{letter-spacing:750.501333pt;}
.ls4{letter-spacing:751.984000pt;}
.ls33{letter-spacing:754.949333pt;}
.wsb{word-spacing:-58.666667pt;}
.ws22{word-spacing:-42.666667pt;}
.ws26{word-spacing:-37.066667pt;}
.ws9{word-spacing:-23.722667pt;}
.ws0{word-spacing:-22.240000pt;}
.ws2{word-spacing:-17.450667pt;}
.ws24{word-spacing:-16.842667pt;}
.ws6{word-spacing:-16.757333pt;}
.wsd{word-spacing:-16.720000pt;}
.ws23{word-spacing:-16.618667pt;}
.wsa{word-spacing:-16.506667pt;}
.ws5{word-spacing:-16.309333pt;}
.ws8{word-spacing:-16.085333pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.973333pt;}
.ws25{word-spacing:-15.776000pt;}
.wse{word-spacing:-15.770667pt;}
.ws7{word-spacing:-15.690667pt;}
.ws30{word-spacing:-15.578667pt;}
.ws2f{word-spacing:-15.552000pt;}
.ws1{word-spacing:-15.040000pt;}
.ws1e{word-spacing:-13.381333pt;}
.ws1d{word-spacing:-12.997333pt;}
.ws1b{word-spacing:-11.909333pt;}
.ws11{word-spacing:-11.861333pt;}
.ws1c{word-spacing:-11.765333pt;}
.ws10{word-spacing:-11.605333pt;}
.ws14{word-spacing:-11.146667pt;}
.ws18{word-spacing:-11.045333pt;}
.ws1a{word-spacing:-10.992000pt;}
.ws13{word-spacing:-10.933333pt;}
.ws19{word-spacing:-10.848000pt;}
.ws27{word-spacing:-10.826667pt;}
.wsf{word-spacing:-9.888000pt;}
.ws15{word-spacing:-9.744000pt;}
.ws17{word-spacing:-9.712000pt;}
.ws20{word-spacing:-9.642667pt;}
.ws16{word-spacing:-9.546667pt;}
.ws2c{word-spacing:-9.310933pt;}
.ws21{word-spacing:-9.258667pt;}
.ws2e{word-spacing:-8.993067pt;}
.ws29{word-spacing:-8.960000pt;}
.ws2b{word-spacing:-8.950400pt;}
.ws1f{word-spacing:-8.661333pt;}
.ws28{word-spacing:-8.277333pt;}
.ws2a{word-spacing:-8.234667pt;}
.ws2d{word-spacing:-8.206933pt;}
.ws12{word-spacing:-7.946667pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-14.970667pt;}
._6{margin-left:-13.989333pt;}
._8{margin-left:-12.485333pt;}
._7{margin-left:-10.640000pt;}
._a{margin-left:-8.656000pt;}
._4{margin-left:-7.562667pt;}
._3{margin-left:-6.490667pt;}
._9{margin-left:-5.210667pt;}
._21{margin-left:-3.872000pt;}
._5{margin-left:-2.704000pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.066667pt;}
._10{width:2.229333pt;}
._d{width:3.461333pt;}
._c{width:4.517333pt;}
._13{width:5.712000pt;}
._e{width:6.922667pt;}
._f{width:7.914667pt;}
._20{width:9.152000pt;}
._16{width:10.090667pt;}
._17{width:11.077333pt;}
._18{width:12.789333pt;}
._14{width:14.021333pt;}
._15{width:15.418667pt;}
._11{width:17.530667pt;}
._12{width:19.173333pt;}
._2a{width:20.650667pt;}
._1e{width:22.304000pt;}
._1c{width:23.904000pt;}
._19{width:24.805333pt;}
._1a{width:25.696000pt;}
._2b{width:26.800000pt;}
._2c{width:27.994667pt;}
._2f{width:29.002667pt;}
._2e{width:29.920000pt;}
._26{width:35.093333pt;}
._25{width:36.138667pt;}
._1f{width:37.488000pt;}
._1b{width:40.469333pt;}
._22{width:41.818667pt;}
._23{width:42.826667pt;}
._24{width:44.586667pt;}
._29{width:52.730667pt;}
._28{width:72.032000pt;}
._27{width:72.922667pt;}
._2d{width:74.410667pt;}
._31{width:77.797333pt;}
._1d{width:746.053333pt;}
._2{width:751.984000pt;}
._30{width:756.432000pt;}
.fsa{font-size:26.666667pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:45.866667pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y3a8{bottom:2.400000pt;}
.y21e{bottom:2.933333pt;}
.y2d9{bottom:2.946667pt;}
.y237{bottom:2.960000pt;}
.y2f6{bottom:2.966667pt;}
.y2d0{bottom:2.973333pt;}
.y1d3{bottom:3.200000pt;}
.y435{bottom:3.213333pt;}
.y437{bottom:3.240000pt;}
.y309{bottom:3.453333pt;}
.y1cb{bottom:3.466667pt;}
.y312{bottom:3.480000pt;}
.y319{bottom:3.506667pt;}
.y2cb{bottom:3.733333pt;}
.y201{bottom:4.000000pt;}
.y204{bottom:4.266667pt;}
.y209{bottom:4.280000pt;}
.y207{bottom:4.533333pt;}
.y20b{bottom:4.546667pt;}
.y379{bottom:4.786667pt;}
.y222{bottom:4.800000pt;}
.y376{bottom:4.813333pt;}
.y367{bottom:5.053333pt;}
.y389{bottom:5.060000pt;}
.y224{bottom:5.066667pt;}
.y22f{bottom:5.080000pt;}
.y39c{bottom:5.093333pt;}
.y386{bottom:5.106667pt;}
.y326{bottom:5.333333pt;}
.y3c3{bottom:5.346667pt;}
.y335{bottom:5.586667pt;}
.y332{bottom:5.600000pt;}
.y310{bottom:5.613333pt;}
.y343{bottom:5.640000pt;}
.y31d{bottom:7.186667pt;}
.y305{bottom:7.200000pt;}
.y321{bottom:7.453333pt;}
.y303{bottom:7.466667pt;}
.y189{bottom:8.253333pt;}
.y182{bottom:8.266667pt;}
.y17f{bottom:8.280000pt;}
.y19c{bottom:8.293333pt;}
.y206{bottom:9.333333pt;}
.y203{bottom:9.346667pt;}
.y401{bottom:10.133333pt;}
.y1e6{bottom:10.666667pt;}
.y1e5{bottom:10.933333pt;}
.y31a{bottom:10.973333pt;}
.y2bc{bottom:11.720000pt;}
.y2c8{bottom:11.726667pt;}
.y1b7{bottom:11.733333pt;}
.y2c6{bottom:11.746667pt;}
.y1b4{bottom:11.760000pt;}
.y1b6{bottom:12.000000pt;}
.y1f4{bottom:12.040000pt;}
.y1f1{bottom:12.266667pt;}
.y1d8{bottom:12.800000pt;}
.y1d7{bottom:13.066667pt;}
.y407{bottom:13.866667pt;}
.y41a{bottom:13.906667pt;}
.y30c{bottom:14.666667pt;}
.y3c0{bottom:14.926667pt;}
.y353{bottom:14.933333pt;}
.y357{bottom:14.946667pt;}
.y3a5{bottom:14.973333pt;}
.y368{bottom:15.186667pt;}
.y38a{bottom:15.193333pt;}
.y355{bottom:15.200000pt;}
.y3f7{bottom:15.206667pt;}
.y359{bottom:15.213333pt;}
.y35b{bottom:15.226667pt;}
.y363{bottom:15.240000pt;}
.y1df{bottom:15.466667pt;}
.y3c6{bottom:15.720000pt;}
.y1de{bottom:15.733333pt;}
.y21d{bottom:16.000000pt;}
.y2cf{bottom:16.040000pt;}
.y400{bottom:17.066667pt;}
.y421{bottom:17.100000pt;}
.y446{bottom:17.106667pt;}
.y1d1{bottom:17.866667pt;}
.y1e8{bottom:17.906667pt;}
.y30d{bottom:18.120000pt;}
.y1cf{bottom:18.133333pt;}
.y2ff{bottom:18.160000pt;}
.y1ca{bottom:18.173333pt;}
.y2be{bottom:19.760000pt;}
.y1bc{bottom:20.000000pt;}
.y1c0{bottom:20.006667pt;}
.y30f{bottom:20.280000pt;}
.y1ef{bottom:21.080000pt;}
.y200{bottom:21.866667pt;}
.y3a9{bottom:24.533333pt;}
.y17e{bottom:26.666667pt;}
.y181{bottom:26.693333pt;}
.y1bf{bottom:27.993333pt;}
.y1bb{bottom:28.000000pt;}
.y2bf{bottom:28.026667pt;}
.y3c5{bottom:28.786667pt;}
.y372{bottom:28.800000pt;}
.y3ab{bottom:29.066667pt;}
.y351{bottom:29.080000pt;}
.y2ce{bottom:29.106667pt;}
.y2{bottom:29.600000pt;}
.y1c6{bottom:29.866667pt;}
.y1f0{bottom:30.133333pt;}
.y425{bottom:31.733333pt;}
.y3fc{bottom:31.773333pt;}
.y1ce{bottom:32.800000pt;}
.y1b3{bottom:36.026667pt;}
.y199{bottom:45.053333pt;}
.y1cd{bottom:47.466667pt;}
.y1b2{bottom:52.306667pt;}
.y2fc{bottom:56.300000pt;}
.y2fb{bottom:66.966667pt;}
.y247{bottom:68.566667pt;}
.y2fa{bottom:80.033333pt;}
.y423{bottom:82.166667pt;}
.y246{bottom:83.500000pt;}
.y2f9{bottom:93.100000pt;}
.y3c1{bottom:94.433333pt;}
.y422{bottom:96.833333pt;}
.y111{bottom:97.900000pt;}
.y245{bottom:98.433333pt;}
.y1c1{bottom:100.033333pt;}
.y1fd{bottom:100.566667pt;}
.y38c{bottom:100.833333pt;}
.y15b{bottom:101.900000pt;}
.y2c9{bottom:104.300000pt;}
.y146{bottom:104.833333pt;}
.y2f8{bottom:106.166667pt;}
.y4b8{bottom:106.433333pt;}
.y4b9{bottom:106.966667pt;}
.y26f{bottom:109.366667pt;}
.yef{bottom:110.166667pt;}
.y25b{bottom:112.300000pt;}
.y169{bottom:113.100000pt;}
.y244{bottom:113.633333pt;}
.y3f8{bottom:113.900000pt;}
.y12d{bottom:114.166667pt;}
.y1fc{bottom:114.966667pt;}
.y38b{bottom:115.233333pt;}
.y1be{bottom:115.766667pt;}
.y5d{bottom:118.966667pt;}
.y2f7{bottom:119.233333pt;}
.y3bf{bottom:119.766667pt;}
.y286{bottom:120.566667pt;}
.y291{bottom:122.433333pt;}
.y110{bottom:123.233333pt;}
.y2c7{bottom:123.766667pt;}
.y420{bottom:124.300000pt;}
.y15a{bottom:127.233333pt;}
.y243{bottom:128.566667pt;}
.y3f6{bottom:129.100000pt;}
.y4ab{bottom:129.633333pt;}
.y145{bottom:130.166667pt;}
.yd5{bottom:130.433333pt;}
.y2a6{bottom:131.766667pt;}
.y2f5{bottom:132.300000pt;}
.y3de{bottom:133.893333pt;}
.y26e{bottom:134.693333pt;}
.yee{bottom:135.493333pt;}
.y219{bottom:136.826667pt;}
.y25a{bottom:137.626667pt;}
.y168{bottom:138.440000pt;}
.y1ec{bottom:138.466667pt;}
.y242{bottom:139.266667pt;}
.y12c{bottom:139.493333pt;}
.y1fb{bottom:141.093333pt;}
.y3f5{bottom:144.293333pt;}
.y2f4{bottom:145.133333pt;}
.y44a{bottom:145.400000pt;}
.y388{bottom:145.626667pt;}
.y285{bottom:146.960000pt;}
.y290{bottom:147.773333pt;}
.y2c5{bottom:148.026667pt;}
.y10f{bottom:148.560000pt;}
.y3dd{bottom:149.093333pt;}
.y1eb{bottom:149.400000pt;}
.y3be{bottom:149.893333pt;}
.y5c{bottom:150.973333pt;}
.y41f{bottom:152.066667pt;}
.y159{bottom:152.560000pt;}
.y241{bottom:154.466667pt;}
.y218{bottom:154.693333pt;}
.y4aa{bottom:154.960000pt;}
.y144{bottom:155.493333pt;}
.y1bd{bottom:156.293333pt;}
.y4b7{bottom:157.106667pt;}
.y47c{bottom:157.626667pt;}
.y2f3{bottom:158.200000pt;}
.y3f4{bottom:159.226667pt;}
.y449{bottom:159.800000pt;}
.y26d{bottom:160.040000pt;}
.y387{bottom:160.560000pt;}
.yed{bottom:160.826667pt;}
.y259{bottom:162.973333pt;}
.y167{bottom:163.773333pt;}
.y3dc{bottom:164.293333pt;}
.y12b{bottom:164.560000pt;}
.y1ea{bottom:164.866667pt;}
.y2a5{bottom:165.093333pt;}
.y48e{bottom:165.640000pt;}
.y41e{bottom:165.933333pt;}
.y1fa{bottom:166.960000pt;}
.yd4{bottom:167.226667pt;}
.y32a{bottom:168.306667pt;}
.y240{bottom:169.666667pt;}
.y2f2{bottom:171.266667pt;}
.y284{bottom:172.293333pt;}
.y217{bottom:172.840000pt;}
.y28f{bottom:173.106667pt;}
.y448{bottom:173.666667pt;}
.y3f3{bottom:174.426667pt;}
.y10e{bottom:174.973333pt;}
.y385{bottom:175.760000pt;}
.y495{bottom:177.640000pt;}
.y158{bottom:177.893333pt;}
.y3db{bottom:179.533333pt;}
.y41d{bottom:179.800000pt;}
.y3bd{bottom:180.333333pt;}
.y1ba{bottom:180.600000pt;}
.y143{bottom:180.866667pt;}
.y5b{bottom:183.000000pt;}
.y2f1{bottom:184.333333pt;}
.y23f{bottom:184.600000pt;}
.y26c{bottom:185.400000pt;}
.yec{bottom:186.200000pt;}
.y258{bottom:188.333333pt;}
.y2c4{bottom:188.600000pt;}
.y166{bottom:189.133333pt;}
.y3f2{bottom:189.666667pt;}
.y12a{bottom:189.933333pt;}
.y2a4{bottom:190.200000pt;}
.y4b6{bottom:190.466667pt;}
.y216{bottom:190.733333pt;}
.y384{bottom:191.000000pt;}
.y466{bottom:192.600000pt;}
.y1f9{bottom:192.866667pt;}
.y41c{bottom:193.666667pt;}
.y3da{bottom:194.466667pt;}
.y1e9{bottom:195.266667pt;}
.y2f0{bottom:197.400000pt;}
.y283{bottom:197.666667pt;}
.y28e{bottom:198.200000pt;}
.y329{bottom:198.466667pt;}
.y24{bottom:199.800000pt;}
.y447{bottom:201.400000pt;}
.y494{bottom:203.000000pt;}
.yd3{bottom:204.333333pt;}
.y3f1{bottom:204.866667pt;}
.y215{bottom:205.133333pt;}
.y157{bottom:205.666667pt;}
.y142{bottom:206.200000pt;}
.y41b{bottom:207.533333pt;}
.y47b{bottom:208.333333pt;}
.y3d9{bottom:209.666667pt;}
.y26b{bottom:210.466667pt;}
.yeb{bottom:212.333333pt;}
.y2c3{bottom:212.866667pt;}
.y328{bottom:213.400000pt;}
.y257{bottom:213.666667pt;}
.y10d{bottom:214.200000pt;}
.y5a{bottom:215.000000pt;}
.y129{bottom:215.266667pt;}
.y2a3{bottom:215.533333pt;}
.y4b5{bottom:215.800000pt;}
.y487{bottom:216.333333pt;}
.y23{bottom:217.933333pt;}
.y1f8{bottom:218.733333pt;}
.y34e{bottom:219.000000pt;}
.y3f0{bottom:219.800000pt;}
.y1b9{bottom:221.133333pt;}
.y419{bottom:221.400000pt;}
.y282{bottom:222.733333pt;}
.y2ef{bottom:223.266667pt;}
.y214{bottom:224.066667pt;}
.y3d8{bottom:224.866667pt;}
.y1e7{bottom:225.666667pt;}
.y465{bottom:225.933333pt;}
.y40{bottom:227.266667pt;}
.y493{bottom:228.066667pt;}
.y445{bottom:228.866667pt;}
.y23e{bottom:230.200000pt;}
.y141{bottom:231.533333pt;}
.y325{bottom:232.066667pt;}
.y22{bottom:235.000000pt;}
.y26a{bottom:235.800000pt;}
.y418{bottom:235.840000pt;}
.y383{bottom:236.333333pt;}
.y2ee{bottom:236.373333pt;}
.y2c2{bottom:237.133333pt;}
.y34d{bottom:237.933333pt;}
.y256{bottom:238.733333pt;}
.y10c{bottom:239.533333pt;}
.y3d7{bottom:240.066667pt;}
.y128{bottom:240.600000pt;}
.y2a2{bottom:240.866667pt;}
.yd2{bottom:241.133333pt;}
.y47a{bottom:241.400000pt;}
.y156{bottom:241.666667pt;}
.y213{bottom:243.000000pt;}
.y1f7{bottom:244.600000pt;}
.y23d{bottom:245.173333pt;}
.y3f{bottom:245.400000pt;}
.y59{bottom:247.000000pt;}
.y281{bottom:248.066667pt;}
.y48d{bottom:249.400000pt;}
.y2ed{bottom:249.440000pt;}
.y417{bottom:249.706667pt;}
.y3ef{bottom:250.200000pt;}
.y327{bottom:250.466667pt;}
.y464{bottom:251.000000pt;}
.y382{bottom:251.533333pt;}
.y21{bottom:251.800000pt;}
.y3d6{bottom:255.000000pt;}
.y3bc{bottom:255.800000pt;}
.y1e4{bottom:255.840000pt;}
.y34c{bottom:256.600000pt;}
.y444{bottom:256.640000pt;}
.y140{bottom:256.866667pt;}
.y23c{bottom:260.373333pt;}
.y269{bottom:261.133333pt;}
.y2c1{bottom:261.400000pt;}
.y212{bottom:261.933333pt;}
.y3e{bottom:262.200000pt;}
.y2ec{bottom:262.506667pt;}
.y416{bottom:263.573333pt;}
.y255{bottom:264.066667pt;}
.y10b{bottom:264.866667pt;}
.y3ee{bottom:265.400000pt;}
.y2a1{bottom:266.200000pt;}
.y381{bottom:266.733333pt;}
.y155{bottom:267.000000pt;}
.y127{bottom:268.333333pt;}
.y20{bottom:268.600000pt;}
.y324{bottom:269.133333pt;}
.y1b8{bottom:269.666667pt;}
.y3d5{bottom:270.200000pt;}
.y1f6{bottom:270.466667pt;}
.y443{bottom:270.506667pt;}
.y3bb{bottom:271.000000pt;}
.y4a9{bottom:272.066667pt;}
.y280{bottom:273.400000pt;}
.y48c{bottom:274.733333pt;}
.y34b{bottom:275.266667pt;}
.y23b{bottom:275.573333pt;}
.y463{bottom:276.333333pt;}
.yea{bottom:277.133333pt;}
.y415{bottom:277.440000pt;}
.yd1{bottom:277.933333pt;}
.y58{bottom:279.000000pt;}
.y1e3{bottom:279.040000pt;}
.y3d{bottom:279.266667pt;}
.y3ed{bottom:280.333333pt;}
.y211{bottom:280.600000pt;}
.y380{bottom:281.666667pt;}
.y13f{bottom:282.200000pt;}
.y442{bottom:284.906667pt;}
.y1f{bottom:285.400000pt;}
.y2c0{bottom:285.666667pt;}
.y3ba{bottom:286.200000pt;}
.y492{bottom:286.733333pt;}
.y2eb{bottom:288.640000pt;}
.y254{bottom:289.400000pt;}
.y10a{bottom:290.200000pt;}
.y23a{bottom:290.773333pt;}
.y414{bottom:291.306667pt;}
.y479{bottom:292.066667pt;}
.y154{bottom:292.333333pt;}
.y268{bottom:294.466667pt;}
.y1e2{bottom:294.506667pt;}
.y1b5{bottom:294.733333pt;}
.y3ec{bottom:295.533333pt;}
.y3c{bottom:296.066667pt;}
.y1f5{bottom:296.333333pt;}
.y37f{bottom:296.866667pt;}
.y4a8{bottom:297.400000pt;}
.y27f{bottom:298.733333pt;}
.y441{bottom:298.773333pt;}
.y210{bottom:299.533333pt;}
.y48b{bottom:300.066667pt;}
.y3d4{bottom:300.600000pt;}
.y3b9{bottom:301.400000pt;}
.y2ea{bottom:301.440000pt;}
.ye9{bottom:302.466667pt;}
.y34a{bottom:303.000000pt;}
.y1e{bottom:303.266667pt;}
.y126{bottom:304.333333pt;}
.y413{bottom:304.906667pt;}
.y21b{bottom:305.400000pt;}
.y239{bottom:305.706667pt;}
.y13e{bottom:307.266667pt;}
.y28d{bottom:307.533333pt;}
.y462{bottom:309.666667pt;}
.y1e1{bottom:310.240000pt;}
.y2bd{bottom:310.733333pt;}
.y57{bottom:311.000000pt;}
.y37e{bottom:312.066667pt;}
.y440{bottom:312.640000pt;}
.y3b{bottom:312.866667pt;}
.y2e9{bottom:314.506667pt;}
.y17c{bottom:314.733333pt;}
.y109{bottom:315.533333pt;}
.y3b8{bottom:316.333333pt;}
.y153{bottom:317.666667pt;}
.y20f{bottom:318.466667pt;}
.y412{bottom:318.773333pt;}
.y139{bottom:319.533333pt;}
.y267{bottom:319.800000pt;}
.y323{bottom:321.133333pt;}
.y238{bottom:321.706667pt;}
.y1f3{bottom:322.466667pt;}
.y4a7{bottom:322.733333pt;}
.y1d{bottom:323.533333pt;}
.y27e{bottom:324.066667pt;}
.y2a0{bottom:324.893333pt;}
.y478{bottom:325.440000pt;}
.y3eb{bottom:325.960000pt;}
.y43f{bottom:326.506667pt;}
.y37d{bottom:327.293333pt;}
.y2e8{bottom:327.573333pt;}
.ye8{bottom:327.840000pt;}
.y125{bottom:329.693333pt;}
.y3d3{bottom:330.760000pt;}
.y3a{bottom:330.773333pt;}
.y3b7{bottom:331.560000pt;}
.y72{bottom:332.360000pt;}
.y13d{bottom:332.626667pt;}
.y411{bottom:332.640000pt;}
.y28c{bottom:332.893333pt;}
.y48a{bottom:333.440000pt;}
.y461{bottom:335.026667pt;}
.yd0{bottom:336.640000pt;}
.y20e{bottom:337.426667pt;}
.y322{bottom:339.840000pt;}
.y253{bottom:340.106667pt;}
.y43e{bottom:340.400000pt;}
.y1e0{bottom:340.666667pt;}
.y108{bottom:340.893333pt;}
.y165{bottom:341.960000pt;}
.y37c{bottom:342.226667pt;}
.y56{bottom:342.773333pt;}
.y152{bottom:343.040000pt;}
.y1c{bottom:343.840000pt;}
.y349{bottom:344.106667pt;}
.y266{bottom:345.160000pt;}
.y491{bottom:345.440000pt;}
.y3d2{bottom:345.960000pt;}
.yb7{bottom:345.973333pt;}
.y410{bottom:346.533333pt;}
.y3b6{bottom:346.760000pt;}
.y17b{bottom:348.093333pt;}
.y1f2{bottom:348.360000pt;}
.y27d{bottom:349.440000pt;}
.y29f{bottom:350.226667pt;}
.y477{bottom:350.760000pt;}
.y39{bottom:351.026667pt;}
.y2bb{bottom:351.840000pt;}
.y236{bottom:352.666667pt;}
.y138{bottom:352.893333pt;}
.ye7{bottom:353.173333pt;}
.y2e7{bottom:353.733333pt;}
.y43d{bottom:354.266667pt;}
.y124{bottom:355.026667pt;}
.y20d{bottom:356.093333pt;}
.y21a{bottom:356.106667pt;}
.y37b{bottom:357.426667pt;}
.y13c{bottom:357.960000pt;}
.y28b{bottom:358.226667pt;}
.y320{bottom:358.506667pt;}
.y489{bottom:358.760000pt;}
.y460{bottom:360.360000pt;}
.y40f{bottom:360.400000pt;}
.y3d1{bottom:361.173333pt;}
.y3b5{bottom:361.960000pt;}
.y1b{bottom:364.106667pt;}
.y71{bottom:364.893333pt;}
.y252{bottom:365.440000pt;}
.y107{bottom:366.226667pt;}
.y2e6{bottom:366.800000pt;}
.y55{bottom:368.106667pt;}
.y43c{bottom:368.133333pt;}
.ycf{bottom:369.960000pt;}
.y265{bottom:370.506667pt;}
.y490{bottom:370.760000pt;}
.y1dd{bottom:370.800000pt;}
.y38{bottom:371.293333pt;}
.y37a{bottom:372.626667pt;}
.y17a{bottom:373.440000pt;}
.y1ee{bottom:374.760000pt;}
.y27c{bottom:374.773333pt;}
.y40e{bottom:374.800000pt;}
.y20c{bottom:375.026667pt;}
.y29e{bottom:375.560000pt;}
.y3d0{bottom:376.093333pt;}
.y486{bottom:376.106667pt;}
.y3b4{bottom:376.893333pt;}
.y31f{bottom:377.173333pt;}
.y137{bottom:378.226667pt;}
.ye6{bottom:378.506667pt;}
.yb6{bottom:379.293333pt;}
.y2e5{bottom:379.600000pt;}
.ya0{bottom:379.840000pt;}
.y123{bottom:380.360000pt;}
.y164{bottom:381.440000pt;}
.y348{bottom:381.960000pt;}
.y43b{bottom:382.000000pt;}
.y1a{bottom:383.293333pt;}
.y28a{bottom:383.560000pt;}
.y235{bottom:383.600000pt;}
.y476{bottom:384.093333pt;}
.y198{bottom:385.173333pt;}
.y3ea{bottom:386.506667pt;}
.y378{bottom:387.840000pt;}
.y40d{bottom:388.666667pt;}
.y88{bottom:388.893333pt;}
.y251{bottom:390.773333pt;}
.y3cf{bottom:391.293333pt;}
.y37{bottom:391.560000pt;}
.y3b3{bottom:392.093333pt;}
.y2e4{bottom:392.666667pt;}
.y151{bottom:393.440000pt;}
.y347{bottom:393.693333pt;}
.y45f{bottom:393.706667pt;}
.y20a{bottom:393.960000pt;}
.yce{bottom:395.293333pt;}
.y43a{bottom:395.600000pt;}
.y264{bottom:395.840000pt;}
.y234{bottom:398.533333pt;}
.y179{bottom:398.773333pt;}
.y1dc{bottom:398.800000pt;}
.y54{bottom:400.106667pt;}
.y29d{bottom:400.626667pt;}
.y3e9{bottom:401.426667pt;}
.y70{bottom:401.440000pt;}
.y40c{bottom:402.533333pt;}
.y377{bottom:402.760000pt;}
.y19{bottom:403.560000pt;}
.ye5{bottom:403.840000pt;}
.yb5{bottom:404.360000pt;}
.y122{bottom:405.706667pt;}
.y2e3{bottom:405.733333pt;}
.y2ba{bottom:406.226667pt;}
.y3ce{bottom:406.506667pt;}
.y163{bottom:406.760000pt;}
.y3b2{bottom:407.293333pt;}
.y27b{bottom:408.093333pt;}
.y4b4{bottom:408.893333pt;}
.y475{bottom:409.440000pt;}
.y439{bottom:409.466667pt;}
.y31e{bottom:410.506667pt;}
.y36{bottom:410.773333pt;}
.y13b{bottom:411.026667pt;}
.y346{bottom:412.626667pt;}
.y208{bottom:412.893333pt;}
.y233{bottom:413.466667pt;}
.y1db{bottom:414.533333pt;}
.y250{bottom:416.106667pt;}
.y106{bottom:416.626667pt;}
.y9f{bottom:417.960000pt;}
.y150{bottom:418.760000pt;}
.y2e2{bottom:418.800000pt;}
.y45e{bottom:419.040000pt;}
.y1ed{bottom:419.293333pt;}
.ycd{bottom:420.360000pt;}
.y263{bottom:420.893333pt;}
.y3cd{bottom:421.693333pt;}
.y87{bottom:422.226667pt;}
.y3b1{bottom:422.506667pt;}
.y178{bottom:424.106667pt;}
.y438{bottom:424.133333pt;}
.y29c{bottom:425.960000pt;}
.y18{bottom:426.773333pt;}
.y232{bottom:428.666667pt;}
.ye4{bottom:428.893333pt;}
.y31c{bottom:429.173333pt;}
.yb4{bottom:429.706667pt;}
.y1da{bottom:430.000000pt;}
.y40b{bottom:430.266667pt;}
.y35{bottom:431.040000pt;}
.y345{bottom:431.560000pt;}
.y3e8{bottom:431.840000pt;}
.y2e1{bottom:431.866667pt;}
.y53{bottom:432.093333pt;}
.y205{bottom:432.360000pt;}
.y27a{bottom:433.173333pt;}
.y4b3{bottom:434.226667pt;}
.y485{bottom:434.773333pt;}
.y2b9{bottom:435.293333pt;}
.y3cc{bottom:436.626667pt;}
.y3b0{bottom:437.426667pt;}
.y436{bottom:438.000000pt;}
.y6f{bottom:438.506667pt;}
.y13a{bottom:440.093333pt;}
.y197{bottom:440.360000pt;}
.y24f{bottom:441.173333pt;}
.y1b1{bottom:441.693333pt;}
.y105{bottom:441.960000pt;}
.y474{bottom:442.760000pt;}
.y17{bottom:443.560000pt;}
.y231{bottom:443.640000pt;}
.y14f{bottom:444.093333pt;}
.y40a{bottom:444.173333pt;}
.y45d{bottom:444.360000pt;}
.y2e0{bottom:444.706667pt;}
.ycc{bottom:445.693333pt;}
.y1d9{bottom:445.773333pt;}
.y262{bottom:446.226667pt;}
.y3e7{bottom:447.026667pt;}
.y31b{bottom:447.826667pt;}
.y375{bottom:448.360000pt;}
.y177{bottom:449.160000pt;}
.y2b4{bottom:449.973333pt;}
.y344{bottom:450.226667pt;}
.y202{bottom:451.293333pt;}
.y9e{bottom:451.306667pt;}
.y434{bottom:451.626667pt;}
.y3cb{bottom:451.826667pt;}
.y3af{bottom:452.626667pt;}
.y34{bottom:453.960000pt;}
.ye3{bottom:454.226667pt;}
.yb3{bottom:455.026667pt;}
.y86{bottom:455.560000pt;}
.y121{bottom:456.093333pt;}
.y162{bottom:457.173333pt;}
.y2df{bottom:457.773333pt;}
.y409{bottom:458.040000pt;}
.y279{bottom:458.493333pt;}
.y230{bottom:458.573333pt;}
.y196{bottom:458.760000pt;}
.y4b2{bottom:459.560000pt;}
.y484{bottom:459.826667pt;}
.y1b0{bottom:460.093333pt;}
.y16{bottom:460.360000pt;}
.y3e6{bottom:461.960000pt;}
.y374{bottom:463.293333pt;}
.y52{bottom:464.093333pt;}
.y4a6{bottom:465.173333pt;}
.y433{bottom:465.506667pt;}
.y24e{bottom:466.506667pt;}
.y318{bottom:467.026667pt;}
.y104{bottom:467.293333pt;}
.y3ae{bottom:467.826667pt;}
.y473{bottom:467.840000pt;}
.y342{bottom:469.160000pt;}
.y22e{bottom:469.226667pt;}
.y14e{bottom:469.440000pt;}
.y6e{bottom:470.533333pt;}
.y1ff{bottom:470.800000pt;}
.y2de{bottom:470.840000pt;}
.y33{bottom:471.066667pt;}
.y261{bottom:471.600000pt;}
.y408{bottom:471.640000pt;}
.y176{bottom:474.533333pt;}
.y2b8{bottom:474.800000pt;}
.y1c4{bottom:475.333333pt;}
.y1d6{bottom:476.173333pt;}
.y9d{bottom:476.666667pt;}
.y15{bottom:477.200000pt;}
.y3e5{bottom:478.000000pt;}
.y1af{bottom:478.533333pt;}
.y373{bottom:479.333333pt;}
.ye2{bottom:479.600000pt;}
.yb2{bottom:480.400000pt;}
.y85{bottom:480.933333pt;}
.y120{bottom:481.466667pt;}
.y161{bottom:482.533333pt;}
.y3ca{bottom:482.800000pt;}
.y3ad{bottom:483.600000pt;}
.y278{bottom:483.866667pt;}
.y2dd{bottom:483.906667pt;}
.y22d{bottom:484.440000pt;}
.y483{bottom:485.200000pt;}
.y406{bottom:485.506667pt;}
.y32{bottom:487.866667pt;}
.y341{bottom:488.133333pt;}
.y4a5{bottom:490.533333pt;}
.y24d{bottom:491.866667pt;}
.y103{bottom:492.666667pt;}
.y3e4{bottom:492.933333pt;}
.y472{bottom:493.200000pt;}
.y432{bottom:493.240000pt;}
.y14{bottom:494.266667pt;}
.y14d{bottom:494.800000pt;}
.y195{bottom:495.600000pt;}
.y51{bottom:496.133333pt;}
.ycb{bottom:496.400000pt;}
.y1ae{bottom:496.933333pt;}
.y2dc{bottom:496.973333pt;}
.y3c9{bottom:498.000000pt;}
.y3ac{bottom:498.800000pt;}
.y22c{bottom:499.640000pt;}
.y175{bottom:499.866667pt;}
.y405{bottom:500.173333pt;}
.y2b3{bottom:500.666667pt;}
.y317{bottom:501.200000pt;}
.y1d5{bottom:501.506667pt;}
.y9c{bottom:502.000000pt;}
.y6d{bottom:502.533333pt;}
.y45c{bottom:502.800000pt;}
.y31{bottom:504.666667pt;}
.ye1{bottom:504.933333pt;}
.yb1{bottom:505.733333pt;}
.y84{bottom:506.266667pt;}
.y11f{bottom:506.800000pt;}
.y340{bottom:507.066667pt;}
.y431{bottom:507.106667pt;}
.y160{bottom:507.866667pt;}
.y3e3{bottom:508.933333pt;}
.y1c3{bottom:509.200000pt;}
.y2db{bottom:510.040000pt;}
.y371{bottom:510.266667pt;}
.y482{bottom:510.533333pt;}
.y13{bottom:513.200000pt;}
.y3c8{bottom:513.733333pt;}
.y194{bottom:514.000000pt;}
.y404{bottom:514.040000pt;}
.y3aa{bottom:514.533333pt;}
.y22b{bottom:514.840000pt;}
.y1ad{bottom:515.333333pt;}
.y1d4{bottom:517.240000pt;}
.y102{bottom:518.000000pt;}
.y471{bottom:518.533333pt;}
.y1fe{bottom:519.066667pt;}
.y14c{bottom:520.133333pt;}
.y430{bottom:520.973333pt;}
.y30{bottom:521.466667pt;}
.yca{bottom:521.733333pt;}
.y260{bottom:522.266667pt;}
.y2da{bottom:522.840000pt;}
.y4a4{bottom:523.866667pt;}
.y174{bottom:525.200000pt;}
.y33f{bottom:525.733333pt;}
.y2b2{bottom:526.000000pt;}
.y29b{bottom:527.333333pt;}
.y403{bottom:527.640000pt;}
.y50{bottom:528.133333pt;}
.y22a{bottom:529.773333pt;}
.y136{bottom:530.000000pt;}
.ye0{bottom:530.266667pt;}
.yb0{bottom:531.066667pt;}
.y11e{bottom:532.133333pt;}
.y193{bottom:532.400000pt;}
.y1d2{bottom:532.706667pt;}
.y15f{bottom:533.200000pt;}
.y6c{bottom:534.266667pt;}
.y277{bottom:534.533333pt;}
.y42f{bottom:534.840000pt;}
.y9b{bottom:535.333333pt;}
.y2d8{bottom:535.893333pt;}
.y12{bottom:538.533333pt;}
.y83{bottom:539.600000pt;}
.y2f{bottom:540.666667pt;}
.y402{bottom:541.533333pt;}
.y1c2{bottom:542.533333pt;}
.y101{bottom:543.333333pt;}
.y481{bottom:543.866667pt;}
.y33e{bottom:544.666667pt;}
.y229{bottom:545.000000pt;}
.y14b{bottom:545.200000pt;}
.yc9{bottom:547.066667pt;}
.y316{bottom:547.333333pt;}
.y25f{bottom:547.600000pt;}
.y3e2{bottom:547.866667pt;}
.y1d0{bottom:548.466667pt;}
.y2d7{bottom:549.000000pt;}
.y4a3{bottom:549.200000pt;}
.y42e{bottom:549.266667pt;}
.y173{bottom:550.533333pt;}
.y192{bottom:550.800000pt;}
.y2b1{bottom:551.333333pt;}
.y470{bottom:551.866667pt;}
.y1ac{bottom:552.133333pt;}
.y45b{bottom:553.466667pt;}
.y3a7{bottom:553.733333pt;}
.y135{bottom:555.333333pt;}
.y3ff{bottom:555.400000pt;}
.ydf{bottom:555.600000pt;}
.yaf{bottom:556.400000pt;}
.y11d{bottom:557.466667pt;}
.y15e{bottom:558.533333pt;}
.y4f{bottom:559.866667pt;}
.y228{bottom:560.200000pt;}
.y9a{bottom:560.666667pt;}
.y2d6{bottom:562.066667pt;}
.y3e1{bottom:563.066667pt;}
.y42d{bottom:563.133333pt;}
.y33d{bottom:563.600000pt;}
.y11{bottom:563.866667pt;}
.y3c7{bottom:564.400000pt;}
.y82{bottom:564.933333pt;}
.y2e{bottom:566.000000pt;}
.y6b{bottom:566.266667pt;}
.y100{bottom:568.666667pt;}
.y191{bottom:569.200000pt;}
.y14a{bottom:570.533333pt;}
.yc8{bottom:572.400000pt;}
.y25e{bottom:572.933333pt;}
.y4a2{bottom:574.533333pt;}
.y370{bottom:575.066667pt;}
.y2d5{bottom:575.133333pt;}
.y227{bottom:575.400000pt;}
.y172{bottom:575.866667pt;}
.y2b0{bottom:576.666667pt;}
.y42c{bottom:577.000000pt;}
.y46f{bottom:577.200000pt;}
.y315{bottom:577.733333pt;}
.y3e0{bottom:578.266667pt;}
.y3a6{bottom:578.800000pt;}
.y1cc{bottom:579.400000pt;}
.y134{bottom:580.666667pt;}
.yde{bottom:580.933333pt;}
.yae{bottom:581.733333pt;}
.y33c{bottom:582.533333pt;}
.y11c{bottom:582.800000pt;}
.y15d{bottom:583.866667pt;}
.y3fe{bottom:583.933333pt;}
.y276{bottom:585.200000pt;}
.y99{bottom:586.000000pt;}
.y45a{bottom:586.800000pt;}
.y190{bottom:587.600000pt;}
.y2d4{bottom:588.200000pt;}
.y1ab{bottom:588.933333pt;}
.y10{bottom:589.200000pt;}
.y81{bottom:590.266667pt;}
.y226{bottom:590.333333pt;}
.y42b{bottom:590.866667pt;}
.y2d{bottom:591.333333pt;}
.y4e{bottom:591.866667pt;}
.y289{bottom:594.000000pt;}
.y480{bottom:594.533333pt;}
.yff{bottom:595.066667pt;}
.y149{bottom:595.866667pt;}
.y3fd{bottom:597.533333pt;}
.yc7{bottom:597.733333pt;}
.y6a{bottom:598.266667pt;}
.y4a1{bottom:599.866667pt;}
.y2d3{bottom:601.000000pt;}
.y171{bottom:601.200000pt;}
.y2af{bottom:602.000000pt;}
.y46e{bottom:602.533333pt;}
.y42a{bottom:604.733333pt;}
.y36f{bottom:605.466667pt;}
.y225{bottom:605.533333pt;}
.y133{bottom:606.000000pt;}
.ydd{bottom:606.266667pt;}
.yad{bottom:606.800000pt;}
.y1aa{bottom:607.333333pt;}
.y15c{bottom:609.200000pt;}
.y275{bottom:610.266667pt;}
.y11b{bottom:610.533333pt;}
.y98{bottom:611.066667pt;}
.y459{bottom:612.133333pt;}
.y3fb{bottom:612.200000pt;}
.y314{bottom:613.200000pt;}
.y2d2{bottom:614.066667pt;}
.y80{bottom:615.333333pt;}
.y2c{bottom:616.693333pt;}
.yf{bottom:618.560000pt;}
.y429{bottom:618.600000pt;}
.y288{bottom:619.106667pt;}
.y33b{bottom:620.160000pt;}
.y36e{bottom:620.693333pt;}
.y223{bottom:620.733333pt;}
.y148{bottom:621.226667pt;}
.yc6{bottom:622.840000pt;}
.y25d{bottom:623.360000pt;}
.y4d{bottom:623.893333pt;}
.y3a4{bottom:624.160000pt;}
.y18f{bottom:624.426667pt;}
.y4a0{bottom:625.226667pt;}
.y1a9{bottom:625.760000pt;}
.y170{bottom:626.293333pt;}
.y2ae{bottom:627.093333pt;}
.y2d1{bottom:627.133333pt;}
.y4b1{bottom:627.360000pt;}
.y46d{bottom:627.893333pt;}
.y313{bottom:628.160000pt;}
.y69{bottom:630.293333pt;}
.ydc{bottom:631.360000pt;}
.yac{bottom:632.160000pt;}
.y428{bottom:632.200000pt;}
.yfe{bottom:634.306667pt;}
.y36d{bottom:635.626667pt;}
.y221{bottom:635.933333pt;}
.y29a{bottom:636.426667pt;}
.y458{bottom:637.506667pt;}
.y33a{bottom:639.093333pt;}
.y3a3{bottom:639.360000pt;}
.y1c9{bottom:639.666667pt;}
.y2cd{bottom:640.733333pt;}
.y18e{bottom:642.826667pt;}
.y274{bottom:643.640000pt;}
.y1a8{bottom:644.160000pt;}
.y97{bottom:644.426667pt;}
.y2b{bottom:646.026667pt;}
.y11a{bottom:646.560000pt;}
.y30e{bottom:646.826667pt;}
.y427{bottom:646.906667pt;}
.yc5{bottom:648.173333pt;}
.y7f{bottom:648.693333pt;}
.y36c{bottom:650.826667pt;}
.y16f{bottom:651.626667pt;}
.y220{bottom:651.706667pt;}
.y2ad{bottom:652.440000pt;}
.y47f{bottom:652.960000pt;}
.y3a2{bottom:654.560000pt;}
.y4c{bottom:655.893333pt;}
.ydb{bottom:656.693333pt;}
.yab{bottom:657.506667pt;}
.y339{bottom:658.026667pt;}
.y49f{bottom:658.306667pt;}
.yfd{bottom:659.626667pt;}
.ye{bottom:660.693333pt;}
.y426{bottom:660.773333pt;}
.y46c{bottom:660.960000pt;}
.y18d{bottom:661.226667pt;}
.y299{bottom:661.760000pt;}
.y68{bottom:662.293333pt;}
.y1a7{bottom:662.560000pt;}
.y311{bottom:665.493333pt;}
.y36b{bottom:666.026667pt;}
.y21f{bottom:666.906667pt;}
.y273{bottom:668.973333pt;}
.y3fa{bottom:669.040000pt;}
.y96{bottom:669.760000pt;}
.y3a1{bottom:669.773333pt;}
.y457{bottom:670.560000pt;}
.y287{bottom:670.840000pt;}
.y119{bottom:671.893333pt;}
.yc4{bottom:673.506667pt;}
.y7e{bottom:674.026667pt;}
.y424{bottom:675.173333pt;}
.y338{bottom:676.693333pt;}
.y16e{bottom:676.960000pt;}
.y2ac{bottom:677.773333pt;}
.y47e{bottom:678.293333pt;}
.y18c{bottom:679.640000pt;}
.y2cc{bottom:680.506667pt;}
.y1a6{bottom:680.973333pt;}
.y36a{bottom:681.240000pt;}
.yda{bottom:682.026667pt;}
.y21c{bottom:682.640000pt;}
.yaa{bottom:682.840000pt;}
.y132{bottom:683.093333pt;}
.y49e{bottom:683.626667pt;}
.y30b{bottom:684.173333pt;}
.y3a0{bottom:684.706667pt;}
.yfc{bottom:684.960000pt;}
.y4b0{bottom:685.760000pt;}
.y46b{bottom:686.293333pt;}
.y298{bottom:687.093333pt;}
.y4b{bottom:687.893333pt;}
.y2a{bottom:688.173333pt;}
.y1c8{bottom:688.506667pt;}
.y67{bottom:694.293333pt;}
.y95{bottom:695.093333pt;}
.y337{bottom:695.626667pt;}
.y456{bottom:695.893333pt;}
.y369{bottom:696.173333pt;}
.y118{bottom:697.226667pt;}
.y18b{bottom:698.026667pt;}
.y3f9{bottom:698.106667pt;}
.yc3{bottom:698.840000pt;}
.y1a5{bottom:699.360000pt;}
.y7d{bottom:699.373333pt;}
.y39f{bottom:699.893333pt;}
.y16d{bottom:702.293333pt;}
.yd{bottom:702.840000pt;}
.y2ab{bottom:703.106667pt;}
.yd9{bottom:707.360000pt;}
.y2ca{bottom:707.440000pt;}
.ya9{bottom:708.173333pt;}
.y49d{bottom:708.960000pt;}
.yfb{bottom:710.293333pt;}
.y4af{bottom:711.093333pt;}
.y366{bottom:711.373333pt;}
.y46a{bottom:711.626667pt;}
.y297{bottom:712.440000pt;}
.y1c7{bottom:713.840000pt;}
.y336{bottom:714.573333pt;}
.y39e{bottom:715.093333pt;}
.y18a{bottom:716.440000pt;}
.y30a{bottom:717.506667pt;}
.y1a4{bottom:717.773333pt;}
.y272{bottom:719.626667pt;}
.y4a{bottom:719.893333pt;}
.y94{bottom:720.426667pt;}
.y455{bottom:721.226667pt;}
.y117{bottom:722.560000pt;}
.yc2{bottom:724.173333pt;}
.y7c{bottom:724.706667pt;}
.y147{bottom:724.960000pt;}
.y66{bottom:726.293333pt;}
.y365{bottom:726.560000pt;}
.y16c{bottom:727.626667pt;}
.y2aa{bottom:728.426667pt;}
.y29{bottom:730.293333pt;}
.yd8{bottom:732.706667pt;}
.ya8{bottom:733.506667pt;}
.y188{bottom:734.840000pt;}
.yfa{bottom:735.626667pt;}
.y1a3{bottom:736.173333pt;}
.y4ae{bottom:736.440000pt;}
.y469{bottom:736.960000pt;}
.y296{bottom:737.773333pt;}
.y364{bottom:741.773333pt;}
.y49c{bottom:742.293333pt;}
.yc{bottom:744.960000pt;}
.y39d{bottom:745.226667pt;}
.y93{bottom:745.760000pt;}
.y116{bottom:747.626667pt;}
.yc1{bottom:749.506667pt;}
.y7b{bottom:750.040000pt;}
.y49{bottom:751.893333pt;}
.y334{bottom:752.173333pt;}
.y16b{bottom:752.960000pt;}
.y187{bottom:753.240000pt;}
.y2a9{bottom:753.760000pt;}
.y454{bottom:754.560000pt;}
.y1a2{bottom:754.573333pt;}
.y308{bottom:754.840000pt;}
.y362{bottom:756.693333pt;}
.yd7{bottom:758.040000pt;}
.y65{bottom:758.293333pt;}
.ya7{bottom:758.840000pt;}
.y39b{bottom:760.440000pt;}
.yf9{bottom:760.960000pt;}
.y1c5{bottom:761.066667pt;}
.y47d{bottom:762.333333pt;}
.y49b{bottom:767.666667pt;}
.y4ad{bottom:769.800000pt;}
.y271{bottom:770.333333pt;}
.y92{bottom:771.133333pt;}
.y186{bottom:771.666667pt;}
.y361{bottom:771.933333pt;}
.y28{bottom:772.466667pt;}
.y115{bottom:773.000000pt;}
.y307{bottom:773.533333pt;}
.yc0{bottom:774.866667pt;}
.y7a{bottom:775.400000pt;}
.y39a{bottom:775.666667pt;}
.y16a{bottom:778.333333pt;}
.y2a8{bottom:779.133333pt;}
.y453{bottom:779.933333pt;}
.yd6{bottom:783.400000pt;}
.y48{bottom:783.933333pt;}
.yf8{bottom:786.333333pt;}
.y360{bottom:787.133333pt;}
.yb{bottom:787.400000pt;}
.y64{bottom:790.066667pt;}
.y399{bottom:790.866667pt;}
.y1a1{bottom:791.400000pt;}
.y306{bottom:792.200000pt;}
.y49a{bottom:793.000000pt;}
.y4ac{bottom:795.400000pt;}
.y468{bottom:795.666667pt;}
.y91{bottom:796.200000pt;}
.y114{bottom:798.333333pt;}
.ybf{bottom:799.933333pt;}
.y35f{bottom:802.333333pt;}
.y24c{bottom:803.666667pt;}
.y2a7{bottom:804.200000pt;}
.y452{bottom:805.266667pt;}
.y398{bottom:805.800000pt;}
.y79{bottom:808.466667pt;}
.y333{bottom:809.000000pt;}
.ya6{bottom:809.266667pt;}
.y1a0{bottom:809.800000pt;}
.y304{bottom:810.866667pt;}
.yf7{bottom:811.666667pt;}
.y27{bottom:814.600000pt;}
.y47{bottom:815.666667pt;}
.y35e{bottom:817.266667pt;}
.y499{bottom:818.333333pt;}
.y397{bottom:821.000000pt;}
.y295{bottom:821.533333pt;}
.y63{bottom:822.066667pt;}
.y113{bottom:823.666667pt;}
.ybe{bottom:825.266667pt;}
.y185{bottom:826.866667pt;}
.y331{bottom:827.666667pt;}
.y24b{bottom:828.733333pt;}
.y302{bottom:829.266667pt;}
.y90{bottom:829.533333pt;}
.y451{bottom:830.600000pt;}
.ya{bottom:832.200000pt;}
.y25c{bottom:832.466667pt;}
.y78{bottom:833.800000pt;}
.ya5{bottom:834.600000pt;}
.y396{bottom:836.200000pt;}
.yf6{bottom:836.733333pt;}
.y184{bottom:845.266667pt;}
.y488{bottom:846.333333pt;}
.y19f{bottom:846.600000pt;}
.y294{bottom:846.866667pt;}
.y330{bottom:847.400000pt;}
.y46{bottom:847.666667pt;}
.y301{bottom:847.933333pt;}
.y131{bottom:849.000000pt;}
.ybd{bottom:850.600000pt;}
.y112{bottom:851.400000pt;}
.y498{bottom:851.666667pt;}
.y62{bottom:854.066667pt;}
.y467{bottom:854.333333pt;}
.y8f{bottom:854.866667pt;}
.y450{bottom:855.933333pt;}
.y77{bottom:859.133333pt;}
.y9{bottom:859.666667pt;}
.ya4{bottom:859.933333pt;}
.yf5{bottom:862.066667pt;}
.y35d{bottom:862.866667pt;}
.y183{bottom:863.666667pt;}
.y19e{bottom:865.000000pt;}
.y395{bottom:866.333333pt;}
.y300{bottom:867.400000pt;}
.y48f{bottom:871.400000pt;}
.y293{bottom:872.200000pt;}
.y130{bottom:874.333333pt;}
.ybc{bottom:875.933333pt;}
.y497{bottom:876.733333pt;}
.y32f{bottom:877.266667pt;}
.y35c{bottom:877.800000pt;}
.y24a{bottom:879.400000pt;}
.y45{bottom:879.666667pt;}
.y8e{bottom:880.200000pt;}
.y394{bottom:881.533333pt;}
.y180{bottom:882.600000pt;}
.y19d{bottom:883.400000pt;}
.y76{bottom:884.466667pt;}
.ya3{bottom:885.266667pt;}
.y2b7{bottom:885.533333pt;}
.y61{bottom:886.066667pt;}
.y8{bottom:887.133333pt;}
.yf4{bottom:887.400000pt;}
.y44f{bottom:889.000000pt;}
.y35a{bottom:893.000000pt;}
.y393{bottom:896.733333pt;}
.y292{bottom:898.600000pt;}
.y12f{bottom:899.666667pt;}
.ybb{bottom:901.266667pt;}
.y19b{bottom:901.800000pt;}
.y496{bottom:902.066667pt;}
.y249{bottom:904.733333pt;}
.y8d{bottom:905.533333pt;}
.y358{bottom:908.226667pt;}
.y75{bottom:909.840000pt;}
.ya2{bottom:910.626667pt;}
.y44{bottom:911.706667pt;}
.y392{bottom:911.960000pt;}
.yf3{bottom:912.760000pt;}
.y2b6{bottom:913.293333pt;}
.y44e{bottom:914.373333pt;}
.y7{bottom:914.626667pt;}
.y60{bottom:918.106667pt;}
.y17d{bottom:920.226667pt;}
.y32e{bottom:920.506667pt;}
.y356{bottom:923.426667pt;}
.yba{bottom:926.626667pt;}
.y391{bottom:926.893333pt;}
.y12e{bottom:927.426667pt;}
.y248{bottom:930.106667pt;}
.y8c{bottom:930.893333pt;}
.y74{bottom:935.173333pt;}
.ya1{bottom:937.040000pt;}
.yf2{bottom:938.093333pt;}
.y19a{bottom:938.626667pt;}
.y354{bottom:939.160000pt;}
.y6{bottom:939.440000pt;}
.y44d{bottom:939.693333pt;}
.y3df{bottom:942.093333pt;}
.y2b5{bottom:942.360000pt;}
.y390{bottom:942.893333pt;}
.y43{bottom:943.706667pt;}
.y2fe{bottom:947.706667pt;}
.y5f{bottom:950.093333pt;}
.y32d{bottom:950.893333pt;}
.yb9{bottom:951.960000pt;}
.y352{bottom:954.360000pt;}
.y270{bottom:955.440000pt;}
.y8b{bottom:956.226667pt;}
.y38f{bottom:957.826667pt;}
.y73{bottom:961.560000pt;}
.yf1{bottom:963.440000pt;}
.y5{bottom:964.226667pt;}
.y26{bottom:969.026667pt;}
.y350{bottom:970.093333pt;}
.y38e{bottom:973.026667pt;}
.y44c{bottom:973.040000pt;}
.y3c4{bottom:973.840000pt;}
.y42{bottom:975.693333pt;}
.yb8{bottom:977.293333pt;}
.y2fd{bottom:978.106667pt;}
.y8a{bottom:981.560000pt;}
.y5e{bottom:982.106667pt;}
.y32c{bottom:986.626667pt;}
.y38d{bottom:988.760000pt;}
.yf0{bottom:988.773333pt;}
.y4{bottom:989.026667pt;}
.y44b{bottom:993.840000pt;}
.y41{bottom:996.506667pt;}
.y89{bottom:1007.960000pt;}
.y25{bottom:1010.360000pt;}
.y3c2{bottom:1012.760000pt;}
.y34f{bottom:1012.773333pt;}
.y3{bottom:1014.106667pt;}
.y32b{bottom:1016.760000pt;}
.y1{bottom:1089.600000pt;}
.h51{height:12.786667pt;}
.h4f{height:12.800000pt;}
.h52{height:12.833333pt;}
.h4d{height:13.066667pt;}
.h50{height:13.100000pt;}
.h65{height:13.600000pt;}
.h6d{height:13.633333pt;}
.h6c{height:13.853333pt;}
.h64{height:13.866667pt;}
.h68{height:13.900000pt;}
.h53{height:14.400000pt;}
.h2c{height:14.653333pt;}
.h2d{height:14.666667pt;}
.h2a{height:14.686667pt;}
.h2e{height:14.700000pt;}
.h3f{height:14.920000pt;}
.h43{height:14.933333pt;}
.h42{height:14.966667pt;}
.h5e{height:15.186667pt;}
.h41{height:15.200000pt;}
.h5d{height:15.220000pt;}
.h44{height:15.233333pt;}
.h14{height:18.386667pt;}
.h11{height:18.400000pt;}
.h13{height:18.420000pt;}
.h17{height:18.433333pt;}
.h3a{height:18.666667pt;}
.h59{height:18.920000pt;}
.h3b{height:18.933333pt;}
.h58{height:18.953333pt;}
.h3d{height:18.966667pt;}
.h49{height:20.266667pt;}
.h30{height:22.133333pt;}
.h1c{height:24.266667pt;}
.h20{height:24.300000pt;}
.h5f{height:24.533333pt;}
.h34{height:25.866667pt;}
.h35{height:25.900000pt;}
.h4a{height:26.120000pt;}
.h37{height:26.133333pt;}
.h2f{height:26.933333pt;}
.h6a{height:27.466667pt;}
.h67{height:27.733333pt;}
.h69{height:27.766667pt;}
.h55{height:29.066667pt;}
.h27{height:29.333333pt;}
.h24{height:29.366667pt;}
.h40{height:29.625000pt;}
.h12{height:31.479167pt;}
.h19{height:32.083333pt;}
.h56{height:33.066667pt;}
.h54{height:33.333333pt;}
.h46{height:34.333333pt;}
.h38{height:35.733333pt;}
.he{height:36.800000pt;}
.h10{height:36.833333pt;}
.h45{height:36.875000pt;}
.h4b{height:36.979167pt;}
.h4e{height:37.041667pt;}
.hf{height:38.270833pt;}
.h60{height:38.920000pt;}
.h5b{height:38.933333pt;}
.h5c{height:39.200000pt;}
.h4c{height:39.233333pt;}
.h63{height:39.752604pt;}
.h66{height:39.819792pt;}
.h15{height:39.865938pt;}
.h16{height:39.919271pt;}
.h1f{height:40.533333pt;}
.h48{height:40.566667pt;}
.h2b{height:41.484375pt;}
.h25{height:41.601562pt;}
.h28{height:41.671875pt;}
.h62{height:42.166667pt;}
.h6b{height:42.386667pt;}
.h31{height:42.437500pt;}
.h57{height:43.054688pt;}
.hb{height:43.283854pt;}
.h32{height:43.733333pt;}
.h33{height:44.000000pt;}
.h47{height:44.114583pt;}
.h1e{height:46.093750pt;}
.h1b{height:46.223958pt;}
.h1d{height:46.302083pt;}
.h3e{height:47.208333pt;}
.h29{height:47.742188pt;}
.h5{height:47.838542pt;}
.h21{height:50.846354pt;}
.h36{height:50.932292pt;}
.h2{height:52.622396pt;}
.h5a{height:54.187500pt;}
.hd{height:54.820312pt;}
.h18{height:55.200000pt;}
.h9{height:55.468750pt;}
.h6{height:57.406250pt;}
.h39{height:58.351562pt;}
.h26{height:58.666667pt;}
.hc{height:58.703125pt;}
.h3c{height:60.070312pt;}
.h61{height:63.218750pt;}
.h1a{height:64.833333pt;}
.h7{height:66.973958pt;}
.h4{height:71.757812pt;}
.ha{height:76.541667pt;}
.h3{height:100.260417pt;}
.h8{height:119.596354pt;}
.h22{height:793.866667pt;}
.h23{height:794.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w19{width:1.600000pt;}
.w72{width:9.600000pt;}
.w71{width:9.866667pt;}
.w76{width:9.900000pt;}
.wa{width:10.933333pt;}
.w91{width:11.466667pt;}
.w4c{width:28.266667pt;}
.w51{width:28.533333pt;}
.w38{width:31.733333pt;}
.w46{width:32.266667pt;}
.w48{width:32.533333pt;}
.w47{width:33.600000pt;}
.w43{width:33.900000pt;}
.w84{width:34.133333pt;}
.w8d{width:34.400000pt;}
.w94{width:34.933333pt;}
.w82{width:36.833333pt;}
.we{width:37.100000pt;}
.w7c{width:37.333333pt;}
.w50{width:37.866667pt;}
.w45{width:37.900000pt;}
.w9a{width:38.400000pt;}
.w83{width:38.666667pt;}
.w9b{width:38.933333pt;}
.w99{width:39.233333pt;}
.w42{width:41.866667pt;}
.w14{width:42.666667pt;}
.w6a{width:43.500000pt;}
.wf{width:44.000000pt;}
.w93{width:44.800000pt;}
.w8e{width:44.833333pt;}
.w88{width:45.333333pt;}
.w6b{width:45.866667pt;}
.w8c{width:46.400000pt;}
.w7f{width:46.666667pt;}
.w10{width:46.700000pt;}
.w52{width:46.933333pt;}
.w13{width:46.966667pt;}
.w3e{width:47.200000pt;}
.wc{width:47.233333pt;}
.w8b{width:47.466667pt;}
.w55{width:49.633333pt;}
.w12{width:49.900000pt;}
.w8a{width:50.166667pt;}
.w7b{width:51.466667pt;}
.w89{width:52.266667pt;}
.w32{width:52.533333pt;}
.w2f{width:52.800000pt;}
.w9c{width:52.833333pt;}
.w85{width:53.100000pt;}
.w97{width:53.333333pt;}
.w20{width:53.600000pt;}
.w54{width:54.400000pt;}
.w4d{width:54.966667pt;}
.w11{width:55.733333pt;}
.w65{width:56.266667pt;}
.w5{width:56.533333pt;}
.w7{width:56.566667pt;}
.w8{width:56.800000pt;}
.w6{width:56.833333pt;}
.w56{width:57.100000pt;}
.w5b{width:58.133333pt;}
.w5a{width:58.166667pt;}
.w31{width:58.966667pt;}
.w5f{width:60.000000pt;}
.w2e{width:60.833333pt;}
.w6c{width:62.700000pt;}
.w36{width:63.233333pt;}
.w1f{width:63.500000pt;}
.wd{width:64.800000pt;}
.w66{width:65.100000pt;}
.w44{width:66.133333pt;}
.w41{width:66.166667pt;}
.w21{width:66.433333pt;}
.w22{width:66.666667pt;}
.w3d{width:70.166667pt;}
.w3f{width:71.766667pt;}
.w73{width:72.300000pt;}
.w78{width:72.533333pt;}
.w4e{width:73.600000pt;}
.w4a{width:75.500000pt;}
.w7e{width:75.766667pt;}
.w8f{width:76.533333pt;}
.w86{width:76.800000pt;}
.w77{width:76.833333pt;}
.w7d{width:77.066667pt;}
.w96{width:77.366667pt;}
.w80{width:78.166667pt;}
.w63{width:82.700000pt;}
.w95{width:83.200000pt;}
.w64{width:83.233333pt;}
.w33{width:86.700000pt;}
.w28{width:87.500000pt;}
.w67{width:89.100000pt;}
.w35{width:92.000000pt;}
.w39{width:92.833333pt;}
.w29{width:93.633333pt;}
.w30{width:94.966667pt;}
.w5e{width:96.566667pt;}
.w60{width:100.033333pt;}
.w69{width:103.766667pt;}
.w37{width:111.233333pt;}
.w40{width:113.333333pt;}
.w26{width:113.900000pt;}
.w27{width:116.033333pt;}
.w59{width:116.833333pt;}
.w23{width:117.100000pt;}
.w5c{width:121.633333pt;}
.w1c{width:122.933333pt;}
.w1b{width:122.966667pt;}
.w1e{width:132.033333pt;}
.w1d{width:132.300000pt;}
.w34{width:165.133333pt;}
.w4{width:170.200000pt;}
.w1a{width:179.773333pt;}
.w25{width:183.533333pt;}
.w70{width:185.933333pt;}
.w4f{width:188.840000pt;}
.w6d{width:188.866667pt;}
.w3c{width:189.360000pt;}
.w98{width:197.626667pt;}
.w2d{width:198.200000pt;}
.w81{width:202.693333pt;}
.w75{width:205.933333pt;}
.w2c{width:208.600000pt;}
.w2b{width:212.333333pt;}
.w61{width:214.466667pt;}
.w58{width:217.666667pt;}
.w6f{width:236.333333pt;}
.w3{width:283.560000pt;}
.w4b{width:312.066667pt;}
.w3b{width:321.400000pt;}
.wb{width:328.360000pt;}
.w87{width:330.506667pt;}
.w92{width:339.800000pt;}
.w7a{width:341.706667pt;}
.w53{width:368.640000pt;}
.w6e{width:451.600000pt;}
.w74{width:471.640000pt;}
.w24{width:589.000000pt;}
.w62{width:601.000000pt;}
.w2a{width:619.133333pt;}
.w9{width:623.933333pt;}
.w5d{width:629.266667pt;}
.w68{width:633.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.w49{width:812.960000pt;}
.w3a{width:879.400000pt;}
.w18{width:939.933333pt;}
.w90{width:953.266667pt;}
.w79{width:957.840000pt;}
.w57{width:1075.466667pt;}
.w17{width:1122.399983pt;}
.w15{width:1122.400000pt;}
.w16{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:1.066667pt;}
.x35{left:3.733333pt;}
.xf{left:4.800000pt;}
.x6{left:7.200000pt;}
.x4c{left:9.066667pt;}
.x9{left:10.400000pt;}
.xa{left:12.520000pt;}
.x87{left:15.733333pt;}
.x19{left:19.200000pt;}
.x61{left:22.133333pt;}
.x41{left:26.126667pt;}
.xb{left:28.000000pt;}
.x34{left:37.866667pt;}
.x4d{left:46.933333pt;}
.x88{left:49.600000pt;}
.x6d{left:66.400000pt;}
.x1b{left:75.500000pt;}
.x5{left:85.100000pt;}
.x29{left:89.900000pt;}
.x1{left:94.433322pt;}
.x55{left:96.566667pt;}
.x36{left:113.366667pt;}
.x4{left:118.433322pt;}
.x89{left:132.299988pt;}
.x2{left:141.639988pt;}
.x1a{left:151.226650pt;}
.x3{left:179.533322pt;}
.x58{left:181.400000pt;}
.x56{left:185.933333pt;}
.x66{left:208.066667pt;}
.x5c{left:226.733333pt;}
.x7{left:255.306667pt;}
.x4e{left:264.600000pt;}
.x59{left:266.773333pt;}
.x25{left:277.973333pt;}
.x67{left:280.373333pt;}
.x57{left:284.640000pt;}
.x68{left:290.240000pt;}
.x69{left:299.840000pt;}
.x2a{left:302.240000pt;}
.x8{left:311.840000pt;}
.x5a{left:324.906667pt;}
.x5d{left:330.506667pt;}
.x30{left:347.026667pt;}
.x2c{left:363.066667pt;}
.x5e{left:374.000000pt;}
.x1e{left:377.973333pt;}
.x4f{left:387.573333pt;}
.x26{left:391.866667pt;}
.x78{left:396.906667pt;}
.x6b{left:407.600000pt;}
.x31{left:410.266667pt;}
.x2d{left:415.866667pt;}
.x5f{left:419.866667pt;}
.x11{left:422.800000pt;}
.x42{left:425.440000pt;}
.x37{left:434.773333pt;}
.x79{left:442.240000pt;}
.x65{left:444.400000pt;}
.xc{left:446.533333pt;}
.x49{left:453.733333pt;}
.x6e{left:459.573333pt;}
.x7f{left:460.640000pt;}
.x6c{left:464.173333pt;}
.x43{left:467.306667pt;}
.x12{left:470.026667pt;}
.x3d{left:476.906667pt;}
.x5b{left:483.106667pt;}
.x7a{left:494.506667pt;}
.x44{left:495.573333pt;}
.x6f{left:496.906667pt;}
.x1f{left:500.906667pt;}
.x27{left:507.906667pt;}
.x2b{left:510.840000pt;}
.x62{left:516.693333pt;}
.x50{left:519.866667pt;}
.x32{left:521.506667pt;}
.x63{left:526.573333pt;}
.x13{left:534.840000pt;}
.x64{left:536.173333pt;}
.x60{left:539.360000pt;}
.x80{left:542.800000pt;}
.x70{left:544.133333pt;}
.x6a{left:546.573333pt;}
.x45{left:550.533333pt;}
.x33{left:553.240000pt;}
.x4a{left:555.360000pt;}
.x3e{left:558.000000pt;}
.x2e{left:569.800000pt;}
.x14{left:571.933333pt;}
.x16{left:584.733333pt;}
.x28{left:595.666667pt;}
.x4b{left:605.000000pt;}
.xd{left:616.733333pt;}
.x71{left:621.200000pt;}
.x2f{left:622.333333pt;}
.x38{left:624.133333pt;}
.x81{left:626.000000pt;}
.x17{left:628.733333pt;}
.x20{left:633.200000pt;}
.x74{left:658.026667pt;}
.x15{left:662.640000pt;}
.x84{left:665.240000pt;}
.xe{left:673.306667pt;}
.x18{left:675.693333pt;}
.x46{left:690.306667pt;}
.x39{left:694.306667pt;}
.x72{left:696.973333pt;}
.x82{left:703.640000pt;}
.x10{left:718.373333pt;}
.x3a{left:741.506667pt;}
.x47{left:743.106667pt;}
.x7b{left:744.440000pt;}
.x51{left:756.173333pt;}
.x21{left:765.226667pt;}
.x3b{left:813.266667pt;}
.x52{left:814.333333pt;}
.x73{left:821.800000pt;}
.x22{left:828.733333pt;}
.x83{left:844.466667pt;}
.x3f{left:846.866667pt;}
.x48{left:850.866667pt;}
.x75{left:860.200000pt;}
.x7c{left:869.000000pt;}
.x53{left:872.466667pt;}
.x40{left:879.400000pt;}
.x23{left:882.333333pt;}
.x76{left:894.333333pt;}
.x7d{left:903.400000pt;}
.x85{left:915.666667pt;}
.x3c{left:926.600000pt;}
.x77{left:947.440000pt;}
.x24{left:948.506667pt;}
.x86{left:968.506667pt;}
.x54{left:994.106667pt;}
.x1c{left:1015.440000pt;}
.x7e{left:1029.306667pt;}
}




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