
    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_e958069ca90affe3cef36d7d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_13856c3c9aa965109e0846a3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e73ec7298352425fdb11e1e8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.173000;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_2f00b3ead5f119b8ff166cf0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b8453ce02fa396dcb5029773.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50b84ca5bbb22a4cb4db2deb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.799000;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_833b8231251111edd677e871.woff')format("woff");}.ff7{font-family:ff7;line-height:0.988000;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_23cc438cfa8594d0ee32c5e5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8fc0853510777db0ea92cdd6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740000;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_12eaf145c3cf334178457c3d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.193359;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_f2944835c76c2c109133b5fa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_e223e451f44ff494862ada1b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_2516d45e9b1c2801bdab580d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.054688;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;}
.m8{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);}
.m1a{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);}
.m2{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);}
.m6{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);}
.mf{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);}
.m16{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);}
.m9{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);}
.m7{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);}
.m22{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);}
.m1d{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);}
.m19{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);}
.m15{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);}
.m20{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);}
.m1{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);}
.m25{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);}
.m13{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);}
.m4{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);}
.m26{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);}
.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);}
.m21{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);}
.m1c{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);}
.m27{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);}
.mc{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);}
.m11{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);}
.m1f{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);}
.m1e{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);}
.m18{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);}
.m14{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);}
.ma{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);}
.md{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);}
.m24{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);}
.m17{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);}
.m12{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);}
.m28{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);}
.m23{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);}
.mb{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);}
.m10{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);}
.m1b{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);}
.m5{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;}
.v14{vertical-align:-15.120000px;}
.v3{vertical-align:-11.952000px;}
.v12{vertical-align:-1.236000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.222000px;}
.v15{vertical-align:15.120000px;}
.v13{vertical-align:16.128000px;}
.vb{vertical-align:17.280000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v10{vertical-align:27.162000px;}
.vf{vertical-align:28.392000px;}
.v9{vertical-align:30.540000px;}
.v4{vertical-align:32.874000px;}
.vc{vertical-align:41.724000px;}
.v11{vertical-align:44.520000px;}
.ve{vertical-align:48.450000px;}
.v5{vertical-align:52.404000px;}
.v7{vertical-align:66.384000px;}
.va{vertical-align:81.720000px;}
.vd{vertical-align:89.358000px;}
.ls4c{letter-spacing:-0.707400px;}
.ls43{letter-spacing:-0.697392px;}
.ls3d{letter-spacing:-0.685800px;}
.ls48{letter-spacing:-0.685368px;}
.ls41{letter-spacing:-0.680400px;}
.ls47{letter-spacing:-0.679356px;}
.ls3e{letter-spacing:-0.675000px;}
.ls49{letter-spacing:-0.673344px;}
.ls40{letter-spacing:-0.669600px;}
.ls4b{letter-spacing:-0.667332px;}
.ls42{letter-spacing:-0.664200px;}
.ls46{letter-spacing:-0.661320px;}
.ls44{letter-spacing:-0.643284px;}
.ls45{letter-spacing:-0.625248px;}
.ls4a{letter-spacing:-0.619236px;}
.ls4d{letter-spacing:-0.610200px;}
.ls3f{letter-spacing:-0.361008px;}
.ls3c{letter-spacing:-0.014364px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001379px;}
.ls51{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.052668px;}
.ls3b{letter-spacing:0.167580px;}
.ls3a{letter-spacing:0.181944px;}
.lsb{letter-spacing:0.642088px;}
.ls26{letter-spacing:0.720783px;}
.ls28{letter-spacing:0.726843px;}
.ls23{letter-spacing:0.734012px;}
.ls17{letter-spacing:0.740012px;}
.ls1a{letter-spacing:0.745625px;}
.lsf{letter-spacing:0.747292px;}
.lse{letter-spacing:0.748200px;}
.ls18{letter-spacing:0.748483px;}
.ls27{letter-spacing:1.470783px;}
.ls1e{letter-spacing:1.478012px;}
.ls11{letter-spacing:1.484012px;}
.ls21{letter-spacing:2.445634px;}
.ls15{letter-spacing:2.451634px;}
.lsa{letter-spacing:3.513900px;}
.ls10{letter-spacing:3.733200px;}
.ls1d{letter-spacing:3.739200px;}
.ls16{letter-spacing:4.303157px;}
.ls22{letter-spacing:4.309157px;}
.ls12{letter-spacing:8.367634px;}
.ls1f{letter-spacing:8.373634px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls14{letter-spacing:13.083483px;}
.ls20{letter-spacing:13.089483px;}
.ls4f{letter-spacing:13.448400px;}
.ls31{letter-spacing:13.450090px;}
.ls50{letter-spacing:13.454400px;}
.ls8{letter-spacing:14.094088px;}
.ls9{letter-spacing:14.100088px;}
.ls38{letter-spacing:14.704798px;}
.ls2d{letter-spacing:14.759084px;}
.ls33{letter-spacing:14.941200px;}
.ls19{letter-spacing:14.943767px;}
.ls2f{letter-spacing:14.944200px;}
.ls2b{letter-spacing:14.944665px;}
.ls37{letter-spacing:14.947200px;}
.ls5{letter-spacing:15.154796px;}
.ls2c{letter-spacing:15.663483px;}
.ls1c{letter-spacing:15.691625px;}
.ls2e{letter-spacing:15.900435px;}
.ls2a{letter-spacing:17.319483px;}
.ls1b{letter-spacing:17.901483px;}
.ls2{letter-spacing:17.929200px;}
.lsd{letter-spacing:18.094766px;}
.ls4e{letter-spacing:20.953376px;}
.ls13{letter-spacing:23.485200px;}
.ls25{letter-spacing:24.495483px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls35{letter-spacing:111.847200px;}
.ls36{letter-spacing:126.337200px;}
.ls34{letter-spacing:187.209746px;}
.ls24{letter-spacing:187.309200px;}
.ls29{letter-spacing:220.795200px;}
.ls32{letter-spacing:248.370600px;}
.ls30{letter-spacing:302.938790px;}
.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;}
}
.ws5e{word-spacing:-316.388390px;}
.ws15{word-spacing:-14.943900px;}
.ws81{word-spacing:-13.500000px;}
.wsc2{word-spacing:-13.449600px;}
.ws7e{word-spacing:-12.151944px;}
.ws7f{word-spacing:-11.970000px;}
.ws29{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws80{word-spacing:-8.280000px;}
.ws46{word-spacing:-3.347434px;}
.ws35{word-spacing:-3.048556px;}
.wsb7{word-spacing:-2.869229px;}
.ws55{word-spacing:-2.809453px;}
.ws56{word-spacing:-2.749678px;}
.ws54{word-spacing:-2.575200px;}
.ws44{word-spacing:-2.331248px;}
.ws93{word-spacing:-2.164320px;}
.ws94{word-spacing:-2.146284px;}
.ws92{word-spacing:-2.092176px;}
.ws63{word-spacing:-2.092146px;}
.wse3{word-spacing:-2.044339px;}
.wsa9{word-spacing:-2.032370px;}
.wsac{word-spacing:-1.972595px;}
.wsb2{word-spacing:-1.793268px;}
.ws9b{word-spacing:-1.767528px;}
.ws9d{word-spacing:-1.761516px;}
.ws9a{word-spacing:-1.755504px;}
.ws9e{word-spacing:-1.743480px;}
.wsb6{word-spacing:-1.733492px;}
.ws30{word-spacing:-1.613941px;}
.ws20{word-spacing:-1.554166px;}
.ws32{word-spacing:-1.494390px;}
.wsb5{word-spacing:-1.434614px;}
.ws1f{word-spacing:-1.315063px;}
.ws38{word-spacing:-1.255288px;}
.wsb8{word-spacing:-1.195512px;}
.wsca{word-spacing:-1.075968px;}
.ws91{word-spacing:-1.064124px;}
.wsad{word-spacing:-1.016185px;}
.ws64{word-spacing:-0.896634px;}
.ws83{word-spacing:-0.836858px;}
.wsd1{word-spacing:-0.806976px;}
.ws7a{word-spacing:-0.777083px;}
.wsde{word-spacing:-0.753178px;}
.wsb1{word-spacing:-0.657532px;}
.ws65{word-spacing:-0.645581px;}
.ws47{word-spacing:-0.591782px;}
.ws2f{word-spacing:-0.358654px;}
.ws37{word-spacing:-0.298878px;}
.ws87{word-spacing:-0.272916px;}
.ws1a{word-spacing:-0.239102px;}
.ws7b{word-spacing:-0.215194px;}
.ws19{word-spacing:-0.179327px;}
.ws5b{word-spacing:-0.174066px;}
.wse6{word-spacing:-0.161395px;}
.ws86{word-spacing:-0.143640px;}
.ws22{word-spacing:-0.119551px;}
.ws6d{word-spacing:-0.107597px;}
.ws88{word-spacing:-0.076608px;}
.ws21{word-spacing:-0.059776px;}
.wsbd{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.wsdf{word-spacing:-0.028330px;}
.ws72{word-spacing:-0.001500px;}
.ws0{word-spacing:0.000000px;}
.ws75{word-spacing:0.004500px;}
.ws71{word-spacing:0.005216px;}
.ws95{word-spacing:0.030060px;}
.wsa{word-spacing:0.047821px;}
.ws96{word-spacing:0.048096px;}
.ws4d{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.wsa0{word-spacing:0.070200px;}
.ws2{word-spacing:0.083686px;}
.ws6f{word-spacing:0.095641px;}
.ws8{word-spacing:0.107597px;}
.ws31{word-spacing:0.119551px;}
.ws8f{word-spacing:0.124200px;}
.ws8d{word-spacing:0.129600px;}
.ws8e{word-spacing:0.140400px;}
.ws8a{word-spacing:0.145800px;}
.wsbc{word-spacing:0.161395px;}
.ws3{word-spacing:0.167371px;}
.ws9f{word-spacing:0.167400px;}
.ws16{word-spacing:0.179327px;}
.wscd{word-spacing:0.215194px;}
.ws12{word-spacing:0.239102px;}
.ws7c{word-spacing:0.268992px;}
.ws2e{word-spacing:0.298878px;}
.wsc8{word-spacing:0.322790px;}
.ws14{word-spacing:0.358654px;}
.ws40{word-spacing:0.478205px;}
.ws8c{word-spacing:0.507600px;}
.ws41{word-spacing:0.537980px;}
.ws3a{word-spacing:0.597756px;}
.ws4b{word-spacing:0.652934px;}
.wsf{word-spacing:0.657532px;}
.ws48{word-spacing:0.657888px;}
.ws4a{word-spacing:0.662688px;}
.ws49{word-spacing:0.664608px;}
.ws4c{word-spacing:0.665808px;}
.ws9c{word-spacing:0.709416px;}
.ws36{word-spacing:0.717307px;}
.ws58{word-spacing:0.742800px;}
.ws57{word-spacing:0.748800px;}
.ws52{word-spacing:0.777083px;}
.wsd4{word-spacing:0.806976px;}
.ws17{word-spacing:0.836858px;}
.ws5c{word-spacing:0.956410px;}
.wsb9{word-spacing:1.022170px;}
.wsd0{word-spacing:1.129766px;}
.ws18{word-spacing:1.135736px;}
.ws3d{word-spacing:1.195512px;}
.wse{word-spacing:1.255288px;}
.wsab{word-spacing:1.315063px;}
.ws51{word-spacing:1.374839px;}
.ws6c{word-spacing:1.452557px;}
.wsae{word-spacing:1.494390px;}
.ws6b{word-spacing:1.506355px;}
.ws4f{word-spacing:1.554166px;}
.wsd6{word-spacing:1.990541px;}
.wsa8{word-spacing:2.151922px;}
.ws3e{word-spacing:2.331248px;}
.ws7{word-spacing:2.510252px;}
.ws5a{word-spacing:2.510575px;}
.ws82{word-spacing:2.630126px;}
.wsa4{word-spacing:2.689902px;}
.ws45{word-spacing:2.809453px;}
.ws77{word-spacing:2.865899px;}
.ws50{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.wscb{word-spacing:2.905114px;}
.wsaa{word-spacing:2.988780px;}
.ws84{word-spacing:3.048556px;}
.ws2c{word-spacing:3.108331px;}
.wsaf{word-spacing:3.168107px;}
.wsdb{word-spacing:3.223142px;}
.wsbb{word-spacing:3.224822px;}
.ws2b{word-spacing:3.227882px;}
.wse2{word-spacing:3.227904px;}
.ws62{word-spacing:3.287658px;}
.ws5d{word-spacing:3.443098px;}
.ws27{word-spacing:3.466985px;}
.wsea{word-spacing:3.496896px;}
.ws1d{word-spacing:3.526760px;}
.ws76{word-spacing:3.538724px;}
.ws1b{word-spacing:3.583475px;}
.ws26{word-spacing:3.586536px;}
.ws39{word-spacing:3.646312px;}
.ws3f{word-spacing:3.706087px;}
.ws3b{word-spacing:3.765863px;}
.ws10{word-spacing:3.825638px;}
.wsb0{word-spacing:3.885414px;}
.wsda{word-spacing:3.927283px;}
.wsd{word-spacing:3.945190px;}
.wsba{word-spacing:4.034880px;}
.ws43{word-spacing:4.124516px;}
.ws1c{word-spacing:4.303872px;}
.ws97{word-spacing:4.352688px;}
.ws98{word-spacing:4.376736px;}
.ws99{word-spacing:4.388760px;}
.wsa5{word-spacing:4.423394px;}
.ws1e{word-spacing:4.542946px;}
.wsa1{word-spacing:4.602721px;}
.wsb4{word-spacing:4.722272px;}
.ws85{word-spacing:4.782048px;}
.wsc5{word-spacing:4.895654px;}
.ws13{word-spacing:4.901599px;}
.ws34{word-spacing:5.021150px;}
.ws33{word-spacing:5.379804px;}
.ws42{word-spacing:5.439580px;}
.ws90{word-spacing:5.464908px;}
.wsd3{word-spacing:5.541235px;}
.wsbe{word-spacing:5.648832px;}
.wsbf{word-spacing:5.702630px;}
.wsb3{word-spacing:5.738458px;}
.ws2d{word-spacing:5.917784px;}
.wsa3{word-spacing:6.037336px;}
.ws24{word-spacing:6.097111px;}
.wsdd{word-spacing:6.294413px;}
.ws11{word-spacing:6.455765px;}
.ws25{word-spacing:6.515540px;}
.ws53{word-spacing:7.232848px;}
.wsc0{word-spacing:7.370381px;}
.wsa2{word-spacing:7.711052px;}
.ws59{word-spacing:8.308808px;}
.wsa6{word-spacing:8.787013px;}
.wse0{word-spacing:10.383091px;}
.ws89{word-spacing:11.620476px;}
.wsc{word-spacing:11.699160px;}
.ws28{word-spacing:11.910929px;}
.ws4{word-spacing:12.924974px;}
.wsce{word-spacing:13.386134px;}
.wsd2{word-spacing:13.387075px;}
.wse5{word-spacing:13.387171px;}
.wse7{word-spacing:13.388957px;}
.wsc9{word-spacing:13.389581px;}
.wsdc{word-spacing:13.389734px;}
.wsd5{word-spacing:13.390157px;}
.wsc3{word-spacing:13.392202px;}
.wse9{word-spacing:13.392586px;}
.wse4{word-spacing:13.393200px;}
.wsd9{word-spacing:13.393757px;}
.wsc4{word-spacing:13.395802px;}
.wse8{word-spacing:13.557197px;}
.wsd8{word-spacing:13.610995px;}
.wsa7{word-spacing:13.808164px;}
.ws4e{word-spacing:14.884124px;}
.ws3c{word-spacing:15.362329px;}
.wsc6{word-spacing:16.613136px;}
.wsd7{word-spacing:16.615190px;}
.wscf{word-spacing:16.616995px;}
.wsc1{word-spacing:16.623706px;}
.wscc{word-spacing:16.677504px;}
.wse1{word-spacing:21.626957px;}
.wsc7{word-spacing:21.680755px;}
.ws1{word-spacing:28.455541px;}
.ws6e{word-spacing:89.137598px;}
.ws74{word-spacing:93.728376px;}
.ws73{word-spacing:105.072583px;}
.ws70{word-spacing:105.683526px;}
.ws8b{word-spacing:114.615000px;}
.ws78{word-spacing:122.821747px;}
.ws79{word-spacing:145.847462px;}
.ws60{word-spacing:173.715034px;}
.ws5f{word-spacing:238.649702px;}
.ws61{word-spacing:241.662413px;}
.ws67{word-spacing:415.646438px;}
.ws68{word-spacing:415.700237px;}
.ws7d{word-spacing:421.725658px;}
.ws6a{word-spacing:442.545638px;}
.ws69{word-spacing:442.599437px;}
.ws66{word-spacing:463.527014px;}
._86{margin-left:-34.651800px;}
._35{margin-left:-11.252851px;}
._a{margin-left:-7.220897px;}
._1{margin-left:-5.481407px;}
._13{margin-left:-4.423394px;}
._3{margin-left:-3.285348px;}
._2{margin-left:-1.506341px;}
._80{width:1.173060px;}
._4{width:2.995471px;}
._7{width:4.303843px;}
._8f{width:11.512843px;}
._0{width:12.971268px;}
._5{width:14.949886px;}
._31{width:16.096998px;}
._11{width:17.107772px;}
._b{width:19.123301px;}
._e{width:20.204153px;}
._6{width:21.770269px;}
._9{width:23.802640px;}
._91{width:25.378085px;}
._33{width:26.688710px;}
._8d{width:29.013335px;}
._8{width:30.306229px;}
._85{width:31.995000px;}
._c{width:33.055907px;}
._12{width:34.897000px;}
._d{width:38.674813px;}
._30{width:40.821085px;}
._8b{width:42.261349px;}
._32{width:43.994842px;}
._89{width:53.698160px;}
._84{width:54.768071px;}
._90{width:61.868160px;}
._2f{width:72.944600px;}
._22{width:79.083648px;}
._50{width:80.434249px;}
._8e{width:88.767360px;}
._6b{width:94.164145px;}
._61{width:105.683526px;}
._65{width:117.638676px;}
._6a{width:124.955228px;}
._60{width:126.342025px;}
._53{width:127.782027px;}
._59{width:128.982883px;}
._69{width:131.481165px;}
._8a{width:137.304814px;}
._64{width:139.253587px;}
._62{width:140.999019px;}
._83{width:146.386557px;}
._72{width:149.056810px;}
._3b{width:150.695348px;}
._51{width:153.934511px;}
._4f{width:154.938744px;}
._6d{width:157.186312px;}
._5d{width:161.771706px;}
._5f{width:165.406072px;}
._54{width:166.798253px;}
._67{width:167.802485px;}
._5a{width:174.210446px;}
._79{width:175.933730px;}
._68{width:177.796991px;}
._57{width:178.801223px;}
._74{width:180.260090px;}
._73{width:181.287895px;}
._56{width:186.117775px;}
._5b{width:190.363084px;}
._75{width:191.529562px;}
._6e{width:193.434327px;}
._70{width:198.072925px;}
._58{width:201.707291px;}
._6c{width:202.711523px;}
._29{width:204.326323px;}
._34{width:210.433190px;}
._55{width:213.710261px;}
._6f{width:218.736808px;}
._52{width:225.643481px;}
._3c{width:228.212813px;}
._7a{width:229.492267px;}
._5e{width:232.408116px;}
._36{width:234.950966px;}
._71{width:237.620561px;}
._76{width:247.316299px;}
._77{width:250.587094px;}
._3a{width:254.406604px;}
._3f{width:255.763624px;}
._63{width:263.204582px;}
._2c{width:265.387507px;}
._3d{width:275.286413px;}
._7b{width:277.055906px;}
._66{width:283.480517px;}
._78{width:286.847215px;}
._38{width:295.460813px;}
._15{width:323.220787px;}
._7d{width:347.806656px;}
._26{width:353.778278px;}
._27{width:356.919264px;}
._21{width:362.977805px;}
._87{width:367.907400px;}
._23{width:371.208960px;}
._1e{width:395.844624px;}
._88{width:405.954540px;}
._40{width:431.301773px;}
._7e{width:439.748122px;}
._7f{width:445.343155px;}
._20{width:452.924726px;}
._4a{width:455.995238px;}
._2e{width:458.200973px;}
._82{width:462.141540px;}
._43{width:469.498637px;}
._5c{width:482.523019px;}
._3e{width:493.809484px;}
._45{width:496.397837px;}
._2b{width:498.566880px;}
._2d{width:507.587904px;}
._1f{width:517.413869px;}
._1d{width:524.803392px;}
._28{width:525.879360px;}
._18{width:551.702592px;}
._7c{width:574.835904px;}
._14{width:578.219173px;}
._25{width:579.260880px;}
._41{width:595.273190px;}
._19{width:616.416037px;}
._1b{width:619.972762px;}
._17{width:657.787007px;}
._46{width:677.967437px;}
._16{width:687.382157px;}
._24{width:689.910682px;}
._2a{width:696.101486px;}
._44{width:703.521677px;}
._47{width:704.866637px;}
._1c{width:713.528179px;}
._1a{width:725.094835px;}
._39{width:735.149106px;}
._42{width:736.769088px;}
._4c{width:762.538522px;}
._4e{width:799.390426px;}
._37{width:809.450726px;}
._4d{width:840.815194px;}
._48{width:879.173453px;}
._4b{width:909.784742px;}
._49{width:915.056986px;}
._f{width:1834.437200px;}
._81{width:2103.866352px;}
._8c{width:2488.767200px;}
._10{width:2512.677200px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:33.120000px;}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs8{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y14b{bottom:-23.886450px;}
.y0{bottom:0.000000px;}
.y14a{bottom:1.944954px;}
.y42{bottom:45.921000px;}
.y41{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y10f{bottom:106.051500px;}
.y17d{bottom:110.482500px;}
.y74{bottom:114.882000px;}
.y166{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.yaf{bottom:119.998500px;}
.y10d{bottom:120.249000px;}
.y40{bottom:120.610500px;}
.y1b2{bottom:120.628500px;}
.y10e{bottom:124.588500px;}
.y95{bottom:133.479000px;}
.y73{bottom:135.774000px;}
.y14{bottom:136.035000px;}
.y165{bottom:137.298000px;}
.y17c{bottom:138.948000px;}
.y1b1{bottom:139.779000px;}
.yae{bottom:140.890500px;}
.y3f{bottom:141.502500px;}
.y10c{bottom:143.620500px;}
.yd8{bottom:153.550500px;}
.y13{bottom:153.924000px;}
.y94{bottom:154.371000px;}
.y72{bottom:156.666000px;}
.y164{bottom:158.190000px;}
.y17b{bottom:158.446500px;}
.y1b0{bottom:158.929500px;}
.yad{bottom:161.781000px;}
.y3e{bottom:162.394500px;}
.y10b{bottom:165.636000px;}
.yd7{bottom:169.989000px;}
.y12{bottom:171.811500px;}
.yd5{bottom:177.055500px;}
.y71{bottom:177.556500px;}
.y17a{bottom:177.945000px;}
.y1af{bottom:178.080000px;}
.y163{bottom:179.082000px;}
.y93{bottom:179.746500px;}
.yac{bottom:182.673000px;}
.y3d{bottom:183.285000px;}
.yd6{bottom:186.427500px;}
.y10a{bottom:187.650000px;}
.y11{bottom:189.699000px;}
.y1ae{bottom:197.230500px;}
.y70{bottom:198.448500px;}
.y162{bottom:199.972500px;}
.yd4{bottom:202.866000px;}
.yab{bottom:203.565000px;}
.y3c{bottom:204.177000px;}
.y179{bottom:206.410500px;}
.y10{bottom:207.586500px;}
.y109{bottom:209.665500px;}
.y1ad{bottom:216.381000px;}
.y6f{bottom:219.340500px;}
.y161{bottom:220.864500px;}
.yaa{bottom:224.455500px;}
.y3b{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.yd3{bottom:226.507500px;}
.y92{bottom:226.777500px;}
.y108{bottom:231.679500px;}
.y178{bottom:234.876000px;}
.y1ac{bottom:235.531500px;}
.y6e{bottom:240.232500px;}
.y160{bottom:241.756500px;}
.yd2{bottom:242.944500px;}
.ya9{bottom:245.347500px;}
.y3a{bottom:245.961000px;}
.yd0{bottom:250.011000px;}
.y91{bottom:250.417500px;}
.ye{bottom:252.330000px;}
.y107{bottom:253.695000px;}
.y177{bottom:254.374500px;}
.y1ab{bottom:254.682000px;}
.yd1{bottom:259.383000px;}
.y6d{bottom:261.123000px;}
.y15f{bottom:262.647000px;}
.ya8{bottom:266.239500px;}
.y39{bottom:266.851500px;}
.yd{bottom:270.217500px;}
.y1aa{bottom:273.832500px;}
.y90{bottom:274.059000px;}
.y106{bottom:275.709000px;}
.ycf{bottom:275.821500px;}
.y6c{bottom:282.015000px;}
.y176{bottom:282.840000px;}
.y15e{bottom:283.539000px;}
.y38{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.ya7{bottom:291.613500px;}
.y1a9{bottom:292.984500px;}
.y8f{bottom:297.699000px;}
.y105{bottom:297.724500px;}
.yce{bottom:299.463000px;}
.y6b{bottom:302.907000px;}
.y15d{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y37{bottom:308.635500px;}
.y175{bottom:311.304000px;}
.y1a8{bottom:312.135000px;}
.ycd{bottom:315.901500px;}
.y104{bottom:319.738500px;}
.y8e{bottom:321.339000px;}
.ycb{bottom:322.966500px;}
.y6a{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y15c{bottom:325.323000px;}
.y36{bottom:329.526000px;}
.ya6{bottom:330.438000px;}
.y174{bottom:330.804000px;}
.y1a7{bottom:331.285500px;}
.ycc{bottom:332.340000px;}
.y103{bottom:341.754000px;}
.y9{bottom:341.769000px;}
.y130{bottom:343.695000px;}
.y69{bottom:344.689500px;}
.y8d{bottom:344.980500px;}
.y15b{bottom:346.213500px;}
.yca{bottom:348.777000px;}
.y173{bottom:350.302500px;}
.y35{bottom:350.418000px;}
.y1a6{bottom:350.436000px;}
.ya5{bottom:351.330000px;}
.y8{bottom:359.658000px;}
.y102{bottom:363.460500px;}
.y68{bottom:365.581500px;}
.y15a{bottom:367.105500px;}
.y12f{bottom:367.335000px;}
.y8c{bottom:368.620500px;}
.y1a5{bottom:369.586500px;}
.y172{bottom:369.801000px;}
.y34{bottom:371.310000px;}
.ya4{bottom:372.220500px;}
.yc9{bottom:372.418500px;}
.y7{bottom:377.545500px;}
.y101{bottom:377.658000px;}
.y67{bottom:386.472000px;}
.y159{bottom:387.997500px;}
.y1a4{bottom:388.737000px;}
.y171{bottom:389.299500px;}
.y12e{bottom:390.976500px;}
.y33{bottom:392.200500px;}
.y8b{bottom:392.262000px;}
.yc8{bottom:396.058500px;}
.y100{bottom:399.057000px;}
.y12c{bottom:399.195000px;}
.y6{bottom:401.410500px;}
.ya3{bottom:402.079500px;}
.y66{bottom:407.364000px;}
.y12b{bottom:407.415000px;}
.y1a3{bottom:407.887500px;}
.y158{bottom:408.888000px;}
.yc7{bottom:412.497000px;}
.ya0{bottom:412.510500px;}
.y32{bottom:413.092500px;}
.yff{bottom:413.253000px;}
.y8a{bottom:415.902000px;}
.y5{bottom:419.299500px;}
.ya2{bottom:420.409500px;}
.y12d{bottom:423.853500px;}
.y170{bottom:426.730500px;}
.y1a2{bottom:427.038000px;}
.ya1{bottom:428.044500px;}
.y65{bottom:428.256000px;}
.y157{bottom:429.780000px;}
.y89{bottom:432.340500px;}
.y167{bottom:432.739500px;}
.y31{bottom:433.984500px;}
.yfe{bottom:434.652000px;}
.y4{bottom:437.187000px;}
.y14d{bottom:438.468000px;}
.y1a1{bottom:446.188500px;}
.yc6{bottom:447.106500px;}
.y16f{bottom:447.622500px;}
.yfd{bottom:448.849500px;}
.y64{bottom:449.146500px;}
.y156{bottom:450.672000px;}
.y3{bottom:455.074500px;}
.y88{bottom:455.982000px;}
.y12a{bottom:458.461500px;}
.y30{bottom:459.358500px;}
.y1a0{bottom:465.339000px;}
.yc5{bottom:466.338000px;}
.y16e{bottom:468.514500px;}
.y63{bottom:470.038500px;}
.yfc{bottom:470.248500px;}
.y155{bottom:471.562500px;}
.y9f{bottom:471.714000px;}
.y87{bottom:472.420500px;}
.y129{bottom:477.694500px;}
.y2{bottom:478.941000px;}
.y14c{bottom:481.735500px;}
.y1d1{bottom:484.243500px;}
.yfb{bottom:484.444500px;}
.y19f{bottom:484.489500px;}
.y16d{bottom:489.406500px;}
.y62{bottom:490.930500px;}
.y154{bottom:492.454500px;}
.y86{bottom:496.060500px;}
.y1{bottom:496.828500px;}
.y9e{bottom:497.089500px;}
.yc4{bottom:499.549500px;}
.y1d0{bottom:503.394000px;}
.y19e{bottom:503.640000px;}
.y131{bottom:504.164400px;}
.yfa{bottom:505.843500px;}
.y16c{bottom:510.297000px;}
.y61{bottom:511.822500px;}
.yf9{bottom:512.943000px;}
.y153{bottom:513.346500px;}
.y128{bottom:514.798500px;}
.y9d{bottom:517.980000px;}
.y85{bottom:519.702000px;}
.yc3{bottom:520.441500px;}
.y1cf{bottom:522.544500px;}
.y19d{bottom:522.790500px;}
.y16b{bottom:531.189000px;}
.y60{bottom:532.713000px;}
.y152{bottom:534.237000px;}
.y127{bottom:535.690500px;}
.y2f{bottom:538.570500px;}
.y9c{bottom:538.872000px;}
.yc2{bottom:541.333500px;}
.yf8{bottom:541.440000px;}
.y19c{bottom:541.941000px;}
.y84{bottom:543.342000px;}
.y16a{bottom:552.081000px;}
.y5f{bottom:553.605000px;}
.y151{bottom:555.129000px;}
.yf7{bottom:555.636000px;}
.y126{bottom:556.581000px;}
.y9b{bottom:559.764000px;}
.y19b{bottom:561.091500px;}
.yc1{bottom:562.224000px;}
.y1ce{bottom:565.575000px;}
.y83{bottom:566.983500px;}
.y5e{bottom:574.497000px;}
.y150{bottom:576.021000px;}
.yf6{bottom:577.035000px;}
.y2e{bottom:577.395000px;}
.y169{bottom:577.455000px;}
.y125{bottom:577.473000px;}
.y19a{bottom:580.242000px;}
.y9a{bottom:580.654500px;}
.yc0{bottom:583.116000px;}
.y1cd{bottom:584.725500px;}
.y5d{bottom:595.387500px;}
.y14f{bottom:596.913000px;}
.y2d{bottom:598.287000px;}
.y124{bottom:598.365000px;}
.y199{bottom:599.392500px;}
.y82{bottom:601.591500px;}
.y1cc{bottom:603.876000px;}
.ybf{bottom:604.008000px;}
.y99{bottom:607.360500px;}
.yf5{bottom:610.075500px;}
.y5c{bottom:616.279500px;}
.y96{bottom:617.793000px;}
.y14e{bottom:617.803500px;}
.y198{bottom:618.543000px;}
.y2c{bottom:619.177500px;}
.y123{bottom:619.255500px;}
.y1cb{bottom:623.026500px;}
.y98{bottom:625.692000px;}
.yf4{bottom:629.307000px;}
.y97{bottom:633.327000px;}
.y5b{bottom:637.171500px;}
.y197{bottom:637.693500px;}
.y81{bottom:638.695500px;}
.y2b{bottom:640.069500px;}
.y122{bottom:640.147500px;}
.y1ca{bottom:642.177000px;}
.ybe{bottom:647.428500px;}
.yf3{bottom:648.540000px;}
.y196{bottom:656.844000px;}
.y5a{bottom:658.062000px;}
.y80{bottom:659.587500px;}
.y2a{bottom:660.961500px;}
.y121{bottom:661.039500px;}
.y1c9{bottom:661.327500px;}
.ybd{bottom:666.825000px;}
.yf2{bottom:667.773000px;}
.y149{bottom:669.024450px;}
.y195{bottom:675.996000px;}
.y59{bottom:678.954000px;}
.y7f{bottom:680.478000px;}
.y29{bottom:681.852000px;}
.y120{bottom:681.930000px;}
.y148{bottom:689.994306px;}
.ybc{bottom:690.466500px;}
.y194{bottom:695.146500px;}
.y1c8{bottom:699.628500px;}
.y58{bottom:699.846000px;}
.y7e{bottom:701.370000px;}
.y28{bottom:702.744000px;}
.y11f{bottom:702.822000px;}
.yf1{bottom:704.877000px;}
.y147{bottom:710.964162px;}
.ybb{bottom:714.106500px;}
.y193{bottom:714.297000px;}
.y1c7{bottom:718.779000px;}
.y57{bottom:720.736500px;}
.y7d{bottom:722.262000px;}
.y27{bottom:723.636000px;}
.y11e{bottom:723.714000px;}
.yf0{bottom:725.769000px;}
.y146{bottom:732.024198px;}
.y192{bottom:733.447500px;}
.yba{bottom:737.748000px;}
.y1c6{bottom:737.929500px;}
.y56{bottom:741.628500px;}
.y7c{bottom:743.152500px;}
.y26{bottom:744.526500px;}
.yef{bottom:746.661000px;}
.y191{bottom:752.598000px;}
.y145{bottom:752.994054px;}
.y1c5{bottom:757.081500px;}
.yb9{bottom:761.388000px;}
.y55{bottom:762.520500px;}
.y7b{bottom:764.044500px;}
.y25{bottom:765.418500px;}
.yee{bottom:767.551500px;}
.y11d{bottom:770.248500px;}
.y190{bottom:771.748500px;}
.y144{bottom:773.963910px;}
.y1c4{bottom:776.232000px;}
.yb7{bottom:776.673000px;}
.yb8{bottom:777.826500px;}
.y54{bottom:783.411000px;}
.y7a{bottom:784.936500px;}
.y24{bottom:786.310500px;}
.y168{bottom:787.894500px;}
.y11c{bottom:789.958500px;}
.y18f{bottom:790.899000px;}
.yb6{bottom:794.265000px;}
.y143{bottom:795.023946px;}
.y1c3{bottom:795.382500px;}
.y53{bottom:804.303000px;}
.y79{bottom:805.827000px;}
.y23{bottom:807.202500px;}
.yed{bottom:809.748000px;}
.y18e{bottom:810.049500px;}
.y11b{bottom:814.224000px;}
.y1c2{bottom:814.533000px;}
.y142{bottom:815.993802px;}
.yb5{bottom:818.100000px;}
.y52{bottom:825.195000px;}
.y78{bottom:826.719000px;}
.y22{bottom:828.093000px;}
.y18d{bottom:829.200000px;}
.yec{bottom:831.580500px;}
.y1c1{bottom:833.683500px;}
.y141{bottom:836.963658px;}
.y11a{bottom:838.488000px;}
.yb4{bottom:841.935000px;}
.y51{bottom:846.087000px;}
.y77{bottom:847.611000px;}
.yeb{bottom:848.019000px;}
.y18c{bottom:848.350500px;}
.y21{bottom:848.985000px;}
.y1c0{bottom:852.834000px;}
.y140{bottom:858.023694px;}
.yb3{bottom:858.373500px;}
.y119{bottom:862.753500px;}
.ye9{bottom:863.304000px;}
.yea{bottom:864.457500px;}
.y18b{bottom:867.501000px;}
.y76{bottom:868.503000px;}
.y20{bottom:869.877000px;}
.y50{bottom:871.461000px;}
.y1bf{bottom:871.984500px;}
.y13f{bottom:878.993550px;}
.ye8{bottom:880.896000px;}
.yb2{bottom:882.015000px;}
.y18a{bottom:886.651500px;}
.y118{bottom:887.019000px;}
.y75{bottom:889.393500px;}
.y1be{bottom:891.135000px;}
.ye7{bottom:897.333000px;}
.y189{bottom:905.802000px;}
.y1f{bottom:907.137000px;}
.y4f{bottom:910.285500px;}
.y117{bottom:911.284500px;}
.yb1{bottom:916.623000px;}
.ye6{bottom:920.974500px;}
.y13e{bottom:921.293550px;}
.y188{bottom:924.952500px;}
.y1e{bottom:927.616500px;}
.y1bd{bottom:929.436000px;}
.y4e{bottom:931.177500px;}
.y116{bottom:935.550000px;}
.yb0{bottom:935.856000px;}
.ye5{bottom:937.413000px;}
.y13c{bottom:940.013550px;}
.y1d{bottom:943.756500px;}
.y13d{bottom:943.793550px;}
.y187{bottom:944.103000px;}
.y1bc{bottom:948.586500px;}
.y4d{bottom:952.068000px;}
.ye3{bottom:952.698000px;}
.ye4{bottom:953.851500px;}
.y1c{bottom:955.557000px;}
.y13a{bottom:959.003550px;}
.y115{bottom:959.815500px;}
.y1b{bottom:959.896500px;}
.y13b{bottom:962.783550px;}
.y186{bottom:963.253500px;}
.y1bb{bottom:967.737000px;}
.ye2{bottom:970.290000px;}
.y4c{bottom:972.960000px;}
.y138{bottom:977.993550px;}
.y139{bottom:981.773550px;}
.y185{bottom:982.404000px;}
.y114{bottom:983.769000px;}
.ye1{bottom:986.728500px;}
.y1ba{bottom:986.887500px;}
.y4b{bottom:993.852000px;}
.y136{bottom:996.983550px;}
.y137{bottom:1000.763550px;}
.y184{bottom:1001.554500px;}
.y1a{bottom:1001.814000px;}
.y1b9{bottom:1006.038000px;}
.y113{bottom:1007.409000px;}
.ye0{bottom:1010.368500px;}
.y4a{bottom:1014.742500px;}
.y134{bottom:1015.883550px;}
.y135{bottom:1019.663550px;}
.y183{bottom:1020.705000px;}
.y112{bottom:1023.847500px;}
.y1b8{bottom:1025.188500px;}
.yde{bottom:1025.653500px;}
.ydf{bottom:1026.807000px;}
.y49{bottom:1035.634500px;}
.y182{bottom:1039.855500px;}
.y19{bottom:1040.638500px;}
.ydd{bottom:1043.245500px;}
.y1b7{bottom:1044.339000px;}
.y111{bottom:1047.487500px;}
.y48{bottom:1056.526500px;}
.y181{bottom:1059.007500px;}
.y1b6{bottom:1063.489500px;}
.ydc{bottom:1066.885500px;}
.y18{bottom:1071.975000px;}
.y133{bottom:1073.123685px;}
.y47{bottom:1077.417000px;}
.y180{bottom:1078.158000px;}
.y110{bottom:1082.097000px;}
.y1b5{bottom:1082.640000px;}
.y132{bottom:1082.753550px;}
.ydb{bottom:1090.527000px;}
.y17f{bottom:1097.308500px;}
.y46{bottom:1098.309000px;}
.y1b4{bottom:1101.790500px;}
.y17{bottom:1103.313000px;}
.yda{bottom:1106.965500px;}
.y17e{bottom:1116.459000px;}
.y45{bottom:1119.201000px;}
.y1b3{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.yd9{bottom:1141.573500px;}
.y43{bottom:1200.196500px;}
.h29{height:24.176953px;}
.h7{height:26.110157px;}
.h2{height:30.461558px;}
.h2a{height:34.160273px;}
.h1d{height:34.574294px;}
.h8{height:34.813397px;}
.h27{height:34.951465px;}
.hf{height:37.334628px;}
.h3{height:37.532992px;}
.he{height:38.896243px;}
.hd{height:39.165235px;}
.h28{height:39.418945px;}
.h2d{height:39.761719px;}
.hc{height:41.482876px;}
.h20{height:42.238157px;}
.h17{height:42.500452px;}
.hb{height:42.895078px;}
.h21{height:43.474157px;}
.h9{height:43.516637px;}
.h26{height:43.695176px;}
.h2b{height:43.886426px;}
.h2c{height:46.645840px;}
.h1b{height:48.257165px;}
.h12{height:48.567733px;}
.h23{height:48.737558px;}
.h22{height:48.743558px;}
.h19{height:49.002344px;}
.ha{height:51.861658px;}
.h4{height:53.618713px;}
.h6{height:54.541601px;}
.h1c{height:58.105450px;}
.h1a{height:58.111450px;}
.h1e{height:62.966294px;}
.h13{height:68.775024px;}
.h1f{height:70.630157px;}
.h24{height:71.770243px;}
.h18{height:71.776243px;}
.h5{height:77.792486px;}
.h10{height:81.441733px;}
.h11{height:81.447733px;}
.h16{height:85.240637px;}
.h14{height:114.792749px;}
.h15{height:155.676749px;}
.h25{height:650.873100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:471.723000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6e{left:-186.805500px;}
.x0{left:0.000000px;}
.x6f{left:8.764500px;}
.x70{left:40.624500px;}
.x1{left:53.574000px;}
.x34{left:62.541000px;}
.x66{left:63.883500px;}
.x90{left:84.220500px;}
.x8f{left:85.848000px;}
.x64{left:202.353000px;}
.x67{left:234.390000px;}
.x5b{left:242.200500px;}
.x57{left:244.201500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x54{left:265.344000px;}
.x3{left:269.764500px;}
.x52{left:270.931500px;}
.x5{left:281.479500px;}
.x62{left:283.177500px;}
.x4b{left:284.485500px;}
.x32{left:285.772500px;}
.x72{left:287.473500px;}
.x33{left:293.244000px;}
.x2a{left:295.981500px;}
.x4c{left:300.508500px;}
.x73{left:302.418000px;}
.x61{left:307.548000px;}
.x2b{left:310.924500px;}
.x2c{left:314.586000px;}
.xf{left:317.196000px;}
.x65{left:319.153500px;}
.xe{left:321.408000px;}
.x2d{left:329.530500px;}
.x51{left:333.733500px;}
.x59{left:336.886500px;}
.x48{left:345.543000px;}
.x30{left:348.054000px;}
.x7b{left:349.588500px;}
.x7c{left:357.061500px;}
.x28{left:360.646500px;}
.x31{left:362.998500px;}
.x4d{left:369.279000px;}
.x29{left:375.591000px;}
.x4e{left:385.302000px;}
.x3c{left:389.911500px;}
.x74{left:391.299000px;}
.x60{left:404.848500px;}
.x58{left:409.147500px;}
.x24{left:419.830500px;}
.x3d{left:420.979500px;}
.x5c{left:430.990500px;}
.x25{left:432.121500px;}
.x5d{left:440.175000px;}
.x53{left:445.558500px;}
.x77{left:446.578500px;}
.x84{left:451.890000px;}
.x37{left:454.998000px;}
.x78{left:457.726500px;}
.x3e{left:459.399000px;}
.x3f{left:461.116500px;}
.x71{left:465.515085px;}
.x85{left:466.834500px;}
.x38{left:480.829500px;}
.x75{left:484.717500px;}
.x69{left:490.290000px;}
.x76{left:499.662000px;}
.x68{left:510.475500px;}
.x39{left:511.897500px;}
.x41{left:521.476500px;}
.x42{left:532.741500px;}
.x6a{left:540.883500px;}
.x82{left:544.362000px;}
.x8b{left:547.723500px;}
.x56{left:548.835000px;}
.x3a{left:550.317000px;}
.x3b{left:552.034500px;}
.x26{left:558.120000px;}
.x83{left:559.305000px;}
.x7e{left:560.460000px;}
.x5a{left:565.963500px;}
.x63{left:570.142500px;}
.x89{left:571.896000px;}
.x27{left:573.064500px;}
.x7f{left:575.403000px;}
.x16{left:578.032500px;}
.x46{left:580.545000px;}
.x7d{left:582.510000px;}
.x8{left:584.145000px;}
.x17{left:585.504000px;}
.x40{left:587.836500px;}
.x9{left:591.616500px;}
.x47{left:596.587500px;}
.x55{left:605.236500px;}
.x2e{left:609.897000px;}
.x5e{left:616.797000px;}
.x2f{left:624.841500px;}
.x5f{left:625.981500px;}
.x1c{left:633.205500px;}
.x79{left:637.456500px;}
.x1d{left:648.148500px;}
.x1e{left:651.918000px;}
.x86{left:661.311000px;}
.x1f{left:666.862500px;}
.x6b{left:669.441000px;}
.x87{left:676.254000px;}
.x6c{left:692.506500px;}
.x43{left:696.787500px;}
.x18{left:702.487500px;}
.x44{left:704.632500px;}
.x7a{left:705.915000px;}
.xc{left:707.778000px;}
.x19{left:709.959000px;}
.x1a{left:713.710500px;}
.xd{left:715.251000px;}
.x6d{left:719.466000px;}
.x1b{left:721.182000px;}
.x8a{left:729.664500px;}
.x12{left:731.370000px;}
.x20{left:736.563000px;}
.x13{left:738.843000px;}
.x49{left:740.496000px;}
.xa{left:745.078500px;}
.xb{left:752.550000px;}
.x4f{left:754.773000px;}
.x10{left:757.015500px;}
.x4a{left:758.718000px;}
.x11{left:764.487000px;}
.x22{left:769.434000px;}
.x50{left:771.928500px;}
.x8c{left:773.071500px;}
.x8d{left:780.693000px;}
.x23{left:784.378500px;}
.x35{left:791.890500px;}
.x14{left:793.390500px;}
.x8e{left:795.637500px;}
.x80{left:799.171500px;}
.x15{left:800.862000px;}
.x36{left:806.100000px;}
.x45{left:808.329000px;}
.x81{left:817.698000px;}
.x88{left:818.893500px;}
.x6{left:825.519000px;}
.x7{left:832.990500px;}
.x21{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v14{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.624000pt;}
.v12{vertical-align:-1.098667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.864000pt;}
.v15{vertical-align:13.440000pt;}
.v13{vertical-align:14.336000pt;}
.vb{vertical-align:15.360000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v10{vertical-align:24.144000pt;}
.vf{vertical-align:25.237333pt;}
.v9{vertical-align:27.146667pt;}
.v4{vertical-align:29.221333pt;}
.vc{vertical-align:37.088000pt;}
.v11{vertical-align:39.573333pt;}
.ve{vertical-align:43.066667pt;}
.v5{vertical-align:46.581333pt;}
.v7{vertical-align:59.008000pt;}
.va{vertical-align:72.640000pt;}
.vd{vertical-align:79.429333pt;}
.ls4c{letter-spacing:-0.628800pt;}
.ls43{letter-spacing:-0.619904pt;}
.ls3d{letter-spacing:-0.609600pt;}
.ls48{letter-spacing:-0.609216pt;}
.ls41{letter-spacing:-0.604800pt;}
.ls47{letter-spacing:-0.603872pt;}
.ls3e{letter-spacing:-0.600000pt;}
.ls49{letter-spacing:-0.598528pt;}
.ls40{letter-spacing:-0.595200pt;}
.ls4b{letter-spacing:-0.593184pt;}
.ls42{letter-spacing:-0.590400pt;}
.ls46{letter-spacing:-0.587840pt;}
.ls44{letter-spacing:-0.571808pt;}
.ls45{letter-spacing:-0.555776pt;}
.ls4a{letter-spacing:-0.550432pt;}
.ls4d{letter-spacing:-0.542400pt;}
.ls3f{letter-spacing:-0.320896pt;}
.ls3c{letter-spacing:-0.012768pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001225pt;}
.ls51{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.046816pt;}
.ls3b{letter-spacing:0.148960pt;}
.ls3a{letter-spacing:0.161728pt;}
.lsb{letter-spacing:0.570745pt;}
.ls26{letter-spacing:0.640696pt;}
.ls28{letter-spacing:0.646082pt;}
.ls23{letter-spacing:0.652455pt;}
.ls17{letter-spacing:0.657788pt;}
.ls1a{letter-spacing:0.662778pt;}
.lsf{letter-spacing:0.664259pt;}
.lse{letter-spacing:0.665067pt;}
.ls18{letter-spacing:0.665318pt;}
.ls27{letter-spacing:1.307362pt;}
.ls1e{letter-spacing:1.313788pt;}
.ls11{letter-spacing:1.319121pt;}
.ls21{letter-spacing:2.173897pt;}
.ls15{letter-spacing:2.179230pt;}
.lsa{letter-spacing:3.123467pt;}
.ls10{letter-spacing:3.318400pt;}
.ls1d{letter-spacing:3.323733pt;}
.ls16{letter-spacing:3.825028pt;}
.ls22{letter-spacing:3.830362pt;}
.ls12{letter-spacing:7.437897pt;}
.ls1f{letter-spacing:7.443230pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls14{letter-spacing:11.629762pt;}
.ls20{letter-spacing:11.635096pt;}
.ls4f{letter-spacing:11.954133pt;}
.ls31{letter-spacing:11.955635pt;}
.ls50{letter-spacing:11.959467pt;}
.ls8{letter-spacing:12.528078pt;}
.ls9{letter-spacing:12.533411pt;}
.ls38{letter-spacing:13.070931pt;}
.ls2d{letter-spacing:13.119186pt;}
.ls33{letter-spacing:13.281067pt;}
.ls19{letter-spacing:13.283349pt;}
.ls2f{letter-spacing:13.283733pt;}
.ls2b{letter-spacing:13.284147pt;}
.ls37{letter-spacing:13.286400pt;}
.ls5{letter-spacing:13.470930pt;}
.ls2c{letter-spacing:13.923096pt;}
.ls1c{letter-spacing:13.948111pt;}
.ls2e{letter-spacing:14.133720pt;}
.ls2a{letter-spacing:15.395096pt;}
.ls1b{letter-spacing:15.912429pt;}
.ls2{letter-spacing:15.937067pt;}
.lsd{letter-spacing:16.084237pt;}
.ls4e{letter-spacing:18.625224pt;}
.ls13{letter-spacing:20.875733pt;}
.ls25{letter-spacing:21.773762pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls35{letter-spacing:99.419733pt;}
.ls36{letter-spacing:112.299733pt;}
.ls34{letter-spacing:166.408663pt;}
.ls24{letter-spacing:166.497067pt;}
.ls29{letter-spacing:196.262400pt;}
.ls32{letter-spacing:220.773867pt;}
.ls30{letter-spacing:269.278925pt;}
.ws5e{word-spacing:-281.234125pt;}
.ws15{word-spacing:-13.283467pt;}
.ws81{word-spacing:-12.000000pt;}
.wsc2{word-spacing:-11.955200pt;}
.ws7e{word-spacing:-10.801728pt;}
.ws7f{word-spacing:-10.640000pt;}
.ws29{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws80{word-spacing:-7.360000pt;}
.ws46{word-spacing:-2.975497pt;}
.ws35{word-spacing:-2.709827pt;}
.wsb7{word-spacing:-2.550426pt;}
.ws55{word-spacing:-2.497292pt;}
.ws56{word-spacing:-2.444158pt;}
.ws54{word-spacing:-2.289067pt;}
.ws44{word-spacing:-2.072221pt;}
.ws93{word-spacing:-1.923840pt;}
.ws94{word-spacing:-1.907808pt;}
.ws92{word-spacing:-1.859712pt;}
.ws63{word-spacing:-1.859685pt;}
.wse3{word-spacing:-1.817190pt;}
.wsa9{word-spacing:-1.806551pt;}
.wsac{word-spacing:-1.753418pt;}
.wsb2{word-spacing:-1.594016pt;}
.ws9b{word-spacing:-1.571136pt;}
.ws9d{word-spacing:-1.565792pt;}
.ws9a{word-spacing:-1.560448pt;}
.ws9e{word-spacing:-1.549760pt;}
.wsb6{word-spacing:-1.540882pt;}
.ws30{word-spacing:-1.434614pt;}
.ws20{word-spacing:-1.381481pt;}
.ws32{word-spacing:-1.328347pt;}
.wsb5{word-spacing:-1.275213pt;}
.ws1f{word-spacing:-1.168945pt;}
.ws38{word-spacing:-1.115811pt;}
.wsb8{word-spacing:-1.062677pt;}
.wsca{word-spacing:-0.956416pt;}
.ws91{word-spacing:-0.945888pt;}
.wsad{word-spacing:-0.903276pt;}
.ws64{word-spacing:-0.797008pt;}
.ws83{word-spacing:-0.743874pt;}
.wsd1{word-spacing:-0.717312pt;}
.ws7a{word-spacing:-0.690740pt;}
.wsde{word-spacing:-0.669491pt;}
.wsb1{word-spacing:-0.584473pt;}
.ws65{word-spacing:-0.573850pt;}
.ws47{word-spacing:-0.526029pt;}
.ws2f{word-spacing:-0.318803pt;}
.ws37{word-spacing:-0.265669pt;}
.ws87{word-spacing:-0.242592pt;}
.ws1a{word-spacing:-0.212535pt;}
.ws7b{word-spacing:-0.191283pt;}
.ws19{word-spacing:-0.159402pt;}
.ws5b{word-spacing:-0.154725pt;}
.wse6{word-spacing:-0.143462pt;}
.ws86{word-spacing:-0.127680pt;}
.ws22{word-spacing:-0.106268pt;}
.ws6d{word-spacing:-0.095642pt;}
.ws88{word-spacing:-0.068096pt;}
.ws21{word-spacing:-0.053134pt;}
.wsbd{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.wsdf{word-spacing:-0.025182pt;}
.ws72{word-spacing:-0.001333pt;}
.ws0{word-spacing:0.000000pt;}
.ws75{word-spacing:0.004000pt;}
.ws71{word-spacing:0.004637pt;}
.ws95{word-spacing:0.026720pt;}
.wsa{word-spacing:0.042507pt;}
.ws96{word-spacing:0.042752pt;}
.ws4d{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.wsa0{word-spacing:0.062400pt;}
.ws2{word-spacing:0.074387pt;}
.ws6f{word-spacing:0.085014pt;}
.ws8{word-spacing:0.095642pt;}
.ws31{word-spacing:0.106268pt;}
.ws8f{word-spacing:0.110400pt;}
.ws8d{word-spacing:0.115200pt;}
.ws8e{word-spacing:0.124800pt;}
.ws8a{word-spacing:0.129600pt;}
.wsbc{word-spacing:0.143462pt;}
.ws3{word-spacing:0.148774pt;}
.ws9f{word-spacing:0.148800pt;}
.ws16{word-spacing:0.159402pt;}
.wscd{word-spacing:0.191283pt;}
.ws12{word-spacing:0.212535pt;}
.ws7c{word-spacing:0.239104pt;}
.ws2e{word-spacing:0.265669pt;}
.wsc8{word-spacing:0.286925pt;}
.ws14{word-spacing:0.318803pt;}
.ws40{word-spacing:0.425071pt;}
.ws8c{word-spacing:0.451200pt;}
.ws41{word-spacing:0.478205pt;}
.ws3a{word-spacing:0.531339pt;}
.ws4b{word-spacing:0.580386pt;}
.wsf{word-spacing:0.584473pt;}
.ws48{word-spacing:0.584789pt;}
.ws4a{word-spacing:0.589056pt;}
.ws49{word-spacing:0.590763pt;}
.ws4c{word-spacing:0.591829pt;}
.ws9c{word-spacing:0.630592pt;}
.ws36{word-spacing:0.637606pt;}
.ws58{word-spacing:0.660267pt;}
.ws57{word-spacing:0.665600pt;}
.ws52{word-spacing:0.690740pt;}
.wsd4{word-spacing:0.717312pt;}
.ws17{word-spacing:0.743874pt;}
.ws5c{word-spacing:0.850142pt;}
.wsb9{word-spacing:0.908595pt;}
.wsd0{word-spacing:1.004237pt;}
.ws18{word-spacing:1.009543pt;}
.ws3d{word-spacing:1.062677pt;}
.wse{word-spacing:1.115811pt;}
.wsab{word-spacing:1.168945pt;}
.ws51{word-spacing:1.222079pt;}
.ws6c{word-spacing:1.291162pt;}
.wsae{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.338982pt;}
.ws4f{word-spacing:1.381481pt;}
.wsd6{word-spacing:1.769370pt;}
.wsa8{word-spacing:1.912819pt;}
.ws3e{word-spacing:2.072221pt;}
.ws7{word-spacing:2.231335pt;}
.ws5a{word-spacing:2.231622pt;}
.ws82{word-spacing:2.337890pt;}
.wsa4{word-spacing:2.391024pt;}
.ws45{word-spacing:2.497292pt;}
.ws77{word-spacing:2.547466pt;}
.ws50{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.wscb{word-spacing:2.582323pt;}
.wsaa{word-spacing:2.656693pt;}
.ws84{word-spacing:2.709827pt;}
.ws2c{word-spacing:2.762961pt;}
.wsaf{word-spacing:2.816095pt;}
.wsdb{word-spacing:2.865015pt;}
.wsbb{word-spacing:2.866509pt;}
.ws2b{word-spacing:2.869229pt;}
.wse2{word-spacing:2.869248pt;}
.ws62{word-spacing:2.922363pt;}
.ws5d{word-spacing:3.060531pt;}
.ws27{word-spacing:3.081764pt;}
.wsea{word-spacing:3.108352pt;}
.ws1d{word-spacing:3.134898pt;}
.ws76{word-spacing:3.145533pt;}
.ws1b{word-spacing:3.185311pt;}
.ws26{word-spacing:3.188032pt;}
.ws39{word-spacing:3.241166pt;}
.ws3f{word-spacing:3.294300pt;}
.ws3b{word-spacing:3.347434pt;}
.ws10{word-spacing:3.400567pt;}
.wsb0{word-spacing:3.453701pt;}
.wsda{word-spacing:3.490918pt;}
.wsd{word-spacing:3.506835pt;}
.wsba{word-spacing:3.586560pt;}
.ws43{word-spacing:3.666237pt;}
.ws1c{word-spacing:3.825664pt;}
.ws97{word-spacing:3.869056pt;}
.ws98{word-spacing:3.890432pt;}
.ws99{word-spacing:3.901120pt;}
.wsa5{word-spacing:3.931906pt;}
.ws1e{word-spacing:4.038174pt;}
.wsa1{word-spacing:4.091308pt;}
.wsb4{word-spacing:4.197575pt;}
.ws85{word-spacing:4.250709pt;}
.wsc5{word-spacing:4.351693pt;}
.ws13{word-spacing:4.356977pt;}
.ws34{word-spacing:4.463245pt;}
.ws33{word-spacing:4.782048pt;}
.ws42{word-spacing:4.835182pt;}
.ws90{word-spacing:4.857696pt;}
.wsd3{word-spacing:4.925542pt;}
.wsbe{word-spacing:5.021184pt;}
.wsbf{word-spacing:5.069005pt;}
.wsb3{word-spacing:5.100851pt;}
.ws2d{word-spacing:5.260253pt;}
.wsa3{word-spacing:5.366521pt;}
.ws24{word-spacing:5.419654pt;}
.wsdd{word-spacing:5.595034pt;}
.ws11{word-spacing:5.738458pt;}
.ws25{word-spacing:5.791591pt;}
.ws53{word-spacing:6.429198pt;}
.wsc0{word-spacing:6.551450pt;}
.wsa2{word-spacing:6.854269pt;}
.ws59{word-spacing:7.385607pt;}
.wsa6{word-spacing:7.810678pt;}
.wse0{word-spacing:9.229414pt;}
.ws89{word-spacing:10.329312pt;}
.wsc{word-spacing:10.399253pt;}
.ws28{word-spacing:10.587492pt;}
.ws4{word-spacing:11.488866pt;}
.wsce{word-spacing:11.898786pt;}
.wsd2{word-spacing:11.899622pt;}
.wse5{word-spacing:11.899708pt;}
.wse7{word-spacing:11.901295pt;}
.wsc9{word-spacing:11.901850pt;}
.wsdc{word-spacing:11.901986pt;}
.wsd5{word-spacing:11.902362pt;}
.wsc3{word-spacing:11.904179pt;}
.wse9{word-spacing:11.904521pt;}
.wse4{word-spacing:11.905067pt;}
.wsd9{word-spacing:11.905562pt;}
.wsc4{word-spacing:11.907379pt;}
.wse8{word-spacing:12.050842pt;}
.wsd8{word-spacing:12.098662pt;}
.wsa7{word-spacing:12.273923pt;}
.ws4e{word-spacing:13.230333pt;}
.ws3c{word-spacing:13.655404pt;}
.wsc6{word-spacing:14.767232pt;}
.wsd7{word-spacing:14.769058pt;}
.wscf{word-spacing:14.770662pt;}
.wsc1{word-spacing:14.776627pt;}
.wscc{word-spacing:14.824448pt;}
.wse1{word-spacing:19.223962pt;}
.wsc7{word-spacing:19.271782pt;}
.ws1{word-spacing:25.293814pt;}
.ws6e{word-spacing:79.233421pt;}
.ws74{word-spacing:83.314112pt;}
.ws73{word-spacing:93.397852pt;}
.ws70{word-spacing:93.940912pt;}
.ws8b{word-spacing:101.880000pt;}
.ws78{word-spacing:109.174886pt;}
.ws79{word-spacing:129.642189pt;}
.ws60{word-spacing:154.413363pt;}
.ws5f{word-spacing:212.133069pt;}
.ws61{word-spacing:214.811034pt;}
.ws67{word-spacing:369.463501pt;}
.ws68{word-spacing:369.511322pt;}
.ws7d{word-spacing:374.867251pt;}
.ws6a{word-spacing:393.373901pt;}
.ws69{word-spacing:393.421722pt;}
.ws66{word-spacing:412.024013pt;}
._86{margin-left:-30.801600pt;}
._35{margin-left:-10.002534pt;}
._a{margin-left:-6.418575pt;}
._1{margin-left:-4.872362pt;}
._13{margin-left:-3.931906pt;}
._3{margin-left:-2.920309pt;}
._2{margin-left:-1.338970pt;}
._80{width:1.042720pt;}
._4{width:2.662641pt;}
._7{width:3.825638pt;}
._8f{width:10.233638pt;}
._0{width:11.530016pt;}
._5{width:13.288787pt;}
._31{width:14.308443pt;}
._11{width:15.206909pt;}
._b{width:16.998490pt;}
._e{width:17.959247pt;}
._6{width:19.351350pt;}
._9{width:21.157902pt;}
._91{width:22.558298pt;}
._33{width:23.723298pt;}
._8d{width:25.789631pt;}
._8{width:26.938870pt;}
._85{width:28.440000pt;}
._c{width:29.383028pt;}
._12{width:31.019555pt;}
._d{width:34.377612pt;}
._30{width:36.285409pt;}
._8b{width:37.565644pt;}
._32{width:39.106526pt;}
._89{width:47.731698pt;}
._84{width:48.682730pt;}
._90{width:54.993920pt;}
._2f{width:64.839645pt;}
._22{width:70.296576pt;}
._50{width:71.497110pt;}
._8e{width:78.904320pt;}
._6b{width:83.701462pt;}
._61{width:93.940912pt;}
._65{width:104.567712pt;}
._6a{width:111.071314pt;}
._60{width:112.304022pt;}
._53{width:113.584024pt;}
._59{width:114.651452pt;}
._69{width:116.872147pt;}
._8a{width:122.048723pt;}
._64{width:123.780966pt;}
._62{width:125.332461pt;}
._83{width:130.121384pt;}
._72{width:132.494942pt;}
._3b{width:133.951421pt;}
._51{width:136.830677pt;}
._4f{width:137.723328pt;}
._6d{width:139.721166pt;}
._5d{width:143.797072pt;}
._5f{width:147.027619pt;}
._54{width:148.265114pt;}
._67{width:149.157765pt;}
._5a{width:154.853730pt;}
._79{width:156.385538pt;}
._68{width:158.041770pt;}
._57{width:158.934421pt;}
._74{width:160.231191pt;}
._73{width:161.144795pt;}
._56{width:165.438022pt;}
._5b{width:169.211630pt;}
._75{width:170.248499pt;}
._6e{width:171.941624pt;}
._70{width:176.064822pt;}
._58{width:179.295370pt;}
._6c{width:180.188021pt;}
._29{width:181.623398pt;}
._34{width:187.051725pt;}
._55{width:189.964677pt;}
._6f{width:194.432718pt;}
._52{width:200.571983pt;}
._3c{width:202.855834pt;}
._7a{width:203.993126pt;}
._5e{width:206.584992pt;}
._36{width:208.845303pt;}
._71{width:211.218277pt;}
._76{width:219.836710pt;}
._77{width:222.744083pt;}
._3a{width:226.139203pt;}
._3f{width:227.345443pt;}
._63{width:233.959629pt;}
._2c{width:235.900006pt;}
._3d{width:244.699034pt;}
._7b{width:246.271917pt;}
._66{width:251.982682pt;}
._78{width:254.975302pt;}
._38{width:262.631834pt;}
._15{width:287.307366pt;}
._7d{width:309.161472pt;}
._26{width:314.469581pt;}
._27{width:317.261568pt;}
._21{width:322.646938pt;}
._87{width:327.028800pt;}
._23{width:329.963520pt;}
._1e{width:351.861888pt;}
._88{width:360.848480pt;}
._40{width:383.379354pt;}
._7e{width:390.887219pt;}
._7f{width:395.860582pt;}
._20{width:402.599757pt;}
._4a{width:405.329101pt;}
._2e{width:407.289754pt;}
._82{width:410.792480pt;}
._43{width:417.332122pt;}
._5c{width:428.909350pt;}
._3e{width:438.941763pt;}
._45{width:441.242522pt;}
._2b{width:443.170560pt;}
._2d{width:451.189248pt;}
._1f{width:459.923439pt;}
._1d{width:466.491904pt;}
._28{width:467.448320pt;}
._18{width:490.402304pt;}
._7c{width:510.965248pt;}
._14{width:513.972598pt;}
._25{width:514.898560pt;}
._41{width:529.131725pt;}
._19{width:547.925366pt;}
._1b{width:551.086899pt;}
._17{width:584.699562pt;}
._46{width:602.637722pt;}
._16{width:611.006362pt;}
._24{width:613.253939pt;}
._2a{width:618.756877pt;}
._44{width:625.352602pt;}
._47{width:626.548122pt;}
._1c{width:634.247270pt;}
._1a{width:644.528742pt;}
._39{width:653.465872pt;}
._42{width:654.905856pt;}
._4c{width:677.812019pt;}
._4e{width:710.569267pt;}
._37{width:719.511757pt;}
._4d{width:747.391283pt;}
._48{width:781.487514pt;}
._4b{width:808.697549pt;}
._49{width:813.383987pt;}
._f{width:1630.610845pt;}
._81{width:1870.103424pt;}
._8c{width:2212.237511pt;}
._10{width:2233.490845pt;}
.fsd{font-size:29.440000pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs8{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y14b{bottom:-21.232400pt;}
.y0{bottom:0.000000pt;}
.y14a{bottom:1.728848pt;}
.y42{bottom:40.818667pt;}
.y41{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y10f{bottom:94.268000pt;}
.y17d{bottom:98.206667pt;}
.y74{bottom:102.117333pt;}
.y166{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.yaf{bottom:106.665333pt;}
.y10d{bottom:106.888000pt;}
.y40{bottom:107.209333pt;}
.y1b2{bottom:107.225333pt;}
.y10e{bottom:110.745333pt;}
.y95{bottom:118.648000pt;}
.y73{bottom:120.688000pt;}
.y14{bottom:120.920000pt;}
.y165{bottom:122.042667pt;}
.y17c{bottom:123.509333pt;}
.y1b1{bottom:124.248000pt;}
.yae{bottom:125.236000pt;}
.y3f{bottom:125.780000pt;}
.y10c{bottom:127.662667pt;}
.yd8{bottom:136.489333pt;}
.y13{bottom:136.821333pt;}
.y94{bottom:137.218667pt;}
.y72{bottom:139.258667pt;}
.y164{bottom:140.613333pt;}
.y17b{bottom:140.841333pt;}
.y1b0{bottom:141.270667pt;}
.yad{bottom:143.805333pt;}
.y3e{bottom:144.350667pt;}
.y10b{bottom:147.232000pt;}
.yd7{bottom:151.101333pt;}
.y12{bottom:152.721333pt;}
.yd5{bottom:157.382667pt;}
.y71{bottom:157.828000pt;}
.y17a{bottom:158.173333pt;}
.y1af{bottom:158.293333pt;}
.y163{bottom:159.184000pt;}
.y93{bottom:159.774667pt;}
.yac{bottom:162.376000pt;}
.y3d{bottom:162.920000pt;}
.yd6{bottom:165.713333pt;}
.y10a{bottom:166.800000pt;}
.y11{bottom:168.621333pt;}
.y1ae{bottom:175.316000pt;}
.y70{bottom:176.398667pt;}
.y162{bottom:177.753333pt;}
.yd4{bottom:180.325333pt;}
.yab{bottom:180.946667pt;}
.y3c{bottom:181.490667pt;}
.y179{bottom:183.476000pt;}
.y10{bottom:184.521333pt;}
.y109{bottom:186.369333pt;}
.y1ad{bottom:192.338667pt;}
.y6f{bottom:194.969333pt;}
.y161{bottom:196.324000pt;}
.yaa{bottom:199.516000pt;}
.y3b{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.yd3{bottom:201.340000pt;}
.y92{bottom:201.580000pt;}
.y108{bottom:205.937333pt;}
.y178{bottom:208.778667pt;}
.y1ac{bottom:209.361333pt;}
.y6e{bottom:213.540000pt;}
.y160{bottom:214.894667pt;}
.yd2{bottom:215.950667pt;}
.ya9{bottom:218.086667pt;}
.y3a{bottom:218.632000pt;}
.yd0{bottom:222.232000pt;}
.y91{bottom:222.593333pt;}
.ye{bottom:224.293333pt;}
.y107{bottom:225.506667pt;}
.y177{bottom:226.110667pt;}
.y1ab{bottom:226.384000pt;}
.yd1{bottom:230.562667pt;}
.y6d{bottom:232.109333pt;}
.y15f{bottom:233.464000pt;}
.ya8{bottom:236.657333pt;}
.y39{bottom:237.201333pt;}
.yd{bottom:240.193333pt;}
.y1aa{bottom:243.406667pt;}
.y90{bottom:243.608000pt;}
.y106{bottom:245.074667pt;}
.ycf{bottom:245.174667pt;}
.y6c{bottom:250.680000pt;}
.y176{bottom:251.413333pt;}
.y15e{bottom:252.034667pt;}
.y38{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.ya7{bottom:259.212000pt;}
.y1a9{bottom:260.430667pt;}
.y8f{bottom:264.621333pt;}
.y105{bottom:264.644000pt;}
.yce{bottom:266.189333pt;}
.y6b{bottom:269.250667pt;}
.y15d{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y37{bottom:274.342667pt;}
.y175{bottom:276.714667pt;}
.y1a8{bottom:277.453333pt;}
.ycd{bottom:280.801333pt;}
.y104{bottom:284.212000pt;}
.y8e{bottom:285.634667pt;}
.ycb{bottom:287.081333pt;}
.y6a{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y15c{bottom:289.176000pt;}
.y36{bottom:292.912000pt;}
.ya6{bottom:293.722667pt;}
.y174{bottom:294.048000pt;}
.y1a7{bottom:294.476000pt;}
.ycc{bottom:295.413333pt;}
.y103{bottom:303.781333pt;}
.y9{bottom:303.794667pt;}
.y130{bottom:305.506667pt;}
.y69{bottom:306.390667pt;}
.y8d{bottom:306.649333pt;}
.y15b{bottom:307.745333pt;}
.yca{bottom:310.024000pt;}
.y173{bottom:311.380000pt;}
.y35{bottom:311.482667pt;}
.y1a6{bottom:311.498667pt;}
.ya5{bottom:312.293333pt;}
.y8{bottom:319.696000pt;}
.y102{bottom:323.076000pt;}
.y68{bottom:324.961333pt;}
.y15a{bottom:326.316000pt;}
.y12f{bottom:326.520000pt;}
.y8c{bottom:327.662667pt;}
.y1a5{bottom:328.521333pt;}
.y172{bottom:328.712000pt;}
.y34{bottom:330.053333pt;}
.ya4{bottom:330.862667pt;}
.yc9{bottom:331.038667pt;}
.y7{bottom:335.596000pt;}
.y101{bottom:335.696000pt;}
.y67{bottom:343.530667pt;}
.y159{bottom:344.886667pt;}
.y1a4{bottom:345.544000pt;}
.y171{bottom:346.044000pt;}
.y12e{bottom:347.534667pt;}
.y33{bottom:348.622667pt;}
.y8b{bottom:348.677333pt;}
.yc8{bottom:352.052000pt;}
.y100{bottom:354.717333pt;}
.y12c{bottom:354.840000pt;}
.y6{bottom:356.809333pt;}
.ya3{bottom:357.404000pt;}
.y66{bottom:362.101333pt;}
.y12b{bottom:362.146667pt;}
.y1a3{bottom:362.566667pt;}
.y158{bottom:363.456000pt;}
.yc7{bottom:366.664000pt;}
.ya0{bottom:366.676000pt;}
.y32{bottom:367.193333pt;}
.yff{bottom:367.336000pt;}
.y8a{bottom:369.690667pt;}
.y5{bottom:372.710667pt;}
.ya2{bottom:373.697333pt;}
.y12d{bottom:376.758667pt;}
.y170{bottom:379.316000pt;}
.y1a2{bottom:379.589333pt;}
.ya1{bottom:380.484000pt;}
.y65{bottom:380.672000pt;}
.y157{bottom:382.026667pt;}
.y89{bottom:384.302667pt;}
.y167{bottom:384.657333pt;}
.y31{bottom:385.764000pt;}
.yfe{bottom:386.357333pt;}
.y4{bottom:388.610667pt;}
.y14d{bottom:389.749333pt;}
.y1a1{bottom:396.612000pt;}
.yc6{bottom:397.428000pt;}
.y16f{bottom:397.886667pt;}
.yfd{bottom:398.977333pt;}
.y64{bottom:399.241333pt;}
.y156{bottom:400.597333pt;}
.y3{bottom:404.510667pt;}
.y88{bottom:405.317333pt;}
.y12a{bottom:407.521333pt;}
.y30{bottom:408.318667pt;}
.y1a0{bottom:413.634667pt;}
.yc5{bottom:414.522667pt;}
.y16e{bottom:416.457333pt;}
.y63{bottom:417.812000pt;}
.yfc{bottom:417.998667pt;}
.y155{bottom:419.166667pt;}
.y9f{bottom:419.301333pt;}
.y87{bottom:419.929333pt;}
.y129{bottom:424.617333pt;}
.y2{bottom:425.725333pt;}
.y14c{bottom:428.209333pt;}
.y1d1{bottom:430.438667pt;}
.yfb{bottom:430.617333pt;}
.y19f{bottom:430.657333pt;}
.y16d{bottom:435.028000pt;}
.y62{bottom:436.382667pt;}
.y154{bottom:437.737333pt;}
.y86{bottom:440.942667pt;}
.y1{bottom:441.625333pt;}
.y9e{bottom:441.857333pt;}
.yc4{bottom:444.044000pt;}
.y1d0{bottom:447.461333pt;}
.y19e{bottom:447.680000pt;}
.y131{bottom:448.146133pt;}
.yfa{bottom:449.638667pt;}
.y16c{bottom:453.597333pt;}
.y61{bottom:454.953333pt;}
.yf9{bottom:455.949333pt;}
.y153{bottom:456.308000pt;}
.y128{bottom:457.598667pt;}
.y9d{bottom:460.426667pt;}
.y85{bottom:461.957333pt;}
.yc3{bottom:462.614667pt;}
.y1cf{bottom:464.484000pt;}
.y19d{bottom:464.702667pt;}
.y16b{bottom:472.168000pt;}
.y60{bottom:473.522667pt;}
.y152{bottom:474.877333pt;}
.y127{bottom:476.169333pt;}
.y2f{bottom:478.729333pt;}
.y9c{bottom:478.997333pt;}
.yc2{bottom:481.185333pt;}
.yf8{bottom:481.280000pt;}
.y19c{bottom:481.725333pt;}
.y84{bottom:482.970667pt;}
.y16a{bottom:490.738667pt;}
.y5f{bottom:492.093333pt;}
.y151{bottom:493.448000pt;}
.yf7{bottom:493.898667pt;}
.y126{bottom:494.738667pt;}
.y9b{bottom:497.568000pt;}
.y19b{bottom:498.748000pt;}
.yc1{bottom:499.754667pt;}
.y1ce{bottom:502.733333pt;}
.y83{bottom:503.985333pt;}
.y5e{bottom:510.664000pt;}
.y150{bottom:512.018667pt;}
.yf6{bottom:512.920000pt;}
.y2e{bottom:513.240000pt;}
.y169{bottom:513.293333pt;}
.y125{bottom:513.309333pt;}
.y19a{bottom:515.770667pt;}
.y9a{bottom:516.137333pt;}
.yc0{bottom:518.325333pt;}
.y1cd{bottom:519.756000pt;}
.y5d{bottom:529.233333pt;}
.y14f{bottom:530.589333pt;}
.y2d{bottom:531.810667pt;}
.y124{bottom:531.880000pt;}
.y199{bottom:532.793333pt;}
.y82{bottom:534.748000pt;}
.y1cc{bottom:536.778667pt;}
.ybf{bottom:536.896000pt;}
.y99{bottom:539.876000pt;}
.yf5{bottom:542.289333pt;}
.y5c{bottom:547.804000pt;}
.y96{bottom:549.149333pt;}
.y14e{bottom:549.158667pt;}
.y198{bottom:549.816000pt;}
.y2c{bottom:550.380000pt;}
.y123{bottom:550.449333pt;}
.y1cb{bottom:553.801333pt;}
.y98{bottom:556.170667pt;}
.yf4{bottom:559.384000pt;}
.y97{bottom:562.957333pt;}
.y5b{bottom:566.374667pt;}
.y197{bottom:566.838667pt;}
.y81{bottom:567.729333pt;}
.y2b{bottom:568.950667pt;}
.y122{bottom:569.020000pt;}
.y1ca{bottom:570.824000pt;}
.ybe{bottom:575.492000pt;}
.yf3{bottom:576.480000pt;}
.y196{bottom:583.861333pt;}
.y5a{bottom:584.944000pt;}
.y80{bottom:586.300000pt;}
.y2a{bottom:587.521333pt;}
.y121{bottom:587.590667pt;}
.y1c9{bottom:587.846667pt;}
.ybd{bottom:592.733333pt;}
.yf2{bottom:593.576000pt;}
.y149{bottom:594.688400pt;}
.y195{bottom:600.885333pt;}
.y59{bottom:603.514667pt;}
.y7f{bottom:604.869333pt;}
.y29{bottom:606.090667pt;}
.y120{bottom:606.160000pt;}
.y148{bottom:613.328272pt;}
.ybc{bottom:613.748000pt;}
.y194{bottom:617.908000pt;}
.y1c8{bottom:621.892000pt;}
.y58{bottom:622.085333pt;}
.y7e{bottom:623.440000pt;}
.y28{bottom:624.661333pt;}
.y11f{bottom:624.730667pt;}
.yf1{bottom:626.557333pt;}
.y147{bottom:631.968144pt;}
.ybb{bottom:634.761333pt;}
.y193{bottom:634.930667pt;}
.y1c7{bottom:638.914667pt;}
.y57{bottom:640.654667pt;}
.y7d{bottom:642.010667pt;}
.y27{bottom:643.232000pt;}
.y11e{bottom:643.301333pt;}
.yf0{bottom:645.128000pt;}
.y146{bottom:650.688176pt;}
.y192{bottom:651.953333pt;}
.yba{bottom:655.776000pt;}
.y1c6{bottom:655.937333pt;}
.y56{bottom:659.225333pt;}
.y7c{bottom:660.580000pt;}
.y26{bottom:661.801333pt;}
.yef{bottom:663.698667pt;}
.y191{bottom:668.976000pt;}
.y145{bottom:669.328048pt;}
.y1c5{bottom:672.961333pt;}
.yb9{bottom:676.789333pt;}
.y55{bottom:677.796000pt;}
.y7b{bottom:679.150667pt;}
.y25{bottom:680.372000pt;}
.yee{bottom:682.268000pt;}
.y11d{bottom:684.665333pt;}
.y190{bottom:685.998667pt;}
.y144{bottom:687.967920pt;}
.y1c4{bottom:689.984000pt;}
.yb7{bottom:690.376000pt;}
.yb8{bottom:691.401333pt;}
.y54{bottom:696.365333pt;}
.y7a{bottom:697.721333pt;}
.y24{bottom:698.942667pt;}
.y168{bottom:700.350667pt;}
.y11c{bottom:702.185333pt;}
.y18f{bottom:703.021333pt;}
.yb6{bottom:706.013333pt;}
.y143{bottom:706.687952pt;}
.y1c3{bottom:707.006667pt;}
.y53{bottom:714.936000pt;}
.y79{bottom:716.290667pt;}
.y23{bottom:717.513333pt;}
.yed{bottom:719.776000pt;}
.y18e{bottom:720.044000pt;}
.y11b{bottom:723.754667pt;}
.y1c2{bottom:724.029333pt;}
.y142{bottom:725.327824pt;}
.yb5{bottom:727.200000pt;}
.y52{bottom:733.506667pt;}
.y78{bottom:734.861333pt;}
.y22{bottom:736.082667pt;}
.y18d{bottom:737.066667pt;}
.yec{bottom:739.182667pt;}
.y1c1{bottom:741.052000pt;}
.y141{bottom:743.967696pt;}
.y11a{bottom:745.322667pt;}
.yb4{bottom:748.386667pt;}
.y51{bottom:752.077333pt;}
.y77{bottom:753.432000pt;}
.yeb{bottom:753.794667pt;}
.y18c{bottom:754.089333pt;}
.y21{bottom:754.653333pt;}
.y1c0{bottom:758.074667pt;}
.y140{bottom:762.687728pt;}
.yb3{bottom:762.998667pt;}
.y119{bottom:766.892000pt;}
.ye9{bottom:767.381333pt;}
.yea{bottom:768.406667pt;}
.y18b{bottom:771.112000pt;}
.y76{bottom:772.002667pt;}
.y20{bottom:773.224000pt;}
.y50{bottom:774.632000pt;}
.y1bf{bottom:775.097333pt;}
.y13f{bottom:781.327600pt;}
.ye8{bottom:783.018667pt;}
.yb2{bottom:784.013333pt;}
.y18a{bottom:788.134667pt;}
.y118{bottom:788.461333pt;}
.y75{bottom:790.572000pt;}
.y1be{bottom:792.120000pt;}
.ye7{bottom:797.629333pt;}
.y189{bottom:805.157333pt;}
.y1f{bottom:806.344000pt;}
.y4f{bottom:809.142667pt;}
.y117{bottom:810.030667pt;}
.yb1{bottom:814.776000pt;}
.ye6{bottom:818.644000pt;}
.y13e{bottom:818.927600pt;}
.y188{bottom:822.180000pt;}
.y1e{bottom:824.548000pt;}
.y1bd{bottom:826.165333pt;}
.y4e{bottom:827.713333pt;}
.y116{bottom:831.600000pt;}
.yb0{bottom:831.872000pt;}
.ye5{bottom:833.256000pt;}
.y13c{bottom:835.567600pt;}
.y1d{bottom:838.894667pt;}
.y13d{bottom:838.927600pt;}
.y187{bottom:839.202667pt;}
.y1bc{bottom:843.188000pt;}
.y4d{bottom:846.282667pt;}
.ye3{bottom:846.842667pt;}
.ye4{bottom:847.868000pt;}
.y1c{bottom:849.384000pt;}
.y13a{bottom:852.447600pt;}
.y115{bottom:853.169333pt;}
.y1b{bottom:853.241333pt;}
.y13b{bottom:855.807600pt;}
.y186{bottom:856.225333pt;}
.y1bb{bottom:860.210667pt;}
.ye2{bottom:862.480000pt;}
.y4c{bottom:864.853333pt;}
.y138{bottom:869.327600pt;}
.y139{bottom:872.687600pt;}
.y185{bottom:873.248000pt;}
.y114{bottom:874.461333pt;}
.ye1{bottom:877.092000pt;}
.y1ba{bottom:877.233333pt;}
.y4b{bottom:883.424000pt;}
.y136{bottom:886.207600pt;}
.y137{bottom:889.567600pt;}
.y184{bottom:890.270667pt;}
.y1a{bottom:890.501333pt;}
.y1b9{bottom:894.256000pt;}
.y113{bottom:895.474667pt;}
.ye0{bottom:898.105333pt;}
.y4a{bottom:901.993333pt;}
.y134{bottom:903.007600pt;}
.y135{bottom:906.367600pt;}
.y183{bottom:907.293333pt;}
.y112{bottom:910.086667pt;}
.y1b8{bottom:911.278667pt;}
.yde{bottom:911.692000pt;}
.ydf{bottom:912.717333pt;}
.y49{bottom:920.564000pt;}
.y182{bottom:924.316000pt;}
.y19{bottom:925.012000pt;}
.ydd{bottom:927.329333pt;}
.y1b7{bottom:928.301333pt;}
.y111{bottom:931.100000pt;}
.y48{bottom:939.134667pt;}
.y181{bottom:941.340000pt;}
.y1b6{bottom:945.324000pt;}
.ydc{bottom:948.342667pt;}
.y18{bottom:952.866667pt;}
.y133{bottom:953.887720pt;}
.y47{bottom:957.704000pt;}
.y180{bottom:958.362667pt;}
.y110{bottom:961.864000pt;}
.y1b5{bottom:962.346667pt;}
.y132{bottom:962.447600pt;}
.ydb{bottom:969.357333pt;}
.y17f{bottom:975.385333pt;}
.y46{bottom:976.274667pt;}
.y1b4{bottom:979.369333pt;}
.y17{bottom:980.722667pt;}
.yda{bottom:983.969333pt;}
.y17e{bottom:992.408000pt;}
.y45{bottom:994.845333pt;}
.y1b3{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.yd9{bottom:1014.732000pt;}
.y43{bottom:1066.841333pt;}
.h29{height:21.490625pt;}
.h7{height:23.209028pt;}
.h2{height:27.076941pt;}
.h2a{height:30.364687pt;}
.h1d{height:30.732706pt;}
.h8{height:30.945242pt;}
.h27{height:31.067969pt;}
.hf{height:33.186336pt;}
.h3{height:33.362659pt;}
.he{height:34.574438pt;}
.hd{height:34.813542pt;}
.h28{height:35.039062pt;}
.h2d{height:35.343750pt;}
.hc{height:36.873667pt;}
.h20{height:37.545028pt;}
.h17{height:37.778179pt;}
.hb{height:38.128958pt;}
.h21{height:38.643695pt;}
.h9{height:38.681455pt;}
.h26{height:38.840156pt;}
.h2b{height:39.010156pt;}
.h2c{height:41.462969pt;}
.h1b{height:42.895258pt;}
.h12{height:43.171318pt;}
.h23{height:43.322274pt;}
.h22{height:43.327607pt;}
.h19{height:43.557639pt;}
.ha{height:46.099251pt;}
.h4{height:47.661078pt;}
.h6{height:48.481423pt;}
.h1c{height:51.649289pt;}
.h1a{height:51.654622pt;}
.h1e{height:55.970039pt;}
.h13{height:61.133355pt;}
.h1f{height:62.782362pt;}
.h24{height:63.795772pt;}
.h18{height:63.801105pt;}
.h5{height:69.148877pt;}
.h10{height:72.392652pt;}
.h11{height:72.397985pt;}
.h16{height:75.769455pt;}
.h14{height:102.037999pt;}
.h15{height:138.379332pt;}
.h25{height:578.553867pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:419.309333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6e{left:-166.049333pt;}
.x0{left:0.000000pt;}
.x6f{left:7.790667pt;}
.x70{left:36.110667pt;}
.x1{left:47.621333pt;}
.x34{left:55.592000pt;}
.x66{left:56.785333pt;}
.x90{left:74.862667pt;}
.x8f{left:76.309333pt;}
.x64{left:179.869333pt;}
.x67{left:208.346667pt;}
.x5b{left:215.289333pt;}
.x57{left:217.068000pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x54{left:235.861333pt;}
.x3{left:239.790667pt;}
.x52{left:240.828000pt;}
.x5{left:250.204000pt;}
.x62{left:251.713333pt;}
.x4b{left:252.876000pt;}
.x32{left:254.020000pt;}
.x72{left:255.532000pt;}
.x33{left:260.661333pt;}
.x2a{left:263.094667pt;}
.x4c{left:267.118667pt;}
.x73{left:268.816000pt;}
.x61{left:273.376000pt;}
.x2b{left:276.377333pt;}
.x2c{left:279.632000pt;}
.xf{left:281.952000pt;}
.x65{left:283.692000pt;}
.xe{left:285.696000pt;}
.x2d{left:292.916000pt;}
.x51{left:296.652000pt;}
.x59{left:299.454667pt;}
.x48{left:307.149333pt;}
.x30{left:309.381333pt;}
.x7b{left:310.745333pt;}
.x7c{left:317.388000pt;}
.x28{left:320.574667pt;}
.x31{left:322.665333pt;}
.x4d{left:328.248000pt;}
.x29{left:333.858667pt;}
.x4e{left:342.490667pt;}
.x3c{left:346.588000pt;}
.x74{left:347.821333pt;}
.x60{left:359.865333pt;}
.x58{left:363.686667pt;}
.x24{left:373.182667pt;}
.x3d{left:374.204000pt;}
.x5c{left:383.102667pt;}
.x25{left:384.108000pt;}
.x5d{left:391.266667pt;}
.x53{left:396.052000pt;}
.x77{left:396.958667pt;}
.x84{left:401.680000pt;}
.x37{left:404.442667pt;}
.x78{left:406.868000pt;}
.x3e{left:408.354667pt;}
.x3f{left:409.881333pt;}
.x71{left:413.791187pt;}
.x85{left:414.964000pt;}
.x38{left:427.404000pt;}
.x75{left:430.860000pt;}
.x69{left:435.813333pt;}
.x76{left:444.144000pt;}
.x68{left:453.756000pt;}
.x39{left:455.020000pt;}
.x41{left:463.534667pt;}
.x42{left:473.548000pt;}
.x6a{left:480.785333pt;}
.x82{left:483.877333pt;}
.x8b{left:486.865333pt;}
.x56{left:487.853333pt;}
.x3a{left:489.170667pt;}
.x3b{left:490.697333pt;}
.x26{left:496.106667pt;}
.x83{left:497.160000pt;}
.x7e{left:498.186667pt;}
.x5a{left:503.078667pt;}
.x63{left:506.793333pt;}
.x89{left:508.352000pt;}
.x27{left:509.390667pt;}
.x7f{left:511.469333pt;}
.x16{left:513.806667pt;}
.x46{left:516.040000pt;}
.x7d{left:517.786667pt;}
.x8{left:519.240000pt;}
.x17{left:520.448000pt;}
.x40{left:522.521333pt;}
.x9{left:525.881333pt;}
.x47{left:530.300000pt;}
.x55{left:537.988000pt;}
.x2e{left:542.130667pt;}
.x5e{left:548.264000pt;}
.x2f{left:555.414667pt;}
.x5f{left:556.428000pt;}
.x1c{left:562.849333pt;}
.x79{left:566.628000pt;}
.x1d{left:576.132000pt;}
.x1e{left:579.482667pt;}
.x86{left:587.832000pt;}
.x1f{left:592.766667pt;}
.x6b{left:595.058667pt;}
.x87{left:601.114667pt;}
.x6c{left:615.561333pt;}
.x43{left:619.366667pt;}
.x18{left:624.433333pt;}
.x44{left:626.340000pt;}
.x7a{left:627.480000pt;}
.xc{left:629.136000pt;}
.x19{left:631.074667pt;}
.x1a{left:634.409333pt;}
.xd{left:635.778667pt;}
.x6d{left:639.525333pt;}
.x1b{left:641.050667pt;}
.x8a{left:648.590667pt;}
.x12{left:650.106667pt;}
.x20{left:654.722667pt;}
.x13{left:656.749333pt;}
.x49{left:658.218667pt;}
.xa{left:662.292000pt;}
.xb{left:668.933333pt;}
.x4f{left:670.909333pt;}
.x10{left:672.902667pt;}
.x4a{left:674.416000pt;}
.x11{left:679.544000pt;}
.x22{left:683.941333pt;}
.x50{left:686.158667pt;}
.x8c{left:687.174667pt;}
.x8d{left:693.949333pt;}
.x23{left:697.225333pt;}
.x35{left:703.902667pt;}
.x14{left:705.236000pt;}
.x8e{left:707.233333pt;}
.x80{left:710.374667pt;}
.x15{left:711.877333pt;}
.x36{left:716.533333pt;}
.x45{left:718.514667pt;}
.x81{left:726.842667pt;}
.x88{left:727.905333pt;}
.x6{left:733.794667pt;}
.x7{left:740.436000pt;}
.x21{left:744.637333pt;}
}

