
    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_45d42e39e4714f7d15bd7e34.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_62cd67e6d2f93c90b97b96b8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_4a30059bbe93ef5b34e547a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_48cff00cc575ecac76649b39.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_879127c89d15c3139136ea87.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_e7730e79342a086240b94599.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5f{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m35{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);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m14{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);}
.m37{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);}
.m12{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.002400px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:12.698400px;}
.ls7{letter-spacing:15.001800px;}
.ls2{letter-spacing:18.697800px;}
.lsa{letter-spacing:19.503000px;}
.ls5{letter-spacing:21.000600px;}
.ls3{letter-spacing:21.001200px;}
.ls1{letter-spacing:24.697200px;}
.ls6{letter-spacing:27.000600px;}
.ls8{letter-spacing:30.696600px;}
.ls9{letter-spacing:34.498200px;}
.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;}
}
.ws111{word-spacing:-47.196600px;}
.ws1d{word-spacing:-41.197200px;}
.ws6a{word-spacing:-37.501200px;}
.wsfb{word-spacing:-36.012600px;}
.ws3f{word-spacing:-35.197800px;}
.ws107{word-spacing:-31.501800px;}
.wsf0{word-spacing:-29.198400px;}
.ws2b{word-spacing:-16.500000px;}
.ws64{word-spacing:-15.012000px;}
.ws9a{word-spacing:-13.500000px;}
.ws15{word-spacing:-3.458400px;}
.ws8f{word-spacing:-3.399000px;}
.ws115{word-spacing:-3.003000px;}
.ws124{word-spacing:-2.428800px;}
.ws25{word-spacing:-2.303400px;}
.ws99{word-spacing:-1.723200px;}
.ws73{word-spacing:-1.544400px;}
.ws10{word-spacing:-1.498200px;}
.wsdb{word-spacing:-1.488000px;}
.ws8a{word-spacing:-1.458000px;}
.wsa7{word-spacing:-1.372800px;}
.wsd{word-spacing:-0.805200px;}
.ws120{word-spacing:-0.627000px;}
.wsb8{word-spacing:-0.574200px;}
.wsf8{word-spacing:-0.521400px;}
.ws12a{word-spacing:-0.514800px;}
.wsb{word-spacing:-0.448800px;}
.ws126{word-spacing:-0.303600px;}
.ws1c{word-spacing:0.000000px;}
.ws113{word-spacing:0.171600px;}
.ws9d{word-spacing:0.217800px;}
.ws47{word-spacing:0.360000px;}
.ws43{word-spacing:0.402600px;}
.wse4{word-spacing:0.455400px;}
.ws133{word-spacing:0.594000px;}
.ws102{word-spacing:0.660000px;}
.wsb2{word-spacing:0.693000px;}
.wsd2{word-spacing:0.778800px;}
.wsf{word-spacing:0.818400px;}
.ws54{word-spacing:0.934200px;}
.wsc6{word-spacing:1.042800px;}
.ws83{word-spacing:1.110000px;}
.ws9e{word-spacing:1.155000px;}
.ws22{word-spacing:1.221000px;}
.ws3{word-spacing:1.359600px;}
.ws11{word-spacing:1.405800px;}
.ws3b{word-spacing:1.498200px;}
.ws86{word-spacing:1.524000px;}
.ws6d{word-spacing:1.564200px;}
.ws130{word-spacing:1.676400px;}
.ws12d{word-spacing:1.702800px;}
.wsad{word-spacing:1.747200px;}
.ws1e{word-spacing:1.848000px;}
.ws17{word-spacing:1.872000px;}
.wsb0{word-spacing:1.914000px;}
.wse3{word-spacing:1.960200px;}
.ws1b{word-spacing:1.977600px;}
.wsd3{word-spacing:2.026200px;}
.wsdc{word-spacing:2.064000px;}
.ws40{word-spacing:2.085600px;}
.ws32{word-spacing:2.122200px;}
.ws7c{word-spacing:2.197800px;}
.ws11f{word-spacing:2.257200px;}
.wsb1{word-spacing:2.310000px;}
.ws8{word-spacing:2.356200px;}
.ws14{word-spacing:2.475000px;}
.ws112{word-spacing:2.626800px;}
.ws88{word-spacing:2.688000px;}
.wsaa{word-spacing:2.721600px;}
.ws21{word-spacing:2.818200px;}
.wsa{word-spacing:2.824800px;}
.ws36{word-spacing:2.851200px;}
.wsce{word-spacing:2.871000px;}
.wsb4{word-spacing:2.950200px;}
.wsdd{word-spacing:2.964600px;}
.ws66{word-spacing:2.975400px;}
.ws117{word-spacing:3.247200px;}
.ws79{word-spacing:3.313200px;}
.ws7f{word-spacing:3.359400px;}
.ws30{word-spacing:3.423600px;}
.wsbc{word-spacing:3.458400px;}
.ws114{word-spacing:3.636600px;}
.ws3c{word-spacing:3.696000px;}
.ws13{word-spacing:3.768600px;}
.ws45{word-spacing:3.808200px;}
.ws8b{word-spacing:3.834000px;}
.wsdf{word-spacing:3.882000px;}
.wsa2{word-spacing:3.933600px;}
.wsaf{word-spacing:4.045800px;}
.ws11d{word-spacing:4.059000px;}
.ws12{word-spacing:4.098600px;}
.ws7e{word-spacing:4.151400px;}
.wse6{word-spacing:4.158000px;}
.ws11b{word-spacing:4.171200px;}
.ws8d{word-spacing:4.290000px;}
.wsf9{word-spacing:4.356000px;}
.wsbf{word-spacing:4.468200px;}
.ws7a{word-spacing:4.501200px;}
.wsd0{word-spacing:4.567200px;}
.ws70{word-spacing:4.587000px;}
.ws95{word-spacing:4.653000px;}
.wsff{word-spacing:4.656000px;}
.ws106{word-spacing:4.672800px;}
.ws12b{word-spacing:4.692600px;}
.ws26{word-spacing:4.851000px;}
.ws24{word-spacing:4.870800px;}
.ws89{word-spacing:4.876800px;}
.wsde{word-spacing:4.917000px;}
.wsfa{word-spacing:4.963200px;}
.ws10f{word-spacing:5.022600px;}
.ws1{word-spacing:5.194200px;}
.wsb3{word-spacing:5.200800px;}
.ws10e{word-spacing:5.214000px;}
.ws1a{word-spacing:5.280000px;}
.wse7{word-spacing:5.359200px;}
.ws7b{word-spacing:5.379000px;}
.ws11a{word-spacing:5.544000px;}
.wsa1{word-spacing:5.603400px;}
.ws116{word-spacing:5.649600px;}
.ws10d{word-spacing:5.656200px;}
.wsf5{word-spacing:5.715600px;}
.ws31{word-spacing:5.767200px;}
.ws4e{word-spacing:5.827800px;}
.ws82{word-spacing:5.860144px;}
.ws81{word-spacing:5.880600px;}
.wsf1{word-spacing:5.946600px;}
.ws39{word-spacing:5.992800px;}
.wse5{word-spacing:6.012600px;}
.ws93{word-spacing:6.019200px;}
.wsed{word-spacing:6.052200px;}
.ws6f{word-spacing:6.065400px;}
.wsee{word-spacing:6.123600px;}
.ws7d{word-spacing:6.171000px;}
.ws75{word-spacing:6.177600px;}
.ws92{word-spacing:6.237000px;}
.ws100{word-spacing:6.393600px;}
.ws20{word-spacing:6.520800px;}
.wsab{word-spacing:6.576000px;}
.ws46{word-spacing:6.619800px;}
.ws131{word-spacing:6.765000px;}
.wsf6{word-spacing:6.811200px;}
.ws98{word-spacing:6.837600px;}
.ws96{word-spacing:6.870600px;}
.wsf7{word-spacing:6.877200px;}
.ws103{word-spacing:6.956400px;}
.ws41{word-spacing:7.062000px;}
.wsc{word-spacing:7.095000px;}
.ws2{word-spacing:7.101600px;}
.ws110{word-spacing:7.154400px;}
.ws9f{word-spacing:7.161000px;}
.wse{word-spacing:7.220400px;}
.wsc1{word-spacing:7.240200px;}
.ws4b{word-spacing:7.344000px;}
.ws121{word-spacing:7.365600px;}
.wsfd{word-spacing:7.392000px;}
.wsd1{word-spacing:7.431600px;}
.ws62{word-spacing:7.441200px;}
.ws4c{word-spacing:7.457400px;}
.wsef{word-spacing:7.464600px;}
.ws74{word-spacing:7.497600px;}
.wscb{word-spacing:7.500000px;}
.wsc8{word-spacing:7.517400px;}
.wscf{word-spacing:7.563600px;}
.ws5{word-spacing:7.623000px;}
.wsf4{word-spacing:7.689000px;}
.ws128{word-spacing:7.794600px;}
.wse1{word-spacing:7.830000px;}
.ws2a{word-spacing:7.847400px;}
.ws10c{word-spacing:7.854000px;}
.ws23{word-spacing:7.986000px;}
.ws3a{word-spacing:8.019000px;}
.wse0{word-spacing:8.052000px;}
.ws27{word-spacing:8.197200px;}
.wsbe{word-spacing:8.335800px;}
.ws59{word-spacing:8.348400px;}
.wsd8{word-spacing:8.481000px;}
.ws119{word-spacing:8.533800px;}
.wsa0{word-spacing:8.547000px;}
.wseb{word-spacing:8.592000px;}
.ws6b{word-spacing:8.599800px;}
.wsac{word-spacing:8.688000px;}
.wsfc{word-spacing:8.769600px;}
.ws104{word-spacing:8.824200px;}
.ws42{word-spacing:8.890200px;}
.ws53{word-spacing:8.980200px;}
.ws9{word-spacing:8.982600px;}
.ws16{word-spacing:8.994000px;}
.ws61{word-spacing:9.001800px;}
.ws132{word-spacing:9.028800px;}
.ws52{word-spacing:9.104400px;}
.ws108{word-spacing:9.174000px;}
.wsfe{word-spacing:9.312000px;}
.ws3e{word-spacing:9.523800px;}
.ws2f{word-spacing:9.568800px;}
.ws94{word-spacing:9.589800px;}
.ws8e{word-spacing:9.604800px;}
.wsc7{word-spacing:9.642600px;}
.ws91{word-spacing:9.867000px;}
.wsa9{word-spacing:9.930600px;}
.ws127{word-spacing:9.992400px;}
.ws11e{word-spacing:10.020000px;}
.ws57{word-spacing:10.044000px;}
.ws7{word-spacing:10.111200px;}
.ws44{word-spacing:10.216800px;}
.wsbd{word-spacing:10.276200px;}
.ws5d{word-spacing:10.400400px;}
.ws76{word-spacing:10.500600px;}
.wsc0{word-spacing:10.507200px;}
.ws129{word-spacing:10.586400px;}
.ws69{word-spacing:10.632600px;}
.wse9{word-spacing:10.672200px;}
.ws77{word-spacing:10.685400px;}
.ws58{word-spacing:10.778400px;}
.ws38{word-spacing:10.850400px;}
.ws18{word-spacing:11.134800px;}
.wsd5{word-spacing:11.145600px;}
.ws0{word-spacing:11.193600px;}
.ws8c{word-spacing:11.199600px;}
.ws19{word-spacing:11.280000px;}
.ws5a{word-spacing:11.307600px;}
.ws28{word-spacing:11.424600px;}
.ws80{word-spacing:11.512800px;}
.ws97{word-spacing:11.543400px;}
.ws56{word-spacing:11.561400px;}
.wsb9{word-spacing:11.604600px;}
.wsa4{word-spacing:11.715000px;}
.ws123{word-spacing:11.721600px;}
.ws48{word-spacing:11.728200px;}
.ws49{word-spacing:11.827200px;}
.wsca{word-spacing:11.833800px;}
.wsa6{word-spacing:11.893200px;}
.ws12c{word-spacing:11.926200px;}
.ws85{word-spacing:11.952000px;}
.wsa5{word-spacing:12.064800px;}
.wsd6{word-spacing:12.097800px;}
.ws68{word-spacing:12.112200px;}
.wsc4{word-spacing:12.193200px;}
.wse2{word-spacing:12.282600px;}
.ws4d{word-spacing:12.290400px;}
.ws6e{word-spacing:12.309000px;}
.ws4{word-spacing:12.360000px;}
.ws12e{word-spacing:12.454200px;}
.ws3d{word-spacing:12.520200px;}
.ws5e{word-spacing:12.528000px;}
.ws2c{word-spacing:12.724800px;}
.ws35{word-spacing:12.744000px;}
.wsa3{word-spacing:12.771000px;}
.wsc2{word-spacing:12.863400px;}
.wsd9{word-spacing:12.870000px;}
.ws84{word-spacing:12.949200px;}
.ws118{word-spacing:13.153800px;}
.ws10a{word-spacing:13.219800px;}
.ws33{word-spacing:13.273200px;}
.wsb6{word-spacing:13.279200px;}
.ws101{word-spacing:13.370400px;}
.ws29{word-spacing:13.391400px;}
.ws1f{word-spacing:13.497000px;}
.ws109{word-spacing:13.582800px;}
.ws5b{word-spacing:13.613400px;}
.ws90{word-spacing:13.648800px;}
.wsba{word-spacing:13.710600px;}
.wsa8{word-spacing:13.728000px;}
.ws9c{word-spacing:13.846800px;}
.ws125{word-spacing:14.071200px;}
.ws10b{word-spacing:14.196600px;}
.ws2d{word-spacing:14.249400px;}
.ws11c{word-spacing:14.480400px;}
.wscd{word-spacing:14.823600px;}
.ws63{word-spacing:14.914800px;}
.ws55{word-spacing:14.941800px;}
.wsb5{word-spacing:15.001800px;}
.wsda{word-spacing:15.163200px;}
.ws122{word-spacing:15.173400px;}
.wsc3{word-spacing:15.498000px;}
.ws105{word-spacing:15.838200px;}
.wsf3{word-spacing:16.110600px;}
.wscc{word-spacing:17.008200px;}
.ws65{word-spacing:17.020800px;}
.ws2e{word-spacing:17.193000px;}
.ws78{word-spacing:17.721000px;}
.ws9b{word-spacing:17.826600px;}
.ws4a{word-spacing:18.360000px;}
.wsb7{word-spacing:18.697800px;}
.wsea{word-spacing:18.802800px;}
.ws34{word-spacing:18.835200px;}
.wsd7{word-spacing:19.035000px;}
.ws5f{word-spacing:19.056600px;}
.wsc5{word-spacing:19.229400px;}
.wsc9{word-spacing:19.503000px;}
.ws71{word-spacing:21.397200px;}
.ws87{word-spacing:21.984000px;}
.wsbb{word-spacing:22.215600px;}
.ws51{word-spacing:22.442400px;}
.wsf2{word-spacing:22.631400px;}
.ws6{word-spacing:23.199000px;}
.ws12f{word-spacing:24.334200px;}
.wsae{word-spacing:24.456600px;}
.ws72{word-spacing:28.848600px;}
.wse8{word-spacing:30.175200px;}
.ws37{word-spacing:32.640000px;}
.ws50{word-spacing:37.497600px;}
.ws6c{word-spacing:60.000000px;}
.ws4f{word-spacing:89.931600px;}
.ws60{word-spacing:96.714000px;}
.ws67{word-spacing:100.483200px;}
.wsec{word-spacing:100.828800px;}
.wsd4{word-spacing:101.725200px;}
.ws5c{word-spacing:101.930400px;}
._18{margin-left:-30.696600px;}
._5{margin-left:-24.697200px;}
._d{margin-left:-21.001200px;}
._a{margin-left:-18.697800px;}
._17{margin-left:-15.001800px;}
._16{margin-left:-12.698400px;}
._14{width:6.349200px;}
._c{width:8.764200px;}
._10{width:10.500600px;}
._8{width:12.243000px;}
._1{width:17.905800px;}
._12{width:19.958400px;}
._b{width:21.001200px;}
._3{width:22.030800px;}
._4{width:23.304600px;}
._6{width:24.981000px;}
._e{width:26.195400px;}
._2{width:27.416400px;}
._7{width:28.525200px;}
._0{width:29.997000px;}
._11{width:31.323600px;}
._13{width:32.439000px;}
._9{width:34.333200px;}
._f{width:35.428800px;}
._19{width:38.438400px;}
._1a{width:40.326000px;}
._15{width:119.080800px;}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:24.000000px;}
.fs5{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y159{bottom:98.870250px;}
.y12e{bottom:100.370250px;}
.y19f{bottom:101.870250px;}
.y94{bottom:103.370250px;}
.y29{bottom:104.870250px;}
.yda{bottom:106.370250px;}
.y56{bottom:109.370250px;}
.y164{bottom:112.370250px;}
.y12d{bottom:115.370250px;}
.y93{bottom:118.370250px;}
.y76{bottom:119.870250px;}
.yd8{bottom:121.370100px;}
.yd9{bottom:121.370250px;}
.y55{bottom:122.870250px;}
.y163{bottom:125.870250px;}
.y1bc{bottom:125.870400px;}
.yba{bottom:127.370250px;}
.y12c{bottom:128.870250px;}
.y13f{bottom:130.370250px;}
.y75{bottom:131.870250px;}
.yd7{bottom:133.370250px;}
.y10c{bottom:134.870250px;}
.y158{bottom:136.370250px;}
.y157{bottom:136.370400px;}
.y28{bottom:137.870250px;}
.yf6{bottom:139.370250px;}
.yf5{bottom:139.370400px;}
.y12b{bottom:143.870250px;}
.y13e{bottom:146.870250px;}
.yd6{bottom:148.370250px;}
.y179{bottom:148.370400px;}
.y74{bottom:149.870250px;}
.y27{bottom:152.870250px;}
.y156{bottom:154.370250px;}
.yb9{bottom:155.870250px;}
.yf4{bottom:157.370250px;}
.y73{bottom:160.370250px;}
.yd5{bottom:161.870250px;}
.y10b{bottom:163.370250px;}
.y26{bottom:166.370250px;}
.y92{bottom:167.870250px;}
.y191{bottom:169.370250px;}
.yb8{bottom:170.870250px;}
.y19e{bottom:172.370250px;}
.y19d{bottom:172.370400px;}
.y162{bottom:173.870250px;}
.y72{bottom:175.370250px;}
.yd4{bottom:176.870250px;}
.y10a{bottom:178.370250px;}
.y16e{bottom:179.870250px;}
.y25{bottom:181.370250px;}
.y12a{bottom:185.870250px;}
.y190{bottom:187.370250px;}
.y155{bottom:188.870250px;}
.yb7{bottom:190.370250px;}
.yb6{bottom:190.370400px;}
.yd3{bottom:191.870250px;}
.y109{bottom:193.370250px;}
.y24{bottom:194.870250px;}
.y54{bottom:196.370250px;}
.y129{bottom:203.870250px;}
.yb5{bottom:205.370250px;}
.y108{bottom:206.870250px;}
.y19c{bottom:208.370250px;}
.y91{bottom:209.870250px;}
.y161{bottom:209.870400px;}
.y53{bottom:211.370250px;}
.y1bb{bottom:214.370250px;}
.yb4{bottom:218.870250px;}
.y107{bottom:220.370250px;}
.y52{bottom:223.370250px;}
.y154{bottom:223.370400px;}
.y90{bottom:224.870250px;}
.y16d{bottom:226.370250px;}
.yf3{bottom:227.870250px;}
.y1ba{bottom:230.870250px;}
.y1b9{bottom:230.870400px;}
.yb3{bottom:233.870250px;}
.y106{bottom:235.370250px;}
.y128{bottom:236.870250px;}
.y51{bottom:238.370250px;}
.y23{bottom:239.870250px;}
.y22{bottom:239.870400px;}
.y153{bottom:241.370250px;}
.y178{bottom:242.870250px;}
.yf2{bottom:244.370250px;}
.yb2{bottom:247.370250px;}
.yd2{bottom:248.870250px;}
.y1b8{bottom:248.870400px;}
.y50{bottom:253.370250px;}
.y16c{bottom:254.870250px;}
.y127{bottom:256.370250px;}
.y21{bottom:257.870250px;}
.y20{bottom:257.870400px;}
.y19b{bottom:259.370250px;}
.y177{bottom:260.870250px;}
.yb1{bottom:262.370250px;}
.yf1{bottom:263.870250px;}
.y1b7{bottom:266.870250px;}
.y4f{bottom:268.370250px;}
.y126{bottom:272.870250px;}
.y152{bottom:274.370250px;}
.y1f{bottom:275.870250px;}
.yd1{bottom:277.370250px;}
.y19a{bottom:277.370700px;}
.yf0{bottom:278.870250px;}
.y160{bottom:280.370250px;}
.y4e{bottom:281.870250px;}
.y8f{bottom:283.370250px;}
.y1b6{bottom:284.870250px;}
.y71{bottom:289.370250px;}
.yb0{bottom:290.870250px;}
.y125{bottom:290.870400px;}
.y18f{bottom:292.370250px;}
.y1e{bottom:293.870250px;}
.y176{bottom:295.370250px;}
.y4d{bottom:296.870250px;}
.yd0{bottom:298.370250px;}
.y16b{bottom:299.870250px;}
.y1b5{bottom:301.370250px;}
.yaf{bottom:304.370250px;}
.y105{bottom:307.370250px;}
.y124{bottom:308.870250px;}
.y1d{bottom:310.370250px;}
.y1c{bottom:310.370400px;}
.y70{bottom:313.370250px;}
.yef{bottom:314.870250px;}
.y13d{bottom:314.870400px;}
.yee{bottom:314.870550px;}
.y180{bottom:316.370250px;}
.yae{bottom:319.370250px;}
.y104{bottom:320.870250px;}
.y4c{bottom:323.870250px;}
.y8e{bottom:325.370250px;}
.ycf{bottom:326.870250px;}
.y16a{bottom:326.870400px;}
.y1b{bottom:328.370250px;}
.y6f{bottom:329.870250px;}
.y1a6{bottom:331.370250px;}
.yad{bottom:332.870250px;}
.y17f{bottom:332.870400px;}
.yed{bottom:334.370250px;}
.y103{bottom:335.870250px;}
.y1b4{bottom:337.370250px;}
.y4b{bottom:338.870250px;}
.yce{bottom:341.870250px;}
.y123{bottom:343.370250px;}
.y122{bottom:343.370400px;}
.y1a{bottom:346.370250px;}
.y6e{bottom:347.870250px;}
.y13c{bottom:349.370250px;}
.y13b{bottom:349.370400px;}
.y102{bottom:350.870250px;}
.y151{bottom:352.370250px;}
.y4a{bottom:353.870250px;}
.ycd{bottom:355.370250px;}
.y18d{bottom:359.869650px;}
.y18e{bottom:359.870250px;}
.y121{bottom:361.370250px;}
.y19{bottom:364.370250px;}
.y18{bottom:364.370400px;}
.y175{bottom:365.870250px;}
.y8d{bottom:367.370250px;}
.y15f{bottom:368.870250px;}
.ycc{bottom:370.370250px;}
.y49{bottom:371.870250px;}
.y150{bottom:374.870250px;}
.yac{bottom:376.370250px;}
.y101{bottom:379.370250px;}
.y8c{bottom:380.870250px;}
.y18c{bottom:380.870400px;}
.y17{bottom:382.370250px;}
.y6d{bottom:383.870250px;}
.yec{bottom:385.370250px;}
.y17e{bottom:385.370550px;}
.y15e{bottom:386.870250px;}
.y14f{bottom:388.370250px;}
.yab{bottom:391.370250px;}
.y120{bottom:395.870250px;}
.y8b{bottom:397.370250px;}
.ycb{bottom:398.870250px;}
.y16{bottom:400.370250px;}
.y13a{bottom:401.870250px;}
.y14e{bottom:403.370250px;}
.yaa{bottom:404.870250px;}
.y1a5{bottom:406.370250px;}
.y1b3{bottom:407.870250px;}
.y18b{bottom:409.370250px;}
.y8a{bottom:410.870250px;}
.y11f{bottom:413.870250px;}
.y15{bottom:416.870250px;}
.y6c{bottom:418.370250px;}
.ya9{bottom:419.870250px;}
.y48{bottom:421.370250px;}
.y199{bottom:422.870250px;}
.y18a{bottom:424.370250px;}
.y89{bottom:425.870250px;}
.y11e{bottom:431.870250px;}
.ya8{bottom:433.370250px;}
.y14{bottom:434.870250px;}
.y47{bottom:439.370250px;}
.y198{bottom:440.870250px;}
.y197{bottom:440.870400px;}
.y1b2{bottom:443.870250px;}
.ya7{bottom:448.370250px;}
.y11d{bottom:449.870250px;}
.y11c{bottom:449.870400px;}
.y13{bottom:451.370250px;}
.y189{bottom:452.870250px;}
.y88{bottom:454.370250px;}
.y139{bottom:455.870250px;}
.y46{bottom:457.370250px;}
.y195{bottom:458.869650px;}
.y196{bottom:458.870250px;}
.y1b1{bottom:460.370250px;}
.ya6{bottom:461.870250px;}
.y1a4{bottom:463.370250px;}
.y1a3{bottom:463.370400px;}
.yca{bottom:464.870250px;}
.y174{bottom:466.370250px;}
.y11b{bottom:467.870250px;}
.y12{bottom:470.870250px;}
.y87{bottom:472.370250px;}
.y15d{bottom:473.870250px;}
.y45{bottom:475.370250px;}
.y100{bottom:475.370400px;}
.ya5{bottom:476.870250px;}
.yeb{bottom:478.370250px;}
.yc9{bottom:479.870250px;}
.y188{bottom:481.370250px;}
.y173{bottom:482.870250px;}
.y11a{bottom:485.870250px;}
.y11{bottom:487.370250px;}
.y44{bottom:491.870250px;}
.y15c{bottom:491.870550px;}
.y6b{bottom:493.370250px;}
.yc8{bottom:493.370400px;}
.y187{bottom:494.870250px;}
.y1a2{bottom:499.370250px;}
.y119{bottom:503.870250px;}
.y10{bottom:505.370250px;}
.y6a{bottom:508.370250px;}
.y138{bottom:508.370400px;}
.y43{bottom:509.870250px;}
.y42{bottom:509.870400px;}
.y15b{bottom:511.370250px;}
.y1b0{bottom:512.870250px;}
.y1a1{bottom:517.370250px;}
.yea{bottom:518.870250px;}
.y118{bottom:520.370250px;}
.y14d{bottom:521.870250px;}
.yf{bottom:523.370250px;}
.y69{bottom:526.370250px;}
.y41{bottom:527.870250px;}
.y1af{bottom:530.870250px;}
.y1ae{bottom:530.870400px;}
.ye9{bottom:533.870250px;}
.yc7{bottom:536.870250px;}
.y86{bottom:538.370250px;}
.y14c{bottom:539.870250px;}
.ye{bottom:541.370250px;}
.y137{bottom:542.870250px;}
.y68{bottom:544.370250px;}
.y40{bottom:545.870250px;}
.ye8{bottom:548.870250px;}
.yc6{bottom:551.870250px;}
.ya4{bottom:553.370250px;}
.y186{bottom:554.870250px;}
.y85{bottom:556.370250px;}
.yd{bottom:557.870250px;}
.y136{bottom:560.870250px;}
.y135{bottom:560.870400px;}
.y3f{bottom:562.370250px;}
.ye7{bottom:565.370250px;}
.ya3{bottom:566.870250px;}
.y84{bottom:572.870250px;}
.y83{bottom:572.870400px;}
.yc{bottom:575.870250px;}
.y172{bottom:577.370250px;}
.yc5{bottom:578.870250px;}
.y3e{bottom:580.370250px;}
.ya2{bottom:581.870250px;}
.y1ad{bottom:583.370250px;}
.y185{bottom:589.370250px;}
.y184{bottom:589.370550px;}
.y82{bottom:590.870250px;}
.ye6{bottom:592.370250px;}
.yb{bottom:593.870250px;}
.y67{bottom:596.870250px;}
.y3d{bottom:598.370250px;}
.yc4{bottom:599.870250px;}
.y1ac{bottom:601.370250px;}
.ya1{bottom:602.870250px;}
.y117{bottom:604.370250px;}
.ye5{bottom:607.370250px;}
.y17d{bottom:608.870250px;}
.y14b{bottom:610.370250px;}
.ya{bottom:611.870250px;}
.y134{bottom:614.870250px;}
.y3c{bottom:616.370250px;}
.yc3{bottom:617.870250px;}
.y116{bottom:619.370250px;}
.ye4{bottom:620.870250px;}
.y81{bottom:622.370250px;}
.y183{bottom:625.370250px;}
.y194{bottom:626.870250px;}
.y14a{bottom:628.370250px;}
.y9{bottom:629.870250px;}
.ya0{bottom:631.370250px;}
.y3b{bottom:632.870250px;}
.y66{bottom:632.870400px;}
.ye3{bottom:634.370250px;}
.yff{bottom:635.870250px;}
.y1ab{bottom:635.870400px;}
.y80{bottom:637.370250px;}
.y169{bottom:640.370250px;}
.y171{bottom:641.870250px;}
.y182{bottom:643.370250px;}
.y9f{bottom:644.870250px;}
.y193{bottom:644.870400px;}
.y8{bottom:646.370250px;}
.y133{bottom:649.370250px;}
.y3a{bottom:650.870250px;}
.y65{bottom:650.870400px;}
.ye2{bottom:653.870250px;}
.yc2{bottom:656.870250px;}
.y7f{bottom:658.370250px;}
.y9e{bottom:659.870250px;}
.y168{bottom:662.870250px;}
.y7{bottom:664.370250px;}
.y132{bottom:667.370250px;}
.y64{bottom:668.870250px;}
.y1aa{bottom:670.370250px;}
.y39{bottom:671.870250px;}
.y7e{bottom:673.370250px;}
.y9d{bottom:674.870250px;}
.ye1{bottom:676.370250px;}
.y1c1{bottom:677.870250px;}
.y181{bottom:679.370250px;}
.y149{bottom:680.870250px;}
.y131{bottom:683.870250px;}
.y17c{bottom:685.370250px;}
.y63{bottom:686.870250px;}
.y38{bottom:688.370250px;}
.y37{bottom:688.370400px;}
.y167{bottom:689.870250px;}
.y115{bottom:692.870250px;}
.ye0{bottom:697.370250px;}
.y148{bottom:698.870250px;}
.yc1{bottom:700.370250px;}
.y7d{bottom:701.870250px;}
.y62{bottom:703.370250px;}
.yfe{bottom:704.870250px;}
.y36{bottom:706.370250px;}
.y1c0{bottom:712.370250px;}
.y6{bottom:713.870250px;}
.yc0{bottom:715.370250px;}
.y7c{bottom:716.870250px;}
.y147{bottom:716.870400px;}
.y9c{bottom:718.370250px;}
.y130{bottom:719.870250px;}
.y61{bottom:721.370250px;}
.yfd{bottom:722.870250px;}
.y35{bottom:724.370250px;}
.y1a9{bottom:725.870250px;}
.ybf{bottom:728.870250px;}
.y5{bottom:730.370250px;}
.ydf{bottom:731.870250px;}
.y9b{bottom:733.370250px;}
.y146{bottom:734.870250px;}
.y12f{bottom:736.370250px;}
.y60{bottom:737.870250px;}
.yfc{bottom:739.370250px;}
.yfb{bottom:739.370550px;}
.y34{bottom:742.370250px;}
.ybe{bottom:743.870250px;}
.y7b{bottom:745.370250px;}
.y9a{bottom:746.870250px;}
.y145{bottom:751.370250px;}
.y170{bottom:752.870250px;}
.y166{bottom:754.370250px;}
.y5f{bottom:755.870250px;}
.ybd{bottom:757.370250px;}
.y4{bottom:758.870250px;}
.y33{bottom:760.370250px;}
.y32{bottom:760.370400px;}
.y1bf{bottom:764.870250px;}
.y144{bottom:769.370250px;}
.y114{bottom:770.870250px;}
.ybc{bottom:772.370250px;}
.y5e{bottom:773.870250px;}
.yde{bottom:775.370250px;}
.y3{bottom:776.870250px;}
.y31{bottom:778.370250px;}
.y15a{bottom:781.370250px;}
.y1be{bottom:782.870250px;}
.y7a{bottom:787.370250px;}
.y99{bottom:788.870250px;}
.y165{bottom:788.870400px;}
.ydd{bottom:790.370250px;}
.y5d{bottom:791.870250px;}
.yfa{bottom:793.370250px;}
.y30{bottom:794.870250px;}
.y79{bottom:800.870250px;}
.y98{bottom:803.870250px;}
.y143{bottom:805.370250px;}
.y113{bottom:806.870250px;}
.y192{bottom:806.870400px;}
.y1a0{bottom:808.370250px;}
.y5c{bottom:809.870250px;}
.yf9{bottom:811.370250px;}
.y2f{bottom:812.870250px;}
.ybb{bottom:814.370250px;}
.y78{bottom:815.870250px;}
.y97{bottom:817.370250px;}
.ydc{bottom:818.870250px;}
.y17b{bottom:820.370250px;}
.y142{bottom:823.370250px;}
.y112{bottom:824.870250px;}
.y5b{bottom:826.370250px;}
.y16f{bottom:827.870250px;}
.y2{bottom:829.370250px;}
.y2e{bottom:830.870250px;}
.y2d{bottom:830.870400px;}
.y17a{bottom:835.370250px;}
.y141{bottom:841.370250px;}
.y111{bottom:842.870250px;}
.y110{bottom:842.870400px;}
.y5a{bottom:844.370250px;}
.y96{bottom:845.870250px;}
.yf8{bottom:847.370250px;}
.y2c{bottom:848.870250px;}
.ydb{bottom:851.870250px;}
.y1{bottom:856.370250px;}
.y140{bottom:859.370250px;}
.y10f{bottom:860.870250px;}
.y59{bottom:862.370250px;}
.y77{bottom:863.870250px;}
.y95{bottom:865.370250px;}
.y2b{bottom:866.870250px;}
.y1bd{bottom:869.870250px;}
.y10e{bottom:898.370250px;}
.y10d{bottom:899.870250px;}
.y57{bottom:901.370250px;}
.y58{bottom:902.870250px;}
.yf7{bottom:904.370250px;}
.y2a{bottom:905.870250px;}
.y1a7{bottom:907.370250px;}
.y1a8{bottom:908.870250px;}
.hb{height:25.031250px;}
.h7{height:31.289062px;}
.ha{height:35.314453px;}
.h5{height:35.332031px;}
.hd{height:36.281250px;}
.h11{height:37.546875px;}
.hc{height:43.804688px;}
.h9{height:47.085938px;}
.h4{height:50.062500px;}
.he{height:52.971680px;}
.hf{height:52.998047px;}
.h8{height:56.320312px;}
.h6{height:58.857422px;}
.h10{height:62.578125px;}
.h3{height:64.775391px;}
.h12{height:86.322712px;}
.h1{height:105.943359px;}
.h2{height:108.843750px;}
.h0{height:1020.000000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x16e{left:96.460500px;}
.x13e{left:97.960500px;}
.x140{left:99.460500px;}
.x148{left:100.960500px;}
.x15c{left:102.460500px;}
.x168{left:103.961100px;}
.x9{left:105.460500px;}
.x26{left:106.960500px;}
.x71{left:108.460500px;}
.x171{left:109.960500px;}
.xd4{left:111.460500px;}
.x16b{left:112.960500px;}
.x16f{left:114.460500px;}
.x14c{left:115.960500px;}
.x147{left:117.460500px;}
.xf9{left:118.960500px;}
.xdc{left:120.460500px;}
.xda{left:121.960500px;}
.x151{left:123.460500px;}
.x9a{left:124.960500px;}
.x80{left:126.460500px;}
.xc0{left:127.960500px;}
.xae{left:129.460500px;}
.x1c{left:130.960145px;}
.x56{left:132.460500px;}
.xa7{left:133.960500px;}
.x72{left:135.460500px;}
.x67{left:136.960500px;}
.xc1{left:138.460500px;}
.xa{left:139.960500px;}
.x119{left:141.460500px;}
.x88{left:142.960500px;}
.x103{left:144.460500px;}
.x32{left:145.960500px;}
.x132{left:147.460500px;}
.x11f{left:148.960500px;}
.x1{left:150.460500px;}
.xdf{left:151.960500px;}
.x110{left:153.460500px;}
.x134{left:154.960500px;}
.x4c{left:156.460500px;}
.x14f{left:157.960500px;}
.x27{left:159.460500px;}
.x13a{left:160.960500px;}
.x6a{left:162.460500px;}
.xc2{left:163.960500px;}
.x3a{left:165.460500px;}
.x164{left:166.960500px;}
.x11b{left:168.460500px;}
.x33{left:169.960500px;}
.x62{left:171.460500px;}
.x14a{left:172.960500px;}
.x150{left:174.460500px;}
.x8d{left:175.960500px;}
.x116{left:177.460500px;}
.x78{left:178.960500px;}
.x81{left:180.460500px;}
.x106{left:181.960500px;}
.xfa{left:183.460500px;}
.x2{left:184.960500px;}
.x11c{left:186.460500px;}
.x43{left:187.960500px;}
.xed{left:189.460500px;}
.x105{left:190.960500px;}
.x9b{left:192.460500px;}
.xa2{left:193.960500px;}
.x57{left:195.460500px;}
.x136{left:196.960500px;}
.x1d{left:198.460500px;}
.xa8{left:199.960500px;}
.xbf{left:201.460500px;}
.x79{left:202.960500px;}
.x93{left:204.460500px;}
.x3b{left:205.960500px;}
.x157{left:207.460500px;}
.x44{left:208.960500px;}
.xe6{left:210.460500px;}
.x149{left:211.960500px;}
.x6b{left:213.460500px;}
.x34{left:214.960500px;}
.x28{left:216.460500px;}
.x123{left:217.960500px;}
.x63{left:219.460500px;}
.x68{left:220.960500px;}
.x8e{left:222.460500px;}
.x89{left:223.960500px;}
.x101{left:225.460500px;}
.x94{left:226.960500px;}
.x10b{left:228.460500px;}
.x29{left:229.960500px;}
.xaf{left:231.460500px;}
.x4d{left:232.960500px;}
.x58{left:234.460500px;}
.x35{left:235.960500px;}
.x111{left:237.460500px;}
.x1e{left:238.960500px;}
.x137{left:240.460500px;}
.x112{left:241.960500px;}
.x3c{left:243.460500px;}
.xcd{left:244.960500px;}
.xbb{left:246.460500px;}
.x133{left:247.960500px;}
.x156{left:249.460500px;}
.xee{left:250.960500px;}
.xe0{left:252.460500px;}
.x9c{left:253.960500px;}
.xf5{left:255.460500px;}
.x95{left:256.960500px;}
.x7a{left:258.460500px;}
.x113{left:259.960500px;}
.x73{left:261.460500px;}
.xa9{left:262.960500px;}
.x153{left:264.460500px;}
.xb{left:265.960500px;}
.x8a{left:267.460500px;}
.x4e{left:268.960500px;}
.x2a{left:270.460500px;}
.x146{left:271.960500px;}
.xc3{left:273.460500px;}
.xef{left:274.960500px;}
.x45{left:276.460500px;}
.x7b{left:277.960500px;}
.xc8{left:279.460500px;}
.x6c{left:280.960500px;}
.x74{left:282.460500px;}
.x3{left:283.960500px;}
.x8b{left:285.460500px;}
.x13{left:286.960500px;}
.xb0{left:288.460500px;}
.x19{left:289.960500px;}
.x126{left:291.460500px;}
.x138{left:292.960500px;}
.xd5{left:294.460500px;}
.xc9{left:295.960500px;}
.xc{left:297.460500px;}
.x8f{left:298.960500px;}
.x13f{left:300.460500px;}
.x59{left:301.960500px;}
.xb7{left:303.460500px;}
.x12a{left:304.960500px;}
.xb1{left:306.460500px;}
.xd1{left:307.960500px;}
.xbc{left:309.460500px;}
.x17{left:310.960500px;}
.x2b{left:312.460500px;}
.x102{left:313.960500px;}
.x3d{left:315.460500px;}
.x12f{left:316.960500px;}
.x4{left:318.460500px;}
.xdb{left:319.960500px;}
.xf0{left:321.460500px;}
.x46{left:322.960500px;}
.x1f{left:324.460500px;}
.x14e{left:325.960500px;}
.x9d{left:327.460500px;}
.x5a{left:328.960500px;}
.xd{left:330.460500px;}
.x14{left:331.960500px;}
.x6d{left:333.460500px;}
.x36{left:334.960500px;}
.x124{left:336.460500px;}
.x4f{left:337.960500px;}
.x127{left:339.460500px;}
.xce{left:340.960500px;}
.x82{left:342.460500px;}
.x108{left:343.960500px;}
.x20{left:345.460500px;}
.x130{left:346.960500px;}
.xb3{left:348.460500px;}
.x155{left:349.960500px;}
.x7c{left:351.460500px;}
.xc4{left:352.960500px;}
.xd6{left:354.460500px;}
.xfe{left:355.960500px;}
.x5{left:357.460500px;}
.x3e{left:358.960500px;}
.xf2{left:360.460500px;}
.xfb{left:361.960500px;}
.x64{left:363.460500px;}
.x135{left:364.960500px;}
.x142{left:366.460500px;}
.x5b{left:367.960500px;}
.x143{left:369.460500px;}
.x75{left:370.960500px;}
.xa3{left:372.460500px;}
.x11d{left:373.960500px;}
.x18{left:375.460500px;}
.xd2{left:376.960500px;}
.x16{left:378.460500px;}
.x90{left:379.960500px;}
.x1a{left:381.460500px;}
.x47{left:382.960500px;}
.xe{left:384.460500px;}
.x2c{left:385.960500px;}
.xb4{left:387.460500px;}
.x3f{left:388.960500px;}
.xaa{left:390.460500px;}
.x13b{left:391.960500px;}
.x15{left:393.460500px;}
.xfc{left:394.960500px;}
.x5c{left:396.460500px;}
.xe1{left:397.960500px;}
.x6e{left:399.460500px;}
.xb8{left:400.960500px;}
.x1b{left:402.460500px;}
.x50{left:403.960500px;}
.xca{left:405.460500px;}
.x48{left:406.960500px;}
.x2d{left:408.460500px;}
.x83{left:409.960500px;}
.x10c{left:411.460500px;}
.xa4{left:412.960500px;}
.x9e{left:414.460500px;}
.x51{left:415.960500px;}
.xf{left:417.460500px;}
.x21{left:418.960500px;}
.x84{left:420.460500px;}
.x128{left:421.960500px;}
.x12b{left:423.460500px;}
.x13c{left:424.960500px;}
.xb5{left:426.460500px;}
.xc5{left:427.960500px;}
.x6f{left:429.460500px;}
.xf1{left:430.960500px;}
.x5d{left:432.460500px;}
.xd7{left:433.960500px;}
.x104{left:435.460500px;}
.x12c{left:436.960500px;}
.x7d{left:438.460500px;}
.x10d{left:439.960500px;}
.x96{left:441.460500px;}
.x10{left:442.960500px;}
.x120{left:444.460500px;}
.xdd{left:445.960500px;}
.x109{left:447.460500px;}
.x117{left:448.960500px;}
.x22{left:450.460500px;}
.x5e{left:451.960500px;}
.xf6{left:453.460500px;}
.x6{left:454.960500px;}
.x2e{left:456.460500px;}
.x139{left:457.960500px;}
.x9f{left:459.460500px;}
.xcb{left:460.960500px;}
.xe7{left:462.460500px;}
.x65{left:463.960500px;}
.x40{left:465.460500px;}
.xb2{left:466.960500px;}
.x131{left:468.460500px;}
.x2f{left:469.960500px;}
.xb6{left:471.460500px;}
.x152{left:472.960500px;}
.xab{left:474.460500px;}
.xe8{left:475.960500px;}
.xf3{left:477.460500px;}
.xec{left:478.960500px;}
.x76{left:480.460500px;}
.xa5{left:481.960500px;}
.x49{left:483.460500px;}
.x12e{left:484.960500px;}
.x85{left:486.460500px;}
.x41{left:487.960500px;}
.x7{left:489.460500px;}
.x7e{left:490.960500px;}
.x12d{left:492.460500px;}
.x37{left:493.960500px;}
.x114{left:495.460500px;}
.xd8{left:496.960500px;}
.x121{left:498.460500px;}
.xa6{left:499.960500px;}
.x15b{left:501.460500px;}
.x52{left:502.960500px;}
.x14d{left:504.460500px;}
.x10a{left:505.960500px;}
.x66{left:507.460500px;}
.x23{left:508.960500px;}
.xcc{left:510.460500px;}
.x11a{left:511.960500px;}
.xc6{left:513.460500px;}
.x8c{left:514.960500px;}
.x14b{left:516.460500px;}
.x8{left:517.960500px;}
.x91{left:519.460500px;}
.x97{left:520.960500px;}
.x69{left:522.460500px;}
.x15a{left:523.960500px;}
.x7f{left:525.460500px;}
.x4a{left:526.960500px;}
.x5f{left:528.460500px;}
.xa0{left:529.960500px;}
.xc7{left:531.460500px;}
.xbd{left:532.960500px;}
.xac{left:534.460500px;}
.x24{left:535.960500px;}
.xf4{left:537.460500px;}
.x98{left:538.960500px;}
.x30{left:540.460500px;}
.x86{left:541.960500px;}
.x11{left:543.460500px;}
.x60{left:544.960500px;}
.x42{left:546.460500px;}
.xe3{left:547.960500px;}
.xfd{left:549.460500px;}
.xa1{left:550.960500px;}
.xe9{left:552.460500px;}
.xad{left:553.960500px;}
.x122{left:555.460500px;}
.x118{left:556.960500px;}
.x87{left:558.460500px;}
.x15e{left:559.960500px;}
.xcf{left:561.460500px;}
.x10e{left:562.960500px;}
.xea{left:564.460500px;}
.x53{left:565.960500px;}
.x154{left:567.460500px;}
.x70{left:568.960500px;}
.xff{left:570.460500px;}
.x107{left:571.960500px;}
.x145{left:573.460500px;}
.xd0{left:574.960500px;}
.xf7{left:576.460500px;}
.x77{left:577.960500px;}
.xbe{left:579.460500px;}
.x12{left:580.960500px;}
.x92{left:582.460500px;}
.x54{left:583.960500px;}
.xe4{left:585.460500px;}
.x38{left:586.960500px;}
.x115{left:588.460500px;}
.xd3{left:589.960500px;}
.x15f{left:591.460500px;}
.x25{left:592.960500px;}
.x13d{left:594.460500px;}
.x160{left:595.960500px;}
.x31{left:597.460500px;}
.x61{left:598.960500px;}
.x4b{left:600.460500px;}
.xb9{left:601.960500px;}
.x141{left:603.460500px;}
.xd9{left:604.960500px;}
.x39{left:606.460500px;}
.x169{left:607.960500px;}
.x99{left:609.460500px;}
.x11e{left:610.960500px;}
.xe2{left:612.460500px;}
.x144{left:613.842900px;}
.x129{left:615.460500px;}
.x161{left:617.029800px;}
.xeb{left:618.460500px;}
.x10f{left:619.960500px;}
.xf8{left:621.460500px;}
.x125{left:622.960500px;}
.x55{left:624.016800px;}
.xba{left:625.954500px;}
.x15d{left:627.460500px;}
.xe5{left:628.960500px;}
.x162{left:630.460500px;}
.x159{left:631.960500px;}
.x16c{left:633.460500px;}
.x100{left:634.728150px;}
.xde{left:636.187800px;}
.x16d{left:637.960500px;}
.x16a{left:640.230450px;}
.x166{left:641.553600px;}
.x167{left:642.796200px;}
.x165{left:643.831350px;}
.x163{left:645.140700px;}
.x158{left:646.313100px;}
.x170{left:647.542200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.668800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:11.287467pt;}
.ls7{letter-spacing:13.334933pt;}
.ls2{letter-spacing:16.620267pt;}
.lsa{letter-spacing:17.336000pt;}
.ls5{letter-spacing:18.667200pt;}
.ls3{letter-spacing:18.667733pt;}
.ls1{letter-spacing:21.953067pt;}
.ls6{letter-spacing:24.000533pt;}
.ls8{letter-spacing:27.285867pt;}
.ls9{letter-spacing:30.665067pt;}
.ws111{word-spacing:-41.952533pt;}
.ws1d{word-spacing:-36.619733pt;}
.ws6a{word-spacing:-33.334400pt;}
.wsfb{word-spacing:-32.011200pt;}
.ws3f{word-spacing:-31.286933pt;}
.ws107{word-spacing:-28.001600pt;}
.wsf0{word-spacing:-25.954133pt;}
.ws2b{word-spacing:-14.666667pt;}
.ws64{word-spacing:-13.344000pt;}
.ws9a{word-spacing:-12.000000pt;}
.ws15{word-spacing:-3.074133pt;}
.ws8f{word-spacing:-3.021333pt;}
.ws115{word-spacing:-2.669333pt;}
.ws124{word-spacing:-2.158933pt;}
.ws25{word-spacing:-2.047467pt;}
.ws99{word-spacing:-1.531733pt;}
.ws73{word-spacing:-1.372800pt;}
.ws10{word-spacing:-1.331733pt;}
.wsdb{word-spacing:-1.322667pt;}
.ws8a{word-spacing:-1.296000pt;}
.wsa7{word-spacing:-1.220267pt;}
.wsd{word-spacing:-0.715733pt;}
.ws120{word-spacing:-0.557333pt;}
.wsb8{word-spacing:-0.510400pt;}
.wsf8{word-spacing:-0.463467pt;}
.ws12a{word-spacing:-0.457600pt;}
.wsb{word-spacing:-0.398933pt;}
.ws126{word-spacing:-0.269867pt;}
.ws1c{word-spacing:0.000000pt;}
.ws113{word-spacing:0.152533pt;}
.ws9d{word-spacing:0.193600pt;}
.ws47{word-spacing:0.320000pt;}
.ws43{word-spacing:0.357867pt;}
.wse4{word-spacing:0.404800pt;}
.ws133{word-spacing:0.528000pt;}
.ws102{word-spacing:0.586667pt;}
.wsb2{word-spacing:0.616000pt;}
.wsd2{word-spacing:0.692267pt;}
.wsf{word-spacing:0.727467pt;}
.ws54{word-spacing:0.830400pt;}
.wsc6{word-spacing:0.926933pt;}
.ws83{word-spacing:0.986667pt;}
.ws9e{word-spacing:1.026667pt;}
.ws22{word-spacing:1.085333pt;}
.ws3{word-spacing:1.208533pt;}
.ws11{word-spacing:1.249600pt;}
.ws3b{word-spacing:1.331733pt;}
.ws86{word-spacing:1.354667pt;}
.ws6d{word-spacing:1.390400pt;}
.ws130{word-spacing:1.490133pt;}
.ws12d{word-spacing:1.513600pt;}
.wsad{word-spacing:1.553067pt;}
.ws1e{word-spacing:1.642667pt;}
.ws17{word-spacing:1.664000pt;}
.wsb0{word-spacing:1.701333pt;}
.wse3{word-spacing:1.742400pt;}
.ws1b{word-spacing:1.757867pt;}
.wsd3{word-spacing:1.801067pt;}
.wsdc{word-spacing:1.834667pt;}
.ws40{word-spacing:1.853867pt;}
.ws32{word-spacing:1.886400pt;}
.ws7c{word-spacing:1.953600pt;}
.ws11f{word-spacing:2.006400pt;}
.wsb1{word-spacing:2.053333pt;}
.ws8{word-spacing:2.094400pt;}
.ws14{word-spacing:2.200000pt;}
.ws112{word-spacing:2.334933pt;}
.ws88{word-spacing:2.389333pt;}
.wsaa{word-spacing:2.419200pt;}
.ws21{word-spacing:2.505067pt;}
.wsa{word-spacing:2.510933pt;}
.ws36{word-spacing:2.534400pt;}
.wsce{word-spacing:2.552000pt;}
.wsb4{word-spacing:2.622400pt;}
.wsdd{word-spacing:2.635200pt;}
.ws66{word-spacing:2.644800pt;}
.ws117{word-spacing:2.886400pt;}
.ws79{word-spacing:2.945067pt;}
.ws7f{word-spacing:2.986133pt;}
.ws30{word-spacing:3.043200pt;}
.wsbc{word-spacing:3.074133pt;}
.ws114{word-spacing:3.232533pt;}
.ws3c{word-spacing:3.285333pt;}
.ws13{word-spacing:3.349867pt;}
.ws45{word-spacing:3.385067pt;}
.ws8b{word-spacing:3.408000pt;}
.wsdf{word-spacing:3.450667pt;}
.wsa2{word-spacing:3.496533pt;}
.wsaf{word-spacing:3.596267pt;}
.ws11d{word-spacing:3.608000pt;}
.ws12{word-spacing:3.643200pt;}
.ws7e{word-spacing:3.690133pt;}
.wse6{word-spacing:3.696000pt;}
.ws11b{word-spacing:3.707733pt;}
.ws8d{word-spacing:3.813333pt;}
.wsf9{word-spacing:3.872000pt;}
.wsbf{word-spacing:3.971733pt;}
.ws7a{word-spacing:4.001067pt;}
.wsd0{word-spacing:4.059733pt;}
.ws70{word-spacing:4.077333pt;}
.ws95{word-spacing:4.136000pt;}
.wsff{word-spacing:4.138667pt;}
.ws106{word-spacing:4.153600pt;}
.ws12b{word-spacing:4.171200pt;}
.ws26{word-spacing:4.312000pt;}
.ws24{word-spacing:4.329600pt;}
.ws89{word-spacing:4.334933pt;}
.wsde{word-spacing:4.370667pt;}
.wsfa{word-spacing:4.411733pt;}
.ws10f{word-spacing:4.464533pt;}
.ws1{word-spacing:4.617067pt;}
.wsb3{word-spacing:4.622933pt;}
.ws10e{word-spacing:4.634667pt;}
.ws1a{word-spacing:4.693333pt;}
.wse7{word-spacing:4.763733pt;}
.ws7b{word-spacing:4.781333pt;}
.ws11a{word-spacing:4.928000pt;}
.wsa1{word-spacing:4.980800pt;}
.ws116{word-spacing:5.021867pt;}
.ws10d{word-spacing:5.027733pt;}
.wsf5{word-spacing:5.080533pt;}
.ws31{word-spacing:5.126400pt;}
.ws4e{word-spacing:5.180267pt;}
.ws82{word-spacing:5.209017pt;}
.ws81{word-spacing:5.227200pt;}
.wsf1{word-spacing:5.285867pt;}
.ws39{word-spacing:5.326933pt;}
.wse5{word-spacing:5.344533pt;}
.ws93{word-spacing:5.350400pt;}
.wsed{word-spacing:5.379733pt;}
.ws6f{word-spacing:5.391467pt;}
.wsee{word-spacing:5.443200pt;}
.ws7d{word-spacing:5.485333pt;}
.ws75{word-spacing:5.491200pt;}
.ws92{word-spacing:5.544000pt;}
.ws100{word-spacing:5.683200pt;}
.ws20{word-spacing:5.796267pt;}
.wsab{word-spacing:5.845333pt;}
.ws46{word-spacing:5.884267pt;}
.ws131{word-spacing:6.013333pt;}
.wsf6{word-spacing:6.054400pt;}
.ws98{word-spacing:6.077867pt;}
.ws96{word-spacing:6.107200pt;}
.wsf7{word-spacing:6.113067pt;}
.ws103{word-spacing:6.183467pt;}
.ws41{word-spacing:6.277333pt;}
.wsc{word-spacing:6.306667pt;}
.ws2{word-spacing:6.312533pt;}
.ws110{word-spacing:6.359467pt;}
.ws9f{word-spacing:6.365333pt;}
.wse{word-spacing:6.418133pt;}
.wsc1{word-spacing:6.435733pt;}
.ws4b{word-spacing:6.528000pt;}
.ws121{word-spacing:6.547200pt;}
.wsfd{word-spacing:6.570667pt;}
.wsd1{word-spacing:6.605867pt;}
.ws62{word-spacing:6.614400pt;}
.ws4c{word-spacing:6.628800pt;}
.wsef{word-spacing:6.635200pt;}
.ws74{word-spacing:6.664533pt;}
.wscb{word-spacing:6.666667pt;}
.wsc8{word-spacing:6.682133pt;}
.wscf{word-spacing:6.723200pt;}
.ws5{word-spacing:6.776000pt;}
.wsf4{word-spacing:6.834667pt;}
.ws128{word-spacing:6.928533pt;}
.wse1{word-spacing:6.960000pt;}
.ws2a{word-spacing:6.975467pt;}
.ws10c{word-spacing:6.981333pt;}
.ws23{word-spacing:7.098667pt;}
.ws3a{word-spacing:7.128000pt;}
.wse0{word-spacing:7.157333pt;}
.ws27{word-spacing:7.286400pt;}
.wsbe{word-spacing:7.409600pt;}
.ws59{word-spacing:7.420800pt;}
.wsd8{word-spacing:7.538667pt;}
.ws119{word-spacing:7.585600pt;}
.wsa0{word-spacing:7.597333pt;}
.wseb{word-spacing:7.637333pt;}
.ws6b{word-spacing:7.644267pt;}
.wsac{word-spacing:7.722667pt;}
.wsfc{word-spacing:7.795200pt;}
.ws104{word-spacing:7.843733pt;}
.ws42{word-spacing:7.902400pt;}
.ws53{word-spacing:7.982400pt;}
.ws9{word-spacing:7.984533pt;}
.ws16{word-spacing:7.994667pt;}
.ws61{word-spacing:8.001600pt;}
.ws132{word-spacing:8.025600pt;}
.ws52{word-spacing:8.092800pt;}
.ws108{word-spacing:8.154667pt;}
.wsfe{word-spacing:8.277333pt;}
.ws3e{word-spacing:8.465600pt;}
.ws2f{word-spacing:8.505600pt;}
.ws94{word-spacing:8.524267pt;}
.ws8e{word-spacing:8.537600pt;}
.wsc7{word-spacing:8.571200pt;}
.ws91{word-spacing:8.770667pt;}
.wsa9{word-spacing:8.827200pt;}
.ws127{word-spacing:8.882133pt;}
.ws11e{word-spacing:8.906667pt;}
.ws57{word-spacing:8.928000pt;}
.ws7{word-spacing:8.987733pt;}
.ws44{word-spacing:9.081600pt;}
.wsbd{word-spacing:9.134400pt;}
.ws5d{word-spacing:9.244800pt;}
.ws76{word-spacing:9.333867pt;}
.wsc0{word-spacing:9.339733pt;}
.ws129{word-spacing:9.410133pt;}
.ws69{word-spacing:9.451200pt;}
.wse9{word-spacing:9.486400pt;}
.ws77{word-spacing:9.498133pt;}
.ws58{word-spacing:9.580800pt;}
.ws38{word-spacing:9.644800pt;}
.ws18{word-spacing:9.897600pt;}
.wsd5{word-spacing:9.907200pt;}
.ws0{word-spacing:9.949867pt;}
.ws8c{word-spacing:9.955200pt;}
.ws19{word-spacing:10.026667pt;}
.ws5a{word-spacing:10.051200pt;}
.ws28{word-spacing:10.155200pt;}
.ws80{word-spacing:10.233600pt;}
.ws97{word-spacing:10.260800pt;}
.ws56{word-spacing:10.276800pt;}
.wsb9{word-spacing:10.315200pt;}
.wsa4{word-spacing:10.413333pt;}
.ws123{word-spacing:10.419200pt;}
.ws48{word-spacing:10.425067pt;}
.ws49{word-spacing:10.513067pt;}
.wsca{word-spacing:10.518933pt;}
.wsa6{word-spacing:10.571733pt;}
.ws12c{word-spacing:10.601067pt;}
.ws85{word-spacing:10.624000pt;}
.wsa5{word-spacing:10.724267pt;}
.wsd6{word-spacing:10.753600pt;}
.ws68{word-spacing:10.766400pt;}
.wsc4{word-spacing:10.838400pt;}
.wse2{word-spacing:10.917867pt;}
.ws4d{word-spacing:10.924800pt;}
.ws6e{word-spacing:10.941333pt;}
.ws4{word-spacing:10.986667pt;}
.ws12e{word-spacing:11.070400pt;}
.ws3d{word-spacing:11.129067pt;}
.ws5e{word-spacing:11.136000pt;}
.ws2c{word-spacing:11.310933pt;}
.ws35{word-spacing:11.328000pt;}
.wsa3{word-spacing:11.352000pt;}
.wsc2{word-spacing:11.434133pt;}
.wsd9{word-spacing:11.440000pt;}
.ws84{word-spacing:11.510400pt;}
.ws118{word-spacing:11.692267pt;}
.ws10a{word-spacing:11.750933pt;}
.ws33{word-spacing:11.798400pt;}
.wsb6{word-spacing:11.803733pt;}
.ws101{word-spacing:11.884800pt;}
.ws29{word-spacing:11.903467pt;}
.ws1f{word-spacing:11.997333pt;}
.ws109{word-spacing:12.073600pt;}
.ws5b{word-spacing:12.100800pt;}
.ws90{word-spacing:12.132267pt;}
.wsba{word-spacing:12.187200pt;}
.wsa8{word-spacing:12.202667pt;}
.ws9c{word-spacing:12.308267pt;}
.ws125{word-spacing:12.507733pt;}
.ws10b{word-spacing:12.619200pt;}
.ws2d{word-spacing:12.666133pt;}
.ws11c{word-spacing:12.871467pt;}
.wscd{word-spacing:13.176533pt;}
.ws63{word-spacing:13.257600pt;}
.ws55{word-spacing:13.281600pt;}
.wsb5{word-spacing:13.334933pt;}
.wsda{word-spacing:13.478400pt;}
.ws122{word-spacing:13.487467pt;}
.wsc3{word-spacing:13.776000pt;}
.ws105{word-spacing:14.078400pt;}
.wsf3{word-spacing:14.320533pt;}
.wscc{word-spacing:15.118400pt;}
.ws65{word-spacing:15.129600pt;}
.ws2e{word-spacing:15.282667pt;}
.ws78{word-spacing:15.752000pt;}
.ws9b{word-spacing:15.845867pt;}
.ws4a{word-spacing:16.320000pt;}
.wsb7{word-spacing:16.620267pt;}
.wsea{word-spacing:16.713600pt;}
.ws34{word-spacing:16.742400pt;}
.wsd7{word-spacing:16.920000pt;}
.ws5f{word-spacing:16.939200pt;}
.wsc5{word-spacing:17.092800pt;}
.wsc9{word-spacing:17.336000pt;}
.ws71{word-spacing:19.019733pt;}
.ws87{word-spacing:19.541333pt;}
.wsbb{word-spacing:19.747200pt;}
.ws51{word-spacing:19.948800pt;}
.wsf2{word-spacing:20.116800pt;}
.ws6{word-spacing:20.621333pt;}
.ws12f{word-spacing:21.630400pt;}
.wsae{word-spacing:21.739200pt;}
.ws72{word-spacing:25.643200pt;}
.wse8{word-spacing:26.822400pt;}
.ws37{word-spacing:29.013333pt;}
.ws50{word-spacing:33.331200pt;}
.ws6c{word-spacing:53.333333pt;}
.ws4f{word-spacing:79.939200pt;}
.ws60{word-spacing:85.968000pt;}
.ws67{word-spacing:89.318400pt;}
.wsec{word-spacing:89.625600pt;}
.wsd4{word-spacing:90.422400pt;}
.ws5c{word-spacing:90.604800pt;}
._18{margin-left:-27.285867pt;}
._5{margin-left:-21.953067pt;}
._d{margin-left:-18.667733pt;}
._a{margin-left:-16.620267pt;}
._17{margin-left:-13.334933pt;}
._16{margin-left:-11.287467pt;}
._14{width:5.643733pt;}
._c{width:7.790400pt;}
._10{width:9.333867pt;}
._8{width:10.882667pt;}
._1{width:15.916267pt;}
._12{width:17.740800pt;}
._b{width:18.667733pt;}
._3{width:19.582933pt;}
._4{width:20.715200pt;}
._6{width:22.205333pt;}
._e{width:23.284800pt;}
._2{width:24.370133pt;}
._7{width:25.355733pt;}
._0{width:26.664000pt;}
._11{width:27.843200pt;}
._13{width:28.834667pt;}
._9{width:30.518400pt;}
._f{width:31.492267pt;}
._19{width:34.167467pt;}
._1a{width:35.845333pt;}
._15{width:105.849600pt;}
.fs8{font-size:21.333333pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:87.884667pt;}
.y12e{bottom:89.218000pt;}
.y19f{bottom:90.551333pt;}
.y94{bottom:91.884667pt;}
.y29{bottom:93.218000pt;}
.yda{bottom:94.551333pt;}
.y56{bottom:97.218000pt;}
.y164{bottom:99.884667pt;}
.y12d{bottom:102.551333pt;}
.y93{bottom:105.218000pt;}
.y76{bottom:106.551333pt;}
.yd8{bottom:107.884533pt;}
.yd9{bottom:107.884667pt;}
.y55{bottom:109.218000pt;}
.y163{bottom:111.884667pt;}
.y1bc{bottom:111.884800pt;}
.yba{bottom:113.218000pt;}
.y12c{bottom:114.551333pt;}
.y13f{bottom:115.884667pt;}
.y75{bottom:117.218000pt;}
.yd7{bottom:118.551333pt;}
.y10c{bottom:119.884667pt;}
.y158{bottom:121.218000pt;}
.y157{bottom:121.218133pt;}
.y28{bottom:122.551333pt;}
.yf6{bottom:123.884667pt;}
.yf5{bottom:123.884800pt;}
.y12b{bottom:127.884667pt;}
.y13e{bottom:130.551333pt;}
.yd6{bottom:131.884667pt;}
.y179{bottom:131.884800pt;}
.y74{bottom:133.218000pt;}
.y27{bottom:135.884667pt;}
.y156{bottom:137.218000pt;}
.yb9{bottom:138.551333pt;}
.yf4{bottom:139.884667pt;}
.y73{bottom:142.551333pt;}
.yd5{bottom:143.884667pt;}
.y10b{bottom:145.218000pt;}
.y26{bottom:147.884667pt;}
.y92{bottom:149.218000pt;}
.y191{bottom:150.551333pt;}
.yb8{bottom:151.884667pt;}
.y19e{bottom:153.218000pt;}
.y19d{bottom:153.218133pt;}
.y162{bottom:154.551333pt;}
.y72{bottom:155.884667pt;}
.yd4{bottom:157.218000pt;}
.y10a{bottom:158.551333pt;}
.y16e{bottom:159.884667pt;}
.y25{bottom:161.218000pt;}
.y12a{bottom:165.218000pt;}
.y190{bottom:166.551333pt;}
.y155{bottom:167.884667pt;}
.yb7{bottom:169.218000pt;}
.yb6{bottom:169.218133pt;}
.yd3{bottom:170.551333pt;}
.y109{bottom:171.884667pt;}
.y24{bottom:173.218000pt;}
.y54{bottom:174.551333pt;}
.y129{bottom:181.218000pt;}
.yb5{bottom:182.551333pt;}
.y108{bottom:183.884667pt;}
.y19c{bottom:185.218000pt;}
.y91{bottom:186.551333pt;}
.y161{bottom:186.551467pt;}
.y53{bottom:187.884667pt;}
.y1bb{bottom:190.551333pt;}
.yb4{bottom:194.551333pt;}
.y107{bottom:195.884667pt;}
.y52{bottom:198.551333pt;}
.y154{bottom:198.551467pt;}
.y90{bottom:199.884667pt;}
.y16d{bottom:201.218000pt;}
.yf3{bottom:202.551333pt;}
.y1ba{bottom:205.218000pt;}
.y1b9{bottom:205.218133pt;}
.yb3{bottom:207.884667pt;}
.y106{bottom:209.218000pt;}
.y128{bottom:210.551333pt;}
.y51{bottom:211.884667pt;}
.y23{bottom:213.218000pt;}
.y22{bottom:213.218133pt;}
.y153{bottom:214.551333pt;}
.y178{bottom:215.884667pt;}
.yf2{bottom:217.218000pt;}
.yb2{bottom:219.884667pt;}
.yd2{bottom:221.218000pt;}
.y1b8{bottom:221.218133pt;}
.y50{bottom:225.218000pt;}
.y16c{bottom:226.551333pt;}
.y127{bottom:227.884667pt;}
.y21{bottom:229.218000pt;}
.y20{bottom:229.218133pt;}
.y19b{bottom:230.551333pt;}
.y177{bottom:231.884667pt;}
.yb1{bottom:233.218000pt;}
.yf1{bottom:234.551333pt;}
.y1b7{bottom:237.218000pt;}
.y4f{bottom:238.551333pt;}
.y126{bottom:242.551333pt;}
.y152{bottom:243.884667pt;}
.y1f{bottom:245.218000pt;}
.yd1{bottom:246.551333pt;}
.y19a{bottom:246.551733pt;}
.yf0{bottom:247.884667pt;}
.y160{bottom:249.218000pt;}
.y4e{bottom:250.551333pt;}
.y8f{bottom:251.884667pt;}
.y1b6{bottom:253.218000pt;}
.y71{bottom:257.218000pt;}
.yb0{bottom:258.551333pt;}
.y125{bottom:258.551467pt;}
.y18f{bottom:259.884667pt;}
.y1e{bottom:261.218000pt;}
.y176{bottom:262.551333pt;}
.y4d{bottom:263.884667pt;}
.yd0{bottom:265.218000pt;}
.y16b{bottom:266.551333pt;}
.y1b5{bottom:267.884667pt;}
.yaf{bottom:270.551333pt;}
.y105{bottom:273.218000pt;}
.y124{bottom:274.551333pt;}
.y1d{bottom:275.884667pt;}
.y1c{bottom:275.884800pt;}
.y70{bottom:278.551333pt;}
.yef{bottom:279.884667pt;}
.y13d{bottom:279.884800pt;}
.yee{bottom:279.884933pt;}
.y180{bottom:281.218000pt;}
.yae{bottom:283.884667pt;}
.y104{bottom:285.218000pt;}
.y4c{bottom:287.884667pt;}
.y8e{bottom:289.218000pt;}
.ycf{bottom:290.551333pt;}
.y16a{bottom:290.551467pt;}
.y1b{bottom:291.884667pt;}
.y6f{bottom:293.218000pt;}
.y1a6{bottom:294.551333pt;}
.yad{bottom:295.884667pt;}
.y17f{bottom:295.884800pt;}
.yed{bottom:297.218000pt;}
.y103{bottom:298.551333pt;}
.y1b4{bottom:299.884667pt;}
.y4b{bottom:301.218000pt;}
.yce{bottom:303.884667pt;}
.y123{bottom:305.218000pt;}
.y122{bottom:305.218133pt;}
.y1a{bottom:307.884667pt;}
.y6e{bottom:309.218000pt;}
.y13c{bottom:310.551333pt;}
.y13b{bottom:310.551467pt;}
.y102{bottom:311.884667pt;}
.y151{bottom:313.218000pt;}
.y4a{bottom:314.551333pt;}
.ycd{bottom:315.884667pt;}
.y18d{bottom:319.884133pt;}
.y18e{bottom:319.884667pt;}
.y121{bottom:321.218000pt;}
.y19{bottom:323.884667pt;}
.y18{bottom:323.884800pt;}
.y175{bottom:325.218000pt;}
.y8d{bottom:326.551333pt;}
.y15f{bottom:327.884667pt;}
.ycc{bottom:329.218000pt;}
.y49{bottom:330.551333pt;}
.y150{bottom:333.218000pt;}
.yac{bottom:334.551333pt;}
.y101{bottom:337.218000pt;}
.y8c{bottom:338.551333pt;}
.y18c{bottom:338.551467pt;}
.y17{bottom:339.884667pt;}
.y6d{bottom:341.218000pt;}
.yec{bottom:342.551333pt;}
.y17e{bottom:342.551600pt;}
.y15e{bottom:343.884667pt;}
.y14f{bottom:345.218000pt;}
.yab{bottom:347.884667pt;}
.y120{bottom:351.884667pt;}
.y8b{bottom:353.218000pt;}
.ycb{bottom:354.551333pt;}
.y16{bottom:355.884667pt;}
.y13a{bottom:357.218000pt;}
.y14e{bottom:358.551333pt;}
.yaa{bottom:359.884667pt;}
.y1a5{bottom:361.218000pt;}
.y1b3{bottom:362.551333pt;}
.y18b{bottom:363.884667pt;}
.y8a{bottom:365.218000pt;}
.y11f{bottom:367.884667pt;}
.y15{bottom:370.551333pt;}
.y6c{bottom:371.884667pt;}
.ya9{bottom:373.218000pt;}
.y48{bottom:374.551333pt;}
.y199{bottom:375.884667pt;}
.y18a{bottom:377.218000pt;}
.y89{bottom:378.551333pt;}
.y11e{bottom:383.884667pt;}
.ya8{bottom:385.218000pt;}
.y14{bottom:386.551333pt;}
.y47{bottom:390.551333pt;}
.y198{bottom:391.884667pt;}
.y197{bottom:391.884800pt;}
.y1b2{bottom:394.551333pt;}
.ya7{bottom:398.551333pt;}
.y11d{bottom:399.884667pt;}
.y11c{bottom:399.884800pt;}
.y13{bottom:401.218000pt;}
.y189{bottom:402.551333pt;}
.y88{bottom:403.884667pt;}
.y139{bottom:405.218000pt;}
.y46{bottom:406.551333pt;}
.y195{bottom:407.884133pt;}
.y196{bottom:407.884667pt;}
.y1b1{bottom:409.218000pt;}
.ya6{bottom:410.551333pt;}
.y1a4{bottom:411.884667pt;}
.y1a3{bottom:411.884800pt;}
.yca{bottom:413.218000pt;}
.y174{bottom:414.551333pt;}
.y11b{bottom:415.884667pt;}
.y12{bottom:418.551333pt;}
.y87{bottom:419.884667pt;}
.y15d{bottom:421.218000pt;}
.y45{bottom:422.551333pt;}
.y100{bottom:422.551467pt;}
.ya5{bottom:423.884667pt;}
.yeb{bottom:425.218000pt;}
.yc9{bottom:426.551333pt;}
.y188{bottom:427.884667pt;}
.y173{bottom:429.218000pt;}
.y11a{bottom:431.884667pt;}
.y11{bottom:433.218000pt;}
.y44{bottom:437.218000pt;}
.y15c{bottom:437.218267pt;}
.y6b{bottom:438.551333pt;}
.yc8{bottom:438.551467pt;}
.y187{bottom:439.884667pt;}
.y1a2{bottom:443.884667pt;}
.y119{bottom:447.884667pt;}
.y10{bottom:449.218000pt;}
.y6a{bottom:451.884667pt;}
.y138{bottom:451.884800pt;}
.y43{bottom:453.218000pt;}
.y42{bottom:453.218133pt;}
.y15b{bottom:454.551333pt;}
.y1b0{bottom:455.884667pt;}
.y1a1{bottom:459.884667pt;}
.yea{bottom:461.218000pt;}
.y118{bottom:462.551333pt;}
.y14d{bottom:463.884667pt;}
.yf{bottom:465.218000pt;}
.y69{bottom:467.884667pt;}
.y41{bottom:469.218000pt;}
.y1af{bottom:471.884667pt;}
.y1ae{bottom:471.884800pt;}
.ye9{bottom:474.551333pt;}
.yc7{bottom:477.218000pt;}
.y86{bottom:478.551333pt;}
.y14c{bottom:479.884667pt;}
.ye{bottom:481.218000pt;}
.y137{bottom:482.551333pt;}
.y68{bottom:483.884667pt;}
.y40{bottom:485.218000pt;}
.ye8{bottom:487.884667pt;}
.yc6{bottom:490.551333pt;}
.ya4{bottom:491.884667pt;}
.y186{bottom:493.218000pt;}
.y85{bottom:494.551333pt;}
.yd{bottom:495.884667pt;}
.y136{bottom:498.551333pt;}
.y135{bottom:498.551467pt;}
.y3f{bottom:499.884667pt;}
.ye7{bottom:502.551333pt;}
.ya3{bottom:503.884667pt;}
.y84{bottom:509.218000pt;}
.y83{bottom:509.218133pt;}
.yc{bottom:511.884667pt;}
.y172{bottom:513.218000pt;}
.yc5{bottom:514.551333pt;}
.y3e{bottom:515.884667pt;}
.ya2{bottom:517.218000pt;}
.y1ad{bottom:518.551333pt;}
.y185{bottom:523.884667pt;}
.y184{bottom:523.884933pt;}
.y82{bottom:525.218000pt;}
.ye6{bottom:526.551333pt;}
.yb{bottom:527.884667pt;}
.y67{bottom:530.551333pt;}
.y3d{bottom:531.884667pt;}
.yc4{bottom:533.218000pt;}
.y1ac{bottom:534.551333pt;}
.ya1{bottom:535.884667pt;}
.y117{bottom:537.218000pt;}
.ye5{bottom:539.884667pt;}
.y17d{bottom:541.218000pt;}
.y14b{bottom:542.551333pt;}
.ya{bottom:543.884667pt;}
.y134{bottom:546.551333pt;}
.y3c{bottom:547.884667pt;}
.yc3{bottom:549.218000pt;}
.y116{bottom:550.551333pt;}
.ye4{bottom:551.884667pt;}
.y81{bottom:553.218000pt;}
.y183{bottom:555.884667pt;}
.y194{bottom:557.218000pt;}
.y14a{bottom:558.551333pt;}
.y9{bottom:559.884667pt;}
.ya0{bottom:561.218000pt;}
.y3b{bottom:562.551333pt;}
.y66{bottom:562.551467pt;}
.ye3{bottom:563.884667pt;}
.yff{bottom:565.218000pt;}
.y1ab{bottom:565.218133pt;}
.y80{bottom:566.551333pt;}
.y169{bottom:569.218000pt;}
.y171{bottom:570.551333pt;}
.y182{bottom:571.884667pt;}
.y9f{bottom:573.218000pt;}
.y193{bottom:573.218133pt;}
.y8{bottom:574.551333pt;}
.y133{bottom:577.218000pt;}
.y3a{bottom:578.551333pt;}
.y65{bottom:578.551467pt;}
.ye2{bottom:581.218000pt;}
.yc2{bottom:583.884667pt;}
.y7f{bottom:585.218000pt;}
.y9e{bottom:586.551333pt;}
.y168{bottom:589.218000pt;}
.y7{bottom:590.551333pt;}
.y132{bottom:593.218000pt;}
.y64{bottom:594.551333pt;}
.y1aa{bottom:595.884667pt;}
.y39{bottom:597.218000pt;}
.y7e{bottom:598.551333pt;}
.y9d{bottom:599.884667pt;}
.ye1{bottom:601.218000pt;}
.y1c1{bottom:602.551333pt;}
.y181{bottom:603.884667pt;}
.y149{bottom:605.218000pt;}
.y131{bottom:607.884667pt;}
.y17c{bottom:609.218000pt;}
.y63{bottom:610.551333pt;}
.y38{bottom:611.884667pt;}
.y37{bottom:611.884800pt;}
.y167{bottom:613.218000pt;}
.y115{bottom:615.884667pt;}
.ye0{bottom:619.884667pt;}
.y148{bottom:621.218000pt;}
.yc1{bottom:622.551333pt;}
.y7d{bottom:623.884667pt;}
.y62{bottom:625.218000pt;}
.yfe{bottom:626.551333pt;}
.y36{bottom:627.884667pt;}
.y1c0{bottom:633.218000pt;}
.y6{bottom:634.551333pt;}
.yc0{bottom:635.884667pt;}
.y7c{bottom:637.218000pt;}
.y147{bottom:637.218133pt;}
.y9c{bottom:638.551333pt;}
.y130{bottom:639.884667pt;}
.y61{bottom:641.218000pt;}
.yfd{bottom:642.551333pt;}
.y35{bottom:643.884667pt;}
.y1a9{bottom:645.218000pt;}
.ybf{bottom:647.884667pt;}
.y5{bottom:649.218000pt;}
.ydf{bottom:650.551333pt;}
.y9b{bottom:651.884667pt;}
.y146{bottom:653.218000pt;}
.y12f{bottom:654.551333pt;}
.y60{bottom:655.884667pt;}
.yfc{bottom:657.218000pt;}
.yfb{bottom:657.218267pt;}
.y34{bottom:659.884667pt;}
.ybe{bottom:661.218000pt;}
.y7b{bottom:662.551333pt;}
.y9a{bottom:663.884667pt;}
.y145{bottom:667.884667pt;}
.y170{bottom:669.218000pt;}
.y166{bottom:670.551333pt;}
.y5f{bottom:671.884667pt;}
.ybd{bottom:673.218000pt;}
.y4{bottom:674.551333pt;}
.y33{bottom:675.884667pt;}
.y32{bottom:675.884800pt;}
.y1bf{bottom:679.884667pt;}
.y144{bottom:683.884667pt;}
.y114{bottom:685.218000pt;}
.ybc{bottom:686.551333pt;}
.y5e{bottom:687.884667pt;}
.yde{bottom:689.218000pt;}
.y3{bottom:690.551333pt;}
.y31{bottom:691.884667pt;}
.y15a{bottom:694.551333pt;}
.y1be{bottom:695.884667pt;}
.y7a{bottom:699.884667pt;}
.y99{bottom:701.218000pt;}
.y165{bottom:701.218133pt;}
.ydd{bottom:702.551333pt;}
.y5d{bottom:703.884667pt;}
.yfa{bottom:705.218000pt;}
.y30{bottom:706.551333pt;}
.y79{bottom:711.884667pt;}
.y98{bottom:714.551333pt;}
.y143{bottom:715.884667pt;}
.y113{bottom:717.218000pt;}
.y192{bottom:717.218133pt;}
.y1a0{bottom:718.551333pt;}
.y5c{bottom:719.884667pt;}
.yf9{bottom:721.218000pt;}
.y2f{bottom:722.551333pt;}
.ybb{bottom:723.884667pt;}
.y78{bottom:725.218000pt;}
.y97{bottom:726.551333pt;}
.ydc{bottom:727.884667pt;}
.y17b{bottom:729.218000pt;}
.y142{bottom:731.884667pt;}
.y112{bottom:733.218000pt;}
.y5b{bottom:734.551333pt;}
.y16f{bottom:735.884667pt;}
.y2{bottom:737.218000pt;}
.y2e{bottom:738.551333pt;}
.y2d{bottom:738.551467pt;}
.y17a{bottom:742.551333pt;}
.y141{bottom:747.884667pt;}
.y111{bottom:749.218000pt;}
.y110{bottom:749.218133pt;}
.y5a{bottom:750.551333pt;}
.y96{bottom:751.884667pt;}
.yf8{bottom:753.218000pt;}
.y2c{bottom:754.551333pt;}
.ydb{bottom:757.218000pt;}
.y1{bottom:761.218000pt;}
.y140{bottom:763.884667pt;}
.y10f{bottom:765.218000pt;}
.y59{bottom:766.551333pt;}
.y77{bottom:767.884667pt;}
.y95{bottom:769.218000pt;}
.y2b{bottom:770.551333pt;}
.y1bd{bottom:773.218000pt;}
.y10e{bottom:798.551333pt;}
.y10d{bottom:799.884667pt;}
.y57{bottom:801.218000pt;}
.y58{bottom:802.551333pt;}
.yf7{bottom:803.884667pt;}
.y2a{bottom:805.218000pt;}
.y1a7{bottom:806.551333pt;}
.y1a8{bottom:807.884667pt;}
.hb{height:22.250000pt;}
.h7{height:27.812500pt;}
.ha{height:31.390625pt;}
.h5{height:31.406250pt;}
.hd{height:32.250000pt;}
.h11{height:33.375000pt;}
.hc{height:38.937500pt;}
.h9{height:41.854167pt;}
.h4{height:44.500000pt;}
.he{height:47.085938pt;}
.hf{height:47.109375pt;}
.h8{height:50.062500pt;}
.h6{height:52.317708pt;}
.h10{height:55.625000pt;}
.h3{height:57.578125pt;}
.h12{height:76.731300pt;}
.h1{height:94.171875pt;}
.h2{height:96.750000pt;}
.h0{height:906.666667pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x16e{left:85.742667pt;}
.x13e{left:87.076000pt;}
.x140{left:88.409333pt;}
.x148{left:89.742667pt;}
.x15c{left:91.076000pt;}
.x168{left:92.409867pt;}
.x9{left:93.742667pt;}
.x26{left:95.076000pt;}
.x71{left:96.409333pt;}
.x171{left:97.742667pt;}
.xd4{left:99.076000pt;}
.x16b{left:100.409333pt;}
.x16f{left:101.742667pt;}
.x14c{left:103.076000pt;}
.x147{left:104.409333pt;}
.xf9{left:105.742667pt;}
.xdc{left:107.076000pt;}
.xda{left:108.409333pt;}
.x151{left:109.742667pt;}
.x9a{left:111.076000pt;}
.x80{left:112.409333pt;}
.xc0{left:113.742667pt;}
.xae{left:115.076000pt;}
.x1c{left:116.409017pt;}
.x56{left:117.742667pt;}
.xa7{left:119.076000pt;}
.x72{left:120.409333pt;}
.x67{left:121.742667pt;}
.xc1{left:123.076000pt;}
.xa{left:124.409333pt;}
.x119{left:125.742667pt;}
.x88{left:127.076000pt;}
.x103{left:128.409333pt;}
.x32{left:129.742667pt;}
.x132{left:131.076000pt;}
.x11f{left:132.409333pt;}
.x1{left:133.742667pt;}
.xdf{left:135.076000pt;}
.x110{left:136.409333pt;}
.x134{left:137.742667pt;}
.x4c{left:139.076000pt;}
.x14f{left:140.409333pt;}
.x27{left:141.742667pt;}
.x13a{left:143.076000pt;}
.x6a{left:144.409333pt;}
.xc2{left:145.742667pt;}
.x3a{left:147.076000pt;}
.x164{left:148.409333pt;}
.x11b{left:149.742667pt;}
.x33{left:151.076000pt;}
.x62{left:152.409333pt;}
.x14a{left:153.742667pt;}
.x150{left:155.076000pt;}
.x8d{left:156.409333pt;}
.x116{left:157.742667pt;}
.x78{left:159.076000pt;}
.x81{left:160.409333pt;}
.x106{left:161.742667pt;}
.xfa{left:163.076000pt;}
.x2{left:164.409333pt;}
.x11c{left:165.742667pt;}
.x43{left:167.076000pt;}
.xed{left:168.409333pt;}
.x105{left:169.742667pt;}
.x9b{left:171.076000pt;}
.xa2{left:172.409333pt;}
.x57{left:173.742667pt;}
.x136{left:175.076000pt;}
.x1d{left:176.409333pt;}
.xa8{left:177.742667pt;}
.xbf{left:179.076000pt;}
.x79{left:180.409333pt;}
.x93{left:181.742667pt;}
.x3b{left:183.076000pt;}
.x157{left:184.409333pt;}
.x44{left:185.742667pt;}
.xe6{left:187.076000pt;}
.x149{left:188.409333pt;}
.x6b{left:189.742667pt;}
.x34{left:191.076000pt;}
.x28{left:192.409333pt;}
.x123{left:193.742667pt;}
.x63{left:195.076000pt;}
.x68{left:196.409333pt;}
.x8e{left:197.742667pt;}
.x89{left:199.076000pt;}
.x101{left:200.409333pt;}
.x94{left:201.742667pt;}
.x10b{left:203.076000pt;}
.x29{left:204.409333pt;}
.xaf{left:205.742667pt;}
.x4d{left:207.076000pt;}
.x58{left:208.409333pt;}
.x35{left:209.742667pt;}
.x111{left:211.076000pt;}
.x1e{left:212.409333pt;}
.x137{left:213.742667pt;}
.x112{left:215.076000pt;}
.x3c{left:216.409333pt;}
.xcd{left:217.742667pt;}
.xbb{left:219.076000pt;}
.x133{left:220.409333pt;}
.x156{left:221.742667pt;}
.xee{left:223.076000pt;}
.xe0{left:224.409333pt;}
.x9c{left:225.742667pt;}
.xf5{left:227.076000pt;}
.x95{left:228.409333pt;}
.x7a{left:229.742667pt;}
.x113{left:231.076000pt;}
.x73{left:232.409333pt;}
.xa9{left:233.742667pt;}
.x153{left:235.076000pt;}
.xb{left:236.409333pt;}
.x8a{left:237.742667pt;}
.x4e{left:239.076000pt;}
.x2a{left:240.409333pt;}
.x146{left:241.742667pt;}
.xc3{left:243.076000pt;}
.xef{left:244.409333pt;}
.x45{left:245.742667pt;}
.x7b{left:247.076000pt;}
.xc8{left:248.409333pt;}
.x6c{left:249.742667pt;}
.x74{left:251.076000pt;}
.x3{left:252.409333pt;}
.x8b{left:253.742667pt;}
.x13{left:255.076000pt;}
.xb0{left:256.409333pt;}
.x19{left:257.742667pt;}
.x126{left:259.076000pt;}
.x138{left:260.409333pt;}
.xd5{left:261.742667pt;}
.xc9{left:263.076000pt;}
.xc{left:264.409333pt;}
.x8f{left:265.742667pt;}
.x13f{left:267.076000pt;}
.x59{left:268.409333pt;}
.xb7{left:269.742667pt;}
.x12a{left:271.076000pt;}
.xb1{left:272.409333pt;}
.xd1{left:273.742667pt;}
.xbc{left:275.076000pt;}
.x17{left:276.409333pt;}
.x2b{left:277.742667pt;}
.x102{left:279.076000pt;}
.x3d{left:280.409333pt;}
.x12f{left:281.742667pt;}
.x4{left:283.076000pt;}
.xdb{left:284.409333pt;}
.xf0{left:285.742667pt;}
.x46{left:287.076000pt;}
.x1f{left:288.409333pt;}
.x14e{left:289.742667pt;}
.x9d{left:291.076000pt;}
.x5a{left:292.409333pt;}
.xd{left:293.742667pt;}
.x14{left:295.076000pt;}
.x6d{left:296.409333pt;}
.x36{left:297.742667pt;}
.x124{left:299.076000pt;}
.x4f{left:300.409333pt;}
.x127{left:301.742667pt;}
.xce{left:303.076000pt;}
.x82{left:304.409333pt;}
.x108{left:305.742667pt;}
.x20{left:307.076000pt;}
.x130{left:308.409333pt;}
.xb3{left:309.742667pt;}
.x155{left:311.076000pt;}
.x7c{left:312.409333pt;}
.xc4{left:313.742667pt;}
.xd6{left:315.076000pt;}
.xfe{left:316.409333pt;}
.x5{left:317.742667pt;}
.x3e{left:319.076000pt;}
.xf2{left:320.409333pt;}
.xfb{left:321.742667pt;}
.x64{left:323.076000pt;}
.x135{left:324.409333pt;}
.x142{left:325.742667pt;}
.x5b{left:327.076000pt;}
.x143{left:328.409333pt;}
.x75{left:329.742667pt;}
.xa3{left:331.076000pt;}
.x11d{left:332.409333pt;}
.x18{left:333.742667pt;}
.xd2{left:335.076000pt;}
.x16{left:336.409333pt;}
.x90{left:337.742667pt;}
.x1a{left:339.076000pt;}
.x47{left:340.409333pt;}
.xe{left:341.742667pt;}
.x2c{left:343.076000pt;}
.xb4{left:344.409333pt;}
.x3f{left:345.742667pt;}
.xaa{left:347.076000pt;}
.x13b{left:348.409333pt;}
.x15{left:349.742667pt;}
.xfc{left:351.076000pt;}
.x5c{left:352.409333pt;}
.xe1{left:353.742667pt;}
.x6e{left:355.076000pt;}
.xb8{left:356.409333pt;}
.x1b{left:357.742667pt;}
.x50{left:359.076000pt;}
.xca{left:360.409333pt;}
.x48{left:361.742667pt;}
.x2d{left:363.076000pt;}
.x83{left:364.409333pt;}
.x10c{left:365.742667pt;}
.xa4{left:367.076000pt;}
.x9e{left:368.409333pt;}
.x51{left:369.742667pt;}
.xf{left:371.076000pt;}
.x21{left:372.409333pt;}
.x84{left:373.742667pt;}
.x128{left:375.076000pt;}
.x12b{left:376.409333pt;}
.x13c{left:377.742667pt;}
.xb5{left:379.076000pt;}
.xc5{left:380.409333pt;}
.x6f{left:381.742667pt;}
.xf1{left:383.076000pt;}
.x5d{left:384.409333pt;}
.xd7{left:385.742667pt;}
.x104{left:387.076000pt;}
.x12c{left:388.409333pt;}
.x7d{left:389.742667pt;}
.x10d{left:391.076000pt;}
.x96{left:392.409333pt;}
.x10{left:393.742667pt;}
.x120{left:395.076000pt;}
.xdd{left:396.409333pt;}
.x109{left:397.742667pt;}
.x117{left:399.076000pt;}
.x22{left:400.409333pt;}
.x5e{left:401.742667pt;}
.xf6{left:403.076000pt;}
.x6{left:404.409333pt;}
.x2e{left:405.742667pt;}
.x139{left:407.076000pt;}
.x9f{left:408.409333pt;}
.xcb{left:409.742667pt;}
.xe7{left:411.076000pt;}
.x65{left:412.409333pt;}
.x40{left:413.742667pt;}
.xb2{left:415.076000pt;}
.x131{left:416.409333pt;}
.x2f{left:417.742667pt;}
.xb6{left:419.076000pt;}
.x152{left:420.409333pt;}
.xab{left:421.742667pt;}
.xe8{left:423.076000pt;}
.xf3{left:424.409333pt;}
.xec{left:425.742667pt;}
.x76{left:427.076000pt;}
.xa5{left:428.409333pt;}
.x49{left:429.742667pt;}
.x12e{left:431.076000pt;}
.x85{left:432.409333pt;}
.x41{left:433.742667pt;}
.x7{left:435.076000pt;}
.x7e{left:436.409333pt;}
.x12d{left:437.742667pt;}
.x37{left:439.076000pt;}
.x114{left:440.409333pt;}
.xd8{left:441.742667pt;}
.x121{left:443.076000pt;}
.xa6{left:444.409333pt;}
.x15b{left:445.742667pt;}
.x52{left:447.076000pt;}
.x14d{left:448.409333pt;}
.x10a{left:449.742667pt;}
.x66{left:451.076000pt;}
.x23{left:452.409333pt;}
.xcc{left:453.742667pt;}
.x11a{left:455.076000pt;}
.xc6{left:456.409333pt;}
.x8c{left:457.742667pt;}
.x14b{left:459.076000pt;}
.x8{left:460.409333pt;}
.x91{left:461.742667pt;}
.x97{left:463.076000pt;}
.x69{left:464.409333pt;}
.x15a{left:465.742667pt;}
.x7f{left:467.076000pt;}
.x4a{left:468.409333pt;}
.x5f{left:469.742667pt;}
.xa0{left:471.076000pt;}
.xc7{left:472.409333pt;}
.xbd{left:473.742667pt;}
.xac{left:475.076000pt;}
.x24{left:476.409333pt;}
.xf4{left:477.742667pt;}
.x98{left:479.076000pt;}
.x30{left:480.409333pt;}
.x86{left:481.742667pt;}
.x11{left:483.076000pt;}
.x60{left:484.409333pt;}
.x42{left:485.742667pt;}
.xe3{left:487.076000pt;}
.xfd{left:488.409333pt;}
.xa1{left:489.742667pt;}
.xe9{left:491.076000pt;}
.xad{left:492.409333pt;}
.x122{left:493.742667pt;}
.x118{left:495.076000pt;}
.x87{left:496.409333pt;}
.x15e{left:497.742667pt;}
.xcf{left:499.076000pt;}
.x10e{left:500.409333pt;}
.xea{left:501.742667pt;}
.x53{left:503.076000pt;}
.x154{left:504.409333pt;}
.x70{left:505.742667pt;}
.xff{left:507.076000pt;}
.x107{left:508.409333pt;}
.x145{left:509.742667pt;}
.xd0{left:511.076000pt;}
.xf7{left:512.409333pt;}
.x77{left:513.742667pt;}
.xbe{left:515.076000pt;}
.x12{left:516.409333pt;}
.x92{left:517.742667pt;}
.x54{left:519.076000pt;}
.xe4{left:520.409333pt;}
.x38{left:521.742667pt;}
.x115{left:523.076000pt;}
.xd3{left:524.409333pt;}
.x15f{left:525.742667pt;}
.x25{left:527.076000pt;}
.x13d{left:528.409333pt;}
.x160{left:529.742667pt;}
.x31{left:531.076000pt;}
.x61{left:532.409333pt;}
.x4b{left:533.742667pt;}
.xb9{left:535.076000pt;}
.x141{left:536.409333pt;}
.xd9{left:537.742667pt;}
.x39{left:539.076000pt;}
.x169{left:540.409333pt;}
.x99{left:541.742667pt;}
.x11e{left:543.076000pt;}
.xe2{left:544.409333pt;}
.x144{left:545.638133pt;}
.x129{left:547.076000pt;}
.x161{left:548.470933pt;}
.xeb{left:549.742667pt;}
.x10f{left:551.076000pt;}
.xf8{left:552.409333pt;}
.x125{left:553.742667pt;}
.x55{left:554.681600pt;}
.xba{left:556.404000pt;}
.x15d{left:557.742667pt;}
.xe5{left:559.076000pt;}
.x162{left:560.409333pt;}
.x159{left:561.742667pt;}
.x16c{left:563.076000pt;}
.x100{left:564.202800pt;}
.xde{left:565.500267pt;}
.x16d{left:567.076000pt;}
.x16a{left:569.093733pt;}
.x166{left:570.269867pt;}
.x167{left:571.374400pt;}
.x165{left:572.294533pt;}
.x163{left:573.458400pt;}
.x158{left:574.500533pt;}
.x170{left:575.593067pt;}
}

