
    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_418650fbdb0618a76c7b1859.woff')format("woff");}.ff1{font-family:ff1;line-height:1.136719;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_877eb23a6ec3c5a87ab235ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_a75fa22876eaa0b13a343a41.woff')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_050518ad679aa7c75006e135.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_e8c983a1333b1157bd45d522.woff')format("woff");}.ff5{font-family:ff5;line-height:0.804000;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_ced1de69bab32495c021df69.woff')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_53d39dc603058b006eb03992.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_66006aeb767e4cc1881fe1ed.woff')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_f7fe3e7c5a15e42382ba0d79.woff')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_c2327e050dd0651603afda08.woff')format("woff");}.ffa{font-family:ffa;line-height:0.764000;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_aaee7120bd4bbd43f8364544.woff')format("woff");}.ffb{font-family:ffb;line-height:1.107910;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_3dca253ba7f34b3fcbf62da5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.878906;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_373e44e977c3400990cf4bad.woff')format("woff");}.ffd{font-family:ffd;line-height:1.022949;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_d23328f10ba1bc29245429a1.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_b62a71be2700122fa528a566.woff')format("woff");}.fff{font-family:fff;line-height:0.891113;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_d52c9f83cb115c493df8812f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.578000;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_4694d73a6f9e3648fb82ebbc.woff')format("woff");}.ff11{font-family:ff11;line-height:0.692383;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;}
.m4{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m7{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m6{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:-5.102400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:3.738382px;}
.v3{vertical-align:9.521769px;}
.v4{vertical-align:17.339367px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000006px;}
.ls10{letter-spacing:0.000012px;}
.ls6{letter-spacing:0.000126px;}
.ls15{letter-spacing:0.185812px;}
.ls1{letter-spacing:1.478295px;}
.ls2{letter-spacing:1.651467px;}
.ls0{letter-spacing:1.778178px;}
.ls1e{letter-spacing:2.649600px;}
.lsd{letter-spacing:2.991600px;}
.ls21{letter-spacing:2.997600px;}
.ls8{letter-spacing:3.701166px;}
.ls17{letter-spacing:10.797891px;}
.ls5{letter-spacing:11.082285px;}
.ls24{letter-spacing:11.190020px;}
.lsf{letter-spacing:11.323598px;}
.ls20{letter-spacing:11.361854px;}
.ls13{letter-spacing:11.481726px;}
.ls1f{letter-spacing:11.702327px;}
.ls36{letter-spacing:12.658712px;}
.ls35{letter-spacing:13.184139px;}
.ls34{letter-spacing:13.318037px;}
.ls33{letter-spacing:13.518884px;}
.ls30{letter-spacing:13.820153px;}
.ls2f{letter-spacing:13.844064px;}
.ls1d{letter-spacing:14.197936px;}
.ls1c{letter-spacing:14.202718px;}
.ls1a{letter-spacing:14.542244px;}
.ls2e{letter-spacing:14.551148px;}
.ls19{letter-spacing:15.221297px;}
.ls32{letter-spacing:17.248890px;}
.ls2d{letter-spacing:17.886593px;}
.ls27{letter-spacing:17.937507px;}
.ls28{letter-spacing:17.942289px;}
.ls12{letter-spacing:18.586487px;}
.ls31{letter-spacing:18.606995px;}
.lsb{letter-spacing:18.927227px;}
.ls3{letter-spacing:19.038201px;}
.lse{letter-spacing:19.323600px;}
.ls2c{letter-spacing:19.659600px;}
.ls23{letter-spacing:21.699600px;}
.ls22{letter-spacing:21.701400px;}
.ls29{letter-spacing:21.739245px;}
.ls16{letter-spacing:22.041600px;}
.ls4{letter-spacing:22.379760px;}
.ls2b{letter-spacing:22.710003px;}
.ls11{letter-spacing:23.967685px;}
.lsc{letter-spacing:24.780635px;}
.ls2a{letter-spacing:24.871494px;}
.ls1b{letter-spacing:26.105266px;}
.lsa{letter-spacing:36.687964px;}
.ls25{letter-spacing:123.438699px;}
.ls18{letter-spacing:402.397076px;}
.ls14{letter-spacing:440.158981px;}
.ls26{letter-spacing:716.022496px;}
.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;}
}
.wsba{word-spacing:-47.820600px;}
.wsf6{word-spacing:-43.802433px;}
.ws31e{word-spacing:-43.182002px;}
.ws13b{word-spacing:-43.038000px;}
.ws6{word-spacing:-39.728225px;}
.wsfd{word-spacing:-38.256000px;}
.wsf5{word-spacing:-34.544626px;}
.ws17{word-spacing:-31.318887px;}
.ws33{word-spacing:-29.983516px;}
.ws31d{word-spacing:-29.490964px;}
.ws31f{word-spacing:-29.275771px;}
.ws32b{word-spacing:-29.065361px;}
.ws338{word-spacing:-27.496845px;}
.ws31c{word-spacing:-27.377293px;}
.ws14f{word-spacing:-27.272088px;}
.ws33c{word-spacing:-27.190793px;}
.ws344{word-spacing:-27.166883px;}
.ws1c7{word-spacing:-27.066598px;}
.ws53{word-spacing:-26.984826px;}
.ws7{word-spacing:-26.482599px;}
.ws1c4{word-spacing:-26.386598px;}
.ws334{word-spacing:-26.210471px;}
.ws333{word-spacing:-26.200907px;}
.wsec{word-spacing:-25.852927px;}
.ws145{word-spacing:-25.822800px;}
.ws329{word-spacing:-25.010174px;}
.ws328{word-spacing:-24.981481px;}
.ws324{word-spacing:-24.766289px;}
.ws55{word-spacing:-24.569916px;}
.ws59{word-spacing:-24.230394px;}
.ws139{word-spacing:-24.006596px;}
.ws347{word-spacing:-23.986136px;}
.ws4{word-spacing:-23.958939px;}
.ws3{word-spacing:-23.902451px;}
.ws1{word-spacing:-23.684570px;}
.ws22c{word-spacing:-23.666596px;}
.wsee{word-spacing:-23.190423px;}
.wsf7{word-spacing:-23.133040px;}
.ws268{word-spacing:-23.022100px;}
.wsf8{word-spacing:-22.991495px;}
.ws16a{word-spacing:-22.853776px;}
.ws172{word-spacing:-22.646596px;}
.ws282{word-spacing:-22.488860px;}
.ws38c{word-spacing:-21.538128px;}
.wsfc{word-spacing:-21.270336px;}
.wsfa{word-spacing:-21.270002px;}
.ws2f2{word-spacing:-20.946595px;}
.ws1a5{word-spacing:-20.677627px;}
.ws115{word-spacing:-20.586768px;}
.ws20a{word-spacing:-20.577204px;}
.ws116{word-spacing:-20.510255px;}
.wsa1{word-spacing:-20.467217px;}
.ws2f6{word-spacing:-20.405050px;}
.ws239{word-spacing:-20.371576px;}
.ws27c{word-spacing:-20.304627px;}
.ws1da{word-spacing:-20.295063px;}
.ws1a4{word-spacing:-20.271152px;}
.wsd0{word-spacing:-20.247242px;}
.ws2d5{word-spacing:-20.228114px;}
.ws237{word-spacing:-20.223332px;}
.ws2{word-spacing:-20.174250px;}
.ws32d{word-spacing:-20.142037px;}
.ws2d4{word-spacing:-20.060742px;}
.ws63{word-spacing:-20.041613px;}
.ws24f{word-spacing:-20.008139px;}
.wsb9{word-spacing:-19.979447px;}
.ws48{word-spacing:-19.965100px;}
.ws2c4{word-spacing:-19.917280px;}
.ws62{word-spacing:-19.902934px;}
.ws2f0{word-spacing:-19.883805px;}
.ws310{word-spacing:-19.874241px;}
.ws61{word-spacing:-19.869459px;}
.ws67{word-spacing:-19.831203px;}
.ws66{word-spacing:-19.816857px;}
.ws2b8{word-spacing:-19.792946px;}
.ws2ee{word-spacing:-19.759472px;}
.ws64{word-spacing:-19.754690px;}
.ws65{word-spacing:-19.745126px;}
.wsbb{word-spacing:-19.639920px;}
.ws9b{word-spacing:-19.635138px;}
.ws2fe{word-spacing:-19.630356px;}
.wsdb{word-spacing:-19.568190px;}
.ws19e{word-spacing:-19.549061px;}
.wse1{word-spacing:-19.534715px;}
.ws1f5{word-spacing:-19.529933px;}
.wsc1{word-spacing:-19.525151px;}
.ws256{word-spacing:-19.419946px;}
.ws2d8{word-spacing:-19.415164px;}
.ws23f{word-spacing:-19.405599px;}
.ws162{word-spacing:-19.343433px;}
.wse4{word-spacing:-19.290830px;}
.ws258{word-spacing:-19.276484px;}
.ws3f{word-spacing:-19.228663px;}
.ws195{word-spacing:-19.156932px;}
.ws163{word-spacing:-19.137804px;}
.ws33a{word-spacing:-19.109112px;}
.ws260{word-spacing:-19.094766px;}
.ws259{word-spacing:-18.975214px;}
.ws251{word-spacing:-18.960868px;}
.ws1b1{word-spacing:-18.951304px;}
.ws179{word-spacing:-18.941740px;}
.ws250{word-spacing:-18.932176px;}
.ws257{word-spacing:-18.903483px;}
.ws301{word-spacing:-18.898701px;}
.ws1dc{word-spacing:-18.889137px;}
.ws11e{word-spacing:-18.884355px;}
.ws1e2{word-spacing:-18.874791px;}
.ws24e{word-spacing:-18.860445px;}
.ws1c0{word-spacing:-18.855663px;}
.ws11f{word-spacing:-18.850881px;}
.ws8{word-spacing:-18.761607px;}
.ws5{word-spacing:-18.717253px;}
.ws2a6{word-spacing:-18.702637px;}
.ws9{word-spacing:-18.698244px;}
.ws2cb{word-spacing:-18.697855px;}
.ws118{word-spacing:-18.693073px;}
.ws117{word-spacing:-18.683508px;}
.wsb{word-spacing:-18.653891px;}
.ws77{word-spacing:-18.630906px;}
.ws1e3{word-spacing:-18.621342px;}
.wsd6{word-spacing:-18.611778px;}
.ws119{word-spacing:-18.597431px;}
.ws74{word-spacing:-18.592649px;}
.wsa{word-spacing:-18.558847px;}
.wsc{word-spacing:-18.552511px;}
.wsae{word-spacing:-18.540047px;}
.ws215{word-spacing:-18.520918px;}
.ws2ef{word-spacing:-18.501790px;}
.ws23a{word-spacing:-18.482662px;}
.ws96{word-spacing:-18.406149px;}
.ws22a{word-spacing:-18.398745px;}
.wsb2{word-spacing:-18.353546px;}
.ws28e{word-spacing:-18.339200px;}
.ws23b{word-spacing:-18.320072px;}
.ws289{word-spacing:-18.281815px;}
.wsb3{word-spacing:-18.272251px;}
.ws1a0{word-spacing:-18.262687px;}
.ws2a7{word-spacing:-18.257905px;}
.ws2a2{word-spacing:-18.229213px;}
.wsc0{word-spacing:-18.224431px;}
.ws28f{word-spacing:-18.210084px;}
.ws2a3{word-spacing:-18.205302px;}
.ws191{word-spacing:-18.171828px;}
.ws194{word-spacing:-18.076187px;}
.ws1d0{word-spacing:-18.018802px;}
.ws19a{word-spacing:-18.004456px;}
.ws49{word-spacing:-17.999674px;}
.ws192{word-spacing:-17.994892px;}
.ws23d{word-spacing:-17.937507px;}
.ws1a2{word-spacing:-17.927943px;}
.ws199{word-spacing:-17.894469px;}
.ws198{word-spacing:-17.889686px;}
.ws19f{word-spacing:-17.865776px;}
.ws193{word-spacing:-17.817956px;}
.ws10b{word-spacing:-17.765353px;}
.ws175{word-spacing:-17.602763px;}
.ws25b{word-spacing:-17.588417px;}
.ws5c{word-spacing:-17.574070px;}
.ws168{word-spacing:-17.555200px;}
.ws2b3{word-spacing:-17.535814px;}
.ws120{word-spacing:-17.526250px;}
.ws28c{word-spacing:-17.521468px;}
.wsa7{word-spacing:-17.502340px;}
.ws197{word-spacing:-17.478429px;}
.ws28a{word-spacing:-17.464083px;}
.ws28b{word-spacing:-17.339750px;}
.ws121{word-spacing:-17.315839px;}
.wsc7{word-spacing:-17.282365px;}
.ws271{word-spacing:-17.266846px;}
.ws12e{word-spacing:-17.258455px;}
.ws2e0{word-spacing:-17.229762px;}
.wsa2{word-spacing:-17.186724px;}
.ws2de{word-spacing:-17.162813px;}
.ws23e{word-spacing:-17.114993px;}
.ws2ff{word-spacing:-17.100647px;}
.ws2a9{word-spacing:-17.005005px;}
.ws2df{word-spacing:-17.000223px;}
.ws22{word-spacing:-16.974187px;}
.ws2bb{word-spacing:-16.942839px;}
.ws1ee{word-spacing:-16.918928px;}
.ws24c{word-spacing:-16.914146px;}
.ws9c{word-spacing:-16.909364px;}
.ws18e{word-spacing:-16.899800px;}
.ws1f3{word-spacing:-16.890236px;}
.ws21{word-spacing:-16.888111px;}
.ws30f{word-spacing:-16.856762px;}
.ws124{word-spacing:-16.847197px;}
.ws131{word-spacing:-16.842415px;}
.ws130{word-spacing:-16.823287px;}
.ws0{word-spacing:-16.813512px;}
.ws1ae{word-spacing:-16.808941px;}
.wse3{word-spacing:-16.799377px;}
.ws33e{word-spacing:-16.794595px;}
.ws106{word-spacing:-16.741992px;}
.ws1ed{word-spacing:-16.713300px;}
.ws9d{word-spacing:-16.703736px;}
.ws24d{word-spacing:-16.675043px;}
.ws22e{word-spacing:-16.660697px;}
.ws253{word-spacing:-16.612876px;}
.ws46{word-spacing:-16.608094px;}
.ws1a9{word-spacing:-16.579402px;}
.wse7{word-spacing:-16.574620px;}
.ws5e{word-spacing:-16.569838px;}
.ws45{word-spacing:-16.565056px;}
.wsb4{word-spacing:-16.507671px;}
.ws1a8{word-spacing:-16.502889px;}
.ws60{word-spacing:-16.483761px;}
.ws20c{word-spacing:-16.474197px;}
.ws304{word-spacing:-16.469415px;}
.ws1eb{word-spacing:-16.431158px;}
.ws69{word-spacing:-16.416812px;}
.ws321{word-spacing:-16.397684px;}
.ws6a{word-spacing:-16.392902px;}
.ws19b{word-spacing:-16.354645px;}
.ws302{word-spacing:-16.321171px;}
.ws320{word-spacing:-16.302043px;}
.ws303{word-spacing:-16.292478px;}
.ws2d0{word-spacing:-16.268568px;}
.wsd1{word-spacing:-16.239876px;}
.ws2c8{word-spacing:-16.235094px;}
.ws184{word-spacing:-16.225530px;}
.ws2cf{word-spacing:-16.211183px;}
.ws342{word-spacing:-16.206401px;}
.ws286{word-spacing:-16.168145px;}
.ws10a{word-spacing:-16.163363px;}
.ws32a{word-spacing:-16.158581px;}
.ws2d1{word-spacing:-16.144235px;}
.ws148{word-spacing:-16.134670px;}
.ws25{word-spacing:-16.122035px;}
.ws26{word-spacing:-16.078997px;}
.ws27{word-spacing:-15.975706px;}
.ws10d{word-spacing:-15.895567px;}
.ws2ba{word-spacing:-15.890785px;}
.ws3c{word-spacing:-15.886003px;}
.ws32c{word-spacing:-15.881221px;}
.ws2f9{word-spacing:-15.871657px;}
.ws112{word-spacing:-15.862093px;}
.ws41{word-spacing:-15.857311px;}
.ws7e{word-spacing:-15.847747px;}
.wsd7{word-spacing:-15.833401px;}
.ws2e3{word-spacing:-15.823837px;}
.ws33b{word-spacing:-15.804708px;}
.ws206{word-spacing:-15.799926px;}
.ws122{word-spacing:-15.795144px;}
.ws4d{word-spacing:-15.790362px;}
.ws2fa{word-spacing:-15.785580px;}
.ws33d{word-spacing:-15.780798px;}
.ws11b{word-spacing:-15.766452px;}
.wse2{word-spacing:-15.756888px;}
.ws1dd{word-spacing:-15.752106px;}
.ws189{word-spacing:-15.747324px;}
.ws1f4{word-spacing:-15.742542px;}
.ws7c{word-spacing:-15.732977px;}
.ws6b{word-spacing:-15.723413px;}
.ws54{word-spacing:-15.718631px;}
.ws23c{word-spacing:-15.709067px;}
.ws102{word-spacing:-15.685157px;}
.ws1b0{word-spacing:-15.661247px;}
.ws2c9{word-spacing:-15.646900px;}
.ws1fc{word-spacing:-15.637336px;}
.ws125{word-spacing:-15.632554px;}
.ws228{word-spacing:-15.627098px;}
.wsc8{word-spacing:-15.622990px;}
.ws1d5{word-spacing:-15.594298px;}
.ws2d{word-spacing:-15.588364px;}
.ws1f2{word-spacing:-15.584734px;}
.ws2c{word-spacing:-15.566845px;}
.wscb{word-spacing:-15.556041px;}
.ws2d9{word-spacing:-15.546477px;}
.ws2d2{word-spacing:-15.527349px;}
.ws81{word-spacing:-15.508221px;}
.ws227{word-spacing:-15.506591px;}
.ws312{word-spacing:-15.503439px;}
.ws2c1{word-spacing:-15.498656px;}
.ws158{word-spacing:-15.489092px;}
.ws98{word-spacing:-15.484310px;}
.ws337{word-spacing:-15.474746px;}
.ws1f{word-spacing:-15.472161px;}
.ws82{word-spacing:-15.465182px;}
.wsc9{word-spacing:-15.460400px;}
.ws2ce{word-spacing:-15.446054px;}
.ws2b{word-spacing:-15.442034px;}
.ws7d{word-spacing:-15.436490px;}
.ws20b{word-spacing:-15.417361px;}
.ws95{word-spacing:-15.412579px;}
.ws190{word-spacing:-15.407797px;}
.ws76{word-spacing:-15.388669px;}
.ws294{word-spacing:-15.374323px;}
.ws1aa{word-spacing:-15.364759px;}
.ws187{word-spacing:-15.326502px;}
.ws1d{word-spacing:-15.321528px;}
.ws2c0{word-spacing:-15.302592px;}
.ws183{word-spacing:-15.288246px;}
.ws155{word-spacing:-15.264336px;}
.ws97{word-spacing:-15.254771px;}
.ws196{word-spacing:-15.230861px;}
.ws1c8{word-spacing:-15.222541px;}
.wsda{word-spacing:-15.216515px;}
.ws31b{word-spacing:-15.211733px;}
.ws1d1{word-spacing:-15.206951px;}
.ws2d3{word-spacing:-15.197387px;}
.ws2b7{word-spacing:-15.192605px;}
.ws2b2{word-spacing:-15.187823px;}
.ws2dd{word-spacing:-15.183040px;}
.wsca{word-spacing:-15.173476px;}
.ws264{word-spacing:-15.149566px;}
.ws1ea{word-spacing:-15.144784px;}
.ws2b9{word-spacing:-15.125656px;}
.ws229{word-spacing:-15.123553px;}
.wsaf{word-spacing:-15.120874px;}
.ws213{word-spacing:-15.116092px;}
.ws11c{word-spacing:-15.106528px;}
.ws3a9{word-spacing:-15.072628px;}
.ws1ec{word-spacing:-15.049143px;}
.ws214{word-spacing:-15.034797px;}
.ws30c{word-spacing:-15.020262px;}
.ws1e8{word-spacing:-14.982194px;}
.ws285{word-spacing:-14.977412px;}
.ws25e{word-spacing:-14.958284px;}
.ws30e{word-spacing:-14.948720px;}
.ws4b{word-spacing:-14.943938px;}
.ws1df{word-spacing:-14.934373px;}
.ws182{word-spacing:-14.920027px;}
.ws1c5{word-spacing:-14.891148px;}
.ws288{word-spacing:-14.881771px;}
.ws1d3{word-spacing:-14.872207px;}
.wsa8{word-spacing:-14.867425px;}
.ws1af{word-spacing:-14.862642px;}
.ws3a4{word-spacing:-14.831619px;}
.ws30a{word-spacing:-14.830895px;}
.ws1ef{word-spacing:-14.819604px;}
.ws159{word-spacing:-14.810040px;}
.ws25d{word-spacing:-14.805258px;}
.ws3a5{word-spacing:-14.804840px;}
.ws186{word-spacing:-14.786130px;}
.ws36f{word-spacing:-14.785712px;}
.ws1de{word-spacing:-14.781347px;}
.ws1e7{word-spacing:-14.771783px;}
.ws8f{word-spacing:-14.767001px;}
.ws30b{word-spacing:-14.766338px;}
.ws25f{word-spacing:-14.762219px;}
.ws1e9{word-spacing:-14.757437px;}
.ws263{word-spacing:-14.752655px;}
.ws9a{word-spacing:-14.733527px;}
.wsc4{word-spacing:-14.714399px;}
.ws178{word-spacing:-14.661796px;}
.ws1bd{word-spacing:-14.657014px;}
.ws29{word-spacing:-14.615705px;}
.ws362{word-spacing:-14.613563px;}
.ws247{word-spacing:-14.604411px;}
.ws1d2{word-spacing:-14.599629px;}
.ws18f{word-spacing:-14.594847px;}
.ws379{word-spacing:-14.586784px;}
.ws297{word-spacing:-14.570937px;}
.ws10f{word-spacing:-14.561373px;}
.ws31{word-spacing:-14.527898px;}
.ws1ce{word-spacing:-14.523116px;}
.ws252{word-spacing:-14.518334px;}
.ws382{word-spacing:-14.491146px;}
.ws390{word-spacing:-14.475843px;}
.ws35{word-spacing:-14.465731px;}
.ws18c{word-spacing:-14.451385px;}
.ws15e{word-spacing:-14.446603px;}
.ws352{word-spacing:-14.445239px;}
.ws389{word-spacing:-14.429937px;}
.ws21c{word-spacing:-14.409122px;}
.ws372{word-spacing:-14.406984px;}
.ws80{word-spacing:-14.370090px;}
.ws13f{word-spacing:-14.361781px;}
.ws376{word-spacing:-14.338124px;}
.ws375{word-spacing:-14.326647px;}
.ws266{word-spacing:-14.318743px;}
.ws2e6{word-spacing:-14.298359px;}
.ws13d{word-spacing:-14.275705px;}
.ws123{word-spacing:-14.274449px;}
.wse8{word-spacing:-14.260103px;}
.ws20d{word-spacing:-14.255321px;}
.ws140{word-spacing:-14.254186px;}
.ws142{word-spacing:-14.249882px;}
.wsed{word-spacing:-14.245578px;}
.wsbd{word-spacing:-14.236193px;}
.ws143{word-spacing:-14.232667px;}
.ws1ba{word-spacing:-14.231411px;}
.ws21d{word-spacing:-14.228363px;}
.ws1bc{word-spacing:-14.217064px;}
.ws141{word-spacing:-14.211148px;}
.wsce{word-spacing:-14.207500px;}
.ws10e{word-spacing:-14.197936px;}
.ws3a6{word-spacing:-14.196579px;}
.ws13e{word-spacing:-14.172413px;}
.ws374{word-spacing:-14.135370px;}
.ws40{word-spacing:-14.126205px;}
.ws267{word-spacing:-14.094945px;}
.ws3ab{word-spacing:-14.093289px;}
.ws1be{word-spacing:-14.092731px;}
.wscf{word-spacing:-14.087949px;}
.ws132{word-spacing:-14.082034px;}
.ws373{word-spacing:-14.058860px;}
.ws255{word-spacing:-14.054474px;}
.ws4c{word-spacing:-13.977961px;}
.ws311{word-spacing:-13.963615px;}
.ws22b{word-spacing:-13.940008px;}
.ws2e{word-spacing:-13.922793px;}
.ws169{word-spacing:-13.892666px;}
.ws1bb{word-spacing:-13.887102px;}
.ws11a{word-spacing:-13.867974px;}
.ws84{word-spacing:-13.848846px;}
.ws14d{word-spacing:-13.834500px;}
.ws216{word-spacing:-13.829718px;}
.ws394{word-spacing:-13.829327px;}
.ws3ae{word-spacing:-13.798723px;}
.ws25c{word-spacing:-13.791461px;}
.ws3ad{word-spacing:-13.787246px;}
.ws1db{word-spacing:-13.786679px;}
.wsbc{word-spacing:-13.781897px;}
.ws37b{word-spacing:-13.779595px;}
.ws1b9{word-spacing:-13.757987px;}
.ws368{word-spacing:-13.756642px;}
.ws2a5{word-spacing:-13.734076px;}
.ws37a{word-spacing:-13.729863px;}
.ws2a4{word-spacing:-13.729294px;}
.ws341{word-spacing:-13.719730px;}
.wsc3{word-spacing:-13.705384px;}
.ws39f{word-spacing:-13.703084px;}
.ws2fc{word-spacing:-13.691038px;}
.wsc2{word-spacing:-13.619307px;}
.ws217{word-spacing:-13.600179px;}
.ws24b{word-spacing:-13.585832px;}
.ws27f{word-spacing:-13.566704px;}
.ws308{word-spacing:-13.561274px;}
.wse0{word-spacing:-13.557140px;}
.ws2ea{word-spacing:-13.552358px;}
.ws29c{word-spacing:-13.518884px;}
.ws36{word-spacing:-13.509320px;}
.ws44{word-spacing:-13.504537px;}
.ws2e5{word-spacing:-13.499755px;}
.ws108{word-spacing:-13.480627px;}
.ws211{word-spacing:-13.451935px;}
.ws99{word-spacing:-13.447153px;}
.ws57{word-spacing:-13.437589px;}
.ws1ca{word-spacing:-13.427856px;}
.ws261{word-spacing:-13.418460px;}
.ws307{word-spacing:-13.402033px;}
.ws2e9{word-spacing:-13.380204px;}
.wsdf{word-spacing:-13.370640px;}
.wsb0{word-spacing:-13.365858px;}
.wsab{word-spacing:-13.327601px;}
.ws18d{word-spacing:-13.322819px;}
.ws1c9{word-spacing:-13.320261px;}
.ws369{word-spacing:-13.312879px;}
.ws104{word-spacing:-13.260652px;}
.ws39c{word-spacing:-13.251671px;}
.ws2e8{word-spacing:-13.246306px;}
.ws167{word-spacing:-13.216970px;}
.ws3b1{word-spacing:-13.213415px;}
.ws19c{word-spacing:-13.208050px;}
.ws3b3{word-spacing:-13.198113px;}
.ws109{word-spacing:-13.184139px;}
.ws14e{word-spacing:-13.179357px;}
.ws1a1{word-spacing:-13.165011px;}
.ws3a3{word-spacing:-13.163683px;}
.wsc5{word-spacing:-13.133776px;}
.wsad{word-spacing:-13.117191px;}
.ws1ab{word-spacing:-13.107626px;}
.wsc6{word-spacing:-13.102844px;}
.ws335{word-spacing:-13.098062px;}
.ws265{word-spacing:-13.062033px;}
.ws181{word-spacing:-13.059806px;}
.ws262{word-spacing:-13.031113px;}
.ws1fd{word-spacing:-13.026331px;}
.ws1fe{word-spacing:-13.002421px;}
.ws30{word-spacing:-12.988075px;}
.ws75{word-spacing:-12.940254px;}
.wsdd{word-spacing:-12.935472px;}
.wsde{word-spacing:-12.925908px;}
.ws24{word-spacing:-12.920008px;}
.ws165{word-spacing:-12.897216px;}
.wsd8{word-spacing:-12.887652px;}
.ws2cc{word-spacing:-12.868523px;}
.ws273{word-spacing:-12.868362px;}
.ws3b0{word-spacing:-12.857640px;}
.wsd5{word-spacing:-12.854177px;}
.ws9f{word-spacing:-12.844613px;}
.ws4f{word-spacing:-12.838235px;}
.wsd4{word-spacing:-12.830267px;}
.ws11d{word-spacing:-12.825485px;}
.ws146{word-spacing:-12.816716px;}
.ws1e5{word-spacing:-12.815921px;}
.ws1ff{word-spacing:-12.811139px;}
.ws2cd{word-spacing:-12.806357px;}
.ws221{word-spacing:-12.804082px;}
.wsf0{word-spacing:-12.784955px;}
.ws3a1{word-spacing:-12.777304px;}
.ws351{word-spacing:-12.765827px;}
.ws29b{word-spacing:-12.763318px;}
.ws3a2{word-spacing:-12.762001px;}
.ws1cb{word-spacing:-12.752159px;}
.ws1c6{word-spacing:-12.747856px;}
.ws2da{word-spacing:-12.744190px;}
.ws1cf{word-spacing:-12.739408px;}
.ws52{word-spacing:-12.739248px;}
.ws15f{word-spacing:-12.729844px;}
.ws230{word-spacing:-12.715498px;}
.ws377{word-spacing:-12.674014px;}
.ws58{word-spacing:-12.666083px;}
.ws147{word-spacing:-12.657476px;}
.ws330{word-spacing:-12.643767px;}
.wsf2{word-spacing:-12.639584px;}
.ws220{word-spacing:-12.635759px;}
.ws68{word-spacing:-12.619856px;}
.ws144{word-spacing:-12.618742px;}
.ws21e{word-spacing:-12.616631px;}
.ws381{word-spacing:-12.612805px;}
.ws4e{word-spacing:-12.610134px;}
.ws2f{word-spacing:-12.597223px;}
.ws134{word-spacing:-12.593678px;}
.ws371{word-spacing:-12.578376px;}
.wsd3{word-spacing:-12.572036px;}
.ws16d{word-spacing:-12.570724px;}
.ws332{word-spacing:-12.562472px;}
.ws309{word-spacing:-12.545577px;}
.ws32f{word-spacing:-12.543343px;}
.wsf4{word-spacing:-12.532469px;}
.ws166{word-spacing:-12.528997px;}
.ws36d{word-spacing:-12.513341px;}
.ws174{word-spacing:-12.511147px;}
.ws180{word-spacing:-12.500305px;}
.ws5b{word-spacing:-12.490741px;}
.ws29a{word-spacing:-12.485959px;}
.ws1b2{word-spacing:-12.471612px;}
.ws51{word-spacing:-12.463805px;}
.ws170{word-spacing:-12.463609px;}
.ws306{word-spacing:-12.412159px;}
.ws226{word-spacing:-12.406226px;}
.ws2ec{word-spacing:-12.399882px;}
.ws13a{word-spacing:-12.394944px;}
.ws14c{word-spacing:-12.385535px;}
.ws2f4{word-spacing:-12.382033px;}
.ws392{word-spacing:-12.367971px;}
.ws17f{word-spacing:-12.347279px;}
.ws13c{word-spacing:-12.304564px;}
.ws391{word-spacing:-12.302937px;}
.ws39e{word-spacing:-12.295286px;}
.ws157{word-spacing:-12.289894px;}
.ws27b{word-spacing:-12.232509px;}
.ws2ed{word-spacing:-12.227727px;}
.ws393{word-spacing:-12.214949px;}
.ws17e{word-spacing:-12.194253px;}
.ws34f{word-spacing:-12.157566px;}
.ws2ad{word-spacing:-12.146432px;}
.wscd{word-spacing:-12.141650px;}
.ws388{word-spacing:-12.130787px;}
.ws17d{word-spacing:-12.084266px;}
.ws279{word-spacing:-12.074702px;}
.ws2b0{word-spacing:-12.060355px;}
.ws1fb{word-spacing:-12.046009px;}
.ws2b5{word-spacing:-12.036445px;}
.ws35b{word-spacing:-12.023672px;}
.ws1fa{word-spacing:-12.022099px;}
.ws2ac{word-spacing:-12.007753px;}
.ws39{word-spacing:-11.955150px;}
.ws339{word-spacing:-11.912111px;}
.ws2ab{word-spacing:-11.902547px;}
.ws2b1{word-spacing:-11.897765px;}
.ws2b6{word-spacing:-11.892983px;}
.ws83{word-spacing:-11.888201px;}
.ws27a{word-spacing:-11.849945px;}
.ws22d{word-spacing:-11.848361px;}
.ws149{word-spacing:-11.816470px;}
.ws2f8{word-spacing:-11.806906px;}
.ws17a{word-spacing:-11.802124px;}
.ws2db{word-spacing:-11.797342px;}
.ws14a{word-spacing:-11.778214px;}
.ws327{word-spacing:-11.773432px;}
.ws34c{word-spacing:-11.752059px;}
.ws236{word-spacing:-11.739957px;}
.ws107{word-spacing:-11.735175px;}
.ws29e{word-spacing:-11.720829px;}
.ws101{word-spacing:-11.716047px;}
.ws399{word-spacing:-11.687025px;}
.ws234{word-spacing:-11.663444px;}
.ws34d{word-spacing:-11.629642px;}
.ws2af{word-spacing:-11.601278px;}
.ws1ad{word-spacing:-11.596496px;}
.ws396{word-spacing:-11.576084px;}
.ws313{word-spacing:-11.572585px;}
.ws367{word-spacing:-11.553131px;}
.ws345{word-spacing:-11.549305px;}
.ws326{word-spacing:-11.548675px;}
.ws39b{word-spacing:-11.537829px;}
.ws36e{word-spacing:-11.530178px;}
.wsd2{word-spacing:-11.529547px;}
.ws3a0{word-spacing:-11.522526px;}
.ws37e{word-spacing:-11.518701px;}
.ws346{word-spacing:-11.514875px;}
.ws38a{word-spacing:-11.511050px;}
.ws235{word-spacing:-11.510418px;}
.ws36b{word-spacing:-11.503399px;}
.ws38d{word-spacing:-11.499573px;}
.ws378{word-spacing:-11.495748px;}
.ws37f{word-spacing:-11.491922px;}
.ws37d{word-spacing:-11.488097px;}
.ws25a{word-spacing:-11.486508px;}
.ws365{word-spacing:-11.480446px;}
.ws349{word-spacing:-11.476620px;}
.ws316{word-spacing:-11.467380px;}
.ws35c{word-spacing:-11.457492px;}
.ws3aa{word-spacing:-11.453667px;}
.ws1f7{word-spacing:-11.453034px;}
.ws354{word-spacing:-11.449841px;}
.ws397{word-spacing:-11.446016px;}
.ws323{word-spacing:-11.443470px;}
.ws3b2{word-spacing:-11.442190px;}
.ws370{word-spacing:-11.430714px;}
.ws363{word-spacing:-11.426888px;}
.ws34e{word-spacing:-11.423062px;}
.ws356{word-spacing:-11.419237px;}
.ws358{word-spacing:-11.411586px;}
.ws38e{word-spacing:-11.407760px;}
.ws71{word-spacing:-11.405213px;}
.ws361{word-spacing:-11.403935px;}
.ws325{word-spacing:-11.400431px;}
.ws36c{word-spacing:-11.400109px;}
.ws350{word-spacing:-11.396284px;}
.ws34a{word-spacing:-11.384807px;}
.ws9e{word-spacing:-11.381303px;}
.ws39a{word-spacing:-11.380982px;}
.ws386{word-spacing:-11.377156px;}
.ws238{word-spacing:-11.371739px;}
.ws353{word-spacing:-11.365679px;}
.ws380{word-spacing:-11.361854px;}
.ws359{word-spacing:-11.358028px;}
.ws3a7{word-spacing:-11.350377px;}
.ws355{word-spacing:-11.346552px;}
.ws37c{word-spacing:-11.338901px;}
.ws360{word-spacing:-11.308296px;}
.ws398{word-spacing:-11.304471px;}
.ws36a{word-spacing:-11.300645px;}
.ws395{word-spacing:-11.292994px;}
.ws3ac{word-spacing:-11.289169px;}
.ws385{word-spacing:-11.281517px;}
.ws35d{word-spacing:-11.273866px;}
.ws35f{word-spacing:-11.266215px;}
.ws1f9{word-spacing:-11.256969px;}
.ws366{word-spacing:-11.254739px;}
.ws387{word-spacing:-11.220309px;}
.ws35a{word-spacing:-11.212658px;}
.ws357{word-spacing:-11.208832px;}
.ws278{word-spacing:-11.194802px;}
.ws39d{word-spacing:-11.174402px;}
.ws173{word-spacing:-11.168361px;}
.ws29f{word-spacing:-11.166110px;}
.ws383{word-spacing:-11.151449px;}
.ws348{word-spacing:-11.147624px;}
.ws103{word-spacing:-11.137418px;}
.ws3a8{word-spacing:-11.132321px;}
.ws2e7{word-spacing:-11.127854px;}
.ws34b{word-spacing:-11.124670px;}
.ws2a0{word-spacing:-11.108725px;}
.ws203{word-spacing:-11.080033px;}
.ws384{word-spacing:-11.074938px;}
.ws35e{word-spacing:-11.071113px;}
.ws317{word-spacing:-11.070469px;}
.ws2e1{word-spacing:-11.065687px;}
.ws15d{word-spacing:-11.060905px;}
.ws38f{word-spacing:-11.059636px;}
.ws15a{word-spacing:-11.056123px;}
.ws1a{word-spacing:-11.055811px;}
.ws15b{word-spacing:-11.041777px;}
.ws318{word-spacing:-11.036994px;}
.ws18{word-spacing:-11.009904px;}
.ws1b{word-spacing:-11.006079px;}
.ws15c{word-spacing:-10.989174px;}
.ws18a{word-spacing:-10.984392px;}
.ws19{word-spacing:-10.971649px;}
.ws3af{word-spacing:-10.948695px;}
.ws364{word-spacing:-10.933393px;}
.ws276{word-spacing:-10.917443px;}
.ws28d{word-spacing:-10.893533px;}
.ws18b{word-spacing:-10.888751px;}
.ws277{word-spacing:-10.874404px;}
.ws30d{word-spacing:-10.860058px;}
.ws1d4{word-spacing:-10.855276px;}
.ws202{word-spacing:-10.850494px;}
.ws1b7{word-spacing:-10.759635px;}
.ws1e{word-spacing:-10.759500px;}
.ws1c{word-spacing:-10.750892px;}
.wsd9{word-spacing:-10.735725px;}
.ws1b6{word-spacing:-10.697468px;}
.ws201{word-spacing:-10.692686px;}
.ws8d{word-spacing:-10.687904px;}
.ws1e4{word-spacing:-10.678340px;}
.ws24a{word-spacing:-10.606609px;}
.ws32{word-spacing:-10.592263px;}
.wsac{word-spacing:-10.587481px;}
.ws34{word-spacing:-10.577917px;}
.ws188{word-spacing:-10.530096px;}
.ws161{word-spacing:-10.487058px;}
.ws296{word-spacing:-10.467929px;}
.ws1b8{word-spacing:-10.458365px;}
.ws200{word-spacing:-10.448801px;}
.ws249{word-spacing:-10.400981px;}
.ws295{word-spacing:-10.386634px;}
.ws100{word-spacing:-10.381852px;}
.ws12f{word-spacing:-10.377070px;}
.ws248{word-spacing:-10.357942px;}
.ws246{word-spacing:-10.286211px;}
.ws42{word-spacing:-10.123621px;}
.ws151{word-spacing:-10.114057px;}
.ws93{word-spacing:-10.104493px;}
.ws275{word-spacing:-10.099711px;}
.ws210{word-spacing:-10.042326px;}
.ws274{word-spacing:-10.023198px;}
.ws2c5{word-spacing:-10.018416px;}
.wsbf{word-spacing:-10.008852px;}
.wsbe{word-spacing:-9.903646px;}
.ws26f{word-spacing:-9.877544px;}
.ws38{word-spacing:-9.846262px;}
.ws50{word-spacing:-9.748107px;}
.ws78{word-spacing:-9.745838px;}
.ws22f{word-spacing:-9.707582px;}
.ws284{word-spacing:-9.683672px;}
.ws47{word-spacing:-9.669325px;}
.ws231{word-spacing:-9.631069px;}
.ws79{word-spacing:-9.564120px;}
.wsf3{word-spacing:-9.563850px;}
.ws1d9{word-spacing:-9.549774px;}
.ws21b{word-spacing:-9.468360px;}
.ws244{word-spacing:-9.454133px;}
.ws12b{word-spacing:-9.444569px;}
.ws2fb{word-spacing:-9.435004px;}
.ws2dc{word-spacing:-9.425440px;}
.ws129{word-spacing:-9.420658px;}
.ws126{word-spacing:-9.363273px;}
.ws2ca{word-spacing:-9.358491px;}
.ws305{word-spacing:-9.339363px;}
.ws21a{word-spacing:-9.326335px;}
.ws12a{word-spacing:-9.325017px;}
.ws2f3{word-spacing:-9.322031px;}
.ws293{word-spacing:-9.267632px;}
.ws292{word-spacing:-9.215030px;}
.ws1b3{word-spacing:-9.210248px;}
.ws8b{word-spacing:-9.023747px;}
.ws319{word-spacing:-9.004619px;}
.ws164{word-spacing:-8.999837px;}
.ws209{word-spacing:-8.995055px;}
.ws2eb{word-spacing:-8.932888px;}
.ws89{word-spacing:-8.908978px;}
.ws208{word-spacing:-8.856375px;}
.ws207{word-spacing:-8.837247px;}
.ws13{word-spacing:-8.791091px;}
.ws10{word-spacing:-8.749010px;}
.ws1f1{word-spacing:-8.746388px;}
.wscc{word-spacing:-8.741606px;}
.ws16{word-spacing:-8.737533px;}
.ws4a{word-spacing:-8.712913px;}
.ws11{word-spacing:-8.691627px;}
.wse{word-spacing:-8.676325px;}
.wsf{word-spacing:-8.672499px;}
.ws20{word-spacing:-8.650638px;}
.ws1f0{word-spacing:-8.645964px;}
.wsd{word-spacing:-8.645720px;}
.ws12{word-spacing:-8.634244px;}
.ws15{word-spacing:-8.607465px;}
.ws205{word-spacing:-8.540759px;}
.wsfb{word-spacing:-8.530954px;}
.ws38b{word-spacing:-8.508001px;}
.wsf9{word-spacing:-8.504175px;}
.ws14{word-spacing:-8.465920px;}
.ws204{word-spacing:-8.402079px;}
.wsa3{word-spacing:-8.373387px;}
.ws86{word-spacing:-8.368605px;}
.ws3b{word-spacing:-8.363823px;}
.ws92{word-spacing:-8.339913px;}
.ws3a{word-spacing:-8.335131px;}
.ws105{word-spacing:-8.263400px;}
.ws3d{word-spacing:-8.215579px;}
.ws2be{word-spacing:-8.134284px;}
.ws291{word-spacing:-8.124720px;}
.ws14b{word-spacing:-8.062553px;}
.ws12c{word-spacing:-7.966912px;}
.ws2bf{word-spacing:-7.962130px;}
.ws1c1{word-spacing:-7.723027px;}
.ws1c3{word-spacing:-7.718245px;}
.ws2bd{word-spacing:-7.699117px;}
.ws241{word-spacing:-7.684770px;}
.ws298{word-spacing:-7.670424px;}
.ws2bc{word-spacing:-7.641732px;}
.ws2d6{word-spacing:-7.636950px;}
.wsa4{word-spacing:-7.574783px;}
.ws240{word-spacing:-7.541309px;}
.ws299{word-spacing:-7.536527px;}
.ws1c2{word-spacing:-7.474360px;}
.ws315{word-spacing:-7.383501px;}
.ws2aa{word-spacing:-7.321334px;}
.ws2fd{word-spacing:-7.287859px;}
.ws1f6{word-spacing:-7.263949px;}
.ws314{word-spacing:-7.043974px;}
.ws32e{word-spacing:-7.034410px;}
.ws28{word-spacing:-6.950637px;}
.ws27e{word-spacing:-6.929205px;}
.ws1bf{word-spacing:-6.910077px;}
.ws94{word-spacing:-6.895731px;}
.ws27d{word-spacing:-6.766615px;}
.ws6e{word-spacing:-6.699666px;}
.ws6d{word-spacing:-6.690102px;}
.ws12d{word-spacing:-6.647063px;}
.ws17b{word-spacing:-6.642281px;}
.ws7b{word-spacing:-6.618371px;}
.wsaa{word-spacing:-6.604025px;}
.ws1a7{word-spacing:-6.513166px;}
.ws6c{word-spacing:-6.503602px;}
.ws37{word-spacing:-6.489255px;}
.wsa9{word-spacing:-6.436653px;}
.ws150{word-spacing:-6.407960px;}
.ws2c7{word-spacing:-6.364922px;}
.ws254{word-spacing:-6.355358px;}
.ws2b4{word-spacing:-6.326665px;}
.ws1a6{word-spacing:-6.302755px;}
.ws110{word-spacing:-6.297973px;}
.ws114{word-spacing:-6.264499px;}
.ws2c6{word-spacing:-6.192768px;}
.ws2d7{word-spacing:-6.130601px;}
.ws88{word-spacing:-6.111473px;}
.ws111{word-spacing:-6.101909px;}
.ws113{word-spacing:-6.077998px;}
.ws2e4{word-spacing:-6.073216px;}
.ws233{word-spacing:-6.058870px;}
.ws232{word-spacing:-5.972793px;}
.ws290{word-spacing:-5.963229px;}
.ws6f{word-spacing:-5.556754px;}
.ws212{word-spacing:-5.461113px;}
.wsa0{word-spacing:-5.418074px;}
.ws70{word-spacing:-5.346343px;}
.ws1ac{word-spacing:-5.336779px;}
.ws73{word-spacing:-5.303305px;}
.ws2a{word-spacing:-5.302282px;}
.ws72{word-spacing:-5.298522px;}
.ws152{word-spacing:-5.293740px;}
.ws2a8{word-spacing:-5.284176px;}
.ws128{word-spacing:-5.269830px;}
.wsb8{word-spacing:-5.217227px;}
.ws17c{word-spacing:-5.078548px;}
.ws2c3{word-spacing:-5.073766px;}
.ws3e{word-spacing:-4.992471px;}
.ws153{word-spacing:-4.958996px;}
.ws2f7{word-spacing:-4.944650px;}
.wsa6{word-spacing:-4.906394px;}
.ws90{word-spacing:-4.872919px;}
.ws91{word-spacing:-4.739021px;}
.ws5f{word-spacing:-4.662509px;}
.wsdc{word-spacing:-4.600342px;}
.wse5{word-spacing:-4.461662px;}
.ws242{word-spacing:-4.327764px;}
.wse6{word-spacing:-4.322982px;}
.ws1e0{word-spacing:-4.236905px;}
.ws43{word-spacing:-4.069533px;}
.ws19d{word-spacing:-4.059969px;}
.ws160{word-spacing:-4.002584px;}
.wsb6{word-spacing:-3.993020px;}
.ws2a1{word-spacing:-3.964328px;}
.ws8a{word-spacing:-3.902161px;}
.ws127{word-spacing:-3.854340px;}
.wsb5{word-spacing:-3.839994px;}
.ws1e1{word-spacing:-3.725225px;}
.ws2e2{word-spacing:-3.672622px;}
.ws1d8{word-spacing:-3.643930px;}
.ws2f1{word-spacing:-3.629584px;}
.ws1d6{word-spacing:-3.591327px;}
.ws1d7{word-spacing:-3.390481px;}
.ws322{word-spacing:-3.385698px;}
.ws31a{word-spacing:-3.242237px;}
.wsb7{word-spacing:-3.074865px;}
.ws23{word-spacing:-2.973926px;}
.ws340{word-spacing:-2.816633px;}
.ws272{word-spacing:-2.728609px;}
.ws1a3{word-spacing:-2.534492px;}
.ws33f{word-spacing:-2.434069px;}
.ws1e6{word-spacing:-2.391030px;}
.ws176{word-spacing:-2.281043px;}
.ws1cc{word-spacing:-1.855439px;}
.ws20f{word-spacing:-1.845875px;}
.ws8c{word-spacing:-1.836311px;}
.ws1cd{word-spacing:-1.692849px;}
.ws280{word-spacing:-1.539823px;}
.ws281{word-spacing:-1.338977px;}
.ws2c2{word-spacing:-1.281592px;}
.ws300{word-spacing:-1.262464px;}
.ws283{word-spacing:-1.200297px;}
.ws2ae{word-spacing:-0.597757px;}
.ws243{word-spacing:-0.516462px;}
.ws218{word-spacing:-0.492552px;}
.ws343{word-spacing:-0.329962px;}
.ws219{word-spacing:-0.176936px;}
.ws7f{word-spacing:-0.124334px;}
.ws5a{word-spacing:0.000000px;}
.ws29d{word-spacing:0.086077px;}
.ws7a{word-spacing:0.196064px;}
.ws154{word-spacing:0.339526px;}
.ws331{word-spacing:0.444732px;}
.ws85{word-spacing:0.688617px;}
.ws156{word-spacing:1.032925px;}
.ws185{word-spacing:1.119002px;}
.wsfe{word-spacing:1.425054px;}
.ws10c{word-spacing:1.487221px;}
.wsff{word-spacing:1.621118px;}
.wsa5{word-spacing:1.812401px;}
.ws56{word-spacing:2.309735px;}
.ws177{word-spacing:2.400594px;}
.ws287{word-spacing:3.046172px;}
.wsb1{word-spacing:3.232673px;}
.ws20e{word-spacing:3.385698px;}
.ws87{word-spacing:3.409609px;}
.ws1f8{word-spacing:3.567417px;}
.ws245{word-spacing:3.710879px;}
.ws1b5{word-spacing:4.351675px;}
.ws1b4{word-spacing:4.896829px;}
.ws2f5{word-spacing:5.121586px;}
.ws336{word-spacing:6.594461px;}
.wsea{word-spacing:7.043974px;}
.wse9{word-spacing:7.058321px;}
.wseb{word-spacing:7.120487px;}
.ws8e{word-spacing:11.979060px;}
.ws5d{word-spacing:12.428574px;}
.ws26d{word-spacing:41.155159px;}
.ws26e{word-spacing:51.377002px;}
.ws270{word-spacing:51.698348px;}
.ws26a{word-spacing:51.717475px;}
.ws26b{word-spacing:76.549055px;}
.ws26c{word-spacing:95.060843px;}
.ws269{word-spacing:118.262744px;}
.ws171{word-spacing:124.150250px;}
.ws222{word-spacing:155.232762px;}
.ws224{word-spacing:155.443167px;}
.ws16b{word-spacing:161.078187px;}
.ws16f{word-spacing:178.055934px;}
.ws16c{word-spacing:201.257834px;}
.ws225{word-spacing:208.067295px;}
.ws223{word-spacing:209.348851px;}
.ws138{word-spacing:227.217948px;}
.ws21f{word-spacing:232.550751px;}
.ws16e{word-spacing:253.705987px;}
.ws133{word-spacing:266.077784px;}
.ws137{word-spacing:281.123632px;}
.ws135{word-spacing:289.838213px;}
.ws136{word-spacing:304.325533px;}
.wsf1{word-spacing:714.821277px;}
.wsef{word-spacing:715.911556px;}
._d{margin-left:-13.104895px;}
._c{margin-left:-2.560615px;}
._4{margin-left:-1.449880px;}
._1{width:1.691776px;}
._40{width:3.397080px;}
._2a{width:5.776728px;}
._2b{width:8.459464px;}
._3f{width:9.482825px;}
._1d{width:10.587481px;}
._5{width:11.790314px;}
._2{width:13.729863px;}
._8{width:15.252667px;}
._3{width:16.656401px;}
._b{width:17.821765px;}
._6{width:19.491910px;}
._a{width:20.634589px;}
._1e{width:21.729681px;}
._9{width:22.780013px;}
._13{width:24.178095px;}
._7{width:25.241787px;}
._12{width:26.253509px;}
._0{width:27.695210px;}
._11{width:29.275771px;}
._f{width:31.394224px;}
._14{width:32.828842px;}
._10{width:34.440396px;}
._2c{width:36.209758px;}
._15{width:38.285172px;}
._e{width:43.555002px;}
._39{width:75.439649px;}
._36{width:84.379936px;}
._3d{width:85.806862px;}
._3a{width:87.138150px;}
._38{width:88.213127px;}
._37{width:89.483206px;}
._3b{width:90.649996px;}
._3e{width:91.671415px;}
._3c{width:100.535191px;}
._35{width:102.746353px;}
._32{width:106.265850px;}
._34{width:118.366033px;}
._33{width:124.314748px;}
._25{width:143.040766px;}
._28{width:174.406369px;}
._31{width:179.494337px;}
._30{width:181.491269px;}
._2e{width:183.208936px;}
._29{width:185.290030px;}
._2f{width:190.037525px;}
._26{width:192.550905px;}
._2d{width:194.876833px;}
._24{width:197.876056px;}
._27{width:237.787915px;}
._23{width:304.023315px;}
._22{width:325.297143px;}
._20{width:355.824952px;}
._1f{width:357.179193px;}
._21{width:359.566330px;}
._16{width:525.900809px;}
._1b{width:613.811719px;}
._17{width:629.186564px;}
._19{width:662.055603px;}
._18{width:772.732301px;}
._1a{width:794.017606px;}
._1c{width:1997.228760px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:22.810200px;}
.fs4{font-size:26.761800px;}
.fs11{font-size:30.108600px;}
.fs8{font-size:32.280600px;}
.fsd{font-size:33.472800px;}
.fsb{font-size:35.867400px;}
.fs5{font-size:38.255400px;}
.fsf{font-size:38.256000px;}
.fs6{font-size:41.842200px;}
.fs3{font-size:42.237000px;}
.fs7{font-size:43.038000px;}
.fs9{font-size:46.050600px;}
.fsa{font-size:47.820600px;}
.fse{font-size:51.168000px;}
.fs0{font-size:57.384000px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fsc{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:47.430000px;}
.y4e{bottom:76.980015px;}
.yc9{bottom:78.406200px;}
.y2ff{bottom:78.406785px;}
.yc7{bottom:78.407586px;}
.y110{bottom:78.491386px;}
.y184{bottom:79.344197px;}
.y188{bottom:82.065189px;}
.y2ab{bottom:82.319358px;}
.y275{bottom:82.319638px;}
.yc8{bottom:83.763750px;}
.y8a{bottom:84.450754px;}
.y2c0{bottom:88.527167px;}
.y21c{bottom:89.888636px;}
.y2fe{bottom:90.397940px;}
.y214{bottom:91.079796px;}
.y4d{bottom:91.320000px;}
.y140{bottom:92.777850px;}
.y10e{bottom:92.778036px;}
.y10f{bottom:94.053450px;}
.yc6{bottom:94.139368px;}
.y183{bottom:95.075978px;}
.y354{bottom:96.688084px;}
.y187{bottom:97.798166px;}
.y2aa{bottom:97.966258px;}
.y274{bottom:97.966538px;}
.y89{bottom:100.182536px;}
.y2fd{bottom:102.303021px;}
.y2b9{bottom:104.174068px;}
.y21b{bottom:105.620417px;}
.y4c{bottom:105.629970px;}
.y213{bottom:106.726697px;}
.y10d{bottom:107.149500px;}
.y353{bottom:108.594121px;}
.yc5{bottom:109.786268px;}
.y182{bottom:110.724074px;}
.y186{bottom:113.445066px;}
.y2a9{bottom:113.698040px;}
.y273{bottom:113.699516px;}
.y2fc{bottom:114.293220px;}
.y88{bottom:115.829437px;}
.y4a{bottom:119.905636px;}
.y2b8{bottom:119.905850px;}
.y352{bottom:120.584320px;}
.y21a{bottom:121.267318px;}
.y212{bottom:122.458478px;}
.yc4{bottom:125.518050px;}
.yc3{bottom:125.519540px;}
.y2fb{bottom:126.198300px;}
.y181{bottom:126.455856px;}
.y185{bottom:129.176848px;}
.y2a8{bottom:129.346136px;}
.y272{bottom:129.346416px;}
.y87{bottom:131.562414px;}
.y351{bottom:132.573562px;}
.y2b6{bottom:133.596750px;}
.y49{bottom:134.192100px;}
.y2b7{bottom:135.552750px;}
.y2b5{bottom:135.554976px;}
.y219{bottom:136.999100px;}
.y211{bottom:138.106574px;}
.yc2{bottom:141.167636px;}
.y180{bottom:142.102756px;}
.y350{bottom:144.479599px;}
.y2a7{bottom:145.077917px;}
.y271{bottom:145.078198px;}
.y86{bottom:147.209314px;}
.y2bf{bottom:151.284532px;}
.y2b4{bottom:151.286758px;}
.y218{bottom:152.646000px;}
.y216{bottom:152.647623px;}
.y2fa{bottom:153.758329px;}
.y210{bottom:153.838356px;}
.y34f{bottom:156.469798px;}
.yc1{bottom:156.899417px;}
.y17f{bottom:157.834538px;}
.y217{bottom:158.002500px;}
.y45{bottom:159.703536px;}
.y2a6{bottom:160.724818px;}
.y270{bottom:160.725098px;}
.y18d{bottom:162.850072px;}
.y85{bottom:162.941096px;}
.y2be{bottom:166.931432px;}
.y2b3{bottom:166.933658px;}
.y34e{bottom:168.374878px;}
.y215{bottom:168.379405px;}
.y20f{bottom:169.485256px;}
.yc0{bottom:172.546318px;}
.y17e{bottom:173.567516px;}
.y44{bottom:174.075000px;}
.y2a5{bottom:176.456600px;}
.y26f{bottom:176.458076px;}
.y18c{bottom:177.136536px;}
.y84{bottom:178.587997px;}
.y34d{bottom:180.365077px;}
.y2bd{bottom:182.663214px;}
.y2b2{bottom:182.666636px;}
.y20e{bottom:185.217038px;}
.y2f9{bottom:187.518477px;}
.ybf{bottom:188.278100px;}
.y17d{bottom:189.214416px;}
.y18b{bottom:191.508000px;}
.y26e{bottom:192.104976px;}
.y2a4{bottom:192.109457px;}
.y34c{bottom:192.271114px;}
.y83{bottom:194.320974px;}
.y2bc{bottom:198.310114px;}
.y2b1{bottom:198.313536px;}
.y20d{bottom:200.865134px;}
.y22b{bottom:201.969036px;}
.y2f8{bottom:203.251454px;}
.ybe{bottom:203.925000px;}
.ybd{bottom:203.926603px;}
.y34b{bottom:204.261313px;}
.y17c{bottom:204.946198px;}
.y26d{bottom:207.836758px;}
.y2a3{bottom:207.842434px;}
.y82{bottom:209.967874px;}
.y2bb{bottom:214.043092px;}
.y2b0{bottom:214.045318px;}
.y34a{bottom:216.251512px;}
.y22a{bottom:216.340500px;}
.y20c{bottom:216.596916px;}
.ybc{bottom:219.659580px;}
.y17b{bottom:220.593098px;}
.y43{bottom:222.293758px;}
.y3a{bottom:222.295016px;}
.y26c{bottom:223.483658px;}
.y2a2{bottom:223.489335px;}
.y81{bottom:225.699656px;}
.y349{bottom:228.156592px;}
.y2af{bottom:229.692218px;}
.y20b{bottom:232.243816px;}
.y2f7{bottom:234.630136px;}
.ybb{bottom:235.306480px;}
.y17a{bottom:236.326076px;}
.y42{bottom:237.940658px;}
.y39{bottom:237.941916px;}
.y26b{bottom:239.216636px;}
.y2a1{bottom:239.221116px;}
.y348{bottom:240.147747px;}
.y80{bottom:241.346557px;}
.y2ba{bottom:245.421774px;}
.y2ae{bottom:245.424000px;}
.y20a{bottom:247.975598px;}
.yba{bottom:251.038262px;}
.y179{bottom:251.972976px;}
.y347{bottom:252.052828px;}
.y41{bottom:253.673636px;}
.y38{bottom:253.673698px;}
.y26a{bottom:254.863536px;}
.y2a0{bottom:254.868017px;}
.y7f{bottom:257.079534px;}
.y209{bottom:263.623694px;}
.y346{bottom:264.043026px;}
.yb9{bottom:266.685163px;}
.y178{bottom:267.704758px;}
.y2f6{bottom:268.390284px;}
.y40{bottom:269.320536px;}
.y37{bottom:269.320598px;}
.y269{bottom:270.595318px;}
.y29f{bottom:270.600994px;}
.y7e{bottom:272.726434px;}
.y345{bottom:276.033225px;}
.y2cc{bottom:277.312500px;}
.y2cb{bottom:279.098536px;}
.y2cd{bottom:279.099000px;}
.y208{bottom:279.355476px;}
.y177{bottom:283.351658px;}
.y2f5{bottom:284.123262px;}
.y3f{bottom:285.052318px;}
.y36{bottom:285.053576px;}
.y268{bottom:286.242218px;}
.y29e{bottom:286.247894px;}
.y344{bottom:287.939262px;}
.y7d{bottom:288.458216px;}
.y2c9{bottom:291.600000px;}
.y2ca{bottom:293.385000px;}
.y2c8{bottom:293.386536px;}
.y207{bottom:295.002376px;}
.yb8{bottom:298.065040px;}
.y176{bottom:299.084636px;}
.y2f4{bottom:299.770162px;}
.y343{bottom:299.929461px;}
.y266{bottom:299.934000px;}
.y3e{bottom:300.699218px;}
.y35{bottom:300.700476px;}
.y267{bottom:301.974000px;}
.y265{bottom:301.975100px;}
.y29d{bottom:301.979676px;}
.y7c{bottom:304.105116px;}
.y2c6{bottom:305.971500px;}
.y2c7{bottom:307.758000px;}
.y2c5{bottom:307.758036px;}
.y206{bottom:310.734158px;}
.y342{bottom:311.834541px;}
.yb7{bottom:313.796822px;}
.y3c{bottom:314.391000px;}
.y175{bottom:314.731536px;}
.y2f3{bottom:315.501944px;}
.y263{bottom:315.666000px;}
.y3d{bottom:316.431000px;}
.y34{bottom:316.432258px;}
.y264{bottom:317.622000px;}
.y262{bottom:317.622158px;}
.y29c{bottom:317.626577px;}
.y7b{bottom:319.838094px;}
.y2c3{bottom:320.343000px;}
.y2c2{bottom:322.129036px;}
.y2c4{bottom:322.129500px;}
.y341{bottom:323.825696px;}
.y205{bottom:326.381059px;}
.y174{bottom:330.463318px;}
.y2f2{bottom:331.148844px;}
.y33{bottom:332.079158px;}
.y261{bottom:333.355136px;}
.y29b{bottom:333.359554px;}
.y7a{bottom:335.484994px;}
.y340{bottom:335.730777px;}
.y2c1{bottom:336.415500px;}
.y204{bottom:342.114036px;}
.y173{bottom:346.110218px;}
.y2f1{bottom:346.881822px;}
.y33f{bottom:347.720976px;}
.y32{bottom:347.812136px;}
.y260{bottom:349.002036px;}
.y29a{bottom:349.006454px;}
.yb6{bottom:350.023318px;}
.y79{bottom:351.216776px;}
.y203{bottom:357.760936px;}
.y33e{bottom:359.711174px;}
.y172{bottom:361.842000px;}
.y170{bottom:361.848877px;}
.y2f0{bottom:362.528722px;}
.y31{bottom:363.459036px;}
.y25f{bottom:364.733818px;}
.y299{bottom:364.738236px;}
.yb5{bottom:365.755100px;}
.y78{bottom:366.863676px;}
.y171{bottom:367.114500px;}
.y33d{bottom:371.617211px;}
.y202{bottom:373.492718px;}
.y16f{bottom:377.496973px;}
.y30{bottom:379.190818px;}
.y25e{bottom:380.380718px;}
.y298{bottom:380.385137px;}
.yb4{bottom:381.402000px;}
.yb2{bottom:381.403198px;}
.y77{bottom:382.595458px;}
.y33c{bottom:383.607410px;}
.yb3{bottom:386.758500px;}
.y201{bottom:389.224500px;}
.y1ff{bottom:389.225818px;}
.y16e{bottom:393.228754px;}
.y2ef{bottom:393.907404px;}
.y25c{bottom:394.158000px;}
.y200{bottom:394.497000px;}
.y3b{bottom:394.837718px;}
.y33b{bottom:395.512490px;}
.y25d{bottom:396.112500px;}
.y25b{bottom:396.113818px;}
.y297{bottom:396.118114px;}
.yb1{bottom:397.134980px;}
.y76{bottom:398.243554px;}
.y1fe{bottom:404.872718px;}
.y33a{bottom:407.502689px;}
.y16d{bottom:408.875655px;}
.y2f{bottom:410.569500px;}
.y25a{bottom:411.760718px;}
.y296{bottom:411.765014px;}
.yb0{bottom:412.783076px;}
.y75{bottom:413.975336px;}
.y339{bottom:419.493844px;}
.y1fd{bottom:420.604500px;}
.y16c{bottom:424.607437px;}
.y258{bottom:425.536500px;}
.y259{bottom:427.492500px;}
.y257{bottom:427.494158px;}
.y295{bottom:427.496796px;}
.y2ee{bottom:427.752434px;}
.yaf{bottom:428.514858px;}
.y74{bottom:429.622236px;}
.y338{bottom:431.398925px;}
.y1fb{bottom:436.255296px;}
.y16b{bottom:440.255532px;}
.y1fc{bottom:441.609000px;}
.y256{bottom:443.227136px;}
.y294{bottom:443.228578px;}
.y337{bottom:443.389124px;}
.yae{bottom:444.161758px;}
.y73{bottom:445.354018px;}
.y1fa{bottom:451.987078px;}
.y336{bottom:455.295160px;}
.y16a{bottom:455.987314px;}
.y255{bottom:458.874036px;}
.y293{bottom:458.875478px;}
.y2ed{bottom:459.132312px;}
.yad{bottom:459.893540px;}
.y72{bottom:461.086996px;}
.y335{bottom:467.285359px;}
.y1f9{bottom:467.633978px;}
.y2e{bottom:470.013000px;}
.y2d{bottom:470.013072px;}
.y169{bottom:471.634215px;}
.y254{bottom:474.605818px;}
.y292{bottom:474.608456px;}
.yac{bottom:475.541636px;}
.y71{bottom:476.733896px;}
.y334{bottom:479.275558px;}
.y1f8{bottom:483.366956px;}
.y2c{bottom:484.384536px;}
.y168{bottom:487.365997px;}
.y253{bottom:490.252718px;}
.y291{bottom:490.255356px;}
.y2ec{bottom:490.510994px;}
.y333{bottom:491.180638px;}
.yab{bottom:491.273417px;}
.y70{bottom:492.465678px;}
.y2a{bottom:496.969500px;}
.y2b{bottom:498.756000px;}
.y29{bottom:498.757859px;}
.y1f7{bottom:499.013856px;}
.y1a7{bottom:501.992554px;}
.y1d3{bottom:503.011016px;}
.y167{bottom:503.014092px;}
.y332{bottom:503.171794px;}
.y251{bottom:503.943000px;}
.y252{bottom:505.984500px;}
.y250{bottom:505.985636px;}
.y290{bottom:505.987138px;}
.y2eb{bottom:506.159090px;}
.yaa{bottom:506.920318px;}
.y6f{bottom:508.112578px;}
.y28{bottom:513.129323px;}
.y1f6{bottom:514.745638px;}
.y331{bottom:515.076874px;}
.y1a6{bottom:517.724336px;}
.y1d2{bottom:518.742798px;}
.y166{bottom:518.745874px;}
.y24f{bottom:521.632536px;}
.y28f{bottom:521.634038px;}
.y2ea{bottom:521.890872px;}
.ya9{bottom:522.652100px;}
.y6e{bottom:523.845555px;}
.y330{bottom:527.067073px;}
.y27{bottom:527.415787px;}
.y1f5{bottom:530.392538px;}
.y1a5{bottom:533.371236px;}
.y1d1{bottom:534.389698px;}
.y165{bottom:534.392775px;}
.y24e{bottom:537.364318px;}
.y28e{bottom:537.367016px;}
.ya8{bottom:538.300658px;}
.y32f{bottom:538.972153px;}
.y6d{bottom:539.492456px;}
.y26{bottom:541.787251px;}
.y1f4{bottom:546.125516px;}
.y1a4{bottom:549.103018px;}
.y1d0{bottom:550.121480px;}
.y164{bottom:550.124557px;}
.y32e{bottom:550.963308px;}
.y24d{bottom:553.011218px;}
.y28d{bottom:553.013916px;}
.y2e9{bottom:553.269554px;}
.ya7{bottom:554.033636px;}
.y6c{bottom:555.224238px;}
.y25{bottom:556.158715px;}
.yee{bottom:556.497000px;}
.yed{bottom:556.498536px;}
.y105{bottom:556.501574px;}
.y1f3{bottom:561.772416px;}
.y106{bottom:561.855000px;}
.y32d{bottom:562.953507px;}
.y1a3{bottom:564.751114px;}
.y1cf{bottom:565.769576px;}
.y163{bottom:565.771457px;}
.y1e{bottom:566.619037px;}
.y24b{bottom:566.701500px;}
.y24c{bottom:568.743000px;}
.y24a{bottom:568.743917px;}
.y28c{bottom:568.745698px;}
.ya6{bottom:569.680536px;}
.y24{bottom:570.445179px;}
.y6b{bottom:570.871138px;}
.yec{bottom:572.230318px;}
.y104{bottom:572.233356px;}
.y32c{bottom:574.858588px;}
.y1f2{bottom:577.504198px;}
.y1d{bottom:579.460419px;}
.y1a2{bottom:580.482896px;}
.y1ce{bottom:581.501358px;}
.y162{bottom:581.504434px;}
.y249{bottom:584.390818px;}
.y28b{bottom:584.392598px;}
.y23{bottom:584.816643px;}
.ya5{bottom:585.412318px;}
.y6a{bottom:586.604115px;}
.y32b{bottom:586.848786px;}
.yeb{bottom:587.877218px;}
.y103{bottom:587.880256px;}
.y1c{bottom:592.300844px;}
.y1f1{bottom:593.151098px;}
.y2e8{bottom:594.768270px;}
.y1a1{bottom:596.129796px;}
.y1cd{bottom:597.148258px;}
.y161{bottom:597.151335px;}
.y32a{bottom:598.754823px;}
.y22{bottom:599.188108px;}
.y248{bottom:600.122600px;}
.y28a{bottom:600.125576px;}
.ya4{bottom:601.144100px;}
.y69{bottom:602.251016px;}
.ye9{bottom:603.609000px;}
.ye8{bottom:603.611976px;}
.y102{bottom:603.612038px;}
.y1b{bottom:605.141269px;}
.yea{bottom:608.881500px;}
.y1f0{bottom:608.884076px;}
.y2e7{bottom:610.501248px;}
.y329{bottom:610.745022px;}
.y1a0{bottom:611.861578px;}
.y1cc{bottom:612.880040px;}
.y160{bottom:612.883116px;}
.y21{bottom:613.474572px;}
.y246{bottom:613.813500px;}
.y247{bottom:615.769500px;}
.y245{bottom:615.771098px;}
.y289{bottom:615.772476px;}
.ya3{bottom:616.791000px;}
.ya1{bottom:616.791036px;}
.y1a{bottom:617.982650px;}
.y68{bottom:617.982798px;}
.ye7{bottom:619.258876px;}
.y101{bottom:619.260134px;}
.ya2{bottom:622.147500px;}
.y328{bottom:622.735221px;}
.y1ef{bottom:624.530976px;}
.y2e6{bottom:626.148148px;}
.y19f{bottom:627.508478px;}
.y20{bottom:627.846036px;}
.y1cb{bottom:628.528136px;}
.y15f{bottom:628.530017px;}
.y19{bottom:630.823075px;}
.y244{bottom:631.504076px;}
.y288{bottom:631.504258px;}
.ya0{bottom:632.522818px;}
.y67{bottom:633.629698px;}
.y327{bottom:634.641258px;}
.ye6{bottom:634.990658px;}
.y100{bottom:634.991916px;}
.y1ee{bottom:640.262758px;}
.y2e5{bottom:641.879930px;}
.y1f{bottom:642.217500px;}
.y19e{bottom:643.241456px;}
.y18{bottom:643.663500px;}
.y1ca{bottom:644.259917px;}
.y15e{bottom:644.262994px;}
.y326{bottom:646.631456px;}
.y243{bottom:647.150976px;}
.y287{bottom:647.151158px;}
.y9f{bottom:648.169718px;}
.y66{bottom:649.361480px;}
.ye5{bottom:650.637559px;}
.yff{bottom:650.638816px;}
.y1ed{bottom:655.909658px;}
.y2e4{bottom:657.526830px;}
.y325{bottom:658.536537px;}
.y19d{bottom:658.888356px;}
.y1c9{bottom:659.906818px;}
.y15d{bottom:659.909894px;}
.y242{bottom:662.882758px;}
.y286{bottom:662.884136px;}
.y9e{bottom:663.901500px;}
.y9c{bottom:663.903724px;}
.y65{bottom:665.009576px;}
.ye4{bottom:666.370536px;}
.yfe{bottom:666.370598px;}
.y9d{bottom:669.174000px;}
.y324{bottom:670.526736px;}
.y37a{bottom:670.540012px;}
.y17{bottom:671.470500px;}
.y1ec{bottom:671.642636px;}
.y2e3{bottom:673.259808px;}
.y19c{bottom:674.620138px;}
.y1c8{bottom:675.638600px;}
.y15c{bottom:675.641676px;}
.y241{bottom:678.529658px;}
.y285{bottom:678.531036px;}
.y9b{bottom:679.550625px;}
.y64{bottom:680.741358px;}
.ye3{bottom:682.102318px;}
.yfd{bottom:682.103576px;}
.y323{bottom:682.432772px;}
.y379{bottom:682.445092px;}
.y1eb{bottom:687.289536px;}
.y2e2{bottom:688.906708px;}
.y19b{bottom:690.267038px;}
.y1c7{bottom:691.285500px;}
.y1c5{bottom:691.285658px;}
.y15b{bottom:691.288577px;}
.y240{bottom:694.262636px;}
.y284{bottom:694.262818px;}
.y322{bottom:694.422971px;}
.y378{bottom:694.435291px;}
.y9a{bottom:695.282406px;}
.y63{bottom:696.388258px;}
.y1c6{bottom:696.642000px;}
.ye2{bottom:697.749218px;}
.yfc{bottom:697.750476px;}
.y1ea{bottom:703.021318px;}
.y2e1{bottom:704.638490px;}
.y19a{bottom:706.000016px;}
.y321{bottom:706.413170px;}
.y377{bottom:706.426446px;}
.y1c4{bottom:707.018636px;}
.y15a{bottom:707.021554px;}
.y23f{bottom:709.909536px;}
.y283{bottom:709.909718px;}
.y99{bottom:710.930502px;}
.y62{bottom:712.120040px;}
.ye0{bottom:713.481000px;}
.ydf{bottom:713.481980px;}
.yfb{bottom:713.482258px;}
.y320{bottom:718.318250px;}
.y376{bottom:718.331527px;}
.y1e9{bottom:718.668218px;}
.ye1{bottom:718.752000px;}
.y2e0{bottom:720.285390px;}
.y16{bottom:720.964075px;}
.y199{bottom:721.646916px;}
.y1c3{bottom:722.750417px;}
.y159{bottom:722.753336px;}
.y281{bottom:725.635824px;}
.y23e{bottom:725.641318px;}
.y282{bottom:725.641500px;}
.y98{bottom:726.662284px;}
.y61{bottom:727.768136px;}
.yfa{bottom:729.129158px;}
.yde{bottom:729.130076px;}
.y31f{bottom:730.309405px;}
.y375{bottom:730.321725px;}
.y15{bottom:733.804500px;}
.y1e8{bottom:734.401258px;}
.y2df{bottom:736.018368px;}
.y198{bottom:737.378698px;}
.y14{bottom:738.057000px;}
.y134{bottom:738.397318px;}
.y158{bottom:738.400236px;}
.y280{bottom:741.282724px;}
.y23d{bottom:741.288218px;}
.y31e{bottom:742.214486px;}
.y374{bottom:742.226806px;}
.y97{bottom:742.309185px;}
.y60{bottom:743.499917px;}
.y11b{bottom:744.690980px;}
.ydd{bottom:744.861858px;}
.yf9{bottom:744.862136px;}
.y13{bottom:746.646000px;}
.y1e7{bottom:750.048158px;}
.y12{bottom:750.897000px;}
.y197{bottom:753.025598px;}
.y133{bottom:754.129100px;}
.y157{bottom:754.132018px;}
.y31d{bottom:754.204685px;}
.y373{bottom:754.217961px;}
.y23b{bottom:754.980000px;}
.y27f{bottom:757.014506px;}
.y23c{bottom:757.020000px;}
.y23a{bottom:757.021100px;}
.y96{bottom:758.040966px;}
.y5f{bottom:759.146818px;}
.y11{bottom:759.486000px;}
.y11a{bottom:760.339076px;}
.ydc{bottom:760.508758px;}
.yf8{bottom:760.509036px;}
.y10{bottom:763.738500px;}
.y1e6{bottom:765.781136px;}
.y31c{bottom:766.194883px;}
.y372{bottom:766.208160px;}
.y2de{bottom:767.397050px;}
.y131{bottom:767.820000px;}
.y196{bottom:768.758576px;}
.y132{bottom:769.776000px;}
.y130{bottom:769.777258px;}
.y1c1{bottom:769.777318px;}
.y156{bottom:769.780114px;}
.yf{bottom:772.412575px;}
.y27e{bottom:772.661406px;}
.y239{bottom:772.668000px;}
.y237{bottom:772.669536px;}
.y95{bottom:773.687867px;}
.y5e{bottom:774.878600px;}
.y1c2{bottom:775.134000px;}
.y119{bottom:776.070858px;}
.ydb{bottom:776.240540px;}
.yf7{bottom:776.240818px;}
.y238{bottom:778.024500px;}
.y31b{bottom:778.100920px;}
.y371{bottom:778.113240px;}
.y1e5{bottom:781.428036px;}
.y195{bottom:784.405476px;}
.ye{bottom:785.253000px;}
.y12f{bottom:785.509040px;}
.y1c0{bottom:785.509100px;}
.y155{bottom:785.511896px;}
.y27d{bottom:788.394384px;}
.y236{bottom:788.401318px;}
.y5c{bottom:788.569500px;}
.y94{bottom:789.420845px;}
.yd{bottom:789.505500px;}
.y31a{bottom:790.091119px;}
.y370{bottom:790.104395px;}
.y5d{bottom:790.525500px;}
.y5b{bottom:790.528634px;}
.y18a{bottom:790.951536px;}
.y118{bottom:791.717758px;}
.yf6{bottom:791.887718px;}
.yda{bottom:791.888636px;}
.y1e4{bottom:797.159818px;}
.yc{bottom:798.094500px;}
.y194{bottom:800.137258px;}
.y1bf{bottom:801.156000px;}
.y12e{bottom:801.157136px;}
.y2dd{bottom:801.157198px;}
.y1bd{bottom:801.157318px;}
.y154{bottom:801.158796px;}
.y319{bottom:801.996200px;}
.y36f{bottom:802.009476px;}
.yb{bottom:802.347000px;}
.y27c{bottom:804.041284px;}
.y235{bottom:804.048218px;}
.y93{bottom:805.066549px;}
.y189{bottom:805.323000px;}
.y5a{bottom:806.260416px;}
.y1be{bottom:806.514000px;}
.y117{bottom:807.449540px;}
.yf5{bottom:807.619500px;}
.yd9{bottom:807.620417px;}
.yf3{bottom:807.620758px;}
.y1e3{bottom:812.806718px;}
.yf4{bottom:812.892000px;}
.y318{bottom:813.987355px;}
.y36e{bottom:813.999674px;}
.y193{bottom:815.784158px;}
.y12d{bottom:816.888917px;}
.y2dc{bottom:816.888980px;}
.y1bc{bottom:816.889100px;}
.y153{bottom:816.890578px;}
.y233{bottom:817.738500px;}
.y27b{bottom:819.773066px;}
.y232{bottom:819.779540px;}
.y234{bottom:819.780000px;}
.y92{bottom:820.798331px;}
.y59{bottom:821.907316px;}
.y9{bottom:822.757690px;}
.y116{bottom:823.097636px;}
.yd8{bottom:823.267318px;}
.yf2{bottom:823.267658px;}
.y317{bottom:825.892435px;}
.y36d{bottom:825.904755px;}
.y1e2{bottom:828.539818px;}
.ya{bottom:829.729500px;}
.y192{bottom:831.517136px;}
.y12c{bottom:832.535818px;}
.y1bb{bottom:832.536000px;}
.y1b9{bottom:832.536910px;}
.y2db{bottom:832.537076px;}
.y152{bottom:832.537478px;}
.y27a{bottom:835.419966px;}
.y231{bottom:835.427636px;}
.y58{bottom:837.639098px;}
.y316{bottom:837.882634px;}
.y1ba{bottom:837.892500px;}
.y36c{bottom:837.895910px;}
.y115{bottom:838.829417px;}
.yd7{bottom:838.999100px;}
.yf1{bottom:839.000636px;}
.y8{bottom:842.145000px;}
.y6{bottom:842.146650px;}
.y1e1{bottom:844.186718px;}
.y191{bottom:847.164036px;}
.y12b{bottom:848.267600px;}
.y1b8{bottom:848.268692px;}
.y2da{bottom:848.268858px;}
.y151{bottom:848.270456px;}
.y7{bottom:849.202500px;}
.y315{bottom:849.872833px;}
.y36b{bottom:849.886109px;}
.y279{bottom:851.152943px;}
.y230{bottom:851.159417px;}
.y91{bottom:852.178209px;}
.y57{bottom:853.287194px;}
.y114{bottom:854.476318px;}
.yd6{bottom:854.646000px;}
.yf0{bottom:854.647536px;}
.y1e0{bottom:859.918500px;}
.y4{bottom:861.619500px;}
.y314{bottom:861.778870px;}
.y36a{bottom:861.791189px;}
.y190{bottom:862.895818px;}
.y2d9{bottom:863.915758px;}
.y12a{bottom:863.916104px;}
.y1b7{bottom:863.916788px;}
.y150{bottom:863.917356px;}
.y278{bottom:866.799844px;}
.y22f{bottom:866.806318px;}
.yd5{bottom:868.336500px;}
.y5{bottom:868.591500px;}
.y56{bottom:869.018976px;}
.y113{bottom:870.208100px;}
.yd4{bottom:870.379318px;}
.y313{bottom:873.769068px;}
.y369{bottom:873.781388px;}
.y18f{bottom:878.542718px;}
.y2d8{bottom:879.647540px;}
.y129{bottom:879.647886px;}
.y1b6{bottom:879.648569px;}
.y14f{bottom:879.649138px;}
.y277{bottom:882.531626px;}
.y22e{bottom:882.538100px;}
.y90{bottom:883.556891px;}
.y55{bottom:884.665876px;}
.y312{bottom:885.674149px;}
.y368{bottom:885.687425px;}
.y112{bottom:885.855000px;}
.yd3{bottom:886.026218px;}
.y18e{bottom:894.274500px;}
.y128{bottom:895.293591px;}
.y1b5{bottom:895.294273px;}
.y2d7{bottom:895.295636px;}
.y14e{bottom:895.296038px;}
.y22d{bottom:896.230500px;}
.y311{bottom:897.664347px;}
.y367{bottom:897.677624px;}
.y276{bottom:898.178526px;}
.y22c{bottom:898.185000px;}
.y3{bottom:899.036716px;}
.y54{bottom:900.397658px;}
.y229{bottom:900.398456px;}
.yef{bottom:901.753363px;}
.yd2{bottom:901.758000px;}
.y310{bottom:909.655503px;}
.y366{bottom:909.667822px;}
.y127{bottom:911.025373px;}
.y1b4{bottom:911.026056px;}
.y2d6{bottom:911.027417px;}
.y14d{bottom:911.029016px;}
.y228{bottom:913.323999px;}
.y8f{bottom:916.041424px;}
.y53{bottom:916.044559px;}
.y30f{bottom:921.560583px;}
.y365{bottom:921.572903px;}
.y2{bottom:924.888000px;}
.y227{bottom:926.164424px;}
.y13f{bottom:926.419728px;}
.y126{bottom:926.673469px;}
.y1b3{bottom:926.674152px;}
.y2d5{bottom:926.674318px;}
.y14c{bottom:926.675916px;}
.y1df{bottom:927.950572px;}
.y8e{bottom:931.774402px;}
.y52{bottom:931.777536px;}
.y2ad{bottom:931.861536px;}
.y30e{bottom:933.550782px;}
.y364{bottom:933.564058px;}
.y13e{bottom:939.261109px;}
.y1de{bottom:942.237036px;}
.y10c{bottom:942.238303px;}
.y125{bottom:942.405251px;}
.y1b2{bottom:942.405934px;}
.y2d4{bottom:942.406100px;}
.y14b{bottom:942.407698px;}
.y30d{bottom:945.456819px;}
.y363{bottom:945.469138px;}
.y226{bottom:945.893690px;}
.y2ac{bottom:946.233000px;}
.y8d{bottom:947.421302px;}
.y51{bottom:947.424436px;}
.y13d{bottom:952.101534px;}
.y10b{bottom:955.078728px;}
.y2d2{bottom:956.097000px;}
.y1dd{bottom:956.608500px;}
.y30c{bottom:957.447017px;}
.y362{bottom:957.459337px;}
.y1{bottom:957.798000px;}
.y124{bottom:958.052151px;}
.y1b1{bottom:958.052834px;}
.y2d3{bottom:958.053000px;}
.y14a{bottom:958.054598px;}
.y2d1{bottom:958.054718px;}
.y8c{bottom:963.153084px;}
.y50{bottom:963.156218px;}
.y13c{bottom:964.941959px;}
.y225{bottom:965.622000px;}
.y223{bottom:965.622808px;}
.y10a{bottom:967.920109px;}
.y30b{bottom:969.352098px;}
.y361{bottom:969.365374px;}
.y224{bottom:969.874500px;}
.y2d0{bottom:971.745000px;}
.y123{bottom:973.783933px;}
.y1b0{bottom:973.784616px;}
.y2cf{bottom:973.786500px;}
.y149{bottom:973.787576px;}
.y13b{bottom:977.783341px;}
.y1dc{bottom:977.783650px;}
.y8b{bottom:978.884866px;}
.y4f{bottom:978.888000px;}
.y2ce{bottom:979.059000px;}
.y109{bottom:980.845652px;}
.y30a{bottom:981.342297px;}
.y360{bottom:981.355573px;}
.y222{bottom:985.351118px;}
.y122{bottom:989.430833px;}
.y1af{bottom:989.431516px;}
.y148{bottom:989.434476px;}
.y13a{bottom:990.708884px;}
.y1db{bottom:990.710150px;}
.y309{bottom:993.333452px;}
.y35f{bottom:993.345772px;}
.y108{bottom:993.686077px;}
.y221{bottom:998.192499px;}
.y139{bottom:1003.549309px;}
.y1da{bottom:1003.550575px;}
.y48{bottom:1003.719000px;}
.y121{bottom:1005.163810px;}
.y1ae{bottom:1005.164494px;}
.y147{bottom:1005.166258px;}
.y308{bottom:1005.238532px;}
.y35e{bottom:1005.250852px;}
.y107{bottom:1006.527459px;}
.y220{bottom:1011.032924px;}
.y1d9{bottom:1016.391000px;}
.y307{bottom:1017.228731px;}
.y35d{bottom:1017.242007px;}
.ycf{bottom:1019.367884px;}
.y120{bottom:1020.810711px;}
.y1ad{bottom:1020.811394px;}
.y146{bottom:1020.813158px;}
.y138{bottom:1023.278575px;}
.y306{bottom:1029.133812px;}
.y35c{bottom:1029.147088px;}
.y21f{bottom:1030.762190px;}
.yce{bottom:1032.208309px;}
.y137{bottom:1036.119000px;}
.y11f{bottom:1036.542493px;}
.y1ac{bottom:1036.543176px;}
.y145{bottom:1036.546136px;}
.y1d8{bottom:1040.371500px;}
.y305{bottom:1041.124967px;}
.y35b{bottom:1041.137286px;}
.ycd{bottom:1045.049690px;}
.y47{bottom:1045.474500px;}
.y21e{bottom:1050.490500px;}
.y11e{bottom:1052.189393px;}
.y1ab{bottom:1052.190076px;}
.y144{bottom:1052.193036px;}
.y304{bottom:1053.115165px;}
.y35a{bottom:1053.127485px;}
.y1d7{bottom:1055.849536px;}
.y136{bottom:1055.849608px;}
.ycc{bottom:1064.778000px;}
.y303{bottom:1065.020246px;}
.y359{bottom:1065.033522px;}
.y11d{bottom:1067.922370px;}
.y1aa{bottom:1067.923054px;}
.y143{bottom:1067.924818px;}
.y1d6{bottom:1070.136000px;}
.y135{bottom:1070.136072px;}
.y21d{bottom:1074.982500px;}
.y302{bottom:1077.010445px;}
.y358{bottom:1077.023721px;}
.y1a9{bottom:1083.569954px;}
.y142{bottom:1083.571718px;}
.y1d5{bottom:1084.507500px;}
.ycb{bottom:1084.507536px;}
.y46{bottom:1087.312500px;}
.y301{bottom:1088.916481px;}
.y357{bottom:1088.928801px;}
.y1d4{bottom:1089.268500px;}
.yca{bottom:1098.879000px;}
.y11c{bottom:1099.301053px;}
.y1a8{bottom:1099.301736px;}
.y141{bottom:1099.303500px;}
.y300{bottom:1100.906680px;}
.y356{bottom:1100.919000px;}
.y4b{bottom:1127.504970px;}
.y355{bottom:1128.627499px;}
.y37b{bottom:1128.640776px;}
.yd0{bottom:1128.641565px;}
.y111{bottom:1128.642000px;}
.h18{height:17.823359px;}
.h17{height:20.052328px;}
.h6{height:23.521113px;}
.h13{height:23.887688px;}
.h16{height:26.462637px;}
.hc{height:28.371621px;}
.hd{height:31.452560px;}
.hf{height:31.524082px;}
.h15{height:32.723967px;}
.h7{height:33.622910px;}
.h14{height:33.623438px;}
.h1a{height:33.633320px;}
.h11{height:34.478653px;}
.h12{height:34.947744px;}
.h8{height:36.224038px;}
.h19{height:36.227864px;}
.h9{height:36.564511px;}
.ha{height:36.775371px;}
.h5{height:37.122363px;}
.hb{height:37.826367px;}
.he{height:42.029824px;}
.h2{height:50.435156px;}
.h4{height:55.689609px;}
.h3{height:70.925098px;}
.h10{height:73.551270px;}
.h1{height:1190.250000px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xbd{left:61.483350px;}
.x18{left:62.758950px;}
.x2e{left:63.949500px;}
.x49{left:65.395200px;}
.x88{left:66.588090px;}
.x4c{left:69.901686px;}
.x95{left:71.688150px;}
.x2b{left:74.323389px;}
.x96{left:76.705500px;}
.x69{left:78.833117px;}
.x4d{left:80.446787px;}
.xbc{left:82.319212px;}
.xa0{left:83.423550px;}
.x68{left:84.700539px;}
.xa1{left:92.607750px;}
.x97{left:94.138500px;}
.x50{left:96.944850px;}
.x51{left:101.962200px;}
.x4b{left:103.747195px;}
.x4a{left:109.614617px;}
.x4e{left:116.077867px;}
.x8a{left:134.192100px;}
.xb6{left:141.845550px;}
.xba{left:142.867264px;}
.x8b{left:144.226650px;}
.x17{left:146.777850px;}
.xb7{left:150.860478px;}
.x2{left:152.729965px;}
.x6e{left:155.026504px;}
.x1d{left:156.130544px;}
.x6d{left:158.853000px;}
.xb4{left:160.470000px;}
.x8e{left:166.762500px;}
.x81{left:171.694500px;}
.xb5{left:173.310000px;}
.x73{left:178.242000px;}
.x5c{left:187.767281px;}
.x74{left:191.083500px;}
.x5b{left:196.270500px;}
.xb8{left:201.202419px;}
.x3{left:214.807693px;}
.xad{left:219.657000px;}
.xb9{left:228.669376px;}
.x90{left:231.477000px;}
.x91{left:236.494500px;}
.x71{left:238.533260px;}
.x6f{left:240.064432px;}
.x52{left:241.426500px;}
.x92{left:245.253000px;}
.x53{left:247.719000px;}
.x4{left:250.015500px;}
.x93{left:255.543000px;}
.x87{left:257.074500px;}
.x1c{left:258.516887px;}
.x54{left:262.941000px;}
.x5{left:266.343000px;}
.x84{left:273.402000px;}
.x89{left:277.398000px;}
.x8f{left:282.246000px;}
.x85{left:283.606500px;}
.xd{left:285.732000px;}
.x5e{left:288.026077px;}
.x30{left:289.981848px;}
.x5d{left:291.598175px;}
.xe{left:292.791000px;}
.x8c{left:297.382500px;}
.x34{left:300.189000px;}
.x98{left:301.380000px;}
.x20{left:302.995500px;}
.x72{left:306.904267px;}
.x99{left:311.158500px;}
.x1e{left:317.448784px;}
.x94{left:325.360500px;}
.x31{left:332.160164px;}
.x9a{left:333.268500px;}
.x33{left:336.330000px;}
.x9b{left:338.371500px;}
.x35{left:340.680000px;}
.x32{left:342.624000px;}
.x8d{left:348.406500px;}
.xa3{left:352.063500px;}
.x36{left:358.611000px;}
.x19{left:359.797785px;}
.x9c{left:364.989000px;}
.xf{left:367.284590px;}
.x37{left:369.835500px;}
.x9d{left:373.747500px;}
.x9e{left:378.765000px;}
.x70{left:380.292470px;}
.xa4{left:387.013500px;}
.x6{left:388.630500px;}
.x60{left:390.922583px;}
.xa5{left:392.031000px;}
.x5f{left:394.494681px;}
.xb1{left:397.389000px;}
.xa6{left:400.791000px;}
.xbb{left:403.083059px;}
.x7{left:405.552000px;}
.x82{left:409.719000px;}
.x38{left:410.824500px;}
.x7f{left:412.356000px;}
.x9f{left:413.376000px;}
.x21{left:415.842000px;}
.x80{left:416.947500px;}
.x22{left:420.435000px;}
.xb2{left:423.070500px;}
.x39{left:424.602000px;}
.x83{left:426.132000px;}
.x4f{left:427.918500px;}
.x10{left:430.127418px;}
.xb3{left:433.956000px;}
.x23{left:440.079000px;}
.xcb{left:441.629970px;}
.x24{left:444.585000px;}
.x25{left:452.494500px;}
.x26{left:457.002000px;}
.x2c{left:459.888932px;}
.x11{left:461.763000px;}
.xbf{left:464.990789px;}
.x12{left:468.312000px;}
.xaa{left:471.118500px;}
.x75{left:473.839500px;}
.x3a{left:477.834934px;}
.x8{left:483.277072px;}
.xbe{left:484.463744px;}
.x76{left:486.681000px;}
.x2d{left:488.976000px;}
.x57{left:491.017500px;}
.xab{left:493.228500px;}
.x61{left:494.755389px;}
.x77{left:496.119000px;}
.xac{left:498.246000px;}
.x27{left:501.732000px;}
.x58{left:503.008500px;}
.x28{left:506.325000px;}
.xc5{left:508.189743px;}
.x1a{left:509.380908px;}
.x42{left:514.063500px;}
.xc4{left:521.200405px;}
.x43{left:524.692500px;}
.x3e{left:526.903500px;}
.xcc{left:528.089310px;}
.x59{left:533.962500px;}
.x3f{left:536.257500px;}
.x5a{left:539.064000px;}
.x6a{left:545.697000px;}
.x13{left:554.880879px;}
.xcd{left:559.383183px;}
.xa2{left:562.195500px;}
.x2f{left:563.295743px;}
.x3b{left:566.532000px;}
.x9{left:569.169000px;}
.x78{left:575.206500px;}
.x3c{left:581.074500px;}
.xa{left:585.070500px;}
.x63{left:588.722128px;}
.x62{left:592.294226px;}
.x7e{left:597.741000px;}
.x79{left:603.013500px;}
.x45{left:604.204500px;}
.x40{left:610.923000px;}
.x41{left:616.024500px;}
.x1b{left:618.229954px;}
.x46{left:620.362500px;}
.x14{left:623.421571px;}
.x15{left:633.883500px;}
.xc1{left:635.662474px;}
.xce{left:638.468572px;}
.x16{left:640.176000px;}
.xca{left:643.826176px;}
.xcf{left:652.500652px;}
.xc0{left:656.327085px;}
.xc2{left:679.457256px;}
.xc6{left:680.988428px;}
.x3d{left:683.376000px;}
.x1f{left:687.876232px;}
.x65{left:688.897719px;}
.xa7{left:691.540500px;}
.x64{left:692.553979px;}
.xa8{left:696.642000px;}
.xb{left:698.598000px;}
.x6b{left:703.360500px;}
.x6c{left:711.099000px;}
.x44{left:712.374000px;}
.xc9{left:714.663701px;}
.xc{left:716.202000px;}
.xc7{left:718.999950px;}
.x55{left:721.899000px;}
.xae{left:723.430500px;}
.x56{left:728.191500px;}
.x7a{left:731.338500px;}
.x7b{left:736.356000px;}
.xaf{left:745.455000px;}
.x7c{left:749.196000px;}
.xb0{left:751.323000px;}
.xa9{left:758.635500px;}
.x7d{left:759.657000px;}
.x47{left:767.481000px;}
.x48{left:784.743000px;}
.x67{left:789.158428px;}
.x66{left:792.729569px;}
.x86{left:794.097000px;}
.xc8{left:810.756484px;}
.x29{left:811.786500px;}
.xc3{left:816.114152px;}
.x2a{left:817.483500px;}
@media print{
.v5{vertical-align:-4.535467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.323006pt;}
.v3{vertical-align:8.463795pt;}
.v4{vertical-align:15.412771pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000005pt;}
.ls10{letter-spacing:0.000011pt;}
.ls6{letter-spacing:0.000112pt;}
.ls15{letter-spacing:0.165166pt;}
.ls1{letter-spacing:1.314040pt;}
.ls2{letter-spacing:1.467970pt;}
.ls0{letter-spacing:1.580602pt;}
.ls1e{letter-spacing:2.355200pt;}
.lsd{letter-spacing:2.659200pt;}
.ls21{letter-spacing:2.664533pt;}
.ls8{letter-spacing:3.289925pt;}
.ls17{letter-spacing:9.598126pt;}
.ls5{letter-spacing:9.850920pt;}
.ls24{letter-spacing:9.946685pt;}
.lsf{letter-spacing:10.065421pt;}
.ls20{letter-spacing:10.099426pt;}
.ls13{letter-spacing:10.205979pt;}
.ls1f{letter-spacing:10.402068pt;}
.ls36{letter-spacing:11.252188pt;}
.ls35{letter-spacing:11.719235pt;}
.ls34{letter-spacing:11.838255pt;}
.ls33{letter-spacing:12.016785pt;}
.ls30{letter-spacing:12.284581pt;}
.ls2f{letter-spacing:12.305834pt;}
.ls1d{letter-spacing:12.620388pt;}
.ls1c{letter-spacing:12.624638pt;}
.ls1a{letter-spacing:12.926440pt;}
.ls2e{letter-spacing:12.934354pt;}
.ls19{letter-spacing:13.530042pt;}
.ls32{letter-spacing:15.332347pt;}
.ls2d{letter-spacing:15.899194pt;}
.ls27{letter-spacing:15.944451pt;}
.ls28{letter-spacing:15.948701pt;}
.ls12{letter-spacing:16.521321pt;}
.ls31{letter-spacing:16.539552pt;}
.lsb{letter-spacing:16.824202pt;}
.ls3{letter-spacing:16.922845pt;}
.lse{letter-spacing:17.176533pt;}
.ls2c{letter-spacing:17.475200pt;}
.ls23{letter-spacing:19.288533pt;}
.ls22{letter-spacing:19.290133pt;}
.ls29{letter-spacing:19.323773pt;}
.ls16{letter-spacing:19.592533pt;}
.ls4{letter-spacing:19.893120pt;}
.ls2b{letter-spacing:20.186669pt;}
.ls11{letter-spacing:21.304609pt;}
.lsc{letter-spacing:22.027231pt;}
.ls2a{letter-spacing:22.107995pt;}
.ls1b{letter-spacing:23.204680pt;}
.lsa{letter-spacing:32.611524pt;}
.ls25{letter-spacing:109.723288pt;}
.ls18{letter-spacing:357.686290pt;}
.ls14{letter-spacing:391.252428pt;}
.ls26{letter-spacing:636.464441pt;}
.wsba{word-spacing:-42.507200pt;}
.wsf6{word-spacing:-38.935496pt;}
.ws31e{word-spacing:-38.384002pt;}
.ws13b{word-spacing:-38.256000pt;}
.ws6{word-spacing:-35.313978pt;}
.wsfd{word-spacing:-34.005333pt;}
.wsf5{word-spacing:-30.706334pt;}
.ws17{word-spacing:-27.839010pt;}
.ws33{word-spacing:-26.652014pt;}
.ws31d{word-spacing:-26.214190pt;}
.ws31f{word-spacing:-26.022908pt;}
.ws32b{word-spacing:-25.835876pt;}
.ws338{word-spacing:-24.441640pt;}
.ws31c{word-spacing:-24.335372pt;}
.ws14f{word-spacing:-24.241856pt;}
.ws33c{word-spacing:-24.169594pt;}
.ws344{word-spacing:-24.148340pt;}
.ws1c7{word-spacing:-24.059198pt;}
.ws53{word-spacing:-23.986512pt;}
.ws7{word-spacing:-23.540088pt;}
.ws1c4{word-spacing:-23.454754pt;}
.ws334{word-spacing:-23.298196pt;}
.ws333{word-spacing:-23.289695pt;}
.wsec{word-spacing:-22.980379pt;}
.ws145{word-spacing:-22.953600pt;}
.ws329{word-spacing:-22.231266pt;}
.ws328{word-spacing:-22.205761pt;}
.ws324{word-spacing:-22.014479pt;}
.ws55{word-spacing:-21.839925pt;}
.ws59{word-spacing:-21.538128pt;}
.ws139{word-spacing:-21.339197pt;}
.ws347{word-spacing:-21.321010pt;}
.ws4{word-spacing:-21.296835pt;}
.ws3{word-spacing:-21.246623pt;}
.ws1{word-spacing:-21.052951pt;}
.ws22c{word-spacing:-21.036974pt;}
.wsee{word-spacing:-20.613710pt;}
.wsf7{word-spacing:-20.562703pt;}
.ws268{word-spacing:-20.464089pt;}
.wsf8{word-spacing:-20.436885pt;}
.ws16a{word-spacing:-20.314468pt;}
.ws172{word-spacing:-20.130307pt;}
.ws282{word-spacing:-19.990098pt;}
.ws38c{word-spacing:-19.145003pt;}
.wsfc{word-spacing:-18.906965pt;}
.wsfa{word-spacing:-18.906669pt;}
.ws2f2{word-spacing:-18.619195pt;}
.ws1a5{word-spacing:-18.380113pt;}
.ws115{word-spacing:-18.299350pt;}
.ws20a{word-spacing:-18.290848pt;}
.ws116{word-spacing:-18.231338pt;}
.wsa1{word-spacing:-18.193082pt;}
.ws2f6{word-spacing:-18.137822pt;}
.ws239{word-spacing:-18.108067pt;}
.ws27c{word-spacing:-18.048557pt;}
.ws1da{word-spacing:-18.040056pt;}
.ws1a4{word-spacing:-18.018802pt;}
.wsd0{word-spacing:-17.997548pt;}
.ws2d5{word-spacing:-17.980546pt;}
.ws237{word-spacing:-17.976295pt;}
.ws2{word-spacing:-17.932667pt;}
.ws32d{word-spacing:-17.904033pt;}
.ws2d4{word-spacing:-17.831770pt;}
.ws63{word-spacing:-17.814768pt;}
.ws24f{word-spacing:-17.785012pt;}
.wsb9{word-spacing:-17.759508pt;}
.ws48{word-spacing:-17.746756pt;}
.ws2c4{word-spacing:-17.704249pt;}
.ws62{word-spacing:-17.691497pt;}
.ws2f0{word-spacing:-17.674494pt;}
.ws310{word-spacing:-17.665992pt;}
.ws61{word-spacing:-17.661742pt;}
.ws67{word-spacing:-17.627736pt;}
.ws66{word-spacing:-17.614984pt;}
.ws2b8{word-spacing:-17.593730pt;}
.ws2ee{word-spacing:-17.563975pt;}
.ws64{word-spacing:-17.559724pt;}
.ws65{word-spacing:-17.551223pt;}
.wsbb{word-spacing:-17.457707pt;}
.ws9b{word-spacing:-17.453456pt;}
.ws2fe{word-spacing:-17.449206pt;}
.wsdb{word-spacing:-17.393946pt;}
.ws19e{word-spacing:-17.376943pt;}
.wse1{word-spacing:-17.364191pt;}
.ws1f5{word-spacing:-17.359940pt;}
.wsc1{word-spacing:-17.355690pt;}
.ws256{word-spacing:-17.262174pt;}
.ws2d8{word-spacing:-17.257923pt;}
.ws23f{word-spacing:-17.249422pt;}
.ws162{word-spacing:-17.194162pt;}
.wse4{word-spacing:-17.147404pt;}
.ws258{word-spacing:-17.134652pt;}
.ws3f{word-spacing:-17.092145pt;}
.ws195{word-spacing:-17.028384pt;}
.ws163{word-spacing:-17.011381pt;}
.ws33a{word-spacing:-16.985877pt;}
.ws260{word-spacing:-16.973125pt;}
.ws259{word-spacing:-16.866857pt;}
.ws251{word-spacing:-16.854105pt;}
.ws1b1{word-spacing:-16.845603pt;}
.ws179{word-spacing:-16.837102pt;}
.ws250{word-spacing:-16.828600pt;}
.ws257{word-spacing:-16.803096pt;}
.ws301{word-spacing:-16.798845pt;}
.ws1dc{word-spacing:-16.790344pt;}
.ws11e{word-spacing:-16.786093pt;}
.ws1e2{word-spacing:-16.777592pt;}
.ws24e{word-spacing:-16.764840pt;}
.ws1c0{word-spacing:-16.760589pt;}
.ws11f{word-spacing:-16.756338pt;}
.ws8{word-spacing:-16.676984pt;}
.ws5{word-spacing:-16.637558pt;}
.ws2a6{word-spacing:-16.624566pt;}
.ws9{word-spacing:-16.620662pt;}
.ws2cb{word-spacing:-16.620315pt;}
.ws118{word-spacing:-16.616064pt;}
.ws117{word-spacing:-16.607563pt;}
.wsb{word-spacing:-16.581236pt;}
.ws77{word-spacing:-16.560805pt;}
.ws1e3{word-spacing:-16.552304pt;}
.wsd6{word-spacing:-16.543802pt;}
.ws119{word-spacing:-16.531050pt;}
.ws74{word-spacing:-16.526799pt;}
.wsa{word-spacing:-16.496753pt;}
.wsc{word-spacing:-16.491121pt;}
.wsae{word-spacing:-16.480041pt;}
.ws215{word-spacing:-16.463039pt;}
.ws2ef{word-spacing:-16.446036pt;}
.ws23a{word-spacing:-16.429033pt;}
.ws96{word-spacing:-16.361021pt;}
.ws22a{word-spacing:-16.354440pt;}
.wsb2{word-spacing:-16.314263pt;}
.ws28e{word-spacing:-16.301511pt;}
.ws23b{word-spacing:-16.284508pt;}
.ws289{word-spacing:-16.250503pt;}
.wsb3{word-spacing:-16.242001pt;}
.ws1a0{word-spacing:-16.233500pt;}
.ws2a7{word-spacing:-16.229249pt;}
.ws2a2{word-spacing:-16.203745pt;}
.wsc0{word-spacing:-16.199494pt;}
.ws28f{word-spacing:-16.186742pt;}
.ws2a3{word-spacing:-16.182491pt;}
.ws191{word-spacing:-16.152736pt;}
.ws194{word-spacing:-16.067722pt;}
.ws1d0{word-spacing:-16.016713pt;}
.ws19a{word-spacing:-16.003961pt;}
.ws49{word-spacing:-15.999710pt;}
.ws192{word-spacing:-15.995459pt;}
.ws23d{word-spacing:-15.944451pt;}
.ws1a2{word-spacing:-15.935949pt;}
.ws199{word-spacing:-15.906194pt;}
.ws198{word-spacing:-15.901944pt;}
.ws19f{word-spacing:-15.880690pt;}
.ws193{word-spacing:-15.838183pt;}
.ws10b{word-spacing:-15.791425pt;}
.ws175{word-spacing:-15.646900pt;}
.ws25b{word-spacing:-15.634148pt;}
.ws5c{word-spacing:-15.621396pt;}
.ws168{word-spacing:-15.604622pt;}
.ws2b3{word-spacing:-15.587390pt;}
.ws120{word-spacing:-15.578889pt;}
.ws28c{word-spacing:-15.574638pt;}
.wsa7{word-spacing:-15.557635pt;}
.ws197{word-spacing:-15.536382pt;}
.ws28a{word-spacing:-15.523629pt;}
.ws28b{word-spacing:-15.413111pt;}
.ws121{word-spacing:-15.391857pt;}
.wsc7{word-spacing:-15.362102pt;}
.ws271{word-spacing:-15.348307pt;}
.ws12e{word-spacing:-15.340848pt;}
.ws2e0{word-spacing:-15.315344pt;}
.wsa2{word-spacing:-15.277088pt;}
.ws2de{word-spacing:-15.255834pt;}
.ws23e{word-spacing:-15.213327pt;}
.ws2ff{word-spacing:-15.200575pt;}
.ws2a9{word-spacing:-15.115560pt;}
.ws2df{word-spacing:-15.111310pt;}
.ws22{word-spacing:-15.088166pt;}
.ws2bb{word-spacing:-15.060301pt;}
.ws1ee{word-spacing:-15.039047pt;}
.ws24c{word-spacing:-15.034797pt;}
.ws9c{word-spacing:-15.030546pt;}
.ws18e{word-spacing:-15.022044pt;}
.ws1f3{word-spacing:-15.013543pt;}
.ws21{word-spacing:-15.011654pt;}
.ws30f{word-spacing:-14.983788pt;}
.ws124{word-spacing:-14.975287pt;}
.ws131{word-spacing:-14.971036pt;}
.ws130{word-spacing:-14.954033pt;}
.ws0{word-spacing:-14.945344pt;}
.ws1ae{word-spacing:-14.941281pt;}
.wse3{word-spacing:-14.932779pt;}
.ws33e{word-spacing:-14.928529pt;}
.ws106{word-spacing:-14.881771pt;}
.ws1ed{word-spacing:-14.856266pt;}
.ws9d{word-spacing:-14.847765pt;}
.ws24d{word-spacing:-14.822261pt;}
.ws22e{word-spacing:-14.809508pt;}
.ws253{word-spacing:-14.767001pt;}
.ws46{word-spacing:-14.762751pt;}
.ws1a9{word-spacing:-14.737246pt;}
.wse7{word-spacing:-14.732996pt;}
.ws5e{word-spacing:-14.728745pt;}
.ws45{word-spacing:-14.724494pt;}
.wsb4{word-spacing:-14.673485pt;}
.ws1a8{word-spacing:-14.669235pt;}
.ws60{word-spacing:-14.652232pt;}
.ws20c{word-spacing:-14.643730pt;}
.ws304{word-spacing:-14.639480pt;}
.ws1eb{word-spacing:-14.605474pt;}
.ws69{word-spacing:-14.592722pt;}
.ws321{word-spacing:-14.575719pt;}
.ws6a{word-spacing:-14.571468pt;}
.ws19b{word-spacing:-14.537462pt;}
.ws302{word-spacing:-14.507707pt;}
.ws320{word-spacing:-14.490704pt;}
.ws303{word-spacing:-14.482203pt;}
.ws2d0{word-spacing:-14.460949pt;}
.wsd1{word-spacing:-14.435445pt;}
.ws2c8{word-spacing:-14.431194pt;}
.ws184{word-spacing:-14.422693pt;}
.ws2cf{word-spacing:-14.409941pt;}
.ws342{word-spacing:-14.405690pt;}
.ws286{word-spacing:-14.371684pt;}
.ws10a{word-spacing:-14.367434pt;}
.ws32a{word-spacing:-14.363183pt;}
.ws2d1{word-spacing:-14.350431pt;}
.ws148{word-spacing:-14.341929pt;}
.ws25{word-spacing:-14.330698pt;}
.ws26{word-spacing:-14.292442pt;}
.ws27{word-spacing:-14.200627pt;}
.ws10d{word-spacing:-14.129393pt;}
.ws2ba{word-spacing:-14.125143pt;}
.ws3c{word-spacing:-14.120892pt;}
.ws32c{word-spacing:-14.116641pt;}
.ws2f9{word-spacing:-14.108140pt;}
.ws112{word-spacing:-14.099638pt;}
.ws41{word-spacing:-14.095388pt;}
.ws7e{word-spacing:-14.086886pt;}
.wsd7{word-spacing:-14.074134pt;}
.ws2e3{word-spacing:-14.065632pt;}
.ws33b{word-spacing:-14.048630pt;}
.ws206{word-spacing:-14.044379pt;}
.ws122{word-spacing:-14.040128pt;}
.ws4d{word-spacing:-14.035877pt;}
.ws2fa{word-spacing:-14.031627pt;}
.ws33d{word-spacing:-14.027376pt;}
.ws11b{word-spacing:-14.014624pt;}
.wse2{word-spacing:-14.006122pt;}
.ws1dd{word-spacing:-14.001872pt;}
.ws189{word-spacing:-13.997621pt;}
.ws1f4{word-spacing:-13.993370pt;}
.ws7c{word-spacing:-13.984869pt;}
.ws6b{word-spacing:-13.976367pt;}
.ws54{word-spacing:-13.972117pt;}
.ws23c{word-spacing:-13.963615pt;}
.ws102{word-spacing:-13.942362pt;}
.ws1b0{word-spacing:-13.921108pt;}
.ws2c9{word-spacing:-13.908356pt;}
.ws1fc{word-spacing:-13.899854pt;}
.ws125{word-spacing:-13.895604pt;}
.ws228{word-spacing:-13.890754pt;}
.wsc8{word-spacing:-13.887102pt;}
.ws1d5{word-spacing:-13.861598pt;}
.ws2d{word-spacing:-13.856323pt;}
.ws1f2{word-spacing:-13.853096pt;}
.ws2c{word-spacing:-13.837195pt;}
.wscb{word-spacing:-13.827592pt;}
.ws2d9{word-spacing:-13.819091pt;}
.ws2d2{word-spacing:-13.802088pt;}
.ws81{word-spacing:-13.785085pt;}
.ws227{word-spacing:-13.783637pt;}
.ws312{word-spacing:-13.780834pt;}
.ws2c1{word-spacing:-13.776584pt;}
.ws158{word-spacing:-13.768082pt;}
.ws98{word-spacing:-13.763831pt;}
.ws337{word-spacing:-13.755330pt;}
.ws1f{word-spacing:-13.753032pt;}
.ws82{word-spacing:-13.746828pt;}
.wsc9{word-spacing:-13.742578pt;}
.ws2ce{word-spacing:-13.729826pt;}
.ws2b{word-spacing:-13.726253pt;}
.ws7d{word-spacing:-13.721324pt;}
.ws20b{word-spacing:-13.704321pt;}
.ws95{word-spacing:-13.700071pt;}
.ws190{word-spacing:-13.695820pt;}
.ws76{word-spacing:-13.678817pt;}
.ws294{word-spacing:-13.666065pt;}
.ws1aa{word-spacing:-13.657563pt;}
.ws187{word-spacing:-13.623558pt;}
.ws1d{word-spacing:-13.619136pt;}
.ws2c0{word-spacing:-13.602304pt;}
.ws183{word-spacing:-13.589552pt;}
.ws155{word-spacing:-13.568298pt;}
.ws97{word-spacing:-13.559797pt;}
.ws196{word-spacing:-13.538543pt;}
.ws1c8{word-spacing:-13.531147pt;}
.wsda{word-spacing:-13.525791pt;}
.ws31b{word-spacing:-13.521540pt;}
.ws1d1{word-spacing:-13.517290pt;}
.ws2d3{word-spacing:-13.508788pt;}
.ws2b7{word-spacing:-13.504537pt;}
.ws2b2{word-spacing:-13.500287pt;}
.ws2dd{word-spacing:-13.496036pt;}
.wsca{word-spacing:-13.487535pt;}
.ws264{word-spacing:-13.466281pt;}
.ws1ea{word-spacing:-13.462030pt;}
.ws2b9{word-spacing:-13.445027pt;}
.ws229{word-spacing:-13.443158pt;}
.wsaf{word-spacing:-13.440777pt;}
.ws213{word-spacing:-13.436526pt;}
.ws11c{word-spacing:-13.428024pt;}
.ws3a9{word-spacing:-13.397891pt;}
.ws1ec{word-spacing:-13.377016pt;}
.ws214{word-spacing:-13.364264pt;}
.ws30c{word-spacing:-13.351344pt;}
.ws1e8{word-spacing:-13.317506pt;}
.ws285{word-spacing:-13.313255pt;}
.ws25e{word-spacing:-13.296252pt;}
.ws30e{word-spacing:-13.287751pt;}
.ws4b{word-spacing:-13.283500pt;}
.ws1df{word-spacing:-13.274999pt;}
.ws182{word-spacing:-13.262246pt;}
.ws1c5{word-spacing:-13.236576pt;}
.ws288{word-spacing:-13.228241pt;}
.ws1d3{word-spacing:-13.219739pt;}
.wsa8{word-spacing:-13.215488pt;}
.ws1af{word-spacing:-13.211238pt;}
.ws3a4{word-spacing:-13.183661pt;}
.ws30a{word-spacing:-13.183018pt;}
.ws1ef{word-spacing:-13.172981pt;}
.ws159{word-spacing:-13.164480pt;}
.ws25d{word-spacing:-13.160229pt;}
.ws3a5{word-spacing:-13.159858pt;}
.ws186{word-spacing:-13.143226pt;}
.ws36f{word-spacing:-13.142855pt;}
.ws1de{word-spacing:-13.138976pt;}
.ws1e7{word-spacing:-13.130474pt;}
.ws8f{word-spacing:-13.126223pt;}
.ws30b{word-spacing:-13.125634pt;}
.ws25f{word-spacing:-13.121973pt;}
.ws1e9{word-spacing:-13.117722pt;}
.ws263{word-spacing:-13.113471pt;}
.ws9a{word-spacing:-13.096468pt;}
.wsc4{word-spacing:-13.079465pt;}
.ws178{word-spacing:-13.032708pt;}
.ws1bd{word-spacing:-13.028457pt;}
.ws29{word-spacing:-12.991738pt;}
.ws362{word-spacing:-12.989834pt;}
.ws247{word-spacing:-12.981699pt;}
.ws1d2{word-spacing:-12.977448pt;}
.ws18f{word-spacing:-12.973197pt;}
.ws379{word-spacing:-12.966030pt;}
.ws297{word-spacing:-12.951944pt;}
.ws10f{word-spacing:-12.943442pt;}
.ws31{word-spacing:-12.913687pt;}
.ws1ce{word-spacing:-12.909437pt;}
.ws252{word-spacing:-12.905186pt;}
.ws382{word-spacing:-12.881018pt;}
.ws390{word-spacing:-12.867416pt;}
.ws35{word-spacing:-12.858428pt;}
.ws18c{word-spacing:-12.845676pt;}
.ws15e{word-spacing:-12.841425pt;}
.ws352{word-spacing:-12.840212pt;}
.ws389{word-spacing:-12.826611pt;}
.ws21c{word-spacing:-12.808109pt;}
.ws372{word-spacing:-12.806208pt;}
.ws80{word-spacing:-12.773414pt;}
.ws13f{word-spacing:-12.766027pt;}
.ws376{word-spacing:-12.744999pt;}
.ws375{word-spacing:-12.734798pt;}
.ws266{word-spacing:-12.727771pt;}
.ws2e6{word-spacing:-12.709653pt;}
.ws13d{word-spacing:-12.689515pt;}
.ws123{word-spacing:-12.688399pt;}
.wse8{word-spacing:-12.675647pt;}
.ws20d{word-spacing:-12.671396pt;}
.ws140{word-spacing:-12.670387pt;}
.ws142{word-spacing:-12.666562pt;}
.wsed{word-spacing:-12.662736pt;}
.wsbd{word-spacing:-12.654393pt;}
.ws143{word-spacing:-12.651259pt;}
.ws1ba{word-spacing:-12.650143pt;}
.ws21d{word-spacing:-12.647434pt;}
.ws1bc{word-spacing:-12.637391pt;}
.ws141{word-spacing:-12.632131pt;}
.wsce{word-spacing:-12.628889pt;}
.ws10e{word-spacing:-12.620388pt;}
.ws3a6{word-spacing:-12.619181pt;}
.ws13e{word-spacing:-12.597701pt;}
.ws374{word-spacing:-12.564774pt;}
.ws40{word-spacing:-12.556627pt;}
.ws267{word-spacing:-12.528840pt;}
.ws3ab{word-spacing:-12.527368pt;}
.ws1be{word-spacing:-12.526872pt;}
.wscf{word-spacing:-12.522621pt;}
.ws132{word-spacing:-12.517363pt;}
.ws373{word-spacing:-12.496764pt;}
.ws255{word-spacing:-12.492866pt;}
.ws4c{word-spacing:-12.424855pt;}
.ws311{word-spacing:-12.412102pt;}
.ws22b{word-spacing:-12.391118pt;}
.ws2e{word-spacing:-12.375816pt;}
.ws169{word-spacing:-12.349037pt;}
.ws1bb{word-spacing:-12.344091pt;}
.ws11a{word-spacing:-12.327088pt;}
.ws84{word-spacing:-12.310085pt;}
.ws14d{word-spacing:-12.297333pt;}
.ws216{word-spacing:-12.293082pt;}
.ws394{word-spacing:-12.292735pt;}
.ws3ae{word-spacing:-12.265531pt;}
.ws25c{word-spacing:-12.259076pt;}
.ws3ad{word-spacing:-12.255330pt;}
.ws1db{word-spacing:-12.254826pt;}
.wsbc{word-spacing:-12.250575pt;}
.ws37b{word-spacing:-12.248529pt;}
.ws1b9{word-spacing:-12.229321pt;}
.ws368{word-spacing:-12.228126pt;}
.ws2a5{word-spacing:-12.208068pt;}
.ws37a{word-spacing:-12.204323pt;}
.ws2a4{word-spacing:-12.203817pt;}
.ws341{word-spacing:-12.195316pt;}
.wsc3{word-spacing:-12.182564pt;}
.ws39f{word-spacing:-12.180519pt;}
.ws2fc{word-spacing:-12.169811pt;}
.wsc2{word-spacing:-12.106051pt;}
.ws217{word-spacing:-12.089048pt;}
.ws24b{word-spacing:-12.076296pt;}
.ws27f{word-spacing:-12.059293pt;}
.ws308{word-spacing:-12.054466pt;}
.wse0{word-spacing:-12.050791pt;}
.ws2ea{word-spacing:-12.046540pt;}
.ws29c{word-spacing:-12.016785pt;}
.ws36{word-spacing:-12.008284pt;}
.ws44{word-spacing:-12.004033pt;}
.ws2e5{word-spacing:-11.999783pt;}
.ws108{word-spacing:-11.982780pt;}
.ws211{word-spacing:-11.957275pt;}
.ws99{word-spacing:-11.953025pt;}
.ws57{word-spacing:-11.944523pt;}
.ws1ca{word-spacing:-11.935872pt;}
.ws261{word-spacing:-11.927520pt;}
.ws307{word-spacing:-11.912918pt;}
.ws2e9{word-spacing:-11.893515pt;}
.wsdf{word-spacing:-11.885013pt;}
.wsb0{word-spacing:-11.880762pt;}
.wsab{word-spacing:-11.846757pt;}
.ws18d{word-spacing:-11.842506pt;}
.ws1c9{word-spacing:-11.840232pt;}
.ws369{word-spacing:-11.833670pt;}
.ws104{word-spacing:-11.787247pt;}
.ws39c{word-spacing:-11.779263pt;}
.ws2e8{word-spacing:-11.774494pt;}
.ws167{word-spacing:-11.748418pt;}
.ws3b1{word-spacing:-11.745258pt;}
.ws19c{word-spacing:-11.740489pt;}
.ws3b3{word-spacing:-11.731656pt;}
.ws109{word-spacing:-11.719235pt;}
.ws14e{word-spacing:-11.714984pt;}
.ws1a1{word-spacing:-11.702232pt;}
.ws3a3{word-spacing:-11.701052pt;}
.wsc5{word-spacing:-11.674468pt;}
.wsad{word-spacing:-11.659725pt;}
.ws1ab{word-spacing:-11.651224pt;}
.wsc6{word-spacing:-11.646973pt;}
.ws335{word-spacing:-11.642722pt;}
.ws265{word-spacing:-11.610696pt;}
.ws181{word-spacing:-11.608716pt;}
.ws262{word-spacing:-11.583212pt;}
.ws1fd{word-spacing:-11.578961pt;}
.ws1fe{word-spacing:-11.557708pt;}
.ws30{word-spacing:-11.544956pt;}
.ws75{word-spacing:-11.502448pt;}
.wsdd{word-spacing:-11.498198pt;}
.wsde{word-spacing:-11.489696pt;}
.ws24{word-spacing:-11.484451pt;}
.ws165{word-spacing:-11.464192pt;}
.wsd8{word-spacing:-11.455690pt;}
.ws2cc{word-spacing:-11.438688pt;}
.ws273{word-spacing:-11.438544pt;}
.ws3b0{word-spacing:-11.429013pt;}
.wsd5{word-spacing:-11.425935pt;}
.ws9f{word-spacing:-11.417434pt;}
.ws4f{word-spacing:-11.411765pt;}
.wsd4{word-spacing:-11.404682pt;}
.ws11d{word-spacing:-11.400431pt;}
.ws146{word-spacing:-11.392637pt;}
.ws1e5{word-spacing:-11.391930pt;}
.ws1ff{word-spacing:-11.387679pt;}
.ws2cd{word-spacing:-11.383428pt;}
.ws221{word-spacing:-11.381407pt;}
.wsf0{word-spacing:-11.364404pt;}
.ws3a1{word-spacing:-11.357603pt;}
.ws351{word-spacing:-11.347402pt;}
.ws29b{word-spacing:-11.345172pt;}
.ws3a2{word-spacing:-11.344001pt;}
.ws1cb{word-spacing:-11.335253pt;}
.ws1c6{word-spacing:-11.331427pt;}
.ws2da{word-spacing:-11.328169pt;}
.ws1cf{word-spacing:-11.323918pt;}
.ws52{word-spacing:-11.323776pt;}
.ws15f{word-spacing:-11.315417pt;}
.ws230{word-spacing:-11.302664pt;}
.ws377{word-spacing:-11.265790pt;}
.ws58{word-spacing:-11.258741pt;}
.ws147{word-spacing:-11.251090pt;}
.ws330{word-spacing:-11.238904pt;}
.wsf2{word-spacing:-11.235186pt;}
.ws220{word-spacing:-11.231785pt;}
.ws68{word-spacing:-11.217650pt;}
.ws144{word-spacing:-11.216659pt;}
.ws21e{word-spacing:-11.214783pt;}
.ws381{word-spacing:-11.211383pt;}
.ws4e{word-spacing:-11.209008pt;}
.ws2f{word-spacing:-11.197531pt;}
.ws134{word-spacing:-11.194380pt;}
.ws371{word-spacing:-11.180778pt;}
.wsd3{word-spacing:-11.175143pt;}
.ws16d{word-spacing:-11.173977pt;}
.ws332{word-spacing:-11.166641pt;}
.ws309{word-spacing:-11.151624pt;}
.ws32f{word-spacing:-11.149639pt;}
.wsf4{word-spacing:-11.139972pt;}
.ws166{word-spacing:-11.136886pt;}
.ws36d{word-spacing:-11.122970pt;}
.ws174{word-spacing:-11.121019pt;}
.ws180{word-spacing:-11.111382pt;}
.ws5b{word-spacing:-11.102881pt;}
.ws29a{word-spacing:-11.098630pt;}
.ws1b2{word-spacing:-11.085878pt;}
.ws51{word-spacing:-11.078938pt;}
.ws170{word-spacing:-11.078764pt;}
.ws306{word-spacing:-11.033030pt;}
.ws226{word-spacing:-11.027757pt;}
.ws2ec{word-spacing:-11.022117pt;}
.ws13a{word-spacing:-11.017728pt;}
.ws14c{word-spacing:-11.009365pt;}
.ws2f4{word-spacing:-11.006251pt;}
.ws392{word-spacing:-10.993752pt;}
.ws17f{word-spacing:-10.975359pt;}
.ws13c{word-spacing:-10.937390pt;}
.ws391{word-spacing:-10.935944pt;}
.ws39e{word-spacing:-10.929143pt;}
.ws157{word-spacing:-10.924350pt;}
.ws27b{word-spacing:-10.873342pt;}
.ws2ed{word-spacing:-10.869091pt;}
.ws393{word-spacing:-10.857733pt;}
.ws17e{word-spacing:-10.839336pt;}
.ws34f{word-spacing:-10.806725pt;}
.ws2ad{word-spacing:-10.796829pt;}
.wscd{word-spacing:-10.792578pt;}
.ws388{word-spacing:-10.782922pt;}
.ws17d{word-spacing:-10.741569pt;}
.ws279{word-spacing:-10.733068pt;}
.ws2b0{word-spacing:-10.720316pt;}
.ws1fb{word-spacing:-10.707564pt;}
.ws2b5{word-spacing:-10.699062pt;}
.ws35b{word-spacing:-10.687709pt;}
.ws1fa{word-spacing:-10.686310pt;}
.ws2ac{word-spacing:-10.673558pt;}
.ws39{word-spacing:-10.626800pt;}
.ws339{word-spacing:-10.588544pt;}
.ws2ab{word-spacing:-10.580042pt;}
.ws2b1{word-spacing:-10.575791pt;}
.ws2b6{word-spacing:-10.571541pt;}
.ws83{word-spacing:-10.567290pt;}
.ws27a{word-spacing:-10.533284pt;}
.ws22d{word-spacing:-10.531877pt;}
.ws149{word-spacing:-10.503529pt;}
.ws2f8{word-spacing:-10.495028pt;}
.ws17a{word-spacing:-10.490777pt;}
.ws2db{word-spacing:-10.486526pt;}
.ws14a{word-spacing:-10.469523pt;}
.ws327{word-spacing:-10.465273pt;}
.ws34c{word-spacing:-10.446275pt;}
.ws236{word-spacing:-10.435518pt;}
.ws107{word-spacing:-10.431267pt;}
.ws29e{word-spacing:-10.418515pt;}
.ws101{word-spacing:-10.414264pt;}
.ws399{word-spacing:-10.388466pt;}
.ws234{word-spacing:-10.367506pt;}
.ws34d{word-spacing:-10.337459pt;}
.ws2af{word-spacing:-10.312247pt;}
.ws1ad{word-spacing:-10.307996pt;}
.ws396{word-spacing:-10.289852pt;}
.ws313{word-spacing:-10.286742pt;}
.ws367{word-spacing:-10.269450pt;}
.ws345{word-spacing:-10.266049pt;}
.ws326{word-spacing:-10.265489pt;}
.ws39b{word-spacing:-10.255848pt;}
.ws36e{word-spacing:-10.249047pt;}
.wsd2{word-spacing:-10.248486pt;}
.ws3a0{word-spacing:-10.242246pt;}
.ws37e{word-spacing:-10.238845pt;}
.ws346{word-spacing:-10.235445pt;}
.ws38a{word-spacing:-10.232044pt;}
.ws235{word-spacing:-10.231483pt;}
.ws36b{word-spacing:-10.225243pt;}
.ws38d{word-spacing:-10.221843pt;}
.ws378{word-spacing:-10.218442pt;}
.ws37f{word-spacing:-10.215042pt;}
.ws37d{word-spacing:-10.211641pt;}
.ws25a{word-spacing:-10.210229pt;}
.ws365{word-spacing:-10.204840pt;}
.ws349{word-spacing:-10.201440pt;}
.ws316{word-spacing:-10.193227pt;}
.ws35c{word-spacing:-10.184438pt;}
.ws3aa{word-spacing:-10.181037pt;}
.ws1f7{word-spacing:-10.180474pt;}
.ws354{word-spacing:-10.177637pt;}
.ws397{word-spacing:-10.174236pt;}
.ws323{word-spacing:-10.171973pt;}
.ws3b2{word-spacing:-10.170836pt;}
.ws370{word-spacing:-10.160634pt;}
.ws363{word-spacing:-10.157234pt;}
.ws34e{word-spacing:-10.153833pt;}
.ws356{word-spacing:-10.150433pt;}
.ws358{word-spacing:-10.143632pt;}
.ws38e{word-spacing:-10.140231pt;}
.ws71{word-spacing:-10.137967pt;}
.ws361{word-spacing:-10.136831pt;}
.ws325{word-spacing:-10.133716pt;}
.ws36c{word-spacing:-10.133430pt;}
.ws350{word-spacing:-10.130030pt;}
.ws34a{word-spacing:-10.119828pt;}
.ws9e{word-spacing:-10.116714pt;}
.ws39a{word-spacing:-10.116428pt;}
.ws386{word-spacing:-10.113028pt;}
.ws238{word-spacing:-10.108212pt;}
.ws353{word-spacing:-10.102826pt;}
.ws380{word-spacing:-10.099426pt;}
.ws359{word-spacing:-10.096025pt;}
.ws3a7{word-spacing:-10.089224pt;}
.ws355{word-spacing:-10.085824pt;}
.ws37c{word-spacing:-10.079023pt;}
.ws360{word-spacing:-10.051819pt;}
.ws398{word-spacing:-10.048418pt;}
.ws36a{word-spacing:-10.045018pt;}
.ws395{word-spacing:-10.038217pt;}
.ws3ac{word-spacing:-10.034816pt;}
.ws385{word-spacing:-10.028016pt;}
.ws35d{word-spacing:-10.021215pt;}
.ws35f{word-spacing:-10.014414pt;}
.ws1f9{word-spacing:-10.006195pt;}
.ws366{word-spacing:-10.004212pt;}
.ws387{word-spacing:-9.973608pt;}
.ws35a{word-spacing:-9.966807pt;}
.ws357{word-spacing:-9.963406pt;}
.ws278{word-spacing:-9.950936pt;}
.ws39d{word-spacing:-9.932802pt;}
.ws173{word-spacing:-9.927432pt;}
.ws29f{word-spacing:-9.925431pt;}
.ws383{word-spacing:-9.912399pt;}
.ws348{word-spacing:-9.908999pt;}
.ws103{word-spacing:-9.899927pt;}
.ws3a8{word-spacing:-9.895397pt;}
.ws2e7{word-spacing:-9.891425pt;}
.ws34b{word-spacing:-9.888596pt;}
.ws2a0{word-spacing:-9.874423pt;}
.ws203{word-spacing:-9.848918pt;}
.ws384{word-spacing:-9.844390pt;}
.ws35e{word-spacing:-9.840989pt;}
.ws317{word-spacing:-9.840417pt;}
.ws2e1{word-spacing:-9.836166pt;}
.ws15d{word-spacing:-9.831915pt;}
.ws38f{word-spacing:-9.830788pt;}
.ws15a{word-spacing:-9.827665pt;}
.ws1a{word-spacing:-9.827387pt;}
.ws15b{word-spacing:-9.814912pt;}
.ws318{word-spacing:-9.810662pt;}
.ws18{word-spacing:-9.786581pt;}
.ws1b{word-spacing:-9.783181pt;}
.ws15c{word-spacing:-9.768155pt;}
.ws18a{word-spacing:-9.763904pt;}
.ws19{word-spacing:-9.752577pt;}
.ws3af{word-spacing:-9.732174pt;}
.ws364{word-spacing:-9.718572pt;}
.ws276{word-spacing:-9.704394pt;}
.ws28d{word-spacing:-9.683140pt;}
.ws18b{word-spacing:-9.678889pt;}
.ws277{word-spacing:-9.666137pt;}
.ws30d{word-spacing:-9.653385pt;}
.ws1d4{word-spacing:-9.649134pt;}
.ws202{word-spacing:-9.644884pt;}
.ws1b7{word-spacing:-9.564120pt;}
.ws1e{word-spacing:-9.564000pt;}
.ws1c{word-spacing:-9.556349pt;}
.wsd9{word-spacing:-9.542866pt;}
.ws1b6{word-spacing:-9.508861pt;}
.ws201{word-spacing:-9.504610pt;}
.ws8d{word-spacing:-9.500359pt;}
.ws1e4{word-spacing:-9.491858pt;}
.ws24a{word-spacing:-9.428097pt;}
.ws32{word-spacing:-9.415345pt;}
.wsac{word-spacing:-9.411094pt;}
.ws34{word-spacing:-9.402593pt;}
.ws188{word-spacing:-9.360085pt;}
.ws161{word-spacing:-9.321829pt;}
.ws296{word-spacing:-9.304826pt;}
.ws1b8{word-spacing:-9.296325pt;}
.ws200{word-spacing:-9.287823pt;}
.ws249{word-spacing:-9.245316pt;}
.ws295{word-spacing:-9.232564pt;}
.ws100{word-spacing:-9.228313pt;}
.ws12f{word-spacing:-9.224062pt;}
.ws248{word-spacing:-9.207060pt;}
.ws246{word-spacing:-9.143299pt;}
.ws42{word-spacing:-8.998774pt;}
.ws151{word-spacing:-8.990273pt;}
.ws93{word-spacing:-8.981771pt;}
.ws275{word-spacing:-8.977521pt;}
.ws210{word-spacing:-8.926512pt;}
.ws274{word-spacing:-8.909509pt;}
.ws2c5{word-spacing:-8.905258pt;}
.wsbf{word-spacing:-8.896757pt;}
.wsbe{word-spacing:-8.803241pt;}
.ws26f{word-spacing:-8.780039pt;}
.ws38{word-spacing:-8.752232pt;}
.ws50{word-spacing:-8.664984pt;}
.ws78{word-spacing:-8.662967pt;}
.ws22f{word-spacing:-8.628962pt;}
.ws284{word-spacing:-8.607708pt;}
.ws47{word-spacing:-8.594956pt;}
.ws231{word-spacing:-8.560950pt;}
.ws79{word-spacing:-8.501440pt;}
.wsf3{word-spacing:-8.501200pt;}
.ws1d9{word-spacing:-8.488688pt;}
.ws21b{word-spacing:-8.416320pt;}
.ws244{word-spacing:-8.403673pt;}
.ws12b{word-spacing:-8.395172pt;}
.ws2fb{word-spacing:-8.386671pt;}
.ws2dc{word-spacing:-8.378169pt;}
.ws129{word-spacing:-8.373918pt;}
.ws126{word-spacing:-8.322910pt;}
.ws2ca{word-spacing:-8.318659pt;}
.ws305{word-spacing:-8.301656pt;}
.ws21a{word-spacing:-8.290075pt;}
.ws12a{word-spacing:-8.288904pt;}
.ws2f3{word-spacing:-8.286250pt;}
.ws293{word-spacing:-8.237895pt;}
.ws292{word-spacing:-8.191137pt;}
.ws1b3{word-spacing:-8.186887pt;}
.ws8b{word-spacing:-8.021109pt;}
.ws319{word-spacing:-8.004106pt;}
.ws164{word-spacing:-7.999855pt;}
.ws209{word-spacing:-7.995604pt;}
.ws2eb{word-spacing:-7.940345pt;}
.ws89{word-spacing:-7.919091pt;}
.ws208{word-spacing:-7.872333pt;}
.ws207{word-spacing:-7.855331pt;}
.ws13{word-spacing:-7.814303pt;}
.ws10{word-spacing:-7.776898pt;}
.ws1f1{word-spacing:-7.774567pt;}
.wscc{word-spacing:-7.770316pt;}
.ws16{word-spacing:-7.766696pt;}
.ws4a{word-spacing:-7.744812pt;}
.ws11{word-spacing:-7.725891pt;}
.wse{word-spacing:-7.712289pt;}
.wsf{word-spacing:-7.708888pt;}
.ws20{word-spacing:-7.689456pt;}
.ws1f0{word-spacing:-7.685302pt;}
.wsd{word-spacing:-7.685085pt;}
.ws12{word-spacing:-7.674883pt;}
.ws15{word-spacing:-7.651080pt;}
.ws205{word-spacing:-7.591786pt;}
.wsfb{word-spacing:-7.583070pt;}
.ws38b{word-spacing:-7.562668pt;}
.wsf9{word-spacing:-7.559267pt;}
.ws14{word-spacing:-7.525262pt;}
.ws204{word-spacing:-7.468515pt;}
.wsa3{word-spacing:-7.443011pt;}
.ws86{word-spacing:-7.438760pt;}
.ws3b{word-spacing:-7.434509pt;}
.ws92{word-spacing:-7.413256pt;}
.ws3a{word-spacing:-7.409005pt;}
.ws105{word-spacing:-7.345244pt;}
.ws3d{word-spacing:-7.302737pt;}
.ws2be{word-spacing:-7.230475pt;}
.ws291{word-spacing:-7.221973pt;}
.ws14b{word-spacing:-7.166714pt;}
.ws12c{word-spacing:-7.081700pt;}
.ws2bf{word-spacing:-7.077449pt;}
.ws1c1{word-spacing:-6.864913pt;}
.ws1c3{word-spacing:-6.860662pt;}
.ws2bd{word-spacing:-6.843659pt;}
.ws241{word-spacing:-6.830907pt;}
.ws298{word-spacing:-6.818155pt;}
.ws2bc{word-spacing:-6.792651pt;}
.ws2d6{word-spacing:-6.788400pt;}
.wsa4{word-spacing:-6.733140pt;}
.ws240{word-spacing:-6.703385pt;}
.ws299{word-spacing:-6.699135pt;}
.ws1c2{word-spacing:-6.643875pt;}
.ws315{word-spacing:-6.563112pt;}
.ws2aa{word-spacing:-6.507852pt;}
.ws2fd{word-spacing:-6.478097pt;}
.ws1f6{word-spacing:-6.456844pt;}
.ws314{word-spacing:-6.261311pt;}
.ws32e{word-spacing:-6.252809pt;}
.ws28{word-spacing:-6.178344pt;}
.ws27e{word-spacing:-6.159293pt;}
.ws1bf{word-spacing:-6.142290pt;}
.ws94{word-spacing:-6.129538pt;}
.ws27d{word-spacing:-6.014769pt;}
.ws6e{word-spacing:-5.955259pt;}
.ws6d{word-spacing:-5.946757pt;}
.ws12d{word-spacing:-5.908501pt;}
.ws17b{word-spacing:-5.904250pt;}
.ws7b{word-spacing:-5.882996pt;}
.wsaa{word-spacing:-5.870244pt;}
.ws1a7{word-spacing:-5.789481pt;}
.ws6c{word-spacing:-5.780979pt;}
.ws37{word-spacing:-5.768227pt;}
.wsa9{word-spacing:-5.721469pt;}
.ws150{word-spacing:-5.695965pt;}
.ws2c7{word-spacing:-5.657708pt;}
.ws254{word-spacing:-5.649207pt;}
.ws2b4{word-spacing:-5.623703pt;}
.ws1a6{word-spacing:-5.602449pt;}
.ws110{word-spacing:-5.598198pt;}
.ws114{word-spacing:-5.568443pt;}
.ws2c6{word-spacing:-5.504682pt;}
.ws2d7{word-spacing:-5.449423pt;}
.ws88{word-spacing:-5.432420pt;}
.ws111{word-spacing:-5.423919pt;}
.ws113{word-spacing:-5.402665pt;}
.ws2e4{word-spacing:-5.398414pt;}
.ws233{word-spacing:-5.385662pt;}
.ws232{word-spacing:-5.309149pt;}
.ws290{word-spacing:-5.300648pt;}
.ws6f{word-spacing:-4.939337pt;}
.ws212{word-spacing:-4.854322pt;}
.wsa0{word-spacing:-4.816066pt;}
.ws70{word-spacing:-4.752305pt;}
.ws1ac{word-spacing:-4.743804pt;}
.ws73{word-spacing:-4.714048pt;}
.ws2a{word-spacing:-4.713139pt;}
.ws72{word-spacing:-4.709798pt;}
.ws152{word-spacing:-4.705547pt;}
.ws2a8{word-spacing:-4.697046pt;}
.ws128{word-spacing:-4.684293pt;}
.wsb8{word-spacing:-4.637536pt;}
.ws17c{word-spacing:-4.514265pt;}
.ws2c3{word-spacing:-4.510014pt;}
.ws3e{word-spacing:-4.437752pt;}
.ws153{word-spacing:-4.407997pt;}
.ws2f7{word-spacing:-4.395244pt;}
.wsa6{word-spacing:-4.361239pt;}
.ws90{word-spacing:-4.331484pt;}
.ws91{word-spacing:-4.212464pt;}
.ws5f{word-spacing:-4.144452pt;}
.wsdc{word-spacing:-4.089193pt;}
.wse5{word-spacing:-3.965922pt;}
.ws242{word-spacing:-3.846902pt;}
.wse6{word-spacing:-3.842651pt;}
.ws1e0{word-spacing:-3.766138pt;}
.ws43{word-spacing:-3.617363pt;}
.ws19d{word-spacing:-3.608861pt;}
.ws160{word-spacing:-3.557853pt;}
.wsb6{word-spacing:-3.549351pt;}
.ws2a1{word-spacing:-3.523847pt;}
.ws8a{word-spacing:-3.468588pt;}
.ws127{word-spacing:-3.426080pt;}
.wsb5{word-spacing:-3.413328pt;}
.ws1e1{word-spacing:-3.311311pt;}
.ws2e2{word-spacing:-3.264553pt;}
.ws1d8{word-spacing:-3.239049pt;}
.ws2f1{word-spacing:-3.226296pt;}
.ws1d6{word-spacing:-3.192291pt;}
.ws1d7{word-spacing:-3.013760pt;}
.ws322{word-spacing:-3.009510pt;}
.ws31a{word-spacing:-2.881988pt;}
.wsb7{word-spacing:-2.733213pt;}
.ws23{word-spacing:-2.643490pt;}
.ws340{word-spacing:-2.503674pt;}
.ws272{word-spacing:-2.425430pt;}
.ws1a3{word-spacing:-2.252882pt;}
.ws33f{word-spacing:-2.163616pt;}
.ws1e6{word-spacing:-2.125360pt;}
.ws176{word-spacing:-2.027593pt;}
.ws1cc{word-spacing:-1.649279pt;}
.ws20f{word-spacing:-1.640778pt;}
.ws8c{word-spacing:-1.632276pt;}
.ws1cd{word-spacing:-1.504755pt;}
.ws280{word-spacing:-1.368732pt;}
.ws281{word-spacing:-1.190202pt;}
.ws2c2{word-spacing:-1.139193pt;}
.ws300{word-spacing:-1.122190pt;}
.ws283{word-spacing:-1.066931pt;}
.ws2ae{word-spacing:-0.531340pt;}
.ws243{word-spacing:-0.459078pt;}
.ws218{word-spacing:-0.437824pt;}
.ws343{word-spacing:-0.293300pt;}
.ws219{word-spacing:-0.157277pt;}
.ws7f{word-spacing:-0.110519pt;}
.ws5a{word-spacing:0.000000pt;}
.ws29d{word-spacing:0.076513pt;}
.ws7a{word-spacing:0.174280pt;}
.ws154{word-spacing:0.301801pt;}
.ws331{word-spacing:0.395317pt;}
.ws85{word-spacing:0.612104pt;}
.ws156{word-spacing:0.918156pt;}
.ws185{word-spacing:0.994668pt;}
.wsfe{word-spacing:1.266715pt;}
.ws10c{word-spacing:1.321974pt;}
.wsff{word-spacing:1.440994pt;}
.wsa5{word-spacing:1.611023pt;}
.ws56{word-spacing:2.053098pt;}
.ws177{word-spacing:2.133861pt;}
.ws287{word-spacing:2.707709pt;}
.wsb1{word-spacing:2.873487pt;}
.ws20e{word-spacing:3.009510pt;}
.ws87{word-spacing:3.030763pt;}
.ws1f8{word-spacing:3.171037pt;}
.ws245{word-spacing:3.298559pt;}
.ws1b5{word-spacing:3.868155pt;}
.ws1b4{word-spacing:4.352737pt;}
.ws2f5{word-spacing:4.552521pt;}
.ws336{word-spacing:5.861743pt;}
.wsea{word-spacing:6.261311pt;}
.wse9{word-spacing:6.274063pt;}
.wseb{word-spacing:6.329322pt;}
.ws8e{word-spacing:10.648054pt;}
.ws5d{word-spacing:11.047621pt;}
.ws26d{word-spacing:36.582364pt;}
.ws26e{word-spacing:45.668446pt;}
.ws270{word-spacing:45.954087pt;}
.ws26a{word-spacing:45.971089pt;}
.ws26b{word-spacing:68.043605pt;}
.ws26c{word-spacing:84.498528pt;}
.ws269{word-spacing:105.122439pt;}
.ws171{word-spacing:110.355777pt;}
.ws222{word-spacing:137.984677pt;}
.ws224{word-spacing:138.171704pt;}
.ws16b{word-spacing:143.180611pt;}
.ws16f{word-spacing:158.271941pt;}
.ws16c{word-spacing:178.895852pt;}
.ws225{word-spacing:184.948707pt;}
.ws223{word-spacing:186.087868pt;}
.ws138{word-spacing:201.971510pt;}
.ws21f{word-spacing:206.711779pt;}
.ws16e{word-spacing:225.516433pt;}
.ws133{word-spacing:236.513585pt;}
.ws137{word-spacing:249.887673pt;}
.ws135{word-spacing:257.633967pt;}
.ws136{word-spacing:270.511584pt;}
.wsf1{word-spacing:635.396690pt;}
.wsef{word-spacing:636.365827pt;}
._d{margin-left:-11.648796pt;}
._c{margin-left:-2.276102pt;}
._4{margin-left:-1.288782pt;}
._1{width:1.503801pt;}
._40{width:3.019626pt;}
._2a{width:5.134870pt;}
._2b{width:7.519524pt;}
._3f{width:8.429178pt;}
._1d{width:9.411094pt;}
._5{width:10.480279pt;}
._2{width:12.204323pt;}
._8{width:13.557926pt;}
._3{width:14.805690pt;}
._b{width:15.841569pt;}
._6{width:17.326142pt;}
._a{width:18.341857pt;}
._1e{width:19.315272pt;}
._9{width:20.248901pt;}
._13{width:21.491640pt;}
._7{width:22.437144pt;}
._12{width:23.336453pt;}
._0{width:24.617965pt;}
._11{width:26.022908pt;}
._f{width:27.905977pt;}
._14{width:29.181193pt;}
._10{width:30.613685pt;}
._2c{width:32.186452pt;}
._15{width:34.031264pt;}
._e{width:38.715558pt;}
._39{width:67.057466pt;}
._36{width:75.004387pt;}
._3d{width:76.272766pt;}
._3a{width:77.456133pt;}
._38{width:78.411668pt;}
._37{width:79.540628pt;}
._3b{width:80.577774pt;}
._3e{width:81.485702pt;}
._3c{width:89.364614pt;}
._35{width:91.330092pt;}
._32{width:94.458533pt;}
._34{width:105.214252pt;}
._33{width:110.501998pt;}
._25{width:127.147348pt;}
._28{width:155.027883pt;}
._31{width:159.550522pt;}
._30{width:161.325572pt;}
._2e{width:162.852388pt;}
._29{width:164.702249pt;}
._2f{width:168.922244pt;}
._26{width:171.156360pt;}
._2d{width:173.223852pt;}
._24{width:175.889828pt;}
._27{width:211.367036pt;}
._23{width:270.242947pt;}
._22{width:289.153016pt;}
._20{width:316.288846pt;}
._1f{width:317.492616pt;}
._21{width:319.614516pt;}
._16{width:467.467386pt;}
._1b{width:545.610416pt;}
._17{width:559.276946pt;}
._19{width:588.493870pt;}
._18{width:686.873157pt;}
._1a{width:705.793427pt;}
._1c{width:1775.314454pt;}
.fs10{font-size:20.275733pt;}
.fs4{font-size:23.788267pt;}
.fs11{font-size:26.763200pt;}
.fs8{font-size:28.693867pt;}
.fsd{font-size:29.753600pt;}
.fsb{font-size:31.882133pt;}
.fs5{font-size:34.004800pt;}
.fsf{font-size:34.005333pt;}
.fs6{font-size:37.193067pt;}
.fs3{font-size:37.544000pt;}
.fs7{font-size:38.256000pt;}
.fs9{font-size:40.933867pt;}
.fsa{font-size:42.507200pt;}
.fse{font-size:45.482667pt;}
.fs0{font-size:51.008000pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fsc{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:42.160000pt;}
.y4e{bottom:68.426680pt;}
.yc9{bottom:69.694400pt;}
.y2ff{bottom:69.694920pt;}
.yc7{bottom:69.695632pt;}
.y110{bottom:69.770121pt;}
.y184{bottom:70.528175pt;}
.y188{bottom:72.946834pt;}
.y2ab{bottom:73.172762pt;}
.y275{bottom:73.173012pt;}
.yc8{bottom:74.456667pt;}
.y8a{bottom:75.067337pt;}
.y2c0{bottom:78.690816pt;}
.y21c{bottom:79.901009pt;}
.y2fe{bottom:80.353725pt;}
.y214{bottom:80.959819pt;}
.y4d{bottom:81.173333pt;}
.y140{bottom:82.469200pt;}
.y10e{bottom:82.469365pt;}
.y10f{bottom:83.603067pt;}
.yc6{bottom:83.679438pt;}
.y183{bottom:84.511981pt;}
.y354{bottom:85.944964pt;}
.y187{bottom:86.931703pt;}
.y2aa{bottom:87.081118pt;}
.y274{bottom:87.081367pt;}
.y89{bottom:89.051143pt;}
.y2fd{bottom:90.936018pt;}
.y2b9{bottom:92.599171pt;}
.y21b{bottom:93.884816pt;}
.y4c{bottom:93.893307pt;}
.y213{bottom:94.868175pt;}
.y10d{bottom:95.244000pt;}
.y353{bottom:96.528108pt;}
.yc5{bottom:97.587794pt;}
.y182{bottom:98.421399pt;}
.y186{bottom:100.840059pt;}
.y2a9{bottom:101.064924pt;}
.y273{bottom:101.066236pt;}
.y2fc{bottom:101.593973pt;}
.y88{bottom:102.959499pt;}
.y4a{bottom:106.582787pt;}
.y2b8{bottom:106.582977pt;}
.y352{bottom:107.186062pt;}
.y21a{bottom:107.793171pt;}
.y212{bottom:108.851981pt;}
.yc4{bottom:111.571600pt;}
.yc3{bottom:111.572924pt;}
.y2fb{bottom:112.176267pt;}
.y181{bottom:112.405205pt;}
.y185{bottom:114.823865pt;}
.y2a8{bottom:114.974343pt;}
.y272{bottom:114.974592pt;}
.y87{bottom:116.944368pt;}
.y351{bottom:117.843167pt;}
.y2b6{bottom:118.752667pt;}
.y49{bottom:119.281867pt;}
.y2b7{bottom:120.491333pt;}
.y2b5{bottom:120.493312pt;}
.y219{bottom:121.776977pt;}
.y211{bottom:122.761399pt;}
.yc2{bottom:125.482343pt;}
.y180{bottom:126.313561pt;}
.y350{bottom:128.426310pt;}
.y2a7{bottom:128.958149pt;}
.y271{bottom:128.958398pt;}
.y86{bottom:130.852724pt;}
.y2bf{bottom:134.475139pt;}
.y2b4{bottom:134.477118pt;}
.y218{bottom:135.685333pt;}
.y216{bottom:135.686776pt;}
.y2fa{bottom:136.674070pt;}
.y210{bottom:136.745205pt;}
.y34f{bottom:139.084265pt;}
.yc1{bottom:139.466149pt;}
.y17f{bottom:140.297367pt;}
.y217{bottom:140.446667pt;}
.y45{bottom:141.958699pt;}
.y2a6{bottom:142.866505pt;}
.y270{bottom:142.866754pt;}
.y18d{bottom:144.755619pt;}
.y85{bottom:144.836530pt;}
.y2be{bottom:148.383495pt;}
.y2b3{bottom:148.385474pt;}
.y34e{bottom:149.666559pt;}
.y215{bottom:149.670582pt;}
.y20f{bottom:150.653561pt;}
.yc0{bottom:153.374505pt;}
.y17e{bottom:154.282236pt;}
.y44{bottom:154.733333pt;}
.y2a5{bottom:156.850311pt;}
.y26f{bottom:156.851623pt;}
.y18c{bottom:157.454699pt;}
.y84{bottom:158.744886pt;}
.y34d{bottom:160.324513pt;}
.y2bd{bottom:162.367301pt;}
.y2b2{bottom:162.370343pt;}
.y20e{bottom:164.637367pt;}
.y2f9{bottom:166.683090pt;}
.ybf{bottom:167.358311pt;}
.y17d{bottom:168.190592pt;}
.y18b{bottom:170.229333pt;}
.y26e{bottom:170.759979pt;}
.y2a4{bottom:170.763962pt;}
.y34c{bottom:170.907657pt;}
.y83{bottom:172.729755pt;}
.y2bc{bottom:176.275657pt;}
.y2b1{bottom:176.278699pt;}
.y20d{bottom:178.546786pt;}
.y22b{bottom:179.528032pt;}
.y2f8{bottom:180.667959pt;}
.ybe{bottom:181.266667pt;}
.ybd{bottom:181.268091pt;}
.y34b{bottom:181.565611pt;}
.y17c{bottom:182.174398pt;}
.y26d{bottom:184.743785pt;}
.y2a3{bottom:184.748830pt;}
.y82{bottom:186.638110pt;}
.y2bb{bottom:190.260526pt;}
.y2b0{bottom:190.262505pt;}
.y34a{bottom:192.223566pt;}
.y22a{bottom:192.302667pt;}
.y20c{bottom:192.530592pt;}
.ybc{bottom:195.252960pt;}
.y17b{bottom:196.082754pt;}
.y43{bottom:197.594451pt;}
.y3a{bottom:197.595570pt;}
.y26c{bottom:198.652141pt;}
.y2a2{bottom:198.657186pt;}
.y81{bottom:200.621917pt;}
.y349{bottom:202.805860pt;}
.y2af{bottom:204.170861pt;}
.y20b{bottom:206.438948pt;}
.y2f7{bottom:208.560121pt;}
.ybb{bottom:209.161316pt;}
.y17a{bottom:210.067623pt;}
.y42{bottom:211.502807pt;}
.y39{bottom:211.503925pt;}
.y26b{bottom:212.637009pt;}
.y2a1{bottom:212.640992pt;}
.y348{bottom:213.464664pt;}
.y80{bottom:214.530272pt;}
.y2ba{bottom:218.152688pt;}
.y2ae{bottom:218.154667pt;}
.y20a{bottom:220.422754pt;}
.yba{bottom:223.145122pt;}
.y179{bottom:223.975979pt;}
.y347{bottom:224.046958pt;}
.y41{bottom:225.487676pt;}
.y38{bottom:225.487732pt;}
.y26a{bottom:226.545365pt;}
.y2a0{bottom:226.549348pt;}
.y7f{bottom:228.515141pt;}
.y209{bottom:234.332173pt;}
.y346{bottom:234.704912pt;}
.yb9{bottom:237.053478pt;}
.y178{bottom:237.959785pt;}
.y2f6{bottom:238.569142pt;}
.y40{bottom:239.396032pt;}
.y37{bottom:239.396087pt;}
.y269{bottom:240.529171pt;}
.y29f{bottom:240.534217pt;}
.y7e{bottom:242.423497pt;}
.y345{bottom:245.362867pt;}
.y2cc{bottom:246.500000pt;}
.y2cb{bottom:248.087587pt;}
.y2cd{bottom:248.088000pt;}
.y208{bottom:248.315979pt;}
.y177{bottom:251.868141pt;}
.y2f5{bottom:252.554010pt;}
.y3f{bottom:253.379838pt;}
.y36{bottom:253.380956pt;}
.y268{bottom:254.437527pt;}
.y29e{bottom:254.442573pt;}
.y344{bottom:255.946011pt;}
.y7d{bottom:256.407303pt;}
.y2c9{bottom:259.200000pt;}
.y2ca{bottom:260.786667pt;}
.y2c8{bottom:260.788032pt;}
.y207{bottom:262.224334pt;}
.yb8{bottom:264.946703pt;}
.y176{bottom:265.853009pt;}
.y2f4{bottom:266.462366pt;}
.y343{bottom:266.603965pt;}
.y266{bottom:266.608000pt;}
.y3e{bottom:267.288194pt;}
.y35{bottom:267.289312pt;}
.y267{bottom:268.421333pt;}
.y265{bottom:268.422311pt;}
.y29d{bottom:268.426379pt;}
.y7c{bottom:270.315659pt;}
.y2c6{bottom:271.974667pt;}
.y2c7{bottom:273.562667pt;}
.y2c5{bottom:273.562699pt;}
.y206{bottom:276.208141pt;}
.y342{bottom:277.186259pt;}
.yb7{bottom:278.930509pt;}
.y3c{bottom:279.458667pt;}
.y175{bottom:279.761365pt;}
.y2f3{bottom:280.446172pt;}
.y263{bottom:280.592000pt;}
.y3d{bottom:281.272000pt;}
.y34{bottom:281.273118pt;}
.y264{bottom:282.330667pt;}
.y262{bottom:282.330807pt;}
.y29c{bottom:282.334735pt;}
.y7b{bottom:284.300528pt;}
.y2c3{bottom:284.749333pt;}
.y2c2{bottom:286.336921pt;}
.y2c4{bottom:286.337333pt;}
.y341{bottom:287.845063pt;}
.y205{bottom:290.116496pt;}
.y174{bottom:293.745171pt;}
.y2f2{bottom:294.354528pt;}
.y33{bottom:295.181474pt;}
.y261{bottom:296.315676pt;}
.y29b{bottom:296.319604pt;}
.y7a{bottom:298.208884pt;}
.y340{bottom:298.427357pt;}
.y2c1{bottom:299.036000pt;}
.y204{bottom:304.101365pt;}
.y173{bottom:307.653527pt;}
.y2f1{bottom:308.339397pt;}
.y33f{bottom:309.085312pt;}
.y32{bottom:309.166343pt;}
.y260{bottom:310.224032pt;}
.y29a{bottom:310.227959pt;}
.yb6{bottom:311.131838pt;}
.y79{bottom:312.192690pt;}
.y203{bottom:318.009721pt;}
.y33e{bottom:319.743266pt;}
.y172{bottom:321.637333pt;}
.y170{bottom:321.643446pt;}
.y2f0{bottom:322.247753pt;}
.y31{bottom:323.074699pt;}
.y25f{bottom:324.207838pt;}
.y299{bottom:324.211766pt;}
.yb5{bottom:325.115644pt;}
.y78{bottom:326.101046pt;}
.y171{bottom:326.324000pt;}
.y33d{bottom:330.326410pt;}
.y202{bottom:331.993527pt;}
.y16f{bottom:335.552865pt;}
.y30{bottom:337.058505pt;}
.y25e{bottom:338.116194pt;}
.y298{bottom:338.120121pt;}
.yb4{bottom:339.024000pt;}
.yb2{bottom:339.025065pt;}
.y77{bottom:340.084852pt;}
.y33c{bottom:340.984364pt;}
.yb3{bottom:343.785333pt;}
.y201{bottom:345.977333pt;}
.y1ff{bottom:345.978505pt;}
.y16e{bottom:349.536671pt;}
.y2ef{bottom:350.139915pt;}
.y25c{bottom:350.362667pt;}
.y200{bottom:350.664000pt;}
.y3b{bottom:350.966861pt;}
.y33b{bottom:351.566658pt;}
.y25d{bottom:352.100000pt;}
.y25b{bottom:352.101171pt;}
.y297{bottom:352.104990pt;}
.yb1{bottom:353.008871pt;}
.y76{bottom:353.994270pt;}
.y1fe{bottom:359.886861pt;}
.y33a{bottom:362.224613pt;}
.y16d{bottom:363.445026pt;}
.y2f{bottom:364.950667pt;}
.y25a{bottom:366.009527pt;}
.y296{bottom:366.013346pt;}
.yb0{bottom:366.918289pt;}
.y75{bottom:367.978076pt;}
.y339{bottom:372.883417pt;}
.y1fd{bottom:373.870667pt;}
.y16c{bottom:377.428833pt;}
.y258{bottom:378.254667pt;}
.y259{bottom:379.993333pt;}
.y257{bottom:379.994807pt;}
.y295{bottom:379.997152pt;}
.y2ee{bottom:380.224386pt;}
.yaf{bottom:380.902096pt;}
.y74{bottom:381.886432pt;}
.y338{bottom:383.465711pt;}
.y1fb{bottom:387.782486pt;}
.y16b{bottom:391.338251pt;}
.y1fc{bottom:392.541333pt;}
.y256{bottom:393.979676pt;}
.y294{bottom:393.980958pt;}
.y337{bottom:394.123665pt;}
.yae{bottom:394.810451pt;}
.y73{bottom:395.870238pt;}
.y1fa{bottom:401.766292pt;}
.y336{bottom:404.706809pt;}
.y16a{bottom:405.322057pt;}
.y255{bottom:407.888032pt;}
.y293{bottom:407.889314pt;}
.y2ed{bottom:408.117610pt;}
.yad{bottom:408.794258pt;}
.y72{bottom:409.855107pt;}
.y335{bottom:415.364764pt;}
.y1f9{bottom:415.674647pt;}
.y2e{bottom:417.789333pt;}
.y2d{bottom:417.789397pt;}
.y169{bottom:419.230413pt;}
.y254{bottom:421.871838pt;}
.y292{bottom:421.874183pt;}
.yac{bottom:422.703676pt;}
.y71{bottom:423.763463pt;}
.y334{bottom:426.022718pt;}
.y1f8{bottom:429.659516pt;}
.y2c{bottom:430.564032pt;}
.y168{bottom:433.214219pt;}
.y253{bottom:435.780194pt;}
.y291{bottom:435.782539pt;}
.y2ec{bottom:436.009772pt;}
.y333{bottom:436.605012pt;}
.yab{bottom:436.687482pt;}
.y70{bottom:437.747269pt;}
.y2a{bottom:441.750667pt;}
.y2b{bottom:443.338667pt;}
.y29{bottom:443.340319pt;}
.y1f7{bottom:443.567872pt;}
.y1a7{bottom:446.215604pt;}
.y1d3{bottom:447.120903pt;}
.y167{bottom:447.123638pt;}
.y332{bottom:447.263816pt;}
.y251{bottom:447.949333pt;}
.y252{bottom:449.764000pt;}
.y250{bottom:449.765009pt;}
.y290{bottom:449.766345pt;}
.y2eb{bottom:449.919191pt;}
.yaa{bottom:450.595838pt;}
.y6f{bottom:451.655625pt;}
.y28{bottom:456.114954pt;}
.y1f6{bottom:457.551678pt;}
.y331{bottom:457.846110pt;}
.y1a6{bottom:460.199410pt;}
.y1d2{bottom:461.104709pt;}
.y166{bottom:461.107444pt;}
.y24f{bottom:463.673365pt;}
.y28f{bottom:463.674701pt;}
.y2ea{bottom:463.902997pt;}
.ya9{bottom:464.579644pt;}
.y6e{bottom:465.640494pt;}
.y330{bottom:468.504065pt;}
.y27{bottom:468.814033pt;}
.y1f5{bottom:471.460034pt;}
.y1a5{bottom:474.107766pt;}
.y1d1{bottom:475.013065pt;}
.y165{bottom:475.015800pt;}
.y24e{bottom:477.657171pt;}
.y28e{bottom:477.659570pt;}
.ya8{bottom:478.489474pt;}
.y32f{bottom:479.086358pt;}
.y6d{bottom:479.548850pt;}
.y26{bottom:481.588668pt;}
.y1f4{bottom:485.444903pt;}
.y1a4{bottom:488.091572pt;}
.y1d0{bottom:488.996871pt;}
.y164{bottom:488.999606pt;}
.y32e{bottom:489.745163pt;}
.y24d{bottom:491.565527pt;}
.y28d{bottom:491.567925pt;}
.y2e9{bottom:491.795159pt;}
.ya7{bottom:492.474343pt;}
.y6c{bottom:493.532656pt;}
.y25{bottom:494.363302pt;}
.yee{bottom:494.664000pt;}
.yed{bottom:494.665365pt;}
.y105{bottom:494.668066pt;}
.y1f3{bottom:499.353259pt;}
.y106{bottom:499.426667pt;}
.y32d{bottom:500.403117pt;}
.y1a3{bottom:502.000990pt;}
.y1cf{bottom:502.906289pt;}
.y163{bottom:502.907962pt;}
.y1e{bottom:503.661366pt;}
.y24b{bottom:503.734667pt;}
.y24c{bottom:505.549333pt;}
.y24a{bottom:505.550149pt;}
.y28c{bottom:505.551732pt;}
.ya6{bottom:506.382699pt;}
.y24{bottom:507.062382pt;}
.y6b{bottom:507.441012pt;}
.yec{bottom:508.649171pt;}
.y104{bottom:508.651872pt;}
.y32c{bottom:510.985411pt;}
.y1f2{bottom:513.337065pt;}
.y1d{bottom:515.075928pt;}
.y1a2{bottom:515.984796pt;}
.y1ce{bottom:516.890096pt;}
.y162{bottom:516.892830pt;}
.y249{bottom:519.458505pt;}
.y28b{bottom:519.460087pt;}
.y23{bottom:519.837016pt;}
.ya5{bottom:520.366505pt;}
.y6a{bottom:521.425880pt;}
.y32b{bottom:521.643366pt;}
.yeb{bottom:522.557527pt;}
.y103{bottom:522.560228pt;}
.y1c{bottom:526.489639pt;}
.y1f1{bottom:527.245421pt;}
.y2e8{bottom:528.682907pt;}
.y1a1{bottom:529.893152pt;}
.y1cd{bottom:530.798451pt;}
.y161{bottom:530.801186pt;}
.y32a{bottom:532.226510pt;}
.y22{bottom:532.611651pt;}
.y248{bottom:533.442311pt;}
.y28a{bottom:533.444956pt;}
.ya4{bottom:534.350311pt;}
.y69{bottom:535.334236pt;}
.ye9{bottom:536.541333pt;}
.ye8{bottom:536.543979pt;}
.y102{bottom:536.544034pt;}
.y1b{bottom:537.903350pt;}
.yea{bottom:541.228000pt;}
.y1f0{bottom:541.230289pt;}
.y2e7{bottom:542.667776pt;}
.y329{bottom:542.884464pt;}
.y1a0{bottom:543.876958pt;}
.y1cc{bottom:544.782258pt;}
.y160{bottom:544.784992pt;}
.y21{bottom:545.310730pt;}
.y246{bottom:545.612000pt;}
.y247{bottom:547.350667pt;}
.y245{bottom:547.352087pt;}
.y289{bottom:547.353312pt;}
.ya3{bottom:548.258667pt;}
.ya1{bottom:548.258699pt;}
.y1a{bottom:549.317911pt;}
.y68{bottom:549.318042pt;}
.ye7{bottom:550.452334pt;}
.y101{bottom:550.453453pt;}
.ya2{bottom:553.020000pt;}
.y328{bottom:553.542418pt;}
.y1ef{bottom:555.138645pt;}
.y2e6{bottom:556.576132pt;}
.y19f{bottom:557.785314pt;}
.y20{bottom:558.085365pt;}
.y1cb{bottom:558.691676pt;}
.y15f{bottom:558.693348pt;}
.y19{bottom:560.731622pt;}
.y244{bottom:561.336956pt;}
.y288{bottom:561.337118pt;}
.ya0{bottom:562.242505pt;}
.y67{bottom:563.226398pt;}
.y327{bottom:564.125562pt;}
.ye6{bottom:564.436141pt;}
.y100{bottom:564.437259pt;}
.y1ee{bottom:569.122451pt;}
.y2e5{bottom:570.559938pt;}
.y1f{bottom:570.860000pt;}
.y19e{bottom:571.770183pt;}
.y18{bottom:572.145333pt;}
.y1ca{bottom:572.675482pt;}
.y15e{bottom:572.678217pt;}
.y326{bottom:574.783517pt;}
.y243{bottom:575.245312pt;}
.y287{bottom:575.245474pt;}
.y9f{bottom:576.150861pt;}
.y66{bottom:577.210204pt;}
.ye5{bottom:578.344496pt;}
.yff{bottom:578.345615pt;}
.y1ed{bottom:583.030807pt;}
.y2e4{bottom:584.468294pt;}
.y325{bottom:585.365810pt;}
.y19d{bottom:585.678539pt;}
.y1c9{bottom:586.583838pt;}
.y15d{bottom:586.586573pt;}
.y242{bottom:589.229118pt;}
.y286{bottom:589.230343pt;}
.y9e{bottom:590.134667pt;}
.y9c{bottom:590.136644pt;}
.y65{bottom:591.119623pt;}
.ye4{bottom:592.329365pt;}
.yfe{bottom:592.329421pt;}
.y9d{bottom:594.821333pt;}
.y324{bottom:596.023765pt;}
.y37a{bottom:596.035566pt;}
.y17{bottom:596.862667pt;}
.y1ec{bottom:597.015676pt;}
.y2e3{bottom:598.453162pt;}
.y19c{bottom:599.662345pt;}
.y1c8{bottom:600.567644pt;}
.y15c{bottom:600.570379pt;}
.y241{bottom:603.137474pt;}
.y285{bottom:603.138699pt;}
.y9b{bottom:604.045000pt;}
.y64{bottom:605.103429pt;}
.ye3{bottom:606.313171pt;}
.yfd{bottom:606.314289pt;}
.y323{bottom:606.606909pt;}
.y379{bottom:606.617860pt;}
.y1eb{bottom:610.924032pt;}
.y2e2{bottom:612.361518pt;}
.y19b{bottom:613.570701pt;}
.y1c7{bottom:614.476000pt;}
.y1c5{bottom:614.476141pt;}
.y15b{bottom:614.478735pt;}
.y240{bottom:617.122343pt;}
.y284{bottom:617.122505pt;}
.y322{bottom:617.264863pt;}
.y378{bottom:617.275814pt;}
.y9a{bottom:618.028806pt;}
.y63{bottom:619.011785pt;}
.y1c6{bottom:619.237333pt;}
.ye2{bottom:620.221527pt;}
.yfc{bottom:620.222645pt;}
.y1ea{bottom:624.907838pt;}
.y2e1{bottom:626.345324pt;}
.y19a{bottom:627.555570pt;}
.y321{bottom:627.922818pt;}
.y377{bottom:627.934619pt;}
.y1c4{bottom:628.461009pt;}
.y15a{bottom:628.463604pt;}
.y23f{bottom:631.030699pt;}
.y283{bottom:631.030861pt;}
.y99{bottom:631.938224pt;}
.y62{bottom:632.995591pt;}
.ye0{bottom:634.205333pt;}
.ydf{bottom:634.206204pt;}
.yfb{bottom:634.206451pt;}
.y320{bottom:638.505111pt;}
.y376{bottom:638.516912pt;}
.y1e9{bottom:638.816194pt;}
.ye1{bottom:638.890667pt;}
.y2e0{bottom:640.253680pt;}
.y16{bottom:640.856956pt;}
.y199{bottom:641.463925pt;}
.y1c3{bottom:642.444816pt;}
.y159{bottom:642.447410pt;}
.y281{bottom:645.009621pt;}
.y23e{bottom:645.014505pt;}
.y282{bottom:645.014667pt;}
.y98{bottom:645.922030pt;}
.y61{bottom:646.905009pt;}
.yfa{bottom:648.114807pt;}
.yde{bottom:648.115623pt;}
.y31f{bottom:649.163916pt;}
.y375{bottom:649.174867pt;}
.y15{bottom:652.270667pt;}
.y1e8{bottom:652.801118pt;}
.y2df{bottom:654.238549pt;}
.y198{bottom:655.447732pt;}
.y14{bottom:656.050667pt;}
.y134{bottom:656.353171pt;}
.y158{bottom:656.355766pt;}
.y280{bottom:658.917977pt;}
.y23d{bottom:658.922861pt;}
.y31e{bottom:659.746210pt;}
.y374{bottom:659.757161pt;}
.y97{bottom:659.830386pt;}
.y60{bottom:660.888816pt;}
.y11b{bottom:661.947538pt;}
.ydd{bottom:662.099429pt;}
.yf9{bottom:662.099676pt;}
.y13{bottom:663.685333pt;}
.y1e7{bottom:666.709474pt;}
.y12{bottom:667.464000pt;}
.y197{bottom:669.356087pt;}
.y133{bottom:670.336977pt;}
.y157{bottom:670.339572pt;}
.y31d{bottom:670.404164pt;}
.y373{bottom:670.415965pt;}
.y23b{bottom:671.093333pt;}
.y27f{bottom:672.901783pt;}
.y23c{bottom:672.906667pt;}
.y23a{bottom:672.907644pt;}
.y96{bottom:673.814192pt;}
.y5f{bottom:674.797171pt;}
.y11{bottom:675.098667pt;}
.y11a{bottom:675.856956pt;}
.ydc{bottom:676.007785pt;}
.yf8{bottom:676.008032pt;}
.y10{bottom:678.878667pt;}
.y1e6{bottom:680.694343pt;}
.y31c{bottom:681.062119pt;}
.y372{bottom:681.073920pt;}
.y2de{bottom:682.130711pt;}
.y131{bottom:682.506667pt;}
.y196{bottom:683.340956pt;}
.y132{bottom:684.245333pt;}
.y130{bottom:684.246451pt;}
.y1c1{bottom:684.246505pt;}
.y156{bottom:684.248990pt;}
.yf{bottom:686.588956pt;}
.y27e{bottom:686.810139pt;}
.y239{bottom:686.816000pt;}
.y237{bottom:686.817365pt;}
.y95{bottom:687.722548pt;}
.y5e{bottom:688.780977pt;}
.y1c2{bottom:689.008000pt;}
.y119{bottom:689.840762pt;}
.ydb{bottom:689.991591pt;}
.yf7{bottom:689.991838pt;}
.y238{bottom:691.577333pt;}
.y31b{bottom:691.645263pt;}
.y371{bottom:691.656213pt;}
.y1e5{bottom:694.602699pt;}
.y195{bottom:697.249312pt;}
.ye{bottom:698.002667pt;}
.y12f{bottom:698.230258pt;}
.y1c0{bottom:698.230311pt;}
.y155{bottom:698.232796pt;}
.y27d{bottom:700.795008pt;}
.y236{bottom:700.801171pt;}
.y5c{bottom:700.950667pt;}
.y94{bottom:701.707418pt;}
.yd{bottom:701.782667pt;}
.y31a{bottom:702.303217pt;}
.y370{bottom:702.315018pt;}
.y5d{bottom:702.689333pt;}
.y5b{bottom:702.692119pt;}
.y18a{bottom:703.068032pt;}
.y118{bottom:703.749118pt;}
.yf6{bottom:703.900194pt;}
.yda{bottom:703.901009pt;}
.y1e4{bottom:708.586505pt;}
.yc{bottom:709.417333pt;}
.y194{bottom:711.233118pt;}
.y1bf{bottom:712.138667pt;}
.y12e{bottom:712.139676pt;}
.y2dd{bottom:712.139732pt;}
.y1bd{bottom:712.139838pt;}
.y154{bottom:712.141152pt;}
.y319{bottom:712.885511pt;}
.y36f{bottom:712.897312pt;}
.yb{bottom:713.197333pt;}
.y27c{bottom:714.703363pt;}
.y235{bottom:714.709527pt;}
.y93{bottom:715.614710pt;}
.y189{bottom:715.842667pt;}
.y5a{bottom:716.675925pt;}
.y1be{bottom:716.901333pt;}
.y117{bottom:717.732924pt;}
.yf5{bottom:717.884000pt;}
.yd9{bottom:717.884816pt;}
.yf3{bottom:717.885118pt;}
.y1e3{bottom:722.494861pt;}
.yf4{bottom:722.570667pt;}
.y318{bottom:723.544315pt;}
.y36e{bottom:723.555266pt;}
.y193{bottom:725.141474pt;}
.y12d{bottom:726.123482pt;}
.y2dc{bottom:726.123538pt;}
.y1bc{bottom:726.123644pt;}
.y153{bottom:726.124958pt;}
.y233{bottom:726.878667pt;}
.y27b{bottom:728.687170pt;}
.y232{bottom:728.692924pt;}
.y234{bottom:728.693333pt;}
.y92{bottom:729.598516pt;}
.y59{bottom:730.584281pt;}
.y9{bottom:731.340169pt;}
.y116{bottom:731.642343pt;}
.yd8{bottom:731.793171pt;}
.yf2{bottom:731.793474pt;}
.y317{bottom:734.126609pt;}
.y36d{bottom:734.137560pt;}
.y1e2{bottom:736.479838pt;}
.ya{bottom:737.537333pt;}
.y192{bottom:739.126343pt;}
.y12c{bottom:740.031838pt;}
.y1bb{bottom:740.032000pt;}
.y1b9{bottom:740.032809pt;}
.y2db{bottom:740.032956pt;}
.y152{bottom:740.033314pt;}
.y27a{bottom:742.595525pt;}
.y231{bottom:742.602343pt;}
.y58{bottom:744.568087pt;}
.y316{bottom:744.784563pt;}
.y1ba{bottom:744.793333pt;}
.y36c{bottom:744.796365pt;}
.y115{bottom:745.626149pt;}
.yd7{bottom:745.776977pt;}
.yf1{bottom:745.778343pt;}
.y8{bottom:748.573333pt;}
.y6{bottom:748.574800pt;}
.y1e1{bottom:750.388194pt;}
.y191{bottom:753.034699pt;}
.y12b{bottom:754.015644pt;}
.y1b8{bottom:754.016615pt;}
.y2da{bottom:754.016762pt;}
.y151{bottom:754.018183pt;}
.y7{bottom:754.846667pt;}
.y315{bottom:755.442518pt;}
.y36b{bottom:755.454319pt;}
.y279{bottom:756.580394pt;}
.y230{bottom:756.586149pt;}
.y91{bottom:757.491741pt;}
.y57{bottom:758.477506pt;}
.y114{bottom:759.534505pt;}
.yd6{bottom:759.685333pt;}
.yf0{bottom:759.686699pt;}
.y1e0{bottom:764.372000pt;}
.y4{bottom:765.884000pt;}
.y314{bottom:766.025662pt;}
.y36a{bottom:766.036613pt;}
.y190{bottom:767.018505pt;}
.y2d9{bottom:767.925118pt;}
.y12a{bottom:767.925426pt;}
.y1b7{bottom:767.926033pt;}
.y150{bottom:767.926539pt;}
.y278{bottom:770.488750pt;}
.y22f{bottom:770.494505pt;}
.yd5{bottom:771.854667pt;}
.y5{bottom:772.081333pt;}
.y56{bottom:772.461312pt;}
.y113{bottom:773.518311pt;}
.yd4{bottom:773.670505pt;}
.y313{bottom:776.683616pt;}
.y369{bottom:776.694567pt;}
.y18f{bottom:780.926861pt;}
.y2d8{bottom:781.908924pt;}
.y129{bottom:781.909232pt;}
.y1b6{bottom:781.909840pt;}
.y14f{bottom:781.910345pt;}
.y277{bottom:784.472556pt;}
.y22e{bottom:784.478311pt;}
.y90{bottom:785.383903pt;}
.y55{bottom:786.369668pt;}
.y312{bottom:787.265910pt;}
.y368{bottom:787.277711pt;}
.y112{bottom:787.426667pt;}
.yd3{bottom:787.578861pt;}
.y18e{bottom:794.910667pt;}
.y128{bottom:795.816525pt;}
.y1b5{bottom:795.817132pt;}
.y2d7{bottom:795.818343pt;}
.y14e{bottom:795.818701pt;}
.y22d{bottom:796.649333pt;}
.y311{bottom:797.923864pt;}
.y367{bottom:797.935665pt;}
.y276{bottom:798.380912pt;}
.y22c{bottom:798.386667pt;}
.y3{bottom:799.143748pt;}
.y54{bottom:800.353474pt;}
.y229{bottom:800.354183pt;}
.yef{bottom:801.558545pt;}
.yd2{bottom:801.562667pt;}
.y310{bottom:808.582669pt;}
.y366{bottom:808.593620pt;}
.y127{bottom:809.800331pt;}
.y1b4{bottom:809.800939pt;}
.y2d6{bottom:809.802149pt;}
.y14d{bottom:809.803570pt;}
.y228{bottom:811.843555pt;}
.y8f{bottom:814.259044pt;}
.y53{bottom:814.261830pt;}
.y30f{bottom:819.164963pt;}
.y365{bottom:819.175914pt;}
.y2{bottom:822.122667pt;}
.y227{bottom:823.257266pt;}
.y13f{bottom:823.484202pt;}
.y126{bottom:823.709750pt;}
.y1b3{bottom:823.710357pt;}
.y2d5{bottom:823.710505pt;}
.y14c{bottom:823.711925pt;}
.y1df{bottom:824.844953pt;}
.y8e{bottom:828.243913pt;}
.y52{bottom:828.246699pt;}
.y2ad{bottom:828.321365pt;}
.y30e{bottom:829.822917pt;}
.y364{bottom:829.834718pt;}
.y13e{bottom:834.898764pt;}
.y1de{bottom:837.544032pt;}
.y10c{bottom:837.545158pt;}
.y125{bottom:837.693556pt;}
.y1b2{bottom:837.694163pt;}
.y2d4{bottom:837.694311pt;}
.y14b{bottom:837.695732pt;}
.y30d{bottom:840.406061pt;}
.y363{bottom:840.417012pt;}
.y226{bottom:840.794391pt;}
.y2ac{bottom:841.096000pt;}
.y8d{bottom:842.152268pt;}
.y51{bottom:842.155054pt;}
.y13d{bottom:846.312475pt;}
.y10b{bottom:848.958869pt;}
.y2d2{bottom:849.864000pt;}
.y1dd{bottom:850.318667pt;}
.y30c{bottom:851.064016pt;}
.y362{bottom:851.074966pt;}
.y1{bottom:851.376000pt;}
.y124{bottom:851.601912pt;}
.y1b1{bottom:851.602519pt;}
.y2d3{bottom:851.602667pt;}
.y14a{bottom:851.604087pt;}
.y2d1{bottom:851.604194pt;}
.y8c{bottom:856.136075pt;}
.y50{bottom:856.138861pt;}
.y13c{bottom:857.726186pt;}
.y225{bottom:858.330667pt;}
.y223{bottom:858.331385pt;}
.y10a{bottom:860.373430pt;}
.y30b{bottom:861.646309pt;}
.y361{bottom:861.658110pt;}
.y224{bottom:862.110667pt;}
.y2d0{bottom:863.773333pt;}
.y123{bottom:865.585718pt;}
.y1b0{bottom:865.586325pt;}
.y2cf{bottom:865.588000pt;}
.y149{bottom:865.588956pt;}
.y13b{bottom:869.140747pt;}
.y1dc{bottom:869.141023pt;}
.y8b{bottom:870.119881pt;}
.y4f{bottom:870.122667pt;}
.y2ce{bottom:870.274667pt;}
.y109{bottom:871.862802pt;}
.y30a{bottom:872.304264pt;}
.y360{bottom:872.316065pt;}
.y222{bottom:875.867660pt;}
.y122{bottom:879.494074pt;}
.y1af{bottom:879.494681pt;}
.y148{bottom:879.497312pt;}
.y13a{bottom:880.630119pt;}
.y1db{bottom:880.631244pt;}
.y309{bottom:882.963068pt;}
.y35f{bottom:882.974019pt;}
.y108{bottom:883.276513pt;}
.y221{bottom:887.282221pt;}
.y139{bottom:892.043830pt;}
.y1da{bottom:892.044956pt;}
.y48{bottom:892.194667pt;}
.y121{bottom:893.478943pt;}
.y1ae{bottom:893.479550pt;}
.y147{bottom:893.481118pt;}
.y308{bottom:893.545362pt;}
.y35e{bottom:893.556313pt;}
.y107{bottom:894.691074pt;}
.y220{bottom:898.695932pt;}
.y1d9{bottom:903.458667pt;}
.y307{bottom:904.203316pt;}
.y35d{bottom:904.215118pt;}
.ycf{bottom:906.104786pt;}
.y120{bottom:907.387298pt;}
.y1ad{bottom:907.387906pt;}
.y146{bottom:907.389474pt;}
.y138{bottom:909.580956pt;}
.y306{bottom:914.785610pt;}
.y35c{bottom:914.797411pt;}
.y21f{bottom:916.233058pt;}
.yce{bottom:917.518497pt;}
.y137{bottom:920.994667pt;}
.y11f{bottom:921.371105pt;}
.y1ac{bottom:921.371712pt;}
.y145{bottom:921.374343pt;}
.y1d8{bottom:924.774667pt;}
.y305{bottom:925.444415pt;}
.y35b{bottom:925.455366pt;}
.ycd{bottom:928.933058pt;}
.y47{bottom:929.310667pt;}
.y21e{bottom:933.769333pt;}
.y11e{bottom:935.279460pt;}
.y1ab{bottom:935.280068pt;}
.y144{bottom:935.282699pt;}
.y304{bottom:936.102369pt;}
.y35a{bottom:936.113320pt;}
.y1d7{bottom:938.532921pt;}
.y136{bottom:938.532985pt;}
.ycc{bottom:946.469333pt;}
.y303{bottom:946.684663pt;}
.y359{bottom:946.696464pt;}
.y11d{bottom:949.264329pt;}
.y1aa{bottom:949.264937pt;}
.y143{bottom:949.266505pt;}
.y1d6{bottom:951.232000pt;}
.y135{bottom:951.232064pt;}
.y21d{bottom:955.540000pt;}
.y302{bottom:957.342617pt;}
.y358{bottom:957.354418pt;}
.y1a9{bottom:963.173293pt;}
.y142{bottom:963.174861pt;}
.y1d5{bottom:964.006667pt;}
.ycb{bottom:964.006699pt;}
.y46{bottom:966.500000pt;}
.y301{bottom:967.925761pt;}
.y357{bottom:967.936712pt;}
.y1d4{bottom:968.238667pt;}
.yca{bottom:976.781333pt;}
.y11c{bottom:977.156491pt;}
.y1a8{bottom:977.157099pt;}
.y141{bottom:977.158667pt;}
.y300{bottom:978.583716pt;}
.y356{bottom:978.594667pt;}
.y4b{bottom:1002.226640pt;}
.y355{bottom:1003.224444pt;}
.y37b{bottom:1003.236245pt;}
.yd0{bottom:1003.236946pt;}
.y111{bottom:1003.237333pt;}
.h18{height:15.842986pt;}
.h17{height:17.824291pt;}
.h6{height:20.907656pt;}
.h13{height:21.233501pt;}
.h16{height:23.522344pt;}
.hc{height:25.219219pt;}
.hd{height:27.957831pt;}
.hf{height:28.021406pt;}
.h15{height:29.087971pt;}
.h7{height:29.887031pt;}
.h14{height:29.887500pt;}
.h1a{height:29.896284pt;}
.h11{height:30.647691pt;}
.h12{height:31.064661pt;}
.h8{height:32.199145pt;}
.h19{height:32.202546pt;}
.h9{height:32.501788pt;}
.ha{height:32.689219pt;}
.h5{height:32.997656pt;}
.hb{height:33.623437pt;}
.he{height:37.359844pt;}
.h2{height:44.831250pt;}
.h4{height:49.501875pt;}
.h3{height:63.044531pt;}
.h10{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xbd{left:54.651867pt;}
.x18{left:55.785733pt;}
.x2e{left:56.844000pt;}
.x49{left:58.129067pt;}
.x88{left:59.189413pt;}
.x4c{left:62.134832pt;}
.x95{left:63.722800pt;}
.x2b{left:66.065235pt;}
.x96{left:68.182667pt;}
.x69{left:70.073882pt;}
.x4d{left:71.508255pt;}
.xbc{left:73.172633pt;}
.xa0{left:74.154267pt;}
.x68{left:75.289368pt;}
.xa1{left:82.318000pt;}
.x97{left:83.678667pt;}
.x50{left:86.173200pt;}
.x51{left:90.633067pt;}
.x4b{left:92.219729pt;}
.x4a{left:97.435215pt;}
.x4e{left:103.180326pt;}
.x8a{left:119.281867pt;}
.xb6{left:126.084933pt;}
.xba{left:126.993124pt;}
.x8b{left:128.201467pt;}
.x17{left:130.469200pt;}
.xb7{left:134.098202pt;}
.x2{left:135.759969pt;}
.x6e{left:137.801337pt;}
.x1d{left:138.782706pt;}
.x6d{left:141.202667pt;}
.xb4{left:142.640000pt;}
.x8e{left:148.233333pt;}
.x81{left:152.617333pt;}
.xb5{left:154.053333pt;}
.x73{left:158.437333pt;}
.x5c{left:166.904250pt;}
.x74{left:169.852000pt;}
.x5b{left:174.462667pt;}
.xb8{left:178.846594pt;}
.x3{left:190.940171pt;}
.xad{left:195.250667pt;}
.xb9{left:203.261667pt;}
.x90{left:205.757333pt;}
.x91{left:210.217333pt;}
.x71{left:212.029564pt;}
.x6f{left:213.390606pt;}
.x52{left:214.601333pt;}
.x92{left:218.002667pt;}
.x53{left:220.194667pt;}
.x4{left:222.236000pt;}
.x93{left:227.149333pt;}
.x87{left:228.510667pt;}
.x1c{left:229.792788pt;}
.x54{left:233.725333pt;}
.x5{left:236.749333pt;}
.x84{left:243.024000pt;}
.x89{left:246.576000pt;}
.x8f{left:250.885333pt;}
.x85{left:252.094667pt;}
.xd{left:253.984000pt;}
.x5e{left:256.023179pt;}
.x30{left:257.761643pt;}
.x5d{left:259.198378pt;}
.xe{left:260.258667pt;}
.x8c{left:264.340000pt;}
.x34{left:266.834667pt;}
.x98{left:267.893333pt;}
.x20{left:269.329333pt;}
.x72{left:272.803793pt;}
.x99{left:276.585333pt;}
.x1e{left:282.176697pt;}
.x94{left:289.209333pt;}
.x31{left:295.253479pt;}
.x9a{left:296.238667pt;}
.x33{left:298.960000pt;}
.x9b{left:300.774667pt;}
.x35{left:302.826667pt;}
.x32{left:304.554667pt;}
.x8d{left:309.694667pt;}
.xa3{left:312.945333pt;}
.x36{left:318.765333pt;}
.x19{left:319.820254pt;}
.x9c{left:324.434667pt;}
.xf{left:326.475191pt;}
.x37{left:328.742667pt;}
.x9d{left:332.220000pt;}
.x9e{left:336.680000pt;}
.x70{left:338.037751pt;}
.xa4{left:344.012000pt;}
.x6{left:345.449333pt;}
.x60{left:347.486740pt;}
.xa5{left:348.472000pt;}
.x5f{left:350.661938pt;}
.xb1{left:353.234667pt;}
.xa6{left:356.258667pt;}
.xbb{left:358.296053pt;}
.x7{left:360.490667pt;}
.x82{left:364.194667pt;}
.x38{left:365.177333pt;}
.x7f{left:366.538667pt;}
.x9f{left:367.445333pt;}
.x21{left:369.637333pt;}
.x80{left:370.620000pt;}
.x22{left:373.720000pt;}
.xb2{left:376.062667pt;}
.x39{left:377.424000pt;}
.x83{left:378.784000pt;}
.x4f{left:380.372000pt;}
.x10{left:382.335483pt;}
.xb3{left:385.738667pt;}
.x23{left:391.181333pt;}
.xcb{left:392.559973pt;}
.x24{left:395.186667pt;}
.x25{left:402.217333pt;}
.x26{left:406.224000pt;}
.x2c{left:408.790162pt;}
.x11{left:410.456000pt;}
.xbf{left:413.325146pt;}
.x12{left:416.277333pt;}
.xaa{left:418.772000pt;}
.x75{left:421.190667pt;}
.x3a{left:424.742163pt;}
.x8{left:429.579620pt;}
.xbe{left:430.634439pt;}
.x76{left:432.605333pt;}
.x2d{left:434.645333pt;}
.x57{left:436.460000pt;}
.xab{left:438.425333pt;}
.x61{left:439.782568pt;}
.x77{left:440.994667pt;}
.xac{left:442.885333pt;}
.x27{left:445.984000pt;}
.x58{left:447.118667pt;}
.x28{left:450.066667pt;}
.xc5{left:451.724216pt;}
.x1a{left:452.783029pt;}
.x42{left:456.945333pt;}
.xc4{left:463.289249pt;}
.x43{left:466.393333pt;}
.x3e{left:468.358667pt;}
.xcc{left:469.412720pt;}
.x59{left:474.633333pt;}
.x3f{left:476.673333pt;}
.x5a{left:479.168000pt;}
.x6a{left:485.064000pt;}
.x13{left:493.227448pt;}
.xcd{left:497.229496pt;}
.xa2{left:499.729333pt;}
.x2f{left:500.707327pt;}
.x3b{left:503.584000pt;}
.x9{left:505.928000pt;}
.x78{left:511.294667pt;}
.x3c{left:516.510667pt;}
.xa{left:520.062667pt;}
.x63{left:523.308559pt;}
.x62{left:526.483757pt;}
.x7e{left:531.325333pt;}
.x79{left:536.012000pt;}
.x45{left:537.070667pt;}
.x40{left:543.042667pt;}
.x41{left:547.577333pt;}
.x1b{left:549.537737pt;}
.x46{left:551.433333pt;}
.x14{left:554.152508pt;}
.x15{left:563.452000pt;}
.xc1{left:565.033310pt;}
.xce{left:567.527619pt;}
.x16{left:569.045333pt;}
.xca{left:572.289935pt;}
.xcf{left:580.000580pt;}
.xc0{left:583.401853pt;}
.xc2{left:603.962005pt;}
.xc6{left:605.323048pt;}
.x3d{left:607.445333pt;}
.x1f{left:611.445540pt;}
.x65{left:612.353528pt;}
.xa7{left:614.702667pt;}
.x64{left:615.603537pt;}
.xa8{left:619.237333pt;}
.xb{left:620.976000pt;}
.x6b{left:625.209333pt;}
.x6c{left:632.088000pt;}
.x44{left:633.221333pt;}
.xc9{left:635.256623pt;}
.xc{left:636.624000pt;}
.xc7{left:639.111067pt;}
.x55{left:641.688000pt;}
.xae{left:643.049333pt;}
.x56{left:647.281333pt;}
.x7a{left:650.078667pt;}
.x7b{left:654.538667pt;}
.xaf{left:662.626667pt;}
.x7c{left:665.952000pt;}
.xb0{left:667.842667pt;}
.xa9{left:674.342667pt;}
.x7d{left:675.250667pt;}
.x47{left:682.205333pt;}
.x48{left:697.549333pt;}
.x67{left:701.474158pt;}
.x66{left:704.648506pt;}
.x86{left:705.864000pt;}
.xc8{left:720.672430pt;}
.x29{left:721.588000pt;}
.xc3{left:725.434802pt;}
.x2a{left:726.652000pt;}
}

