
    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_f58c48fa4de34bf2357b7ea7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.861328;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_84a5a66602ac9334f1598ad0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_320cd232921bccb890fd4979.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_1c6667a9d07b8520f8204df7.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_2f1a1cd5efc57519ca83b988.woff')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_b219342fdf7d8432ed689fc4.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_588ad06eb3a56bdc88a04345.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c51f815769caf57ebf84407d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8adb9268fab5e83aeec34150.woff')format("woff");}.ff9{font-family:ff9;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf66bf430f30f8cc3acfebb9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d2d6836085952e3e822afc62.woff')format("woff");}.ffb{font-family:ffb;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e963e7f6dff3870d987270e0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232560,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236742,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236779,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237068,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237217,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.258474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258474,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-82.800000px;}
.v7{vertical-align:-79.920000px;}
.v6{vertical-align:-66.599400px;}
.v5{vertical-align:-60.479400px;}
.v2{vertical-align:-55.445040px;}
.v3{vertical-align:-20.228760px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-4.328640px;}
.ls24{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.622440px;}
.ls16{letter-spacing:-0.360720px;}
.ls11{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.300600px;}
.ls12{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.287280px;}
.ls14{letter-spacing:-0.240480px;}
.ls2b{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.191520px;}
.ls22{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.143640px;}
.ls3c{letter-spacing:-0.120240px;}
.ls17{letter-spacing:-0.113760px;}
.ls1c{letter-spacing:-0.095760px;}
.ls28{letter-spacing:-0.072000px;}
.ls10{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.013858px;}
.ls18{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.090000px;}
.ls2c{letter-spacing:0.095760px;}
.ls1{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.113760px;}
.ls13{letter-spacing:0.120240px;}
.ls19{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.180360px;}
.lsa{letter-spacing:0.191520px;}
.ls39{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.622440px;}
.ls32{letter-spacing:0.712800px;}
.ls31{letter-spacing:0.741600px;}
.ls4{letter-spacing:1.005480px;}
.ls9{letter-spacing:1.340640px;}
.ls30{letter-spacing:1.800000px;}
.ls5{letter-spacing:2.058840px;}
.lsd{letter-spacing:2.441880px;}
.ls2a{letter-spacing:2.527200px;}
.ls7{letter-spacing:3.404268px;}
.ls6{letter-spacing:3.495240px;}
.ls20{letter-spacing:3.600000px;}
.ls27{letter-spacing:4.320000px;}
.lsc{letter-spacing:4.931640px;}
.ls21{letter-spacing:10.800000px;}
.ls1f{letter-spacing:14.400000px;}
.ls2e{letter-spacing:17.280000px;}
.ls1e{letter-spacing:19.440000px;}
.ls36{letter-spacing:19.800000px;}
.ls38{letter-spacing:22.410000px;}
.ls3b{letter-spacing:22.413960px;}
.ls8{letter-spacing:24.131520px;}
.ls3a{letter-spacing:26.640000px;}
.ls29{letter-spacing:27.360000px;}
.ls2d{letter-spacing:63.864000px;}
.ls2f{letter-spacing:156.960000px;}
.ls37{letter-spacing:232.632000px;}
.ls33{letter-spacing:334.440000px;}
.ls34{letter-spacing:1278.000000px;}
.lse{letter-spacing:2902.692960px;}
.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;}
}
.wsc{word-spacing:-47.880000px;}
.ws30{word-spacing:-18.144000px;}
.ws31{word-spacing:-18.072000px;}
.ws2f{word-spacing:-18.000000px;}
.wsa0{word-spacing:-17.928000px;}
.ws104{word-spacing:-17.856000px;}
.wsdf{word-spacing:-17.784000px;}
.ws2e{word-spacing:-17.640000px;}
.wse{word-spacing:-16.758000px;}
.wsf{word-spacing:-16.710120px;}
.wsd{word-spacing:-16.662240px;}
.wsb{word-spacing:-16.566480px;}
.wsa{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws76{word-spacing:-15.912000px;}
.ws2d{word-spacing:-15.012000px;}
.ws77{word-spacing:-13.767480px;}
.ws2{word-spacing:-13.707360px;}
.ws3{word-spacing:-13.587120px;}
.ws155{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.346640px;}
.ws0{word-spacing:-13.286520px;}
.ws6{word-spacing:-12.690000px;}
.ws9{word-spacing:-12.161520px;}
.ws100{word-spacing:-12.065760px;}
.ws8{word-spacing:-11.970000px;}
.wsfe{word-spacing:-11.874240px;}
.wsff{word-spacing:-11.826360px;}
.ws12c{word-spacing:-11.347560px;}
.ws5{word-spacing:-8.244000px;}
.ws122{word-spacing:-4.392000px;}
.wsfa{word-spacing:-4.320000px;}
.ws41{word-spacing:-4.032000px;}
.ws147{word-spacing:-3.960000px;}
.ws13a{word-spacing:-3.744000px;}
.ws82{word-spacing:-3.672000px;}
.ws45{word-spacing:-3.600000px;}
.ws80{word-spacing:-3.312000px;}
.ws48{word-spacing:-3.240000px;}
.wsde{word-spacing:-2.952000px;}
.wsc3{word-spacing:-2.880000px;}
.wsb4{word-spacing:-2.592000px;}
.ws12e{word-spacing:-2.304000px;}
.ws15b{word-spacing:-2.232000px;}
.ws64{word-spacing:-2.160000px;}
.ws7a{word-spacing:-1.872000px;}
.ws42{word-spacing:-1.800000px;}
.wsa1{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.532160px;}
.ws1a{word-spacing:-1.530000px;}
.ws3e{word-spacing:-1.512000px;}
.wsb9{word-spacing:-1.440000px;}
.wse4{word-spacing:-1.224000px;}
.ws52{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.005480px;}
.wsba{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.813960px;}
.ws109{word-spacing:-0.792000px;}
.ws3a{word-spacing:-0.720000px;}
.ws134{word-spacing:-0.504000px;}
.ws44{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.360000px;}
.ws102{word-spacing:-0.287280px;}
.ws79{word-spacing:-0.240480px;}
.ws103{word-spacing:-0.191520px;}
.ws33{word-spacing:-0.162000px;}
.wsfb{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.095760px;}
.ws19{word-spacing:-0.090000px;}
.ws23{word-spacing:-0.072000px;}
.ws10{word-spacing:0.000000px;}
.ws101{word-spacing:0.072000px;}
.ws29{word-spacing:0.095760px;}
.ws146{word-spacing:0.108000px;}
.ws18{word-spacing:0.113760px;}
.ws15{word-spacing:0.120240px;}
.ws65{word-spacing:0.144000px;}
.ws135{word-spacing:0.162000px;}
.ws2c{word-spacing:0.191520px;}
.ws34{word-spacing:0.216000px;}
.ws17{word-spacing:0.227520px;}
.ws14{word-spacing:0.240480px;}
.ws35{word-spacing:0.270000px;}
.ws28{word-spacing:0.287280px;}
.ws9b{word-spacing:0.288000px;}
.ws11{word-spacing:0.360000px;}
.ws16{word-spacing:0.360720px;}
.ws12{word-spacing:0.432000px;}
.ws6a{word-spacing:0.504000px;}
.ws136{word-spacing:0.526680px;}
.ws130{word-spacing:0.576000px;}
.ws1f{word-spacing:0.622440px;}
.ws46{word-spacing:0.648000px;}
.ws13{word-spacing:0.720000px;}
.ws32{word-spacing:0.792000px;}
.ws81{word-spacing:0.936000px;}
.ws1b{word-spacing:1.005480px;}
.ws50{word-spacing:1.008000px;}
.ws55{word-spacing:1.080000px;}
.ws25{word-spacing:1.149120px;}
.ws153{word-spacing:1.296000px;}
.ws24{word-spacing:1.340640px;}
.ws5e{word-spacing:1.368000px;}
.wscf{word-spacing:1.440000px;}
.ws78{word-spacing:1.584000px;}
.wsc0{word-spacing:1.728000px;}
.wsbf{word-spacing:1.800000px;}
.ws1c{word-spacing:2.058840px;}
.wsc8{word-spacing:2.088000px;}
.wsc7{word-spacing:2.160000px;}
.ws2a{word-spacing:2.441880px;}
.ws73{word-spacing:2.448000px;}
.ws139{word-spacing:2.520000px;}
.ws11f{word-spacing:2.736000px;}
.wse9{word-spacing:2.808000px;}
.ws47{word-spacing:2.880000px;}
.wsb0{word-spacing:3.168000px;}
.wsfc{word-spacing:3.240000px;}
.ws14c{word-spacing:3.456000px;}
.ws20{word-spacing:3.495240px;}
.ws70{word-spacing:3.528000px;}
.ws12d{word-spacing:3.600000px;}
.ws144{word-spacing:3.888000px;}
.wse8{word-spacing:3.960000px;}
.ws95{word-spacing:4.248000px;}
.ws36{word-spacing:4.320000px;}
.ws148{word-spacing:4.536000px;}
.ws49{word-spacing:4.608000px;}
.ws4a{word-spacing:4.680000px;}
.ws27{word-spacing:4.740120px;}
.ws26{word-spacing:4.931640px;}
.ws91{word-spacing:4.968000px;}
.ws51{word-spacing:5.040000px;}
.ws14a{word-spacing:5.256000px;}
.ws71{word-spacing:5.328000px;}
.ws86{word-spacing:5.400000px;}
.ws120{word-spacing:5.688000px;}
.ws125{word-spacing:5.760000px;}
.ws132{word-spacing:5.832000px;}
.ws96{word-spacing:6.048000px;}
.wscb{word-spacing:6.120000px;}
.ws84{word-spacing:6.408000px;}
.wsc9{word-spacing:6.480000px;}
.ws8b{word-spacing:6.768000px;}
.wse6{word-spacing:6.840000px;}
.ws7b{word-spacing:7.128000px;}
.ws97{word-spacing:7.200000px;}
.wsa3{word-spacing:7.416000px;}
.wsa4{word-spacing:7.488000px;}
.ws133{word-spacing:7.560000px;}
.ws143{word-spacing:7.848000px;}
.ws6f{word-spacing:7.920000px;}
.ws22{word-spacing:8.187480px;}
.ws6e{word-spacing:8.208000px;}
.wsf3{word-spacing:8.280000px;}
.wsd1{word-spacing:8.568000px;}
.ws56{word-spacing:8.640000px;}
.ws69{word-spacing:8.928000px;}
.wsc6{word-spacing:9.000000px;}
.ws152{word-spacing:9.288000px;}
.ws151{word-spacing:9.360000px;}
.wsf9{word-spacing:9.720000px;}
.wsa8{word-spacing:10.008000px;}
.ws5c{word-spacing:10.080000px;}
.wscc{word-spacing:10.368000px;}
.ws3d{word-spacing:10.440000px;}
.ws74{word-spacing:10.728000px;}
.ws60{word-spacing:10.800000px;}
.ws131{word-spacing:11.088000px;}
.wsb1{word-spacing:11.160000px;}
.wsc5{word-spacing:11.448000px;}
.ws110{word-spacing:11.520000px;}
.ws54{word-spacing:11.808000px;}
.ws62{word-spacing:12.168000px;}
.ws15c{word-spacing:12.240000px;}
.ws89{word-spacing:12.528000px;}
.ws156{word-spacing:12.960000px;}
.wsd9{word-spacing:13.248000px;}
.wsdb{word-spacing:13.320000px;}
.wsda{word-spacing:13.392000px;}
.wsa6{word-spacing:13.680000px;}
.wse1{word-spacing:13.896000px;}
.ws39{word-spacing:14.040000px;}
.wse7{word-spacing:14.256000px;}
.ws53{word-spacing:14.328000px;}
.ws37{word-spacing:14.400000px;}
.wsed{word-spacing:14.688000px;}
.ws40{word-spacing:14.760000px;}
.ws11b{word-spacing:15.120000px;}
.wsbe{word-spacing:15.408000px;}
.ws12f{word-spacing:15.480000px;}
.ws116{word-spacing:15.768000px;}
.ws137{word-spacing:15.840000px;}
.ws126{word-spacing:16.128000px;}
.ws98{word-spacing:16.200000px;}
.ws6c{word-spacing:16.488000px;}
.ws6b{word-spacing:16.560000px;}
.wsdc{word-spacing:16.848000px;}
.ws108{word-spacing:16.920000px;}
.ws11d{word-spacing:17.136000px;}
.ws11e{word-spacing:17.280000px;}
.ws85{word-spacing:17.496000px;}
.ws150{word-spacing:17.568000px;}
.ws5a{word-spacing:17.640000px;}
.wsc1{word-spacing:17.856000px;}
.wsc2{word-spacing:17.928000px;}
.ws13c{word-spacing:18.216000px;}
.ws13b{word-spacing:18.288000px;}
.wsd5{word-spacing:18.360000px;}
.ws117{word-spacing:18.648000px;}
.wsb2{word-spacing:18.720000px;}
.ws158{word-spacing:19.008000px;}
.ws107{word-spacing:19.080000px;}
.wscd{word-spacing:19.368000px;}
.ws63{word-spacing:19.440000px;}
.ws149{word-spacing:19.728000px;}
.wsbb{word-spacing:19.800000px;}
.ws4f{word-spacing:20.160000px;}
.wsf4{word-spacing:20.376000px;}
.ws138{word-spacing:20.520000px;}
.wsb8{word-spacing:20.880000px;}
.wsec{word-spacing:21.168000px;}
.wsa2{word-spacing:21.240000px;}
.wsa9{word-spacing:21.528000px;}
.ws3c{word-spacing:21.600000px;}
.wsd2{word-spacing:21.888000px;}
.ws66{word-spacing:22.248000px;}
.ws4e{word-spacing:22.320000px;}
.wsce{word-spacing:22.608000px;}
.wsca{word-spacing:22.680000px;}
.ws75{word-spacing:23.040000px;}
.ws14f{word-spacing:23.400000px;}
.ws9a{word-spacing:24.048000px;}
.ws94{word-spacing:24.408000px;}
.wse5{word-spacing:24.480000px;}
.ws114{word-spacing:24.840000px;}
.ws13e{word-spacing:25.200000px;}
.ws3b{word-spacing:25.488000px;}
.ws14b{word-spacing:25.560000px;}
.ws141{word-spacing:25.920000px;}
.ws10e{word-spacing:26.280000px;}
.wse3{word-spacing:26.640000px;}
.wsd6{word-spacing:27.360000px;}
.wsd7{word-spacing:27.648000px;}
.wsd8{word-spacing:27.720000px;}
.wsa5{word-spacing:28.008000px;}
.ws3f{word-spacing:28.080000px;}
.wsc4{word-spacing:28.296000px;}
.ws93{word-spacing:28.440000px;}
.wsa7{word-spacing:28.728000px;}
.ws9e{word-spacing:29.160000px;}
.wsdd{word-spacing:29.520000px;}
.ws5f{word-spacing:29.736000px;}
.wse0{word-spacing:30.240000px;}
.ws61{word-spacing:30.456000px;}
.ws11c{word-spacing:30.600000px;}
.ws92{word-spacing:30.960000px;}
.ws142{word-spacing:31.176000px;}
.ws9c{word-spacing:31.320000px;}
.ws67{word-spacing:31.608000px;}
.ws6d{word-spacing:31.680000px;}
.ws68{word-spacing:32.040000px;}
.ws57{word-spacing:32.328000px;}
.ws145{word-spacing:32.508000px;}
.wsfd{word-spacing:32.688000px;}
.ws43{word-spacing:32.760000px;}
.ws124{word-spacing:33.120000px;}
.wsb5{word-spacing:33.408000px;}
.wsb6{word-spacing:33.480000px;}
.ws8d{word-spacing:33.768000px;}
.ws13f{word-spacing:33.840000px;}
.wsf2{word-spacing:34.056000px;}
.wsf8{word-spacing:34.200000px;}
.wsbc{word-spacing:34.488000px;}
.wsf1{word-spacing:34.560000px;}
.ws7c{word-spacing:35.280000px;}
.ws8c{word-spacing:36.000000px;}
.ws13d{word-spacing:37.368000px;}
.ws14e{word-spacing:37.440000px;}
.ws38{word-spacing:37.728000px;}
.ws4c{word-spacing:37.800000px;}
.wsf5{word-spacing:38.448000px;}
.ws111{word-spacing:39.168000px;}
.ws12a{word-spacing:39.240000px;}
.wsbd{word-spacing:39.600000px;}
.ws8f{word-spacing:39.888000px;}
.ws90{word-spacing:39.960000px;}
.ws87{word-spacing:40.248000px;}
.ws88{word-spacing:40.320000px;}
.ws7f{word-spacing:40.608000px;}
.ws105{word-spacing:40.680000px;}
.ws10a{word-spacing:40.968000px;}
.ws121{word-spacing:41.328000px;}
.wsb7{word-spacing:42.408000px;}
.ws5d{word-spacing:42.480000px;}
.ws15a{word-spacing:42.768000px;}
.ws72{word-spacing:42.840000px;}
.wsee{word-spacing:43.128000px;}
.ws8e{word-spacing:43.416000px;}
.ws11a{word-spacing:43.560000px;}
.ws118{word-spacing:43.848000px;}
.ws14d{word-spacing:45.720000px;}
.wsea{word-spacing:46.440000px;}
.wsaf{word-spacing:47.016000px;}
.wsae{word-spacing:47.520000px;}
.ws119{word-spacing:48.168000px;}
.wsef{word-spacing:48.888000px;}
.ws128{word-spacing:49.176000px;}
.wsf0{word-spacing:49.320000px;}
.ws115{word-spacing:50.040000px;}
.wse2{word-spacing:50.328000px;}
.wsad{word-spacing:50.400000px;}
.ws113{word-spacing:50.760000px;}
.ws4b{word-spacing:51.048000px;}
.wsd4{word-spacing:51.480000px;}
.ws4d{word-spacing:52.200000px;}
.ws8a{word-spacing:52.848000px;}
.ws123{word-spacing:54.000000px;}
.ws129{word-spacing:55.368000px;}
.ws12b{word-spacing:55.728000px;}
.ws9f{word-spacing:56.736000px;}
.ws106{word-spacing:58.248000px;}
.ws157{word-spacing:61.560000px;}
.ws10d{word-spacing:63.000000px;}
.wsd3{word-spacing:64.440000px;}
.ws10f{word-spacing:65.808000px;}
.ws59{word-spacing:66.240000px;}
.wseb{word-spacing:66.528000px;}
.ws5b{word-spacing:69.408000px;}
.wsab{word-spacing:69.840000px;}
.wsaa{word-spacing:70.200000px;}
.ws10b{word-spacing:70.776000px;}
.ws10c{word-spacing:70.848000px;}
.wsac{word-spacing:72.576000px;}
.ws127{word-spacing:73.008000px;}
.wsd0{word-spacing:73.440000px;}
.ws154{word-spacing:76.680000px;}
.ws159{word-spacing:77.400000px;}
.ws99{word-spacing:78.480000px;}
.ws7d{word-spacing:79.488000px;}
.ws7e{word-spacing:79.920000px;}
.ws83{word-spacing:91.368000px;}
.ws112{word-spacing:96.120000px;}
.ws140{word-spacing:97.128000px;}
.ws9d{word-spacing:103.248000px;}
.wsb3{word-spacing:103.968000px;}
.wsf7{word-spacing:104.688000px;}
.wsf6{word-spacing:293.040000px;}
._8{margin-left:-6.480000px;}
._4{margin-left:-4.452840px;}
._2{margin-left:-2.264544px;}
._1{margin-left:-1.040076px;}
._0{width:1.168605px;}
._6{width:2.446598px;}
._1d{width:3.600000px;}
._7{width:4.752000px;}
._1a{width:6.840000px;}
._a{width:8.640000px;}
._b{width:10.584000px;}
._20{width:13.320000px;}
._1e{width:14.760000px;}
._11{width:16.880400px;}
._e{width:19.402200px;}
._1b{width:20.880000px;}
._c{width:24.624000px;}
._21{width:26.640000px;}
._9{width:28.152000px;}
._14{width:33.080400px;}
._1c{width:43.200000px;}
._1f{width:45.720000px;}
._12{width:55.042200px;}
._19{width:59.155200px;}
._5{width:66.456000px;}
._17{width:67.645800px;}
._f{width:167.367600px;}
._15{width:186.769800px;}
._16{width:194.724000px;}
._3{width:209.249640px;}
._10{width:250.884000px;}
._13{width:294.105600px;}
._18{width:363.547800px;}
._d{width:847.728000px;}
.fc4{color:transparent;}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(51,51,51);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(204,0,153);}
.fc0{color:rgb(214,0,147);}
.fs8{font-size:6.120000px;}
.fs2{font-size:29.880000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.y1e1{bottom:-68.220000px;}
.y20e{bottom:-62.460150px;}
.y1e0{bottom:-49.950000px;}
.y20d{bottom:-46.350150px;}
.y20c{bottom:-30.240000px;}
.y1df{bottom:-16.470000px;}
.y9a{bottom:-13.410000px;}
.y112{bottom:-13.320150px;}
.y7{bottom:-11.160000px;}
.y20b{bottom:-7.020000px;}
.y1de{bottom:-0.090000px;}
.y0{bottom:0.000000px;}
.y17f{bottom:2.609850px;}
.y13a{bottom:2.610000px;}
.y159{bottom:2.700000px;}
.y14e{bottom:2.879850px;}
.y142{bottom:2.880000px;}
.y1b4{bottom:2.969850px;}
.y138{bottom:2.970000px;}
.y13{bottom:3.150000px;}
.y99{bottom:4.860000px;}
.y111{bottom:4.949850px;}
.ya{bottom:4.950000px;}
.y2{bottom:5.129850px;}
.y6{bottom:7.109850px;}
.y20a{bottom:8.730000px;}
.y13d{bottom:16.379850px;}
.y149{bottom:16.380000px;}
.y14c{bottom:16.469850px;}
.y137{bottom:16.470000px;}
.y14a{bottom:16.650000px;}
.y151{bottom:16.739850px;}
.y14d{bottom:16.740000px;}
.y4{bottom:19.440000px;}
.y18b{bottom:21.150000px;}
.y4b{bottom:23.130000px;}
.y9{bottom:23.310000px;}
.y4a{bottom:25.560000px;}
.y8{bottom:25.650000px;}
.y144{bottom:30.239850px;}
.y13f{bottom:30.240000px;}
.y146{bottom:30.509850px;}
.y140{bottom:30.510000px;}
.y4c{bottom:34.560000px;}
.y1a0{bottom:35.640000px;}
.y1a2{bottom:35.820000px;}
.y1a1{bottom:35.910000px;}
.y3{bottom:39.150000px;}
.y15b{bottom:44.010000px;}
.y15d{bottom:44.280000px;}
.yc{bottom:53.373000px;}
.y97{bottom:54.270000px;}
.y4e{bottom:54.274860px;}
.y184{bottom:57.780000px;}
.y153{bottom:57.870000px;}
.y185{bottom:58.050000px;}
.y18d{bottom:58.139850px;}
.y154{bottom:58.140000px;}
.y165{bottom:71.640000px;}
.y166{bottom:71.910000px;}
.y18c{bottom:74.880000px;}
.y1da{bottom:76.950000px;}
.yca{bottom:78.209850px;}
.y7f{bottom:78.210000px;}
.y12d{bottom:79.289850px;}
.y10f{bottom:79.469850px;}
.y21f{bottom:82.211070px;}
.y135{bottom:82.980000px;}
.yed{bottom:86.400000px;}
.y208{bottom:86.490000px;}
.y10b{bottom:86.579850px;}
.y19e{bottom:90.270000px;}
.y1d9{bottom:97.650000px;}
.yc9{bottom:98.909850px;}
.y7e{bottom:98.910000px;}
.y21e{bottom:99.495570px;}
.y12c{bottom:99.989850px;}
.y10e{bottom:100.169850px;}
.y199{bottom:100.170000px;}
.y134{bottom:103.950000px;}
.yec{bottom:107.100000px;}
.y207{bottom:107.190000px;}
.y10a{bottom:107.279850px;}
.y19d{bottom:110.790000px;}
.y21d{bottom:116.689890px;}
.y1d8{bottom:118.350000px;}
.yc8{bottom:119.609850px;}
.y7d{bottom:119.610000px;}
.y49{bottom:120.600000px;}
.y12b{bottom:120.689850px;}
.y10d{bottom:120.869850px;}
.y198{bottom:120.870000px;}
.y133{bottom:124.650000px;}
.yeb{bottom:127.800000px;}
.y206{bottom:127.890000px;}
.y21c{bottom:133.974390px;}
.y48{bottom:138.257190px;}
.y1d7{bottom:139.050000px;}
.yc7{bottom:140.309850px;}
.y7c{bottom:140.310000px;}
.y12a{bottom:141.389850px;}
.y109{bottom:141.479850px;}
.y10c{bottom:141.569850px;}
.y197{bottom:141.570000px;}
.y132{bottom:145.350000px;}
.y19c{bottom:147.149850px;}
.yea{bottom:148.500000px;}
.y205{bottom:148.590000px;}
.y21b{bottom:151.258890px;}
.y47{bottom:152.022690px;}
.y1d6{bottom:159.750000px;}
.yc6{bottom:161.009850px;}
.y7b{bottom:161.010000px;}
.y129{bottom:162.089850px;}
.y108{bottom:162.269850px;}
.y196{bottom:162.270000px;}
.y46{bottom:165.608640px;}
.y19b{bottom:167.849850px;}
.y21a{bottom:168.453210px;}
.ye9{bottom:169.200000px;}
.y204{bottom:169.290000px;}
.y131{bottom:176.220000px;}
.y45{bottom:180.367650px;}
.y1d5{bottom:180.450000px;}
.yc5{bottom:181.709850px;}
.y7a{bottom:181.710000px;}
.y128{bottom:182.789850px;}
.y107{bottom:182.969850px;}
.y195{bottom:182.970000px;}
.y1c3{bottom:185.130000px;}
.y219{bottom:185.737710px;}
.ye8{bottom:189.900000px;}
.y44{bottom:194.312700px;}
.y130{bottom:196.920000px;}
.y1d4{bottom:201.150000px;}
.y1c4{bottom:201.600000px;}
.y1c5{bottom:201.870000px;}
.yc4{bottom:202.409850px;}
.y79{bottom:202.410000px;}
.y218{bottom:203.022210px;}
.y127{bottom:203.489850px;}
.y106{bottom:203.669850px;}
.y194{bottom:203.670000px;}
.ye7{bottom:210.600000px;}
.y43{bottom:211.597380px;}
.y12f{bottom:217.620000px;}
.y217{bottom:220.216530px;}
.y1d3{bottom:221.850000px;}
.yc3{bottom:223.109850px;}
.y78{bottom:223.110000px;}
.y126{bottom:224.189850px;}
.y105{bottom:224.369850px;}
.y193{bottom:224.370000px;}
.y42{bottom:225.362880px;}
.y1bf{bottom:227.340000px;}
.ye6{bottom:231.300000px;}
.y183{bottom:234.720000px;}
.y216{bottom:237.501030px;}
.y41{bottom:240.038100px;}
.y1d2{bottom:242.550000px;}
.yc2{bottom:243.809850px;}
.y77{bottom:243.810000px;}
.y1c1{bottom:243.988740px;}
.y104{bottom:245.069850px;}
.y192{bottom:245.070000px;}
.y18a{bottom:251.100000px;}
.ye5{bottom:252.000000px;}
.y215{bottom:254.785530px;}
.y1c2{bottom:257.580000px;}
.y1c0{bottom:257.850000px;}
.y1d1{bottom:263.250000px;}
.yc1{bottom:264.509850px;}
.y76{bottom:264.510000px;}
.y189{bottom:264.960000px;}
.y187{bottom:265.229850px;}
.y103{bottom:265.769850px;}
.y125{bottom:265.770000px;}
.y40{bottom:267.844410px;}
.y214{bottom:271.979850px;}
.ye4{bottom:272.700000px;}
.y188{bottom:278.729850px;}
.y186{bottom:279.000000px;}
.y3f{bottom:281.609910px;}
.y1ba{bottom:283.230000px;}
.y1d0{bottom:283.950000px;}
.yc0{bottom:285.209850px;}
.y75{bottom:285.210000px;}
.y102{bottom:286.469850px;}
.y124{bottom:286.470000px;}
.y213{bottom:289.890000px;}
.ye3{bottom:293.400000px;}
.y1be{bottom:299.700000px;}
.y1bc{bottom:299.970000px;}
.y180{bottom:304.110000px;}
.y1cf{bottom:304.650000px;}
.ybf{bottom:305.909850px;}
.y74{bottom:305.910000px;}
.y101{bottom:307.169850px;}
.y123{bottom:307.170000px;}
.y212{bottom:310.590000px;}
.y1bd{bottom:313.470000px;}
.y1bb{bottom:313.740000px;}
.ye2{bottom:314.100000px;}
.y3e{bottom:315.090000px;}
.y182{bottom:320.490000px;}
.y181{bottom:320.760000px;}
.y1ce{bottom:325.350000px;}
.ybe{bottom:326.609850px;}
.y73{bottom:326.610000px;}
.y100{bottom:327.869850px;}
.y122{bottom:327.870000px;}
.y211{bottom:331.290000px;}
.y3d{bottom:331.380000px;}
.ye1{bottom:334.800000px;}
.y1b5{bottom:339.210000px;}
.y3c{bottom:341.146170px;}
.y17b{bottom:345.870000px;}
.y1cd{bottom:346.050000px;}
.ybd{bottom:347.309850px;}
.y72{bottom:347.310000px;}
.yff{bottom:348.569850px;}
.y121{bottom:348.570000px;}
.y210{bottom:351.990000px;}
.y3b{bottom:355.270770px;}
.ye0{bottom:355.500000px;}
.y1b9{bottom:355.588740px;}
.y1b8{bottom:355.858740px;}
.y17e{bottom:362.250000px;}
.y17d{bottom:362.520000px;}
.y1cc{bottom:366.750000px;}
.ybc{bottom:368.009850px;}
.y71{bottom:368.010000px;}
.y3a{bottom:369.036270px;}
.yfe{bottom:369.269850px;}
.y120{bottom:369.270000px;}
.y1b6{bottom:369.450000px;}
.y1b7{bottom:369.720000px;}
.ydf{bottom:376.110000px;}
.y203{bottom:376.200000px;}
.y17c{bottom:376.380000px;}
.y39{bottom:382.801770px;}
.y1cb{bottom:387.360000px;}
.ybb{bottom:388.709850px;}
.y70{bottom:388.710000px;}
.yfd{bottom:389.969850px;}
.y11f{bottom:389.970000px;}
.y20f{bottom:392.760000px;}
.y1b1{bottom:395.100000px;}
.y38{bottom:396.567270px;}
.yde{bottom:396.810000px;}
.y202{bottom:396.900000px;}
.y176{bottom:401.400000px;}
.yba{bottom:409.409850px;}
.y6f{bottom:409.410000px;}
.y37{bottom:410.428530px;}
.yfc{bottom:410.669850px;}
.y11e{bottom:410.670000px;}
.y1b2{bottom:411.570000px;}
.y1b3{bottom:411.840000px;}
.ydd{bottom:417.510000px;}
.y201{bottom:417.600000px;}
.y17a{bottom:417.879000px;}
.y36{bottom:424.194030px;}
.y1ca{bottom:428.760000px;}
.yb9{bottom:430.109850px;}
.y6e{bottom:430.110000px;}
.yfb{bottom:431.369850px;}
.y11d{bottom:431.370000px;}
.y179{bottom:431.644500px;}
.y1ac{bottom:437.310000px;}
.y35{bottom:437.959530px;}
.ydc{bottom:438.210000px;}
.y200{bottom:438.300000px;}
.y178{bottom:445.410000px;}
.y177{bottom:445.680000px;}
.y1c9{bottom:449.460000px;}
.yb8{bottom:450.809850px;}
.y6d{bottom:450.810000px;}
.y34{bottom:451.820790px;}
.yfa{bottom:452.069850px;}
.y11c{bottom:452.070000px;}
.y1b0{bottom:453.688740px;}
.y1af{bottom:453.958740px;}
.ydb{bottom:458.910000px;}
.y1ff{bottom:459.000000px;}
.y33{bottom:465.586290px;}
.y1ad{bottom:467.550000px;}
.y1ae{bottom:467.820000px;}
.y170{bottom:470.790000px;}
.y1c8{bottom:470.970000px;}
.yb7{bottom:471.509850px;}
.y6c{bottom:471.510000px;}
.yf9{bottom:472.769850px;}
.y11b{bottom:472.770000px;}
.y32{bottom:479.351790px;}
.yda{bottom:479.610000px;}
.y1fe{bottom:479.700000px;}
.y175{bottom:487.260000px;}
.yb6{bottom:492.209850px;}
.y6b{bottom:492.210000px;}
.y1c7{bottom:492.930000px;}
.y1a9{bottom:493.200000px;}
.y31{bottom:493.213050px;}
.yf8{bottom:493.469850px;}
.y11a{bottom:493.470000px;}
.y23f{bottom:500.093460px;}
.yd9{bottom:500.310000px;}
.y1fd{bottom:500.400000px;}
.y174{bottom:501.030000px;}
.y172{bottom:501.300000px;}
.y30{bottom:506.978550px;}
.y1aa{bottom:509.670000px;}
.y1ab{bottom:509.940000px;}
.yb5{bottom:512.909850px;}
.y6a{bottom:512.910000px;}
.yf7{bottom:514.169850px;}
.y119{bottom:514.170000px;}
.y173{bottom:514.800000px;}
.y171{bottom:515.070000px;}
.y23e{bottom:517.377960px;}
.y2f{bottom:520.744050px;}
.yd8{bottom:521.010000px;}
.y1fc{bottom:521.100000px;}
.yb4{bottom:533.609850px;}
.y69{bottom:533.610000px;}
.y2e{bottom:534.330000px;}
.y23d{bottom:534.572280px;}
.yf6{bottom:534.869850px;}
.y118{bottom:534.870000px;}
.y1a6{bottom:535.410000px;}
.y16d{bottom:540.180000px;}
.yd7{bottom:541.530000px;}
.y1fb{bottom:541.800000px;}
.y2d{bottom:550.350000px;}
.y1a7{bottom:551.790000px;}
.y23c{bottom:551.856780px;}
.y1a8{bottom:552.060000px;}
.yb3{bottom:554.219850px;}
.y68{bottom:554.220000px;}
.yf5{bottom:555.569850px;}
.y117{bottom:555.570000px;}
.y16f{bottom:556.560000px;}
.y16e{bottom:556.830000px;}
.yd6{bottom:562.230000px;}
.y1fa{bottom:562.500000px;}
.y23b{bottom:569.051100px;}
.y2c{bottom:569.610000px;}
.yb2{bottom:574.919850px;}
.y67{bottom:574.920000px;}
.yf4{bottom:576.269850px;}
.y116{bottom:576.270000px;}
.y1a3{bottom:577.530000px;}
.y164{bottom:581.940000px;}
.yd5{bottom:582.930000px;}
.y1f9{bottom:583.200000px;}
.y23a{bottom:586.335600px;}
.y2b{bottom:592.560000px;}
.y1a4{bottom:594.000000px;}
.y1a5{bottom:594.270000px;}
.y95{bottom:595.440000px;}
.yb1{bottom:595.619850px;}
.y66{bottom:595.620000px;}
.yf3{bottom:596.969850px;}
.y115{bottom:596.970000px;}
.y16c{bottom:598.320000px;}
.yd4{bottom:603.630000px;}
.y1f8{bottom:603.900000px;}
.y16b{bottom:612.180000px;}
.yb0{bottom:616.319850px;}
.y65{bottom:616.320000px;}
.y239{bottom:616.846500px;}
.yf2{bottom:617.669850px;}
.y114{bottom:617.670000px;}
.y19f{bottom:619.650000px;}
.y1f7{bottom:624.600000px;}
.y16a{bottom:625.950000px;}
.y168{bottom:626.220000px;}
.y2a{bottom:626.333490px;}
.y238{bottom:634.221180px;}
.yaf{bottom:637.019850px;}
.y64{bottom:637.020000px;}
.y94{bottom:637.830000px;}
.yd3{bottom:638.189850px;}
.yf1{bottom:638.369850px;}
.y113{bottom:638.370000px;}
.y169{bottom:639.720000px;}
.y167{bottom:639.990000px;}
.y29{bottom:640.374300px;}
.y1f6{bottom:645.300000px;}
.y237{bottom:651.505680px;}
.y28{bottom:654.139800px;}
.yae{bottom:657.719850px;}
.y63{bottom:657.720000px;}
.yd2{bottom:658.889850px;}
.yf0{bottom:659.069850px;}
.y93{bottom:659.070000px;}
.y161{bottom:665.100000px;}
.y1f5{bottom:666.000000px;}
.y27{bottom:668.001060px;}
.y236{bottom:668.700000px;}
.yad{bottom:678.419850px;}
.y62{bottom:678.420000px;}
.yd1{bottom:679.589850px;}
.yef{bottom:679.769850px;}
.y92{bottom:679.770000px;}
.y163{bottom:681.570000px;}
.y26{bottom:681.766560px;}
.y162{bottom:681.840000px;}
.y235{bottom:686.610000px;}
.y1f4{bottom:686.700000px;}
.y25{bottom:695.532060px;}
.yac{bottom:699.119850px;}
.y61{bottom:699.120000px;}
.yd0{bottom:700.289850px;}
.yee{bottom:700.469850px;}
.y91{bottom:700.470000px;}
.y15a{bottom:706.860000px;}
.y234{bottom:707.310000px;}
.y1f3{bottom:707.400000px;}
.y24{bottom:709.393320px;}
.yab{bottom:719.819850px;}
.y60{bottom:719.820000px;}
.ycf{bottom:721.169850px;}
.y90{bottom:721.170000px;}
.y23{bottom:723.158820px;}
.y160{bottom:723.330000px;}
.y15f{bottom:723.600000px;}
.y1f2{bottom:728.100000px;}
.y22{bottom:736.924320px;}
.y15c{bottom:737.100000px;}
.y15e{bottom:737.370000px;}
.yaa{bottom:740.519850px;}
.y5f{bottom:740.520000px;}
.yce{bottom:741.779850px;}
.y8f{bottom:741.780000px;}
.y233{bottom:747.949890px;}
.y1f1{bottom:748.800000px;}
.y21{bottom:750.785580px;}
.y5e{bottom:761.220000px;}
.y152{bottom:762.390000px;}
.ycd{bottom:762.479850px;}
.y8e{bottom:762.480000px;}
.y20{bottom:764.551080px;}
.y232{bottom:765.144210px;}
.y1f0{bottom:769.500000px;}
.y1f{bottom:778.316580px;}
.y158{bottom:778.863240px;}
.ya9{bottom:781.919850px;}
.y5d{bottom:781.920000px;}
.y231{bottom:782.428710px;}
.ycc{bottom:783.179850px;}
.y8d{bottom:783.180000px;}
.y1ef{bottom:790.200000px;}
.y1e{bottom:792.177840px;}
.y157{bottom:792.628740px;}
.y230{bottom:799.713210px;}
.y5c{bottom:802.620000px;}
.ya8{bottom:803.339850px;}
.ycb{bottom:803.879850px;}
.y8c{bottom:803.880000px;}
.y1d{bottom:805.680000px;}
.y156{bottom:806.490000px;}
.y155{bottom:806.760000px;}
.y1ee{bottom:810.900000px;}
.y22f{bottom:816.907530px;}
.y1c{bottom:821.699850px;}
.y5b{bottom:823.320000px;}
.ya7{bottom:824.579850px;}
.y8b{bottom:824.580000px;}
.y1ed{bottom:831.600000px;}
.y150{bottom:831.780000px;}
.y22e{bottom:834.192030px;}
.y1b{bottom:841.319850px;}
.y5a{bottom:844.020000px;}
.ya6{bottom:845.279850px;}
.y8a{bottom:845.280000px;}
.y22d{bottom:851.476530px;}
.y1ec{bottom:852.300000px;}
.y14f{bottom:859.770000px;}
.y59{bottom:864.720000px;}
.ya5{bottom:865.979850px;}
.y89{bottom:865.980000px;}
.y22c{bottom:868.670850px;}
.y1a{bottom:871.289850px;}
.y1eb{bottom:873.000000px;}
.y58{bottom:885.420000px;}
.y22b{bottom:885.955350px;}
.y19{bottom:886.049850px;}
.ya4{bottom:886.679850px;}
.y88{bottom:886.680000px;}
.y14b{bottom:887.760000px;}
.y1ea{bottom:893.700000px;}
.y18{bottom:899.279850px;}
.y22a{bottom:903.239850px;}
.y57{bottom:906.120000px;}
.ya3{bottom:907.379850px;}
.y87{bottom:907.380000px;}
.y17{bottom:912.149850px;}
.y1e9{bottom:914.400000px;}
.y148{bottom:915.750000px;}
.y229{bottom:920.434170px;}
.y16{bottom:925.199850px;}
.y56{bottom:926.820000px;}
.y1dc{bottom:927.540000px;}
.ya2{bottom:928.079850px;}
.y86{bottom:928.080000px;}
.y1e8{bottom:935.100000px;}
.y228{bottom:937.718670px;}
.y15{bottom:939.150000px;}
.y143{bottom:943.650000px;}
.y55{bottom:947.520000px;}
.y1db{bottom:948.600000px;}
.ya1{bottom:948.779850px;}
.y85{bottom:948.780000px;}
.y227{bottom:955.003170px;}
.y14{bottom:955.800000px;}
.y145{bottom:960.120000px;}
.y147{bottom:960.389850px;}
.y54{bottom:968.220000px;}
.ya0{bottom:969.479850px;}
.y84{bottom:969.480000px;}
.y226{bottom:972.197490px;}
.y12{bottom:975.060000px;}
.y1e7{bottom:976.500000px;}
.y13e{bottom:985.500000px;}
.y53{bottom:988.920000px;}
.y225{bottom:989.481990px;}
.y9f{bottom:990.179850px;}
.y83{bottom:990.180000px;}
.y1e6{bottom:997.200000px;}
.y11{bottom:999.803520px;}
.y141{bottom:1002.150000px;}
.y224{bottom:1006.766490px;}
.y52{bottom:1009.620000px;}
.y9e{bottom:1010.879850px;}
.y82{bottom:1010.880000px;}
.y1e5{bottom:1017.900000px;}
.y10{bottom:1018.080000px;}
.y223{bottom:1023.960810px;}
.y13c{bottom:1027.260000px;}
.y191{bottom:1031.400000px;}
.y9d{bottom:1031.579850px;}
.y81{bottom:1031.580000px;}
.yf{bottom:1036.350000px;}
.y222{bottom:1041.245310px;}
.y51{bottom:1051.020000px;}
.y190{bottom:1052.100000px;}
.y9c{bottom:1052.279850px;}
.ye{bottom:1052.280000px;}
.y13b{bottom:1055.250000px;}
.y221{bottom:1058.529810px;}
.y1e4{bottom:1058.580000px;}
.y139{bottom:1069.380000px;}
.y50{bottom:1072.440000px;}
.y18f{bottom:1072.800000px;}
.y9b{bottom:1072.979850px;}
.y80{bottom:1072.980000px;}
.y220{bottom:1075.724130px;}
.y1e3{bottom:1075.860000px;}
.yd{bottom:1077.030000px;}
.y136{bottom:1085.400000px;}
.y1{bottom:1092.870000px;}
.y5{bottom:1097.370000px;}
.y4f{bottom:1099.350000px;}
.y96{bottom:1103.220000px;}
.y1dd{bottom:1110.780000px;}
.yb{bottom:1111.409850px;}
.y209{bottom:1115.280000px;}
.y110{bottom:1115.460000px;}
.y19a{bottom:1117.350000px;}
.y98{bottom:1118.610000px;}
.y4d{bottom:1118.970000px;}
.y1c6{bottom:1120.950000px;}
.y12e{bottom:1122.660000px;}
.y1e2{bottom:1122.750000px;}
.y18e{bottom:1128.330000px;}
.h29{height:13.500000px;}
.h1d{height:13.770000px;}
.h2{height:18.001500px;}
.hf{height:18.178500px;}
.h1a{height:19.080000px;}
.h1b{height:19.170000px;}
.h8{height:21.330000px;}
.hc{height:21.447070px;}
.h2c{height:22.500000px;}
.h1e{height:27.540000px;}
.h20{height:27.628500px;}
.h1c{height:27.630000px;}
.h5{height:30.780000px;}
.h18{height:34.471500px;}
.ha{height:37.530000px;}
.h23{height:41.398500px;}
.h1f{height:41.400000px;}
.h3{height:41.655410px;}
.h4{height:43.152539px;}
.h12{height:44.165039px;}
.h27{height:46.710000px;}
.h11{height:46.719844px;}
.h13{height:46.933594px;}
.h14{height:46.991602px;}
.h15{height:48.254063px;}
.h6{height:49.886719px;}
.hd{height:49.937344px;}
.h2b{height:49.992188px;}
.h16{height:51.087960px;}
.h7{height:51.679688px;}
.h2d{height:52.998047px;}
.h28{height:55.168500px;}
.h22{height:55.170000px;}
.h10{height:56.320312px;}
.h2a{height:57.618000px;}
.hb{height:59.004492px;}
.he{height:64.148040px;}
.h25{height:68.938500px;}
.h21{height:69.031500px;}
.h9{height:70.664062px;}
.h26{height:71.024063px;}
.h19{height:72.562500px;}
.h17{height:75.093750px;}
.h24{height:82.800000px;}
.h1{height:1173.750000px;}
.h0{height:1173.780000px;}
.w1{width:46.798500px;}
.w14{width:51.211500px;}
.wa{width:52.830000px;}
.w12{width:62.998500px;}
.wc{width:63.450000px;}
.w11{width:95.310000px;}
.w9{width:95.580000px;}
.wf{width:106.110000px;}
.w13{width:106.830000px;}
.wb{width:116.640000px;}
.w15{width:126.900000px;}
.wd{width:127.350000px;}
.w16{width:148.050000px;}
.we{width:159.211500px;}
.w17{width:169.741500px;}
.w10{width:257.128500px;}
.w2{width:257.130000px;}
.w6{width:257.220000px;}
.w4{width:259.558500px;}
.w3{width:513.000000px;}
.w8{width:722.971500px;}
.w18{width:727.560000px;}
.w19{width:732.420000px;}
.w5{width:732.780000px;}
.w7{width:735.750000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:1.530000px;}
.x26{left:8.100000px;}
.x2{left:10.170000px;}
.x33{left:11.610000px;}
.x25{left:13.050000px;}
.x2a{left:14.400000px;}
.x40{left:16.020000px;}
.x24{left:17.190000px;}
.x52{left:18.450000px;}
.x2b{left:19.530000px;}
.x56{left:21.600000px;}
.x41{left:23.310000px;}
.x39{left:25.290000px;}
.x1a{left:26.370000px;}
.x2f{left:27.720000px;}
.x6a{left:28.800000px;}
.x2c{left:29.970000px;}
.x1e{left:31.680000px;}
.x17{left:33.120000px;}
.x31{left:34.200000px;}
.x66{left:35.370000px;}
.x29{left:36.540000px;}
.x28{left:37.980000px;}
.x34{left:40.590000px;}
.x27{left:42.660000px;}
.x8{left:44.550000px;}
.x3{left:46.890000px;}
.x32{left:50.490000px;}
.x23{left:52.920000px;}
.x68{left:54.630000px;}
.x74{left:56.970000px;}
.x1c{left:58.320000px;}
.x7a{left:59.670000px;}
.x20{left:63.630000px;}
.xa{left:70.470000px;}
.xd{left:72.720000px;}
.x82{left:74.250000px;}
.x9{left:76.860000px;}
.x4{left:78.480000px;}
.xb{left:79.830000px;}
.x7e{left:83.520000px;}
.x15{left:85.680000px;}
.x65{left:86.850000px;}
.x69{left:90.630000px;}
.x75{left:94.680000px;}
.xf{left:96.660000px;}
.x10{left:98.190000px;}
.x30{left:100.980000px;}
.x14{left:102.420000px;}
.x6f{left:106.020000px;}
.x59{left:123.660000px;}
.x5a{left:150.660000px;}
.x5e{left:166.680000px;}
.x19{left:173.070000px;}
.x6{left:190.800000px;}
.x16{left:215.730000px;}
.x1b{left:226.170000px;}
.x5f{left:230.400000px;}
.xc{left:272.970000px;}
.xe{left:286.560000px;}
.x60{left:337.950000px;}
.x1d{left:343.170000px;}
.x3a{left:359.820000px;}
.x18{left:361.440000px;}
.x61{left:389.880000px;}
.x6c{left:401.850000px;}
.x62{left:405.180000px;}
.x1f{left:406.890000px;}
.x70{left:407.970000px;}
.x7f{left:409.680000px;}
.x77{left:414.989100px;}
.x45{left:416.520000px;}
.x2d{left:421.200000px;}
.x3b{left:424.080000px;}
.x3c{left:425.340000px;}
.x35{left:427.320000px;}
.x7b{left:431.010000px;}
.x4c{left:433.350000px;}
.x42{left:438.480000px;}
.x51{left:447.750000px;}
.x46{left:449.820000px;}
.x12{left:452.250000px;}
.x5b{left:491.400000px;}
.x5c{left:518.400000px;}
.x78{left:525.964950px;}
.x80{left:527.040000px;}
.x7d{left:528.209010px;}
.x6b{left:530.190000px;}
.x6d{left:531.360000px;}
.x71{left:532.530000px;}
.x21{left:534.510000px;}
.x67{left:537.390000px;}
.x7{left:540.630000px;}
.x43{left:546.120000px;}
.x2e{left:549.360000px;}
.x63{left:552.510000px;}
.x57{left:559.350000px;}
.x4d{left:561.960000px;}
.x4b{left:564.120000px;}
.x4e{left:565.830000px;}
.x47{left:569.970000px;}
.x54{left:571.680000px;}
.x5d{left:588.870000px;}
.x3d{left:590.130000px;}
.x13{left:592.470000px;}
.x11{left:595.980000px;}
.x64{left:666.270000px;}
.x6e{left:676.620000px;}
.x7c{left:678.150000px;}
.x73{left:680.942790px;}
.x79{left:684.269010px;}
.x81{left:687.780000px;}
.x22{left:693.990000px;}
.x72{left:696.420000px;}
.x76{left:699.570000px;}
.x4f{left:702.630000px;}
.x49{left:705.780000px;}
.x44{left:706.950000px;}
.x53{left:709.110000px;}
.x58{left:710.460000px;}
.x37{left:713.345400px;}
.x50{left:714.600000px;}
.x48{left:715.950000px;}
.x55{left:718.830000px;}
.x3e{left:721.620000px;}
.x38{left:723.603690px;}
.x4a{left:725.310000px;}
.x36{left:727.470000px;}
.x3f{left:728.640000px;}
.x1{left:753.120000px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v7{vertical-align:-71.040000pt;}
.v6{vertical-align:-59.199467pt;}
.v5{vertical-align:-53.759467pt;}
.v2{vertical-align:-49.284480pt;}
.v3{vertical-align:-17.981120pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-3.847680pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.553280pt;}
.ls16{letter-spacing:-0.320640pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.267200pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.255360pt;}
.ls14{letter-spacing:-0.213760pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.170240pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.127680pt;}
.ls3c{letter-spacing:-0.106880pt;}
.ls17{letter-spacing:-0.101120pt;}
.ls1c{letter-spacing:-0.085120pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.012319pt;}
.ls18{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls2c{letter-spacing:0.085120pt;}
.ls1{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.101120pt;}
.ls13{letter-spacing:0.106880pt;}
.ls19{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.160320pt;}
.lsa{letter-spacing:0.170240pt;}
.ls39{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.553280pt;}
.ls32{letter-spacing:0.633600pt;}
.ls31{letter-spacing:0.659200pt;}
.ls4{letter-spacing:0.893760pt;}
.ls9{letter-spacing:1.191680pt;}
.ls30{letter-spacing:1.600000pt;}
.ls5{letter-spacing:1.830080pt;}
.lsd{letter-spacing:2.170560pt;}
.ls2a{letter-spacing:2.246400pt;}
.ls7{letter-spacing:3.026016pt;}
.ls6{letter-spacing:3.106880pt;}
.ls20{letter-spacing:3.200000pt;}
.ls27{letter-spacing:3.840000pt;}
.lsc{letter-spacing:4.383680pt;}
.ls21{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls2e{letter-spacing:15.360000pt;}
.ls1e{letter-spacing:17.280000pt;}
.ls36{letter-spacing:17.600000pt;}
.ls38{letter-spacing:19.920000pt;}
.ls3b{letter-spacing:19.923520pt;}
.ls8{letter-spacing:21.450240pt;}
.ls3a{letter-spacing:23.680000pt;}
.ls29{letter-spacing:24.320000pt;}
.ls2d{letter-spacing:56.768000pt;}
.ls2f{letter-spacing:139.520000pt;}
.ls37{letter-spacing:206.784000pt;}
.ls33{letter-spacing:297.280000pt;}
.ls34{letter-spacing:1136.000000pt;}
.lse{letter-spacing:2580.171520pt;}
.wsc{word-spacing:-42.560000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws31{word-spacing:-16.064000pt;}
.ws2f{word-spacing:-16.000000pt;}
.wsa0{word-spacing:-15.936000pt;}
.ws104{word-spacing:-15.872000pt;}
.wsdf{word-spacing:-15.808000pt;}
.ws2e{word-spacing:-15.680000pt;}
.wse{word-spacing:-14.896000pt;}
.wsf{word-spacing:-14.853440pt;}
.wsd{word-spacing:-14.810880pt;}
.wsb{word-spacing:-14.725760pt;}
.wsa{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws76{word-spacing:-14.144000pt;}
.ws2d{word-spacing:-13.344000pt;}
.ws77{word-spacing:-12.237760pt;}
.ws2{word-spacing:-12.184320pt;}
.ws3{word-spacing:-12.077440pt;}
.ws155{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.863680pt;}
.ws0{word-spacing:-11.810240pt;}
.ws6{word-spacing:-11.280000pt;}
.ws9{word-spacing:-10.810240pt;}
.ws100{word-spacing:-10.725120pt;}
.ws8{word-spacing:-10.640000pt;}
.wsfe{word-spacing:-10.554880pt;}
.wsff{word-spacing:-10.512320pt;}
.ws12c{word-spacing:-10.086720pt;}
.ws5{word-spacing:-7.328000pt;}
.ws122{word-spacing:-3.904000pt;}
.wsfa{word-spacing:-3.840000pt;}
.ws41{word-spacing:-3.584000pt;}
.ws147{word-spacing:-3.520000pt;}
.ws13a{word-spacing:-3.328000pt;}
.ws82{word-spacing:-3.264000pt;}
.ws45{word-spacing:-3.200000pt;}
.ws80{word-spacing:-2.944000pt;}
.ws48{word-spacing:-2.880000pt;}
.wsde{word-spacing:-2.624000pt;}
.wsc3{word-spacing:-2.560000pt;}
.wsb4{word-spacing:-2.304000pt;}
.ws12e{word-spacing:-2.048000pt;}
.ws15b{word-spacing:-1.984000pt;}
.ws64{word-spacing:-1.920000pt;}
.ws7a{word-spacing:-1.664000pt;}
.ws42{word-spacing:-1.600000pt;}
.wsa1{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.361920pt;}
.ws1a{word-spacing:-1.360000pt;}
.ws3e{word-spacing:-1.344000pt;}
.wsb9{word-spacing:-1.280000pt;}
.wse4{word-spacing:-1.088000pt;}
.ws52{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.893760pt;}
.wsba{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.723520pt;}
.ws109{word-spacing:-0.704000pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws134{word-spacing:-0.448000pt;}
.ws44{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.320000pt;}
.ws102{word-spacing:-0.255360pt;}
.ws79{word-spacing:-0.213760pt;}
.ws103{word-spacing:-0.170240pt;}
.ws33{word-spacing:-0.144000pt;}
.wsfb{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.085120pt;}
.ws19{word-spacing:-0.080000pt;}
.ws23{word-spacing:-0.064000pt;}
.ws10{word-spacing:0.000000pt;}
.ws101{word-spacing:0.064000pt;}
.ws29{word-spacing:0.085120pt;}
.ws146{word-spacing:0.096000pt;}
.ws18{word-spacing:0.101120pt;}
.ws15{word-spacing:0.106880pt;}
.ws65{word-spacing:0.128000pt;}
.ws135{word-spacing:0.144000pt;}
.ws2c{word-spacing:0.170240pt;}
.ws34{word-spacing:0.192000pt;}
.ws17{word-spacing:0.202240pt;}
.ws14{word-spacing:0.213760pt;}
.ws35{word-spacing:0.240000pt;}
.ws28{word-spacing:0.255360pt;}
.ws9b{word-spacing:0.256000pt;}
.ws11{word-spacing:0.320000pt;}
.ws16{word-spacing:0.320640pt;}
.ws12{word-spacing:0.384000pt;}
.ws6a{word-spacing:0.448000pt;}
.ws136{word-spacing:0.468160pt;}
.ws130{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.553280pt;}
.ws46{word-spacing:0.576000pt;}
.ws13{word-spacing:0.640000pt;}
.ws32{word-spacing:0.704000pt;}
.ws81{word-spacing:0.832000pt;}
.ws1b{word-spacing:0.893760pt;}
.ws50{word-spacing:0.896000pt;}
.ws55{word-spacing:0.960000pt;}
.ws25{word-spacing:1.021440pt;}
.ws153{word-spacing:1.152000pt;}
.ws24{word-spacing:1.191680pt;}
.ws5e{word-spacing:1.216000pt;}
.wscf{word-spacing:1.280000pt;}
.ws78{word-spacing:1.408000pt;}
.wsc0{word-spacing:1.536000pt;}
.wsbf{word-spacing:1.600000pt;}
.ws1c{word-spacing:1.830080pt;}
.wsc8{word-spacing:1.856000pt;}
.wsc7{word-spacing:1.920000pt;}
.ws2a{word-spacing:2.170560pt;}
.ws73{word-spacing:2.176000pt;}
.ws139{word-spacing:2.240000pt;}
.ws11f{word-spacing:2.432000pt;}
.wse9{word-spacing:2.496000pt;}
.ws47{word-spacing:2.560000pt;}
.wsb0{word-spacing:2.816000pt;}
.wsfc{word-spacing:2.880000pt;}
.ws14c{word-spacing:3.072000pt;}
.ws20{word-spacing:3.106880pt;}
.ws70{word-spacing:3.136000pt;}
.ws12d{word-spacing:3.200000pt;}
.ws144{word-spacing:3.456000pt;}
.wse8{word-spacing:3.520000pt;}
.ws95{word-spacing:3.776000pt;}
.ws36{word-spacing:3.840000pt;}
.ws148{word-spacing:4.032000pt;}
.ws49{word-spacing:4.096000pt;}
.ws4a{word-spacing:4.160000pt;}
.ws27{word-spacing:4.213440pt;}
.ws26{word-spacing:4.383680pt;}
.ws91{word-spacing:4.416000pt;}
.ws51{word-spacing:4.480000pt;}
.ws14a{word-spacing:4.672000pt;}
.ws71{word-spacing:4.736000pt;}
.ws86{word-spacing:4.800000pt;}
.ws120{word-spacing:5.056000pt;}
.ws125{word-spacing:5.120000pt;}
.ws132{word-spacing:5.184000pt;}
.ws96{word-spacing:5.376000pt;}
.wscb{word-spacing:5.440000pt;}
.ws84{word-spacing:5.696000pt;}
.wsc9{word-spacing:5.760000pt;}
.ws8b{word-spacing:6.016000pt;}
.wse6{word-spacing:6.080000pt;}
.ws7b{word-spacing:6.336000pt;}
.ws97{word-spacing:6.400000pt;}
.wsa3{word-spacing:6.592000pt;}
.wsa4{word-spacing:6.656000pt;}
.ws133{word-spacing:6.720000pt;}
.ws143{word-spacing:6.976000pt;}
.ws6f{word-spacing:7.040000pt;}
.ws22{word-spacing:7.277760pt;}
.ws6e{word-spacing:7.296000pt;}
.wsf3{word-spacing:7.360000pt;}
.wsd1{word-spacing:7.616000pt;}
.ws56{word-spacing:7.680000pt;}
.ws69{word-spacing:7.936000pt;}
.wsc6{word-spacing:8.000000pt;}
.ws152{word-spacing:8.256000pt;}
.ws151{word-spacing:8.320000pt;}
.wsf9{word-spacing:8.640000pt;}
.wsa8{word-spacing:8.896000pt;}
.ws5c{word-spacing:8.960000pt;}
.wscc{word-spacing:9.216000pt;}
.ws3d{word-spacing:9.280000pt;}
.ws74{word-spacing:9.536000pt;}
.ws60{word-spacing:9.600000pt;}
.ws131{word-spacing:9.856000pt;}
.wsb1{word-spacing:9.920000pt;}
.wsc5{word-spacing:10.176000pt;}
.ws110{word-spacing:10.240000pt;}
.ws54{word-spacing:10.496000pt;}
.ws62{word-spacing:10.816000pt;}
.ws15c{word-spacing:10.880000pt;}
.ws89{word-spacing:11.136000pt;}
.ws156{word-spacing:11.520000pt;}
.wsd9{word-spacing:11.776000pt;}
.wsdb{word-spacing:11.840000pt;}
.wsda{word-spacing:11.904000pt;}
.wsa6{word-spacing:12.160000pt;}
.wse1{word-spacing:12.352000pt;}
.ws39{word-spacing:12.480000pt;}
.wse7{word-spacing:12.672000pt;}
.ws53{word-spacing:12.736000pt;}
.ws37{word-spacing:12.800000pt;}
.wsed{word-spacing:13.056000pt;}
.ws40{word-spacing:13.120000pt;}
.ws11b{word-spacing:13.440000pt;}
.wsbe{word-spacing:13.696000pt;}
.ws12f{word-spacing:13.760000pt;}
.ws116{word-spacing:14.016000pt;}
.ws137{word-spacing:14.080000pt;}
.ws126{word-spacing:14.336000pt;}
.ws98{word-spacing:14.400000pt;}
.ws6c{word-spacing:14.656000pt;}
.ws6b{word-spacing:14.720000pt;}
.wsdc{word-spacing:14.976000pt;}
.ws108{word-spacing:15.040000pt;}
.ws11d{word-spacing:15.232000pt;}
.ws11e{word-spacing:15.360000pt;}
.ws85{word-spacing:15.552000pt;}
.ws150{word-spacing:15.616000pt;}
.ws5a{word-spacing:15.680000pt;}
.wsc1{word-spacing:15.872000pt;}
.wsc2{word-spacing:15.936000pt;}
.ws13c{word-spacing:16.192000pt;}
.ws13b{word-spacing:16.256000pt;}
.wsd5{word-spacing:16.320000pt;}
.ws117{word-spacing:16.576000pt;}
.wsb2{word-spacing:16.640000pt;}
.ws158{word-spacing:16.896000pt;}
.ws107{word-spacing:16.960000pt;}
.wscd{word-spacing:17.216000pt;}
.ws63{word-spacing:17.280000pt;}
.ws149{word-spacing:17.536000pt;}
.wsbb{word-spacing:17.600000pt;}
.ws4f{word-spacing:17.920000pt;}
.wsf4{word-spacing:18.112000pt;}
.ws138{word-spacing:18.240000pt;}
.wsb8{word-spacing:18.560000pt;}
.wsec{word-spacing:18.816000pt;}
.wsa2{word-spacing:18.880000pt;}
.wsa9{word-spacing:19.136000pt;}
.ws3c{word-spacing:19.200000pt;}
.wsd2{word-spacing:19.456000pt;}
.ws66{word-spacing:19.776000pt;}
.ws4e{word-spacing:19.840000pt;}
.wsce{word-spacing:20.096000pt;}
.wsca{word-spacing:20.160000pt;}
.ws75{word-spacing:20.480000pt;}
.ws14f{word-spacing:20.800000pt;}
.ws9a{word-spacing:21.376000pt;}
.ws94{word-spacing:21.696000pt;}
.wse5{word-spacing:21.760000pt;}
.ws114{word-spacing:22.080000pt;}
.ws13e{word-spacing:22.400000pt;}
.ws3b{word-spacing:22.656000pt;}
.ws14b{word-spacing:22.720000pt;}
.ws141{word-spacing:23.040000pt;}
.ws10e{word-spacing:23.360000pt;}
.wse3{word-spacing:23.680000pt;}
.wsd6{word-spacing:24.320000pt;}
.wsd7{word-spacing:24.576000pt;}
.wsd8{word-spacing:24.640000pt;}
.wsa5{word-spacing:24.896000pt;}
.ws3f{word-spacing:24.960000pt;}
.wsc4{word-spacing:25.152000pt;}
.ws93{word-spacing:25.280000pt;}
.wsa7{word-spacing:25.536000pt;}
.ws9e{word-spacing:25.920000pt;}
.wsdd{word-spacing:26.240000pt;}
.ws5f{word-spacing:26.432000pt;}
.wse0{word-spacing:26.880000pt;}
.ws61{word-spacing:27.072000pt;}
.ws11c{word-spacing:27.200000pt;}
.ws92{word-spacing:27.520000pt;}
.ws142{word-spacing:27.712000pt;}
.ws9c{word-spacing:27.840000pt;}
.ws67{word-spacing:28.096000pt;}
.ws6d{word-spacing:28.160000pt;}
.ws68{word-spacing:28.480000pt;}
.ws57{word-spacing:28.736000pt;}
.ws145{word-spacing:28.896000pt;}
.wsfd{word-spacing:29.056000pt;}
.ws43{word-spacing:29.120000pt;}
.ws124{word-spacing:29.440000pt;}
.wsb5{word-spacing:29.696000pt;}
.wsb6{word-spacing:29.760000pt;}
.ws8d{word-spacing:30.016000pt;}
.ws13f{word-spacing:30.080000pt;}
.wsf2{word-spacing:30.272000pt;}
.wsf8{word-spacing:30.400000pt;}
.wsbc{word-spacing:30.656000pt;}
.wsf1{word-spacing:30.720000pt;}
.ws7c{word-spacing:31.360000pt;}
.ws8c{word-spacing:32.000000pt;}
.ws13d{word-spacing:33.216000pt;}
.ws14e{word-spacing:33.280000pt;}
.ws38{word-spacing:33.536000pt;}
.ws4c{word-spacing:33.600000pt;}
.wsf5{word-spacing:34.176000pt;}
.ws111{word-spacing:34.816000pt;}
.ws12a{word-spacing:34.880000pt;}
.wsbd{word-spacing:35.200000pt;}
.ws8f{word-spacing:35.456000pt;}
.ws90{word-spacing:35.520000pt;}
.ws87{word-spacing:35.776000pt;}
.ws88{word-spacing:35.840000pt;}
.ws7f{word-spacing:36.096000pt;}
.ws105{word-spacing:36.160000pt;}
.ws10a{word-spacing:36.416000pt;}
.ws121{word-spacing:36.736000pt;}
.wsb7{word-spacing:37.696000pt;}
.ws5d{word-spacing:37.760000pt;}
.ws15a{word-spacing:38.016000pt;}
.ws72{word-spacing:38.080000pt;}
.wsee{word-spacing:38.336000pt;}
.ws8e{word-spacing:38.592000pt;}
.ws11a{word-spacing:38.720000pt;}
.ws118{word-spacing:38.976000pt;}
.ws14d{word-spacing:40.640000pt;}
.wsea{word-spacing:41.280000pt;}
.wsaf{word-spacing:41.792000pt;}
.wsae{word-spacing:42.240000pt;}
.ws119{word-spacing:42.816000pt;}
.wsef{word-spacing:43.456000pt;}
.ws128{word-spacing:43.712000pt;}
.wsf0{word-spacing:43.840000pt;}
.ws115{word-spacing:44.480000pt;}
.wse2{word-spacing:44.736000pt;}
.wsad{word-spacing:44.800000pt;}
.ws113{word-spacing:45.120000pt;}
.ws4b{word-spacing:45.376000pt;}
.wsd4{word-spacing:45.760000pt;}
.ws4d{word-spacing:46.400000pt;}
.ws8a{word-spacing:46.976000pt;}
.ws123{word-spacing:48.000000pt;}
.ws129{word-spacing:49.216000pt;}
.ws12b{word-spacing:49.536000pt;}
.ws9f{word-spacing:50.432000pt;}
.ws106{word-spacing:51.776000pt;}
.ws157{word-spacing:54.720000pt;}
.ws10d{word-spacing:56.000000pt;}
.wsd3{word-spacing:57.280000pt;}
.ws10f{word-spacing:58.496000pt;}
.ws59{word-spacing:58.880000pt;}
.wseb{word-spacing:59.136000pt;}
.ws5b{word-spacing:61.696000pt;}
.wsab{word-spacing:62.080000pt;}
.wsaa{word-spacing:62.400000pt;}
.ws10b{word-spacing:62.912000pt;}
.ws10c{word-spacing:62.976000pt;}
.wsac{word-spacing:64.512000pt;}
.ws127{word-spacing:64.896000pt;}
.wsd0{word-spacing:65.280000pt;}
.ws154{word-spacing:68.160000pt;}
.ws159{word-spacing:68.800000pt;}
.ws99{word-spacing:69.760000pt;}
.ws7d{word-spacing:70.656000pt;}
.ws7e{word-spacing:71.040000pt;}
.ws83{word-spacing:81.216000pt;}
.ws112{word-spacing:85.440000pt;}
.ws140{word-spacing:86.336000pt;}
.ws9d{word-spacing:91.776000pt;}
.wsb3{word-spacing:92.416000pt;}
.wsf7{word-spacing:93.056000pt;}
.wsf6{word-spacing:260.480000pt;}
._8{margin-left:-5.760000pt;}
._4{margin-left:-3.958080pt;}
._2{margin-left:-2.012928pt;}
._1{margin-left:-0.924512pt;}
._0{width:1.038760pt;}
._6{width:2.174754pt;}
._1d{width:3.200000pt;}
._7{width:4.224000pt;}
._1a{width:6.080000pt;}
._a{width:7.680000pt;}
._b{width:9.408000pt;}
._20{width:11.840000pt;}
._1e{width:13.120000pt;}
._11{width:15.004800pt;}
._e{width:17.246400pt;}
._1b{width:18.560000pt;}
._c{width:21.888000pt;}
._21{width:23.680000pt;}
._9{width:25.024000pt;}
._14{width:29.404800pt;}
._1c{width:38.400000pt;}
._1f{width:40.640000pt;}
._12{width:48.926400pt;}
._19{width:52.582400pt;}
._5{width:59.072000pt;}
._17{width:60.129600pt;}
._f{width:148.771200pt;}
._15{width:166.017600pt;}
._16{width:173.088000pt;}
._3{width:185.999680pt;}
._10{width:223.008000pt;}
._13{width:261.427200pt;}
._18{width:323.153600pt;}
._d{width:753.536000pt;}
.fs8{font-size:5.440000pt;}
.fs2{font-size:26.560000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.y1e1{bottom:-60.640000pt;}
.y20e{bottom:-55.520133pt;}
.y1e0{bottom:-44.400000pt;}
.y20d{bottom:-41.200133pt;}
.y20c{bottom:-26.880000pt;}
.y1df{bottom:-14.640000pt;}
.y9a{bottom:-11.920000pt;}
.y112{bottom:-11.840133pt;}
.y7{bottom:-9.920000pt;}
.y20b{bottom:-6.240000pt;}
.y1de{bottom:-0.080000pt;}
.y0{bottom:0.000000pt;}
.y17f{bottom:2.319867pt;}
.y13a{bottom:2.320000pt;}
.y159{bottom:2.400000pt;}
.y14e{bottom:2.559867pt;}
.y142{bottom:2.560000pt;}
.y1b4{bottom:2.639867pt;}
.y138{bottom:2.640000pt;}
.y13{bottom:2.800000pt;}
.y99{bottom:4.320000pt;}
.y111{bottom:4.399867pt;}
.ya{bottom:4.400000pt;}
.y2{bottom:4.559867pt;}
.y6{bottom:6.319867pt;}
.y20a{bottom:7.760000pt;}
.y13d{bottom:14.559867pt;}
.y149{bottom:14.560000pt;}
.y14c{bottom:14.639867pt;}
.y137{bottom:14.640000pt;}
.y14a{bottom:14.800000pt;}
.y151{bottom:14.879867pt;}
.y14d{bottom:14.880000pt;}
.y4{bottom:17.280000pt;}
.y18b{bottom:18.800000pt;}
.y4b{bottom:20.560000pt;}
.y9{bottom:20.720000pt;}
.y4a{bottom:22.720000pt;}
.y8{bottom:22.800000pt;}
.y144{bottom:26.879867pt;}
.y13f{bottom:26.880000pt;}
.y146{bottom:27.119867pt;}
.y140{bottom:27.120000pt;}
.y4c{bottom:30.720000pt;}
.y1a0{bottom:31.680000pt;}
.y1a2{bottom:31.840000pt;}
.y1a1{bottom:31.920000pt;}
.y3{bottom:34.800000pt;}
.y15b{bottom:39.120000pt;}
.y15d{bottom:39.360000pt;}
.yc{bottom:47.442667pt;}
.y97{bottom:48.240000pt;}
.y4e{bottom:48.244320pt;}
.y184{bottom:51.360000pt;}
.y153{bottom:51.440000pt;}
.y185{bottom:51.600000pt;}
.y18d{bottom:51.679867pt;}
.y154{bottom:51.680000pt;}
.y165{bottom:63.680000pt;}
.y166{bottom:63.920000pt;}
.y18c{bottom:66.560000pt;}
.y1da{bottom:68.400000pt;}
.yca{bottom:69.519867pt;}
.y7f{bottom:69.520000pt;}
.y12d{bottom:70.479867pt;}
.y10f{bottom:70.639867pt;}
.y21f{bottom:73.076507pt;}
.y135{bottom:73.760000pt;}
.yed{bottom:76.800000pt;}
.y208{bottom:76.880000pt;}
.y10b{bottom:76.959867pt;}
.y19e{bottom:80.240000pt;}
.y1d9{bottom:86.800000pt;}
.yc9{bottom:87.919867pt;}
.y7e{bottom:87.920000pt;}
.y21e{bottom:88.440507pt;}
.y12c{bottom:88.879867pt;}
.y10e{bottom:89.039867pt;}
.y199{bottom:89.040000pt;}
.y134{bottom:92.400000pt;}
.yec{bottom:95.200000pt;}
.y207{bottom:95.280000pt;}
.y10a{bottom:95.359867pt;}
.y19d{bottom:98.480000pt;}
.y21d{bottom:103.724347pt;}
.y1d8{bottom:105.200000pt;}
.yc8{bottom:106.319867pt;}
.y7d{bottom:106.320000pt;}
.y49{bottom:107.200000pt;}
.y12b{bottom:107.279867pt;}
.y10d{bottom:107.439867pt;}
.y198{bottom:107.440000pt;}
.y133{bottom:110.800000pt;}
.yeb{bottom:113.600000pt;}
.y206{bottom:113.680000pt;}
.y21c{bottom:119.088347pt;}
.y48{bottom:122.895280pt;}
.y1d7{bottom:123.600000pt;}
.yc7{bottom:124.719867pt;}
.y7c{bottom:124.720000pt;}
.y12a{bottom:125.679867pt;}
.y109{bottom:125.759867pt;}
.y10c{bottom:125.839867pt;}
.y197{bottom:125.840000pt;}
.y132{bottom:129.200000pt;}
.y19c{bottom:130.799867pt;}
.yea{bottom:132.000000pt;}
.y205{bottom:132.080000pt;}
.y21b{bottom:134.452347pt;}
.y47{bottom:135.131280pt;}
.y1d6{bottom:142.000000pt;}
.yc6{bottom:143.119867pt;}
.y7b{bottom:143.120000pt;}
.y129{bottom:144.079867pt;}
.y108{bottom:144.239867pt;}
.y196{bottom:144.240000pt;}
.y46{bottom:147.207680pt;}
.y19b{bottom:149.199867pt;}
.y21a{bottom:149.736187pt;}
.ye9{bottom:150.400000pt;}
.y204{bottom:150.480000pt;}
.y131{bottom:156.640000pt;}
.y45{bottom:160.326800pt;}
.y1d5{bottom:160.400000pt;}
.yc5{bottom:161.519867pt;}
.y7a{bottom:161.520000pt;}
.y128{bottom:162.479867pt;}
.y107{bottom:162.639867pt;}
.y195{bottom:162.640000pt;}
.y1c3{bottom:164.560000pt;}
.y219{bottom:165.100187pt;}
.ye8{bottom:168.800000pt;}
.y44{bottom:172.722400pt;}
.y130{bottom:175.040000pt;}
.y1d4{bottom:178.800000pt;}
.y1c4{bottom:179.200000pt;}
.y1c5{bottom:179.440000pt;}
.yc4{bottom:179.919867pt;}
.y79{bottom:179.920000pt;}
.y218{bottom:180.464187pt;}
.y127{bottom:180.879867pt;}
.y106{bottom:181.039867pt;}
.y194{bottom:181.040000pt;}
.ye7{bottom:187.200000pt;}
.y43{bottom:188.086560pt;}
.y12f{bottom:193.440000pt;}
.y217{bottom:195.748027pt;}
.y1d3{bottom:197.200000pt;}
.yc3{bottom:198.319867pt;}
.y78{bottom:198.320000pt;}
.y126{bottom:199.279867pt;}
.y105{bottom:199.439867pt;}
.y193{bottom:199.440000pt;}
.y42{bottom:200.322560pt;}
.y1bf{bottom:202.080000pt;}
.ye6{bottom:205.600000pt;}
.y183{bottom:208.640000pt;}
.y216{bottom:211.112027pt;}
.y41{bottom:213.367200pt;}
.y1d2{bottom:215.600000pt;}
.yc2{bottom:216.719867pt;}
.y77{bottom:216.720000pt;}
.y1c1{bottom:216.878880pt;}
.y104{bottom:217.839867pt;}
.y192{bottom:217.840000pt;}
.y18a{bottom:223.200000pt;}
.ye5{bottom:224.000000pt;}
.y215{bottom:226.476027pt;}
.y1c2{bottom:228.960000pt;}
.y1c0{bottom:229.200000pt;}
.y1d1{bottom:234.000000pt;}
.yc1{bottom:235.119867pt;}
.y76{bottom:235.120000pt;}
.y189{bottom:235.520000pt;}
.y187{bottom:235.759867pt;}
.y103{bottom:236.239867pt;}
.y125{bottom:236.240000pt;}
.y40{bottom:238.083920pt;}
.y214{bottom:241.759867pt;}
.ye4{bottom:242.400000pt;}
.y188{bottom:247.759867pt;}
.y186{bottom:248.000000pt;}
.y3f{bottom:250.319920pt;}
.y1ba{bottom:251.760000pt;}
.y1d0{bottom:252.400000pt;}
.yc0{bottom:253.519867pt;}
.y75{bottom:253.520000pt;}
.y102{bottom:254.639867pt;}
.y124{bottom:254.640000pt;}
.y213{bottom:257.680000pt;}
.ye3{bottom:260.800000pt;}
.y1be{bottom:266.400000pt;}
.y1bc{bottom:266.640000pt;}
.y180{bottom:270.320000pt;}
.y1cf{bottom:270.800000pt;}
.ybf{bottom:271.919867pt;}
.y74{bottom:271.920000pt;}
.y101{bottom:273.039867pt;}
.y123{bottom:273.040000pt;}
.y212{bottom:276.080000pt;}
.y1bd{bottom:278.640000pt;}
.y1bb{bottom:278.880000pt;}
.ye2{bottom:279.200000pt;}
.y3e{bottom:280.080000pt;}
.y182{bottom:284.880000pt;}
.y181{bottom:285.120000pt;}
.y1ce{bottom:289.200000pt;}
.ybe{bottom:290.319867pt;}
.y73{bottom:290.320000pt;}
.y100{bottom:291.439867pt;}
.y122{bottom:291.440000pt;}
.y211{bottom:294.480000pt;}
.y3d{bottom:294.560000pt;}
.ye1{bottom:297.600000pt;}
.y1b5{bottom:301.520000pt;}
.y3c{bottom:303.241040pt;}
.y17b{bottom:307.440000pt;}
.y1cd{bottom:307.600000pt;}
.ybd{bottom:308.719867pt;}
.y72{bottom:308.720000pt;}
.yff{bottom:309.839867pt;}
.y121{bottom:309.840000pt;}
.y210{bottom:312.880000pt;}
.y3b{bottom:315.796240pt;}
.ye0{bottom:316.000000pt;}
.y1b9{bottom:316.078880pt;}
.y1b8{bottom:316.318880pt;}
.y17e{bottom:322.000000pt;}
.y17d{bottom:322.240000pt;}
.y1cc{bottom:326.000000pt;}
.ybc{bottom:327.119867pt;}
.y71{bottom:327.120000pt;}
.y3a{bottom:328.032240pt;}
.yfe{bottom:328.239867pt;}
.y120{bottom:328.240000pt;}
.y1b6{bottom:328.400000pt;}
.y1b7{bottom:328.640000pt;}
.ydf{bottom:334.320000pt;}
.y203{bottom:334.400000pt;}
.y17c{bottom:334.560000pt;}
.y39{bottom:340.268240pt;}
.y1cb{bottom:344.320000pt;}
.ybb{bottom:345.519867pt;}
.y70{bottom:345.520000pt;}
.yfd{bottom:346.639867pt;}
.y11f{bottom:346.640000pt;}
.y20f{bottom:349.120000pt;}
.y1b1{bottom:351.200000pt;}
.y38{bottom:352.504240pt;}
.yde{bottom:352.720000pt;}
.y202{bottom:352.800000pt;}
.y176{bottom:356.800000pt;}
.yba{bottom:363.919867pt;}
.y6f{bottom:363.920000pt;}
.y37{bottom:364.825360pt;}
.yfc{bottom:365.039867pt;}
.y11e{bottom:365.040000pt;}
.y1b2{bottom:365.840000pt;}
.y1b3{bottom:366.080000pt;}
.ydd{bottom:371.120000pt;}
.y201{bottom:371.200000pt;}
.y17a{bottom:371.448000pt;}
.y36{bottom:377.061360pt;}
.y1ca{bottom:381.120000pt;}
.yb9{bottom:382.319867pt;}
.y6e{bottom:382.320000pt;}
.yfb{bottom:383.439867pt;}
.y11d{bottom:383.440000pt;}
.y179{bottom:383.684000pt;}
.y1ac{bottom:388.720000pt;}
.y35{bottom:389.297360pt;}
.ydc{bottom:389.520000pt;}
.y200{bottom:389.600000pt;}
.y178{bottom:395.920000pt;}
.y177{bottom:396.160000pt;}
.y1c9{bottom:399.520000pt;}
.yb8{bottom:400.719867pt;}
.y6d{bottom:400.720000pt;}
.y34{bottom:401.618480pt;}
.yfa{bottom:401.839867pt;}
.y11c{bottom:401.840000pt;}
.y1b0{bottom:403.278880pt;}
.y1af{bottom:403.518880pt;}
.ydb{bottom:407.920000pt;}
.y1ff{bottom:408.000000pt;}
.y33{bottom:413.854480pt;}
.y1ad{bottom:415.600000pt;}
.y1ae{bottom:415.840000pt;}
.y170{bottom:418.480000pt;}
.y1c8{bottom:418.640000pt;}
.yb7{bottom:419.119867pt;}
.y6c{bottom:419.120000pt;}
.yf9{bottom:420.239867pt;}
.y11b{bottom:420.240000pt;}
.y32{bottom:426.090480pt;}
.yda{bottom:426.320000pt;}
.y1fe{bottom:426.400000pt;}
.y175{bottom:433.120000pt;}
.yb6{bottom:437.519867pt;}
.y6b{bottom:437.520000pt;}
.y1c7{bottom:438.160000pt;}
.y1a9{bottom:438.400000pt;}
.y31{bottom:438.411600pt;}
.yf8{bottom:438.639867pt;}
.y11a{bottom:438.640000pt;}
.y23f{bottom:444.527520pt;}
.yd9{bottom:444.720000pt;}
.y1fd{bottom:444.800000pt;}
.y174{bottom:445.360000pt;}
.y172{bottom:445.600000pt;}
.y30{bottom:450.647600pt;}
.y1aa{bottom:453.040000pt;}
.y1ab{bottom:453.280000pt;}
.yb5{bottom:455.919867pt;}
.y6a{bottom:455.920000pt;}
.yf7{bottom:457.039867pt;}
.y119{bottom:457.040000pt;}
.y173{bottom:457.600000pt;}
.y171{bottom:457.840000pt;}
.y23e{bottom:459.891520pt;}
.y2f{bottom:462.883600pt;}
.yd8{bottom:463.120000pt;}
.y1fc{bottom:463.200000pt;}
.yb4{bottom:474.319867pt;}
.y69{bottom:474.320000pt;}
.y2e{bottom:474.960000pt;}
.y23d{bottom:475.175360pt;}
.yf6{bottom:475.439867pt;}
.y118{bottom:475.440000pt;}
.y1a6{bottom:475.920000pt;}
.y16d{bottom:480.160000pt;}
.yd7{bottom:481.360000pt;}
.y1fb{bottom:481.600000pt;}
.y2d{bottom:489.200000pt;}
.y1a7{bottom:490.480000pt;}
.y23c{bottom:490.539360pt;}
.y1a8{bottom:490.720000pt;}
.yb3{bottom:492.639867pt;}
.y68{bottom:492.640000pt;}
.yf5{bottom:493.839867pt;}
.y117{bottom:493.840000pt;}
.y16f{bottom:494.720000pt;}
.y16e{bottom:494.960000pt;}
.yd6{bottom:499.760000pt;}
.y1fa{bottom:500.000000pt;}
.y23b{bottom:505.823200pt;}
.y2c{bottom:506.320000pt;}
.yb2{bottom:511.039867pt;}
.y67{bottom:511.040000pt;}
.yf4{bottom:512.239867pt;}
.y116{bottom:512.240000pt;}
.y1a3{bottom:513.360000pt;}
.y164{bottom:517.280000pt;}
.yd5{bottom:518.160000pt;}
.y1f9{bottom:518.400000pt;}
.y23a{bottom:521.187200pt;}
.y2b{bottom:526.720000pt;}
.y1a4{bottom:528.000000pt;}
.y1a5{bottom:528.240000pt;}
.y95{bottom:529.280000pt;}
.yb1{bottom:529.439867pt;}
.y66{bottom:529.440000pt;}
.yf3{bottom:530.639867pt;}
.y115{bottom:530.640000pt;}
.y16c{bottom:531.840000pt;}
.yd4{bottom:536.560000pt;}
.y1f8{bottom:536.800000pt;}
.y16b{bottom:544.160000pt;}
.yb0{bottom:547.839867pt;}
.y65{bottom:547.840000pt;}
.y239{bottom:548.308000pt;}
.yf2{bottom:549.039867pt;}
.y114{bottom:549.040000pt;}
.y19f{bottom:550.800000pt;}
.y1f7{bottom:555.200000pt;}
.y16a{bottom:556.400000pt;}
.y168{bottom:556.640000pt;}
.y2a{bottom:556.740880pt;}
.y238{bottom:563.752160pt;}
.yaf{bottom:566.239867pt;}
.y64{bottom:566.240000pt;}
.y94{bottom:566.960000pt;}
.yd3{bottom:567.279867pt;}
.yf1{bottom:567.439867pt;}
.y113{bottom:567.440000pt;}
.y169{bottom:568.640000pt;}
.y167{bottom:568.880000pt;}
.y29{bottom:569.221600pt;}
.y1f6{bottom:573.600000pt;}
.y237{bottom:579.116160pt;}
.y28{bottom:581.457600pt;}
.yae{bottom:584.639867pt;}
.y63{bottom:584.640000pt;}
.yd2{bottom:585.679867pt;}
.yf0{bottom:585.839867pt;}
.y93{bottom:585.840000pt;}
.y161{bottom:591.200000pt;}
.y1f5{bottom:592.000000pt;}
.y27{bottom:593.778720pt;}
.y236{bottom:594.400000pt;}
.yad{bottom:603.039867pt;}
.y62{bottom:603.040000pt;}
.yd1{bottom:604.079867pt;}
.yef{bottom:604.239867pt;}
.y92{bottom:604.240000pt;}
.y163{bottom:605.840000pt;}
.y26{bottom:606.014720pt;}
.y162{bottom:606.080000pt;}
.y235{bottom:610.320000pt;}
.y1f4{bottom:610.400000pt;}
.y25{bottom:618.250720pt;}
.yac{bottom:621.439867pt;}
.y61{bottom:621.440000pt;}
.yd0{bottom:622.479867pt;}
.yee{bottom:622.639867pt;}
.y91{bottom:622.640000pt;}
.y15a{bottom:628.320000pt;}
.y234{bottom:628.720000pt;}
.y1f3{bottom:628.800000pt;}
.y24{bottom:630.571840pt;}
.yab{bottom:639.839867pt;}
.y60{bottom:639.840000pt;}
.ycf{bottom:641.039867pt;}
.y90{bottom:641.040000pt;}
.y23{bottom:642.807840pt;}
.y160{bottom:642.960000pt;}
.y15f{bottom:643.200000pt;}
.y1f2{bottom:647.200000pt;}
.y22{bottom:655.043840pt;}
.y15c{bottom:655.200000pt;}
.y15e{bottom:655.440000pt;}
.yaa{bottom:658.239867pt;}
.y5f{bottom:658.240000pt;}
.yce{bottom:659.359867pt;}
.y8f{bottom:659.360000pt;}
.y233{bottom:664.844347pt;}
.y1f1{bottom:665.600000pt;}
.y21{bottom:667.364960pt;}
.y5e{bottom:676.640000pt;}
.y152{bottom:677.680000pt;}
.ycd{bottom:677.759867pt;}
.y8e{bottom:677.760000pt;}
.y20{bottom:679.600960pt;}
.y232{bottom:680.128187pt;}
.y1f0{bottom:684.000000pt;}
.y1f{bottom:691.836960pt;}
.y158{bottom:692.322880pt;}
.ya9{bottom:695.039867pt;}
.y5d{bottom:695.040000pt;}
.y231{bottom:695.492187pt;}
.ycc{bottom:696.159867pt;}
.y8d{bottom:696.160000pt;}
.y1ef{bottom:702.400000pt;}
.y1e{bottom:704.158080pt;}
.y157{bottom:704.558880pt;}
.y230{bottom:710.856187pt;}
.y5c{bottom:713.440000pt;}
.ya8{bottom:714.079867pt;}
.ycb{bottom:714.559867pt;}
.y8c{bottom:714.560000pt;}
.y1d{bottom:716.160000pt;}
.y156{bottom:716.880000pt;}
.y155{bottom:717.120000pt;}
.y1ee{bottom:720.800000pt;}
.y22f{bottom:726.140027pt;}
.y1c{bottom:730.399867pt;}
.y5b{bottom:731.840000pt;}
.ya7{bottom:732.959867pt;}
.y8b{bottom:732.960000pt;}
.y1ed{bottom:739.200000pt;}
.y150{bottom:739.360000pt;}
.y22e{bottom:741.504027pt;}
.y1b{bottom:747.839867pt;}
.y5a{bottom:750.240000pt;}
.ya6{bottom:751.359867pt;}
.y8a{bottom:751.360000pt;}
.y22d{bottom:756.868027pt;}
.y1ec{bottom:757.600000pt;}
.y14f{bottom:764.240000pt;}
.y59{bottom:768.640000pt;}
.ya5{bottom:769.759867pt;}
.y89{bottom:769.760000pt;}
.y22c{bottom:772.151867pt;}
.y1a{bottom:774.479867pt;}
.y1eb{bottom:776.000000pt;}
.y58{bottom:787.040000pt;}
.y22b{bottom:787.515867pt;}
.y19{bottom:787.599867pt;}
.ya4{bottom:788.159867pt;}
.y88{bottom:788.160000pt;}
.y14b{bottom:789.120000pt;}
.y1ea{bottom:794.400000pt;}
.y18{bottom:799.359867pt;}
.y22a{bottom:802.879867pt;}
.y57{bottom:805.440000pt;}
.ya3{bottom:806.559867pt;}
.y87{bottom:806.560000pt;}
.y17{bottom:810.799867pt;}
.y1e9{bottom:812.800000pt;}
.y148{bottom:814.000000pt;}
.y229{bottom:818.163707pt;}
.y16{bottom:822.399867pt;}
.y56{bottom:823.840000pt;}
.y1dc{bottom:824.480000pt;}
.ya2{bottom:824.959867pt;}
.y86{bottom:824.960000pt;}
.y1e8{bottom:831.200000pt;}
.y228{bottom:833.527707pt;}
.y15{bottom:834.800000pt;}
.y143{bottom:838.800000pt;}
.y55{bottom:842.240000pt;}
.y1db{bottom:843.200000pt;}
.ya1{bottom:843.359867pt;}
.y85{bottom:843.360000pt;}
.y227{bottom:848.891707pt;}
.y14{bottom:849.600000pt;}
.y145{bottom:853.440000pt;}
.y147{bottom:853.679867pt;}
.y54{bottom:860.640000pt;}
.ya0{bottom:861.759867pt;}
.y84{bottom:861.760000pt;}
.y226{bottom:864.175547pt;}
.y12{bottom:866.720000pt;}
.y1e7{bottom:868.000000pt;}
.y13e{bottom:876.000000pt;}
.y53{bottom:879.040000pt;}
.y225{bottom:879.539547pt;}
.y9f{bottom:880.159867pt;}
.y83{bottom:880.160000pt;}
.y1e6{bottom:886.400000pt;}
.y11{bottom:888.714240pt;}
.y141{bottom:890.800000pt;}
.y224{bottom:894.903547pt;}
.y52{bottom:897.440000pt;}
.y9e{bottom:898.559867pt;}
.y82{bottom:898.560000pt;}
.y1e5{bottom:904.800000pt;}
.y10{bottom:904.960000pt;}
.y223{bottom:910.187387pt;}
.y13c{bottom:913.120000pt;}
.y191{bottom:916.800000pt;}
.y9d{bottom:916.959867pt;}
.y81{bottom:916.960000pt;}
.yf{bottom:921.200000pt;}
.y222{bottom:925.551387pt;}
.y51{bottom:934.240000pt;}
.y190{bottom:935.200000pt;}
.y9c{bottom:935.359867pt;}
.ye{bottom:935.360000pt;}
.y13b{bottom:938.000000pt;}
.y221{bottom:940.915387pt;}
.y1e4{bottom:940.960000pt;}
.y139{bottom:950.560000pt;}
.y50{bottom:953.280000pt;}
.y18f{bottom:953.600000pt;}
.y9b{bottom:953.759867pt;}
.y80{bottom:953.760000pt;}
.y220{bottom:956.199227pt;}
.y1e3{bottom:956.320000pt;}
.yd{bottom:957.360000pt;}
.y136{bottom:964.800000pt;}
.y1{bottom:971.440000pt;}
.y5{bottom:975.440000pt;}
.y4f{bottom:977.200000pt;}
.y96{bottom:980.640000pt;}
.y1dd{bottom:987.360000pt;}
.yb{bottom:987.919867pt;}
.y209{bottom:991.360000pt;}
.y110{bottom:991.520000pt;}
.y19a{bottom:993.200000pt;}
.y98{bottom:994.320000pt;}
.y4d{bottom:994.640000pt;}
.y1c6{bottom:996.400000pt;}
.y12e{bottom:997.920000pt;}
.y1e2{bottom:998.000000pt;}
.y18e{bottom:1002.960000pt;}
.h29{height:12.000000pt;}
.h1d{height:12.240000pt;}
.h2{height:16.001333pt;}
.hf{height:16.158667pt;}
.h1a{height:16.960000pt;}
.h1b{height:17.040000pt;}
.h8{height:18.960000pt;}
.hc{height:19.064063pt;}
.h2c{height:20.000000pt;}
.h1e{height:24.480000pt;}
.h20{height:24.558667pt;}
.h1c{height:24.560000pt;}
.h5{height:27.360000pt;}
.h18{height:30.641333pt;}
.ha{height:33.360000pt;}
.h23{height:36.798667pt;}
.h1f{height:36.800000pt;}
.h3{height:37.027031pt;}
.h4{height:38.357812pt;}
.h12{height:39.257812pt;}
.h27{height:41.520000pt;}
.h11{height:41.528750pt;}
.h13{height:41.718750pt;}
.h14{height:41.770312pt;}
.h15{height:42.892500pt;}
.h6{height:44.343750pt;}
.hd{height:44.388750pt;}
.h2b{height:44.437500pt;}
.h16{height:45.411520pt;}
.h7{height:45.937500pt;}
.h2d{height:47.109375pt;}
.h28{height:49.038667pt;}
.h22{height:49.040000pt;}
.h10{height:50.062500pt;}
.h2a{height:51.216000pt;}
.hb{height:52.448437pt;}
.he{height:57.020480pt;}
.h25{height:61.278667pt;}
.h21{height:61.361333pt;}
.h9{height:62.812500pt;}
.h26{height:63.132500pt;}
.h19{height:64.500000pt;}
.h17{height:66.750000pt;}
.h24{height:73.600000pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.360000pt;}
.w1{width:41.598667pt;}
.w14{width:45.521333pt;}
.wa{width:46.960000pt;}
.w12{width:55.998667pt;}
.wc{width:56.400000pt;}
.w11{width:84.720000pt;}
.w9{width:84.960000pt;}
.wf{width:94.320000pt;}
.w13{width:94.960000pt;}
.wb{width:103.680000pt;}
.w15{width:112.800000pt;}
.wd{width:113.200000pt;}
.w16{width:131.600000pt;}
.we{width:141.521333pt;}
.w17{width:150.881333pt;}
.w10{width:228.558667pt;}
.w2{width:228.560000pt;}
.w6{width:228.640000pt;}
.w4{width:230.718667pt;}
.w3{width:456.000000pt;}
.w8{width:642.641333pt;}
.w18{width:646.720000pt;}
.w19{width:651.040000pt;}
.w5{width:651.360000pt;}
.w7{width:654.000000pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.360000pt;}
.x26{left:7.200000pt;}
.x2{left:9.040000pt;}
.x33{left:10.320000pt;}
.x25{left:11.600000pt;}
.x2a{left:12.800000pt;}
.x40{left:14.240000pt;}
.x24{left:15.280000pt;}
.x52{left:16.400000pt;}
.x2b{left:17.360000pt;}
.x56{left:19.200000pt;}
.x41{left:20.720000pt;}
.x39{left:22.480000pt;}
.x1a{left:23.440000pt;}
.x2f{left:24.640000pt;}
.x6a{left:25.600000pt;}
.x2c{left:26.640000pt;}
.x1e{left:28.160000pt;}
.x17{left:29.440000pt;}
.x31{left:30.400000pt;}
.x66{left:31.440000pt;}
.x29{left:32.480000pt;}
.x28{left:33.760000pt;}
.x34{left:36.080000pt;}
.x27{left:37.920000pt;}
.x8{left:39.600000pt;}
.x3{left:41.680000pt;}
.x32{left:44.880000pt;}
.x23{left:47.040000pt;}
.x68{left:48.560000pt;}
.x74{left:50.640000pt;}
.x1c{left:51.840000pt;}
.x7a{left:53.040000pt;}
.x20{left:56.560000pt;}
.xa{left:62.640000pt;}
.xd{left:64.640000pt;}
.x82{left:66.000000pt;}
.x9{left:68.320000pt;}
.x4{left:69.760000pt;}
.xb{left:70.960000pt;}
.x7e{left:74.240000pt;}
.x15{left:76.160000pt;}
.x65{left:77.200000pt;}
.x69{left:80.560000pt;}
.x75{left:84.160000pt;}
.xf{left:85.920000pt;}
.x10{left:87.280000pt;}
.x30{left:89.760000pt;}
.x14{left:91.040000pt;}
.x6f{left:94.240000pt;}
.x59{left:109.920000pt;}
.x5a{left:133.920000pt;}
.x5e{left:148.160000pt;}
.x19{left:153.840000pt;}
.x6{left:169.600000pt;}
.x16{left:191.760000pt;}
.x1b{left:201.040000pt;}
.x5f{left:204.800000pt;}
.xc{left:242.640000pt;}
.xe{left:254.720000pt;}
.x60{left:300.400000pt;}
.x1d{left:305.040000pt;}
.x3a{left:319.840000pt;}
.x18{left:321.280000pt;}
.x61{left:346.560000pt;}
.x6c{left:357.200000pt;}
.x62{left:360.160000pt;}
.x1f{left:361.680000pt;}
.x70{left:362.640000pt;}
.x7f{left:364.160000pt;}
.x77{left:368.879200pt;}
.x45{left:370.240000pt;}
.x2d{left:374.400000pt;}
.x3b{left:376.960000pt;}
.x3c{left:378.080000pt;}
.x35{left:379.840000pt;}
.x7b{left:383.120000pt;}
.x4c{left:385.200000pt;}
.x42{left:389.760000pt;}
.x51{left:398.000000pt;}
.x46{left:399.840000pt;}
.x12{left:402.000000pt;}
.x5b{left:436.800000pt;}
.x5c{left:460.800000pt;}
.x78{left:467.524400pt;}
.x80{left:468.480000pt;}
.x7d{left:469.519120pt;}
.x6b{left:471.280000pt;}
.x6d{left:472.320000pt;}
.x71{left:473.360000pt;}
.x21{left:475.120000pt;}
.x67{left:477.680000pt;}
.x7{left:480.560000pt;}
.x43{left:485.440000pt;}
.x2e{left:488.320000pt;}
.x63{left:491.120000pt;}
.x57{left:497.200000pt;}
.x4d{left:499.520000pt;}
.x4b{left:501.440000pt;}
.x4e{left:502.960000pt;}
.x47{left:506.640000pt;}
.x54{left:508.160000pt;}
.x5d{left:523.440000pt;}
.x3d{left:524.560000pt;}
.x13{left:526.640000pt;}
.x11{left:529.760000pt;}
.x64{left:592.240000pt;}
.x6e{left:601.440000pt;}
.x7c{left:602.800000pt;}
.x73{left:605.282480pt;}
.x79{left:608.239120pt;}
.x81{left:611.360000pt;}
.x22{left:616.880000pt;}
.x72{left:619.040000pt;}
.x76{left:621.840000pt;}
.x4f{left:624.560000pt;}
.x49{left:627.360000pt;}
.x44{left:628.400000pt;}
.x53{left:630.320000pt;}
.x58{left:631.520000pt;}
.x37{left:634.084800pt;}
.x50{left:635.200000pt;}
.x48{left:636.400000pt;}
.x55{left:638.960000pt;}
.x3e{left:641.440000pt;}
.x38{left:643.203280pt;}
.x4a{left:644.720000pt;}
.x36{left:646.640000pt;}
.x3f{left:647.680000pt;}
.x1{left:669.440000pt;}
}

