
    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_a930f9788707325d149c1a81.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_08d2549364534339432daa7a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_fb75e62d16fd8a7108c5550f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_838e2fd7c01ff392ccf3f456.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_4592914a1521d1646e8cab20.woff')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_92ac1d8d3e03cc8254a16a35.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_1091c04d14ebd374a47a46be.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_20ac05fa61d32274580bb7bd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.013672;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_3d2771ee4c5f5b7f1d4e998e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_b05594938069a07414c2b1a7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_694e34e0941910d9d3f6ae80.woff')format("woff");}.ffb{font-family:ffb;line-height:1.015137;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_5d3d94e9e564cd2556ff1ca7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.013672;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_880049f6af6045718fc3feac.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_3413c3180477a26fc2773a48.woff')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0f8261033c416e19e4ed70be.woff')format("woff");}.fff{font-family:fff;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_27f14bde8477cc1c1c826fe3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.015137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_77a07703470d39dfd822c93c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6b78f5f6e2ecec1e744eb0f7.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_114eb564c7240175405cd8f5.woff')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls54{letter-spacing:-0.280800px;}
.ls5b{letter-spacing:-0.202003px;}
.ls7b{letter-spacing:-0.198396px;}
.ls5f{letter-spacing:-0.182765px;}
.ls4f{letter-spacing:-0.149098px;}
.ls4e{letter-spacing:-0.134669px;}
.ls75{letter-spacing:-0.120240px;}
.ls7a{letter-spacing:-0.114228px;}
.ls5d{letter-spacing:-0.105811px;}
.ls70{letter-spacing:-0.102204px;}
.ls51{letter-spacing:-0.091382px;}
.ls79{letter-spacing:-0.090180px;}
.ls5e{letter-spacing:-0.076954px;}
.ls59{letter-spacing:-0.067334px;}
.ls74{letter-spacing:-0.066132px;}
.ls52{letter-spacing:-0.062525px;}
.ls76{letter-spacing:-0.054108px;}
.ls4d{letter-spacing:-0.048096px;}
.ls55{letter-spacing:-0.047520px;}
.ls78{letter-spacing:-0.036072px;}
.ls58{letter-spacing:-0.033667px;}
.ls53{letter-spacing:-0.030240px;}
.ls73{letter-spacing:-0.024048px;}
.ls56{letter-spacing:-0.021600px;}
.ls5c{letter-spacing:-0.019238px;}
.ls72{letter-spacing:-0.018036px;}
.ls4c{letter-spacing:-0.014429px;}
.ls4b{letter-spacing:-0.012960px;}
.ls71{letter-spacing:-0.012024px;}
.ls50{letter-spacing:-0.009619px;}
.ls77{letter-spacing:-0.006012px;}
.ls5a{letter-spacing:-0.004810px;}
.ls8{letter-spacing:0.000000px;}
.ls88{letter-spacing:0.000741px;}
.ls87{letter-spacing:0.000800px;}
.ls5{letter-spacing:0.001952px;}
.ls8b{letter-spacing:0.002544px;}
.ls86{letter-spacing:0.002841px;}
.lsc{letter-spacing:0.003226px;}
.ls82{letter-spacing:0.004800px;}
.ls44{letter-spacing:0.004810px;}
.ls6c{letter-spacing:0.006012px;}
.ls2a{letter-spacing:0.008640px;}
.ls69{letter-spacing:0.012024px;}
.ls28{letter-spacing:0.012960px;}
.ls34{letter-spacing:0.014429px;}
.ls30{letter-spacing:0.017280px;}
.ls68{letter-spacing:0.018036px;}
.ls43{letter-spacing:0.019238px;}
.ls2d{letter-spacing:0.021600px;}
.ls39{letter-spacing:0.024048px;}
.ls32{letter-spacing:0.025920px;}
.ls67{letter-spacing:0.027000px;}
.ls6b{letter-spacing:0.030060px;}
.ls66{letter-spacing:0.032400px;}
.ls35{letter-spacing:0.033667px;}
.ls24{letter-spacing:0.034474px;}
.ls2e{letter-spacing:0.034560px;}
.ls6e{letter-spacing:0.036072px;}
.ls3a{letter-spacing:0.038477px;}
.ls6f{letter-spacing:0.042084px;}
.ls26{letter-spacing:0.042134px;}
.ls62{letter-spacing:0.043092px;}
.ls37{letter-spacing:0.043286px;}
.ls36{letter-spacing:0.048096px;}
.ls2c{letter-spacing:0.051840px;}
.ls64{letter-spacing:0.052668px;}
.ls6d{letter-spacing:0.054108px;}
.ls6a{letter-spacing:0.060120px;}
.ls42{letter-spacing:0.062525px;}
.ls29{letter-spacing:0.090720px;}
.ls2b{letter-spacing:0.112320px;}
.ls27{letter-spacing:0.141725px;}
.ls33{letter-spacing:0.146880px;}
.ls25{letter-spacing:0.153216px;}
.ls38{letter-spacing:0.153907px;}
.ls65{letter-spacing:0.177156px;}
.ls63{letter-spacing:0.191520px;}
.ls57{letter-spacing:0.298080px;}
.ls61{letter-spacing:0.717483px;}
.ls16{letter-spacing:0.855403px;}
.ls19{letter-spacing:0.860288px;}
.ls15{letter-spacing:0.860771px;}
.ls1e{letter-spacing:0.866171px;}
.ls41{letter-spacing:1.372528px;}
.ls40{letter-spacing:1.589760px;}
.ls31{letter-spacing:2.453760px;}
.ls2f{letter-spacing:2.743200px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:10.461300px;}
.ls3d{letter-spacing:11.471388px;}
.ls3c{letter-spacing:11.477271px;}
.ls3e{letter-spacing:11.770800px;}
.ls3b{letter-spacing:11.895155px;}
.ls11{letter-spacing:11.951700px;}
.ls7{letter-spacing:11.954850px;}
.ls10{letter-spacing:12.041264px;}
.ls45{letter-spacing:12.119167px;}
.ls3f{letter-spacing:12.414088px;}
.ls46{letter-spacing:12.424329px;}
.ls48{letter-spacing:12.442800px;}
.ls13{letter-spacing:12.595873px;}
.ls1c{letter-spacing:12.972053px;}
.ls1b{letter-spacing:12.977935px;}
.ls14{letter-spacing:12.987008px;}
.ls20{letter-spacing:13.031700px;}
.ls47{letter-spacing:13.086088px;}
.ls49{letter-spacing:13.092088px;}
.ls7c{letter-spacing:13.148213px;}
.ls84{letter-spacing:13.303341px;}
.ls8c{letter-spacing:13.320988px;}
.ls81{letter-spacing:13.332490px;}
.ls85{letter-spacing:13.335688px;}
.ls8e{letter-spacing:13.380925px;}
.ls17{letter-spacing:13.436759px;}
.ls18{letter-spacing:13.442641px;}
.ls7e{letter-spacing:13.448400px;}
.ls8f{letter-spacing:13.448806px;}
.ls80{letter-spacing:13.454400px;}
.ls89{letter-spacing:13.511204px;}
.ls90{letter-spacing:13.520158px;}
.ls1f{letter-spacing:13.604693px;}
.ls7f{letter-spacing:13.604835px;}
.lsd{letter-spacing:14.094088px;}
.lse{letter-spacing:14.100088px;}
.lsf{letter-spacing:14.121821px;}
.ls83{letter-spacing:14.138635px;}
.ls23{letter-spacing:14.285669px;}
.ls22{letter-spacing:14.944200px;}
.ls9{letter-spacing:14.944665px;}
.ls21{letter-spacing:15.100079px;}
.ls8d{letter-spacing:15.256282px;}
.lsb{letter-spacing:15.657483px;}
.lsa{letter-spacing:15.663483px;}
.ls1d{letter-spacing:15.895582px;}
.ls4a{letter-spacing:16.258963px;}
.ls8a{letter-spacing:16.697459px;}
.ls12{letter-spacing:16.853376px;}
.ls60{letter-spacing:16.856719px;}
.ls3{letter-spacing:17.929200px;}
.ls7d{letter-spacing:18.773929px;}
.ls1a{letter-spacing:30.313229px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws60{word-spacing:-13.449600px;}
.ws69{word-spacing:-12.815921px;}
.wscb{word-spacing:-12.161520px;}
.ws81{word-spacing:-12.024000px;}
.wscc{word-spacing:-11.970000px;}
.ws2c{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws80{word-spacing:-10.834560px;}
.ws7f{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.460700px;}
.ws7d{word-spacing:-9.729216px;}
.ws7e{word-spacing:-9.576000px;}
.wsdb{word-spacing:-3.156300px;}
.wsdc{word-spacing:-3.078144px;}
.ws4e{word-spacing:-2.929004px;}
.ws40{word-spacing:-2.689902px;}
.wscd{word-spacing:-2.630126px;}
.ws14d{word-spacing:-2.528525px;}
.ws5d{word-spacing:-2.391024px;}
.ws5c{word-spacing:-2.331248px;}
.wsaf{word-spacing:-2.092176px;}
.ws122{word-spacing:-2.044339px;}
.ws87{word-spacing:-1.990541px;}
.ws86{word-spacing:-1.978148px;}
.ws104{word-spacing:-1.972595px;}
.ws88{word-spacing:-1.972265px;}
.wsb0{word-spacing:-1.928650px;}
.ws123{word-spacing:-1.829146px;}
.ws119{word-spacing:-1.733492px;}
.wsea{word-spacing:-1.707408px;}
.wsae{word-spacing:-1.688170px;}
.ws8a{word-spacing:-1.682736px;}
.ws9a{word-spacing:-1.671840px;}
.ws89{word-spacing:-1.667750px;}
.wse9{word-spacing:-1.653300px;}
.ws99{word-spacing:-1.594080px;}
.ws9b{word-spacing:-1.581120px;}
.ws83{word-spacing:-1.560154px;}
.ws84{word-spacing:-1.555188px;}
.wsa9{word-spacing:-1.515024px;}
.ws3f{word-spacing:-1.494390px;}
.ws110{word-spacing:-1.434614px;}
.wsa8{word-spacing:-1.414022px;}
.wsbe{word-spacing:-1.361117px;}
.ws8c{word-spacing:-1.344960px;}
.ws8d{word-spacing:-1.324704px;}
.wsa7{word-spacing:-1.317830px;}
.ws23{word-spacing:-1.315063px;}
.wsee{word-spacing:-1.310616px;}
.ws8b{word-spacing:-1.291162px;}
.ws10d{word-spacing:-1.255288px;}
.wsaa{word-spacing:-1.216829px;}
.ws142{word-spacing:-1.183565px;}
.wscf{word-spacing:-1.075961px;}
.ws90{word-spacing:-1.030586px;}
.ws8f{word-spacing:-1.024704px;}
.ws8e{word-spacing:-1.022170px;}
.wsf4{word-spacing:-1.022040px;}
.wsd0{word-spacing:-1.016185px;}
.ws93{word-spacing:-1.012704px;}
.ws92{word-spacing:-1.006704px;}
.ws15d{word-spacing:-0.968371px;}
.wsf5{word-spacing:-0.967932px;}
.wsd6{word-spacing:-0.883764px;}
.ws9f{word-spacing:-0.751680px;}
.ws66{word-spacing:-0.717309px;}
.ws6d{word-spacing:-0.705784px;}
.ws6e{word-spacing:-0.699902px;}
.ws67{word-spacing:-0.684616px;}
.wse5{word-spacing:-0.679356px;}
.ws68{word-spacing:-0.669488px;}
.ws7c{word-spacing:-0.657532px;}
.ws7b{word-spacing:-0.653398px;}
.ws72{word-spacing:-0.644137px;}
.wsef{word-spacing:-0.637272px;}
.wse4{word-spacing:-0.625248px;}
.wsf0{word-spacing:-0.619236px;}
.wsd7{word-spacing:-0.613224px;}
.ws11c{word-spacing:-0.537980px;}
.ws14f{word-spacing:-0.484186px;}
.ws9d{word-spacing:-0.479520px;}
.ws9e{word-spacing:-0.449280px;}
.ws9c{word-spacing:-0.440640px;}
.ws10c{word-spacing:-0.418429px;}
.ws26{word-spacing:-0.358654px;}
.ws91{word-spacing:-0.338227px;}
.ws124{word-spacing:-0.322790px;}
.ws125{word-spacing:-0.301621px;}
.ws2e{word-spacing:-0.298878px;}
.wsd1{word-spacing:-0.277704px;}
.ws102{word-spacing:-0.246492px;}
.wsda{word-spacing:-0.240480px;}
.ws21{word-spacing:-0.239102px;}
.ws6a{word-spacing:-0.235196px;}
.wsf9{word-spacing:-0.228456px;}
.ws96{word-spacing:-0.222163px;}
.wsfa{word-spacing:-0.216432px;}
.ws137{word-spacing:-0.215194px;}
.wsc6{word-spacing:-0.192384px;}
.ws2d{word-spacing:-0.179327px;}
.wsf7{word-spacing:-0.174348px;}
.ws13{word-spacing:-0.161395px;}
.wsf8{word-spacing:-0.150300px;}
.wsf6{word-spacing:-0.144288px;}
.wsd2{word-spacing:-0.138852px;}
.ws24{word-spacing:-0.119551px;}
.wsb7{word-spacing:-0.116640px;}
.ws97{word-spacing:-0.111082px;}
.wsb5{word-spacing:-0.108000px;}
.ws11d{word-spacing:-0.107597px;}
.wsb6{word-spacing:-0.090720px;}
.ws34{word-spacing:-0.059776px;}
.ws64{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws154{word-spacing:-0.005942px;}
.wsd{word-spacing:-0.005776px;}
.wsf{word-spacing:-0.002574px;}
.ws1{word-spacing:0.000000px;}
.ws78{word-spacing:0.002683px;}
.ws18{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.wsf2{word-spacing:0.078156px;}
.ws57{word-spacing:0.087237px;}
.wse6{word-spacing:0.090180px;}
.ws58{word-spacing:0.093291px;}
.ws56{word-spacing:0.095641px;}
.ws101{word-spacing:0.096192px;}
.ws16{word-spacing:0.107597px;}
.wsb9{word-spacing:0.110621px;}
.wsd9{word-spacing:0.114228px;}
.ws33{word-spacing:0.119551px;}
.wsa1{word-spacing:0.120960px;}
.wsb1{word-spacing:0.139478px;}
.wsa2{word-spacing:0.146880px;}
.wsd4{word-spacing:0.151200px;}
.wsc7{word-spacing:0.153907px;}
.wsd5{word-spacing:0.156600px;}
.wsb8{word-spacing:0.159840px;}
.ws17{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.ws12e{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsc8{word-spacing:0.259718px;}
.ws14{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.ws37{word-spacing:0.358654px;}
.ws73{word-spacing:0.418429px;}
.ws77{word-spacing:0.478205px;}
.ws134{word-spacing:0.484186px;}
.wsce{word-spacing:0.657532px;}
.ws53{word-spacing:0.667747px;}
.ws61{word-spacing:0.668352px;}
.ws52{word-spacing:0.669821px;}
.ws54{word-spacing:0.672547px;}
.ws63{word-spacing:0.672730px;}
.ws62{word-spacing:0.694896px;}
.ws114{word-spacing:0.717307px;}
.ws167{word-spacing:0.860774px;}
.ws131{word-spacing:0.914573px;}
.ws107{word-spacing:0.956410px;}
.ws148{word-spacing:0.968371px;}
.ws10e{word-spacing:1.016185px;}
.ws65{word-spacing:1.030500px;}
.ws71{word-spacing:1.052053px;}
.ws59{word-spacing:1.075961px;}
.ws105{word-spacing:1.135736px;}
.wsac{word-spacing:1.192781px;}
.ws22{word-spacing:1.195512px;}
.wsa5{word-spacing:1.197590px;}
.wsab{word-spacing:1.207210px;}
.ws85{word-spacing:1.237363px;}
.wsa6{word-spacing:1.245686px;}
.ws11a{word-spacing:1.255288px;}
.ws75{word-spacing:1.315063px;}
.ws16a{word-spacing:1.344960px;}
.ws94{word-spacing:1.374839px;}
.ws168{word-spacing:1.398758px;}
.ws15a{word-spacing:1.452557px;}
.ws3d{word-spacing:1.494390px;}
.ws1a{word-spacing:1.506355px;}
.ws43{word-spacing:1.554166px;}
.wsb3{word-spacing:1.568160px;}
.wsb2{word-spacing:1.576800px;}
.wsb4{word-spacing:1.581120px;}
.ws25{word-spacing:1.613941px;}
.ws170{word-spacing:1.613952px;}
.ws38{word-spacing:1.733492px;}
.wsa4{word-spacing:1.789171px;}
.ws32{word-spacing:1.793268px;}
.ws169{word-spacing:1.829146px;}
.wsf1{word-spacing:1.845684px;}
.wsfe{word-spacing:1.851696px;}
.ws103{word-spacing:1.853044px;}
.ws157{word-spacing:1.882944px;}
.ws5a{word-spacing:1.912819px;}
.ws82{word-spacing:1.936742px;}
.wsca{word-spacing:1.972595px;}
.ws5f{word-spacing:1.990541px;}
.ws36{word-spacing:2.032370px;}
.ws95{word-spacing:2.151922px;}
.ws6f{word-spacing:2.199748px;}
.ws19{word-spacing:2.205734px;}
.ws70{word-spacing:2.211863px;}
.wsf3{word-spacing:2.212416px;}
.ws5e{word-spacing:2.259533px;}
.ws4a{word-spacing:2.391024px;}
.ws4b{word-spacing:2.450800px;}
.ws11f{word-spacing:2.474726px;}
.ws49{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.512200px;}
.ws163{word-spacing:2.528525px;}
.wse2{word-spacing:2.585160px;}
.ws7a{word-spacing:2.630126px;}
.ws112{word-spacing:2.689902px;}
.wsa0{word-spacing:2.725920px;}
.ws113{word-spacing:2.809453px;}
.ws11{word-spacing:2.869236px;}
.wse3{word-spacing:2.969928px;}
.ws3c{word-spacing:3.048556px;}
.ws44{word-spacing:3.108331px;}
.wsbf{word-spacing:3.159907px;}
.wsba{word-spacing:3.183955px;}
.ws1e{word-spacing:3.219667px;}
.ws138{word-spacing:3.220502px;}
.ws161{word-spacing:3.222278px;}
.ws149{word-spacing:3.222394px;}
.ws166{word-spacing:3.222816px;}
.ws13d{word-spacing:3.224093px;}
.ws171{word-spacing:3.224774px;}
.wsbd{word-spacing:3.227242px;}
.ws1b{word-spacing:3.227904px;}
.wsa3{word-spacing:3.246480px;}
.wsc0{word-spacing:3.265718px;}
.wsbc{word-spacing:3.313814px;}
.wsd8{word-spacing:3.318624px;}
.ws1d{word-spacing:3.335501px;}
.ws30{word-spacing:3.347434px;}
.wsbb{word-spacing:3.496579px;}
.ws108{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws140{word-spacing:3.604493px;}
.ws74{word-spacing:3.646312px;}
.wsfb{word-spacing:3.649284px;}
.ws3e{word-spacing:3.706087px;}
.ws155{word-spacing:3.712090px;}
.ws48{word-spacing:3.765863px;}
.ws121{word-spacing:3.765888px;}
.ws120{word-spacing:3.819686px;}
.wsad{word-spacing:3.823632px;}
.ws117{word-spacing:4.004965px;}
.wseb{word-spacing:4.022028px;}
.ws145{word-spacing:4.034880px;}
.ws2a{word-spacing:4.124516px;}
.ws11e{word-spacing:4.196275px;}
.ws173{word-spacing:4.250074px;}
.ws11b{word-spacing:4.363619px;}
.wse0{word-spacing:4.400784px;}
.wsff{word-spacing:4.412808px;}
.wse1{word-spacing:4.418820px;}
.ws10a{word-spacing:4.423394px;}
.ws100{word-spacing:4.442868px;}
.ws12{word-spacing:4.626662px;}
.ws76{word-spacing:4.662497px;}
.wsc2{word-spacing:4.679741px;}
.wsc1{word-spacing:4.694170px;}
.ws46{word-spacing:4.722272px;}
.wsb{word-spacing:4.770079px;}
.ws47{word-spacing:4.782048px;}
.wsc{word-spacing:4.853765px;}
.ws3a{word-spacing:4.901599px;}
.ws39{word-spacing:4.961375px;}
.ws143{word-spacing:5.110848px;}
.ws79{word-spacing:5.140702px;}
.wsec{word-spacing:5.146272px;}
.wsed{word-spacing:5.158296px;}
.ws144{word-spacing:5.164646px;}
.ws41{word-spacing:5.320028px;}
.ws15{word-spacing:5.326042px;}
.wsfd{word-spacing:5.494968px;}
.ws111{word-spacing:5.499355px;}
.wsde{word-spacing:5.519016px;}
.ws31{word-spacing:5.559131px;}
.wsdf{word-spacing:5.615208px;}
.ws4c{word-spacing:5.618906px;}
.wsfc{word-spacing:5.693364px;}
.ws115{word-spacing:5.917784px;}
.ws50{word-spacing:6.097111px;}
.wsc3{word-spacing:6.122621px;}
.ws4f{word-spacing:6.156887px;}
.wsc5{word-spacing:6.194765px;}
.wse8{word-spacing:6.228432px;}
.wsc4{word-spacing:6.233242px;}
.ws158{word-spacing:6.294413px;}
.ws10f{word-spacing:6.336214px;}
.wsc9{word-spacing:6.694867px;}
.ws153{word-spacing:6.832397px;}
.ws4d{word-spacing:6.874194px;}
.ws150{word-spacing:6.993792px;}
.ws152{word-spacing:7.208986px;}
.wse7{word-spacing:7.244460px;}
.ws3b{word-spacing:7.292623px;}
.ws2f{word-spacing:7.352399px;}
.ws147{word-spacing:7.370381px;}
.ws118{word-spacing:7.412174px;}
.ws106{word-spacing:7.471950px;}
.ws1c{word-spacing:7.639373px;}
.ws109{word-spacing:7.711052px;}
.ws9{word-spacing:7.782761px;}
.ws28{word-spacing:8.249033px;}
.ws45{word-spacing:8.607686px;}
.ws13e{word-spacing:8.769139px;}
.ws116{word-spacing:8.906564px;}
.wsdd{word-spacing:9.042048px;}
.ws98{word-spacing:9.296381px;}
.ws15b{word-spacing:9.629914px;}
.ws5b{word-spacing:9.803198px;}
.ws13f{word-spacing:10.167898px;}
.ws3{word-spacing:10.414846px;}
.ws165{word-spacing:10.705882px;}
.wsd3{word-spacing:11.620476px;}
.ws2b{word-spacing:11.906461px;}
.ws7{word-spacing:12.176255px;}
.ws127{word-spacing:12.212237px;}
.ws126{word-spacing:12.696422px;}
.ws14b{word-spacing:13.073011px;}
.ws156{word-spacing:13.180608px;}
.ws130{word-spacing:13.234406px;}
.ws16b{word-spacing:13.342003px;}
.ws14e{word-spacing:13.383965px;}
.ws13a{word-spacing:13.387018px;}
.ws151{word-spacing:13.388698px;}
.ws159{word-spacing:13.389226px;}
.ws14c{word-spacing:13.389965px;}
.ws139{word-spacing:13.390157px;}
.ws15c{word-spacing:13.390291px;}
.ws160{word-spacing:13.390982px;}
.ws132{word-spacing:13.391942px;}
.ws14a{word-spacing:13.392077px;}
.ws13b{word-spacing:13.392336px;}
.ws136{word-spacing:13.393018px;}
.ws16f{word-spacing:13.393210px;}
.ws16e{word-spacing:13.393690px;}
.ws146{word-spacing:13.395091px;}
.ws12f{word-spacing:13.395802px;}
.ws133{word-spacing:13.503398px;}
.ws42{word-spacing:14.884124px;}
.ws164{word-spacing:15.924326px;}
.ws8{word-spacing:16.109478px;}
.ws12c{word-spacing:16.516109px;}
.ws129{word-spacing:16.569907px;}
.ws172{word-spacing:16.616381px;}
.ws15f{word-spacing:16.617542px;}
.ws12d{word-spacing:16.617888px;}
.ws162{word-spacing:16.618166px;}
.ws15e{word-spacing:16.621334px;}
.ws141{word-spacing:16.622563px;}
.ws12b{word-spacing:16.623706px;}
.ws6c{word-spacing:16.635392px;}
.ws6b{word-spacing:16.641569px;}
.ws16c{word-spacing:16.677504px;}
.ws16d{word-spacing:16.731302px;}
.ws13c{word-spacing:16.785101px;}
.ws12a{word-spacing:16.838899px;}
.ws10b{word-spacing:17.394700px;}
.ws135{word-spacing:18.560448px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws128{word-spacing:29.696717px;}
.ws51{word-spacing:274.156646px;}
.ws55{word-spacing:314.505446px;}
._39{margin-left:-20.450615px;}
._33{margin-left:-7.203080px;}
._2{margin-left:-6.150892px;}
._8{margin-left:-4.399495px;}
._1{margin-left:-3.096367px;}
._0{margin-left:-1.506341px;}
._30{width:1.229256px;}
._5{width:2.519929px;}
._6{width:4.500358px;}
._31{width:7.422149px;}
._3b{width:11.172188px;}
._3{width:12.971268px;}
._7{width:14.821521px;}
._a{width:16.462310px;}
._b{width:18.022464px;}
._14{width:19.618348px;}
._35{width:20.670744px;}
._d{width:21.680755px;}
._10{width:22.714728px;}
._11{width:23.970016px;}
._15{width:25.165528px;}
._e{width:26.361216px;}
._36{width:29.354901px;}
._4{width:30.587087px;}
._34{width:32.278824px;}
._c{width:33.408792px;}
._2e{width:34.920901px;}
._3a{width:37.951943px;}
._f{width:39.972211px;}
._9{width:56.810873px;}
._38{width:61.868160px;}
._2d{width:67.283584px;}
._2a{width:139.497994px;}
._27{width:167.252448px;}
._1c{width:181.677197px;}
._29{width:210.078854px;}
._1a{width:214.709414px;}
._1e{width:235.475597px;}
._18{width:238.380710px;}
._28{width:245.782800px;}
._2c{width:251.132189px;}
._2b{width:259.228339px;}
._19{width:265.279910px;}
._26{width:274.232534px;}
._17{width:280.935245px;}
._25{width:307.188864px;}
._24{width:314.128858px;}
._16{width:317.518157px;}
._22{width:356.306803px;}
._21{width:357.490368px;}
._23{width:392.770145px;}
._1d{width:416.996458px;}
._1b{width:418.331299px;}
._20{width:431.140378px;}
._1f{width:444.536179px;}
._12{width:561.223627px;}
._2f{width:1633.910746px;}
._32{width:2042.388432px;}
._37{width:2452.983000px;}
._13{width:2476.893000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(45,70,152);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsb{font-size:38.304000px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.200000px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsc{font-size:48.096000px;}
.fsa{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y12c{bottom:-679.862505px;}
.y12b{bottom:-660.603063px;}
.y12a{bottom:-641.433801px;}
.y129{bottom:-622.174359px;}
.y128{bottom:-603.005097px;}
.y127{bottom:-583.745655px;}
.y126{bottom:-564.486213px;}
.y125{bottom:-545.316951px;}
.y124{bottom:-526.057509px;}
.y123{bottom:-506.888247px;}
.y122{bottom:-487.628805px;}
.y121{bottom:-468.369363px;}
.y120{bottom:-449.200101px;}
.y11f{bottom:-429.940659px;}
.y11e{bottom:-410.681217px;}
.y11d{bottom:-391.511955px;}
.y11c{bottom:-372.252513px;}
.y11b{bottom:-353.083251px;}
.y11a{bottom:-333.823809px;}
.y119{bottom:-314.564367px;}
.y118{bottom:-295.393602px;}
.y117{bottom:-276.134160px;}
.y116{bottom:-256.964898px;}
.y115{bottom:-237.705456px;}
.y114{bottom:-218.446014px;}
.y100{bottom:-217.266278px;}
.yff{bottom:-201.858725px;}
.y113{bottom:-199.276752px;}
.yeb{bottom:-196.415688px;}
.yfe{bottom:-186.523315px;}
.yea{bottom:-181.008134px;}
.y112{bottom:-180.017310px;}
.yfd{bottom:-171.115762px;}
.ye9{bottom:-165.671522px;}
.y111{bottom:-160.848048px;}
.yfc{bottom:-155.780352px;}
.ye8{bottom:-150.263969px;}
.yfb{bottom:-140.372798px;}
.y110{bottom:-137.088624px;}
.ye7{bottom:-134.856415px;}
.yfa{bottom:-124.965245px;}
.ye6{bottom:-119.519803px;}
.yf9{bottom:-109.629835px;}
.ye5{bottom:-104.112250px;}
.y10f{bottom:-99.829254px;}
.yf8{bottom:-90.694440px;}
.ye4{bottom:-88.776840px;}
.y10e{bottom:-80.659992px;}
.y10d{bottom:-61.400550px;}
.yf7{bottom:-61.174800px;}
.ye3{bottom:-59.329560px;}
.yf6{bottom:-47.278440px;}
.ye2{bottom:-45.433200px;}
.yf5{bottom:-33.454440px;}
.ye1{bottom:-31.536840px;}
.y10c{bottom:-24.590550px;}
.yf4{bottom:-19.630440px;}
.ye0{bottom:-17.712840px;}
.y10b{bottom:-2.090550px;}
.yf3{bottom:-1.630440px;}
.y0{bottom:0.000000px;}
.ydf{bottom:0.215160px;}
.y1a{bottom:13.870617px;}
.y49{bottom:31.890000px;}
.y107{bottom:93.847500px;}
.yae{bottom:99.571500px;}
.y48{bottom:103.621500px;}
.y1cb{bottom:104.503500px;}
.y18{bottom:104.646000px;}
.y148{bottom:107.641500px;}
.y15f{bottom:111.408000px;}
.y106{bottom:112.677000px;}
.yad{bottom:118.401000px;}
.y146{bottom:120.043500px;}
.y195{bottom:121.360500px;}
.y1ca{bottom:121.762500px;}
.y47{bottom:122.449500px;}
.y17{bottom:122.535000px;}
.y147{bottom:126.471000px;}
.y15e{bottom:128.982000px;}
.y105{bottom:135.990000px;}
.yac{bottom:137.230500px;}
.y194{bottom:138.621000px;}
.y145{bottom:138.873000px;}
.y1c9{bottom:139.023000px;}
.y16{bottom:140.422500px;}
.y46{bottom:141.279000px;}
.y7e{bottom:145.300500px;}
.y15d{bottom:146.556000px;}
.y193{bottom:155.880000px;}
.yab{bottom:156.060000px;}
.y1c8{bottom:156.283500px;}
.y144{bottom:157.702500px;}
.y15{bottom:158.310000px;}
.y45{bottom:160.108500px;}
.y7d{bottom:164.130000px;}
.y104{bottom:166.417500px;}
.y192{bottom:173.140500px;}
.y1c7{bottom:173.544000px;}
.yaa{bottom:174.889500px;}
.y14{bottom:176.199000px;}
.y143{bottom:176.532000px;}
.y44{bottom:178.938000px;}
.y15c{bottom:182.062500px;}
.y7c{bottom:182.959500px;}
.y103{bottom:185.650500px;}
.y191{bottom:190.401000px;}
.y1c6{bottom:190.804500px;}
.y13{bottom:194.086500px;}
.y142{bottom:195.361500px;}
.y43{bottom:197.767500px;}
.ya9{bottom:198.202500px;}
.y15b{bottom:200.892000px;}
.y7b{bottom:201.789000px;}
.y102{bottom:204.883500px;}
.y190{bottom:207.661500px;}
.y1c5{bottom:208.065000px;}
.y12{bottom:211.974000px;}
.ydb{bottom:211.990500px;}
.y141{bottom:214.191000px;}
.y42{bottom:216.597000px;}
.y15a{bottom:219.721500px;}
.y7a{bottom:220.618500px;}
.y101{bottom:224.116500px;}
.y18f{bottom:224.922000px;}
.y1c4{bottom:225.325500px;}
.y11{bottom:229.863000px;}
.yda{bottom:230.820000px;}
.ya8{bottom:231.826500px;}
.y140{bottom:233.020500px;}
.y41{bottom:235.426500px;}
.y159{bottom:238.551000px;}
.y79{bottom:239.446500px;}
.y18e{bottom:242.182500px;}
.y1c3{bottom:242.586000px;}
.yf0{bottom:246.546000px;}
.yd9{bottom:249.648000px;}
.ya7{bottom:250.656000px;}
.y13f{bottom:251.848500px;}
.y40{bottom:254.256000px;}
.y158{bottom:257.380500px;}
.y78{bottom:258.276000px;}
.y18d{bottom:259.443000px;}
.y1c2{bottom:259.846500px;}
.yd8{bottom:268.477500px;}
.ya6{bottom:269.485500px;}
.y13e{bottom:270.678000px;}
.y3f{bottom:273.085500px;}
.y157{bottom:276.210000px;}
.y18c{bottom:276.703500px;}
.y77{bottom:277.105500px;}
.yd7{bottom:287.307000px;}
.ya5{bottom:288.315000px;}
.y13d{bottom:289.507500px;}
.y3e{bottom:291.915000px;}
.y18b{bottom:293.964000px;}
.y1c1{bottom:294.366000px;}
.y156{bottom:295.039500px;}
.y76{bottom:295.935000px;}
.y10{bottom:299.892000px;}
.yd6{bottom:306.136500px;}
.ya4{bottom:307.144500px;}
.y13c{bottom:308.337000px;}
.y3d{bottom:310.744500px;}
.y18a{bottom:311.223000px;}
.y1c0{bottom:311.626500px;}
.y155{bottom:313.869000px;}
.y75{bottom:314.764500px;}
.yf{bottom:317.779500px;}
.yd5{bottom:324.966000px;}
.y13b{bottom:327.166500px;}
.y189{bottom:328.483500px;}
.y1bf{bottom:328.887000px;}
.y3c{bottom:329.574000px;}
.ya3{bottom:330.456000px;}
.y74{bottom:333.594000px;}
.ye{bottom:335.667000px;}
.y154{bottom:337.180500px;}
.yd4{bottom:343.795500px;}
.y188{bottom:345.744000px;}
.y13a{bottom:345.996000px;}
.y1be{bottom:346.147500px;}
.y3b{bottom:348.403500px;}
.y73{bottom:352.423500px;}
.yd{bottom:353.556000px;}
.yd3{bottom:362.625000px;}
.y187{bottom:363.004500px;}
.y1bd{bottom:363.408000px;}
.ya2{bottom:364.080000px;}
.y139{bottom:364.825500px;}
.y3a{bottom:367.233000px;}
.y153{bottom:370.804500px;}
.y72{bottom:371.253000px;}
.y186{bottom:380.265000px;}
.y1bc{bottom:380.668500px;}
.yd2{bottom:381.454500px;}
.yc{bottom:381.904500px;}
.ya1{bottom:382.909500px;}
.y138{bottom:383.655000px;}
.y10a{bottom:384.099585px;}
.y152{bottom:389.634000px;}
.y71{bottom:390.082500px;}
.y39{bottom:390.546000px;}
.y109{bottom:393.729450px;}
.y185{bottom:397.525500px;}
.y1bb{bottom:397.929000px;}
.yd1{bottom:400.284000px;}
.ya0{bottom:401.739000px;}
.y137{bottom:402.484500px;}
.y151{bottom:408.463500px;}
.yb{bottom:408.759000px;}
.y70{bottom:408.912000px;}
.yde{bottom:410.399268px;}
.y184{bottom:414.786000px;}
.y1ba{bottom:415.188000px;}
.ydd{bottom:418.103160px;}
.yd0{bottom:419.113500px;}
.yf2{bottom:419.137668px;}
.y9f{bottom:420.568500px;}
.y136{bottom:421.314000px;}
.ya{bottom:426.646500px;}
.yf1{bottom:426.841560px;}
.y150{bottom:427.293000px;}
.y6f{bottom:427.741500px;}
.y183{bottom:432.046500px;}
.y1b9{bottom:432.448500px;}
.ycf{bottom:437.943000px;}
.y9e{bottom:439.398000px;}
.y135{bottom:440.143500px;}
.y9{bottom:444.534000px;}
.y14f{bottom:446.122500px;}
.y6e{bottom:446.571000px;}
.y181{bottom:449.305500px;}
.y182{bottom:449.307000px;}
.y1b8{bottom:449.709000px;}
.yce{bottom:456.772500px;}
.y134{bottom:458.973000px;}
.y8{bottom:462.423000px;}
.y9d{bottom:462.711000px;}
.y14e{bottom:464.952000px;}
.y6d{bottom:465.400500px;}
.y38{bottom:465.696000px;}
.y180{bottom:466.566000px;}
.y1b7{bottom:466.969500px;}
.ycd{bottom:475.602000px;}
.y133{bottom:477.802500px;}
.y7{bottom:480.310500px;}
.y14d{bottom:483.781500px;}
.y17f{bottom:483.826500px;}
.y6c{bottom:484.230000px;}
.ycc{bottom:494.431500px;}
.y9c{bottom:496.335000px;}
.y132{bottom:496.632000px;}
.y6{bottom:498.198000px;}
.y17e{bottom:501.087000px;}
.y1b6{bottom:501.490500px;}
.y14c{bottom:502.611000px;}
.y6b{bottom:503.059500px;}
.y37{bottom:503.085000px;}
.y9b{bottom:515.164500px;}
.y5{bottom:516.087000px;}
.ycb{bottom:517.744500px;}
.y17d{bottom:518.347500px;}
.y1b5{bottom:518.751000px;}
.y131{bottom:519.945000px;}
.y14b{bottom:521.440500px;}
.y6a{bottom:521.889000px;}
.y36{bottom:522.543000px;}
.y4{bottom:533.974500px;}
.y9a{bottom:533.994000px;}
.y17c{bottom:535.608000px;}
.y1b4{bottom:536.011500px;}
.y14a{bottom:540.270000px;}
.y69{bottom:540.718500px;}
.y35{bottom:541.999500px;}
.y3{bottom:551.862000px;}
.y99{bottom:552.823500px;}
.y17b{bottom:552.868500px;}
.y1b3{bottom:553.272000px;}
.y130{bottom:553.569000px;}
.yca{bottom:554.667000px;}
.y68{bottom:559.548000px;}
.y34{bottom:561.456000px;}
.y149{bottom:563.583000px;}
.yc9{bottom:568.864500px;}
.y2{bottom:569.751000px;}
.y17a{bottom:570.129000px;}
.y1b2{bottom:570.531000px;}
.y98{bottom:571.653000px;}
.y12f{bottom:572.398500px;}
.y67{bottom:578.377500px;}
.y33{bottom:580.914000px;}
.yc8{bottom:583.060500px;}
.y179{bottom:587.389500px;}
.y1{bottom:587.638500px;}
.y1b1{bottom:587.791500px;}
.y97{bottom:590.482500px;}
.y12e{bottom:591.228000px;}
.y66{bottom:597.207000px;}
.yc7{bottom:597.258000px;}
.y32{bottom:600.370500px;}
.y178{bottom:604.648500px;}
.y1b0{bottom:605.052000px;}
.yc6{bottom:611.454000px;}
.y96{bottom:613.794000px;}
.y65{bottom:616.036500px;}
.y31{bottom:619.828500px;}
.y177{bottom:621.909000px;}
.y1af{bottom:622.312500px;}
.y12d{bottom:624.793500px;}
.yc5{bottom:625.651500px;}
.y64{bottom:634.866000px;}
.y176{bottom:639.169500px;}
.y30{bottom:639.285000px;}
.y1ae{bottom:639.573000px;}
.y108{bottom:647.223000px;}
.y95{bottom:647.418000px;}
.yc4{bottom:647.484000px;}
.y63{bottom:653.695500px;}
.y175{bottom:656.430000px;}
.y1ad{bottom:656.833500px;}
.y2f{bottom:658.741500px;}
.yc3{bottom:663.922500px;}
.yef{bottom:664.641000px;}
.y94{bottom:666.247500px;}
.y62{bottom:672.525000px;}
.y174{bottom:673.690500px;}
.y1ac{bottom:674.094000px;}
.y2e{bottom:678.199500px;}
.yc2{bottom:680.361000px;}
.yee{bottom:683.874000px;}
.y93{bottom:685.077000px;}
.y173{bottom:690.951000px;}
.y61{bottom:691.354500px;}
.y2d{bottom:697.656000px;}
.yed{bottom:703.107000px;}
.y92{bottom:703.906500px;}
.yc1{bottom:704.001000px;}
.y172{bottom:708.211500px;}
.y1ab{bottom:708.613500px;}
.y60{bottom:710.184000px;}
.y2c{bottom:717.112500px;}
.yec{bottom:722.340000px;}
.y91{bottom:722.736000px;}
.y171{bottom:725.472000px;}
.y1aa{bottom:725.874000px;}
.y5f{bottom:729.013500px;}
.y2b{bottom:736.570500px;}
.yc0{bottom:738.609000px;}
.y90{bottom:741.565500px;}
.y170{bottom:742.732500px;}
.y1a9{bottom:743.134500px;}
.ydc{bottom:744.769500px;}
.y5e{bottom:747.843000px;}
.y2a{bottom:756.027000px;}
.ybf{bottom:757.842000px;}
.y16f{bottom:759.991500px;}
.y8f{bottom:760.395000px;}
.y5d{bottom:766.671000px;}
.y16e{bottom:777.252000px;}
.y1a8{bottom:777.655500px;}
.y8e{bottom:779.224500px;}
.y5c{bottom:785.500500px;}
.y29{bottom:793.824000px;}
.ybe{bottom:793.863000px;}
.y16d{bottom:794.512500px;}
.y1a7{bottom:794.916000px;}
.y8d{bottom:798.054000px;}
.y5b{bottom:804.330000px;}
.y28{bottom:809.964000px;}
.y1a6{bottom:812.176500px;}
.ybd{bottom:812.692500px;}
.y16c{bottom:816.256500px;}
.y8c{bottom:816.883500px;}
.y5a{bottom:823.159500px;}
.y1a5{bottom:829.437000px;}
.y27{bottom:830.443500px;}
.ybc{bottom:831.522000px;}
.y8b{bottom:835.713000px;}
.y59{bottom:841.989000px;}
.y26{bottom:842.242500px;}
.y1a4{bottom:846.697500px;}
.y16b{bottom:849.880500px;}
.ybb{bottom:850.351500px;}
.y8a{bottom:854.542500px;}
.y58{bottom:860.818500px;}
.y25{bottom:862.722000px;}
.y1a3{bottom:863.956500px;}
.yba{bottom:869.181000px;}
.y89{bottom:873.372000px;}
.y24{bottom:874.522500px;}
.y16a{bottom:876.420000px;}
.y57{bottom:879.648000px;}
.y1a2{bottom:881.217000px;}
.yb9{bottom:888.010500px;}
.y88{bottom:892.201500px;}
.y23{bottom:895.002000px;}
.y56{bottom:898.477500px;}
.y169{bottom:902.961000px;}
.yb8{bottom:906.840000px;}
.y87{bottom:911.031000px;}
.y22{bottom:911.140500px;}
.y1a1{bottom:915.738000px;}
.y55{bottom:917.307000px;}
.y168{bottom:920.535000px;}
.yb7{bottom:925.669500px;}
.y21{bottom:927.280500px;}
.y86{bottom:929.860500px;}
.y1a0{bottom:932.998500px;}
.y54{bottom:936.136500px;}
.y20{bottom:943.420500px;}
.y167{bottom:947.076000px;}
.yb6{bottom:948.982500px;}
.y19f{bottom:950.259000px;}
.y85{bottom:953.173500px;}
.y53{bottom:954.966000px;}
.y166{bottom:964.650000px;}
.y19e{bottom:967.519500px;}
.y52{bottom:973.795500px;}
.y165{bottom:982.224000px;}
.y19d{bottom:984.780000px;}
.yb5{bottom:985.905000px;}
.y84{bottom:986.797500px;}
.y1f{bottom:987.307500px;}
.y51{bottom:992.625000px;}
.yb4{bottom:1000.102500px;}
.y19b{bottom:1002.039000px;}
.y19c{bottom:1002.040500px;}
.y83{bottom:1005.627000px;}
.y1e{bottom:1006.137000px;}
.y164{bottom:1008.765000px;}
.y50{bottom:1011.454500px;}
.y1ce{bottom:1014.742500px;}
.yb3{bottom:1018.945500px;}
.y19a{bottom:1019.299500px;}
.y82{bottom:1024.456500px;}
.y1d{bottom:1024.966500px;}
.y163{bottom:1026.339000px;}
.y4f{bottom:1030.284000px;}
.y1cd{bottom:1032.003000px;}
.yb2{bottom:1035.384000px;}
.y199{bottom:1036.560000px;}
.y81{bottom:1043.284500px;}
.y162{bottom:1043.913000px;}
.y4e{bottom:1049.113500px;}
.y1cc{bottom:1049.263500px;}
.yb1{bottom:1051.822500px;}
.y198{bottom:1053.820500px;}
.y161{bottom:1061.487000px;}
.y80{bottom:1062.114000px;}
.y1c{bottom:1064.886000px;}
.y4d{bottom:1067.943000px;}
.y197{bottom:1071.081000px;}
.yb0{bottom:1075.462500px;}
.y7f{bottom:1085.427000px;}
.y4c{bottom:1086.772500px;}
.y160{bottom:1088.028000px;}
.y196{bottom:1088.341500px;}
.y1b{bottom:1093.131000px;}
.y4b{bottom:1105.602000px;}
.yaf{bottom:1107.082500px;}
.y19{bottom:1136.617500px;}
.y4a{bottom:1168.366500px;}
.ha{height:26.110157px;}
.hb{height:26.302208px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h15{height:33.186380px;}
.hd{height:34.813397px;}
.h12{height:35.052500px;}
.h1e{height:35.250047px;}
.h19{height:35.423719px;}
.h17{height:37.334628px;}
.h4{height:38.202476px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h1c{height:39.434227px;}
.h1b{height:39.951563px;}
.h16{height:41.482876px;}
.h13{height:41.723369px;}
.h10{height:43.217759px;}
.h11{height:43.516637px;}
.hc{height:43.660208px;}
.h7{height:43.815515px;}
.h23{height:43.886426px;}
.h20{height:44.279648px;}
.h1a{height:44.479406px;}
.h24{height:49.117939px;}
.h22{height:49.939453px;}
.h5{height:50.930649px;}
.h9{height:54.547601px;}
.h14{height:54.575123px;}
.h21{height:55.599258px;}
.h8{height:77.792486px;}
.h6{height:92.253453px;}
.h1f{height:343.005000px;}
.h18{height:375.776400px;}
.h1d{height:383.931600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:241.345133px;}
.w3{width:417.140400px;}
.w4{width:429.374400px;}
.w5{width:584.055000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7e{left:-200.158500px;}
.x66{left:-163.622400px;}
.x68{left:-7.166400px;}
.x80{left:-4.588500px;}
.x0{left:0.000000px;}
.x69{left:18.321600px;}
.x81{left:27.271500px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x9f{left:85.848000px;}
.x4c{left:88.059000px;}
.x4d{left:94.783500px;}
.x4b{left:96.324000px;}
.x4a{left:98.106000px;}
.xaa{left:165.925500px;}
.xa6{left:169.140000px;}
.xa5{left:204.915000px;}
.xb1{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5b{left:262.353000px;}
.x4{left:269.914500px;}
.x3a{left:275.316000px;}
.x63{left:279.633000px;}
.x7{left:281.479500px;}
.x39{left:283.581000px;}
.x38{left:285.363000px;}
.x9b{left:288.495000px;}
.x5f{left:289.609500px;}
.x64{left:295.671000px;}
.x10{left:297.421500px;}
.x62{left:300.471000px;}
.x49{left:302.664000px;}
.x11{left:304.893000px;}
.x75{left:306.700500px;}
.x6a{left:308.604000px;}
.x6{left:310.630500px;}
.x1e{left:311.820000px;}
.x9c{left:314.497500px;}
.x8{left:319.491000px;}
.x1f{left:325.414500px;}
.x9{left:326.962500px;}
.x2b{left:334.734000px;}
.x7a{left:337.200000px;}
.x94{left:341.557500px;}
.x14{left:344.391000px;}
.x2c{left:349.678500px;}
.x15{left:351.862500px;}
.x95{left:356.502000px;}
.x82{left:358.879500px;}
.x90{left:360.225000px;}
.x42{left:364.275000px;}
.x37{left:365.334000px;}
.x65{left:370.719000px;}
.x56{left:375.093000px;}
.x43{left:380.863500px;}
.x51{left:387.738000px;}
.x9d{left:390.742500px;}
.x57{left:392.652000px;}
.x96{left:396.271500px;}
.x52{left:400.993500px;}
.x76{left:414.591000px;}
.x6b{left:416.166000px;}
.x97{left:418.717500px;}
.x77{left:421.114500px;}
.x6c{left:422.554500px;}
.x67{left:424.761480px;}
.x6e{left:429.814500px;}
.x7d{left:434.241000px;}
.x74{left:435.338280px;}
.x3b{left:436.969500px;}
.x6f{left:443.809500px;}
.x9e{left:447.652500px;}
.x3c{left:449.787000px;}
.x8d{left:466.572000px;}
.x31{left:469.623000px;}
.xc{left:479.265000px;}
.x8e{left:481.516500px;}
.x32{left:484.567500px;}
.xd{left:486.738000px;}
.x91{left:496.608000px;}
.x8f{left:500.158500px;}
.x7b{left:501.480000px;}
.x70{left:504.903000px;}
.x20{left:509.323500px;}
.x46{left:510.535500px;}
.x92{left:511.551000px;}
.x21{left:516.796500px;}
.x71{left:518.898000px;}
.x22{left:520.606500px;}
.x35{left:521.697000px;}
.x50{left:524.514000px;}
.x47{left:526.554000px;}
.x53{left:529.405500px;}
.x78{left:533.610000px;}
.x23{left:535.551000px;}
.x36{left:536.640000px;}
.x98{left:540.349500px;}
.x1c{left:541.378500px;}
.x24{left:543.172500px;}
.x5c{left:550.522500px;}
.x8a{left:551.961000px;}
.x1d{left:555.004500px;}
.x48{left:556.812000px;}
.x25{left:558.115500px;}
.x5d{left:563.661000px;}
.x8b{left:566.905500px;}
.x2d{left:571.195500px;}
.x88{left:573.379500px;}
.x7c{left:578.200500px;}
.x7f{left:584.911350px;}
.x2e{left:586.140000px;}
.x2f{left:589.950000px;}
.xa7{left:599.197500px;}
.x54{left:601.867500px;}
.x3d{left:603.771000px;}
.x30{left:604.894500px;}
.x55{left:615.123000px;}
.x3e{left:616.587000px;}
.x58{left:623.059500px;}
.xa8{left:626.097000px;}
.x26{left:650.292000px;}
.x60{left:653.796000px;}
.x27{left:665.236500px;}
.x28{left:668.898000px;}
.x61{left:671.209500px;}
.xad{left:676.489500px;}
.x33{left:679.341000px;}
.x29{left:683.841000px;}
.x86{left:686.857500px;}
.xa0{left:693.120000px;}
.x12{left:695.410500px;}
.x34{left:698.095500px;}
.x87{left:701.800500px;}
.x13{left:702.882000px;}
.x6d{left:709.861500px;}
.x8c{left:712.423500px;}
.x4e{left:717.921000px;}
.xe{left:726.484500px;}
.xab{left:728.692500px;}
.xaf{left:729.973500px;}
.x4f{left:732.334500px;}
.xf{left:733.956000px;}
.x3f{left:737.145000px;}
.x5e{left:739.912500px;}
.xa3{left:743.049000px;}
.x44{left:744.232500px;}
.xa{left:745.519500px;}
.x79{left:747.247500px;}
.x40{left:749.962500px;}
.xb{left:752.992500px;}
.xa9{left:754.407000px;}
.xac{left:755.592000px;}
.xb0{left:756.871500px;}
.x16{left:759.666000px;}
.x45{left:760.822500px;}
.xae{left:763.270500px;}
.x17{left:767.139000px;}
.x18{left:770.949000px;}
.x93{left:775.966500px;}
.x59{left:777.288000px;}
.x19{left:778.422000px;}
.x99{left:782.040000px;}
.x83{left:783.850500px;}
.xa1{left:790.308000px;}
.x84{left:791.322000px;}
.x5a{left:794.847000px;}
.x9a{left:796.984500px;}
.x89{left:799.545000px;}
.x72{left:801.492000px;}
.x41{left:805.300500px;}
.x85{left:810.076500px;}
.x73{left:815.487000px;}
.xa2{left:816.624000px;}
.x2a{left:817.741500px;}
.x1a{left:825.492000px;}
.x1b{left:832.963500px;}
.xa4{left:837.249000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls54{letter-spacing:-0.249600pt;}
.ls5b{letter-spacing:-0.179558pt;}
.ls7b{letter-spacing:-0.176352pt;}
.ls5f{letter-spacing:-0.162458pt;}
.ls4f{letter-spacing:-0.132531pt;}
.ls4e{letter-spacing:-0.119706pt;}
.ls75{letter-spacing:-0.106880pt;}
.ls7a{letter-spacing:-0.101536pt;}
.ls5d{letter-spacing:-0.094054pt;}
.ls70{letter-spacing:-0.090848pt;}
.ls51{letter-spacing:-0.081229pt;}
.ls79{letter-spacing:-0.080160pt;}
.ls5e{letter-spacing:-0.068403pt;}
.ls59{letter-spacing:-0.059853pt;}
.ls74{letter-spacing:-0.058784pt;}
.ls52{letter-spacing:-0.055578pt;}
.ls76{letter-spacing:-0.048096pt;}
.ls4d{letter-spacing:-0.042752pt;}
.ls55{letter-spacing:-0.042240pt;}
.ls78{letter-spacing:-0.032064pt;}
.ls58{letter-spacing:-0.029926pt;}
.ls53{letter-spacing:-0.026880pt;}
.ls73{letter-spacing:-0.021376pt;}
.ls56{letter-spacing:-0.019200pt;}
.ls5c{letter-spacing:-0.017101pt;}
.ls72{letter-spacing:-0.016032pt;}
.ls4c{letter-spacing:-0.012826pt;}
.ls4b{letter-spacing:-0.011520pt;}
.ls71{letter-spacing:-0.010688pt;}
.ls50{letter-spacing:-0.008550pt;}
.ls77{letter-spacing:-0.005344pt;}
.ls5a{letter-spacing:-0.004275pt;}
.ls8{letter-spacing:0.000000pt;}
.ls88{letter-spacing:0.000659pt;}
.ls87{letter-spacing:0.000711pt;}
.ls5{letter-spacing:0.001735pt;}
.ls8b{letter-spacing:0.002262pt;}
.ls86{letter-spacing:0.002525pt;}
.lsc{letter-spacing:0.002868pt;}
.ls82{letter-spacing:0.004267pt;}
.ls44{letter-spacing:0.004275pt;}
.ls6c{letter-spacing:0.005344pt;}
.ls2a{letter-spacing:0.007680pt;}
.ls69{letter-spacing:0.010688pt;}
.ls28{letter-spacing:0.011520pt;}
.ls34{letter-spacing:0.012826pt;}
.ls30{letter-spacing:0.015360pt;}
.ls68{letter-spacing:0.016032pt;}
.ls43{letter-spacing:0.017101pt;}
.ls2d{letter-spacing:0.019200pt;}
.ls39{letter-spacing:0.021376pt;}
.ls32{letter-spacing:0.023040pt;}
.ls67{letter-spacing:0.024000pt;}
.ls6b{letter-spacing:0.026720pt;}
.ls66{letter-spacing:0.028800pt;}
.ls35{letter-spacing:0.029926pt;}
.ls24{letter-spacing:0.030643pt;}
.ls2e{letter-spacing:0.030720pt;}
.ls6e{letter-spacing:0.032064pt;}
.ls3a{letter-spacing:0.034202pt;}
.ls6f{letter-spacing:0.037408pt;}
.ls26{letter-spacing:0.037453pt;}
.ls62{letter-spacing:0.038304pt;}
.ls37{letter-spacing:0.038477pt;}
.ls36{letter-spacing:0.042752pt;}
.ls2c{letter-spacing:0.046080pt;}
.ls64{letter-spacing:0.046816pt;}
.ls6d{letter-spacing:0.048096pt;}
.ls6a{letter-spacing:0.053440pt;}
.ls42{letter-spacing:0.055578pt;}
.ls29{letter-spacing:0.080640pt;}
.ls2b{letter-spacing:0.099840pt;}
.ls27{letter-spacing:0.125978pt;}
.ls33{letter-spacing:0.130560pt;}
.ls25{letter-spacing:0.136192pt;}
.ls38{letter-spacing:0.136806pt;}
.ls65{letter-spacing:0.157472pt;}
.ls63{letter-spacing:0.170240pt;}
.ls57{letter-spacing:0.264960pt;}
.ls61{letter-spacing:0.637762pt;}
.ls16{letter-spacing:0.760358pt;}
.ls19{letter-spacing:0.764701pt;}
.ls15{letter-spacing:0.765130pt;}
.ls1e{letter-spacing:0.769929pt;}
.ls41{letter-spacing:1.220025pt;}
.ls40{letter-spacing:1.413120pt;}
.ls31{letter-spacing:2.181120pt;}
.ls2f{letter-spacing:2.438400pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls3d{letter-spacing:10.196790pt;}
.ls3c{letter-spacing:10.202018pt;}
.ls3e{letter-spacing:10.462933pt;}
.ls3b{letter-spacing:10.573471pt;}
.ls11{letter-spacing:10.623733pt;}
.ls7{letter-spacing:10.626533pt;}
.ls10{letter-spacing:10.703346pt;}
.ls45{letter-spacing:10.772593pt;}
.ls3f{letter-spacing:11.034745pt;}
.ls46{letter-spacing:11.043848pt;}
.ls48{letter-spacing:11.060267pt;}
.ls13{letter-spacing:11.196332pt;}
.ls1c{letter-spacing:11.530714pt;}
.ls1b{letter-spacing:11.535942pt;}
.ls14{letter-spacing:11.544007pt;}
.ls20{letter-spacing:11.583733pt;}
.ls47{letter-spacing:11.632078pt;}
.ls49{letter-spacing:11.637411pt;}
.ls7c{letter-spacing:11.687301pt;}
.ls84{letter-spacing:11.825192pt;}
.ls8c{letter-spacing:11.840878pt;}
.ls81{letter-spacing:11.851102pt;}
.ls85{letter-spacing:11.853945pt;}
.ls8e{letter-spacing:11.894156pt;}
.ls17{letter-spacing:11.943786pt;}
.ls18{letter-spacing:11.949014pt;}
.ls7e{letter-spacing:11.954133pt;}
.ls8f{letter-spacing:11.954495pt;}
.ls80{letter-spacing:11.959467pt;}
.ls89{letter-spacing:12.009959pt;}
.ls90{letter-spacing:12.017918pt;}
.ls1f{letter-spacing:12.093060pt;}
.ls7f{letter-spacing:12.093187pt;}
.lsd{letter-spacing:12.528078pt;}
.lse{letter-spacing:12.533411pt;}
.lsf{letter-spacing:12.552730pt;}
.ls83{letter-spacing:12.567676pt;}
.ls23{letter-spacing:12.698373pt;}
.ls22{letter-spacing:13.283733pt;}
.ls9{letter-spacing:13.284147pt;}
.ls21{letter-spacing:13.422292pt;}
.ls8d{letter-spacing:13.561140pt;}
.lsb{letter-spacing:13.917762pt;}
.lsa{letter-spacing:13.923096pt;}
.ls1d{letter-spacing:14.129407pt;}
.ls4a{letter-spacing:14.452412pt;}
.ls8a{letter-spacing:14.842186pt;}
.ls12{letter-spacing:14.980779pt;}
.ls60{letter-spacing:14.983750pt;}
.ls3{letter-spacing:15.937067pt;}
.ls7d{letter-spacing:16.687937pt;}
.ls1a{letter-spacing:26.945093pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws60{word-spacing:-11.955200pt;}
.ws69{word-spacing:-11.391930pt;}
.wscb{word-spacing:-10.810240pt;}
.ws81{word-spacing:-10.688000pt;}
.wscc{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws80{word-spacing:-9.630720pt;}
.ws7f{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.298400pt;}
.ws7d{word-spacing:-8.648192pt;}
.ws7e{word-spacing:-8.512000pt;}
.wsdb{word-spacing:-2.805600pt;}
.wsdc{word-spacing:-2.736128pt;}
.ws4e{word-spacing:-2.603559pt;}
.ws40{word-spacing:-2.391024pt;}
.wscd{word-spacing:-2.337890pt;}
.ws14d{word-spacing:-2.247578pt;}
.ws5d{word-spacing:-2.125355pt;}
.ws5c{word-spacing:-2.072221pt;}
.wsaf{word-spacing:-1.859712pt;}
.ws122{word-spacing:-1.817190pt;}
.ws87{word-spacing:-1.769370pt;}
.ws86{word-spacing:-1.758354pt;}
.ws104{word-spacing:-1.753418pt;}
.ws88{word-spacing:-1.753125pt;}
.wsb0{word-spacing:-1.714355pt;}
.ws123{word-spacing:-1.625907pt;}
.ws119{word-spacing:-1.540882pt;}
.wsea{word-spacing:-1.517696pt;}
.wsae{word-spacing:-1.500595pt;}
.ws8a{word-spacing:-1.495765pt;}
.ws9a{word-spacing:-1.486080pt;}
.ws89{word-spacing:-1.482445pt;}
.wse9{word-spacing:-1.469600pt;}
.ws99{word-spacing:-1.416960pt;}
.ws9b{word-spacing:-1.405440pt;}
.ws83{word-spacing:-1.386803pt;}
.ws84{word-spacing:-1.382389pt;}
.wsa9{word-spacing:-1.346688pt;}
.ws3f{word-spacing:-1.328347pt;}
.ws110{word-spacing:-1.275213pt;}
.wsa8{word-spacing:-1.256909pt;}
.wsbe{word-spacing:-1.209882pt;}
.ws8c{word-spacing:-1.195520pt;}
.ws8d{word-spacing:-1.177515pt;}
.wsa7{word-spacing:-1.171405pt;}
.ws23{word-spacing:-1.168945pt;}
.wsee{word-spacing:-1.164992pt;}
.ws8b{word-spacing:-1.147699pt;}
.ws10d{word-spacing:-1.115811pt;}
.wsaa{word-spacing:-1.081626pt;}
.ws142{word-spacing:-1.052058pt;}
.wscf{word-spacing:-0.956410pt;}
.ws90{word-spacing:-0.916077pt;}
.ws8f{word-spacing:-0.910848pt;}
.ws8e{word-spacing:-0.908595pt;}
.wsf4{word-spacing:-0.908480pt;}
.wsd0{word-spacing:-0.903276pt;}
.ws93{word-spacing:-0.900181pt;}
.ws92{word-spacing:-0.894848pt;}
.ws15d{word-spacing:-0.860774pt;}
.wsf5{word-spacing:-0.860384pt;}
.wsd6{word-spacing:-0.785568pt;}
.ws9f{word-spacing:-0.668160pt;}
.ws66{word-spacing:-0.637608pt;}
.ws6d{word-spacing:-0.627364pt;}
.ws6e{word-spacing:-0.622135pt;}
.ws67{word-spacing:-0.608548pt;}
.wse5{word-spacing:-0.603872pt;}
.ws68{word-spacing:-0.595101pt;}
.ws7c{word-spacing:-0.584473pt;}
.ws7b{word-spacing:-0.580799pt;}
.ws72{word-spacing:-0.572566pt;}
.wsef{word-spacing:-0.566464pt;}
.wse4{word-spacing:-0.555776pt;}
.wsf0{word-spacing:-0.550432pt;}
.wsd7{word-spacing:-0.545088pt;}
.ws11c{word-spacing:-0.478205pt;}
.ws14f{word-spacing:-0.430387pt;}
.ws9d{word-spacing:-0.426240pt;}
.ws9e{word-spacing:-0.399360pt;}
.ws9c{word-spacing:-0.391680pt;}
.ws10c{word-spacing:-0.371937pt;}
.ws26{word-spacing:-0.318803pt;}
.ws91{word-spacing:-0.300646pt;}
.ws124{word-spacing:-0.286925pt;}
.ws125{word-spacing:-0.268107pt;}
.ws2e{word-spacing:-0.265669pt;}
.wsd1{word-spacing:-0.246848pt;}
.ws102{word-spacing:-0.219104pt;}
.wsda{word-spacing:-0.213760pt;}
.ws21{word-spacing:-0.212535pt;}
.ws6a{word-spacing:-0.209063pt;}
.wsf9{word-spacing:-0.203072pt;}
.ws96{word-spacing:-0.197478pt;}
.wsfa{word-spacing:-0.192384pt;}
.ws137{word-spacing:-0.191283pt;}
.wsc6{word-spacing:-0.171008pt;}
.ws2d{word-spacing:-0.159402pt;}
.wsf7{word-spacing:-0.154976pt;}
.ws13{word-spacing:-0.143462pt;}
.wsf8{word-spacing:-0.133600pt;}
.wsf6{word-spacing:-0.128256pt;}
.wsd2{word-spacing:-0.123424pt;}
.ws24{word-spacing:-0.106268pt;}
.wsb7{word-spacing:-0.103680pt;}
.ws97{word-spacing:-0.098739pt;}
.wsb5{word-spacing:-0.096000pt;}
.ws11d{word-spacing:-0.095642pt;}
.wsb6{word-spacing:-0.080640pt;}
.ws34{word-spacing:-0.053134pt;}
.ws64{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws154{word-spacing:-0.005282pt;}
.wsd{word-spacing:-0.005134pt;}
.wsf{word-spacing:-0.002288pt;}
.ws1{word-spacing:0.000000pt;}
.ws78{word-spacing:0.002385pt;}
.ws18{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.wsf2{word-spacing:0.069472pt;}
.ws57{word-spacing:0.077544pt;}
.wse6{word-spacing:0.080160pt;}
.ws58{word-spacing:0.082925pt;}
.ws56{word-spacing:0.085014pt;}
.ws101{word-spacing:0.085504pt;}
.ws16{word-spacing:0.095642pt;}
.wsb9{word-spacing:0.098330pt;}
.wsd9{word-spacing:0.101536pt;}
.ws33{word-spacing:0.106268pt;}
.wsa1{word-spacing:0.107520pt;}
.wsb1{word-spacing:0.123981pt;}
.wsa2{word-spacing:0.130560pt;}
.wsd4{word-spacing:0.134400pt;}
.wsc7{word-spacing:0.136806pt;}
.wsd5{word-spacing:0.139200pt;}
.wsb8{word-spacing:0.142080pt;}
.ws17{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.ws12e{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsc8{word-spacing:0.230861pt;}
.ws14{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.ws37{word-spacing:0.318803pt;}
.ws73{word-spacing:0.371937pt;}
.ws77{word-spacing:0.425071pt;}
.ws134{word-spacing:0.430387pt;}
.wsce{word-spacing:0.584473pt;}
.ws53{word-spacing:0.593553pt;}
.ws61{word-spacing:0.594091pt;}
.ws52{word-spacing:0.595396pt;}
.ws54{word-spacing:0.597820pt;}
.ws63{word-spacing:0.597982pt;}
.ws62{word-spacing:0.617685pt;}
.ws114{word-spacing:0.637606pt;}
.ws167{word-spacing:0.765133pt;}
.ws131{word-spacing:0.812954pt;}
.ws107{word-spacing:0.850142pt;}
.ws148{word-spacing:0.860774pt;}
.ws10e{word-spacing:0.903276pt;}
.ws65{word-spacing:0.916000pt;}
.ws71{word-spacing:0.935158pt;}
.ws59{word-spacing:0.956410pt;}
.ws105{word-spacing:1.009543pt;}
.wsac{word-spacing:1.060250pt;}
.ws22{word-spacing:1.062677pt;}
.wsa5{word-spacing:1.064525pt;}
.wsab{word-spacing:1.073075pt;}
.ws85{word-spacing:1.099878pt;}
.wsa6{word-spacing:1.107277pt;}
.ws11a{word-spacing:1.115811pt;}
.ws75{word-spacing:1.168945pt;}
.ws16a{word-spacing:1.195520pt;}
.ws94{word-spacing:1.222079pt;}
.ws168{word-spacing:1.243341pt;}
.ws15a{word-spacing:1.291162pt;}
.ws3d{word-spacing:1.328347pt;}
.ws1a{word-spacing:1.338982pt;}
.ws43{word-spacing:1.381481pt;}
.wsb3{word-spacing:1.393920pt;}
.wsb2{word-spacing:1.401600pt;}
.wsb4{word-spacing:1.405440pt;}
.ws25{word-spacing:1.434614pt;}
.ws170{word-spacing:1.434624pt;}
.ws38{word-spacing:1.540882pt;}
.wsa4{word-spacing:1.590374pt;}
.ws32{word-spacing:1.594016pt;}
.ws169{word-spacing:1.625907pt;}
.wsf1{word-spacing:1.640608pt;}
.wsfe{word-spacing:1.645952pt;}
.ws103{word-spacing:1.647150pt;}
.ws157{word-spacing:1.673728pt;}
.ws5a{word-spacing:1.700284pt;}
.ws82{word-spacing:1.721549pt;}
.wsca{word-spacing:1.753418pt;}
.ws5f{word-spacing:1.769370pt;}
.ws36{word-spacing:1.806551pt;}
.ws95{word-spacing:1.912819pt;}
.ws6f{word-spacing:1.955331pt;}
.ws19{word-spacing:1.960653pt;}
.ws70{word-spacing:1.966100pt;}
.wsf3{word-spacing:1.966592pt;}
.ws5e{word-spacing:2.008474pt;}
.ws4a{word-spacing:2.125355pt;}
.ws4b{word-spacing:2.178489pt;}
.ws11f{word-spacing:2.199757pt;}
.ws49{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.233067pt;}
.ws163{word-spacing:2.247578pt;}
.wse2{word-spacing:2.297920pt;}
.ws7a{word-spacing:2.337890pt;}
.ws112{word-spacing:2.391024pt;}
.wsa0{word-spacing:2.423040pt;}
.ws113{word-spacing:2.497292pt;}
.ws11{word-spacing:2.550432pt;}
.wse3{word-spacing:2.639936pt;}
.ws3c{word-spacing:2.709827pt;}
.ws44{word-spacing:2.762961pt;}
.wsbf{word-spacing:2.808806pt;}
.wsba{word-spacing:2.830182pt;}
.ws1e{word-spacing:2.861926pt;}
.ws138{word-spacing:2.862669pt;}
.ws161{word-spacing:2.864247pt;}
.ws149{word-spacing:2.864350pt;}
.ws166{word-spacing:2.864725pt;}
.ws13d{word-spacing:2.865860pt;}
.ws171{word-spacing:2.866466pt;}
.wsbd{word-spacing:2.868659pt;}
.ws1b{word-spacing:2.869248pt;}
.wsa3{word-spacing:2.885760pt;}
.wsc0{word-spacing:2.902861pt;}
.wsbc{word-spacing:2.945613pt;}
.wsd8{word-spacing:2.949888pt;}
.ws1d{word-spacing:2.964890pt;}
.ws30{word-spacing:2.975497pt;}
.wsbb{word-spacing:3.108070pt;}
.ws108{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws140{word-spacing:3.203994pt;}
.ws74{word-spacing:3.241166pt;}
.wsfb{word-spacing:3.243808pt;}
.ws3e{word-spacing:3.294300pt;}
.ws155{word-spacing:3.299635pt;}
.ws48{word-spacing:3.347434pt;}
.ws121{word-spacing:3.347456pt;}
.ws120{word-spacing:3.395277pt;}
.wsad{word-spacing:3.398784pt;}
.ws117{word-spacing:3.559969pt;}
.wseb{word-spacing:3.575136pt;}
.ws145{word-spacing:3.586560pt;}
.ws2a{word-spacing:3.666237pt;}
.ws11e{word-spacing:3.730022pt;}
.ws173{word-spacing:3.777843pt;}
.ws11b{word-spacing:3.878772pt;}
.wse0{word-spacing:3.911808pt;}
.wsff{word-spacing:3.922496pt;}
.wse1{word-spacing:3.927840pt;}
.ws10a{word-spacing:3.931906pt;}
.ws100{word-spacing:3.949216pt;}
.ws12{word-spacing:4.112589pt;}
.ws76{word-spacing:4.144442pt;}
.wsc2{word-spacing:4.159770pt;}
.wsc1{word-spacing:4.172595pt;}
.ws46{word-spacing:4.197575pt;}
.wsb{word-spacing:4.240070pt;}
.ws47{word-spacing:4.250709pt;}
.wsc{word-spacing:4.314458pt;}
.ws3a{word-spacing:4.356977pt;}
.ws39{word-spacing:4.410111pt;}
.ws143{word-spacing:4.542976pt;}
.ws79{word-spacing:4.569513pt;}
.wsec{word-spacing:4.574464pt;}
.wsed{word-spacing:4.585152pt;}
.ws144{word-spacing:4.590797pt;}
.ws41{word-spacing:4.728914pt;}
.ws15{word-spacing:4.734259pt;}
.wsfd{word-spacing:4.884416pt;}
.ws111{word-spacing:4.888316pt;}
.wsde{word-spacing:4.905792pt;}
.ws31{word-spacing:4.941450pt;}
.wsdf{word-spacing:4.991296pt;}
.ws4c{word-spacing:4.994583pt;}
.wsfc{word-spacing:5.060768pt;}
.ws115{word-spacing:5.260253pt;}
.ws50{word-spacing:5.419654pt;}
.wsc3{word-spacing:5.442330pt;}
.ws4f{word-spacing:5.472788pt;}
.wsc5{word-spacing:5.506458pt;}
.wse8{word-spacing:5.536384pt;}
.wsc4{word-spacing:5.540659pt;}
.ws158{word-spacing:5.595034pt;}
.ws10f{word-spacing:5.632190pt;}
.wsc9{word-spacing:5.950993pt;}
.ws153{word-spacing:6.073242pt;}
.ws4d{word-spacing:6.110395pt;}
.ws150{word-spacing:6.216704pt;}
.ws152{word-spacing:6.407987pt;}
.wse7{word-spacing:6.439520pt;}
.ws3b{word-spacing:6.482332pt;}
.ws2f{word-spacing:6.535466pt;}
.ws147{word-spacing:6.551450pt;}
.ws118{word-spacing:6.588599pt;}
.ws106{word-spacing:6.641733pt;}
.ws1c{word-spacing:6.790554pt;}
.ws109{word-spacing:6.854269pt;}
.ws9{word-spacing:6.918010pt;}
.ws28{word-spacing:7.332474pt;}
.ws45{word-spacing:7.651277pt;}
.ws13e{word-spacing:7.794790pt;}
.ws116{word-spacing:7.916946pt;}
.wsdd{word-spacing:8.037376pt;}
.ws98{word-spacing:8.263450pt;}
.ws15b{word-spacing:8.559923pt;}
.ws5b{word-spacing:8.713954pt;}
.ws13f{word-spacing:9.038131pt;}
.ws3{word-spacing:9.257641pt;}
.ws165{word-spacing:9.516339pt;}
.wsd3{word-spacing:10.329312pt;}
.ws2b{word-spacing:10.583521pt;}
.ws7{word-spacing:10.823338pt;}
.ws127{word-spacing:10.855322pt;}
.ws126{word-spacing:11.285709pt;}
.ws14b{word-spacing:11.620454pt;}
.ws156{word-spacing:11.716096pt;}
.ws130{word-spacing:11.763917pt;}
.ws16b{word-spacing:11.859558pt;}
.ws14e{word-spacing:11.896858pt;}
.ws13a{word-spacing:11.899571pt;}
.ws151{word-spacing:11.901065pt;}
.ws159{word-spacing:11.901534pt;}
.ws14c{word-spacing:11.902191pt;}
.ws139{word-spacing:11.902362pt;}
.ws15c{word-spacing:11.902481pt;}
.ws160{word-spacing:11.903095pt;}
.ws132{word-spacing:11.903949pt;}
.ws14a{word-spacing:11.904068pt;}
.ws13b{word-spacing:11.904299pt;}
.ws136{word-spacing:11.904905pt;}
.ws16f{word-spacing:11.905075pt;}
.ws16e{word-spacing:11.905502pt;}
.ws146{word-spacing:11.906748pt;}
.ws12f{word-spacing:11.907379pt;}
.ws133{word-spacing:12.003021pt;}
.ws42{word-spacing:13.230333pt;}
.ws164{word-spacing:14.154957pt;}
.ws8{word-spacing:14.319536pt;}
.ws12c{word-spacing:14.680986pt;}
.ws129{word-spacing:14.728806pt;}
.ws172{word-spacing:14.770116pt;}
.ws15f{word-spacing:14.771149pt;}
.ws12d{word-spacing:14.771456pt;}
.ws162{word-spacing:14.771703pt;}
.ws15e{word-spacing:14.774519pt;}
.ws141{word-spacing:14.775612pt;}
.ws12b{word-spacing:14.776627pt;}
.ws6c{word-spacing:14.787015pt;}
.ws6b{word-spacing:14.792506pt;}
.ws16c{word-spacing:14.824448pt;}
.ws16d{word-spacing:14.872269pt;}
.ws13c{word-spacing:14.920090pt;}
.ws12a{word-spacing:14.967910pt;}
.ws10b{word-spacing:15.461955pt;}
.ws135{word-spacing:16.498176pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws128{word-spacing:26.397082pt;}
.ws51{word-spacing:243.694797pt;}
.ws55{word-spacing:279.560397pt;}
._39{margin-left:-18.178324pt;}
._33{margin-left:-6.402738pt;}
._2{margin-left:-5.467459pt;}
._8{margin-left:-3.910662pt;}
._1{margin-left:-2.752326pt;}
._0{margin-left:-1.338970pt;}
._30{width:1.092672pt;}
._5{width:2.239937pt;}
._6{width:4.000318pt;}
._31{width:6.597466pt;}
._3b{width:9.930834pt;}
._3{width:11.530016pt;}
._7{width:13.174685pt;}
._a{width:14.633165pt;}
._b{width:16.019968pt;}
._14{width:17.438531pt;}
._35{width:18.373995pt;}
._d{width:19.271782pt;}
._10{width:20.190869pt;}
._11{width:21.306681pt;}
._15{width:22.369358pt;}
._e{width:23.432192pt;}
._36{width:26.093245pt;}
._4{width:27.188522pt;}
._34{width:28.692288pt;}
._c{width:29.696704pt;}
._2e{width:31.040801pt;}
._3a{width:33.735060pt;}
._f{width:35.530854pt;}
._9{width:50.498554pt;}
._38{width:54.993920pt;}
._2d{width:59.807630pt;}
._2a{width:123.998217pt;}
._27{width:148.668843pt;}
._1c{width:161.490842pt;}
._29{width:186.736759pt;}
._1a{width:190.852813pt;}
._1e{width:209.311642pt;}
._18{width:211.893965pt;}
._28{width:218.473600pt;}
._2c{width:223.228612pt;}
._2b{width:230.425190pt;}
._19{width:235.804365pt;}
._26{width:243.762253pt;}
._17{width:249.720218pt;}
._25{width:273.056768pt;}
._24{width:279.225651pt;}
._16{width:282.238362pt;}
._22{width:316.717158pt;}
._21{width:317.769216pt;}
._23{width:349.129018pt;}
._1d{width:370.663518pt;}
._1b{width:371.850044pt;}
._20{width:383.235891pt;}
._1f{width:395.143270pt;}
._12{width:498.865446pt;}
._2f{width:1452.365107pt;}
._32{width:1815.456384pt;}
._37{width:2180.429333pt;}
._13{width:2201.682667pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:34.048000pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.400000pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsc{font-size:42.752000pt;}
.fsa{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y12c{bottom:-604.322227pt;}
.y12b{bottom:-587.202723pt;}
.y12a{bottom:-570.163379pt;}
.y129{bottom:-553.043875pt;}
.y128{bottom:-536.004531pt;}
.y127{bottom:-518.885027pt;}
.y126{bottom:-501.765523pt;}
.y125{bottom:-484.726179pt;}
.y124{bottom:-467.606675pt;}
.y123{bottom:-450.567331pt;}
.y122{bottom:-433.447827pt;}
.y121{bottom:-416.328323pt;}
.y120{bottom:-399.288979pt;}
.y11f{bottom:-382.169475pt;}
.y11e{bottom:-365.049971pt;}
.y11d{bottom:-348.010627pt;}
.y11c{bottom:-330.891123pt;}
.y11b{bottom:-313.851779pt;}
.y11a{bottom:-296.732275pt;}
.y119{bottom:-279.612771pt;}
.y118{bottom:-262.572091pt;}
.y117{bottom:-245.452587pt;}
.y116{bottom:-228.413243pt;}
.y115{bottom:-211.293739pt;}
.y114{bottom:-194.174235pt;}
.y100{bottom:-193.125581pt;}
.yff{bottom:-179.429978pt;}
.y113{bottom:-177.134891pt;}
.yeb{bottom:-174.591723pt;}
.yfe{bottom:-165.798502pt;}
.yea{bottom:-160.896119pt;}
.y112{bottom:-160.015387pt;}
.yfd{bottom:-152.102899pt;}
.ye9{bottom:-147.263575pt;}
.y111{bottom:-142.976043pt;}
.yfc{bottom:-138.471424pt;}
.ye8{bottom:-133.567972pt;}
.yfb{bottom:-124.775821pt;}
.y110{bottom:-121.856555pt;}
.ye7{bottom:-119.872369pt;}
.yfa{bottom:-111.080218pt;}
.ye6{bottom:-106.239825pt;}
.yf9{bottom:-97.448742pt;}
.ye5{bottom:-92.544222pt;}
.y10f{bottom:-88.737115pt;}
.yf8{bottom:-80.617280pt;}
.ye4{bottom:-78.912747pt;}
.y10e{bottom:-71.697771pt;}
.y10d{bottom:-54.578267pt;}
.yf7{bottom:-54.377600pt;}
.ye3{bottom:-52.737387pt;}
.yf6{bottom:-42.025280pt;}
.ye2{bottom:-40.385067pt;}
.yf5{bottom:-29.737280pt;}
.ye1{bottom:-28.032747pt;}
.y10c{bottom:-21.858267pt;}
.yf4{bottom:-17.449280pt;}
.ye0{bottom:-15.744747pt;}
.y10b{bottom:-1.858267pt;}
.yf3{bottom:-1.449280pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:0.191253pt;}
.y1a{bottom:12.329438pt;}
.y49{bottom:28.346667pt;}
.y107{bottom:83.420000pt;}
.yae{bottom:88.508000pt;}
.y48{bottom:92.108000pt;}
.y1cb{bottom:92.892000pt;}
.y18{bottom:93.018667pt;}
.y148{bottom:95.681333pt;}
.y15f{bottom:99.029333pt;}
.y106{bottom:100.157333pt;}
.yad{bottom:105.245333pt;}
.y146{bottom:106.705333pt;}
.y195{bottom:107.876000pt;}
.y1ca{bottom:108.233333pt;}
.y47{bottom:108.844000pt;}
.y17{bottom:108.920000pt;}
.y147{bottom:112.418667pt;}
.y15e{bottom:114.650667pt;}
.y105{bottom:120.880000pt;}
.yac{bottom:121.982667pt;}
.y194{bottom:123.218667pt;}
.y145{bottom:123.442667pt;}
.y1c9{bottom:123.576000pt;}
.y16{bottom:124.820000pt;}
.y46{bottom:125.581333pt;}
.y7e{bottom:129.156000pt;}
.y15d{bottom:130.272000pt;}
.y193{bottom:138.560000pt;}
.yab{bottom:138.720000pt;}
.y1c8{bottom:138.918667pt;}
.y144{bottom:140.180000pt;}
.y15{bottom:140.720000pt;}
.y45{bottom:142.318667pt;}
.y7d{bottom:145.893333pt;}
.y104{bottom:147.926667pt;}
.y192{bottom:153.902667pt;}
.y1c7{bottom:154.261333pt;}
.yaa{bottom:155.457333pt;}
.y14{bottom:156.621333pt;}
.y143{bottom:156.917333pt;}
.y44{bottom:159.056000pt;}
.y15c{bottom:161.833333pt;}
.y7c{bottom:162.630667pt;}
.y103{bottom:165.022667pt;}
.y191{bottom:169.245333pt;}
.y1c6{bottom:169.604000pt;}
.y13{bottom:172.521333pt;}
.y142{bottom:173.654667pt;}
.y43{bottom:175.793333pt;}
.ya9{bottom:176.180000pt;}
.y15b{bottom:178.570667pt;}
.y7b{bottom:179.368000pt;}
.y102{bottom:182.118667pt;}
.y190{bottom:184.588000pt;}
.y1c5{bottom:184.946667pt;}
.y12{bottom:188.421333pt;}
.ydb{bottom:188.436000pt;}
.y141{bottom:190.392000pt;}
.y42{bottom:192.530667pt;}
.y15a{bottom:195.308000pt;}
.y7a{bottom:196.105333pt;}
.y101{bottom:199.214667pt;}
.y18f{bottom:199.930667pt;}
.y1c4{bottom:200.289333pt;}
.y11{bottom:204.322667pt;}
.yda{bottom:205.173333pt;}
.ya8{bottom:206.068000pt;}
.y140{bottom:207.129333pt;}
.y41{bottom:209.268000pt;}
.y159{bottom:212.045333pt;}
.y79{bottom:212.841333pt;}
.y18e{bottom:215.273333pt;}
.y1c3{bottom:215.632000pt;}
.yf0{bottom:219.152000pt;}
.yd9{bottom:221.909333pt;}
.ya7{bottom:222.805333pt;}
.y13f{bottom:223.865333pt;}
.y40{bottom:226.005333pt;}
.y158{bottom:228.782667pt;}
.y78{bottom:229.578667pt;}
.y18d{bottom:230.616000pt;}
.y1c2{bottom:230.974667pt;}
.yd8{bottom:238.646667pt;}
.ya6{bottom:239.542667pt;}
.y13e{bottom:240.602667pt;}
.y3f{bottom:242.742667pt;}
.y157{bottom:245.520000pt;}
.y18c{bottom:245.958667pt;}
.y77{bottom:246.316000pt;}
.yd7{bottom:255.384000pt;}
.ya5{bottom:256.280000pt;}
.y13d{bottom:257.340000pt;}
.y3e{bottom:259.480000pt;}
.y18b{bottom:261.301333pt;}
.y1c1{bottom:261.658667pt;}
.y156{bottom:262.257333pt;}
.y76{bottom:263.053333pt;}
.y10{bottom:266.570667pt;}
.yd6{bottom:272.121333pt;}
.ya4{bottom:273.017333pt;}
.y13c{bottom:274.077333pt;}
.y3d{bottom:276.217333pt;}
.y18a{bottom:276.642667pt;}
.y1c0{bottom:277.001333pt;}
.y155{bottom:278.994667pt;}
.y75{bottom:279.790667pt;}
.yf{bottom:282.470667pt;}
.yd5{bottom:288.858667pt;}
.y13b{bottom:290.814667pt;}
.y189{bottom:291.985333pt;}
.y1bf{bottom:292.344000pt;}
.y3c{bottom:292.954667pt;}
.ya3{bottom:293.738667pt;}
.y74{bottom:296.528000pt;}
.ye{bottom:298.370667pt;}
.y154{bottom:299.716000pt;}
.yd4{bottom:305.596000pt;}
.y188{bottom:307.328000pt;}
.y13a{bottom:307.552000pt;}
.y1be{bottom:307.686667pt;}
.y3b{bottom:309.692000pt;}
.y73{bottom:313.265333pt;}
.yd{bottom:314.272000pt;}
.yd3{bottom:322.333333pt;}
.y187{bottom:322.670667pt;}
.y1bd{bottom:323.029333pt;}
.ya2{bottom:323.626667pt;}
.y139{bottom:324.289333pt;}
.y3a{bottom:326.429333pt;}
.y153{bottom:329.604000pt;}
.y72{bottom:330.002667pt;}
.y186{bottom:338.013333pt;}
.y1bc{bottom:338.372000pt;}
.yd2{bottom:339.070667pt;}
.yc{bottom:339.470667pt;}
.ya1{bottom:340.364000pt;}
.y138{bottom:341.026667pt;}
.y10a{bottom:341.421853pt;}
.y152{bottom:346.341333pt;}
.y71{bottom:346.740000pt;}
.y39{bottom:347.152000pt;}
.y109{bottom:349.981733pt;}
.y185{bottom:353.356000pt;}
.y1bb{bottom:353.714667pt;}
.yd1{bottom:355.808000pt;}
.ya0{bottom:357.101333pt;}
.y137{bottom:357.764000pt;}
.y151{bottom:363.078667pt;}
.yb{bottom:363.341333pt;}
.y70{bottom:363.477333pt;}
.yde{bottom:364.799349pt;}
.y184{bottom:368.698667pt;}
.y1ba{bottom:369.056000pt;}
.ydd{bottom:371.647253pt;}
.yd0{bottom:372.545333pt;}
.yf2{bottom:372.566816pt;}
.y9f{bottom:373.838667pt;}
.y136{bottom:374.501333pt;}
.ya{bottom:379.241333pt;}
.yf1{bottom:379.414720pt;}
.y150{bottom:379.816000pt;}
.y6f{bottom:380.214667pt;}
.y183{bottom:384.041333pt;}
.y1b9{bottom:384.398667pt;}
.ycf{bottom:389.282667pt;}
.y9e{bottom:390.576000pt;}
.y135{bottom:391.238667pt;}
.y9{bottom:395.141333pt;}
.y14f{bottom:396.553333pt;}
.y6e{bottom:396.952000pt;}
.y181{bottom:399.382667pt;}
.y182{bottom:399.384000pt;}
.y1b8{bottom:399.741333pt;}
.yce{bottom:406.020000pt;}
.y134{bottom:407.976000pt;}
.y8{bottom:411.042667pt;}
.y9d{bottom:411.298667pt;}
.y14e{bottom:413.290667pt;}
.y6d{bottom:413.689333pt;}
.y38{bottom:413.952000pt;}
.y180{bottom:414.725333pt;}
.y1b7{bottom:415.084000pt;}
.ycd{bottom:422.757333pt;}
.y133{bottom:424.713333pt;}
.y7{bottom:426.942667pt;}
.y14d{bottom:430.028000pt;}
.y17f{bottom:430.068000pt;}
.y6c{bottom:430.426667pt;}
.ycc{bottom:439.494667pt;}
.y9c{bottom:441.186667pt;}
.y132{bottom:441.450667pt;}
.y6{bottom:442.842667pt;}
.y17e{bottom:445.410667pt;}
.y1b6{bottom:445.769333pt;}
.y14c{bottom:446.765333pt;}
.y6b{bottom:447.164000pt;}
.y37{bottom:447.186667pt;}
.y9b{bottom:457.924000pt;}
.y5{bottom:458.744000pt;}
.ycb{bottom:460.217333pt;}
.y17d{bottom:460.753333pt;}
.y1b5{bottom:461.112000pt;}
.y131{bottom:462.173333pt;}
.y14b{bottom:463.502667pt;}
.y6a{bottom:463.901333pt;}
.y36{bottom:464.482667pt;}
.y4{bottom:474.644000pt;}
.y9a{bottom:474.661333pt;}
.y17c{bottom:476.096000pt;}
.y1b4{bottom:476.454667pt;}
.y14a{bottom:480.240000pt;}
.y69{bottom:480.638667pt;}
.y35{bottom:481.777333pt;}
.y3{bottom:490.544000pt;}
.y99{bottom:491.398667pt;}
.y17b{bottom:491.438667pt;}
.y1b3{bottom:491.797333pt;}
.y130{bottom:492.061333pt;}
.yca{bottom:493.037333pt;}
.y68{bottom:497.376000pt;}
.y34{bottom:499.072000pt;}
.y149{bottom:500.962667pt;}
.yc9{bottom:505.657333pt;}
.y2{bottom:506.445333pt;}
.y17a{bottom:506.781333pt;}
.y1b2{bottom:507.138667pt;}
.y98{bottom:508.136000pt;}
.y12f{bottom:508.798667pt;}
.y67{bottom:514.113333pt;}
.y33{bottom:516.368000pt;}
.yc8{bottom:518.276000pt;}
.y179{bottom:522.124000pt;}
.y1{bottom:522.345333pt;}
.y1b1{bottom:522.481333pt;}
.y97{bottom:524.873333pt;}
.y12e{bottom:525.536000pt;}
.y66{bottom:530.850667pt;}
.yc7{bottom:530.896000pt;}
.y32{bottom:533.662667pt;}
.y178{bottom:537.465333pt;}
.y1b0{bottom:537.824000pt;}
.yc6{bottom:543.514667pt;}
.y96{bottom:545.594667pt;}
.y65{bottom:547.588000pt;}
.y31{bottom:550.958667pt;}
.y177{bottom:552.808000pt;}
.y1af{bottom:553.166667pt;}
.y12d{bottom:555.372000pt;}
.yc5{bottom:556.134667pt;}
.y64{bottom:564.325333pt;}
.y176{bottom:568.150667pt;}
.y30{bottom:568.253333pt;}
.y1ae{bottom:568.509333pt;}
.y108{bottom:575.309333pt;}
.y95{bottom:575.482667pt;}
.yc4{bottom:575.541333pt;}
.y63{bottom:581.062667pt;}
.y175{bottom:583.493333pt;}
.y1ad{bottom:583.852000pt;}
.y2f{bottom:585.548000pt;}
.yc3{bottom:590.153333pt;}
.yef{bottom:590.792000pt;}
.y94{bottom:592.220000pt;}
.y62{bottom:597.800000pt;}
.y174{bottom:598.836000pt;}
.y1ac{bottom:599.194667pt;}
.y2e{bottom:602.844000pt;}
.yc2{bottom:604.765333pt;}
.yee{bottom:607.888000pt;}
.y93{bottom:608.957333pt;}
.y173{bottom:614.178667pt;}
.y61{bottom:614.537333pt;}
.y2d{bottom:620.138667pt;}
.yed{bottom:624.984000pt;}
.y92{bottom:625.694667pt;}
.yc1{bottom:625.778667pt;}
.y172{bottom:629.521333pt;}
.y1ab{bottom:629.878667pt;}
.y60{bottom:631.274667pt;}
.y2c{bottom:637.433333pt;}
.yec{bottom:642.080000pt;}
.y91{bottom:642.432000pt;}
.y171{bottom:644.864000pt;}
.y1aa{bottom:645.221333pt;}
.y5f{bottom:648.012000pt;}
.y2b{bottom:654.729333pt;}
.yc0{bottom:656.541333pt;}
.y90{bottom:659.169333pt;}
.y170{bottom:660.206667pt;}
.y1a9{bottom:660.564000pt;}
.ydc{bottom:662.017333pt;}
.y5e{bottom:664.749333pt;}
.y2a{bottom:672.024000pt;}
.ybf{bottom:673.637333pt;}
.y16f{bottom:675.548000pt;}
.y8f{bottom:675.906667pt;}
.y5d{bottom:681.485333pt;}
.y16e{bottom:690.890667pt;}
.y1a8{bottom:691.249333pt;}
.y8e{bottom:692.644000pt;}
.y5c{bottom:698.222667pt;}
.y29{bottom:705.621333pt;}
.ybe{bottom:705.656000pt;}
.y16d{bottom:706.233333pt;}
.y1a7{bottom:706.592000pt;}
.y8d{bottom:709.381333pt;}
.y5b{bottom:714.960000pt;}
.y28{bottom:719.968000pt;}
.y1a6{bottom:721.934667pt;}
.ybd{bottom:722.393333pt;}
.y16c{bottom:725.561333pt;}
.y8c{bottom:726.118667pt;}
.y5a{bottom:731.697333pt;}
.y1a5{bottom:737.277333pt;}
.y27{bottom:738.172000pt;}
.ybc{bottom:739.130667pt;}
.y8b{bottom:742.856000pt;}
.y59{bottom:748.434667pt;}
.y26{bottom:748.660000pt;}
.y1a4{bottom:752.620000pt;}
.y16b{bottom:755.449333pt;}
.ybb{bottom:755.868000pt;}
.y8a{bottom:759.593333pt;}
.y58{bottom:765.172000pt;}
.y25{bottom:766.864000pt;}
.y1a3{bottom:767.961333pt;}
.yba{bottom:772.605333pt;}
.y89{bottom:776.330667pt;}
.y24{bottom:777.353333pt;}
.y16a{bottom:779.040000pt;}
.y57{bottom:781.909333pt;}
.y1a2{bottom:783.304000pt;}
.yb9{bottom:789.342667pt;}
.y88{bottom:793.068000pt;}
.y23{bottom:795.557333pt;}
.y56{bottom:798.646667pt;}
.y169{bottom:802.632000pt;}
.yb8{bottom:806.080000pt;}
.y87{bottom:809.805333pt;}
.y22{bottom:809.902667pt;}
.y1a1{bottom:813.989333pt;}
.y55{bottom:815.384000pt;}
.y168{bottom:818.253333pt;}
.yb7{bottom:822.817333pt;}
.y21{bottom:824.249333pt;}
.y86{bottom:826.542667pt;}
.y1a0{bottom:829.332000pt;}
.y54{bottom:832.121333pt;}
.y20{bottom:838.596000pt;}
.y167{bottom:841.845333pt;}
.yb6{bottom:843.540000pt;}
.y19f{bottom:844.674667pt;}
.y85{bottom:847.265333pt;}
.y53{bottom:848.858667pt;}
.y166{bottom:857.466667pt;}
.y19e{bottom:860.017333pt;}
.y52{bottom:865.596000pt;}
.y165{bottom:873.088000pt;}
.y19d{bottom:875.360000pt;}
.yb5{bottom:876.360000pt;}
.y84{bottom:877.153333pt;}
.y1f{bottom:877.606667pt;}
.y51{bottom:882.333333pt;}
.yb4{bottom:888.980000pt;}
.y19b{bottom:890.701333pt;}
.y19c{bottom:890.702667pt;}
.y83{bottom:893.890667pt;}
.y1e{bottom:894.344000pt;}
.y164{bottom:896.680000pt;}
.y50{bottom:899.070667pt;}
.y1ce{bottom:901.993333pt;}
.yb3{bottom:905.729333pt;}
.y19a{bottom:906.044000pt;}
.y82{bottom:910.628000pt;}
.y1d{bottom:911.081333pt;}
.y163{bottom:912.301333pt;}
.y4f{bottom:915.808000pt;}
.y1cd{bottom:917.336000pt;}
.yb2{bottom:920.341333pt;}
.y199{bottom:921.386667pt;}
.y81{bottom:927.364000pt;}
.y162{bottom:927.922667pt;}
.y4e{bottom:932.545333pt;}
.y1cc{bottom:932.678667pt;}
.yb1{bottom:934.953333pt;}
.y198{bottom:936.729333pt;}
.y161{bottom:943.544000pt;}
.y80{bottom:944.101333pt;}
.y1c{bottom:946.565333pt;}
.y4d{bottom:949.282667pt;}
.y197{bottom:952.072000pt;}
.yb0{bottom:955.966667pt;}
.y7f{bottom:964.824000pt;}
.y4c{bottom:966.020000pt;}
.y160{bottom:967.136000pt;}
.y196{bottom:967.414667pt;}
.y1b{bottom:971.672000pt;}
.y4b{bottom:982.757333pt;}
.yaf{bottom:984.073333pt;}
.y19{bottom:1010.326667pt;}
.y4a{bottom:1038.548000pt;}
.ha{height:23.209028pt;}
.hb{height:23.379740pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h15{height:29.499005pt;}
.hd{height:30.945242pt;}
.h12{height:31.157778pt;}
.h1e{height:31.333375pt;}
.h19{height:31.487750pt;}
.h17{height:33.186336pt;}
.h4{height:33.957757pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h1c{height:35.052646pt;}
.h1b{height:35.512500pt;}
.h16{height:36.873667pt;}
.h13{height:37.087439pt;}
.h10{height:38.415786pt;}
.h11{height:38.681455pt;}
.hc{height:38.809074pt;}
.h7{height:38.947124pt;}
.h23{height:39.010156pt;}
.h20{height:39.359687pt;}
.h1a{height:39.537250pt;}
.h24{height:43.660390pt;}
.h22{height:44.390625pt;}
.h5{height:45.271688pt;}
.h9{height:48.486756pt;}
.h14{height:48.511220pt;}
.h21{height:49.421563pt;}
.h8{height:69.148877pt;}
.h6{height:82.003069pt;}
.h1f{height:304.893333pt;}
.h18{height:334.023467pt;}
.h1d{height:341.272533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.529007pt;}
.w3{width:370.791467pt;}
.w4{width:381.666133pt;}
.w5{width:519.160000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7e{left:-177.918667pt;}
.x66{left:-145.442133pt;}
.x68{left:-6.370133pt;}
.x80{left:-4.078667pt;}
.x0{left:0.000000pt;}
.x69{left:16.285867pt;}
.x81{left:24.241333pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x9f{left:76.309333pt;}
.x4c{left:78.274667pt;}
.x4d{left:84.252000pt;}
.x4b{left:85.621333pt;}
.x4a{left:87.205333pt;}
.xaa{left:147.489333pt;}
.xa6{left:150.346667pt;}
.xa5{left:182.146667pt;}
.xb1{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5b{left:233.202667pt;}
.x4{left:239.924000pt;}
.x3a{left:244.725333pt;}
.x63{left:248.562667pt;}
.x7{left:250.204000pt;}
.x39{left:252.072000pt;}
.x38{left:253.656000pt;}
.x9b{left:256.440000pt;}
.x5f{left:257.430667pt;}
.x64{left:262.818667pt;}
.x10{left:264.374667pt;}
.x62{left:267.085333pt;}
.x49{left:269.034667pt;}
.x11{left:271.016000pt;}
.x75{left:272.622667pt;}
.x6a{left:274.314667pt;}
.x6{left:276.116000pt;}
.x1e{left:277.173333pt;}
.x9c{left:279.553333pt;}
.x8{left:283.992000pt;}
.x1f{left:289.257333pt;}
.x9{left:290.633333pt;}
.x2b{left:297.541333pt;}
.x7a{left:299.733333pt;}
.x94{left:303.606667pt;}
.x14{left:306.125333pt;}
.x2c{left:310.825333pt;}
.x15{left:312.766667pt;}
.x95{left:316.890667pt;}
.x82{left:319.004000pt;}
.x90{left:320.200000pt;}
.x42{left:323.800000pt;}
.x37{left:324.741333pt;}
.x65{left:329.528000pt;}
.x56{left:333.416000pt;}
.x43{left:338.545333pt;}
.x51{left:344.656000pt;}
.x9d{left:347.326667pt;}
.x57{left:349.024000pt;}
.x96{left:352.241333pt;}
.x52{left:356.438667pt;}
.x76{left:368.525333pt;}
.x6b{left:369.925333pt;}
.x97{left:372.193333pt;}
.x77{left:374.324000pt;}
.x6c{left:375.604000pt;}
.x67{left:377.565760pt;}
.x6e{left:382.057333pt;}
.x7d{left:385.992000pt;}
.x74{left:386.967360pt;}
.x3b{left:388.417333pt;}
.x6f{left:394.497333pt;}
.x9e{left:397.913333pt;}
.x3c{left:399.810667pt;}
.x8d{left:414.730667pt;}
.x31{left:417.442667pt;}
.xc{left:426.013333pt;}
.x8e{left:428.014667pt;}
.x32{left:430.726667pt;}
.xd{left:432.656000pt;}
.x91{left:441.429333pt;}
.x8f{left:444.585333pt;}
.x7b{left:445.760000pt;}
.x70{left:448.802667pt;}
.x20{left:452.732000pt;}
.x46{left:453.809333pt;}
.x92{left:454.712000pt;}
.x21{left:459.374667pt;}
.x71{left:461.242667pt;}
.x22{left:462.761333pt;}
.x35{left:463.730667pt;}
.x50{left:466.234667pt;}
.x47{left:468.048000pt;}
.x53{left:470.582667pt;}
.x78{left:474.320000pt;}
.x23{left:476.045333pt;}
.x36{left:477.013333pt;}
.x98{left:480.310667pt;}
.x1c{left:481.225333pt;}
.x24{left:482.820000pt;}
.x5c{left:489.353333pt;}
.x8a{left:490.632000pt;}
.x1d{left:493.337333pt;}
.x48{left:494.944000pt;}
.x25{left:496.102667pt;}
.x5d{left:501.032000pt;}
.x8b{left:503.916000pt;}
.x2d{left:507.729333pt;}
.x88{left:509.670667pt;}
.x7c{left:513.956000pt;}
.x7f{left:519.921200pt;}
.x2e{left:521.013333pt;}
.x2f{left:524.400000pt;}
.xa7{left:532.620000pt;}
.x54{left:534.993333pt;}
.x3d{left:536.685333pt;}
.x30{left:537.684000pt;}
.x55{left:546.776000pt;}
.x3e{left:548.077333pt;}
.x58{left:553.830667pt;}
.xa8{left:556.530667pt;}
.x26{left:578.037333pt;}
.x60{left:581.152000pt;}
.x27{left:591.321333pt;}
.x28{left:594.576000pt;}
.x61{left:596.630667pt;}
.xad{left:601.324000pt;}
.x33{left:603.858667pt;}
.x29{left:607.858667pt;}
.x86{left:610.540000pt;}
.xa0{left:616.106667pt;}
.x12{left:618.142667pt;}
.x34{left:620.529333pt;}
.x87{left:623.822667pt;}
.x13{left:624.784000pt;}
.x6d{left:630.988000pt;}
.x8c{left:633.265333pt;}
.x4e{left:638.152000pt;}
.xe{left:645.764000pt;}
.xab{left:647.726667pt;}
.xaf{left:648.865333pt;}
.x4f{left:650.964000pt;}
.xf{left:652.405333pt;}
.x3f{left:655.240000pt;}
.x5e{left:657.700000pt;}
.xa3{left:660.488000pt;}
.x44{left:661.540000pt;}
.xa{left:662.684000pt;}
.x79{left:664.220000pt;}
.x40{left:666.633333pt;}
.xb{left:669.326667pt;}
.xa9{left:670.584000pt;}
.xac{left:671.637333pt;}
.xb0{left:672.774667pt;}
.x16{left:675.258667pt;}
.x45{left:676.286667pt;}
.xae{left:678.462667pt;}
.x17{left:681.901333pt;}
.x18{left:685.288000pt;}
.x93{left:689.748000pt;}
.x59{left:690.922667pt;}
.x19{left:691.930667pt;}
.x99{left:695.146667pt;}
.x83{left:696.756000pt;}
.xa1{left:702.496000pt;}
.x84{left:703.397333pt;}
.x5a{left:706.530667pt;}
.x9a{left:708.430667pt;}
.x89{left:710.706667pt;}
.x72{left:712.437333pt;}
.x41{left:715.822667pt;}
.x85{left:720.068000pt;}
.x73{left:724.877333pt;}
.xa2{left:725.888000pt;}
.x2a{left:726.881333pt;}
.x1a{left:733.770667pt;}
.x1b{left:740.412000pt;}
.xa4{left:744.221333pt;}
}

