
    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_d23b74d125e20d43bc35010f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.804688;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_fc05e7d1fbf0fd3673842fbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_0872a249963faba5a424b91f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_be73a3b6edc31b2aad4e639b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_a55ae19811e0bd65fec1b996.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_c52a1f274a2509563aa2f037.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.977051;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_8f9b5a5107b758cfafe11252.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_ec2474e32b43075bcaad9eab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_5d28aa578f4d1f348928cf96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_80639133acac78f3e4c4f54b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_dd3b0ac209e173ae180818c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f2aed54ae6f6f8c15624cdf9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_a37150e165423c1e4a27abdf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.862305;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_508d98d98b3b606ca7f717d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.694336;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_b5421e2fb6f822fe8664a058.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_475b0da6f81eb2b0bddb899a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(-0.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);}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.235267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235267,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m6{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258402,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270827,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401435,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-38.859000px;}
.v1{vertical-align:-9.536400px;}
.v3{vertical-align:-4.224000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:20.953200px;}
.v4{vertical-align:21.996000px;}
.v8{vertical-align:23.766000px;}
.v2{vertical-align:30.187800px;}
.v9{vertical-align:35.906400px;}
.v6{vertical-align:38.859000px;}
.v5{vertical-align:40.969200px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.059760px;}
.ls21{letter-spacing:0.066240px;}
.lsf{letter-spacing:0.119520px;}
.ls13{letter-spacing:0.132480px;}
.ls23{letter-spacing:0.170160px;}
.ls18{letter-spacing:0.179280px;}
.ls29{letter-spacing:0.182040px;}
.ls1f{letter-spacing:0.198720px;}
.lsd{letter-spacing:0.227731px;}
.ls6{letter-spacing:0.239841px;}
.ls24{letter-spacing:0.240787px;}
.ls5{letter-spacing:0.245748px;}
.ls7{letter-spacing:0.245841px;}
.ls12{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.260520px;}
.ls1b{letter-spacing:0.264960px;}
.ls8{letter-spacing:0.267118px;}
.lse{letter-spacing:0.279350px;}
.ls9{letter-spacing:0.281241px;}
.lsa{letter-spacing:0.284402px;}
.ls4{letter-spacing:0.287280px;}
.ls11{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.295419px;}
.ls16{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.303641px;}
.ls1c{letter-spacing:0.306720px;}
.ls1a{letter-spacing:0.356280px;}
.ls19{letter-spacing:0.358560px;}
.ls28{letter-spacing:0.418320px;}
.ls15{letter-spacing:0.489000px;}
.ls20{letter-spacing:0.541560px;}
.ls31{letter-spacing:0.633000px;}
.ls26{letter-spacing:0.649922px;}
.ls1d{letter-spacing:0.657360px;}
.ls10{letter-spacing:0.717120px;}
.ls2c{letter-spacing:0.795840px;}
.ls17{letter-spacing:0.836640px;}
.ls2b{letter-spacing:0.839880px;}
.ls2a{letter-spacing:0.931440px;}
.ls14{letter-spacing:1.036440px;}
.ls1e{letter-spacing:1.809720px;}
.ls30{letter-spacing:3.402840px;}
.ls27{letter-spacing:5.999940px;}
.ls3{letter-spacing:6.000000px;}
.ls1{letter-spacing:14.400000px;}
.ls32{letter-spacing:14.546160px;}
.ls2f{letter-spacing:65.471966px;}
.ls2e{letter-spacing:65.502622px;}
.lsc{letter-spacing:67.787809px;}
.ls2{letter-spacing:200.664000px;}
.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;}
}
.ws38{word-spacing:-108.000000px;}
.ws17{word-spacing:-95.760000px;}
.ws18{word-spacing:-84.240000px;}
.ws22{word-spacing:-75.910200px;}
.ws1{word-spacing:-75.744000px;}
.ws39{word-spacing:-71.881800px;}
.ws31{word-spacing:-71.185200px;}
.ws2b{word-spacing:-66.240000px;}
.ws1e{word-spacing:-61.437000px;}
.ws1c{word-spacing:-61.039800px;}
.ws30{word-spacing:-60.196800px;}
.ws27{word-spacing:-59.760000px;}
.wscf{word-spacing:-32.082912px;}
.ws15{word-spacing:-26.838000px;}
.ws3b{word-spacing:-25.560000px;}
.ws37{word-spacing:-24.408000px;}
.ws54{word-spacing:-24.282000px;}
.ws3c{word-spacing:-24.154200px;}
.ws2{word-spacing:-23.004000px;}
.ws19{word-spacing:-21.641760px;}
.ws16{word-spacing:-19.038240px;}
.ws23{word-spacing:-18.977550px;}
.ws21{word-spacing:-18.528248px;}
.ws36{word-spacing:-18.337800px;}
.ws3{word-spacing:-18.000000px;}
.ws28{word-spacing:-17.573760px;}
.ws24{word-spacing:-17.155705px;}
.ws29{word-spacing:-16.272000px;}
.ws3a{word-spacing:-16.245287px;}
.ws20{word-spacing:-16.068736px;}
.ws2d{word-spacing:-15.840000px;}
.ws2a{word-spacing:-14.970240px;}
.ws14{word-spacing:-14.400000px;}
.ws1a{word-spacing:-14.319360px;}
.ws1d{word-spacing:-13.884762px;}
.ws2f{word-spacing:-13.845264px;}
.ws1b{word-spacing:-13.794995px;}
.ws25{word-spacing:-13.625280px;}
.ws2e{word-spacing:-13.604477px;}
.ws26{word-spacing:-13.505760px;}
.ws32{word-spacing:-13.352939px;}
.wsd0{word-spacing:-12.780000px;}
.ws13{word-spacing:-12.672000px;}
.ws34{word-spacing:-11.808000px;}
.ws2c{word-spacing:-9.437760px;}
.ws35{word-spacing:-8.786880px;}
.ws1f{word-spacing:-8.753522px;}
.ws12{word-spacing:-6.000000px;}
.ws33{word-spacing:-5.999940px;}
.wsaa{word-spacing:-4.920000px;}
.ws5e{word-spacing:-4.446000px;}
.wsc5{word-spacing:-4.320000px;}
.ws45{word-spacing:-4.082400px;}
.ws6e{word-spacing:-3.978000px;}
.wsc2{word-spacing:-3.960000px;}
.wsa5{word-spacing:-3.600000px;}
.ws5c{word-spacing:-3.534000px;}
.ws4d{word-spacing:-3.515400px;}
.ws49{word-spacing:-3.402000px;}
.wsd1{word-spacing:-3.345034px;}
.ws61{word-spacing:-3.078000px;}
.wsa9{word-spacing:-3.000000px;}
.wsd2{word-spacing:-2.460000px;}
.ws6{word-spacing:-2.304000px;}
.wsa{word-spacing:-1.656000px;}
.ws84{word-spacing:-1.560000px;}
.ws86{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.368000px;}
.ws62{word-spacing:-1.140000px;}
.ws88{word-spacing:-0.936000px;}
.wsb8{word-spacing:-0.840000px;}
.ws4{word-spacing:-0.504000px;}
.ws0{word-spacing:0.000000px;}
.ws93{word-spacing:0.288000px;}
.ws7f{word-spacing:0.351000px;}
.ws7{word-spacing:1.152000px;}
.wsd{word-spacing:1.296000px;}
.ws8f{word-spacing:1.440000px;}
.wsb{word-spacing:1.800000px;}
.wsba{word-spacing:2.640000px;}
.ws3d{word-spacing:2.948400px;}
.ws60{word-spacing:2.964000px;}
.wsab{word-spacing:3.480000px;}
.ws91{word-spacing:3.744000px;}
.ws79{word-spacing:3.861000px;}
.wsa1{word-spacing:3.960000px;}
.ws8b{word-spacing:4.536000px;}
.wsbf{word-spacing:4.920000px;}
.wsc{word-spacing:5.040000px;}
.ws73{word-spacing:5.382000px;}
.ws8c{word-spacing:5.760000px;}
.ws95{word-spacing:5.904000px;}
.ws8e{word-spacing:6.048000px;}
.ws10{word-spacing:6.120000px;}
.ws92{word-spacing:6.192000px;}
.ws6c{word-spacing:6.270000px;}
.ws98{word-spacing:6.840000px;}
.ws97{word-spacing:7.080000px;}
.ws8{word-spacing:7.272000px;}
.wsa4{word-spacing:7.320000px;}
.wsa8{word-spacing:7.440000px;}
.ws94{word-spacing:7.632000px;}
.ws5f{word-spacing:8.322000px;}
.ws4a{word-spacing:8.391600px;}
.ws96{word-spacing:8.400000px;}
.ws5{word-spacing:9.000000px;}
.ws90{word-spacing:9.216000px;}
.ws5b{word-spacing:9.234000px;}
.ws50{word-spacing:9.298800px;}
.ws41{word-spacing:10.432800px;}
.ws9{word-spacing:11.088000px;}
.wsf{word-spacing:11.520000px;}
.wscc{word-spacing:11.880000px;}
.ws82{word-spacing:12.840000px;}
.ws4f{word-spacing:13.041000px;}
.ws89{word-spacing:13.536000px;}
.ws4b{word-spacing:14.288400px;}
.ws87{word-spacing:14.472000px;}
.wscd{word-spacing:15.240000px;}
.ws63{word-spacing:15.390000px;}
.wsbb{word-spacing:15.600000px;}
.ws68{word-spacing:15.846000px;}
.ws6d{word-spacing:16.263000px;}
.ws72{word-spacing:18.018000px;}
.ws3e{word-spacing:18.257400px;}
.ws5a{word-spacing:18.468000px;}
.ws69{word-spacing:18.810000px;}
.wsaf{word-spacing:19.080000px;}
.wsb6{word-spacing:19.200000px;}
.ws8d{word-spacing:19.296000px;}
.ws11{word-spacing:21.024000px;}
.ws71{word-spacing:22.230000px;}
.wsb0{word-spacing:23.760000px;}
.ws52{word-spacing:23.927400px;}
.ws67{word-spacing:24.738000px;}
.wse{word-spacing:24.912000px;}
.ws99{word-spacing:24.960000px;}
.ws53{word-spacing:26.422200px;}
.wsc1{word-spacing:27.360000px;}
.ws42{word-spacing:27.442800px;}
.ws77{word-spacing:28.899000px;}
.ws75{word-spacing:29.601000px;}
.ws3f{word-spacing:29.937600px;}
.ws6b{word-spacing:31.122000px;}
.wsca{word-spacing:31.560000px;}
.wsc3{word-spacing:33.240000px;}
.ws66{word-spacing:33.288000px;}
.wsb3{word-spacing:33.360000px;}
.ws4c{word-spacing:34.020000px;}
.ws6a{word-spacing:34.200000px;}
.wsc7{word-spacing:35.160000px;}
.wsc6{word-spacing:36.000000px;}
.wsb4{word-spacing:36.240000px;}
.ws55{word-spacing:36.366000px;}
.ws43{word-spacing:36.628200px;}
.ws64{word-spacing:36.822000px;}
.ws48{word-spacing:36.855000px;}
.ws57{word-spacing:37.278000px;}
.wsce{word-spacing:38.640000px;}
.ws70{word-spacing:39.546000px;}
.wsbe{word-spacing:39.600000px;}
.ws46{word-spacing:40.483800px;}
.ws85{word-spacing:40.560000px;}
.ws81{word-spacing:41.886000px;}
.ws40{word-spacing:42.751800px;}
.ws80{word-spacing:43.407000px;}
.ws83{word-spacing:43.560000px;}
.ws44{word-spacing:44.793000px;}
.ws56{word-spacing:44.802000px;}
.wsb1{word-spacing:45.480000px;}
.ws7c{word-spacing:45.513000px;}
.wsad{word-spacing:45.720000px;}
.wsb2{word-spacing:46.200000px;}
.wsa3{word-spacing:47.280000px;}
.ws59{word-spacing:47.652000px;}
.ws76{word-spacing:47.853000px;}
.wsc0{word-spacing:48.000000px;}
.wsa0{word-spacing:48.480000px;}
.ws65{word-spacing:48.564000px;}
.wsb9{word-spacing:53.160000px;}
.ws7b{word-spacing:60.606000px;}
.ws6f{word-spacing:61.308000px;}
.wsbc{word-spacing:61.560000px;}
.wsac{word-spacing:61.920000px;}
.wsb5{word-spacing:64.560000px;}
.wscb{word-spacing:65.640000px;}
.ws5d{word-spacing:68.172000px;}
.wsb7{word-spacing:72.480000px;}
.ws51{word-spacing:72.576000px;}
.wsa7{word-spacing:72.960000px;}
.wsa6{word-spacing:73.560000px;}
.ws7e{word-spacing:74.178000px;}
.wsc4{word-spacing:74.400000px;}
.ws4e{word-spacing:74.730600px;}
.ws9a{word-spacing:76.200000px;}
.ws9b{word-spacing:79.080000px;}
.ws9d{word-spacing:88.320000px;}
.ws74{word-spacing:89.973000px;}
.ws58{word-spacing:95.760000px;}
.wsc9{word-spacing:99.480000px;}
.wsc8{word-spacing:100.200000px;}
.ws9f{word-spacing:102.000000px;}
.ws47{word-spacing:104.214600px;}
.ws7d{word-spacing:106.470000px;}
.ws9e{word-spacing:107.160000px;}
.wsbd{word-spacing:110.520000px;}
.wsae{word-spacing:114.480000px;}
.ws9c{word-spacing:134.760000px;}
.wsa2{word-spacing:152.880000px;}
.ws78{word-spacing:164.502000px;}
.ws7a{word-spacing:208.143000px;}
._39{margin-left:-55.132140px;}
._17{margin-left:-34.246430px;}
._37{margin-left:-30.571610px;}
._13{margin-left:-24.192000px;}
._19{margin-left:-23.019983px;}
._18{margin-left:-21.556800px;}
._34{margin-left:-18.970920px;}
._38{margin-left:-17.944420px;}
._33{margin-left:-16.672560px;}
._16{margin-left:-14.550715px;}
._15{margin-left:-12.718009px;}
._11{margin-left:-11.232000px;}
._2{margin-left:-9.448015px;}
._7{margin-left:-7.894800px;}
._1{margin-left:-6.174687px;}
._a{margin-left:-4.700196px;}
._0{margin-left:-3.248530px;}
._3{margin-left:-1.831860px;}
._4{width:1.099116px;}
._b{width:2.335860px;}
._5{width:3.883860px;}
._6{width:4.987330px;}
._29{width:5.999114px;}
._21{width:7.028244px;}
._22{width:8.078148px;}
._27{width:10.089768px;}
._14{width:11.617887px;}
._30{width:13.003560px;}
._1e{width:14.999760px;}
._23{width:16.649604px;}
._32{width:17.688960px;}
._1f{width:18.704880px;}
._1d{width:19.948040px;}
._1c{width:21.027125px;}
._31{width:22.373231px;}
._2e{width:23.382720px;}
._2f{width:24.419700px;}
._24{width:25.637040px;}
._2d{width:27.224640px;}
._26{width:29.342160px;}
._2a{width:31.171284px;}
._20{width:32.569200px;}
._35{width:34.671720px;}
._2c{width:41.520218px;}
._25{width:42.764724px;}
._1b{width:44.938838px;}
._1a{width:46.229312px;}
._e{width:84.816000px;}
._d{width:85.896000px;}
._28{width:102.158580px;}
._2b{width:167.412216px;}
._f{width:175.752000px;}
._36{width:183.528000px;}
._9{width:189.576000px;}
._10{width:195.624000px;}
._c{width:198.864000px;}
._8{width:201.168000px;}
._12{width:527.199936px;}
.fc10{color:rgb(194,30,36);}
.fcf{color:rgb(238,37,44);}
.fce{color:rgb(239,239,236);}
.fcd{color:rgb(41,71,163);}
.fc9{color:rgb(35,31,32);}
.fc6{color:rgb(30,54,95);}
.fcb{color:rgb(27,35,46);}
.fc2{color:rgb(4,6,6);}
.fc8{color:rgb(27,30,33);}
.fc3{color:rgb(91,200,201);}
.fc0{color:rgb(199,172,138);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(100,149,207);}
.fca{color:transparent;}
.fc7{color:rgb(41,79,126);}
.fc4{color:rgb(5,6,6);}
.fcc{color:rgb(120,51,24);}
.fs2b{font-size:18.000000px;}
.fs2a{font-size:23.760000px;}
.fs3c{font-size:24.205800px;}
.fs25{font-size:25.050600px;}
.fs2f{font-size:30.240000px;}
.fs21{font-size:31.882200px;}
.fs18{font-size:38.732400px;}
.fs27{font-size:38.880000px;}
.fs2c{font-size:41.760000px;}
.fs35{font-size:48.592200px;}
.fs39{font-size:49.145400px;}
.fs24{font-size:50.860200px;}
.fs2d{font-size:54.000000px;}
.fs38{font-size:59.083800px;}
.fs26{font-size:59.760000px;}
.fs46{font-size:60.000000px;}
.fs34{font-size:60.196800px;}
.fs14{font-size:61.039800px;}
.fs17{font-size:61.437000px;}
.fs11{font-size:63.360000px;}
.fs3f{font-size:64.849800px;}
.fs1a{font-size:65.412600px;}
.fs36{font-size:65.490600px;}
.fs13{font-size:66.000000px;}
.fsf{font-size:66.240000px;}
.fs32{font-size:66.723600px;}
.fs19{font-size:66.779400px;}
.fs3d{font-size:67.483200px;}
.fs23{font-size:69.837600px;}
.fs12{font-size:70.302600px;}
.fs1d{font-size:71.100600px;}
.fs37{font-size:71.185200px;}
.fsa{font-size:71.511600px;}
.fs3e{font-size:71.881800px;}
.fs30{font-size:71.999400px;}
.fs8{font-size:72.000000px;}
.fs33{font-size:72.526200px;}
.fs3b{font-size:73.351200px;}
.fs20{font-size:75.910200px;}
.fs15{font-size:77.626800px;}
.fs29{font-size:77.760000px;}
.fs16{font-size:78.132000px;}
.fs45{font-size:81.586200px;}
.fs1f{font-size:81.983400px;}
.fs1b{font-size:83.187600px;}
.fse{font-size:84.240000px;}
.fs3a{font-size:85.821000px;}
.fs22{font-size:88.815000px;}
.fs2e{font-size:90.000000px;}
.fsd{font-size:95.760000px;}
.fs1c{font-size:106.651200px;}
.fs7{font-size:108.000000px;}
.fs40{font-size:113.400000px;}
.fs10{font-size:113.760000px;}
.fs3{font-size:114.000000px;}
.fs42{font-size:117.000000px;}
.fs31{font-size:119.998800px;}
.fs9{font-size:120.000000px;}
.fs28{font-size:120.240000px;}
.fsb{font-size:126.000000px;}
.fs1e{font-size:126.770400px;}
.fs44{font-size:150.624000px;}
.fs2{font-size:183.186000px;}
.fsc{font-size:216.000000px;}
.fs1{font-size:247.979400px;}
.fs5{font-size:288.000000px;}
.fs41{font-size:290.923200px;}
.fs6{font-size:369.757200px;}
.fs0{font-size:628.950600px;}
.fs4{font-size:645.279000px;}
.fs43{font-size:662.147400px;}
.y9{bottom:-30.000000px;}
.y0{bottom:0.000000px;}
.y264{bottom:3.234450px;}
.y296{bottom:3.603750px;}
.y2fd{bottom:3.789000px;}
.y406{bottom:3.909000px;}
.y3f8{bottom:3.912000px;}
.y402{bottom:3.913050px;}
.y412{bottom:3.913350px;}
.y511{bottom:3.914850px;}
.y3fc{bottom:3.915600px;}
.y40e{bottom:3.915750px;}
.y40a{bottom:3.916800px;}
.y362{bottom:3.949500px;}
.y258{bottom:3.951150px;}
.y456{bottom:3.951600px;}
.y26a{bottom:3.952050px;}
.y496{bottom:3.952500px;}
.y2d4{bottom:3.952650px;}
.y39d{bottom:3.953100px;}
.y3c0{bottom:3.953400px;}
.y46f{bottom:3.954000px;}
.y2e0{bottom:3.954150px;}
.y1f1{bottom:3.954750px;}
.y502{bottom:3.954900px;}
.y25c{bottom:3.955350px;}
.y1c2{bottom:3.955650px;}
.y2c9{bottom:3.955950px;}
.y1be{bottom:3.957150px;}
.y46b{bottom:3.957300px;}
.y2ce{bottom:3.957450px;}
.y1d0{bottom:3.957600px;}
.y4f3{bottom:3.957900px;}
.y48a{bottom:3.958050px;}
.y45b{bottom:3.958650px;}
.y1b9{bottom:3.958950px;}
.y24e{bottom:3.959100px;}
.y245{bottom:3.959550px;}
.y4fe{bottom:3.959700px;}
.y3b5{bottom:3.960000px;}
.y1dc{bottom:3.960300px;}
.y26f{bottom:3.960600px;}
.y477{bottom:3.961050px;}
.y486{bottom:3.961350px;}
.y3a6{bottom:3.961500px;}
.y343{bottom:3.961650px;}
.y374{bottom:3.961950px;}
.y34f{bottom:3.962100px;}
.y1b3{bottom:3.962250px;}
.y24a{bottom:3.962400px;}
.y2d8{bottom:3.962550px;}
.y4fa{bottom:3.963000px;}
.y252{bottom:3.963300px;}
.y1d5{bottom:3.963600px;}
.y1ec{bottom:3.963750px;}
.y260{bottom:3.963900px;}
.y1c7{bottom:3.964050px;}
.y482{bottom:3.964650px;}
.y506{bottom:3.964950px;}
.y370{bottom:3.965250px;}
.y34a{bottom:3.965400px;}
.y1e7{bottom:3.965550px;}
.y4e6{bottom:3.965850px;}
.y48e{bottom:3.966450px;}
.y37c{bottom:3.967200px;}
.y47f{bottom:3.967950px;}
.y390{bottom:3.968100px;}
.y3b9{bottom:3.968400px;}
.y45f{bottom:3.968550px;}
.y35e{bottom:3.968700px;}
.y275{bottom:3.969000px;}
.y50a{bottom:3.969150px;}
.y397{bottom:3.969600px;}
.y3bc{bottom:3.969900px;}
.y1e2{bottom:3.970350px;}
.y4ed{bottom:3.970950px;}
.y3c9{bottom:3.971850px;}
.y27f{bottom:3.974550px;}
.y3dc{bottom:3.983400px;}
.y3ec{bottom:3.984600px;}
.y3e0{bottom:3.992550px;}
.y3f0{bottom:3.995100px;}
.y3d8{bottom:3.999300px;}
.y3e4{bottom:4.000050px;}
.y3e8{bottom:4.001850px;}
.y112{bottom:4.158750px;}
.y139{bottom:4.169400px;}
.y146{bottom:4.175550px;}
.y135{bottom:4.176450px;}
.y11a{bottom:4.176750px;}
.y13b{bottom:4.177950px;}
.y11e{bottom:4.181400px;}
.y131{bottom:4.182000px;}
.y125{bottom:4.182900px;}
.y129{bottom:4.183500px;}
.y11c{bottom:4.183800px;}
.y13d{bottom:4.185750px;}
.y133{bottom:4.189050px;}
.y268{bottom:4.327050px;}
.y15c{bottom:4.446150px;}
.y44c{bottom:4.494000px;}
.y2b6{bottom:4.494750px;}
.y28e{bottom:4.494900px;}
.y32f{bottom:4.496700px;}
.y327{bottom:4.499100px;}
.y2b1{bottom:4.500450px;}
.y292{bottom:4.501500px;}
.y42a{bottom:4.501800px;}
.y29a{bottom:4.502400px;}
.y28a{bottom:4.502850px;}
.y448{bottom:4.503300px;}
.y452{bottom:4.503750px;}
.y30c{bottom:4.505100px;}
.y331{bottom:4.505550px;}
.y43e{bottom:4.506600px;}
.y320{bottom:4.507050px;}
.y2a7{bottom:4.507500px;}
.y41a{bottom:4.507800px;}
.y311{bottom:4.507950px;}
.y1ff{bottom:4.508100px;}
.y438{bottom:4.508400px;}
.y422{bottom:4.508700px;}
.y2f3{bottom:4.509000px;}
.y302{bottom:4.509900px;}
.y41e{bottom:4.510200px;}
.y218{bottom:4.511400px;}
.y329{bottom:4.512150px;}
.y31a{bottom:4.512600px;}
.y442{bottom:4.512750px;}
.y426{bottom:4.513350px;}
.y2ac{bottom:4.513500px;}
.y27b{bottom:4.513650px;}
.y306{bottom:4.514550px;}
.y29e{bottom:4.516500px;}
.y235{bottom:4.517100px;}
.y1a2{bottom:4.754100px;}
.y1ab{bottom:4.759050px;}
.y175{bottom:4.761600px;}
.y168{bottom:4.784250px;}
.y15f{bottom:4.785000px;}
.y14f{bottom:4.787550px;}
.y155{bottom:4.791000px;}
.y152{bottom:4.795200px;}
.y165{bottom:4.799400px;}
.y207{bottom:4.847400px;}
.y49f{bottom:4.851150px;}
.y4a5{bottom:4.857300px;}
.y521{bottom:4.884150px;}
.y525{bottom:4.885350px;}
.y3d2{bottom:4.888350px;}
.y51c{bottom:4.890300px;}
.y52e{bottom:4.892550px;}
.y516{bottom:4.900500px;}
.y4d1{bottom:4.934700px;}
.y193{bottom:5.105100px;}
.y16d{bottom:5.107800px;}
.y184{bottom:5.108700px;}
.y199{bottom:5.110650px;}
.y197{bottom:5.114100px;}
.y19b{bottom:5.115900px;}
.y187{bottom:5.121900px;}
.y195{bottom:5.123550px;}
.yff{bottom:5.138700px;}
.y116{bottom:5.157150px;}
.y241{bottom:5.214000px;}
.y2ba{bottom:5.215050px;}
.y324{bottom:5.215200px;}
.y369{bottom:5.226000px;}
.y364{bottom:5.226750px;}
.y127{bottom:5.338050px;}
.ya8{bottom:5.565600px;}
.yad{bottom:5.567400px;}
.yb5{bottom:5.571450px;}
.y8f{bottom:5.573100px;}
.y94{bottom:5.574900px;}
.yc2{bottom:5.581650px;}
.y109{bottom:5.644350px;}
.y107{bottom:5.644650px;}
.y10f{bottom:5.645100px;}
.y114{bottom:5.648100px;}
.y99{bottom:5.741400px;}
.y9e{bottom:5.741850px;}
.ya3{bottom:5.755350px;}
.ybb{bottom:5.757150px;}
.y14c{bottom:5.860050px;}
.y151{bottom:6.229950px;}
.y167{bottom:6.230700px;}
.y15e{bottom:6.231450px;}
.y14e{bottom:6.234150px;}
.ya0{bottom:6.481500px;}
.yb8{bottom:6.481650px;}
.y91{bottom:6.488550px;}
.ya5{bottom:6.490800px;}
.y9b{bottom:6.491250px;}
.yaa{bottom:6.492750px;}
.yb2{bottom:6.495300px;}
.ybf{bottom:6.496800px;}
.y101{bottom:6.634800px;}
.y96{bottom:6.676950px;}
.y209{bottom:7.011600px;}
.y4d7{bottom:7.226100px;}
.y118{bottom:7.516050px;}
.y223{bottom:8.083350px;}
.y4af{bottom:8.088750px;}
.y20c{bottom:8.267850px;}
.y220{bottom:8.272650px;}
.y4ad{bottom:8.474700px;}
.y338{bottom:9.180000px;}
.y224{bottom:9.559800px;}
.y20d{bottom:9.732750px;}
.y498{bottom:10.620150px;}
.y1f7{bottom:10.630050px;}
.y16b{bottom:11.206500px;}
.y2a1{bottom:12.241950px;}
.y148{bottom:16.704000px;}
.y33f{bottom:17.998050px;}
.yaf{bottom:18.002400px;}
.y4be{bottom:18.005100px;}
.y23c{bottom:18.011400px;}
.yc4{bottom:18.013950px;}
.y4d3{bottom:18.338550px;}
.y3a9{bottom:19.258800px;}
.y3ac{bottom:19.267500px;}
.y2a0{bottom:19.624800px;}
.y263{bottom:21.597750px;}
.y267{bottom:21.600600px;}
.y3a0{bottom:22.128750px;}
.y2e3{bottom:22.131450px;}
.y358{bottom:22.133250px;}
.y377{bottom:22.137750px;}
.y465{bottom:22.139550px;}
.y2e9{bottom:22.139850px;}
.y393{bottom:22.143750px;}
.y396{bottom:22.145250px;}
.y27e{bottom:22.150350px;}
.y455{bottom:22.150800px;}
.y3b4{bottom:22.311600px;}
.y2c1{bottom:22.315500px;}
.y430{bottom:22.318800px;}
.y1c1{bottom:22.318950px;}
.y2cd{bottom:22.320600px;}
.y3bb{bottom:22.321500px;}
.y387{bottom:22.323900px;}
.y249{bottom:22.325700px;}
.y1d7{bottom:22.326900px;}
.y269{bottom:22.327050px;}
.y2df{bottom:22.329150px;}
.y3e7{bottom:22.488300px;}
.y295{bottom:22.506150px;}
.y244{bottom:22.686150px;}
.y342{bottom:22.688250px;}
.y294{bottom:23.760000px;}
.y27a{bottom:24.130800px;}
.y28d{bottom:24.487200px;}
.y41d{bottom:24.490650px;}
.y291{bottom:24.669450px;}
.y299{bottom:24.670500px;}
.y29d{bottom:24.672750px;}
.y234{bottom:24.673350px;}
.y44b{bottom:24.673650px;}
.y186{bottom:24.866550px;}
.y29c{bottom:26.102400px;}
.y28c{bottom:26.104350px;}
.y290{bottom:26.286750px;}
.y298{bottom:26.287650px;}
.y173{bottom:26.370900px;}
.y524{bottom:26.568000px;}
.y3d1{bottom:26.998650px;}
.y21d{bottom:27.899250px;}
.y239{bottom:27.903300px;}
.y4bb{bottom:27.910350px;}
.y43{bottom:28.454400px;}
.y60{bottom:28.464000px;}
.y3cc{bottom:28.568130px;}
.ya7{bottom:31.124100px;}
.yac{bottom:31.126050px;}
.y93{bottom:31.309350px;}
.y98{bottom:31.311750px;}
.y9d{bottom:31.312050px;}
.ya2{bottom:31.314000px;}
.yba{bottom:31.315650px;}
.yc1{bottom:31.316100px;}
.yb4{bottom:31.317600px;}
.y240{bottom:32.952300px;}
.y2b9{bottom:32.953350px;}
.y323{bottom:32.953500px;}
.y1f9{bottom:33.480600px;}
.yb1{bottom:35.827350px;}
.yb7{bottom:35.837100px;}
.y49a{bottom:38.160900px;}
.y400{bottom:40.039050px;}
.y405{bottom:40.046700px;}
.y409{bottom:40.054500px;}
.y3fa{bottom:40.054800px;}
.y40d{bottom:40.213200px;}
.y3f6{bottom:40.222500px;}
.y411{bottom:40.223850px;}
.y3a4{bottom:40.488750px;}
.y2e7{bottom:40.489950px;}
.y25f{bottom:40.491150px;}
.y47d{bottom:40.495200px;}
.y3b8{bottom:40.495800px;}
.y509{bottom:40.496400px;}
.y459{bottom:40.497750px;}
.y1b7{bottom:40.498050px;}
.y1da{bottom:40.499400px;}
.y4de{bottom:40.499700px;}
.y361{bottom:40.500150px;}
.y373{bottom:40.501050px;}
.y34d{bottom:40.501200px;}
.y4f9{bottom:40.502100px;}
.y251{bottom:40.502400px;}
.y462{bottom:40.502850px;}
.y39b{bottom:40.503750px;}
.y4f6{bottom:40.503900px;}
.y1ef{bottom:40.505550px;}
.y25b{bottom:40.506150px;}
.y45e{bottom:40.507650px;}
.y46a{bottom:40.508100px;}
.y354{bottom:40.508250px;}
.y282{bottom:40.510350px;}
.y4fd{bottom:40.510500px;}
.y2c4{bottom:40.511400px;}
.y273{bottom:40.672050px;}
.y3c8{bottom:40.674900px;}
.y1ca{bottom:40.677150px;}
.y2d7{bottom:40.677450px;}
.y256{bottom:40.677750px;}
.y37f{bottom:40.678650px;}
.y1c5{bottom:40.678950px;}
.y2d3{bottom:40.679100px;}
.y505{bottom:40.679700px;}
.y3bf{bottom:40.680000px;}
.y1e5{bottom:40.680300px;}
.y46e{bottom:40.680600px;}
.y48d{bottom:40.681350px;}
.y501{bottom:40.681500px;}
.y2c8{bottom:40.682400px;}
.y35d{bottom:40.683450px;}
.y1bc{bottom:40.683750px;}
.y4e1{bottom:40.683900px;}
.y1ce{bottom:40.684050px;}
.y489{bottom:40.684650px;}
.y1e0{bottom:40.685100px;}
.y24d{bottom:40.685700px;}
.y4ec{bottom:40.685850px;}
.y472{bottom:40.686150px;}
.y26d{bottom:40.687050px;}
.y485{bottom:40.687950px;}
.y3c4{bottom:40.688400px;}
.y4e9{bottom:40.689000px;}
.y1ea{bottom:40.690350px;}
.y3d6{bottom:40.793250px;}
.y3df{bottom:40.798200px;}
.y3db{bottom:40.800750px;}
.y3e3{bottom:40.971150px;}
.y3eb{bottom:40.980600px;}
.y3ef{bottom:40.989750px;}
.y2bd{bottom:41.040600px;}
.y36e{bottom:41.043450px;}
.y2db{bottom:41.045550px;}
.y2ee{bottom:41.218350px;}
.y1f3{bottom:41.219850px;}
.y4d6{bottom:41.222250px;}
.y110{bottom:41.306400px;}
.y1d3{bottom:41.393250px;}
.y4da{bottom:41.395050px;}
.y137{bottom:41.580750px;}
.y2fb{bottom:41.757750px;}
.y8a{bottom:42.297750px;}
.y38e{bottom:42.839100px;}
.y3b0{bottom:43.031850px;}
.y441{bottom:44.649450px;}
.y2aa{bottom:44.650200px;}
.y314{bottom:44.650800px;}
.y31e{bottom:44.819550px;}
.y2a5{bottom:44.820000px;}
.y418{bottom:44.820300px;}
.y30f{bottom:44.820450px;}
.y421{bottom:44.821200px;}
.y2f1{bottom:44.821500px;}
.y300{bottom:44.822400px;}
.y219{bottom:44.823900px;}
.y2af{bottom:44.824650px;}
.y318{bottom:44.825100px;}
.y425{bottom:44.825850px;}
.y429{bottom:44.826000px;}
.y288{bottom:44.827050px;}
.y236{bottom:44.829600px;}
.y2b4{bottom:44.830650px;}
.y2f6{bottom:44.831850px;}
.y42d{bottom:44.832000px;}
.y436{bottom:44.832750px;}
.y50f{bottom:46.096500px;}
.y172{bottom:46.509600px;}
.y103{bottom:46.788900px;}
.y1a9{bottom:47.630700px;}
.y1fd{bottom:47.691600px;}
.y163{bottom:48.161700px;}
.y514{bottom:48.454650px;}
.y528{bottom:48.631500px;}
.y52c{bottom:48.638700px;}
.y51f{bottom:48.655200px;}
.y49d{bottom:48.761250px;}
.y161{bottom:49.608900px;}
.y42{bottom:50.054400px;}
.y5f{bottom:50.064000px;}
.y3cb{bottom:50.167950px;}
.y149{bottom:55.495500px;}
.y166{bottom:56.029500px;}
.y46{bottom:56.399400px;}
.y8d{bottom:56.866050px;}
.y4c3{bottom:57.934950px;}
.y347{bottom:58.855950px;}
.y37b{bottom:58.857750px;}
.y493{bottom:58.866450px;}
.y170{bottom:60.150150px;}
.y478{bottom:61.647000px;}
.y10c{bottom:62.040600px;}
.y2ed{bottom:62.818350px;}
.y1f2{bottom:62.819850px;}
.y1b0{bottom:63.341100px;}
.y86{bottom:63.884100px;}
.y44f{bottom:64.808400px;}
.y33b{bottom:64.981350px;}
.y445{bottom:64.983750px;}
.ybd{bottom:64.985100px;}
.y309{bottom:64.985550px;}
.y22e{bottom:64.985850px;}
.y43b{bottom:64.987050px;}
.y4f0{bottom:65.141400px;}
.y61{bottom:66.875250px;}
.yfb{bottom:68.964150px;}
.yc3{bottom:69.654000px;}
.y492{bottom:69.925500px;}
.y519{bottom:70.522650px;}
.y1a6{bottom:71.526600px;}
.y44{bottom:74.392050px;}
.yfa{bottom:74.393550px;}
.y3cd{bottom:74.497500px;}
.y4c1{bottom:75.173250px;}
.ya{bottom:76.003350px;}
.y4d4{bottom:76.265700px;}
.y413{bottom:77.964900px;}
.y160{bottom:78.603000px;}
.y120{bottom:78.809400px;}
.y12b{bottom:78.973350px;}
.y13f{bottom:78.976350px;}
.y5f6{bottom:79.521900px;}
.y5ce{bottom:79.523400px;}
.y56c{bottom:79.524900px;}
.y16f{bottom:83.328450px;}
.y157{bottom:84.086700px;}
.y32b{bottom:84.969300px;}
.y22c{bottom:85.153800px;}
.y284{bottom:87.147900px;}
.y1f4{bottom:87.149400px;}
.y334{bottom:90.540000px;}
.y495{bottom:92.246670px;}
.y59a{bottom:92.280750px;}
.y14{bottom:92.327010px;}
.y201{bottom:92.866950px;}
.yf9{bottom:92.941200px;}
.y3ce{bottom:94.790100px;}
.y340{bottom:97.322700px;}
.y4c0{bottom:98.836350px;}
.y5f3{bottom:100.831050px;}
.y491{bottom:101.416950px;}
.y4a1{bottom:102.591600px;}
.yc0{bottom:104.035500px;}
.y164{bottom:105.077700px;}
.y162{bottom:108.294450px;}
.y23e{bottom:109.461150px;}
.y2b7{bottom:109.462650px;}
.y1ad{bottom:109.464150px;}
.y38a{bottom:109.464900px;}
.y494{bottom:110.428650px;}
.y4a6{bottom:114.122850px;}
.y19d{bottom:117.075450px;}
.y360{bottom:121.428000px;}
.y568{bottom:122.292450px;}
.y54d{bottom:123.591750px;}
.y20f{bottom:123.820050px;}
.y226{bottom:123.825600px;}
.y4b4{bottom:125.281500px;}
.y212{bottom:125.284800px;}
.y229{bottom:125.466300px;}
.y4b1{bottom:128.164350px;}
.yf8{bottom:132.541200px;}
.y58b{bottom:135.676200px;}
.y5f2{bottom:136.831050px;}
.y5cc{bottom:141.528750px;}
.y35f{bottom:143.576700px;}
.y15d{bottom:144.372000px;}
.y1c{bottom:145.162950px;}
.y3f1{bottom:147.931650px;}
.y490{bottom:151.645500px;}
.yf7{bottom:152.341200px;}
.ybc{bottom:156.054000px;}
.y567{bottom:156.492450px;}
.y54c{bottom:157.611750px;}
.y5c{bottom:163.012170px;}
.y5f5{bottom:165.429948px;}
.y156{bottom:166.768500px;}
.y58a{bottom:170.776200px;}
.y410{bottom:171.595500px;}
.yf6{bottom:172.141200px;}
.y5f1{bottom:172.831050px;}
.y5fe{bottom:173.642550px;}
.y48f{bottom:173.791950px;}
.y5cb{bottom:177.528750px;}
.y242{bottom:178.762200px;}
.y35c{bottom:184.608000px;}
.y177{bottom:190.338150px;}
.y566{bottom:190.692450px;}
.y15b{bottom:191.142300px;}
.y54b{bottom:191.631750px;}
.ybe{bottom:191.882850px;}
.yf5{bottom:191.941200px;}
.y40f{bottom:193.662600px;}
.y169{bottom:195.176550px;}
.y17c{bottom:196.417200px;}
.y25e{bottom:202.876500px;}
.y5b5{bottom:203.081550px;}
.y13{bottom:203.254170px;}
.y589{bottom:205.876200px;}
.y4c8{bottom:206.472300px;}
.y35b{bottom:206.928150px;}
.y56e{bottom:207.185518px;}
.y431{bottom:207.525900px;}
.y5f0{bottom:208.831050px;}
.y4d8{bottom:211.028250px;}
.y15a{bottom:211.046700px;}
.y159{bottom:211.048416px;}
.yf4{bottom:211.741200px;}
.y367{bottom:212.429400px;}
.y1f5{bottom:212.430900px;}
.y50b{bottom:212.431650px;}
.y2d9{bottom:212.938500px;}
.y5ca{bottom:213.528750px;}
.y18a{bottom:213.685650px;}
.y1d1{bottom:214.227600px;}
.y48c{bottom:214.825500px;}
.y58c{bottom:220.575057px;}
.y565{bottom:224.892450px;}
.y1ac{bottom:224.907000px;}
.y25d{bottom:225.016050px;}
.y54a{bottom:225.651750px;}
.y5e{bottom:228.795450px;}
.y158{bottom:230.950200px;}
.yf3{bottom:231.541200px;}
.y44e{bottom:231.651000px;}
.y40c{bottom:234.238500px;}
.y4eb{bottom:234.948000px;}
.y2eb{bottom:237.052500px;}
.y48b{bottom:237.143550px;}
.y1ee{bottom:238.327500px;}
.y7{bottom:240.568350px;}
.y588{bottom:240.976200px;}
.y1a5{bottom:242.166000px;}
.yb9{bottom:244.614000px;}
.y5ef{bottom:244.831050px;}
.y1b{bottom:246.628950px;}
.y5b{bottom:248.826090px;}
.y5c9{bottom:249.528750px;}
.y2ea{bottom:250.004850px;}
.yf2{bottom:251.341200px;}
.y451{bottom:256.303530px;}
.y40b{bottom:256.309500px;}
.y4ea{bottom:257.270550px;}
.y564{bottom:259.092450px;}
.y35a{bottom:259.662600px;}
.y549{bottom:259.671750px;}
.y1f0{bottom:260.469750px;}
.y41{bottom:264.776400px;}
.y1ed{bottom:264.969750px;}
.y44d{bottom:266.213400px;}
.y25a{bottom:266.236500px;}
.y154{bottom:267.021000px;}
.y1aa{bottom:268.175550px;}
.yf1{bottom:271.141200px;}
.y587{bottom:276.076200px;}
.y450{bottom:276.291450px;}
.y488{bottom:278.185500px;}
.y5ee{bottom:280.831050px;}
.y2e8{bottom:282.052500px;}
.y5c8{bottom:285.528750px;}
.y40{bottom:286.376400px;}
.y8{bottom:288.134850px;}
.y259{bottom:288.367650px;}
.y153{bottom:289.417500px;}
.y359{bottom:290.088000px;}
.y1a7{bottom:290.551050px;}
.yf0{bottom:290.941200px;}
.y563{bottom:293.292450px;}
.y548{bottom:293.691750px;}
.yb6{bottom:296.635500px;}
.y408{bottom:296.883000px;}
.y4e8{bottom:298.308000px;}
.y487{bottom:300.506850px;}
.y2a3{bottom:300.973950px;}
.y1e9{bottom:301.506000px;}
.y4d{bottom:306.395550px;}
.yfd{bottom:307.856550px;}
.y3f{bottom:307.976400px;}
.y1a8{bottom:308.587500px;}
.yef{bottom:310.741200px;}
.y586{bottom:311.176200px;}
.y150{bottom:311.814000px;}
.y12{bottom:314.181330px;}
.y5ed{bottom:316.831050px;}
.y407{bottom:318.943350px;}
.y44a{bottom:320.571000px;}
.y4e7{bottom:320.633850px;}
.y5c7{bottom:321.528750px;}
.y1eb{bottom:323.833050px;}
.y2e6{bottom:327.054000px;}
.y562{bottom:327.492450px;}
.y547{bottom:327.711750px;}
.y1e8{bottom:328.333050px;}
.y255{bottom:329.416500px;}
.y3e{bottom:329.576400px;}
.yee{bottom:330.541200px;}
.y19c{bottom:332.499000px;}
.y14d{bottom:334.387500px;}
.y357{bottom:335.088000px;}
.y449{bottom:335.166450px;}
.y4d2{bottom:339.553500px;}
.y484{bottom:341.545500px;}
.y85{bottom:342.063750px;}
.y585{bottom:346.276200px;}
.y14a{bottom:347.327700px;}
.y356{bottom:348.232950px;}
.y2e5{bottom:349.368150px;}
.yed{bottom:350.341200px;}
.y3d{bottom:351.176400px;}
.y254{bottom:351.738900px;}
.y257{bottom:351.742650px;}
.y147{bottom:352.609500px;}
.y5fd{bottom:352.767600px;}
.y5ec{bottom:352.831050px;}
.yb3{bottom:356.034000px;}
.y5a{bottom:356.093490px;}
.y1a{bottom:356.680950px;}
.y14b{bottom:356.784000px;}
.y5c6{bottom:357.528750px;}
.y1a1{bottom:358.503600px;}
.y4e{bottom:358.595250px;}
.y404{bottom:359.526000px;}
.y4e5{bottom:361.668000px;}
.y561{bottom:361.692450px;}
.y546{bottom:361.731750px;}
.y483{bottom:363.870150px;}
.y1e4{bottom:364.867500px;}
.y444{bottom:369.171000px;}
.yec{bottom:370.141200px;}
.y3c{bottom:372.776400px;}
.y4c7{bottom:374.578500px;}
.y286{bottom:377.650950px;}
.y353{bottom:380.088000px;}
.y1a0{bottom:380.134956px;}
.y84{bottom:381.139500px;}
.y584{bottom:381.376200px;}
.y403{bottom:381.588900px;}
.y6{bottom:381.741150px;}
.y1a4{bottom:383.575360px;}
.y4e4{bottom:383.997000px;}
.y13e{bottom:384.496500px;}
.y1e6{bottom:387.196350px;}
.yc5{bottom:387.320100px;}
.y5e5{bottom:388.831050px;}
.y3ad{bottom:389.319000px;}
.yeb{bottom:389.941200px;}
.y2e4{bottom:390.412500px;}
.y1e3{bottom:391.684500px;}
.y352{bottom:393.231930px;}
.y5c5{bottom:393.528750px;}
.y447{bottom:393.828420px;}
.y3b{bottom:394.376400px;}
.y5fc{bottom:395.112600px;}
.y545{bottom:395.751750px;}
.y560{bottom:395.892450px;}
.y3c7{bottom:397.597500px;}
.y68{bottom:400.808250px;}
.y4d0{bottom:401.906948px;}
.y355{bottom:402.408750px;}
.y83{bottom:402.739500px;}
.y19f{bottom:403.268589px;}
.y443{bottom:403.920450px;}
.y253{bottom:404.477100px;}
.y1a3{bottom:404.823450px;}
.y481{bottom:404.905500px;}
.y143{bottom:405.714900px;}
.y145{bottom:407.388450px;}
.yb0{bottom:408.055500px;}
.yea{bottom:409.741200px;}
.y351{bottom:411.413910px;}
.y446{bottom:413.998500px;}
.y4c{bottom:414.395550px;}
.y3a{bottom:415.976400px;}
.y583{bottom:416.476200px;}
.y69{bottom:418.311000px;}
.y3c6{bottom:419.920950px;}
.y3ff{bottom:422.167500px;}
.y4cf{bottom:424.279064px;}
.y82{bottom:424.339500px;}
.y142{bottom:424.713900px;}
.y3ae{bottom:424.809000px;}
.y5e4{bottom:424.831050px;}
.y4e3{bottom:425.028000px;}
.y11{bottom:425.108490px;}
.y144{bottom:426.083550px;}
.y141{bottom:426.085693px;}
.y19e{bottom:426.421200px;}
.y480{bottom:427.233450px;}
.y1df{bottom:428.226000px;}
.y5c4{bottom:429.528750px;}
.ye9{bottom:429.541200px;}
.y544{bottom:429.771750px;}
.y55f{bottom:430.092450px;}
.y5fb{bottom:433.962600px;}
.y250{bottom:434.896500px;}
.y3fe{bottom:435.155533px;}
.y2e2{bottom:435.412500px;}
.y5{bottom:436.696950px;}
.y39{bottom:437.576400px;}
.y4e2{bottom:438.172800px;}
.y38c{bottom:439.578750px;}
.y1de{bottom:441.374040px;}
.y401{bottom:444.063000px;}
.y140{bottom:444.777900px;}
.y81{bottom:445.939500px;}
.y4ce{bottom:446.632842px;}
.y2e1{bottom:448.555650px;}
.ye8{bottom:449.341200px;}
.y1e1{bottom:450.547800px;}
.y2ec{bottom:450.886200px;}
.y582{bottom:451.576200px;}
.y3fd{bottom:453.146550px;}
.y5e6{bottom:454.521900px;}
.y17{bottom:454.582950px;}
.y350{bottom:454.978950px;}
.y24f{bottom:457.035600px;}
.y440{bottom:458.271000px;}
.y1dd{bottom:459.735300px;}
.y5e3{bottom:460.831050px;}
.y3c3{bottom:460.959000px;}
.y59{bottom:463.360890px;}
.y543{bottom:463.791750px;}
.y55e{bottom:464.292450px;}
.y58f{bottom:464.903250px;}
.y5c3{bottom:465.528750px;}
.y80{bottom:467.539500px;}
.y47c{bottom:468.265500px;}
.y19a{bottom:468.378000px;}
.y4cd{bottom:469.023296px;}
.ye7{bottom:469.141200px;}
.y4e0{bottom:470.028000px;}
.y30d{bottom:470.151900px;}
.y23b{bottom:470.700000px;}
.y3ca{bottom:471.379350px;}
.y366{bottom:471.659250px;}
.y67{bottom:472.808250px;}
.y3c2{bottom:474.113580px;}
.y5fa{bottom:474.477600px;}
.yc9{bottom:477.229950px;}
.y13c{bottom:478.656000px;}
.y88{bottom:479.302050px;}
.y2de{bottom:480.414000px;}
.y321{bottom:480.669450px;}
.y38{bottom:480.776400px;}
.y43f{bottom:482.940000px;}
.y3c5{bottom:483.272400px;}
.y23d{bottom:484.135200px;}
.y3f9{bottom:484.810500px;}
.y34c{bottom:485.388000px;}
.y581{bottom:486.676200px;}
.ye6{bottom:488.941200px;}
.y7f{bottom:489.139500px;}
.y47e{bottom:490.584900px;}
.y47b{bottom:490.591770px;}
.y4cc{bottom:491.377074px;}
.y1d9{bottom:491.587500px;}
.y198{bottom:492.291000px;}
.y4df{bottom:492.348600px;}
.y3c1{bottom:492.459900px;}
.y2dd{bottom:493.555650px;}
.y31d{bottom:494.262000px;}
.y5e2{bottom:496.831050px;}
.y542{bottom:497.811750px;}
.y13a{bottom:498.021000px;}
.y24c{bottom:498.076500px;}
.y55d{bottom:498.492450px;}
.y5c2{bottom:501.528750px;}
.yae{bottom:502.147500px;}
.y37{bottom:502.376400px;}
.y238{bottom:505.081500px;}
.y3fb{bottom:506.696850px;}
.y34e{bottom:507.713400px;}
.ye5{bottom:508.741200px;}
.y31c{bottom:510.103140px;}
.y7e{bottom:510.739500px;}
.y34b{bottom:512.201700px;}
.y23a{bottom:513.168450px;}
.y4cb{bottom:513.749190px;}
.y1db{bottom:513.911100px;}
.y196{bottom:516.393000px;}
.y136{bottom:517.387500px;}
.y1d8{bottom:518.411100px;}
.y31f{bottom:518.925300px;}
.y24b{bottom:520.398900px;}
.y580{bottom:521.776200px;}
.y36{bottom:523.976400px;}
.y3be{bottom:524.319000px;}
.y2da{bottom:525.412500px;}
.y43a{bottom:527.031000px;}
.y31b{bottom:528.464400px;}
.ye4{bottom:528.541200px;}
.y5f9{bottom:529.538340px;}
.y541{bottom:531.831750px;}
.y7d{bottom:532.339500px;}
.y55c{bottom:532.692450px;}
.y5e1{bottom:532.831050px;}
.y4dd{bottom:533.388000px;}
.y453{bottom:534.750000px;}
.y10{bottom:536.035650px;}
.y4ca{bottom:536.304684px;}
.yab{bottom:536.707500px;}
.y5c1{bottom:537.528750px;}
.y47a{bottom:538.280250px;}
.y225{bottom:539.460000px;}
.y138{bottom:540.273900px;}
.y194{bottom:540.303000px;}
.y3bd{bottom:546.647400px;}
.y479{bottom:546.676200px;}
.y3f5{bottom:547.276500px;}
.y2dc{bottom:547.743150px;}
.y50d{bottom:548.308350px;}
.ye3{bottom:548.341200px;}
.y346{bottom:548.748000px;}
.y43d{bottom:551.696580px;}
.y7c{bottom:553.939500px;}
.y5f8{bottom:554.014200px;}
.y4f{bottom:554.437427px;}
.y1d6{bottom:554.947500px;}
.y4dc{bottom:555.711900px;}
.y57f{bottom:556.876200px;}
.y4{bottom:558.260160px;}
.y4c9{bottom:558.676800px;}
.y476{bottom:558.867000px;}
.y54e{bottom:560.084400px;}
.y3f4{bottom:560.275373px;}
.y248{bottom:561.436500px;}
.y439{bottom:561.771900px;}
.y58d{bottom:562.853100px;}
.y317{bottom:563.022000px;}
.y237{bottom:564.133350px;}
.y233{bottom:564.139410px;}
.y189{bottom:564.216000px;}
.y540{bottom:565.851750px;}
.y55b{bottom:566.892450px;}
.y230{bottom:567.004350px;}
.y35{bottom:567.176400px;}
.ye2{bottom:568.141200px;}
.y66{bottom:568.802250px;}
.y5e0{bottom:568.831050px;}
.y3f7{bottom:569.353950px;}
.y58{bottom:570.628290px;}
.y349{bottom:571.070520px;}
.y43c{bottom:571.850100px;}
.y5c0{bottom:573.528750px;}
.y134{bottom:574.150500px;}
.y247{bottom:574.568310px;}
.y7b{bottom:575.539500px;}
.y5cf{bottom:575.607450px;}
.y5b1{bottom:575.608950px;}
.y3f3{bottom:578.414100px;}
.y345{bottom:580.065000px;}
.y5f7{bottom:580.589400px;}
.y475{bottom:581.179650px;}
.y16{bottom:584.182950px;}
.y22f{bottom:584.289600px;}
.y232{bottom:584.292930px;}
.y36b{bottom:585.126000px;}
.y3ba{bottom:587.677500px;}
.y319{bottom:587.690850px;}
.ye1{bottom:587.941200px;}
.ya9{bottom:588.727500px;}
.y34{bottom:588.776400px;}
.y348{bottom:589.252500px;}
.y57e{bottom:591.976200px;}
.y57{bottom:592.081770px;}
.y192{bottom:592.471220px;}
.y316{bottom:592.542450px;}
.y599{bottom:592.548300px;}
.y132{bottom:593.517000px;}
.y4d9{bottom:596.746500px;}
.y7a{bottom:597.139500px;}
.y4bf{bottom:598.485000px;}
.y53f{bottom:599.871750px;}
.y1d2{bottom:599.947500px;}
.y55a{bottom:601.092450px;}
.y2a2{bottom:603.505500px;}
.y22d{bottom:604.445850px;}
.y231{bottom:604.446450px;}
.y5df{bottom:604.831050px;}
.y4c6{bottom:606.001500px;}
.ye0{bottom:607.741200px;}
.y5bf{bottom:609.528750px;}
.y33{bottom:610.376400px;}
.y2b3{bottom:611.785500px;}
.y130{bottom:612.882000px;}
.y228{bottom:612.890400px;}
.y191{bottom:615.623831px;}
.y435{bottom:615.951000px;}
.y246{bottom:618.133350px;}
.y79{bottom:618.739500px;}
.ya6{bottom:618.787500px;}
.y4db{bottom:619.075200px;}
.y3f2{bottom:620.588400px;}
.y474{bottom:622.227000px;}
.y1d4{bottom:622.274400px;}
.y22b{bottom:624.616530px;}
.y4c5{bottom:624.710400px;}
.y57d{bottom:627.076200px;}
.ydf{bottom:627.541200px;}
.y598{bottom:628.548300px;}
.y2bb{bottom:630.065850px;}
.y434{bottom:630.534540px;}
.y313{bottom:631.962000px;}
.y12a{bottom:632.250000px;}
.y3{bottom:632.653980px;}
.y3b7{bottom:632.679000px;}
.y53e{bottom:633.891750px;}
.y559{bottom:635.292450px;}
.y4c4{bottom:635.515200px;}
.y2b5{bottom:636.459900px;}
.y227{bottom:638.090400px;}
.y190{bottom:638.795419px;}
.y78{bottom:640.339500px;}
.y437{bottom:640.615650px;}
.y5de{bottom:640.831050px;}
.y2b2{bottom:640.936500px;}
.y344{bottom:641.986800px;}
.y22a{bottom:644.770050px;}
.y5be{bottom:645.528750px;}
.yf{bottom:646.962810px;}
.yde{bottom:647.341200px;}
.y243{bottom:648.556500px;}
.y471{bottom:648.868500px;}
.y433{bottom:650.704620px;}
.y4ee{bottom:651.916950px;}
.y32{bottom:653.576400px;}
.y2d6{bottom:653.994000px;}
.y3b6{bottom:654.999000px;}
.y12f{bottom:655.127250px;}
.y315{bottom:656.456550px;}
.y312{bottom:656.972100px;}
.y3cf{bottom:658.880850px;}
.y77{bottom:661.939500px;}
.y18f{bottom:661.948031px;}
.y57c{bottom:662.176200px;}
.y597{bottom:664.548300px;}
.y65{bottom:664.796250px;}
.ydd{bottom:667.141200px;}
.y53d{bottom:667.911750px;}
.y558{bottom:669.492450px;}
.ya4{bottom:670.807500px;}
.y473{bottom:671.179650px;}
.y341{bottom:672.408000px;}
.y4c2{bottom:673.658250px;}
.y188{bottom:673.698450px;}
.y12e{bottom:673.822200px;}
.y12d{bottom:673.825093px;}
.y36c{bottom:674.086320px;}
.y31{bottom:675.176400px;}
.y508{bottom:676.026000px;}
.y2d5{bottom:676.308150px;}
.y5dd{bottom:676.831050px;}
.y2ae{bottom:680.545500px;}
.y222{bottom:681.300000px;}
.y5bd{bottom:681.528750px;}
.y4bd{bottom:682.279500px;}
.y3ee{bottom:682.981500px;}
.y76{bottom:683.539500px;}
.y18e{bottom:685.290417px;}
.y1e{bottom:686.836950px;}
.ydc{bottom:686.941200px;}
.y50c{bottom:687.009000px;}
.y261{bottom:687.011700px;}
.y12c{bottom:692.517300px;}
.y3b3{bottom:696.039000px;}
.y432{bottom:696.062460px;}
.y52b{bottom:696.189000px;}
.y30{bottom:696.776400px;}
.y57b{bottom:697.276200px;}
.y389{bottom:698.014500px;}
.y507{bottom:698.170950px;}
.y56{bottom:699.349170px;}
.y596{bottom:700.548300px;}
.ya1{bottom:700.687500px;}
.y30e{bottom:700.722000px;}
.y53c{bottom:701.931750px;}
.y557{bottom:703.692450px;}
.y75{bottom:705.139500px;}
.y2b0{bottom:705.213900px;}
.y3ed{bottom:705.461400px;}
.ydb{bottom:706.741200px;}
.y2{bottom:707.047800px;}
.y21f{bottom:707.220000px;}
.y18d{bottom:708.424050px;}
.y3b2{bottom:709.186500px;}
.y414{bottom:709.306650px;}
.y2ad{bottom:709.702200px;}
.y281{bottom:711.118500px;}
.y388{bottom:711.162600px;}
.y5dc{bottom:712.831050px;}
.y221{bottom:715.504350px;}
.y4ba{bottom:716.659500px;}
.y2d2{bottom:717.355500px;}
.y5bc{bottom:717.528750px;}
.y470{bottom:717.808650px;}
.y2f{bottom:718.376400px;}
.y1ae{bottom:719.274900px;}
.y55{bottom:720.802650px;}
.y52d{bottom:722.954550px;}
.y52a{bottom:723.335400px;}
.y4bc{bottom:724.929150px;}
.y310{bottom:725.386200px;}
.y128{bottom:726.408000px;}
.yda{bottom:726.541200px;}
.y74{bottom:726.739500px;}
.y18c{bottom:731.576661px;}
.y57a{bottom:732.376200px;}
.y21c{bottom:733.320000px;}
.y42f{bottom:733.417500px;}
.y283{bottom:733.453050px;}
.y53b{bottom:735.951750px;}
.y595{bottom:736.548300px;}
.y280{bottom:737.402400px;}
.y556{bottom:737.892450px;}
.y504{bottom:739.206000px;}
.y2d1{bottom:739.671450px;}
.y2e{bottom:739.976400px;}
.y3af{bottom:741.037500px;}
.y21e{bottom:741.402900px;}
.y363{bottom:741.867000px;}
.y46d{bottom:742.108500px;}
.y5b0{bottom:742.277400px;}
.y386{bottom:743.014500px;}
.y1cd{bottom:743.208000px;}
.y126{bottom:745.774500px;}
.yd9{bottom:746.341200px;}
.y42e{bottom:746.560500px;}
.y3ea{bottom:746.805000px;}
.y365{bottom:747.082050px;}
.y73{bottom:748.339500px;}
.y5db{bottom:748.831050px;}
.y2a9{bottom:749.485500px;}
.y4b0{bottom:751.218000px;}
.y9f{bottom:752.707500px;}
.y5bb{bottom:753.528750px;}
.y18b{bottom:754.748250px;}
.y385{bottom:756.162600px;}
.ye{bottom:757.889970px;}
.y64{bottom:760.790250px;}
.y2ef{bottom:761.106450px;}
.y503{bottom:761.522400px;}
.y2d{bottom:761.576400px;}
.y5af{bottom:763.877400px;}
.y3b1{bottom:763.913100px;}
.y46c{bottom:764.425800px;}
.y1cf{bottom:765.528750px;}
.yd8{bottom:766.141200px;}
.y11f{bottom:766.309500px;}
.y579{bottom:767.476200px;}
.y20e{bottom:767.700000px;}
.y3e9{bottom:769.299300px;}
.y72{bottom:769.939500px;}
.y53a{bottom:769.971750px;}
.y1cc{bottom:770.028750px;}
.y527{bottom:770.806500px;}
.y555{bottom:772.092450px;}
.y21b{bottom:772.199700px;}
.y594{bottom:772.548300px;}
.y2ab{bottom:774.155250px;}
.y2a8{bottom:774.331050px;}
.y27d{bottom:774.478500px;}
.y4b9{bottom:775.878210px;}
.y42c{bottom:778.416000px;}
.y38b{bottom:780.199500px;}
.y2d0{bottom:780.714000px;}
.y9c{bottom:782.767500px;}
.y2c{bottom:783.176400px;}
.y5da{bottom:784.831050px;}
.y308{bottom:785.031000px;}
.y5ae{bottom:785.477400px;}
.yd7{bottom:785.941200px;}
.y383{bottom:788.016000px;}
.y3ab{bottom:788.479500px;}
.y124{bottom:789.186750px;}
.y5ba{bottom:789.528750px;}
.y27c{bottom:791.589900px;}
.y21a{bottom:792.367650px;}
.y217{bottom:792.373710px;}
.y2cf{bottom:793.858950px;}
.y33e{bottom:794.706000px;}
.y19{bottom:795.457950px;}
.y4b8{bottom:795.866130px;}
.y185{bottom:795.933000px;}
.y529{bottom:797.565000px;}
.y526{bottom:797.945850px;}
.y3aa{bottom:800.176800px;}
.y382{bottom:801.167880px;}
.y500{bottom:802.567500px;}
.y578{bottom:802.576200px;}
.y42b{bottom:803.091750px;}
.y539{bottom:803.991750px;}
.y2b{bottom:804.776400px;}
.y469{bottom:805.468500px;}
.yd6{bottom:805.741200px;}
.y554{bottom:806.292450px;}
.y1c9{bottom:806.566500px;}
.y5ad{bottom:807.077400px;}
.y122{bottom:807.880333px;}
.y123{bottom:807.881850px;}
.y593{bottom:808.548300px;}
.y30b{bottom:809.690220px;}
.y384{bottom:810.338400px;}
.y3e6{bottom:810.627000px;}
.y216{bottom:812.527230px;}
.y4b7{bottom:816.036210px;}
.y2a4{bottom:818.245500px;}
.y279{bottom:819.478500px;}
.y381{bottom:819.514200px;}
.y307{bottom:820.133850px;}
.y5d9{bottom:820.831050px;}
.y3e5{bottom:823.860300px;}
.y4ff{bottom:824.885700px;}
.y5b9{bottom:825.528750px;}
.yd5{bottom:825.541200px;}
.y2cc{bottom:825.714000px;}
.y2a{bottom:826.376400px;}
.y121{bottom:826.587900px;}
.y71{bottom:827.479950px;}
.y176{bottom:827.625000px;}
.y468{bottom:827.789100px;}
.y54{bottom:828.070050px;}
.y5ac{bottom:828.677400px;}
.y1cb{bottom:828.892050px;}
.y333{bottom:829.086000px;}
.y30a{bottom:829.860300px;}
.y3a8{bottom:830.418000px;}
.y215{bottom:832.697310px;}
.y1c8{bottom:833.392050px;}
.y9a{bottom:834.787500px;}
.y4b3{bottom:835.108950px;}
.y4b6{bottom:836.189730px;}
.y278{bottom:837.656250px;}
.y577{bottom:837.676200px;}
.y538{bottom:838.011750px;}
.y2cb{bottom:838.858950px;}
.y33a{bottom:838.992630px;}
.y553{bottom:840.492450px;}
.y211{bottom:841.124700px;}
.y3a7{bottom:842.118150px;}
.y2a6{bottom:842.909250px;}
.y592{bottom:844.548300px;}
.yd4{bottom:845.341200px;}
.y523{bottom:845.619000px;}
.y428{bottom:847.176000px;}
.y5ab{bottom:850.277400px;}
.y37e{bottom:851.374500px;}
.y49{bottom:851.971500px;}
.y214{bottom:852.850830px;}
.y33d{bottom:853.754850px;}
.y50{bottom:855.131850px;}
.y183{bottom:855.894084px;}
.y3e2{bottom:855.957000px;}
.y4b2{bottom:856.155750px;}
.y4b5{bottom:856.343250px;}
.y285{bottom:856.770000px;}
.y63{bottom:856.784250px;}
.y5d8{bottom:856.831050px;}
.y339{bottom:859.146150px;}
.y11d{bottom:860.469000px;}
.y5b8{bottom:861.528750px;}
.y522{bottom:861.834900px;}
.y97{bottom:864.846000px;}
.y29f{bottom:865.050000px;}
.yd3{bottom:865.141200px;}
.y4fc{bottom:865.926000px;}
.y210{bottom:866.324700px;}
.yd{bottom:868.817130px;}
.y467{bottom:868.827000px;}
.y29{bottom:869.576400px;}
.y1c4{bottom:869.928000px;}
.y2c7{bottom:870.715500px;}
.y427{bottom:871.845750px;}
.y5aa{bottom:871.877400px;}
.y537{bottom:872.031750px;}
.y3a3{bottom:872.539500px;}
.y576{bottom:872.776200px;}
.y213{bottom:873.004350px;}
.y1{bottom:873.520800px;}
.y380{bottom:873.701700px;}
.y33c{bottom:873.911100px;}
.y304{bottom:874.131000px;}
.y552{bottom:874.692450px;}
.y277{bottom:877.980450px;}
.y37d{bottom:878.190000px;}
.y3e1{bottom:878.441850px;}
.y182{bottom:879.046695px;}
.y336{bottom:879.316230px;}
.y11b{bottom:879.835500px;}
.y2ca{bottom:879.897900px;}
.y591{bottom:880.548300px;}
.yd2{bottom:884.941200px;}
.y3a2{bottom:885.682320px;}
.y5cd{bottom:885.722100px;}
.y4fb{bottom:888.249000px;}
.y466{bottom:891.140550px;}
.y28{bottom:891.176400px;}
.y1c6{bottom:892.243650px;}
.y5d7{bottom:892.831050px;}
.y4ae{bottom:892.879500px;}
.y2c6{bottom:893.034600px;}
.y5a9{bottom:893.477400px;}
.y3a5{bottom:894.676800px;}
.y1c3{bottom:896.743650px;}
.y70{bottom:896.773200px;}
.y5b7{bottom:897.528750px;}
.y4a{bottom:897.581550px;}
.y51e{bottom:898.357500px;}
.y305{bottom:898.801800px;}
.y303{bottom:899.153250px;}
.y119{bottom:899.200500px;}
.y335{bottom:899.469750px;}
.y181{bottom:902.199306px;}
.y3a1{bottom:903.864300px;}
.yd1{bottom:904.741200px;}
.y536{bottom:906.051750px;}
.y1d{bottom:906.643950px;}
.y29b{bottom:907.170000px;}
.y575{bottom:907.876200px;}
.y272{bottom:908.218500px;}
.y551{bottom:908.892450px;}
.y20b{bottom:909.361500px;}
.y337{bottom:910.446000px;}
.y27{bottom:912.776400px;}
.y17b{bottom:913.782645px;}
.y37a{bottom:914.734500px;}
.y5a8{bottom:915.077400px;}
.y424{bottom:916.117500px;}
.y590{bottom:916.548300px;}
.y95{bottom:916.867500px;}
.y276{bottom:917.402400px;}
.y6f{bottom:918.373200px;}
.y117{bottom:918.567000px;}
.y4ac{bottom:918.978000px;}
.y3de{bottom:919.779000px;}
.y271{bottom:921.729360px;}
.yd0{bottom:924.541200px;}
.y520{bottom:925.114800px;}
.y180{bottom:925.351917px;}
.y51d{bottom:925.495650px;}
.y5d6{bottom:928.831050px;}
.y4f8{bottom:929.286000px;}
.y274{bottom:930.539100px;}
.y464{bottom:932.188500px;}
.y1c0{bottom:933.288000px;}
.y5b6{bottom:933.528750px;}
.y2c3{bottom:934.074000px;}
.y26{bottom:934.376400px;}
.y53{bottom:935.337450px;}
.y208{bottom:935.461500px;}
.y39f{bottom:935.899500px;}
.y332{bottom:936.006000px;}
.y5a7{bottom:936.677400px;}
.y17a{bottom:936.935256px;}
.y379{bottom:937.055190px;}
.y270{bottom:939.000000px;}
.y6e{bottom:939.973200px;}
.y535{bottom:940.071750px;}
.y423{bottom:940.787100px;}
.y115{bottom:941.272500px;}
.y3dd{bottom:942.257850px;}
.y20a{bottom:942.484800px;}
.y2ff{bottom:942.889500px;}
.y574{bottom:942.976200px;}
.y550{bottom:943.092450px;}
.y4a0{bottom:943.818000px;}
.ycf{bottom:944.341200px;}
.y463{bottom:945.328050px;}
.y17f{bottom:948.504528px;}
.y39e{bottom:948.864300px;}
.y92{bottom:950.887500px;}
.y4f7{bottom:951.600600px;}
.y378{bottom:955.416450px;}
.y297{bottom:955.770000px;}
.y2c5{bottom:956.397900px;}
.y330{bottom:956.886000px;}
.y5a6{bottom:958.277400px;}
.y48{bottom:959.971500px;}
.y4ab{bottom:960.033480px;}
.y179{bottom:960.087867px;}
.y200{bottom:960.301500px;}
.y2c2{bottom:960.897900px;}
.y6d{bottom:961.573200px;}
.yce{bottom:964.141200px;}
.y301{bottom:967.555650px;}
.yfc{bottom:967.852500px;}
.y2fe{bottom:967.907250px;}
.y113{bottom:968.517000px;}
.y4a4{bottom:970.634400px;}
.y26c{bottom:971.578500px;}
.y17e{bottom:971.657139px;}
.y518{bottom:972.973500px;}
.y534{bottom:974.091750px;}
.y461{bottom:977.188500px;}
.y54f{bottom:977.292450px;}
.y25{bottom:977.576400px;}
.y32a{bottom:977.766000px;}
.y573{bottom:978.076200px;}
.y1bb{bottom:978.286500px;}
.yc{bottom:979.744290px;}
.y5a5{bottom:979.877400px;}
.y4aa{bottom:980.187000px;}
.y39a{bottom:980.899500px;}
.y178{bottom:983.221500px;}
.y3da{bottom:983.602500px;}
.ycd{bottom:983.941200px;}
.y420{bottom:984.876000px;}
.y206{bottom:987.125550px;}
.y1bf{bottom:987.458550px;}
.y10b{bottom:989.250000px;}
.y4f5{bottom:992.647500px;}
.y26e{bottom:993.890550px;}
.y399{bottom:994.033770px;}
.y17d{bottom:994.809750px;}
.y4a3{bottom:995.834400px;}
.y376{bottom:996.454500px;}
.y2c0{bottom:997.434000px;}
.y26b{bottom:998.039100px;}
.y24{bottom:999.176400px;}
.y460{bottom:999.515550px;}
.y51b{bottom:999.734992px;}
.y4a9{bottom:1000.343250px;}
.y1bd{bottom:1000.606950px;}
.y5a4{bottom:1001.477400px;}
.y32e{bottom:1002.437610px;}
.y203{bottom:1002.585600px;}
.y90{bottom:1002.907500px;}
.y39c{bottom:1003.028250px;}
.ycc{bottom:1003.741200px;}
.y293{bottom:1004.551500px;}
.y1ba{bottom:1005.106950px;}
.y5d5{bottom:1005.959400px;}
.y3d9{bottom:1006.095750px;}
.y205{bottom:1009.265550px;}
.y41f{bottom:1009.540950px;}
.y2bf{bottom:1010.573700px;}
.y517{bottom:1011.067350px;}
.y2fa{bottom:1011.649500px;}
.y111{bottom:1011.982950px;}
.y398{bottom:1012.215750px;}
.y6b{bottom:1013.128950px;}
.y375{bottom:1014.103950px;}
.y4f4{bottom:1014.788100px;}
.y18{bottom:1019.665950px;}
.y4a8{bottom:1020.513930px;}
.y23{bottom:1020.776400px;}
.y4a2{bottom:1021.214400px;}
.y51a{bottom:1021.623000px;}
.y32d{bottom:1022.591130px;}
.y5a3{bottom:1023.077400px;}
.ycb{bottom:1023.541200px;}
.y2f9{bottom:1025.870190px;}
.y202{bottom:1027.785600px;}
.y204{bottom:1031.207550px;}
.y10d{bottom:1032.716250px;}
.y8c{bottom:1032.967500px;}
.y2fc{bottom:1034.340750px;}
.y266{bottom:1034.938500px;}
.y16e{bottom:1035.997500px;}
.y45d{bottom:1040.547000px;}
.y4a7{bottom:1040.667450px;}
.y372{bottom:1041.454500px;}
.y1b6{bottom:1041.648000px;}
.y5d4{bottom:1041.959400px;}
.y22{bottom:1042.376400px;}
.y2bc{bottom:1042.435500px;}
.y32c{bottom:1042.579050px;}
.y52{bottom:1042.604850px;}
.y533{bottom:1044.036600px;}
.y2f8{bottom:1044.231450px;}
.y395{bottom:1044.258000px;}
.y5a2{bottom:1044.677400px;}
.y10e{bottom:1045.645500px;}
.y3d5{bottom:1047.424500px;}
.y62{bottom:1048.003350px;}
.y28f{bottom:1050.810000px;}
.yca{bottom:1053.695850px;}
.y41c{bottom:1053.816000px;}
.yc8{bottom:1054.651650px;}
.y1b5{bottom:1054.781550px;}
.y4ef{bottom:1056.006000px;}
.y394{bottom:1057.215750px;}
.y58e{bottom:1060.041450px;}
.y5f4{bottom:1061.077200px;}
.y174{bottom:1062.368400px;}
.y45c{bottom:1062.691350px;}
.y5e7{bottom:1063.181317px;}
.y49c{bottom:1063.519500px;}
.y371{bottom:1063.779750px;}
.y1b8{bottom:1063.970250px;}
.y21{bottom:1063.976400px;}
.y8e{bottom:1064.274900px;}
.y2be{bottom:1064.749500px;}
.y5a1{bottom:1066.277400px;}
.y10a{bottom:1066.378500px;}
.y572{bottom:1066.671450px;}
.y47{bottom:1067.971500px;}
.y41b{bottom:1068.228450px;}
.y513{bottom:1069.663500px;}
.y3d7{bottom:1069.732950px;}
.y3d4{bottom:1069.737175px;}
.y1fc{bottom:1070.281500px;}
.y1b4{bottom:1073.157750px;}
.y2f5{bottom:1076.989500px;}
.y5d3{bottom:1077.959400px;}
.y4f2{bottom:1078.702200px;}
.y328{bottom:1079.106000px;}
.y532{bottom:1080.036600px;}
.y20{bottom:1085.576400px;}
.y108{bottom:1087.113000px;}
.y5a0{bottom:1087.877400px;}
.y392{bottom:1089.259500px;}
.y49e{bottom:1090.319850px;}
.y6c{bottom:1090.580550px;}
.yb{bottom:1090.671450px;}
.y5eb{bottom:1090.949700px;}
.y265{bottom:1091.648400px;}
.yc7{bottom:1093.649400px;}
.y1fe{bottom:1095.285600px;}
.y171{bottom:1096.147650px;}
.y515{bottom:1096.245150px;}
.y512{bottom:1096.817850px;}
.y4f1{bottom:1099.186500px;}
.y28b{bottom:1099.590000px;}
.y326{bottom:1100.166000px;}
.y2f7{bottom:1101.665100px;}
.y391{bottom:1102.391550px;}
.y417{bottom:1102.416000px;}
.y56d{bottom:1102.671450px;}
.y458{bottom:1103.908500px;}
.y36d{bottom:1104.814500px;}
.y1af{bottom:1105.008000px;}
.y2f4{bottom:1106.692350px;}
.y106{bottom:1107.846000px;}
.y2b8{bottom:1110.052500px;}
.y89{bottom:1110.547500px;}
.y5d2{bottom:1113.959400px;}
.y531{bottom:1116.036600px;}
.y3d3{bottom:1121.931150px;}
.y262{bottom:1122.058500px;}
.y8b{bottom:1123.524900px;}
.y45a{bottom:1126.054650px;}
.y5b4{bottom:1126.193100px;}
.y5ea{bottom:1126.949700px;}
.y36f{bottom:1126.955550px;}
.y416{bottom:1127.065770px;}
.y419{bottom:1127.080050px;}
.y1b2{bottom:1127.321850px;}
.y16c{bottom:1127.661000px;}
.y56b{bottom:1127.843250px;}
.y102{bottom:1128.579000px;}
.y1f{bottom:1128.776400px;}
.y499{bottom:1130.299500px;}
.y59f{bottom:1131.077400px;}
.y15{bottom:1132.822950px;}
.y38d{bottom:1134.259500px;}
.y105{bottom:1138.211391px;}
.y571{bottom:1138.671450px;}
.y1f8{bottom:1138.680000px;}
.y322{bottom:1142.170500px;}
.y50e{bottom:1144.279500px;}
.y2f0{bottom:1145.929500px;}
.y49b{bottom:1146.124500px;}
.y4d5{bottom:1146.184500px;}
.y1b1{bottom:1146.399900px;}
.y325{bottom:1147.385700px;}
.y287{bottom:1148.191500px;}
.y51{bottom:1149.872250px;}
.y5d1{bottom:1149.959400px;}
.y16a{bottom:1151.572500px;}
.y530{bottom:1152.036600px;}
.y1fa{bottom:1152.355950px;}
.y59e{bottom:1152.677400px;}
.y1fb{bottom:1153.422300px;}
.y3d0{bottom:1153.494000px;}
.y6a{bottom:1155.729450px;}
.y104{bottom:1156.782750px;}
.y38f{bottom:1157.118150px;}
.y59c{bottom:1157.947200px;}
.y5b3{bottom:1162.193100px;}
.y5e9{bottom:1162.949700px;}
.y56a{bottom:1163.843250px;}
.yc6{bottom:1165.060500px;}
.y23f{bottom:1166.283000px;}
.y510{bottom:1168.896900px;}
.y2f2{bottom:1170.594750px;}
.y289{bottom:1172.850600px;}
.y59d{bottom:1174.277400px;}
.y570{bottom:1174.671450px;}
.y497{bottom:1174.938000px;}
.y1f6{bottom:1178.640000px;}
.y457{bottom:1178.789100px;}
.y415{bottom:1182.525210px;}
.y5d0{bottom:1185.959400px;}
.y52f{bottom:1188.036600px;}
.y87{bottom:1188.646050px;}
.y368{bottom:1190.274000px;}
.y100{bottom:1190.449500px;}
.y59b{bottom:1193.947200px;}
.y36a{bottom:1195.488300px;}
.y5b2{bottom:1198.193100px;}
.y5e8{bottom:1198.949700px;}
.y569{bottom:1199.843250px;}
.y45{bottom:1204.721250px;}
.y454{bottom:1209.208500px;}
.y56f{bottom:1210.671450px;}
.yfe{bottom:1212.343500px;}
.y4b{bottom:1213.929580px;}
.y5d{bottom:1288.346250px;}
.h81{height:13.069336px;}
.h7a{height:17.251523px;}
.hde{height:17.575207px;}
.hce{height:18.180000px;}
.h5e{height:18.188595px;}
.h3a{height:18.531000px;}
.h39{height:18.697500px;}
.h3f{height:18.699000px;}
.h3e{height:19.866000px;}
.hab{height:19.980000px;}
.h32{height:20.068500px;}
.h31{height:20.070000px;}
.hac{height:20.160000px;}
.haf{height:20.161500px;}
.h2d{height:21.066000px;}
.h4a{height:21.685500px;}
.haa{height:21.705469px;}
.h37{height:22.038000px;}
.h55{height:23.148843px;}
.h52{height:23.151000px;}
.h60{height:23.152500px;}
.h61{height:23.154000px;}
.h2b{height:23.553000px;}
.h35{height:23.706000px;}
.h80{height:24.120000px;}
.hb1{height:24.840000px;}
.h89{height:25.200000px;}
.h82{height:25.378500px;}
.h87{height:25.380000px;}
.h48{height:25.596000px;}
.hb4{height:27.540000px;}
.h6f{height:28.229766px;}
.h1e{height:29.160000px;}
.h1c{height:29.340000px;}
.h18{height:29.341500px;}
.h5d{height:30.933000px;}
.h1a{height:33.298500px;}
.h8b{height:33.660000px;}
.h86{height:33.661500px;}
.h59{height:34.767715px;}
.hdb{height:35.683208px;}
.h73{height:36.538500px;}
.h70{height:36.540000px;}
.h91{height:36.720000px;}
.hc3{height:36.807000px;}
.h93{height:37.261500px;}
.h9d{height:37.798500px;}
.h90{height:38.340000px;}
.h77{height:39.060000px;}
.h88{height:39.208008px;}
.h79{height:39.240000px;}
.ha0{height:40.140000px;}
.h9b{height:40.141500px;}
.h9c{height:40.320000px;}
.h94{height:40.501406px;}
.h50{height:41.181000px;}
.h95{height:41.522695px;}
.h30{height:41.756230px;}
.hc8{height:42.408782px;}
.h6c{height:42.894141px;}
.hc7{height:42.899224px;}
.hc1{height:43.207664px;}
.hfd{height:43.260000px;}
.h6b{height:43.390195px;}
.hf3{height:43.558500px;}
.hbf{height:43.707345px;}
.h2a{height:43.812747px;}
.hd3{height:43.920000px;}
.h3c{height:44.097847px;}
.hbd{height:44.241000px;}
.h2e{height:44.319425px;}
.h38{height:44.607822px;}
.h9f{height:44.893125px;}
.h9e{height:46.025156px;}
.hef{height:46.547464px;}
.h47{height:46.951427px;}
.hc5{height:47.007413px;}
.hcc{height:47.054213px;}
.h4b{height:47.494402px;}
.h20{height:47.545312px;}
.h28{height:47.586000px;}
.hb5{height:47.592113px;}
.hbc{height:47.892428px;}
.h96{height:47.941481px;}
.h7d{height:48.095156px;}
.ha6{height:48.141956px;}
.he3{height:48.437648px;}
.h44{height:48.486801px;}
.hee{height:48.716767px;}
.hdf{height:48.997812px;}
.hd0{height:49.182966px;}
.h3d{height:49.797088px;}
.h43{height:49.800088px;}
.h41{height:49.888288px;}
.h68{height:50.127574px;}
.h57{height:50.707281px;}
.h4f{height:51.034122px;}
.hba{height:51.119574px;}
.hc{height:51.120000px;}
.h1d{height:51.298500px;}
.h19{height:51.300000px;}
.heb{height:51.594847px;}
.h4c{height:51.624313px;}
.he9{height:51.632887px;}
.h7f{height:51.679688px;}
.hc6{height:51.685738px;}
.h5a{height:51.891738px;}
.hb{height:51.912000px;}
.h5b{height:51.928804px;}
.hd6{height:52.183144px;}
.hed{height:52.191522px;}
.hd8{height:52.230544px;}
.h6a{height:52.277344px;}
.ha{height:52.417969px;}
.he1{height:52.649543px;}
.hbe{height:52.659404px;}
.hdd{height:53.258415px;}
.h8a{height:53.692819px;}
.hae{height:53.693419px;}
.h85{height:53.740219px;}
.hb7{height:54.039459px;}
.h99{height:54.086259px;}
.h9a{height:54.133059px;}
.hb8{height:54.133659px;}
.hcb{height:54.277500px;}
.hca{height:54.279000px;}
.hc9{height:54.456000px;}
.h5c{height:54.486325px;}
.h6d{height:54.898500px;}
.h6e{height:54.900000px;}
.h64{height:54.960398px;}
.h67{height:55.016839px;}
.h63{height:55.069639px;}
.h92{height:55.078500px;}
.h71{height:55.080000px;}
.h74{height:55.081500px;}
.h53{height:55.116439px;}
.h8d{height:55.261500px;}
.hc2{height:55.300500px;}
.hc0{height:55.302000px;}
.hc4{height:55.482000px;}
.h34{height:55.732500px;}
.h42{height:56.095500px;}
.h2c{height:56.362818px;}
.ha5{height:56.700000px;}
.h36{height:56.729631px;}
.ha7{height:57.060000px;}
.hfa{height:57.410156px;}
.h21{height:58.500000px;}
.h72{height:58.501500px;}
.h23{height:58.678500px;}
.hfc{height:58.823650px;}
.ha8{height:60.298500px;}
.ha4{height:60.300000px;}
.h16{height:60.465234px;}
.h98{height:60.478500px;}
.ha3{height:60.480000px;}
.h27{height:60.828226px;}
.h7c{height:61.164492px;}
.h84{height:61.183092px;}
.h2f{height:61.206000px;}
.hf{height:61.874295px;}
.he{height:62.296875px;}
.hdc{height:62.312416px;}
.hec{height:63.091500px;}
.h56{height:64.486282px;}
.h8f{height:64.899844px;}
.h12{height:64.980000px;}
.h4e{height:65.056500px;}
.ha1{height:65.346680px;}
.he8{height:65.393480px;}
.hf0{height:65.436000px;}
.hf2{height:65.631000px;}
.h66{height:65.662500px;}
.hd4{height:65.880000px;}
.h7b{height:67.680000px;}
.h13{height:68.733984px;}
.h14{height:69.528867px;}
.he4{height:69.660000px;}
.hd1{height:73.258500px;}
.hb3{height:73.260000px;}
.h17{height:75.134616px;}
.h24{height:75.665925px;}
.h1b{height:75.681084px;}
.h22{height:75.821484px;}
.h33{height:76.465500px;}
.h15{height:76.860000px;}
.h49{height:77.527287px;}
.h9{height:77.868000px;}
.he6{height:78.416016px;}
.h8e{height:78.847650px;}
.h69{height:80.460000px;}
.ha9{height:80.640000px;}
.hcd{height:80.641500px;}
.h5{height:81.054000px;}
.hf5{height:81.761400px;}
.hf7{height:82.194000px;}
.he7{height:82.261500px;}
.hf8{height:84.357000px;}
.hf4{height:86.520000px;}
.hf1{height:87.508500px;}
.h25{height:87.840000px;}
.h65{height:89.574000px;}
.h10{height:90.846000px;}
.h54{height:90.903000px;}
.h3b{height:93.324000px;}
.h40{height:93.492000px;}
.h78{height:95.318531px;}
.he5{height:95.319131px;}
.hd2{height:95.365331px;}
.h4d{height:99.541500px;}
.h51{height:100.495233px;}
.had{height:100.620000px;}
.hbb{height:103.827087px;}
.hd{height:103.828125px;}
.hb0{height:106.198500px;}
.hfb{height:108.599904px;}
.h7e{height:109.980000px;}
.hda{height:110.394000px;}
.hd5{height:119.700000px;}
.h4{height:130.245246px;}
.h62{height:135.120000px;}
.h83{height:140.940000px;}
.hd7{height:140.941500px;}
.h11{height:155.736000px;}
.h3{height:180.535784px;}
.h7{height:207.648000px;}
.h58{height:208.372500px;}
.hf6{height:209.755627px;}
.he0{height:223.905000px;}
.h5f{height:231.717000px;}
.h8{height:266.594941px;}
.ha2{height:316.620000px;}
.h29{height:320.494500px;}
.hb2{height:326.340000px;}
.h46{height:362.791500px;}
.he2{height:370.242000px;}
.h97{height:393.300000px;}
.h26{height:397.800000px;}
.hb9{height:440.460000px;}
.hb6{height:455.220000px;}
.h6{height:465.246159px;}
.hf9{height:477.408275px;}
.h2{height:503.037638px;}
.hd9{height:532.620000px;}
.hcf{height:562.320000px;}
.hea{height:565.288500px;}
.h45{height:613.204500px;}
.h1f{height:674.278500px;}
.h8c{height:747.900000px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.h75{height:1301.101500px;}
.h76{height:1301.250000px;}
.w4f{width:-127.957500px;}
.w50{width:101.701500px;}
.w3d{width:101.878500px;}
.w38{width:101.880000px;}
.w4e{width:102.507000px;}
.w2c{width:103.680000px;}
.w41{width:124.381500px;}
.w13{width:124.711500px;}
.w52{width:126.718500px;}
.w30{width:126.720000px;}
.w58{width:129.097500px;}
.w35{width:131.400000px;}
.w34{width:131.401500px;}
.w26{width:133.603500px;}
.w17{width:134.728500px;}
.w15{width:134.895000px;}
.w32{width:135.900000px;}
.w48{width:138.960000px;}
.w33{width:139.140000px;}
.w4a{width:140.400000px;}
.w18{width:140.571000px;}
.w16{width:144.412500px;}
.w20{width:147.178500px;}
.w43{width:163.260000px;}
.w1a{width:163.776000px;}
.w55{width:169.200000px;}
.w42{width:173.160000px;}
.w19{width:173.626500px;}
.w23{width:175.086000px;}
.w24{width:175.263000px;}
.we{width:175.323000px;}
.w54{width:180.000000px;}
.w22{width:181.662000px;}
.w56{width:191.700000px;}
.w46{width:192.600000px;}
.w8{width:197.640000px;}
.w44{width:217.620000px;}
.w1b{width:218.203500px;}
.w47{width:221.041500px;}
.w3{width:225.720000px;}
.wa{width:225.900000px;}
.w4{width:225.901500px;}
.w10{width:241.836000px;}
.w7{width:253.980000px;}
.w11{width:261.078000px;}
.w28{width:279.540000px;}
.w29{width:291.876000px;}
.w6{width:338.938500px;}
.w5{width:338.940000px;}
.w49{width:414.540000px;}
.w1c{width:415.536000px;}
.wf{width:503.578500px;}
.w21{width:533.433000px;}
.w31{width:540.000000px;}
.w59{width:542.067000px;}
.w53{width:542.700000px;}
.w4d{width:544.923000px;}
.w3f{width:550.980000px;}
.w3a{width:551.158500px;}
.w2b{width:551.160000px;}
.w37{width:552.960000px;}
.w4c{width:555.186000px;}
.w45{width:555.660000px;}
.w14{width:557.109000px;}
.w27{width:572.175000px;}
.w5d{width:598.104000px;}
.w1d{width:631.068000px;}
.w3e{width:662.938500px;}
.w2a{width:663.120000px;}
.w2f{width:667.440000px;}
.w4b{width:667.963500px;}
.w51{width:670.140000px;}
.w57{width:671.898000px;}
.w2{width:678.780000px;}
.wd{width:679.564500px;}
.w3c{width:680.218500px;}
.w36{width:680.220000px;}
.w9{width:680.398500px;}
.wb{width:680.400000px;}
.w40{width:680.760000px;}
.w1f{width:681.322500px;}
.w12{width:682.488000px;}
.w5a{width:693.169500px;}
.wc{width:700.464000px;}
.w3b{width:702.180000px;}
.w39{width:702.181500px;}
.w25{width:706.536000px;}
.w1e{width:709.584000px;}
.w5c{width:719.599500px;}
.w5b{width:761.986500px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.w2d{width:943.936500px;}
.w2e{width:944.250000px;}
.x108{left:-9.738300px;}
.x0{left:0.000000px;}
.x67{left:7.144650px;}
.xa7{left:8.174700px;}
.xed{left:9.187500px;}
.x4c{left:10.438650px;}
.x4a{left:12.072300px;}
.x97{left:13.325550px;}
.x87{left:14.853600px;}
.xd9{left:16.193550px;}
.xb8{left:17.469750px;}
.xce{left:18.534900px;}
.x3c{left:19.992750px;}
.x8a{left:22.024050px;}
.x7e{left:24.197850px;}
.xd4{left:25.554450px;}
.x3e{left:26.649000px;}
.x91{left:28.198650px;}
.x8e{left:29.714400px;}
.xa1{left:31.275000px;}
.x5d{left:33.304650px;}
.x49{left:35.099550px;}
.x42{left:37.443300px;}
.x5b{left:38.533950px;}
.x39{left:40.690800px;}
.x36{left:42.130800px;}
.xc6{left:43.366500px;}
.x89{left:45.231600px;}
.x76{left:46.564650px;}
.x59{left:48.774750px;}
.x71{left:50.253450px;}
.xc0{left:51.657300px;}
.x98{left:55.289550px;}
.x8c{left:57.422400px;}
.x5e{left:59.050650px;}
.xf2{left:60.292350px;}
.x84{left:62.433300px;}
.x47{left:64.094100px;}
.xaf{left:65.107650px;}
.xe4{left:66.219000px;}
.x85{left:67.441500px;}
.x37{left:69.130800px;}
.x54{left:70.372350px;}
.x44{left:72.367500px;}
.x66{left:73.525500px;}
.xe5{left:74.696400px;}
.x123{left:75.697200px;}
.x4d{left:76.872300px;}
.x100{left:78.942000px;}
.x12{left:80.313000px;}
.x57{left:81.903600px;}
.x2{left:83.648400px;}
.x34{left:85.126950px;}
.x5a{left:87.481800px;}
.x7a{left:89.856450px;}
.x4e{left:90.914550px;}
.x5c{left:93.424650px;}
.x6c{left:96.699600px;}
.xea{left:97.842000px;}
.xbc{left:99.141000px;}
.x41{left:100.455000px;}
.x94{left:102.537459px;}
.x5f{left:105.888000px;}
.x32{left:107.262450px;}
.x33{left:108.612450px;}
.xec{left:110.683650px;}
.xa4{left:111.780750px;}
.x2e{left:112.980450px;}
.x72{left:114.106350px;}
.x9c{left:115.879394px;}
.x107{left:117.285270px;}
.x65{left:118.319850px;}
.x48{left:120.599550px;}
.xe7{left:122.566800px;}
.x6{left:125.210797px;}
.x10{left:127.313100px;}
.x11{left:128.687250px;}
.x70{left:130.528650px;}
.x5{left:133.683150px;}
.x4{left:134.988876px;}
.xe0{left:136.451400px;}
.x3{left:138.255997px;}
.xc1{left:140.075700px;}
.x58{left:142.020900px;}
.x46{left:144.189450px;}
.x52{left:146.146500px;}
.x45{left:147.412050px;}
.x102{left:149.483280px;}
.xbe{left:150.783330px;}
.x93{left:151.916100px;}
.x14{left:153.262950px;}
.xa6{left:154.651500px;}
.x9b{left:156.925800px;}
.x125{left:158.342250px;}
.x104{left:160.674300px;}
.xab{left:163.188333px;}
.x18{left:164.481685px;}
.x10e{left:165.870900px;}
.xe3{left:167.190000px;}
.xa9{left:168.899400px;}
.xaa{left:170.415600px;}
.x4f{left:172.794900px;}
.xf{left:174.142350px;}
.xc{left:175.249350px;}
.x30{left:176.986800px;}
.x2f{left:178.128300px;}
.xe{left:179.596350px;}
.xd{left:181.621350px;}
.x10a{left:183.911100px;}
.xb{left:185.131350px;}
.xfc{left:186.262500px;}
.x121{left:187.899900px;}
.xf9{left:190.093650px;}
.x68{left:192.074100px;}
.xfd{left:193.149150px;}
.xef{left:195.102600px;}
.x61{left:196.541700px;}
.x64{left:197.892300px;}
.x6b{left:199.697250px;}
.xfe{left:202.369650px;}
.x74{left:204.337050px;}
.x92{left:205.848750px;}
.x73{left:208.059000px;}
.xa5{left:209.404050px;}
.x1f{left:210.429912px;}
.xf0{left:211.848600px;}
.x27{left:213.070350px;}
.x21{left:215.721956px;}
.x103{left:217.900650px;}
.xbf{left:219.200700px;}
.xb3{left:220.327200px;}
.x106{left:221.842500px;}
.x8f{left:222.914100px;}
.x110{left:224.710650px;}
.x29{left:226.121400px;}
.x50{left:227.357400px;}
.xe9{left:229.221750px;}
.x1d{left:232.066092px;}
.x19{left:233.952150px;}
.x1c{left:235.198118px;}
.x7b{left:239.772900px;}
.x11f{left:242.711321px;}
.x86{left:243.783750px;}
.x1b{left:245.044200px;}
.x56{left:246.071550px;}
.x112{left:248.827470px;}
.x55{left:251.450550px;}
.x101{left:254.428050px;}
.xba{left:255.834600px;}
.x113{left:257.273070px;}
.x2a{left:259.511400px;}
.xb1{left:262.284300px;}
.x9d{left:263.588400px;}
.xd7{left:265.508550px;}
.x3f{left:267.318300px;}
.x9e{left:268.910100px;}
.x10b{left:270.172950px;}
.x53{left:272.169900px;}
.x6e{left:274.051800px;}
.x16{left:276.760950px;}
.x111{left:278.171790px;}
.x105{left:279.427800px;}
.x83{left:280.967400px;}
.x75{left:283.142700px;}
.x12f{left:284.670450px;}
.x120{left:285.819000px;}
.x109{left:286.995000px;}
.xa8{left:289.014000px;}
.x1{left:293.698200px;}
.xe2{left:295.555950px;}
.xac{left:297.189000px;}
.x23{left:300.520662px;}
.xb0{left:301.758600px;}
.xb4{left:305.726100px;}
.x60{left:308.719500px;}
.xeb{left:310.420200px;}
.x40{left:314.111250px;}
.xb5{left:315.214875px;}
.x51{left:317.357400px;}
.x8{left:323.141550px;}
.xad{left:325.674303px;}
.xe6{left:327.487800px;}
.x7{left:331.891050px;}
.x38{left:334.170000px;}
.x35{left:335.954550px;}
.xee{left:339.853950px;}
.x12a{left:341.216250px;}
.x77{left:343.621500px;}
.xb7{left:345.559500px;}
.x26{left:351.227085px;}
.xe1{left:352.609800px;}
.xae{left:354.197560px;}
.x7c{left:356.963400px;}
.x15{left:358.606950px;}
.xc4{left:361.144050px;}
.x4b{left:362.430000px;}
.xfb{left:363.548550px;}
.xdb{left:376.413600px;}
.x24{left:378.371311px;}
.x8b{left:382.353000px;}
.xc9{left:386.140200px;}
.x124{left:387.728100px;}
.x69{left:390.495150px;}
.xb6{left:392.795099px;}
.xda{left:395.852370px;}
.x88{left:397.875000px;}
.xf6{left:401.025000px;}
.x128{left:402.402150px;}
.x12b{left:403.500450px;}
.x25{left:404.579529px;}
.x3a{left:405.997500px;}
.x1e{left:408.485562px;}
.x99{left:413.614500px;}
.x7d{left:415.907250px;}
.xf4{left:418.299300px;}
.xbb{left:419.566350px;}
.x62{left:422.722350px;}
.x9f{left:424.974600px;}
.x6a{left:433.482429px;}
.x117{left:435.266010px;}
.x20{left:440.111826px;}
.xa0{left:442.045950px;}
.x115{left:444.125610px;}
.x43{left:447.571500px;}
.x114{left:449.159850px;}
.x2d{left:456.467400px;}
.xfa{left:459.338400px;}
.x116{left:470.025450px;}
.xdc{left:479.386200px;}
.x118{left:481.220010px;}
.x11c{left:483.929400px;}
.x78{left:488.868000px;}
.xc5{left:490.008000px;}
.xf1{left:493.428150px;}
.x63{left:497.630850px;}
.x10c{left:498.683400px;}
.xdf{left:501.302250px;}
.x6d{left:502.462500px;}
.x2c{left:503.465400px;}
.x80{left:505.891050px;}
.x2b{left:513.473400px;}
.x7f{left:515.901900px;}
.xc2{left:520.624500px;}
.x22{left:528.870565px;}
.xca{left:536.603100px;}
.xde{left:537.899850px;}
.xdd{left:540.218250px;}
.x10d{left:541.987950px;}
.xf3{left:545.566500px;}
.x8d{left:546.798000px;}
.xc3{left:548.809350px;}
.xe8{left:550.066800px;}
.x6f{left:553.209900px;}
.x90{left:554.638200px;}
.xbd{left:556.196400px;}
.xff{left:559.618200px;}
.x3b{left:560.790000px;}
.xb2{left:569.313000px;}
.x3d{left:582.212400px;}
.x10f{left:586.155000px;}
.x9a{left:589.411500px;}
.x122{left:592.430550px;}
.xd6{left:600.710400px;}
.xb9{left:605.759700px;}
.x11a{left:608.450910px;}
.xa3{left:614.276400px;}
.xa2{left:616.245150px;}
.x119{left:620.523150px;}
.xf5{left:622.693110px;}
.x79{left:624.430500px;}
.xd8{left:625.718250px;}
.xc7{left:629.868000px;}
.x95{left:635.103450px;}
.xcb{left:637.596060px;}
.xf7{left:638.784450px;}
.xcc{left:641.355180px;}
.x82{left:642.451200px;}
.x81{left:643.787100px;}
.x28{left:652.293450px;}
.x96{left:654.309150px;}
.x11e{left:656.154750px;}
.x17{left:657.958800px;}
.x1a{left:659.866650px;}
.xf8{left:661.421970px;}
.xcd{left:664.009260px;}
.x11b{left:681.049950px;}
.x9{left:754.596750px;}
.xc8{left:761.988000px;}
.x11d{left:766.921800px;}
.x12e{left:770.179650px;}
.xd0{left:771.324960px;}
.xcf{left:772.964400px;}
.xd3{left:778.905750px;}
.x12c{left:786.259350px;}
.x12d{left:787.399870px;}
.xd1{left:789.524400px;}
.xd2{left:802.275600px;}
.x127{left:812.991150px;}
.x126{left:833.686500px;}
.x13{left:837.974850px;}
.xa{left:848.326200px;}
.x31{left:849.400650px;}
.x129{left:857.655000px;}
.xd5{left:867.651900px;}
.x130{left:897.210150px;}
@media print{
.v7{vertical-align:-34.541333pt;}
.v1{vertical-align:-8.476800pt;}
.v3{vertical-align:-3.754667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:18.625067pt;}
.v4{vertical-align:19.552000pt;}
.v8{vertical-align:21.125333pt;}
.v2{vertical-align:26.833600pt;}
.v9{vertical-align:31.916800pt;}
.v6{vertical-align:34.541333pt;}
.v5{vertical-align:36.417067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.053120pt;}
.ls21{letter-spacing:0.058880pt;}
.lsf{letter-spacing:0.106240pt;}
.ls13{letter-spacing:0.117760pt;}
.ls23{letter-spacing:0.151253pt;}
.ls18{letter-spacing:0.159360pt;}
.ls29{letter-spacing:0.161813pt;}
.ls1f{letter-spacing:0.176640pt;}
.lsd{letter-spacing:0.202427pt;}
.ls6{letter-spacing:0.213192pt;}
.ls24{letter-spacing:0.214033pt;}
.ls5{letter-spacing:0.218443pt;}
.ls7{letter-spacing:0.218525pt;}
.ls12{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.231573pt;}
.ls1b{letter-spacing:0.235520pt;}
.ls8{letter-spacing:0.237438pt;}
.lse{letter-spacing:0.248311pt;}
.ls9{letter-spacing:0.249992pt;}
.lsa{letter-spacing:0.252802pt;}
.ls4{letter-spacing:0.255360pt;}
.ls11{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.262595pt;}
.ls16{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.269903pt;}
.ls1c{letter-spacing:0.272640pt;}
.ls1a{letter-spacing:0.316693pt;}
.ls19{letter-spacing:0.318720pt;}
.ls28{letter-spacing:0.371840pt;}
.ls15{letter-spacing:0.434667pt;}
.ls20{letter-spacing:0.481387pt;}
.ls31{letter-spacing:0.562667pt;}
.ls26{letter-spacing:0.577708pt;}
.ls1d{letter-spacing:0.584320pt;}
.ls10{letter-spacing:0.637440pt;}
.ls2c{letter-spacing:0.707413pt;}
.ls17{letter-spacing:0.743680pt;}
.ls2b{letter-spacing:0.746560pt;}
.ls2a{letter-spacing:0.827947pt;}
.ls14{letter-spacing:0.921280pt;}
.ls1e{letter-spacing:1.608640pt;}
.ls30{letter-spacing:3.024747pt;}
.ls27{letter-spacing:5.333280pt;}
.ls3{letter-spacing:5.333333pt;}
.ls1{letter-spacing:12.800000pt;}
.ls32{letter-spacing:12.929920pt;}
.ls2f{letter-spacing:58.197303pt;}
.ls2e{letter-spacing:58.224553pt;}
.lsc{letter-spacing:60.255830pt;}
.ls2{letter-spacing:178.368000pt;}
.ws38{word-spacing:-96.000000pt;}
.ws17{word-spacing:-85.120000pt;}
.ws18{word-spacing:-74.880000pt;}
.ws22{word-spacing:-67.475733pt;}
.ws1{word-spacing:-67.328000pt;}
.ws39{word-spacing:-63.894933pt;}
.ws31{word-spacing:-63.275733pt;}
.ws2b{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-54.610667pt;}
.ws1c{word-spacing:-54.257600pt;}
.ws30{word-spacing:-53.508267pt;}
.ws27{word-spacing:-53.120000pt;}
.wscf{word-spacing:-28.518144pt;}
.ws15{word-spacing:-23.856000pt;}
.ws3b{word-spacing:-22.720000pt;}
.ws37{word-spacing:-21.696000pt;}
.ws54{word-spacing:-21.584000pt;}
.ws3c{word-spacing:-21.470400pt;}
.ws2{word-spacing:-20.448000pt;}
.ws19{word-spacing:-19.237120pt;}
.ws16{word-spacing:-16.922880pt;}
.ws23{word-spacing:-16.868933pt;}
.ws21{word-spacing:-16.469554pt;}
.ws36{word-spacing:-16.300267pt;}
.ws3{word-spacing:-16.000000pt;}
.ws28{word-spacing:-15.621120pt;}
.ws24{word-spacing:-15.249516pt;}
.ws29{word-spacing:-14.464000pt;}
.ws3a{word-spacing:-14.440255pt;}
.ws20{word-spacing:-14.283321pt;}
.ws2d{word-spacing:-14.080000pt;}
.ws2a{word-spacing:-13.306880pt;}
.ws14{word-spacing:-12.800000pt;}
.ws1a{word-spacing:-12.728320pt;}
.ws1d{word-spacing:-12.342011pt;}
.ws2f{word-spacing:-12.306901pt;}
.ws1b{word-spacing:-12.262218pt;}
.ws25{word-spacing:-12.111360pt;}
.ws2e{word-spacing:-12.092868pt;}
.ws26{word-spacing:-12.005120pt;}
.ws32{word-spacing:-11.869279pt;}
.wsd0{word-spacing:-11.360000pt;}
.ws13{word-spacing:-11.264000pt;}
.ws34{word-spacing:-10.496000pt;}
.ws2c{word-spacing:-8.389120pt;}
.ws35{word-spacing:-7.810560pt;}
.ws1f{word-spacing:-7.780909pt;}
.ws12{word-spacing:-5.333333pt;}
.ws33{word-spacing:-5.333280pt;}
.wsaa{word-spacing:-4.373333pt;}
.ws5e{word-spacing:-3.952000pt;}
.wsc5{word-spacing:-3.840000pt;}
.ws45{word-spacing:-3.628800pt;}
.ws6e{word-spacing:-3.536000pt;}
.wsc2{word-spacing:-3.520000pt;}
.wsa5{word-spacing:-3.200000pt;}
.ws5c{word-spacing:-3.141333pt;}
.ws4d{word-spacing:-3.124800pt;}
.ws49{word-spacing:-3.024000pt;}
.wsd1{word-spacing:-2.973364pt;}
.ws61{word-spacing:-2.736000pt;}
.wsa9{word-spacing:-2.666667pt;}
.wsd2{word-spacing:-2.186667pt;}
.ws6{word-spacing:-2.048000pt;}
.wsa{word-spacing:-1.472000pt;}
.ws84{word-spacing:-1.386667pt;}
.ws86{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.216000pt;}
.ws62{word-spacing:-1.013333pt;}
.ws88{word-spacing:-0.832000pt;}
.wsb8{word-spacing:-0.746667pt;}
.ws4{word-spacing:-0.448000pt;}
.ws0{word-spacing:0.000000pt;}
.ws93{word-spacing:0.256000pt;}
.ws7f{word-spacing:0.312000pt;}
.ws7{word-spacing:1.024000pt;}
.wsd{word-spacing:1.152000pt;}
.ws8f{word-spacing:1.280000pt;}
.wsb{word-spacing:1.600000pt;}
.wsba{word-spacing:2.346667pt;}
.ws3d{word-spacing:2.620800pt;}
.ws60{word-spacing:2.634667pt;}
.wsab{word-spacing:3.093333pt;}
.ws91{word-spacing:3.328000pt;}
.ws79{word-spacing:3.432000pt;}
.wsa1{word-spacing:3.520000pt;}
.ws8b{word-spacing:4.032000pt;}
.wsbf{word-spacing:4.373333pt;}
.wsc{word-spacing:4.480000pt;}
.ws73{word-spacing:4.784000pt;}
.ws8c{word-spacing:5.120000pt;}
.ws95{word-spacing:5.248000pt;}
.ws8e{word-spacing:5.376000pt;}
.ws10{word-spacing:5.440000pt;}
.ws92{word-spacing:5.504000pt;}
.ws6c{word-spacing:5.573333pt;}
.ws98{word-spacing:6.080000pt;}
.ws97{word-spacing:6.293333pt;}
.ws8{word-spacing:6.464000pt;}
.wsa4{word-spacing:6.506667pt;}
.wsa8{word-spacing:6.613333pt;}
.ws94{word-spacing:6.784000pt;}
.ws5f{word-spacing:7.397333pt;}
.ws4a{word-spacing:7.459200pt;}
.ws96{word-spacing:7.466667pt;}
.ws5{word-spacing:8.000000pt;}
.ws90{word-spacing:8.192000pt;}
.ws5b{word-spacing:8.208000pt;}
.ws50{word-spacing:8.265600pt;}
.ws41{word-spacing:9.273600pt;}
.ws9{word-spacing:9.856000pt;}
.wsf{word-spacing:10.240000pt;}
.wscc{word-spacing:10.560000pt;}
.ws82{word-spacing:11.413333pt;}
.ws4f{word-spacing:11.592000pt;}
.ws89{word-spacing:12.032000pt;}
.ws4b{word-spacing:12.700800pt;}
.ws87{word-spacing:12.864000pt;}
.wscd{word-spacing:13.546667pt;}
.ws63{word-spacing:13.680000pt;}
.wsbb{word-spacing:13.866667pt;}
.ws68{word-spacing:14.085333pt;}
.ws6d{word-spacing:14.456000pt;}
.ws72{word-spacing:16.016000pt;}
.ws3e{word-spacing:16.228800pt;}
.ws5a{word-spacing:16.416000pt;}
.ws69{word-spacing:16.720000pt;}
.wsaf{word-spacing:16.960000pt;}
.wsb6{word-spacing:17.066667pt;}
.ws8d{word-spacing:17.152000pt;}
.ws11{word-spacing:18.688000pt;}
.ws71{word-spacing:19.760000pt;}
.wsb0{word-spacing:21.120000pt;}
.ws52{word-spacing:21.268800pt;}
.ws67{word-spacing:21.989333pt;}
.wse{word-spacing:22.144000pt;}
.ws99{word-spacing:22.186667pt;}
.ws53{word-spacing:23.486400pt;}
.wsc1{word-spacing:24.320000pt;}
.ws42{word-spacing:24.393600pt;}
.ws77{word-spacing:25.688000pt;}
.ws75{word-spacing:26.312000pt;}
.ws3f{word-spacing:26.611200pt;}
.ws6b{word-spacing:27.664000pt;}
.wsca{word-spacing:28.053333pt;}
.wsc3{word-spacing:29.546667pt;}
.ws66{word-spacing:29.589333pt;}
.wsb3{word-spacing:29.653333pt;}
.ws4c{word-spacing:30.240000pt;}
.ws6a{word-spacing:30.400000pt;}
.wsc7{word-spacing:31.253333pt;}
.wsc6{word-spacing:32.000000pt;}
.wsb4{word-spacing:32.213333pt;}
.ws55{word-spacing:32.325333pt;}
.ws43{word-spacing:32.558400pt;}
.ws64{word-spacing:32.730667pt;}
.ws48{word-spacing:32.760000pt;}
.ws57{word-spacing:33.136000pt;}
.wsce{word-spacing:34.346667pt;}
.ws70{word-spacing:35.152000pt;}
.wsbe{word-spacing:35.200000pt;}
.ws46{word-spacing:35.985600pt;}
.ws85{word-spacing:36.053333pt;}
.ws81{word-spacing:37.232000pt;}
.ws40{word-spacing:38.001600pt;}
.ws80{word-spacing:38.584000pt;}
.ws83{word-spacing:38.720000pt;}
.ws44{word-spacing:39.816000pt;}
.ws56{word-spacing:39.824000pt;}
.wsb1{word-spacing:40.426667pt;}
.ws7c{word-spacing:40.456000pt;}
.wsad{word-spacing:40.640000pt;}
.wsb2{word-spacing:41.066667pt;}
.wsa3{word-spacing:42.026667pt;}
.ws59{word-spacing:42.357333pt;}
.ws76{word-spacing:42.536000pt;}
.wsc0{word-spacing:42.666667pt;}
.wsa0{word-spacing:43.093333pt;}
.ws65{word-spacing:43.168000pt;}
.wsb9{word-spacing:47.253333pt;}
.ws7b{word-spacing:53.872000pt;}
.ws6f{word-spacing:54.496000pt;}
.wsbc{word-spacing:54.720000pt;}
.wsac{word-spacing:55.040000pt;}
.wsb5{word-spacing:57.386667pt;}
.wscb{word-spacing:58.346667pt;}
.ws5d{word-spacing:60.597333pt;}
.wsb7{word-spacing:64.426667pt;}
.ws51{word-spacing:64.512000pt;}
.wsa7{word-spacing:64.853333pt;}
.wsa6{word-spacing:65.386667pt;}
.ws7e{word-spacing:65.936000pt;}
.wsc4{word-spacing:66.133333pt;}
.ws4e{word-spacing:66.427200pt;}
.ws9a{word-spacing:67.733333pt;}
.ws9b{word-spacing:70.293333pt;}
.ws9d{word-spacing:78.506667pt;}
.ws74{word-spacing:79.976000pt;}
.ws58{word-spacing:85.120000pt;}
.wsc9{word-spacing:88.426667pt;}
.wsc8{word-spacing:89.066667pt;}
.ws9f{word-spacing:90.666667pt;}
.ws47{word-spacing:92.635200pt;}
.ws7d{word-spacing:94.640000pt;}
.ws9e{word-spacing:95.253333pt;}
.wsbd{word-spacing:98.240000pt;}
.wsae{word-spacing:101.760000pt;}
.ws9c{word-spacing:119.786667pt;}
.wsa2{word-spacing:135.893333pt;}
.ws78{word-spacing:146.224000pt;}
.ws7a{word-spacing:185.016000pt;}
._39{margin-left:-49.006347pt;}
._17{margin-left:-30.441271pt;}
._37{margin-left:-27.174764pt;}
._13{margin-left:-21.504000pt;}
._19{margin-left:-20.462207pt;}
._18{margin-left:-19.161600pt;}
._34{margin-left:-16.863040pt;}
._38{margin-left:-15.950595pt;}
._33{margin-left:-14.820053pt;}
._16{margin-left:-12.933969pt;}
._15{margin-left:-11.304897pt;}
._11{margin-left:-9.984000pt;}
._2{margin-left:-8.398236pt;}
._7{margin-left:-7.017600pt;}
._1{margin-left:-5.488611pt;}
._a{margin-left:-4.177952pt;}
._0{margin-left:-2.887582pt;}
._3{margin-left:-1.628320pt;}
._4{width:0.976992pt;}
._b{width:2.076320pt;}
._5{width:3.452320pt;}
._6{width:4.433182pt;}
._29{width:5.332546pt;}
._21{width:6.247328pt;}
._22{width:7.180576pt;}
._27{width:8.968682pt;}
._14{width:10.327011pt;}
._30{width:11.558720pt;}
._1e{width:13.333120pt;}
._23{width:14.799648pt;}
._32{width:15.723520pt;}
._1f{width:16.626560pt;}
._1d{width:17.731591pt;}
._1c{width:18.690778pt;}
._31{width:19.887316pt;}
._2e{width:20.784640pt;}
._2f{width:21.706400pt;}
._24{width:22.788480pt;}
._2d{width:24.199680pt;}
._26{width:26.081920pt;}
._2a{width:27.707808pt;}
._20{width:28.950400pt;}
._35{width:30.819307pt;}
._2c{width:36.906861pt;}
._25{width:38.013088pt;}
._1b{width:39.945634pt;}
._1a{width:41.092722pt;}
._e{width:75.392000pt;}
._d{width:76.352000pt;}
._28{width:90.807627pt;}
._2b{width:148.810859pt;}
._f{width:156.224000pt;}
._36{width:163.136000pt;}
._9{width:168.512000pt;}
._10{width:173.888000pt;}
._c{width:176.768000pt;}
._8{width:178.816000pt;}
._12{width:468.622165pt;}
.fs2b{font-size:16.000000pt;}
.fs2a{font-size:21.120000pt;}
.fs3c{font-size:21.516267pt;}
.fs25{font-size:22.267200pt;}
.fs2f{font-size:26.880000pt;}
.fs21{font-size:28.339733pt;}
.fs18{font-size:34.428800pt;}
.fs27{font-size:34.560000pt;}
.fs2c{font-size:37.120000pt;}
.fs35{font-size:43.193067pt;}
.fs39{font-size:43.684800pt;}
.fs24{font-size:45.209067pt;}
.fs2d{font-size:48.000000pt;}
.fs38{font-size:52.518933pt;}
.fs26{font-size:53.120000pt;}
.fs46{font-size:53.333333pt;}
.fs34{font-size:53.508267pt;}
.fs14{font-size:54.257600pt;}
.fs17{font-size:54.610667pt;}
.fs11{font-size:56.320000pt;}
.fs3f{font-size:57.644267pt;}
.fs1a{font-size:58.144533pt;}
.fs36{font-size:58.213867pt;}
.fs13{font-size:58.666667pt;}
.fsf{font-size:58.880000pt;}
.fs32{font-size:59.309867pt;}
.fs19{font-size:59.359467pt;}
.fs3d{font-size:59.985067pt;}
.fs23{font-size:62.077867pt;}
.fs12{font-size:62.491200pt;}
.fs1d{font-size:63.200533pt;}
.fs37{font-size:63.275733pt;}
.fsa{font-size:63.565867pt;}
.fs3e{font-size:63.894933pt;}
.fs30{font-size:63.999467pt;}
.fs8{font-size:64.000000pt;}
.fs33{font-size:64.467733pt;}
.fs3b{font-size:65.201067pt;}
.fs20{font-size:67.475733pt;}
.fs15{font-size:69.001600pt;}
.fs29{font-size:69.120000pt;}
.fs16{font-size:69.450667pt;}
.fs45{font-size:72.521067pt;}
.fs1f{font-size:72.874133pt;}
.fs1b{font-size:73.944533pt;}
.fse{font-size:74.880000pt;}
.fs3a{font-size:76.285333pt;}
.fs22{font-size:78.946667pt;}
.fs2e{font-size:80.000000pt;}
.fsd{font-size:85.120000pt;}
.fs1c{font-size:94.801067pt;}
.fs7{font-size:96.000000pt;}
.fs40{font-size:100.800000pt;}
.fs10{font-size:101.120000pt;}
.fs3{font-size:101.333333pt;}
.fs42{font-size:104.000000pt;}
.fs31{font-size:106.665600pt;}
.fs9{font-size:106.666667pt;}
.fs28{font-size:106.880000pt;}
.fsb{font-size:112.000000pt;}
.fs1e{font-size:112.684800pt;}
.fs44{font-size:133.888000pt;}
.fs2{font-size:162.832000pt;}
.fsc{font-size:192.000000pt;}
.fs1{font-size:220.426133pt;}
.fs5{font-size:256.000000pt;}
.fs41{font-size:258.598400pt;}
.fs6{font-size:328.673067pt;}
.fs0{font-size:559.067200pt;}
.fs4{font-size:573.581333pt;}
.fs43{font-size:588.575467pt;}
.y9{bottom:-26.666667pt;}
.y0{bottom:0.000000pt;}
.y264{bottom:2.875067pt;}
.y296{bottom:3.203333pt;}
.y2fd{bottom:3.368000pt;}
.y406{bottom:3.474667pt;}
.y3f8{bottom:3.477333pt;}
.y402{bottom:3.478267pt;}
.y412{bottom:3.478533pt;}
.y511{bottom:3.479867pt;}
.y3fc{bottom:3.480533pt;}
.y40e{bottom:3.480667pt;}
.y40a{bottom:3.481600pt;}
.y362{bottom:3.510667pt;}
.y258{bottom:3.512133pt;}
.y456{bottom:3.512533pt;}
.y26a{bottom:3.512933pt;}
.y496{bottom:3.513333pt;}
.y2d4{bottom:3.513467pt;}
.y39d{bottom:3.513867pt;}
.y3c0{bottom:3.514133pt;}
.y46f{bottom:3.514667pt;}
.y2e0{bottom:3.514800pt;}
.y1f1{bottom:3.515333pt;}
.y502{bottom:3.515467pt;}
.y25c{bottom:3.515867pt;}
.y1c2{bottom:3.516133pt;}
.y2c9{bottom:3.516400pt;}
.y1be{bottom:3.517467pt;}
.y46b{bottom:3.517600pt;}
.y2ce{bottom:3.517733pt;}
.y1d0{bottom:3.517867pt;}
.y4f3{bottom:3.518133pt;}
.y48a{bottom:3.518267pt;}
.y45b{bottom:3.518800pt;}
.y1b9{bottom:3.519067pt;}
.y24e{bottom:3.519200pt;}
.y245{bottom:3.519600pt;}
.y4fe{bottom:3.519733pt;}
.y3b5{bottom:3.520000pt;}
.y1dc{bottom:3.520267pt;}
.y26f{bottom:3.520533pt;}
.y477{bottom:3.520933pt;}
.y486{bottom:3.521200pt;}
.y3a6{bottom:3.521333pt;}
.y343{bottom:3.521467pt;}
.y374{bottom:3.521733pt;}
.y34f{bottom:3.521867pt;}
.y1b3{bottom:3.522000pt;}
.y24a{bottom:3.522133pt;}
.y2d8{bottom:3.522267pt;}
.y4fa{bottom:3.522667pt;}
.y252{bottom:3.522933pt;}
.y1d5{bottom:3.523200pt;}
.y1ec{bottom:3.523333pt;}
.y260{bottom:3.523467pt;}
.y1c7{bottom:3.523600pt;}
.y482{bottom:3.524133pt;}
.y506{bottom:3.524400pt;}
.y370{bottom:3.524667pt;}
.y34a{bottom:3.524800pt;}
.y1e7{bottom:3.524933pt;}
.y4e6{bottom:3.525200pt;}
.y48e{bottom:3.525733pt;}
.y37c{bottom:3.526400pt;}
.y47f{bottom:3.527067pt;}
.y390{bottom:3.527200pt;}
.y3b9{bottom:3.527467pt;}
.y45f{bottom:3.527600pt;}
.y35e{bottom:3.527733pt;}
.y275{bottom:3.528000pt;}
.y50a{bottom:3.528133pt;}
.y397{bottom:3.528533pt;}
.y3bc{bottom:3.528800pt;}
.y1e2{bottom:3.529200pt;}
.y4ed{bottom:3.529733pt;}
.y3c9{bottom:3.530533pt;}
.y27f{bottom:3.532933pt;}
.y3dc{bottom:3.540800pt;}
.y3ec{bottom:3.541867pt;}
.y3e0{bottom:3.548933pt;}
.y3f0{bottom:3.551200pt;}
.y3d8{bottom:3.554933pt;}
.y3e4{bottom:3.555600pt;}
.y3e8{bottom:3.557200pt;}
.y112{bottom:3.696667pt;}
.y139{bottom:3.706133pt;}
.y146{bottom:3.711600pt;}
.y135{bottom:3.712400pt;}
.y11a{bottom:3.712667pt;}
.y13b{bottom:3.713733pt;}
.y11e{bottom:3.716800pt;}
.y131{bottom:3.717333pt;}
.y125{bottom:3.718133pt;}
.y129{bottom:3.718667pt;}
.y11c{bottom:3.718933pt;}
.y13d{bottom:3.720667pt;}
.y133{bottom:3.723600pt;}
.y268{bottom:3.846267pt;}
.y15c{bottom:3.952133pt;}
.y44c{bottom:3.994667pt;}
.y2b6{bottom:3.995333pt;}
.y28e{bottom:3.995467pt;}
.y32f{bottom:3.997067pt;}
.y327{bottom:3.999200pt;}
.y2b1{bottom:4.000400pt;}
.y292{bottom:4.001333pt;}
.y42a{bottom:4.001600pt;}
.y29a{bottom:4.002133pt;}
.y28a{bottom:4.002533pt;}
.y448{bottom:4.002933pt;}
.y452{bottom:4.003333pt;}
.y30c{bottom:4.004533pt;}
.y331{bottom:4.004933pt;}
.y43e{bottom:4.005867pt;}
.y320{bottom:4.006267pt;}
.y2a7{bottom:4.006667pt;}
.y41a{bottom:4.006933pt;}
.y311{bottom:4.007067pt;}
.y1ff{bottom:4.007200pt;}
.y438{bottom:4.007467pt;}
.y422{bottom:4.007733pt;}
.y2f3{bottom:4.008000pt;}
.y302{bottom:4.008800pt;}
.y41e{bottom:4.009067pt;}
.y218{bottom:4.010133pt;}
.y329{bottom:4.010800pt;}
.y31a{bottom:4.011200pt;}
.y442{bottom:4.011333pt;}
.y426{bottom:4.011867pt;}
.y2ac{bottom:4.012000pt;}
.y27b{bottom:4.012133pt;}
.y306{bottom:4.012933pt;}
.y29e{bottom:4.014667pt;}
.y235{bottom:4.015200pt;}
.y1a2{bottom:4.225867pt;}
.y1ab{bottom:4.230267pt;}
.y175{bottom:4.232533pt;}
.y168{bottom:4.252667pt;}
.y15f{bottom:4.253333pt;}
.y14f{bottom:4.255600pt;}
.y155{bottom:4.258667pt;}
.y152{bottom:4.262400pt;}
.y165{bottom:4.266133pt;}
.y207{bottom:4.308800pt;}
.y49f{bottom:4.312133pt;}
.y4a5{bottom:4.317600pt;}
.y521{bottom:4.341467pt;}
.y525{bottom:4.342533pt;}
.y3d2{bottom:4.345200pt;}
.y51c{bottom:4.346933pt;}
.y52e{bottom:4.348933pt;}
.y516{bottom:4.356000pt;}
.y4d1{bottom:4.386400pt;}
.y193{bottom:4.537867pt;}
.y16d{bottom:4.540267pt;}
.y184{bottom:4.541067pt;}
.y199{bottom:4.542800pt;}
.y197{bottom:4.545867pt;}
.y19b{bottom:4.547467pt;}
.y187{bottom:4.552800pt;}
.y195{bottom:4.554267pt;}
.yff{bottom:4.567733pt;}
.y116{bottom:4.584133pt;}
.y241{bottom:4.634667pt;}
.y2ba{bottom:4.635600pt;}
.y324{bottom:4.635733pt;}
.y369{bottom:4.645333pt;}
.y364{bottom:4.646000pt;}
.y127{bottom:4.744933pt;}
.ya8{bottom:4.947200pt;}
.yad{bottom:4.948800pt;}
.yb5{bottom:4.952400pt;}
.y8f{bottom:4.953867pt;}
.y94{bottom:4.955467pt;}
.yc2{bottom:4.961467pt;}
.y109{bottom:5.017200pt;}
.y107{bottom:5.017467pt;}
.y10f{bottom:5.017867pt;}
.y114{bottom:5.020533pt;}
.y99{bottom:5.103467pt;}
.y9e{bottom:5.103867pt;}
.ya3{bottom:5.115867pt;}
.ybb{bottom:5.117467pt;}
.y14c{bottom:5.208933pt;}
.y151{bottom:5.537733pt;}
.y167{bottom:5.538400pt;}
.y15e{bottom:5.539067pt;}
.y14e{bottom:5.541467pt;}
.ya0{bottom:5.761333pt;}
.yb8{bottom:5.761467pt;}
.y91{bottom:5.767600pt;}
.ya5{bottom:5.769600pt;}
.y9b{bottom:5.770000pt;}
.yaa{bottom:5.771333pt;}
.yb2{bottom:5.773600pt;}
.ybf{bottom:5.774933pt;}
.y101{bottom:5.897600pt;}
.y96{bottom:5.935067pt;}
.y209{bottom:6.232533pt;}
.y4d7{bottom:6.423200pt;}
.y118{bottom:6.680933pt;}
.y223{bottom:7.185200pt;}
.y4af{bottom:7.190000pt;}
.y20c{bottom:7.349200pt;}
.y220{bottom:7.353467pt;}
.y4ad{bottom:7.533067pt;}
.y338{bottom:8.160000pt;}
.y224{bottom:8.497600pt;}
.y20d{bottom:8.651333pt;}
.y498{bottom:9.440133pt;}
.y1f7{bottom:9.448933pt;}
.y16b{bottom:9.961333pt;}
.y2a1{bottom:10.881733pt;}
.y148{bottom:14.848000pt;}
.y33f{bottom:15.998267pt;}
.yaf{bottom:16.002133pt;}
.y4be{bottom:16.004533pt;}
.y23c{bottom:16.010133pt;}
.yc4{bottom:16.012400pt;}
.y4d3{bottom:16.300933pt;}
.y3a9{bottom:17.118933pt;}
.y3ac{bottom:17.126667pt;}
.y2a0{bottom:17.444267pt;}
.y263{bottom:19.198000pt;}
.y267{bottom:19.200533pt;}
.y3a0{bottom:19.670000pt;}
.y2e3{bottom:19.672400pt;}
.y358{bottom:19.674000pt;}
.y377{bottom:19.678000pt;}
.y465{bottom:19.679600pt;}
.y2e9{bottom:19.679867pt;}
.y393{bottom:19.683333pt;}
.y396{bottom:19.684667pt;}
.y27e{bottom:19.689200pt;}
.y455{bottom:19.689600pt;}
.y3b4{bottom:19.832533pt;}
.y2c1{bottom:19.836000pt;}
.y430{bottom:19.838933pt;}
.y1c1{bottom:19.839067pt;}
.y2cd{bottom:19.840533pt;}
.y3bb{bottom:19.841333pt;}
.y387{bottom:19.843467pt;}
.y249{bottom:19.845067pt;}
.y1d7{bottom:19.846133pt;}
.y269{bottom:19.846267pt;}
.y2df{bottom:19.848133pt;}
.y3e7{bottom:19.989600pt;}
.y295{bottom:20.005467pt;}
.y244{bottom:20.165467pt;}
.y342{bottom:20.167333pt;}
.y294{bottom:21.120000pt;}
.y27a{bottom:21.449600pt;}
.y28d{bottom:21.766400pt;}
.y41d{bottom:21.769467pt;}
.y291{bottom:21.928400pt;}
.y299{bottom:21.929333pt;}
.y29d{bottom:21.931333pt;}
.y234{bottom:21.931867pt;}
.y44b{bottom:21.932133pt;}
.y186{bottom:22.103600pt;}
.y29c{bottom:23.202133pt;}
.y28c{bottom:23.203867pt;}
.y290{bottom:23.366000pt;}
.y298{bottom:23.366800pt;}
.y173{bottom:23.440800pt;}
.y524{bottom:23.616000pt;}
.y3d1{bottom:23.998800pt;}
.y21d{bottom:24.799333pt;}
.y239{bottom:24.802933pt;}
.y4bb{bottom:24.809200pt;}
.y43{bottom:25.292800pt;}
.y60{bottom:25.301333pt;}
.y3cc{bottom:25.393893pt;}
.ya7{bottom:27.665867pt;}
.yac{bottom:27.667600pt;}
.y93{bottom:27.830533pt;}
.y98{bottom:27.832667pt;}
.y9d{bottom:27.832933pt;}
.ya2{bottom:27.834667pt;}
.yba{bottom:27.836133pt;}
.yc1{bottom:27.836533pt;}
.yb4{bottom:27.837867pt;}
.y240{bottom:29.290933pt;}
.y2b9{bottom:29.291867pt;}
.y323{bottom:29.292000pt;}
.y1f9{bottom:29.760533pt;}
.yb1{bottom:31.846533pt;}
.yb7{bottom:31.855200pt;}
.y49a{bottom:33.920800pt;}
.y400{bottom:35.590267pt;}
.y405{bottom:35.597067pt;}
.y409{bottom:35.604000pt;}
.y3fa{bottom:35.604267pt;}
.y40d{bottom:35.745067pt;}
.y3f6{bottom:35.753333pt;}
.y411{bottom:35.754533pt;}
.y3a4{bottom:35.990000pt;}
.y2e7{bottom:35.991067pt;}
.y25f{bottom:35.992133pt;}
.y47d{bottom:35.995733pt;}
.y3b8{bottom:35.996267pt;}
.y509{bottom:35.996800pt;}
.y459{bottom:35.998000pt;}
.y1b7{bottom:35.998267pt;}
.y1da{bottom:35.999467pt;}
.y4de{bottom:35.999733pt;}
.y361{bottom:36.000133pt;}
.y373{bottom:36.000933pt;}
.y34d{bottom:36.001067pt;}
.y4f9{bottom:36.001867pt;}
.y251{bottom:36.002133pt;}
.y462{bottom:36.002533pt;}
.y39b{bottom:36.003333pt;}
.y4f6{bottom:36.003467pt;}
.y1ef{bottom:36.004933pt;}
.y25b{bottom:36.005467pt;}
.y45e{bottom:36.006800pt;}
.y46a{bottom:36.007200pt;}
.y354{bottom:36.007333pt;}
.y282{bottom:36.009200pt;}
.y4fd{bottom:36.009333pt;}
.y2c4{bottom:36.010133pt;}
.y273{bottom:36.152933pt;}
.y3c8{bottom:36.155467pt;}
.y1ca{bottom:36.157467pt;}
.y2d7{bottom:36.157733pt;}
.y256{bottom:36.158000pt;}
.y37f{bottom:36.158800pt;}
.y1c5{bottom:36.159067pt;}
.y2d3{bottom:36.159200pt;}
.y505{bottom:36.159733pt;}
.y3bf{bottom:36.160000pt;}
.y1e5{bottom:36.160267pt;}
.y46e{bottom:36.160533pt;}
.y48d{bottom:36.161200pt;}
.y501{bottom:36.161333pt;}
.y2c8{bottom:36.162133pt;}
.y35d{bottom:36.163067pt;}
.y1bc{bottom:36.163333pt;}
.y4e1{bottom:36.163467pt;}
.y1ce{bottom:36.163600pt;}
.y489{bottom:36.164133pt;}
.y1e0{bottom:36.164533pt;}
.y24d{bottom:36.165067pt;}
.y4ec{bottom:36.165200pt;}
.y472{bottom:36.165467pt;}
.y26d{bottom:36.166267pt;}
.y485{bottom:36.167067pt;}
.y3c4{bottom:36.167467pt;}
.y4e9{bottom:36.168000pt;}
.y1ea{bottom:36.169200pt;}
.y3d6{bottom:36.260667pt;}
.y3df{bottom:36.265067pt;}
.y3db{bottom:36.267333pt;}
.y3e3{bottom:36.418800pt;}
.y3eb{bottom:36.427200pt;}
.y3ef{bottom:36.435333pt;}
.y2bd{bottom:36.480533pt;}
.y36e{bottom:36.483067pt;}
.y2db{bottom:36.484933pt;}
.y2ee{bottom:36.638533pt;}
.y1f3{bottom:36.639867pt;}
.y4d6{bottom:36.642000pt;}
.y110{bottom:36.716800pt;}
.y1d3{bottom:36.794000pt;}
.y4da{bottom:36.795600pt;}
.y137{bottom:36.960667pt;}
.y2fb{bottom:37.118000pt;}
.y8a{bottom:37.598000pt;}
.y38e{bottom:38.079200pt;}
.y3b0{bottom:38.250533pt;}
.y441{bottom:39.688400pt;}
.y2aa{bottom:39.689067pt;}
.y314{bottom:39.689600pt;}
.y31e{bottom:39.839600pt;}
.y2a5{bottom:39.840000pt;}
.y418{bottom:39.840267pt;}
.y30f{bottom:39.840400pt;}
.y421{bottom:39.841067pt;}
.y2f1{bottom:39.841333pt;}
.y300{bottom:39.842133pt;}
.y219{bottom:39.843467pt;}
.y2af{bottom:39.844133pt;}
.y318{bottom:39.844533pt;}
.y425{bottom:39.845200pt;}
.y429{bottom:39.845333pt;}
.y288{bottom:39.846267pt;}
.y236{bottom:39.848533pt;}
.y2b4{bottom:39.849467pt;}
.y2f6{bottom:39.850533pt;}
.y42d{bottom:39.850667pt;}
.y436{bottom:39.851333pt;}
.y50f{bottom:40.974667pt;}
.y172{bottom:41.341867pt;}
.y103{bottom:41.590133pt;}
.y1a9{bottom:42.338400pt;}
.y1fd{bottom:42.392533pt;}
.y163{bottom:42.810400pt;}
.y514{bottom:43.070800pt;}
.y528{bottom:43.228000pt;}
.y52c{bottom:43.234400pt;}
.y51f{bottom:43.249067pt;}
.y49d{bottom:43.343333pt;}
.y161{bottom:44.096800pt;}
.y42{bottom:44.492800pt;}
.y5f{bottom:44.501333pt;}
.y3cb{bottom:44.593733pt;}
.y149{bottom:49.329333pt;}
.y166{bottom:49.804000pt;}
.y46{bottom:50.132800pt;}
.y8d{bottom:50.547600pt;}
.y4c3{bottom:51.497733pt;}
.y347{bottom:52.316400pt;}
.y37b{bottom:52.318000pt;}
.y493{bottom:52.325733pt;}
.y170{bottom:53.466800pt;}
.y478{bottom:54.797333pt;}
.y10c{bottom:55.147200pt;}
.y2ed{bottom:55.838533pt;}
.y1f2{bottom:55.839867pt;}
.y1b0{bottom:56.303200pt;}
.y86{bottom:56.785867pt;}
.y44f{bottom:57.607467pt;}
.y33b{bottom:57.761200pt;}
.y445{bottom:57.763333pt;}
.ybd{bottom:57.764533pt;}
.y309{bottom:57.764933pt;}
.y22e{bottom:57.765200pt;}
.y43b{bottom:57.766267pt;}
.y4f0{bottom:57.903467pt;}
.y61{bottom:59.444667pt;}
.yfb{bottom:61.301467pt;}
.yc3{bottom:61.914667pt;}
.y492{bottom:62.156000pt;}
.y519{bottom:62.686800pt;}
.y1a6{bottom:63.579200pt;}
.y44{bottom:66.126267pt;}
.yfa{bottom:66.127600pt;}
.y3cd{bottom:66.220000pt;}
.y4c1{bottom:66.820667pt;}
.ya{bottom:67.558533pt;}
.y4d4{bottom:67.791733pt;}
.y413{bottom:69.302133pt;}
.y160{bottom:69.869333pt;}
.y120{bottom:70.052800pt;}
.y12b{bottom:70.198533pt;}
.y13f{bottom:70.201200pt;}
.y5f6{bottom:70.686133pt;}
.y5ce{bottom:70.687467pt;}
.y56c{bottom:70.688800pt;}
.y16f{bottom:74.069733pt;}
.y157{bottom:74.743733pt;}
.y32b{bottom:75.528267pt;}
.y22c{bottom:75.692267pt;}
.y284{bottom:77.464800pt;}
.y1f4{bottom:77.466133pt;}
.y334{bottom:80.480000pt;}
.y495{bottom:81.997040pt;}
.y59a{bottom:82.027333pt;}
.y14{bottom:82.068453pt;}
.y201{bottom:82.548400pt;}
.yf9{bottom:82.614400pt;}
.y3ce{bottom:84.257867pt;}
.y340{bottom:86.509067pt;}
.y4c0{bottom:87.854533pt;}
.y5f3{bottom:89.627600pt;}
.y491{bottom:90.148400pt;}
.y4a1{bottom:91.192533pt;}
.yc0{bottom:92.476000pt;}
.y164{bottom:93.402400pt;}
.y162{bottom:96.261733pt;}
.y23e{bottom:97.298800pt;}
.y2b7{bottom:97.300133pt;}
.y1ad{bottom:97.301467pt;}
.y38a{bottom:97.302133pt;}
.y494{bottom:98.158800pt;}
.y4a6{bottom:101.442533pt;}
.y19d{bottom:104.067067pt;}
.y360{bottom:107.936000pt;}
.y568{bottom:108.704400pt;}
.y54d{bottom:109.859333pt;}
.y20f{bottom:110.062267pt;}
.y226{bottom:110.067200pt;}
.y4b4{bottom:111.361333pt;}
.y212{bottom:111.364267pt;}
.y229{bottom:111.525600pt;}
.y4b1{bottom:113.923867pt;}
.yf8{bottom:117.814400pt;}
.y58b{bottom:120.601067pt;}
.y5f2{bottom:121.627600pt;}
.y5cc{bottom:125.803333pt;}
.y35f{bottom:127.623733pt;}
.y15d{bottom:128.330667pt;}
.y1c{bottom:129.033733pt;}
.y3f1{bottom:131.494800pt;}
.y490{bottom:134.796000pt;}
.yf7{bottom:135.414400pt;}
.ybc{bottom:138.714667pt;}
.y567{bottom:139.104400pt;}
.y54c{bottom:140.099333pt;}
.y5c{bottom:144.899707pt;}
.y5f5{bottom:147.048843pt;}
.y156{bottom:148.238667pt;}
.y58a{bottom:151.801067pt;}
.y410{bottom:152.529333pt;}
.yf6{bottom:153.014400pt;}
.y5f1{bottom:153.627600pt;}
.y5fe{bottom:154.348933pt;}
.y48f{bottom:154.481733pt;}
.y5cb{bottom:157.803333pt;}
.y242{bottom:158.899733pt;}
.y35c{bottom:164.096000pt;}
.y177{bottom:169.189467pt;}
.y566{bottom:169.504400pt;}
.y15b{bottom:169.904267pt;}
.y54b{bottom:170.339333pt;}
.ybe{bottom:170.562533pt;}
.yf5{bottom:170.614400pt;}
.y40f{bottom:172.144533pt;}
.y169{bottom:173.490267pt;}
.y17c{bottom:174.593067pt;}
.y25e{bottom:180.334667pt;}
.y5b5{bottom:180.516933pt;}
.y13{bottom:180.670373pt;}
.y589{bottom:183.001067pt;}
.y4c8{bottom:183.530933pt;}
.y35b{bottom:183.936133pt;}
.y56e{bottom:184.164905pt;}
.y431{bottom:184.467467pt;}
.y5f0{bottom:185.627600pt;}
.y4d8{bottom:187.580667pt;}
.y15a{bottom:187.597067pt;}
.y159{bottom:187.598592pt;}
.yf4{bottom:188.214400pt;}
.y367{bottom:188.826133pt;}
.y1f5{bottom:188.827467pt;}
.y50b{bottom:188.828133pt;}
.y2d9{bottom:189.278667pt;}
.y5ca{bottom:189.803333pt;}
.y18a{bottom:189.942800pt;}
.y1d1{bottom:190.424533pt;}
.y48c{bottom:190.956000pt;}
.y58c{bottom:196.066717pt;}
.y565{bottom:199.904400pt;}
.y1ac{bottom:199.917333pt;}
.y25d{bottom:200.014267pt;}
.y54a{bottom:200.579333pt;}
.y5e{bottom:203.373733pt;}
.y158{bottom:205.289067pt;}
.yf3{bottom:205.814400pt;}
.y44e{bottom:205.912000pt;}
.y40c{bottom:208.212000pt;}
.y4eb{bottom:208.842667pt;}
.y2eb{bottom:210.713333pt;}
.y48b{bottom:210.794267pt;}
.y1ee{bottom:211.846667pt;}
.y7{bottom:213.838533pt;}
.y588{bottom:214.201067pt;}
.y1a5{bottom:215.258667pt;}
.yb9{bottom:217.434667pt;}
.y5ef{bottom:217.627600pt;}
.y1b{bottom:219.225733pt;}
.y5b{bottom:221.178747pt;}
.y5c9{bottom:221.803333pt;}
.y2ea{bottom:222.226533pt;}
.yf2{bottom:223.414400pt;}
.y451{bottom:227.825360pt;}
.y40b{bottom:227.830667pt;}
.y4ea{bottom:228.684933pt;}
.y564{bottom:230.304400pt;}
.y35a{bottom:230.811200pt;}
.y549{bottom:230.819333pt;}
.y1f0{bottom:231.528667pt;}
.y41{bottom:235.356800pt;}
.y1ed{bottom:235.528667pt;}
.y44d{bottom:236.634133pt;}
.y25a{bottom:236.654667pt;}
.y154{bottom:237.352000pt;}
.y1aa{bottom:238.378267pt;}
.yf1{bottom:241.014400pt;}
.y587{bottom:245.401067pt;}
.y450{bottom:245.592400pt;}
.y488{bottom:247.276000pt;}
.y5ee{bottom:249.627600pt;}
.y2e8{bottom:250.713333pt;}
.y5c8{bottom:253.803333pt;}
.y40{bottom:254.556800pt;}
.y8{bottom:256.119867pt;}
.y259{bottom:256.326800pt;}
.y153{bottom:257.260000pt;}
.y359{bottom:257.856000pt;}
.y1a7{bottom:258.267600pt;}
.yf0{bottom:258.614400pt;}
.y563{bottom:260.704400pt;}
.y548{bottom:261.059333pt;}
.yb6{bottom:263.676000pt;}
.y408{bottom:263.896000pt;}
.y4e8{bottom:265.162667pt;}
.y487{bottom:267.117200pt;}
.y2a3{bottom:267.532400pt;}
.y1e9{bottom:268.005333pt;}
.y4d{bottom:272.351600pt;}
.yfd{bottom:273.650267pt;}
.y3f{bottom:273.756800pt;}
.y1a8{bottom:274.300000pt;}
.yef{bottom:276.214400pt;}
.y586{bottom:276.601067pt;}
.y150{bottom:277.168000pt;}
.y12{bottom:279.272293pt;}
.y5ed{bottom:281.627600pt;}
.y407{bottom:283.505200pt;}
.y44a{bottom:284.952000pt;}
.y4e7{bottom:285.007867pt;}
.y5c7{bottom:285.803333pt;}
.y1eb{bottom:287.851600pt;}
.y2e6{bottom:290.714667pt;}
.y562{bottom:291.104400pt;}
.y547{bottom:291.299333pt;}
.y1e8{bottom:291.851600pt;}
.y255{bottom:292.814667pt;}
.y3e{bottom:292.956800pt;}
.yee{bottom:293.814400pt;}
.y19c{bottom:295.554667pt;}
.y14d{bottom:297.233333pt;}
.y357{bottom:297.856000pt;}
.y449{bottom:297.925733pt;}
.y4d2{bottom:301.825333pt;}
.y484{bottom:303.596000pt;}
.y85{bottom:304.056667pt;}
.y585{bottom:307.801067pt;}
.y14a{bottom:308.735733pt;}
.y356{bottom:309.540400pt;}
.y2e5{bottom:310.549467pt;}
.yed{bottom:311.414400pt;}
.y3d{bottom:312.156800pt;}
.y254{bottom:312.656800pt;}
.y257{bottom:312.660133pt;}
.y147{bottom:313.430667pt;}
.y5fd{bottom:313.571200pt;}
.y5ec{bottom:313.627600pt;}
.yb3{bottom:316.474667pt;}
.y5a{bottom:316.527547pt;}
.y1a{bottom:317.049733pt;}
.y14b{bottom:317.141333pt;}
.y5c6{bottom:317.803333pt;}
.y1a1{bottom:318.669867pt;}
.y4e{bottom:318.751333pt;}
.y404{bottom:319.578667pt;}
.y4e5{bottom:321.482667pt;}
.y561{bottom:321.504400pt;}
.y546{bottom:321.539333pt;}
.y483{bottom:323.440133pt;}
.y1e4{bottom:324.326667pt;}
.y444{bottom:328.152000pt;}
.yec{bottom:329.014400pt;}
.y3c{bottom:331.356800pt;}
.y4c7{bottom:332.958667pt;}
.y286{bottom:335.689733pt;}
.y353{bottom:337.856000pt;}
.y1a0{bottom:337.897738pt;}
.y84{bottom:338.790667pt;}
.y584{bottom:339.001067pt;}
.y403{bottom:339.190133pt;}
.y6{bottom:339.325467pt;}
.y1a4{bottom:340.955876pt;}
.y4e4{bottom:341.330667pt;}
.y13e{bottom:341.774667pt;}
.y1e6{bottom:344.174533pt;}
.yc5{bottom:344.284533pt;}
.y5e5{bottom:345.627600pt;}
.y3ad{bottom:346.061333pt;}
.yeb{bottom:346.614400pt;}
.y2e4{bottom:347.033333pt;}
.y1e3{bottom:348.164000pt;}
.y352{bottom:349.539493pt;}
.y5c5{bottom:349.803333pt;}
.y447{bottom:350.069707pt;}
.y3b{bottom:350.556800pt;}
.y5fc{bottom:351.211200pt;}
.y545{bottom:351.779333pt;}
.y560{bottom:351.904400pt;}
.y3c7{bottom:353.420000pt;}
.y68{bottom:356.274000pt;}
.y4d0{bottom:357.250620pt;}
.y355{bottom:357.696667pt;}
.y83{bottom:357.990667pt;}
.y19f{bottom:358.460968pt;}
.y443{bottom:359.040400pt;}
.y253{bottom:359.535200pt;}
.y1a3{bottom:359.843067pt;}
.y481{bottom:359.916000pt;}
.y143{bottom:360.635467pt;}
.y145{bottom:362.123067pt;}
.yb0{bottom:362.716000pt;}
.yea{bottom:364.214400pt;}
.y351{bottom:365.701253pt;}
.y446{bottom:367.998667pt;}
.y4c{bottom:368.351600pt;}
.y3a{bottom:369.756800pt;}
.y583{bottom:370.201067pt;}
.y69{bottom:371.832000pt;}
.y3c6{bottom:373.263067pt;}
.y3ff{bottom:375.260000pt;}
.y4cf{bottom:377.136946pt;}
.y82{bottom:377.190667pt;}
.y142{bottom:377.523467pt;}
.y3ae{bottom:377.608000pt;}
.y5e4{bottom:377.627600pt;}
.y4e3{bottom:377.802667pt;}
.y11{bottom:377.874213pt;}
.y144{bottom:378.740933pt;}
.y141{bottom:378.742838pt;}
.y19e{bottom:379.041067pt;}
.y480{bottom:379.763067pt;}
.y1df{bottom:380.645333pt;}
.y5c4{bottom:381.803333pt;}
.ye9{bottom:381.814400pt;}
.y544{bottom:382.019333pt;}
.y55f{bottom:382.304400pt;}
.y5fb{bottom:385.744533pt;}
.y250{bottom:386.574667pt;}
.y3fe{bottom:386.804918pt;}
.y2e2{bottom:387.033333pt;}
.y5{bottom:388.175067pt;}
.y39{bottom:388.956800pt;}
.y4e2{bottom:389.486933pt;}
.y38c{bottom:390.736667pt;}
.y1de{bottom:392.332480pt;}
.y401{bottom:394.722667pt;}
.y140{bottom:395.358133pt;}
.y81{bottom:396.390667pt;}
.y4ce{bottom:397.006971pt;}
.y2e1{bottom:398.716133pt;}
.ye8{bottom:399.414400pt;}
.y1e1{bottom:400.486933pt;}
.y2ec{bottom:400.787733pt;}
.y582{bottom:401.401067pt;}
.y3fd{bottom:402.796933pt;}
.y5e6{bottom:404.019467pt;}
.y17{bottom:404.073733pt;}
.y350{bottom:404.425733pt;}
.y24f{bottom:406.253867pt;}
.y440{bottom:407.352000pt;}
.y1dd{bottom:408.653600pt;}
.y5e3{bottom:409.627600pt;}
.y3c3{bottom:409.741333pt;}
.y59{bottom:411.876347pt;}
.y543{bottom:412.259333pt;}
.y55e{bottom:412.704400pt;}
.y58f{bottom:413.247333pt;}
.y5c3{bottom:413.803333pt;}
.y80{bottom:415.590667pt;}
.y47c{bottom:416.236000pt;}
.y19a{bottom:416.336000pt;}
.y4cd{bottom:416.909596pt;}
.ye7{bottom:417.014400pt;}
.y4e0{bottom:417.802667pt;}
.y30d{bottom:417.912800pt;}
.y23b{bottom:418.400000pt;}
.y3ca{bottom:419.003867pt;}
.y366{bottom:419.252667pt;}
.y67{bottom:420.274000pt;}
.y3c2{bottom:421.434293pt;}
.y5fa{bottom:421.757867pt;}
.yc9{bottom:424.204400pt;}
.y13c{bottom:425.472000pt;}
.y88{bottom:426.046267pt;}
.y2de{bottom:427.034667pt;}
.y321{bottom:427.261733pt;}
.y38{bottom:427.356800pt;}
.y43f{bottom:429.280000pt;}
.y3c5{bottom:429.575467pt;}
.y23d{bottom:430.342400pt;}
.y3f9{bottom:430.942667pt;}
.y34c{bottom:431.456000pt;}
.y581{bottom:432.601067pt;}
.ye6{bottom:434.614400pt;}
.y7f{bottom:434.790667pt;}
.y47e{bottom:436.075467pt;}
.y47b{bottom:436.081573pt;}
.y4cc{bottom:436.779621pt;}
.y1d9{bottom:436.966667pt;}
.y198{bottom:437.592000pt;}
.y4df{bottom:437.643200pt;}
.y3c1{bottom:437.742133pt;}
.y2dd{bottom:438.716133pt;}
.y31d{bottom:439.344000pt;}
.y5e2{bottom:441.627600pt;}
.y542{bottom:442.499333pt;}
.y13a{bottom:442.685333pt;}
.y24c{bottom:442.734667pt;}
.y55d{bottom:443.104400pt;}
.y5c2{bottom:445.803333pt;}
.yae{bottom:446.353333pt;}
.y37{bottom:446.556800pt;}
.y238{bottom:448.961333pt;}
.y3fb{bottom:450.397200pt;}
.y34e{bottom:451.300800pt;}
.ye5{bottom:452.214400pt;}
.y31c{bottom:453.425013pt;}
.y7e{bottom:453.990667pt;}
.y34b{bottom:455.290400pt;}
.y23a{bottom:456.149733pt;}
.y4cb{bottom:456.665947pt;}
.y1db{bottom:456.809867pt;}
.y196{bottom:459.016000pt;}
.y136{bottom:459.900000pt;}
.y1d8{bottom:460.809867pt;}
.y31f{bottom:461.266933pt;}
.y24b{bottom:462.576800pt;}
.y580{bottom:463.801067pt;}
.y36{bottom:465.756800pt;}
.y3be{bottom:466.061333pt;}
.y2da{bottom:467.033333pt;}
.y43a{bottom:468.472000pt;}
.y31b{bottom:469.746133pt;}
.ye4{bottom:469.814400pt;}
.y5f9{bottom:470.700747pt;}
.y541{bottom:472.739333pt;}
.y7d{bottom:473.190667pt;}
.y55c{bottom:473.504400pt;}
.y5e1{bottom:473.627600pt;}
.y4dd{bottom:474.122667pt;}
.y453{bottom:475.333333pt;}
.y10{bottom:476.476133pt;}
.y4ca{bottom:476.715275pt;}
.yab{bottom:477.073333pt;}
.y5c1{bottom:477.803333pt;}
.y47a{bottom:478.471333pt;}
.y225{bottom:479.520000pt;}
.y138{bottom:480.243467pt;}
.y194{bottom:480.269333pt;}
.y3bd{bottom:485.908800pt;}
.y479{bottom:485.934400pt;}
.y3f5{bottom:486.468000pt;}
.y2dc{bottom:486.882800pt;}
.y50d{bottom:487.385200pt;}
.ye3{bottom:487.414400pt;}
.y346{bottom:487.776000pt;}
.y43d{bottom:490.396960pt;}
.y7c{bottom:492.390667pt;}
.y5f8{bottom:492.457067pt;}
.y4f{bottom:492.833268pt;}
.y1d6{bottom:493.286667pt;}
.y4dc{bottom:493.966133pt;}
.y57f{bottom:495.001067pt;}
.y4{bottom:496.231253pt;}
.y4c9{bottom:496.601600pt;}
.y476{bottom:496.770667pt;}
.y54e{bottom:497.852800pt;}
.y3f4{bottom:498.022554pt;}
.y248{bottom:499.054667pt;}
.y439{bottom:499.352800pt;}
.y58d{bottom:500.313867pt;}
.y317{bottom:500.464000pt;}
.y237{bottom:501.451867pt;}
.y233{bottom:501.457253pt;}
.y189{bottom:501.525333pt;}
.y540{bottom:502.979333pt;}
.y55b{bottom:503.904400pt;}
.y230{bottom:504.003867pt;}
.y35{bottom:504.156800pt;}
.ye2{bottom:505.014400pt;}
.y66{bottom:505.602000pt;}
.y5e0{bottom:505.627600pt;}
.y3f7{bottom:506.092400pt;}
.y58{bottom:507.225147pt;}
.y349{bottom:507.618240pt;}
.y43c{bottom:508.311200pt;}
.y5c0{bottom:509.803333pt;}
.y134{bottom:510.356000pt;}
.y247{bottom:510.727387pt;}
.y7b{bottom:511.590667pt;}
.y5cf{bottom:511.651067pt;}
.y5b1{bottom:511.652400pt;}
.y3f3{bottom:514.145867pt;}
.y345{bottom:515.613333pt;}
.y5f7{bottom:516.079467pt;}
.y475{bottom:516.604133pt;}
.y16{bottom:519.273733pt;}
.y22f{bottom:519.368533pt;}
.y232{bottom:519.371493pt;}
.y36b{bottom:520.112000pt;}
.y3ba{bottom:522.380000pt;}
.y319{bottom:522.391867pt;}
.ye1{bottom:522.614400pt;}
.ya9{bottom:523.313333pt;}
.y34{bottom:523.356800pt;}
.y348{bottom:523.780000pt;}
.y57e{bottom:526.201067pt;}
.y57{bottom:526.294907pt;}
.y192{bottom:526.641084pt;}
.y316{bottom:526.704400pt;}
.y599{bottom:526.709600pt;}
.y132{bottom:527.570667pt;}
.y4d9{bottom:530.441333pt;}
.y7a{bottom:530.790667pt;}
.y4bf{bottom:531.986667pt;}
.y53f{bottom:533.219333pt;}
.y1d2{bottom:533.286667pt;}
.y55a{bottom:534.304400pt;}
.y2a2{bottom:536.449333pt;}
.y22d{bottom:537.285200pt;}
.y231{bottom:537.285733pt;}
.y5df{bottom:537.627600pt;}
.y4c6{bottom:538.668000pt;}
.ye0{bottom:540.214400pt;}
.y5bf{bottom:541.803333pt;}
.y33{bottom:542.556800pt;}
.y2b3{bottom:543.809333pt;}
.y130{bottom:544.784000pt;}
.y228{bottom:544.791467pt;}
.y191{bottom:547.221183pt;}
.y435{bottom:547.512000pt;}
.y246{bottom:549.451867pt;}
.y79{bottom:549.990667pt;}
.ya6{bottom:550.033333pt;}
.y4db{bottom:550.289067pt;}
.y3f2{bottom:551.634133pt;}
.y474{bottom:553.090667pt;}
.y1d4{bottom:553.132800pt;}
.y22b{bottom:555.214693pt;}
.y4c5{bottom:555.298133pt;}
.y57d{bottom:557.401067pt;}
.ydf{bottom:557.814400pt;}
.y598{bottom:558.709600pt;}
.y2bb{bottom:560.058533pt;}
.y434{bottom:560.475147pt;}
.y313{bottom:561.744000pt;}
.y12a{bottom:562.000000pt;}
.y3{bottom:562.359093pt;}
.y3b7{bottom:562.381333pt;}
.y53e{bottom:563.459333pt;}
.y559{bottom:564.704400pt;}
.y4c4{bottom:564.902400pt;}
.y2b5{bottom:565.742133pt;}
.y227{bottom:567.191467pt;}
.y190{bottom:567.818151pt;}
.y78{bottom:569.190667pt;}
.y437{bottom:569.436133pt;}
.y5de{bottom:569.627600pt;}
.y2b2{bottom:569.721333pt;}
.y344{bottom:570.654933pt;}
.y22a{bottom:573.128933pt;}
.y5be{bottom:573.803333pt;}
.yf{bottom:575.078053pt;}
.yde{bottom:575.414400pt;}
.y243{bottom:576.494667pt;}
.y471{bottom:576.772000pt;}
.y433{bottom:578.404107pt;}
.y4ee{bottom:579.481733pt;}
.y32{bottom:580.956800pt;}
.y2d6{bottom:581.328000pt;}
.y3b6{bottom:582.221333pt;}
.y12f{bottom:582.335333pt;}
.y315{bottom:583.516933pt;}
.y312{bottom:583.975200pt;}
.y3cf{bottom:585.671867pt;}
.y77{bottom:588.390667pt;}
.y18f{bottom:588.398249pt;}
.y57c{bottom:588.601067pt;}
.y597{bottom:590.709600pt;}
.y65{bottom:590.930000pt;}
.ydd{bottom:593.014400pt;}
.y53d{bottom:593.699333pt;}
.y558{bottom:595.104400pt;}
.ya4{bottom:596.273333pt;}
.y473{bottom:596.604133pt;}
.y341{bottom:597.696000pt;}
.y4c2{bottom:598.807333pt;}
.y188{bottom:598.843067pt;}
.y12e{bottom:598.953067pt;}
.y12d{bottom:598.955638pt;}
.y36c{bottom:599.187840pt;}
.y31{bottom:600.156800pt;}
.y508{bottom:600.912000pt;}
.y2d5{bottom:601.162800pt;}
.y5dd{bottom:601.627600pt;}
.y2ae{bottom:604.929333pt;}
.y222{bottom:605.600000pt;}
.y5bd{bottom:605.803333pt;}
.y4bd{bottom:606.470667pt;}
.y3ee{bottom:607.094667pt;}
.y76{bottom:607.590667pt;}
.y18e{bottom:609.147037pt;}
.y1e{bottom:610.521733pt;}
.ydc{bottom:610.614400pt;}
.y50c{bottom:610.674667pt;}
.y261{bottom:610.677067pt;}
.y12c{bottom:615.570933pt;}
.y3b3{bottom:618.701333pt;}
.y432{bottom:618.722187pt;}
.y52b{bottom:618.834667pt;}
.y30{bottom:619.356800pt;}
.y57b{bottom:619.801067pt;}
.y389{bottom:620.457333pt;}
.y507{bottom:620.596400pt;}
.y56{bottom:621.643707pt;}
.y596{bottom:622.709600pt;}
.ya1{bottom:622.833333pt;}
.y30e{bottom:622.864000pt;}
.y53c{bottom:623.939333pt;}
.y557{bottom:625.504400pt;}
.y75{bottom:626.790667pt;}
.y2b0{bottom:626.856800pt;}
.y3ed{bottom:627.076800pt;}
.ydb{bottom:628.214400pt;}
.y2{bottom:628.486933pt;}
.y21f{bottom:628.640000pt;}
.y18d{bottom:629.710267pt;}
.y3b2{bottom:630.388000pt;}
.y414{bottom:630.494800pt;}
.y2ad{bottom:630.846400pt;}
.y281{bottom:632.105333pt;}
.y388{bottom:632.144533pt;}
.y5dc{bottom:633.627600pt;}
.y221{bottom:636.003867pt;}
.y4ba{bottom:637.030667pt;}
.y2d2{bottom:637.649333pt;}
.y5bc{bottom:637.803333pt;}
.y470{bottom:638.052133pt;}
.y2f{bottom:638.556800pt;}
.y1ae{bottom:639.355467pt;}
.y55{bottom:640.713467pt;}
.y52d{bottom:642.626267pt;}
.y52a{bottom:642.964800pt;}
.y4bc{bottom:644.381467pt;}
.y310{bottom:644.787733pt;}
.y128{bottom:645.696000pt;}
.yda{bottom:645.814400pt;}
.y74{bottom:645.990667pt;}
.y18c{bottom:650.290366pt;}
.y57a{bottom:651.001067pt;}
.y21c{bottom:651.840000pt;}
.y42f{bottom:651.926667pt;}
.y283{bottom:651.958267pt;}
.y53b{bottom:654.179333pt;}
.y595{bottom:654.709600pt;}
.y280{bottom:655.468800pt;}
.y556{bottom:655.904400pt;}
.y504{bottom:657.072000pt;}
.y2d1{bottom:657.485733pt;}
.y2e{bottom:657.756800pt;}
.y3af{bottom:658.700000pt;}
.y21e{bottom:659.024800pt;}
.y363{bottom:659.437333pt;}
.y46d{bottom:659.652000pt;}
.y5b0{bottom:659.802133pt;}
.y386{bottom:660.457333pt;}
.y1cd{bottom:660.629333pt;}
.y126{bottom:662.910667pt;}
.yd9{bottom:663.414400pt;}
.y42e{bottom:663.609333pt;}
.y3ea{bottom:663.826667pt;}
.y365{bottom:664.072933pt;}
.y73{bottom:665.190667pt;}
.y5db{bottom:665.627600pt;}
.y2a9{bottom:666.209333pt;}
.y4b0{bottom:667.749333pt;}
.y9f{bottom:669.073333pt;}
.y5bb{bottom:669.803333pt;}
.y18b{bottom:670.887333pt;}
.y385{bottom:672.144533pt;}
.ye{bottom:673.679973pt;}
.y64{bottom:676.258000pt;}
.y2ef{bottom:676.539067pt;}
.y503{bottom:676.908800pt;}
.y2d{bottom:676.956800pt;}
.y5af{bottom:679.002133pt;}
.y3b1{bottom:679.033867pt;}
.y46c{bottom:679.489600pt;}
.y1cf{bottom:680.470000pt;}
.yd8{bottom:681.014400pt;}
.y11f{bottom:681.164000pt;}
.y579{bottom:682.201067pt;}
.y20e{bottom:682.400000pt;}
.y3e9{bottom:683.821600pt;}
.y72{bottom:684.390667pt;}
.y53a{bottom:684.419333pt;}
.y1cc{bottom:684.470000pt;}
.y527{bottom:685.161333pt;}
.y555{bottom:686.304400pt;}
.y21b{bottom:686.399733pt;}
.y594{bottom:686.709600pt;}
.y2ab{bottom:688.138000pt;}
.y2a8{bottom:688.294267pt;}
.y27d{bottom:688.425333pt;}
.y4b9{bottom:689.669520pt;}
.y42c{bottom:691.925333pt;}
.y38b{bottom:693.510667pt;}
.y2d0{bottom:693.968000pt;}
.y9c{bottom:695.793333pt;}
.y2c{bottom:696.156800pt;}
.y5da{bottom:697.627600pt;}
.y308{bottom:697.805333pt;}
.y5ae{bottom:698.202133pt;}
.yd7{bottom:698.614400pt;}
.y383{bottom:700.458667pt;}
.y3ab{bottom:700.870667pt;}
.y124{bottom:701.499333pt;}
.y5ba{bottom:701.803333pt;}
.y27c{bottom:703.635467pt;}
.y21a{bottom:704.326800pt;}
.y217{bottom:704.332187pt;}
.y2cf{bottom:705.652400pt;}
.y33e{bottom:706.405333pt;}
.y19{bottom:707.073733pt;}
.y4b8{bottom:707.436560pt;}
.y185{bottom:707.496000pt;}
.y529{bottom:708.946667pt;}
.y526{bottom:709.285200pt;}
.y3aa{bottom:711.268267pt;}
.y382{bottom:712.149227pt;}
.y500{bottom:713.393333pt;}
.y578{bottom:713.401067pt;}
.y42b{bottom:713.859333pt;}
.y539{bottom:714.659333pt;}
.y2b{bottom:715.356800pt;}
.y469{bottom:715.972000pt;}
.yd6{bottom:716.214400pt;}
.y554{bottom:716.704400pt;}
.y1c9{bottom:716.948000pt;}
.y5ad{bottom:717.402133pt;}
.y122{bottom:718.115852pt;}
.y123{bottom:718.117200pt;}
.y593{bottom:718.709600pt;}
.y30b{bottom:719.724640pt;}
.y384{bottom:720.300800pt;}
.y3e6{bottom:720.557333pt;}
.y216{bottom:722.246427pt;}
.y4b7{bottom:725.365520pt;}
.y2a4{bottom:727.329333pt;}
.y279{bottom:728.425333pt;}
.y381{bottom:728.457067pt;}
.y307{bottom:729.007867pt;}
.y5d9{bottom:729.627600pt;}
.y3e5{bottom:732.320267pt;}
.y4ff{bottom:733.231733pt;}
.y5b9{bottom:733.803333pt;}
.yd5{bottom:733.814400pt;}
.y2cc{bottom:733.968000pt;}
.y2a{bottom:734.556800pt;}
.y121{bottom:734.744800pt;}
.y71{bottom:735.537733pt;}
.y176{bottom:735.666667pt;}
.y468{bottom:735.812533pt;}
.y54{bottom:736.062267pt;}
.y5ac{bottom:736.602133pt;}
.y1cb{bottom:736.792933pt;}
.y333{bottom:736.965333pt;}
.y30a{bottom:737.653600pt;}
.y3a8{bottom:738.149333pt;}
.y215{bottom:740.175387pt;}
.y1c8{bottom:740.792933pt;}
.y9a{bottom:742.033333pt;}
.y4b3{bottom:742.319067pt;}
.y4b6{bottom:743.279760pt;}
.y278{bottom:744.583333pt;}
.y577{bottom:744.601067pt;}
.y538{bottom:744.899333pt;}
.y2cb{bottom:745.652400pt;}
.y33a{bottom:745.771227pt;}
.y553{bottom:747.104400pt;}
.y211{bottom:747.666400pt;}
.y3a7{bottom:748.549467pt;}
.y2a6{bottom:749.252667pt;}
.y592{bottom:750.709600pt;}
.yd4{bottom:751.414400pt;}
.y523{bottom:751.661333pt;}
.y428{bottom:753.045333pt;}
.y5ab{bottom:755.802133pt;}
.y37e{bottom:756.777333pt;}
.y49{bottom:757.308000pt;}
.y214{bottom:758.089627pt;}
.y33d{bottom:758.893200pt;}
.y50{bottom:760.117200pt;}
.y183{bottom:760.794741pt;}
.y3e2{bottom:760.850667pt;}
.y4b2{bottom:761.027333pt;}
.y4b5{bottom:761.194000pt;}
.y285{bottom:761.573333pt;}
.y63{bottom:761.586000pt;}
.y5d8{bottom:761.627600pt;}
.y339{bottom:763.685467pt;}
.y11d{bottom:764.861333pt;}
.y5b8{bottom:765.803333pt;}
.y522{bottom:766.075467pt;}
.y97{bottom:768.752000pt;}
.y29f{bottom:768.933333pt;}
.yd3{bottom:769.014400pt;}
.y4fc{bottom:769.712000pt;}
.y210{bottom:770.066400pt;}
.yd{bottom:772.281893pt;}
.y467{bottom:772.290667pt;}
.y29{bottom:772.956800pt;}
.y1c4{bottom:773.269333pt;}
.y2c7{bottom:773.969333pt;}
.y427{bottom:774.974000pt;}
.y5aa{bottom:775.002133pt;}
.y537{bottom:775.139333pt;}
.y3a3{bottom:775.590667pt;}
.y576{bottom:775.801067pt;}
.y213{bottom:776.003867pt;}
.y1{bottom:776.462933pt;}
.y380{bottom:776.623733pt;}
.y33c{bottom:776.809867pt;}
.y304{bottom:777.005333pt;}
.y552{bottom:777.504400pt;}
.y277{bottom:780.427067pt;}
.y37d{bottom:780.613333pt;}
.y3e1{bottom:780.837200pt;}
.y182{bottom:781.374840pt;}
.y336{bottom:781.614427pt;}
.y11b{bottom:782.076000pt;}
.y2ca{bottom:782.131467pt;}
.y591{bottom:782.709600pt;}
.yd2{bottom:786.614400pt;}
.y3a2{bottom:787.273173pt;}
.y5cd{bottom:787.308533pt;}
.y4fb{bottom:789.554667pt;}
.y466{bottom:792.124933pt;}
.y28{bottom:792.156800pt;}
.y1c6{bottom:793.105467pt;}
.y5d7{bottom:793.627600pt;}
.y4ae{bottom:793.670667pt;}
.y2c6{bottom:793.808533pt;}
.y5a9{bottom:794.202133pt;}
.y3a5{bottom:795.268267pt;}
.y1c3{bottom:797.105467pt;}
.y70{bottom:797.131733pt;}
.y5b7{bottom:797.803333pt;}
.y4a{bottom:797.850267pt;}
.y51e{bottom:798.540000pt;}
.y305{bottom:798.934933pt;}
.y303{bottom:799.247333pt;}
.y119{bottom:799.289333pt;}
.y335{bottom:799.528667pt;}
.y181{bottom:801.954939pt;}
.y3a1{bottom:803.434933pt;}
.yd1{bottom:804.214400pt;}
.y536{bottom:805.379333pt;}
.y1d{bottom:805.905733pt;}
.y29b{bottom:806.373333pt;}
.y575{bottom:807.001067pt;}
.y272{bottom:807.305333pt;}
.y551{bottom:807.904400pt;}
.y20b{bottom:808.321333pt;}
.y337{bottom:809.285333pt;}
.y27{bottom:811.356800pt;}
.y17b{bottom:812.251240pt;}
.y37a{bottom:813.097333pt;}
.y5a8{bottom:813.402133pt;}
.y424{bottom:814.326667pt;}
.y590{bottom:814.709600pt;}
.y95{bottom:814.993333pt;}
.y276{bottom:815.468800pt;}
.y6f{bottom:816.331733pt;}
.y117{bottom:816.504000pt;}
.y4ac{bottom:816.869333pt;}
.y3de{bottom:817.581333pt;}
.y271{bottom:819.314987pt;}
.yd0{bottom:821.814400pt;}
.y520{bottom:822.324267pt;}
.y180{bottom:822.535037pt;}
.y51d{bottom:822.662800pt;}
.y5d6{bottom:825.627600pt;}
.y4f8{bottom:826.032000pt;}
.y274{bottom:827.145867pt;}
.y464{bottom:828.612000pt;}
.y1c0{bottom:829.589333pt;}
.y5b6{bottom:829.803333pt;}
.y2c3{bottom:830.288000pt;}
.y26{bottom:830.556800pt;}
.y53{bottom:831.411067pt;}
.y208{bottom:831.521333pt;}
.y39f{bottom:831.910667pt;}
.y332{bottom:832.005333pt;}
.y5a7{bottom:832.602133pt;}
.y17a{bottom:832.831338pt;}
.y379{bottom:832.937947pt;}
.y270{bottom:834.666667pt;}
.y6e{bottom:835.531733pt;}
.y535{bottom:835.619333pt;}
.y423{bottom:836.255200pt;}
.y115{bottom:836.686667pt;}
.y3dd{bottom:837.562533pt;}
.y20a{bottom:837.764267pt;}
.y2ff{bottom:838.124000pt;}
.y574{bottom:838.201067pt;}
.y550{bottom:838.304400pt;}
.y4a0{bottom:838.949333pt;}
.ycf{bottom:839.414400pt;}
.y463{bottom:840.291600pt;}
.y17f{bottom:843.115136pt;}
.y39e{bottom:843.434933pt;}
.y92{bottom:845.233333pt;}
.y4f7{bottom:845.867200pt;}
.y378{bottom:849.259067pt;}
.y297{bottom:849.573333pt;}
.y2c5{bottom:850.131467pt;}
.y330{bottom:850.565333pt;}
.y5a6{bottom:851.802133pt;}
.y48{bottom:853.308000pt;}
.y4ab{bottom:853.363093pt;}
.y179{bottom:853.411437pt;}
.y200{bottom:853.601333pt;}
.y2c2{bottom:854.131467pt;}
.y6d{bottom:854.731733pt;}
.yce{bottom:857.014400pt;}
.y301{bottom:860.049467pt;}
.yfc{bottom:860.313333pt;}
.y2fe{bottom:860.362000pt;}
.y113{bottom:860.904000pt;}
.y4a4{bottom:862.786133pt;}
.y26c{bottom:863.625333pt;}
.y17e{bottom:863.695235pt;}
.y518{bottom:864.865333pt;}
.y534{bottom:865.859333pt;}
.y461{bottom:868.612000pt;}
.y54f{bottom:868.704400pt;}
.y25{bottom:868.956800pt;}
.y32a{bottom:869.125333pt;}
.y573{bottom:869.401067pt;}
.y1bb{bottom:869.588000pt;}
.yc{bottom:870.883813pt;}
.y5a5{bottom:871.002133pt;}
.y4aa{bottom:871.277333pt;}
.y39a{bottom:871.910667pt;}
.y178{bottom:873.974667pt;}
.y3da{bottom:874.313333pt;}
.ycd{bottom:874.614400pt;}
.y420{bottom:875.445333pt;}
.y206{bottom:877.444933pt;}
.y1bf{bottom:877.740933pt;}
.y10b{bottom:879.333333pt;}
.y4f5{bottom:882.353333pt;}
.y26e{bottom:883.458267pt;}
.y399{bottom:883.585573pt;}
.y17d{bottom:884.275333pt;}
.y4a3{bottom:885.186133pt;}
.y376{bottom:885.737333pt;}
.y2c0{bottom:886.608000pt;}
.y26b{bottom:887.145867pt;}
.y24{bottom:888.156800pt;}
.y460{bottom:888.458267pt;}
.y51b{bottom:888.653326pt;}
.y4a9{bottom:889.194000pt;}
.y1bd{bottom:889.428400pt;}
.y5a4{bottom:890.202133pt;}
.y32e{bottom:891.055653pt;}
.y203{bottom:891.187200pt;}
.y90{bottom:891.473333pt;}
.y39c{bottom:891.580667pt;}
.ycc{bottom:892.214400pt;}
.y293{bottom:892.934667pt;}
.y1ba{bottom:893.428400pt;}
.y5d5{bottom:894.186133pt;}
.y3d9{bottom:894.307333pt;}
.y205{bottom:897.124933pt;}
.y41f{bottom:897.369733pt;}
.y2bf{bottom:898.287733pt;}
.y517{bottom:898.726533pt;}
.y2fa{bottom:899.244000pt;}
.y111{bottom:899.540400pt;}
.y398{bottom:899.747333pt;}
.y6b{bottom:900.559067pt;}
.y375{bottom:901.425733pt;}
.y4f4{bottom:902.033867pt;}
.y18{bottom:906.369733pt;}
.y4a8{bottom:907.123493pt;}
.y23{bottom:907.356800pt;}
.y4a2{bottom:907.746133pt;}
.y51a{bottom:908.109333pt;}
.y32d{bottom:908.969893pt;}
.y5a3{bottom:909.402133pt;}
.ycb{bottom:909.814400pt;}
.y2f9{bottom:911.884613pt;}
.y202{bottom:913.587200pt;}
.y204{bottom:916.628933pt;}
.y10d{bottom:917.970000pt;}
.y8c{bottom:918.193333pt;}
.y2fc{bottom:919.414000pt;}
.y266{bottom:919.945333pt;}
.y16e{bottom:920.886667pt;}
.y45d{bottom:924.930667pt;}
.y4a7{bottom:925.037733pt;}
.y372{bottom:925.737333pt;}
.y1b6{bottom:925.909333pt;}
.y5d4{bottom:926.186133pt;}
.y22{bottom:926.556800pt;}
.y2bc{bottom:926.609333pt;}
.y32c{bottom:926.736933pt;}
.y52{bottom:926.759867pt;}
.y533{bottom:928.032533pt;}
.y2f8{bottom:928.205733pt;}
.y395{bottom:928.229333pt;}
.y5a2{bottom:928.602133pt;}
.y10e{bottom:929.462667pt;}
.y3d5{bottom:931.044000pt;}
.y62{bottom:931.558533pt;}
.y28f{bottom:934.053333pt;}
.yca{bottom:936.618533pt;}
.y41c{bottom:936.725333pt;}
.yc8{bottom:937.468133pt;}
.y1b5{bottom:937.583600pt;}
.y4ef{bottom:938.672000pt;}
.y394{bottom:939.747333pt;}
.y58e{bottom:942.259067pt;}
.y5f4{bottom:943.179733pt;}
.y174{bottom:944.327467pt;}
.y45c{bottom:944.614533pt;}
.y5e7{bottom:945.050059pt;}
.y49c{bottom:945.350667pt;}
.y371{bottom:945.582000pt;}
.y1b8{bottom:945.751333pt;}
.y21{bottom:945.756800pt;}
.y8e{bottom:946.022133pt;}
.y2be{bottom:946.444000pt;}
.y5a1{bottom:947.802133pt;}
.y10a{bottom:947.892000pt;}
.y572{bottom:948.152400pt;}
.y47{bottom:949.308000pt;}
.y41b{bottom:949.536400pt;}
.y513{bottom:950.812000pt;}
.y3d7{bottom:950.873733pt;}
.y3d4{bottom:950.877489pt;}
.y1fc{bottom:951.361333pt;}
.y1b4{bottom:953.918000pt;}
.y2f5{bottom:957.324000pt;}
.y5d3{bottom:958.186133pt;}
.y4f2{bottom:958.846400pt;}
.y328{bottom:959.205333pt;}
.y532{bottom:960.032533pt;}
.y20{bottom:964.956800pt;}
.y108{bottom:966.322667pt;}
.y5a0{bottom:967.002133pt;}
.y392{bottom:968.230667pt;}
.y49e{bottom:969.173200pt;}
.y6c{bottom:969.404933pt;}
.yb{bottom:969.485733pt;}
.y5eb{bottom:969.733067pt;}
.y265{bottom:970.354133pt;}
.yc7{bottom:972.132800pt;}
.y1fe{bottom:973.587200pt;}
.y171{bottom:974.353467pt;}
.y515{bottom:974.440133pt;}
.y512{bottom:974.949200pt;}
.y4f1{bottom:977.054667pt;}
.y28b{bottom:977.413333pt;}
.y326{bottom:977.925333pt;}
.y2f7{bottom:979.257867pt;}
.y391{bottom:979.903600pt;}
.y417{bottom:979.925333pt;}
.y56d{bottom:980.152400pt;}
.y458{bottom:981.252000pt;}
.y36d{bottom:982.057333pt;}
.y1af{bottom:982.229333pt;}
.y2f4{bottom:983.726533pt;}
.y106{bottom:984.752000pt;}
.y2b8{bottom:986.713333pt;}
.y89{bottom:987.153333pt;}
.y5d2{bottom:990.186133pt;}
.y531{bottom:992.032533pt;}
.y3d3{bottom:997.272133pt;}
.y262{bottom:997.385333pt;}
.y8b{bottom:998.688800pt;}
.y45a{bottom:1000.937467pt;}
.y5b4{bottom:1001.060533pt;}
.y5ea{bottom:1001.733067pt;}
.y36f{bottom:1001.738267pt;}
.y416{bottom:1001.836240pt;}
.y419{bottom:1001.848933pt;}
.y1b2{bottom:1002.063867pt;}
.y16c{bottom:1002.365333pt;}
.y56b{bottom:1002.527333pt;}
.y102{bottom:1003.181333pt;}
.y1f{bottom:1003.356800pt;}
.y499{bottom:1004.710667pt;}
.y59f{bottom:1005.402133pt;}
.y15{bottom:1006.953733pt;}
.y38d{bottom:1008.230667pt;}
.y105{bottom:1011.743459pt;}
.y571{bottom:1012.152400pt;}
.y1f8{bottom:1012.160000pt;}
.y322{bottom:1015.262667pt;}
.y50e{bottom:1017.137333pt;}
.y2f0{bottom:1018.604000pt;}
.y49b{bottom:1018.777333pt;}
.y4d5{bottom:1018.830667pt;}
.y1b1{bottom:1019.022133pt;}
.y325{bottom:1019.898400pt;}
.y287{bottom:1020.614667pt;}
.y51{bottom:1022.108667pt;}
.y5d1{bottom:1022.186133pt;}
.y16a{bottom:1023.620000pt;}
.y530{bottom:1024.032533pt;}
.y1fa{bottom:1024.316400pt;}
.y59e{bottom:1024.602133pt;}
.y1fb{bottom:1025.264267pt;}
.y3d0{bottom:1025.328000pt;}
.y6a{bottom:1027.315067pt;}
.y104{bottom:1028.251333pt;}
.y38f{bottom:1028.549467pt;}
.y59c{bottom:1029.286400pt;}
.y5b3{bottom:1033.060533pt;}
.y5e9{bottom:1033.733067pt;}
.y56a{bottom:1034.527333pt;}
.yc6{bottom:1035.609333pt;}
.y23f{bottom:1036.696000pt;}
.y510{bottom:1039.019467pt;}
.y2f2{bottom:1040.528667pt;}
.y289{bottom:1042.533867pt;}
.y59d{bottom:1043.802133pt;}
.y570{bottom:1044.152400pt;}
.y497{bottom:1044.389333pt;}
.y1f6{bottom:1047.680000pt;}
.y457{bottom:1047.812533pt;}
.y415{bottom:1051.133520pt;}
.y5d0{bottom:1054.186133pt;}
.y52f{bottom:1056.032533pt;}
.y87{bottom:1056.574267pt;}
.y368{bottom:1058.021333pt;}
.y100{bottom:1058.177333pt;}
.y59b{bottom:1061.286400pt;}
.y36a{bottom:1062.656267pt;}
.y5b2{bottom:1065.060533pt;}
.y5e8{bottom:1065.733067pt;}
.y569{bottom:1066.527333pt;}
.y45{bottom:1070.863333pt;}
.y454{bottom:1074.852000pt;}
.y56f{bottom:1076.152400pt;}
.yfe{bottom:1077.638667pt;}
.y4b{bottom:1079.048515pt;}
.y5d{bottom:1145.196667pt;}
.h81{height:11.617188pt;}
.h7a{height:15.334687pt;}
.hde{height:15.622407pt;}
.hce{height:16.160000pt;}
.h5e{height:16.167640pt;}
.h3a{height:16.472000pt;}
.h39{height:16.620000pt;}
.h3f{height:16.621333pt;}
.h3e{height:17.658667pt;}
.hab{height:17.760000pt;}
.h32{height:17.838667pt;}
.h31{height:17.840000pt;}
.hac{height:17.920000pt;}
.haf{height:17.921333pt;}
.h2d{height:18.725333pt;}
.h4a{height:19.276000pt;}
.haa{height:19.293750pt;}
.h37{height:19.589333pt;}
.h55{height:20.576750pt;}
.h52{height:20.578667pt;}
.h60{height:20.580000pt;}
.h61{height:20.581333pt;}
.h2b{height:20.936000pt;}
.h35{height:21.072000pt;}
.h80{height:21.440000pt;}
.hb1{height:22.080000pt;}
.h89{height:22.400000pt;}
.h82{height:22.558667pt;}
.h87{height:22.560000pt;}
.h48{height:22.752000pt;}
.hb4{height:24.480000pt;}
.h6f{height:25.093125pt;}
.h1e{height:25.920000pt;}
.h1c{height:26.080000pt;}
.h18{height:26.081333pt;}
.h5d{height:27.496000pt;}
.h1a{height:29.598667pt;}
.h8b{height:29.920000pt;}
.h86{height:29.921333pt;}
.h59{height:30.904635pt;}
.hdb{height:31.718407pt;}
.h73{height:32.478667pt;}
.h70{height:32.480000pt;}
.h91{height:32.640000pt;}
.hc3{height:32.717333pt;}
.h93{height:33.121333pt;}
.h9d{height:33.598667pt;}
.h90{height:34.080000pt;}
.h77{height:34.720000pt;}
.h88{height:34.851562pt;}
.h79{height:34.880000pt;}
.ha0{height:35.680000pt;}
.h9b{height:35.681333pt;}
.h9c{height:35.840000pt;}
.h94{height:36.001250pt;}
.h50{height:36.605333pt;}
.h95{height:36.909063pt;}
.h30{height:37.116649pt;}
.hc8{height:37.696695pt;}
.h6c{height:38.128125pt;}
.hc7{height:38.132643pt;}
.hc1{height:38.406812pt;}
.hfd{height:38.453333pt;}
.h6b{height:38.569063pt;}
.hf3{height:38.718667pt;}
.hbf{height:38.850973pt;}
.h2a{height:38.944664pt;}
.hd3{height:39.040000pt;}
.h3c{height:39.198086pt;}
.hbd{height:39.325333pt;}
.h2e{height:39.395045pt;}
.h38{height:39.651397pt;}
.h9f{height:39.905000pt;}
.h9e{height:40.911250pt;}
.hef{height:41.375523pt;}
.h47{height:41.734602pt;}
.hc5{height:41.784367pt;}
.hcc{height:41.825967pt;}
.h4b{height:42.217247pt;}
.h20{height:42.262500pt;}
.h28{height:42.298667pt;}
.hb5{height:42.304100pt;}
.hbc{height:42.571047pt;}
.h96{height:42.614650pt;}
.h7d{height:42.751250pt;}
.ha6{height:42.792850pt;}
.he3{height:43.055687pt;}
.h44{height:43.099378pt;}
.hee{height:43.303793pt;}
.hdf{height:43.553610pt;}
.hd0{height:43.718192pt;}
.h3d{height:44.264078pt;}
.h43{height:44.266745pt;}
.h41{height:44.345145pt;}
.h68{height:44.557844pt;}
.h57{height:45.073139pt;}
.h4f{height:45.363664pt;}
.hba{height:45.439621pt;}
.hc{height:45.440000pt;}
.h1d{height:45.598667pt;}
.h19{height:45.600000pt;}
.heb{height:45.862086pt;}
.h4c{height:45.888278pt;}
.he9{height:45.895900pt;}
.h7f{height:45.937500pt;}
.hc6{height:45.942879pt;}
.h5a{height:46.125990pt;}
.hb{height:46.144000pt;}
.h5b{height:46.158937pt;}
.hd6{height:46.385017pt;}
.hed{height:46.392464pt;}
.hd8{height:46.427150pt;}
.h6a{height:46.468750pt;}
.ha{height:46.593750pt;}
.he1{height:46.799594pt;}
.hbe{height:46.808359pt;}
.hdd{height:47.340814pt;}
.h8a{height:47.726950pt;}
.hae{height:47.727483pt;}
.h85{height:47.769083pt;}
.hb7{height:48.035075pt;}
.h99{height:48.076675pt;}
.h9a{height:48.118275pt;}
.hb8{height:48.118808pt;}
.hcb{height:48.246667pt;}
.hca{height:48.248000pt;}
.hc9{height:48.405333pt;}
.h5c{height:48.432289pt;}
.h6d{height:48.798667pt;}
.h6e{height:48.800000pt;}
.h64{height:48.853687pt;}
.h67{height:48.903857pt;}
.h63{height:48.950790pt;}
.h92{height:48.958667pt;}
.h71{height:48.960000pt;}
.h74{height:48.961333pt;}
.h53{height:48.992390pt;}
.h8d{height:49.121333pt;}
.hc2{height:49.156000pt;}
.hc0{height:49.157333pt;}
.hc4{height:49.317333pt;}
.h34{height:49.540000pt;}
.h42{height:49.862667pt;}
.h2c{height:50.100283pt;}
.ha5{height:50.400000pt;}
.h36{height:50.426339pt;}
.ha7{height:50.720000pt;}
.hfa{height:51.031250pt;}
.h21{height:52.000000pt;}
.h72{height:52.001333pt;}
.h23{height:52.158667pt;}
.hfc{height:52.287689pt;}
.ha8{height:53.598667pt;}
.ha4{height:53.600000pt;}
.h16{height:53.746875pt;}
.h98{height:53.758667pt;}
.ha3{height:53.760000pt;}
.h27{height:54.069534pt;}
.h7c{height:54.368437pt;}
.h84{height:54.384971pt;}
.h2f{height:54.405333pt;}
.hf{height:54.999373pt;}
.he{height:55.375000pt;}
.hdc{height:55.388814pt;}
.hec{height:56.081333pt;}
.h56{height:57.321139pt;}
.h8f{height:57.688750pt;}
.h12{height:57.760000pt;}
.h4e{height:57.828000pt;}
.ha1{height:58.085938pt;}
.he8{height:58.127537pt;}
.hf0{height:58.165333pt;}
.hf2{height:58.338667pt;}
.h66{height:58.366667pt;}
.hd4{height:58.560000pt;}
.h7b{height:60.160000pt;}
.h13{height:61.096875pt;}
.h14{height:61.803437pt;}
.he4{height:61.920000pt;}
.hd1{height:65.118667pt;}
.hb3{height:65.120000pt;}
.h17{height:66.786325pt;}
.h24{height:67.258600pt;}
.h1b{height:67.272075pt;}
.h22{height:67.396875pt;}
.h33{height:67.969333pt;}
.h15{height:68.320000pt;}
.h49{height:68.913144pt;}
.h9{height:69.216000pt;}
.he6{height:69.703125pt;}
.h8e{height:70.086800pt;}
.h69{height:71.520000pt;}
.ha9{height:71.680000pt;}
.hcd{height:71.681333pt;}
.h5{height:72.048000pt;}
.hf5{height:72.676800pt;}
.hf7{height:73.061333pt;}
.he7{height:73.121333pt;}
.hf8{height:74.984000pt;}
.hf4{height:76.906667pt;}
.hf1{height:77.785333pt;}
.h25{height:78.080000pt;}
.h65{height:79.621333pt;}
.h10{height:80.752000pt;}
.h54{height:80.802667pt;}
.h3b{height:82.954667pt;}
.h40{height:83.104000pt;}
.h78{height:84.727583pt;}
.he5{height:84.728117pt;}
.hd2{height:84.769183pt;}
.h4d{height:88.481333pt;}
.h51{height:89.329096pt;}
.had{height:89.440000pt;}
.hbb{height:92.290744pt;}
.hd{height:92.291667pt;}
.hb0{height:94.398667pt;}
.hfb{height:96.533248pt;}
.h7e{height:97.760000pt;}
.hda{height:98.128000pt;}
.hd5{height:106.400000pt;}
.h4{height:115.773552pt;}
.h62{height:120.106667pt;}
.h83{height:125.280000pt;}
.hd7{height:125.281333pt;}
.h11{height:138.432000pt;}
.h3{height:160.476252pt;}
.h7{height:184.576000pt;}
.h58{height:185.220000pt;}
.hf6{height:186.449446pt;}
.he0{height:199.026667pt;}
.h5f{height:205.970667pt;}
.h8{height:236.973281pt;}
.ha2{height:281.440000pt;}
.h29{height:284.884000pt;}
.hb2{height:290.080000pt;}
.h46{height:322.481333pt;}
.he2{height:329.104000pt;}
.h97{height:349.600000pt;}
.h26{height:353.600000pt;}
.hb9{height:391.520000pt;}
.hb6{height:404.640000pt;}
.h6{height:413.552141pt;}
.hf9{height:424.362911pt;}
.h2{height:447.144567pt;}
.hd9{height:473.440000pt;}
.hcf{height:499.840000pt;}
.hea{height:502.478667pt;}
.h45{height:545.070667pt;}
.h1f{height:599.358667pt;}
.h8c{height:664.800000pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.h75{height:1156.534667pt;}
.h76{height:1156.666667pt;}
.w4f{width:-113.740000pt;}
.w50{width:90.401333pt;}
.w3d{width:90.558667pt;}
.w38{width:90.560000pt;}
.w4e{width:91.117333pt;}
.w2c{width:92.160000pt;}
.w41{width:110.561333pt;}
.w13{width:110.854667pt;}
.w52{width:112.638667pt;}
.w30{width:112.640000pt;}
.w58{width:114.753333pt;}
.w35{width:116.800000pt;}
.w34{width:116.801333pt;}
.w26{width:118.758667pt;}
.w17{width:119.758667pt;}
.w15{width:119.906667pt;}
.w32{width:120.800000pt;}
.w48{width:123.520000pt;}
.w33{width:123.680000pt;}
.w4a{width:124.800000pt;}
.w18{width:124.952000pt;}
.w16{width:128.366667pt;}
.w20{width:130.825333pt;}
.w43{width:145.120000pt;}
.w1a{width:145.578667pt;}
.w55{width:150.400000pt;}
.w42{width:153.920000pt;}
.w19{width:154.334667pt;}
.w23{width:155.632000pt;}
.w24{width:155.789333pt;}
.we{width:155.842667pt;}
.w54{width:160.000000pt;}
.w22{width:161.477333pt;}
.w56{width:170.400000pt;}
.w46{width:171.200000pt;}
.w8{width:175.680000pt;}
.w44{width:193.440000pt;}
.w1b{width:193.958667pt;}
.w47{width:196.481333pt;}
.w3{width:200.640000pt;}
.wa{width:200.800000pt;}
.w4{width:200.801333pt;}
.w10{width:214.965333pt;}
.w7{width:225.760000pt;}
.w11{width:232.069333pt;}
.w28{width:248.480000pt;}
.w29{width:259.445333pt;}
.w6{width:301.278667pt;}
.w5{width:301.280000pt;}
.w49{width:368.480000pt;}
.w1c{width:369.365333pt;}
.wf{width:447.625333pt;}
.w21{width:474.162667pt;}
.w31{width:480.000000pt;}
.w59{width:481.837333pt;}
.w53{width:482.400000pt;}
.w4d{width:484.376000pt;}
.w3f{width:489.760000pt;}
.w3a{width:489.918667pt;}
.w2b{width:489.920000pt;}
.w37{width:491.520000pt;}
.w4c{width:493.498667pt;}
.w45{width:493.920000pt;}
.w14{width:495.208000pt;}
.w27{width:508.600000pt;}
.w5d{width:531.648000pt;}
.w1d{width:560.949333pt;}
.w3e{width:589.278667pt;}
.w2a{width:589.440000pt;}
.w2f{width:593.280000pt;}
.w4b{width:593.745333pt;}
.w51{width:595.680000pt;}
.w57{width:597.242667pt;}
.w2{width:603.360000pt;}
.wd{width:604.057333pt;}
.w3c{width:604.638667pt;}
.w36{width:604.640000pt;}
.w9{width:604.798667pt;}
.wb{width:604.800000pt;}
.w40{width:605.120000pt;}
.w1f{width:605.620000pt;}
.w12{width:606.656000pt;}
.w5a{width:616.150667pt;}
.wc{width:622.634667pt;}
.w3b{width:624.160000pt;}
.w39{width:624.161333pt;}
.w25{width:628.032000pt;}
.w1e{width:630.741333pt;}
.w5c{width:639.644000pt;}
.w5b{width:677.321333pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.w2d{width:839.054667pt;}
.w2e{width:839.333333pt;}
.x108{left:-8.656267pt;}
.x0{left:0.000000pt;}
.x67{left:6.350800pt;}
.xa7{left:7.266400pt;}
.xed{left:8.166667pt;}
.x4c{left:9.278800pt;}
.x4a{left:10.730933pt;}
.x97{left:11.844933pt;}
.x87{left:13.203200pt;}
.xd9{left:14.394267pt;}
.xb8{left:15.528667pt;}
.xce{left:16.475467pt;}
.x3c{left:17.771333pt;}
.x8a{left:19.576933pt;}
.x7e{left:21.509200pt;}
.xd4{left:22.715067pt;}
.x3e{left:23.688000pt;}
.x91{left:25.065467pt;}
.x8e{left:26.412800pt;}
.xa1{left:27.800000pt;}
.x5d{left:29.604133pt;}
.x49{left:31.199600pt;}
.x42{left:33.282933pt;}
.x5b{left:34.252400pt;}
.x39{left:36.169600pt;}
.x36{left:37.449600pt;}
.xc6{left:38.548000pt;}
.x89{left:40.205867pt;}
.x76{left:41.390800pt;}
.x59{left:43.355333pt;}
.x71{left:44.669733pt;}
.xc0{left:45.917600pt;}
.x98{left:49.146267pt;}
.x8c{left:51.042133pt;}
.x5e{left:52.489467pt;}
.xf2{left:53.593200pt;}
.x84{left:55.496267pt;}
.x47{left:56.972533pt;}
.xaf{left:57.873467pt;}
.xe4{left:58.861333pt;}
.x85{left:59.948000pt;}
.x37{left:61.449600pt;}
.x54{left:62.553200pt;}
.x44{left:64.326667pt;}
.x66{left:65.356000pt;}
.xe5{left:66.396800pt;}
.x123{left:67.286400pt;}
.x4d{left:68.330933pt;}
.x100{left:70.170667pt;}
.x12{left:71.389333pt;}
.x57{left:72.803200pt;}
.x2{left:74.354133pt;}
.x34{left:75.668400pt;}
.x5a{left:77.761600pt;}
.x7a{left:79.872400pt;}
.x4e{left:80.812933pt;}
.x5c{left:83.044133pt;}
.x6c{left:85.955200pt;}
.xea{left:86.970667pt;}
.xbc{left:88.125333pt;}
.x41{left:89.293333pt;}
.x94{left:91.144408pt;}
.x5f{left:94.122667pt;}
.x32{left:95.344400pt;}
.x33{left:96.544400pt;}
.xec{left:98.385467pt;}
.xa4{left:99.360667pt;}
.x2e{left:100.427067pt;}
.x72{left:101.427867pt;}
.x9c{left:103.003905pt;}
.x107{left:104.253573pt;}
.x65{left:105.173200pt;}
.x48{left:107.199600pt;}
.xe7{left:108.948267pt;}
.x6{left:111.298487pt;}
.x10{left:113.167200pt;}
.x11{left:114.388667pt;}
.x70{left:116.025467pt;}
.x5{left:118.829467pt;}
.x4{left:119.990112pt;}
.xe0{left:121.290133pt;}
.x3{left:122.894220pt;}
.xc1{left:124.511733pt;}
.x58{left:126.240800pt;}
.x46{left:128.168400pt;}
.x52{left:129.908000pt;}
.x45{left:131.032933pt;}
.x102{left:132.874027pt;}
.xbe{left:134.029627pt;}
.x93{left:135.036533pt;}
.x14{left:136.233733pt;}
.xa6{left:137.468000pt;}
.x9b{left:139.489600pt;}
.x125{left:140.748667pt;}
.x104{left:142.821600pt;}
.xab{left:145.056296pt;}
.x18{left:146.205942pt;}
.x10e{left:147.440800pt;}
.xe3{left:148.613333pt;}
.xa9{left:150.132800pt;}
.xaa{left:151.480533pt;}
.x4f{left:153.595467pt;}
.xf{left:154.793200pt;}
.xc{left:155.777200pt;}
.x30{left:157.321600pt;}
.x2f{left:158.336267pt;}
.xe{left:159.641200pt;}
.xd{left:161.441200pt;}
.x10a{left:163.476533pt;}
.xb{left:164.561200pt;}
.xfc{left:165.566667pt;}
.x121{left:167.022133pt;}
.xf9{left:168.972133pt;}
.x68{left:170.732533pt;}
.xfd{left:171.688133pt;}
.xef{left:173.424533pt;}
.x61{left:174.703733pt;}
.x64{left:175.904267pt;}
.x6b{left:177.508667pt;}
.xfe{left:179.884133pt;}
.x74{left:181.632933pt;}
.x92{left:182.976667pt;}
.x73{left:184.941333pt;}
.xa5{left:186.136933pt;}
.x1f{left:187.048810pt;}
.xf0{left:188.309867pt;}
.x27{left:189.395867pt;}
.x21{left:191.752849pt;}
.x103{left:193.689467pt;}
.xbf{left:194.845067pt;}
.xb3{left:195.846400pt;}
.x106{left:197.193333pt;}
.x8f{left:198.145867pt;}
.x110{left:199.742800pt;}
.x29{left:200.996800pt;}
.x50{left:202.095467pt;}
.xe9{left:203.752667pt;}
.x1d{left:206.280971pt;}
.x19{left:207.957467pt;}
.x1c{left:209.064994pt;}
.x7b{left:213.131467pt;}
.x11f{left:215.743397pt;}
.x86{left:216.696667pt;}
.x1b{left:217.817067pt;}
.x56{left:218.730267pt;}
.x112{left:221.179973pt;}
.x55{left:223.511600pt;}
.x101{left:226.158267pt;}
.xba{left:227.408533pt;}
.x113{left:228.687173pt;}
.x2a{left:230.676800pt;}
.xb1{left:233.141600pt;}
.x9d{left:234.300800pt;}
.xd7{left:236.007600pt;}
.x3f{left:237.616267pt;}
.x9e{left:239.031200pt;}
.x10b{left:240.153733pt;}
.x53{left:241.928800pt;}
.x6e{left:243.601600pt;}
.x16{left:246.009733pt;}
.x111{left:247.263813pt;}
.x105{left:248.380267pt;}
.x83{left:249.748800pt;}
.x75{left:251.682400pt;}
.x12f{left:253.040400pt;}
.x120{left:254.061333pt;}
.x109{left:255.106667pt;}
.xa8{left:256.901333pt;}
.x1{left:261.065067pt;}
.xe2{left:262.716400pt;}
.xac{left:264.168000pt;}
.x23{left:267.129478pt;}
.xb0{left:268.229867pt;}
.xb4{left:271.756533pt;}
.x60{left:274.417333pt;}
.xeb{left:275.929067pt;}
.x40{left:279.210000pt;}
.xb5{left:280.191000pt;}
.x51{left:282.095467pt;}
.x8{left:287.236933pt;}
.xad{left:289.488269pt;}
.xe6{left:291.100267pt;}
.x7{left:295.014267pt;}
.x38{left:297.040000pt;}
.x35{left:298.626267pt;}
.xee{left:302.092400pt;}
.x12a{left:303.303333pt;}
.x77{left:305.441333pt;}
.xb7{left:307.164000pt;}
.x26{left:312.201853pt;}
.xe1{left:313.430933pt;}
.xae{left:314.842276pt;}
.x7c{left:317.300800pt;}
.x15{left:318.761733pt;}
.xc4{left:321.016933pt;}
.x4b{left:322.160000pt;}
.xfb{left:323.154267pt;}
.xdb{left:334.589867pt;}
.x24{left:336.330054pt;}
.x8b{left:339.869333pt;}
.xc9{left:343.235733pt;}
.x124{left:344.647200pt;}
.x69{left:347.106800pt;}
.xb6{left:349.151199pt;}
.xda{left:351.868773pt;}
.x88{left:353.666667pt;}
.xf6{left:356.466667pt;}
.x128{left:357.690800pt;}
.x12b{left:358.667067pt;}
.x25{left:359.626248pt;}
.x3a{left:360.886667pt;}
.x1e{left:363.098277pt;}
.x99{left:367.657333pt;}
.x7d{left:369.695333pt;}
.xf4{left:371.821600pt;}
.xbb{left:372.947867pt;}
.x62{left:375.753200pt;}
.x9f{left:377.755200pt;}
.x6a{left:385.317715pt;}
.x117{left:386.903120pt;}
.x20{left:391.210512pt;}
.xa0{left:392.929733pt;}
.x115{left:394.778320pt;}
.x43{left:397.841333pt;}
.x114{left:399.253200pt;}
.x2d{left:405.748800pt;}
.xfa{left:408.300800pt;}
.x116{left:417.800400pt;}
.xdc{left:426.121067pt;}
.x118{left:427.751120pt;}
.x11c{left:430.159467pt;}
.x78{left:434.549333pt;}
.xc5{left:435.562667pt;}
.xf1{left:438.602800pt;}
.x63{left:442.338533pt;}
.x10c{left:443.274133pt;}
.xdf{left:445.602000pt;}
.x6d{left:446.633333pt;}
.x2c{left:447.524800pt;}
.x80{left:449.680933pt;}
.x2b{left:456.420800pt;}
.x7f{left:458.579467pt;}
.xc2{left:462.777333pt;}
.x22{left:470.107169pt;}
.xca{left:476.980533pt;}
.xde{left:478.133200pt;}
.xdd{left:480.194000pt;}
.x10d{left:481.767067pt;}
.xf3{left:484.948000pt;}
.x8d{left:486.042667pt;}
.xc3{left:487.830533pt;}
.xe8{left:488.948267pt;}
.x6f{left:491.742133pt;}
.x90{left:493.011733pt;}
.xbd{left:494.396800pt;}
.xff{left:497.438400pt;}
.x3b{left:498.480000pt;}
.xb2{left:506.056000pt;}
.x3d{left:517.522133pt;}
.x10f{left:521.026667pt;}
.x9a{left:523.921333pt;}
.x122{left:526.604933pt;}
.xd6{left:533.964800pt;}
.xb9{left:538.453067pt;}
.x11a{left:540.845253pt;}
.xa3{left:546.023467pt;}
.xa2{left:547.773467pt;}
.x119{left:551.576133pt;}
.xf5{left:553.504987pt;}
.x79{left:555.049333pt;}
.xd8{left:556.194000pt;}
.xc7{left:559.882667pt;}
.x95{left:564.536400pt;}
.xcb{left:566.752053pt;}
.xf7{left:567.808400pt;}
.xcc{left:570.093493pt;}
.x82{left:571.067733pt;}
.x81{left:572.255200pt;}
.x28{left:579.816400pt;}
.x96{left:581.608133pt;}
.x11e{left:583.248667pt;}
.x17{left:584.852267pt;}
.x1a{left:586.548133pt;}
.xf8{left:587.930640pt;}
.xcd{left:590.230453pt;}
.x11b{left:605.377733pt;}
.x9{left:670.752667pt;}
.xc8{left:677.322667pt;}
.x11d{left:681.708267pt;}
.x12e{left:684.604133pt;}
.xd0{left:685.622187pt;}
.xcf{left:687.079467pt;}
.xd3{left:692.360667pt;}
.x12c{left:698.897200pt;}
.x12d{left:699.910996pt;}
.xd1{left:701.799467pt;}
.xd2{left:713.133867pt;}
.x127{left:722.658800pt;}
.x126{left:741.054667pt;}
.x13{left:744.866533pt;}
.xa{left:754.067733pt;}
.x31{left:755.022800pt;}
.x129{left:762.360000pt;}
.xd5{left:771.246133pt;}
.x130{left:797.520133pt;}
}




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