
    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_174c658e58e3650ff4046fe3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_d1ae378d1f73cd674aabcd69.woff')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_e2ebd72ce0da77fc919041d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_82f8679e719929684827eac8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9f3b199eaca7c18e05e3520f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_4eb877172ee803699bafe90d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.000000px;}
.ls37{letter-spacing:-2.966400px;}
.ls80{letter-spacing:-2.520000px;}
.ls75{letter-spacing:-1.756800px;}
.ls74{letter-spacing:-1.742400px;}
.ls8b{letter-spacing:-1.368000px;}
.ls8f{letter-spacing:-1.360800px;}
.ls6c{letter-spacing:-1.339200px;}
.ls8c{letter-spacing:-1.317600px;}
.ls34{letter-spacing:-1.296000px;}
.ls8e{letter-spacing:-1.267200px;}
.ls35{letter-spacing:-1.260000px;}
.ls71{letter-spacing:-1.238400px;}
.ls86{letter-spacing:-1.216800px;}
.ls67{letter-spacing:-1.209600px;}
.ls36{letter-spacing:-1.195200px;}
.ls85{letter-spacing:-1.188000px;}
.ls6f{letter-spacing:-1.180800px;}
.ls8a{letter-spacing:-1.166400px;}
.ls70{letter-spacing:-1.144800px;}
.ls6e{letter-spacing:-1.080000px;}
.ls8d{letter-spacing:-1.065600px;}
.ls6d{letter-spacing:-1.044000px;}
.ls7b{letter-spacing:-0.640800px;}
.ls72{letter-spacing:-0.633600px;}
.ls73{letter-spacing:-0.619200px;}
.ls64{letter-spacing:-0.607212px;}
.ls62{letter-spacing:-0.595188px;}
.ls63{letter-spacing:-0.529056px;}
.ls59{letter-spacing:-0.402804px;}
.ls7f{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.300600px;}
.ls89{letter-spacing:-0.273600px;}
.ls5a{letter-spacing:-0.270540px;}
.ls2c{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.210420px;}
.ls25{letter-spacing:-0.180360px;}
.ls7e{letter-spacing:-0.180000px;}
.ls5e{letter-spacing:-0.174348px;}
.ls33{letter-spacing:-0.168336px;}
.ls88{letter-spacing:-0.165600px;}
.ls1b{letter-spacing:-0.163404px;}
.ls3c{letter-spacing:-0.156312px;}
.ls7a{letter-spacing:-0.151200px;}
.ls3d{letter-spacing:-0.138276px;}
.ls52{letter-spacing:-0.132264px;}
.ls40{letter-spacing:-0.120240px;}
.ls5c{letter-spacing:-0.102204px;}
.ls27{letter-spacing:-0.100800px;}
.ls68{letter-spacing:-0.096192px;}
.ls5d{letter-spacing:-0.090180px;}
.ls65{letter-spacing:-0.084168px;}
.ls78{letter-spacing:-0.079200px;}
.ls47{letter-spacing:-0.072000px;}
.ls4e{letter-spacing:-0.066132px;}
.ls2d{letter-spacing:-0.064800px;}
.ls69{letter-spacing:-0.060120px;}
.ls21{letter-spacing:-0.057600px;}
.ls29{letter-spacing:-0.050400px;}
.ls1c{letter-spacing:-0.043200px;}
.ls1a{letter-spacing:-0.038448px;}
.ls28{letter-spacing:-0.036000px;}
.ls20{letter-spacing:-0.028800px;}
.ls17{letter-spacing:-0.026352px;}
.ls41{letter-spacing:-0.024048px;}
.ls1f{letter-spacing:-0.021600px;}
.ls18{letter-spacing:-0.019224px;}
.ls4d{letter-spacing:-0.018036px;}
.ls1d{letter-spacing:-0.014400px;}
.ls43{letter-spacing:-0.012024px;}
.ls1e{letter-spacing:-0.007200px;}
.ls16{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.006012px;}
.lse{letter-spacing:0.007200px;}
.ls53{letter-spacing:0.007776px;}
.ls60{letter-spacing:0.007803px;}
.ls30{letter-spacing:0.012024px;}
.ls8{letter-spacing:0.014400px;}
.ls4c{letter-spacing:0.018036px;}
.ls57{letter-spacing:0.019764px;}
.lsa{letter-spacing:0.021600px;}
.ls66{letter-spacing:0.024048px;}
.ls10{letter-spacing:0.028800px;}
.ls9{letter-spacing:0.036000px;}
.ls54{letter-spacing:0.036072px;}
.ls7{letter-spacing:0.038448px;}
.ls56{letter-spacing:0.039528px;}
.ls4b{letter-spacing:0.042084px;}
.ls15{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.046116px;}
.ls6{letter-spacing:0.048060px;}
.lsb{letter-spacing:0.050400px;}
.ls50{letter-spacing:0.052704px;}
.ls4a{letter-spacing:0.054108px;}
.lsf{letter-spacing:0.057600px;}
.ls13{letter-spacing:0.064800px;}
.ls55{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.072144px;}
.ls2{letter-spacing:0.072468px;}
.ls5b{letter-spacing:0.078156px;}
.ls14{letter-spacing:0.079200px;}
.ls51{letter-spacing:0.084168px;}
.ls3{letter-spacing:0.085644px;}
.lsd{letter-spacing:0.086400px;}
.ls22{letter-spacing:0.090180px;}
.ls24{letter-spacing:0.093600px;}
.ls31{letter-spacing:0.096192px;}
.ls0{letter-spacing:0.098820px;}
.ls11{letter-spacing:0.100800px;}
.ls58{letter-spacing:0.102204px;}
.lsc{letter-spacing:0.108000px;}
.ls61{letter-spacing:0.108216px;}
.ls49{letter-spacing:0.114228px;}
.ls12{letter-spacing:0.115200px;}
.ls38{letter-spacing:0.120240px;}
.ls2a{letter-spacing:0.122400px;}
.ls1{letter-spacing:0.125172px;}
.ls23{letter-spacing:0.126252px;}
.ls46{letter-spacing:0.129600px;}
.ls32{letter-spacing:0.132264px;}
.ls76{letter-spacing:0.144000px;}
.ls83{letter-spacing:0.158400px;}
.ls48{letter-spacing:0.180000px;}
.ls5f{letter-spacing:0.192384px;}
.ls7d{letter-spacing:0.295200px;}
.ls79{letter-spacing:0.446400px;}
.ls2b{letter-spacing:1.080000px;}
.ls6a{letter-spacing:4.050000px;}
.ls2e{letter-spacing:4.320000px;}
.ls87{letter-spacing:4.687200px;}
.ls3b{letter-spacing:5.400000px;}
.ls77{letter-spacing:5.760000px;}
.ls26{letter-spacing:8.640000px;}
.ls7c{letter-spacing:8.913600px;}
.ls82{letter-spacing:9.633600px;}
.ls84{letter-spacing:10.800000px;}
.ls19{letter-spacing:13.783608px;}
.ls2f{letter-spacing:14.760000px;}
.ls6b{letter-spacing:15.840000px;}
.ls81{letter-spacing:80.280000px;}
.ls45{letter-spacing:85.410000px;}
.ls3f{letter-spacing:283.050972px;}
.ls42{letter-spacing:396.449316px;}
.ls4f{letter-spacing:768.640212px;}
.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;}
}
.ws1a{word-spacing:-18.100800px;}
.ws5b{word-spacing:-18.057600px;}
.ws1{word-spacing:-18.050400px;}
.ws49{word-spacing:-18.043200px;}
.ws68{word-spacing:-18.036000px;}
.ws48{word-spacing:-18.028800px;}
.ws0{word-spacing:-18.021600px;}
.ws69{word-spacing:-18.014400px;}
.ws4a{word-spacing:-18.007200px;}
.ws10{word-spacing:-18.000000px;}
.ws4b{word-spacing:-17.992800px;}
.ws37{word-spacing:-17.985600px;}
.ws4c{word-spacing:-17.978400px;}
.ws79{word-spacing:-16.732800px;}
.ws7a{word-spacing:-16.639200px;}
.ws16{word-spacing:-15.222384px;}
.ws11{word-spacing:-15.084108px;}
.ws15{word-spacing:-15.066072px;}
.ws18{word-spacing:-15.054048px;}
.wse{word-spacing:-15.036012px;}
.wsd{word-spacing:-14.873688px;}
.ws14{word-spacing:-14.627196px;}
.ws13{word-spacing:-9.727776px;}
.ws12{word-spacing:-9.720000px;}
.ws7d{word-spacing:-4.298400px;}
.ws2c{word-spacing:-3.988800px;}
.ws7f{word-spacing:-3.643200px;}
.ws1f{word-spacing:-3.528000px;}
.ws1b{word-spacing:-3.384000px;}
.ws5d{word-spacing:-3.110400px;}
.ws34{word-spacing:-2.599200px;}
.ws53{word-spacing:-2.563200px;}
.ws19{word-spacing:-2.356704px;}
.ws54{word-spacing:-2.167200px;}
.ws33{word-spacing:-1.821600px;}
.ws84{word-spacing:-1.461600px;}
.ws6f{word-spacing:-0.662400px;}
.ws60{word-spacing:-0.439200px;}
.ws7b{word-spacing:-0.424800px;}
.ws27{word-spacing:-0.410400px;}
.ws82{word-spacing:-0.381600px;}
.ws6{word-spacing:-0.367200px;}
.ws7{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.316800px;}
.ws55{word-spacing:-0.273600px;}
.ws35{word-spacing:-0.230400px;}
.wsa{word-spacing:-0.223200px;}
.ws7e{word-spacing:-0.208800px;}
.ws6b{word-spacing:-0.165600px;}
.ws56{word-spacing:-0.151200px;}
.wsc{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.100800px;}
.ws3{word-spacing:-0.064800px;}
.wsb{word-spacing:-0.057600px;}
.ws9{word-spacing:-0.050400px;}
.ws47{word-spacing:-0.036000px;}
.ws5{word-spacing:-0.028800px;}
.ws2e{word-spacing:-0.021600px;}
.ws1e{word-spacing:-0.014400px;}
.ws21{word-spacing:-0.007200px;}
.ws2{word-spacing:0.000000px;}
.ws5a{word-spacing:0.007200px;}
.ws85{word-spacing:0.014400px;}
.ws31{word-spacing:0.021600px;}
.ws2b{word-spacing:0.028800px;}
.ws8{word-spacing:0.084168px;}
.ws4{word-spacing:0.090180px;}
.ws76{word-spacing:0.136800px;}
.ws50{word-spacing:0.309600px;}
.ws30{word-spacing:1.051200px;}
.ws44{word-spacing:1.058400px;}
.ws40{word-spacing:1.072800px;}
.ws72{word-spacing:1.180800px;}
.ws71{word-spacing:1.440000px;}
.ws6c{word-spacing:1.454400px;}
.ws73{word-spacing:1.468800px;}
.ws46{word-spacing:1.778400px;}
.ws41{word-spacing:2.512800px;}
.ws1c{word-spacing:2.757600px;}
.ws83{word-spacing:2.844000px;}
.ws6e{word-spacing:2.851200px;}
.ws39{word-spacing:3.074400px;}
.ws4e{word-spacing:3.218400px;}
.ws2a{word-spacing:3.477600px;}
.ws42{word-spacing:4.104000px;}
.ws75{word-spacing:4.651200px;}
.ws74{word-spacing:4.672800px;}
.ws23{word-spacing:5.724000px;}
.ws24{word-spacing:5.745600px;}
.wsf{word-spacing:6.084000px;}
.ws28{word-spacing:6.134400px;}
.ws45{word-spacing:6.472800px;}
.ws67{word-spacing:7.718400px;}
.ws65{word-spacing:8.496000px;}
.ws70{word-spacing:9.014400px;}
.ws2f{word-spacing:9.230400px;}
.ws80{word-spacing:11.865600px;}
.ws59{word-spacing:12.607200px;}
.ws36{word-spacing:12.643200px;}
.ws52{word-spacing:13.543200px;}
.ws51{word-spacing:13.687200px;}
.ws77{word-spacing:14.731200px;}
.ws4d{word-spacing:15.811200px;}
.ws5f{word-spacing:19.447200px;}
.ws25{word-spacing:21.240000px;}
.ws32{word-spacing:21.765600px;}
.ws57{word-spacing:25.012800px;}
.ws61{word-spacing:25.214400px;}
.ws3e{word-spacing:25.920000px;}
.ws3f{word-spacing:25.934400px;}
.ws2d{word-spacing:26.337600px;}
.ws22{word-spacing:29.505600px;}
.ws38{word-spacing:36.273600px;}
.ws3a{word-spacing:39.945600px;}
.ws20{word-spacing:42.436800px;}
.ws4f{word-spacing:43.207200px;}
.ws81{word-spacing:43.768800px;}
.ws1d{word-spacing:47.196000px;}
.ws64{word-spacing:48.254400px;}
.ws87{word-spacing:48.981600px;}
.ws26{word-spacing:51.120000px;}
.ws62{word-spacing:55.368000px;}
.ws78{word-spacing:60.379200px;}
.ws5e{word-spacing:65.469600px;}
.ws3b{word-spacing:78.156000px;}
.ws58{word-spacing:80.236800px;}
.ws3d{word-spacing:91.425600px;}
.ws66{word-spacing:94.204800px;}
.ws5c{word-spacing:99.396000px;}
.ws86{word-spacing:101.570400px;}
.ws3c{word-spacing:113.947200px;}
.ws7c{word-spacing:114.940800px;}
.ws43{word-spacing:122.788800px;}
.ws6a{word-spacing:136.749600px;}
.ws6d{word-spacing:146.498400px;}
.ws17{word-spacing:580.813308px;}
._2f{margin-left:-396.629676px;}
._29{margin-left:-283.231332px;}
._5f{margin-left:-16.104852px;}
._3{margin-left:-14.990940px;}
._4{margin-left:-13.947012px;}
._74{margin-left:-11.498400px;}
._70{margin-left:-10.454400px;}
._19{margin-left:-9.396000px;}
._1a{margin-left:-7.941600px;}
._1f{margin-left:-6.580800px;}
._1b{margin-left:-5.076000px;}
._17{margin-left:-3.938400px;}
._10{margin-left:-2.894400px;}
._0{margin-left:-1.218780px;}
._1{width:1.139724px;}
._6{width:2.570400px;}
._5{width:3.600000px;}
._c{width:4.917600px;}
._d{width:6.170256px;}
._e{width:7.200000px;}
._7{width:8.236800px;}
._8{width:9.316800px;}
._b{width:11.138400px;}
._a{width:12.556800px;}
._2{width:13.735548px;}
._9{width:15.237252px;}
._f{width:16.539444px;}
._18{width:19.893600px;}
._16{width:20.901600px;}
._1d{width:22.327200px;}
._60{width:23.436000px;}
._1c{width:24.487200px;}
._5e{width:26.006400px;}
._12{width:27.684000px;}
._11{width:28.821600px;}
._13{width:29.829600px;}
._1e{width:31.687200px;}
._76{width:35.258400px;}
._64{width:36.309600px;}
._75{width:37.864800px;}
._65{width:39.952800px;}
._63{width:41.184000px;}
._62{width:42.494400px;}
._6b{width:43.545600px;}
._79{width:44.733600px;}
._61{width:47.160000px;}
._71{width:48.218400px;}
._7b{width:49.874400px;}
._48{width:51.170400px;}
._49{width:52.351200px;}
._31{width:53.729244px;}
._6f{width:55.411200px;}
._15{width:60.120000px;}
._77{width:61.272000px;}
._6e{width:65.491200px;}
._5c{width:71.226720px;}
._67{width:76.564800px;}
._66{width:78.098400px;}
._6c{width:80.265600px;}
._39{width:83.894400px;}
._3b{width:88.538724px;}
._69{width:91.440000px;}
._72{width:93.960000px;}
._6d{width:98.971200px;}
._7a{width:101.563200px;}
._68{width:114.105600px;}
._78{width:115.660800px;}
._30{width:120.600720px;}
._6a{width:122.774400px;}
._3c{width:129.011508px;}
._73{width:136.785600px;}
._58{width:145.022508px;}
._5d{width:147.505464px;}
._59{width:148.682772px;}
._57{width:153.471024px;}
._2b{width:167.127588px;}
._35{width:203.871276px;}
._4e{width:225.482760px;}
._2a{width:233.999064px;}
._22{width:238.874796px;}
._3d{width:254.415816px;}
._4b{width:283.249368px;}
._21{width:286.922700px;}
._20{width:309.618000px;}
._37{width:315.984708px;}
._4a{width:334.663992px;}
._24{width:360.142848px;}
._28{width:363.960468px;}
._3a{width:368.974476px;}
._33{width:370.002528px;}
._2d{width:373.429368px;}
._23{width:386.381916px;}
._42{width:394.886196px;}
._4c{width:401.850648px;}
._41{width:404.156700px;}
._3f{width:413.775900px;}
._43{width:434.036340px;}
._3e{width:437.896044px;}
._46{width:443.643516px;}
._36{width:449.120448px;}
._38{width:450.358020px;}
._26{width:465.346836px;}
._2e{width:487.230516px;}
._45{width:497.667348px;}
._25{width:517.188312px;}
._56{width:551.174148px;}
._32{width:567.448632px;}
._5b{width:593.799228px;}
._40{width:607.530636px;}
._4d{width:616.326192px;}
._44{width:637.290036px;}
._5a{width:646.091604px;}
._47{width:667.313964px;}
._2c{width:680.846976px;}
._52{width:714.039228px;}
._14{width:897.988392px;}
._53{width:905.994720px;}
._54{width:910.123308px;}
._34{width:934.114500px;}
._27{width:964.036224px;}
._51{width:1102.564728px;}
._55{width:1103.628852px;}
._50{width:1288.912680px;}
._4f{width:1407.078540px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.880000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:3.240450px;}
.yca{bottom:3.240600px;}
.y29{bottom:77.790600px;}
.y2{bottom:78.150648px;}
.y79{bottom:114.330450px;}
.ya2{bottom:114.510450px;}
.y108{bottom:115.950450px;}
.yff{bottom:116.580450px;}
.y143{bottom:119.820450px;}
.y17e{bottom:123.870450px;}
.yfe{bottom:129.000450px;}
.y27{bottom:132.060450px;}
.y12c{bottom:134.850450px;}
.y142{bottom:135.480450px;}
.y78{bottom:138.090450px;}
.ya1{bottom:138.270450px;}
.y107{bottom:139.710450px;}
.yc2{bottom:139.800450px;}
.y192{bottom:142.860450px;}
.y17d{bottom:146.370450px;}
.y151{bottom:150.600450px;}
.y51{bottom:155.640450px;}
.y26{bottom:155.910450px;}
.y12b{bottom:158.610450px;}
.y77{bottom:161.850450px;}
.ya0{bottom:162.030450px;}
.yc1{bottom:163.560450px;}
.y191{bottom:166.620450px;}
.y17c{bottom:168.870450px;}
.y18e{bottom:168.870600px;}
.y141{bottom:170.400600px;}
.y150{bottom:173.100450px;}
.yfd{bottom:177.150450px;}
.y50{bottom:179.400450px;}
.y25{bottom:179.670450px;}
.y12a{bottom:182.460450px;}
.y76{bottom:185.610450px;}
.y9f{bottom:185.790450px;}
.yc0{bottom:187.320450px;}
.y190{bottom:190.380450px;}
.y17b{bottom:191.370450px;}
.y18d{bottom:191.370600px;}
.y140{bottom:194.160600px;}
.y14f{bottom:195.600450px;}
.yfc{bottom:200.910450px;}
.y4f{bottom:203.160450px;}
.y24{bottom:203.430450px;}
.y129{bottom:206.220450px;}
.y75{bottom:209.460450px;}
.y9e{bottom:209.550450px;}
.ybf{bottom:211.080450px;}
.y17a{bottom:213.870450px;}
.y18c{bottom:213.870600px;}
.y13f{bottom:218.010600px;}
.y14e{bottom:218.100450px;}
.yfb{bottom:224.670450px;}
.y4e{bottom:227.010450px;}
.y23{bottom:227.190450px;}
.y128{bottom:229.980450px;}
.y74{bottom:233.220450px;}
.y9d{bottom:233.310450px;}
.y106{bottom:234.840450px;}
.y179{bottom:236.370450px;}
.y18b{bottom:236.370600px;}
.y14d{bottom:240.600450px;}
.yfa{bottom:248.430450px;}
.y4d{bottom:250.770450px;}
.y22{bottom:250.950450px;}
.y127{bottom:253.740450px;}
.y144{bottom:256.890450px;}
.y73{bottom:256.980450px;}
.y9c{bottom:257.160450px;}
.ybe{bottom:258.600450px;}
.y178{bottom:258.870450px;}
.y18a{bottom:258.870600px;}
.y14c{bottom:263.100450px;}
.y13e{bottom:265.530600px;}
.yf9{bottom:272.280450px;}
.y4c{bottom:274.530450px;}
.y21{bottom:274.710450px;}
.y126{bottom:277.500450px;}
.y72{bottom:280.740450px;}
.y9b{bottom:280.920450px;}
.y177{bottom:281.370450px;}
.y189{bottom:281.370600px;}
.y105{bottom:282.990450px;}
.y14b{bottom:285.600450px;}
.yf8{bottom:296.040450px;}
.y123{bottom:296.670000px;}
.y4b{bottom:298.290600px;}
.y20{bottom:298.560450px;}
.y124{bottom:299.910450px;}
.y176{bottom:303.870450px;}
.y188{bottom:303.870600px;}
.y71{bottom:304.500450px;}
.y9a{bottom:304.680450px;}
.ybd{bottom:306.210450px;}
.y14a{bottom:308.100450px;}
.y13d{bottom:312.960600px;}
.y104{bottom:316.560450px;}
.y125{bottom:317.100261px;}
.y122{bottom:317.100450px;}
.yf7{bottom:319.800450px;}
.y4a{bottom:322.050600px;}
.y1f{bottom:322.320450px;}
.y175{bottom:326.370450px;}
.y187{bottom:326.370600px;}
.y70{bottom:328.260450px;}
.ya8{bottom:328.350450px;}
.y99{bottom:328.440450px;}
.ybc{bottom:329.970450px;}
.y149{bottom:330.600450px;}
.y103{bottom:339.060450px;}
.y49{bottom:345.810600px;}
.y1e{bottom:346.080450px;}
.y174{bottom:348.870450px;}
.y186{bottom:348.870600px;}
.y147{bottom:352.020450px;}
.y6f{bottom:352.110450px;}
.y98{bottom:352.200450px;}
.y121{bottom:353.100450px;}
.ybb{bottom:353.730450px;}
.y13c{bottom:361.741176px;}
.y102{bottom:362.370450px;}
.yf6{bottom:365.882313px;}
.y48{bottom:369.660600px;}
.y1d{bottom:369.840450px;}
.y173{bottom:371.370450px;}
.y185{bottom:371.370600px;}
.y148{bottom:375.600450px;}
.y6e{bottom:375.870450px;}
.y97{bottom:375.960450px;}
.ya7{bottom:377.040600px;}
.yba{bottom:377.490450px;}
.yf5{bottom:383.162304px;}
.y120{bottom:385.140450px;}
.y13b{bottom:385.500600px;}
.y47{bottom:393.420600px;}
.y1c{bottom:393.600450px;}
.y172{bottom:393.870450px;}
.y184{bottom:393.870600px;}
.y6d{bottom:399.630450px;}
.y96{bottom:399.810450px;}
.yf4{bottom:400.442295px;}
.yb9{bottom:401.250450px;}
.y13a{bottom:411.240450px;}
.y171{bottom:416.370450px;}
.y183{bottom:416.370600px;}
.y46{bottom:417.180600px;}
.y1b{bottom:417.360450px;}
.yf3{bottom:417.632106px;}
.y6c{bottom:423.390450px;}
.y95{bottom:423.570450px;}
.yb8{bottom:425.100450px;}
.y11f{bottom:432.660450px;}
.yf2{bottom:434.912097px;}
.y170{bottom:438.870450px;}
.y182{bottom:438.870600px;}
.y45{bottom:440.940600px;}
.y1a{bottom:441.210450px;}
.y146{bottom:447.060450px;}
.y6b{bottom:447.150450px;}
.y94{bottom:447.330450px;}
.yb7{bottom:448.860450px;}
.ya6{bottom:450.660450px;}
.yf1{bottom:452.192088px;}
.y11e{bottom:456.510450px;}
.y16f{bottom:461.370450px;}
.y181{bottom:461.370600px;}
.y44{bottom:464.700450px;}
.y19{bottom:464.970450px;}
.yf0{bottom:469.381899px;}
.y6a{bottom:470.910450px;}
.y93{bottom:471.090450px;}
.yb6{bottom:472.620450px;}
.y11d{bottom:480.270450px;}
.y16e{bottom:483.870450px;}
.y180{bottom:483.870600px;}
.yef{bottom:486.661890px;}
.y43{bottom:488.460450px;}
.y18{bottom:488.730450px;}
.y69{bottom:494.760450px;}
.y92{bottom:494.850450px;}
.yb5{bottom:496.380450px;}
.yee{bottom:503.941881px;}
.y11c{bottom:504.030450px;}
.y16d{bottom:506.370450px;}
.y17f{bottom:506.370600px;}
.y42{bottom:512.310450px;}
.y17{bottom:512.490450px;}
.y68{bottom:518.520450px;}
.y91{bottom:518.610450px;}
.yb4{bottom:520.140450px;}
.yed{bottom:521.131692px;}
.y11b{bottom:527.790450px;}
.y16c{bottom:528.870450px;}
.y41{bottom:536.070450px;}
.y16{bottom:536.250450px;}
.yec{bottom:538.411683px;}
.y67{bottom:542.280450px;}
.y90{bottom:542.460450px;}
.yb3{bottom:543.900450px;}
.y16b{bottom:551.370450px;}
.y11a{bottom:551.550450px;}
.yeb{bottom:555.601494px;}
.y40{bottom:559.830450px;}
.y15{bottom:560.010450px;}
.y66{bottom:566.040450px;}
.y8f{bottom:566.220450px;}
.yb2{bottom:567.750450px;}
.yea{bottom:572.881485px;}
.y16a{bottom:573.870450px;}
.y139{bottom:574.590450px;}
.y119{bottom:575.310450px;}
.y3f{bottom:583.590450px;}
.y14{bottom:583.860450px;}
.y65{bottom:589.800450px;}
.y8e{bottom:589.980450px;}
.ye9{bottom:590.161476px;}
.yb1{bottom:591.510450px;}
.y169{bottom:596.370450px;}
.y138{bottom:598.350450px;}
.y118{bottom:599.160450px;}
.y3e{bottom:607.350450px;}
.ye8{bottom:607.351287px;}
.y13{bottom:607.620450px;}
.y64{bottom:613.560450px;}
.y8d{bottom:613.740450px;}
.yb0{bottom:615.270450px;}
.y168{bottom:618.870450px;}
.y137{bottom:622.110450px;}
.y117{bottom:622.920450px;}
.ye7{bottom:624.631278px;}
.y3d{bottom:631.110450px;}
.y145{bottom:637.320450px;}
.y63{bottom:637.410450px;}
.y8c{bottom:637.500450px;}
.yaf{bottom:639.030450px;}
.y167{bottom:641.370450px;}
.ye6{bottom:641.911269px;}
.y136{bottom:645.960450px;}
.y3c{bottom:654.960450px;}
.y12{bottom:655.140450px;}
.ye5{bottom:659.101080px;}
.y62{bottom:661.170450px;}
.yae{bottom:662.790450px;}
.y166{bottom:663.870450px;}
.y116{bottom:670.440450px;}
.y8b{bottom:673.140450px;}
.ye4{bottom:676.381071px;}
.y3b{bottom:678.720450px;}
.yd6{bottom:684.840450px;}
.y61{bottom:684.930450px;}
.y101{bottom:686.010450px;}
.y165{bottom:686.370450px;}
.yad{bottom:686.550450px;}
.y135{bottom:692.040450px;}
.ye3{bottom:693.661062px;}
.y3a{bottom:702.480450px;}
.y11{bottom:702.660450px;}
.y115{bottom:704.640720px;}
.y134{bottom:706.080000px;}
.y60{bottom:708.690450px;}
.y8a{bottom:708.780450px;}
.y164{bottom:708.870450px;}
.y133{bottom:709.320450px;}
.yac{bottom:710.400450px;}
.ye2{bottom:710.850873px;}
.y132{bottom:723.270000px;}
.y39{bottom:726.240450px;}
.y10{bottom:726.510450px;}
.y114{bottom:727.140630px;}
.ye1{bottom:728.130864px;}
.y163{bottom:731.370450px;}
.y5f{bottom:732.450450px;}
.y89{bottom:732.540450px;}
.yab{bottom:734.160450px;}
.y130{bottom:745.140450px;}
.ye0{bottom:745.410855px;}
.y131{bottom:748.020450px;}
.y113{bottom:749.640540px;}
.y38{bottom:750.000450px;}
.y100{bottom:751.710450px;}
.y162{bottom:753.870450px;}
.y7c{bottom:756.210450px;}
.y88{bottom:756.300450px;}
.ya5{bottom:756.390450px;}
.yaa{bottom:757.920450px;}
.ydf{bottom:762.600666px;}
.y111{bottom:768.900000px;}
.y112{bottom:772.140450px;}
.y110{bottom:772.140720px;}
.y37{bottom:773.760450px;}
.ye{bottom:773.940450px;}
.y161{bottom:776.370450px;}
.yde{bottom:779.880657px;}
.yf{bottom:779.970450px;}
.y7b{bottom:780.060450px;}
.ya9{bottom:781.680450px;}
.ya4{bottom:792.030450px;}
.y10f{bottom:794.640630px;}
.ydd{bottom:797.160648px;}
.y36{bottom:797.610450px;}
.y160{bottom:798.870450px;}
.y7a{bottom:803.820450px;}
.y87{bottom:803.910450px;}
.ydc{bottom:814.350459px;}
.y10e{bottom:817.140540px;}
.y35{bottom:821.370450px;}
.y5e{bottom:827.580450px;}
.y86{bottom:827.670450px;}
.yd4{bottom:827.850855px;}
.yd{bottom:831.269811px;}
.ydb{bottom:831.630450px;}
.y10d{bottom:839.640450px;}
.y15f{bottom:843.870450px;}
.yd3{bottom:845.040666px;}
.y34{bottom:845.130450px;}
.yda{bottom:848.910450px;}
.y5d{bottom:851.340450px;}
.y85{bottom:851.430450px;}
.y10b{bottom:858.900000px;}
.y10c{bottom:862.140450px;}
.yd2{bottom:862.320657px;}
.yd9{bottom:863.670000px;}
.y15e{bottom:866.370450px;}
.yd8{bottom:866.910450px;}
.y33{bottom:868.890450px;}
.y5c{bottom:875.100450px;}
.y84{bottom:875.190450px;}
.yc{bottom:878.880450px;}
.yd1{bottom:879.510468px;}
.y10a{bottom:882.120000px;}
.y109{bottom:885.360600px;}
.y15d{bottom:888.870450px;}
.y32{bottom:892.650450px;}
.yd0{bottom:896.790459px;}
.y5b{bottom:898.860450px;}
.y83{bottom:898.950450px;}
.yce{bottom:910.830000px;}
.y15c{bottom:911.370450px;}
.ycf{bottom:914.070450px;}
.ycd{bottom:914.070798px;}
.y31{bottom:916.410450px;}
.yb{bottom:916.680450px;}
.yd5{bottom:922.620450px;}
.y5a{bottom:922.710450px;}
.y12f{bottom:923.791026px;}
.ycc{bottom:931.260609px;}
.y15b{bottom:933.870450px;}
.y30{bottom:940.260450px;}
.yc9{bottom:945.300000px;}
.y59{bottom:946.470450px;}
.y82{bottom:946.560450px;}
.y12e{bottom:947.550450px;}
.yc8{bottom:948.540459px;}
.ycb{bottom:948.540600px;}
.y15a{bottom:956.370450px;}
.y2f{bottom:964.020450px;}
.yc7{bottom:965.820450px;}
.y58{bottom:970.230450px;}
.y81{bottom:970.320450px;}
.ya{bottom:970.770297px;}
.y159{bottom:978.870450px;}
.yc6{bottom:983.010450px;}
.y2e{bottom:987.780450px;}
.y57{bottom:993.990450px;}
.y80{bottom:994.080450px;}
.y9{bottom:994.529919px;}
.yc4{bottom:997.770000px;}
.yc3{bottom:1001.010450px;}
.y158{bottom:1001.370450px;}
.ya3{bottom:1005.870450px;}
.y2d{bottom:1011.540450px;}
.y56{bottom:1017.750450px;}
.y7f{bottom:1017.840450px;}
.y8{bottom:1018.380126px;}
.y12d{bottom:1019.820450px;}
.y157{bottom:1023.870450px;}
.y55{bottom:1041.510450px;}
.y7e{bottom:1041.600450px;}
.y7{bottom:1042.139748px;}
.y156{bottom:1046.370450px;}
.y2c{bottom:1059.060450px;}
.y54{bottom:1065.360450px;}
.y6{bottom:1065.989955px;}
.y155{bottom:1068.870450px;}
.y7d{bottom:1077.240450px;}
.y53{bottom:1089.120450px;}
.y5{bottom:1089.749577px;}
.y154{bottom:1091.370450px;}
.y52{bottom:1112.880450px;}
.y2b{bottom:1113.240450px;}
.y4{bottom:1113.420261px;}
.y153{bottom:1113.870450px;}
.y18f{bottom:1135.650450px;}
.y152{bottom:1136.370450px;}
.yd7{bottom:1136.550450px;}
.y2a{bottom:1136.640450px;}
.y3{bottom:1137.179883px;}
.y1{bottom:1183.890450px;}
.y28{bottom:1185.240450px;}
.ha{height:16.740000px;}
.h5{height:32.777227px;}
.hc{height:34.038984px;}
.hf{height:41.918379px;}
.h9{height:45.742852px;}
.h2{height:48.761719px;}
.h4{height:49.289062px;}
.h8{height:49.992188px;}
.h7{height:52.634355px;}
.hd{height:54.918984px;}
.h1{height:57.677168px;}
.h6{height:63.035156px;}
.h3{height:65.800898px;}
.hb{height:68.918379px;}
.he{height:73.435957px;}
.h0{height:1263.000000px;}
.wc{width:5.040000px;}
.w9{width:7.560000px;}
.wa{width:26.100000px;}
.wd{width:26.550000px;}
.w5{width:27.450000px;}
.w2{width:49.140000px;}
.w4{width:55.800000px;}
.we{width:55.890000px;}
.w3{width:64.980000px;}
.w8{width:67.500000px;}
.wf{width:72.990000px;}
.wb{width:79.560000px;}
.w6{width:120.780000px;}
.w7{width:147.690000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x15{left:19.980000px;}
.x2b{left:31.680000px;}
.xe{left:41.670000px;}
.x37{left:44.190000px;}
.x13{left:48.330000px;}
.x11{left:57.510000px;}
.x27{left:63.360000px;}
.x2d{left:68.310000px;}
.x1b{left:73.350000px;}
.x1{left:81.000000px;}
.x17{left:86.220000px;}
.xd{left:88.560000px;}
.x30{left:94.140000px;}
.x2a{left:97.110000px;}
.x40{left:115.020000px;}
.x7{left:117.000000px;}
.x22{left:120.510000px;}
.x2c{left:125.460000px;}
.x33{left:134.100000px;}
.xf{left:137.700000px;}
.x1d{left:139.770000px;}
.x38{left:140.850000px;}
.x14{left:144.360000px;}
.x31{left:147.510000px;}
.x3f{left:150.480000px;}
.x3c{left:154.170000px;}
.x2e{left:162.090000px;}
.x32{left:174.060000px;}
.x18{left:186.030000px;}
.x24{left:194.038689px;}
.x19{left:213.570000px;}
.x10{left:218.880000px;}
.x39{left:221.040000px;}
.x2f{left:231.480000px;}
.x25{left:234.810000px;}
.x3{left:266.940000px;}
.x4{left:269.910000px;}
.x36{left:271.800000px;}
.x12{left:283.860000px;}
.x35{left:292.678435px;}
.x1f{left:297.000000px;}
.x16{left:305.280000px;}
.x21{left:321.570000px;}
.x9{left:325.709342px;}
.x43{left:336.153770px;}
.xc{left:340.200000px;}
.xb{left:357.390000px;}
.xa{left:362.970000px;}
.x26{left:415.980000px;}
.x3a{left:454.500000px;}
.x2{left:542.971236px;}
.x41{left:559.710000px;}
.x42{left:565.740000px;}
.x28{left:628.470000px;}
.x29{left:636.030000px;}
.x3b{left:642.240000px;}
.x1a{left:659.070000px;}
.x3d{left:671.040000px;}
.x20{left:677.070000px;}
.x34{left:684.990000px;}
.x3e{left:691.110000px;}
.x1c{left:735.390000px;}
.x5{left:751.770000px;}
.x23{left:772.470000px;}
.x6{left:789.479850px;}
.x1e{left:801.810000px;}
.x8{left:811.979850px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.000000pt;}
.ls37{letter-spacing:-2.636800pt;}
.ls80{letter-spacing:-2.240000pt;}
.ls75{letter-spacing:-1.561600pt;}
.ls74{letter-spacing:-1.548800pt;}
.ls8b{letter-spacing:-1.216000pt;}
.ls8f{letter-spacing:-1.209600pt;}
.ls6c{letter-spacing:-1.190400pt;}
.ls8c{letter-spacing:-1.171200pt;}
.ls34{letter-spacing:-1.152000pt;}
.ls8e{letter-spacing:-1.126400pt;}
.ls35{letter-spacing:-1.120000pt;}
.ls71{letter-spacing:-1.100800pt;}
.ls86{letter-spacing:-1.081600pt;}
.ls67{letter-spacing:-1.075200pt;}
.ls36{letter-spacing:-1.062400pt;}
.ls85{letter-spacing:-1.056000pt;}
.ls6f{letter-spacing:-1.049600pt;}
.ls8a{letter-spacing:-1.036800pt;}
.ls70{letter-spacing:-1.017600pt;}
.ls6e{letter-spacing:-0.960000pt;}
.ls8d{letter-spacing:-0.947200pt;}
.ls6d{letter-spacing:-0.928000pt;}
.ls7b{letter-spacing:-0.569600pt;}
.ls72{letter-spacing:-0.563200pt;}
.ls73{letter-spacing:-0.550400pt;}
.ls64{letter-spacing:-0.539744pt;}
.ls62{letter-spacing:-0.529056pt;}
.ls63{letter-spacing:-0.470272pt;}
.ls59{letter-spacing:-0.358048pt;}
.ls7f{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.267200pt;}
.ls89{letter-spacing:-0.243200pt;}
.ls5a{letter-spacing:-0.240480pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.187040pt;}
.ls25{letter-spacing:-0.160320pt;}
.ls7e{letter-spacing:-0.160000pt;}
.ls5e{letter-spacing:-0.154976pt;}
.ls33{letter-spacing:-0.149632pt;}
.ls88{letter-spacing:-0.147200pt;}
.ls1b{letter-spacing:-0.145248pt;}
.ls3c{letter-spacing:-0.138944pt;}
.ls7a{letter-spacing:-0.134400pt;}
.ls3d{letter-spacing:-0.122912pt;}
.ls52{letter-spacing:-0.117568pt;}
.ls40{letter-spacing:-0.106880pt;}
.ls5c{letter-spacing:-0.090848pt;}
.ls27{letter-spacing:-0.089600pt;}
.ls68{letter-spacing:-0.085504pt;}
.ls5d{letter-spacing:-0.080160pt;}
.ls65{letter-spacing:-0.074816pt;}
.ls78{letter-spacing:-0.070400pt;}
.ls47{letter-spacing:-0.064000pt;}
.ls4e{letter-spacing:-0.058784pt;}
.ls2d{letter-spacing:-0.057600pt;}
.ls69{letter-spacing:-0.053440pt;}
.ls21{letter-spacing:-0.051200pt;}
.ls29{letter-spacing:-0.044800pt;}
.ls1c{letter-spacing:-0.038400pt;}
.ls1a{letter-spacing:-0.034176pt;}
.ls28{letter-spacing:-0.032000pt;}
.ls20{letter-spacing:-0.025600pt;}
.ls17{letter-spacing:-0.023424pt;}
.ls41{letter-spacing:-0.021376pt;}
.ls1f{letter-spacing:-0.019200pt;}
.ls18{letter-spacing:-0.017088pt;}
.ls4d{letter-spacing:-0.016032pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls43{letter-spacing:-0.010688pt;}
.ls1e{letter-spacing:-0.006400pt;}
.ls16{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.005344pt;}
.lse{letter-spacing:0.006400pt;}
.ls53{letter-spacing:0.006912pt;}
.ls60{letter-spacing:0.006936pt;}
.ls30{letter-spacing:0.010688pt;}
.ls8{letter-spacing:0.012800pt;}
.ls4c{letter-spacing:0.016032pt;}
.ls57{letter-spacing:0.017568pt;}
.lsa{letter-spacing:0.019200pt;}
.ls66{letter-spacing:0.021376pt;}
.ls10{letter-spacing:0.025600pt;}
.ls9{letter-spacing:0.032000pt;}
.ls54{letter-spacing:0.032064pt;}
.ls7{letter-spacing:0.034176pt;}
.ls56{letter-spacing:0.035136pt;}
.ls4b{letter-spacing:0.037408pt;}
.ls15{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.040992pt;}
.ls6{letter-spacing:0.042720pt;}
.lsb{letter-spacing:0.044800pt;}
.ls50{letter-spacing:0.046848pt;}
.ls4a{letter-spacing:0.048096pt;}
.lsf{letter-spacing:0.051200pt;}
.ls13{letter-spacing:0.057600pt;}
.ls55{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.064128pt;}
.ls2{letter-spacing:0.064416pt;}
.ls5b{letter-spacing:0.069472pt;}
.ls14{letter-spacing:0.070400pt;}
.ls51{letter-spacing:0.074816pt;}
.ls3{letter-spacing:0.076128pt;}
.lsd{letter-spacing:0.076800pt;}
.ls22{letter-spacing:0.080160pt;}
.ls24{letter-spacing:0.083200pt;}
.ls31{letter-spacing:0.085504pt;}
.ls0{letter-spacing:0.087840pt;}
.ls11{letter-spacing:0.089600pt;}
.ls58{letter-spacing:0.090848pt;}
.lsc{letter-spacing:0.096000pt;}
.ls61{letter-spacing:0.096192pt;}
.ls49{letter-spacing:0.101536pt;}
.ls12{letter-spacing:0.102400pt;}
.ls38{letter-spacing:0.106880pt;}
.ls2a{letter-spacing:0.108800pt;}
.ls1{letter-spacing:0.111264pt;}
.ls23{letter-spacing:0.112224pt;}
.ls46{letter-spacing:0.115200pt;}
.ls32{letter-spacing:0.117568pt;}
.ls76{letter-spacing:0.128000pt;}
.ls83{letter-spacing:0.140800pt;}
.ls48{letter-spacing:0.160000pt;}
.ls5f{letter-spacing:0.171008pt;}
.ls7d{letter-spacing:0.262400pt;}
.ls79{letter-spacing:0.396800pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls6a{letter-spacing:3.600000pt;}
.ls2e{letter-spacing:3.840000pt;}
.ls87{letter-spacing:4.166400pt;}
.ls3b{letter-spacing:4.800000pt;}
.ls77{letter-spacing:5.120000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls7c{letter-spacing:7.923200pt;}
.ls82{letter-spacing:8.563200pt;}
.ls84{letter-spacing:9.600000pt;}
.ls19{letter-spacing:12.252096pt;}
.ls2f{letter-spacing:13.120000pt;}
.ls6b{letter-spacing:14.080000pt;}
.ls81{letter-spacing:71.360000pt;}
.ls45{letter-spacing:75.920000pt;}
.ls3f{letter-spacing:251.600864pt;}
.ls42{letter-spacing:352.399392pt;}
.ls4f{letter-spacing:683.235744pt;}
.ws1a{word-spacing:-16.089600pt;}
.ws5b{word-spacing:-16.051200pt;}
.ws1{word-spacing:-16.044800pt;}
.ws49{word-spacing:-16.038400pt;}
.ws68{word-spacing:-16.032000pt;}
.ws48{word-spacing:-16.025600pt;}
.ws0{word-spacing:-16.019200pt;}
.ws69{word-spacing:-16.012800pt;}
.ws4a{word-spacing:-16.006400pt;}
.ws10{word-spacing:-16.000000pt;}
.ws4b{word-spacing:-15.993600pt;}
.ws37{word-spacing:-15.987200pt;}
.ws4c{word-spacing:-15.980800pt;}
.ws79{word-spacing:-14.873600pt;}
.ws7a{word-spacing:-14.790400pt;}
.ws16{word-spacing:-13.531008pt;}
.ws11{word-spacing:-13.408096pt;}
.ws15{word-spacing:-13.392064pt;}
.ws18{word-spacing:-13.381376pt;}
.wse{word-spacing:-13.365344pt;}
.wsd{word-spacing:-13.221056pt;}
.ws14{word-spacing:-13.001952pt;}
.ws13{word-spacing:-8.646912pt;}
.ws12{word-spacing:-8.640000pt;}
.ws7d{word-spacing:-3.820800pt;}
.ws2c{word-spacing:-3.545600pt;}
.ws7f{word-spacing:-3.238400pt;}
.ws1f{word-spacing:-3.136000pt;}
.ws1b{word-spacing:-3.008000pt;}
.ws5d{word-spacing:-2.764800pt;}
.ws34{word-spacing:-2.310400pt;}
.ws53{word-spacing:-2.278400pt;}
.ws19{word-spacing:-2.094848pt;}
.ws54{word-spacing:-1.926400pt;}
.ws33{word-spacing:-1.619200pt;}
.ws84{word-spacing:-1.299200pt;}
.ws6f{word-spacing:-0.588800pt;}
.ws60{word-spacing:-0.390400pt;}
.ws7b{word-spacing:-0.377600pt;}
.ws27{word-spacing:-0.364800pt;}
.ws82{word-spacing:-0.339200pt;}
.ws6{word-spacing:-0.326400pt;}
.ws7{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.281600pt;}
.ws55{word-spacing:-0.243200pt;}
.ws35{word-spacing:-0.204800pt;}
.wsa{word-spacing:-0.198400pt;}
.ws7e{word-spacing:-0.185600pt;}
.ws6b{word-spacing:-0.147200pt;}
.ws56{word-spacing:-0.134400pt;}
.wsc{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.089600pt;}
.ws3{word-spacing:-0.057600pt;}
.wsb{word-spacing:-0.051200pt;}
.ws9{word-spacing:-0.044800pt;}
.ws47{word-spacing:-0.032000pt;}
.ws5{word-spacing:-0.025600pt;}
.ws2e{word-spacing:-0.019200pt;}
.ws1e{word-spacing:-0.012800pt;}
.ws21{word-spacing:-0.006400pt;}
.ws2{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.006400pt;}
.ws85{word-spacing:0.012800pt;}
.ws31{word-spacing:0.019200pt;}
.ws2b{word-spacing:0.025600pt;}
.ws8{word-spacing:0.074816pt;}
.ws4{word-spacing:0.080160pt;}
.ws76{word-spacing:0.121600pt;}
.ws50{word-spacing:0.275200pt;}
.ws30{word-spacing:0.934400pt;}
.ws44{word-spacing:0.940800pt;}
.ws40{word-spacing:0.953600pt;}
.ws72{word-spacing:1.049600pt;}
.ws71{word-spacing:1.280000pt;}
.ws6c{word-spacing:1.292800pt;}
.ws73{word-spacing:1.305600pt;}
.ws46{word-spacing:1.580800pt;}
.ws41{word-spacing:2.233600pt;}
.ws1c{word-spacing:2.451200pt;}
.ws83{word-spacing:2.528000pt;}
.ws6e{word-spacing:2.534400pt;}
.ws39{word-spacing:2.732800pt;}
.ws4e{word-spacing:2.860800pt;}
.ws2a{word-spacing:3.091200pt;}
.ws42{word-spacing:3.648000pt;}
.ws75{word-spacing:4.134400pt;}
.ws74{word-spacing:4.153600pt;}
.ws23{word-spacing:5.088000pt;}
.ws24{word-spacing:5.107200pt;}
.wsf{word-spacing:5.408000pt;}
.ws28{word-spacing:5.452800pt;}
.ws45{word-spacing:5.753600pt;}
.ws67{word-spacing:6.860800pt;}
.ws65{word-spacing:7.552000pt;}
.ws70{word-spacing:8.012800pt;}
.ws2f{word-spacing:8.204800pt;}
.ws80{word-spacing:10.547200pt;}
.ws59{word-spacing:11.206400pt;}
.ws36{word-spacing:11.238400pt;}
.ws52{word-spacing:12.038400pt;}
.ws51{word-spacing:12.166400pt;}
.ws77{word-spacing:13.094400pt;}
.ws4d{word-spacing:14.054400pt;}
.ws5f{word-spacing:17.286400pt;}
.ws25{word-spacing:18.880000pt;}
.ws32{word-spacing:19.347200pt;}
.ws57{word-spacing:22.233600pt;}
.ws61{word-spacing:22.412800pt;}
.ws3e{word-spacing:23.040000pt;}
.ws3f{word-spacing:23.052800pt;}
.ws2d{word-spacing:23.411200pt;}
.ws22{word-spacing:26.227200pt;}
.ws38{word-spacing:32.243200pt;}
.ws3a{word-spacing:35.507200pt;}
.ws20{word-spacing:37.721600pt;}
.ws4f{word-spacing:38.406400pt;}
.ws81{word-spacing:38.905600pt;}
.ws1d{word-spacing:41.952000pt;}
.ws64{word-spacing:42.892800pt;}
.ws87{word-spacing:43.539200pt;}
.ws26{word-spacing:45.440000pt;}
.ws62{word-spacing:49.216000pt;}
.ws78{word-spacing:53.670400pt;}
.ws5e{word-spacing:58.195200pt;}
.ws3b{word-spacing:69.472000pt;}
.ws58{word-spacing:71.321600pt;}
.ws3d{word-spacing:81.267200pt;}
.ws66{word-spacing:83.737600pt;}
.ws5c{word-spacing:88.352000pt;}
.ws86{word-spacing:90.284800pt;}
.ws3c{word-spacing:101.286400pt;}
.ws7c{word-spacing:102.169600pt;}
.ws43{word-spacing:109.145600pt;}
.ws6a{word-spacing:121.555200pt;}
.ws6d{word-spacing:130.220800pt;}
.ws17{word-spacing:516.278496pt;}
._2f{margin-left:-352.559712pt;}
._29{margin-left:-251.761184pt;}
._5f{margin-left:-14.315424pt;}
._3{margin-left:-13.325280pt;}
._4{margin-left:-12.397344pt;}
._74{margin-left:-10.220800pt;}
._70{margin-left:-9.292800pt;}
._19{margin-left:-8.352000pt;}
._1a{margin-left:-7.059200pt;}
._1f{margin-left:-5.849600pt;}
._1b{margin-left:-4.512000pt;}
._17{margin-left:-3.500800pt;}
._10{margin-left:-2.572800pt;}
._0{margin-left:-1.083360pt;}
._1{width:1.013088pt;}
._6{width:2.284800pt;}
._5{width:3.200000pt;}
._c{width:4.371200pt;}
._d{width:5.484672pt;}
._e{width:6.400000pt;}
._7{width:7.321600pt;}
._8{width:8.281600pt;}
._b{width:9.900800pt;}
._a{width:11.161600pt;}
._2{width:12.209376pt;}
._9{width:13.544224pt;}
._f{width:14.701728pt;}
._18{width:17.683200pt;}
._16{width:18.579200pt;}
._1d{width:19.846400pt;}
._60{width:20.832000pt;}
._1c{width:21.766400pt;}
._5e{width:23.116800pt;}
._12{width:24.608000pt;}
._11{width:25.619200pt;}
._13{width:26.515200pt;}
._1e{width:28.166400pt;}
._76{width:31.340800pt;}
._64{width:32.275200pt;}
._75{width:33.657600pt;}
._65{width:35.513600pt;}
._63{width:36.608000pt;}
._62{width:37.772800pt;}
._6b{width:38.707200pt;}
._79{width:39.763200pt;}
._61{width:41.920000pt;}
._71{width:42.860800pt;}
._7b{width:44.332800pt;}
._48{width:45.484800pt;}
._49{width:46.534400pt;}
._31{width:47.759328pt;}
._6f{width:49.254400pt;}
._15{width:53.440000pt;}
._77{width:54.464000pt;}
._6e{width:58.214400pt;}
._5c{width:63.312640pt;}
._67{width:68.057600pt;}
._66{width:69.420800pt;}
._6c{width:71.347200pt;}
._39{width:74.572800pt;}
._3b{width:78.701088pt;}
._69{width:81.280000pt;}
._72{width:83.520000pt;}
._6d{width:87.974400pt;}
._7a{width:90.278400pt;}
._68{width:101.427200pt;}
._78{width:102.809600pt;}
._30{width:107.200640pt;}
._6a{width:109.132800pt;}
._3c{width:114.676896pt;}
._73{width:121.587200pt;}
._58{width:128.908896pt;}
._5d{width:131.115968pt;}
._59{width:132.162464pt;}
._57{width:136.418688pt;}
._2b{width:148.557856pt;}
._35{width:181.218912pt;}
._4e{width:200.429120pt;}
._2a{width:207.999168pt;}
._22{width:212.333152pt;}
._3d{width:226.147392pt;}
._4b{width:251.777216pt;}
._21{width:255.042400pt;}
._20{width:275.216000pt;}
._37{width:280.875296pt;}
._4a{width:297.479104pt;}
._24{width:320.126976pt;}
._28{width:323.520416pt;}
._3a{width:327.977312pt;}
._33{width:328.891136pt;}
._2d{width:331.937216pt;}
._23{width:343.450592pt;}
._42{width:351.009952pt;}
._4c{width:357.200576pt;}
._41{width:359.250400pt;}
._3f{width:367.800800pt;}
._43{width:385.810080pt;}
._3e{width:389.240928pt;}
._46{width:394.349792pt;}
._36{width:399.218176pt;}
._38{width:400.318240pt;}
._26{width:413.641632pt;}
._2e{width:433.093792pt;}
._45{width:442.370976pt;}
._25{width:459.722944pt;}
._56{width:489.932576pt;}
._32{width:504.398784pt;}
._5b{width:527.821536pt;}
._40{width:540.027232pt;}
._4d{width:547.845504pt;}
._44{width:566.480032pt;}
._5a{width:574.303648pt;}
._47{width:593.167968pt;}
._2c{width:605.197312pt;}
._52{width:634.701536pt;}
._14{width:798.211904pt;}
._53{width:805.328640pt;}
._54{width:808.998496pt;}
._34{width:830.324000pt;}
._27{width:856.921088pt;}
._51{width:980.057536pt;}
._55{width:981.003424pt;}
._50{width:1145.700160pt;}
._4f{width:1250.736480pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.560000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:2.880400pt;}
.yca{bottom:2.880533pt;}
.y29{bottom:69.147200pt;}
.y2{bottom:69.467243pt;}
.y79{bottom:101.627067pt;}
.ya2{bottom:101.787067pt;}
.y108{bottom:103.067067pt;}
.yff{bottom:103.627067pt;}
.y143{bottom:106.507067pt;}
.y17e{bottom:110.107067pt;}
.yfe{bottom:114.667067pt;}
.y27{bottom:117.387067pt;}
.y12c{bottom:119.867067pt;}
.y142{bottom:120.427067pt;}
.y78{bottom:122.747067pt;}
.ya1{bottom:122.907067pt;}
.y107{bottom:124.187067pt;}
.yc2{bottom:124.267067pt;}
.y192{bottom:126.987067pt;}
.y17d{bottom:130.107067pt;}
.y151{bottom:133.867067pt;}
.y51{bottom:138.347067pt;}
.y26{bottom:138.587067pt;}
.y12b{bottom:140.987067pt;}
.y77{bottom:143.867067pt;}
.ya0{bottom:144.027067pt;}
.yc1{bottom:145.387067pt;}
.y191{bottom:148.107067pt;}
.y17c{bottom:150.107067pt;}
.y18e{bottom:150.107200pt;}
.y141{bottom:151.467200pt;}
.y150{bottom:153.867067pt;}
.yfd{bottom:157.467067pt;}
.y50{bottom:159.467067pt;}
.y25{bottom:159.707067pt;}
.y12a{bottom:162.187067pt;}
.y76{bottom:164.987067pt;}
.y9f{bottom:165.147067pt;}
.yc0{bottom:166.507067pt;}
.y190{bottom:169.227067pt;}
.y17b{bottom:170.107067pt;}
.y18d{bottom:170.107200pt;}
.y140{bottom:172.587200pt;}
.y14f{bottom:173.867067pt;}
.yfc{bottom:178.587067pt;}
.y4f{bottom:180.587067pt;}
.y24{bottom:180.827067pt;}
.y129{bottom:183.307067pt;}
.y75{bottom:186.187067pt;}
.y9e{bottom:186.267067pt;}
.ybf{bottom:187.627067pt;}
.y17a{bottom:190.107067pt;}
.y18c{bottom:190.107200pt;}
.y13f{bottom:193.787200pt;}
.y14e{bottom:193.867067pt;}
.yfb{bottom:199.707067pt;}
.y4e{bottom:201.787067pt;}
.y23{bottom:201.947067pt;}
.y128{bottom:204.427067pt;}
.y74{bottom:207.307067pt;}
.y9d{bottom:207.387067pt;}
.y106{bottom:208.747067pt;}
.y179{bottom:210.107067pt;}
.y18b{bottom:210.107200pt;}
.y14d{bottom:213.867067pt;}
.yfa{bottom:220.827067pt;}
.y4d{bottom:222.907067pt;}
.y22{bottom:223.067067pt;}
.y127{bottom:225.547067pt;}
.y144{bottom:228.347067pt;}
.y73{bottom:228.427067pt;}
.y9c{bottom:228.587067pt;}
.ybe{bottom:229.867067pt;}
.y178{bottom:230.107067pt;}
.y18a{bottom:230.107200pt;}
.y14c{bottom:233.867067pt;}
.y13e{bottom:236.027200pt;}
.yf9{bottom:242.027067pt;}
.y4c{bottom:244.027067pt;}
.y21{bottom:244.187067pt;}
.y126{bottom:246.667067pt;}
.y72{bottom:249.547067pt;}
.y9b{bottom:249.707067pt;}
.y177{bottom:250.107067pt;}
.y189{bottom:250.107200pt;}
.y105{bottom:251.547067pt;}
.y14b{bottom:253.867067pt;}
.yf8{bottom:263.147067pt;}
.y123{bottom:263.706667pt;}
.y4b{bottom:265.147200pt;}
.y20{bottom:265.387067pt;}
.y124{bottom:266.587067pt;}
.y176{bottom:270.107067pt;}
.y188{bottom:270.107200pt;}
.y71{bottom:270.667067pt;}
.y9a{bottom:270.827067pt;}
.ybd{bottom:272.187067pt;}
.y14a{bottom:273.867067pt;}
.y13d{bottom:278.187200pt;}
.y104{bottom:281.387067pt;}
.y125{bottom:281.866899pt;}
.y122{bottom:281.867067pt;}
.yf7{bottom:284.267067pt;}
.y4a{bottom:286.267200pt;}
.y1f{bottom:286.507067pt;}
.y175{bottom:290.107067pt;}
.y187{bottom:290.107200pt;}
.y70{bottom:291.787067pt;}
.ya8{bottom:291.867067pt;}
.y99{bottom:291.947067pt;}
.ybc{bottom:293.307067pt;}
.y149{bottom:293.867067pt;}
.y103{bottom:301.387067pt;}
.y49{bottom:307.387200pt;}
.y1e{bottom:307.627067pt;}
.y174{bottom:310.107067pt;}
.y186{bottom:310.107200pt;}
.y147{bottom:312.907067pt;}
.y6f{bottom:312.987067pt;}
.y98{bottom:313.067067pt;}
.y121{bottom:313.867067pt;}
.ybb{bottom:314.427067pt;}
.y13c{bottom:321.547712pt;}
.y102{bottom:322.107067pt;}
.yf6{bottom:325.228723pt;}
.y48{bottom:328.587200pt;}
.y1d{bottom:328.747067pt;}
.y173{bottom:330.107067pt;}
.y185{bottom:330.107200pt;}
.y148{bottom:333.867067pt;}
.y6e{bottom:334.107067pt;}
.y97{bottom:334.187067pt;}
.ya7{bottom:335.147200pt;}
.yba{bottom:335.547067pt;}
.yf5{bottom:340.588715pt;}
.y120{bottom:342.347067pt;}
.y13b{bottom:342.667200pt;}
.y47{bottom:349.707200pt;}
.y1c{bottom:349.867067pt;}
.y172{bottom:350.107067pt;}
.y184{bottom:350.107200pt;}
.y6d{bottom:355.227067pt;}
.y96{bottom:355.387067pt;}
.yf4{bottom:355.948707pt;}
.yb9{bottom:356.667067pt;}
.y13a{bottom:365.547067pt;}
.y171{bottom:370.107067pt;}
.y183{bottom:370.107200pt;}
.y46{bottom:370.827200pt;}
.y1b{bottom:370.987067pt;}
.yf3{bottom:371.228539pt;}
.y6c{bottom:376.347067pt;}
.y95{bottom:376.507067pt;}
.yb8{bottom:377.867067pt;}
.y11f{bottom:384.587067pt;}
.yf2{bottom:386.588531pt;}
.y170{bottom:390.107067pt;}
.y182{bottom:390.107200pt;}
.y45{bottom:391.947200pt;}
.y1a{bottom:392.187067pt;}
.y146{bottom:397.387067pt;}
.y6b{bottom:397.467067pt;}
.y94{bottom:397.627067pt;}
.yb7{bottom:398.987067pt;}
.ya6{bottom:400.587067pt;}
.yf1{bottom:401.948523pt;}
.y11e{bottom:405.787067pt;}
.y16f{bottom:410.107067pt;}
.y181{bottom:410.107200pt;}
.y44{bottom:413.067067pt;}
.y19{bottom:413.307067pt;}
.yf0{bottom:417.228355pt;}
.y6a{bottom:418.587067pt;}
.y93{bottom:418.747067pt;}
.yb6{bottom:420.107067pt;}
.y11d{bottom:426.907067pt;}
.y16e{bottom:430.107067pt;}
.y180{bottom:430.107200pt;}
.yef{bottom:432.588347pt;}
.y43{bottom:434.187067pt;}
.y18{bottom:434.427067pt;}
.y69{bottom:439.787067pt;}
.y92{bottom:439.867067pt;}
.yb5{bottom:441.227067pt;}
.yee{bottom:447.948339pt;}
.y11c{bottom:448.027067pt;}
.y16d{bottom:450.107067pt;}
.y17f{bottom:450.107200pt;}
.y42{bottom:455.387067pt;}
.y17{bottom:455.547067pt;}
.y68{bottom:460.907067pt;}
.y91{bottom:460.987067pt;}
.yb4{bottom:462.347067pt;}
.yed{bottom:463.228171pt;}
.y11b{bottom:469.147067pt;}
.y16c{bottom:470.107067pt;}
.y41{bottom:476.507067pt;}
.y16{bottom:476.667067pt;}
.yec{bottom:478.588163pt;}
.y67{bottom:482.027067pt;}
.y90{bottom:482.187067pt;}
.yb3{bottom:483.467067pt;}
.y16b{bottom:490.107067pt;}
.y11a{bottom:490.267067pt;}
.yeb{bottom:493.867995pt;}
.y40{bottom:497.627067pt;}
.y15{bottom:497.787067pt;}
.y66{bottom:503.147067pt;}
.y8f{bottom:503.307067pt;}
.yb2{bottom:504.667067pt;}
.yea{bottom:509.227987pt;}
.y16a{bottom:510.107067pt;}
.y139{bottom:510.747067pt;}
.y119{bottom:511.387067pt;}
.y3f{bottom:518.747067pt;}
.y14{bottom:518.987067pt;}
.y65{bottom:524.267067pt;}
.y8e{bottom:524.427067pt;}
.ye9{bottom:524.587979pt;}
.yb1{bottom:525.787067pt;}
.y169{bottom:530.107067pt;}
.y138{bottom:531.867067pt;}
.y118{bottom:532.587067pt;}
.y3e{bottom:539.867067pt;}
.ye8{bottom:539.867811pt;}
.y13{bottom:540.107067pt;}
.y64{bottom:545.387067pt;}
.y8d{bottom:545.547067pt;}
.yb0{bottom:546.907067pt;}
.y168{bottom:550.107067pt;}
.y137{bottom:552.987067pt;}
.y117{bottom:553.707067pt;}
.ye7{bottom:555.227803pt;}
.y3d{bottom:560.987067pt;}
.y145{bottom:566.507067pt;}
.y63{bottom:566.587067pt;}
.y8c{bottom:566.667067pt;}
.yaf{bottom:568.027067pt;}
.y167{bottom:570.107067pt;}
.ye6{bottom:570.587795pt;}
.y136{bottom:574.187067pt;}
.y3c{bottom:582.187067pt;}
.y12{bottom:582.347067pt;}
.ye5{bottom:585.867627pt;}
.y62{bottom:587.707067pt;}
.yae{bottom:589.147067pt;}
.y166{bottom:590.107067pt;}
.y116{bottom:595.947067pt;}
.y8b{bottom:598.347067pt;}
.ye4{bottom:601.227619pt;}
.y3b{bottom:603.307067pt;}
.yd6{bottom:608.747067pt;}
.y61{bottom:608.827067pt;}
.y101{bottom:609.787067pt;}
.y165{bottom:610.107067pt;}
.yad{bottom:610.267067pt;}
.y135{bottom:615.147067pt;}
.ye3{bottom:616.587611pt;}
.y3a{bottom:624.427067pt;}
.y11{bottom:624.587067pt;}
.y115{bottom:626.347307pt;}
.y134{bottom:627.626667pt;}
.y60{bottom:629.947067pt;}
.y8a{bottom:630.027067pt;}
.y164{bottom:630.107067pt;}
.y133{bottom:630.507067pt;}
.yac{bottom:631.467067pt;}
.ye2{bottom:631.867443pt;}
.y132{bottom:642.906667pt;}
.y39{bottom:645.547067pt;}
.y10{bottom:645.787067pt;}
.y114{bottom:646.347227pt;}
.ye1{bottom:647.227435pt;}
.y163{bottom:650.107067pt;}
.y5f{bottom:651.067067pt;}
.y89{bottom:651.147067pt;}
.yab{bottom:652.587067pt;}
.y130{bottom:662.347067pt;}
.ye0{bottom:662.587427pt;}
.y131{bottom:664.907067pt;}
.y113{bottom:666.347147pt;}
.y38{bottom:666.667067pt;}
.y100{bottom:668.187067pt;}
.y162{bottom:670.107067pt;}
.y7c{bottom:672.187067pt;}
.y88{bottom:672.267067pt;}
.ya5{bottom:672.347067pt;}
.yaa{bottom:673.707067pt;}
.ydf{bottom:677.867259pt;}
.y111{bottom:683.466667pt;}
.y112{bottom:686.347067pt;}
.y110{bottom:686.347307pt;}
.y37{bottom:687.787067pt;}
.ye{bottom:687.947067pt;}
.y161{bottom:690.107067pt;}
.yde{bottom:693.227251pt;}
.yf{bottom:693.307067pt;}
.y7b{bottom:693.387067pt;}
.ya9{bottom:694.827067pt;}
.ya4{bottom:704.027067pt;}
.y10f{bottom:706.347227pt;}
.ydd{bottom:708.587243pt;}
.y36{bottom:708.987067pt;}
.y160{bottom:710.107067pt;}
.y7a{bottom:714.507067pt;}
.y87{bottom:714.587067pt;}
.ydc{bottom:723.867075pt;}
.y10e{bottom:726.347147pt;}
.y35{bottom:730.107067pt;}
.y5e{bottom:735.627067pt;}
.y86{bottom:735.707067pt;}
.yd4{bottom:735.867427pt;}
.yd{bottom:738.906499pt;}
.ydb{bottom:739.227067pt;}
.y10d{bottom:746.347067pt;}
.y15f{bottom:750.107067pt;}
.yd3{bottom:751.147259pt;}
.y34{bottom:751.227067pt;}
.yda{bottom:754.587067pt;}
.y5d{bottom:756.747067pt;}
.y85{bottom:756.827067pt;}
.y10b{bottom:763.466667pt;}
.y10c{bottom:766.347067pt;}
.yd2{bottom:766.507251pt;}
.yd9{bottom:767.706667pt;}
.y15e{bottom:770.107067pt;}
.yd8{bottom:770.587067pt;}
.y33{bottom:772.347067pt;}
.y5c{bottom:777.867067pt;}
.y84{bottom:777.947067pt;}
.yc{bottom:781.227067pt;}
.yd1{bottom:781.787083pt;}
.y10a{bottom:784.106667pt;}
.y109{bottom:786.987200pt;}
.y15d{bottom:790.107067pt;}
.y32{bottom:793.467067pt;}
.yd0{bottom:797.147075pt;}
.y5b{bottom:798.987067pt;}
.y83{bottom:799.067067pt;}
.yce{bottom:809.626667pt;}
.y15c{bottom:810.107067pt;}
.ycf{bottom:812.507067pt;}
.ycd{bottom:812.507376pt;}
.y31{bottom:814.587067pt;}
.yb{bottom:814.827067pt;}
.yd5{bottom:820.107067pt;}
.y5a{bottom:820.187067pt;}
.y12f{bottom:821.147579pt;}
.ycc{bottom:827.787208pt;}
.y15b{bottom:830.107067pt;}
.y30{bottom:835.787067pt;}
.yc9{bottom:840.266667pt;}
.y59{bottom:841.307067pt;}
.y82{bottom:841.387067pt;}
.y12e{bottom:842.267067pt;}
.yc8{bottom:843.147075pt;}
.ycb{bottom:843.147200pt;}
.y15a{bottom:850.107067pt;}
.y2f{bottom:856.907067pt;}
.yc7{bottom:858.507067pt;}
.y58{bottom:862.427067pt;}
.y81{bottom:862.507067pt;}
.ya{bottom:862.906931pt;}
.y159{bottom:870.107067pt;}
.yc6{bottom:873.787067pt;}
.y2e{bottom:878.027067pt;}
.y57{bottom:883.547067pt;}
.y80{bottom:883.627067pt;}
.y9{bottom:884.026595pt;}
.yc4{bottom:886.906667pt;}
.yc3{bottom:889.787067pt;}
.y158{bottom:890.107067pt;}
.ya3{bottom:894.107067pt;}
.y2d{bottom:899.147067pt;}
.y56{bottom:904.667067pt;}
.y7f{bottom:904.747067pt;}
.y8{bottom:905.226779pt;}
.y12d{bottom:906.507067pt;}
.y157{bottom:910.107067pt;}
.y55{bottom:925.787067pt;}
.y7e{bottom:925.867067pt;}
.y7{bottom:926.346443pt;}
.y156{bottom:930.107067pt;}
.y2c{bottom:941.387067pt;}
.y54{bottom:946.987067pt;}
.y6{bottom:947.546627pt;}
.y155{bottom:950.107067pt;}
.y7d{bottom:957.547067pt;}
.y53{bottom:968.107067pt;}
.y5{bottom:968.666291pt;}
.y154{bottom:970.107067pt;}
.y52{bottom:989.227067pt;}
.y2b{bottom:989.547067pt;}
.y4{bottom:989.706899pt;}
.y153{bottom:990.107067pt;}
.y18f{bottom:1009.467067pt;}
.y152{bottom:1010.107067pt;}
.yd7{bottom:1010.267067pt;}
.y2a{bottom:1010.347067pt;}
.y3{bottom:1010.826563pt;}
.y1{bottom:1052.347067pt;}
.y28{bottom:1053.547067pt;}
.ha{height:14.880000pt;}
.h5{height:29.135313pt;}
.hc{height:30.256875pt;}
.hf{height:37.260781pt;}
.h9{height:40.660312pt;}
.h2{height:43.343750pt;}
.h4{height:43.812500pt;}
.h8{height:44.437500pt;}
.h7{height:46.786094pt;}
.hd{height:48.816875pt;}
.h1{height:51.268594pt;}
.h6{height:56.031250pt;}
.h3{height:58.489688pt;}
.hb{height:61.260781pt;}
.he{height:65.276406pt;}
.h0{height:1122.666667pt;}
.wc{width:4.480000pt;}
.w9{width:6.720000pt;}
.wa{width:23.200000pt;}
.wd{width:23.600000pt;}
.w5{width:24.400000pt;}
.w2{width:43.680000pt;}
.w4{width:49.600000pt;}
.we{width:49.680000pt;}
.w3{width:57.760000pt;}
.w8{width:60.000000pt;}
.wf{width:64.880000pt;}
.wb{width:70.720000pt;}
.w6{width:107.360000pt;}
.w7{width:131.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x15{left:17.760000pt;}
.x2b{left:28.160000pt;}
.xe{left:37.040000pt;}
.x37{left:39.280000pt;}
.x13{left:42.960000pt;}
.x11{left:51.120000pt;}
.x27{left:56.320000pt;}
.x2d{left:60.720000pt;}
.x1b{left:65.200000pt;}
.x1{left:72.000000pt;}
.x17{left:76.640000pt;}
.xd{left:78.720000pt;}
.x30{left:83.680000pt;}
.x2a{left:86.320000pt;}
.x40{left:102.240000pt;}
.x7{left:104.000000pt;}
.x22{left:107.120000pt;}
.x2c{left:111.520000pt;}
.x33{left:119.200000pt;}
.xf{left:122.400000pt;}
.x1d{left:124.240000pt;}
.x38{left:125.200000pt;}
.x14{left:128.320000pt;}
.x31{left:131.120000pt;}
.x3f{left:133.760000pt;}
.x3c{left:137.040000pt;}
.x2e{left:144.080000pt;}
.x32{left:154.720000pt;}
.x18{left:165.360000pt;}
.x24{left:172.478835pt;}
.x19{left:189.840000pt;}
.x10{left:194.560000pt;}
.x39{left:196.480000pt;}
.x2f{left:205.760000pt;}
.x25{left:208.720000pt;}
.x3{left:237.280000pt;}
.x4{left:239.920000pt;}
.x36{left:241.600000pt;}
.x12{left:252.320000pt;}
.x35{left:260.158609pt;}
.x1f{left:264.000000pt;}
.x16{left:271.360000pt;}
.x21{left:285.840000pt;}
.x9{left:289.519415pt;}
.x43{left:298.803351pt;}
.xc{left:302.400000pt;}
.xb{left:317.680000pt;}
.xa{left:322.640000pt;}
.x26{left:369.760000pt;}
.x3a{left:404.000000pt;}
.x2{left:482.641098pt;}
.x41{left:497.520000pt;}
.x42{left:502.880000pt;}
.x28{left:558.640000pt;}
.x29{left:565.360000pt;}
.x3b{left:570.880000pt;}
.x1a{left:585.840000pt;}
.x3d{left:596.480000pt;}
.x20{left:601.840000pt;}
.x34{left:608.880000pt;}
.x3e{left:614.320000pt;}
.x1c{left:653.680000pt;}
.x5{left:668.240000pt;}
.x23{left:686.640000pt;}
.x6{left:701.759867pt;}
.x1e{left:712.720000pt;}
.x8{left:721.759867pt;}
}

