
    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_661973cda875ed97812fca58.woff')format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_6c33ace9555b390b18fe86cd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.981000;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_5ad01c59cc980c3bdc23d80e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_e477ec8b66d1fec900e1d738.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_d5f0b195eb78d597dd998170.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_7c810db1a5486096ec6d15a4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dbd5e67d2256dc6bf7c2b00f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a1a4c357825001db55001fc3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1073cd414987fa3aa79dfb13.woff')format("woff");}.ff9{font-family:ff9;line-height:0.709000;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_f3b289b91992d4aa7edac72b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934000;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_2b210125d0755060115d4968.woff')format("woff");}.ffb{font-family:ffb;line-height:0.934000;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_c88205a188610d16f3bfb684.woff')format("woff");}.ffc{font-family:ffc;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_576cbe15a6b5d5cecd712ac1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7600750976222d5386175ba5.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1d7ef595a09086bd4b127870.woff')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_71d6145fa3c182c7d94d48c1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2de95f3bc713f4324cc9e5cb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.696289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_211223dc3bf933f453ae8642.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_81159617572802f7842e0f92.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_4497c79bfcf4396aa586edb8.woff')format("woff");}.ff14{font-family:ff14;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;}
.md{transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249952,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.275671,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275671,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275671,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.275885,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275885,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275885,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.226543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226543,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226544,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.226719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226719,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-46.442700px;}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-9.000000px;}
.v4{vertical-align:-1.079400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.v6{vertical-align:42.478043px;}
.ls98{letter-spacing:-0.736964px;}
.ls9c{letter-spacing:-0.706303px;}
.ls4b{letter-spacing:-0.499980px;}
.ls41{letter-spacing:-0.392088px;}
.ls7a{letter-spacing:-0.318636px;}
.ls72{letter-spacing:-0.294588px;}
.ls76{letter-spacing:-0.282564px;}
.ls85{letter-spacing:-0.252504px;}
.ls3b{letter-spacing:-0.229720px;}
.ls83{letter-spacing:-0.222444px;}
.ls82{letter-spacing:-0.216432px;}
.ls4a{letter-spacing:-0.216207px;}
.ls84{letter-spacing:-0.210420px;}
.ls86{letter-spacing:-0.186372px;}
.ls36{letter-spacing:-0.186171px;}
.ls9b{letter-spacing:-0.183754px;}
.ls2d{letter-spacing:-0.183600px;}
.ls81{letter-spacing:-0.180360px;}
.lsc1{letter-spacing:-0.180324px;}
.ls34{letter-spacing:-0.168835px;}
.ls44{letter-spacing:-0.168704px;}
.ls20{letter-spacing:-0.168336px;}
.ls77{letter-spacing:-0.156312px;}
.ls6e{letter-spacing:-0.150300px;}
.ls28{letter-spacing:-0.144288px;}
.ls67{letter-spacing:-0.138276px;}
.ls95{letter-spacing:-0.133985px;}
.ls78{letter-spacing:-0.132264px;}
.ls68{letter-spacing:-0.126252px;}
.ls94{letter-spacing:-0.124415px;}
.ls2a{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.114228px;}
.ls3c{letter-spacing:-0.111482px;}
.ls24{letter-spacing:-0.108216px;}
.ls29{letter-spacing:-0.102204px;}
.ls40{letter-spacing:-0.097969px;}
.ls1f{letter-spacing:-0.096192px;}
.lsbb{letter-spacing:-0.096173px;}
.ls6f{letter-spacing:-0.090180px;}
.ls1d{letter-spacing:-0.090000px;}
.ls75{letter-spacing:-0.086400px;}
.ls21{letter-spacing:-0.084168px;}
.ls65{letter-spacing:-0.078156px;}
.ls74{letter-spacing:-0.072144px;}
.ls2f{letter-spacing:-0.072000px;}
.ls96{letter-spacing:-0.066993px;}
.ls93{letter-spacing:-0.066132px;}
.ls9a{letter-spacing:-0.063165px;}
.ls22{letter-spacing:-0.060120px;}
.ls2b{letter-spacing:-0.054108px;}
.ls3a{letter-spacing:-0.054052px;}
.ls25{letter-spacing:-0.048096px;}
.lsc0{letter-spacing:-0.048086px;}
.lsab{letter-spacing:-0.044781px;}
.lsa5{letter-spacing:-0.042076px;}
.ls48{letter-spacing:-0.040539px;}
.lsc2{letter-spacing:-0.036065px;}
.ls27{letter-spacing:-0.036000px;}
.lsaa{letter-spacing:-0.031008px;}
.ls6c{letter-spacing:-0.030060px;}
.lsa6{letter-spacing:-0.030054px;}
.lsa9{letter-spacing:-0.027594px;}
.ls79{letter-spacing:-0.027000px;}
.ls66{letter-spacing:-0.024048px;}
.lsa7{letter-spacing:-0.024043px;}
.ls26{letter-spacing:-0.021600px;}
.lsbd{letter-spacing:-0.021596px;}
.lsb0{letter-spacing:-0.020672px;}
.ls6a{letter-spacing:-0.018036px;}
.lsbf{letter-spacing:-0.018032px;}
.ls2e{letter-spacing:-0.016200px;}
.ls87{letter-spacing:-0.012024px;}
.lsbe{letter-spacing:-0.012022px;}
.ls1c{letter-spacing:-0.010800px;}
.lsa8{letter-spacing:-0.006889px;}
.ls69{letter-spacing:-0.006012px;}
.lsbc{letter-spacing:-0.006011px;}
.ls31{letter-spacing:-0.005642px;}
.ls71{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.lsaf{letter-spacing:0.003445px;}
.ls9d{letter-spacing:0.005399px;}
.ls13{letter-spacing:0.005400px;}
.lsb5{letter-spacing:0.006011px;}
.ls4e{letter-spacing:0.006012px;}
.lsac{letter-spacing:0.006889px;}
.lsb1{letter-spacing:0.010334px;}
.ls9e{letter-spacing:0.010798px;}
.lsc{letter-spacing:0.010800px;}
.lsb4{letter-spacing:0.012022px;}
.ls11{letter-spacing:0.012024px;}
.lsb3{letter-spacing:0.013779px;}
.ls6b{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.016200px;}
.lsb2{letter-spacing:0.017223px;}
.lsba{letter-spacing:0.018032px;}
.ls37{letter-spacing:0.020269px;}
.lsae{letter-spacing:0.020668px;}
.ls9f{letter-spacing:0.021596px;}
.lsd{letter-spacing:0.021600px;}
.ls23{letter-spacing:0.023328px;}
.ls91{letter-spacing:0.023926px;}
.lsb7{letter-spacing:0.024043px;}
.lsf{letter-spacing:0.024048px;}
.ls88{letter-spacing:0.027000px;}
.ls47{letter-spacing:0.027026px;}
.lsad{letter-spacing:0.027557px;}
.lsc3{letter-spacing:0.031002px;}
.lsb6{letter-spacing:0.036065px;}
.ls4f{letter-spacing:0.036072px;}
.ls6{letter-spacing:0.042000px;}
.ls89{letter-spacing:0.042084px;}
.lsb{letter-spacing:0.043200px;}
.ls3{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.048096px;}
.ls10{letter-spacing:0.054108px;}
.ls4{letter-spacing:0.059400px;}
.ls1{letter-spacing:0.060000px;}
.ls7f{letter-spacing:0.060120px;}
.ls52{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.066000px;}
.lse{letter-spacing:0.066132px;}
.lsa1{letter-spacing:0.068893px;}
.ls7e{letter-spacing:0.070200px;}
.ls7{letter-spacing:0.072000px;}
.ls70{letter-spacing:0.072144px;}
.ls1e{letter-spacing:0.078156px;}
.lsa{letter-spacing:0.081000px;}
.ls51{letter-spacing:0.084168px;}
.ls90{letter-spacing:0.086139px;}
.ls4d{letter-spacing:0.090180px;}
.ls92{letter-spacing:0.091877px;}
.ls19{letter-spacing:0.092020px;}
.ls16{letter-spacing:0.092092px;}
.ls53{letter-spacing:0.092232px;}
.ls99{letter-spacing:0.100489px;}
.ls4c{letter-spacing:0.102204px;}
.ls18{letter-spacing:0.102245px;}
.ls15{letter-spacing:0.102324px;}
.ls6d{letter-spacing:0.108216px;}
.ls8f{letter-spacing:0.110066px;}
.ls2c{letter-spacing:0.114228px;}
.ls8e{letter-spacing:0.114844px;}
.ls39{letter-spacing:0.114860px;}
.ls45{letter-spacing:0.120138px;}
.ls35{letter-spacing:0.120231px;}
.ls8a{letter-spacing:0.120240px;}
.ls49{letter-spacing:0.128373px;}
.ls2{letter-spacing:0.132000px;}
.ls73{letter-spacing:0.144288px;}
.ls3e{letter-spacing:0.146681px;}
.ls7d{letter-spacing:0.150300px;}
.ls46{letter-spacing:0.157964px;}
.ls12{letter-spacing:0.162000px;}
.ls7c{letter-spacing:0.162324px;}
.ls7b{letter-spacing:0.168336px;}
.ls9{letter-spacing:0.180000px;}
.lsb9{letter-spacing:0.180324px;}
.ls50{letter-spacing:0.180360px;}
.ls97{letter-spacing:0.196205px;}
.ls8b{letter-spacing:0.215333px;}
.ls38{letter-spacing:0.253368px;}
.ls43{letter-spacing:0.258168px;}
.ls33{letter-spacing:0.258368px;}
.ls1b{letter-spacing:0.290529px;}
.ls8d{letter-spacing:0.291896px;}
.ls17{letter-spacing:0.297285px;}
.ls1a{letter-spacing:0.304042px;}
.ls8c{letter-spacing:0.363674px;}
.lsa4{letter-spacing:0.397261px;}
.lsa2{letter-spacing:0.401400px;}
.ls3f{letter-spacing:0.405389px;}
.lsa0{letter-spacing:0.429892px;}
.lsa3{letter-spacing:0.442781px;}
.ls42{letter-spacing:7.554049px;}
.ls3d{letter-spacing:21.827196px;}
.ls32{letter-spacing:22.224926px;}
.ls64{letter-spacing:62.144352px;}
.ls54{letter-spacing:62.513532px;}
.ls61{letter-spacing:62.867844px;}
.lsb8{letter-spacing:65.698044px;}
.ls5a{letter-spacing:79.069176px;}
.ls5d{letter-spacing:79.426764px;}
.ls59{letter-spacing:79.430256px;}
.ls55{letter-spacing:95.993748px;}
.ls5e{letter-spacing:112.193640px;}
.ls60{letter-spacing:112.549392px;}
.ls56{letter-spacing:112.911732px;}
.ls5b{letter-spacing:128.749284px;}
.ls63{letter-spacing:129.473964px;}
.ls57{letter-spacing:145.311516px;}
.ls5f{letter-spacing:146.387736px;}
.ls62{letter-spacing:146.388996px;}
.ls5c{letter-spacing:148.548816px;}
.ls58{letter-spacing:195.703092px;}
.ls80{letter-spacing:846.000000px;}
.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;}
}
.ws57{word-spacing:-60.120000px;}
.wscc{word-spacing:-57.423000px;}
.wsc7{word-spacing:-47.854800px;}
.wsbc{word-spacing:-47.851800px;}
.wsec{word-spacing:-34.446600px;}
.ws15{word-spacing:-33.782400px;}
.ws10{word-spacing:-25.581000px;}
.ws22{word-spacing:-25.561200px;}
.wsd{word-spacing:-22.253133px;}
.ws1a{word-spacing:-21.855403px;}
.ws3{word-spacing:-16.980000px;}
.ws2{word-spacing:-15.282000px;}
.ws102{word-spacing:-15.207324px;}
.ws99{word-spacing:-15.144228px;}
.ws98{word-spacing:-15.090120px;}
.ws56{word-spacing:-15.030000px;}
.ws103{word-spacing:-15.027000px;}
.ws105{word-spacing:-15.020989px;}
.ws9{word-spacing:-14.981904px;}
.ws5{word-spacing:-13.560000px;}
.wsa{word-spacing:-13.516200px;}
.ws6{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.735000px;}
.ws8{word-spacing:-9.743328px;}
.ws7{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.000000px;}
.wsfc{word-spacing:-0.702709px;}
.ws100{word-spacing:-0.612445px;}
.wsff{word-spacing:-0.571063px;}
.ws101{word-spacing:-0.566925px;}
.ws30{word-spacing:-0.468000px;}
.ws79{word-spacing:-0.450900px;}
.ws1c{word-spacing:-0.439171px;}
.wsbd{word-spacing:-0.411525px;}
.ws73{word-spacing:-0.360720px;}
.wsbb{word-spacing:-0.354708px;}
.ws72{word-spacing:-0.342684px;}
.wsbe{word-spacing:-0.339748px;}
.ws32{word-spacing:-0.336000px;}
.ws16{word-spacing:-0.287150px;}
.wse{word-spacing:-0.283949px;}
.ws20{word-spacing:-0.283729px;}
.ws90{word-spacing:-0.276552px;}
.wsd8{word-spacing:-0.270540px;}
.ws8f{word-spacing:-0.264528px;}
.wsc8{word-spacing:-0.244059px;}
.ws3a{word-spacing:-0.210420px;}
.ws39{word-spacing:-0.186372px;}
.ws25{word-spacing:-0.186171px;}
.ws1b{word-spacing:-0.174888px;}
.ws29{word-spacing:-0.162156px;}
.ws58{word-spacing:-0.158112px;}
.wsc6{word-spacing:-0.157921px;}
.ws2d{word-spacing:-0.150000px;}
.wsce{word-spacing:-0.149300px;}
.ws17{word-spacing:-0.148643px;}
.ws11{word-spacing:-0.145812px;}
.ws23{word-spacing:-0.145699px;}
.wsc9{word-spacing:-0.133993px;}
.ws31{word-spacing:-0.132000px;}
.ws12{word-spacing:-0.117673px;}
.ws24{word-spacing:-0.117582px;}
.ws120{word-spacing:-0.096173px;}
.ws115{word-spacing:-0.090162px;}
.ws93{word-spacing:-0.078156px;}
.ws35{word-spacing:-0.078000px;}
.ws95{word-spacing:-0.072144px;}
.wsca{word-spacing:-0.071778px;}
.ws27{word-spacing:-0.060808px;}
.ws97{word-spacing:-0.060120px;}
.ws104{word-spacing:-0.060108px;}
.wscb{word-spacing:-0.057423px;}
.ws12d{word-spacing:-0.054097px;}
.ws14{word-spacing:-0.054052px;}
.wsbf{word-spacing:-0.047852px;}
.ws26{word-spacing:-0.033782px;}
.ws4f{word-spacing:-0.024048px;}
.wsc{word-spacing:-0.022566px;}
.ws4{word-spacing:0.000000px;}
.ws51{word-spacing:0.005400px;}
.wscd{word-spacing:0.005742px;}
.wsf7{word-spacing:0.006011px;}
.ws28{word-spacing:0.006756px;}
.ws2c{word-spacing:0.010800px;}
.wsf3{word-spacing:0.012022px;}
.ws36{word-spacing:0.012024px;}
.ws50{word-spacing:0.016200px;}
.ws11f{word-spacing:0.018032px;}
.wsc2{word-spacing:0.019141px;}
.wsf2{word-spacing:0.024043px;}
.wsfd{word-spacing:0.027557px;}
.ws2f{word-spacing:0.036000px;}
.wsfb{word-spacing:0.041336px;}
.ws33{word-spacing:0.042000px;}
.ws2e{word-spacing:0.048000px;}
.ws112{word-spacing:0.048086px;}
.wsf4{word-spacing:0.048590px;}
.ws1d{word-spacing:0.064187px;}
.wsf6{word-spacing:0.070186px;}
.wsf9{word-spacing:0.075585px;}
.ws19{word-spacing:0.077700px;}
.ws108{word-spacing:0.079184px;}
.ws74{word-spacing:0.084168px;}
.wsc1{word-spacing:0.086133px;}
.ws107{word-spacing:0.090162px;}
.ws129{word-spacing:0.102184px;}
.wsf5{word-spacing:0.102579px;}
.wsfe{word-spacing:0.103360px;}
.wsf8{word-spacing:0.107978px;}
.ws34{word-spacing:0.108000px;}
.ws8e{word-spacing:0.113400px;}
.wsfa{word-spacing:0.113696px;}
.ws126{word-spacing:0.114205px;}
.wscf{word-spacing:0.126331px;}
.ws21{word-spacing:0.143143px;}
.wsf{word-spacing:0.143254px;}
.ws4e{word-spacing:0.144288px;}
.wsd1{word-spacing:0.151200px;}
.wsda{word-spacing:0.156312px;}
.ws44{word-spacing:0.156600px;}
.ws13{word-spacing:0.157964px;}
.ws7b{word-spacing:0.162324px;}
.ws45{word-spacing:0.167400px;}
.ws53{word-spacing:0.172800px;}
.wsea{word-spacing:0.180360px;}
.ws2a{word-spacing:0.182425px;}
.ws75{word-spacing:0.183600px;}
.ws37{word-spacing:0.186372px;}
.ws76{word-spacing:0.189000px;}
.ws52{word-spacing:0.194400px;}
.ws18{word-spacing:0.195938px;}
.ws3b{word-spacing:0.198396px;}
.ws8d{word-spacing:0.205200px;}
.wse4{word-spacing:0.216432px;}
.ws8c{word-spacing:0.222444px;}
.ws38{word-spacing:0.258516px;}
.wse9{word-spacing:0.330660px;}
.ws1e{word-spacing:0.363881px;}
.ws46{word-spacing:0.396000px;}
.ws2b{word-spacing:0.466197px;}
.wse8{word-spacing:0.553104px;}
.wsd0{word-spacing:0.648880px;}
.ws10e{word-spacing:0.715285px;}
.ws10f{word-spacing:0.745339px;}
.wse1{word-spacing:0.763524px;}
.wse3{word-spacing:0.787572px;}
.ws82{word-spacing:0.889776px;}
.ws62{word-spacing:0.895788px;}
.wse2{word-spacing:0.925848px;}
.ws7f{word-spacing:1.160316px;}
.ws3f{word-spacing:1.177200px;}
.ws80{word-spacing:1.178352px;}
.ws6e{word-spacing:1.262520px;}
.ws3e{word-spacing:1.279800px;}
.ws81{word-spacing:1.280556px;}
.ws6d{word-spacing:1.322640px;}
.ws3c{word-spacing:1.560600px;}
.ws3d{word-spacing:1.603800px;}
.ws113{word-spacing:2.163888px;}
.ws114{word-spacing:2.205964px;}
.ws84{word-spacing:2.597184px;}
.ws85{word-spacing:2.615220px;}
.ws5c{word-spacing:2.633256px;}
.ws5b{word-spacing:2.687364px;}
.ws83{word-spacing:2.699388px;}
.wse5{word-spacing:2.705400px;}
.ws87{word-spacing:2.711412px;}
.ws55{word-spacing:2.717424px;}
.ws86{word-spacing:2.723436px;}
.wse6{word-spacing:2.729448px;}
.ws10d{word-spacing:3.137638px;}
.ws10c{word-spacing:3.155670px;}
.ws11a{word-spacing:3.215778px;}
.ws10b{word-spacing:3.263864px;}
.ws119{word-spacing:3.293918px;}
.ws118{word-spacing:3.432167px;}
.ws5e{word-spacing:3.456900px;}
.ws5d{word-spacing:3.468924px;}
.ws89{word-spacing:3.607200px;}
.ws42{word-spacing:3.720600px;}
.ws43{word-spacing:3.769200px;}
.wsb5{word-spacing:4.346676px;}
.wsb9{word-spacing:4.424832px;}
.wsb8{word-spacing:4.436856px;}
.wsb7{word-spacing:4.472928px;}
.wsba{word-spacing:4.484952px;}
.wsb6{word-spacing:4.599180px;}
.wsd7{word-spacing:4.659300px;}
.ws124{word-spacing:4.682413px;}
.wsd5{word-spacing:4.689360px;}
.wsd6{word-spacing:4.725432px;}
.ws125{word-spacing:4.754543px;}
.ws69{word-spacing:5.020020px;}
.ws130{word-spacing:5.109180px;}
.ws6b{word-spacing:5.116212px;}
.ws131{word-spacing:5.121202px;}
.ws6c{word-spacing:5.122224px;}
.ws68{word-spacing:5.128236px;}
.ws67{word-spacing:5.158296px;}
.ws4c{word-spacing:5.230440px;}
.ws4d{word-spacing:5.248476px;}
.ws4b{word-spacing:5.272524px;}
.ws7d{word-spacing:5.464908px;}
.ws7e{word-spacing:5.476932px;}
.ws7c{word-spacing:5.482944px;}
.wse7{word-spacing:5.543064px;}
.ws63{word-spacing:5.747472px;}
.ws88{word-spacing:5.771520px;}
.ws61{word-spacing:5.837652px;}
.ws5f{word-spacing:5.849676px;}
.ws60{word-spacing:5.855688px;}
.ws64{word-spacing:5.867712px;}
.ws65{word-spacing:6.288552px;}
.ws1f{word-spacing:6.321368px;}
.ws66{word-spacing:6.324624px;}
.ws70{word-spacing:6.535044px;}
.ws6f{word-spacing:6.559092px;}
.ws71{word-spacing:6.595164px;}
.ws8b{word-spacing:6.715404px;}
.ws8a{word-spacing:6.727428px;}
.wsd4{word-spacing:6.847668px;}
.ws54{word-spacing:6.883740px;}
.ws12c{word-spacing:8.661563px;}
.ws12a{word-spacing:8.739703px;}
.ws12b{word-spacing:8.787790px;}
.ws127{word-spacing:9.184502px;}
.ws128{word-spacing:9.280675px;}
.ws10a{word-spacing:9.659356px;}
.ws111{word-spacing:9.689410px;}
.ws109{word-spacing:9.731485px;}
.ws110{word-spacing:9.791593px;}
.ws11c{word-spacing:10.068090px;}
.ws11e{word-spacing:10.146230px;}
.ws6a{word-spacing:10.436832px;}
.ws11b{word-spacing:10.440760px;}
.ws47{word-spacing:10.460880px;}
.ws11d{word-spacing:10.470814px;}
.ws49{word-spacing:10.472904px;}
.ws48{word-spacing:10.502964px;}
.ws4a{word-spacing:10.514988px;}
.wsd3{word-spacing:12.258468px;}
.wsd2{word-spacing:12.342636px;}
.ws122{word-spacing:12.532518px;}
.ws123{word-spacing:12.652734px;}
.ws121{word-spacing:12.694810px;}
.wsdf{word-spacing:12.703356px;}
.wse0{word-spacing:12.775500px;}
.ws12f{word-spacing:13.782764px;}
.ws12e{word-spacing:14.017186px;}
.ws40{word-spacing:14.536800px;}
.ws41{word-spacing:14.563800px;}
.ws117{word-spacing:21.320308px;}
.ws116{word-spacing:21.410470px;}
.wsc0{word-spacing:47.449845px;}
.wsf0{word-spacing:89.034716px;}
.ws106{word-spacing:90.642052px;}
.ws59{word-spacing:93.002796px;}
.wsed{word-spacing:93.166881px;}
.wsf1{word-spacing:93.815335px;}
.wsef{word-spacing:94.774218px;}
.wsee{word-spacing:95.733101px;}
.wseb{word-spacing:97.340438px;}
.ws9c{word-spacing:103.947480px;}
.wsa1{word-spacing:105.071724px;}
.wsc5{word-spacing:108.436964px;}
.ws5a{word-spacing:110.628144px;}
.wsa6{word-spacing:111.871296px;}
.ws9d{word-spacing:119.103732px;}
.ws9f{word-spacing:119.109744px;}
.wsac{word-spacing:126.991476px;}
.wsdb{word-spacing:136.388232px;}
.wsaf{word-spacing:141.390216px;}
.wsb4{word-spacing:141.750936px;}
.wsae{word-spacing:141.793020px;}
.wsa8{word-spacing:142.111656px;}
.wsa7{word-spacing:142.141716px;}
.wsc3{word-spacing:143.450126px;}
.wsdc{word-spacing:146.464344px;}
.ws9e{word-spacing:148.953312px;}
.wsd9{word-spacing:149.560524px;}
.ws94{word-spacing:150.029460px;}
.wsdd{word-spacing:151.183764px;}
.ws92{word-spacing:153.161712px;}
.wsaa{word-spacing:156.871116px;}
.wsb3{word-spacing:157.231836px;}
.wsa3{word-spacing:158.668704px;}
.ws9b{word-spacing:162.161676px;}
.wsa0{word-spacing:164.067480px;}
.ws96{word-spacing:164.788920px;}
.wsde{word-spacing:165.871080px;}
.wsab{word-spacing:167.668668px;}
.wsad{word-spacing:167.680692px;}
.wsa9{word-spacing:168.029388px;}
.wsb1{word-spacing:168.101532px;}
.wsa5{word-spacing:171.161640px;}
.wsb2{word-spacing:171.269856px;}
.wsb0{word-spacing:171.630576px;}
.wsa2{word-spacing:178.832952px;}
.ws77{word-spacing:340.225092px;}
.ws78{word-spacing:436.266792px;}
.ws7a{word-spacing:436.302864px;}
.ws1{word-spacing:651.006002px;}
.wsc4{word-spacing:676.217712px;}
.ws9a{word-spacing:1073.172060px;}
.wsa4{word-spacing:1080.410508px;}
.ws91{word-spacing:1082.929536px;}
._d{margin-left:-436.988232px;}
._c{margin-left:-339.783588px;}
._4f{margin-left:-168.597417px;}
._48{margin-left:-167.552568px;}
._61{margin-left:-51.201332px;}
._34{margin-left:-49.641084px;}
._33{margin-left:-44.390240px;}
._45{margin-left:-41.362560px;}
._42{margin-left:-38.879604px;}
._5f{margin-left:-35.134128px;}
._5e{margin-left:-34.057980px;}
._2f{margin-left:-29.512908px;}
._58{margin-left:-28.474704px;}
._4d{margin-left:-25.845588px;}
._4b{margin-left:-24.122664px;}
._5{margin-left:-22.230567px;}
._7{margin-left:-21.020453px;}
._5d{margin-left:-19.807171px;}
._36{margin-left:-16.735212px;}
._1d{margin-left:-15.575184px;}
._6{margin-left:-14.292892px;}
._20{margin-left:-11.390112px;}
._53{margin-left:-10.048752px;}
._a{margin-left:-8.346688px;}
._4{margin-left:-7.147857px;}
._37{margin-left:-5.865344px;}
._51{margin-left:-4.351824px;}
._b{margin-left:-3.081768px;}
._1{margin-left:-1.118232px;}
._0{width:1.314000px;}
._10{width:4.747432px;}
._1e{width:5.908752px;}
._9{width:7.150677px;}
._59{width:10.066120px;}
._4e{width:13.673620px;}
._8{width:15.096815px;}
._1b{width:16.751476px;}
._4a{width:18.239040px;}
._5b{width:19.909799px;}
._f{width:24.504229px;}
._41{width:26.329537px;}
._50{width:28.502856px;}
._39{width:29.647800px;}
._18{width:31.360176px;}
._49{width:32.398668px;}
._2a{width:35.250301px;}
._31{width:39.102048px;}
._11{width:42.993072px;}
._22{width:44.773992px;}
._47{width:46.783117px;}
._2d{width:51.256728px;}
._30{width:53.429327px;}
._2b{width:58.147344px;}
._3a{width:61.911576px;}
._38{width:71.073072px;}
._32{width:72.167148px;}
._16{width:76.113072px;}
._21{width:77.193072px;}
._46{width:86.193072px;}
._23{width:90.575640px;}
._1a{width:93.033072px;}
._3f{width:100.953504px;}
._6b{width:104.973020px;}
._1f{width:107.795160px;}
._66{width:109.529986px;}
._6a{width:111.337372px;}
._24{width:113.042736px;}
._35{width:114.997536px;}
._44{width:116.073684px;}
._e{width:117.155844px;}
._29{width:118.711800px;}
._69{width:120.119086px;}
._63{width:121.150284px;}
._2c{width:122.193900px;}
._6c{width:129.131898px;}
._2e{width:131.918615px;}
._67{width:133.302005px;}
._68{width:134.949403px;}
._65{width:136.710910px;}
._19{width:139.040136px;}
._26{width:143.079588px;}
._28{width:146.668752px;}
._13{width:148.839084px;}
._3c{width:151.718832px;}
._15{width:153.871128px;}
._3e{width:156.390156px;}
._27{width:158.187744px;}
._14{width:164.307960px;}
._3d{width:167.187708px;}
._1c{width:172.081476px;}
._43{width:174.984984px;}
._25{width:176.037372px;}
._12{width:181.892448px;}
._3b{width:184.884336px;}
._60{width:188.650548px;}
._4c{width:189.689688px;}
._17{width:197.368632px;}
._52{width:199.516824px;}
._40{width:200.597724px;}
._5c{width:204.029244px;}
._5a{width:219.149424px;}
._62{width:247.459932px;}
._57{width:273.600108px;}
._64{width:374.298527px;}
._56{width:412.555464px;}
._55{width:414.590148px;}
._54{width:450.280764px;}
._3{width:821.815200px;}
._2{width:862.979400px;}
._6d{width:1140.038382px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,174,239);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:25.561200px;}
.fsb{font-size:25.581000px;}
.fsa{font-size:28.207800px;}
.fsc{font-size:33.782400px;}
.fs15{font-size:34.446600px;}
.fs17{font-size:34.453200px;}
.fs16{font-size:34.492200px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs18{font-size:41.335800px;}
.fs19{font-size:41.381400px;}
.fse{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs10{font-size:47.851800px;}
.fs11{font-size:47.854800px;}
.fs14{font-size:53.989200px;}
.fs2{font-size:54.000000px;}
.fs12{font-size:57.423000px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.108000px;}
.fs7{font-size:60.120000px;}
.fsf{font-size:65.880000px;}
.fs1a{font-size:71.985600px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y131{bottom:2.515500px;}
.y10a{bottom:2.516100px;}
.yee{bottom:2.517000px;}
.y165{bottom:2.525700px;}
.y124{bottom:2.550000px;}
.y2a{bottom:4.609680px;}
.y29{bottom:21.804000px;}
.y3d{bottom:36.000000px;}
.y116{bottom:56.412450px;}
.y28{bottom:57.534000px;}
.y3c{bottom:60.000000px;}
.y2{bottom:62.419464px;}
.y3b{bottom:72.600000px;}
.y3a{bottom:85.200000px;}
.y1{bottom:87.919464px;}
.y27{bottom:95.608650px;}
.y26{bottom:120.084150px;}
.y10{bottom:132.186000px;}
.y6a{bottom:143.820000px;}
.y38{bottom:150.234000px;}
.y36{bottom:159.968290px;}
.y69{bottom:162.990000px;}
.y2b{bottom:169.044150px;}
.y64{bottom:171.000150px;}
.yc8{bottom:177.120366px;}
.ye1{bottom:177.290550px;}
.y2c{bottom:181.286335px;}
.y37{bottom:184.704150px;}
.y68{bottom:186.300000px;}
.y2d{bottom:193.436845px;}
.yc7{bottom:194.400357px;}
.ye0{bottom:204.553943px;}
.y2e{bottom:205.587355px;}
.y67{bottom:209.520150px;}
.yc6{bottom:211.590168px;}
.y2f{bottom:217.829540px;}
.yc5{bottom:228.870159px;}
.y30{bottom:229.980050px;}
.ydf{bottom:230.020200px;}
.y66{bottom:232.740000px;}
.y121{bottom:236.989200px;}
.y31{bottom:242.222235px;}
.yc4{bottom:246.150564px;}
.y11f{bottom:247.805700px;}
.y14c{bottom:249.964260px;}
.y32{bottom:254.372745px;}
.y65{bottom:256.050000px;}
.y118{bottom:259.000350px;}
.yc3{bottom:263.340375px;}
.y33{bottom:266.523255px;}
.y14b{bottom:267.155148px;}
.ya7{bottom:273.689541px;}
.y125{bottom:275.328038px;}
.y34{bottom:278.765440px;}
.y63{bottom:279.270150px;}
.yc2{bottom:280.620366px;}
.y14a{bottom:284.436198px;}
.y119{bottom:285.971700px;}
.y12f{bottom:286.660200px;}
.y35{bottom:290.915950px;}
.ya6{bottom:290.969532px;}
.y126{bottom:291.645393px;}
.y120{bottom:294.238200px;}
.yc1{bottom:297.900357px;}
.y62{bottom:299.880000px;}
.y39{bottom:300.714000px;}
.y149{bottom:301.717248px;}
.y127{bottom:307.974804px;}
.ya5{bottom:308.249523px;}
.y11a{bottom:312.929850px;}
.yc0{bottom:315.090168px;}
.y148{bottom:318.908136px;}
.y61{bottom:323.100150px;}
.y128{bottom:324.288713px;}
.ya4{bottom:325.439334px;}
.ybf{bottom:332.370159px;}
.y25{bottom:333.361860px;}
.y147{bottom:336.189186px;}
.y95{bottom:338.760150px;}
.y11b{bottom:339.904350px;}
.y129{bottom:340.618124px;}
.y60{bottom:346.410000px;}
.ybe{bottom:349.650150px;}
.y24{bottom:350.646360px;}
.y146{bottom:353.470236px;}
.ya3{bottom:354.330000px;}
.y12a{bottom:356.944350px;}
.y94{bottom:358.650150px;}
.y11c{bottom:366.862350px;}
.y23{bottom:367.840680px;}
.y5f{bottom:369.630150px;}
.ybd{bottom:370.080000px;}
.y145{bottom:370.661124px;}
.y12b{bottom:373.260000px;}
.ya1{bottom:374.760150px;}
.ya2{bottom:374.940150px;}
.y92{bottom:379.080000px;}
.y93{bottom:379.260150px;}
.y9c{bottom:382.770150px;}
.y22{bottom:385.125180px;}
.y8d{bottom:387.090150px;}
.y144{bottom:387.942174px;}
.y12c{bottom:389.587688px;}
.ybc{bottom:393.300150px;}
.y11d{bottom:393.821981px;}
.y5e{bottom:394.380405px;}
.ya0{bottom:397.980150px;}
.y91{bottom:402.300000px;}
.y21{bottom:402.409680px;}
.y143{bottom:405.133062px;}
.y12d{bottom:405.901598px;}
.y5d{bottom:411.570216px;}
.yb6{bottom:412.380000px;}
.ybb{bottom:416.520150px;}
.y20{bottom:419.604000px;}
.y11e{bottom:420.795392px;}
.y9f{bottom:421.200000px;}
.y12e{bottom:422.231009px;}
.y142{bottom:422.414112px;}
.y90{bottom:425.520150px;}
.y5c{bottom:428.850207px;}
.y123{bottom:429.406500px;}
.y130{bottom:429.924000px;}
.y141{bottom:439.695162px;}
.yba{bottom:439.830150px;}
.y122{bottom:442.611150px;}
.y9e{bottom:444.510150px;}
.y5b{bottom:446.130198px;}
.y8f{bottom:448.830150px;}
.y1f{bottom:455.334000px;}
.y140{bottom:456.886050px;}
.yb9{bottom:463.050000px;}
.y5a{bottom:463.320009px;}
.y9d{bottom:467.730000px;}
.y8e{bottom:472.050000px;}
.y13f{bottom:474.167100px;}
.y59{bottom:480.600000px;}
.yb8{bottom:486.270000px;}
.y9b{bottom:490.950000px;}
.y13e{bottom:491.448150px;}
.yde{bottom:491.628150px;}
.y8c{bottom:495.270000px;}
.y1e{bottom:502.404000px;}
.yb7{bottom:509.580000px;}
.y9a{bottom:511.650000px;}
.y8b{bottom:515.970000px;}
.y58{bottom:516.330000px;}
.y1d{bottom:517.888500px;}
.ydd{bottom:518.894546px;}
.y13d{bottom:527.172300px;}
.yb5{bottom:532.800000px;}
.y1c{bottom:533.454000px;}
.y99{bottom:534.870000px;}
.y8a{bottom:539.190000px;}
.ydc{bottom:544.359300px;}
.y115{bottom:544.542000px;}
.y1b{bottom:548.938500px;}
.y117{bottom:550.800300px;}
.y107{bottom:551.283300px;}
.y57{bottom:554.490216px;}
.yb4{bottom:556.020000px;}
.y98{bottom:558.090000px;}
.y105{bottom:562.098300px;}
.y89{bottom:562.410000px;}
.y1a{bottom:564.504000px;}
.y13c{bottom:565.293870px;}
.y56{bottom:571.770207px;}
.yfd{bottom:573.294300px;}
.yb3{bottom:579.330000px;}
.y97{bottom:581.310000px;}
.y13b{bottom:582.574920px;}
.y88{bottom:585.630450px;}
.y55{bottom:589.050198px;}
.y10b{bottom:589.621988px;}
.yfe{bottom:596.614648px;}
.y96{bottom:599.490000px;}
.y13a{bottom:599.855970px;}
.yb2{bottom:599.940000px;}
.y87{bottom:600.930000px;}
.y10c{bottom:605.939343px;}
.y106{bottom:606.144450px;}
.y54{bottom:606.240009px;}
.yf{bottom:609.627008px;}
.y19{bottom:614.004000px;}
.yb1{bottom:615.150450px;}
.y139{bottom:617.046858px;}
.yff{bottom:619.932413px;}
.y85{bottom:620.100000px;}
.y86{bottom:620.280000px;}
.y10d{bottom:622.268754px;}
.y53{bottom:623.520000px;}
.y7f{bottom:628.110000px;}
.yb0{bottom:630.720000px;}
.y18{bottom:631.194000px;}
.ye{bottom:631.377008px;}
.y138{bottom:634.357962px;}
.y10e{bottom:638.582663px;}
.y100{bottom:643.255950px;}
.y83{bottom:643.320000px;}
.y84{bottom:643.500000px;}
.y52{bottom:644.130090px;}
.yaf{bottom:646.650009px;}
.y137{bottom:651.639012px;}
.y10f{bottom:654.912074px;}
.yae{bottom:663.930198px;}
.y17{bottom:665.664000px;}
.y101{bottom:666.564450px;}
.y82{bottom:666.630000px;}
.y51{bottom:666.630090px;}
.y136{bottom:668.829900px;}
.yd{bottom:668.877008px;}
.y110{bottom:671.238600px;}
.y16{bottom:676.185180px;}
.yad{bottom:681.210189px;}
.y135{bottom:686.110950px;}
.y111{bottom:687.552450px;}
.y50{bottom:689.130090px;}
.y81{bottom:689.850000px;}
.y102{bottom:689.883937px;}
.yc{bottom:690.627008px;}
.y15{bottom:693.469680px;}
.yac{bottom:698.400000px;}
.y112{bottom:703.881861px;}
.y4f{bottom:711.630000px;}
.y80{bottom:713.070000px;}
.y103{bottom:713.206008px;}
.yab{bottom:715.499550px;}
.y14{bottom:717.414000px;}
.y113{bottom:720.195770px;}
.y134{bottom:721.833600px;}
.yb{bottom:728.127008px;}
.yaa{bottom:730.980000px;}
.y4e{bottom:734.130000px;}
.y7e{bottom:736.380000px;}
.y114{bottom:736.525181px;}
.y104{bottom:736.525495px;}
.y109{bottom:744.217500px;}
.ya9{bottom:746.729514px;}
.ya{bottom:749.877008px;}
.y13{bottom:756.026400px;}
.y108{bottom:756.905250px;}
.y7d{bottom:756.990000px;}
.y4d{bottom:757.260000px;}
.y133{bottom:760.076100px;}
.ya8{bottom:760.500000px;}
.y9{bottom:769.377008px;}
.yd7{bottom:770.760000px;}
.y4c{bottom:777.870000px;}
.y12{bottom:780.147000px;}
.y7c{bottom:780.210000px;}
.yd5{bottom:787.319578px;}
.ydb{bottom:797.778750px;}
.y4b{bottom:802.530405px;}
.ycd{bottom:802.889357px;}
.y7b{bottom:803.520150px;}
.y8{bottom:808.377008px;}
.ycc{bottom:819.449669px;}
.y4a{bottom:819.810396px;}
.y132{bottom:825.039135px;}
.yda{bottom:825.043643px;}
.y7a{bottom:826.739550px;}
.ycb{bottom:828.450592px;}
.y11{bottom:832.704000px;}
.y49{bottom:837.090387px;}
.yce{bottom:838.169293px;}
.y79{bottom:841.950000px;}
.yca{bottom:850.410980px;}
.yd9{bottom:850.509900px;}
.y48{bottom:854.280198px;}
.yeb{bottom:856.494900px;}
.yfb{bottom:857.448900px;}
.y77{bottom:861.120000px;}
.y78{bottom:861.300000px;}
.ye9{bottom:868.263900px;}
.yf9{bottom:868.264266px;}
.y70{bottom:869.220000px;}
.yd6{bottom:870.840150px;}
.y47{bottom:871.560189px;}
.ycf{bottom:873.449229px;}
.ye2{bottom:879.459900px;}
.y75{bottom:884.430000px;}
.y76{bottom:884.610000px;}
.y46{bottom:888.750000px;}
.y158{bottom:895.589520px;}
.yef{bottom:895.832369px;}
.y14d{bottom:897.441025px;}
.y156{bottom:906.086400px;}
.y162{bottom:906.167400px;}
.ye3{bottom:906.904367px;}
.yfa{bottom:907.362900px;}
.y73{bottom:907.650000px;}
.y74{bottom:907.830000px;}
.yd0{bottom:908.639442px;}
.y159{bottom:911.719141px;}
.yf0{bottom:912.205050px;}
.y14e{bottom:915.413539px;}
.yea{bottom:916.133400px;}
.y45{bottom:924.480000px;}
.y15a{bottom:927.848761px;}
.yf1{bottom:928.567050px;}
.y72{bottom:930.870000px;}
.y14f{bottom:933.394664px;}
.ye4{bottom:934.347112px;}
.y7{bottom:940.484995px;}
.yd1{bottom:943.919378px;}
.y15b{bottom:943.978382px;}
.yf2{bottom:944.943825px;}
.y150{bottom:951.373050px;}
.y71{bottom:954.180000px;}
.y15c{bottom:960.124050px;}
.yf3{bottom:961.314571px;}
.ye5{bottom:961.798050px;}
.y44{bottom:962.730414px;}
.y151{bottom:969.343200px;}
.y6{bottom:972.500997px;}
.y15d{bottom:976.257777px;}
.y6f{bottom:977.400000px;}
.yf4{bottom:977.692050px;}
.yd2{bottom:979.199314px;}
.y43{bottom:980.010405px;}
.y152{bottom:987.324325px;}
.ye6{bottom:989.240907px;}
.y5{bottom:990.201002px;}
.y15e{bottom:992.374200px;}
.yf5{bottom:994.054200px;}
.y42{bottom:997.200216px;}
.y6e{bottom:998.010000px;}
.y153{bottom:1005.305700px;}
.y15f{bottom:1008.503820px;}
.yf6{bottom:1010.424947px;}
.yd3{bottom:1014.389528px;}
.y41{bottom:1014.480207px;}
.ye7{bottom:1016.683200px;}
.y6d{bottom:1021.230000px;}
.y154{bottom:1023.275700px;}
.y160{bottom:1024.633441px;}
.yf7{bottom:1026.795693px;}
.y40{bottom:1031.760198px;}
.yc9{bottom:1036.710000px;}
.y4{bottom:1039.380001px;}
.y161{bottom:1040.763061px;}
.y155{bottom:1041.256825px;}
.yf8{bottom:1043.173350px;}
.ye8{bottom:1044.125084px;}
.y6c{bottom:1044.540000px;}
.y3f{bottom:1048.950009px;}
.y164{bottom:1049.407500px;}
.yd4{bottom:1049.669464px;}
.yed{bottom:1050.382500px;}
.yd8{bottom:1061.100000px;}
.y163{bottom:1062.587550px;}
.yfc{bottom:1063.070850px;}
.yec{bottom:1063.539750px;}
.y157{bottom:1064.022750px;}
.y3e{bottom:1066.230000px;}
.y6b{bottom:1067.760000px;}
.y3{bottom:1075.380001px;}
.h2b{height:10.965000px;}
.h29{height:10.966500px;}
.h2d{height:11.023500px;}
.h13{height:18.347150px;}
.h11{height:18.361362px;}
.h10{height:20.246810px;}
.h25{height:23.412923px;}
.h27{height:23.417409px;}
.h26{height:23.443917px;}
.h12{height:24.248109px;}
.ha{height:26.995781px;}
.hc{height:27.014766px;}
.h28{height:28.095427px;}
.h2a{height:28.126420px;}
.h14{height:29.148000px;}
.h15{height:30.156000px;}
.h20{height:33.271955px;}
.h21{height:33.274041px;}
.h1e{height:34.346751px;}
.h1{height:36.495000px;}
.h1a{height:36.597656px;}
.h24{height:37.513004px;}
.hd{height:37.520508px;}
.h22{height:39.926930px;}
.h4{height:40.608000px;}
.h17{height:40.745391px;}
.hb{height:41.743477px;}
.h23{height:41.764494px;}
.hf{height:41.772832px;}
.h1b{height:42.492832px;}
.h1c{height:42.494272px;}
.h16{height:43.080000px;}
.h3{height:43.794000px;}
.h19{height:46.206914px;}
.h18{height:46.207514px;}
.h5{height:47.220000px;}
.h6{height:48.660000px;}
.h2e{height:48.787116px;}
.he{height:48.796875px;}
.h1d{height:50.027344px;}
.h8{height:73.195312px;}
.h9{height:76.400508px;}
.h1f{height:76.824794px;}
.h2{height:94.440000px;}
.h2c{height:229.126500px;}
.h7{height:860.406000px;}
.h0{height:1188.000000px;}
.w5{width:92.965500px;}
.w8{width:92.967000px;}
.we{width:92.968500px;}
.wd{width:120.184500px;}
.wf{width:120.186000px;}
.w6{width:120.187500px;}
.w9{width:120.243000px;}
.w2{width:175.252500px;}
.wc{width:175.309500px;}
.w10{width:175.311000px;}
.w7{width:205.801500px;}
.wa{width:205.803000px;}
.w3{width:205.858500px;}
.w4{width:205.860000px;}
.wb{width:350.448000px;}
.w1{width:708.963000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:10.545000px;}
.x8{left:12.250950px;}
.x4{left:17.025000px;}
.xc{left:22.065000px;}
.x7{left:31.965000px;}
.x11{left:34.572379px;}
.x61{left:39.884100px;}
.x63{left:51.557250px;}
.x5{left:62.997000px;}
.x5d{left:75.108450px;}
.x5f{left:88.248450px;}
.xf{left:90.555600px;}
.x14{left:92.355000px;}
.x9{left:93.427980px;}
.xe{left:104.960100px;}
.x3{left:107.625000px;}
.x6f{left:121.346850px;}
.x59{left:123.747150px;}
.x13{left:125.025000px;}
.x6e{left:126.583691px;}
.x28{left:129.330000px;}
.x6d{left:130.947994px;}
.x57{left:132.923250px;}
.x87{left:134.241250px;}
.x6c{left:135.323550px;}
.x5c{left:137.322000px;}
.x4a{left:140.670000px;}
.x86{left:142.983750px;}
.x70{left:144.556500px;}
.x30{left:147.780000px;}
.x55{left:149.131050px;}
.x35{left:151.290000px;}
.x7c{left:152.424000px;}
.x58{left:160.635300px;}
.x5e{left:163.104000px;}
.x71{left:168.042000px;}
.x88{left:169.846800px;}
.x7d{left:176.655000px;}
.x2{left:180.000000px;}
.x1{left:186.000000px;}
.x89{left:187.048500px;}
.x4b{left:191.430000px;}
.x2e{left:195.480000px;}
.x2f{left:196.920000px;}
.x3a{left:198.450000px;}
.x33{left:201.960000px;}
.x4c{left:206.010000px;}
.x72{left:209.041500px;}
.x56{left:216.800280px;}
.x44{left:218.070000px;}
.xa{left:219.345000px;}
.x5b{left:223.881450px;}
.x8a{left:227.704500px;}
.x6{left:232.648350px;}
.x7b{left:236.800950px;}
.x52{left:238.230000px;}
.x51{left:242.278987px;}
.x19{left:244.545000px;}
.x17{left:247.244220px;}
.x16{left:250.486612px;}
.x15{left:256.965000px;}
.x18{left:265.157315px;}
.x50{left:266.488731px;}
.x54{left:273.037325px;}
.x5a{left:277.925100px;}
.xd{left:279.465000px;}
.x3d{left:280.980450px;}
.x41{left:282.870000px;}
.x32{left:284.400000px;}
.x49{left:285.570000px;}
.x4d{left:289.800000px;}
.x2c{left:295.290000px;}
.x60{left:298.047000px;}
.x10{left:302.415000px;}
.xb{left:305.655000px;}
.x46{left:307.980450px;}
.x39{left:310.680000px;}
.x2a{left:312.390000px;}
.x62{left:313.549500px;}
.x24{left:314.777400px;}
.x4e{left:316.169191px;}
.x34{left:318.150000px;}
.x84{left:320.997600px;}
.x7e{left:322.336500px;}
.x36{left:324.180000px;}
.x1b{left:326.355000px;}
.x8b{left:329.571000px;}
.x25{left:339.168900px;}
.x29{left:340.740000px;}
.x47{left:344.790000px;}
.x1a{left:357.765000px;}
.x48{left:364.410000px;}
.x3b{left:378.180000px;}
.x3f{left:381.870000px;}
.x27{left:384.570000px;}
.x4f{left:395.639265px;}
.x85{left:398.472750px;}
.x2b{left:418.050000px;}
.x23{left:421.163400px;}
.x26{left:430.252500px;}
.x3c{left:436.590000px;}
.x40{left:440.370000px;}
.x37{left:443.790000px;}
.x31{left:459.090000px;}
.x45{left:469.710000px;}
.x3e{left:470.970000px;}
.x73{left:472.668844px;}
.x38{left:474.660000px;}
.x2d{left:476.910000px;}
.x20{left:478.545000px;}
.x1e{left:481.244818px;}
.x42{left:483.030000px;}
.x1d{left:484.484700px;}
.x1c{left:490.875000px;}
.x67{left:493.192500px;}
.x1f{left:498.524189px;}
.x76{left:503.356500px;}
.x68{left:514.840500px;}
.x64{left:517.260804px;}
.x80{left:525.693000px;}
.x77{left:528.105000px;}
.x8d{left:538.269000px;}
.x81{left:547.858500px;}
.x69{left:554.002500px;}
.x22{left:560.265000px;}
.x78{left:570.253500px;}
.x66{left:576.248550px;}
.x8e{left:578.407500px;}
.x75{left:583.895550px;}
.x82{left:587.479500px;}
.x21{left:591.315000px;}
.x8c{left:595.394550px;}
.x7f{left:600.169200px;}
.x74{left:632.695200px;}
.x65{left:637.469700px;}
.x6a{left:641.514000px;}
.x6b{left:652.825500px;}
.x79{left:660.808500px;}
.x8f{left:666.837000px;}
.x7a{left:675.163500px;}
.x90{left:679.125000px;}
.x83{left:687.279000px;}
.x43{left:713.880000px;}
.x53{left:809.932500px;}
@media print{
.v5{vertical-align:-41.282400pt;}
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-8.000000pt;}
.v4{vertical-align:-0.959467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.v6{vertical-align:37.758260pt;}
.ls98{letter-spacing:-0.655079pt;}
.ls9c{letter-spacing:-0.627825pt;}
.ls4b{letter-spacing:-0.444426pt;}
.ls41{letter-spacing:-0.348523pt;}
.ls7a{letter-spacing:-0.283232pt;}
.ls72{letter-spacing:-0.261856pt;}
.ls76{letter-spacing:-0.251168pt;}
.ls85{letter-spacing:-0.224448pt;}
.ls3b{letter-spacing:-0.204196pt;}
.ls83{letter-spacing:-0.197728pt;}
.ls82{letter-spacing:-0.192384pt;}
.ls4a{letter-spacing:-0.192184pt;}
.ls84{letter-spacing:-0.187040pt;}
.ls86{letter-spacing:-0.165664pt;}
.ls36{letter-spacing:-0.165486pt;}
.ls9b{letter-spacing:-0.163337pt;}
.ls2d{letter-spacing:-0.163200pt;}
.ls81{letter-spacing:-0.160320pt;}
.lsc1{letter-spacing:-0.160288pt;}
.ls34{letter-spacing:-0.150075pt;}
.ls44{letter-spacing:-0.149959pt;}
.ls20{letter-spacing:-0.149632pt;}
.ls77{letter-spacing:-0.138944pt;}
.ls6e{letter-spacing:-0.133600pt;}
.ls28{letter-spacing:-0.128256pt;}
.ls67{letter-spacing:-0.122912pt;}
.ls95{letter-spacing:-0.119098pt;}
.ls78{letter-spacing:-0.117568pt;}
.ls68{letter-spacing:-0.112224pt;}
.ls94{letter-spacing:-0.110591pt;}
.ls2a{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.101536pt;}
.ls3c{letter-spacing:-0.099095pt;}
.ls24{letter-spacing:-0.096192pt;}
.ls29{letter-spacing:-0.090848pt;}
.ls40{letter-spacing:-0.087084pt;}
.ls1f{letter-spacing:-0.085504pt;}
.lsbb{letter-spacing:-0.085487pt;}
.ls6f{letter-spacing:-0.080160pt;}
.ls1d{letter-spacing:-0.080000pt;}
.ls75{letter-spacing:-0.076800pt;}
.ls21{letter-spacing:-0.074816pt;}
.ls65{letter-spacing:-0.069472pt;}
.ls74{letter-spacing:-0.064128pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls96{letter-spacing:-0.059549pt;}
.ls93{letter-spacing:-0.058784pt;}
.ls9a{letter-spacing:-0.056147pt;}
.ls22{letter-spacing:-0.053440pt;}
.ls2b{letter-spacing:-0.048096pt;}
.ls3a{letter-spacing:-0.048046pt;}
.ls25{letter-spacing:-0.042752pt;}
.lsc0{letter-spacing:-0.042743pt;}
.lsab{letter-spacing:-0.039805pt;}
.lsa5{letter-spacing:-0.037401pt;}
.ls48{letter-spacing:-0.036035pt;}
.lsc2{letter-spacing:-0.032058pt;}
.ls27{letter-spacing:-0.032000pt;}
.lsaa{letter-spacing:-0.027563pt;}
.ls6c{letter-spacing:-0.026720pt;}
.lsa6{letter-spacing:-0.026715pt;}
.lsa9{letter-spacing:-0.024528pt;}
.ls79{letter-spacing:-0.024000pt;}
.ls66{letter-spacing:-0.021376pt;}
.lsa7{letter-spacing:-0.021372pt;}
.ls26{letter-spacing:-0.019200pt;}
.lsbd{letter-spacing:-0.019196pt;}
.lsb0{letter-spacing:-0.018375pt;}
.ls6a{letter-spacing:-0.016032pt;}
.lsbf{letter-spacing:-0.016029pt;}
.ls2e{letter-spacing:-0.014400pt;}
.ls87{letter-spacing:-0.010688pt;}
.lsbe{letter-spacing:-0.010686pt;}
.ls1c{letter-spacing:-0.009600pt;}
.lsa8{letter-spacing:-0.006124pt;}
.ls69{letter-spacing:-0.005344pt;}
.lsbc{letter-spacing:-0.005343pt;}
.ls31{letter-spacing:-0.005015pt;}
.ls71{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsaf{letter-spacing:0.003062pt;}
.ls9d{letter-spacing:0.004799pt;}
.ls13{letter-spacing:0.004800pt;}
.lsb5{letter-spacing:0.005343pt;}
.ls4e{letter-spacing:0.005344pt;}
.lsac{letter-spacing:0.006124pt;}
.lsb1{letter-spacing:0.009186pt;}
.ls9e{letter-spacing:0.009598pt;}
.lsc{letter-spacing:0.009600pt;}
.lsb4{letter-spacing:0.010686pt;}
.ls11{letter-spacing:0.010688pt;}
.lsb3{letter-spacing:0.012248pt;}
.ls6b{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.014400pt;}
.lsb2{letter-spacing:0.015310pt;}
.lsba{letter-spacing:0.016029pt;}
.ls37{letter-spacing:0.018017pt;}
.lsae{letter-spacing:0.018372pt;}
.ls9f{letter-spacing:0.019196pt;}
.lsd{letter-spacing:0.019200pt;}
.ls23{letter-spacing:0.020736pt;}
.ls91{letter-spacing:0.021267pt;}
.lsb7{letter-spacing:0.021372pt;}
.lsf{letter-spacing:0.021376pt;}
.ls88{letter-spacing:0.024000pt;}
.ls47{letter-spacing:0.024023pt;}
.lsad{letter-spacing:0.024495pt;}
.lsc3{letter-spacing:0.027557pt;}
.lsb6{letter-spacing:0.032058pt;}
.ls4f{letter-spacing:0.032064pt;}
.ls6{letter-spacing:0.037333pt;}
.ls89{letter-spacing:0.037408pt;}
.lsb{letter-spacing:0.038400pt;}
.ls3{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.042752pt;}
.ls10{letter-spacing:0.048096pt;}
.ls4{letter-spacing:0.052800pt;}
.ls1{letter-spacing:0.053333pt;}
.ls7f{letter-spacing:0.053440pt;}
.ls52{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058667pt;}
.lse{letter-spacing:0.058784pt;}
.lsa1{letter-spacing:0.061238pt;}
.ls7e{letter-spacing:0.062400pt;}
.ls7{letter-spacing:0.064000pt;}
.ls70{letter-spacing:0.064128pt;}
.ls1e{letter-spacing:0.069472pt;}
.lsa{letter-spacing:0.072000pt;}
.ls51{letter-spacing:0.074816pt;}
.ls90{letter-spacing:0.076568pt;}
.ls4d{letter-spacing:0.080160pt;}
.ls92{letter-spacing:0.081668pt;}
.ls19{letter-spacing:0.081796pt;}
.ls16{letter-spacing:0.081859pt;}
.ls53{letter-spacing:0.081984pt;}
.ls99{letter-spacing:0.089323pt;}
.ls4c{letter-spacing:0.090848pt;}
.ls18{letter-spacing:0.090884pt;}
.ls15{letter-spacing:0.090955pt;}
.ls6d{letter-spacing:0.096192pt;}
.ls8f{letter-spacing:0.097836pt;}
.ls2c{letter-spacing:0.101536pt;}
.ls8e{letter-spacing:0.102084pt;}
.ls39{letter-spacing:0.102098pt;}
.ls45{letter-spacing:0.106789pt;}
.ls35{letter-spacing:0.106872pt;}
.ls8a{letter-spacing:0.106880pt;}
.ls49{letter-spacing:0.114109pt;}
.ls2{letter-spacing:0.117333pt;}
.ls73{letter-spacing:0.128256pt;}
.ls3e{letter-spacing:0.130383pt;}
.ls7d{letter-spacing:0.133600pt;}
.ls46{letter-spacing:0.140412pt;}
.ls12{letter-spacing:0.144000pt;}
.ls7c{letter-spacing:0.144288pt;}
.ls7b{letter-spacing:0.149632pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb9{letter-spacing:0.160288pt;}
.ls50{letter-spacing:0.160320pt;}
.ls97{letter-spacing:0.174404pt;}
.ls8b{letter-spacing:0.191407pt;}
.ls38{letter-spacing:0.225216pt;}
.ls43{letter-spacing:0.229483pt;}
.ls33{letter-spacing:0.229661pt;}
.ls1b{letter-spacing:0.258248pt;}
.ls8d{letter-spacing:0.259463pt;}
.ls17{letter-spacing:0.264253pt;}
.ls1a{letter-spacing:0.270259pt;}
.ls8c{letter-spacing:0.323265pt;}
.lsa4{letter-spacing:0.353121pt;}
.lsa2{letter-spacing:0.356800pt;}
.ls3f{letter-spacing:0.360346pt;}
.lsa0{letter-spacing:0.382127pt;}
.lsa3{letter-spacing:0.393583pt;}
.ls42{letter-spacing:6.714710pt;}
.ls3d{letter-spacing:19.401952pt;}
.ls32{letter-spacing:19.755489pt;}
.ls64{letter-spacing:55.239424pt;}
.ls54{letter-spacing:55.567584pt;}
.ls61{letter-spacing:55.882528pt;}
.lsb8{letter-spacing:58.398261pt;}
.ls5a{letter-spacing:70.283712pt;}
.ls5d{letter-spacing:70.601568pt;}
.ls59{letter-spacing:70.604672pt;}
.ls55{letter-spacing:85.327776pt;}
.ls5e{letter-spacing:99.727680pt;}
.ls60{letter-spacing:100.043904pt;}
.ls56{letter-spacing:100.365984pt;}
.ls5b{letter-spacing:114.443808pt;}
.ls63{letter-spacing:115.087968pt;}
.ls57{letter-spacing:129.165792pt;}
.ls5f{letter-spacing:130.122432pt;}
.ls62{letter-spacing:130.123552pt;}
.ls5c{letter-spacing:132.043392pt;}
.ls58{letter-spacing:173.958304pt;}
.ls80{letter-spacing:752.000000pt;}
.ws57{word-spacing:-53.440000pt;}
.wscc{word-spacing:-51.042667pt;}
.wsc7{word-spacing:-42.537600pt;}
.wsbc{word-spacing:-42.534933pt;}
.wsec{word-spacing:-30.619200pt;}
.ws15{word-spacing:-30.028800pt;}
.ws10{word-spacing:-22.738667pt;}
.ws22{word-spacing:-22.721067pt;}
.wsd{word-spacing:-19.780563pt;}
.ws1a{word-spacing:-19.427025pt;}
.ws3{word-spacing:-15.093333pt;}
.ws2{word-spacing:-13.584000pt;}
.ws102{word-spacing:-13.517621pt;}
.ws99{word-spacing:-13.461536pt;}
.ws98{word-spacing:-13.413440pt;}
.ws56{word-spacing:-13.360000pt;}
.ws103{word-spacing:-13.357333pt;}
.ws105{word-spacing:-13.351990pt;}
.ws9{word-spacing:-13.317248pt;}
.ws5{word-spacing:-12.053333pt;}
.wsa{word-spacing:-12.014400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.320000pt;}
.ws8{word-spacing:-8.660736pt;}
.ws7{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.000000pt;}
.wsfc{word-spacing:-0.624630pt;}
.ws100{word-spacing:-0.544395pt;}
.wsff{word-spacing:-0.507612pt;}
.ws101{word-spacing:-0.503933pt;}
.ws30{word-spacing:-0.416000pt;}
.ws79{word-spacing:-0.400800pt;}
.ws1c{word-spacing:-0.390374pt;}
.wsbd{word-spacing:-0.365800pt;}
.ws73{word-spacing:-0.320640pt;}
.wsbb{word-spacing:-0.315296pt;}
.ws72{word-spacing:-0.304608pt;}
.wsbe{word-spacing:-0.301998pt;}
.ws32{word-spacing:-0.298667pt;}
.ws16{word-spacing:-0.255245pt;}
.wse{word-spacing:-0.252399pt;}
.ws20{word-spacing:-0.252204pt;}
.ws90{word-spacing:-0.245824pt;}
.wsd8{word-spacing:-0.240480pt;}
.ws8f{word-spacing:-0.235136pt;}
.wsc8{word-spacing:-0.216942pt;}
.ws3a{word-spacing:-0.187040pt;}
.ws39{word-spacing:-0.165664pt;}
.ws25{word-spacing:-0.165486pt;}
.ws1b{word-spacing:-0.155456pt;}
.ws29{word-spacing:-0.144138pt;}
.ws58{word-spacing:-0.140544pt;}
.wsc6{word-spacing:-0.140374pt;}
.ws2d{word-spacing:-0.133333pt;}
.wsce{word-spacing:-0.132711pt;}
.ws17{word-spacing:-0.132127pt;}
.ws11{word-spacing:-0.129610pt;}
.ws23{word-spacing:-0.129510pt;}
.wsc9{word-spacing:-0.119105pt;}
.ws31{word-spacing:-0.117333pt;}
.ws12{word-spacing:-0.104598pt;}
.ws24{word-spacing:-0.104517pt;}
.ws120{word-spacing:-0.085487pt;}
.ws115{word-spacing:-0.080144pt;}
.ws93{word-spacing:-0.069472pt;}
.ws35{word-spacing:-0.069333pt;}
.ws95{word-spacing:-0.064128pt;}
.wsca{word-spacing:-0.063802pt;}
.ws27{word-spacing:-0.054052pt;}
.ws97{word-spacing:-0.053440pt;}
.ws104{word-spacing:-0.053429pt;}
.wscb{word-spacing:-0.051043pt;}
.ws12d{word-spacing:-0.048086pt;}
.ws14{word-spacing:-0.048046pt;}
.wsbf{word-spacing:-0.042535pt;}
.ws26{word-spacing:-0.030029pt;}
.ws4f{word-spacing:-0.021376pt;}
.wsc{word-spacing:-0.020059pt;}
.ws4{word-spacing:0.000000pt;}
.ws51{word-spacing:0.004800pt;}
.wscd{word-spacing:0.005104pt;}
.wsf7{word-spacing:0.005343pt;}
.ws28{word-spacing:0.006006pt;}
.ws2c{word-spacing:0.009600pt;}
.wsf3{word-spacing:0.010686pt;}
.ws36{word-spacing:0.010688pt;}
.ws50{word-spacing:0.014400pt;}
.ws11f{word-spacing:0.016029pt;}
.wsc2{word-spacing:0.017014pt;}
.wsf2{word-spacing:0.021372pt;}
.wsfd{word-spacing:0.024495pt;}
.ws2f{word-spacing:0.032000pt;}
.wsfb{word-spacing:0.036743pt;}
.ws33{word-spacing:0.037333pt;}
.ws2e{word-spacing:0.042667pt;}
.ws112{word-spacing:0.042743pt;}
.wsf4{word-spacing:0.043191pt;}
.ws1d{word-spacing:0.057055pt;}
.wsf6{word-spacing:0.062388pt;}
.wsf9{word-spacing:0.067187pt;}
.ws19{word-spacing:0.069066pt;}
.ws108{word-spacing:0.070386pt;}
.ws74{word-spacing:0.074816pt;}
.wsc1{word-spacing:0.076563pt;}
.ws107{word-spacing:0.080144pt;}
.ws129{word-spacing:0.090830pt;}
.wsf5{word-spacing:0.091182pt;}
.wsfe{word-spacing:0.091875pt;}
.wsf8{word-spacing:0.095981pt;}
.ws34{word-spacing:0.096000pt;}
.ws8e{word-spacing:0.100800pt;}
.wsfa{word-spacing:0.101063pt;}
.ws126{word-spacing:0.101516pt;}
.wscf{word-spacing:0.112294pt;}
.ws21{word-spacing:0.127238pt;}
.wsf{word-spacing:0.127337pt;}
.ws4e{word-spacing:0.128256pt;}
.wsd1{word-spacing:0.134400pt;}
.wsda{word-spacing:0.138944pt;}
.ws44{word-spacing:0.139200pt;}
.ws13{word-spacing:0.140412pt;}
.ws7b{word-spacing:0.144288pt;}
.ws45{word-spacing:0.148800pt;}
.ws53{word-spacing:0.153600pt;}
.wsea{word-spacing:0.160320pt;}
.ws2a{word-spacing:0.162156pt;}
.ws75{word-spacing:0.163200pt;}
.ws37{word-spacing:0.165664pt;}
.ws76{word-spacing:0.168000pt;}
.ws52{word-spacing:0.172800pt;}
.ws18{word-spacing:0.174167pt;}
.ws3b{word-spacing:0.176352pt;}
.ws8d{word-spacing:0.182400pt;}
.wse4{word-spacing:0.192384pt;}
.ws8c{word-spacing:0.197728pt;}
.ws38{word-spacing:0.229792pt;}
.wse9{word-spacing:0.293920pt;}
.ws1e{word-spacing:0.323449pt;}
.ws46{word-spacing:0.352000pt;}
.ws2b{word-spacing:0.414397pt;}
.wse8{word-spacing:0.491648pt;}
.wsd0{word-spacing:0.576782pt;}
.ws10e{word-spacing:0.635809pt;}
.ws10f{word-spacing:0.662524pt;}
.wse1{word-spacing:0.678688pt;}
.wse3{word-spacing:0.700064pt;}
.ws82{word-spacing:0.790912pt;}
.ws62{word-spacing:0.796256pt;}
.wse2{word-spacing:0.822976pt;}
.ws7f{word-spacing:1.031392pt;}
.ws3f{word-spacing:1.046400pt;}
.ws80{word-spacing:1.047424pt;}
.ws6e{word-spacing:1.122240pt;}
.ws3e{word-spacing:1.137600pt;}
.ws81{word-spacing:1.138272pt;}
.ws6d{word-spacing:1.175680pt;}
.ws3c{word-spacing:1.387200pt;}
.ws3d{word-spacing:1.425600pt;}
.ws113{word-spacing:1.923456pt;}
.ws114{word-spacing:1.960857pt;}
.ws84{word-spacing:2.308608pt;}
.ws85{word-spacing:2.324640pt;}
.ws5c{word-spacing:2.340672pt;}
.ws5b{word-spacing:2.388768pt;}
.ws83{word-spacing:2.399456pt;}
.wse5{word-spacing:2.404800pt;}
.ws87{word-spacing:2.410144pt;}
.ws55{word-spacing:2.415488pt;}
.ws86{word-spacing:2.420832pt;}
.wse6{word-spacing:2.426176pt;}
.ws10d{word-spacing:2.789011pt;}
.ws10c{word-spacing:2.805040pt;}
.ws11a{word-spacing:2.858469pt;}
.ws10b{word-spacing:2.901213pt;}
.ws119{word-spacing:2.927927pt;}
.ws118{word-spacing:3.050815pt;}
.ws5e{word-spacing:3.072800pt;}
.ws5d{word-spacing:3.083488pt;}
.ws89{word-spacing:3.206400pt;}
.ws42{word-spacing:3.307200pt;}
.ws43{word-spacing:3.350400pt;}
.wsb5{word-spacing:3.863712pt;}
.wsb9{word-spacing:3.933184pt;}
.wsb8{word-spacing:3.943872pt;}
.wsb7{word-spacing:3.975936pt;}
.wsba{word-spacing:3.986624pt;}
.wsb6{word-spacing:4.088160pt;}
.wsd7{word-spacing:4.141600pt;}
.ws124{word-spacing:4.162145pt;}
.wsd5{word-spacing:4.168320pt;}
.wsd6{word-spacing:4.200384pt;}
.ws125{word-spacing:4.226260pt;}
.ws69{word-spacing:4.462240pt;}
.ws130{word-spacing:4.541493pt;}
.ws6b{word-spacing:4.547744pt;}
.ws131{word-spacing:4.552179pt;}
.ws6c{word-spacing:4.553088pt;}
.ws68{word-spacing:4.558432pt;}
.ws67{word-spacing:4.585152pt;}
.ws4c{word-spacing:4.649280pt;}
.ws4d{word-spacing:4.665312pt;}
.ws4b{word-spacing:4.686688pt;}
.ws7d{word-spacing:4.857696pt;}
.ws7e{word-spacing:4.868384pt;}
.ws7c{word-spacing:4.873728pt;}
.wse7{word-spacing:4.927168pt;}
.ws63{word-spacing:5.108864pt;}
.ws88{word-spacing:5.130240pt;}
.ws61{word-spacing:5.189024pt;}
.ws5f{word-spacing:5.199712pt;}
.ws60{word-spacing:5.205056pt;}
.ws64{word-spacing:5.215744pt;}
.ws65{word-spacing:5.589824pt;}
.ws1f{word-spacing:5.618994pt;}
.ws66{word-spacing:5.621888pt;}
.ws70{word-spacing:5.808928pt;}
.ws6f{word-spacing:5.830304pt;}
.ws71{word-spacing:5.862368pt;}
.ws8b{word-spacing:5.969248pt;}
.ws8a{word-spacing:5.979936pt;}
.wsd4{word-spacing:6.086816pt;}
.ws54{word-spacing:6.118880pt;}
.ws12c{word-spacing:7.699167pt;}
.ws12a{word-spacing:7.768625pt;}
.ws12b{word-spacing:7.811369pt;}
.ws127{word-spacing:8.164002pt;}
.ws128{word-spacing:8.249489pt;}
.ws10a{word-spacing:8.586094pt;}
.ws111{word-spacing:8.612809pt;}
.ws109{word-spacing:8.650209pt;}
.ws110{word-spacing:8.703638pt;}
.ws11c{word-spacing:8.949413pt;}
.ws11e{word-spacing:9.018871pt;}
.ws6a{word-spacing:9.277184pt;}
.ws11b{word-spacing:9.280675pt;}
.ws47{word-spacing:9.298560pt;}
.ws11d{word-spacing:9.307390pt;}
.ws49{word-spacing:9.309248pt;}
.ws48{word-spacing:9.335968pt;}
.ws4a{word-spacing:9.346656pt;}
.wsd3{word-spacing:10.896416pt;}
.wsd2{word-spacing:10.971232pt;}
.ws122{word-spacing:11.140016pt;}
.ws123{word-spacing:11.246875pt;}
.ws121{word-spacing:11.284275pt;}
.wsdf{word-spacing:11.291872pt;}
.wse0{word-spacing:11.356000pt;}
.ws12f{word-spacing:12.251346pt;}
.ws12e{word-spacing:12.459721pt;}
.ws40{word-spacing:12.921600pt;}
.ws41{word-spacing:12.945600pt;}
.ws117{word-spacing:18.951385pt;}
.ws116{word-spacing:19.031529pt;}
.wsc0{word-spacing:42.177640pt;}
.wsf0{word-spacing:79.141970pt;}
.ws106{word-spacing:80.570713pt;}
.ws59{word-spacing:82.669152pt;}
.wsed{word-spacing:82.815006pt;}
.wsf1{word-spacing:83.391409pt;}
.wsef{word-spacing:84.243749pt;}
.wsee{word-spacing:85.096090pt;}
.wseb{word-spacing:86.524833pt;}
.ws9c{word-spacing:92.397760pt;}
.wsa1{word-spacing:93.397088pt;}
.wsc5{word-spacing:96.388412pt;}
.ws5a{word-spacing:98.336128pt;}
.wsa6{word-spacing:99.441152pt;}
.ws9d{word-spacing:105.869984pt;}
.ws9f{word-spacing:105.875328pt;}
.wsac{word-spacing:112.881312pt;}
.wsdb{word-spacing:121.233984pt;}
.wsaf{word-spacing:125.680192pt;}
.wsb4{word-spacing:126.000832pt;}
.wsae{word-spacing:126.038240pt;}
.wsa8{word-spacing:126.321472pt;}
.wsa7{word-spacing:126.348192pt;}
.wsc3{word-spacing:127.511223pt;}
.wsdc{word-spacing:130.190528pt;}
.ws9e{word-spacing:132.402944pt;}
.wsd9{word-spacing:132.942688pt;}
.ws94{word-spacing:133.359520pt;}
.wsdd{word-spacing:134.385568pt;}
.ws92{word-spacing:136.143744pt;}
.wsaa{word-spacing:139.440992pt;}
.wsb3{word-spacing:139.761632pt;}
.wsa3{word-spacing:141.038848pt;}
.ws9b{word-spacing:144.143712pt;}
.wsa0{word-spacing:145.837760pt;}
.ws96{word-spacing:146.479040pt;}
.wsde{word-spacing:147.440960pt;}
.wsab{word-spacing:149.038816pt;}
.wsad{word-spacing:149.049504pt;}
.wsa9{word-spacing:149.359456pt;}
.wsb1{word-spacing:149.423584pt;}
.wsa5{word-spacing:152.143680pt;}
.wsb2{word-spacing:152.239872pt;}
.wsb0{word-spacing:152.560512pt;}
.wsa2{word-spacing:158.962624pt;}
.ws77{word-spacing:302.422304pt;}
.ws78{word-spacing:387.792704pt;}
.ws7a{word-spacing:387.824768pt;}
.ws1{word-spacing:578.672002pt;}
.wsc4{word-spacing:601.082410pt;}
.ws9a{word-spacing:953.930720pt;}
.wsa4{word-spacing:960.364896pt;}
.ws91{word-spacing:962.604032pt;}
._d{margin-left:-388.433984pt;}
._c{margin-left:-302.029856pt;}
._4f{margin-left:-149.864370pt;}
._48{margin-left:-148.935616pt;}
._61{margin-left:-45.512295pt;}
._34{margin-left:-44.125408pt;}
._33{margin-left:-39.457991pt;}
._45{margin-left:-36.766720pt;}
._42{margin-left:-34.559648pt;}
._5f{margin-left:-31.230336pt;}
._5e{margin-left:-30.273760pt;}
._2f{margin-left:-26.233696pt;}
._58{margin-left:-25.310848pt;}
._4d{margin-left:-22.973856pt;}
._4b{margin-left:-21.442368pt;}
._5{margin-left:-19.760504pt;}
._7{margin-left:-18.684847pt;}
._5d{margin-left:-17.606374pt;}
._36{margin-left:-14.875744pt;}
._1d{margin-left:-13.844608pt;}
._6{margin-left:-12.704793pt;}
._20{margin-left:-10.124544pt;}
._53{margin-left:-8.932224pt;}
._a{margin-left:-7.419278pt;}
._4{margin-left:-6.353650pt;}
._37{margin-left:-5.213639pt;}
._51{margin-left:-3.868288pt;}
._b{margin-left:-2.739349pt;}
._1{margin-left:-0.993984pt;}
._0{width:1.168000pt;}
._10{width:4.219940pt;}
._1e{width:5.252224pt;}
._9{width:6.356158pt;}
._59{width:8.947662pt;}
._4e{width:12.154329pt;}
._8{width:13.419391pt;}
._1b{width:14.890201pt;}
._4a{width:16.212480pt;}
._5b{width:17.697599pt;}
._f{width:21.781537pt;}
._41{width:23.404033pt;}
._50{width:25.335872pt;}
._39{width:26.353600pt;}
._18{width:27.875712pt;}
._49{width:28.798816pt;}
._2a{width:31.333601pt;}
._31{width:34.757376pt;}
._11{width:38.216064pt;}
._22{width:39.799104pt;}
._47{width:41.584993pt;}
._2d{width:45.561536pt;}
._30{width:47.492735pt;}
._2b{width:51.686528pt;}
._3a{width:55.032512pt;}
._38{width:63.176064pt;}
._32{width:64.148576pt;}
._16{width:67.656064pt;}
._21{width:68.616064pt;}
._46{width:76.616064pt;}
._23{width:80.511680pt;}
._1a{width:82.696064pt;}
._3f{width:89.736448pt;}
._6b{width:93.309351pt;}
._1f{width:95.817920pt;}
._66{width:97.359987pt;}
._6a{width:98.966553pt;}
._24{width:100.482432pt;}
._35{width:102.220032pt;}
._44{width:103.176608pt;}
._e{width:104.138528pt;}
._29{width:105.521600pt;}
._69{width:106.772521pt;}
._63{width:107.689141pt;}
._2c{width:108.616800pt;}
._6c{width:114.783910pt;}
._2e{width:117.260991pt;}
._67{width:118.490671pt;}
._68{width:119.955025pt;}
._65{width:121.520809pt;}
._19{width:123.591232pt;}
._26{width:127.181856pt;}
._28{width:130.372224pt;}
._13{width:132.301408pt;}
._3c{width:134.861184pt;}
._15{width:136.774336pt;}
._3e{width:139.013472pt;}
._27{width:140.611328pt;}
._14{width:146.051520pt;}
._3d{width:148.611296pt;}
._1c{width:152.961312pt;}
._43{width:155.542208pt;}
._25{width:156.477664pt;}
._12{width:161.682176pt;}
._3b{width:164.341632pt;}
._60{width:167.689376pt;}
._4c{width:168.613056pt;}
._17{width:175.438784pt;}
._52{width:177.348288pt;}
._40{width:178.309088pt;}
._5c{width:181.359328pt;}
._5a{width:194.799488pt;}
._62{width:219.964384pt;}
._57{width:243.200096pt;}
._64{width:332.709802pt;}
._56{width:366.715968pt;}
._55{width:368.524576pt;}
._54{width:400.249568pt;}
._3{width:730.502400pt;}
._2{width:767.092800pt;}
._6d{width:1013.367451pt;}
.fsd{font-size:22.721067pt;}
.fsb{font-size:22.738667pt;}
.fsa{font-size:25.073600pt;}
.fsc{font-size:30.028800pt;}
.fs15{font-size:30.619200pt;}
.fs17{font-size:30.625067pt;}
.fs16{font-size:30.659733pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs18{font-size:36.742933pt;}
.fs19{font-size:36.783467pt;}
.fse{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs10{font-size:42.534933pt;}
.fs11{font-size:42.537600pt;}
.fs14{font-size:47.990400pt;}
.fs2{font-size:48.000000pt;}
.fs12{font-size:51.042667pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.429333pt;}
.fs7{font-size:53.440000pt;}
.fsf{font-size:58.560000pt;}
.fs1a{font-size:63.987200pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:2.236000pt;}
.y10a{bottom:2.236533pt;}
.yee{bottom:2.237333pt;}
.y165{bottom:2.245067pt;}
.y124{bottom:2.266667pt;}
.y2a{bottom:4.097493pt;}
.y29{bottom:19.381333pt;}
.y3d{bottom:32.000000pt;}
.y116{bottom:50.144400pt;}
.y28{bottom:51.141333pt;}
.y3c{bottom:53.333333pt;}
.y2{bottom:55.483968pt;}
.y3b{bottom:64.533333pt;}
.y3a{bottom:75.733333pt;}
.y1{bottom:78.150635pt;}
.y27{bottom:84.985467pt;}
.y26{bottom:106.741467pt;}
.y10{bottom:117.498667pt;}
.y6a{bottom:127.840000pt;}
.y38{bottom:133.541333pt;}
.y36{bottom:142.194036pt;}
.y69{bottom:144.880000pt;}
.y2b{bottom:150.261467pt;}
.y64{bottom:152.000133pt;}
.yc8{bottom:157.440325pt;}
.ye1{bottom:157.591600pt;}
.y2c{bottom:161.143409pt;}
.y37{bottom:164.181467pt;}
.y68{bottom:165.600000pt;}
.y2d{bottom:171.943862pt;}
.yc7{bottom:172.800317pt;}
.ye0{bottom:181.825727pt;}
.y2e{bottom:182.744315pt;}
.y67{bottom:186.240133pt;}
.yc6{bottom:188.080149pt;}
.y2f{bottom:193.626258pt;}
.yc5{bottom:203.440141pt;}
.y30{bottom:204.426711pt;}
.ydf{bottom:204.462400pt;}
.y66{bottom:206.880000pt;}
.y121{bottom:210.657067pt;}
.y31{bottom:215.308653pt;}
.yc4{bottom:218.800501pt;}
.y11f{bottom:220.271733pt;}
.y14c{bottom:222.190453pt;}
.y32{bottom:226.109107pt;}
.y65{bottom:227.600000pt;}
.y118{bottom:230.222533pt;}
.yc3{bottom:234.080333pt;}
.y33{bottom:236.909560pt;}
.y14b{bottom:237.471243pt;}
.ya7{bottom:243.279592pt;}
.y125{bottom:244.736034pt;}
.y34{bottom:247.791502pt;}
.y63{bottom:248.240133pt;}
.yc2{bottom:249.440325pt;}
.y14a{bottom:252.832176pt;}
.y119{bottom:254.197067pt;}
.y12f{bottom:254.809067pt;}
.y35{bottom:258.591955pt;}
.ya6{bottom:258.639584pt;}
.y126{bottom:259.240349pt;}
.y120{bottom:261.545067pt;}
.yc1{bottom:264.800317pt;}
.y62{bottom:266.560000pt;}
.y39{bottom:267.301333pt;}
.y149{bottom:268.193109pt;}
.y127{bottom:273.755381pt;}
.ya5{bottom:273.999576pt;}
.y11a{bottom:278.159867pt;}
.yc0{bottom:280.080149pt;}
.y148{bottom:283.473899pt;}
.y61{bottom:287.200133pt;}
.y128{bottom:288.256634pt;}
.ya4{bottom:289.279408pt;}
.ybf{bottom:295.440141pt;}
.y25{bottom:296.321653pt;}
.y147{bottom:298.834832pt;}
.y95{bottom:301.120133pt;}
.y11b{bottom:302.137200pt;}
.y129{bottom:302.771666pt;}
.y60{bottom:307.920000pt;}
.ybe{bottom:310.800133pt;}
.y24{bottom:311.685653pt;}
.y146{bottom:314.195765pt;}
.ya3{bottom:314.960000pt;}
.y12a{bottom:317.283867pt;}
.y94{bottom:318.800133pt;}
.y11c{bottom:326.099867pt;}
.y23{bottom:326.969493pt;}
.y5f{bottom:328.560133pt;}
.ybd{bottom:328.960000pt;}
.y145{bottom:329.476555pt;}
.y12b{bottom:331.786667pt;}
.ya1{bottom:333.120133pt;}
.ya2{bottom:333.280133pt;}
.y92{bottom:336.960000pt;}
.y93{bottom:337.120133pt;}
.y9c{bottom:340.240133pt;}
.y22{bottom:342.333493pt;}
.y8d{bottom:344.080133pt;}
.y144{bottom:344.837488pt;}
.y12c{bottom:346.300167pt;}
.ybc{bottom:349.600133pt;}
.y11d{bottom:350.063984pt;}
.y5e{bottom:350.560360pt;}
.ya0{bottom:353.760133pt;}
.y91{bottom:357.600000pt;}
.y21{bottom:357.697493pt;}
.y143{bottom:360.118277pt;}
.y12d{bottom:360.801421pt;}
.y5d{bottom:365.840192pt;}
.yb6{bottom:366.560000pt;}
.ybb{bottom:370.240133pt;}
.y20{bottom:372.981333pt;}
.y11e{bottom:374.040348pt;}
.y9f{bottom:374.400000pt;}
.y12e{bottom:375.316452pt;}
.y142{bottom:375.479211pt;}
.y90{bottom:378.240133pt;}
.y5c{bottom:381.200184pt;}
.y123{bottom:381.694667pt;}
.y130{bottom:382.154667pt;}
.y141{bottom:390.840144pt;}
.yba{bottom:390.960133pt;}
.y122{bottom:393.432133pt;}
.y9e{bottom:395.120133pt;}
.y5b{bottom:396.560176pt;}
.y8f{bottom:398.960133pt;}
.y1f{bottom:404.741333pt;}
.y140{bottom:406.120933pt;}
.yb9{bottom:411.600000pt;}
.y5a{bottom:411.840008pt;}
.y9d{bottom:415.760000pt;}
.y8e{bottom:419.600000pt;}
.y13f{bottom:421.481867pt;}
.y59{bottom:427.200000pt;}
.yb8{bottom:432.240000pt;}
.y9b{bottom:436.400000pt;}
.y13e{bottom:436.842800pt;}
.yde{bottom:437.002800pt;}
.y8c{bottom:440.240000pt;}
.y1e{bottom:446.581333pt;}
.yb7{bottom:452.960000pt;}
.y9a{bottom:454.800000pt;}
.y8b{bottom:458.640000pt;}
.y58{bottom:458.960000pt;}
.y1d{bottom:460.345333pt;}
.ydd{bottom:461.239596pt;}
.y13d{bottom:468.597600pt;}
.yb5{bottom:473.600000pt;}
.y1c{bottom:474.181333pt;}
.y99{bottom:475.440000pt;}
.y8a{bottom:479.280000pt;}
.ydc{bottom:483.874933pt;}
.y115{bottom:484.037333pt;}
.y1b{bottom:487.945333pt;}
.y117{bottom:489.600267pt;}
.y107{bottom:490.029600pt;}
.y57{bottom:492.880192pt;}
.yb4{bottom:494.240000pt;}
.y98{bottom:496.080000pt;}
.y105{bottom:499.642933pt;}
.y89{bottom:499.920000pt;}
.y1a{bottom:501.781333pt;}
.y13c{bottom:502.483440pt;}
.y56{bottom:508.240184pt;}
.yfd{bottom:509.594933pt;}
.yb3{bottom:514.960000pt;}
.y97{bottom:516.720000pt;}
.y13b{bottom:517.844373pt;}
.y88{bottom:520.560400pt;}
.y55{bottom:523.600176pt;}
.y10b{bottom:524.108434pt;}
.yfe{bottom:530.324132pt;}
.y96{bottom:532.880000pt;}
.y13a{bottom:533.205307pt;}
.yb2{bottom:533.280000pt;}
.y87{bottom:534.160000pt;}
.y10c{bottom:538.612749pt;}
.y106{bottom:538.795067pt;}
.y54{bottom:538.880008pt;}
.yf{bottom:541.890674pt;}
.y19{bottom:545.781333pt;}
.yb1{bottom:546.800400pt;}
.y139{bottom:548.486096pt;}
.yff{bottom:551.051034pt;}
.y85{bottom:551.200000pt;}
.y86{bottom:551.360000pt;}
.y10d{bottom:553.127781pt;}
.y53{bottom:554.240000pt;}
.y7f{bottom:558.320000pt;}
.yb0{bottom:560.640000pt;}
.y18{bottom:561.061333pt;}
.ye{bottom:561.224007pt;}
.y138{bottom:563.873744pt;}
.y10e{bottom:567.629034pt;}
.y100{bottom:571.783067pt;}
.y83{bottom:571.840000pt;}
.y84{bottom:572.000000pt;}
.y52{bottom:572.560080pt;}
.yaf{bottom:574.800008pt;}
.y137{bottom:579.234677pt;}
.y10f{bottom:582.144066pt;}
.yae{bottom:590.160176pt;}
.y17{bottom:591.701333pt;}
.y101{bottom:592.501733pt;}
.y82{bottom:592.560000pt;}
.y51{bottom:592.560080pt;}
.y136{bottom:594.515467pt;}
.yd{bottom:594.557340pt;}
.y110{bottom:596.656533pt;}
.y16{bottom:601.053493pt;}
.yad{bottom:605.520168pt;}
.y135{bottom:609.876400pt;}
.y111{bottom:611.157733pt;}
.y50{bottom:612.560080pt;}
.y81{bottom:613.200000pt;}
.y102{bottom:613.230166pt;}
.yc{bottom:613.890674pt;}
.y15{bottom:616.417493pt;}
.yac{bottom:620.800000pt;}
.y112{bottom:625.672765pt;}
.y4f{bottom:632.560000pt;}
.y80{bottom:633.840000pt;}
.y103{bottom:633.960896pt;}
.yab{bottom:635.999600pt;}
.y14{bottom:637.701333pt;}
.y113{bottom:640.174018pt;}
.y134{bottom:641.629867pt;}
.yb{bottom:647.224007pt;}
.yaa{bottom:649.760000pt;}
.y4e{bottom:652.560000pt;}
.y7e{bottom:654.560000pt;}
.y114{bottom:654.689050pt;}
.y104{bottom:654.689329pt;}
.y109{bottom:661.526667pt;}
.ya9{bottom:663.759568pt;}
.ya{bottom:666.557340pt;}
.y13{bottom:672.023467pt;}
.y108{bottom:672.804667pt;}
.y7d{bottom:672.880000pt;}
.y4d{bottom:673.120000pt;}
.y133{bottom:675.623200pt;}
.ya8{bottom:676.000000pt;}
.y9{bottom:683.890674pt;}
.yd7{bottom:685.120000pt;}
.y4c{bottom:691.440000pt;}
.y12{bottom:693.464000pt;}
.y7c{bottom:693.520000pt;}
.yd5{bottom:699.839625pt;}
.ydb{bottom:709.136667pt;}
.y4b{bottom:713.360360pt;}
.ycd{bottom:713.679429pt;}
.y7b{bottom:714.240133pt;}
.y8{bottom:718.557340pt;}
.ycc{bottom:728.399706pt;}
.y4a{bottom:728.720352pt;}
.y132{bottom:733.368120pt;}
.yda{bottom:733.372127pt;}
.y7a{bottom:734.879600pt;}
.ycb{bottom:736.400527pt;}
.y11{bottom:740.181333pt;}
.y49{bottom:744.080344pt;}
.yce{bottom:745.039371pt;}
.y79{bottom:748.400000pt;}
.yca{bottom:755.920871pt;}
.yd9{bottom:756.008800pt;}
.y48{bottom:759.360176pt;}
.yeb{bottom:761.328800pt;}
.yfb{bottom:762.176800pt;}
.y77{bottom:765.440000pt;}
.y78{bottom:765.600000pt;}
.ye9{bottom:771.790133pt;}
.yf9{bottom:771.790459pt;}
.y70{bottom:772.640000pt;}
.yd6{bottom:774.080133pt;}
.y47{bottom:774.720168pt;}
.ycf{bottom:776.399314pt;}
.ye2{bottom:781.742133pt;}
.y75{bottom:786.160000pt;}
.y76{bottom:786.320000pt;}
.y46{bottom:790.000000pt;}
.y158{bottom:796.079574pt;}
.yef{bottom:796.295439pt;}
.y14d{bottom:797.725356pt;}
.y156{bottom:805.410133pt;}
.y162{bottom:805.482133pt;}
.ye3{bottom:806.137215pt;}
.yfa{bottom:806.544800pt;}
.y73{bottom:806.800000pt;}
.y74{bottom:806.960000pt;}
.yd0{bottom:807.679504pt;}
.y159{bottom:810.417014pt;}
.yf0{bottom:810.848933pt;}
.y14e{bottom:813.700923pt;}
.yea{bottom:814.340800pt;}
.y45{bottom:821.760000pt;}
.y15a{bottom:824.754455pt;}
.yf1{bottom:825.392933pt;}
.y72{bottom:827.440000pt;}
.y14f{bottom:829.684146pt;}
.ye4{bottom:830.530767pt;}
.y7{bottom:835.986662pt;}
.yd1{bottom:839.039447pt;}
.y15b{bottom:839.091895pt;}
.yf2{bottom:839.950066pt;}
.y150{bottom:845.664933pt;}
.y71{bottom:848.160000pt;}
.y15c{bottom:853.443600pt;}
.yf3{bottom:854.501841pt;}
.ye5{bottom:854.931600pt;}
.y44{bottom:855.760368pt;}
.y151{bottom:861.638400pt;}
.y6{bottom:864.445331pt;}
.y15d{bottom:867.784690pt;}
.y6f{bottom:868.800000pt;}
.yf4{bottom:869.059600pt;}
.yd2{bottom:870.399390pt;}
.y43{bottom:871.120360pt;}
.y152{bottom:877.621622pt;}
.ye6{bottom:879.325250pt;}
.y5{bottom:880.178668pt;}
.y15e{bottom:882.110400pt;}
.yf5{bottom:883.603733pt;}
.y42{bottom:886.400192pt;}
.y6e{bottom:887.120000pt;}
.y153{bottom:893.605067pt;}
.y15f{bottom:896.447840pt;}
.yf6{bottom:898.155508pt;}
.yd3{bottom:901.679580pt;}
.y41{bottom:901.760184pt;}
.ye7{bottom:903.718400pt;}
.y6d{bottom:907.760000pt;}
.y154{bottom:909.578400pt;}
.y160{bottom:910.785281pt;}
.yf7{bottom:912.707283pt;}
.y40{bottom:917.120176pt;}
.yc9{bottom:921.520000pt;}
.y4{bottom:923.893334pt;}
.y161{bottom:925.122721pt;}
.y155{bottom:925.561622pt;}
.yf8{bottom:927.265200pt;}
.ye8{bottom:928.111186pt;}
.y6c{bottom:928.480000pt;}
.y3f{bottom:932.400008pt;}
.y164{bottom:932.806667pt;}
.yd4{bottom:933.039523pt;}
.yed{bottom:933.673333pt;}
.yd8{bottom:943.200000pt;}
.y163{bottom:944.522267pt;}
.yfc{bottom:944.951867pt;}
.yec{bottom:945.368667pt;}
.y157{bottom:945.798000pt;}
.y3e{bottom:947.760000pt;}
.y6b{bottom:949.120000pt;}
.y3{bottom:955.893334pt;}
.h2b{height:9.746667pt;}
.h29{height:9.748000pt;}
.h2d{height:9.798667pt;}
.h13{height:16.308578pt;}
.h11{height:16.321211pt;}
.h10{height:17.997164pt;}
.h25{height:20.811488pt;}
.h27{height:20.815475pt;}
.h26{height:20.839037pt;}
.h12{height:21.553875pt;}
.ha{height:23.996250pt;}
.hc{height:24.013125pt;}
.h28{height:24.973713pt;}
.h2a{height:25.001262pt;}
.h14{height:25.909333pt;}
.h15{height:26.805333pt;}
.h20{height:29.575071pt;}
.h21{height:29.576925pt;}
.h1e{height:30.530445pt;}
.h1{height:32.440000pt;}
.h1a{height:32.531250pt;}
.h24{height:33.344892pt;}
.hd{height:33.351562pt;}
.h22{height:35.490604pt;}
.h4{height:36.096000pt;}
.h17{height:36.218125pt;}
.hb{height:37.105312pt;}
.h23{height:37.123995pt;}
.hf{height:37.131406pt;}
.h1b{height:37.771406pt;}
.h1c{height:37.772686pt;}
.h16{height:38.293333pt;}
.h3{height:38.928000pt;}
.h19{height:41.072813pt;}
.h18{height:41.073346pt;}
.h5{height:41.973333pt;}
.h6{height:43.253333pt;}
.h2e{height:43.366325pt;}
.he{height:43.375000pt;}
.h1d{height:44.468750pt;}
.h8{height:65.062500pt;}
.h9{height:67.911563pt;}
.h1f{height:68.288706pt;}
.h2{height:83.946667pt;}
.h2c{height:203.668000pt;}
.h7{height:764.805333pt;}
.h0{height:1056.000000pt;}
.w5{width:82.636000pt;}
.w8{width:82.637333pt;}
.we{width:82.638667pt;}
.wd{width:106.830667pt;}
.wf{width:106.832000pt;}
.w6{width:106.833333pt;}
.w9{width:106.882667pt;}
.w2{width:155.780000pt;}
.wc{width:155.830667pt;}
.w10{width:155.832000pt;}
.w7{width:182.934667pt;}
.wa{width:182.936000pt;}
.w3{width:182.985333pt;}
.w4{width:182.986667pt;}
.wb{width:311.509333pt;}
.w1{width:630.189333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.373333pt;}
.x8{left:10.889733pt;}
.x4{left:15.133333pt;}
.xc{left:19.613333pt;}
.x7{left:28.413333pt;}
.x11{left:30.731003pt;}
.x61{left:35.452533pt;}
.x63{left:45.828667pt;}
.x5{left:55.997333pt;}
.x5d{left:66.763067pt;}
.x5f{left:78.443067pt;}
.xf{left:80.493867pt;}
.x14{left:82.093333pt;}
.x9{left:83.047093pt;}
.xe{left:93.297867pt;}
.x3{left:95.666667pt;}
.x6f{left:107.863867pt;}
.x59{left:109.997467pt;}
.x13{left:111.133333pt;}
.x6e{left:112.518836pt;}
.x28{left:114.960000pt;}
.x6d{left:116.398217pt;}
.x57{left:118.154000pt;}
.x87{left:119.325556pt;}
.x6c{left:120.287600pt;}
.x5c{left:122.064000pt;}
.x4a{left:125.040000pt;}
.x86{left:127.096667pt;}
.x70{left:128.494667pt;}
.x30{left:131.360000pt;}
.x55{left:132.560933pt;}
.x35{left:134.480000pt;}
.x7c{left:135.488000pt;}
.x58{left:142.786933pt;}
.x5e{left:144.981333pt;}
.x71{left:149.370667pt;}
.x88{left:150.974933pt;}
.x7d{left:157.026667pt;}
.x2{left:160.000000pt;}
.x1{left:165.333333pt;}
.x89{left:166.265333pt;}
.x4b{left:170.160000pt;}
.x2e{left:173.760000pt;}
.x2f{left:175.040000pt;}
.x3a{left:176.400000pt;}
.x33{left:179.520000pt;}
.x4c{left:183.120000pt;}
.x72{left:185.814667pt;}
.x56{left:192.711360pt;}
.x44{left:193.840000pt;}
.xa{left:194.973333pt;}
.x5b{left:199.005733pt;}
.x8a{left:202.404000pt;}
.x6{left:206.798533pt;}
.x7b{left:210.489733pt;}
.x52{left:211.760000pt;}
.x51{left:215.359100pt;}
.x19{left:217.373333pt;}
.x17{left:219.772640pt;}
.x16{left:222.654766pt;}
.x15{left:228.413333pt;}
.x18{left:235.695391pt;}
.x50{left:236.878872pt;}
.x54{left:242.699845pt;}
.x5a{left:247.044533pt;}
.xd{left:248.413333pt;}
.x3d{left:249.760400pt;}
.x41{left:251.440000pt;}
.x32{left:252.800000pt;}
.x49{left:253.840000pt;}
.x4d{left:257.600000pt;}
.x2c{left:262.480000pt;}
.x60{left:264.930667pt;}
.x10{left:268.813333pt;}
.xb{left:271.693333pt;}
.x46{left:273.760400pt;}
.x39{left:276.160000pt;}
.x2a{left:277.680000pt;}
.x62{left:278.710667pt;}
.x24{left:279.802133pt;}
.x4e{left:281.039281pt;}
.x34{left:282.800000pt;}
.x84{left:285.331200pt;}
.x7e{left:286.521333pt;}
.x36{left:288.160000pt;}
.x1b{left:290.093333pt;}
.x8b{left:292.952000pt;}
.x25{left:301.483467pt;}
.x29{left:302.880000pt;}
.x47{left:306.480000pt;}
.x1a{left:318.013333pt;}
.x48{left:323.920000pt;}
.x3b{left:336.160000pt;}
.x3f{left:339.440000pt;}
.x27{left:341.840000pt;}
.x4f{left:351.679346pt;}
.x85{left:354.198000pt;}
.x2b{left:371.600000pt;}
.x23{left:374.367467pt;}
.x26{left:382.446667pt;}
.x3c{left:388.080000pt;}
.x40{left:391.440000pt;}
.x37{left:394.480000pt;}
.x31{left:408.080000pt;}
.x45{left:417.520000pt;}
.x3e{left:418.640000pt;}
.x73{left:420.150083pt;}
.x38{left:421.920000pt;}
.x2d{left:423.920000pt;}
.x20{left:425.373333pt;}
.x1e{left:427.773171pt;}
.x42{left:429.360000pt;}
.x1d{left:430.653067pt;}
.x1c{left:436.333333pt;}
.x67{left:438.393333pt;}
.x1f{left:443.132613pt;}
.x76{left:447.428000pt;}
.x68{left:457.636000pt;}
.x64{left:459.787381pt;}
.x80{left:467.282667pt;}
.x77{left:469.426667pt;}
.x8d{left:478.461333pt;}
.x81{left:486.985333pt;}
.x69{left:492.446667pt;}
.x22{left:498.013333pt;}
.x78{left:506.892000pt;}
.x66{left:512.220933pt;}
.x8e{left:514.140000pt;}
.x75{left:519.018267pt;}
.x82{left:522.204000pt;}
.x21{left:525.613333pt;}
.x8c{left:529.239600pt;}
.x7f{left:533.483733pt;}
.x74{left:562.395733pt;}
.x65{left:566.639733pt;}
.x6a{left:570.234667pt;}
.x6b{left:580.289333pt;}
.x79{left:587.385333pt;}
.x8f{left:592.744000pt;}
.x7a{left:600.145333pt;}
.x90{left:603.666667pt;}
.x83{left:610.914667pt;}
.x43{left:634.560000pt;}
.x53{left:719.940000pt;}
}

