
    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_23f737ba0725b3c254754711.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bce57748687d927b90fb6ba1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e0b4099ceae81be5d9848722.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_686272e3d6e37e5a0732e01d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_682c0812a8fde02d225a1b9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_59d08501fd71e0e49e55245d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f80e5fb03a0f452f8e9ff549.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_769446f8b13ff99b756c844d.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.333984;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_2323c942d2d225f100cc2324.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_190faf320ab40cf6159322ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cadece57181416612b944bcf.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.333984;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_7f356eacd52215e408222de4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_d127ed3d26d8376fbc1e1cfc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960449;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;}
.md{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m10{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,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);}
.m11{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251379,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252777,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252916,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253897,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,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);}
.v16{vertical-align:-36.000000px;}
.v4{vertical-align:-28.800000px;}
.v15{vertical-align:-25.320000px;}
.v6{vertical-align:-21.630000px;}
.v8{vertical-align:-13.522921px;}
.vb{vertical-align:-11.972554px;}
.v1a{vertical-align:-10.800000px;}
.v1{vertical-align:-7.140000px;}
.va{vertical-align:-4.507640px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.140000px;}
.v9{vertical-align:13.522921px;}
.v5{vertical-align:21.600000px;}
.v11{vertical-align:25.380000px;}
.v3{vertical-align:28.800000px;}
.v1e{vertical-align:32.400000px;}
.v7{vertical-align:36.120000px;}
.v17{vertical-align:43.140000px;}
.v10{vertical-align:46.800000px;}
.ve{vertical-align:54.180000px;}
.v13{vertical-align:57.600000px;}
.vf{vertical-align:61.140000px;}
.vd{vertical-align:64.740000px;}
.v1f{vertical-align:68.400000px;}
.vc{vertical-align:72.180000px;}
.v12{vertical-align:79.200000px;}
.v18{vertical-align:97.140000px;}
.v19{vertical-align:100.740000px;}
.v1b{vertical-align:104.400000px;}
.v1d{vertical-align:108.000000px;}
.v14{vertical-align:144.120000px;}
.v1c{vertical-align:158.400000px;}
.lsb7{letter-spacing:-5.472000px;}
.lsb4{letter-spacing:-3.528000px;}
.ls52{letter-spacing:-3.456000px;}
.lsb2{letter-spacing:-2.952000px;}
.lsb6{letter-spacing:-2.088000px;}
.lsac{letter-spacing:-1.877608px;}
.lsaf{letter-spacing:-1.872234px;}
.ls6d{letter-spacing:-1.872000px;}
.lsa9{letter-spacing:-1.868112px;}
.ls3a{letter-spacing:-1.800000px;}
.ls99{letter-spacing:-1.740000px;}
.ls58{letter-spacing:-1.728000px;}
.ls5a{letter-spacing:-1.686000px;}
.ls11{letter-spacing:-1.656000px;}
.ls64{letter-spacing:-1.638000px;}
.ls5d{letter-spacing:-1.620000px;}
.lsb5{letter-spacing:-1.606282px;}
.lsa4{letter-spacing:-1.542000px;}
.ls5b{letter-spacing:-1.518000px;}
.ls54{letter-spacing:-1.512000px;}
.lsbb{letter-spacing:-1.440000px;}
.ls6b{letter-spacing:-1.404000px;}
.ls96{letter-spacing:-1.386000px;}
.lsb{letter-spacing:-1.296000px;}
.ls67{letter-spacing:-1.278000px;}
.ls3{letter-spacing:-1.224000px;}
.ls19{letter-spacing:-1.110000px;}
.ls12{letter-spacing:-1.008000px;}
.ls7a{letter-spacing:-0.936000px;}
.ls61{letter-spacing:-0.900000px;}
.ls7b{letter-spacing:-0.864000px;}
.lsc6{letter-spacing:-0.792000px;}
.lsad{letter-spacing:-0.784056px;}
.lsb0{letter-spacing:-0.781812px;}
.lsaa{letter-spacing:-0.780091px;}
.ls4f{letter-spacing:-0.754658px;}
.ls7{letter-spacing:-0.744000px;}
.ls7c{letter-spacing:-0.720000px;}
.ls9d{letter-spacing:-0.708000px;}
.lsf{letter-spacing:-0.672000px;}
.lsa5{letter-spacing:-0.658146px;}
.ls53{letter-spacing:-0.654000px;}
.lse{letter-spacing:-0.648000px;}
.lsa3{letter-spacing:-0.579649px;}
.ls4a{letter-spacing:-0.570968px;}
.ls4b{letter-spacing:-0.564021px;}
.ls4e{letter-spacing:-0.559168px;}
.ls9f{letter-spacing:-0.523923px;}
.ls9e{letter-spacing:-0.521342px;}
.lsa{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.453600px;}
.ls1a{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.306000px;}
.ls92{letter-spacing:-0.288000px;}
.lsa0{letter-spacing:-0.244800px;}
.lsba{letter-spacing:-0.237600px;}
.ls55{letter-spacing:-0.216000px;}
.ls6c{letter-spacing:-0.194400px;}
.ls9b{letter-spacing:-0.187200px;}
.ls18{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls8a{letter-spacing:0.007200px;}
.ls2e{letter-spacing:0.019200px;}
.ls43{letter-spacing:0.036000px;}
.lsb3{letter-spacing:0.055200px;}
.lsc1{letter-spacing:0.069600px;}
.ls3e{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.079200px;}
.ls24{letter-spacing:0.086400px;}
.ls51{letter-spacing:0.115200px;}
.lsbc{letter-spacing:0.129600px;}
.ls21{letter-spacing:0.139200px;}
.ls39{letter-spacing:0.144000px;}
.ls75{letter-spacing:0.180000px;}
.lsbf{letter-spacing:0.189600px;}
.ls2f{letter-spacing:0.199200px;}
.ls36{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.216000px;}
.lsbe{letter-spacing:0.249600px;}
.ls30{letter-spacing:0.259200px;}
.ls31{letter-spacing:0.288000px;}
.lsbd{letter-spacing:0.309600px;}
.ls3b{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.496800px;}
.ls16{letter-spacing:0.648000px;}
.ls93{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.696000px;}
.ls41{letter-spacing:0.698400px;}
.ls97{letter-spacing:0.768000px;}
.lsa7{letter-spacing:0.780000px;}
.ls7e{letter-spacing:0.864000px;}
.ls9a{letter-spacing:0.912000px;}
.ls27{letter-spacing:0.936000px;}
.lsb9{letter-spacing:0.948000px;}
.ls94{letter-spacing:0.978000px;}
.ls22{letter-spacing:1.008000px;}
.lsa1{letter-spacing:1.036800px;}
.lsc5{letter-spacing:1.043550px;}
.lsc4{letter-spacing:1.044000px;}
.ls37{letter-spacing:1.068000px;}
.ls56{letter-spacing:1.080000px;}
.ls60{letter-spacing:1.166400px;}
.ls25{letter-spacing:1.180800px;}
.lsab{letter-spacing:1.200000px;}
.ls80{letter-spacing:1.207200px;}
.ls0{letter-spacing:1.218000px;}
.ls23{letter-spacing:1.224000px;}
.ls26{letter-spacing:1.240800px;}
.ls81{letter-spacing:1.267200px;}
.ls8f{letter-spacing:1.274400px;}
.ls14{letter-spacing:1.296000px;}
.ls95{letter-spacing:1.302000px;}
.ls5e{letter-spacing:1.308000px;}
.ls7f{letter-spacing:1.327200px;}
.ls5f{letter-spacing:1.368000px;}
.ls62{letter-spacing:1.374000px;}
.lsb1{letter-spacing:1.412400px;}
.lsd{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.470000px;}
.ls32{letter-spacing:1.472400px;}
.ls98{letter-spacing:1.500000px;}
.lsc{letter-spacing:1.512000px;}
.ls91{letter-spacing:1.548000px;}
.ls9c{letter-spacing:1.560000px;}
.ls63{letter-spacing:1.578000px;}
.ls38{letter-spacing:1.592400px;}
.ls40{letter-spacing:1.652400px;}
.ls6e{letter-spacing:1.656000px;}
.ls6{letter-spacing:1.668000px;}
.ls2c{letter-spacing:1.722000px;}
.ls2d{letter-spacing:1.728000px;}
.ls2a{letter-spacing:1.752000px;}
.ls15{letter-spacing:1.758000px;}
.ls59{letter-spacing:1.764000px;}
.ls28{letter-spacing:1.771200px;}
.ls66{letter-spacing:1.788000px;}
.ls4{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.833600px;}
.ls3c{letter-spacing:1.848000px;}
.ls13{letter-spacing:1.872000px;}
.ls1b{letter-spacing:1.893600px;}
.ls65{letter-spacing:1.922400px;}
.ls1e{letter-spacing:1.953600px;}
.ls5{letter-spacing:2.008800px;}
.ls1d{letter-spacing:2.013600px;}
.ls35{letter-spacing:2.043600px;}
.ls1f{letter-spacing:2.073600px;}
.lsa8{letter-spacing:2.196000px;}
.ls8d{letter-spacing:2.580000px;}
.ls85{letter-spacing:2.808000px;}
.lsb8{letter-spacing:3.096000px;}
.lsa6{letter-spacing:3.144000px;}
.ls73{letter-spacing:3.218400px;}
.lsa2{letter-spacing:3.354000px;}
.ls68{letter-spacing:3.355200px;}
.ls78{letter-spacing:3.600000px;}
.lsae{letter-spacing:3.732000px;}
.lsc3{letter-spacing:3.789600px;}
.lsc2{letter-spacing:3.849600px;}
.ls6a{letter-spacing:4.296000px;}
.ls8e{letter-spacing:4.820400px;}
.ls69{letter-spacing:4.884000px;}
.ls3f{letter-spacing:5.072400px;}
.ls5c{letter-spacing:5.328000px;}
.ls29{letter-spacing:5.976000px;}
.ls44{letter-spacing:8.928000px;}
.ls72{letter-spacing:9.624000px;}
.ls84{letter-spacing:10.800000px;}
.ls88{letter-spacing:12.216000px;}
.ls76{letter-spacing:13.104000px;}
.ls34{letter-spacing:14.215200px;}
.ls82{letter-spacing:15.696000px;}
.ls70{letter-spacing:15.744000px;}
.ls77{letter-spacing:18.216000px;}
.ls89{letter-spacing:21.936000px;}
.ls90{letter-spacing:23.472000px;}
.ls6f{letter-spacing:24.818400px;}
.ls57{letter-spacing:29.371950px;}
.ls7d{letter-spacing:36.216000px;}
.ls8b{letter-spacing:38.872800px;}
.ls86{letter-spacing:39.218400px;}
.ls79{letter-spacing:44.256000px;}
.lsc0{letter-spacing:53.905200px;}
.ls42{letter-spacing:55.584000px;}
.ls3d{letter-spacing:55.860000px;}
.ls71{letter-spacing:64.538400px;}
.ls87{letter-spacing:102.276000px;}
.ls83{letter-spacing:104.796000px;}
.ls74{letter-spacing:132.938400px;}
.ls8c{letter-spacing:264.626400px;}
.ls48{letter-spacing:854.515639px;}
.ls4d{letter-spacing:925.328998px;}
.ls46{letter-spacing:1012.658689px;}
.ls50{letter-spacing:1088.218202px;}
.ls47{letter-spacing:1148.488919px;}
.ls4c{letter-spacing:1230.256537px;}
.ls49{letter-spacing:1240.935643px;}
.ls45{letter-spacing:1256.218707px;}
.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;}
}
.ws25{word-spacing:-72.000000px;}
.ws5b{word-spacing:-61.200000px;}
.ws50{word-spacing:-29.337000px;}
.ws51{word-spacing:-27.609000px;}
.ws52{word-spacing:-23.181000px;}
.wsca{word-spacing:-23.045100px;}
.wsa{word-spacing:-22.001100px;}
.wsc3{word-spacing:-21.695409px;}
.ws53{word-spacing:-21.417000px;}
.ws1{word-spacing:-19.930800px;}
.ws54{word-spacing:-19.731000px;}
.wsc6{word-spacing:-18.847200px;}
.ws28{word-spacing:-18.421975px;}
.ws0{word-spacing:-18.406800px;}
.ws40{word-spacing:-18.406180px;}
.ws4a{word-spacing:-18.378534px;}
.wsa4{word-spacing:-18.234677px;}
.ws2d{word-spacing:-18.197855px;}
.ws14{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws36{word-spacing:-18.041249px;}
.ws3e{word-spacing:-17.956963px;}
.wsc9{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsc7{word-spacing:-17.661600px;}
.ws42{word-spacing:-17.582738px;}
.ws15{word-spacing:-17.568000px;}
.ws1c{word-spacing:-17.496000px;}
.ws4f{word-spacing:-17.352000px;}
.ws1b{word-spacing:-17.280000px;}
.ws64{word-spacing:-17.208000px;}
.ws98{word-spacing:-17.100101px;}
.ws5c{word-spacing:-16.920000px;}
.wsb1{word-spacing:-16.903626px;}
.wsb8{word-spacing:-16.855249px;}
.wsa8{word-spacing:-16.818144px;}
.ws47{word-spacing:-16.750097px;}
.ws6{word-spacing:-16.653600px;}
.ws17{word-spacing:-16.632000px;}
.ws20{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.488000px;}
.ws24{word-spacing:-16.416000px;}
.ws1d{word-spacing:-16.396800px;}
.ws1f{word-spacing:-16.366800px;}
.ws23{word-spacing:-16.344000px;}
.ws7{word-spacing:-16.312800px;}
.ws44{word-spacing:-16.309944px;}
.wsc{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.128000px;}
.ws8a{word-spacing:-16.059819px;}
.ws4e{word-spacing:-16.056000px;}
.ws1a{word-spacing:-15.912000px;}
.wsb0{word-spacing:-15.844800px;}
.ws63{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.624000px;}
.ws21{word-spacing:-15.580800px;}
.ws67{word-spacing:-15.552000px;}
.wsa7{word-spacing:-15.424800px;}
.wsb{word-spacing:-15.340800px;}
.ws62{word-spacing:-15.336000px;}
.ws13{word-spacing:-15.264000px;}
.ws5a{word-spacing:-15.205200px;}
.ws76{word-spacing:-15.168000px;}
.ws1e{word-spacing:-15.141600px;}
.ws65{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.048000px;}
.ws61{word-spacing:-14.976000px;}
.wsc8{word-spacing:-14.832000px;}
.ws4d{word-spacing:-14.760000px;}
.ws5{word-spacing:-14.644800px;}
.ws12{word-spacing:-14.616000px;}
.ws82{word-spacing:-14.515860px;}
.ws60{word-spacing:-14.450400px;}
.ws7c{word-spacing:-14.444370px;}
.ws75{word-spacing:-14.256000px;}
.ws9{word-spacing:-14.191200px;}
.wsc5{word-spacing:-14.184000px;}
.ws4c{word-spacing:-13.990800px;}
.ws8{word-spacing:-13.900800px;}
.ws59{word-spacing:-13.831200px;}
.ws19{word-spacing:-13.534800px;}
.ws58{word-spacing:-13.420800px;}
.wsbf{word-spacing:-13.320000px;}
.ws5f{word-spacing:-13.240800px;}
.ws55{word-spacing:-13.126800px;}
.ws95{word-spacing:-13.102800px;}
.ws56{word-spacing:-13.024800px;}
.ws4b{word-spacing:-12.816000px;}
.wsc1{word-spacing:-12.744000px;}
.ws6c{word-spacing:-12.636000px;}
.ws70{word-spacing:-12.588000px;}
.ws6d{word-spacing:-12.390000px;}
.ws16{word-spacing:-12.334800px;}
.ws29{word-spacing:-12.267168px;}
.wscd{word-spacing:-12.204000px;}
.ws5d{word-spacing:-12.193200px;}
.ws2e{word-spacing:-12.117926px;}
.ws6b{word-spacing:-12.066000px;}
.ws37{word-spacing:-12.013643px;}
.ws6a{word-spacing:-11.784000px;}
.ws68{word-spacing:-11.772000px;}
.ws6f{word-spacing:-11.344800px;}
.ws69{word-spacing:-11.088000px;}
.ws7a{word-spacing:-10.576800px;}
.ws77{word-spacing:-10.296000px;}
.ws78{word-spacing:-10.272000px;}
.ws10{word-spacing:-9.904800px;}
.ws57{word-spacing:-9.763200px;}
.ws71{word-spacing:-9.348000px;}
.ws5e{word-spacing:-9.298800px;}
.ws6e{word-spacing:-9.190800px;}
.ws79{word-spacing:-8.796000px;}
.ws2{word-spacing:0.000000px;}
.ws73{word-spacing:14.515200px;}
.ws66{word-spacing:14.925600px;}
.ws74{word-spacing:24.998400px;}
.ws72{word-spacing:28.718400px;}
.ws9f{word-spacing:48.097594px;}
.ws96{word-spacing:70.281523px;}
.wsa3{word-spacing:74.944640px;}
.ws8f{word-spacing:88.661663px;}
.ws7b{word-spacing:102.196671px;}
.ws81{word-spacing:102.702477px;}
.wsa0{word-spacing:117.254640px;}
.ws90{word-spacing:117.998920px;}
.wsa1{word-spacing:123.459101px;}
.ws92{word-spacing:123.825934px;}
.ws93{word-spacing:127.744637px;}
.ws88{word-spacing:132.964267px;}
.wsa6{word-spacing:134.848437px;}
.wsa2{word-spacing:136.019353px;}
.ws89{word-spacing:139.662887px;}
.ws8e{word-spacing:143.754073px;}
.ws8d{word-spacing:155.388079px;}
.ws8c{word-spacing:159.408203px;}
.ws97{word-spacing:161.139855px;}
.ws9e{word-spacing:169.841234px;}
.ws9c{word-spacing:194.810408px;}
.ws7d{word-spacing:199.101392px;}
.ws83{word-spacing:200.086812px;}
.ws9a{word-spacing:203.284794px;}
.ws80{word-spacing:213.271511px;}
.ws87{word-spacing:214.327064px;}
.ws7e{word-spacing:220.356571px;}
.wsc4{word-spacing:220.943276px;}
.ws84{word-spacing:221.447190px;}
.wscc{word-spacing:240.546437px;}
.wsc2{word-spacing:243.941895px;}
.wsaf{word-spacing:245.732916px;}
.wsad{word-spacing:245.856088px;}
.wsbd{word-spacing:246.398508px;}
.wsb6{word-spacing:247.105707px;}
.ws86{word-spacing:253.487757px;}
.wsae{word-spacing:263.735737px;}
.wsbe{word-spacing:264.317605px;}
.wsb7{word-spacing:265.076234px;}
.ws7f{word-spacing:267.758719px;}
.ws85{word-spacing:269.083948px;}
.wscb{word-spacing:273.025265px;}
.wsc0{word-spacing:276.308184px;}
.wsaa{word-spacing:277.714077px;}
.wsba{word-spacing:278.326784px;}
.wsb3{word-spacing:279.125622px;}
.wsa9{word-spacing:286.781779px;}
.wsb9{word-spacing:287.414491px;}
.wsb2{word-spacing:288.239412px;}
.ws94{word-spacing:345.100661px;}
.wsab{word-spacing:358.039491px;}
.wsbb{word-spacing:358.829416px;}
.wsb4{word-spacing:359.859308px;}
.ws8b{word-spacing:364.794281px;}
.ws91{word-spacing:380.549177px;}
.wsa5{word-spacing:411.487526px;}
.ws99{word-spacing:436.210719px;}
.ws9d{word-spacing:437.089681px;}
.ws9b{word-spacing:474.037034px;}
.ws43{word-spacing:614.098574px;}
.ws34{word-spacing:643.969455px;}
.ws2b{word-spacing:649.559360px;}
.ws26{word-spacing:657.559177px;}
.wsac{word-spacing:802.722962px;}
.wsbc{word-spacing:804.493971px;}
.wsb5{word-spacing:806.802984px;}
.ws3a{word-spacing:818.814185px;}
.ws32{word-spacing:825.921811px;}
.ws45{word-spacing:848.154805px;}
.ws46{word-spacing:860.919244px;}
.ws3d{word-spacing:908.307967px;}
.ws48{word-spacing:926.289693px;}
.ws49{word-spacing:946.872150px;}
.ws38{word-spacing:987.116286px;}
.ws2f{word-spacing:995.684839px;}
.ws3b{word-spacing:1031.025292px;}
.ws39{word-spacing:1062.383193px;}
.ws31{word-spacing:1098.321897px;}
.ws41{word-spacing:1131.190175px;}
.ws33{word-spacing:1142.144135px;}
.ws3c{word-spacing:1201.931981px;}
.ws3f{word-spacing:1219.843161px;}
.ws30{word-spacing:1258.993419px;}
.ws35{word-spacing:1269.620283px;}
.ws2a{word-spacing:1274.498879px;}
.ws27{word-spacing:1296.413148px;}
.ws2c{word-spacing:1320.716288px;}
._12{margin-left:-11.824800px;}
._10{margin-left:-10.066800px;}
._f{margin-left:-7.706400px;}
._11{margin-left:-6.666000px;}
._1c{margin-left:-5.437200px;}
._e{margin-left:-4.338000px;}
._13{margin-left:-3.328800px;}
._5{margin-left:-2.318400px;}
._0{margin-left:-1.159200px;}
._4{width:1.407600px;}
._1{width:2.566800px;}
._7{width:4.412400px;}
._2{width:5.464800px;}
._6{width:6.624000px;}
._14{width:8.142000px;}
._8{width:10.101600px;}
._38{width:11.148000px;}
._1d{width:12.186000px;}
._3{width:13.248000px;}
._21{width:15.223200px;}
._5d{width:16.503600px;}
._1a{width:17.755200px;}
._57{width:18.908400px;}
._15{width:19.929600px;}
._1b{width:21.224400px;}
._56{width:22.287600px;}
._17{width:23.306400px;}
._27{width:25.035600px;}
._18{width:26.071200px;}
._16{width:27.320400px;}
._3c{width:28.572000px;}
._19{width:30.096000px;}
._1e{width:31.724400px;}
._20{width:33.778800px;}
._1f{width:35.290800px;}
._35{width:36.298800px;}
._29{width:37.971600px;}
._37{width:39.465600px;}
._3b{width:40.790400px;}
._2c{width:42.015600px;}
._36{width:43.039200px;}
._2b{width:44.110800px;}
._28{width:45.417600px;}
._8f{width:46.958400px;}
._22{width:48.355200px;}
._2a{width:49.417200px;}
._59{width:50.850000px;}
._25{width:52.689600px;}
._58{width:54.338400px;}
._23{width:56.182800px;}
._a3{width:57.508800px;}
._26{width:59.077200px;}
._5c{width:60.298800px;}
._24{width:63.324000px;}
._ba{width:65.724293px;}
._2e{width:66.906000px;}
._b2{width:70.087200px;}
._2d{width:71.128800px;}
._3a{width:73.782000px;}
._2f{width:74.790000px;}
._39{width:77.292000px;}
._ad{width:79.003200px;}
._33{width:81.194400px;}
._9{width:84.406800px;}
._30{width:85.426800px;}
._b3{width:87.021600px;}
._32{width:88.146000px;}
._61{width:89.851659px;}
._31{width:91.432800px;}
._34{width:95.583600px;}
._aa{width:97.130850px;}
._98{width:99.747347px;}
._5a{width:105.614400px;}
._91{width:111.517598px;}
._b{width:113.313600px;}
._7f{width:117.559827px;}
._67{width:121.690610px;}
._a{width:123.879600px;}
._b9{width:126.455368px;}
._62{width:128.045922px;}
._b4{width:130.468153px;}
._a8{width:132.042403px;}
._af{width:134.106558px;}
._68{width:135.117968px;}
._63{width:139.283289px;}
._b8{width:140.727147px;}
._65{width:142.788279px;}
._7e{width:145.543928px;}
._c{width:146.757600px;}
._b6{width:148.199121px;}
._73{width:149.223319px;}
._74{width:150.294234px;}
._70{width:152.226470px;}
._72{width:154.232958px;}
._83{width:160.214252px;}
._76{width:165.175152px;}
._6f{width:168.287206px;}
._7c{width:169.342493px;}
._7a{width:174.150113px;}
._79{width:176.991324px;}
._75{width:180.930048px;}
._95{width:182.229505px;}
._90{width:183.467747px;}
._5b{width:185.157600px;}
._78{width:189.615598px;}
._93{width:190.949768px;}
._a7{width:193.202526px;}
._6e{width:197.758412px;}
._d{width:200.028000px;}
._86{width:201.774864px;}
._6b{width:212.550442px;}
._5f{width:213.727612px;}
._69{width:214.989807px;}
._71{width:217.893988px;}
._89{width:222.738894px;}
._5e{width:224.639231px;}
._66{width:229.296069px;}
._6d{width:230.407983px;}
._88{width:234.768114px;}
._94{width:242.119775px;}
._81{width:260.046196px;}
._96{width:264.819203px;}
._82{width:268.279088px;}
._8d{width:272.981045px;}
._4b{width:280.008021px;}
._97{width:281.894680px;}
._8b{width:289.932346px;}
._8c{width:298.303156px;}
._9b{width:299.954244px;}
._a2{width:301.186046px;}
._9f{width:302.236739px;}
._84{width:305.540960px;}
._8e{width:306.589629px;}
._a6{width:310.112421px;}
._9a{width:313.735287px;}
._60{width:330.533380px;}
._6a{width:332.978712px;}
._a4{width:351.460849px;}
._9e{width:352.469829px;}
._55{width:371.177005px;}
._99{width:388.779360px;}
._9c{width:390.989657px;}
._a0{width:392.953383px;}
._80{width:476.630825px;}
._77{width:492.325656px;}
._7b{width:508.080552px;}
._7d{width:512.598761px;}
._64{width:595.615292px;}
._6c{width:598.545982px;}
._b5{width:610.615538px;}
._a9{width:618.737731px;}
._8a{width:623.954129px;}
._b7{width:625.629614px;}
._ab{width:634.176920px;}
._4a{width:655.420423px;}
._85{width:661.908531px;}
._ae{width:663.309254px;}
._51{width:667.034967px;}
._92{width:678.955610px;}
._b0{width:680.470920px;}
._87{width:699.583343px;}
._45{width:754.955453px;}
._ac{width:763.944847px;}
._bb{width:767.605867px;}
._b1{width:808.000680px;}
._47{width:813.474841px;}
._9d{width:817.806457px;}
._a5{width:819.605263px;}
._a1{width:821.950518px;}
._3d{width:848.598000px;}
._54{width:884.429257px;}
._43{width:989.475379px;}
._4e{width:1000.292247px;}
._49{width:1002.092575px;}
._4d{width:1016.389455px;}
._3e{width:1023.049836px;}
._44{width:1032.169375px;}
._40{width:1045.914463px;}
._46{width:1059.335658px;}
._52{width:1061.802491px;}
._48{width:1065.313223px;}
._50{width:1093.140471px;}
._4c{width:1113.066633px;}
._41{width:1126.192356px;}
._53{width:1160.577341px;}
._4f{width:1197.406843px;}
._3f{width:1201.386996px;}
._42{width:1302.654348px;}
.fc1{color:rgb(46,116,181);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:39.600000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:46.800000px;}
.fs14{font-size:48.056502px;}
.fs1b{font-size:50.400000px;}
.fsf{font-size:53.157713px;}
.fsd{font-size:53.619142px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:54.279503px;}
.fs6{font-size:61.200000px;}
.fs1e{font-size:63.913142px;}
.fs20{font-size:64.229469px;}
.fs2{font-size:64.800000px;}
.fs19{font-size:68.400000px;}
.fs2d{font-size:69.008035px;}
.fs2b{font-size:69.837804px;}
.fs23{font-size:71.061146px;}
.fs1f{font-size:71.145807px;}
.fs2e{font-size:71.316716px;}
.fs21{font-size:71.497931px;}
.fs3{font-size:72.000000px;}
.fs13{font-size:72.167896px;}
.fs15{font-size:72.668777px;}
.fs16{font-size:74.115476px;}
.fs28{font-size:74.416568px;}
.fs2a{font-size:74.580749px;}
.fs29{font-size:74.794807px;}
.fs25{font-size:75.664164px;}
.fs1c{font-size:75.893905px;}
.fs12{font-size:77.799726px;}
.fs2c{font-size:78.041040px;}
.fs22{font-size:78.938594px;}
.fs9{font-size:79.200000px;}
.fs10{font-size:79.455588px;}
.fs17{font-size:79.743137px;}
.fse{font-size:79.828538px;}
.fsc{font-size:80.521480px;}
.fs27{font-size:80.684413px;}
.fs18{font-size:81.320949px;}
.fs11{font-size:81.443274px;}
.fsa{font-size:81.513163px;}
.fs0{font-size:82.800000px;}
.fs24{font-size:84.051877px;}
.fs26{font-size:89.628644px;}
.fs4{font-size:97.350000px;}
.fs1{font-size:118.950000px;}
.fs1a{font-size:133.350000px;}
.y0{bottom:0.000000px;}
.y331{bottom:4.428162px;}
.y34d{bottom:4.450106px;}
.y32a{bottom:4.457683px;}
.y335{bottom:4.465064px;}
.y349{bottom:4.479773px;}
.y355{bottom:4.487190px;}
.y379{bottom:4.923405px;}
.y38e{bottom:4.956228px;}
.y398{bottom:4.964433px;}
.y394{bottom:4.972639px;}
.y3b1{bottom:5.242321px;}
.y3c8{bottom:5.277270px;}
.y3d2{bottom:5.286007px;}
.y3ce{bottom:5.294744px;}
.y32e{bottom:5.313795px;}
.y327{bottom:5.343316px;}
.y346{bottom:5.369778px;}
.y3e1{bottom:5.590169px;}
.y3e7{bottom:5.627436px;}
.y3fd{bottom:5.636753px;}
.y3ea{bottom:5.646070px;}
.y45f{bottom:5.729975px;}
.y376{bottom:5.908086px;}
.y243{bottom:5.986277px;}
.y249{bottom:5.986327px;}
.y247{bottom:6.019534px;}
.y254{bottom:6.027776px;}
.y4a5{bottom:6.071728px;}
.y263{bottom:6.136794px;}
.y454{bottom:6.144654px;}
.y44f{bottom:6.144694px;}
.y265{bottom:6.162179px;}
.y33d{bottom:6.197508px;}
.y35b{bottom:6.224464px;}
.y4aa{bottom:6.274816px;}
.y23b{bottom:6.441853px;}
.y23d{bottom:6.468441px;}
.y26a{bottom:6.602767px;}
.y22d{bottom:6.621327px;}
.y220{bottom:6.621803px;}
.y26c{bottom:6.630075px;}
.y21d{bottom:6.667787px;}
.y225{bottom:6.676959px;}
.y272{bottom:6.699911px;}
.y20b{bottom:6.725584px;}
.y211{bottom:6.734861px;}
.y274{bottom:6.776768px;}
.y204{bottom:6.799053px;}
.y1fc{bottom:6.808455px;}
.y45d{bottom:6.866574px;}
.y3a0{bottom:6.876356px;}
.y252{bottom:7.082710px;}
.y438{bottom:7.173296px;}
.y42c{bottom:7.193885px;}
.y420{bottom:7.204550px;}
.y3da{bottom:7.321775px;}
.y22b{bottom:7.699155px;}
.y223{bottom:7.704741px;}
.y20f{bottom:7.767169px;}
.y405{bottom:7.823771px;}
.y231{bottom:7.885241px;}
.y233{bottom:7.892152px;}
.y209{bottom:8.951985px;}
.y1fe{bottom:9.062276px;}
.y202{bottom:9.062332px;}
.y2b0{bottom:13.500000px;}
.y106{bottom:14.385000px;}
.ye9{bottom:14.400000px;}
.y124{bottom:14.407500px;}
.y11f{bottom:14.415000px;}
.yed{bottom:14.430000px;}
.yfa{bottom:14.445000px;}
.yeb{bottom:15.285000px;}
.y109{bottom:15.292500px;}
.yef{bottom:15.300000px;}
.yf8{bottom:15.315000px;}
.yf2{bottom:15.330000px;}
.y104{bottom:15.345000px;}
.y33b{bottom:27.526933px;}
.y359{bottom:27.658715px;}
.y4a4{bottom:29.437647px;}
.y2dd{bottom:29.685000px;}
.y2cc{bottom:29.700000px;}
.y2e1{bottom:29.715000px;}
.y2da{bottom:29.730000px;}
.y2d3{bottom:29.745000px;}
.y453{bottom:29.791531px;}
.y44e{bottom:29.791571px;}
.y4a9{bottom:30.422448px;}
.y39e{bottom:30.549728px;}
.y2cb{bottom:30.585000px;}
.y2cf{bottom:30.600000px;}
.y2e0{bottom:30.615000px;}
.y2d4{bottom:30.630000px;}
.y2c7{bottom:30.645000px;}
.y262{bottom:30.785120px;}
.y2c5{bottom:31.530000px;}
.y2d2{bottom:31.545000px;}
.y437{bottom:32.033718px;}
.y42b{bottom:32.125659px;}
.y23a{bottom:32.315437px;}
.y2d8{bottom:32.445000px;}
.y3d8{bottom:32.528601px;}
.y245{bottom:33.032609px;}
.y41f{bottom:33.035824px;}
.y269{bottom:33.122664px;}
.y250{bottom:33.260198px;}
.y45c{bottom:33.290475px;}
.y403{bottom:34.703606px;}
.y271{bottom:36.097154px;}
.y230{bottom:37.305129px;}
.y22a{bottom:37.471985px;}
.y129{bottom:42.330000px;}
.y2b1{bottom:42.345000px;}
.y12a{bottom:44.130000px;}
.y2af{bottom:44.145000px;}
.y113{bottom:47.730000px;}
.y122{bottom:47.745000px;}
.y357{bottom:49.093267px;}
.y339{bottom:49.741546px;}
.y4a3{bottom:52.803232px;}
.y452{bottom:53.438068px;}
.y44d{bottom:53.438109px;}
.y39c{bottom:54.223101px;}
.y4a8{bottom:54.569734px;}
.y261{bottom:55.476113px;}
.y436{bottom:56.893968px;}
.y42a{bottom:57.057261px;}
.y2ca{bottom:57.630000px;}
.y1a{bottom:57.637500px;}
.y2df{bottom:57.645000px;}
.y2e9{bottom:57.675000px;}
.y3d6{bottom:57.735427px;}
.y41e{bottom:57.841346px;}
.y244{bottom:58.100145px;}
.y239{bottom:58.233809px;}
.y24f{bottom:58.501714px;}
.y268{bottom:59.688469px;}
.y45b{bottom:59.714565px;}
.y401{bottom:61.582890px;}
.y270{bottom:63.204136px;}
.y22f{bottom:65.604799px;}
.y229{bottom:66.149059px;}
.y1ff{bottom:69.051416px;}
.y356{bottom:71.417820px;}
.y338{bottom:71.956160px;}
.y4a2{bottom:76.126943px;}
.y451{bottom:77.042229px;}
.y44c{bottom:77.042269px;}
.y19{bottom:78.337500px;}
.y4a7{bottom:78.673746px;}
.y39b{bottom:78.881154px;}
.y260{bottom:80.167105px;}
.y435{bottom:81.754217px;}
.y429{bottom:81.988864px;}
.y41d{bottom:82.604101px;}
.y24e{bottom:83.743231px;}
.y3d5{bottom:83.990717px;}
.y238{bottom:84.152181px;}
.y2dc{bottom:84.630000px;}
.y2c9{bottom:85.530000px;}
.y2de{bottom:85.545000px;}
.y267{bottom:86.254273px;}
.y45a{bottom:87.227796px;}
.y400{bottom:89.580187px;}
.y26f{bottom:90.311119px;}
.y20c{bottom:92.740708px;}
.y353{bottom:92.852368px;}
.y336{bottom:93.285142px;}
.y228{bottom:93.730195px;}
.y399{bottom:102.554527px;}
.y434{bottom:108.714730px;}
.y428{bottom:109.026756px;}
.y3d3{bottom:109.197542px;}
.y41c{bottom:109.505262px;}
.y2bc{bottom:109.875000px;}
.y24d{bottom:109.989385px;}
.y241{bottom:110.230641px;}
.y480{bottom:111.675000px;}
.y2c8{bottom:112.560000px;}
.y73{bottom:112.575000px;}
.y351{bottom:114.249836px;}
.y1f7{bottom:114.375000px;}
.y333{bottom:114.614123px;}
.y141{bottom:115.275000px;}
.y152{bottom:116.175000px;}
.y3fe{bottom:116.506048px;}
.y1c6{bottom:117.075000px;}
.y26e{bottom:117.418102px;}
.y218{bottom:118.875000px;}
.y227{bottom:120.215390px;}
.y25e{bottom:120.675000px;}
.y189{bottom:122.475000px;}
.y42e{bottom:123.375000px;}
.y181{bottom:124.275000px;}
.y1c8{bottom:125.175000px;}
.ya5{bottom:126.075000px;}
.y396{bottom:126.227900px;}
.ybd{bottom:126.975000px;}
.y1bd{bottom:128.775000px;}
.y303{bottom:130.575000px;}
.y172{bottom:131.475000px;}
.yd6{bottom:132.375000px;}
.y432{bottom:132.897000px;}
.y53{bottom:134.212500px;}
.y3d0{bottom:134.404368px;}
.y433{bottom:134.603679px;}
.y427{bottom:134.990011px;}
.y140{bottom:135.112500px;}
.y24c{bottom:135.230901px;}
.y240{bottom:136.337460px;}
.y41b{bottom:136.363656px;}
.y350{bottom:136.574389px;}
.y332{bottom:136.791836px;}
.y151{bottom:136.912500px;}
.y2e6{bottom:137.812500px;}
.y108{bottom:138.712500px;}
.y36{bottom:139.612500px;}
.y17d{bottom:140.512500px;}
.y72{bottom:142.312500px;}
.y18{bottom:143.212500px;}
.y3fb{bottom:143.385332px;}
.y42d{bottom:144.112500px;}
.y180{bottom:145.012500px;}
.y279{bottom:146.812500px;}
.y18e{bottom:148.612500px;}
.y1bc{bottom:149.512500px;}
.y419{bottom:150.420000px;}
.y395{bottom:150.885953px;}
.y302{bottom:151.305000px;}
.y41a{bottom:151.380000px;}
.y8b{bottom:152.220000px;}
.y25d{bottom:153.120000px;}
.y44a{bottom:154.005000px;}
.y188{bottom:154.905000px;}
.y13f{bottom:155.805000px;}
.y450{bottom:156.547521px;}
.ya4{bottom:156.705000px;}
.y1fa{bottom:157.372994px;}
.y150{bottom:157.620000px;}
.y34e{bottom:158.007454px;}
.y32f{bottom:158.114913px;}
.y1f6{bottom:159.420000px;}
.ybc{bottom:160.305000px;}
.y24b{bottom:160.472418px;}
.y3cf{bottom:160.659658px;}
.y464{bottom:161.205000px;}
.y1c5{bottom:162.105000px;}
.y23f{bottom:162.402708px;}
.yd5{bottom:163.005000px;}
.y52{bottom:163.920000px;}
.y171{bottom:164.805000px;}
.y492{bottom:166.620000px;}
.y1e3{bottom:167.505000px;}
.y40f{bottom:168.405000px;}
.y160{bottom:170.205000px;}
.y71{bottom:171.120000px;}
.y3fa{bottom:171.382629px;}
.y123{bottom:172.005000px;}
.y107{bottom:172.905000px;}
.y35{bottom:172.920000px;}
.y3dc{bottom:173.805000px;}
.y392{bottom:174.567532px;}
.y13e{bottom:175.605000px;}
.y47f{bottom:176.505000px;}
.y14f{bottom:177.420000px;}
.y30e{bottom:178.305000px;}
.y34b{bottom:179.442006px;}
.y442{bottom:179.580000px;}
.y1c0{bottom:180.120000px;}
.y32c{bottom:180.329527px;}
.y21b{bottom:180.651612px;}
.y17{bottom:181.005000px;}
.y207{bottom:181.100973px;}
.y18d{bottom:181.905000px;}
.y1f9{bottom:184.559700px;}
.y17f{bottom:184.650000px;}
.y3cc{bottom:185.875222px;}
.y8a{bottom:186.450000px;}
.ya3{bottom:187.350000px;}
.y187{bottom:188.250000px;}
.y2d5{bottom:189.150000px;}
.y1bb{bottom:190.050000px;}
.ye7{bottom:190.950000px;}
.y1d2{bottom:191.850000px;}
.y51{bottom:192.750000px;}
.ybb{bottom:193.650000px;}
.y27e{bottom:194.550000px;}
.y13d{bottom:195.450000px;}
.y14e{bottom:197.250000px;}
.y390{bottom:198.232698px;}
.y3f8{bottom:198.263769px;}
.y371{bottom:199.050000px;}
.y1e2{bottom:199.950000px;}
.y70{bottom:200.850000px;}
.y278{bottom:201.750000px;}
.y34a{bottom:201.766559px;}
.y32b{bottom:202.544141px;}
.y15f{bottom:202.650000px;}
.y3ac{bottom:203.550000px;}
.y1f5{bottom:204.450000px;}
.y17c{bottom:205.350000px;}
.y34{bottom:206.250000px;}
.y2ae{bottom:207.150000px;}
.y21a{bottom:208.326731px;}
.y1af{bottom:208.950000px;}
.y206{bottom:209.021889px;}
.y40e{bottom:209.850000px;}
.y2a5{bottom:210.750000px;}
.y3ca{bottom:211.073310px;}
.y46c{bottom:211.650000px;}
.y3a5{bottom:212.550000px;}
.y301{bottom:213.450000px;}
.y4af{bottom:214.350000px;}
.y18c{bottom:215.250000px;}
.ya2{bottom:217.050000px;}
.y14d{bottom:217.950000px;}
.y16{bottom:219.750000px;}
.y4b7{bottom:220.650000px;}
.y186{bottom:221.550000px;}
.y50{bottom:222.450000px;}
.y38f{bottom:222.898958px;}
.y347{bottom:223.201107px;}
.yd4{bottom:223.350000px;}
.y328{bottom:223.873122px;}
.ye6{bottom:224.250000px;}
.y3f6{bottom:225.133736px;}
.y1ba{bottom:225.150000px;}
.y1d1{bottom:226.050000px;}
.y1c4{bottom:226.950000px;}
.yba{bottom:227.850000px;}
.y411{bottom:228.750000px;}
.y6f{bottom:229.650000px;}
.y13c{bottom:230.550000px;}
.y36d{bottom:231.450000px;}
.y1e1{bottom:233.295000px;}
.y463{bottom:234.195000px;}
.y15e{bottom:235.980000px;}
.y205{bottom:236.220000px;}
.y195{bottom:236.895000px;}
.y3c9{bottom:237.337337px;}
.y33{bottom:238.695000px;}
.y121{bottom:239.580000px;}
.y105{bottom:240.495000px;}
.y1ae{bottom:241.380000px;}
.y47e{bottom:242.280000px;}
.y49c{bottom:243.195000px;}
.y2a4{bottom:244.095000px;}
.y491{bottom:244.995000px;}
.y344{bottom:245.525676px;}
.y29b{bottom:245.880000px;}
.y325{bottom:246.087736px;}
.y426{bottom:246.120000px;}
.y38c{bottom:246.564125px;}
.y43a{bottom:246.795000px;}
.ya1{bottom:247.695000px;}
.y410{bottom:248.580000px;}
.y308{bottom:250.395000px;}
.y4f{bottom:251.295000px;}
.y25c{bottom:252.195000px;}
.yd3{bottom:253.080000px;}
.y3f5{bottom:253.140350px;}
.y89{bottom:253.995000px;}
.y46e{bottom:254.880000px;}
.y1b9{bottom:255.780000px;}
.y17e{bottom:257.595000px;}
.y15{bottom:258.495000px;}
.y6e{bottom:259.380000px;}
.y1c3{bottom:260.295000px;}
.yb9{bottom:261.195000px;}
.y3c6{bottom:262.535426px;}
.y170{bottom:262.980000px;}
.y1a3{bottom:263.895000px;}
.y36c{bottom:264.795000px;}
.y20e{bottom:265.229997px;}
.y1e0{bottom:265.695000px;}
.y2f8{bottom:266.580000px;}
.y449{bottom:267.495000px;}
.y343{bottom:268.710585px;}
.y324{bottom:269.158461px;}
.y293{bottom:269.280000px;}
.y1bf{bottom:270.195000px;}
.y38a{bottom:270.196469px;}
.y13b{bottom:271.095000px;}
.y32{bottom:271.995000px;}
.y19c{bottom:272.880000px;}
.y103{bottom:273.780000px;}
.y472{bottom:273.795000px;}
.y1ad{bottom:274.695000px;}
.ya0{bottom:277.395000px;}
.y3aa{bottom:278.295000px;}
.y3f3{bottom:280.010309px;}
.y484{bottom:280.080000px;}
.y18b{bottom:280.995000px;}
.y15d{bottom:281.925000px;}
.y307{bottom:282.825000px;}
.yd2{bottom:283.725000px;}
.y25b{bottom:285.525000px;}
.y365{bottom:286.425000px;}
.y88{bottom:287.325000px;}
.y3c4{bottom:287.698566px;}
.y322{bottom:288.225000px;}
.y4e{bottom:289.125000px;}
.y29a{bottom:290.925000px;}
.ye5{bottom:291.825000px;}
.y1c2{bottom:292.725000px;}
.y19b{bottom:293.625000px;}
.y20d{bottom:294.312352px;}
.y277{bottom:294.525000px;}
.y389{bottom:294.862728px;}
.yb8{bottom:295.425000px;}
.y14{bottom:296.325000px;}
.y6d{bottom:297.225000px;}
.y1d0{bottom:298.125000px;}
.y1df{bottom:299.025000px;}
.y462{bottom:299.925000px;}
.y370{bottom:300.825000px;}
.y1be{bottom:301.725000px;}
.y2e5{bottom:302.625000px;}
.y490{bottom:303.525000px;}
.y17b{bottom:304.425000px;}
.y31{bottom:305.325000px;}
.y120{bottom:306.225000px;}
.y3f1{bottom:306.898911px;}
.y1ac{bottom:307.125000px;}
.y9f{bottom:308.025000px;}
.y24a{bottom:308.850000px;}
.y2a3{bottom:309.825000px;}
.y253{bottom:309.835931px;}
.y3ad{bottom:310.215000px;}
.y46b{bottom:310.725000px;}
.y3c3{bottom:313.962593px;}
.yd1{bottom:314.325000px;}
.y1c7{bottom:315.225000px;}
.y31b{bottom:316.125000px;}
.y3db{bottom:317.025000px;}
.y387{bottom:318.527895px;}
.y4d{bottom:318.825000px;}
.y40d{bottom:319.725000px;}
.y47d{bottom:320.625000px;}
.y87{bottom:321.525000px;}
.y3a4{bottom:322.425000px;}
.y2f2{bottom:323.325000px;}
.y48f{bottom:324.225000px;}
.y2c2{bottom:325.125000px;}
.y6c{bottom:326.025000px;}
.y431{bottom:326.925000px;}
.y36f{bottom:327.825000px;}
.yb7{bottom:328.725000px;}
.y372{bottom:329.235000px;}
.y16f{bottom:329.625000px;}
.y36b{bottom:330.570000px;}
.y323{bottom:331.305000px;}
.y1a2{bottom:331.455000px;}
.y14c{bottom:332.370000px;}
.y1cf{bottom:333.255000px;}
.y19a{bottom:334.170000px;}
.y3f0{bottom:334.886891px;}
.y13{bottom:335.070000px;}
.y299{bottom:335.970000px;}
.y341{bottom:336.870000px;}
.y3d9{bottom:337.501280px;}
.y30{bottom:337.755000px;}
.y217{bottom:338.670000px;}
.y22e{bottom:339.105000px;}
.y3c1{bottom:339.160682px;}
.y49b{bottom:339.570000px;}
.y11e{bottom:340.455000px;}
.y102{bottom:341.370000px;}
.y385{bottom:342.209473px;}
.y439{bottom:342.255000px;}
.y2a2{bottom:343.170000px;}
.yd0{bottom:344.070000px;}
.y1de{bottom:344.955000px;}
.y361{bottom:345.870000px;}
.y15c{bottom:346.755000px;}
.y3dd{bottom:347.205000px;}
.y4c{bottom:347.670000px;}
.y306{bottom:348.570000px;}
.y31a{bottom:349.470000px;}
.y20a{bottom:350.204278px;}
.y25a{bottom:351.255000px;}
.y458{bottom:352.170000px;}
.y40c{bottom:353.070000px;}
.y199{bottom:353.955000px;}
.y33c{bottom:354.403770px;}
.y39f{bottom:354.861323px;}
.y86{bottom:354.870000px;}
.y6b{bottom:355.755000px;}
.y2f1{bottom:356.670000px;}
.y4ae{bottom:357.570000px;}
.y1c1{bottom:358.455000px;}
.ye4{bottom:359.370000px;}
.y49a{bottom:360.255000px;}
.y3ee{bottom:361.775484px;}
.y16e{bottom:362.070000px;}
.y3d7{bottom:362.708106px;}
.yb6{bottom:362.970000px;}
.y36a{bottom:363.870000px;}
.y3bf{bottom:364.376245px;}
.y287{bottom:364.755000px;}
.y2f7{bottom:365.670000px;}
.y448{bottom:366.570000px;}
.y384{bottom:366.859321px;}
.y292{bottom:367.455000px;}
.y9e{bottom:368.370000px;}
.y17a{bottom:370.170000px;}
.y2f{bottom:371.070000px;}
.y2ad{bottom:371.955000px;}
.y12{bottom:373.755000px;}
.ycf{bottom:374.670000px;}
.y101{bottom:375.570000px;}
.y33a{bottom:375.732752px;}
.y404{bottom:376.318430px;}
.y2a1{bottom:376.470000px;}
.y4b{bottom:377.370000px;}
.y1a1{bottom:378.255000px;}
.y39d{bottom:378.534696px;}
.y127{bottom:380.100000px;}
.y208{bottom:380.399833px;}
.y465{bottom:381.000000px;}
.y48e{bottom:381.900000px;}
.y4b3{bottom:382.800000px;}
.y46d{bottom:383.700000px;}
.y6a{bottom:384.600000px;}
.y40b{bottom:385.500000px;}
.y1eb{bottom:386.400000px;}
.y85{bottom:388.200000px;}
.y3ec{bottom:388.645451px;}
.y4b6{bottom:389.100000px;}
.y2f0{bottom:390.000000px;}
.y382{bottom:390.540900px;}
.y3be{bottom:390.622798px;}
.y2c1{bottom:390.900000px;}
.y30d{bottom:391.800000px;}
.ye3{bottom:392.700000px;}
.y198{bottom:394.500000px;}
.y16d{bottom:395.400000px;}
.yb5{bottom:396.300000px;}
.y3a3{bottom:397.200000px;}
.y286{bottom:398.100000px;}
.y9d{bottom:399.000000px;}
.y291{bottom:400.800000px;}
.y2e4{bottom:401.700000px;}
.y48d{bottom:402.600000px;}
.y402{bottom:403.197706px;}
.y2e{bottom:403.500000px;}
.yce{bottom:404.400000px;}
.y4a{bottom:406.200000px;}
.y11d{bottom:408.000000px;}
.y100{bottom:408.900000px;}
.y1dd{bottom:409.800000px;}
.y360{bottom:410.700000px;}
.y2c0{bottom:411.600000px;}
.y11{bottom:412.500000px;}
.y185{bottom:413.400000px;}
.y3d4{bottom:414.170222px;}
.y380{bottom:414.206066px;}
.y69{bottom:414.300000px;}
.y197{bottom:415.200000px;}
.y3bc{bottom:415.838361px;}
.y3eb{bottom:416.689333px;}
.y441{bottom:417.000000px;}
.y3a2{bottom:417.900000px;}
.y1ea{bottom:418.800000px;}
.y47c{bottom:419.700000px;}
.y337{bottom:420.125078px;}
.y305{bottom:420.600000px;}
.y3a9{bottom:421.500000px;}
.y84{bottom:422.400000px;}
.y1a0{bottom:423.300000px;}
.y30c{bottom:424.200000px;}
.y364{bottom:425.100000px;}
.y46f{bottom:426.000000px;}
.y39a{bottom:426.866122px;}
.ye2{bottom:426.900000px;}
.y232{bottom:427.358874px;}
.y2d1{bottom:427.800000px;}
.y9c{bottom:428.745000px;}
.y369{bottom:429.645000px;}
.yb4{bottom:430.530000px;}
.y285{bottom:431.445000px;}
.y2bf{bottom:432.345000px;}
.y259{bottom:433.245000px;}
.y290{bottom:434.130000px;}
.y49{bottom:435.030000px;}
.y340{bottom:435.945000px;}
.y2d{bottom:436.845000px;}
.y2ac{bottom:437.730000px;}
.y440{bottom:438.630000px;}
.y37f{bottom:438.872326px;}
.y3d1{bottom:439.333362px;}
.y1ab{bottom:439.545000px;}
.y425{bottom:440.445000px;}
.y3ba{bottom:441.036450px;}
.y11c{bottom:441.345000px;}
.y334{bottom:441.454060px;}
.yff{bottom:442.230000px;}
.y2a0{bottom:442.245000px;}
.y68{bottom:443.145000px;}
.y3e8{bottom:443.577926px;}
.y35f{bottom:444.945000px;}
.y15b{bottom:445.845000px;}
.y363{bottom:446.745000px;}
.y418{bottom:447.630000px;}
.y10{bottom:450.345000px;}
.y397{bottom:450.498466px;}
.y457{bottom:451.230000px;}
.y2be{bottom:452.130000px;}
.y3a1{bottom:453.045000px;}
.y3a8{bottom:453.945000px;}
.y14b{bottom:454.830000px;}
.y83{bottom:455.745000px;}
.y4b5{bottom:456.645000px;}
.y2bb{bottom:457.530000px;}
.y3ff{bottom:458.074287px;}
.y499{bottom:458.445000px;}
.y9b{bottom:459.345000px;}
.ye1{bottom:460.245000px;}
.y16c{bottom:461.130000px;}
.y424{bottom:462.030000px;}
.y37d{bottom:462.537493px;}
.y368{bottom:462.945000px;}
.yb3{bottom:463.845000px;}
.y48{bottom:464.730000px;}
.y35e{bottom:465.630000px;}
.y28f{bottom:466.545000px;}
.y3b9{bottom:467.300477px;}
.y2e3{bottom:467.445000px;}
.y210{bottom:467.598659px;}
.y4ad{bottom:468.330000px;}
.y179{bottom:469.245000px;}
.y2c{bottom:470.145000px;}
.y3e5{bottom:470.447893px;}
.y258{bottom:471.945000px;}
.y67{bottom:472.845000px;}
.y26d{bottom:473.295000px;}
.y43f{bottom:473.745000px;}
.y11b{bottom:474.630000px;}
.y2d0{bottom:475.530000px;}
.yfe{bottom:476.445000px;}
.y216{bottom:477.345000px;}
.y15a{bottom:479.175000px;}
.y27d{bottom:480.975000px;}
.y423{bottom:483.675000px;}
.y40a{bottom:484.575000px;}
.y3fc{bottom:484.953563px;}
.y330{bottom:484.991751px;}
.y35d{bottom:485.475000px;}
.y37b{bottom:486.219071px;}
.y362{bottom:486.375000px;}
.y2bd{bottom:487.275000px;}
.y14a{bottom:488.175000px;}
.yf{bottom:489.075000px;}
.y82{bottom:489.975000px;}
.y251{bottom:490.538667px;}
.y3cd{bottom:490.795478px;}
.y2ba{bottom:490.875000px;}
.y3b7{bottom:492.498566px;}
.y461{bottom:492.675000px;}
.y47{bottom:493.575000px;}
.ye0{bottom:494.475000px;}
.ycd{bottom:495.375000px;}
.y498{bottom:496.275000px;}
.y19e{bottom:497.175000px;}
.yb2{bottom:498.075000px;}
.y3e4{bottom:498.454507px;}
.y393{bottom:498.829892px;}
.y470{bottom:498.975000px;}
.y28e{bottom:499.875000px;}
.y497{bottom:500.775000px;}
.y66{bottom:501.675000px;}
.y2b{bottom:502.575000px;}
.y4ac{bottom:503.475000px;}
.y30b{bottom:504.375000px;}
.y1aa{bottom:505.275000px;}
.y126{bottom:506.175000px;}
.y32d{bottom:506.320732px;}
.y319{bottom:507.075000px;}
.y196{bottom:507.975000px;}
.y11a{bottom:508.875000px;}
.yfd{bottom:509.775000px;}
.y37a{bottom:510.868919px;}
.y159{bottom:511.575000px;}
.y215{bottom:514.275000px;}
.y226{bottom:515.145000px;}
.y1f4{bottom:515.175000px;}
.y3cb{bottom:516.011041px;}
.y2ab{bottom:516.075000px;}
.y43e{bottom:516.975000px;}
.y3b5{bottom:517.714129px;}
.y2e2{bottom:517.875000px;}
.y48c{bottom:518.775000px;}
.y9a{bottom:519.675000px;}
.y149{bottom:520.575000px;}
.y2ef{bottom:521.475000px;}
.y417{bottom:522.375000px;}
.y391{bottom:522.511471px;}
.y46{bottom:523.275000px;}
.y460{bottom:524.175000px;}
.y3e2{bottom:525.324466px;}
.ycc{bottom:525.975000px;}
.y16b{bottom:526.905000px;}
.ye{bottom:527.820000px;}
.y1e9{bottom:529.620000px;}
.y19f{bottom:530.505000px;}
.y65{bottom:531.405000px;}
.y4ab{bottom:532.320000px;}
.y28d{bottom:533.220000px;}
.y377{bottom:534.550497px;}
.y2d7{bottom:535.005000px;}
.y2a{bottom:535.920000px;}
.y236{bottom:536.820000px;}
.y27c{bottom:537.720000px;}
.y1a9{bottom:539.520000px;}
.y44b{bottom:539.587480px;}
.y3f9{bottom:539.878593px;}
.y2ce{bottom:540.405000px;}
.y29f{bottom:541.320000px;}
.y1b8{bottom:542.205000px;}
.y119{bottom:542.220000px;}
.y1f3{bottom:543.120000px;}
.y3b4{bottom:543.960682px;}
.yfc{bottom:544.005000px;}
.y184{bottom:544.905000px;}
.y1f8{bottom:545.055000px;}
.y19d{bottom:545.820000px;}
.y201{bottom:546.163219px;}
.y4a0{bottom:546.720000px;}
.y125{bottom:548.505000px;}
.y99{bottom:549.420000px;}
.y300{bottom:550.320000px;}
.y329{bottom:550.720439px;}
.y47b{bottom:551.220000px;}
.y45{bottom:552.105000px;}
.y3df{bottom:552.213068px;}
.y46a{bottom:553.020000px;}
.y148{bottom:553.905000px;}
.y2ee{bottom:554.820000px;}
.ycb{bottom:555.705000px;}
.y2b9{bottom:556.620000px;}
.y81{bottom:557.505000px;}
.y374{bottom:559.200345px;}
.y496{bottom:559.320000px;}
.y64{bottom:560.220000px;}
.y2aa{bottom:561.120000px;}
.ydf{bottom:562.005000px;}
.y1e8{bottom:562.920000px;}
.yb1{bottom:565.605000px;}
.yd{bottom:566.520000px;}
.y3f7{bottom:566.748552px;}
.y3c7{bottom:567.473157px;}
.y178{bottom:568.320000px;}
.y3b2{bottom:569.176245px;}
.y29{bottom:569.205000px;}
.y38d{bottom:570.842897px;}
.y367{bottom:571.005000px;}
.y235{bottom:571.905000px;}
.y326{bottom:572.049420px;}
.y1b7{bottom:573.720000px;}
.y1dc{bottom:574.620000px;}
.y3a7{bottom:575.505000px;}
.y118{bottom:576.450000px;}
.y342{bottom:576.630000px;}
.y200{bottom:576.730524px;}
.yfb{bottom:577.350000px;}
.y30a{bottom:578.250000px;}
.y35c{bottom:579.150000px;}
.y98{bottom:580.050000px;}
.y3de{bottom:580.201047px;}
.y1a8{bottom:580.950000px;}
.y44{bottom:581.850000px;}
.y456{bottom:582.750000px;}
.y422{bottom:583.650000px;}
.y373{bottom:583.866604px;}
.y4a6{bottom:584.243910px;}
.y47a{bottom:584.550000px;}
.yca{bottom:586.350000px;}
.y2cd{bottom:587.250000px;}
.y416{bottom:588.150000px;}
.y63{bottom:589.950000px;}
.y80{bottom:590.850000px;}
.y3c5{bottom:592.671245px;}
.y16a{bottom:593.550000px;}
.y3af{bottom:594.374333px;}
.y38b{bottom:594.508064px;}
.yde{bottom:595.350000px;}
.y1e7{bottom:596.250000px;}
.y48b{bottom:597.150000px;}
.y2f6{bottom:598.050000px;}
.yb0{bottom:598.950000px;}
.y35a{bottom:599.838603px;}
.y1a7{bottom:600.750000px;}
.y28{bottom:601.650000px;}
.y18a{bottom:602.550000px;}
.y23e{bottom:603.090000px;}
.y248{bottom:604.071201px;}
.yc{bottom:604.350000px;}
.y2ed{bottom:605.250000px;}
.y366{bottom:606.150000px;}
.y1b6{bottom:607.050000px;}
.y1db{bottom:607.950000px;}
.y117{bottom:609.750000px;}
.y43{bottom:610.650000px;}
.yf9{bottom:611.550000px;}
.y273{bottom:613.286636px;}
.y2ff{bottom:615.150000px;}
.yc9{bottom:616.050000px;}
.y479{bottom:616.950000px;}
.y430{bottom:617.850000px;}
.y62{bottom:618.750000px;}
.y147{bottom:619.650000px;}
.y318{bottom:620.550000px;}
.y358{bottom:621.273149px;}
.y3f4{bottom:621.625133px;}
.y3ae{bottom:621.686825px;}
.y158{bottom:622.350000px;}
.y2d6{bottom:623.250000px;}
.y459{bottom:623.447752px;}
.y7f{bottom:625.080000px;}
.y169{bottom:625.995000px;}
.y2a9{bottom:626.880000px;}
.y1e6{bottom:628.695000px;}
.ydd{bottom:629.595000px;}
.y3a6{bottom:630.495000px;}
.y28c{bottom:631.380000px;}
.y483{bottom:632.295000px;}
.yaf{bottom:633.195000px;}
.y177{bottom:634.095000px;}
.y27{bottom:634.980000px;}
.y1a6{bottom:635.895000px;}
.y1fd{bottom:636.738486px;}
.y43d{bottom:636.780000px;}
.y495{bottom:637.695000px;}
.y2ec{bottom:638.580000px;}
.y2f5{bottom:639.495000px;}
.y42{bottom:640.380000px;}
.y1da{bottom:641.280000px;}
.y388{bottom:642.839490px;}
.yb{bottom:643.095000px;}
.y116{bottom:643.980000px;}
.y183{bottom:643.995000px;}
.y3c2{bottom:644.133361px;}
.yf7{bottom:644.880000px;}
.y4b2{bottom:645.795000px;}
.yc8{bottom:646.695000px;}
.y2fe{bottom:647.595000px;}
.y61{bottom:648.480000px;}
.y3f2{bottom:648.513726px;}
.y130{bottom:649.380000px;}
.y421{bottom:650.280000px;}
.y469{bottom:652.080000px;}
.y146{bottom:652.995000px;}
.y317{bottom:653.880000px;}
.y321{bottom:654.780000px;}
.y157{bottom:655.695000px;}
.y1ca{bottom:656.595000px;}
.y22c{bottom:657.416125px;}
.y43c{bottom:657.495000px;}
.y7e{bottom:658.380000px;}
.y2f4{bottom:659.295000px;}
.y2a8{bottom:660.195000px;}
.y257{bottom:661.095000px;}
.y168{bottom:661.980000px;}
.ydc{bottom:662.895000px;}
.y415{bottom:663.780000px;}
.y298{bottom:664.695000px;}
.y354{bottom:664.995172px;}
.yae{bottom:666.495000px;}
.y386{bottom:666.521068px;}
.y1fb{bottom:667.305923px;}
.y26{bottom:667.380000px;}
.y2b8{bottom:668.280000px;}
.y41{bottom:669.195000px;}
.y3c0{bottom:669.348924px;}
.y97{bottom:670.995000px;}
.y2eb{bottom:671.880000px;}
.y1b5{bottom:672.795000px;}
.y1a5{bottom:673.695000px;}
.y316{bottom:674.625000px;}
.y13a{bottom:675.525000px;}
.yc7{bottom:676.425000px;}
.y115{bottom:677.325000px;}
.y471{bottom:678.225000px;}
.yf6{bottom:679.125000px;}
.y2fd{bottom:680.925000px;}
.y242{bottom:681.269116px;}
.ya{bottom:681.825000px;}
.y12f{bottom:682.725000px;}
.y315{bottom:683.625000px;}
.y145{bottom:685.425000px;}
.y60{bottom:686.325000px;}
.y352{bottom:686.429718px;}
.y156{bottom:689.025000px;}
.y42f{bottom:689.925000px;}
.y266{bottom:691.665000px;}
.y256{bottom:691.725000px;}
.y7d{bottom:692.625000px;}
.y48a{bottom:694.425000px;}
.y2a7{bottom:696.225000px;}
.ydb{bottom:697.125000px;}
.y297{bottom:698.025000px;}
.y40{bottom:698.925000px;}
.y2f3{bottom:699.825000px;}
.y25{bottom:700.725000px;}
.y1c9{bottom:701.625000px;}
.y3ef{bottom:703.390307px;}
.y214{bottom:704.325000px;}
.y45e{bottom:704.945597px;}
.y1b4{bottom:706.125000px;}
.yc6{bottom:707.025000px;}
.y139{bottom:707.925000px;}
.y194{bottom:709.725000px;}
.y167{bottom:710.625000px;}
.y114{bottom:711.525000px;}
.yf5{bottom:712.425000px;}
.y284{bottom:713.325000px;}
.y2fc{bottom:714.225000px;}
.y383{bottom:714.852494px;}
.y5f{bottom:715.125000px;}
.y28b{bottom:716.025000px;}
.y12e{bottom:716.925000px;}
.y468{bottom:717.825000px;}
.y144{bottom:718.725000px;}
.y9{bottom:719.625000px;}
.y3bd{bottom:720.811040px;}
.y155{bottom:721.425000px;}
.y182{bottom:722.325000px;}
.y414{bottom:724.155000px;}
.y7c{bottom:725.970000px;}
.y3f{bottom:727.755000px;}
.y314{bottom:728.655000px;}
.y2db{bottom:728.670000px;}
.y29e{bottom:729.570000px;}
.y34f{bottom:730.187342px;}
.y3ed{bottom:730.260267px;}
.yda{bottom:730.470000px;}
.y96{bottom:731.355000px;}
.y2b7{bottom:733.170000px;}
.y24{bottom:734.070000px;}
.y2a6{bottom:734.955000px;}
.yc5{bottom:737.655000px;}
.y381{bottom:738.517661px;}
.y1b3{bottom:738.570000px;}
.y409{bottom:739.470000px;}
.y138{bottom:741.255000px;}
.y213{bottom:742.155000px;}
.y219{bottom:742.215000px;}
.y193{bottom:743.070000px;}
.y1e5{bottom:743.970000px;}
.y5e{bottom:744.855000px;}
.y112{bottom:744.870000px;}
.y283{bottom:745.755000px;}
.y3bb{bottom:746.009129px;}
.yf4{bottom:746.670000px;}
.y2fb{bottom:747.570000px;}
.y28a{bottom:748.455000px;}
.y478{bottom:749.370000px;}
.y12d{bottom:750.270000px;}
.y467{bottom:751.155000px;}
.y34c{bottom:751.621888px;}
.y143{bottom:752.070000px;}
.y203{bottom:752.256162px;}
.y1d9{bottom:752.970000px;}
.y49f{bottom:753.870000px;}
.y154{bottom:754.755000px;}
.y166{bottom:755.655000px;}
.y4b1{bottom:756.570000px;}
.y3e{bottom:757.470000px;}
.y413{bottom:759.255000px;}
.y7b{bottom:760.155000px;}
.y95{bottom:761.070000px;}
.y296{bottom:763.770000px;}
.yd9{bottom:764.655000px;}
.y8{bottom:766.470000px;}
.yc4{bottom:767.370000px;}
.yad{bottom:768.255000px;}
.y482{bottom:769.170000px;}
.y43b{bottom:770.070000px;}
.y2ea{bottom:770.955000px;}
.y222{bottom:770.980783px;}
.y408{bottom:772.800000px;}
.y5d{bottom:773.700000px;}
.y137{bottom:774.600000px;}
.y192{bottom:775.500000px;}
.y176{bottom:778.200000px;}
.y282{bottom:779.100000px;}
.yf3{bottom:780.000000px;}
.y2fa{bottom:780.900000px;}
.y289{bottom:781.800000px;}
.y12c{bottom:784.500000px;}
.y3e9{bottom:785.136848px;}
.y320{bottom:785.400000px;}
.y3d{bottom:786.300000px;}
.y246{bottom:786.536135px;}
.y37e{bottom:786.849088px;}
.y165{bottom:788.100000px;}
.y1e4{bottom:789.000000px;}
.y94{bottom:791.700000px;}
.y489{bottom:792.600000px;}
.y7a{bottom:793.500000px;}
.y477{bottom:795.300000px;}
.y348{bottom:795.351328px;}
.y412{bottom:797.100000px;}
.y3b8{bottom:797.471245px;}
.yc3{bottom:798.000000px;}
.y295{bottom:798.900000px;}
.y23{bottom:799.800000px;}
.y221{bottom:799.812864px;}
.y26b{bottom:800.049742px;}
.y153{bottom:800.700000px;}
.yac{bottom:801.600000px;}
.y5c{bottom:802.500000px;}
.y4b4{bottom:804.300000px;}
.y407{bottom:805.200000px;}
.y136{bottom:807.000000px;}
.y191{bottom:808.800000px;}
.y37c{bottom:810.530666px;}
.y111{bottom:811.500000px;}
.y3e6{bottom:812.025441px;}
.y2b6{bottom:812.400000px;}
.yf1{bottom:813.300000px;}
.y288{bottom:814.200000px;}
.y4a1{bottom:814.401637px;}
.y447{bottom:815.100000px;}
.y345{bottom:816.785874px;}
.y466{bottom:816.900000px;}
.y12b{bottom:817.800000px;}
.y31f{bottom:818.700000px;}
.y164{bottom:820.500000px;}
.y7{bottom:821.445000px;}
.y93{bottom:822.330000px;}
.y3b6{bottom:822.686808px;}
.y455{bottom:823.245000px;}
.y3c{bottom:824.130000px;}
.y476{bottom:826.830000px;}
.y79{bottom:827.745000px;}
.y21f{bottom:828.644945px;}
.y2b5{bottom:830.445000px;}
.y234{bottom:831.330000px;}
.y22{bottom:832.245000px;}
.y304{bottom:833.130000px;}
.yab{bottom:835.830000px;}
.y1ce{bottom:838.545000px;}
.y135{bottom:840.330000px;}
.y190{bottom:841.245000px;}
.y1f2{bottom:843.045000px;}
.y175{bottom:843.945000px;}
.y281{bottom:844.830000px;}
.y110{bottom:845.745000px;}
.yf0{bottom:847.545000px;}
.y29d{bottom:848.445000px;}
.y294{bottom:849.330000px;}
.y2f9{bottom:850.245000px;}
.y1d8{bottom:851.130000px;}
.y92{bottom:852.045000px;}
.y163{bottom:853.830000px;}
.y1b2{bottom:854.745000px;}
.y313{bottom:856.545000px;}
.y21e{bottom:857.431042px;}
.y2d9{bottom:857.445000px;}
.yc2{bottom:858.330000px;}
.y378{bottom:858.862092px;}
.y475{bottom:860.130000px;}
.y5b{bottom:861.045000px;}
.y3b{bottom:861.945000px;}
.y2c6{bottom:862.830000px;}
.y21{bottom:865.545000px;}
.y142{bottom:866.445000px;}
.y3e3{bottom:866.939290px;}
.y6{bottom:868.245000px;}
.y237{bottom:868.815000px;}
.yaa{bottom:869.130000px;}
.y2e8{bottom:870.030000px;}
.y494{bottom:870.975000px;}
.y1cd{bottom:871.875000px;}
.y134{bottom:872.775000px;}
.y3b3{bottom:874.148924px;}
.y276{bottom:874.575000px;}
.y1f1{bottom:875.475000px;}
.y406{bottom:876.375000px;}
.y174{bottom:877.275000px;}
.y280{bottom:878.175000px;}
.y10f{bottom:879.075000px;}
.yee{bottom:880.875000px;}
.y375{bottom:882.527259px;}
.y91{bottom:882.675000px;}
.y1d7{bottom:883.575000px;}
.y31e{bottom:884.475000px;}
.y128{bottom:885.375000px;}
.y21c{bottom:886.263123px;}
.y162{bottom:886.275000px;}
.y18f{bottom:887.175000px;}
.yc1{bottom:888.075000px;}
.y312{bottom:888.975000px;}
.y255{bottom:889.875000px;}
.y5a{bottom:890.775000px;}
.y493{bottom:891.675000px;}
.y2b4{bottom:892.575000px;}
.y474{bottom:893.475000px;}
.y3e0{bottom:893.827883px;}
.y27b{bottom:897.075000px;}
.y20{bottom:898.875000px;}
.y3b0{bottom:899.347013px;}
.y3a{bottom:899.775000px;}
.y29c{bottom:902.475000px;}
.y78{bottom:903.375000px;}
.y1cc{bottom:905.175000px;}
.y133{bottom:906.075000px;}
.y5{bottom:906.975000px;}
.y2c4{bottom:909.675000px;}
.y27f{bottom:910.575000px;}
.y90{bottom:912.375000px;}
.y10e{bottom:913.275000px;}
.yec{bottom:915.075000px;}
.y31d{bottom:917.775000px;}
.yc0{bottom:918.675000px;}
.y59{bottom:919.620000px;}
.y25f{bottom:920.055000px;}
.y275{bottom:920.505000px;}
.y1f0{bottom:921.420000px;}
.y173{bottom:922.320000px;}
.y2b3{bottom:923.205000px;}
.y49e{bottom:925.005000px;}
.y473{bottom:925.920000px;}
.y446{bottom:926.820000px;}
.y27a{bottom:928.620000px;}
.y1d6{bottom:929.505000px;}
.y1f{bottom:931.320000px;}
.y77{bottom:932.205000px;}
.yd8{bottom:933.120000px;}
.y311{bottom:934.920000px;}
.y39{bottom:937.620000px;}
.y132{bottom:939.420000px;}
.y8f{bottom:943.005000px;}
.y2e7{bottom:943.920000px;}
.y4{bottom:945.705000px;}
.y10d{bottom:946.605000px;}
.y488{bottom:947.505000px;}
.yea{bottom:948.420000px;}
.y58{bottom:949.320000px;}
.y31c{bottom:950.205000px;}
.y1ed{bottom:952.005000px;}
.y1b1{bottom:952.920000px;}
.y2b2{bottom:953.820000px;}
.y33f{bottom:955.620000px;}
.y445{bottom:959.205000px;}
.y76{bottom:961.920000px;}
.y309{bottom:963.705000px;}
.y1e{bottom:964.620000px;}
.y161{bottom:965.505000px;}
.y487{bottom:967.320000px;}
.y310{bottom:968.205000px;}
.y3ab{bottom:970.050000px;}
.y38{bottom:970.950000px;}
.y131{bottom:971.850000px;}
.y224{bottom:972.706026px;}
.y8e{bottom:972.750000px;}
.ya9{bottom:974.550000px;}
.y23c{bottom:974.558389px;}
.yd7{bottom:975.450000px;}
.y57{bottom:978.150000px;}
.ybf{bottom:979.050000px;}
.y10c{bottom:979.950000px;}
.y49d{bottom:980.850000px;}
.ye8{bottom:982.650000px;}
.y3{bottom:983.550000px;}
.y1b0{bottom:985.350000px;}
.y1cb{bottom:986.250000px;}
.y2c3{bottom:988.050000px;}
.y75{bottom:990.750000px;}
.y444{bottom:991.650000px;}
.y1d5{bottom:995.250000px;}
.y1d{bottom:997.950000px;}
.y33e{bottom:998.850000px;}
.y481{bottom:1002.450000px;}
.ya8{bottom:1005.150000px;}
.y37{bottom:1006.950000px;}
.y56{bottom:1007.850000px;}
.y36e{bottom:1010.550000px;}
.y10b{bottom:1014.150000px;}
.y8d{bottom:1015.950000px;}
.y4b0{bottom:1019.580000px;}
.y264{bottom:1020.790769px;}
.y1ef{bottom:1021.380000px;}
.y2{bottom:1022.295000px;}
.y443{bottom:1024.995000px;}
.y486{bottom:1025.880000px;}
.y1d4{bottom:1027.695000px;}
.y74{bottom:1028.580000px;}
.y1ec{bottom:1029.495000px;}
.y1c{bottom:1030.380000px;}
.y1a4{bottom:1031.295000px;}
.ya7{bottom:1034.880000px;}
.y55{bottom:1036.695000px;}
.y30f{bottom:1037.580000px;}
.y485{bottom:1045.695000px;}
.y10a{bottom:1047.495000px;}
.y8c{bottom:1052.880000px;}
.ybe{bottom:1059.195000px;}
.y1{bottom:1060.995000px;}
.y1ee{bottom:1061.880000px;}
.y1d3{bottom:1062.795000px;}
.y1b{bottom:1063.695000px;}
.y212{bottom:1064.580000px;}
.ya6{bottom:1065.495000px;}
.y54{bottom:1066.380000px;}
.h69{height:20.443349px;}
.h71{height:20.507487px;}
.h70{height:20.544571px;}
.h6a{height:21.292080px;}
.h67{height:21.328981px;}
.h6e{height:21.434586px;}
.h79{height:22.647663px;}
.h78{height:22.688692px;}
.h76{height:23.673373px;}
.h30{height:24.069822px;}
.h81{height:24.114676px;}
.h80{height:24.158362px;}
.h37{height:24.691074px;}
.h2f{height:25.067535px;}
.h7e{height:25.206826px;}
.h34{height:25.241537px;}
.h93{height:25.287591px;}
.h85{height:25.761288px;}
.h2c{height:25.918372px;}
.h33{height:26.246174px;}
.h26{height:26.485236px;}
.h3a{height:26.565885px;}
.h1e{height:26.855955px;}
.h3d{height:27.107023px;}
.h19{height:27.186746px;}
.h23{height:27.682558px;}
.h22{height:27.728542px;}
.h1d{height:27.969155px;}
.h17{height:28.313657px;}
.h21{height:28.832162px;}
.h1c{height:29.082355px;}
.h29{height:29.420449px;}
.h18{height:29.440567px;}
.h45{height:29.700000px;}
.h43{height:29.737500px;}
.h42{height:30.600000px;}
.h44{height:30.622500px;}
.h41{height:30.637500px;}
.h8{height:32.400000px;}
.hb{height:32.437500px;}
.hc{height:33.300000px;}
.ha{height:33.337500px;}
.h4b{height:45.037500px;}
.h47{height:45.937500px;}
.h72{height:47.223633px;}
.h46{height:47.737500px;}
.h4c{height:48.637500px;}
.h7a{height:54.808594px;}
.h13{height:56.668359px;}
.hf{height:60.337500px;}
.h40{height:60.871289px;}
.h48{height:62.664258px;}
.he{height:62.964844px;}
.h68{height:63.569858px;}
.h6f{height:63.884487px;}
.h4{height:64.451953px;}
.h66{height:65.442313px;}
.hd{height:65.737500px;}
.h6d{height:65.766210px;}
.h7{height:66.350391px;}
.h65{height:69.305496px;}
.h6c{height:69.648512px;}
.h58{height:69.727148px;}
.h62{height:69.787148px;}
.h77{height:70.679470px;}
.h5{height:71.613281px;}
.h2e{height:71.780275px;}
.h95{height:71.973224px;}
.h32{height:72.278466px;}
.h75{height:72.761340px;}
.h8f{height:72.838647px;}
.h4e{height:72.975000px;}
.h36{height:73.717394px;}
.h9{height:73.722656px;}
.h88{height:74.016869px;}
.h8c{height:74.180169px;}
.h97{height:74.381106px;}
.h8a{height:74.393077px;}
.h14{height:75.093750px;}
.h7f{height:75.257764px;}
.h8d{height:75.288633px;}
.h10{height:75.348633px;}
.h55{height:75.408633px;}
.h11{height:75.468633px;}
.h2b{height:77.381857px;}
.h7d{height:77.474488px;}
.h25{height:79.028824px;}
.h39{height:79.314829px;}
.h20{height:79.399771px;}
.h1b{height:80.088992px;}
.h86{height:80.251050px;}
.h74{height:80.827262px;}
.h3c{height:80.884166px;}
.h28{height:81.005835px;}
.h16{height:81.075349px;}
.h12{height:81.094922px;}
.h92{height:81.394366px;}
.h1{height:82.355273px;}
.h84{height:82.614851px;}
.h3{height:84.781055px;}
.h7c{height:86.062884px;}
.h83{height:91.773079px;}
.h94{height:93.420546px;}
.h90{height:94.543774px;}
.h8e{height:94.543815px;}
.h96{height:96.545911px;}
.h6{height:99.679175px;}
.h4a{height:100.875000px;}
.h91{height:106.785566px;}
.h27{height:117.674826px;}
.h2{height:121.795972px;}
.h35{height:125.427074px;}
.h4d{height:127.860000px;}
.h49{height:127.875000px;}
.h2a{height:131.662004px;}
.h38{height:134.950876px;}
.h5f{height:136.502930px;}
.h4f{height:143.542969px;}
.h5b{height:143.680078px;}
.h63{height:150.802969px;}
.h56{height:151.306061px;}
.h8b{height:153.248683px;}
.h89{height:153.688529px;}
.h87{height:154.968434px;}
.h3b{height:167.098459px;}
.h24{height:168.756525px;}
.h60{height:176.013281px;}
.h61{height:179.542969px;}
.h52{height:190.342969px;}
.h3f{height:197.373765px;}
.h53{height:197.542969px;}
.h50{height:197.722969px;}
.h2d{height:207.507753px;}
.h31{height:207.941267px;}
.h5d{height:229.928672px;}
.h15{height:234.378642px;}
.h5e{height:237.188672px;}
.h5a{height:240.682969px;}
.h59{height:244.282969px;}
.h54{height:244.342969px;}
.h51{height:244.522969px;}
.h57{height:248.002969px;}
.h1f{height:258.226614px;}
.h1a{height:258.227870px;}
.h3e{height:266.262056px;}
.h6b{height:285.689485px;}
.h64{height:286.057366px;}
.h5c{height:301.942969px;}
.h82{height:602.615088px;}
.h73{height:603.593131px;}
.h7b{height:642.691147px;}
.h0{height:1188.000000px;}
.w22{width:91.912500px;}
.w2{width:112.612500px;}
.w20{width:146.850000px;}
.w23{width:157.650000px;}
.w1f{width:159.450000px;}
.w1b{width:173.850000px;}
.w1c{width:173.880000px;}
.w1a{width:173.895000px;}
.w1d{width:182.880000px;}
.w1e{width:190.095000px;}
.w3f{width:238.447754px;}
.w21{width:239.625000px;}
.w11{width:360.980676px;}
.w13{width:361.861382px;}
.w10{width:361.982276px;}
.w12{width:362.864850px;}
.w15{width:370.840254px;}
.w14{width:371.869908px;}
.wf{width:389.259827px;}
.we{width:390.341120px;}
.wb{width:396.713578px;}
.wa{width:397.815577px;}
.w9{width:397.841304px;}
.w8{width:398.944885px;}
.w17{width:399.108660px;}
.w16{width:400.216385px;}
.w7{width:401.245971px;}
.w6{width:402.360543px;}
.wd{width:404.489539px;}
.wc{width:405.613137px;}
.w19{width:406.186498px;}
.w5{width:406.680551px;}
.w18{width:407.314794px;}
.w4{width:407.800332px;}
.w3e{width:471.149778px;}
.w3a{width:549.406309px;}
.w3c{width:551.432803px;}
.w3b{width:551.529816px;}
.w41{width:557.926023px;}
.w40{width:558.254384px;}
.w3d{width:565.920391px;}
.w3{width:593.670000px;}
.w37{width:632.450833px;}
.w36{width:632.450842px;}
.w35{width:632.910098px;}
.w34{width:632.910099px;}
.w33{width:632.910101px;}
.w32{width:632.910102px;}
.w31{width:632.910103px;}
.w30{width:632.910104px;}
.w2f{width:632.910105px;}
.w2e{width:632.910107px;}
.w39{width:633.229386px;}
.w38{width:633.229396px;}
.w28{width:669.910868px;}
.w27{width:669.910870px;}
.w26{width:669.910872px;}
.w25{width:669.910874px;}
.w24{width:669.910875px;}
.w2d{width:670.029507px;}
.w2c{width:670.029509px;}
.w2b{width:670.029511px;}
.w2a{width:670.029513px;}
.w29{width:670.029514px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:3.389005px;}
.x6d{left:5.338055px;}
.x79{left:6.890341px;}
.x17{left:8.100000px;}
.x6c{left:12.492528px;}
.x7b{left:15.790358px;}
.x7c{left:17.759028px;}
.x4b{left:18.930000px;}
.x75{left:20.712020px;}
.x77{left:25.633689px;}
.x4c{left:27.945000px;}
.x48{left:35.137500px;}
.x3a{left:36.181628px;}
.x28{left:52.524212px;}
.x3b{left:74.592029px;}
.x4a{left:86.475000px;}
.x5{left:106.312486px;}
.x47{left:111.712500px;}
.x26{left:113.296306px;}
.x3f{left:118.806231px;}
.x11{left:122.512486px;}
.x2e{left:124.141222px;}
.x2f{left:125.993295px;}
.x40{left:130.079861px;}
.x7e{left:132.249100px;}
.x1f{left:133.349986px;}
.x37{left:137.727697px;}
.x39{left:138.751947px;}
.x74{left:142.734323px;}
.x8b{left:144.149986px;}
.x5d{left:145.949986px;}
.x31{left:148.734176px;}
.x70{left:155.915644px;}
.x66{left:157.649986px;}
.x12{left:160.349986px;}
.x88{left:176.459609px;}
.x41{left:179.916172px;}
.x84{left:183.286690px;}
.x83{left:184.407698px;}
.x68{left:197.279986px;}
.x3{left:219.824986px;}
.x6f{left:221.825772px;}
.x8a{left:223.899146px;}
.x71{left:225.384475px;}
.x6a{left:228.824986px;}
.x76{left:233.647985px;}
.x61{left:236.924986px;}
.x7a{left:238.586059px;}
.x78{left:242.523393px;}
.x29{left:247.769986px;}
.x7f{left:248.779343px;}
.x24{left:255.379668px;}
.x30{left:256.678562px;}
.x27{left:258.364572px;}
.x2d{left:259.855115px;}
.x36{left:264.361257px;}
.x3e{left:273.535092px;}
.x38{left:278.502724px;}
.x4{left:281.954986px;}
.x56{left:283.754986px;}
.x49{left:285.600000px;}
.xa{left:288.299986px;}
.x35{left:290.999986px;}
.x4f{left:301.800000px;}
.x44{left:306.299986px;}
.x6{left:314.399986px;}
.x2{left:318.899986px;}
.x22{left:324.329986px;}
.xb{left:344.144986px;}
.x5e{left:345.944986px;}
.x52{left:358.545000px;}
.x2b{left:361.274986px;}
.x7{left:363.074986px;}
.x3c{left:365.774986px;}
.x58{left:368.474986px;}
.x8{left:370.274986px;}
.x60{left:372.074986px;}
.x20{left:374.774986px;}
.x2c{left:379.274986px;}
.x67{left:381.074986px;}
.x33{left:385.574986px;}
.x5f{left:388.274986px;}
.xc{left:400.904986px;}
.x5c{left:403.619986px;}
.x6e{left:407.145191px;}
.x69{left:411.719986px;}
.xe{left:413.519986px;}
.xd{left:418.004986px;}
.x5a{left:435.119986px;}
.x9{left:445.949986px;}
.x16{left:447.749986px;}
.x15{left:450.449986px;}
.x14{left:452.249986px;}
.x13{left:454.949986px;}
.x10{left:456.749986px;}
.x1{left:459.449986px;}
.x62{left:477.494986px;}
.xf{left:484.694986px;}
.x50{left:492.780000px;}
.x45{left:494.594986px;}
.x5b{left:502.694986px;}
.x59{left:524.324986px;}
.x57{left:540.524986px;}
.x43{left:595.499986px;}
.x63{left:597.299986px;}
.x1b{left:616.199986px;}
.x55{left:622.499986px;}
.x4d{left:633.345000px;}
.x64{left:635.129986px;}
.x34{left:640.544986px;}
.x42{left:642.344986px;}
.x3d{left:645.944986px;}
.x1d{left:649.529986px;}
.x51{left:653.145000px;}
.x32{left:654.944986px;}
.x2a{left:659.444986px;}
.x23{left:661.244986px;}
.x21{left:663.944986px;}
.x1c{left:681.974986px;}
.x19{left:686.474986px;}
.x89{left:695.474986px;}
.x46{left:702.674986px;}
.x7d{left:705.404986px;}
.x54{left:717.119986px;}
.x85{left:721.619986px;}
.x80{left:726.104986px;}
.x82{left:735.119986px;}
.x18{left:738.719986px;}
.x87{left:743.249986px;}
.x65{left:745.949986px;}
.x73{left:763.049986px;}
.x81{left:772.049986px;}
.x8c{left:773.849986px;}
.x72{left:776.549986px;}
.x1e{left:788.294986px;}
.x6b{left:794.579986px;}
.x53{left:799.079986px;}
.x4e{left:801.794986px;}
.x1a{left:805.379986px;}
.x86{left:811.694986px;}
@media print{
.v16{vertical-align:-32.000000pt;}
.v4{vertical-align:-25.600000pt;}
.v15{vertical-align:-22.506667pt;}
.v6{vertical-align:-19.226667pt;}
.v8{vertical-align:-12.020374pt;}
.vb{vertical-align:-10.642270pt;}
.v1a{vertical-align:-9.600000pt;}
.v1{vertical-align:-6.346667pt;}
.va{vertical-align:-4.006791pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.346667pt;}
.v9{vertical-align:12.020374pt;}
.v5{vertical-align:19.200000pt;}
.v11{vertical-align:22.560000pt;}
.v3{vertical-align:25.600000pt;}
.v1e{vertical-align:28.800000pt;}
.v7{vertical-align:32.106667pt;}
.v17{vertical-align:38.346667pt;}
.v10{vertical-align:41.600000pt;}
.ve{vertical-align:48.160000pt;}
.v13{vertical-align:51.200000pt;}
.vf{vertical-align:54.346667pt;}
.vd{vertical-align:57.546667pt;}
.v1f{vertical-align:60.800000pt;}
.vc{vertical-align:64.160000pt;}
.v12{vertical-align:70.400000pt;}
.v18{vertical-align:86.346667pt;}
.v19{vertical-align:89.546667pt;}
.v1b{vertical-align:92.800000pt;}
.v1d{vertical-align:96.000000pt;}
.v14{vertical-align:128.106667pt;}
.v1c{vertical-align:140.800000pt;}
.lsb7{letter-spacing:-4.864000pt;}
.lsb4{letter-spacing:-3.136000pt;}
.ls52{letter-spacing:-3.072000pt;}
.lsb2{letter-spacing:-2.624000pt;}
.lsb6{letter-spacing:-1.856000pt;}
.lsac{letter-spacing:-1.668985pt;}
.lsaf{letter-spacing:-1.664208pt;}
.ls6d{letter-spacing:-1.664000pt;}
.lsa9{letter-spacing:-1.660544pt;}
.ls3a{letter-spacing:-1.600000pt;}
.ls99{letter-spacing:-1.546667pt;}
.ls58{letter-spacing:-1.536000pt;}
.ls5a{letter-spacing:-1.498667pt;}
.ls11{letter-spacing:-1.472000pt;}
.ls64{letter-spacing:-1.456000pt;}
.ls5d{letter-spacing:-1.440000pt;}
.lsb5{letter-spacing:-1.427806pt;}
.lsa4{letter-spacing:-1.370667pt;}
.ls5b{letter-spacing:-1.349333pt;}
.ls54{letter-spacing:-1.344000pt;}
.lsbb{letter-spacing:-1.280000pt;}
.ls6b{letter-spacing:-1.248000pt;}
.ls96{letter-spacing:-1.232000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls67{letter-spacing:-1.136000pt;}
.ls3{letter-spacing:-1.088000pt;}
.ls19{letter-spacing:-0.986667pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls7a{letter-spacing:-0.832000pt;}
.ls61{letter-spacing:-0.800000pt;}
.ls7b{letter-spacing:-0.768000pt;}
.lsc6{letter-spacing:-0.704000pt;}
.lsad{letter-spacing:-0.696939pt;}
.lsb0{letter-spacing:-0.694944pt;}
.lsaa{letter-spacing:-0.693414pt;}
.ls4f{letter-spacing:-0.670807pt;}
.ls7{letter-spacing:-0.661333pt;}
.ls7c{letter-spacing:-0.640000pt;}
.ls9d{letter-spacing:-0.629333pt;}
.lsf{letter-spacing:-0.597333pt;}
.lsa5{letter-spacing:-0.585019pt;}
.ls53{letter-spacing:-0.581333pt;}
.lse{letter-spacing:-0.576000pt;}
.lsa3{letter-spacing:-0.515243pt;}
.ls4a{letter-spacing:-0.507527pt;}
.ls4b{letter-spacing:-0.501352pt;}
.ls4e{letter-spacing:-0.497038pt;}
.ls9f{letter-spacing:-0.465709pt;}
.ls9e{letter-spacing:-0.463415pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.403200pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.272000pt;}
.ls92{letter-spacing:-0.256000pt;}
.lsa0{letter-spacing:-0.217600pt;}
.lsba{letter-spacing:-0.211200pt;}
.ls55{letter-spacing:-0.192000pt;}
.ls6c{letter-spacing:-0.172800pt;}
.ls9b{letter-spacing:-0.166400pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8a{letter-spacing:0.006400pt;}
.ls2e{letter-spacing:0.017067pt;}
.ls43{letter-spacing:0.032000pt;}
.lsb3{letter-spacing:0.049067pt;}
.lsc1{letter-spacing:0.061867pt;}
.ls3e{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.070400pt;}
.ls24{letter-spacing:0.076800pt;}
.ls51{letter-spacing:0.102400pt;}
.lsbc{letter-spacing:0.115200pt;}
.ls21{letter-spacing:0.123733pt;}
.ls39{letter-spacing:0.128000pt;}
.ls75{letter-spacing:0.160000pt;}
.lsbf{letter-spacing:0.168533pt;}
.ls2f{letter-spacing:0.177067pt;}
.ls36{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.192000pt;}
.lsbe{letter-spacing:0.221867pt;}
.ls30{letter-spacing:0.230400pt;}
.ls31{letter-spacing:0.256000pt;}
.lsbd{letter-spacing:0.275200pt;}
.ls3b{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.441600pt;}
.ls16{letter-spacing:0.576000pt;}
.ls93{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.618667pt;}
.ls41{letter-spacing:0.620800pt;}
.ls97{letter-spacing:0.682667pt;}
.lsa7{letter-spacing:0.693333pt;}
.ls7e{letter-spacing:0.768000pt;}
.ls9a{letter-spacing:0.810667pt;}
.ls27{letter-spacing:0.832000pt;}
.lsb9{letter-spacing:0.842667pt;}
.ls94{letter-spacing:0.869333pt;}
.ls22{letter-spacing:0.896000pt;}
.lsa1{letter-spacing:0.921600pt;}
.lsc5{letter-spacing:0.927600pt;}
.lsc4{letter-spacing:0.928000pt;}
.ls37{letter-spacing:0.949333pt;}
.ls56{letter-spacing:0.960000pt;}
.ls60{letter-spacing:1.036800pt;}
.ls25{letter-spacing:1.049600pt;}
.lsab{letter-spacing:1.066667pt;}
.ls80{letter-spacing:1.073067pt;}
.ls0{letter-spacing:1.082667pt;}
.ls23{letter-spacing:1.088000pt;}
.ls26{letter-spacing:1.102933pt;}
.ls81{letter-spacing:1.126400pt;}
.ls8f{letter-spacing:1.132800pt;}
.ls14{letter-spacing:1.152000pt;}
.ls95{letter-spacing:1.157333pt;}
.ls5e{letter-spacing:1.162667pt;}
.ls7f{letter-spacing:1.179733pt;}
.ls5f{letter-spacing:1.216000pt;}
.ls62{letter-spacing:1.221333pt;}
.lsb1{letter-spacing:1.255467pt;}
.lsd{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.306667pt;}
.ls32{letter-spacing:1.308800pt;}
.ls98{letter-spacing:1.333333pt;}
.lsc{letter-spacing:1.344000pt;}
.ls91{letter-spacing:1.376000pt;}
.ls9c{letter-spacing:1.386667pt;}
.ls63{letter-spacing:1.402667pt;}
.ls38{letter-spacing:1.415467pt;}
.ls40{letter-spacing:1.468800pt;}
.ls6e{letter-spacing:1.472000pt;}
.ls6{letter-spacing:1.482667pt;}
.ls2c{letter-spacing:1.530667pt;}
.ls2d{letter-spacing:1.536000pt;}
.ls2a{letter-spacing:1.557333pt;}
.ls15{letter-spacing:1.562667pt;}
.ls59{letter-spacing:1.568000pt;}
.ls28{letter-spacing:1.574400pt;}
.ls66{letter-spacing:1.589333pt;}
.ls4{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.629867pt;}
.ls3c{letter-spacing:1.642667pt;}
.ls13{letter-spacing:1.664000pt;}
.ls1b{letter-spacing:1.683200pt;}
.ls65{letter-spacing:1.708800pt;}
.ls1e{letter-spacing:1.736533pt;}
.ls5{letter-spacing:1.785600pt;}
.ls1d{letter-spacing:1.789867pt;}
.ls35{letter-spacing:1.816533pt;}
.ls1f{letter-spacing:1.843200pt;}
.lsa8{letter-spacing:1.952000pt;}
.ls8d{letter-spacing:2.293333pt;}
.ls85{letter-spacing:2.496000pt;}
.lsb8{letter-spacing:2.752000pt;}
.lsa6{letter-spacing:2.794667pt;}
.ls73{letter-spacing:2.860800pt;}
.lsa2{letter-spacing:2.981333pt;}
.ls68{letter-spacing:2.982400pt;}
.ls78{letter-spacing:3.200000pt;}
.lsae{letter-spacing:3.317333pt;}
.lsc3{letter-spacing:3.368533pt;}
.lsc2{letter-spacing:3.421867pt;}
.ls6a{letter-spacing:3.818667pt;}
.ls8e{letter-spacing:4.284800pt;}
.ls69{letter-spacing:4.341333pt;}
.ls3f{letter-spacing:4.508800pt;}
.ls5c{letter-spacing:4.736000pt;}
.ls29{letter-spacing:5.312000pt;}
.ls44{letter-spacing:7.936000pt;}
.ls72{letter-spacing:8.554667pt;}
.ls84{letter-spacing:9.600000pt;}
.ls88{letter-spacing:10.858667pt;}
.ls76{letter-spacing:11.648000pt;}
.ls34{letter-spacing:12.635733pt;}
.ls82{letter-spacing:13.952000pt;}
.ls70{letter-spacing:13.994667pt;}
.ls77{letter-spacing:16.192000pt;}
.ls89{letter-spacing:19.498667pt;}
.ls90{letter-spacing:20.864000pt;}
.ls6f{letter-spacing:22.060800pt;}
.ls57{letter-spacing:26.108400pt;}
.ls7d{letter-spacing:32.192000pt;}
.ls8b{letter-spacing:34.553600pt;}
.ls86{letter-spacing:34.860800pt;}
.ls79{letter-spacing:39.338667pt;}
.lsc0{letter-spacing:47.915733pt;}
.ls42{letter-spacing:49.408000pt;}
.ls3d{letter-spacing:49.653333pt;}
.ls71{letter-spacing:57.367467pt;}
.ls87{letter-spacing:90.912000pt;}
.ls83{letter-spacing:93.152000pt;}
.ls74{letter-spacing:118.167467pt;}
.ls8c{letter-spacing:235.223467pt;}
.ls48{letter-spacing:759.569457pt;}
.ls4d{letter-spacing:822.514665pt;}
.ls46{letter-spacing:900.141057pt;}
.ls50{letter-spacing:967.305069pt;}
.ls47{letter-spacing:1020.879039pt;}
.ls4c{letter-spacing:1093.561366pt;}
.ls49{letter-spacing:1103.053904pt;}
.ls45{letter-spacing:1116.638850pt;}
.ws25{word-spacing:-64.000000pt;}
.ws5b{word-spacing:-54.400000pt;}
.ws50{word-spacing:-26.077333pt;}
.ws51{word-spacing:-24.541333pt;}
.ws52{word-spacing:-20.605333pt;}
.wsca{word-spacing:-20.484533pt;}
.wsa{word-spacing:-19.556533pt;}
.wsc3{word-spacing:-19.284808pt;}
.ws53{word-spacing:-19.037333pt;}
.ws1{word-spacing:-17.716267pt;}
.ws54{word-spacing:-17.538667pt;}
.wsc6{word-spacing:-16.753067pt;}
.ws28{word-spacing:-16.375089pt;}
.ws0{word-spacing:-16.361600pt;}
.ws40{word-spacing:-16.361049pt;}
.ws4a{word-spacing:-16.336475pt;}
.wsa4{word-spacing:-16.208602pt;}
.ws2d{word-spacing:-16.175871pt;}
.ws14{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws36{word-spacing:-16.036666pt;}
.ws3e{word-spacing:-15.961745pt;}
.wsc9{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsc7{word-spacing:-15.699200pt;}
.ws42{word-spacing:-15.629101pt;}
.ws15{word-spacing:-15.616000pt;}
.ws1c{word-spacing:-15.552000pt;}
.ws4f{word-spacing:-15.424000pt;}
.ws1b{word-spacing:-15.360000pt;}
.ws64{word-spacing:-15.296000pt;}
.ws98{word-spacing:-15.200090pt;}
.ws5c{word-spacing:-15.040000pt;}
.wsb1{word-spacing:-15.025446pt;}
.wsb8{word-spacing:-14.982444pt;}
.wsa8{word-spacing:-14.949462pt;}
.ws47{word-spacing:-14.888976pt;}
.ws6{word-spacing:-14.803200pt;}
.ws17{word-spacing:-14.784000pt;}
.ws20{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.656000pt;}
.ws24{word-spacing:-14.592000pt;}
.ws1d{word-spacing:-14.574933pt;}
.ws1f{word-spacing:-14.548267pt;}
.ws23{word-spacing:-14.528000pt;}
.ws7{word-spacing:-14.500267pt;}
.ws44{word-spacing:-14.497728pt;}
.wsc{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.336000pt;}
.ws8a{word-spacing:-14.275395pt;}
.ws4e{word-spacing:-14.272000pt;}
.ws1a{word-spacing:-14.144000pt;}
.wsb0{word-spacing:-14.084267pt;}
.ws63{word-spacing:-14.080000pt;}
.ws22{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.888000pt;}
.ws21{word-spacing:-13.849600pt;}
.ws67{word-spacing:-13.824000pt;}
.wsa7{word-spacing:-13.710933pt;}
.wsb{word-spacing:-13.636267pt;}
.ws62{word-spacing:-13.632000pt;}
.ws13{word-spacing:-13.568000pt;}
.ws5a{word-spacing:-13.515733pt;}
.ws76{word-spacing:-13.482667pt;}
.ws1e{word-spacing:-13.459200pt;}
.ws65{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.376000pt;}
.ws61{word-spacing:-13.312000pt;}
.wsc8{word-spacing:-13.184000pt;}
.ws4d{word-spacing:-13.120000pt;}
.ws5{word-spacing:-13.017600pt;}
.ws12{word-spacing:-12.992000pt;}
.ws82{word-spacing:-12.902987pt;}
.ws60{word-spacing:-12.844800pt;}
.ws7c{word-spacing:-12.839440pt;}
.ws75{word-spacing:-12.672000pt;}
.ws9{word-spacing:-12.614400pt;}
.wsc5{word-spacing:-12.608000pt;}
.ws4c{word-spacing:-12.436267pt;}
.ws8{word-spacing:-12.356267pt;}
.ws59{word-spacing:-12.294400pt;}
.ws19{word-spacing:-12.030933pt;}
.ws58{word-spacing:-11.929600pt;}
.wsbf{word-spacing:-11.840000pt;}
.ws5f{word-spacing:-11.769600pt;}
.ws55{word-spacing:-11.668267pt;}
.ws95{word-spacing:-11.646933pt;}
.ws56{word-spacing:-11.577600pt;}
.ws4b{word-spacing:-11.392000pt;}
.wsc1{word-spacing:-11.328000pt;}
.ws6c{word-spacing:-11.232000pt;}
.ws70{word-spacing:-11.189333pt;}
.ws6d{word-spacing:-11.013333pt;}
.ws16{word-spacing:-10.964267pt;}
.ws29{word-spacing:-10.904149pt;}
.wscd{word-spacing:-10.848000pt;}
.ws5d{word-spacing:-10.838400pt;}
.ws2e{word-spacing:-10.771490pt;}
.ws6b{word-spacing:-10.725333pt;}
.ws37{word-spacing:-10.678794pt;}
.ws6a{word-spacing:-10.474667pt;}
.ws68{word-spacing:-10.464000pt;}
.ws6f{word-spacing:-10.084267pt;}
.ws69{word-spacing:-9.856000pt;}
.ws7a{word-spacing:-9.401600pt;}
.ws77{word-spacing:-9.152000pt;}
.ws78{word-spacing:-9.130667pt;}
.ws10{word-spacing:-8.804267pt;}
.ws57{word-spacing:-8.678400pt;}
.ws71{word-spacing:-8.309333pt;}
.ws5e{word-spacing:-8.265600pt;}
.ws6e{word-spacing:-8.169600pt;}
.ws79{word-spacing:-7.818667pt;}
.ws2{word-spacing:0.000000pt;}
.ws73{word-spacing:12.902400pt;}
.ws66{word-spacing:13.267200pt;}
.ws74{word-spacing:22.220800pt;}
.ws72{word-spacing:25.527467pt;}
.ws9f{word-spacing:42.753417pt;}
.ws96{word-spacing:62.472465pt;}
.wsa3{word-spacing:66.617457pt;}
.ws8f{word-spacing:78.810367pt;}
.ws7b{word-spacing:90.841485pt;}
.ws81{word-spacing:91.291090pt;}
.wsa0{word-spacing:104.226347pt;}
.ws90{word-spacing:104.887929pt;}
.wsa1{word-spacing:109.741424pt;}
.ws92{word-spacing:110.067497pt;}
.ws93{word-spacing:113.550788pt;}
.ws88{word-spacing:118.190459pt;}
.wsa6{word-spacing:119.865278pt;}
.wsa2{word-spacing:120.906091pt;}
.ws89{word-spacing:124.144789pt;}
.ws8e{word-spacing:127.781398pt;}
.ws8d{word-spacing:138.122737pt;}
.ws8c{word-spacing:141.696181pt;}
.ws97{word-spacing:143.235427pt;}
.ws9e{word-spacing:150.969986pt;}
.ws9c{word-spacing:173.164807pt;}
.ws7d{word-spacing:176.979015pt;}
.ws83{word-spacing:177.854944pt;}
.ws9a{word-spacing:180.697595pt;}
.ws80{word-spacing:189.574677pt;}
.ws87{word-spacing:190.512946pt;}
.ws7e{word-spacing:195.872508pt;}
.wsc4{word-spacing:196.394023pt;}
.ws84{word-spacing:196.841947pt;}
.wscc{word-spacing:213.819055pt;}
.wsc2{word-spacing:216.837240pt;}
.wsaf{word-spacing:218.429258pt;}
.wsad{word-spacing:218.538745pt;}
.wsbd{word-spacing:219.020896pt;}
.wsb6{word-spacing:219.649517pt;}
.ws86{word-spacing:225.322451pt;}
.wsae{word-spacing:234.431767pt;}
.wsbe{word-spacing:234.948982pt;}
.wsb7{word-spacing:235.623319pt;}
.ws7f{word-spacing:238.007751pt;}
.ws85{word-spacing:239.185731pt;}
.wscb{word-spacing:242.689125pt;}
.wsc0{word-spacing:245.607275pt;}
.wsaa{word-spacing:246.856957pt;}
.wsba{word-spacing:247.401586pt;}
.wsb3{word-spacing:248.111664pt;}
.wsa9{word-spacing:254.917136pt;}
.wsb9{word-spacing:255.479548pt;}
.wsb2{word-spacing:256.212811pt;}
.ws94{word-spacing:306.756143pt;}
.wsab{word-spacing:318.257326pt;}
.wsbb{word-spacing:318.959481pt;}
.wsb4{word-spacing:319.874941pt;}
.ws8b{word-spacing:324.261583pt;}
.ws91{word-spacing:338.265935pt;}
.wsa5{word-spacing:365.766689pt;}
.ws99{word-spacing:387.742861pt;}
.ws9d{word-spacing:388.524161pt;}
.ws9b{word-spacing:421.366252pt;}
.ws43{word-spacing:545.865399pt;}
.ws34{word-spacing:572.417293pt;}
.ws2b{word-spacing:577.386098pt;}
.ws26{word-spacing:584.497046pt;}
.wsac{word-spacing:713.531522pt;}
.wsbc{word-spacing:715.105752pt;}
.wsb5{word-spacing:717.158208pt;}
.ws3a{word-spacing:727.834831pt;}
.ws32{word-spacing:734.152721pt;}
.ws45{word-spacing:753.915383pt;}
.ws46{word-spacing:765.261550pt;}
.ws3d{word-spacing:807.384859pt;}
.ws48{word-spacing:823.368616pt;}
.ws49{word-spacing:841.664133pt;}
.ws38{word-spacing:877.436699pt;}
.ws2f{word-spacing:885.053190pt;}
.ws3b{word-spacing:916.466927pt;}
.ws39{word-spacing:944.340616pt;}
.ws31{word-spacing:976.286130pt;}
.ws41{word-spacing:1005.502378pt;}
.ws33{word-spacing:1015.239231pt;}
.ws3c{word-spacing:1068.383983pt;}
.ws3f{word-spacing:1084.305032pt;}
.ws30{word-spacing:1119.105262pt;}
.ws35{word-spacing:1128.551363pt;}
.ws2a{word-spacing:1132.887892pt;}
.ws27{word-spacing:1152.367243pt;}
.ws2c{word-spacing:1173.970034pt;}
._12{margin-left:-10.510933pt;}
._10{margin-left:-8.948267pt;}
._f{margin-left:-6.850133pt;}
._11{margin-left:-5.925333pt;}
._1c{margin-left:-4.833067pt;}
._e{margin-left:-3.856000pt;}
._13{margin-left:-2.958933pt;}
._5{margin-left:-2.060800pt;}
._0{margin-left:-1.030400pt;}
._4{width:1.251200pt;}
._1{width:2.281600pt;}
._7{width:3.922133pt;}
._2{width:4.857600pt;}
._6{width:5.888000pt;}
._14{width:7.237333pt;}
._8{width:8.979200pt;}
._38{width:9.909333pt;}
._1d{width:10.832000pt;}
._3{width:11.776000pt;}
._21{width:13.531733pt;}
._5d{width:14.669867pt;}
._1a{width:15.782400pt;}
._57{width:16.807467pt;}
._15{width:17.715200pt;}
._1b{width:18.866133pt;}
._56{width:19.811200pt;}
._17{width:20.716800pt;}
._27{width:22.253867pt;}
._18{width:23.174400pt;}
._16{width:24.284800pt;}
._3c{width:25.397333pt;}
._19{width:26.752000pt;}
._1e{width:28.199467pt;}
._20{width:30.025600pt;}
._1f{width:31.369600pt;}
._35{width:32.265600pt;}
._29{width:33.752533pt;}
._37{width:35.080533pt;}
._3b{width:36.258133pt;}
._2c{width:37.347200pt;}
._36{width:38.257067pt;}
._2b{width:39.209600pt;}
._28{width:40.371200pt;}
._8f{width:41.740800pt;}
._22{width:42.982400pt;}
._2a{width:43.926400pt;}
._59{width:45.200000pt;}
._25{width:46.835200pt;}
._58{width:48.300800pt;}
._23{width:49.940267pt;}
._a3{width:51.118933pt;}
._26{width:52.513067pt;}
._5c{width:53.598933pt;}
._24{width:56.288000pt;}
._ba{width:58.421594pt;}
._2e{width:59.472000pt;}
._b2{width:62.299733pt;}
._2d{width:63.225600pt;}
._3a{width:65.584000pt;}
._2f{width:66.480000pt;}
._39{width:68.704000pt;}
._ad{width:70.225067pt;}
._33{width:72.172800pt;}
._9{width:75.028267pt;}
._30{width:75.934933pt;}
._b3{width:77.352533pt;}
._32{width:78.352000pt;}
._61{width:79.868142pt;}
._31{width:81.273600pt;}
._34{width:84.963200pt;}
._aa{width:86.338533pt;}
._98{width:88.664309pt;}
._5a{width:93.879467pt;}
._91{width:99.126754pt;}
._b{width:100.723200pt;}
._7f{width:104.497624pt;}
._67{width:108.169431pt;}
._a{width:110.115200pt;}
._b9{width:112.404771pt;}
._62{width:113.818597pt;}
._b4{width:115.971692pt;}
._a8{width:117.371025pt;}
._af{width:119.205830pt;}
._68{width:120.104861pt;}
._63{width:123.807368pt;}
._b8{width:125.090797pt;}
._65{width:126.922915pt;}
._7e{width:129.372381pt;}
._c{width:130.451200pt;}
._b6{width:131.732552pt;}
._73{width:132.642951pt;}
._74{width:133.594875pt;}
._70{width:135.312418pt;}
._72{width:137.095963pt;}
._83{width:142.412669pt;}
._76{width:146.822357pt;}
._6f{width:149.588628pt;}
._7c{width:150.526661pt;}
._7a{width:154.800100pt;}
._79{width:157.325621pt;}
._75{width:160.826709pt;}
._95{width:161.981782pt;}
._90{width:163.082442pt;}
._5b{width:164.584533pt;}
._78{width:168.547199pt;}
._93{width:169.733127pt;}
._a7{width:171.735579pt;}
._6e{width:175.785255pt;}
._d{width:177.802667pt;}
._86{width:179.355434pt;}
._6b{width:188.933726pt;}
._5f{width:189.980100pt;}
._69{width:191.102051pt;}
._71{width:193.683545pt;}
._89{width:197.990128pt;}
._5e{width:199.679316pt;}
._66{width:203.818728pt;}
._6d{width:204.807096pt;}
._88{width:208.682768pt;}
._94{width:215.217577pt;}
._81{width:231.152174pt;}
._96{width:235.394847pt;}
._82{width:238.470300pt;}
._8d{width:242.649818pt;}
._4b{width:248.896018pt;}
._97{width:250.573049pt;}
._8b{width:257.717641pt;}
._8c{width:265.158361pt;}
._9b{width:266.625995pt;}
._a2{width:267.720930pt;}
._9f{width:268.654879pt;}
._84{width:271.591965pt;}
._8e{width:272.524115pt;}
._a6{width:275.655485pt;}
._9a{width:278.875811pt;}
._60{width:293.807449pt;}
._6a{width:295.981077pt;}
._a4{width:312.409643pt;}
._9e{width:313.306515pt;}
._55{width:329.935116pt;}
._99{width:345.581653pt;}
._9c{width:347.546362pt;}
._a0{width:349.291896pt;}
._80{width:423.671845pt;}
._77{width:437.622805pt;}
._7b{width:451.627157pt;}
._7d{width:455.643343pt;}
._64{width:529.435815pt;}
._6c{width:532.040873pt;}
._b5{width:542.769367pt;}
._a9{width:549.989095pt;}
._8a{width:554.625892pt;}
._b7{width:556.115212pt;}
._ab{width:563.712818pt;}
._4a{width:582.595931pt;}
._85{width:588.363139pt;}
._ae{width:589.608226pt;}
._51{width:592.919971pt;}
._92{width:603.516098pt;}
._b0{width:604.863040pt;}
._87{width:621.851861pt;}
._45{width:671.071513pt;}
._ac{width:679.062086pt;}
._bb{width:682.316326pt;}
._b1{width:718.222827pt;}
._47{width:723.088748pt;}
._9d{width:726.939073pt;}
._a5{width:728.538012pt;}
._a1{width:730.622683pt;}
._3d{width:754.309333pt;}
._54{width:786.159340pt;}
._43{width:879.533670pt;}
._4e{width:889.148664pt;}
._49{width:890.748955pt;}
._4d{width:903.457293pt;}
._3e{width:909.377632pt;}
._44{width:917.483889pt;}
._40{width:929.701745pt;}
._46{width:941.631696pt;}
._52{width:943.824437pt;}
._48{width:946.945087pt;}
._50{width:971.680419pt;}
._4c{width:989.392563pt;}
._41{width:1001.059872pt;}
._53{width:1031.624303pt;}
._4f{width:1064.361638pt;}
._3f{width:1067.899552pt;}
._42{width:1157.914976pt;}
.fs1d{font-size:35.200000pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:41.600000pt;}
.fs14{font-size:42.716891pt;}
.fs1b{font-size:44.800000pt;}
.fsf{font-size:47.251300pt;}
.fsd{font-size:47.661460pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:48.248447pt;}
.fs6{font-size:54.400000pt;}
.fs1e{font-size:56.811681pt;}
.fs20{font-size:57.092862pt;}
.fs2{font-size:57.600000pt;}
.fs19{font-size:60.800000pt;}
.fs2d{font-size:61.340476pt;}
.fs2b{font-size:62.078048pt;}
.fs23{font-size:63.165463pt;}
.fs1f{font-size:63.240717pt;}
.fs2e{font-size:63.392637pt;}
.fs21{font-size:63.553717pt;}
.fs3{font-size:64.000000pt;}
.fs13{font-size:64.149241pt;}
.fs15{font-size:64.594469pt;}
.fs16{font-size:65.880423pt;}
.fs28{font-size:66.148060pt;}
.fs2a{font-size:66.293999pt;}
.fs29{font-size:66.484273pt;}
.fs25{font-size:67.257034pt;}
.fs1c{font-size:67.461249pt;}
.fs12{font-size:69.155312pt;}
.fs2c{font-size:69.369813pt;}
.fs22{font-size:70.167639pt;}
.fs9{font-size:70.400000pt;}
.fs10{font-size:70.627189pt;}
.fs17{font-size:70.882788pt;}
.fse{font-size:70.958700pt;}
.fsc{font-size:71.574649pt;}
.fs27{font-size:71.719478pt;}
.fs18{font-size:72.285288pt;}
.fs11{font-size:72.394021pt;}
.fsa{font-size:72.456145pt;}
.fs0{font-size:73.600000pt;}
.fs24{font-size:74.712780pt;}
.fs26{font-size:79.669906pt;}
.fs4{font-size:86.533333pt;}
.fs1{font-size:105.733333pt;}
.fs1a{font-size:118.533333pt;}
.y0{bottom:0.000000pt;}
.y331{bottom:3.936144pt;}
.y34d{bottom:3.955650pt;}
.y32a{bottom:3.962385pt;}
.y335{bottom:3.968945pt;}
.y349{bottom:3.982021pt;}
.y355{bottom:3.988613pt;}
.y379{bottom:4.376360pt;}
.y38e{bottom:4.405536pt;}
.y398{bottom:4.412830pt;}
.y394{bottom:4.420124pt;}
.y3b1{bottom:4.659841pt;}
.y3c8{bottom:4.690906pt;}
.y3d2{bottom:4.698673pt;}
.y3ce{bottom:4.706439pt;}
.y32e{bottom:4.723373pt;}
.y327{bottom:4.749614pt;}
.y346{bottom:4.773136pt;}
.y3e1{bottom:4.969039pt;}
.y3e7{bottom:5.002166pt;}
.y3fd{bottom:5.010447pt;}
.y3ea{bottom:5.018729pt;}
.y45f{bottom:5.093311pt;}
.y376{bottom:5.251632pt;}
.y243{bottom:5.321135pt;}
.y249{bottom:5.321180pt;}
.y247{bottom:5.350697pt;}
.y254{bottom:5.358023pt;}
.y4a5{bottom:5.397091pt;}
.y263{bottom:5.454928pt;}
.y454{bottom:5.461914pt;}
.y44f{bottom:5.461950pt;}
.y265{bottom:5.477492pt;}
.y33d{bottom:5.508896pt;}
.y35b{bottom:5.532857pt;}
.y4aa{bottom:5.577614pt;}
.y23b{bottom:5.726092pt;}
.y23d{bottom:5.749725pt;}
.y26a{bottom:5.869127pt;}
.y22d{bottom:5.885624pt;}
.y220{bottom:5.886047pt;}
.y26c{bottom:5.893400pt;}
.y21d{bottom:5.926922pt;}
.y225{bottom:5.935074pt;}
.y272{bottom:5.955476pt;}
.y20b{bottom:5.978297pt;}
.y211{bottom:5.986543pt;}
.y274{bottom:6.023794pt;}
.y204{bottom:6.043603pt;}
.y1fc{bottom:6.051960pt;}
.y45d{bottom:6.103621pt;}
.y3a0{bottom:6.112316pt;}
.y252{bottom:6.295742pt;}
.y438{bottom:6.376264pt;}
.y42c{bottom:6.394564pt;}
.y420{bottom:6.404045pt;}
.y3da{bottom:6.508244pt;}
.y22b{bottom:6.843693pt;}
.y223{bottom:6.848658pt;}
.y20f{bottom:6.904150pt;}
.y405{bottom:6.954463pt;}
.y231{bottom:7.009103pt;}
.y233{bottom:7.015246pt;}
.y209{bottom:7.957320pt;}
.y1fe{bottom:8.055356pt;}
.y202{bottom:8.055406pt;}
.y2b0{bottom:12.000000pt;}
.y106{bottom:12.786667pt;}
.ye9{bottom:12.800000pt;}
.y124{bottom:12.806667pt;}
.y11f{bottom:12.813333pt;}
.yed{bottom:12.826667pt;}
.yfa{bottom:12.840000pt;}
.yeb{bottom:13.586667pt;}
.y109{bottom:13.593333pt;}
.yef{bottom:13.600000pt;}
.yf8{bottom:13.613333pt;}
.yf2{bottom:13.626667pt;}
.y104{bottom:13.640000pt;}
.y33b{bottom:24.468384pt;}
.y359{bottom:24.585524pt;}
.y4a4{bottom:26.166798pt;}
.y2dd{bottom:26.386667pt;}
.y2cc{bottom:26.400000pt;}
.y2e1{bottom:26.413333pt;}
.y2da{bottom:26.426667pt;}
.y2d3{bottom:26.440000pt;}
.y453{bottom:26.481361pt;}
.y44e{bottom:26.481396pt;}
.y4a9{bottom:27.042176pt;}
.y39e{bottom:27.155314pt;}
.y2cb{bottom:27.186667pt;}
.y2cf{bottom:27.200000pt;}
.y2e0{bottom:27.213333pt;}
.y2d4{bottom:27.226667pt;}
.y2c7{bottom:27.240000pt;}
.y262{bottom:27.364551pt;}
.y2c5{bottom:28.026667pt;}
.y2d2{bottom:28.040000pt;}
.y437{bottom:28.474416pt;}
.y42b{bottom:28.556141pt;}
.y23a{bottom:28.724833pt;}
.y2d8{bottom:28.840000pt;}
.y3d8{bottom:28.914312pt;}
.y245{bottom:29.362319pt;}
.y41f{bottom:29.365177pt;}
.y269{bottom:29.442368pt;}
.y250{bottom:29.564620pt;}
.y45c{bottom:29.591533pt;}
.y403{bottom:30.847650pt;}
.y271{bottom:32.086359pt;}
.y230{bottom:33.160115pt;}
.y22a{bottom:33.308431pt;}
.y129{bottom:37.626667pt;}
.y2b1{bottom:37.640000pt;}
.y12a{bottom:39.226667pt;}
.y2af{bottom:39.240000pt;}
.y113{bottom:42.426667pt;}
.y122{bottom:42.440000pt;}
.y357{bottom:43.638460pt;}
.y339{bottom:44.214708pt;}
.y4a3{bottom:46.936206pt;}
.y452{bottom:47.500505pt;}
.y44d{bottom:47.500541pt;}
.y39c{bottom:48.198312pt;}
.y4a8{bottom:48.506430pt;}
.y261{bottom:49.312100pt;}
.y436{bottom:50.572416pt;}
.y42a{bottom:50.717566pt;}
.y2ca{bottom:51.226667pt;}
.y1a{bottom:51.233333pt;}
.y2df{bottom:51.240000pt;}
.y2e9{bottom:51.266667pt;}
.y3d6{bottom:51.320379pt;}
.y41e{bottom:51.414530pt;}
.y244{bottom:51.644573pt;}
.y239{bottom:51.763386pt;}
.y24f{bottom:52.001524pt;}
.y268{bottom:53.056417pt;}
.y45b{bottom:53.079613pt;}
.y401{bottom:54.740347pt;}
.y270{bottom:56.181455pt;}
.y22f{bottom:58.315377pt;}
.y229{bottom:58.799164pt;}
.y1ff{bottom:61.379036pt;}
.y356{bottom:63.482507pt;}
.y338{bottom:63.961031pt;}
.y4a2{bottom:67.668394pt;}
.y451{bottom:68.481981pt;}
.y44c{bottom:68.482017pt;}
.y19{bottom:69.633333pt;}
.y4a7{bottom:69.932218pt;}
.y39b{bottom:70.116582pt;}
.y260{bottom:71.259649pt;}
.y435{bottom:72.670415pt;}
.y429{bottom:72.878990pt;}
.y41d{bottom:73.425867pt;}
.y24e{bottom:74.438427pt;}
.y3d5{bottom:74.658415pt;}
.y238{bottom:74.801939pt;}
.y2dc{bottom:75.226667pt;}
.y2c9{bottom:76.026667pt;}
.y2de{bottom:76.040000pt;}
.y267{bottom:76.670465pt;}
.y45a{bottom:77.535818pt;}
.y400{bottom:79.626833pt;}
.y26f{bottom:80.276550pt;}
.y20c{bottom:82.436185pt;}
.y353{bottom:82.535438pt;}
.y336{bottom:82.920126pt;}
.y228{bottom:83.315728pt;}
.y399{bottom:91.159580pt;}
.y434{bottom:96.635315pt;}
.y428{bottom:96.912672pt;}
.y3d3{bottom:97.064482pt;}
.y41c{bottom:97.338011pt;}
.y2bc{bottom:97.666667pt;}
.y24d{bottom:97.768342pt;}
.y241{bottom:97.982792pt;}
.y480{bottom:99.266667pt;}
.y2c8{bottom:100.053333pt;}
.y73{bottom:100.066667pt;}
.y351{bottom:101.555410pt;}
.y1f7{bottom:101.666667pt;}
.y333{bottom:101.879221pt;}
.y141{bottom:102.466667pt;}
.y152{bottom:103.266667pt;}
.y3fe{bottom:103.560932pt;}
.y1c6{bottom:104.066667pt;}
.y26e{bottom:104.371646pt;}
.y218{bottom:105.666667pt;}
.y227{bottom:106.858125pt;}
.y25e{bottom:107.266667pt;}
.y189{bottom:108.866667pt;}
.y42e{bottom:109.666667pt;}
.y181{bottom:110.466667pt;}
.y1c8{bottom:111.266667pt;}
.ya5{bottom:112.066667pt;}
.y396{bottom:112.202577pt;}
.ybd{bottom:112.866667pt;}
.y1bd{bottom:114.466667pt;}
.y303{bottom:116.066667pt;}
.y172{bottom:116.866667pt;}
.yd6{bottom:117.666667pt;}
.y432{bottom:118.130667pt;}
.y53{bottom:119.300000pt;}
.y3d0{bottom:119.470550pt;}
.y433{bottom:119.647715pt;}
.y427{bottom:119.991121pt;}
.y140{bottom:120.100000pt;}
.y24c{bottom:120.205246pt;}
.y240{bottom:121.188853pt;}
.y41b{bottom:121.212138pt;}
.y350{bottom:121.399457pt;}
.y332{bottom:121.592743pt;}
.y151{bottom:121.700000pt;}
.y2e6{bottom:122.500000pt;}
.y108{bottom:123.300000pt;}
.y36{bottom:124.100000pt;}
.y17d{bottom:124.900000pt;}
.y72{bottom:126.500000pt;}
.y18{bottom:127.300000pt;}
.y3fb{bottom:127.453629pt;}
.y42d{bottom:128.100000pt;}
.y180{bottom:128.900000pt;}
.y279{bottom:130.500000pt;}
.y18e{bottom:132.100000pt;}
.y1bc{bottom:132.900000pt;}
.y419{bottom:133.706667pt;}
.y395{bottom:134.120847pt;}
.y302{bottom:134.493333pt;}
.y41a{bottom:134.560000pt;}
.y8b{bottom:135.306667pt;}
.y25d{bottom:136.106667pt;}
.y44a{bottom:136.893333pt;}
.y188{bottom:137.693333pt;}
.y13f{bottom:138.493333pt;}
.y450{bottom:139.153352pt;}
.ya4{bottom:139.293333pt;}
.y1fa{bottom:139.887106pt;}
.y150{bottom:140.106667pt;}
.y34e{bottom:140.451070pt;}
.y32f{bottom:140.546589pt;}
.y1f6{bottom:141.706667pt;}
.ybc{bottom:142.493333pt;}
.y24b{bottom:142.642149pt;}
.y3cf{bottom:142.808585pt;}
.y464{bottom:143.293333pt;}
.y1c5{bottom:144.093333pt;}
.y23f{bottom:144.357963pt;}
.yd5{bottom:144.893333pt;}
.y52{bottom:145.706667pt;}
.y171{bottom:146.493333pt;}
.y492{bottom:148.106667pt;}
.y1e3{bottom:148.893333pt;}
.y40f{bottom:149.693333pt;}
.y160{bottom:151.293333pt;}
.y71{bottom:152.106667pt;}
.y3fa{bottom:152.340115pt;}
.y123{bottom:152.893333pt;}
.y107{bottom:153.693333pt;}
.y35{bottom:153.706667pt;}
.y3dc{bottom:154.493333pt;}
.y392{bottom:155.171139pt;}
.y13e{bottom:156.093333pt;}
.y47f{bottom:156.893333pt;}
.y14f{bottom:157.706667pt;}
.y30e{bottom:158.493333pt;}
.y34b{bottom:159.504005pt;}
.y442{bottom:159.626667pt;}
.y1c0{bottom:160.106667pt;}
.y32c{bottom:160.292913pt;}
.y21b{bottom:160.579210pt;}
.y17{bottom:160.893333pt;}
.y207{bottom:160.978642pt;}
.y18d{bottom:161.693333pt;}
.y1f9{bottom:164.053067pt;}
.y17f{bottom:164.133333pt;}
.y3cc{bottom:165.222419pt;}
.y8a{bottom:165.733333pt;}
.ya3{bottom:166.533333pt;}
.y187{bottom:167.333333pt;}
.y2d5{bottom:168.133333pt;}
.y1bb{bottom:168.933333pt;}
.ye7{bottom:169.733333pt;}
.y1d2{bottom:170.533333pt;}
.y51{bottom:171.333333pt;}
.ybb{bottom:172.133333pt;}
.y27e{bottom:172.933333pt;}
.y13d{bottom:173.733333pt;}
.y14e{bottom:175.333333pt;}
.y390{bottom:176.206843pt;}
.y3f8{bottom:176.234461pt;}
.y371{bottom:176.933333pt;}
.y1e2{bottom:177.733333pt;}
.y70{bottom:178.533333pt;}
.y278{bottom:179.333333pt;}
.y34a{bottom:179.348053pt;}
.y32b{bottom:180.039236pt;}
.y15f{bottom:180.133333pt;}
.y3ac{bottom:180.933333pt;}
.y1f5{bottom:181.733333pt;}
.y17c{bottom:182.533333pt;}
.y34{bottom:183.333333pt;}
.y2ae{bottom:184.133333pt;}
.y21a{bottom:185.179316pt;}
.y1af{bottom:185.733333pt;}
.y206{bottom:185.797234pt;}
.y40e{bottom:186.533333pt;}
.y2a5{bottom:187.333333pt;}
.y3ca{bottom:187.620720pt;}
.y46c{bottom:188.133333pt;}
.y3a5{bottom:188.933333pt;}
.y301{bottom:189.733333pt;}
.y4af{bottom:190.533333pt;}
.y18c{bottom:191.333333pt;}
.ya2{bottom:192.933333pt;}
.y14d{bottom:193.733333pt;}
.y16{bottom:195.333333pt;}
.y4b7{bottom:196.133333pt;}
.y186{bottom:196.933333pt;}
.y50{bottom:197.733333pt;}
.y38f{bottom:198.132407pt;}
.y347{bottom:198.400984pt;}
.yd4{bottom:198.533333pt;}
.y328{bottom:198.998331pt;}
.ye6{bottom:199.333333pt;}
.y3f6{bottom:200.118877pt;}
.y1ba{bottom:200.133333pt;}
.y1d1{bottom:200.933333pt;}
.y1c4{bottom:201.733333pt;}
.yba{bottom:202.533333pt;}
.y411{bottom:203.333333pt;}
.y6f{bottom:204.133333pt;}
.y13c{bottom:204.933333pt;}
.y36d{bottom:205.733333pt;}
.y1e1{bottom:207.373333pt;}
.y463{bottom:208.173333pt;}
.y15e{bottom:209.760000pt;}
.y205{bottom:209.973333pt;}
.y195{bottom:210.573333pt;}
.y3c9{bottom:210.966522pt;}
.y33{bottom:212.173333pt;}
.y121{bottom:212.960000pt;}
.y105{bottom:213.773333pt;}
.y1ae{bottom:214.560000pt;}
.y47e{bottom:215.360000pt;}
.y49c{bottom:216.173333pt;}
.y2a4{bottom:216.973333pt;}
.y491{bottom:217.773333pt;}
.y344{bottom:218.245045pt;}
.y29b{bottom:218.560000pt;}
.y325{bottom:218.744654pt;}
.y426{bottom:218.773333pt;}
.y38c{bottom:219.168111pt;}
.y43a{bottom:219.373333pt;}
.ya1{bottom:220.173333pt;}
.y410{bottom:220.960000pt;}
.y308{bottom:222.573333pt;}
.y4f{bottom:223.373333pt;}
.y25c{bottom:224.173333pt;}
.yd3{bottom:224.960000pt;}
.y3f5{bottom:225.013644pt;}
.y89{bottom:225.773333pt;}
.y46e{bottom:226.560000pt;}
.y1b9{bottom:227.360000pt;}
.y17e{bottom:228.973333pt;}
.y15{bottom:229.773333pt;}
.y6e{bottom:230.560000pt;}
.y1c3{bottom:231.373333pt;}
.yb9{bottom:232.173333pt;}
.y3c6{bottom:233.364823pt;}
.y170{bottom:233.760000pt;}
.y1a3{bottom:234.573333pt;}
.y36c{bottom:235.373333pt;}
.y20e{bottom:235.759997pt;}
.y1e0{bottom:236.173333pt;}
.y2f8{bottom:236.960000pt;}
.y449{bottom:237.773333pt;}
.y343{bottom:238.853853pt;}
.y324{bottom:239.251966pt;}
.y293{bottom:239.360000pt;}
.y1bf{bottom:240.173333pt;}
.y38a{bottom:240.174639pt;}
.y13b{bottom:240.973333pt;}
.y32{bottom:241.773333pt;}
.y19c{bottom:242.560000pt;}
.y103{bottom:243.360000pt;}
.y472{bottom:243.373333pt;}
.y1ad{bottom:244.173333pt;}
.ya0{bottom:246.573333pt;}
.y3aa{bottom:247.373333pt;}
.y3f3{bottom:248.898053pt;}
.y484{bottom:248.960000pt;}
.y18b{bottom:249.773333pt;}
.y15d{bottom:250.600000pt;}
.y307{bottom:251.400000pt;}
.yd2{bottom:252.200000pt;}
.y25b{bottom:253.800000pt;}
.y365{bottom:254.600000pt;}
.y88{bottom:255.400000pt;}
.y3c4{bottom:255.732059pt;}
.y322{bottom:256.200000pt;}
.y4e{bottom:257.000000pt;}
.y29a{bottom:258.600000pt;}
.ye5{bottom:259.400000pt;}
.y1c2{bottom:260.200000pt;}
.y19b{bottom:261.000000pt;}
.y20d{bottom:261.610979pt;}
.y277{bottom:261.800000pt;}
.y389{bottom:262.100203pt;}
.yb8{bottom:262.600000pt;}
.y14{bottom:263.400000pt;}
.y6d{bottom:264.200000pt;}
.y1d0{bottom:265.000000pt;}
.y1df{bottom:265.800000pt;}
.y462{bottom:266.600000pt;}
.y370{bottom:267.400000pt;}
.y1be{bottom:268.200000pt;}
.y2e5{bottom:269.000000pt;}
.y490{bottom:269.800000pt;}
.y17b{bottom:270.600000pt;}
.y31{bottom:271.400000pt;}
.y120{bottom:272.200000pt;}
.y3f1{bottom:272.799032pt;}
.y1ac{bottom:273.000000pt;}
.y9f{bottom:273.800000pt;}
.y24a{bottom:274.533333pt;}
.y2a3{bottom:275.400000pt;}
.y253{bottom:275.409716pt;}
.y3ad{bottom:275.746667pt;}
.y46b{bottom:276.200000pt;}
.y3c3{bottom:279.077861pt;}
.yd1{bottom:279.400000pt;}
.y1c7{bottom:280.200000pt;}
.y31b{bottom:281.000000pt;}
.y3db{bottom:281.800000pt;}
.y387{bottom:283.135907pt;}
.y4d{bottom:283.400000pt;}
.y40d{bottom:284.200000pt;}
.y47d{bottom:285.000000pt;}
.y87{bottom:285.800000pt;}
.y3a4{bottom:286.600000pt;}
.y2f2{bottom:287.400000pt;}
.y48f{bottom:288.200000pt;}
.y2c2{bottom:289.000000pt;}
.y6c{bottom:289.800000pt;}
.y431{bottom:290.600000pt;}
.y36f{bottom:291.400000pt;}
.yb7{bottom:292.200000pt;}
.y372{bottom:292.653333pt;}
.y16f{bottom:293.000000pt;}
.y36b{bottom:293.840000pt;}
.y323{bottom:294.493333pt;}
.y1a2{bottom:294.626667pt;}
.y14c{bottom:295.440000pt;}
.y1cf{bottom:296.226667pt;}
.y19a{bottom:297.040000pt;}
.y3f0{bottom:297.677236pt;}
.y13{bottom:297.840000pt;}
.y299{bottom:298.640000pt;}
.y341{bottom:299.440000pt;}
.y3d9{bottom:300.001138pt;}
.y30{bottom:300.226667pt;}
.y217{bottom:301.040000pt;}
.y22e{bottom:301.426667pt;}
.y3c1{bottom:301.476162pt;}
.y49b{bottom:301.840000pt;}
.y11e{bottom:302.626667pt;}
.y102{bottom:303.440000pt;}
.y385{bottom:304.186199pt;}
.y439{bottom:304.226667pt;}
.y2a2{bottom:305.040000pt;}
.yd0{bottom:305.840000pt;}
.y1de{bottom:306.626667pt;}
.y361{bottom:307.440000pt;}
.y15c{bottom:308.226667pt;}
.y3dd{bottom:308.626667pt;}
.y4c{bottom:309.040000pt;}
.y306{bottom:309.840000pt;}
.y31a{bottom:310.640000pt;}
.y20a{bottom:311.292691pt;}
.y25a{bottom:312.226667pt;}
.y458{bottom:313.040000pt;}
.y40c{bottom:313.840000pt;}
.y199{bottom:314.626667pt;}
.y33c{bottom:315.025574pt;}
.y39f{bottom:315.432287pt;}
.y86{bottom:315.440000pt;}
.y6b{bottom:316.226667pt;}
.y2f1{bottom:317.040000pt;}
.y4ae{bottom:317.840000pt;}
.y1c1{bottom:318.626667pt;}
.ye4{bottom:319.440000pt;}
.y49a{bottom:320.226667pt;}
.y3ee{bottom:321.578208pt;}
.y16e{bottom:321.840000pt;}
.y3d7{bottom:322.407205pt;}
.yb6{bottom:322.640000pt;}
.y36a{bottom:323.440000pt;}
.y3bf{bottom:323.889996pt;}
.y287{bottom:324.226667pt;}
.y2f7{bottom:325.040000pt;}
.y448{bottom:325.840000pt;}
.y384{bottom:326.097174pt;}
.y292{bottom:326.626667pt;}
.y9e{bottom:327.440000pt;}
.y17a{bottom:329.040000pt;}
.y2f{bottom:329.840000pt;}
.y2ad{bottom:330.626667pt;}
.y12{bottom:332.226667pt;}
.ycf{bottom:333.040000pt;}
.y101{bottom:333.840000pt;}
.y33a{bottom:333.984668pt;}
.y404{bottom:334.505271pt;}
.y2a1{bottom:334.640000pt;}
.y4b{bottom:335.440000pt;}
.y1a1{bottom:336.226667pt;}
.y39d{bottom:336.475285pt;}
.y127{bottom:337.866667pt;}
.y208{bottom:338.133185pt;}
.y465{bottom:338.666667pt;}
.y48e{bottom:339.466667pt;}
.y4b3{bottom:340.266667pt;}
.y46d{bottom:341.066667pt;}
.y6a{bottom:341.866667pt;}
.y40b{bottom:342.666667pt;}
.y1eb{bottom:343.466667pt;}
.y85{bottom:345.066667pt;}
.y3ec{bottom:345.462623pt;}
.y4b6{bottom:345.866667pt;}
.y2f0{bottom:346.666667pt;}
.y382{bottom:347.147466pt;}
.y3be{bottom:347.220265pt;}
.y2c1{bottom:347.466667pt;}
.y30d{bottom:348.266667pt;}
.ye3{bottom:349.066667pt;}
.y198{bottom:350.666667pt;}
.y16d{bottom:351.466667pt;}
.yb5{bottom:352.266667pt;}
.y3a3{bottom:353.066667pt;}
.y286{bottom:353.866667pt;}
.y9d{bottom:354.666667pt;}
.y291{bottom:356.266667pt;}
.y2e4{bottom:357.066667pt;}
.y48d{bottom:357.866667pt;}
.y402{bottom:358.397961pt;}
.y2e{bottom:358.666667pt;}
.yce{bottom:359.466667pt;}
.y4a{bottom:361.066667pt;}
.y11d{bottom:362.666667pt;}
.y100{bottom:363.466667pt;}
.y1dd{bottom:364.266667pt;}
.y360{bottom:365.066667pt;}
.y2c0{bottom:365.866667pt;}
.y11{bottom:366.666667pt;}
.y185{bottom:367.466667pt;}
.y3d4{bottom:368.151308pt;}
.y380{bottom:368.183170pt;}
.y69{bottom:368.266667pt;}
.y197{bottom:369.066667pt;}
.y3bc{bottom:369.634099pt;}
.y3eb{bottom:370.390518pt;}
.y441{bottom:370.666667pt;}
.y3a2{bottom:371.466667pt;}
.y1ea{bottom:372.266667pt;}
.y47c{bottom:373.066667pt;}
.y337{bottom:373.444514pt;}
.y305{bottom:373.866667pt;}
.y3a9{bottom:374.666667pt;}
.y84{bottom:375.466667pt;}
.y1a0{bottom:376.266667pt;}
.y30c{bottom:377.066667pt;}
.y364{bottom:377.866667pt;}
.y46f{bottom:378.666667pt;}
.y39a{bottom:379.436553pt;}
.ye2{bottom:379.466667pt;}
.y232{bottom:379.874555pt;}
.y2d1{bottom:380.266667pt;}
.y9c{bottom:381.106667pt;}
.y369{bottom:381.906667pt;}
.yb4{bottom:382.693333pt;}
.y285{bottom:383.506667pt;}
.y2bf{bottom:384.306667pt;}
.y259{bottom:385.106667pt;}
.y290{bottom:385.893333pt;}
.y49{bottom:386.693333pt;}
.y340{bottom:387.506667pt;}
.y2d{bottom:388.306667pt;}
.y2ac{bottom:389.093333pt;}
.y440{bottom:389.893333pt;}
.y37f{bottom:390.108734pt;}
.y3d1{bottom:390.518544pt;}
.y1ab{bottom:390.706667pt;}
.y425{bottom:391.506667pt;}
.y3ba{bottom:392.032400pt;}
.y11c{bottom:392.306667pt;}
.y334{bottom:392.403609pt;}
.yff{bottom:393.093333pt;}
.y2a0{bottom:393.106667pt;}
.y68{bottom:393.906667pt;}
.y3e8{bottom:394.291489pt;}
.y35f{bottom:395.506667pt;}
.y15b{bottom:396.306667pt;}
.y363{bottom:397.106667pt;}
.y418{bottom:397.893333pt;}
.y10{bottom:400.306667pt;}
.y397{bottom:400.443081pt;}
.y457{bottom:401.093333pt;}
.y2be{bottom:401.893333pt;}
.y3a1{bottom:402.706667pt;}
.y3a8{bottom:403.506667pt;}
.y14b{bottom:404.293333pt;}
.y83{bottom:405.106667pt;}
.y4b5{bottom:405.906667pt;}
.y2bb{bottom:406.693333pt;}
.y3ff{bottom:407.177144pt;}
.y499{bottom:407.506667pt;}
.y9b{bottom:408.306667pt;}
.ye1{bottom:409.106667pt;}
.y16c{bottom:409.893333pt;}
.y424{bottom:410.693333pt;}
.y37d{bottom:411.144438pt;}
.y368{bottom:411.506667pt;}
.yb3{bottom:412.306667pt;}
.y48{bottom:413.093333pt;}
.y35e{bottom:413.893333pt;}
.y28f{bottom:414.706667pt;}
.y3b9{bottom:415.378202pt;}
.y2e3{bottom:415.506667pt;}
.y210{bottom:415.643253pt;}
.y4ad{bottom:416.293333pt;}
.y179{bottom:417.106667pt;}
.y2c{bottom:417.906667pt;}
.y3e5{bottom:418.175905pt;}
.y258{bottom:419.506667pt;}
.y67{bottom:420.306667pt;}
.y26d{bottom:420.706667pt;}
.y43f{bottom:421.106667pt;}
.y11b{bottom:421.893333pt;}
.y2d0{bottom:422.693333pt;}
.yfe{bottom:423.506667pt;}
.y216{bottom:424.306667pt;}
.y15a{bottom:425.933333pt;}
.y27d{bottom:427.533333pt;}
.y423{bottom:429.933333pt;}
.y40a{bottom:430.733333pt;}
.y3fc{bottom:431.069834pt;}
.y330{bottom:431.103778pt;}
.y35d{bottom:431.533333pt;}
.y37b{bottom:432.194730pt;}
.y362{bottom:432.333333pt;}
.y2bd{bottom:433.133333pt;}
.y14a{bottom:433.933333pt;}
.yf{bottom:434.733333pt;}
.y82{bottom:435.533333pt;}
.y251{bottom:436.034370pt;}
.y3cd{bottom:436.262647pt;}
.y2ba{bottom:436.333333pt;}
.y3b7{bottom:437.776503pt;}
.y461{bottom:437.933333pt;}
.y47{bottom:438.733333pt;}
.ye0{bottom:439.533333pt;}
.ycd{bottom:440.333333pt;}
.y498{bottom:441.133333pt;}
.y19e{bottom:441.933333pt;}
.yb2{bottom:442.733333pt;}
.y3e4{bottom:443.070673pt;}
.y393{bottom:443.404349pt;}
.y470{bottom:443.533333pt;}
.y28e{bottom:444.333333pt;}
.y497{bottom:445.133333pt;}
.y66{bottom:445.933333pt;}
.y2b{bottom:446.733333pt;}
.y4ac{bottom:447.533333pt;}
.y30b{bottom:448.333333pt;}
.y1aa{bottom:449.133333pt;}
.y126{bottom:449.933333pt;}
.y32d{bottom:450.062873pt;}
.y319{bottom:450.733333pt;}
.y196{bottom:451.533333pt;}
.y11a{bottom:452.333333pt;}
.yfd{bottom:453.133333pt;}
.y37a{bottom:454.105706pt;}
.y159{bottom:454.733333pt;}
.y215{bottom:457.133333pt;}
.y226{bottom:457.906667pt;}
.y1f4{bottom:457.933333pt;}
.y3cb{bottom:458.676481pt;}
.y2ab{bottom:458.733333pt;}
.y43e{bottom:459.533333pt;}
.y3b5{bottom:460.190337pt;}
.y2e2{bottom:460.333333pt;}
.y48c{bottom:461.133333pt;}
.y9a{bottom:461.933333pt;}
.y149{bottom:462.733333pt;}
.y2ef{bottom:463.533333pt;}
.y417{bottom:464.333333pt;}
.y391{bottom:464.454641pt;}
.y46{bottom:465.133333pt;}
.y460{bottom:465.933333pt;}
.y3e2{bottom:466.955081pt;}
.ycc{bottom:467.533333pt;}
.y16b{bottom:468.360000pt;}
.ye{bottom:469.173333pt;}
.y1e9{bottom:470.773333pt;}
.y19f{bottom:471.560000pt;}
.y65{bottom:472.360000pt;}
.y4ab{bottom:473.173333pt;}
.y28d{bottom:473.973333pt;}
.y377{bottom:475.155997pt;}
.y2d7{bottom:475.560000pt;}
.y2a{bottom:476.373333pt;}
.y236{bottom:477.173333pt;}
.y27c{bottom:477.973333pt;}
.y1a9{bottom:479.573333pt;}
.y44b{bottom:479.633315pt;}
.y3f9{bottom:479.892082pt;}
.y2ce{bottom:480.360000pt;}
.y29f{bottom:481.173333pt;}
.y1b8{bottom:481.960000pt;}
.y119{bottom:481.973333pt;}
.y1f3{bottom:482.773333pt;}
.y3b4{bottom:483.520606pt;}
.yfc{bottom:483.560000pt;}
.y184{bottom:484.360000pt;}
.y1f8{bottom:484.493333pt;}
.y19d{bottom:485.173333pt;}
.y201{bottom:485.478417pt;}
.y4a0{bottom:485.973333pt;}
.y125{bottom:487.560000pt;}
.y99{bottom:488.373333pt;}
.y300{bottom:489.173333pt;}
.y329{bottom:489.529279pt;}
.y47b{bottom:489.973333pt;}
.y45{bottom:490.760000pt;}
.y3df{bottom:490.856060pt;}
.y46a{bottom:491.573333pt;}
.y148{bottom:492.360000pt;}
.y2ee{bottom:493.173333pt;}
.ycb{bottom:493.960000pt;}
.y2b9{bottom:494.773333pt;}
.y81{bottom:495.560000pt;}
.y374{bottom:497.066973pt;}
.y496{bottom:497.173333pt;}
.y64{bottom:497.973333pt;}
.y2aa{bottom:498.773333pt;}
.ydf{bottom:499.560000pt;}
.y1e8{bottom:500.373333pt;}
.yb1{bottom:502.760000pt;}
.yd{bottom:503.573333pt;}
.y3f7{bottom:503.776491pt;}
.y3c7{bottom:504.420584pt;}
.y178{bottom:505.173333pt;}
.y3b2{bottom:505.934440pt;}
.y29{bottom:505.960000pt;}
.y38d{bottom:507.415908pt;}
.y367{bottom:507.560000pt;}
.y235{bottom:508.360000pt;}
.y326{bottom:508.488374pt;}
.y1b7{bottom:509.973333pt;}
.y1dc{bottom:510.773333pt;}
.y3a7{bottom:511.560000pt;}
.y118{bottom:512.400000pt;}
.y342{bottom:512.560000pt;}
.y200{bottom:512.649355pt;}
.yfb{bottom:513.200000pt;}
.y30a{bottom:514.000000pt;}
.y35c{bottom:514.800000pt;}
.y98{bottom:515.600000pt;}
.y3de{bottom:515.734264pt;}
.y1a8{bottom:516.400000pt;}
.y44{bottom:517.200000pt;}
.y456{bottom:518.000000pt;}
.y422{bottom:518.800000pt;}
.y373{bottom:518.992537pt;}
.y4a6{bottom:519.327920pt;}
.y47a{bottom:519.600000pt;}
.yca{bottom:521.200000pt;}
.y2cd{bottom:522.000000pt;}
.y416{bottom:522.800000pt;}
.y63{bottom:524.400000pt;}
.y80{bottom:525.200000pt;}
.y3c5{bottom:526.818885pt;}
.y16a{bottom:527.600000pt;}
.y3af{bottom:528.332741pt;}
.y38b{bottom:528.451612pt;}
.yde{bottom:529.200000pt;}
.y1e7{bottom:530.000000pt;}
.y48b{bottom:530.800000pt;}
.y2f6{bottom:531.600000pt;}
.yb0{bottom:532.400000pt;}
.y35a{bottom:533.189869pt;}
.y1a7{bottom:534.000000pt;}
.y28{bottom:534.800000pt;}
.y18a{bottom:535.600000pt;}
.y23e{bottom:536.080000pt;}
.y248{bottom:536.952178pt;}
.yc{bottom:537.200000pt;}
.y2ed{bottom:538.000000pt;}
.y366{bottom:538.800000pt;}
.y1b6{bottom:539.600000pt;}
.y1db{bottom:540.400000pt;}
.y117{bottom:542.000000pt;}
.y43{bottom:542.800000pt;}
.yf9{bottom:543.600000pt;}
.y273{bottom:545.143676pt;}
.y2ff{bottom:546.800000pt;}
.yc9{bottom:547.600000pt;}
.y479{bottom:548.400000pt;}
.y430{bottom:549.200000pt;}
.y62{bottom:550.000000pt;}
.y147{bottom:550.800000pt;}
.y318{bottom:551.600000pt;}
.y358{bottom:552.242799pt;}
.y3f4{bottom:552.555674pt;}
.y3ae{bottom:552.610511pt;}
.y158{bottom:553.200000pt;}
.y2d6{bottom:554.000000pt;}
.y459{bottom:554.175780pt;}
.y7f{bottom:555.626667pt;}
.y169{bottom:556.440000pt;}
.y2a9{bottom:557.226667pt;}
.y1e6{bottom:558.840000pt;}
.ydd{bottom:559.640000pt;}
.y3a6{bottom:560.440000pt;}
.y28c{bottom:561.226667pt;}
.y483{bottom:562.040000pt;}
.yaf{bottom:562.840000pt;}
.y177{bottom:563.640000pt;}
.y27{bottom:564.426667pt;}
.y1a6{bottom:565.240000pt;}
.y1fd{bottom:565.989766pt;}
.y43d{bottom:566.026667pt;}
.y495{bottom:566.840000pt;}
.y2ec{bottom:567.626667pt;}
.y2f5{bottom:568.440000pt;}
.y42{bottom:569.226667pt;}
.y1da{bottom:570.026667pt;}
.y388{bottom:571.412880pt;}
.yb{bottom:571.640000pt;}
.y116{bottom:572.426667pt;}
.y183{bottom:572.440000pt;}
.y3c2{bottom:572.562988pt;}
.yf7{bottom:573.226667pt;}
.y4b2{bottom:574.040000pt;}
.yc8{bottom:574.840000pt;}
.y2fe{bottom:575.640000pt;}
.y61{bottom:576.426667pt;}
.y3f2{bottom:576.456645pt;}
.y130{bottom:577.226667pt;}
.y421{bottom:578.026667pt;}
.y469{bottom:579.626667pt;}
.y146{bottom:580.440000pt;}
.y317{bottom:581.226667pt;}
.y321{bottom:582.026667pt;}
.y157{bottom:582.840000pt;}
.y1ca{bottom:583.640000pt;}
.y22c{bottom:584.369889pt;}
.y43c{bottom:584.440000pt;}
.y7e{bottom:585.226667pt;}
.y2f4{bottom:586.040000pt;}
.y2a8{bottom:586.840000pt;}
.y257{bottom:587.640000pt;}
.y168{bottom:588.426667pt;}
.ydc{bottom:589.240000pt;}
.y415{bottom:590.026667pt;}
.y298{bottom:590.840000pt;}
.y354{bottom:591.106820pt;}
.yae{bottom:592.440000pt;}
.y386{bottom:592.463172pt;}
.y1fb{bottom:593.160820pt;}
.y26{bottom:593.226667pt;}
.y2b8{bottom:594.026667pt;}
.y41{bottom:594.840000pt;}
.y3c0{bottom:594.976822pt;}
.y97{bottom:596.440000pt;}
.y2eb{bottom:597.226667pt;}
.y1b5{bottom:598.040000pt;}
.y1a5{bottom:598.840000pt;}
.y316{bottom:599.666667pt;}
.y13a{bottom:600.466667pt;}
.yc7{bottom:601.266667pt;}
.y115{bottom:602.066667pt;}
.y471{bottom:602.866667pt;}
.yf6{bottom:603.666667pt;}
.y2fd{bottom:605.266667pt;}
.y242{bottom:605.572547pt;}
.ya{bottom:606.066667pt;}
.y12f{bottom:606.866667pt;}
.y315{bottom:607.666667pt;}
.y145{bottom:609.266667pt;}
.y60{bottom:610.066667pt;}
.y352{bottom:610.159749pt;}
.y156{bottom:612.466667pt;}
.y42f{bottom:613.266667pt;}
.y266{bottom:614.813333pt;}
.y256{bottom:614.866667pt;}
.y7d{bottom:615.666667pt;}
.y48a{bottom:617.266667pt;}
.y2a7{bottom:618.866667pt;}
.ydb{bottom:619.666667pt;}
.y297{bottom:620.466667pt;}
.y40{bottom:621.266667pt;}
.y2f3{bottom:622.066667pt;}
.y25{bottom:622.866667pt;}
.y1c9{bottom:623.666667pt;}
.y3ef{bottom:625.235829pt;}
.y214{bottom:626.066667pt;}
.y45e{bottom:626.618308pt;}
.y1b4{bottom:627.666667pt;}
.yc6{bottom:628.466667pt;}
.y139{bottom:629.266667pt;}
.y194{bottom:630.866667pt;}
.y167{bottom:631.666667pt;}
.y114{bottom:632.466667pt;}
.yf5{bottom:633.266667pt;}
.y284{bottom:634.066667pt;}
.y2fc{bottom:634.866667pt;}
.y383{bottom:635.424440pt;}
.y5f{bottom:635.666667pt;}
.y28b{bottom:636.466667pt;}
.y12e{bottom:637.266667pt;}
.y468{bottom:638.066667pt;}
.y144{bottom:638.866667pt;}
.y9{bottom:639.666667pt;}
.y3bd{bottom:640.720925pt;}
.y155{bottom:641.266667pt;}
.y182{bottom:642.066667pt;}
.y414{bottom:643.693333pt;}
.y7c{bottom:645.306667pt;}
.y3f{bottom:646.893333pt;}
.y314{bottom:647.693333pt;}
.y2db{bottom:647.706667pt;}
.y29e{bottom:648.506667pt;}
.y34f{bottom:649.055415pt;}
.y3ed{bottom:649.120237pt;}
.yda{bottom:649.306667pt;}
.y96{bottom:650.093333pt;}
.y2b7{bottom:651.706667pt;}
.y24{bottom:652.506667pt;}
.y2a6{bottom:653.293333pt;}
.yc5{bottom:655.693333pt;}
.y381{bottom:656.460143pt;}
.y1b3{bottom:656.506667pt;}
.y409{bottom:657.306667pt;}
.y138{bottom:658.893333pt;}
.y213{bottom:659.693333pt;}
.y219{bottom:659.746667pt;}
.y193{bottom:660.506667pt;}
.y1e5{bottom:661.306667pt;}
.y5e{bottom:662.093333pt;}
.y112{bottom:662.106667pt;}
.y283{bottom:662.893333pt;}
.y3bb{bottom:663.119226pt;}
.yf4{bottom:663.706667pt;}
.y2fb{bottom:664.506667pt;}
.y28a{bottom:665.293333pt;}
.y478{bottom:666.106667pt;}
.y12d{bottom:666.906667pt;}
.y467{bottom:667.693333pt;}
.y34c{bottom:668.108345pt;}
.y143{bottom:668.506667pt;}
.y203{bottom:668.672144pt;}
.y1d9{bottom:669.306667pt;}
.y49f{bottom:670.106667pt;}
.y154{bottom:670.893333pt;}
.y166{bottom:671.693333pt;}
.y4b1{bottom:672.506667pt;}
.y3e{bottom:673.306667pt;}
.y413{bottom:674.893333pt;}
.y7b{bottom:675.693333pt;}
.y95{bottom:676.506667pt;}
.y296{bottom:678.906667pt;}
.yd9{bottom:679.693333pt;}
.y8{bottom:681.306667pt;}
.yc4{bottom:682.106667pt;}
.yad{bottom:682.893333pt;}
.y482{bottom:683.706667pt;}
.y43b{bottom:684.506667pt;}
.y2ea{bottom:685.293333pt;}
.y222{bottom:685.316251pt;}
.y408{bottom:686.933333pt;}
.y5d{bottom:687.733333pt;}
.y137{bottom:688.533333pt;}
.y192{bottom:689.333333pt;}
.y176{bottom:691.733333pt;}
.y282{bottom:692.533333pt;}
.yf3{bottom:693.333333pt;}
.y2fa{bottom:694.133333pt;}
.y289{bottom:694.933333pt;}
.y12c{bottom:697.333333pt;}
.y3e9{bottom:697.899420pt;}
.y320{bottom:698.133333pt;}
.y3d{bottom:698.933333pt;}
.y246{bottom:699.143231pt;}
.y37e{bottom:699.421411pt;}
.y165{bottom:700.533333pt;}
.y1e4{bottom:701.333333pt;}
.y94{bottom:703.733333pt;}
.y489{bottom:704.533333pt;}
.y7a{bottom:705.333333pt;}
.y477{bottom:706.933333pt;}
.y348{bottom:706.978958pt;}
.y412{bottom:708.533333pt;}
.y3b8{bottom:708.863329pt;}
.yc3{bottom:709.333333pt;}
.y295{bottom:710.133333pt;}
.y23{bottom:710.933333pt;}
.y221{bottom:710.944768pt;}
.y26b{bottom:711.155326pt;}
.y153{bottom:711.733333pt;}
.yac{bottom:712.533333pt;}
.y5c{bottom:713.333333pt;}
.y4b4{bottom:714.933333pt;}
.y407{bottom:715.733333pt;}
.y136{bottom:717.333333pt;}
.y191{bottom:718.933333pt;}
.y37c{bottom:720.471703pt;}
.y111{bottom:721.333333pt;}
.y3e6{bottom:721.800392pt;}
.y2b6{bottom:722.133333pt;}
.yf1{bottom:722.933333pt;}
.y288{bottom:723.733333pt;}
.y4a1{bottom:723.912566pt;}
.y447{bottom:724.533333pt;}
.y345{bottom:726.031888pt;}
.y466{bottom:726.133333pt;}
.y12b{bottom:726.933333pt;}
.y31f{bottom:727.733333pt;}
.y164{bottom:729.333333pt;}
.y7{bottom:730.173333pt;}
.y93{bottom:730.960000pt;}
.y3b6{bottom:731.277163pt;}
.y455{bottom:731.773333pt;}
.y3c{bottom:732.560000pt;}
.y476{bottom:734.960000pt;}
.y79{bottom:735.773333pt;}
.y21f{bottom:736.573284pt;}
.y2b5{bottom:738.173333pt;}
.y234{bottom:738.960000pt;}
.y22{bottom:739.773333pt;}
.y304{bottom:740.560000pt;}
.yab{bottom:742.960000pt;}
.y1ce{bottom:745.373333pt;}
.y135{bottom:746.960000pt;}
.y190{bottom:747.773333pt;}
.y1f2{bottom:749.373333pt;}
.y175{bottom:750.173333pt;}
.y281{bottom:750.960000pt;}
.y110{bottom:751.773333pt;}
.yf0{bottom:753.373333pt;}
.y29d{bottom:754.173333pt;}
.y294{bottom:754.960000pt;}
.y2f9{bottom:755.773333pt;}
.y1d8{bottom:756.560000pt;}
.y92{bottom:757.373333pt;}
.y163{bottom:758.960000pt;}
.y1b2{bottom:759.773333pt;}
.y313{bottom:761.373333pt;}
.y21e{bottom:762.160926pt;}
.y2d9{bottom:762.173333pt;}
.yc2{bottom:762.960000pt;}
.y378{bottom:763.432971pt;}
.y475{bottom:764.560000pt;}
.y5b{bottom:765.373333pt;}
.y3b{bottom:766.173333pt;}
.y2c6{bottom:766.960000pt;}
.y21{bottom:769.373333pt;}
.y142{bottom:770.173333pt;}
.y3e3{bottom:770.612702pt;}
.y6{bottom:771.773333pt;}
.y237{bottom:772.280000pt;}
.yaa{bottom:772.560000pt;}
.y2e8{bottom:773.360000pt;}
.y494{bottom:774.200000pt;}
.y1cd{bottom:775.000000pt;}
.y134{bottom:775.800000pt;}
.y3b3{bottom:777.021266pt;}
.y276{bottom:777.400000pt;}
.y1f1{bottom:778.200000pt;}
.y406{bottom:779.000000pt;}
.y174{bottom:779.800000pt;}
.y280{bottom:780.600000pt;}
.y10f{bottom:781.400000pt;}
.yee{bottom:783.000000pt;}
.y375{bottom:784.468675pt;}
.y91{bottom:784.600000pt;}
.y1d7{bottom:785.400000pt;}
.y31e{bottom:786.200000pt;}
.y128{bottom:787.000000pt;}
.y21c{bottom:787.789443pt;}
.y162{bottom:787.800000pt;}
.y18f{bottom:788.600000pt;}
.yc1{bottom:789.400000pt;}
.y312{bottom:790.200000pt;}
.y255{bottom:791.000000pt;}
.y5a{bottom:791.800000pt;}
.y493{bottom:792.600000pt;}
.y2b4{bottom:793.400000pt;}
.y474{bottom:794.200000pt;}
.y3e0{bottom:794.513674pt;}
.y27b{bottom:797.400000pt;}
.y20{bottom:799.000000pt;}
.y3b0{bottom:799.419567pt;}
.y3a{bottom:799.800000pt;}
.y29c{bottom:802.200000pt;}
.y78{bottom:803.000000pt;}
.y1cc{bottom:804.600000pt;}
.y133{bottom:805.400000pt;}
.y5{bottom:806.200000pt;}
.y2c4{bottom:808.600000pt;}
.y27f{bottom:809.400000pt;}
.y90{bottom:811.000000pt;}
.y10e{bottom:811.800000pt;}
.yec{bottom:813.400000pt;}
.y31d{bottom:815.800000pt;}
.yc0{bottom:816.600000pt;}
.y59{bottom:817.440000pt;}
.y25f{bottom:817.826667pt;}
.y275{bottom:818.226667pt;}
.y1f0{bottom:819.040000pt;}
.y173{bottom:819.840000pt;}
.y2b3{bottom:820.626667pt;}
.y49e{bottom:822.226667pt;}
.y473{bottom:823.040000pt;}
.y446{bottom:823.840000pt;}
.y27a{bottom:825.440000pt;}
.y1d6{bottom:826.226667pt;}
.y1f{bottom:827.840000pt;}
.y77{bottom:828.626667pt;}
.yd8{bottom:829.440000pt;}
.y311{bottom:831.040000pt;}
.y39{bottom:833.440000pt;}
.y132{bottom:835.040000pt;}
.y8f{bottom:838.226667pt;}
.y2e7{bottom:839.040000pt;}
.y4{bottom:840.626667pt;}
.y10d{bottom:841.426667pt;}
.y488{bottom:842.226667pt;}
.yea{bottom:843.040000pt;}
.y58{bottom:843.840000pt;}
.y31c{bottom:844.626667pt;}
.y1ed{bottom:846.226667pt;}
.y1b1{bottom:847.040000pt;}
.y2b2{bottom:847.840000pt;}
.y33f{bottom:849.440000pt;}
.y445{bottom:852.626667pt;}
.y76{bottom:855.040000pt;}
.y309{bottom:856.626667pt;}
.y1e{bottom:857.440000pt;}
.y161{bottom:858.226667pt;}
.y487{bottom:859.840000pt;}
.y310{bottom:860.626667pt;}
.y3ab{bottom:862.266667pt;}
.y38{bottom:863.066667pt;}
.y131{bottom:863.866667pt;}
.y224{bottom:864.627578pt;}
.y8e{bottom:864.666667pt;}
.ya9{bottom:866.266667pt;}
.y23c{bottom:866.274124pt;}
.yd7{bottom:867.066667pt;}
.y57{bottom:869.466667pt;}
.ybf{bottom:870.266667pt;}
.y10c{bottom:871.066667pt;}
.y49d{bottom:871.866667pt;}
.ye8{bottom:873.466667pt;}
.y3{bottom:874.266667pt;}
.y1b0{bottom:875.866667pt;}
.y1cb{bottom:876.666667pt;}
.y2c3{bottom:878.266667pt;}
.y75{bottom:880.666667pt;}
.y444{bottom:881.466667pt;}
.y1d5{bottom:884.666667pt;}
.y1d{bottom:887.066667pt;}
.y33e{bottom:887.866667pt;}
.y481{bottom:891.066667pt;}
.ya8{bottom:893.466667pt;}
.y37{bottom:895.066667pt;}
.y56{bottom:895.866667pt;}
.y36e{bottom:898.266667pt;}
.y10b{bottom:901.466667pt;}
.y8d{bottom:903.066667pt;}
.y4b0{bottom:906.293333pt;}
.y264{bottom:907.369573pt;}
.y1ef{bottom:907.893333pt;}
.y2{bottom:908.706667pt;}
.y443{bottom:911.106667pt;}
.y486{bottom:911.893333pt;}
.y1d4{bottom:913.506667pt;}
.y74{bottom:914.293333pt;}
.y1ec{bottom:915.106667pt;}
.y1c{bottom:915.893333pt;}
.y1a4{bottom:916.706667pt;}
.ya7{bottom:919.893333pt;}
.y55{bottom:921.506667pt;}
.y30f{bottom:922.293333pt;}
.y485{bottom:929.506667pt;}
.y10a{bottom:931.106667pt;}
.y8c{bottom:935.893333pt;}
.ybe{bottom:941.506667pt;}
.y1{bottom:943.106667pt;}
.y1ee{bottom:943.893333pt;}
.y1d3{bottom:944.706667pt;}
.y1b{bottom:945.506667pt;}
.y212{bottom:946.293333pt;}
.ya6{bottom:947.106667pt;}
.y54{bottom:947.893333pt;}
.h69{height:18.171866pt;}
.h71{height:18.228877pt;}
.h70{height:18.261841pt;}
.h6a{height:18.926293pt;}
.h67{height:18.959095pt;}
.h6e{height:19.052966pt;}
.h79{height:20.131256pt;}
.h78{height:20.167726pt;}
.h76{height:21.042998pt;}
.h30{height:21.395398pt;}
.h81{height:21.435267pt;}
.h80{height:21.474099pt;}
.h37{height:21.947621pt;}
.h2f{height:22.282254pt;}
.h7e{height:22.406067pt;}
.h34{height:22.436922pt;}
.h93{height:22.477858pt;}
.h85{height:22.898923pt;}
.h2c{height:23.038553pt;}
.h33{height:23.329933pt;}
.h26{height:23.542432pt;}
.h3a{height:23.614120pt;}
.h1e{height:23.871960pt;}
.h3d{height:24.095132pt;}
.h19{height:24.165997pt;}
.h23{height:24.606718pt;}
.h22{height:24.647593pt;}
.h1d{height:24.861471pt;}
.h17{height:25.167695pt;}
.h21{height:25.628589pt;}
.h1c{height:25.850982pt;}
.h29{height:26.151510pt;}
.h18{height:26.169393pt;}
.h45{height:26.400000pt;}
.h43{height:26.433333pt;}
.h42{height:27.200000pt;}
.h44{height:27.220000pt;}
.h41{height:27.233333pt;}
.h8{height:28.800000pt;}
.hb{height:28.833333pt;}
.hc{height:29.600000pt;}
.ha{height:29.633333pt;}
.h4b{height:40.033333pt;}
.h47{height:40.833333pt;}
.h72{height:41.976562pt;}
.h46{height:42.433333pt;}
.h4c{height:43.233333pt;}
.h7a{height:48.718750pt;}
.h13{height:50.371875pt;}
.hf{height:53.633333pt;}
.h40{height:54.107812pt;}
.h48{height:55.701562pt;}
.he{height:55.968750pt;}
.h68{height:56.506541pt;}
.h6f{height:56.786211pt;}
.h4{height:57.290625pt;}
.h66{height:58.170945pt;}
.hd{height:58.433333pt;}
.h6d{height:58.458853pt;}
.h7{height:58.978125pt;}
.h65{height:61.604885pt;}
.h6c{height:61.909789pt;}
.h58{height:61.979687pt;}
.h62{height:62.033021pt;}
.h77{height:62.826196pt;}
.h5{height:63.656250pt;}
.h2e{height:63.804689pt;}
.h95{height:63.976199pt;}
.h32{height:64.247526pt;}
.h75{height:64.676746pt;}
.h8f{height:64.745464pt;}
.h4e{height:64.866667pt;}
.h36{height:65.526573pt;}
.h9{height:65.531250pt;}
.h88{height:65.792773pt;}
.h8c{height:65.937928pt;}
.h97{height:66.116539pt;}
.h8a{height:66.127179pt;}
.h14{height:66.750000pt;}
.h7f{height:66.895791pt;}
.h8d{height:66.923229pt;}
.h10{height:66.976562pt;}
.h55{height:67.029896pt;}
.h11{height:67.083229pt;}
.h2b{height:68.783873pt;}
.h7d{height:68.866211pt;}
.h25{height:70.247844pt;}
.h39{height:70.502070pt;}
.h20{height:70.577574pt;}
.h1b{height:71.190215pt;}
.h86{height:71.334266pt;}
.h74{height:71.846455pt;}
.h3c{height:71.897037pt;}
.h28{height:72.005186pt;}
.h16{height:72.066977pt;}
.h12{height:72.084375pt;}
.h92{height:72.350547pt;}
.h1{height:73.204688pt;}
.h84{height:73.435423pt;}
.h3{height:75.360938pt;}
.h7c{height:76.500341pt;}
.h83{height:81.576070pt;}
.h94{height:83.040485pt;}
.h90{height:84.038910pt;}
.h8e{height:84.038946pt;}
.h96{height:85.818587pt;}
.h6{height:88.603711pt;}
.h4a{height:89.666667pt;}
.h91{height:94.920503pt;}
.h27{height:104.599845pt;}
.h2{height:108.263086pt;}
.h35{height:111.490733pt;}
.h4d{height:113.653333pt;}
.h49{height:113.666667pt;}
.h2a{height:117.032893pt;}
.h38{height:119.956334pt;}
.h5f{height:121.335937pt;}
.h4f{height:127.593750pt;}
.h5b{height:127.715625pt;}
.h63{height:134.047083pt;}
.h56{height:134.494277pt;}
.h8b{height:136.221052pt;}
.h89{height:136.612026pt;}
.h87{height:137.749719pt;}
.h3b{height:148.531964pt;}
.h24{height:150.005800pt;}
.h60{height:156.456250pt;}
.h61{height:159.593750pt;}
.h52{height:169.193750pt;}
.h3f{height:175.443346pt;}
.h53{height:175.593750pt;}
.h50{height:175.753750pt;}
.h2d{height:184.451336pt;}
.h31{height:184.836682pt;}
.h5d{height:204.381042pt;}
.h15{height:208.336571pt;}
.h5e{height:210.834375pt;}
.h5a{height:213.940417pt;}
.h59{height:217.140417pt;}
.h54{height:217.193750pt;}
.h51{height:217.353750pt;}
.h57{height:220.447083pt;}
.h1f{height:229.534768pt;}
.h1a{height:229.535884pt;}
.h3e{height:236.677383pt;}
.h6b{height:253.946209pt;}
.h64{height:254.273214pt;}
.h5c{height:268.393750pt;}
.h82{height:535.657856pt;}
.h73{height:536.527228pt;}
.h7b{height:571.281019pt;}
.h0{height:1056.000000pt;}
.w22{width:81.700000pt;}
.w2{width:100.100000pt;}
.w20{width:130.533333pt;}
.w23{width:140.133333pt;}
.w1f{width:141.733333pt;}
.w1b{width:154.533333pt;}
.w1c{width:154.560000pt;}
.w1a{width:154.573333pt;}
.w1d{width:162.560000pt;}
.w1e{width:168.973333pt;}
.w3f{width:211.953559pt;}
.w21{width:213.000000pt;}
.w11{width:320.871712pt;}
.w13{width:321.654561pt;}
.w10{width:321.762023pt;}
.w12{width:322.546533pt;}
.w15{width:329.635781pt;}
.w14{width:330.551030pt;}
.wf{width:346.008735pt;}
.we{width:346.969885pt;}
.wb{width:352.634291pt;}
.wa{width:353.613846pt;}
.w9{width:353.636714pt;}
.w8{width:354.617676pt;}
.w17{width:354.763253pt;}
.w16{width:355.747898pt;}
.w7{width:356.663085pt;}
.w6{width:357.653816pt;}
.wd{width:359.546257pt;}
.wc{width:360.545010pt;}
.w19{width:361.054665pt;}
.w5{width:361.493823pt;}
.w18{width:362.057595pt;}
.w4{width:362.489184pt;}
.w3e{width:418.799803pt;}
.w3a{width:488.361163pt;}
.w3c{width:490.162491pt;}
.w3b{width:490.248725pt;}
.w41{width:495.934243pt;}
.w40{width:496.226119pt;}
.w3d{width:503.040347pt;}
.w3{width:527.706667pt;}
.w37{width:562.178518pt;}
.w36{width:562.178526pt;}
.w35{width:562.586754pt;}
.w34{width:562.586755pt;}
.w33{width:562.586756pt;}
.w32{width:562.586757pt;}
.w31{width:562.586758pt;}
.w30{width:562.586759pt;}
.w2f{width:562.586760pt;}
.w2e{width:562.586762pt;}
.w39{width:562.870566pt;}
.w38{width:562.870574pt;}
.w28{width:595.476327pt;}
.w27{width:595.476329pt;}
.w26{width:595.476331pt;}
.w25{width:595.476332pt;}
.w24{width:595.476334pt;}
.w2d{width:595.581784pt;}
.w2c{width:595.581786pt;}
.w2b{width:595.581788pt;}
.w2a{width:595.581789pt;}
.w29{width:595.581791pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:3.012449pt;}
.x6d{left:4.744938pt;}
.x79{left:6.124747pt;}
.x17{left:7.200000pt;}
.x6c{left:11.104470pt;}
.x7b{left:14.035874pt;}
.x7c{left:15.785803pt;}
.x4b{left:16.826667pt;}
.x75{left:18.410685pt;}
.x77{left:22.785502pt;}
.x4c{left:24.840000pt;}
.x48{left:31.233333pt;}
.x3a{left:32.161447pt;}
.x28{left:46.688189pt;}
.x3b{left:66.304026pt;}
.x4a{left:76.866667pt;}
.x5{left:94.499988pt;}
.x47{left:99.300000pt;}
.x26{left:100.707828pt;}
.x3f{left:105.605539pt;}
.x11{left:108.899988pt;}
.x2e{left:110.347753pt;}
.x2f{left:111.994040pt;}
.x40{left:115.626543pt;}
.x7e{left:117.554755pt;}
.x1f{left:118.533321pt;}
.x37{left:122.424620pt;}
.x39{left:123.335064pt;}
.x74{left:126.874954pt;}
.x8b{left:128.133321pt;}
.x5d{left:129.733321pt;}
.x31{left:132.208157pt;}
.x70{left:138.591684pt;}
.x66{left:140.133321pt;}
.x12{left:142.533321pt;}
.x88{left:156.852986pt;}
.x41{left:159.925486pt;}
.x84{left:162.921502pt;}
.x83{left:163.917954pt;}
.x68{left:175.359988pt;}
.x3{left:195.399988pt;}
.x6f{left:197.178464pt;}
.x8a{left:199.021463pt;}
.x71{left:200.341755pt;}
.x6a{left:203.399988pt;}
.x76{left:207.687098pt;}
.x61{left:210.599988pt;}
.x7a{left:212.076496pt;}
.x78{left:215.576349pt;}
.x29{left:220.239988pt;}
.x7f{left:221.137193pt;}
.x24{left:227.004150pt;}
.x30{left:228.158722pt;}
.x27{left:229.657397pt;}
.x2d{left:230.982324pt;}
.x36{left:234.987784pt;}
.x3e{left:243.142304pt;}
.x38{left:247.557977pt;}
.x4{left:250.626655pt;}
.x56{left:252.226655pt;}
.x49{left:253.866667pt;}
.xa{left:256.266655pt;}
.x35{left:258.666655pt;}
.x4f{left:268.266667pt;}
.x44{left:272.266655pt;}
.x6{left:279.466655pt;}
.x2{left:283.466655pt;}
.x22{left:288.293321pt;}
.xb{left:305.906655pt;}
.x5e{left:307.506655pt;}
.x52{left:318.706667pt;}
.x2b{left:321.133321pt;}
.x7{left:322.733321pt;}
.x3c{left:325.133321pt;}
.x58{left:327.533321pt;}
.x8{left:329.133321pt;}
.x60{left:330.733321pt;}
.x20{left:333.133321pt;}
.x2c{left:337.133321pt;}
.x67{left:338.733321pt;}
.x33{left:342.733321pt;}
.x5f{left:345.133321pt;}
.xc{left:356.359988pt;}
.x5c{left:358.773321pt;}
.x6e{left:361.906836pt;}
.x69{left:365.973321pt;}
.xe{left:367.573321pt;}
.xd{left:371.559988pt;}
.x5a{left:386.773321pt;}
.x9{left:396.399988pt;}
.x16{left:397.999988pt;}
.x15{left:400.399988pt;}
.x14{left:401.999988pt;}
.x13{left:404.399988pt;}
.x10{left:405.999988pt;}
.x1{left:408.399988pt;}
.x62{left:424.439988pt;}
.xf{left:430.839988pt;}
.x50{left:438.026667pt;}
.x45{left:439.639988pt;}
.x5b{left:446.839988pt;}
.x59{left:466.066655pt;}
.x57{left:480.466655pt;}
.x43{left:529.333321pt;}
.x63{left:530.933321pt;}
.x1b{left:547.733321pt;}
.x55{left:553.333321pt;}
.x4d{left:562.973333pt;}
.x64{left:564.559988pt;}
.x34{left:569.373321pt;}
.x42{left:570.973321pt;}
.x3d{left:574.173321pt;}
.x1d{left:577.359988pt;}
.x51{left:580.573333pt;}
.x32{left:582.173321pt;}
.x2a{left:586.173321pt;}
.x23{left:587.773321pt;}
.x21{left:590.173321pt;}
.x1c{left:606.199988pt;}
.x19{left:610.199988pt;}
.x89{left:618.199988pt;}
.x46{left:624.599988pt;}
.x7d{left:627.026655pt;}
.x54{left:637.439988pt;}
.x85{left:641.439988pt;}
.x80{left:645.426655pt;}
.x82{left:653.439988pt;}
.x18{left:656.639988pt;}
.x87{left:660.666655pt;}
.x65{left:663.066655pt;}
.x73{left:678.266655pt;}
.x81{left:686.266655pt;}
.x8c{left:687.866655pt;}
.x72{left:690.266655pt;}
.x1e{left:700.706655pt;}
.x6b{left:706.293321pt;}
.x53{left:710.293321pt;}
.x4e{left:712.706655pt;}
.x1a{left:715.893321pt;}
.x86{left:721.506655pt;}
}




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