
    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_af8adfb62128116edd1ea75e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7adb4fe4688da7fe97f04470.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_cd80cea0ddf510098cd58a6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_6e9a772dd0c09c927994b234.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858000;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_b26b0407531b9332ebcaa621.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_9ba672c393129eda546b879e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687500;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_f6985696bd5651eedab855bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_a173044d86026cc5bac92c28.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4de635ace5d8743304f959f1.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_17eec85a61ec759e652398e3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_41676058eaa83270a5bf0d57.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.070312;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_ad9fa56d979a7f242dc025d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cd0b40126ba84b4b9d81871b.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_3750849733b785d75b3cbeb1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b4c71ee511a634223142f42b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.811035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3b445eef0ab621c43064f6c8.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-18.000000px;}
.v2{vertical-align:-9.178560px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.402160px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:27.380160px;}
.v7{vertical-align:30.260160px;}
.ls1b{letter-spacing:-2.412000px;}
.lsca{letter-spacing:-2.185920px;}
.lsc4{letter-spacing:-1.792800px;}
.ls19{letter-spacing:-1.736640px;}
.lsc6{letter-spacing:-1.722240px;}
.ls82{letter-spacing:-1.374480px;}
.ls5c{letter-spacing:-1.192320px;}
.lsf3{letter-spacing:-1.075680px;}
.ls26{letter-spacing:-1.059840px;}
.ls32{letter-spacing:-0.993600px;}
.lsaa{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.861120px;}
.lsf2{letter-spacing:-0.836640px;}
.ls10{letter-spacing:-0.728640px;}
.ls9f{letter-spacing:-0.702000px;}
.ls6b{letter-spacing:-0.486000px;}
.ls13{letter-spacing:-0.463680px;}
.ls11{letter-spacing:-0.397440px;}
.lse3{letter-spacing:-0.358560px;}
.ls14{letter-spacing:-0.331200px;}
.ls85{letter-spacing:-0.298800px;}
.ls1a{letter-spacing:-0.289440px;}
.ls8{letter-spacing:-0.288000px;}
.ls9d{letter-spacing:-0.276480px;}
.ls15{letter-spacing:-0.264960px;}
.ls83{letter-spacing:-0.239040px;}
.ls4{letter-spacing:-0.216000px;}
.ls9e{letter-spacing:-0.207360px;}
.ls5{letter-spacing:-0.191520px;}
.lsf{letter-spacing:-0.132480px;}
.ls52{letter-spacing:-0.119520px;}
.ls6{letter-spacing:-0.095760px;}
.ls53{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.lsfa{letter-spacing:0.059616px;}
.ls84{letter-spacing:0.059760px;}
.ls57{letter-spacing:0.079488px;}
.ls59{letter-spacing:0.086112px;}
.ls9c{letter-spacing:0.086400px;}
.ls34{letter-spacing:0.108000px;}
.ls5b{letter-spacing:0.119232px;}
.ls20{letter-spacing:0.120240px;}
.ls124{letter-spacing:0.135360px;}
.ls36{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.152352px;}
.lsfd{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.191520px;}
.ls1{letter-spacing:0.216000px;}
.ls120{letter-spacing:0.221760px;}
.ls11d{letter-spacing:0.227520px;}
.lsd5{letter-spacing:0.238464px;}
.ls4d{letter-spacing:0.239040px;}
.ls18{letter-spacing:0.241200px;}
.lsc{letter-spacing:0.245088px;}
.ls16{letter-spacing:0.259920px;}
.lsb9{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.264960px;}
.ls6c{letter-spacing:0.270000px;}
.ls126{letter-spacing:0.271584px;}
.ls1e{letter-spacing:0.278208px;}
.ls114{letter-spacing:0.284832px;}
.ls129{letter-spacing:0.285120px;}
.ls3{letter-spacing:0.287280px;}
.lsa9{letter-spacing:0.288000px;}
.ls127{letter-spacing:0.290880px;}
.ls122{letter-spacing:0.291456px;}
.lsb3{letter-spacing:0.292824px;}
.ls118{letter-spacing:0.298080px;}
.lsfb{letter-spacing:0.298800px;}
.ls58{letter-spacing:0.304704px;}
.ls97{letter-spacing:0.305280px;}
.lsde{letter-spacing:0.310752px;}
.ls128{letter-spacing:0.311040px;}
.ls63{letter-spacing:0.311328px;}
.ls121{letter-spacing:0.317952px;}
.ls11f{letter-spacing:0.319680px;}
.lsac{letter-spacing:0.324000px;}
.lsa0{letter-spacing:0.324576px;}
.lse{letter-spacing:0.331200px;}
.ls11b{letter-spacing:0.334080px;}
.ls55{letter-spacing:0.337824px;}
.lse4{letter-spacing:0.340632px;}
.ls11a{letter-spacing:0.344448px;}
.lsa{letter-spacing:0.351072px;}
.ls2{letter-spacing:0.354312px;}
.lsff{letter-spacing:0.357696px;}
.ls86{letter-spacing:0.358560px;}
.ls4a{letter-spacing:0.364320px;}
.lsdf{letter-spacing:0.364536px;}
.ls1f{letter-spacing:0.370944px;}
.lsf1{letter-spacing:0.376488px;}
.lsf9{letter-spacing:0.377568px;}
.ls64{letter-spacing:0.384192px;}
.ls66{letter-spacing:0.390816px;}
.ls6a{letter-spacing:0.397440px;}
.lsd6{letter-spacing:0.404064px;}
.ls28{letter-spacing:0.410688px;}
.lse9{letter-spacing:0.412344px;}
.ls40{letter-spacing:0.417312px;}
.lsaf{letter-spacing:0.418320px;}
.lsb{letter-spacing:0.423936px;}
.lsa7{letter-spacing:0.430560px;}
.ls43{letter-spacing:0.437184px;}
.lse6{letter-spacing:0.442224px;}
.ls65{letter-spacing:0.443808px;}
.lsd{letter-spacing:0.450432px;}
.ls30{letter-spacing:0.457056px;}
.ls68{letter-spacing:0.463680px;}
.lsab{letter-spacing:0.476928px;}
.ls1c{letter-spacing:0.480960px;}
.ls62{letter-spacing:0.483552px;}
.lsf5{letter-spacing:0.490176px;}
.ls81{letter-spacing:0.496800px;}
.ls61{letter-spacing:0.503424px;}
.ls117{letter-spacing:0.516672px;}
.lsbe{letter-spacing:0.529920px;}
.ls5a{letter-spacing:0.536544px;}
.lsd8{letter-spacing:0.543168px;}
.lse5{letter-spacing:0.543816px;}
.ls80{letter-spacing:0.549792px;}
.ls11c{letter-spacing:0.563040px;}
.lsd9{letter-spacing:0.569664px;}
.ls67{letter-spacing:0.576288px;}
.lsbd{letter-spacing:0.582912px;}
.lsa8{letter-spacing:0.589536px;}
.ls25{letter-spacing:0.596160px;}
.lse2{letter-spacing:0.597600px;}
.lsc9{letter-spacing:0.602784px;}
.ls48{letter-spacing:0.609408px;}
.lsb0{letter-spacing:0.616032px;}
.ls123{letter-spacing:0.622656px;}
.lsbf{letter-spacing:0.629280px;}
.ls5f{letter-spacing:0.635904px;}
.ls4c{letter-spacing:0.649152px;}
.ls54{letter-spacing:0.657360px;}
.ls46{letter-spacing:0.669024px;}
.lsbb{letter-spacing:0.675648px;}
.ls12a{letter-spacing:0.682272px;}
.lsad{letter-spacing:0.688896px;}
.lsb8{letter-spacing:0.695520px;}
.ls8c{letter-spacing:0.708768px;}
.ls31{letter-spacing:0.721440px;}
.ls33{letter-spacing:0.728640px;}
.ls6d{letter-spacing:0.735264px;}
.ls119{letter-spacing:0.741888px;}
.lsc3{letter-spacing:0.766080px;}
.ls125{letter-spacing:0.768384px;}
.ls93{letter-spacing:0.788256px;}
.lscf{letter-spacing:0.794880px;}
.ls100{letter-spacing:0.834624px;}
.ls51{letter-spacing:0.841680px;}
.lsc0{letter-spacing:0.874368px;}
.lsa4{letter-spacing:0.956160px;}
.lsd3{letter-spacing:0.960480px;}
.ls4b{letter-spacing:0.961920px;}
.ls60{letter-spacing:0.993600px;}
.ls11e{letter-spacing:1.046592px;}
.ls24{letter-spacing:1.059840px;}
.ls69{letter-spacing:1.066464px;}
.lse1{letter-spacing:1.075680px;}
.ls4f{letter-spacing:1.202400px;}
.ls8f{letter-spacing:1.205568px;}
.lsd2{letter-spacing:1.244880px;}
.lsfe{letter-spacing:1.314720px;}
.ls49{letter-spacing:1.436400px;}
.ls50{letter-spacing:1.442880px;}
.ls95{letter-spacing:1.477440px;}
.ls23{letter-spacing:1.563120px;}
.ls115{letter-spacing:1.627920px;}
.ls2c{letter-spacing:1.722240px;}
.lsbc{letter-spacing:1.788480px;}
.lsc7{letter-spacing:1.795104px;}
.ls35{letter-spacing:1.915200px;}
.ls3d{letter-spacing:2.010960px;}
.ls94{letter-spacing:2.099520px;}
.ls92{letter-spacing:2.177280px;}
.ls2a{letter-spacing:2.202480px;}
.lsb1{letter-spacing:2.252160px;}
.ls27{letter-spacing:2.450880px;}
.ls12b{letter-spacing:2.556864px;}
.lsfc{letter-spacing:2.629440px;}
.ls99{letter-spacing:2.642976px;}
.ls5e{letter-spacing:3.060288px;}
.ls4e{letter-spacing:3.179520px;}
.ls5d{letter-spacing:3.225888px;}
.lsa1{letter-spacing:3.398112px;}
.ls41{letter-spacing:3.908160px;}
.lscb{letter-spacing:4.053888px;}
.ls2b{letter-spacing:4.309200px;}
.ls42{letter-spacing:4.636800px;}
.lsa6{letter-spacing:4.994496px;}
.lsdd{letter-spacing:5.043744px;}
.lsef{letter-spacing:5.049720px;}
.lsd1{letter-spacing:5.093856px;}
.lsa5{letter-spacing:5.121432px;}
.lseb{letter-spacing:5.318640px;}
.ls38{letter-spacing:5.365440px;}
.ls111{letter-spacing:5.405184px;}
.lsf4{letter-spacing:5.431680px;}
.ls12d{letter-spacing:5.478048px;}
.ls87{letter-spacing:5.650272px;}
.ls39{letter-spacing:6.094080px;}
.ls10c{letter-spacing:6.454080px;}
.ls112{letter-spacing:6.537888px;}
.ls44{letter-spacing:6.756480px;}
.lsba{letter-spacing:6.994944px;}
.ls3f{letter-spacing:7.021440px;}
.lsec{letter-spacing:7.135344px;}
.ls9a{letter-spacing:7.485120px;}
.lsb7{letter-spacing:7.756704px;}
.lsee{letter-spacing:7.864416px;}
.lsea{letter-spacing:7.888320px;}
.ls3e{letter-spacing:7.915680px;}
.ls2f{letter-spacing:8.213760px;}
.lsc8{letter-spacing:8.319744px;}
.ls106{letter-spacing:8.366112px;}
.ls3b{letter-spacing:8.465472px;}
.lsed{letter-spacing:8.605440px;}
.ls91{letter-spacing:8.631360px;}
.lsc5{letter-spacing:8.730432px;}
.ls45{letter-spacing:8.942400px;}
.ls8d{letter-spacing:9.008640px;}
.ls8e{letter-spacing:9.028512px;}
.ls89{letter-spacing:9.671040px;}
.ls12c{letter-spacing:9.690912px;}
.ls9b{letter-spacing:9.697536px;}
.lsdc{letter-spacing:9.929376px;}
.ls3a{letter-spacing:10.399680px;}
.lsd0{letter-spacing:10.525536px;}
.ls10d{letter-spacing:10.756800px;}
.ls37{letter-spacing:11.128320px;}
.ls10e{letter-spacing:11.473920px;}
.ls2d{letter-spacing:11.856960px;}
.ls22{letter-spacing:11.916576px;}
.ls10f{letter-spacing:12.191040px;}
.lsf7{letter-spacing:12.519360px;}
.lscc{letter-spacing:12.625344px;}
.ls110{letter-spacing:12.908160px;}
.lsb6{letter-spacing:12.936672px;}
.lsae{letter-spacing:12.983040px;}
.ls8a{letter-spacing:13.248000px;}
.lsda{letter-spacing:13.406976px;}
.ls116{letter-spacing:13.698432px;}
.lsc2{letter-spacing:13.976640px;}
.ls7f{letter-spacing:14.347584px;}
.lse8{letter-spacing:14.551560px;}
.ls3c{letter-spacing:14.705280px;}
.ls8b{letter-spacing:15.261696px;}
.lsd7{letter-spacing:15.433920px;}
.ls113{letter-spacing:16.162560px;}
.ls2e{letter-spacing:16.891200px;}
.ls29{letter-spacing:17.030304px;}
.lsb4{letter-spacing:17.056800px;}
.lsd4{letter-spacing:17.553600px;}
.lsc1{letter-spacing:18.282240px;}
.lsa3{letter-spacing:19.010880px;}
.lsa2{letter-spacing:19.163232px;}
.lsb2{letter-spacing:19.739520px;}
.lse0{letter-spacing:20.079360px;}
.ls47{letter-spacing:20.468160px;}
.lse7{letter-spacing:20.951856px;}
.lsdb{letter-spacing:21.455136px;}
.lscd{letter-spacing:21.925440px;}
.ls88{letter-spacing:22.773312px;}
.lsf8{letter-spacing:24.045120px;}
.lsf0{letter-spacing:24.441840px;}
.ls102{letter-spacing:26.959680px;}
.ls21{letter-spacing:27.688320px;}
.lsce{letter-spacing:31.993920px;}
.lsf6{letter-spacing:35.570880px;}
.lsb5{letter-spacing:37.028160px;}
.ls90{letter-spacing:45.486000px;}
.ls6e{letter-spacing:57.535920px;}
.ls109{letter-spacing:58.622400px;}
.ls104{letter-spacing:60.079680px;}
.ls108{letter-spacing:62.199360px;}
.ls103{letter-spacing:69.419520px;}
.ls17{letter-spacing:72.864000px;}
.ls1d{letter-spacing:101.678400px;}
.ls10a{letter-spacing:116.913600px;}
.ls10b{letter-spacing:124.862400px;}
.ls107{letter-spacing:128.439360px;}
.ls78{letter-spacing:182.805840px;}
.ls105{letter-spacing:186.796800px;}
.ls101{letter-spacing:194.016960px;}
.ls96{letter-spacing:198.339840px;}
.ls7d{letter-spacing:199.386000px;}
.ls70{letter-spacing:229.597200px;}
.ls73{letter-spacing:229.597920px;}
.ls7b{letter-spacing:236.078640px;}
.ls98{letter-spacing:242.190720px;}
.ls75{letter-spacing:252.691920px;}
.ls76{letter-spacing:262.764000px;}
.ls79{letter-spacing:262.764720px;}
.ls71{letter-spacing:268.491600px;}
.ls74{letter-spacing:268.501680px;}
.ls7a{letter-spacing:318.879360px;}
.ls77{letter-spacing:318.929040px;}
.ls6f{letter-spacing:342.677520px;}
.ls7c{letter-spacing:369.316800px;}
.ls72{letter-spacing:383.001840px;}
.ls7e{letter-spacing:456.387120px;}
.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;}
}
.ws92{word-spacing:-54.000000px;}
.ws1{word-spacing:-44.280000px;}
.ws27{word-spacing:-34.989840px;}
.ws105{word-spacing:-34.869600px;}
.ws1d{word-spacing:-33.907680px;}
.ws25{word-spacing:-33.546960px;}
.ws51{word-spacing:-28.823760px;}
.wsff{word-spacing:-28.632240px;}
.wseb{word-spacing:-28.536480px;}
.wsc1{word-spacing:-28.057680px;}
.ws3{word-spacing:-27.961920px;}
.wsec{word-spacing:-27.866160px;}
.ws4{word-spacing:-27.674640px;}
.ws2{word-spacing:-27.578880px;}
.wsc0{word-spacing:-27.387360px;}
.ws95{word-spacing:-23.794560px;}
.ws93{word-spacing:-23.716800px;}
.ws94{word-spacing:-23.094720px;}
.wsae{word-spacing:-20.666880px;}
.wsa5{word-spacing:-20.304000px;}
.wsa6{word-spacing:-20.016000px;}
.ws28{word-spacing:-19.474560px;}
.wsf5{word-spacing:-19.242720px;}
.ws97{word-spacing:-19.215360px;}
.ws10b{word-spacing:-19.143360px;}
.ws108{word-spacing:-19.010880px;}
.wsc2{word-spacing:-18.938880px;}
.wsb{word-spacing:-18.745920px;}
.ws24{word-spacing:-18.679680px;}
.ws11{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.282240px;}
.ws10{word-spacing:-18.149760px;}
.ws1e{word-spacing:-18.083520px;}
.wsd{word-spacing:-18.017280px;}
.wsf{word-spacing:-17.951040px;}
.wsc{word-spacing:-17.686080px;}
.wsdb{word-spacing:-17.569440px;}
.wse{word-spacing:-17.553600px;}
.ws52{word-spacing:-17.421120px;}
.ws29{word-spacing:-17.354880px;}
.ws6e{word-spacing:-17.270640px;}
.ws7c{word-spacing:-17.222400px;}
.wsd9{word-spacing:-17.210880px;}
.ws8f{word-spacing:-16.971840px;}
.ws8b{word-spacing:-16.852320px;}
.wsc8{word-spacing:-16.692480px;}
.ws8d{word-spacing:-16.673040px;}
.ws1a{word-spacing:-16.613280px;}
.wsc3{word-spacing:-16.553520px;}
.ws6d{word-spacing:-16.493760px;}
.ws8c{word-spacing:-16.374240px;}
.ws8e{word-spacing:-16.314480px;}
.wsda{word-spacing:-16.254720px;}
.wse3{word-spacing:-15.776640px;}
.ws8a{word-spacing:-15.238800px;}
.ws56{word-spacing:-15.228000px;}
.ws7f{word-spacing:-15.120000px;}
.ws99{word-spacing:-14.310000px;}
.ws19{word-spacing:-13.651920px;}
.ws18{word-spacing:-13.410720px;}
.ws1c{word-spacing:-13.121280px;}
.ws1b{word-spacing:-11.674080px;}
.ws5a{word-spacing:-11.609280px;}
.ws6c{word-spacing:-10.808640px;}
.wsa9{word-spacing:-10.332000px;}
.ws98{word-spacing:-9.000000px;}
.wsd4{word-spacing:-2.202480px;}
.ws10a{word-spacing:-2.185920px;}
.ws23{word-spacing:-1.722240px;}
.ws102{word-spacing:-1.627920px;}
.ws70{word-spacing:-1.442880px;}
.ws106{word-spacing:-1.202400px;}
.ws72{word-spacing:-1.082160px;}
.wsdc{word-spacing:-1.075680px;}
.wsf2{word-spacing:-0.993600px;}
.ws10f{word-spacing:-0.961920px;}
.ws87{word-spacing:-0.810000px;}
.ws104{word-spacing:-0.766080px;}
.ws55{word-spacing:-0.728640px;}
.ws6f{word-spacing:-0.721440px;}
.ws96{word-spacing:-0.699840px;}
.ws10d{word-spacing:-0.662400px;}
.wse0{word-spacing:-0.657360px;}
.ws39{word-spacing:-0.596160px;}
.ws5c{word-spacing:-0.574560px;}
.wscb{word-spacing:-0.480960px;}
.wsb5{word-spacing:-0.418320px;}
.ws10c{word-spacing:-0.397440px;}
.wsa2{word-spacing:-0.358560px;}
.ws22{word-spacing:-0.331200px;}
.ws6{word-spacing:-0.287280px;}
.ws88{word-spacing:-0.270000px;}
.ws15{word-spacing:-0.264960px;}
.ws1f{word-spacing:-0.241200px;}
.wsf0{word-spacing:-0.240480px;}
.ws79{word-spacing:-0.239040px;}
.ws89{word-spacing:-0.216000px;}
.wsa8{word-spacing:-0.144000px;}
.ws59{word-spacing:-0.108000px;}
.ws10e{word-spacing:-0.066240px;}
.ws90{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws74{word-spacing:0.059760px;}
.ws107{word-spacing:0.066240px;}
.ws5{word-spacing:0.095760px;}
.ws77{word-spacing:0.119520px;}
.ws13{word-spacing:0.132480px;}
.ws7{word-spacing:0.144000px;}
.ws57{word-spacing:0.191520px;}
.ws9b{word-spacing:0.207360px;}
.ws86{word-spacing:0.264960px;}
.ws9d{word-spacing:0.276480px;}
.ws9{word-spacing:0.287280px;}
.wsc7{word-spacing:0.298800px;}
.ws16{word-spacing:0.331200px;}
.wse6{word-spacing:0.358560px;}
.ws71{word-spacing:0.360720px;}
.ws35{word-spacing:0.397440px;}
.ws8{word-spacing:0.432000px;}
.ws12{word-spacing:0.463680px;}
.ws53{word-spacing:0.480960px;}
.ws20{word-spacing:0.578880px;}
.ws17{word-spacing:0.596160px;}
.ws26{word-spacing:0.662400px;}
.ws100{word-spacing:0.721440px;}
.ws14{word-spacing:0.728640px;}
.ws5d{word-spacing:0.766080px;}
.ws76{word-spacing:0.776880px;}
.ws109{word-spacing:0.794880px;}
.ws3d{word-spacing:0.861120px;}
.wsd5{word-spacing:0.957600px;}
.wsa7{word-spacing:1.008000px;}
.ws54{word-spacing:1.059840px;}
.wse9{word-spacing:1.075680px;}
.ws43{word-spacing:1.192320px;}
.ws9f{word-spacing:1.244160px;}
.ws44{word-spacing:1.391040px;}
.ws75{word-spacing:1.494000px;}
.wsbf{word-spacing:1.523520px;}
.ws40{word-spacing:1.920960px;}
.wscd{word-spacing:2.185920px;}
.ws78{word-spacing:2.211120px;}
.wsf9{word-spacing:2.330640px;}
.ws7b{word-spacing:2.450880px;}
.ws2b{word-spacing:2.583360px;}
.ws60{word-spacing:2.649600px;}
.ws46{word-spacing:2.782080px;}
.wsac{word-spacing:2.848320px;}
.wsb8{word-spacing:2.988000px;}
.ws34{word-spacing:3.312000px;}
.ws21{word-spacing:3.425040px;}
.ws62{word-spacing:3.510720px;}
.wsa3{word-spacing:3.705120px;}
.ws4b{word-spacing:4.040640px;}
.ws9c{word-spacing:4.147200px;}
.wsaa{word-spacing:4.239360px;}
.wsb9{word-spacing:4.422240px;}
.wsba{word-spacing:4.601520px;}
.ws47{word-spacing:4.769280px;}
.wsdf{word-spacing:4.780800px;}
.wsd3{word-spacing:4.901760px;}
.ws5e{word-spacing:4.968000px;}
.wsb6{word-spacing:5.100480px;}
.ws7a{word-spacing:5.139360px;}
.ws36{word-spacing:5.497920px;}
.ws9e{word-spacing:5.529600px;}
.wsfe{word-spacing:5.696640px;}
.wsd0{word-spacing:5.829120px;}
.ws73{word-spacing:5.856480px;}
.ws2e{word-spacing:6.226560px;}
.wsef{word-spacing:6.359040px;}
.wsbd{word-spacing:6.425280px;}
.wsb3{word-spacing:6.573600px;}
.wse8{word-spacing:6.932160px;}
.ws2f{word-spacing:6.955200px;}
.wsad{word-spacing:7.153920px;}
.wsb4{word-spacing:7.290720px;}
.wse7{word-spacing:7.649280px;}
.ws4f{word-spacing:7.683840px;}
.ws9a{word-spacing:7.741440px;}
.ws3f{word-spacing:7.882560px;}
.wsa4{word-spacing:8.007840px;}
.wsd2{word-spacing:8.280000px;}
.ws38{word-spacing:8.346240px;}
.ws7d{word-spacing:8.544960px;}
.wsbb{word-spacing:8.724960px;}
.ws2c{word-spacing:9.074880px;}
.wsd1{word-spacing:9.273600px;}
.wsf8{word-spacing:9.442080px;}
.ws32{word-spacing:9.803520px;}
.ws4d{word-spacing:9.936000px;}
.wsb0{word-spacing:10.159200px;}
.ws4e{word-spacing:10.532160px;}
.wsed{word-spacing:10.664640px;}
.ws66{word-spacing:10.730880px;}
.ws69{word-spacing:10.797120px;}
.wsb2{word-spacing:10.876320px;}
.wsb1{word-spacing:11.055600px;}
.ws4a{word-spacing:11.260800px;}
.wsd8{word-spacing:11.593440px;}
.wsfa{word-spacing:11.712960px;}
.wsfd{word-spacing:11.952000px;}
.ws37{word-spacing:11.989440px;}
.ws68{word-spacing:12.188160px;}
.wsdd{word-spacing:12.310560px;}
.ws48{word-spacing:12.585600px;}
.ws3a{word-spacing:12.718080px;}
.wsbe{word-spacing:12.916800px;}
.wsde{word-spacing:13.027680px;}
.ws63{word-spacing:13.380480px;}
.ws101{word-spacing:13.645440px;}
.wsc9{word-spacing:13.744800px;}
.ws33{word-spacing:14.109120px;}
.wsa0{word-spacing:14.374080px;}
.wsfb{word-spacing:14.461920px;}
.ws49{word-spacing:14.837760px;}
.wsaf{word-spacing:15.036480px;}
.wse5{word-spacing:15.179040px;}
.ws103{word-spacing:15.433920px;}
.ws31{word-spacing:15.566400px;}
.ws42{word-spacing:15.765120px;}
.ws45{word-spacing:16.295040px;}
.wsc6{word-spacing:16.613280px;}
.ws2d{word-spacing:17.023680px;}
.ws67{word-spacing:17.222400px;}
.wsf6{word-spacing:17.330400px;}
.ws3e{word-spacing:17.752320px;}
.ws3c{word-spacing:17.951040px;}
.ws5f{word-spacing:18.480960px;}
.wsc5{word-spacing:19.003680px;}
.ws5b{word-spacing:19.143360px;}
.wsf1{word-spacing:19.342080px;}
.ws4c{word-spacing:19.872000px;}
.ws82{word-spacing:20.136960px;}
.wse2{word-spacing:20.258640px;}
.ws64{word-spacing:20.600640px;}
.ws6a{word-spacing:21.329280px;}
.ws65{word-spacing:21.528000px;}
.wse4{word-spacing:21.692880px;}
.ws7e{word-spacing:22.057920px;}
.ws41{word-spacing:22.786560px;}
.ws91{word-spacing:22.985280px;}
.ws2a{word-spacing:23.515200px;}
.ws58{word-spacing:24.243840px;}
.wsea{word-spacing:24.561360px;}
.ws6b{word-spacing:24.906240px;}
.ws3b{word-spacing:25.634880px;}
.wsab{word-spacing:26.363520px;}
.ws30{word-spacing:27.820800px;}
.wse1{word-spacing:28.146960px;}
.wsa1{word-spacing:28.549440px;}
.ws50{word-spacing:29.278080px;}
.wsfc{word-spacing:29.581200px;}
.wsc4{word-spacing:29.940480px;}
.ws80{word-spacing:31.397760px;}
.ws81{word-spacing:31.530240px;}
.wsce{word-spacing:32.126400px;}
.wscf{word-spacing:32.855040px;}
.wsca{word-spacing:35.040960px;}
.wsee{word-spacing:35.703360px;}
.wsbc{word-spacing:37.160640px;}
.ws61{word-spacing:37.889280px;}
.wscc{word-spacing:38.617920px;}
.wsf7{word-spacing:40.075200px;}
.wsb7{word-spacing:41.466240px;}
.wsf3{word-spacing:42.923520px;}
.ws85{word-spacing:46.699200px;}
.ws84{word-spacing:47.229120px;}
.ws83{word-spacing:47.427840px;}
.wsf4{word-spacing:50.143680px;}
.wsd7{word-spacing:74.586240px;}
.wsd6{word-spacing:75.314880px;}
._8{margin-left:-17.514720px;}
._a{margin-left:-15.991200px;}
._3{margin-left:-14.440320px;}
._4{margin-left:-12.585600px;}
._b{margin-left:-11.525760px;}
._7{margin-left:-10.398240px;}
._9{margin-left:-8.582400px;}
._6{margin-left:-7.286400px;}
._5{margin-left:-5.402880px;}
._c{margin-left:-2.913120px;}
._0{margin-left:-1.684800px;}
._1{width:1.447200px;}
._2{width:2.942496px;}
._12{width:4.469760px;}
._13{width:5.916960px;}
._d{width:7.021440px;}
._16{width:8.147520px;}
._e{width:9.197280px;}
._10{width:10.647360px;}
._14{width:11.856960px;}
._19{width:13.380480px;}
._f{width:14.878080px;}
._11{width:16.162560px;}
._1b{width:17.321760px;}
._1d{width:19.513440px;}
._18{width:22.852800px;}
._1c{width:24.813504px;}
._1a{width:26.876160px;}
._1f{width:28.956960px;}
._1e{width:36.425664px;}
._15{width:39.906000px;}
._17{width:48.780720px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(149,79,114);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(227,5,19);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fs11{font-size:38.880000px;}
.fs10{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fsd{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs13{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y246{bottom:3.600000px;}
.y242{bottom:3.780000px;}
.y1de{bottom:38.340000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y20{bottom:139.264499px;}
.y730{bottom:147.666240px;}
.y153{bottom:152.275500px;}
.y1cb{bottom:152.280000px;}
.y5da{bottom:152.284500px;}
.y62b{bottom:153.144720px;}
.y66b{bottom:154.254960px;}
.y1bc{bottom:156.317040px;}
.y5a6{bottom:157.326480px;}
.y84{bottom:157.506480px;}
.y301{bottom:157.574160px;}
.y128{bottom:158.928480px;}
.y61a{bottom:158.952240px;}
.y2dd{bottom:160.439040px;}
.y44e{bottom:161.152560px;}
.y64{bottom:162.162000px;}
.ye0{bottom:163.418400px;}
.y3b9{bottom:163.534320px;}
.y227{bottom:163.539360px;}
.y3e7{bottom:163.549440px;}
.y3bf{bottom:163.589760px;}
.y66f{bottom:163.604880px;}
.y170{bottom:163.614960px;}
.y3a8{bottom:164.898720px;}
.y48e{bottom:165.004560px;}
.y38f{bottom:165.664080px;}
.y643{bottom:165.669120px;}
.y529{bottom:166.528800px;}
.y562{bottom:166.599360px;}
.y424{bottom:167.978880px;}
.y57d{bottom:167.994000px;}
.y406{bottom:168.024240px;}
.y3f1{bottom:168.079680px;}
.y4e9{bottom:168.089760px;}
.y152{bottom:168.651000px;}
.y1ca{bottom:168.655500px;}
.y5d9{bottom:168.660000px;}
.y72f{bottom:169.260480px;}
.y35b{bottom:171.134640px;}
.y28b{bottom:171.360000px;}
.y100{bottom:172.413360px;}
.y6e2{bottom:172.614960px;}
.y697{bottom:172.620000px;}
.y5a5{bottom:173.880000px;}
.y619{bottom:175.326480px;}
.y62a{bottom:175.649760px;}
.y318{bottom:175.680000px;}
.y66a{bottom:176.760000px;}
.y1bb{bottom:178.822080px;}
.y300{bottom:180.079200px;}
.y127{bottom:181.433520px;}
.y3a7{bottom:181.452240px;}
.y3d6{bottom:181.514160px;}
.y63{bottom:181.603440px;}
.y5f6{bottom:182.294640px;}
.y2dc{bottom:182.944080px;}
.y44d{bottom:183.657600px;}
.y5cf{bottom:184.669920px;}
.y151{bottom:185.215500px;}
.y1c9{bottom:185.220000px;}
.ydf{bottom:185.923440px;}
.y3b8{bottom:186.039360px;}
.y226{bottom:186.044400px;}
.y3e6{bottom:186.054480px;}
.y3be{bottom:186.094800px;}
.y675{bottom:186.104880px;}
.y66e{bottom:186.109920px;}
.y16f{bottom:186.114960px;}
.y48d{bottom:187.509600px;}
.y5d8{bottom:187.920000px;}
.y38e{bottom:188.169120px;}
.y642{bottom:188.174160px;}
.y72e{bottom:188.337600px;}
.y528{bottom:189.033840px;}
.y561{bottom:189.104400px;}
.y83{bottom:189.732240px;}
.y423{bottom:190.483920px;}
.y57c{bottom:190.499040px;}
.y405{bottom:190.529280px;}
.y507{bottom:190.574640px;}
.y3f0{bottom:190.584720px;}
.y4e8{bottom:190.594800px;}
.y5a4{bottom:190.604880px;}
.y64c{bottom:190.614960px;}
.y618{bottom:191.880000px;}
.y331{bottom:191.944080px;}
.y46f{bottom:191.959200px;}
.y35a{bottom:193.639680px;}
.yff{bottom:194.918400px;}
.y6fe{bottom:195.114960px;}
.y696{bottom:195.120000px;}
.y17{bottom:196.933500px;}
.y317{bottom:197.826480px;}
.y629{bottom:198.154800px;}
.y62{bottom:201.227040px;}
.y150{bottom:201.780000px;}
.y2ff{bottom:202.584240px;}
.y36f{bottom:202.672800px;}
.y126{bottom:203.938560px;}
.y3d5{bottom:204.019200px;}
.y1c8{bottom:204.480000px;}
.y5f5{bottom:204.799680px;}
.y2db{bottom:205.449120px;}
.y4b5{bottom:205.642080px;}
.y44c{bottom:206.162640px;}
.y5ce{bottom:207.174960px;}
.y72d{bottom:207.232560px;}
.yde{bottom:208.428480px;}
.y617{bottom:208.534320px;}
.y3b7{bottom:208.544400px;}
.y225{bottom:208.549440px;}
.y3e5{bottom:208.559520px;}
.y3bd{bottom:208.599840px;}
.y674{bottom:208.609920px;}
.y16e{bottom:208.614960px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y48c{bottom:210.014640px;}
.y38d{bottom:210.674160px;}
.y641{bottom:210.679200px;}
.y527{bottom:211.538880px;}
.y560{bottom:211.609440px;}
.y422{bottom:212.988960px;}
.y57b{bottom:213.004080px;}
.y404{bottom:213.034320px;}
.y506{bottom:213.079680px;}
.y3ef{bottom:213.089760px;}
.y4e7{bottom:213.099840px;}
.y5a3{bottom:213.109920px;}
.y64b{bottom:213.120000px;}
.y316{bottom:214.380000px;}
.y330{bottom:214.449120px;}
.y46e{bottom:214.464240px;}
.y359{bottom:216.144720px;}
.y669{bottom:216.900000px;}
.yfe{bottom:217.423440px;}
.y28a{bottom:217.554480px;}
.y6ee{bottom:217.604880px;}
.y6d9{bottom:217.609920px;}
.y6dd{bottom:217.614960px;}
.y695{bottom:217.620000px;}
.y628{bottom:220.659840px;}
.y61{bottom:220.668480px;}
.y14f{bottom:220.860000px;}
.y82{bottom:221.958000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y4b4{bottom:222.195600px;}
.y2fe{bottom:225.089280px;}
.y36e{bottom:225.177840px;}
.y5d7{bottom:225.786240px;}
.y72c{bottom:226.309680px;}
.y125{bottom:226.443600px;}
.y3d4{bottom:226.524240px;}
.y5f4{bottom:227.304720px;}
.y2da{bottom:227.954160px;}
.y44b{bottom:228.667680px;}
.y5cd{bottom:229.680000px;}
.ydd{bottom:230.933520px;}
.y616{bottom:231.039360px;}
.y16d{bottom:231.049440px;}
.y224{bottom:231.054480px;}
.y3e4{bottom:231.064560px;}
.y3a6{bottom:231.074640px;}
.y315{bottom:231.104880px;}
.y673{bottom:231.114960px;}
.y66d{bottom:231.120000px;}
.y48b{bottom:232.519680px;}
.y38c{bottom:233.179200px;}
.y640{bottom:233.184240px;}
.y526{bottom:234.043920px;}
.y55f{bottom:234.114480px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y421{bottom:235.494000px;}
.y57a{bottom:235.509120px;}
.y64a{bottom:235.514160px;}
.y403{bottom:235.539360px;}
.y505{bottom:235.584720px;}
.y3ee{bottom:235.594800px;}
.y4e6{bottom:235.604880px;}
.y5a2{bottom:235.614960px;}
.y32f{bottom:236.954160px;}
.y46d{bottom:236.969280px;}
.yb9{bottom:237.020400px;}
.y4b3{bottom:238.569840px;}
.y358{bottom:238.649760px;}
.yfd{bottom:239.928480px;}
.y289{bottom:240.059520px;}
.y60{bottom:240.109920px;}
.y6d8{bottom:240.114960px;}
.y694{bottom:240.120000px;}
.y627{bottom:243.164880px;}
.y1ff{bottom:243.789120px;}
.y72b{bottom:245.204640px;}
.y2fd{bottom:247.594320px;}
.y36d{bottom:247.682880px;}
.y5d6{bottom:248.291280px;}
.y124{bottom:248.948640px;}
.y3d3{bottom:249.029280px;}
.y5f3{bottom:249.809760px;}
.y2d9{bottom:250.459200px;}
.y44a{bottom:251.172720px;}
.ydc{bottom:253.438560px;}
.y14e{bottom:253.453680px;}
.y615{bottom:253.544400px;}
.y16c{bottom:253.554480px;}
.y223{bottom:253.559520px;}
.y3e3{bottom:253.569600px;}
.y3a5{bottom:253.579680px;}
.y314{bottom:253.609920px;}
.y672{bottom:253.620000px;}
.y5cc{bottom:253.980000px;}
.y81{bottom:254.183760px;}
.y48a{bottom:255.024720px;}
.y4b2{bottom:255.123360px;}
.y66c{bottom:255.415680px;}
.y38b{bottom:255.684240px;}
.y63f{bottom:255.689280px;}
.y525{bottom:256.548960px;}
.y55e{bottom:256.619520px;}
.y3a{bottom:257.397840px;}
.y420{bottom:257.999040px;}
.y579{bottom:258.014160px;}
.y649{bottom:258.019200px;}
.y402{bottom:258.044400px;}
.y504{bottom:258.089760px;}
.y3ed{bottom:258.099840px;}
.y4e5{bottom:258.109920px;}
.y5a1{bottom:258.120000px;}
.y32e{bottom:259.459200px;}
.y46c{bottom:259.474320px;}
.yb8{bottom:259.525440px;}
.y5f{bottom:259.733520px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y357{bottom:261.154800px;}
.yfc{bottom:262.433520px;}
.y288{bottom:262.564560px;}
.y6ac{bottom:262.579680px;}
.y6f1{bottom:262.599840px;}
.y6dc{bottom:262.609920px;}
.y693{bottom:262.614960px;}
.y6b8{bottom:262.620000px;}
.y72a{bottom:264.281760px;}
.y626{bottom:265.669920px;}
.y1fe{bottom:266.294160px;}
.y36c{bottom:266.577840px;}
.y2fc{bottom:270.099360px;}
.y5d5{bottom:270.796320px;}
.y123{bottom:271.453680px;}
.y3d2{bottom:271.534320px;}
.y4b1{bottom:271.676880px;}
.y5f2{bottom:272.314800px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y2d8{bottom:272.964240px;}
.y449{bottom:273.677760px;}
.ydb{bottom:275.943600px;}
.y14d{bottom:275.958720px;}
.y614{bottom:276.049440px;}
.y16b{bottom:276.059520px;}
.y222{bottom:276.064560px;}
.y3e2{bottom:276.074640px;}
.y3a4{bottom:276.084720px;}
.y313{bottom:276.114960px;}
.y39{bottom:276.836580px;}
.y489{bottom:277.529760px;}
.y671{bottom:277.915680px;}
.y38a{bottom:278.189280px;}
.y63e{bottom:278.194320px;}
.y524{bottom:279.054000px;}
.y5cb{bottom:279.079200px;}
.y55d{bottom:279.124560px;}
.y5e{bottom:279.174960px;}
.y41f{bottom:280.504080px;}
.y578{bottom:280.519200px;}
.y648{bottom:280.524240px;}
.y401{bottom:280.549440px;}
.y503{bottom:280.594800px;}
.y3ec{bottom:280.604880px;}
.y4e4{bottom:280.614960px;}
.y32d{bottom:281.964240px;}
.y46b{bottom:281.979360px;}
.yb7{bottom:282.030480px;}
.y5a0{bottom:282.420000px;}
.y729{bottom:283.176720px;}
.y356{bottom:283.659840px;}
.yfb{bottom:284.938560px;}
.y287{bottom:285.069600px;}
.y6ab{bottom:285.084720px;}
.y6cc{bottom:285.089760px;}
.y6f0{bottom:285.104880px;}
.y6b7{bottom:285.114960px;}
.y1a{bottom:285.118502px;}
.y692{bottom:285.120000px;}
.y11{bottom:285.133499px;}
.y80{bottom:286.409520px;}
.y4b0{bottom:288.051120px;}
.y625{bottom:288.174960px;}
.y1fd{bottom:288.799200px;}
.y2fb{bottom:292.604400px;}
.y5d4{bottom:293.301360px;}
.y122{bottom:293.958720px;}
.y3d1{bottom:294.039360px;}
.y5f1{bottom:294.819840px;}
.y2d7{bottom:295.469280px;}
.y448{bottom:296.182800px;}
.y38{bottom:296.460180px;}
.yda{bottom:298.448640px;}
.y14c{bottom:298.463760px;}
.y613{bottom:298.554480px;}
.y16a{bottom:298.564560px;}
.y221{bottom:298.569600px;}
.y3e1{bottom:298.579680px;}
.y3a3{bottom:298.589760px;}
.y5d{bottom:298.616400px;}
.y312{bottom:298.620000px;}
.y488{bottom:300.034800px;}
.y389{bottom:300.694320px;}
.y63d{bottom:300.699360px;}
.y523{bottom:301.559040px;}
.y5ca{bottom:301.584240px;}
.y55c{bottom:301.629600px;}
.y728{bottom:302.071680px;}
.y399{bottom:302.999040px;}
.y41e{bottom:303.009120px;}
.y577{bottom:303.024240px;}
.y647{bottom:303.029280px;}
.y400{bottom:303.054480px;}
.y502{bottom:303.099840px;}
.y3eb{bottom:303.109920px;}
.y4e3{bottom:303.120000px;}
.y32c{bottom:304.469280px;}
.y46a{bottom:304.484400px;}
.y4af{bottom:304.604640px;}
.y670{bottom:304.920000px;}
.y355{bottom:306.164880px;}
.yfa{bottom:307.443600px;}
.y59f{bottom:307.514160px;}
.y286{bottom:307.574640px;}
.y6aa{bottom:307.589760px;}
.y6cb{bottom:307.594800px;}
.y6ef{bottom:307.609920px;}
.y6d7{bottom:307.614960px;}
.y691{bottom:307.620000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y624{bottom:310.680000px;}
.y1fc{bottom:311.304240px;}
.yb6{bottom:314.256240px;}
.y2fa{bottom:315.109440px;}
.y5d3{bottom:315.806400px;}
.y37{bottom:315.898920px;}
.y121{bottom:316.463760px;}
.y3d0{bottom:316.544400px;}
.y5f0{bottom:317.324880px;}
.y2d6{bottom:317.974320px;}
.y5c{bottom:318.240000px;}
.y7f{bottom:318.635280px;}
.y447{bottom:318.687840px;}
.yd9{bottom:320.953680px;}
.y14b{bottom:320.968800px;}
.y612{bottom:321.059520px;}
.y169{bottom:321.069600px;}
.y220{bottom:321.074640px;}
.y3e0{bottom:321.084720px;}
.y3a2{bottom:321.094800px;}
.y3bc{bottom:321.125040px;}
.y727{bottom:321.148800px;}
.y4ae{bottom:321.158160px;}
.y487{bottom:322.539840px;}
.y18{bottom:322.918500px;}
.y311{bottom:322.920000px;}
.yf{bottom:322.933500px;}
.y388{bottom:323.199360px;}
.y63c{bottom:323.204400px;}
.y522{bottom:324.064080px;}
.y5c9{bottom:324.089280px;}
.y55b{bottom:324.134640px;}
.y398{bottom:325.504080px;}
.y41d{bottom:325.514160px;}
.y576{bottom:325.529280px;}
.y646{bottom:325.534320px;}
.y3ff{bottom:325.559520px;}
.y23f{bottom:325.594800px;}
.y501{bottom:325.604880px;}
.y3ea{bottom:325.614960px;}
.y4e2{bottom:325.733040px;}
.y32b{bottom:326.974320px;}
.y469{bottom:326.989440px;}
.y354{bottom:328.669920px;}
.yf9{bottom:329.948640px;}
.y59e{bottom:330.019200px;}
.y285{bottom:330.079680px;}
.y6a9{bottom:330.094800px;}
.y6ca{bottom:330.099840px;}
.y6e6{bottom:330.114960px;}
.y690{bottom:330.120000px;}
.y1fb{bottom:333.809280px;}
.y623{bottom:334.980000px;}
.y36{bottom:335.337660px;}
.yb5{bottom:336.761280px;}
.y4ad{bottom:337.532400px;}
.y2f9{bottom:337.614480px;}
.y5b{bottom:337.673520px;}
.y5d2{bottom:338.311440px;}
.y120{bottom:338.968800px;}
.y3cf{bottom:339.049440px;}
.y5ef{bottom:339.829920px;}
.y726{bottom:340.043760px;}
.y2d5{bottom:340.479360px;}
.y446{bottom:341.192880px;}
.y4e1{bottom:342.107280px;}
.yd8{bottom:343.458720px;}
.y14a{bottom:343.473840px;}
.y611{bottom:343.564560px;}
.y168{bottom:343.574640px;}
.y21f{bottom:343.579680px;}
.y3df{bottom:343.589760px;}
.y3a1{bottom:343.599840px;}
.y3bb{bottom:344.074320px;}
.y486{bottom:345.044880px;}
.y387{bottom:345.704400px;}
.y63b{bottom:345.709440px;}
.y521{bottom:346.569120px;}
.y5c8{bottom:346.594320px;}
.y55a{bottom:346.639680px;}
.y397{bottom:348.009120px;}
.y41c{bottom:348.019200px;}
.y575{bottom:348.034320px;}
.y645{bottom:348.039360px;}
.y310{bottom:348.044400px;}
.y53b{bottom:348.049440px;}
.y3fe{bottom:348.064560px;}
.y23e{bottom:348.099840px;}
.y500{bottom:348.109920px;}
.y3e9{bottom:348.120000px;}
.ye{bottom:348.133500px;}
.y262{bottom:348.964560px;}
.y32a{bottom:349.479360px;}
.y468{bottom:349.494480px;}
.y7e{bottom:351.043200px;}
.y353{bottom:351.174960px;}
.yf8{bottom:352.453680px;}
.y59d{bottom:352.524240px;}
.y284{bottom:352.584720px;}
.y6ed{bottom:352.594800px;}
.y6a8{bottom:352.599840px;}
.y6c9{bottom:352.604880px;}
.y68f{bottom:352.614960px;}
.y6c1{bottom:352.620000px;}
.y1a9{bottom:353.340000px;}
.y4ac{bottom:354.085920px;}
.y35{bottom:354.961260px;}
.y1fa{bottom:356.314320px;}
.y5a{bottom:357.114960px;}
.y4e0{bottom:358.660800px;}
.y725{bottom:359.120880px;}
.y2f8{bottom:360.119520px;}
.y622{bottom:360.144720px;}
.y5d1{bottom:360.816480px;}
.y11f{bottom:361.473840px;}
.y3ce{bottom:361.554480px;}
.y5ee{bottom:362.334960px;}
.y3ba{bottom:362.439360px;}
.y2d4{bottom:362.984400px;}
.y445{bottom:363.697920px;}
.yd7{bottom:365.963760px;}
.y149{bottom:365.978880px;}
.y610{bottom:366.069600px;}
.y167{bottom:366.079680px;}
.y21e{bottom:366.084720px;}
.y3de{bottom:366.094800px;}
.y3a0{bottom:366.104880px;}
.y485{bottom:367.549920px;}
.y386{bottom:368.209440px;}
.y63a{bottom:368.214480px;}
.y520{bottom:369.074160px;}
.y5c7{bottom:369.099360px;}
.y559{bottom:369.144720px;}
.yb4{bottom:369.169200px;}
.y396{bottom:370.514160px;}
.y41b{bottom:370.524240px;}
.y574{bottom:370.539360px;}
.y644{bottom:370.544400px;}
.y30f{bottom:370.549440px;}
.y53a{bottom:370.554480px;}
.y3fd{bottom:370.569600px;}
.y23d{bottom:370.604880px;}
.y4ff{bottom:370.614960px;}
.y4ab{bottom:370.639440px;}
.y261{bottom:371.469600px;}
.y329{bottom:371.984400px;}
.y467{bottom:371.999520px;}
.y3e8{bottom:372.420000px;}
.y352{bottom:373.680000px;}
.y34{bottom:374.400000px;}
.yf7{bottom:374.958720px;}
.y59c{bottom:375.029280px;}
.y1a8{bottom:375.064560px;}
.y283{bottom:375.089760px;}
.y6ec{bottom:375.099840px;}
.y6a7{bottom:375.104880px;}
.y6c8{bottom:375.109920px;}
.y6d2{bottom:375.114960px;}
.y68e{bottom:375.120000px;}
.y4df{bottom:375.214320px;}
.y59{bottom:376.738560px;}
.y724{bottom:378.015840px;}
.y1f9{bottom:378.819360px;}
.y5d0{bottom:379.711440px;}
.y2f7{bottom:382.624560px;}
.y621{bottom:382.649760px;}
.y7d{bottom:383.268960px;}
.y11e{bottom:383.978880px;}
.y3cd{bottom:384.059520px;}
.y5ed{bottom:384.840000px;}
.y2d3{bottom:385.489440px;}
.y444{bottom:386.202960px;}
.yd{bottom:386.785499px;}
.y4aa{bottom:387.013680px;}
.yd6{bottom:388.468800px;}
.y148{bottom:388.483920px;}
.y60f{bottom:388.574640px;}
.y166{bottom:388.584720px;}
.y21d{bottom:388.589760px;}
.y3dd{bottom:388.599840px;}
.y39f{bottom:388.609920px;}
.y484{bottom:390.054960px;}
.y385{bottom:390.714480px;}
.y639{bottom:390.719520px;}
.y51f{bottom:391.579200px;}
.y4de{bottom:391.588560px;}
.y5c6{bottom:391.604400px;}
.y558{bottom:391.649760px;}
.y395{bottom:393.019200px;}
.y41a{bottom:393.029280px;}
.y573{bottom:393.044400px;}
.y434{bottom:393.049440px;}
.y30e{bottom:393.054480px;}
.y539{bottom:393.059520px;}
.y3fc{bottom:393.074640px;}
.y23c{bottom:393.109920px;}
.y4fe{bottom:393.120000px;}
.y260{bottom:393.974640px;}
.y328{bottom:394.489440px;}
.y466{bottom:394.504560px;}
.y33{bottom:394.560000px;}
.y2a7{bottom:395.100000px;}
.y351{bottom:395.863920px;}
.y58{bottom:396.180000px;}
.y723{bottom:396.910800px;}
.yf6{bottom:397.463760px;}
.y59b{bottom:397.534320px;}
.y1a7{bottom:397.569600px;}
.y282{bottom:397.594800px;}
.y6eb{bottom:397.604880px;}
.y6a6{bottom:397.609920px;}
.y6c7{bottom:397.614960px;}
.y68d{bottom:397.620000px;}
.y1c7{bottom:398.340000px;}
.y1f8{bottom:401.324400px;}
.yb3{bottom:401.394960px;}
.y1db{bottom:403.200000px;}
.y4a9{bottom:403.567200px;}
.y2f6{bottom:405.129600px;}
.y620{bottom:405.154800px;}
.y11d{bottom:406.483920px;}
.y3cc{bottom:406.564560px;}
.y5ec{bottom:407.197440px;}
.y2d2{bottom:407.994480px;}
.yc{bottom:408.044999px;}
.y4dd{bottom:408.142080px;}
.y443{bottom:408.708000px;}
.yd5{bottom:410.973840px;}
.y147{bottom:410.988960px;}
.y60e{bottom:411.079680px;}
.y165{bottom:411.089760px;}
.y21c{bottom:411.094800px;}
.y3dc{bottom:411.104880px;}
.y39e{bottom:411.114960px;}
.y350{bottom:412.417440px;}
.y483{bottom:412.560000px;}
.y384{bottom:413.219520px;}
.y638{bottom:413.224560px;}
.y57{bottom:414.000000px;}
.y51e{bottom:414.084240px;}
.y5c5{bottom:414.109440px;}
.y557{bottom:414.154800px;}
.y7c{bottom:415.494720px;}
.y394{bottom:415.524240px;}
.y419{bottom:415.534320px;}
.y572{bottom:415.549440px;}
.y433{bottom:415.554480px;}
.y30d{bottom:415.559520px;}
.y538{bottom:415.564560px;}
.y3fb{bottom:415.579680px;}
.y23b{bottom:415.614960px;}
.y722{bottom:415.987920px;}
.y25f{bottom:416.479680px;}
.y2a6{bottom:416.994480px;}
.y465{bottom:417.009600px;}
.y4fd{bottom:417.420000px;}
.yf5{bottom:419.968800px;}
.y59a{bottom:420.039360px;}
.y1c6{bottom:420.069600px;}
.y1a6{bottom:420.074640px;}
.y281{bottom:420.099840px;}
.y6ea{bottom:420.109920px;}
.y6a5{bottom:420.114960px;}
.y68c{bottom:420.120000px;}
.y4a8{bottom:420.120720px;}
.y5eb{bottom:423.571680px;}
.y1f7{bottom:423.829440px;}
.yb2{bottom:423.900000px;}
.y4dc{bottom:424.695600px;}
.y1da{bottom:424.903680px;}
.y56{bottom:426.060000px;}
.y32{bottom:426.960000px;}
.y2f5{bottom:427.634640px;}
.y61f{bottom:427.659840px;}
.y34f{bottom:428.970960px;}
.y11c{bottom:428.988960px;}
.y3cb{bottom:429.069600px;}
.y2d1{bottom:430.499520px;}
.y442{bottom:431.213040px;}
.yd4{bottom:433.478880px;}
.y146{bottom:433.494000px;}
.y60d{bottom:433.584720px;}
.y164{bottom:433.594800px;}
.y21b{bottom:433.599840px;}
.y3db{bottom:433.609920px;}
.y39d{bottom:433.620000px;}
.y721{bottom:434.882880px;}
.y482{bottom:434.898720px;}
.y383{bottom:435.724560px;}
.y637{bottom:435.729600px;}
.y4a7{bottom:436.494960px;}
.y51d{bottom:436.589280px;}
.y5c4{bottom:436.614480px;}
.y556{bottom:436.659840px;}
.y99{bottom:437.274000px;}
.y393{bottom:438.029280px;}
.y418{bottom:438.039360px;}
.y571{bottom:438.054480px;}
.y432{bottom:438.059520px;}
.y30c{bottom:438.064560px;}
.y537{bottom:438.069600px;}
.y3fa{bottom:438.084720px;}
.y23a{bottom:438.120000px;}
.y25e{bottom:438.984720px;}
.y2a5{bottom:439.499520px;}
.y464{bottom:439.514640px;}
.y5ea{bottom:440.125200px;}
.y4db{bottom:441.069840px;}
.yf4{bottom:442.473840px;}
.y599{bottom:442.544400px;}
.y4fc{bottom:442.549440px;}
.y1c5{bottom:442.574640px;}
.y1a5{bottom:442.579680px;}
.y280{bottom:442.604880px;}
.y6fd{bottom:442.609920px;}
.y6db{bottom:442.614960px;}
.y6a4{bottom:442.620000px;}
.y55{bottom:443.880000px;}
.y34e{bottom:445.345200px;}
.y1f6{bottom:446.334480px;}
.y1d9{bottom:447.408720px;}
.y7b{bottom:447.720480px;}
.y31{bottom:448.560000px;}
.yb1{bottom:449.280000px;}
.y2f4{bottom:450.139680px;}
.y61e{bottom:450.164880px;}
.y481{bottom:451.452240px;}
.y11b{bottom:451.494000px;}
.y3ca{bottom:451.574640px;}
.y2d0{bottom:453.004560px;}
.y4a6{bottom:453.048480px;}
.y441{bottom:453.718080px;}
.y720{bottom:453.960000px;}
.y54{bottom:455.931360px;}
.yd3{bottom:455.983920px;}
.y145{bottom:455.999040px;}
.y60c{bottom:456.089760px;}
.y163{bottom:456.099840px;}
.y21a{bottom:456.104880px;}
.y3da{bottom:456.114960px;}
.y39c{bottom:456.301440px;}
.y5e9{bottom:456.678720px;}
.y4da{bottom:457.623360px;}
.y382{bottom:458.229600px;}
.y636{bottom:458.234640px;}
.y51c{bottom:459.094320px;}
.y5c3{bottom:459.119520px;}
.y555{bottom:459.164880px;}
.y98{bottom:459.779040px;}
.y392{bottom:460.534320px;}
.y417{bottom:460.544400px;}
.y570{bottom:460.559520px;}
.y431{bottom:460.564560px;}
.y30b{bottom:460.569600px;}
.y536{bottom:460.574640px;}
.y3f9{bottom:460.589760px;}
.y25d{bottom:461.489760px;}
.y239{bottom:461.527920px;}
.y34d{bottom:461.898720px;}
.y2a4{bottom:462.004560px;}
.y463{bottom:462.019680px;}
.y1ba{bottom:462.329280px;}
.yf3{bottom:464.978880px;}
.y598{bottom:465.049440px;}
.y4fb{bottom:465.054480px;}
.y1c4{bottom:465.079680px;}
.y1a4{bottom:465.084720px;}
.y6d6{bottom:465.104880px;}
.y27f{bottom:465.109920px;}
.y6d1{bottom:465.114960px;}
.y6a3{bottom:465.120000px;}
.y480{bottom:467.826480px;}
.y1f5{bottom:468.839520px;}
.y2b5{bottom:468.858960px;}
.y4a5{bottom:469.602000px;}
.y1d8{bottom:469.913760px;}
.y2f3{bottom:472.644720px;}
.y61d{bottom:472.669920px;}
.y5e8{bottom:473.052960px;}
.y71f{bottom:473.760000px;}
.y11a{bottom:473.999040px;}
.y3c9{bottom:474.079680px;}
.y4d9{bottom:474.176880px;}
.y53{bottom:475.372800px;}
.y2cf{bottom:475.509600px;}
.y30{bottom:475.734960px;}
.y440{bottom:476.223120px;}
.y34c{bottom:478.452240px;}
.yd2{bottom:478.488960px;}
.y144{bottom:478.504080px;}
.y60b{bottom:478.594800px;}
.y162{bottom:478.604880px;}
.y219{bottom:478.609920px;}
.y3d9{bottom:478.620000px;}
.y39b{bottom:478.676160px;}
.y7a{bottom:479.946240px;}
.yb0{bottom:480.661920px;}
.y381{bottom:480.734640px;}
.y635{bottom:480.739680px;}
.y51b{bottom:481.599360px;}
.y5c2{bottom:481.624560px;}
.y554{bottom:481.669920px;}
.y391{bottom:483.039360px;}
.y416{bottom:483.049440px;}
.y56f{bottom:483.064560px;}
.y430{bottom:483.069600px;}
.y30a{bottom:483.074640px;}
.y535{bottom:483.079680px;}
.y3f8{bottom:483.094800px;}
.y25c{bottom:483.994800px;}
.y238{bottom:484.020000px;}
.y47f{bottom:484.380000px;}
.y2a3{bottom:484.509600px;}
.y462{bottom:484.524720px;}
.y1b9{bottom:484.834320px;}
.y4a4{bottom:485.976240px;}
.yf2{bottom:487.483920px;}
.y597{bottom:487.554480px;}
.y4fa{bottom:487.559520px;}
.y1c3{bottom:487.584720px;}
.y1a3{bottom:487.589760px;}
.y6d5{bottom:487.609920px;}
.y27e{bottom:487.614960px;}
.y6a2{bottom:487.620000px;}
.y188{bottom:488.340000px;}
.y5e7{bottom:489.606480px;}
.y4d8{bottom:490.551120px;}
.y1f4{bottom:491.344560px;}
.y2b4{bottom:491.364000px;}
.y97{bottom:492.004800px;}
.y1d7{bottom:492.418800px;}
.y52{bottom:494.814240px;}
.y34b{bottom:494.826480px;}
.y2f2{bottom:495.149760px;}
.y61c{bottom:495.174960px;}
.y119{bottom:496.504080px;}
.y3c8{bottom:496.584720px;}
.y2ce{bottom:498.014640px;}
.y2f{bottom:498.240000px;}
.y43f{bottom:498.728160px;}
.yd1{bottom:500.994000px;}
.y39a{bottom:500.999040px;}
.y143{bottom:501.009120px;}
.y47e{bottom:501.054480px;}
.y60a{bottom:501.099840px;}
.y161{bottom:501.109920px;}
.y218{bottom:501.114960px;}
.y683{bottom:501.120000px;}
.y4a3{bottom:502.529760px;}
.y3d8{bottom:502.915680px;}
.yaf{bottom:503.166960px;}
.y380{bottom:503.239680px;}
.y634{bottom:503.244720px;}
.y51a{bottom:504.104400px;}
.y5c1{bottom:504.129600px;}
.y553{bottom:504.174960px;}
.y390{bottom:505.544400px;}
.y415{bottom:505.554480px;}
.y56e{bottom:505.569600px;}
.y42f{bottom:505.574640px;}
.y309{bottom:505.579680px;}
.y534{bottom:505.584720px;}
.y3f7{bottom:505.599840px;}
.y237{bottom:505.604880px;}
.y5e6{bottom:506.160000px;}
.y25b{bottom:506.499840px;}
.y71e{bottom:506.649600px;}
.y2a2{bottom:507.014640px;}
.y461{bottom:507.029760px;}
.y4d7{bottom:507.104640px;}
.y1b8{bottom:507.339360px;}
.yf1{bottom:509.988960px;}
.y187{bottom:510.039360px;}
.y596{bottom:510.059520px;}
.y4f9{bottom:510.064560px;}
.y1c2{bottom:510.089760px;}
.y1a2{bottom:510.094800px;}
.y27d{bottom:510.109920px;}
.y6d4{bottom:510.114960px;}
.y68b{bottom:510.120000px;}
.y34a{bottom:511.380000px;}
.y79{bottom:512.172000px;}
.y1f3{bottom:513.849600px;}
.y2b3{bottom:513.869040px;}
.y668{bottom:514.514160px;}
.y1d6{bottom:514.923840px;}
.y2f1{bottom:517.654800px;}
.y61b{bottom:517.680000px;}
.y118{bottom:519.009120px;}
.y4a2{bottom:519.083280px;}
.y3c7{bottom:519.089760px;}
.y2cd{bottom:520.519680px;}
.yb{bottom:520.864502px;}
.y2e{bottom:520.920000px;}
.y43e{bottom:521.233200px;}
.y5e5{bottom:522.856080px;}
.yd0{bottom:523.499040px;}
.y217{bottom:523.504080px;}
.y142{bottom:523.514160px;}
.y47d{bottom:523.559520px;}
.y609{bottom:523.604880px;}
.y160{bottom:523.614960px;}
.y682{bottom:523.620000px;}
.y4d6{bottom:523.658160px;}
.y96{bottom:524.230560px;}
.y37f{bottom:525.744720px;}
.y633{bottom:525.749760px;}
.y519{bottom:526.609440px;}
.y5c0{bottom:526.634640px;}
.y552{bottom:526.680000px;}
.y349{bottom:528.049440px;}
.y414{bottom:528.059520px;}
.y56d{bottom:528.074640px;}
.y42e{bottom:528.079680px;}
.y308{bottom:528.084720px;}
.y533{bottom:528.089760px;}
.y3f6{bottom:528.104880px;}
.y236{bottom:528.109920px;}
.y25a{bottom:529.004880px;}
.y71d{bottom:529.154640px;}
.y2a1{bottom:529.519680px;}
.y460{bottom:529.534800px;}
.y1b7{bottom:529.844400px;}
.y3d7{bottom:529.920000px;}
.yf0{bottom:532.494000px;}
.y186{bottom:532.544400px;}
.y595{bottom:532.564560px;}
.y4f8{bottom:532.569600px;}
.y1c1{bottom:532.594800px;}
.y1a1{bottom:532.599840px;}
.y27c{bottom:532.614960px;}
.y68a{bottom:532.620000px;}
.y4a1{bottom:535.457520px;}
.yae{bottom:535.574880px;}
.y1f2{bottom:536.354640px;}
.y2b2{bottom:536.374080px;}
.y667{bottom:537.019200px;}
.y1d5{bottom:537.428880px;}
.ya{bottom:538.864499px;}
.y4d5{bottom:540.032400px;}
.y2f0{bottom:540.159840px;}
.y117{bottom:541.514160px;}
.y3c6{bottom:541.594800px;}
.y2cc{bottom:543.024720px;}
.y43d{bottom:543.738240px;}
.y2d{bottom:543.948660px;}
.y78{bottom:544.579920px;}
.y5e4{bottom:545.361120px;}
.ycf{bottom:546.004080px;}
.y216{bottom:546.009120px;}
.y141{bottom:546.019200px;}
.y47c{bottom:546.064560px;}
.y15f{bottom:546.074640px;}
.y681{bottom:546.104880px;}
.y608{bottom:546.109920px;}
.y3b6{bottom:546.120000px;}
.y37e{bottom:548.249760px;}
.y632{bottom:548.254800px;}
.y518{bottom:549.114480px;}
.y5bf{bottom:549.139680px;}
.y348{bottom:550.554480px;}
.y413{bottom:550.564560px;}
.y56c{bottom:550.579680px;}
.y42d{bottom:550.584720px;}
.y307{bottom:550.589760px;}
.y532{bottom:550.594800px;}
.y3f5{bottom:550.609920px;}
.y235{bottom:550.614960px;}
.y551{bottom:550.975680px;}
.y259{bottom:551.509920px;}
.y71c{bottom:551.659680px;}
.y4a0{bottom:552.011040px;}
.y2a0{bottom:552.024720px;}
.y45f{bottom:552.039840px;}
.y1b6{bottom:552.349440px;}
.yef{bottom:554.999040px;}
.y185{bottom:555.049440px;}
.y594{bottom:555.069600px;}
.y4f7{bottom:555.074640px;}
.y6c0{bottom:555.079680px;}
.y1c0{bottom:555.099840px;}
.y1a0{bottom:555.104880px;}
.y6d0{bottom:555.109920px;}
.y6fc{bottom:555.114960px;}
.y27b{bottom:555.120000px;}
.y95{bottom:556.456320px;}
.y4d4{bottom:556.585920px;}
.y9{bottom:556.864499px;}
.yad{bottom:558.079920px;}
.y1f1{bottom:558.859680px;}
.y2b1{bottom:558.879120px;}
.y666{bottom:559.524240px;}
.y1d4{bottom:559.933920px;}
.y2ef{bottom:562.664880px;}
.y116{bottom:564.019200px;}
.y3c5{bottom:564.099840px;}
.y2cb{bottom:565.529760px;}
.y43c{bottom:566.243280px;}
.y5e3{bottom:567.866160px;}
.yce{bottom:568.509120px;}
.y215{bottom:568.514160px;}
.y140{bottom:568.524240px;}
.y49f{bottom:568.564560px;}
.y47b{bottom:568.569600px;}
.y15e{bottom:568.579680px;}
.y680{bottom:568.609920px;}
.y607{bottom:568.614960px;}
.y3b5{bottom:570.420000px;}
.y37d{bottom:570.754800px;}
.y631{bottom:570.759840px;}
.y517{bottom:571.619520px;}
.y5be{bottom:571.644720px;}
.y2c{bottom:572.940000px;}
.y347{bottom:573.059520px;}
.y412{bottom:573.069600px;}
.y56b{bottom:573.084720px;}
.y42c{bottom:573.089760px;}
.y306{bottom:573.094800px;}
.y531{bottom:573.099840px;}
.y3f4{bottom:573.114960px;}
.y234{bottom:573.120000px;}
.y4d3{bottom:573.139440px;}
.y258{bottom:574.014960px;}
.y71b{bottom:574.164720px;}
.y29f{bottom:574.529760px;}
.y45e{bottom:574.544880px;}
.y1b5{bottom:574.854480px;}
.y77{bottom:576.805680px;}
.yee{bottom:577.504080px;}
.y184{bottom:577.554480px;}
.y593{bottom:577.574640px;}
.y4f6{bottom:577.579680px;}
.y6bf{bottom:577.584720px;}
.y1bf{bottom:577.604880px;}
.y19f{bottom:577.609920px;}
.y6cf{bottom:577.614960px;}
.y6b6{bottom:577.620000px;}
.y27a{bottom:577.805760px;}
.y550{bottom:577.980000px;}
.y94{bottom:578.961360px;}
.yac{bottom:580.584960px;}
.y1f0{bottom:581.364720px;}
.y2b0{bottom:581.384160px;}
.y51{bottom:581.936400px;}
.y665{bottom:582.029280px;}
.y1d3{bottom:582.438960px;}
.y49e{bottom:584.938800px;}
.y2ee{bottom:585.169920px;}
.y115{bottom:586.524240px;}
.y3c4{bottom:586.604880px;}
.y2ca{bottom:588.034800px;}
.y43b{bottom:588.748320px;}
.y4d2{bottom:589.513680px;}
.y5e2{bottom:590.371200px;}
.ycd{bottom:591.014160px;}
.y214{bottom:591.019200px;}
.y13f{bottom:591.029280px;}
.y47a{bottom:591.074640px;}
.y15d{bottom:591.084720px;}
.y67f{bottom:591.114960px;}
.y606{bottom:591.120000px;}
.y37c{bottom:593.259840px;}
.y630{bottom:593.264880px;}
.y516{bottom:594.124560px;}
.y5bd{bottom:594.149760px;}
.y346{bottom:595.564560px;}
.y411{bottom:595.574640px;}
.y56a{bottom:595.589760px;}
.y42b{bottom:595.594800px;}
.y305{bottom:595.599840px;}
.y530{bottom:595.604880px;}
.y233{bottom:595.609920px;}
.y3f3{bottom:595.620000px;}
.y36b{bottom:596.160000px;}
.y257{bottom:596.520000px;}
.y71a{bottom:596.669760px;}
.y29e{bottom:597.034800px;}
.y45d{bottom:597.049920px;}
.y1b4{bottom:597.359520px;}
.yed{bottom:600.009120px;}
.y183{bottom:600.059520px;}
.y592{bottom:600.079680px;}
.y4f5{bottom:600.084720px;}
.y6be{bottom:600.089760px;}
.y6b5{bottom:600.104880px;}
.y1be{bottom:600.109920px;}
.y19e{bottom:600.114960px;}
.y6ce{bottom:600.120000px;}
.y279{bottom:600.304320px;}
.y49d{bottom:601.492320px;}
.y50{bottom:601.560000px;}
.y54f{bottom:603.089280px;}
.y1ef{bottom:603.869760px;}
.y2af{bottom:603.889200px;}
.y664{bottom:604.534320px;}
.y1d2{bottom:604.944000px;}
.y2b{bottom:604.980000px;}
.y4d1{bottom:606.067200px;}
.y2ed{bottom:607.674960px;}
.y114{bottom:609.029280px;}
.y76{bottom:609.031440px;}
.y3c3{bottom:609.109920px;}
.y2c9{bottom:610.539840px;}
.y93{bottom:611.187120px;}
.y43a{bottom:611.253360px;}
.yab{bottom:612.810720px;}
.y5e1{bottom:612.876240px;}
.ycc{bottom:613.519200px;}
.y213{bottom:613.524240px;}
.y13e{bottom:613.534320px;}
.y479{bottom:613.579680px;}
.y15c{bottom:613.589760px;}
.y605{bottom:613.620000px;}
.y700{bottom:613.701360px;}
.y37b{bottom:615.764880px;}
.y62f{bottom:615.769920px;}
.y256{bottom:616.140000px;}
.y515{bottom:616.629600px;}
.y5bc{bottom:616.654800px;}
.y49c{bottom:618.045840px;}
.y36a{bottom:618.054480px;}
.y345{bottom:618.069600px;}
.y410{bottom:618.079680px;}
.y569{bottom:618.094800px;}
.y42a{bottom:618.099840px;}
.y304{bottom:618.104880px;}
.y52f{bottom:618.109920px;}
.y232{bottom:618.114960px;}
.y719{bottom:619.174800px;}
.y29d{bottom:619.539840px;}
.y45c{bottom:619.554960px;}
.y1b3{bottom:619.864560px;}
.y3f2{bottom:619.920000px;}
.y4f{bottom:620.957520px;}
.yec{bottom:622.514160px;}
.y182{bottom:622.564560px;}
.y591{bottom:622.584720px;}
.y4f4{bottom:622.589760px;}
.y6bd{bottom:622.594800px;}
.y6b4{bottom:622.609920px;}
.y1bd{bottom:622.614960px;}
.y19d{bottom:622.620000px;}
.y4d0{bottom:622.620720px;}
.y278{bottom:622.802880px;}
.y54e{bottom:625.594320px;}
.y1ee{bottom:626.374800px;}
.y2ae{bottom:626.394240px;}
.y663{bottom:627.039360px;}
.y1d1{bottom:627.449040px;}
.y2ec{bottom:630.180000px;}
.y113{bottom:631.534320px;}
.y3c2{bottom:631.614960px;}
.y2c8{bottom:633.044880px;}
.y439{bottom:633.758400px;}
.y49b{bottom:634.420080px;}
.yaa{bottom:635.315760px;}
.y5e0{bottom:635.381280px;}
.ycb{bottom:636.024240px;}
.y212{bottom:636.029280px;}
.y13d{bottom:636.039360px;}
.y478{bottom:636.084720px;}
.y15b{bottom:636.094800px;}
.y604{bottom:636.120000px;}
.y37a{bottom:638.269920px;}
.y62e{bottom:638.274960px;}
.y4cf{bottom:638.994960px;}
.y514{bottom:639.134640px;}
.y5bb{bottom:639.159840px;}
.y4e{bottom:640.398960px;}
.y369{bottom:640.559520px;}
.y344{bottom:640.574640px;}
.y40f{bottom:640.584720px;}
.y568{bottom:640.599840px;}
.y429{bottom:640.604880px;}
.y303{bottom:640.609920px;}
.y52e{bottom:640.614960px;}
.y231{bottom:640.620000px;}
.y75{bottom:641.257200px;}
.y718{bottom:641.679840px;}
.y29c{bottom:642.044880px;}
.y45b{bottom:642.060000px;}
.y255{bottom:642.240000px;}
.y1b2{bottom:642.369600px;}
.y92{bottom:643.595040px;}
.y19c{bottom:644.970960px;}
.yeb{bottom:645.019200px;}
.y181{bottom:645.069600px;}
.y590{bottom:645.089760px;}
.y4f3{bottom:645.094800px;}
.y6bc{bottom:645.099840px;}
.y6d3{bottom:645.109920px;}
.y6b3{bottom:645.114960px;}
.y689{bottom:645.120000px;}
.y277{bottom:645.301440px;}
.y8{bottom:645.510000px;}
.y54d{bottom:648.099360px;}
.y2a{bottom:648.360000px;}
.y1ed{bottom:648.879840px;}
.y2ad{bottom:648.899280px;}
.y662{bottom:649.544400px;}
.y1d0{bottom:649.954080px;}
.y49a{bottom:650.973600px;}
.y112{bottom:654.039360px;}
.y3c1{bottom:654.120000px;}
.y2eb{bottom:654.480000px;}
.y4ce{bottom:655.548480px;}
.y2c7{bottom:655.549920px;}
.y438{bottom:656.263440px;}
.y5df{bottom:657.886320px;}
.yca{bottom:658.529280px;}
.y211{bottom:658.534320px;}
.y13c{bottom:658.544400px;}
.y477{bottom:658.589760px;}
.y15a{bottom:658.599840px;}
.y603{bottom:658.620000px;}
.y4d{bottom:660.022560px;}
.y379{bottom:660.774960px;}
.y62d{bottom:660.780000px;}
.y19b{bottom:661.345200px;}
.y513{bottom:661.639680px;}
.y5ba{bottom:661.664880px;}
.y254{bottom:661.860000px;}
.y368{bottom:663.064560px;}
.y343{bottom:663.079680px;}
.y40e{bottom:663.089760px;}
.y567{bottom:663.104880px;}
.y428{bottom:663.109920px;}
.y230{bottom:663.114960px;}
.y52d{bottom:663.120000px;}
.y717{bottom:664.184880px;}
.y29b{bottom:664.549920px;}
.y1b1{bottom:664.874640px;}
.y45a{bottom:666.360000px;}
.y7{bottom:666.771000px;}
.yea{bottom:667.524240px;}
.y499{bottom:667.527120px;}
.ya9{bottom:667.541520px;}
.y180{bottom:667.574640px;}
.y58f{bottom:667.594800px;}
.y4f2{bottom:667.599840px;}
.y6bb{bottom:667.604880px;}
.y6fb{bottom:667.609920px;}
.y6cd{bottom:667.614960px;}
.y688{bottom:667.620000px;}
.y276{bottom:667.716480px;}
.y54c{bottom:670.604400px;}
.y1ec{bottom:671.384880px;}
.y2ac{bottom:671.404320px;}
.y661{bottom:672.049440px;}
.y4cd{bottom:672.102000px;}
.y1cf{bottom:672.459120px;}
.y74{bottom:673.482960px;}
.y91{bottom:675.820800px;}
.y111{bottom:676.544400px;}
.y19a{bottom:677.898720px;}
.y2c6{bottom:678.054960px;}
.y3c0{bottom:678.420000px;}
.y437{bottom:678.768480px;}
.y4c{bottom:679.281840px;}
.y2ea{bottom:679.629600px;}
.y62c{bottom:679.680000px;}
.y5de{bottom:680.391360px;}
.yc9{bottom:681.034320px;}
.y210{bottom:681.039360px;}
.y13b{bottom:681.049440px;}
.y476{bottom:681.094800px;}
.y159{bottom:681.104880px;}
.y67e{bottom:681.114960px;}
.y602{bottom:681.120000px;}
.y378{bottom:683.280000px;}
.y498{bottom:683.901360px;}
.y512{bottom:684.144720px;}
.y5b9{bottom:684.169920px;}
.y52c{bottom:685.452240px;}
.y367{bottom:685.569600px;}
.y342{bottom:685.584720px;}
.y40d{bottom:685.594800px;}
.y566{bottom:685.609920px;}
.y427{bottom:685.614960px;}
.y22f{bottom:685.620000px;}
.y716{bottom:686.689920px;}
.y29{bottom:687.049920px;}
.y29a{bottom:687.054960px;}
.y1b0{bottom:687.379680px;}
.y253{bottom:687.954960px;}
.y4cc{bottom:688.476240px;}
.ye9{bottom:690.029280px;}
.y275{bottom:690.039360px;}
.y17f{bottom:690.079680px;}
.y6e9{bottom:690.089760px;}
.y58e{bottom:690.099840px;}
.y4f1{bottom:690.104880px;}
.y6ba{bottom:690.109920px;}
.y6fa{bottom:690.114960px;}
.y687{bottom:690.120000px;}
.y459{bottom:691.529760px;}
.y54b{bottom:693.109440px;}
.y1eb{bottom:693.889920px;}
.y2ab{bottom:693.909360px;}
.y199{bottom:694.452240px;}
.y660{bottom:694.554480px;}
.y1ce{bottom:694.964160px;}
.y110{bottom:699.049440px;}
.ya8{bottom:699.767280px;}
.y497{bottom:700.454880px;}
.y2c5{bottom:700.560000px;}
.y436{bottom:701.273520px;}
.y4b{bottom:701.786880px;}
.y52b{bottom:701.826480px;}
.y2e9{bottom:702.134640px;}
.y5dd{bottom:702.896400px;}
.y377{bottom:703.080000px;}
.yc8{bottom:703.539360px;}
.y20f{bottom:703.544400px;}
.y13a{bottom:703.554480px;}
.y475{bottom:703.599840px;}
.y158{bottom:703.609920px;}
.y601{bottom:703.620000px;}
.y4cb{bottom:705.029760px;}
.y73{bottom:705.708720px;}
.y511{bottom:706.649760px;}
.y5b8{bottom:706.674960px;}
.y90{bottom:708.046560px;}
.y366{bottom:708.074640px;}
.y341{bottom:708.089760px;}
.y22e{bottom:708.094800px;}
.y40c{bottom:708.099840px;}
.y565{bottom:708.114960px;}
.y426{bottom:708.120000px;}
.y715{bottom:709.194960px;}
.y327{bottom:709.549920px;}
.y28{bottom:709.554960px;}
.y299{bottom:709.560000px;}
.y1af{bottom:709.884720px;}
.y302{bottom:709.920000px;}
.y252{bottom:710.460000px;}
.y198{bottom:710.826480px;}
.ye8{bottom:712.534320px;}
.y274{bottom:712.544400px;}
.y6f9{bottom:712.579680px;}
.y17e{bottom:712.584720px;}
.y6e8{bottom:712.594800px;}
.y6c6{bottom:712.599840px;}
.y58d{bottom:712.604880px;}
.y4f0{bottom:712.609920px;}
.y686{bottom:712.614960px;}
.y6b2{bottom:712.620000px;}
.y2aa{bottom:712.804320px;}
.y458{bottom:714.034800px;}
.y54a{bottom:715.614480px;}
.y1ea{bottom:716.394960px;}
.y496{bottom:717.008400px;}
.y65f{bottom:717.059520px;}
.y1cd{bottom:717.469200px;}
.y52a{bottom:718.380000px;}
.y435{bottom:720.350640px;}
.y10f{bottom:721.554480px;}
.y4ca{bottom:721.583280px;}
.ya7{bottom:722.272320px;}
.y4a{bottom:724.291920px;}
.y2e8{bottom:724.639680px;}
.y2c4{bottom:724.855680px;}
.y5dc{bottom:725.401440px;}
.yc7{bottom:726.044400px;}
.y20e{bottom:726.049440px;}
.y139{bottom:726.059520px;}
.y474{bottom:726.104880px;}
.y157{bottom:726.114960px;}
.y600{bottom:726.120000px;}
.y6{bottom:726.298500px;}
.y376{bottom:726.300000px;}
.y197{bottom:727.380000px;}
.y510{bottom:729.154800px;}
.y5b7{bottom:729.180000px;}
.y251{bottom:730.080000px;}
.y365{bottom:730.579680px;}
.y340{bottom:730.594800px;}
.y22d{bottom:730.599840px;}
.y40b{bottom:730.604880px;}
.y564{bottom:730.620000px;}
.y714{bottom:731.700000px;}
.y298{bottom:731.917440px;}
.y326{bottom:732.054960px;}
.y27{bottom:732.060000px;}
.y1ae{bottom:732.389760px;}
.y425{bottom:732.420000px;}
.y495{bottom:733.382640px;}
.ye7{bottom:735.039360px;}
.y273{bottom:735.049440px;}
.y6f8{bottom:735.084720px;}
.y17d{bottom:735.089760px;}
.y6e7{bottom:735.099840px;}
.y6c5{bottom:735.104880px;}
.y58c{bottom:735.109920px;}
.y4ef{bottom:735.114960px;}
.y685{bottom:735.120000px;}
.y457{bottom:736.539840px;}
.y4c9{bottom:737.957520px;}
.y72{bottom:738.116640px;}
.y549{bottom:738.119520px;}
.y1e9{bottom:738.900000px;}
.y65e{bottom:739.564560px;}
.y8f{bottom:740.272320px;}
.y10e{bottom:744.059520px;}
.y196{bottom:744.079680px;}
.y5db{bottom:744.296400px;}
.ya6{bottom:744.777360px;}
.y2e7{bottom:747.144720px;}
.y297{bottom:748.470960px;}
.yc6{bottom:748.549440px;}
.y20d{bottom:748.554480px;}
.y138{bottom:748.564560px;}
.y473{bottom:748.609920px;}
.y67d{bottom:748.614960px;}
.y156{bottom:748.620000px;}
.y375{bottom:749.520000px;}
.y1cc{bottom:749.694960px;}
.y494{bottom:749.936160px;}
.y5b6{bottom:751.351680px;}
.y50f{bottom:751.659840px;}
.y2c3{bottom:751.860000px;}
.y3{bottom:752.599495px;}
.y364{bottom:753.084720px;}
.y33f{bottom:753.099840px;}
.y22c{bottom:753.104880px;}
.y40a{bottom:753.109920px;}
.y713{bottom:754.200000px;}
.y4c8{bottom:754.511040px;}
.y325{bottom:754.560000px;}
.y1ad{bottom:754.894800px;}
.y563{bottom:754.920000px;}
.y26{bottom:756.000000px;}
.y250{bottom:756.164880px;}
.ye6{bottom:757.544400px;}
.y272{bottom:757.554480px;}
.y6e1{bottom:757.579680px;}
.y6f7{bottom:757.589760px;}
.y17c{bottom:757.594800px;}
.y6e5{bottom:757.604880px;}
.y6c4{bottom:757.609920px;}
.y58b{bottom:757.614960px;}
.y4ee{bottom:757.620000px;}
.y456{bottom:759.044880px;}
.y548{bottom:760.624560px;}
.y65d{bottom:762.069600px;}
.y296{bottom:764.845200px;}
.y49{bottom:765.874080px;}
.y1e8{bottom:766.080000px;}
.y493{bottom:766.489680px;}
.y10d{bottom:766.564560px;}
.y195{bottom:766.584720px;}
.y5b5{bottom:767.905200px;}
.y2e6{bottom:769.649760px;}
.y71{bottom:770.342400px;}
.yc5{bottom:771.054480px;}
.y20c{bottom:771.059520px;}
.y4c7{bottom:771.064560px;}
.y137{bottom:771.069600px;}
.y472{bottom:771.114960px;}
.y5ff{bottom:771.120000px;}
.y8e{bottom:772.498080px;}
.y374{bottom:772.740000px;}
.y155{bottom:772.915680px;}
.y50e{bottom:774.164880px;}
.y363{bottom:775.589760px;}
.y33e{bottom:775.604880px;}
.y22b{bottom:775.609920px;}
.y409{bottom:775.614960px;}
.y324{bottom:776.898720px;}
.ya5{bottom:777.003120px;}
.y2c2{bottom:777.004560px;}
.y1ac{bottom:777.399840px;}
.y24f{bottom:778.669920px;}
.ye5{bottom:780.049440px;}
.y271{bottom:780.059520px;}
.y6e0{bottom:780.084720px;}
.y6a1{bottom:780.089760px;}
.y6f6{bottom:780.094800px;}
.y17b{bottom:780.099840px;}
.y6e4{bottom:780.109920px;}
.y4ed{bottom:780.114960px;}
.y58a{bottom:780.120000px;}
.y295{bottom:781.398720px;}
.y455{bottom:781.549920px;}
.y492{bottom:782.863920px;}
.y547{bottom:783.129600px;}
.y25{bottom:783.360000px;}
.y5b4{bottom:784.458720px;}
.y65c{bottom:784.574640px;}
.y712{bottom:786.583980px;}
.y4c6{bottom:787.438800px;}
.y10c{bottom:789.069600px;}
.y194{bottom:789.089760px;}
.y2e5{bottom:792.154800px;}
.y323{bottom:793.452240px;}
.yc4{bottom:793.559520px;}
.y20b{bottom:793.564560px;}
.y136{bottom:793.574640px;}
.y5fe{bottom:793.594800px;}
.y471{bottom:793.620000px;}
.y48{bottom:794.307600px;}
.y373{bottom:795.960000px;}
.y50d{bottom:796.669920px;}
.y1e7{bottom:797.940000px;}
.y294{bottom:797.952240px;}
.y362{bottom:798.094800px;}
.y33d{bottom:798.109920px;}
.y22a{bottom:798.114960px;}
.y408{bottom:798.120000px;}
.y491{bottom:799.417440px;}
.ya4{bottom:799.508160px;}
.y2c1{bottom:799.509600px;}
.y1ab{bottom:799.904880px;}
.y154{bottom:799.920000px;}
.y5b3{bottom:800.832960px;}
.y24e{bottom:801.174960px;}
.y589{bottom:802.508400px;}
.ye4{bottom:802.554480px;}
.y270{bottom:802.564560px;}
.y70{bottom:802.568160px;}
.y6df{bottom:802.589760px;}
.y6a0{bottom:802.594800px;}
.y6f5{bottom:802.599840px;}
.y17a{bottom:802.604880px;}
.y6b9{bottom:802.609920px;}
.y6e3{bottom:802.614960px;}
.y4ec{bottom:802.620000px;}
.y4c5{bottom:803.992320px;}
.y454{bottom:804.054960px;}
.y8d{bottom:804.723840px;}
.y546{bottom:805.634640px;}
.y711{bottom:806.024700px;}
.y65b{bottom:807.079680px;}
.y322{bottom:809.826480px;}
.y10b{bottom:811.574640px;}
.y193{bottom:811.594800px;}
.y47{bottom:813.202560px;}
.y293{bottom:814.326480px;}
.y2e4{bottom:814.659840px;}
.y24{bottom:815.580000px;}
.y490{bottom:815.970960px;}
.yc3{bottom:816.064560px;}
.y20a{bottom:816.069600px;}
.y135{bottom:816.079680px;}
.y5fd{bottom:816.099840px;}
.y67c{bottom:816.109920px;}
.y5b2{bottom:817.386480px;}
.y470{bottom:817.915680px;}
.y588{bottom:818.882640px;}
.y50c{bottom:819.174960px;}
.y372{bottom:819.180000px;}
.y4c4{bottom:820.545840px;}
.y361{bottom:820.599840px;}
.y33c{bottom:820.614960px;}
.y229{bottom:820.620000px;}
.ya3{bottom:822.013200px;}
.y2c0{bottom:822.014640px;}
.y1aa{bottom:822.409920px;}
.y407{bottom:822.420000px;}
.y24d{bottom:823.680000px;}
.ye3{bottom:825.059520px;}
.y26f{bottom:825.069600px;}
.y6de{bottom:825.094800px;}
.y69f{bottom:825.099840px;}
.y6f4{bottom:825.104880px;}
.y179{bottom:825.109920px;}
.y4eb{bottom:825.114960px;}
.y684{bottom:825.120000px;}
.y710{bottom:825.465420px;}
.y321{bottom:826.380000px;}
.y453{bottom:826.560000px;}
.y545{bottom:828.139680px;}
.y65a{bottom:829.584720px;}
.y1e6{bottom:829.800000px;}
.y292{bottom:830.880000px;}
.y48f{bottom:832.345200px;}
.y5b1{bottom:833.940000px;}
.y10a{bottom:834.079680px;}
.y192{bottom:834.099840px;}
.y6f{bottom:834.793920px;}
.y587{bottom:835.436160px;}
.y4c3{bottom:836.920080px;}
.y8c{bottom:837.131760px;}
.y2e3{bottom:837.164880px;}
.yc2{bottom:838.569600px;}
.y209{bottom:838.574640px;}
.y134{bottom:838.584720px;}
.y5fc{bottom:838.604880px;}
.y67b{bottom:838.614960px;}
.y50b{bottom:841.680000px;}
.y371{bottom:842.580000px;}
.y320{bottom:843.099840px;}
.y360{bottom:843.104880px;}
.y33b{bottom:843.120000px;}
.y24c{bottom:843.300000px;}
.y23{bottom:844.218000px;}
.y2bf{bottom:844.519680px;}
.y228{bottom:844.920000px;}
.y70f{bottom:845.087040px;}
.y46{bottom:845.246160px;}
.ye2{bottom:847.564560px;}
.y26e{bottom:847.574640px;}
.y291{bottom:847.599840px;}
.y69e{bottom:847.604880px;}
.y6f3{bottom:847.609920px;}
.y178{bottom:847.614960px;}
.y4ea{bottom:847.620000px;}
.y452{bottom:848.898720px;}
.y544{bottom:850.644720px;}
.y5b0{bottom:850.659840px;}
.y586{bottom:851.989680px;}
.y659{bottom:852.089760px;}
.y4c2{bottom:853.473600px;}
.ya2{bottom:854.238960px;}
.y109{bottom:856.584720px;}
.y191{bottom:856.604880px;}
.y6e{bottom:857.298960px;}
.y2e2{bottom:859.669920px;}
.yc1{bottom:861.074640px;}
.y208{bottom:861.079680px;}
.y133{bottom:861.089760px;}
.y5fb{bottom:861.109920px;}
.y67a{bottom:861.120000px;}
.y1e5{bottom:861.660000px;}
.y50a{bottom:864.360000px;}
.y70e{bottom:864.527760px;}
.y451{bottom:865.452240px;}
.y31f{bottom:865.604880px;}
.y35f{bottom:865.609920px;}
.y3b4{bottom:865.620000px;}
.y370{bottom:865.800000px;}
.y2be{bottom:867.024720px;}
.y33a{bottom:867.420000px;}
.y585{bottom:868.363920px;}
.y8b{bottom:869.357520px;}
.y24b{bottom:869.394960px;}
.y4c1{bottom:870.027120px;}
.ye1{bottom:870.069600px;}
.y26d{bottom:870.079680px;}
.y177{bottom:870.084720px;}
.y6da{bottom:870.099840px;}
.y290{bottom:870.104880px;}
.y69d{bottom:870.109920px;}
.y6f2{bottom:870.114960px;}
.y651{bottom:870.120000px;}
.y543{bottom:873.149760px;}
.y5af{bottom:873.164880px;}
.y45{bottom:873.679680px;}
.y658{bottom:874.594800px;}
.y108{bottom:879.089760px;}
.y190{bottom:879.109920px;}
.y2{bottom:879.369000px;}
.y450{bottom:881.826480px;}
.y2e1{bottom:882.174960px;}
.yc0{bottom:883.579680px;}
.y207{bottom:883.584720px;}
.y132{bottom:883.594800px;}
.y5fa{bottom:883.614960px;}
.y679{bottom:883.620000px;}
.y70d{bottom:883.968480px;}
.y584{bottom:884.917440px;}
.y509{bottom:885.415680px;}
.y4c0{bottom:886.401360px;}
.ya1{bottom:886.646880px;}
.y3b3{bottom:888.084720px;}
.y31e{bottom:888.109920px;}
.y35e{bottom:888.114960px;}
.y6d{bottom:889.524720px;}
.y2bd{bottom:889.529760px;}
.y24a{bottom:891.900000px;}
.y44{bottom:892.574640px;}
.y339{bottom:892.579680px;}
.y26c{bottom:892.584720px;}
.y176{bottom:892.589760px;}
.y650{bottom:892.604880px;}
.y28f{bottom:892.609920px;}
.y69c{bottom:892.614960px;}
.y6b1{bottom:892.620000px;}
.y1e4{bottom:893.520000px;}
.y542{bottom:895.654800px;}
.y5ae{bottom:895.669920px;}
.y657{bottom:897.099840px;}
.y44f{bottom:898.380000px;}
.y583{bottom:901.470960px;}
.y8a{bottom:901.583280px;}
.y107{bottom:901.594800px;}
.y18f{bottom:901.614960px;}
.y4bf{bottom:902.954880px;}
.y70c{bottom:903.590100px;}
.y2e0{bottom:904.680000px;}
.ybf{bottom:906.084720px;}
.y206{bottom:906.089760px;}
.y131{bottom:906.099840px;}
.y5f9{bottom:906.120000px;}
.y22{bottom:906.480000px;}
.y3b2{bottom:910.589760px;}
.y31d{bottom:910.614960px;}
.y35d{bottom:910.620000px;}
.y249{bottom:911.700000px;}
.y6c{bottom:912.029760px;}
.y2bc{bottom:912.034800px;}
.y508{bottom:912.420000px;}
.y43{bottom:915.079680px;}
.y338{bottom:915.084720px;}
.y26b{bottom:915.089760px;}
.y175{bottom:915.094800px;}
.y6b0{bottom:915.099840px;}
.y64f{bottom:915.109920px;}
.y28e{bottom:915.114960px;}
.y69b{bottom:915.120000px;}
.y582{bottom:917.845200px;}
.y541{bottom:918.159840px;}
.y5ad{bottom:918.174960px;}
.ya0{bottom:918.872640px;}
.y4be{bottom:919.508400px;}
.y656{bottom:919.604880px;}
.y70b{bottom:923.030820px;}
.y106{bottom:924.099840px;}
.y18e{bottom:924.120000px;}
.y1e3{bottom:925.380000px;}
.y2df{bottom:926.826480px;}
.ybe{bottom:928.589760px;}
.y205{bottom:928.594800px;}
.y130{bottom:928.604880px;}
.y678{bottom:928.614960px;}
.y5f8{bottom:930.415680px;}
.y3b1{bottom:933.094800px;}
.y31c{bottom:933.120000px;}
.y89{bottom:933.809040px;}
.y581{bottom:934.398720px;}
.y2bb{bottom:934.539840px;}
.y35c{bottom:934.920000px;}
.y4bd{bottom:935.882640px;}
.y42{bottom:937.584720px;}
.y337{bottom:937.589760px;}
.y26a{bottom:937.594800px;}
.y174{bottom:937.599840px;}
.y6af{bottom:937.604880px;}
.y6c3{bottom:937.609920px;}
.y64e{bottom:937.614960px;}
.y28d{bottom:937.620000px;}
.y248{bottom:937.794960px;}
.y540{bottom:940.664880px;}
.y5ac{bottom:940.680000px;}
.y655{bottom:942.109920px;}
.y70a{bottom:942.471540px;}
.y2de{bottom:943.380000px;}
.y6b{bottom:944.255520px;}
.y105{bottom:946.604880px;}
.y18d{bottom:948.415680px;}
.y580{bottom:950.952240px;}
.ybd{bottom:951.094800px;}
.y9f{bottom:951.098400px;}
.y204{bottom:951.099840px;}
.y12f{bottom:951.109920px;}
.y677{bottom:951.120000px;}
.y4bc{bottom:952.436160px;}
.y31b{bottom:955.452240px;}
.y3b0{bottom:955.599840px;}
.y2ba{bottom:957.044880px;}
.y1e2{bottom:957.240000px;}
.y5f7{bottom:957.420000px;}
.y41{bottom:960.089760px;}
.y336{bottom:960.094800px;}
.y269{bottom:960.099840px;}
.y173{bottom:960.104880px;}
.y6ae{bottom:960.109920px;}
.y6c2{bottom:960.114960px;}
.y64d{bottom:960.120000px;}
.y247{bottom:960.300000px;}
.y28c{bottom:961.020000px;}
.y709{bottom:962.093160px;}
.y5ab{bottom:962.838720px;}
.y53f{bottom:963.169920px;}
.y654{bottom:964.614960px;}
.y88{bottom:966.034800px;}
.y1{bottom:966.726000px;}
.y57f{bottom:967.326480px;}
.y4bb{bottom:968.989680px;}
.y104{bottom:969.109920px;}
.y31a{bottom:971.826480px;}
.ybc{bottom:973.599840px;}
.y203{bottom:973.604880px;}
.y12e{bottom:973.614960px;}
.y676{bottom:973.620000px;}
.y18c{bottom:975.420000px;}
.y6a{bottom:976.663440px;}
.y3af{bottom:978.104880px;}
.y5aa{bottom:979.392240px;}
.y2b9{bottom:979.549920px;}
.y245{bottom:979.920000px;}
.y708{bottom:981.533880px;}
.y40{bottom:982.594800px;}
.y335{bottom:982.599840px;}
.y268{bottom:982.604880px;}
.y172{bottom:982.609920px;}
.y6ad{bottom:982.614960px;}
.y69a{bottom:982.620000px;}
.y9e{bottom:983.324160px;}
.y57e{bottom:983.880000px;}
.y4ba{bottom:985.363920px;}
.y53e{bottom:985.674960px;}
.y21{bottom:985.680000px;}
.y653{bottom:987.120000px;}
.y319{bottom:988.380000px;}
.y1e1{bottom:989.100000px;}
.y103{bottom:991.614960px;}
.y5a9{bottom:995.945760px;}
.ybb{bottom:996.104880px;}
.y202{bottom:996.109920px;}
.y12d{bottom:996.114960px;}
.y87{bottom:998.260560px;}
.y3ae{bottom:1000.609920px;}
.y18b{bottom:1000.620000px;}
.y707{bottom:1000.974600px;}
.y4b9{bottom:1001.917440px;}
.y2b8{bottom:1002.054960px;}
.y3f{bottom:1005.099840px;}
.y334{bottom:1005.104880px;}
.y267{bottom:1005.109920px;}
.y171{bottom:1005.114960px;}
.y699{bottom:1005.120000px;}
.y244{bottom:1006.014960px;}
.y53d{bottom:1008.180000px;}
.y69{bottom:1008.889200px;}
.y652{bottom:1011.415680px;}
.y5a8{bottom:1012.320000px;}
.y102{bottom:1014.120000px;}
.y1dd{bottom:1015.020000px;}
.y9d{bottom:1015.549920px;}
.y4b8{bottom:1018.470960px;}
.yba{bottom:1018.609920px;}
.y201{bottom:1018.614960px;}
.y12c{bottom:1018.620000px;}
.y706{bottom:1020.596220px;}
.y1e0{bottom:1022.940000px;}
.y3ad{bottom:1023.114960px;}
.y2b7{bottom:1024.560000px;}
.y18a{bottom:1025.814240px;}
.y3e{bottom:1027.604880px;}
.y333{bottom:1027.609920px;}
.y266{bottom:1027.614960px;}
.y698{bottom:1027.620000px;}
.y243{bottom:1028.520000px;}
.y5a7{bottom:1029.060000px;}
.y53c{bottom:1030.326480px;}
.y86{bottom:1030.668480px;}
.y4b7{bottom:1034.845200px;}
.y9c{bottom:1038.054960px;}
.y101{bottom:1038.420000px;}
.y705{bottom:1040.036940px;}
.y68{bottom:1041.114960px;}
.y200{bottom:1041.120000px;}
.y6ff{bottom:1041.297120px;}
.y12b{bottom:1041.840000px;}
.y1df{bottom:1045.440000px;}
.y3ac{bottom:1045.620000px;}
.y2b6{bottom:1046.880000px;}
.y241{bottom:1048.140000px;}
.y3d{bottom:1050.109920px;}
.y332{bottom:1050.114960px;}
.y265{bottom:1050.120000px;}
.y4b6{bottom:1051.398720px;}
.y189{bottom:1057.317120px;}
.y704{bottom:1059.477660px;}
.y9b{bottom:1060.560000px;}
.y85{bottom:1062.894240px;}
.y67{bottom:1063.620000px;}
.y12a{bottom:1065.415680px;}
.y3ab{bottom:1067.952240px;}
.y3c{bottom:1072.614960px;}
.y2a9{bottom:1072.620000px;}
.y1dc{bottom:1073.340000px;}
.y264{bottom:1073.527920px;}
.y240{bottom:1076.042880px;}
.y703{bottom:1079.099280px;}
.y3aa{bottom:1084.326480px;}
.y9a{bottom:1086.120000px;}
.y66{bottom:1088.820000px;}
.y129{bottom:1092.420000px;}
.y3b{bottom:1095.120000px;}
.y2a8{bottom:1095.660000px;}
.y263{bottom:1096.020000px;}
.y702{bottom:1098.540000px;}
.y3a9{bottom:1100.880000px;}
.y65{bottom:1173.240000px;}
.y701{bottom:1179.360000px;}
.h2e{height:22.500000px;}
.h16{height:30.955078px;}
.h14{height:31.482422px;}
.h7{height:32.130000px;}
.h12{height:38.438437px;}
.h26{height:44.149219px;}
.hb{height:44.187840px;}
.h31{height:45.000000px;}
.h6{height:45.900000px;}
.h1d{height:46.432617px;}
.h28{height:47.988281px;}
.h3{height:48.195000px;}
.h3e{height:48.224531px;}
.h1b{height:48.656250px;}
.h23{height:51.385430px;}
.h18{height:52.260820px;}
.h10{height:53.136000px;}
.h27{height:54.000000px;}
.h2{height:55.080000px;}
.h11{height:56.927812px;}
.hc{height:56.957344px;}
.h20{height:56.977504px;}
.h17{height:56.983264px;}
.h34{height:56.997664px;}
.h21{height:57.017824px;}
.h3d{height:57.037984px;}
.h3a{height:57.078304px;}
.h22{height:57.098464px;}
.h3c{height:57.118624px;}
.h13{height:57.127264px;}
.h1e{height:57.138784px;}
.h3b{height:57.179104px;}
.h1f{height:57.239584px;}
.h24{height:57.369184px;}
.h2c{height:57.421024px;}
.h15{height:57.927656px;}
.h1c{height:58.335238px;}
.h38{height:58.456198px;}
.h25{height:58.718278px;}
.h33{height:59.433750px;}
.h32{height:59.767830px;}
.h36{height:59.929110px;}
.h35{height:61.910156px;}
.h37{height:62.252876px;}
.h2b{height:65.065430px;}
.h2a{height:65.070470px;}
.h39{height:66.168051px;}
.h2f{height:67.500000px;}
.h2d{height:68.002031px;}
.hf{height:70.575120px;}
.hd{height:70.670880px;}
.h29{height:72.265430px;}
.h5{height:78.030000px;}
.h1a{height:83.743242px;}
.h19{height:105.151289px;}
.he{height:106.128000px;}
.h30{height:112.500000px;}
.h4{height:119.055004px;}
.h9{height:131.904000px;}
.ha{height:197.856000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.h3f{height:1263.060000px;}
.w4{width:116.998500px;}
.w9{width:126.900000px;}
.w5{width:147.960000px;}
.w8{width:149.220000px;}
.w7{width:178.921500px;}
.w6{width:390.238500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x14{left:14.040000px;}
.x16{left:18.540000px;}
.x18{left:91.620000px;}
.x1a{left:100.800000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1b{left:109.980000px;}
.x17{left:123.120000px;}
.x19{left:132.300000px;}
.x5{left:148.860000px;}
.xe{left:156.960000px;}
.x6{left:170.100000px;}
.x4{left:203.484001px;}
.x8{left:250.920000px;}
.x7{left:258.480000px;}
.xb{left:273.960000px;}
.xf{left:297.900000px;}
.x10{left:305.640000px;}
.x13{left:328.860000px;}
.xc{left:359.100000px;}
.x3{left:454.959000px;}
.x15{left:478.800000px;}
.xd{left:580.860000px;}
.x1c{left:619.174080px;}
.x1f{left:678.614400px;}
.x9{left:686.513520px;}
.x12{left:694.081440px;}
.x1e{left:699.579360px;}
.x20{left:702.360000px;}
.x11{left:705.242880px;}
.x1d{left:712.247760px;}
@media print{
.v6{vertical-align:-16.000000pt;}
.v2{vertical-align:-8.158720pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.801920pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:24.337920pt;}
.v7{vertical-align:26.897920pt;}
.ls1b{letter-spacing:-2.144000pt;}
.lsca{letter-spacing:-1.943040pt;}
.lsc4{letter-spacing:-1.593600pt;}
.ls19{letter-spacing:-1.543680pt;}
.lsc6{letter-spacing:-1.530880pt;}
.ls82{letter-spacing:-1.221760pt;}
.ls5c{letter-spacing:-1.059840pt;}
.lsf3{letter-spacing:-0.956160pt;}
.ls26{letter-spacing:-0.942080pt;}
.ls32{letter-spacing:-0.883200pt;}
.lsaa{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.765440pt;}
.lsf2{letter-spacing:-0.743680pt;}
.ls10{letter-spacing:-0.647680pt;}
.ls9f{letter-spacing:-0.624000pt;}
.ls6b{letter-spacing:-0.432000pt;}
.ls13{letter-spacing:-0.412160pt;}
.ls11{letter-spacing:-0.353280pt;}
.lse3{letter-spacing:-0.318720pt;}
.ls14{letter-spacing:-0.294400pt;}
.ls85{letter-spacing:-0.265600pt;}
.ls1a{letter-spacing:-0.257280pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls9d{letter-spacing:-0.245760pt;}
.ls15{letter-spacing:-0.235520pt;}
.ls83{letter-spacing:-0.212480pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9e{letter-spacing:-0.184320pt;}
.ls5{letter-spacing:-0.170240pt;}
.lsf{letter-spacing:-0.117760pt;}
.ls52{letter-spacing:-0.106240pt;}
.ls6{letter-spacing:-0.085120pt;}
.ls53{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.lsfa{letter-spacing:0.052992pt;}
.ls84{letter-spacing:0.053120pt;}
.ls57{letter-spacing:0.070656pt;}
.ls59{letter-spacing:0.076544pt;}
.ls9c{letter-spacing:0.076800pt;}
.ls34{letter-spacing:0.096000pt;}
.ls5b{letter-spacing:0.105984pt;}
.ls20{letter-spacing:0.106880pt;}
.ls124{letter-spacing:0.120320pt;}
.ls36{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.135424pt;}
.lsfd{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.170240pt;}
.ls1{letter-spacing:0.192000pt;}
.ls120{letter-spacing:0.197120pt;}
.ls11d{letter-spacing:0.202240pt;}
.lsd5{letter-spacing:0.211968pt;}
.ls4d{letter-spacing:0.212480pt;}
.ls18{letter-spacing:0.214400pt;}
.lsc{letter-spacing:0.217856pt;}
.ls16{letter-spacing:0.231040pt;}
.lsb9{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.235520pt;}
.ls6c{letter-spacing:0.240000pt;}
.ls126{letter-spacing:0.241408pt;}
.ls1e{letter-spacing:0.247296pt;}
.ls114{letter-spacing:0.253184pt;}
.ls129{letter-spacing:0.253440pt;}
.ls3{letter-spacing:0.255360pt;}
.lsa9{letter-spacing:0.256000pt;}
.ls127{letter-spacing:0.258560pt;}
.ls122{letter-spacing:0.259072pt;}
.lsb3{letter-spacing:0.260288pt;}
.ls118{letter-spacing:0.264960pt;}
.lsfb{letter-spacing:0.265600pt;}
.ls58{letter-spacing:0.270848pt;}
.ls97{letter-spacing:0.271360pt;}
.lsde{letter-spacing:0.276224pt;}
.ls128{letter-spacing:0.276480pt;}
.ls63{letter-spacing:0.276736pt;}
.ls121{letter-spacing:0.282624pt;}
.ls11f{letter-spacing:0.284160pt;}
.lsac{letter-spacing:0.288000pt;}
.lsa0{letter-spacing:0.288512pt;}
.lse{letter-spacing:0.294400pt;}
.ls11b{letter-spacing:0.296960pt;}
.ls55{letter-spacing:0.300288pt;}
.lse4{letter-spacing:0.302784pt;}
.ls11a{letter-spacing:0.306176pt;}
.lsa{letter-spacing:0.312064pt;}
.ls2{letter-spacing:0.314944pt;}
.lsff{letter-spacing:0.317952pt;}
.ls86{letter-spacing:0.318720pt;}
.ls4a{letter-spacing:0.323840pt;}
.lsdf{letter-spacing:0.324032pt;}
.ls1f{letter-spacing:0.329728pt;}
.lsf1{letter-spacing:0.334656pt;}
.lsf9{letter-spacing:0.335616pt;}
.ls64{letter-spacing:0.341504pt;}
.ls66{letter-spacing:0.347392pt;}
.ls6a{letter-spacing:0.353280pt;}
.lsd6{letter-spacing:0.359168pt;}
.ls28{letter-spacing:0.365056pt;}
.lse9{letter-spacing:0.366528pt;}
.ls40{letter-spacing:0.370944pt;}
.lsaf{letter-spacing:0.371840pt;}
.lsb{letter-spacing:0.376832pt;}
.lsa7{letter-spacing:0.382720pt;}
.ls43{letter-spacing:0.388608pt;}
.lse6{letter-spacing:0.393088pt;}
.ls65{letter-spacing:0.394496pt;}
.lsd{letter-spacing:0.400384pt;}
.ls30{letter-spacing:0.406272pt;}
.ls68{letter-spacing:0.412160pt;}
.lsab{letter-spacing:0.423936pt;}
.ls1c{letter-spacing:0.427520pt;}
.ls62{letter-spacing:0.429824pt;}
.lsf5{letter-spacing:0.435712pt;}
.ls81{letter-spacing:0.441600pt;}
.ls61{letter-spacing:0.447488pt;}
.ls117{letter-spacing:0.459264pt;}
.lsbe{letter-spacing:0.471040pt;}
.ls5a{letter-spacing:0.476928pt;}
.lsd8{letter-spacing:0.482816pt;}
.lse5{letter-spacing:0.483392pt;}
.ls80{letter-spacing:0.488704pt;}
.ls11c{letter-spacing:0.500480pt;}
.lsd9{letter-spacing:0.506368pt;}
.ls67{letter-spacing:0.512256pt;}
.lsbd{letter-spacing:0.518144pt;}
.lsa8{letter-spacing:0.524032pt;}
.ls25{letter-spacing:0.529920pt;}
.lse2{letter-spacing:0.531200pt;}
.lsc9{letter-spacing:0.535808pt;}
.ls48{letter-spacing:0.541696pt;}
.lsb0{letter-spacing:0.547584pt;}
.ls123{letter-spacing:0.553472pt;}
.lsbf{letter-spacing:0.559360pt;}
.ls5f{letter-spacing:0.565248pt;}
.ls4c{letter-spacing:0.577024pt;}
.ls54{letter-spacing:0.584320pt;}
.ls46{letter-spacing:0.594688pt;}
.lsbb{letter-spacing:0.600576pt;}
.ls12a{letter-spacing:0.606464pt;}
.lsad{letter-spacing:0.612352pt;}
.lsb8{letter-spacing:0.618240pt;}
.ls8c{letter-spacing:0.630016pt;}
.ls31{letter-spacing:0.641280pt;}
.ls33{letter-spacing:0.647680pt;}
.ls6d{letter-spacing:0.653568pt;}
.ls119{letter-spacing:0.659456pt;}
.lsc3{letter-spacing:0.680960pt;}
.ls125{letter-spacing:0.683008pt;}
.ls93{letter-spacing:0.700672pt;}
.lscf{letter-spacing:0.706560pt;}
.ls100{letter-spacing:0.741888pt;}
.ls51{letter-spacing:0.748160pt;}
.lsc0{letter-spacing:0.777216pt;}
.lsa4{letter-spacing:0.849920pt;}
.lsd3{letter-spacing:0.853760pt;}
.ls4b{letter-spacing:0.855040pt;}
.ls60{letter-spacing:0.883200pt;}
.ls11e{letter-spacing:0.930304pt;}
.ls24{letter-spacing:0.942080pt;}
.ls69{letter-spacing:0.947968pt;}
.lse1{letter-spacing:0.956160pt;}
.ls4f{letter-spacing:1.068800pt;}
.ls8f{letter-spacing:1.071616pt;}
.lsd2{letter-spacing:1.106560pt;}
.lsfe{letter-spacing:1.168640pt;}
.ls49{letter-spacing:1.276800pt;}
.ls50{letter-spacing:1.282560pt;}
.ls95{letter-spacing:1.313280pt;}
.ls23{letter-spacing:1.389440pt;}
.ls115{letter-spacing:1.447040pt;}
.ls2c{letter-spacing:1.530880pt;}
.lsbc{letter-spacing:1.589760pt;}
.lsc7{letter-spacing:1.595648pt;}
.ls35{letter-spacing:1.702400pt;}
.ls3d{letter-spacing:1.787520pt;}
.ls94{letter-spacing:1.866240pt;}
.ls92{letter-spacing:1.935360pt;}
.ls2a{letter-spacing:1.957760pt;}
.lsb1{letter-spacing:2.001920pt;}
.ls27{letter-spacing:2.178560pt;}
.ls12b{letter-spacing:2.272768pt;}
.lsfc{letter-spacing:2.337280pt;}
.ls99{letter-spacing:2.349312pt;}
.ls5e{letter-spacing:2.720256pt;}
.ls4e{letter-spacing:2.826240pt;}
.ls5d{letter-spacing:2.867456pt;}
.lsa1{letter-spacing:3.020544pt;}
.ls41{letter-spacing:3.473920pt;}
.lscb{letter-spacing:3.603456pt;}
.ls2b{letter-spacing:3.830400pt;}
.ls42{letter-spacing:4.121600pt;}
.lsa6{letter-spacing:4.439552pt;}
.lsdd{letter-spacing:4.483328pt;}
.lsef{letter-spacing:4.488640pt;}
.lsd1{letter-spacing:4.527872pt;}
.lsa5{letter-spacing:4.552384pt;}
.lseb{letter-spacing:4.727680pt;}
.ls38{letter-spacing:4.769280pt;}
.ls111{letter-spacing:4.804608pt;}
.lsf4{letter-spacing:4.828160pt;}
.ls12d{letter-spacing:4.869376pt;}
.ls87{letter-spacing:5.022464pt;}
.ls39{letter-spacing:5.416960pt;}
.ls10c{letter-spacing:5.736960pt;}
.ls112{letter-spacing:5.811456pt;}
.ls44{letter-spacing:6.005760pt;}
.lsba{letter-spacing:6.217728pt;}
.ls3f{letter-spacing:6.241280pt;}
.lsec{letter-spacing:6.342528pt;}
.ls9a{letter-spacing:6.653440pt;}
.lsb7{letter-spacing:6.894848pt;}
.lsee{letter-spacing:6.990592pt;}
.lsea{letter-spacing:7.011840pt;}
.ls3e{letter-spacing:7.036160pt;}
.ls2f{letter-spacing:7.301120pt;}
.lsc8{letter-spacing:7.395328pt;}
.ls106{letter-spacing:7.436544pt;}
.ls3b{letter-spacing:7.524864pt;}
.lsed{letter-spacing:7.649280pt;}
.ls91{letter-spacing:7.672320pt;}
.lsc5{letter-spacing:7.760384pt;}
.ls45{letter-spacing:7.948800pt;}
.ls8d{letter-spacing:8.007680pt;}
.ls8e{letter-spacing:8.025344pt;}
.ls89{letter-spacing:8.596480pt;}
.ls12c{letter-spacing:8.614144pt;}
.ls9b{letter-spacing:8.620032pt;}
.lsdc{letter-spacing:8.826112pt;}
.ls3a{letter-spacing:9.244160pt;}
.lsd0{letter-spacing:9.356032pt;}
.ls10d{letter-spacing:9.561600pt;}
.ls37{letter-spacing:9.891840pt;}
.ls10e{letter-spacing:10.199040pt;}
.ls2d{letter-spacing:10.539520pt;}
.ls22{letter-spacing:10.592512pt;}
.ls10f{letter-spacing:10.836480pt;}
.lsf7{letter-spacing:11.128320pt;}
.lscc{letter-spacing:11.222528pt;}
.ls110{letter-spacing:11.473920pt;}
.lsb6{letter-spacing:11.499264pt;}
.lsae{letter-spacing:11.540480pt;}
.ls8a{letter-spacing:11.776000pt;}
.lsda{letter-spacing:11.917312pt;}
.ls116{letter-spacing:12.176384pt;}
.lsc2{letter-spacing:12.423680pt;}
.ls7f{letter-spacing:12.753408pt;}
.lse8{letter-spacing:12.934720pt;}
.ls3c{letter-spacing:13.071360pt;}
.ls8b{letter-spacing:13.565952pt;}
.lsd7{letter-spacing:13.719040pt;}
.ls113{letter-spacing:14.366720pt;}
.ls2e{letter-spacing:15.014400pt;}
.ls29{letter-spacing:15.138048pt;}
.lsb4{letter-spacing:15.161600pt;}
.lsd4{letter-spacing:15.603200pt;}
.lsc1{letter-spacing:16.250880pt;}
.lsa3{letter-spacing:16.898560pt;}
.lsa2{letter-spacing:17.033984pt;}
.lsb2{letter-spacing:17.546240pt;}
.lse0{letter-spacing:17.848320pt;}
.ls47{letter-spacing:18.193920pt;}
.lse7{letter-spacing:18.623872pt;}
.lsdb{letter-spacing:19.071232pt;}
.lscd{letter-spacing:19.489280pt;}
.ls88{letter-spacing:20.242944pt;}
.lsf8{letter-spacing:21.373440pt;}
.lsf0{letter-spacing:21.726080pt;}
.ls102{letter-spacing:23.964160pt;}
.ls21{letter-spacing:24.611840pt;}
.lsce{letter-spacing:28.439040pt;}
.lsf6{letter-spacing:31.618560pt;}
.lsb5{letter-spacing:32.913920pt;}
.ls90{letter-spacing:40.432000pt;}
.ls6e{letter-spacing:51.143040pt;}
.ls109{letter-spacing:52.108800pt;}
.ls104{letter-spacing:53.404160pt;}
.ls108{letter-spacing:55.288320pt;}
.ls103{letter-spacing:61.706240pt;}
.ls17{letter-spacing:64.768000pt;}
.ls1d{letter-spacing:90.380800pt;}
.ls10a{letter-spacing:103.923200pt;}
.ls10b{letter-spacing:110.988800pt;}
.ls107{letter-spacing:114.168320pt;}
.ls78{letter-spacing:162.494080pt;}
.ls105{letter-spacing:166.041600pt;}
.ls101{letter-spacing:172.459520pt;}
.ls96{letter-spacing:176.302080pt;}
.ls7d{letter-spacing:177.232000pt;}
.ls70{letter-spacing:204.086400pt;}
.ls73{letter-spacing:204.087040pt;}
.ls7b{letter-spacing:209.847680pt;}
.ls98{letter-spacing:215.280640pt;}
.ls75{letter-spacing:224.615040pt;}
.ls76{letter-spacing:233.568000pt;}
.ls79{letter-spacing:233.568640pt;}
.ls71{letter-spacing:238.659200pt;}
.ls74{letter-spacing:238.668160pt;}
.ls7a{letter-spacing:283.448320pt;}
.ls77{letter-spacing:283.492480pt;}
.ls6f{letter-spacing:304.602240pt;}
.ls7c{letter-spacing:328.281600pt;}
.ls72{letter-spacing:340.446080pt;}
.ls7e{letter-spacing:405.677440pt;}
.ws92{word-spacing:-48.000000pt;}
.ws1{word-spacing:-39.360000pt;}
.ws27{word-spacing:-31.102080pt;}
.ws105{word-spacing:-30.995200pt;}
.ws1d{word-spacing:-30.140160pt;}
.ws25{word-spacing:-29.819520pt;}
.ws51{word-spacing:-25.621120pt;}
.wsff{word-spacing:-25.450880pt;}
.wseb{word-spacing:-25.365760pt;}
.wsc1{word-spacing:-24.940160pt;}
.ws3{word-spacing:-24.855040pt;}
.wsec{word-spacing:-24.769920pt;}
.ws4{word-spacing:-24.599680pt;}
.ws2{word-spacing:-24.514560pt;}
.wsc0{word-spacing:-24.344320pt;}
.ws95{word-spacing:-21.150720pt;}
.ws93{word-spacing:-21.081600pt;}
.ws94{word-spacing:-20.528640pt;}
.wsae{word-spacing:-18.370560pt;}
.wsa5{word-spacing:-18.048000pt;}
.wsa6{word-spacing:-17.792000pt;}
.ws28{word-spacing:-17.310720pt;}
.wsf5{word-spacing:-17.104640pt;}
.ws97{word-spacing:-17.080320pt;}
.ws10b{word-spacing:-17.016320pt;}
.ws108{word-spacing:-16.898560pt;}
.wsc2{word-spacing:-16.834560pt;}
.wsb{word-spacing:-16.663040pt;}
.ws24{word-spacing:-16.604160pt;}
.ws11{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.250880pt;}
.ws10{word-spacing:-16.133120pt;}
.ws1e{word-spacing:-16.074240pt;}
.wsd{word-spacing:-16.015360pt;}
.wsf{word-spacing:-15.956480pt;}
.wsc{word-spacing:-15.720960pt;}
.wsdb{word-spacing:-15.617280pt;}
.wse{word-spacing:-15.603200pt;}
.ws52{word-spacing:-15.485440pt;}
.ws29{word-spacing:-15.426560pt;}
.ws6e{word-spacing:-15.351680pt;}
.ws7c{word-spacing:-15.308800pt;}
.wsd9{word-spacing:-15.298560pt;}
.ws8f{word-spacing:-15.086080pt;}
.ws8b{word-spacing:-14.979840pt;}
.wsc8{word-spacing:-14.837760pt;}
.ws8d{word-spacing:-14.820480pt;}
.ws1a{word-spacing:-14.767360pt;}
.wsc3{word-spacing:-14.714240pt;}
.ws6d{word-spacing:-14.661120pt;}
.ws8c{word-spacing:-14.554880pt;}
.ws8e{word-spacing:-14.501760pt;}
.wsda{word-spacing:-14.448640pt;}
.wse3{word-spacing:-14.023680pt;}
.ws8a{word-spacing:-13.545600pt;}
.ws56{word-spacing:-13.536000pt;}
.ws7f{word-spacing:-13.440000pt;}
.ws99{word-spacing:-12.720000pt;}
.ws19{word-spacing:-12.135040pt;}
.ws18{word-spacing:-11.920640pt;}
.ws1c{word-spacing:-11.663360pt;}
.ws1b{word-spacing:-10.376960pt;}
.ws5a{word-spacing:-10.319360pt;}
.ws6c{word-spacing:-9.607680pt;}
.wsa9{word-spacing:-9.184000pt;}
.ws98{word-spacing:-8.000000pt;}
.wsd4{word-spacing:-1.957760pt;}
.ws10a{word-spacing:-1.943040pt;}
.ws23{word-spacing:-1.530880pt;}
.ws102{word-spacing:-1.447040pt;}
.ws70{word-spacing:-1.282560pt;}
.ws106{word-spacing:-1.068800pt;}
.ws72{word-spacing:-0.961920pt;}
.wsdc{word-spacing:-0.956160pt;}
.wsf2{word-spacing:-0.883200pt;}
.ws10f{word-spacing:-0.855040pt;}
.ws87{word-spacing:-0.720000pt;}
.ws104{word-spacing:-0.680960pt;}
.ws55{word-spacing:-0.647680pt;}
.ws6f{word-spacing:-0.641280pt;}
.ws96{word-spacing:-0.622080pt;}
.ws10d{word-spacing:-0.588800pt;}
.wse0{word-spacing:-0.584320pt;}
.ws39{word-spacing:-0.529920pt;}
.ws5c{word-spacing:-0.510720pt;}
.wscb{word-spacing:-0.427520pt;}
.wsb5{word-spacing:-0.371840pt;}
.ws10c{word-spacing:-0.353280pt;}
.wsa2{word-spacing:-0.318720pt;}
.ws22{word-spacing:-0.294400pt;}
.ws6{word-spacing:-0.255360pt;}
.ws88{word-spacing:-0.240000pt;}
.ws15{word-spacing:-0.235520pt;}
.ws1f{word-spacing:-0.214400pt;}
.wsf0{word-spacing:-0.213760pt;}
.ws79{word-spacing:-0.212480pt;}
.ws89{word-spacing:-0.192000pt;}
.wsa8{word-spacing:-0.128000pt;}
.ws59{word-spacing:-0.096000pt;}
.ws10e{word-spacing:-0.058880pt;}
.ws90{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws74{word-spacing:0.053120pt;}
.ws107{word-spacing:0.058880pt;}
.ws5{word-spacing:0.085120pt;}
.ws77{word-spacing:0.106240pt;}
.ws13{word-spacing:0.117760pt;}
.ws7{word-spacing:0.128000pt;}
.ws57{word-spacing:0.170240pt;}
.ws9b{word-spacing:0.184320pt;}
.ws86{word-spacing:0.235520pt;}
.ws9d{word-spacing:0.245760pt;}
.ws9{word-spacing:0.255360pt;}
.wsc7{word-spacing:0.265600pt;}
.ws16{word-spacing:0.294400pt;}
.wse6{word-spacing:0.318720pt;}
.ws71{word-spacing:0.320640pt;}
.ws35{word-spacing:0.353280pt;}
.ws8{word-spacing:0.384000pt;}
.ws12{word-spacing:0.412160pt;}
.ws53{word-spacing:0.427520pt;}
.ws20{word-spacing:0.514560pt;}
.ws17{word-spacing:0.529920pt;}
.ws26{word-spacing:0.588800pt;}
.ws100{word-spacing:0.641280pt;}
.ws14{word-spacing:0.647680pt;}
.ws5d{word-spacing:0.680960pt;}
.ws76{word-spacing:0.690560pt;}
.ws109{word-spacing:0.706560pt;}
.ws3d{word-spacing:0.765440pt;}
.wsd5{word-spacing:0.851200pt;}
.wsa7{word-spacing:0.896000pt;}
.ws54{word-spacing:0.942080pt;}
.wse9{word-spacing:0.956160pt;}
.ws43{word-spacing:1.059840pt;}
.ws9f{word-spacing:1.105920pt;}
.ws44{word-spacing:1.236480pt;}
.ws75{word-spacing:1.328000pt;}
.wsbf{word-spacing:1.354240pt;}
.ws40{word-spacing:1.707520pt;}
.wscd{word-spacing:1.943040pt;}
.ws78{word-spacing:1.965440pt;}
.wsf9{word-spacing:2.071680pt;}
.ws7b{word-spacing:2.178560pt;}
.ws2b{word-spacing:2.296320pt;}
.ws60{word-spacing:2.355200pt;}
.ws46{word-spacing:2.472960pt;}
.wsac{word-spacing:2.531840pt;}
.wsb8{word-spacing:2.656000pt;}
.ws34{word-spacing:2.944000pt;}
.ws21{word-spacing:3.044480pt;}
.ws62{word-spacing:3.120640pt;}
.wsa3{word-spacing:3.293440pt;}
.ws4b{word-spacing:3.591680pt;}
.ws9c{word-spacing:3.686400pt;}
.wsaa{word-spacing:3.768320pt;}
.wsb9{word-spacing:3.930880pt;}
.wsba{word-spacing:4.090240pt;}
.ws47{word-spacing:4.239360pt;}
.wsdf{word-spacing:4.249600pt;}
.wsd3{word-spacing:4.357120pt;}
.ws5e{word-spacing:4.416000pt;}
.wsb6{word-spacing:4.533760pt;}
.ws7a{word-spacing:4.568320pt;}
.ws36{word-spacing:4.887040pt;}
.ws9e{word-spacing:4.915200pt;}
.wsfe{word-spacing:5.063680pt;}
.wsd0{word-spacing:5.181440pt;}
.ws73{word-spacing:5.205760pt;}
.ws2e{word-spacing:5.534720pt;}
.wsef{word-spacing:5.652480pt;}
.wsbd{word-spacing:5.711360pt;}
.wsb3{word-spacing:5.843200pt;}
.wse8{word-spacing:6.161920pt;}
.ws2f{word-spacing:6.182400pt;}
.wsad{word-spacing:6.359040pt;}
.wsb4{word-spacing:6.480640pt;}
.wse7{word-spacing:6.799360pt;}
.ws4f{word-spacing:6.830080pt;}
.ws9a{word-spacing:6.881280pt;}
.ws3f{word-spacing:7.006720pt;}
.wsa4{word-spacing:7.118080pt;}
.wsd2{word-spacing:7.360000pt;}
.ws38{word-spacing:7.418880pt;}
.ws7d{word-spacing:7.595520pt;}
.wsbb{word-spacing:7.755520pt;}
.ws2c{word-spacing:8.066560pt;}
.wsd1{word-spacing:8.243200pt;}
.wsf8{word-spacing:8.392960pt;}
.ws32{word-spacing:8.714240pt;}
.ws4d{word-spacing:8.832000pt;}
.wsb0{word-spacing:9.030400pt;}
.ws4e{word-spacing:9.361920pt;}
.wsed{word-spacing:9.479680pt;}
.ws66{word-spacing:9.538560pt;}
.ws69{word-spacing:9.597440pt;}
.wsb2{word-spacing:9.667840pt;}
.wsb1{word-spacing:9.827200pt;}
.ws4a{word-spacing:10.009600pt;}
.wsd8{word-spacing:10.305280pt;}
.wsfa{word-spacing:10.411520pt;}
.wsfd{word-spacing:10.624000pt;}
.ws37{word-spacing:10.657280pt;}
.ws68{word-spacing:10.833920pt;}
.wsdd{word-spacing:10.942720pt;}
.ws48{word-spacing:11.187200pt;}
.ws3a{word-spacing:11.304960pt;}
.wsbe{word-spacing:11.481600pt;}
.wsde{word-spacing:11.580160pt;}
.ws63{word-spacing:11.893760pt;}
.ws101{word-spacing:12.129280pt;}
.wsc9{word-spacing:12.217600pt;}
.ws33{word-spacing:12.541440pt;}
.wsa0{word-spacing:12.776960pt;}
.wsfb{word-spacing:12.855040pt;}
.ws49{word-spacing:13.189120pt;}
.wsaf{word-spacing:13.365760pt;}
.wse5{word-spacing:13.492480pt;}
.ws103{word-spacing:13.719040pt;}
.ws31{word-spacing:13.836800pt;}
.ws42{word-spacing:14.013440pt;}
.ws45{word-spacing:14.484480pt;}
.wsc6{word-spacing:14.767360pt;}
.ws2d{word-spacing:15.132160pt;}
.ws67{word-spacing:15.308800pt;}
.wsf6{word-spacing:15.404800pt;}
.ws3e{word-spacing:15.779840pt;}
.ws3c{word-spacing:15.956480pt;}
.ws5f{word-spacing:16.427520pt;}
.wsc5{word-spacing:16.892160pt;}
.ws5b{word-spacing:17.016320pt;}
.wsf1{word-spacing:17.192960pt;}
.ws4c{word-spacing:17.664000pt;}
.ws82{word-spacing:17.899520pt;}
.wse2{word-spacing:18.007680pt;}
.ws64{word-spacing:18.311680pt;}
.ws6a{word-spacing:18.959360pt;}
.ws65{word-spacing:19.136000pt;}
.wse4{word-spacing:19.282560pt;}
.ws7e{word-spacing:19.607040pt;}
.ws41{word-spacing:20.254720pt;}
.ws91{word-spacing:20.431360pt;}
.ws2a{word-spacing:20.902400pt;}
.ws58{word-spacing:21.550080pt;}
.wsea{word-spacing:21.832320pt;}
.ws6b{word-spacing:22.138880pt;}
.ws3b{word-spacing:22.786560pt;}
.wsab{word-spacing:23.434240pt;}
.ws30{word-spacing:24.729600pt;}
.wse1{word-spacing:25.019520pt;}
.wsa1{word-spacing:25.377280pt;}
.ws50{word-spacing:26.024960pt;}
.wsfc{word-spacing:26.294400pt;}
.wsc4{word-spacing:26.613760pt;}
.ws80{word-spacing:27.909120pt;}
.ws81{word-spacing:28.026880pt;}
.wsce{word-spacing:28.556800pt;}
.wscf{word-spacing:29.204480pt;}
.wsca{word-spacing:31.147520pt;}
.wsee{word-spacing:31.736320pt;}
.wsbc{word-spacing:33.031680pt;}
.ws61{word-spacing:33.679360pt;}
.wscc{word-spacing:34.327040pt;}
.wsf7{word-spacing:35.622400pt;}
.wsb7{word-spacing:36.858880pt;}
.wsf3{word-spacing:38.154240pt;}
.ws85{word-spacing:41.510400pt;}
.ws84{word-spacing:41.981440pt;}
.ws83{word-spacing:42.158080pt;}
.wsf4{word-spacing:44.572160pt;}
.wsd7{word-spacing:66.298880pt;}
.wsd6{word-spacing:66.946560pt;}
._8{margin-left:-15.568640pt;}
._a{margin-left:-14.214400pt;}
._3{margin-left:-12.835840pt;}
._4{margin-left:-11.187200pt;}
._b{margin-left:-10.245120pt;}
._7{margin-left:-9.242880pt;}
._9{margin-left:-7.628800pt;}
._6{margin-left:-6.476800pt;}
._5{margin-left:-4.802560pt;}
._c{margin-left:-2.589440pt;}
._0{margin-left:-1.497600pt;}
._1{width:1.286400pt;}
._2{width:2.615552pt;}
._12{width:3.973120pt;}
._13{width:5.259520pt;}
._d{width:6.241280pt;}
._16{width:7.242240pt;}
._e{width:8.175360pt;}
._10{width:9.464320pt;}
._14{width:10.539520pt;}
._19{width:11.893760pt;}
._f{width:13.224960pt;}
._11{width:14.366720pt;}
._1b{width:15.397120pt;}
._1d{width:17.345280pt;}
._18{width:20.313600pt;}
._1c{width:22.056448pt;}
._1a{width:23.889920pt;}
._1f{width:25.739520pt;}
._1e{width:32.378368pt;}
._15{width:35.472000pt;}
._17{width:43.360640pt;}
.fsc{font-size:32.000000pt;}
.fs11{font-size:34.560000pt;}
.fs10{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fsd{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs13{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y246{bottom:3.200000pt;}
.y242{bottom:3.360000pt;}
.y1de{bottom:34.080000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:123.790666pt;}
.y730{bottom:131.258880pt;}
.y153{bottom:135.356000pt;}
.y1cb{bottom:135.360000pt;}
.y5da{bottom:135.364000pt;}
.y62b{bottom:136.128640pt;}
.y66b{bottom:137.115520pt;}
.y1bc{bottom:138.948480pt;}
.y5a6{bottom:139.845760pt;}
.y84{bottom:140.005760pt;}
.y301{bottom:140.065920pt;}
.y128{bottom:141.269760pt;}
.y61a{bottom:141.290880pt;}
.y2dd{bottom:142.612480pt;}
.y44e{bottom:143.246720pt;}
.y64{bottom:144.144000pt;}
.ye0{bottom:145.260800pt;}
.y3b9{bottom:145.363840pt;}
.y227{bottom:145.368320pt;}
.y3e7{bottom:145.377280pt;}
.y3bf{bottom:145.413120pt;}
.y66f{bottom:145.426560pt;}
.y170{bottom:145.435520pt;}
.y3a8{bottom:146.576640pt;}
.y48e{bottom:146.670720pt;}
.y38f{bottom:147.256960pt;}
.y643{bottom:147.261440pt;}
.y529{bottom:148.025600pt;}
.y562{bottom:148.088320pt;}
.y424{bottom:149.314560pt;}
.y57d{bottom:149.328000pt;}
.y406{bottom:149.354880pt;}
.y3f1{bottom:149.404160pt;}
.y4e9{bottom:149.413120pt;}
.y152{bottom:149.912000pt;}
.y1ca{bottom:149.916000pt;}
.y5d9{bottom:149.920000pt;}
.y72f{bottom:150.453760pt;}
.y35b{bottom:152.119680pt;}
.y28b{bottom:152.320000pt;}
.y100{bottom:153.256320pt;}
.y6e2{bottom:153.435520pt;}
.y697{bottom:153.440000pt;}
.y5a5{bottom:154.560000pt;}
.y619{bottom:155.845760pt;}
.y62a{bottom:156.133120pt;}
.y318{bottom:156.160000pt;}
.y66a{bottom:157.120000pt;}
.y1bb{bottom:158.952960pt;}
.y300{bottom:160.070400pt;}
.y127{bottom:161.274240pt;}
.y3a7{bottom:161.290880pt;}
.y3d6{bottom:161.345920pt;}
.y63{bottom:161.425280pt;}
.y5f6{bottom:162.039680pt;}
.y2dc{bottom:162.616960pt;}
.y44d{bottom:163.251200pt;}
.y5cf{bottom:164.151040pt;}
.y151{bottom:164.636000pt;}
.y1c9{bottom:164.640000pt;}
.ydf{bottom:165.265280pt;}
.y3b8{bottom:165.368320pt;}
.y226{bottom:165.372800pt;}
.y3e6{bottom:165.381760pt;}
.y3be{bottom:165.417600pt;}
.y675{bottom:165.426560pt;}
.y66e{bottom:165.431040pt;}
.y16f{bottom:165.435520pt;}
.y48d{bottom:166.675200pt;}
.y5d8{bottom:167.040000pt;}
.y38e{bottom:167.261440pt;}
.y642{bottom:167.265920pt;}
.y72e{bottom:167.411200pt;}
.y528{bottom:168.030080pt;}
.y561{bottom:168.092800pt;}
.y83{bottom:168.650880pt;}
.y423{bottom:169.319040pt;}
.y57c{bottom:169.332480pt;}
.y405{bottom:169.359360pt;}
.y507{bottom:169.399680pt;}
.y3f0{bottom:169.408640pt;}
.y4e8{bottom:169.417600pt;}
.y5a4{bottom:169.426560pt;}
.y64c{bottom:169.435520pt;}
.y618{bottom:170.560000pt;}
.y331{bottom:170.616960pt;}
.y46f{bottom:170.630400pt;}
.y35a{bottom:172.124160pt;}
.yff{bottom:173.260800pt;}
.y6fe{bottom:173.435520pt;}
.y696{bottom:173.440000pt;}
.y17{bottom:175.052000pt;}
.y317{bottom:175.845760pt;}
.y629{bottom:176.137600pt;}
.y62{bottom:178.868480pt;}
.y150{bottom:179.360000pt;}
.y2ff{bottom:180.074880pt;}
.y36f{bottom:180.153600pt;}
.y126{bottom:181.278720pt;}
.y3d5{bottom:181.350400pt;}
.y1c8{bottom:181.760000pt;}
.y5f5{bottom:182.044160pt;}
.y2db{bottom:182.621440pt;}
.y4b5{bottom:182.792960pt;}
.y44c{bottom:183.255680pt;}
.y5ce{bottom:184.155520pt;}
.y72d{bottom:184.206720pt;}
.yde{bottom:185.269760pt;}
.y617{bottom:185.363840pt;}
.y3b7{bottom:185.372800pt;}
.y225{bottom:185.377280pt;}
.y3e5{bottom:185.386240pt;}
.y3bd{bottom:185.422080pt;}
.y674{bottom:185.431040pt;}
.y16e{bottom:185.435520pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y48c{bottom:186.679680pt;}
.y38d{bottom:187.265920pt;}
.y641{bottom:187.270400pt;}
.y527{bottom:188.034560pt;}
.y560{bottom:188.097280pt;}
.y422{bottom:189.323520pt;}
.y57b{bottom:189.336960pt;}
.y404{bottom:189.363840pt;}
.y506{bottom:189.404160pt;}
.y3ef{bottom:189.413120pt;}
.y4e7{bottom:189.422080pt;}
.y5a3{bottom:189.431040pt;}
.y64b{bottom:189.440000pt;}
.y316{bottom:190.560000pt;}
.y330{bottom:190.621440pt;}
.y46e{bottom:190.634880pt;}
.y359{bottom:192.128640pt;}
.y669{bottom:192.800000pt;}
.yfe{bottom:193.265280pt;}
.y28a{bottom:193.381760pt;}
.y6ee{bottom:193.426560pt;}
.y6d9{bottom:193.431040pt;}
.y6dd{bottom:193.435520pt;}
.y695{bottom:193.440000pt;}
.y628{bottom:196.142080pt;}
.y61{bottom:196.149760pt;}
.y14f{bottom:196.320000pt;}
.y82{bottom:197.296000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y4b4{bottom:197.507200pt;}
.y2fe{bottom:200.079360pt;}
.y36e{bottom:200.158080pt;}
.y5d7{bottom:200.698880pt;}
.y72c{bottom:201.164160pt;}
.y125{bottom:201.283200pt;}
.y3d4{bottom:201.354880pt;}
.y5f4{bottom:202.048640pt;}
.y2da{bottom:202.625920pt;}
.y44b{bottom:203.260160pt;}
.y5cd{bottom:204.160000pt;}
.ydd{bottom:205.274240pt;}
.y616{bottom:205.368320pt;}
.y16d{bottom:205.377280pt;}
.y224{bottom:205.381760pt;}
.y3e4{bottom:205.390720pt;}
.y3a6{bottom:205.399680pt;}
.y315{bottom:205.426560pt;}
.y673{bottom:205.435520pt;}
.y66d{bottom:205.440000pt;}
.y48b{bottom:206.684160pt;}
.y38c{bottom:207.270400pt;}
.y640{bottom:207.274880pt;}
.y526{bottom:208.039040pt;}
.y55f{bottom:208.101760pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y421{bottom:209.328000pt;}
.y57a{bottom:209.341440pt;}
.y64a{bottom:209.345920pt;}
.y403{bottom:209.368320pt;}
.y505{bottom:209.408640pt;}
.y3ee{bottom:209.417600pt;}
.y4e6{bottom:209.426560pt;}
.y5a2{bottom:209.435520pt;}
.y32f{bottom:210.625920pt;}
.y46d{bottom:210.639360pt;}
.yb9{bottom:210.684800pt;}
.y4b3{bottom:212.062080pt;}
.y358{bottom:212.133120pt;}
.yfd{bottom:213.269760pt;}
.y289{bottom:213.386240pt;}
.y60{bottom:213.431040pt;}
.y6d8{bottom:213.435520pt;}
.y694{bottom:213.440000pt;}
.y627{bottom:216.146560pt;}
.y1ff{bottom:216.701440pt;}
.y72b{bottom:217.959680pt;}
.y2fd{bottom:220.083840pt;}
.y36d{bottom:220.162560pt;}
.y5d6{bottom:220.703360pt;}
.y124{bottom:221.287680pt;}
.y3d3{bottom:221.359360pt;}
.y5f3{bottom:222.053120pt;}
.y2d9{bottom:222.630400pt;}
.y44a{bottom:223.264640pt;}
.ydc{bottom:225.278720pt;}
.y14e{bottom:225.292160pt;}
.y615{bottom:225.372800pt;}
.y16c{bottom:225.381760pt;}
.y223{bottom:225.386240pt;}
.y3e3{bottom:225.395200pt;}
.y3a5{bottom:225.404160pt;}
.y314{bottom:225.431040pt;}
.y672{bottom:225.440000pt;}
.y5cc{bottom:225.760000pt;}
.y81{bottom:225.941120pt;}
.y48a{bottom:226.688640pt;}
.y4b2{bottom:226.776320pt;}
.y66c{bottom:227.036160pt;}
.y38b{bottom:227.274880pt;}
.y63f{bottom:227.279360pt;}
.y525{bottom:228.043520pt;}
.y55e{bottom:228.106240pt;}
.y3a{bottom:228.798080pt;}
.y420{bottom:229.332480pt;}
.y579{bottom:229.345920pt;}
.y649{bottom:229.350400pt;}
.y402{bottom:229.372800pt;}
.y504{bottom:229.413120pt;}
.y3ed{bottom:229.422080pt;}
.y4e5{bottom:229.431040pt;}
.y5a1{bottom:229.440000pt;}
.y32e{bottom:230.630400pt;}
.y46c{bottom:230.643840pt;}
.yb8{bottom:230.689280pt;}
.y5f{bottom:230.874240pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y357{bottom:232.137600pt;}
.yfc{bottom:233.274240pt;}
.y288{bottom:233.390720pt;}
.y6ac{bottom:233.404160pt;}
.y6f1{bottom:233.422080pt;}
.y6dc{bottom:233.431040pt;}
.y693{bottom:233.435520pt;}
.y6b8{bottom:233.440000pt;}
.y72a{bottom:234.917120pt;}
.y626{bottom:236.151040pt;}
.y1fe{bottom:236.705920pt;}
.y36c{bottom:236.958080pt;}
.y2fc{bottom:240.088320pt;}
.y5d5{bottom:240.707840pt;}
.y123{bottom:241.292160pt;}
.y3d2{bottom:241.363840pt;}
.y4b1{bottom:241.490560pt;}
.y5f2{bottom:242.057600pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y2d8{bottom:242.634880pt;}
.y449{bottom:243.269120pt;}
.ydb{bottom:245.283200pt;}
.y14d{bottom:245.296640pt;}
.y614{bottom:245.377280pt;}
.y16b{bottom:245.386240pt;}
.y222{bottom:245.390720pt;}
.y3e2{bottom:245.399680pt;}
.y3a4{bottom:245.408640pt;}
.y313{bottom:245.435520pt;}
.y39{bottom:246.076960pt;}
.y489{bottom:246.693120pt;}
.y671{bottom:247.036160pt;}
.y38a{bottom:247.279360pt;}
.y63e{bottom:247.283840pt;}
.y524{bottom:248.048000pt;}
.y5cb{bottom:248.070400pt;}
.y55d{bottom:248.110720pt;}
.y5e{bottom:248.155520pt;}
.y41f{bottom:249.336960pt;}
.y578{bottom:249.350400pt;}
.y648{bottom:249.354880pt;}
.y401{bottom:249.377280pt;}
.y503{bottom:249.417600pt;}
.y3ec{bottom:249.426560pt;}
.y4e4{bottom:249.435520pt;}
.y32d{bottom:250.634880pt;}
.y46b{bottom:250.648320pt;}
.yb7{bottom:250.693760pt;}
.y5a0{bottom:251.040000pt;}
.y729{bottom:251.712640pt;}
.y356{bottom:252.142080pt;}
.yfb{bottom:253.278720pt;}
.y287{bottom:253.395200pt;}
.y6ab{bottom:253.408640pt;}
.y6cc{bottom:253.413120pt;}
.y6f0{bottom:253.426560pt;}
.y6b7{bottom:253.435520pt;}
.y1a{bottom:253.438668pt;}
.y692{bottom:253.440000pt;}
.y11{bottom:253.451999pt;}
.y80{bottom:254.586240pt;}
.y4b0{bottom:256.045440pt;}
.y625{bottom:256.155520pt;}
.y1fd{bottom:256.710400pt;}
.y2fb{bottom:260.092800pt;}
.y5d4{bottom:260.712320pt;}
.y122{bottom:261.296640pt;}
.y3d1{bottom:261.368320pt;}
.y5f1{bottom:262.062080pt;}
.y2d7{bottom:262.639360pt;}
.y448{bottom:263.273600pt;}
.y38{bottom:263.520160pt;}
.yda{bottom:265.287680pt;}
.y14c{bottom:265.301120pt;}
.y613{bottom:265.381760pt;}
.y16a{bottom:265.390720pt;}
.y221{bottom:265.395200pt;}
.y3e1{bottom:265.404160pt;}
.y3a3{bottom:265.413120pt;}
.y5d{bottom:265.436800pt;}
.y312{bottom:265.440000pt;}
.y488{bottom:266.697600pt;}
.y389{bottom:267.283840pt;}
.y63d{bottom:267.288320pt;}
.y523{bottom:268.052480pt;}
.y5ca{bottom:268.074880pt;}
.y55c{bottom:268.115200pt;}
.y728{bottom:268.508160pt;}
.y399{bottom:269.332480pt;}
.y41e{bottom:269.341440pt;}
.y577{bottom:269.354880pt;}
.y647{bottom:269.359360pt;}
.y400{bottom:269.381760pt;}
.y502{bottom:269.422080pt;}
.y3eb{bottom:269.431040pt;}
.y4e3{bottom:269.440000pt;}
.y32c{bottom:270.639360pt;}
.y46a{bottom:270.652800pt;}
.y4af{bottom:270.759680pt;}
.y670{bottom:271.040000pt;}
.y355{bottom:272.146560pt;}
.yfa{bottom:273.283200pt;}
.y59f{bottom:273.345920pt;}
.y286{bottom:273.399680pt;}
.y6aa{bottom:273.413120pt;}
.y6cb{bottom:273.417600pt;}
.y6ef{bottom:273.431040pt;}
.y6d7{bottom:273.435520pt;}
.y691{bottom:273.440000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y624{bottom:276.160000pt;}
.y1fc{bottom:276.714880pt;}
.yb6{bottom:279.338880pt;}
.y2fa{bottom:280.097280pt;}
.y5d3{bottom:280.716800pt;}
.y37{bottom:280.799040pt;}
.y121{bottom:281.301120pt;}
.y3d0{bottom:281.372800pt;}
.y5f0{bottom:282.066560pt;}
.y2d6{bottom:282.643840pt;}
.y5c{bottom:282.880000pt;}
.y7f{bottom:283.231360pt;}
.y447{bottom:283.278080pt;}
.yd9{bottom:285.292160pt;}
.y14b{bottom:285.305600pt;}
.y612{bottom:285.386240pt;}
.y169{bottom:285.395200pt;}
.y220{bottom:285.399680pt;}
.y3e0{bottom:285.408640pt;}
.y3a2{bottom:285.417600pt;}
.y3bc{bottom:285.444480pt;}
.y727{bottom:285.465600pt;}
.y4ae{bottom:285.473920pt;}
.y487{bottom:286.702080pt;}
.y18{bottom:287.038667pt;}
.y311{bottom:287.040000pt;}
.yf{bottom:287.052000pt;}
.y388{bottom:287.288320pt;}
.y63c{bottom:287.292800pt;}
.y522{bottom:288.056960pt;}
.y5c9{bottom:288.079360pt;}
.y55b{bottom:288.119680pt;}
.y398{bottom:289.336960pt;}
.y41d{bottom:289.345920pt;}
.y576{bottom:289.359360pt;}
.y646{bottom:289.363840pt;}
.y3ff{bottom:289.386240pt;}
.y23f{bottom:289.417600pt;}
.y501{bottom:289.426560pt;}
.y3ea{bottom:289.435520pt;}
.y4e2{bottom:289.540480pt;}
.y32b{bottom:290.643840pt;}
.y469{bottom:290.657280pt;}
.y354{bottom:292.151040pt;}
.yf9{bottom:293.287680pt;}
.y59e{bottom:293.350400pt;}
.y285{bottom:293.404160pt;}
.y6a9{bottom:293.417600pt;}
.y6ca{bottom:293.422080pt;}
.y6e6{bottom:293.435520pt;}
.y690{bottom:293.440000pt;}
.y1fb{bottom:296.719360pt;}
.y623{bottom:297.760000pt;}
.y36{bottom:298.077920pt;}
.yb5{bottom:299.343360pt;}
.y4ad{bottom:300.028800pt;}
.y2f9{bottom:300.101760pt;}
.y5b{bottom:300.154240pt;}
.y5d2{bottom:300.721280pt;}
.y120{bottom:301.305600pt;}
.y3cf{bottom:301.377280pt;}
.y5ef{bottom:302.071040pt;}
.y726{bottom:302.261120pt;}
.y2d5{bottom:302.648320pt;}
.y446{bottom:303.282560pt;}
.y4e1{bottom:304.095360pt;}
.yd8{bottom:305.296640pt;}
.y14a{bottom:305.310080pt;}
.y611{bottom:305.390720pt;}
.y168{bottom:305.399680pt;}
.y21f{bottom:305.404160pt;}
.y3df{bottom:305.413120pt;}
.y3a1{bottom:305.422080pt;}
.y3bb{bottom:305.843840pt;}
.y486{bottom:306.706560pt;}
.y387{bottom:307.292800pt;}
.y63b{bottom:307.297280pt;}
.y521{bottom:308.061440pt;}
.y5c8{bottom:308.083840pt;}
.y55a{bottom:308.124160pt;}
.y397{bottom:309.341440pt;}
.y41c{bottom:309.350400pt;}
.y575{bottom:309.363840pt;}
.y645{bottom:309.368320pt;}
.y310{bottom:309.372800pt;}
.y53b{bottom:309.377280pt;}
.y3fe{bottom:309.390720pt;}
.y23e{bottom:309.422080pt;}
.y500{bottom:309.431040pt;}
.y3e9{bottom:309.440000pt;}
.ye{bottom:309.452000pt;}
.y262{bottom:310.190720pt;}
.y32a{bottom:310.648320pt;}
.y468{bottom:310.661760pt;}
.y7e{bottom:312.038400pt;}
.y353{bottom:312.155520pt;}
.yf8{bottom:313.292160pt;}
.y59d{bottom:313.354880pt;}
.y284{bottom:313.408640pt;}
.y6ed{bottom:313.417600pt;}
.y6a8{bottom:313.422080pt;}
.y6c9{bottom:313.426560pt;}
.y68f{bottom:313.435520pt;}
.y6c1{bottom:313.440000pt;}
.y1a9{bottom:314.080000pt;}
.y4ac{bottom:314.743040pt;}
.y35{bottom:315.521120pt;}
.y1fa{bottom:316.723840pt;}
.y5a{bottom:317.435520pt;}
.y4e0{bottom:318.809600pt;}
.y725{bottom:319.218560pt;}
.y2f8{bottom:320.106240pt;}
.y622{bottom:320.128640pt;}
.y5d1{bottom:320.725760pt;}
.y11f{bottom:321.310080pt;}
.y3ce{bottom:321.381760pt;}
.y5ee{bottom:322.075520pt;}
.y3ba{bottom:322.168320pt;}
.y2d4{bottom:322.652800pt;}
.y445{bottom:323.287040pt;}
.yd7{bottom:325.301120pt;}
.y149{bottom:325.314560pt;}
.y610{bottom:325.395200pt;}
.y167{bottom:325.404160pt;}
.y21e{bottom:325.408640pt;}
.y3de{bottom:325.417600pt;}
.y3a0{bottom:325.426560pt;}
.y485{bottom:326.711040pt;}
.y386{bottom:327.297280pt;}
.y63a{bottom:327.301760pt;}
.y520{bottom:328.065920pt;}
.y5c7{bottom:328.088320pt;}
.y559{bottom:328.128640pt;}
.yb4{bottom:328.150400pt;}
.y396{bottom:329.345920pt;}
.y41b{bottom:329.354880pt;}
.y574{bottom:329.368320pt;}
.y644{bottom:329.372800pt;}
.y30f{bottom:329.377280pt;}
.y53a{bottom:329.381760pt;}
.y3fd{bottom:329.395200pt;}
.y23d{bottom:329.426560pt;}
.y4ff{bottom:329.435520pt;}
.y4ab{bottom:329.457280pt;}
.y261{bottom:330.195200pt;}
.y329{bottom:330.652800pt;}
.y467{bottom:330.666240pt;}
.y3e8{bottom:331.040000pt;}
.y352{bottom:332.160000pt;}
.y34{bottom:332.800000pt;}
.yf7{bottom:333.296640pt;}
.y59c{bottom:333.359360pt;}
.y1a8{bottom:333.390720pt;}
.y283{bottom:333.413120pt;}
.y6ec{bottom:333.422080pt;}
.y6a7{bottom:333.426560pt;}
.y6c8{bottom:333.431040pt;}
.y6d2{bottom:333.435520pt;}
.y68e{bottom:333.440000pt;}
.y4df{bottom:333.523840pt;}
.y59{bottom:334.878720pt;}
.y724{bottom:336.014080pt;}
.y1f9{bottom:336.728320pt;}
.y5d0{bottom:337.521280pt;}
.y2f7{bottom:340.110720pt;}
.y621{bottom:340.133120pt;}
.y7d{bottom:340.683520pt;}
.y11e{bottom:341.314560pt;}
.y3cd{bottom:341.386240pt;}
.y5ed{bottom:342.080000pt;}
.y2d3{bottom:342.657280pt;}
.y444{bottom:343.291520pt;}
.yd{bottom:343.809333pt;}
.y4aa{bottom:344.012160pt;}
.yd6{bottom:345.305600pt;}
.y148{bottom:345.319040pt;}
.y60f{bottom:345.399680pt;}
.y166{bottom:345.408640pt;}
.y21d{bottom:345.413120pt;}
.y3dd{bottom:345.422080pt;}
.y39f{bottom:345.431040pt;}
.y484{bottom:346.715520pt;}
.y385{bottom:347.301760pt;}
.y639{bottom:347.306240pt;}
.y51f{bottom:348.070400pt;}
.y4de{bottom:348.078720pt;}
.y5c6{bottom:348.092800pt;}
.y558{bottom:348.133120pt;}
.y395{bottom:349.350400pt;}
.y41a{bottom:349.359360pt;}
.y573{bottom:349.372800pt;}
.y434{bottom:349.377280pt;}
.y30e{bottom:349.381760pt;}
.y539{bottom:349.386240pt;}
.y3fc{bottom:349.399680pt;}
.y23c{bottom:349.431040pt;}
.y4fe{bottom:349.440000pt;}
.y260{bottom:350.199680pt;}
.y328{bottom:350.657280pt;}
.y466{bottom:350.670720pt;}
.y33{bottom:350.720000pt;}
.y2a7{bottom:351.200000pt;}
.y351{bottom:351.879040pt;}
.y58{bottom:352.160000pt;}
.y723{bottom:352.809600pt;}
.yf6{bottom:353.301120pt;}
.y59b{bottom:353.363840pt;}
.y1a7{bottom:353.395200pt;}
.y282{bottom:353.417600pt;}
.y6eb{bottom:353.426560pt;}
.y6a6{bottom:353.431040pt;}
.y6c7{bottom:353.435520pt;}
.y68d{bottom:353.440000pt;}
.y1c7{bottom:354.080000pt;}
.y1f8{bottom:356.732800pt;}
.yb3{bottom:356.795520pt;}
.y1db{bottom:358.400000pt;}
.y4a9{bottom:358.726400pt;}
.y2f6{bottom:360.115200pt;}
.y620{bottom:360.137600pt;}
.y11d{bottom:361.319040pt;}
.y3cc{bottom:361.390720pt;}
.y5ec{bottom:361.953280pt;}
.y2d2{bottom:362.661760pt;}
.yc{bottom:362.706666pt;}
.y4dd{bottom:362.792960pt;}
.y443{bottom:363.296000pt;}
.yd5{bottom:365.310080pt;}
.y147{bottom:365.323520pt;}
.y60e{bottom:365.404160pt;}
.y165{bottom:365.413120pt;}
.y21c{bottom:365.417600pt;}
.y3dc{bottom:365.426560pt;}
.y39e{bottom:365.435520pt;}
.y350{bottom:366.593280pt;}
.y483{bottom:366.720000pt;}
.y384{bottom:367.306240pt;}
.y638{bottom:367.310720pt;}
.y57{bottom:368.000000pt;}
.y51e{bottom:368.074880pt;}
.y5c5{bottom:368.097280pt;}
.y557{bottom:368.137600pt;}
.y7c{bottom:369.328640pt;}
.y394{bottom:369.354880pt;}
.y419{bottom:369.363840pt;}
.y572{bottom:369.377280pt;}
.y433{bottom:369.381760pt;}
.y30d{bottom:369.386240pt;}
.y538{bottom:369.390720pt;}
.y3fb{bottom:369.404160pt;}
.y23b{bottom:369.435520pt;}
.y722{bottom:369.767040pt;}
.y25f{bottom:370.204160pt;}
.y2a6{bottom:370.661760pt;}
.y465{bottom:370.675200pt;}
.y4fd{bottom:371.040000pt;}
.yf5{bottom:373.305600pt;}
.y59a{bottom:373.368320pt;}
.y1c6{bottom:373.395200pt;}
.y1a6{bottom:373.399680pt;}
.y281{bottom:373.422080pt;}
.y6ea{bottom:373.431040pt;}
.y6a5{bottom:373.435520pt;}
.y68c{bottom:373.440000pt;}
.y4a8{bottom:373.440640pt;}
.y5eb{bottom:376.508160pt;}
.y1f7{bottom:376.737280pt;}
.yb2{bottom:376.800000pt;}
.y4dc{bottom:377.507200pt;}
.y1da{bottom:377.692160pt;}
.y56{bottom:378.720000pt;}
.y32{bottom:379.520000pt;}
.y2f5{bottom:380.119680pt;}
.y61f{bottom:380.142080pt;}
.y34f{bottom:381.307520pt;}
.y11c{bottom:381.323520pt;}
.y3cb{bottom:381.395200pt;}
.y2d1{bottom:382.666240pt;}
.y442{bottom:383.300480pt;}
.yd4{bottom:385.314560pt;}
.y146{bottom:385.328000pt;}
.y60d{bottom:385.408640pt;}
.y164{bottom:385.417600pt;}
.y21b{bottom:385.422080pt;}
.y3db{bottom:385.431040pt;}
.y39d{bottom:385.440000pt;}
.y721{bottom:386.562560pt;}
.y482{bottom:386.576640pt;}
.y383{bottom:387.310720pt;}
.y637{bottom:387.315200pt;}
.y4a7{bottom:387.995520pt;}
.y51d{bottom:388.079360pt;}
.y5c4{bottom:388.101760pt;}
.y556{bottom:388.142080pt;}
.y99{bottom:388.688000pt;}
.y393{bottom:389.359360pt;}
.y418{bottom:389.368320pt;}
.y571{bottom:389.381760pt;}
.y432{bottom:389.386240pt;}
.y30c{bottom:389.390720pt;}
.y537{bottom:389.395200pt;}
.y3fa{bottom:389.408640pt;}
.y23a{bottom:389.440000pt;}
.y25e{bottom:390.208640pt;}
.y2a5{bottom:390.666240pt;}
.y464{bottom:390.679680pt;}
.y5ea{bottom:391.222400pt;}
.y4db{bottom:392.062080pt;}
.yf4{bottom:393.310080pt;}
.y599{bottom:393.372800pt;}
.y4fc{bottom:393.377280pt;}
.y1c5{bottom:393.399680pt;}
.y1a5{bottom:393.404160pt;}
.y280{bottom:393.426560pt;}
.y6fd{bottom:393.431040pt;}
.y6db{bottom:393.435520pt;}
.y6a4{bottom:393.440000pt;}
.y55{bottom:394.560000pt;}
.y34e{bottom:395.862400pt;}
.y1f6{bottom:396.741760pt;}
.y1d9{bottom:397.696640pt;}
.y7b{bottom:397.973760pt;}
.y31{bottom:398.720000pt;}
.yb1{bottom:399.360000pt;}
.y2f4{bottom:400.124160pt;}
.y61e{bottom:400.146560pt;}
.y481{bottom:401.290880pt;}
.y11b{bottom:401.328000pt;}
.y3ca{bottom:401.399680pt;}
.y2d0{bottom:402.670720pt;}
.y4a6{bottom:402.709760pt;}
.y441{bottom:403.304960pt;}
.y720{bottom:403.520000pt;}
.y54{bottom:405.272320pt;}
.yd3{bottom:405.319040pt;}
.y145{bottom:405.332480pt;}
.y60c{bottom:405.413120pt;}
.y163{bottom:405.422080pt;}
.y21a{bottom:405.426560pt;}
.y3da{bottom:405.435520pt;}
.y39c{bottom:405.601280pt;}
.y5e9{bottom:405.936640pt;}
.y4da{bottom:406.776320pt;}
.y382{bottom:407.315200pt;}
.y636{bottom:407.319680pt;}
.y51c{bottom:408.083840pt;}
.y5c3{bottom:408.106240pt;}
.y555{bottom:408.146560pt;}
.y98{bottom:408.692480pt;}
.y392{bottom:409.363840pt;}
.y417{bottom:409.372800pt;}
.y570{bottom:409.386240pt;}
.y431{bottom:409.390720pt;}
.y30b{bottom:409.395200pt;}
.y536{bottom:409.399680pt;}
.y3f9{bottom:409.413120pt;}
.y25d{bottom:410.213120pt;}
.y239{bottom:410.247040pt;}
.y34d{bottom:410.576640pt;}
.y2a4{bottom:410.670720pt;}
.y463{bottom:410.684160pt;}
.y1ba{bottom:410.959360pt;}
.yf3{bottom:413.314560pt;}
.y598{bottom:413.377280pt;}
.y4fb{bottom:413.381760pt;}
.y1c4{bottom:413.404160pt;}
.y1a4{bottom:413.408640pt;}
.y6d6{bottom:413.426560pt;}
.y27f{bottom:413.431040pt;}
.y6d1{bottom:413.435520pt;}
.y6a3{bottom:413.440000pt;}
.y480{bottom:415.845760pt;}
.y1f5{bottom:416.746240pt;}
.y2b5{bottom:416.763520pt;}
.y4a5{bottom:417.424000pt;}
.y1d8{bottom:417.701120pt;}
.y2f3{bottom:420.128640pt;}
.y61d{bottom:420.151040pt;}
.y5e8{bottom:420.491520pt;}
.y71f{bottom:421.120000pt;}
.y11a{bottom:421.332480pt;}
.y3c9{bottom:421.404160pt;}
.y4d9{bottom:421.490560pt;}
.y53{bottom:422.553600pt;}
.y2cf{bottom:422.675200pt;}
.y30{bottom:422.875520pt;}
.y440{bottom:423.309440pt;}
.y34c{bottom:425.290880pt;}
.yd2{bottom:425.323520pt;}
.y144{bottom:425.336960pt;}
.y60b{bottom:425.417600pt;}
.y162{bottom:425.426560pt;}
.y219{bottom:425.431040pt;}
.y3d9{bottom:425.440000pt;}
.y39b{bottom:425.489920pt;}
.y7a{bottom:426.618880pt;}
.yb0{bottom:427.255040pt;}
.y381{bottom:427.319680pt;}
.y635{bottom:427.324160pt;}
.y51b{bottom:428.088320pt;}
.y5c2{bottom:428.110720pt;}
.y554{bottom:428.151040pt;}
.y391{bottom:429.368320pt;}
.y416{bottom:429.377280pt;}
.y56f{bottom:429.390720pt;}
.y430{bottom:429.395200pt;}
.y30a{bottom:429.399680pt;}
.y535{bottom:429.404160pt;}
.y3f8{bottom:429.417600pt;}
.y25c{bottom:430.217600pt;}
.y238{bottom:430.240000pt;}
.y47f{bottom:430.560000pt;}
.y2a3{bottom:430.675200pt;}
.y462{bottom:430.688640pt;}
.y1b9{bottom:430.963840pt;}
.y4a4{bottom:431.978880pt;}
.yf2{bottom:433.319040pt;}
.y597{bottom:433.381760pt;}
.y4fa{bottom:433.386240pt;}
.y1c3{bottom:433.408640pt;}
.y1a3{bottom:433.413120pt;}
.y6d5{bottom:433.431040pt;}
.y27e{bottom:433.435520pt;}
.y6a2{bottom:433.440000pt;}
.y188{bottom:434.080000pt;}
.y5e7{bottom:435.205760pt;}
.y4d8{bottom:436.045440pt;}
.y1f4{bottom:436.750720pt;}
.y2b4{bottom:436.768000pt;}
.y97{bottom:437.337600pt;}
.y1d7{bottom:437.705600pt;}
.y52{bottom:439.834880pt;}
.y34b{bottom:439.845760pt;}
.y2f2{bottom:440.133120pt;}
.y61c{bottom:440.155520pt;}
.y119{bottom:441.336960pt;}
.y3c8{bottom:441.408640pt;}
.y2ce{bottom:442.679680pt;}
.y2f{bottom:442.880000pt;}
.y43f{bottom:443.313920pt;}
.yd1{bottom:445.328000pt;}
.y39a{bottom:445.332480pt;}
.y143{bottom:445.341440pt;}
.y47e{bottom:445.381760pt;}
.y60a{bottom:445.422080pt;}
.y161{bottom:445.431040pt;}
.y218{bottom:445.435520pt;}
.y683{bottom:445.440000pt;}
.y4a3{bottom:446.693120pt;}
.y3d8{bottom:447.036160pt;}
.yaf{bottom:447.259520pt;}
.y380{bottom:447.324160pt;}
.y634{bottom:447.328640pt;}
.y51a{bottom:448.092800pt;}
.y5c1{bottom:448.115200pt;}
.y553{bottom:448.155520pt;}
.y390{bottom:449.372800pt;}
.y415{bottom:449.381760pt;}
.y56e{bottom:449.395200pt;}
.y42f{bottom:449.399680pt;}
.y309{bottom:449.404160pt;}
.y534{bottom:449.408640pt;}
.y3f7{bottom:449.422080pt;}
.y237{bottom:449.426560pt;}
.y5e6{bottom:449.920000pt;}
.y25b{bottom:450.222080pt;}
.y71e{bottom:450.355200pt;}
.y2a2{bottom:450.679680pt;}
.y461{bottom:450.693120pt;}
.y4d7{bottom:450.759680pt;}
.y1b8{bottom:450.968320pt;}
.yf1{bottom:453.323520pt;}
.y187{bottom:453.368320pt;}
.y596{bottom:453.386240pt;}
.y4f9{bottom:453.390720pt;}
.y1c2{bottom:453.413120pt;}
.y1a2{bottom:453.417600pt;}
.y27d{bottom:453.431040pt;}
.y6d4{bottom:453.435520pt;}
.y68b{bottom:453.440000pt;}
.y34a{bottom:454.560000pt;}
.y79{bottom:455.264000pt;}
.y1f3{bottom:456.755200pt;}
.y2b3{bottom:456.772480pt;}
.y668{bottom:457.345920pt;}
.y1d6{bottom:457.710080pt;}
.y2f1{bottom:460.137600pt;}
.y61b{bottom:460.160000pt;}
.y118{bottom:461.341440pt;}
.y4a2{bottom:461.407360pt;}
.y3c7{bottom:461.413120pt;}
.y2cd{bottom:462.684160pt;}
.yb{bottom:462.990669pt;}
.y2e{bottom:463.040000pt;}
.y43e{bottom:463.318400pt;}
.y5e5{bottom:464.760960pt;}
.yd0{bottom:465.332480pt;}
.y217{bottom:465.336960pt;}
.y142{bottom:465.345920pt;}
.y47d{bottom:465.386240pt;}
.y609{bottom:465.426560pt;}
.y160{bottom:465.435520pt;}
.y682{bottom:465.440000pt;}
.y4d6{bottom:465.473920pt;}
.y96{bottom:465.982720pt;}
.y37f{bottom:467.328640pt;}
.y633{bottom:467.333120pt;}
.y519{bottom:468.097280pt;}
.y5c0{bottom:468.119680pt;}
.y552{bottom:468.160000pt;}
.y349{bottom:469.377280pt;}
.y414{bottom:469.386240pt;}
.y56d{bottom:469.399680pt;}
.y42e{bottom:469.404160pt;}
.y308{bottom:469.408640pt;}
.y533{bottom:469.413120pt;}
.y3f6{bottom:469.426560pt;}
.y236{bottom:469.431040pt;}
.y25a{bottom:470.226560pt;}
.y71d{bottom:470.359680pt;}
.y2a1{bottom:470.684160pt;}
.y460{bottom:470.697600pt;}
.y1b7{bottom:470.972800pt;}
.y3d7{bottom:471.040000pt;}
.yf0{bottom:473.328000pt;}
.y186{bottom:473.372800pt;}
.y595{bottom:473.390720pt;}
.y4f8{bottom:473.395200pt;}
.y1c1{bottom:473.417600pt;}
.y1a1{bottom:473.422080pt;}
.y27c{bottom:473.435520pt;}
.y68a{bottom:473.440000pt;}
.y4a1{bottom:475.962240pt;}
.yae{bottom:476.066560pt;}
.y1f2{bottom:476.759680pt;}
.y2b2{bottom:476.776960pt;}
.y667{bottom:477.350400pt;}
.y1d5{bottom:477.714560pt;}
.ya{bottom:478.990666pt;}
.y4d5{bottom:480.028800pt;}
.y2f0{bottom:480.142080pt;}
.y117{bottom:481.345920pt;}
.y3c6{bottom:481.417600pt;}
.y2cc{bottom:482.688640pt;}
.y43d{bottom:483.322880pt;}
.y2d{bottom:483.509920pt;}
.y78{bottom:484.071040pt;}
.y5e4{bottom:484.765440pt;}
.ycf{bottom:485.336960pt;}
.y216{bottom:485.341440pt;}
.y141{bottom:485.350400pt;}
.y47c{bottom:485.390720pt;}
.y15f{bottom:485.399680pt;}
.y681{bottom:485.426560pt;}
.y608{bottom:485.431040pt;}
.y3b6{bottom:485.440000pt;}
.y37e{bottom:487.333120pt;}
.y632{bottom:487.337600pt;}
.y518{bottom:488.101760pt;}
.y5bf{bottom:488.124160pt;}
.y348{bottom:489.381760pt;}
.y413{bottom:489.390720pt;}
.y56c{bottom:489.404160pt;}
.y42d{bottom:489.408640pt;}
.y307{bottom:489.413120pt;}
.y532{bottom:489.417600pt;}
.y3f5{bottom:489.431040pt;}
.y235{bottom:489.435520pt;}
.y551{bottom:489.756160pt;}
.y259{bottom:490.231040pt;}
.y71c{bottom:490.364160pt;}
.y4a0{bottom:490.676480pt;}
.y2a0{bottom:490.688640pt;}
.y45f{bottom:490.702080pt;}
.y1b6{bottom:490.977280pt;}
.yef{bottom:493.332480pt;}
.y185{bottom:493.377280pt;}
.y594{bottom:493.395200pt;}
.y4f7{bottom:493.399680pt;}
.y6c0{bottom:493.404160pt;}
.y1c0{bottom:493.422080pt;}
.y1a0{bottom:493.426560pt;}
.y6d0{bottom:493.431040pt;}
.y6fc{bottom:493.435520pt;}
.y27b{bottom:493.440000pt;}
.y95{bottom:494.627840pt;}
.y4d4{bottom:494.743040pt;}
.y9{bottom:494.990666pt;}
.yad{bottom:496.071040pt;}
.y1f1{bottom:496.764160pt;}
.y2b1{bottom:496.781440pt;}
.y666{bottom:497.354880pt;}
.y1d4{bottom:497.719040pt;}
.y2ef{bottom:500.146560pt;}
.y116{bottom:501.350400pt;}
.y3c5{bottom:501.422080pt;}
.y2cb{bottom:502.693120pt;}
.y43c{bottom:503.327360pt;}
.y5e3{bottom:504.769920pt;}
.yce{bottom:505.341440pt;}
.y215{bottom:505.345920pt;}
.y140{bottom:505.354880pt;}
.y49f{bottom:505.390720pt;}
.y47b{bottom:505.395200pt;}
.y15e{bottom:505.404160pt;}
.y680{bottom:505.431040pt;}
.y607{bottom:505.435520pt;}
.y3b5{bottom:507.040000pt;}
.y37d{bottom:507.337600pt;}
.y631{bottom:507.342080pt;}
.y517{bottom:508.106240pt;}
.y5be{bottom:508.128640pt;}
.y2c{bottom:509.280000pt;}
.y347{bottom:509.386240pt;}
.y412{bottom:509.395200pt;}
.y56b{bottom:509.408640pt;}
.y42c{bottom:509.413120pt;}
.y306{bottom:509.417600pt;}
.y531{bottom:509.422080pt;}
.y3f4{bottom:509.435520pt;}
.y234{bottom:509.440000pt;}
.y4d3{bottom:509.457280pt;}
.y258{bottom:510.235520pt;}
.y71b{bottom:510.368640pt;}
.y29f{bottom:510.693120pt;}
.y45e{bottom:510.706560pt;}
.y1b5{bottom:510.981760pt;}
.y77{bottom:512.716160pt;}
.yee{bottom:513.336960pt;}
.y184{bottom:513.381760pt;}
.y593{bottom:513.399680pt;}
.y4f6{bottom:513.404160pt;}
.y6bf{bottom:513.408640pt;}
.y1bf{bottom:513.426560pt;}
.y19f{bottom:513.431040pt;}
.y6cf{bottom:513.435520pt;}
.y6b6{bottom:513.440000pt;}
.y27a{bottom:513.605120pt;}
.y550{bottom:513.760000pt;}
.y94{bottom:514.632320pt;}
.yac{bottom:516.075520pt;}
.y1f0{bottom:516.768640pt;}
.y2b0{bottom:516.785920pt;}
.y51{bottom:517.276800pt;}
.y665{bottom:517.359360pt;}
.y1d3{bottom:517.723520pt;}
.y49e{bottom:519.945600pt;}
.y2ee{bottom:520.151040pt;}
.y115{bottom:521.354880pt;}
.y3c4{bottom:521.426560pt;}
.y2ca{bottom:522.697600pt;}
.y43b{bottom:523.331840pt;}
.y4d2{bottom:524.012160pt;}
.y5e2{bottom:524.774400pt;}
.ycd{bottom:525.345920pt;}
.y214{bottom:525.350400pt;}
.y13f{bottom:525.359360pt;}
.y47a{bottom:525.399680pt;}
.y15d{bottom:525.408640pt;}
.y67f{bottom:525.435520pt;}
.y606{bottom:525.440000pt;}
.y37c{bottom:527.342080pt;}
.y630{bottom:527.346560pt;}
.y516{bottom:528.110720pt;}
.y5bd{bottom:528.133120pt;}
.y346{bottom:529.390720pt;}
.y411{bottom:529.399680pt;}
.y56a{bottom:529.413120pt;}
.y42b{bottom:529.417600pt;}
.y305{bottom:529.422080pt;}
.y530{bottom:529.426560pt;}
.y233{bottom:529.431040pt;}
.y3f3{bottom:529.440000pt;}
.y36b{bottom:529.920000pt;}
.y257{bottom:530.240000pt;}
.y71a{bottom:530.373120pt;}
.y29e{bottom:530.697600pt;}
.y45d{bottom:530.711040pt;}
.y1b4{bottom:530.986240pt;}
.yed{bottom:533.341440pt;}
.y183{bottom:533.386240pt;}
.y592{bottom:533.404160pt;}
.y4f5{bottom:533.408640pt;}
.y6be{bottom:533.413120pt;}
.y6b5{bottom:533.426560pt;}
.y1be{bottom:533.431040pt;}
.y19e{bottom:533.435520pt;}
.y6ce{bottom:533.440000pt;}
.y279{bottom:533.603840pt;}
.y49d{bottom:534.659840pt;}
.y50{bottom:534.720000pt;}
.y54f{bottom:536.079360pt;}
.y1ef{bottom:536.773120pt;}
.y2af{bottom:536.790400pt;}
.y664{bottom:537.363840pt;}
.y1d2{bottom:537.728000pt;}
.y2b{bottom:537.760000pt;}
.y4d1{bottom:538.726400pt;}
.y2ed{bottom:540.155520pt;}
.y114{bottom:541.359360pt;}
.y76{bottom:541.361280pt;}
.y3c3{bottom:541.431040pt;}
.y2c9{bottom:542.702080pt;}
.y93{bottom:543.277440pt;}
.y43a{bottom:543.336320pt;}
.yab{bottom:544.720640pt;}
.y5e1{bottom:544.778880pt;}
.ycc{bottom:545.350400pt;}
.y213{bottom:545.354880pt;}
.y13e{bottom:545.363840pt;}
.y479{bottom:545.404160pt;}
.y15c{bottom:545.413120pt;}
.y605{bottom:545.440000pt;}
.y700{bottom:545.512320pt;}
.y37b{bottom:547.346560pt;}
.y62f{bottom:547.351040pt;}
.y256{bottom:547.680000pt;}
.y515{bottom:548.115200pt;}
.y5bc{bottom:548.137600pt;}
.y49c{bottom:549.374080pt;}
.y36a{bottom:549.381760pt;}
.y345{bottom:549.395200pt;}
.y410{bottom:549.404160pt;}
.y569{bottom:549.417600pt;}
.y42a{bottom:549.422080pt;}
.y304{bottom:549.426560pt;}
.y52f{bottom:549.431040pt;}
.y232{bottom:549.435520pt;}
.y719{bottom:550.377600pt;}
.y29d{bottom:550.702080pt;}
.y45c{bottom:550.715520pt;}
.y1b3{bottom:550.990720pt;}
.y3f2{bottom:551.040000pt;}
.y4f{bottom:551.962240pt;}
.yec{bottom:553.345920pt;}
.y182{bottom:553.390720pt;}
.y591{bottom:553.408640pt;}
.y4f4{bottom:553.413120pt;}
.y6bd{bottom:553.417600pt;}
.y6b4{bottom:553.431040pt;}
.y1bd{bottom:553.435520pt;}
.y19d{bottom:553.440000pt;}
.y4d0{bottom:553.440640pt;}
.y278{bottom:553.602560pt;}
.y54e{bottom:556.083840pt;}
.y1ee{bottom:556.777600pt;}
.y2ae{bottom:556.794880pt;}
.y663{bottom:557.368320pt;}
.y1d1{bottom:557.732480pt;}
.y2ec{bottom:560.160000pt;}
.y113{bottom:561.363840pt;}
.y3c2{bottom:561.435520pt;}
.y2c8{bottom:562.706560pt;}
.y439{bottom:563.340800pt;}
.y49b{bottom:563.928960pt;}
.yaa{bottom:564.725120pt;}
.y5e0{bottom:564.783360pt;}
.ycb{bottom:565.354880pt;}
.y212{bottom:565.359360pt;}
.y13d{bottom:565.368320pt;}
.y478{bottom:565.408640pt;}
.y15b{bottom:565.417600pt;}
.y604{bottom:565.440000pt;}
.y37a{bottom:567.351040pt;}
.y62e{bottom:567.355520pt;}
.y4cf{bottom:567.995520pt;}
.y514{bottom:568.119680pt;}
.y5bb{bottom:568.142080pt;}
.y4e{bottom:569.243520pt;}
.y369{bottom:569.386240pt;}
.y344{bottom:569.399680pt;}
.y40f{bottom:569.408640pt;}
.y568{bottom:569.422080pt;}
.y429{bottom:569.426560pt;}
.y303{bottom:569.431040pt;}
.y52e{bottom:569.435520pt;}
.y231{bottom:569.440000pt;}
.y75{bottom:570.006400pt;}
.y718{bottom:570.382080pt;}
.y29c{bottom:570.706560pt;}
.y45b{bottom:570.720000pt;}
.y255{bottom:570.880000pt;}
.y1b2{bottom:570.995200pt;}
.y92{bottom:572.084480pt;}
.y19c{bottom:573.307520pt;}
.yeb{bottom:573.350400pt;}
.y181{bottom:573.395200pt;}
.y590{bottom:573.413120pt;}
.y4f3{bottom:573.417600pt;}
.y6bc{bottom:573.422080pt;}
.y6d3{bottom:573.431040pt;}
.y6b3{bottom:573.435520pt;}
.y689{bottom:573.440000pt;}
.y277{bottom:573.601280pt;}
.y8{bottom:573.786667pt;}
.y54d{bottom:576.088320pt;}
.y2a{bottom:576.320000pt;}
.y1ed{bottom:576.782080pt;}
.y2ad{bottom:576.799360pt;}
.y662{bottom:577.372800pt;}
.y1d0{bottom:577.736960pt;}
.y49a{bottom:578.643200pt;}
.y112{bottom:581.368320pt;}
.y3c1{bottom:581.440000pt;}
.y2eb{bottom:581.760000pt;}
.y4ce{bottom:582.709760pt;}
.y2c7{bottom:582.711040pt;}
.y438{bottom:583.345280pt;}
.y5df{bottom:584.787840pt;}
.yca{bottom:585.359360pt;}
.y211{bottom:585.363840pt;}
.y13c{bottom:585.372800pt;}
.y477{bottom:585.413120pt;}
.y15a{bottom:585.422080pt;}
.y603{bottom:585.440000pt;}
.y4d{bottom:586.686720pt;}
.y379{bottom:587.355520pt;}
.y62d{bottom:587.360000pt;}
.y19b{bottom:587.862400pt;}
.y513{bottom:588.124160pt;}
.y5ba{bottom:588.146560pt;}
.y254{bottom:588.320000pt;}
.y368{bottom:589.390720pt;}
.y343{bottom:589.404160pt;}
.y40e{bottom:589.413120pt;}
.y567{bottom:589.426560pt;}
.y428{bottom:589.431040pt;}
.y230{bottom:589.435520pt;}
.y52d{bottom:589.440000pt;}
.y717{bottom:590.386560pt;}
.y29b{bottom:590.711040pt;}
.y1b1{bottom:590.999680pt;}
.y45a{bottom:592.320000pt;}
.y7{bottom:592.685334pt;}
.yea{bottom:593.354880pt;}
.y499{bottom:593.357440pt;}
.ya9{bottom:593.370240pt;}
.y180{bottom:593.399680pt;}
.y58f{bottom:593.417600pt;}
.y4f2{bottom:593.422080pt;}
.y6bb{bottom:593.426560pt;}
.y6fb{bottom:593.431040pt;}
.y6cd{bottom:593.435520pt;}
.y688{bottom:593.440000pt;}
.y276{bottom:593.525760pt;}
.y54c{bottom:596.092800pt;}
.y1ec{bottom:596.786560pt;}
.y2ac{bottom:596.803840pt;}
.y661{bottom:597.377280pt;}
.y4cd{bottom:597.424000pt;}
.y1cf{bottom:597.741440pt;}
.y74{bottom:598.651520pt;}
.y91{bottom:600.729600pt;}
.y111{bottom:601.372800pt;}
.y19a{bottom:602.576640pt;}
.y2c6{bottom:602.715520pt;}
.y3c0{bottom:603.040000pt;}
.y437{bottom:603.349760pt;}
.y4c{bottom:603.806080pt;}
.y2ea{bottom:604.115200pt;}
.y62c{bottom:604.160000pt;}
.y5de{bottom:604.792320pt;}
.yc9{bottom:605.363840pt;}
.y210{bottom:605.368320pt;}
.y13b{bottom:605.377280pt;}
.y476{bottom:605.417600pt;}
.y159{bottom:605.426560pt;}
.y67e{bottom:605.435520pt;}
.y602{bottom:605.440000pt;}
.y378{bottom:607.360000pt;}
.y498{bottom:607.912320pt;}
.y512{bottom:608.128640pt;}
.y5b9{bottom:608.151040pt;}
.y52c{bottom:609.290880pt;}
.y367{bottom:609.395200pt;}
.y342{bottom:609.408640pt;}
.y40d{bottom:609.417600pt;}
.y566{bottom:609.431040pt;}
.y427{bottom:609.435520pt;}
.y22f{bottom:609.440000pt;}
.y716{bottom:610.391040pt;}
.y29{bottom:610.711040pt;}
.y29a{bottom:610.715520pt;}
.y1b0{bottom:611.004160pt;}
.y253{bottom:611.515520pt;}
.y4cc{bottom:611.978880pt;}
.ye9{bottom:613.359360pt;}
.y275{bottom:613.368320pt;}
.y17f{bottom:613.404160pt;}
.y6e9{bottom:613.413120pt;}
.y58e{bottom:613.422080pt;}
.y4f1{bottom:613.426560pt;}
.y6ba{bottom:613.431040pt;}
.y6fa{bottom:613.435520pt;}
.y687{bottom:613.440000pt;}
.y459{bottom:614.693120pt;}
.y54b{bottom:616.097280pt;}
.y1eb{bottom:616.791040pt;}
.y2ab{bottom:616.808320pt;}
.y199{bottom:617.290880pt;}
.y660{bottom:617.381760pt;}
.y1ce{bottom:617.745920pt;}
.y110{bottom:621.377280pt;}
.ya8{bottom:622.015360pt;}
.y497{bottom:622.626560pt;}
.y2c5{bottom:622.720000pt;}
.y436{bottom:623.354240pt;}
.y4b{bottom:623.810560pt;}
.y52b{bottom:623.845760pt;}
.y2e9{bottom:624.119680pt;}
.y5dd{bottom:624.796800pt;}
.y377{bottom:624.960000pt;}
.yc8{bottom:625.368320pt;}
.y20f{bottom:625.372800pt;}
.y13a{bottom:625.381760pt;}
.y475{bottom:625.422080pt;}
.y158{bottom:625.431040pt;}
.y601{bottom:625.440000pt;}
.y4cb{bottom:626.693120pt;}
.y73{bottom:627.296640pt;}
.y511{bottom:628.133120pt;}
.y5b8{bottom:628.155520pt;}
.y90{bottom:629.374720pt;}
.y366{bottom:629.399680pt;}
.y341{bottom:629.413120pt;}
.y22e{bottom:629.417600pt;}
.y40c{bottom:629.422080pt;}
.y565{bottom:629.435520pt;}
.y426{bottom:629.440000pt;}
.y715{bottom:630.395520pt;}
.y327{bottom:630.711040pt;}
.y28{bottom:630.715520pt;}
.y299{bottom:630.720000pt;}
.y1af{bottom:631.008640pt;}
.y302{bottom:631.040000pt;}
.y252{bottom:631.520000pt;}
.y198{bottom:631.845760pt;}
.ye8{bottom:633.363840pt;}
.y274{bottom:633.372800pt;}
.y6f9{bottom:633.404160pt;}
.y17e{bottom:633.408640pt;}
.y6e8{bottom:633.417600pt;}
.y6c6{bottom:633.422080pt;}
.y58d{bottom:633.426560pt;}
.y4f0{bottom:633.431040pt;}
.y686{bottom:633.435520pt;}
.y6b2{bottom:633.440000pt;}
.y2aa{bottom:633.603840pt;}
.y458{bottom:634.697600pt;}
.y54a{bottom:636.101760pt;}
.y1ea{bottom:636.795520pt;}
.y496{bottom:637.340800pt;}
.y65f{bottom:637.386240pt;}
.y1cd{bottom:637.750400pt;}
.y52a{bottom:638.560000pt;}
.y435{bottom:640.311680pt;}
.y10f{bottom:641.381760pt;}
.y4ca{bottom:641.407360pt;}
.ya7{bottom:642.019840pt;}
.y4a{bottom:643.815040pt;}
.y2e8{bottom:644.124160pt;}
.y2c4{bottom:644.316160pt;}
.y5dc{bottom:644.801280pt;}
.yc7{bottom:645.372800pt;}
.y20e{bottom:645.377280pt;}
.y139{bottom:645.386240pt;}
.y474{bottom:645.426560pt;}
.y157{bottom:645.435520pt;}
.y600{bottom:645.440000pt;}
.y6{bottom:645.598667pt;}
.y376{bottom:645.600000pt;}
.y197{bottom:646.560000pt;}
.y510{bottom:648.137600pt;}
.y5b7{bottom:648.160000pt;}
.y251{bottom:648.960000pt;}
.y365{bottom:649.404160pt;}
.y340{bottom:649.417600pt;}
.y22d{bottom:649.422080pt;}
.y40b{bottom:649.426560pt;}
.y564{bottom:649.440000pt;}
.y714{bottom:650.400000pt;}
.y298{bottom:650.593280pt;}
.y326{bottom:650.715520pt;}
.y27{bottom:650.720000pt;}
.y1ae{bottom:651.013120pt;}
.y425{bottom:651.040000pt;}
.y495{bottom:651.895680pt;}
.ye7{bottom:653.368320pt;}
.y273{bottom:653.377280pt;}
.y6f8{bottom:653.408640pt;}
.y17d{bottom:653.413120pt;}
.y6e7{bottom:653.422080pt;}
.y6c5{bottom:653.426560pt;}
.y58c{bottom:653.431040pt;}
.y4ef{bottom:653.435520pt;}
.y685{bottom:653.440000pt;}
.y457{bottom:654.702080pt;}
.y4c9{bottom:655.962240pt;}
.y72{bottom:656.103680pt;}
.y549{bottom:656.106240pt;}
.y1e9{bottom:656.800000pt;}
.y65e{bottom:657.390720pt;}
.y8f{bottom:658.019840pt;}
.y10e{bottom:661.386240pt;}
.y196{bottom:661.404160pt;}
.y5db{bottom:661.596800pt;}
.ya6{bottom:662.024320pt;}
.y2e7{bottom:664.128640pt;}
.y297{bottom:665.307520pt;}
.yc6{bottom:665.377280pt;}
.y20d{bottom:665.381760pt;}
.y138{bottom:665.390720pt;}
.y473{bottom:665.431040pt;}
.y67d{bottom:665.435520pt;}
.y156{bottom:665.440000pt;}
.y375{bottom:666.240000pt;}
.y1cc{bottom:666.395520pt;}
.y494{bottom:666.609920pt;}
.y5b6{bottom:667.868160pt;}
.y50f{bottom:668.142080pt;}
.y2c3{bottom:668.320000pt;}
.y3{bottom:668.977329pt;}
.y364{bottom:669.408640pt;}
.y33f{bottom:669.422080pt;}
.y22c{bottom:669.426560pt;}
.y40a{bottom:669.431040pt;}
.y713{bottom:670.400000pt;}
.y4c8{bottom:670.676480pt;}
.y325{bottom:670.720000pt;}
.y1ad{bottom:671.017600pt;}
.y563{bottom:671.040000pt;}
.y26{bottom:672.000000pt;}
.y250{bottom:672.146560pt;}
.ye6{bottom:673.372800pt;}
.y272{bottom:673.381760pt;}
.y6e1{bottom:673.404160pt;}
.y6f7{bottom:673.413120pt;}
.y17c{bottom:673.417600pt;}
.y6e5{bottom:673.426560pt;}
.y6c4{bottom:673.431040pt;}
.y58b{bottom:673.435520pt;}
.y4ee{bottom:673.440000pt;}
.y456{bottom:674.706560pt;}
.y548{bottom:676.110720pt;}
.y65d{bottom:677.395200pt;}
.y296{bottom:679.862400pt;}
.y49{bottom:680.776960pt;}
.y1e8{bottom:680.960000pt;}
.y493{bottom:681.324160pt;}
.y10d{bottom:681.390720pt;}
.y195{bottom:681.408640pt;}
.y5b5{bottom:682.582400pt;}
.y2e6{bottom:684.133120pt;}
.y71{bottom:684.748800pt;}
.yc5{bottom:685.381760pt;}
.y20c{bottom:685.386240pt;}
.y4c7{bottom:685.390720pt;}
.y137{bottom:685.395200pt;}
.y472{bottom:685.435520pt;}
.y5ff{bottom:685.440000pt;}
.y8e{bottom:686.664960pt;}
.y374{bottom:686.880000pt;}
.y155{bottom:687.036160pt;}
.y50e{bottom:688.146560pt;}
.y363{bottom:689.413120pt;}
.y33e{bottom:689.426560pt;}
.y22b{bottom:689.431040pt;}
.y409{bottom:689.435520pt;}
.y324{bottom:690.576640pt;}
.ya5{bottom:690.669440pt;}
.y2c2{bottom:690.670720pt;}
.y1ac{bottom:691.022080pt;}
.y24f{bottom:692.151040pt;}
.ye5{bottom:693.377280pt;}
.y271{bottom:693.386240pt;}
.y6e0{bottom:693.408640pt;}
.y6a1{bottom:693.413120pt;}
.y6f6{bottom:693.417600pt;}
.y17b{bottom:693.422080pt;}
.y6e4{bottom:693.431040pt;}
.y4ed{bottom:693.435520pt;}
.y58a{bottom:693.440000pt;}
.y295{bottom:694.576640pt;}
.y455{bottom:694.711040pt;}
.y492{bottom:695.879040pt;}
.y547{bottom:696.115200pt;}
.y25{bottom:696.320000pt;}
.y5b4{bottom:697.296640pt;}
.y65c{bottom:697.399680pt;}
.y712{bottom:699.185760pt;}
.y4c6{bottom:699.945600pt;}
.y10c{bottom:701.395200pt;}
.y194{bottom:701.413120pt;}
.y2e5{bottom:704.137600pt;}
.y323{bottom:705.290880pt;}
.yc4{bottom:705.386240pt;}
.y20b{bottom:705.390720pt;}
.y136{bottom:705.399680pt;}
.y5fe{bottom:705.417600pt;}
.y471{bottom:705.440000pt;}
.y48{bottom:706.051200pt;}
.y373{bottom:707.520000pt;}
.y50d{bottom:708.151040pt;}
.y1e7{bottom:709.280000pt;}
.y294{bottom:709.290880pt;}
.y362{bottom:709.417600pt;}
.y33d{bottom:709.431040pt;}
.y22a{bottom:709.435520pt;}
.y408{bottom:709.440000pt;}
.y491{bottom:710.593280pt;}
.ya4{bottom:710.673920pt;}
.y2c1{bottom:710.675200pt;}
.y1ab{bottom:711.026560pt;}
.y154{bottom:711.040000pt;}
.y5b3{bottom:711.851520pt;}
.y24e{bottom:712.155520pt;}
.y589{bottom:713.340800pt;}
.ye4{bottom:713.381760pt;}
.y270{bottom:713.390720pt;}
.y70{bottom:713.393920pt;}
.y6df{bottom:713.413120pt;}
.y6a0{bottom:713.417600pt;}
.y6f5{bottom:713.422080pt;}
.y17a{bottom:713.426560pt;}
.y6b9{bottom:713.431040pt;}
.y6e3{bottom:713.435520pt;}
.y4ec{bottom:713.440000pt;}
.y4c5{bottom:714.659840pt;}
.y454{bottom:714.715520pt;}
.y8d{bottom:715.310080pt;}
.y546{bottom:716.119680pt;}
.y711{bottom:716.466400pt;}
.y65b{bottom:717.404160pt;}
.y322{bottom:719.845760pt;}
.y10b{bottom:721.399680pt;}
.y193{bottom:721.417600pt;}
.y47{bottom:722.846720pt;}
.y293{bottom:723.845760pt;}
.y2e4{bottom:724.142080pt;}
.y24{bottom:724.960000pt;}
.y490{bottom:725.307520pt;}
.yc3{bottom:725.390720pt;}
.y20a{bottom:725.395200pt;}
.y135{bottom:725.404160pt;}
.y5fd{bottom:725.422080pt;}
.y67c{bottom:725.431040pt;}
.y5b2{bottom:726.565760pt;}
.y470{bottom:727.036160pt;}
.y588{bottom:727.895680pt;}
.y50c{bottom:728.155520pt;}
.y372{bottom:728.160000pt;}
.y4c4{bottom:729.374080pt;}
.y361{bottom:729.422080pt;}
.y33c{bottom:729.435520pt;}
.y229{bottom:729.440000pt;}
.ya3{bottom:730.678400pt;}
.y2c0{bottom:730.679680pt;}
.y1aa{bottom:731.031040pt;}
.y407{bottom:731.040000pt;}
.y24d{bottom:732.160000pt;}
.ye3{bottom:733.386240pt;}
.y26f{bottom:733.395200pt;}
.y6de{bottom:733.417600pt;}
.y69f{bottom:733.422080pt;}
.y6f4{bottom:733.426560pt;}
.y179{bottom:733.431040pt;}
.y4eb{bottom:733.435520pt;}
.y684{bottom:733.440000pt;}
.y710{bottom:733.747040pt;}
.y321{bottom:734.560000pt;}
.y453{bottom:734.720000pt;}
.y545{bottom:736.124160pt;}
.y65a{bottom:737.408640pt;}
.y1e6{bottom:737.600000pt;}
.y292{bottom:738.560000pt;}
.y48f{bottom:739.862400pt;}
.y5b1{bottom:741.280000pt;}
.y10a{bottom:741.404160pt;}
.y192{bottom:741.422080pt;}
.y6f{bottom:742.039040pt;}
.y587{bottom:742.609920pt;}
.y4c3{bottom:743.928960pt;}
.y8c{bottom:744.117120pt;}
.y2e3{bottom:744.146560pt;}
.yc2{bottom:745.395200pt;}
.y209{bottom:745.399680pt;}
.y134{bottom:745.408640pt;}
.y5fc{bottom:745.426560pt;}
.y67b{bottom:745.435520pt;}
.y50b{bottom:748.160000pt;}
.y371{bottom:748.960000pt;}
.y320{bottom:749.422080pt;}
.y360{bottom:749.426560pt;}
.y33b{bottom:749.440000pt;}
.y24c{bottom:749.600000pt;}
.y23{bottom:750.416000pt;}
.y2bf{bottom:750.684160pt;}
.y228{bottom:751.040000pt;}
.y70f{bottom:751.188480pt;}
.y46{bottom:751.329920pt;}
.ye2{bottom:753.390720pt;}
.y26e{bottom:753.399680pt;}
.y291{bottom:753.422080pt;}
.y69e{bottom:753.426560pt;}
.y6f3{bottom:753.431040pt;}
.y178{bottom:753.435520pt;}
.y4ea{bottom:753.440000pt;}
.y452{bottom:754.576640pt;}
.y544{bottom:756.128640pt;}
.y5b0{bottom:756.142080pt;}
.y586{bottom:757.324160pt;}
.y659{bottom:757.413120pt;}
.y4c2{bottom:758.643200pt;}
.ya2{bottom:759.323520pt;}
.y109{bottom:761.408640pt;}
.y191{bottom:761.426560pt;}
.y6e{bottom:762.043520pt;}
.y2e2{bottom:764.151040pt;}
.yc1{bottom:765.399680pt;}
.y208{bottom:765.404160pt;}
.y133{bottom:765.413120pt;}
.y5fb{bottom:765.431040pt;}
.y67a{bottom:765.440000pt;}
.y1e5{bottom:765.920000pt;}
.y50a{bottom:768.320000pt;}
.y70e{bottom:768.469120pt;}
.y451{bottom:769.290880pt;}
.y31f{bottom:769.426560pt;}
.y35f{bottom:769.431040pt;}
.y3b4{bottom:769.440000pt;}
.y370{bottom:769.600000pt;}
.y2be{bottom:770.688640pt;}
.y33a{bottom:771.040000pt;}
.y585{bottom:771.879040pt;}
.y8b{bottom:772.762240pt;}
.y24b{bottom:772.795520pt;}
.y4c1{bottom:773.357440pt;}
.ye1{bottom:773.395200pt;}
.y26d{bottom:773.404160pt;}
.y177{bottom:773.408640pt;}
.y6da{bottom:773.422080pt;}
.y290{bottom:773.426560pt;}
.y69d{bottom:773.431040pt;}
.y6f2{bottom:773.435520pt;}
.y651{bottom:773.440000pt;}
.y543{bottom:776.133120pt;}
.y5af{bottom:776.146560pt;}
.y45{bottom:776.604160pt;}
.y658{bottom:777.417600pt;}
.y108{bottom:781.413120pt;}
.y190{bottom:781.431040pt;}
.y2{bottom:781.661334pt;}
.y450{bottom:783.845760pt;}
.y2e1{bottom:784.155520pt;}
.yc0{bottom:785.404160pt;}
.y207{bottom:785.408640pt;}
.y132{bottom:785.417600pt;}
.y5fa{bottom:785.435520pt;}
.y679{bottom:785.440000pt;}
.y70d{bottom:785.749760pt;}
.y584{bottom:786.593280pt;}
.y509{bottom:787.036160pt;}
.y4c0{bottom:787.912320pt;}
.ya1{bottom:788.130560pt;}
.y3b3{bottom:789.408640pt;}
.y31e{bottom:789.431040pt;}
.y35e{bottom:789.435520pt;}
.y6d{bottom:790.688640pt;}
.y2bd{bottom:790.693120pt;}
.y24a{bottom:792.800000pt;}
.y44{bottom:793.399680pt;}
.y339{bottom:793.404160pt;}
.y26c{bottom:793.408640pt;}
.y176{bottom:793.413120pt;}
.y650{bottom:793.426560pt;}
.y28f{bottom:793.431040pt;}
.y69c{bottom:793.435520pt;}
.y6b1{bottom:793.440000pt;}
.y1e4{bottom:794.240000pt;}
.y542{bottom:796.137600pt;}
.y5ae{bottom:796.151040pt;}
.y657{bottom:797.422080pt;}
.y44f{bottom:798.560000pt;}
.y583{bottom:801.307520pt;}
.y8a{bottom:801.407360pt;}
.y107{bottom:801.417600pt;}
.y18f{bottom:801.435520pt;}
.y4bf{bottom:802.626560pt;}
.y70c{bottom:803.191200pt;}
.y2e0{bottom:804.160000pt;}
.ybf{bottom:805.408640pt;}
.y206{bottom:805.413120pt;}
.y131{bottom:805.422080pt;}
.y5f9{bottom:805.440000pt;}
.y22{bottom:805.760000pt;}
.y3b2{bottom:809.413120pt;}
.y31d{bottom:809.435520pt;}
.y35d{bottom:809.440000pt;}
.y249{bottom:810.400000pt;}
.y6c{bottom:810.693120pt;}
.y2bc{bottom:810.697600pt;}
.y508{bottom:811.040000pt;}
.y43{bottom:813.404160pt;}
.y338{bottom:813.408640pt;}
.y26b{bottom:813.413120pt;}
.y175{bottom:813.417600pt;}
.y6b0{bottom:813.422080pt;}
.y64f{bottom:813.431040pt;}
.y28e{bottom:813.435520pt;}
.y69b{bottom:813.440000pt;}
.y582{bottom:815.862400pt;}
.y541{bottom:816.142080pt;}
.y5ad{bottom:816.155520pt;}
.ya0{bottom:816.775680pt;}
.y4be{bottom:817.340800pt;}
.y656{bottom:817.426560pt;}
.y70b{bottom:820.471840pt;}
.y106{bottom:821.422080pt;}
.y18e{bottom:821.440000pt;}
.y1e3{bottom:822.560000pt;}
.y2df{bottom:823.845760pt;}
.ybe{bottom:825.413120pt;}
.y205{bottom:825.417600pt;}
.y130{bottom:825.426560pt;}
.y678{bottom:825.435520pt;}
.y5f8{bottom:827.036160pt;}
.y3b1{bottom:829.417600pt;}
.y31c{bottom:829.440000pt;}
.y89{bottom:830.052480pt;}
.y581{bottom:830.576640pt;}
.y2bb{bottom:830.702080pt;}
.y35c{bottom:831.040000pt;}
.y4bd{bottom:831.895680pt;}
.y42{bottom:833.408640pt;}
.y337{bottom:833.413120pt;}
.y26a{bottom:833.417600pt;}
.y174{bottom:833.422080pt;}
.y6af{bottom:833.426560pt;}
.y6c3{bottom:833.431040pt;}
.y64e{bottom:833.435520pt;}
.y28d{bottom:833.440000pt;}
.y248{bottom:833.595520pt;}
.y540{bottom:836.146560pt;}
.y5ac{bottom:836.160000pt;}
.y655{bottom:837.431040pt;}
.y70a{bottom:837.752480pt;}
.y2de{bottom:838.560000pt;}
.y6b{bottom:839.338240pt;}
.y105{bottom:841.426560pt;}
.y18d{bottom:843.036160pt;}
.y580{bottom:845.290880pt;}
.ybd{bottom:845.417600pt;}
.y9f{bottom:845.420800pt;}
.y204{bottom:845.422080pt;}
.y12f{bottom:845.431040pt;}
.y677{bottom:845.440000pt;}
.y4bc{bottom:846.609920pt;}
.y31b{bottom:849.290880pt;}
.y3b0{bottom:849.422080pt;}
.y2ba{bottom:850.706560pt;}
.y1e2{bottom:850.880000pt;}
.y5f7{bottom:851.040000pt;}
.y41{bottom:853.413120pt;}
.y336{bottom:853.417600pt;}
.y269{bottom:853.422080pt;}
.y173{bottom:853.426560pt;}
.y6ae{bottom:853.431040pt;}
.y6c2{bottom:853.435520pt;}
.y64d{bottom:853.440000pt;}
.y247{bottom:853.600000pt;}
.y28c{bottom:854.240000pt;}
.y709{bottom:855.193920pt;}
.y5ab{bottom:855.856640pt;}
.y53f{bottom:856.151040pt;}
.y654{bottom:857.435520pt;}
.y88{bottom:858.697600pt;}
.y1{bottom:859.312000pt;}
.y57f{bottom:859.845760pt;}
.y4bb{bottom:861.324160pt;}
.y104{bottom:861.431040pt;}
.y31a{bottom:863.845760pt;}
.ybc{bottom:865.422080pt;}
.y203{bottom:865.426560pt;}
.y12e{bottom:865.435520pt;}
.y676{bottom:865.440000pt;}
.y18c{bottom:867.040000pt;}
.y6a{bottom:868.145280pt;}
.y3af{bottom:869.426560pt;}
.y5aa{bottom:870.570880pt;}
.y2b9{bottom:870.711040pt;}
.y245{bottom:871.040000pt;}
.y708{bottom:872.474560pt;}
.y40{bottom:873.417600pt;}
.y335{bottom:873.422080pt;}
.y268{bottom:873.426560pt;}
.y172{bottom:873.431040pt;}
.y6ad{bottom:873.435520pt;}
.y69a{bottom:873.440000pt;}
.y9e{bottom:874.065920pt;}
.y57e{bottom:874.560000pt;}
.y4ba{bottom:875.879040pt;}
.y53e{bottom:876.155520pt;}
.y21{bottom:876.160000pt;}
.y653{bottom:877.440000pt;}
.y319{bottom:878.560000pt;}
.y1e1{bottom:879.200000pt;}
.y103{bottom:881.435520pt;}
.y5a9{bottom:885.285120pt;}
.ybb{bottom:885.426560pt;}
.y202{bottom:885.431040pt;}
.y12d{bottom:885.435520pt;}
.y87{bottom:887.342720pt;}
.y3ae{bottom:889.431040pt;}
.y18b{bottom:889.440000pt;}
.y707{bottom:889.755200pt;}
.y4b9{bottom:890.593280pt;}
.y2b8{bottom:890.715520pt;}
.y3f{bottom:893.422080pt;}
.y334{bottom:893.426560pt;}
.y267{bottom:893.431040pt;}
.y171{bottom:893.435520pt;}
.y699{bottom:893.440000pt;}
.y244{bottom:894.235520pt;}
.y53d{bottom:896.160000pt;}
.y69{bottom:896.790400pt;}
.y652{bottom:899.036160pt;}
.y5a8{bottom:899.840000pt;}
.y102{bottom:901.440000pt;}
.y1dd{bottom:902.240000pt;}
.y9d{bottom:902.711040pt;}
.y4b8{bottom:905.307520pt;}
.yba{bottom:905.431040pt;}
.y201{bottom:905.435520pt;}
.y12c{bottom:905.440000pt;}
.y706{bottom:907.196640pt;}
.y1e0{bottom:909.280000pt;}
.y3ad{bottom:909.435520pt;}
.y2b7{bottom:910.720000pt;}
.y18a{bottom:911.834880pt;}
.y3e{bottom:913.426560pt;}
.y333{bottom:913.431040pt;}
.y266{bottom:913.435520pt;}
.y698{bottom:913.440000pt;}
.y243{bottom:914.240000pt;}
.y5a7{bottom:914.720000pt;}
.y53c{bottom:915.845760pt;}
.y86{bottom:916.149760pt;}
.y4b7{bottom:919.862400pt;}
.y9c{bottom:922.715520pt;}
.y101{bottom:923.040000pt;}
.y705{bottom:924.477280pt;}
.y68{bottom:925.435520pt;}
.y200{bottom:925.440000pt;}
.y6ff{bottom:925.597440pt;}
.y12b{bottom:926.080000pt;}
.y1df{bottom:929.280000pt;}
.y3ac{bottom:929.440000pt;}
.y2b6{bottom:930.560000pt;}
.y241{bottom:931.680000pt;}
.y3d{bottom:933.431040pt;}
.y332{bottom:933.435520pt;}
.y265{bottom:933.440000pt;}
.y4b6{bottom:934.576640pt;}
.y189{bottom:939.837440pt;}
.y704{bottom:941.757920pt;}
.y9b{bottom:942.720000pt;}
.y85{bottom:944.794880pt;}
.y67{bottom:945.440000pt;}
.y12a{bottom:947.036160pt;}
.y3ab{bottom:949.290880pt;}
.y3c{bottom:953.435520pt;}
.y2a9{bottom:953.440000pt;}
.y1dc{bottom:954.080000pt;}
.y264{bottom:954.247040pt;}
.y240{bottom:956.482560pt;}
.y703{bottom:959.199360pt;}
.y3aa{bottom:963.845760pt;}
.y9a{bottom:965.440000pt;}
.y66{bottom:967.840000pt;}
.y129{bottom:971.040000pt;}
.y3b{bottom:973.440000pt;}
.y2a8{bottom:973.920000pt;}
.y263{bottom:974.240000pt;}
.y702{bottom:976.480000pt;}
.y3a9{bottom:978.560000pt;}
.y65{bottom:1042.880000pt;}
.y701{bottom:1048.320000pt;}
.h2e{height:20.000000pt;}
.h16{height:27.515625pt;}
.h14{height:27.984375pt;}
.h7{height:28.560000pt;}
.h12{height:34.167500pt;}
.h26{height:39.243750pt;}
.hb{height:39.278080pt;}
.h31{height:40.000000pt;}
.h6{height:40.800000pt;}
.h1d{height:41.273438pt;}
.h28{height:42.656250pt;}
.h3{height:42.840000pt;}
.h3e{height:42.866250pt;}
.h1b{height:43.250000pt;}
.h23{height:45.675938pt;}
.h18{height:46.454062pt;}
.h10{height:47.232000pt;}
.h27{height:48.000000pt;}
.h2{height:48.960000pt;}
.h11{height:50.602500pt;}
.hc{height:50.628750pt;}
.h20{height:50.646670pt;}
.h17{height:50.651790pt;}
.h34{height:50.664590pt;}
.h21{height:50.682510pt;}
.h3d{height:50.700430pt;}
.h3a{height:50.736270pt;}
.h22{height:50.754190pt;}
.h3c{height:50.772110pt;}
.h13{height:50.779790pt;}
.h1e{height:50.790030pt;}
.h3b{height:50.825870pt;}
.h1f{height:50.879630pt;}
.h24{height:50.994830pt;}
.h2c{height:51.040910pt;}
.h15{height:51.491250pt;}
.h1c{height:51.853545pt;}
.h38{height:51.961065pt;}
.h25{height:52.194025pt;}
.h33{height:52.830000pt;}
.h32{height:53.126960pt;}
.h36{height:53.270320pt;}
.h35{height:55.031250pt;}
.h37{height:55.335890pt;}
.h2b{height:57.835938pt;}
.h2a{height:57.840417pt;}
.h39{height:58.816045pt;}
.h2f{height:60.000000pt;}
.h2d{height:60.446250pt;}
.hf{height:62.733440pt;}
.hd{height:62.818560pt;}
.h29{height:64.235938pt;}
.h5{height:69.360000pt;}
.h1a{height:74.438437pt;}
.h19{height:93.467812pt;}
.he{height:94.336000pt;}
.h30{height:100.000000pt;}
.h4{height:105.826671pt;}
.h9{height:117.248000pt;}
.ha{height:175.872000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h3f{height:1122.720000pt;}
.w4{width:103.998667pt;}
.w9{width:112.800000pt;}
.w5{width:131.520000pt;}
.w8{width:132.640000pt;}
.w7{width:159.041333pt;}
.w6{width:346.878667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x14{left:12.480000pt;}
.x16{left:16.480000pt;}
.x18{left:81.440000pt;}
.x1a{left:89.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1b{left:97.760000pt;}
.x17{left:109.440000pt;}
.x19{left:117.600000pt;}
.x5{left:132.320000pt;}
.xe{left:139.520000pt;}
.x6{left:151.200000pt;}
.x4{left:180.874667pt;}
.x8{left:223.040000pt;}
.x7{left:229.760000pt;}
.xb{left:243.520000pt;}
.xf{left:264.800000pt;}
.x10{left:271.680000pt;}
.x13{left:292.320000pt;}
.xc{left:319.200000pt;}
.x3{left:404.408000pt;}
.x15{left:425.600000pt;}
.xd{left:516.320000pt;}
.x1c{left:550.376960pt;}
.x1f{left:603.212800pt;}
.x9{left:610.234240pt;}
.x12{left:616.961280pt;}
.x1e{left:621.848320pt;}
.x20{left:624.320000pt;}
.x11{left:626.882560pt;}
.x1d{left:633.109120pt;}
}




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