
    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_e882501649cc4210bfa06fcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_dd204187e412eec3fdcd3c48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_20333f3a332f43c0470c2766.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_ffcaadbb5f15ca9a99c03259.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_f583025b6eb75a9c39976291.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.500000;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_6c4fc1eb70294874954d0d31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_f7eab6ab9615a2771a1ef13c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.879000;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_588e81a8f2dd7a44fd136988.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.828000;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_fe66f1a13b4bee235125ece5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_be2090f16bb36234a5ff545e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.363000;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_c62da91f2bc09aa536f7193c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687000;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_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_b1507350fbca9e7e34a8fa39.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b1507350fbca9e7e34a8fa39.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.969000;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:ff15;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.969000;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:ff16;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.969000;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:ff17;src:url('chunks/assets/font_b1507350fbca9e7e34a8fa39.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.969000;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:ff18;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.969000;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:ff19;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.969000;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:ff1a;src:url('chunks/assets/font_b1507350fbca9e7e34a8fa39.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.969000;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:ff1b;src:url('chunks/assets/font_5a39ee33818ea1ae6cbcf742.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.969000;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;}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m1{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-15.430645px;}
.v3{vertical-align:-14.286000px;}
.v14{vertical-align:-6.432000px;}
.v2{vertical-align:-1.144645px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.374839px;}
.v13{vertical-align:6.432000px;}
.v10{vertical-align:9.990000px;}
.v12{vertical-align:14.272046px;}
.v5{vertical-align:16.317418px;}
.v11{vertical-align:20.497144px;}
.v6{vertical-align:22.422164px;}
.v4{vertical-align:28.914000px;}
.vc{vertical-align:29.952839px;}
.vf{vertical-align:31.632754px;}
.v9{vertical-align:34.149834px;}
.va{vertical-align:40.494839px;}
.v7{vertical-align:48.771834px;}
.vd{vertical-align:49.972402px;}
.ve{vertical-align:55.411981px;}
.v8{vertical-align:77.349834px;}
.lsc{letter-spacing:-1.673093px;}
.ls62{letter-spacing:-1.536000px;}
.ls4d{letter-spacing:-1.494390px;}
.ls61{letter-spacing:-1.200000px;}
.ls66{letter-spacing:-0.816000px;}
.lsd{letter-spacing:-0.597756px;}
.ls6{letter-spacing:-0.591782px;}
.ls10{letter-spacing:-0.480000px;}
.ls53{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.240000px;}
.ls51{letter-spacing:-0.069000px;}
.lsf{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.059177px;}
.ls9{letter-spacing:-0.053791px;}
.ls63{letter-spacing:-0.024000px;}
.ls56{letter-spacing:-0.018000px;}
.ls5e{letter-spacing:-0.015000px;}
.ls52{letter-spacing:-0.009000px;}
.ls4f{letter-spacing:-0.006000px;}
.ls50{letter-spacing:-0.003000px;}
.lsb{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.009600px;}
.ls35{letter-spacing:0.055670px;}
.ls25{letter-spacing:0.059776px;}
.ls1b{letter-spacing:0.069250px;}
.ls1e{letter-spacing:0.104525px;}
.ls8{letter-spacing:0.105191px;}
.ls7{letter-spacing:0.119535px;}
.ls1{letter-spacing:0.121942px;}
.ls22{letter-spacing:0.122195px;}
.ls4{letter-spacing:0.129115px;}
.ls17{letter-spacing:0.137152px;}
.ls12{letter-spacing:0.155417px;}
.ls11{letter-spacing:0.179327px;}
.ls16{letter-spacing:0.194298px;}
.ls19{letter-spacing:0.199266px;}
.ls2{letter-spacing:0.220569px;}
.ls0{letter-spacing:0.236713px;}
.ls40{letter-spacing:0.255019px;}
.ls42{letter-spacing:0.293564px;}
.ls39{letter-spacing:0.321688px;}
.ls3d{letter-spacing:0.327688px;}
.ls32{letter-spacing:0.333108px;}
.ls14{letter-spacing:0.384384px;}
.ls2b{letter-spacing:0.495070px;}
.ls67{letter-spacing:0.597149px;}
.ls43{letter-spacing:0.597756px;}
.ls64{letter-spacing:0.672000px;}
.ls65{letter-spacing:0.896634px;}
.ls5c{letter-spacing:0.956410px;}
.ls45{letter-spacing:2.331248px;}
.ls38{letter-spacing:2.709041px;}
.ls15{letter-spacing:2.809987px;}
.ls2c{letter-spacing:2.827517px;}
.ls3b{letter-spacing:3.043778px;}
.ls36{letter-spacing:3.046344px;}
.ls18{letter-spacing:3.151987px;}
.ls2a{letter-spacing:3.233928px;}
.ls30{letter-spacing:3.235728px;}
.ls3c{letter-spacing:3.239928px;}
.ls47{letter-spacing:6.395989px;}
.ls44{letter-spacing:6.754643px;}
.ls3a{letter-spacing:6.903963px;}
.ls46{letter-spacing:7.232848px;}
.ls37{letter-spacing:7.238701px;}
.ls1d{letter-spacing:9.803198px;}
.ls3{letter-spacing:9.844888px;}
.ls1c{letter-spacing:9.922750px;}
.ls48{letter-spacing:9.976548px;}
.ls49{letter-spacing:9.982525px;}
.ls27{letter-spacing:10.042301px;}
.ls20{letter-spacing:10.161852px;}
.ls26{letter-spacing:13.075850px;}
.ls2f{letter-spacing:13.688612px;}
.ls1a{letter-spacing:15.397987px;}
.ls1f{letter-spacing:15.739987px;}
.ls21{letter-spacing:16.617617px;}
.ls31{letter-spacing:17.574026px;}
.ls2e{letter-spacing:18.859202px;}
.ls5a{letter-spacing:19.187968px;}
.ls59{letter-spacing:19.546621px;}
.ls3f{letter-spacing:19.666172px;}
.ls5{letter-spacing:20.024826px;}
.ls28{letter-spacing:21.160562px;}
.ls29{letter-spacing:21.280114px;}
.ls34{letter-spacing:21.638767px;}
.ls33{letter-spacing:21.758318px;}
.ls13{letter-spacing:21.818094px;}
.ls5d{letter-spacing:23.317386px;}
.ls58{letter-spacing:24.926425px;}
.ls5b{letter-spacing:24.979850px;}
.ls23{letter-spacing:26.281987px;}
.ls57{letter-spacing:45.130578px;}
.ls4e{letter-spacing:60.258000px;}
.ls54{letter-spacing:60.306000px;}
.ls55{letter-spacing:60.309000px;}
.ls5f{letter-spacing:62.070000px;}
.ls4a{letter-spacing:110.230463px;}
.ls4b{letter-spacing:111.252610px;}
.ls3e{letter-spacing:114.231172px;}
.ls4c{letter-spacing:154.774544px;}
.ls41{letter-spacing:237.010254px;}
.ls2d{letter-spacing:244.290922px;}
.ls24{letter-spacing:2273.146517px;}
.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;}
}
.ws1cb{word-spacing:-68.880000px;}
.ws156{word-spacing:-67.119000px;}
.ws155{word-spacing:-67.116000px;}
.ws14d{word-spacing:-67.068000px;}
.ws0{word-spacing:-47.751460px;}
.wsc7{word-spacing:-42.261349px;}
.ws70{word-spacing:-39.212794px;}
.wse{word-spacing:-38.034620px;}
.ws17c{word-spacing:-32.655410px;}
.ws129{word-spacing:-31.800619px;}
.wsd3{word-spacing:-29.260156px;}
.wsd5{word-spacing:-28.919435px;}
.ws1{word-spacing:-28.803663px;}
.ws2{word-spacing:-28.792904px;}
.wseb{word-spacing:-28.692288px;}
.ws3{word-spacing:-28.502392px;}
.ws28e{word-spacing:-28.275808px;}
.ws26b{word-spacing:-27.635622px;}
.wsd2{word-spacing:-27.448483px;}
.ws295{word-spacing:-27.377395px;}
.ws233{word-spacing:-26.527399px;}
.ws253{word-spacing:-25.849555px;}
.ws24b{word-spacing:-25.822656px;}
.ws261{word-spacing:-25.177090px;}
.ws2b{word-spacing:-23.082907px;}
.wsa6{word-spacing:-22.745773px;}
.ws249{word-spacing:-22.514128px;}
.ws2aa{word-spacing:-22.454951px;}
.ws276{word-spacing:-22.067611px;}
.ws24f{word-spacing:-21.890081px;}
.wsfd{word-spacing:-21.214360px;}
.ws2ab{word-spacing:-21.093882px;}
.ws285{word-spacing:-20.448316px;}
.ws272{word-spacing:-20.367620px;}
.wsa{word-spacing:-20.335342px;}
.ws2a7{word-spacing:-20.313823px;}
.wsc{word-spacing:-20.233127px;}
.wsb{word-spacing:-20.216988px;}
.wsd{word-spacing:-20.195469px;}
.ws10{word-spacing:-20.163191px;}
.ws244{word-spacing:-20.152431px;}
.ws240{word-spacing:-20.130912px;}
.ws258{word-spacing:-20.125533px;}
.wsf{word-spacing:-20.114773px;}
.ws11{word-spacing:-20.109393px;}
.ws6d{word-spacing:-20.084256px;}
.ws7{word-spacing:-20.063049px;}
.ws9{word-spacing:-20.050216px;}
.ws2b2{word-spacing:-20.028698px;}
.ws293{word-spacing:-19.974900px;}
.ws225{word-spacing:-19.948280px;}
.ws1a8{word-spacing:-19.947118px;}
.ws5{word-spacing:-19.890895px;}
.ws2af{word-spacing:-19.878065px;}
.ws8{word-spacing:-19.869376px;}
.ws228{word-spacing:-19.833511px;}
.ws1a1{word-spacing:-19.606397px;}
.ws4{word-spacing:-19.582454px;}
.ws19d{word-spacing:-19.552599px;}
.ws6{word-spacing:-19.525069px;}
.ws11a{word-spacing:-19.516733px;}
.ws10a{word-spacing:-19.498801px;}
.ws115{word-spacing:-19.391205px;}
.ws3d{word-spacing:-18.948865px;}
.ws16f{word-spacing:-18.889090px;}
.ws81{word-spacing:-18.853224px;}
.ws17b{word-spacing:-18.847247px;}
.ws179{word-spacing:-18.727695px;}
.ws1c0{word-spacing:-18.649987px;}
.ws19f{word-spacing:-18.626077px;}
.ws3a{word-spacing:-18.602167px;}
.ws1b6{word-spacing:-18.506526px;}
.ws11b{word-spacing:-18.494571px;}
.ws163{word-spacing:-18.297311px;}
.ws4f{word-spacing:-18.291334px;}
.ws197{word-spacing:-18.207648px;}
.ws1a6{word-spacing:-18.171782px;}
.ws50{word-spacing:-18.153850px;}
.ws117{word-spacing:-18.112007px;}
.ws257{word-spacing:-18.065100px;}
.ws199{word-spacing:-17.974523px;}
.ws187{word-spacing:-17.854972px;}
.ws175{word-spacing:-17.848994px;}
.ws10d{word-spacing:-17.837039px;}
.ws164{word-spacing:-17.789219px;}
.ws10e{word-spacing:-17.753353px;}
.ws2a0{word-spacing:-17.693899px;}
.ws1fd{word-spacing:-17.681622px;}
.wsb6{word-spacing:-17.568049px;}
.wscd{word-spacing:-17.508273px;}
.ws1ad{word-spacing:-17.490341px;}
.ws82{word-spacing:-17.448498px;}
.ws12e{word-spacing:-17.257216px;}
.ws77{word-spacing:-17.233305px;}
.ws18c{word-spacing:-17.143642px;}
.ws135{word-spacing:-17.119732px;}
.ws4a{word-spacing:-17.113754px;}
.ws134{word-spacing:-17.083866px;}
.ws20e{word-spacing:-17.071911px;}
.ws16c{word-spacing:-17.048001px;}
.ws31{word-spacing:-17.042024px;}
.ws62{word-spacing:-17.000181px;}
.ws1b8{word-spacing:-16.862697px;}
.ws13b{word-spacing:-16.832809px;}
.ws21c{word-spacing:-16.796944px;}
.ws29a{word-spacing:-16.795486px;}
.ws198{word-spacing:-16.749123px;}
.ws116{word-spacing:-16.719235px;}
.ws39{word-spacing:-16.659460px;}
.ws73{word-spacing:-16.647505px;}
.ws1e9{word-spacing:-16.635549px;}
.ws1e8{word-spacing:-16.629572px;}
.ws36{word-spacing:-16.617617px;}
.ws20c{word-spacing:-16.527953px;}
.ws1b1{word-spacing:-16.486110px;}
.ws1be{word-spacing:-16.247008px;}
.ws79{word-spacing:-16.157345px;}
.wsae{word-spacing:-16.145390px;}
.ws15{word-spacing:-16.128401px;}
.ws1af{word-spacing:-16.121479px;}
.wsaa{word-spacing:-16.109524px;}
.ws28d{word-spacing:-16.085363px;}
.ws159{word-spacing:-15.993908px;}
.ws202{word-spacing:-15.978018px;}
.ws28f{word-spacing:-15.918591px;}
.ws211{word-spacing:-15.912265px;}
.wsc1{word-spacing:-15.882377px;}
.wsba{word-spacing:-15.864444px;}
.ws58{word-spacing:-15.852489px;}
.ws59{word-spacing:-15.816624px;}
.ws14{word-spacing:-15.816377px;}
.ws12d{word-spacing:-15.804669px;}
.wsa2{word-spacing:-15.786736px;}
.ws23e{word-spacing:-15.735681px;}
.ws69{word-spacing:-15.697073px;}
.ws1df{word-spacing:-15.691095px;}
.ws65{word-spacing:-15.649252px;}
.ws1cd{word-spacing:-15.644226px;}
.ws8a{word-spacing:-15.601432px;}
.ws262{word-spacing:-15.601188px;}
.ws182{word-spacing:-15.541656px;}
.wsa3{word-spacing:-15.535678px;}
.ws88{word-spacing:-15.487858px;}
.ws195{word-spacing:-15.481880px;}
.ws1c8{word-spacing:-15.475903px;}
.ws37{word-spacing:-15.404172px;}
.ws264{word-spacing:-15.348341px;}
.ws4c{word-spacing:-15.320486px;}
.ws17d{word-spacing:-15.254733px;}
.ws14c{word-spacing:-15.206913px;}
.wsd9{word-spacing:-15.194958px;}
.ws26a{word-spacing:-15.160051px;}
.wsd8{word-spacing:-15.123227px;}
.ws265{word-spacing:-15.100874px;}
.ws26c{word-spacing:-15.063216px;}
.ws136{word-spacing:-15.057474px;}
.ws16b{word-spacing:-15.045519px;}
.wsbb{word-spacing:-14.997698px;}
.ws12a{word-spacing:-14.985743px;}
.ws296{word-spacing:-14.982520px;}
.wsc4{word-spacing:-14.961833px;}
.ws23{word-spacing:-14.961001px;}
.ws2c{word-spacing:-14.955855px;}
.ws2f{word-spacing:-14.949878px;}
.ws162{word-spacing:-14.890102px;}
.ws5a{word-spacing:-14.884124px;}
.ws19e{word-spacing:-14.842281px;}
.ws16a{word-spacing:-14.836304px;}
.ws1b7{word-spacing:-14.830326px;}
.ws294{word-spacing:-14.783471px;}
.wsbe{word-spacing:-14.662955px;}
.wsa5{word-spacing:-14.639044px;}
.ws119{word-spacing:-14.627089px;}
.wsa0{word-spacing:-14.489605px;}
.ws6f{word-spacing:-14.447763px;}
.ws2ac{word-spacing:-14.417650px;}
.ws1c6{word-spacing:-14.370054px;}
.ws124{word-spacing:-14.358099px;}
.ws121{word-spacing:-14.346144px;}
.ws232{word-spacing:-14.331574px;}
.ws19{word-spacing:-14.299296px;}
.ws72{word-spacing:-14.268436px;}
.ws283{word-spacing:-14.250878px;}
.ws123{word-spacing:-14.244525px;}
.ws28{word-spacing:-14.207841px;}
.ws1a{word-spacing:-14.175562px;}
.ws161{word-spacing:-14.172795px;}
.ws8c{word-spacing:-14.148885px;}
.ws28c{word-spacing:-14.143284px;}
.ws22b{word-spacing:-14.130952px;}
.ws269{word-spacing:-14.121765px;}
.ws120{word-spacing:-14.059221px;}
.ws7a{word-spacing:-14.029333px;}
.ws57{word-spacing:-13.993468px;}
.ws29{word-spacing:-13.992652px;}
.ws1d1{word-spacing:-13.954994px;}
.ws1b9{word-spacing:-13.945647px;}
.ws15a{word-spacing:-13.885057px;}
.ws278{word-spacing:-13.858159px;}
.ws25c{word-spacing:-13.847399px;}
.ws43{word-spacing:-13.832074px;}
.ws63{word-spacing:-13.808164px;}
.ws20a{word-spacing:-13.754366px;}
.ws158{word-spacing:-13.729045px;}
.ws170{word-spacing:-13.461465px;}
.ws1ae{word-spacing:-13.425600px;}
.ws22e{word-spacing:-13.419622px;}
.ws252{word-spacing:-13.417022px;}
.ws28b{word-spacing:-13.406262px;}
.ws248{word-spacing:-13.325566px;}
.ws1b{word-spacing:-13.314807px;}
.ws16d{word-spacing:-13.282138px;}
.ws30{word-spacing:-13.258228px;}
.ws1bf{word-spacing:-13.222363px;}
.ws3b{word-spacing:-13.138677px;}
.ws1c9{word-spacing:-13.132699px;}
.wse1{word-spacing:-13.120744px;}
.ws122{word-spacing:-13.108789px;}
.ws11f{word-spacing:-13.096834px;}
.ws12b{word-spacing:-13.084879px;}
.ws32{word-spacing:-13.072924px;}
.wsce{word-spacing:-13.043036px;}
.ws218{word-spacing:-13.019126px;}
.wsc0{word-spacing:-13.007171px;}
.ws1e{word-spacing:-12.975885px;}
.ws18{word-spacing:-12.970505px;}
.ws1bb{word-spacing:-12.923485px;}
.ws78{word-spacing:-12.917507px;}
.ws21{word-spacing:-12.862911px;}
.ws74{word-spacing:-12.762091px;}
.ws138{word-spacing:-12.720248px;}
.ws112{word-spacing:-12.684382px;}
.ws132{word-spacing:-12.528966px;}
.ws133{word-spacing:-12.355617px;}
.ws274{word-spacing:-12.319559px;}
.ws1d{word-spacing:-12.298040px;}
.ws12{word-spacing:-12.281901px;}
.ws137{word-spacing:-12.236065px;}
.ws9a{word-spacing:-12.224110px;}
.ws152{word-spacing:-12.185066px;}
.ws52{word-spacing:-12.170312px;}
.ws29d{word-spacing:-12.104370px;}
.ws13{word-spacing:-12.066712px;}
.wsb1{word-spacing:-11.990985px;}
.ws84{word-spacing:-11.985008px;}
.ws2a2{word-spacing:-11.980636px;}
.ws206{word-spacing:-11.937187px;}
.ws1fa{word-spacing:-11.907300px;}
.ws1e3{word-spacing:-11.883389px;}
.ws96{word-spacing:-11.859479px;}
.ws1f7{word-spacing:-11.853501px;}
.ws203{word-spacing:-11.823614px;}
.wse6{word-spacing:-11.745905px;}
.ws76{word-spacing:-11.727973px;}
.ws1b4{word-spacing:-11.692107px;}
.ws1bd{word-spacing:-11.632332px;}
.ws173{word-spacing:-11.620377px;}
.wse3{word-spacing:-11.566579px;}
.ws1f{word-spacing:-11.480322px;}
.ws247{word-spacing:-11.474943px;}
.ws4e{word-spacing:-11.470938px;}
.ws1d0{word-spacing:-11.351209px;}
.ws1d5{word-spacing:-11.302792px;}
.ws126{word-spacing:-11.225858px;}
.ws167{word-spacing:-11.207925px;}
.ws100{word-spacing:-11.178037px;}
.ws13e{word-spacing:-11.060704px;}
.ws7c{word-spacing:-11.052508px;}
.wsda{word-spacing:-11.022621px;}
.ws1a7{word-spacing:-11.004688px;}
.ws83{word-spacing:-10.968823px;}
.ws250{word-spacing:-10.936971px;}
.wse0{word-spacing:-10.932957px;}
.ws297{word-spacing:-10.920832px;}
.ws150{word-spacing:-10.883174px;}
.ws174{word-spacing:-10.873182px;}
.ws2a1{word-spacing:-10.845516px;}
.ws273{word-spacing:-10.840136px;}
.ws3f{word-spacing:-10.795140px;}
.ws282{word-spacing:-10.791718px;}
.ws234{word-spacing:-10.786339px;}
.wsc9{word-spacing:-10.783518px;}
.wsaf{word-spacing:-10.717765px;}
.ws33{word-spacing:-10.634079px;}
.ws94{word-spacing:-10.598214px;}
.ws279{word-spacing:-10.592669px;}
.wsb4{word-spacing:-10.544416px;}
.ws259{word-spacing:-10.501213px;}
.ws151{word-spacing:-10.485074px;}
.ws263{word-spacing:-10.452796px;}
.ws24a{word-spacing:-10.253746px;}
.ws275{word-spacing:-10.216088px;}
.ws191{word-spacing:-10.131964px;}
.ws289{word-spacing:-10.065456px;}
.ws192{word-spacing:-10.042301px;}
.wsc8{word-spacing:-10.036323px;}
.wsd7{word-spacing:-10.030346px;}
.ws18a{word-spacing:-10.024368px;}
.ws291{word-spacing:-10.006279px;}
.wsc6{word-spacing:-9.952637px;}
.wsd6{word-spacing:-9.922750px;}
.ws24e{word-spacing:-9.909444px;}
.ws1a4{word-spacing:-9.904817px;}
.ws1f3{word-spacing:-9.845041px;}
.ws1c5{word-spacing:-9.785266px;}
.ws46{word-spacing:-9.779288px;}
.ws3e{word-spacing:-9.713535px;}
.ws19b{word-spacing:-9.707557px;}
.ws212{word-spacing:-9.647782px;}
.ws64{word-spacing:-9.629849px;}
.ws25e{word-spacing:-9.613560px;}
.ws1e5{word-spacing:-9.605939px;}
.ws166{word-spacing:-9.570074px;}
.ws34{word-spacing:-9.552141px;}
.ws9d{word-spacing:-9.474433px;}
.ws19c{word-spacing:-9.426612px;}
.wsbc{word-spacing:-9.420635px;}
.ws168{word-spacing:-9.414657px;}
.ws128{word-spacing:-9.366837px;}
.ws1d3{word-spacing:-9.360000px;}
.ws16{word-spacing:-9.301536px;}
.ws47{word-spacing:-9.253263px;}
.ws2b5{word-spacing:-9.253118px;}
.ws20{word-spacing:-9.236979px;}
.ws1e4{word-spacing:-9.235330px;}
.ws17{word-spacing:-9.193941px;}
.wsb2{word-spacing:-9.169577px;}
.wsea{word-spacing:-9.163599px;}
.ws287{word-spacing:-9.102486px;}
.ws213{word-spacing:-9.050026px;}
.ws1ca{word-spacing:-9.002205px;}
.wsf8{word-spacing:-8.996228px;}
.wse5{word-spacing:-8.990250px;}
.ws2a3{word-spacing:-8.978753px;}
.ws235{word-spacing:-8.973373px;}
.ws229{word-spacing:-8.930475px;}
.ws66{word-spacing:-8.912542px;}
.ws21a{word-spacing:-8.906564px;}
.wsab{word-spacing:-8.882654px;}
.ws80{word-spacing:-8.876677px;}
.ws1ff{word-spacing:-8.858744px;}
.ws196{word-spacing:-8.840811px;}
.wsb7{word-spacing:-8.834834px;}
.ws186{word-spacing:-8.781036px;}
.wsf5{word-spacing:-8.745170px;}
.ws90{word-spacing:-8.739193px;}
.ws1c4{word-spacing:-8.727238px;}
.wsdf{word-spacing:-8.697350px;}
.ws3c{word-spacing:-8.667462px;}
.wsd1{word-spacing:-8.649529px;}
.ws1c3{word-spacing:-8.631597px;}
.ws281{word-spacing:-8.602172px;}
.wsfc{word-spacing:-8.595731px;}
.ws1c7{word-spacing:-8.589754px;}
.ws222{word-spacing:-8.518023px;}
.ws35{word-spacing:-8.482158px;}
.ws2b9{word-spacing:-8.446160px;}
.ws2b4{word-spacing:-8.440781px;}
.ws55{word-spacing:-8.440315px;}
.wsac{word-spacing:-8.368584px;}
.ws22f{word-spacing:-8.362606px;}
.ws85{word-spacing:-8.356629px;}
.ws7e{word-spacing:-8.326741px;}
.ws13f{word-spacing:-8.144896px;}
.ws143{word-spacing:-8.139516px;}
.ws1ec{word-spacing:-8.129482px;}
.ws147{word-spacing:-8.128757px;}
.ws149{word-spacing:-8.123377px;}
.ws254{word-spacing:-8.117997px;}
.ws200{word-spacing:-8.117526px;}
.ws245{word-spacing:-8.112618px;}
.ws286{word-spacing:-8.096479px;}
.ws292{word-spacing:-8.085719px;}
.ws153{word-spacing:-8.074960px;}
.ws26d{word-spacing:-8.069580px;}
.ws29b{word-spacing:-8.064200px;}
.ws1dc{word-spacing:-8.042681px;}
.ws184{word-spacing:-8.033841px;}
.wsff{word-spacing:-8.027863px;}
.ws1d6{word-spacing:-8.021163px;}
.ws23d{word-spacing:-8.005023px;}
.ws1ba{word-spacing:-7.968087px;}
.ws243{word-spacing:-7.961986px;}
.ws101{word-spacing:-7.956132px;}
.ws1f4{word-spacing:-7.926245px;}
.ws208{word-spacing:-7.918948px;}
.ws1dd{word-spacing:-7.886670px;}
.wsb8{word-spacing:-7.872447px;}
.ws21e{word-spacing:-7.848536px;}
.ws142{word-spacing:-7.816733px;}
.wsd0{word-spacing:-7.794738px;}
.ws28a{word-spacing:-7.784455px;}
.ws1e0{word-spacing:-7.776806px;}
.ws2ae{word-spacing:-7.773695px;}
.ws25d{word-spacing:-7.762936px;}
.ws45{word-spacing:-7.717030px;}
.ws1b2{word-spacing:-7.687142px;}
.wsb3{word-spacing:-7.681165px;}
.ws1e6{word-spacing:-7.663232px;}
.ws140{word-spacing:-7.660721px;}
.wscf{word-spacing:-7.615411px;}
.ws214{word-spacing:-7.591501px;}
.ws92{word-spacing:-7.573569px;}
.wsc3{word-spacing:-7.531726px;}
.ws267{word-spacing:-7.531608px;}
.ws109{word-spacing:-7.489883px;}
.ws17f{word-spacing:-7.459995px;}
.ws5d{word-spacing:-7.418152px;}
.ws21d{word-spacing:-7.400219px;}
.wsde{word-spacing:-7.364354px;}
.wsdc{word-spacing:-7.352399px;}
.ws193{word-spacing:-7.310556px;}
.ws5c{word-spacing:-7.298601px;}
.wsdd{word-spacing:-7.292623px;}
.ws16e{word-spacing:-7.280668px;}
.ws1b3{word-spacing:-7.226870px;}
.ws24d{word-spacing:-7.208825px;}
.ws268{word-spacing:-7.198065px;}
.ws194{word-spacing:-7.119274px;}
.ws221{word-spacing:-7.113296px;}
.ws75{word-spacing:-7.101341px;}
.ws172{word-spacing:-7.095364px;}
.ws298{word-spacing:-7.079712px;}
.ws165{word-spacing:-6.975813px;}
.ws98{word-spacing:-6.963857px;}
.ws9b{word-spacing:-6.957880px;}
.ws1a0{word-spacing:-6.933970px;}
.ws7d{word-spacing:-6.927992px;}
.ws1c1{word-spacing:-6.922014px;}
.ws7f{word-spacing:-6.832351px;}
.ws14e{word-spacing:-6.810000px;}
.ws185{word-spacing:-6.778553px;}
.wsf4{word-spacing:-6.772575px;}
.ws87{word-spacing:-6.718777px;}
.ws2a{word-spacing:-6.703131px;}
.ws1e7{word-spacing:-6.664979px;}
.wsf2{word-spacing:-6.635092px;}
.ws236{word-spacing:-6.563258px;}
.wsf0{word-spacing:-6.515540px;}
.ws44{word-spacing:-6.449787px;}
.ws41{word-spacing:-6.366101px;}
.wsc5{word-spacing:-6.348169px;}
.wsb9{word-spacing:-6.318281px;}
.ws255{word-spacing:-6.305032px;}
.ws204{word-spacing:-6.288393px;}
.ws19a{word-spacing:-6.264483px;}
.wsa4{word-spacing:-6.258505px;}
.ws13a{word-spacing:-6.246550px;}
.ws246{word-spacing:-6.138261px;}
.wsf7{word-spacing:-6.055268px;}
.ws8f{word-spacing:-5.983538px;}
.ws256{word-spacing:-5.928451px;}
.ws231{word-spacing:-5.923072px;}
.ws53{word-spacing:-5.911807px;}
.ws139{word-spacing:-5.828121px;}
.ws271{word-spacing:-5.820857px;}
.ws8d{word-spacing:-5.696615px;}
.ws7b{word-spacing:-5.678682px;}
.ws99{word-spacing:-5.636839px;}
.ws1a2{word-spacing:-5.600974px;}
.wsfa{word-spacing:-5.571086px;}
.wsb0{word-spacing:-5.541198px;}
.ws56{word-spacing:-5.481423px;}
.ws29f{word-spacing:-5.433517px;}
.ws8e{word-spacing:-5.427624px;}
.wsbd{word-spacing:-5.391759px;}
.ws5b{word-spacing:-5.308073px;}
.ws2b0{word-spacing:-5.266746px;}
.ws103{word-spacing:-5.224387px;}
.ws24{word-spacing:-5.223708px;}
.ws95{word-spacing:-5.206455px;}
.ws25{word-spacing:-5.169911px;}
.ws1f0{word-spacing:-5.128746px;}
.ws25b{word-spacing:-5.003140px;}
.ws17a{word-spacing:-4.931487px;}
.ws219{word-spacing:-4.817913px;}
.ws111{word-spacing:-4.782048px;}
.ws223{word-spacing:-4.758138px;}
.ws190{word-spacing:-4.596744px;}
.ws18e{word-spacing:-4.590766px;}
.ws238{word-spacing:-4.540484px;}
.wsb5{word-spacing:-4.507080px;}
.ws18f{word-spacing:-4.483170px;}
.ws2ad{word-spacing:-4.432889px;}
.ws118{word-spacing:-4.423394px;}
.wsca{word-spacing:-4.303843px;}
.ws27d{word-spacing:-4.287637px;}
.ws299{word-spacing:-4.249979px;}
.ws61{word-spacing:-4.238090px;}
.wsbf{word-spacing:-4.220157px;}
.ws260{word-spacing:-4.158524px;}
.ws1c{word-spacing:-4.137005px;}
.ws227{word-spacing:-4.130494px;}
.ws1ac{word-spacing:-3.969100px;}
.ws54{word-spacing:-3.945190px;}
.ws226{word-spacing:-3.927257px;}
.ws8b{word-spacing:-3.897369px;}
.ws20d{word-spacing:-3.885414px;}
.ws131{word-spacing:-3.867481px;}
.ws1c2{word-spacing:-3.783795px;}
.wsa8{word-spacing:-3.706087px;}
.ws13c{word-spacing:-3.688155px;}
.ws220{word-spacing:-3.652289px;}
.ws17e{word-spacing:-3.616424px;}
.ws180{word-spacing:-3.598491px;}
.wsf9{word-spacing:-3.538716px;}
.ws1f1{word-spacing:-3.425142px;}
.ws277{word-spacing:-3.340806px;}
.ws26{word-spacing:-3.297768px;}
.ws6a{word-spacing:-3.233860px;}
.ws6e{word-spacing:-3.203972px;}
.ws1ed{word-spacing:-3.192017px;}
.ws27{word-spacing:-3.190174px;}
.ws6b{word-spacing:-3.144197px;}
.ws6c{word-spacing:-3.054533px;}
.ws1ee{word-spacing:-3.042578px;}
.ws205{word-spacing:-2.982802px;}
.ws1ef{word-spacing:-2.946937px;}
.ws183{word-spacing:-2.917049px;}
.wsfe{word-spacing:-2.881184px;}
.ws24c{word-spacing:-2.862011px;}
.ws1f6{word-spacing:-2.851296px;}
.ws2b7{word-spacing:-2.851252px;}
.ws27f{word-spacing:-2.738277px;}
.ws9c{word-spacing:-2.737722px;}
.ws239{word-spacing:-2.657582px;}
.ws22{word-spacing:-2.614544px;}
.ws71{word-spacing:-2.530250px;}
.ws242{word-spacing:-2.506950px;}
.ws125{word-spacing:-2.504598px;}
.ws2a8{word-spacing:-2.490810px;}
.ws207{word-spacing:-2.373091px;}
.ws1cc{word-spacing:-2.259482px;}
.ws251{word-spacing:-2.227204px;}
.ws1b0{word-spacing:-2.175832px;}
.ws25a{word-spacing:-2.146508px;}
.ws23f{word-spacing:-2.124989px;}
.ws241{word-spacing:-2.022775px;}
.ws26e{word-spacing:-2.017395px;}
.ws27a{word-spacing:-2.001256px;}
.ws2b3{word-spacing:-1.990496px;}
.ws230{word-spacing:-1.834485px;}
.ws1ab{word-spacing:-1.584053px;}
.ws89{word-spacing:-1.524278px;}
.ws23b{word-spacing:-1.522461px;}
.ws1f9{word-spacing:-1.458525px;}
.ws1f2{word-spacing:-1.434614px;}
.ws171{word-spacing:-1.356906px;}
.ws2a9{word-spacing:-1.156640px;}
.ws9e{word-spacing:-1.081938px;}
.ws18d{word-spacing:-1.069983px;}
.ws102{word-spacing:-0.938477px;}
.ws217{word-spacing:-0.848814px;}
.wscc{word-spacing:-0.687419px;}
.ws1de{word-spacing:-0.676800px;}
.ws38{word-spacing:-0.675464px;}
.wsa9{word-spacing:-0.639599px;}
.ws188{word-spacing:-0.627644px;}
.ws290{word-spacing:-0.527213px;}
.ws5e{word-spacing:-0.251058px;}
.ws157{word-spacing:-0.215189px;}
.ws201{word-spacing:-0.161394px;}
.ws29c{word-spacing:-0.123734px;}
.ws4b{word-spacing:-0.107596px;}
.ws51{word-spacing:-0.059776px;}
.ws145{word-spacing:-0.053797px;}
.ws1d9{word-spacing:-0.009600px;}
.ws40{word-spacing:0.000000px;}
.ws15c{word-spacing:0.003000px;}
.ws15b{word-spacing:0.006000px;}
.ws15e{word-spacing:0.009000px;}
.ws1d2{word-spacing:0.015000px;}
.ws160{word-spacing:0.018000px;}
.ws1da{word-spacing:0.024000px;}
.ws15d{word-spacing:0.069000px;}
.ws10b{word-spacing:0.191282px;}
.wsc2{word-spacing:0.203237px;}
.ws12c{word-spacing:0.304856px;}
.ws104{word-spacing:0.328766px;}
.ws105{word-spacing:0.382564px;}
.ws284{word-spacing:0.398099px;}
.ws15f{word-spacing:0.420000px;}
.ws1aa{word-spacing:0.466250px;}
.ws181{word-spacing:0.484182px;}
.ws48{word-spacing:0.579823px;}
.ws237{word-spacing:0.769300px;}
.ws209{word-spacing:0.820800px;}
.ws12f{word-spacing:0.992275px;}
.ws1d8{word-spacing:1.204800px;}
.ws11e{word-spacing:1.213445px;}
.ws11c{word-spacing:1.356906px;}
.ws1a3{word-spacing:1.476457px;}
.ws114{word-spacing:1.530255px;}
.ws1db{word-spacing:1.540800px;}
.wse2{word-spacing:1.643829px;}
.ws1f8{word-spacing:1.649807px;}
.ws216{word-spacing:1.679694px;}
.wsfb{word-spacing:1.727515px;}
.ws1cf{word-spacing:1.829105px;}
.ws1fc{word-spacing:1.847066px;}
.ws11d{word-spacing:1.882931px;}
.ws42{word-spacing:1.972595px;}
.ws2b1{word-spacing:2.001256px;}
.ws1fb{word-spacing:2.092146px;}
.ws127{word-spacing:2.193765px;}
.ws1d4{word-spacing:2.205685px;}
.ws288{word-spacing:2.420874px;}
.ws14f{word-spacing:2.528468px;}
.ws60{word-spacing:2.552418px;}
.ws13d{word-spacing:2.630683px;}
.ws9f{word-spacing:2.779565px;}
.ws91{word-spacing:2.803476px;}
.ws4d{word-spacing:2.934982px;}
.ws2a4{word-spacing:2.937327px;}
.ws20b{word-spacing:2.994758px;}
.ws2e{word-spacing:3.006713px;}
.ws93{word-spacing:3.066488px;}
.ws1e1{word-spacing:3.437097px;}
.ws189{word-spacing:3.604469px;}
.ws224{word-spacing:3.622401px;}
.ws280{word-spacing:3.625931px;}
.ws10f{word-spacing:3.909324px;}
.wsa7{word-spacing:4.208202px;}
.ws18b{word-spacing:4.262000px;}
.ws1bc{word-spacing:4.321776px;}
.ws110{word-spacing:4.501103px;}
.ws1eb{word-spacing:4.519035px;}
.wscb{word-spacing:4.536968px;}
.wsf1{word-spacing:4.888669px;}
.ws266{word-spacing:4.895545px;}
.wsf3{word-spacing:4.916467px;}
.wsf6{word-spacing:5.170589px;}
.ws26f{word-spacing:5.304404px;}
.ws1d7{word-spacing:5.594909px;}
.ws1e2{word-spacing:6.109066px;}
.ws270{word-spacing:6.154400px;}
.ws2a6{word-spacing:6.455664px;}
.ws2b8{word-spacing:6.584777px;}
.ws97{word-spacing:6.593249px;}
.ws27b{word-spacing:6.681612px;}
.ws130{word-spacing:6.694867px;}
.ws22d{word-spacing:6.700845px;}
.wsad{word-spacing:6.772575px;}
.ws5f{word-spacing:7.454017px;}
.ws23c{word-spacing:7.779075px;}
.ws27c{word-spacing:7.902809px;}
.ws21f{word-spacing:7.932222px;}
.ws10c{word-spacing:8.207190px;}
.ws29e{word-spacing:8.559135px;}
.wsdb{word-spacing:8.757125px;}
.ws25f{word-spacing:8.860399px;}
.ws1fe{word-spacing:8.924497px;}
.ws49{word-spacing:9.073936px;}
.ws68{word-spacing:9.205442px;}
.ws21b{word-spacing:9.319016px;}
.ws2b6{word-spacing:9.328434px;}
.ws176{word-spacing:9.378792px;}
.wsa1{word-spacing:9.438567px;}
.ws178{word-spacing:9.480410px;}
.ws177{word-spacing:9.510298px;}
.ws86{word-spacing:9.564096px;}
.wsed{word-spacing:9.652669px;}
.wsee{word-spacing:9.680467px;}
.ws210{word-spacing:10.036323px;}
.ws2d{word-spacing:10.042301px;}
.ws1a9{word-spacing:10.634079px;}
.ws23a{word-spacing:10.974629px;}
.ws113{word-spacing:11.925232px;}
.ws169{word-spacing:12.367572px;}
.wse4{word-spacing:12.463213px;}
.ws1ea{word-spacing:13.240295px;}
.ws1f5{word-spacing:13.694590px;}
.ws67{word-spacing:14.465695px;}
.ws1b5{word-spacing:16.312761px;}
.ws1a5{word-spacing:16.480133px;}
.wsd4{word-spacing:16.773033px;}
.wsec{word-spacing:16.790966px;}
.ws108{word-spacing:17.221350px;}
.ws106{word-spacing:17.376767px;}
.ws107{word-spacing:17.388722px;}
.ws2a5{word-spacing:18.936614px;}
.ws154{word-spacing:22.260000px;}
.ws20f{word-spacing:25.727418px;}
.ws215{word-spacing:27.532641px;}
.ws1ce{word-spacing:39.165000px;}
.ws22c{word-spacing:45.250129px;}
.ws22a{word-spacing:81.252973px;}
.ws146{word-spacing:131.076878px;}
.ws141{word-spacing:163.489691px;}
.ws148{word-spacing:201.147731px;}
.wsef{word-spacing:223.303709px;}
.ws14b{word-spacing:230.714672px;}
.wse9{word-spacing:266.539400px;}
.wse8{word-spacing:271.261673px;}
.wse7{word-spacing:298.519346px;}
.ws144{word-spacing:350.058380px;}
.ws14a{word-spacing:364.341537px;}
.ws27e{word-spacing:2215.761941px;}
._1f{margin-left:-450.869418px;}
._1d{margin-left:-445.746649px;}
._3c{margin-left:-64.518000px;}
._2a{margin-left:-62.181000px;}
._29{margin-left:-61.008000px;}
._2b{margin-left:-59.508000px;}
._2e{margin-left:-42.345029px;}
._34{margin-left:-38.612435px;}
._2c{margin-left:-34.650000px;}
._35{margin-left:-31.491594px;}
._4c{margin-left:-25.263165px;}
._5{margin-left:-23.896716px;}
._4a{margin-left:-22.374881px;}
._2d{margin-left:-14.301594px;}
._33{margin-left:-8.160000px;}
._1a{margin-left:-6.551406px;}
._2{margin-left:-4.933203px;}
._22{margin-left:-3.807706px;}
._b{margin-left:-2.722138px;}
._2f{margin-left:-1.182000px;}
._23{width:1.781313px;}
._4{width:3.104098px;}
._4b{width:4.468421px;}
._37{width:6.144932px;}
._21{width:7.501838px;}
._d{width:8.941095px;}
._7{width:10.920832px;}
._38{width:11.931754px;}
._9{width:13.018922px;}
._12{width:14.083131px;}
._6{width:15.186950px;}
._e{width:16.850742px;}
._3{width:18.737565px;}
._c{width:19.743572px;}
._8{width:21.136920px;}
._a{width:22.804633px;}
._17{width:24.044095px;}
._13{width:25.380720px;}
._47{width:26.504501px;}
._f{width:27.705991px;}
._16{width:28.736321px;}
._0{width:29.987228px;}
._10{width:31.430010px;}
._18{width:32.517926px;}
._19{width:34.107957px;}
._49{width:35.784140px;}
._14{width:37.150535px;}
._11{width:38.573195px;}
._4d{width:40.078312px;}
._1b{width:42.189618px;}
._15{width:44.353495px;}
._3a{width:45.817997px;}
._3b{width:47.282500px;}
._3e{width:53.497190px;}
._39{width:55.686949px;}
._48{width:57.271002px;}
._3d{width:60.216905px;}
._3f{width:61.368720px;}
._1{width:69.582468px;}
._26{width:103.774799px;}
._36{width:151.740000px;}
._30{width:153.840000px;}
._31{width:159.888000px;}
._27{width:161.477676px;}
._46{width:167.284851px;}
._32{width:169.248000px;}
._45{width:175.816138px;}
._44{width:178.582461px;}
._40{width:183.546713px;}
._1c{width:184.894399px;}
._42{width:187.457661px;}
._41{width:189.368061px;}
._43{width:194.854461px;}
._24{width:201.169250px;}
._25{width:226.701401px;}
._1e{width:418.907405px;}
._20{width:424.346984px;}
._4e{width:2245.243267px;}
._28{width:2273.816004px;}
.fc3{color:rgb(64,65,65);}
.fc1{color:rgb(48,45,46);}
.fc2{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:17.490000px;}
.fs8{font-size:28.860000px;}
.fs9{font-size:30.000000px;}
.fs3{font-size:35.860800px;}
.fs7{font-size:41.842200px;}
.fsb{font-size:43.098000px;}
.fs2{font-size:47.814000px;}
.fs6{font-size:47.819999px;}
.fsd{font-size:47.820600px;}
.fsc{font-size:48.000000px;}
.fs4{font-size:53.797200px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.730600px;}
.fs0{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y154{bottom:2.696700px;}
.y219{bottom:2.700000px;}
.y1ed{bottom:2.701500px;}
.y145{bottom:2.722650px;}
.y2db{bottom:4.276500px;}
.y2f4{bottom:4.281150px;}
.y383{bottom:4.285950px;}
.y36b{bottom:4.291950px;}
.y353{bottom:4.293450px;}
.y2c0{bottom:4.303350px;}
.y291{bottom:4.323300px;}
.y2a9{bottom:4.324800px;}
.y30c{bottom:4.349400px;}
.y25e{bottom:4.366200px;}
.y245{bottom:4.377450px;}
.y276{bottom:4.382400px;}
.y153{bottom:10.849200px;}
.y218{bottom:10.852500px;}
.y1ec{bottom:10.854000px;}
.y143{bottom:11.077650px;}
.y382{bottom:12.553950px;}
.y290{bottom:14.139300px;}
.y2a8{bottom:14.140800px;}
.y2bf{bottom:14.623350px;}
.y36a{bottom:14.623950px;}
.y25d{bottom:14.674200px;}
.y244{bottom:14.685450px;}
.y2da{bottom:15.004500px;}
.y2f3{bottom:15.297150px;}
.y30b{bottom:15.569400px;}
.y275{bottom:16.274400px;}
.y20a{bottom:17.086500px;}
.y234{bottom:17.325000px;}
.y142{bottom:18.082650px;}
.y16d{bottom:21.971700px;}
.y172{bottom:23.389200px;}
.y1eb{bottom:23.880000px;}
.y217{bottom:24.013500px;}
.y14a{bottom:24.870150px;}
.y38c{bottom:26.197950px;}
.y2e4{bottom:26.812500px;}
.y315{bottom:26.993400px;}
.y374{bottom:27.031950px;}
.y2fd{bottom:27.093150px;}
.y35c{bottom:27.093450px;}
.y141{bottom:27.112650px;}
.y2b2{bottom:27.448800px;}
.y29a{bottom:27.819300px;}
.y267{bottom:28.030200px;}
.y24e{bottom:28.041450px;}
.y2c9{bottom:28.327350px;}
.y27f{bottom:28.874400px;}
.y232{bottom:31.200000px;}
.y208{bottom:31.269000px;}
.y381{bottom:33.349950px;}
.y369{bottom:35.287950px;}
.y352{bottom:35.361450px;}
.y2d9{bottom:35.668500px;}
.y16c{bottom:35.749200px;}
.y2f2{bottom:35.961150px;}
.y28f{bottom:35.991300px;}
.y2a7{bottom:35.992800px;}
.y140{bottom:36.142650px;}
.y30a{bottom:36.185400px;}
.y2be{bottom:36.343350px;}
.y25c{bottom:36.502200px;}
.y243{bottom:36.513450px;}
.y274{bottom:38.102400px;}
.y233{bottom:45.075000px;}
.y13f{bottom:45.172650px;}
.y209{bottom:45.459000px;}
.y38b{bottom:48.037950px;}
.y2e3{bottom:48.700500px;}
.y314{bottom:48.773400px;}
.y373{bottom:48.775950px;}
.y35b{bottom:48.837450px;}
.y2fc{bottom:48.981150px;}
.y299{bottom:50.691300px;}
.y2b1{bottom:50.692800px;}
.y266{bottom:50.854200px;}
.y24d{bottom:50.865450px;}
.y2c8{bottom:51.019350px;}
.y27e{bottom:51.746400px;}
.y380{bottom:54.145950px;}
.y16b{bottom:55.744200px;}
.y368{bottom:55.963950px;}
.y351{bottom:56.037450px;}
.y2d8{bottom:56.332500px;}
.y2f1{bottom:56.625150px;}
.y231{bottom:56.632500px;}
.y309{bottom:56.801400px;}
.y207{bottom:56.829000px;}
.y13e{bottom:57.202650px;}
.y28e{bottom:57.843300px;}
.y2a6{bottom:57.844800px;}
.y2bd{bottom:58.063350px;}
.y242{bottom:58.341450px;}
.y25b{bottom:58.342200px;}
.y273{bottom:59.930400px;}
.y230{bottom:62.100000px;}
.y206{bottom:62.506500px;}
.y16a{bottom:64.991700px;}
.y13d{bottom:66.090150px;}
.y22f{bottom:67.560000px;}
.y205{bottom:68.184000px;}
.y38a{bottom:69.877950px;}
.y372{bottom:70.519950px;}
.y313{bottom:70.553400px;}
.y35a{bottom:70.581450px;}
.y2e2{bottom:70.588500px;}
.y2fb{bottom:70.869150px;}
.y22c{bottom:73.020000px;}
.y298{bottom:73.563300px;}
.y2b0{bottom:73.564800px;}
.y265{bottom:73.678200px;}
.y24c{bottom:73.689450px;}
.y2c7{bottom:73.711350px;}
.y202{bottom:73.854000px;}
.y169{bottom:74.239200px;}
.y27d{bottom:74.618400px;}
.y37f{bottom:74.941950px;}
.y13c{bottom:74.977650px;}
.y367{bottom:76.639950px;}
.y350{bottom:76.713450px;}
.y173{bottom:76.826700px;}
.y2d7{bottom:76.996500px;}
.y214{bottom:77.059500px;}
.y14b{bottom:77.212650px;}
.y2f0{bottom:77.277150px;}
.y308{bottom:77.417400px;}
.y1e8{bottom:78.141000px;}
.y22d{bottom:78.480000px;}
.y203{bottom:79.531500px;}
.y28d{bottom:79.695300px;}
.y2a5{bottom:79.696800px;}
.y2bc{bottom:79.783350px;}
.y241{bottom:80.169450px;}
.y25a{bottom:80.170200px;}
.y272{bottom:81.758400px;}
.y3f5{bottom:82.965999px;}
.y3b7{bottom:83.006347px;}
.ye2{bottom:83.027836px;}
.y1a6{bottom:83.042753px;}
.y78{bottom:83.060967px;}
.yb1{bottom:83.144810px;}
.y119{bottom:83.356587px;}
.y1e1{bottom:83.357250px;}
.y168{bottom:83.486700px;}
.y2f{bottom:83.815212px;}
.y13b{bottom:83.865150px;}
.y39{bottom:83.874988px;}
.y22e{bottom:83.947500px;}
.y204{bottom:85.209000px;}
.y216{bottom:87.276000px;}
.y330{bottom:87.641109px;}
.y174{bottom:87.798000px;}
.y347{bottom:87.880211px;}
.y14c{bottom:87.894000px;}
.y1ea{bottom:88.521000px;}
.y389{bottom:91.717950px;}
.y371{bottom:92.263950px;}
.y359{bottom:92.325450px;}
.y312{bottom:92.333400px;}
.y2e1{bottom:92.476500px;}
.y2fa{bottom:92.757150px;}
.y22b{bottom:95.632500px;}
.y37e{bottom:95.737950px;}
.y139{bottom:96.322650px;}
.y167{bottom:96.394200px;}
.y2c6{bottom:96.403350px;}
.y297{bottom:96.435300px;}
.y2af{bottom:96.436800px;}
.y264{bottom:96.502200px;}
.y24b{bottom:96.513450px;}
.y366{bottom:97.315950px;}
.y1ff{bottom:97.321500px;}
.y34f{bottom:97.389450px;}
.y27c{bottom:97.490400px;}
.y2d6{bottom:97.660500px;}
.y2ef{bottom:97.941150px;}
.y307{bottom:98.033400px;}
.y3b6{bottom:98.647883px;}
.y3f4{bottom:99.548986px;}
.ye1{bottom:100.198377px;}
.y1a5{bottom:100.213295px;}
.y77{bottom:100.231508px;}
.yb0{bottom:100.315351px;}
.y118{bottom:100.527128px;}
.y1e0{bottom:100.527791px;}
.y2e{bottom:100.985753px;}
.y38{bottom:101.045529px;}
.y2bb{bottom:101.503350px;}
.y28c{bottom:101.547300px;}
.y2a4{bottom:101.548800px;}
.y138{bottom:101.760150px;}
.y149{bottom:101.790150px;}
.y240{bottom:101.997450px;}
.y259{bottom:101.998200px;}
.y375{bottom:102.719550px;}
.y35d{bottom:102.781050px;}
.y316{bottom:103.341450px;}
.y271{bottom:103.586400px;}
.y2e5{bottom:103.646850px;}
.y2fe{bottom:103.927650px;}
.y200{bottom:104.386500px;}
.y22a{bottom:104.692500px;}
.y32f{bottom:104.811650px;}
.y346{bottom:105.050752px;}
.y166{bottom:105.146700px;}
.y38d{bottom:105.668700px;}
.y137{bottom:107.197650px;}
.y29b{bottom:108.108000px;}
.y24f{bottom:108.500700px;}
.y268{bottom:108.501450px;}
.y2ca{bottom:108.606450px;}
.y280{bottom:110.090250px;}
.y201{bottom:111.451500px;}
.y136{bottom:112.635150px;}
.y388{bottom:113.557950px;}
.y229{bottom:113.752500px;}
.y165{bottom:113.899200px;}
.y370{bottom:114.007950px;}
.y358{bottom:114.069450px;}
.y311{bottom:114.113400px;}
.y2e0{bottom:114.364500px;}
.y3b5{bottom:114.383564px;}
.y2f9{bottom:114.645150px;}
.y171{bottom:115.796700px;}
.y3f3{bottom:116.051277px;}
.y213{bottom:116.481000px;}
.y37d{bottom:116.533950px;}
.ye0{bottom:117.368918px;}
.y1a4{bottom:117.383836px;}
.y76{bottom:117.402049px;}
.yaf{bottom:117.485892px;}
.y117{bottom:117.697669px;}
.y1df{bottom:117.698332px;}
.y365{bottom:117.991950px;}
.y34e{bottom:118.065450px;}
.y13a{bottom:118.087650px;}
.y2d{bottom:118.156294px;}
.y37{bottom:118.216070px;}
.y2d5{bottom:118.324500px;}
.y1fe{bottom:118.509000px;}
.y1e7{bottom:118.522500px;}
.y2ee{bottom:118.605150px;}
.y306{bottom:118.649400px;}
.y2c5{bottom:119.095350px;}
.y296{bottom:119.307300px;}
.y2ae{bottom:119.308800px;}
.y263{bottom:119.326200px;}
.y24a{bottom:119.337450px;}
.y27b{bottom:120.362400px;}
.y32e{bottom:121.982191px;}
.y345{bottom:122.221293px;}
.y164{bottom:122.651700px;}
.y228{bottom:122.812500px;}
.y2ba{bottom:123.223350px;}
.y28b{bottom:123.399300px;}
.y2a3{bottom:123.400800px;}
.y135{bottom:123.517650px;}
.y23f{bottom:123.825450px;}
.y258{bottom:123.826200px;}
.y270{bottom:125.414400px;}
.y1fd{bottom:125.574000px;}
.y3b4{bottom:130.025100px;}
.y3f2{bottom:132.634264px;}
.y134{bottom:133.507650px;}
.y163{bottom:134.149200px;}
.ydf{bottom:134.539459px;}
.y1a3{bottom:134.554377px;}
.y75{bottom:134.572590px;}
.yae{bottom:134.656433px;}
.y227{bottom:134.715000px;}
.y116{bottom:134.868210px;}
.y1de{bottom:134.868874px;}
.y2c{bottom:135.326836px;}
.y36{bottom:135.386611px;}
.y387{bottom:135.397950px;}
.y36f{bottom:135.751950px;}
.y357{bottom:135.813450px;}
.y310{bottom:135.893400px;}
.y2df{bottom:136.252500px;}
.y2f8{bottom:136.533150px;}
.y1fc{bottom:136.951500px;}
.y37c{bottom:137.329950px;}
.y133{bottom:138.577650px;}
.y364{bottom:138.667950px;}
.y34d{bottom:138.741450px;}
.y2d4{bottom:138.988500px;}
.y32d{bottom:139.152732px;}
.y305{bottom:139.265400px;}
.y2ed{bottom:139.269150px;}
.y344{bottom:139.391834px;}
.y215{bottom:140.275500px;}
.y162{bottom:140.839200px;}
.y2c4{bottom:141.787350px;}
.y262{bottom:142.150200px;}
.y249{bottom:142.161450px;}
.y295{bottom:142.179300px;}
.y2ad{bottom:142.180800px;}
.y27a{bottom:143.234400px;}
.y226{bottom:143.587500px;}
.y132{bottom:143.647650px;}
.y1fb{bottom:144.046500px;}
.y2b9{bottom:144.943350px;}
.y28a{bottom:145.251300px;}
.y2a2{bottom:145.252800px;}
.y23e{bottom:145.653450px;}
.y257{bottom:145.654200px;}
.y26f{bottom:147.242400px;}
.y161{bottom:147.529200px;}
.y3f1{bottom:148.369945px;}
.y131{bottom:148.717650px;}
.y1fa{bottom:151.141500px;}
.yde{bottom:151.713881px;}
.y1a2{bottom:151.724918px;}
.y74{bottom:151.743131px;}
.yad{bottom:151.826974px;}
.y115{bottom:152.038751px;}
.y1dd{bottom:152.039415px;}
.y225{bottom:152.460000px;}
.y2b{bottom:152.497377px;}
.y35{bottom:152.557152px;}
.y130{bottom:153.787650px;}
.y160{bottom:154.219200px;}
.y148{bottom:154.477650px;}
.y170{bottom:155.276700px;}
.y32c{bottom:156.323273px;}
.y343{bottom:156.562375px;}
.y386{bottom:157.237950px;}
.y36e{bottom:157.495950px;}
.y356{bottom:157.557450px;}
.y30f{bottom:157.673400px;}
.y1e9{bottom:158.059500px;}
.y37b{bottom:158.125950px;}
.y2de{bottom:158.140500px;}
.y1f8{bottom:158.236500px;}
.y2f7{bottom:158.421150px;}
.y3b3{bottom:158.428500px;}
.y12f{bottom:158.857650px;}
.y363{bottom:159.343950px;}
.y34c{bottom:159.417450px;}
.y2d3{bottom:159.652500px;}
.y304{bottom:159.881400px;}
.y2ec{bottom:159.933150px;}
.y15f{bottom:160.909200px;}
.y224{bottom:161.332500px;}
.y12e{bottom:163.927650px;}
.y2c3{bottom:164.479350px;}
.y31a{bottom:164.896964px;}
.y3f0{bottom:164.952932px;}
.y261{bottom:164.974200px;}
.y248{bottom:164.985450px;}
.y294{bottom:165.051300px;}
.y2ac{bottom:165.052800px;}
.y1f9{bottom:165.331500px;}
.y279{bottom:166.106400px;}
.y2b8{bottom:166.663350px;}
.y289{bottom:167.103300px;}
.y2a1{bottom:167.104800px;}
.y23d{bottom:167.481450px;}
.y256{bottom:167.482200px;}
.y1a1{bottom:168.895459px;}
.y73{bottom:168.913672px;}
.yac{bottom:168.997516px;}
.y26e{bottom:169.070400px;}
.y114{bottom:169.209292px;}
.y1dc{bottom:169.209956px;}
.y2b3{bottom:169.483500px;}
.y2a{bottom:169.667918px;}
.y34{bottom:169.727693px;}
.y15e{bottom:173.404200px;}
.y32b{bottom:173.493814px;}
.y342{bottom:173.732917px;}
.y20e{bottom:174.414602px;}
.y12d{bottom:174.502650px;}
.y223{bottom:176.332500px;}
.y1f6{bottom:177.331500px;}
.y37a{bottom:178.921950px;}
.y385{bottom:179.077950px;}
.y36d{bottom:179.239950px;}
.y355{bottom:179.301450px;}
.y30e{bottom:179.453400px;}
.y362{bottom:180.019950px;}
.y2dd{bottom:180.028500px;}
.y34b{bottom:180.081450px;}
.y2f6{bottom:180.309150px;}
.y2d2{bottom:180.316500px;}
.y303{bottom:180.497400px;}
.y319{bottom:180.538500px;}
.y2eb{bottom:180.597150px;}
.y3ef{bottom:181.535919px;}
.y178{bottom:181.651747px;}
.ydd{bottom:183.170790px;}
.ydc{bottom:183.500273px;}
.y72{bottom:186.084213px;}
.yab{bottom:186.168057px;}
.y113{bottom:186.379833px;}
.y1db{bottom:186.380497px;}
.y1a0{bottom:186.383714px;}
.y29{bottom:186.838459px;}
.y33{bottom:186.898235px;}
.y2c2{bottom:187.171350px;}
.y260{bottom:187.798200px;}
.y247{bottom:187.809450px;}
.y293{bottom:187.923300px;}
.y2ab{bottom:187.924800px;}
.y29d{bottom:188.191500px;}
.y2b7{bottom:188.383350px;}
.y288{bottom:188.955300px;}
.y2a0{bottom:188.956800px;}
.y278{bottom:188.978400px;}
.y23c{bottom:189.309450px;}
.y255{bottom:189.310200px;}
.y15d{bottom:189.904200px;}
.y20d{bottom:190.150283px;}
.y32a{bottom:190.664355px;}
.y26d{bottom:190.898400px;}
.y341{bottom:190.903458px;}
.y1f7{bottom:190.929000px;}
.y222{bottom:191.610000px;}
.y12c{bottom:193.335150px;}
.y3b2{bottom:195.546090px;}
.y177{bottom:197.293283px;}
.y3ee{bottom:198.038210px;}
.y379{bottom:199.717950px;}
.y361{bottom:200.695950px;}
.y34a{bottom:200.757450px;}
.y384{bottom:200.917950px;}
.y2d1{bottom:200.980500px;}
.y36c{bottom:200.983950px;}
.y354{bottom:201.045450px;}
.y302{bottom:201.113400px;}
.y30d{bottom:201.233400px;}
.y2ea{bottom:201.261150px;}
.y2dc{bottom:201.916500px;}
.y2f5{bottom:202.197150px;}
.y71{bottom:203.254754px;}
.yaa{bottom:203.338598px;}
.y112{bottom:203.550374px;}
.y1da{bottom:203.551038px;}
.y19f{bottom:203.554255px;}
.y28{bottom:204.009000px;}
.y32{bottom:204.068776px;}
.y1f5{bottom:204.534000px;}
.y20c{bottom:205.885964px;}
.y285{bottom:206.136000px;}
.y15c{bottom:206.404200px;}
.y221{bottom:206.895000px;}
.y329{bottom:207.834896px;}
.y340{bottom:208.073999px;}
.y318{bottom:209.707500px;}
.y2c1{bottom:209.863350px;}
.y2b6{bottom:210.103350px;}
.y25f{bottom:210.622200px;}
.y246{bottom:210.633450px;}
.y292{bottom:210.795300px;}
.y2aa{bottom:210.796800px;}
.ydb{bottom:210.802779px;}
.y287{bottom:210.807300px;}
.y29f{bottom:210.808800px;}
.y23b{bottom:211.137450px;}
.y254{bottom:211.138200px;}
.y277{bottom:211.850400px;}
.y12b{bottom:212.167650px;}
.y3b1{bottom:212.716631px;}
.y26c{bottom:212.726400px;}
.y176{bottom:213.028964px;}
.y3ed{bottom:213.773891px;}
.y16f{bottom:214.841700px;}
.y1f4{bottom:218.131500px;}
.y1e6{bottom:219.718500px;}
.ya9{bottom:220.509139px;}
.y378{bottom:220.513950px;}
.y70{bottom:220.514959px;}
.y111{bottom:220.720915px;}
.y19e{bottom:220.724796px;}
.y1d9{bottom:220.811242px;}
.y31{bottom:221.239317px;}
.y360{bottom:221.371950px;}
.y349{bottom:221.433450px;}
.y20b{bottom:221.527500px;}
.y2d0{bottom:221.644500px;}
.y301{bottom:221.729400px;}
.y2e9{bottom:221.925150px;}
.y220{bottom:222.172500px;}
.y15b{bottom:222.904200px;}
.y328{bottom:225.095101px;}
.y33f{bottom:225.244540px;}
.y300{bottom:227.650500px;}
.yda{bottom:227.973320px;}
.y175{bottom:228.670500px;}
.y3b0{bottom:229.887172px;}
.y3ec{bottom:230.356878px;}
.y12a{bottom:231.000150px;}
.y212{bottom:231.586950px;}
.y1f3{bottom:231.729000px;}
.y2b5{bottom:231.823350px;}
.y38e{bottom:232.279500px;}
.y147{bottom:232.455150px;}
.y286{bottom:232.659300px;}
.y29e{bottom:232.660800px;}
.y23a{bottom:232.965450px;}
.y253{bottom:232.966200px;}
.y376{bottom:233.014500px;}
.y2e6{bottom:233.017500px;}
.y35e{bottom:233.076000px;}
.y317{bottom:233.268000px;}
.y2ff{bottom:233.274000px;}
.y26b{bottom:234.554400px;}
.y27{bottom:235.389000px;}
.y21f{bottom:237.450000px;}
.ya8{bottom:237.679680px;}
.y6f{bottom:237.692959px;}
.y110{bottom:237.891457px;}
.y19d{bottom:237.895337px;}
.y1d8{bottom:237.981784px;}
.y30{bottom:238.409858px;}
.y15a{bottom:239.404200px;}
.y269{bottom:240.486000px;}
.y1e3{bottom:241.002000px;}
.y250{bottom:242.142000px;}
.y327{bottom:242.265642px;}
.y33e{bottom:242.504744px;}
.y29c{bottom:242.983500px;}
.y2cb{bottom:243.439500px;}
.y281{bottom:244.651500px;}
.y1f2{bottom:245.326500px;}
.y3eb{bottom:246.939865px;}
.y3af{bottom:247.057713px;}
.y151{bottom:248.145000px;}
.y159{bottom:251.254200px;}
.y21e{bottom:251.580000px;}
.y129{bottom:251.970150px;}
.y6e{bottom:254.863500px;}
.ya7{bottom:254.939884px;}
.y10f{bottom:255.151661px;}
.y1d7{bottom:255.152325px;}
.y19c{bottom:255.155542px;}
.y1f1{bottom:257.079000px;}
.yd9{bottom:259.280790px;}
.y326{bottom:259.436183px;}
.yd8{bottom:259.624500px;}
.y3ea{bottom:262.581401px;}
.y33d{bottom:264.098680px;}
.y3ae{bottom:264.317918px;}
.y42a{bottom:264.608215px;}
.yd6{bottom:271.838041px;}
.y6d{bottom:272.069836px;}
.ya6{bottom:272.110426px;}
.y10e{bottom:272.322202px;}
.y1d6{bottom:272.322866px;}
.y19b{bottom:272.326083px;}
.y325{bottom:276.606724px;}
.y158{bottom:277.804200px;}
.y21d{bottom:278.175000px;}
.y3e9{bottom:279.164388px;}
.y429{bottom:280.343896px;}
.y33c{bottom:281.269221px;}
.y3ad{bottom:281.488459px;}
.yd7{bottom:283.687290px;}
.y128{bottom:285.217650px;}
.y6c{bottom:289.240377px;}
.ya5{bottom:289.280967px;}
.y10d{bottom:289.492743px;}
.y1d5{bottom:289.493407px;}
.y19a{bottom:289.496624px;}
.y1f0{bottom:291.144000px;}
.y324{bottom:293.777265px;}
.y3e8{bottom:295.747375px;}
.y428{bottom:295.985432px;}
.y33b{bottom:298.529425px;}
.y3ac{bottom:298.659000px;}
.y157{bottom:304.346700px;}
.y21c{bottom:304.770000px;}
.y6b{bottom:306.410918px;}
.ya4{bottom:306.451508px;}
.y10c{bottom:306.663284px;}
.y1d4{bottom:306.663948px;}
.y199{bottom:306.667165px;}
.y427{bottom:311.721113px;}
.y3e7{bottom:312.330362px;}
.yd5{bottom:313.935008px;}
.y26{bottom:314.990214px;}
.y33a{bottom:315.699967px;}
.y127{bottom:318.465150px;}
.y323{bottom:319.540549px;}
.y6a{bottom:323.581459px;}
.ya3{bottom:323.622049px;}
.y10b{bottom:323.833825px;}
.y1d3{bottom:323.834489px;}
.y198{bottom:323.837706px;}
.y1ef{bottom:325.209000px;}
.y426{bottom:327.362649px;}
.y3ab{bottom:328.507500px;}
.y3e6{bottom:328.832653px;}
.y25{bottom:330.725895px;}
.y156{bottom:330.896700px;}
.y16e{bottom:330.904200px;}
.yd4{bottom:331.105549px;}
.y211{bottom:331.154700px;}
.y21b{bottom:331.365000px;}
.y339{bottom:332.870508px;}
.y322{bottom:336.711090px;}
.y1e5{bottom:338.311200px;}
.y69{bottom:340.759459px;}
.ya2{bottom:340.792590px;}
.y10a{bottom:341.004367px;}
.y1d2{bottom:341.005030px;}
.y197{bottom:341.008247px;}
.y425{bottom:343.098330px;}
.y3e5{bottom:344.568334px;}
.y24{bottom:346.367431px;}
.yd3{bottom:348.276090px;}
.y146{bottom:349.605150px;}
.y338{bottom:350.041049px;}
.y126{bottom:351.712650px;}
.y321{bottom:353.881631px;}
.y155{bottom:357.439200px;}
.y68{bottom:357.937459px;}
.y21a{bottom:357.960000px;}
.ya1{bottom:357.963131px;}
.y109{bottom:358.174908px;}
.y1d1{bottom:358.175571px;}
.y196{bottom:358.178788px;}
.y424{bottom:358.739866px;}
.y1ee{bottom:359.274000px;}
.y3e4{bottom:361.151321px;}
.y23{bottom:362.103112px;}
.y144{bottom:363.007650px;}
.y152{bottom:364.421700px;}
.y210{bottom:365.182200px;}
.yd2{bottom:365.446631px;}
.y3aa{bottom:365.584500px;}
.y337{bottom:367.211590px;}
.y1e4{bottom:370.726200px;}
.y320{bottom:371.052172px;}
.y423{bottom:374.475547px;}
.ya0{bottom:375.133672px;}
.y1d0{bottom:375.346112px;}
.y195{bottom:375.349330px;}
.y67{bottom:375.394161px;}
.y3e3{bottom:377.734307px;}
.y22{bottom:377.838793px;}
.yd1{bottom:382.706836px;}
.y336{bottom:384.382131px;}
.y31f{bottom:388.222713px;}
.y422{bottom:390.117083px;}
.y9f{bottom:392.304213px;}
.y1cf{bottom:392.516653px;}
.y66{bottom:392.564702px;}
.y21{bottom:393.480329px;}
.y3e2{bottom:394.236599px;}
.y3a9{bottom:395.518500px;}
.yd0{bottom:399.877377px;}
.y335{bottom:401.552672px;}
.y108{bottom:402.393908px;}
.y31e{bottom:405.393254px;}
.y421{bottom:405.852764px;}
.y20{bottom:409.216010px;}
.y9e{bottom:409.474754px;}
.y1ce{bottom:409.776858px;}
.y65{bottom:409.824907px;}
.y3e1{bottom:409.972280px;}
.ycf{bottom:417.047918px;}
.y334{bottom:418.723213px;}
.y107{bottom:419.564449px;}
.y194{bottom:421.182271px;}
.y420{bottom:421.588445px;}
.y31d{bottom:422.653459px;}
.y1f{bottom:424.857546px;}
.y3e0{bottom:426.555266px;}
.y9d{bottom:426.645295px;}
.y1cd{bottom:426.947399px;}
.y64{bottom:426.995448px;}
.y3a8{bottom:432.610418px;}
.yce{bottom:434.218459px;}
.y333{bottom:435.893754px;}
.y106{bottom:436.734990px;}
.y41f{bottom:437.229981px;}
.y193{bottom:438.352812px;}
.y31c{bottom:439.824000px;}
.y1e{bottom:440.593227px;}
.y3df{bottom:443.138253px;}
.y9c{bottom:443.905500px;}
.y1cc{bottom:444.117940px;}
.y63{bottom:444.165989px;}
.ycd{bottom:447.221386px;}
.y3a7{bottom:449.780959px;}
.ycc{bottom:451.396459px;}
.y41e{bottom:452.965662px;}
.y332{bottom:453.064295px;}
.y105{bottom:453.995194px;}
.y192{bottom:455.523353px;}
.y1d{bottom:456.234763px;}
.y3de{bottom:459.640544px;}
.y1cb{bottom:461.288481px;}
.y62{bottom:461.336530px;}
.y3a6{bottom:466.951500px;}
.y31b{bottom:468.226500px;}
.ycb{bottom:468.581918px;}
.y41d{bottom:468.607198px;}
.y331{bottom:470.234836px;}
.y104{bottom:471.165736px;}
.y1c{bottom:471.970444px;}
.y191{bottom:472.693894px;}
.y9b{bottom:473.754000px;}
.y3dd{bottom:475.376225px;}
.y1ca{bottom:478.459022px;}
.y61{bottom:478.507071px;}
.y2e7{bottom:480.897000px;}
.y41c{bottom:484.342879px;}
.yca{bottom:485.752459px;}
.y1b{bottom:487.611980px;}
.y103{bottom:488.336277px;}
.y190{bottom:489.954099px;}
.y3dc{bottom:491.959212px;}
.y284{bottom:493.650819px;}
.y1c9{bottom:495.629563px;}
.y60{bottom:495.677612px;}
.y3a5{bottom:496.800000px;}
.y2e8{bottom:498.841500px;}
.y2cf{bottom:499.096500px;}
.y41b{bottom:499.984415px;}
.yc9{bottom:502.916449px;}
.y1a{bottom:503.347661px;}
.y102{bottom:505.506818px;}
.y18f{bottom:507.124640px;}
.y3db{bottom:508.542199px;}
.y283{bottom:509.386500px;}
.y9a{bottom:512.786687px;}
.y1c8{bottom:512.800105px;}
.y5f{bottom:512.848153px;}
.y391{bottom:513.633819px;}
.y41a{bottom:515.720096px;}
.y19{bottom:518.989197px;}
.y101{bottom:522.677359px;}
.y18e{bottom:524.295181px;}
.y3da{bottom:525.125186px;}
.y390{bottom:529.369500px;}
.yc8{bottom:529.457145px;}
.y99{bottom:529.957228px;}
.y1c7{bottom:529.970646px;}
.y5e{bottom:530.018695px;}
.y419{bottom:531.361632px;}
.yc7{bottom:533.586851px;}
.y3a4{bottom:534.083435px;}
.y18{bottom:534.724878px;}
.y282{bottom:538.468500px;}
.y100{bottom:539.847900px;}
.y18d{bottom:541.465722px;}
.y3d9{bottom:541.627477px;}
.y418{bottom:547.097313px;}
.y98{bottom:547.127769px;}
.y1c6{bottom:547.141187px;}
.y5d{bottom:547.189236px;}
.y3a3{bottom:551.343640px;}
.y26a{bottom:556.413000px;}
.yff{bottom:557.018441px;}
.y3d8{bottom:557.363158px;}
.y38f{bottom:558.453000px;}
.y18c{bottom:558.636263px;}
.yc6{bottom:559.783508px;}
.y17{bottom:561.596579px;}
.y417{bottom:562.738849px;}
.y97{bottom:564.298310px;}
.y1c5{bottom:564.311728px;}
.y5c{bottom:564.359777px;}
.y3a2{bottom:568.514181px;}
.y3d7{bottom:573.946145px;}
.yfe{bottom:574.188982px;}
.y18b{bottom:575.806804px;}
.y377{bottom:576.481500px;}
.yc5{bottom:576.954049px;}
.y16{bottom:577.238115px;}
.y416{bottom:578.474530px;}
.y96{bottom:581.468851px;}
.y1c4{bottom:581.482269px;}
.y5b{bottom:581.530318px;}
.y3a1{bottom:585.684722px;}
.y3d6{bottom:590.529132px;}
.yfd{bottom:591.359523px;}
.y18a{bottom:592.977345px;}
.y415{bottom:594.116065px;}
.yc4{bottom:594.124590px;}
.y95{bottom:598.729056px;}
.y1c3{bottom:598.742473px;}
.y5a{bottom:598.790522px;}
.y3a0{bottom:602.855263px;}
.y15{bottom:605.643037px;}
.y3d5{bottom:606.170668px;}
.yfc{bottom:608.530064px;}
.y414{bottom:609.851746px;}
.yc3{bottom:611.295131px;}
.y94{bottom:615.899597px;}
.y1c2{bottom:615.913015px;}
.y59{bottom:615.961063px;}
.y39f{bottom:620.025804px;}
.y3d4{bottom:622.753655px;}
.y413{bottom:625.493282px;}
.yfb{bottom:625.700605px;}
.yc2{bottom:628.465672px;}
.y93{bottom:633.070138px;}
.y1c1{bottom:633.083556px;}
.y58{bottom:633.131605px;}
.y14{bottom:634.047958px;}
.y39e{bottom:637.196345px;}
.y189{bottom:638.810287px;}
.y3d3{bottom:639.336642px;}
.y412{bottom:641.228963px;}
.yfa{bottom:642.960810px;}
.yc1{bottom:645.636213px;}
.y92{bottom:650.240679px;}
.y1c0{bottom:650.254097px;}
.y57{bottom:650.302146px;}
.y238{bottom:651.664747px;}
.y150{bottom:653.875747px;}
.y39d{bottom:654.366886px;}
.y3d2{bottom:654.978178px;}
.y188{bottom:655.980828px;}
.y411{bottom:656.870499px;}
.yf9{bottom:660.131351px;}
.yc0{bottom:662.806754px;}
.y13{bottom:663.986078px;}
.y237{bottom:667.306283px;}
.y91{bottom:667.411220px;}
.y1bf{bottom:667.424638px;}
.y56{bottom:667.472687px;}
.y14f{bottom:669.517283px;}
.y39c{bottom:671.537428px;}
.y3d1{bottom:671.561165px;}
.y410{bottom:672.606180px;}
.y187{bottom:673.151369px;}
.yf8{bottom:677.301892px;}
.ybf{bottom:680.066959px;}
.y236{bottom:683.041964px;}
.y90{bottom:684.581761px;}
.y1be{bottom:684.595179px;}
.y55{bottom:684.643228px;}
.y14e{bottom:685.252964px;}
.y3d0{bottom:688.144151px;}
.y40f{bottom:688.247716px;}
.y39b{bottom:688.707969px;}
.y186{bottom:690.321910px;}
.y12{bottom:692.391000px;}
.yf7{bottom:694.472433px;}
.ybe{bottom:697.307926px;}
.y11{bottom:698.343000px;}
.y235{bottom:698.683500px;}
.y14d{bottom:700.894500px;}
.y8f{bottom:701.752302px;}
.y1bd{bottom:701.765720px;}
.y54{bottom:701.813769px;}
.y3cf{bottom:703.785687px;}
.y40e{bottom:703.983397px;}
.y39a{bottom:705.878510px;}
.y185{bottom:707.492451px;}
.y10{bottom:708.802500px;}
.yf6{bottom:711.642974px;}
.ybd{bottom:714.478467px;}
.yf{bottom:714.756000px;}
.y20f{bottom:718.242000px;}
.y8e{bottom:718.922843px;}
.y1bc{bottom:718.936261px;}
.y53{bottom:718.984310px;}
.y40d{bottom:719.624933px;}
.y3ce{bottom:720.368674px;}
.y125{bottom:720.369000px;}
.y399{bottom:723.049051px;}
.y184{bottom:724.662992px;}
.ye{bottom:725.215500px;}
.yf5{bottom:728.813515px;}
.yd{bottom:731.169000px;}
.ybc{bottom:731.649008px;}
.y40c{bottom:735.360614px;}
.y8d{bottom:736.093384px;}
.y1bb{bottom:736.106802px;}
.y52{bottom:736.154851px;}
.y3cd{bottom:736.951661px;}
.yc{bottom:741.628500px;}
.y183{bottom:741.923197px;}
.yf4{bottom:745.984057px;}
.yb{bottom:747.666000px;}
.ybb{bottom:748.819549px;}
.y398{bottom:748.901998px;}
.y40b{bottom:751.002150px;}
.y8c{bottom:753.263926px;}
.y1ba{bottom:753.277343px;}
.y51{bottom:753.325392px;}
.y3cc{bottom:753.534648px;}
.ya{bottom:758.125500px;}
.y182{bottom:759.093738px;}
.yf3{bottom:763.154598px;}
.y9{bottom:764.079000px;}
.yba{bottom:765.990090px;}
.y397{bottom:766.072539px;}
.y40a{bottom:766.737831px;}
.y3cb{bottom:769.176184px;}
.y8b{bottom:770.434467px;}
.y1b9{bottom:770.447885px;}
.y50{bottom:770.495933px;}
.y2ce{bottom:774.875319px;}
.y181{bottom:776.264279px;}
.yf2{bottom:780.325139px;}
.y409{bottom:782.379367px;}
.yb9{bottom:783.160631px;}
.y396{bottom:783.243080px;}
.y3ca{bottom:785.759171px;}
.y8a{bottom:787.605008px;}
.y1b8{bottom:787.618426px;}
.y4f{bottom:787.666474px;}
.y7{bottom:787.975500px;}
.y2cd{bottom:790.611000px;}
.y180{bottom:793.434820px;}
.y8{bottom:795.969000px;}
.yf1{bottom:797.495680px;}
.y408{bottom:798.115048px;}
.yb8{bottom:800.331172px;}
.y395{bottom:800.413621px;}
.y3c9{bottom:802.342158px;}
.y89{bottom:804.865212px;}
.y1b7{bottom:804.878630px;}
.y4e{bottom:804.926679px;}
.y5{bottom:808.894500px;}
.y17f{bottom:810.605361px;}
.y407{bottom:813.756584px;}
.yf0{bottom:814.666221px;}
.y6{bottom:816.888000px;}
.yb7{bottom:817.501713px;}
.y394{bottom:817.584162px;}
.y3c8{bottom:818.925145px;}
.y2cc{bottom:819.694500px;}
.y251{bottom:821.055000px;}
.y88{bottom:822.035753px;}
.y1b6{bottom:822.049171px;}
.y4d{bottom:822.097220px;}
.y17e{bottom:827.775902px;}
.y35f{bottom:828.708000px;}
.y406{bottom:829.492265px;}
.yef{bottom:831.926425px;}
.yb6{bottom:834.672254px;}
.y393{bottom:834.754703px;}
.y3c7{bottom:835.508132px;}
.y2b4{bottom:836.277000px;}
.y239{bottom:837.553500px;}
.y252{bottom:839.169000px;}
.y87{bottom:839.206295px;}
.y1b5{bottom:839.219712px;}
.y4c{bottom:839.267761px;}
.y17d{bottom:844.946443px;}
.y405{bottom:845.133801px;}
.y348{bottom:846.652500px;}
.yee{bottom:849.096967px;}
.y3c6{bottom:851.149667px;}
.yb5{bottom:851.842795px;}
.y392{bottom:851.925244px;}
.y86{bottom:856.376836px;}
.y1b4{bottom:856.390253px;}
.y4b{bottom:856.438302px;}
.y404{bottom:860.869482px;}
.y17c{bottom:862.116984px;}
.yed{bottom:866.267508px;}
.y3c5{bottom:867.732654px;}
.yb4{bottom:869.103000px;}
.y85{bottom:873.547377px;}
.y1b3{bottom:873.560795px;}
.y4a{bottom:873.608843px;}
.y403{bottom:876.511018px;}
.y17b{bottom:879.287525px;}
.y4{bottom:880.652743px;}
.yec{bottom:883.438049px;}
.y3c4{bottom:884.315641px;}
.y84{bottom:890.717918px;}
.y1b2{bottom:890.731336px;}
.y49{bottom:890.779384px;}
.y402{bottom:892.246699px;}
.y17a{bottom:896.458066px;}
.yeb{bottom:900.608590px;}
.y3c3{bottom:900.898628px;}
.y401{bottom:907.888234px;}
.y83{bottom:907.888459px;}
.y1b1{bottom:907.901877px;}
.y48{bottom:907.949926px;}
.y3{bottom:910.510855px;}
.y179{bottom:913.628608px;}
.y3c2{bottom:916.540164px;}
.yea{bottom:917.779131px;}
.y400{bottom:923.623915px;}
.y1b0{bottom:925.072418px;}
.y47{bottom:925.120467px;}
.y82{bottom:925.179620px;}
.y123{bottom:926.698464px;}
.y3c1{bottom:933.123151px;}
.y122{bottom:934.606653px;}
.ye9{bottom:934.949672px;}
.y3ff{bottom:939.359596px;}
.y2{bottom:940.449665px;}
.y1af{bottom:942.242959px;}
.y46{bottom:942.291008px;}
.y81{bottom:942.350161px;}
.y3c0{bottom:949.706138px;}
.y3fe{bottom:955.001132px;}
.y121{bottom:958.075681px;}
.y45{bottom:959.461549px;}
.y1ae{bottom:959.502488px;}
.y80{bottom:959.520702px;}
.y3bf{bottom:965.441819px;}
.y120{bottom:965.983870px;}
.y3fd{bottom:970.736813px;}
.y1{bottom:976.252500px;}
.y44{bottom:976.632090px;}
.y1ad{bottom:976.673029px;}
.y7f{bottom:976.691243px;}
.ye8{bottom:979.168672px;}
.y3be{bottom:981.944110px;}
.y3fc{bottom:986.378349px;}
.y11f{bottom:989.452898px;}
.y43{bottom:993.892294px;}
.y1ac{bottom:993.933234px;}
.y7e{bottom:993.951447px;}
.ye7{bottom:996.339213px;}
.y3bd{bottom:998.527097px;}
.y3fb{bottom:1002.114030px;}
.y11e{bottom:1005.175130px;}
.y42{bottom:1011.062836px;}
.y1ab{bottom:1011.103775px;}
.y7d{bottom:1011.121988px;}
.y11d{bottom:1012.989173px;}
.ye6{bottom:1013.509754px;}
.y3bc{bottom:1015.110084px;}
.y3fa{bottom:1017.755566px;}
.y41{bottom:1028.233377px;}
.y1aa{bottom:1028.274316px;}
.y7c{bottom:1028.292530px;}
.ye5{bottom:1030.769959px;}
.y3bb{bottom:1030.845765px;}
.y3f9{bottom:1033.491247px;}
.y11c{bottom:1039.941570px;}
.y40{bottom:1045.403918px;}
.y1a9{bottom:1045.444857px;}
.y7b{bottom:1045.463071px;}
.y3ba{bottom:1047.348056px;}
.y11b{bottom:1047.769063px;}
.ye4{bottom:1047.940500px;}
.y3f8{bottom:1049.132783px;}
.y3f{bottom:1062.574459px;}
.y1a8{bottom:1062.615398px;}
.y7a{bottom:1062.633612px;}
.y3b9{bottom:1063.931043px;}
.y3f7{bottom:1064.868464px;}
.y3d{bottom:1074.413678px;}
.ye3{bottom:1077.789000px;}
.y3e{bottom:1079.745000px;}
.y1a7{bottom:1079.785940px;}
.y79{bottom:1079.804153px;}
.y3f6{bottom:1080.510000px;}
.y3b8{bottom:1080.514030px;}
.y11a{bottom:1080.679500px;}
.y3c{bottom:1088.258741px;}
.y3b{bottom:1102.448682px;}
.y3a{bottom:1116.263715px;}
.y124{bottom:1123.114500px;}
.yb2{bottom:1123.255194px;}
.y1e2{bottom:1123.467634px;}
.yb3{bottom:1176.075000px;}
.h1f{height:21.360000px;}
.h20{height:22.442880px;}
.h6{height:25.604611px;}
.he{height:28.324512px;}
.h5{height:33.661056px;}
.hc{height:34.047839px;}
.h28{height:34.176000px;}
.h29{height:34.239550px;}
.h9{height:38.303606px;}
.h7{height:38.411201px;}
.h8{height:38.518795px;}
.h2c{height:40.608000px;}
.h1a{height:42.617134px;}
.h22{height:42.679778px;}
.h12{height:42.739658px;}
.ha{height:42.799330px;}
.h11{height:42.825534px;}
.h24{height:45.130214px;}
.h23{height:50.288790px;}
.h4{height:50.498342px;}
.h17{height:58.537015px;}
.h14{height:59.469787px;}
.h18{height:59.911854px;}
.hd{height:63.930056px;}
.hb{height:63.959892px;}
.h1b{height:65.334731px;}
.h13{height:67.193318px;}
.h1d{height:69.828766px;}
.h1c{height:70.151549px;}
.h16{height:70.453854px;}
.hf{height:73.483750px;}
.h3{height:75.748147px;}
.h2{height:76.824115px;}
.h10{height:80.277310px;}
.h15{height:107.308849px;}
.h19{height:119.371873px;}
.h31{height:242.107500px;}
.h2f{height:242.872500px;}
.h30{height:243.127500px;}
.h2a{height:250.356000px;}
.h27{height:251.971500px;}
.h2d{height:252.822000px;}
.h2e{height:253.246500px;}
.h2b{height:254.523000px;}
.h1e{height:369.156000px;}
.h21{height:370.516500px;}
.h26{height:371.281500px;}
.h25{height:376.894500px;}
.h1{height:1200.000000px;}
.h0{height:1200.075000px;}
.w10{width:317.707500px;}
.wd{width:317.791500px;}
.we{width:317.877000px;}
.wf{width:318.302403px;}
.wc{width:324.595500px;}
.w7{width:330.208500px;}
.wa{width:330.463500px;}
.w9{width:330.887700px;}
.wb{width:331.143000px;}
.w8{width:333.864000px;}
.w6{width:337.011000px;}
.w2{width:688.734000px;}
.w3{width:688.819500px;}
.w5{width:689.329500px;}
.w4{width:702.510000px;}
.w1{width:900.000000px;}
.w0{width:900.057000px;}
.x0{left:0.000000px;}
.x22{left:3.599697px;}
.x20{left:6.269697px;}
.x21{left:9.869697px;}
.x34{left:13.349855px;}
.x2a{left:16.061397px;}
.x57{left:17.332500px;}
.x3e{left:22.640394px;}
.x42{left:26.536500px;}
.x3d{left:28.400394px;}
.x3b{left:33.260394px;}
.x3c{left:39.920394px;}
.x54{left:43.845000px;}
.x43{left:49.489050px;}
.x5b{left:62.031750px;}
.x31{left:65.007755px;}
.x25{left:66.119697px;}
.x4a{left:67.793700px;}
.x3f{left:73.856094px;}
.x1{left:76.450350px;}
.x1c{left:79.422645px;}
.x5d{left:83.763750px;}
.x58{left:85.004850px;}
.x4f{left:90.077700px;}
.x47{left:92.822700px;}
.xf{left:98.836312px;}
.x59{left:100.091600px;}
.x1f{left:105.619500px;}
.x39{left:108.936000px;}
.x49{left:111.826800px;}
.x2d{left:115.542897px;}
.x50{left:121.351500px;}
.x15{left:124.838245px;}
.x2{left:130.195200px;}
.xd{left:135.042450px;}
.x1a{left:155.553307px;}
.x12{left:157.324034px;}
.x1e{left:165.578861px;}
.x17{left:190.232998px;}
.x18{left:197.213933px;}
.x16{left:239.296514px;}
.x3{left:259.881000px;}
.x1b{left:268.040323px;}
.x4{left:270.510000px;}
.x52{left:276.888000px;}
.x45{left:283.096500px;}
.x4e{left:284.457000px;}
.x27{left:288.689697px;}
.x56{left:291.090000px;}
.x1d{left:293.468255px;}
.x19{left:295.084501px;}
.xc{left:298.233000px;}
.x23{left:300.344697px;}
.x53{left:303.570000px;}
.x2b{left:308.075397px;}
.x51{left:310.342204px;}
.x13{left:311.499000px;}
.x30{left:313.535255px;}
.x41{left:316.036500px;}
.x46{left:319.656000px;}
.x3a{left:322.760394px;}
.x24{left:334.777197px;}
.x36{left:340.237805px;}
.x4d{left:390.330000px;}
.x14{left:392.371500px;}
.x2c{left:401.255397px;}
.x5{left:412.101000px;}
.x6{left:422.730000px;}
.x48{left:443.395500px;}
.x4b{left:457.767000px;}
.x40{left:460.914000px;}
.xe{left:463.467472px;}
.x5e{left:470.094893px;}
.x10{left:485.906806px;}
.x5f{left:491.775164px;}
.x5a{left:508.777377px;}
.x26{left:511.297197px;}
.x32{left:521.171255px;}
.x7{left:536.769000px;}
.x28{left:542.804697px;}
.x2e{left:544.085397px;}
.x8{left:547.483500px;}
.x5c{left:609.477000px;}
.x55{left:612.624000px;}
.x4c{left:615.855000px;}
.x44{left:618.831000px;}
.x2f{left:625.017897px;}
.x38{left:626.027250px;}
.x29{left:637.799697px;}
.x37{left:639.410250px;}
.x35{left:649.520255px;}
.x33{left:650.688755px;}
.x9{left:692.220000px;}
.xa{left:698.257500px;}
.xb{left:701.574000px;}
.x11{left:877.830000px;}
@media print{
.v1{vertical-align:-13.716129pt;}
.v3{vertical-align:-12.698667pt;}
.v14{vertical-align:-5.717333pt;}
.v2{vertical-align:-1.017462pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.222079pt;}
.v13{vertical-align:5.717333pt;}
.v10{vertical-align:8.880000pt;}
.v12{vertical-align:12.686263pt;}
.v5{vertical-align:14.504372pt;}
.v11{vertical-align:18.219683pt;}
.v6{vertical-align:19.930813pt;}
.v4{vertical-align:25.701333pt;}
.vc{vertical-align:26.624746pt;}
.vf{vertical-align:28.118003pt;}
.v9{vertical-align:30.355408pt;}
.va{vertical-align:35.995412pt;}
.v7{vertical-align:43.352741pt;}
.vd{vertical-align:44.419913pt;}
.ve{vertical-align:49.255094pt;}
.v8{vertical-align:68.755408pt;}
.lsc{letter-spacing:-1.487194pt;}
.ls62{letter-spacing:-1.365333pt;}
.ls4d{letter-spacing:-1.328347pt;}
.ls61{letter-spacing:-1.066667pt;}
.ls66{letter-spacing:-0.725333pt;}
.lsd{letter-spacing:-0.531339pt;}
.ls6{letter-spacing:-0.526029pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls53{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.213333pt;}
.ls51{letter-spacing:-0.061333pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.052602pt;}
.ls9{letter-spacing:-0.047814pt;}
.ls63{letter-spacing:-0.021333pt;}
.ls56{letter-spacing:-0.016000pt;}
.ls5e{letter-spacing:-0.013333pt;}
.ls52{letter-spacing:-0.008000pt;}
.ls4f{letter-spacing:-0.005333pt;}
.ls50{letter-spacing:-0.002667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.008533pt;}
.ls35{letter-spacing:0.049485pt;}
.ls25{letter-spacing:0.053134pt;}
.ls1b{letter-spacing:0.061555pt;}
.ls1e{letter-spacing:0.092911pt;}
.ls8{letter-spacing:0.093503pt;}
.ls7{letter-spacing:0.106253pt;}
.ls1{letter-spacing:0.108393pt;}
.ls22{letter-spacing:0.108618pt;}
.ls4{letter-spacing:0.114769pt;}
.ls17{letter-spacing:0.121913pt;}
.ls12{letter-spacing:0.138148pt;}
.ls11{letter-spacing:0.159402pt;}
.ls16{letter-spacing:0.172709pt;}
.ls19{letter-spacing:0.177125pt;}
.ls2{letter-spacing:0.196061pt;}
.ls0{letter-spacing:0.210412pt;}
.ls40{letter-spacing:0.226684pt;}
.ls42{letter-spacing:0.260946pt;}
.ls39{letter-spacing:0.285945pt;}
.ls3d{letter-spacing:0.291278pt;}
.ls32{letter-spacing:0.296096pt;}
.ls14{letter-spacing:0.341675pt;}
.ls2b{letter-spacing:0.440062pt;}
.ls67{letter-spacing:0.530799pt;}
.ls43{letter-spacing:0.531339pt;}
.ls64{letter-spacing:0.597333pt;}
.ls65{letter-spacing:0.797008pt;}
.ls5c{letter-spacing:0.850142pt;}
.ls45{letter-spacing:2.072221pt;}
.ls38{letter-spacing:2.408036pt;}
.ls15{letter-spacing:2.497766pt;}
.ls2c{letter-spacing:2.513348pt;}
.ls3b{letter-spacing:2.705581pt;}
.ls36{letter-spacing:2.707861pt;}
.ls18{letter-spacing:2.801766pt;}
.ls2a{letter-spacing:2.874603pt;}
.ls30{letter-spacing:2.876203pt;}
.ls3c{letter-spacing:2.879936pt;}
.ls47{letter-spacing:5.685324pt;}
.ls44{letter-spacing:6.004127pt;}
.ls3a{letter-spacing:6.136856pt;}
.ls46{letter-spacing:6.429198pt;}
.ls37{letter-spacing:6.434401pt;}
.ls1d{letter-spacing:8.713954pt;}
.ls3{letter-spacing:8.751011pt;}
.ls1c{letter-spacing:8.820222pt;}
.ls48{letter-spacing:8.868042pt;}
.ls49{letter-spacing:8.873356pt;}
.ls27{letter-spacing:8.926490pt;}
.ls20{letter-spacing:9.032757pt;}
.ls26{letter-spacing:11.622978pt;}
.ls2f{letter-spacing:12.167655pt;}
.ls1a{letter-spacing:13.687099pt;}
.ls1f{letter-spacing:13.991099pt;}
.ls21{letter-spacing:14.771215pt;}
.ls31{letter-spacing:15.621357pt;}
.ls2e{letter-spacing:16.763735pt;}
.ls5a{letter-spacing:17.055971pt;}
.ls59{letter-spacing:17.374774pt;}
.ls3f{letter-spacing:17.481042pt;}
.ls5{letter-spacing:17.799845pt;}
.ls28{letter-spacing:18.809389pt;}
.ls29{letter-spacing:18.915657pt;}
.ls34{letter-spacing:19.234460pt;}
.ls33{letter-spacing:19.340727pt;}
.ls13{letter-spacing:19.393861pt;}
.ls5d{letter-spacing:20.726565pt;}
.ls58{letter-spacing:22.156822pt;}
.ls5b{letter-spacing:22.204311pt;}
.ls23{letter-spacing:23.361766pt;}
.ls57{letter-spacing:40.116069pt;}
.ls4e{letter-spacing:53.562667pt;}
.ls54{letter-spacing:53.605333pt;}
.ls55{letter-spacing:53.608000pt;}
.ls5f{letter-spacing:55.173333pt;}
.ls4a{letter-spacing:97.982634pt;}
.ls4b{letter-spacing:98.891209pt;}
.ls3e{letter-spacing:101.538819pt;}
.ls4c{letter-spacing:137.577373pt;}
.ls41{letter-spacing:210.675781pt;}
.ls2d{letter-spacing:217.147486pt;}
.ls24{letter-spacing:2020.574682pt;}
.ws1cb{word-spacing:-61.226667pt;}
.ws156{word-spacing:-59.661333pt;}
.ws155{word-spacing:-59.658667pt;}
.ws14d{word-spacing:-59.616000pt;}
.ws0{word-spacing:-42.445742pt;}
.wsc7{word-spacing:-37.565644pt;}
.ws70{word-spacing:-34.855817pt;}
.wse{word-spacing:-33.808551pt;}
.ws17c{word-spacing:-29.027031pt;}
.ws129{word-spacing:-28.267217pt;}
.wsd3{word-spacing:-26.009028pt;}
.wsd5{word-spacing:-25.706165pt;}
.ws1{word-spacing:-25.603256pt;}
.ws2{word-spacing:-25.593692pt;}
.wseb{word-spacing:-25.504256pt;}
.ws3{word-spacing:-25.335460pt;}
.ws28e{word-spacing:-25.134052pt;}
.ws26b{word-spacing:-24.564997pt;}
.wsd2{word-spacing:-24.398652pt;}
.ws295{word-spacing:-24.335462pt;}
.ws233{word-spacing:-23.579911pt;}
.ws253{word-spacing:-22.977382pt;}
.ws24b{word-spacing:-22.953472pt;}
.ws261{word-spacing:-22.379635pt;}
.ws2b{word-spacing:-20.518140pt;}
.wsa6{word-spacing:-20.218465pt;}
.ws249{word-spacing:-20.012558pt;}
.ws2aa{word-spacing:-19.959957pt;}
.ws276{word-spacing:-19.615655pt;}
.ws24f{word-spacing:-19.457849pt;}
.wsfd{word-spacing:-18.857209pt;}
.ws2ab{word-spacing:-18.750117pt;}
.ws285{word-spacing:-18.176281pt;}
.ws272{word-spacing:-18.104551pt;}
.wsa{word-spacing:-18.075859pt;}
.ws2a7{word-spacing:-18.056731pt;}
.wsc{word-spacing:-17.985002pt;}
.wsb{word-spacing:-17.970656pt;}
.wsd{word-spacing:-17.951528pt;}
.ws10{word-spacing:-17.922836pt;}
.ws244{word-spacing:-17.913272pt;}
.ws240{word-spacing:-17.894144pt;}
.ws258{word-spacing:-17.889362pt;}
.wsf{word-spacing:-17.879798pt;}
.ws11{word-spacing:-17.875016pt;}
.ws6d{word-spacing:-17.852672pt;}
.ws7{word-spacing:-17.833821pt;}
.ws9{word-spacing:-17.822415pt;}
.ws2b2{word-spacing:-17.803287pt;}
.ws293{word-spacing:-17.755467pt;}
.ws225{word-spacing:-17.731804pt;}
.ws1a8{word-spacing:-17.730771pt;}
.ws5{word-spacing:-17.680796pt;}
.ws2af{word-spacing:-17.669391pt;}
.ws8{word-spacing:-17.661668pt;}
.ws228{word-spacing:-17.629787pt;}
.ws1a1{word-spacing:-17.427908pt;}
.ws4{word-spacing:-17.406626pt;}
.ws19d{word-spacing:-17.380088pt;}
.ws6{word-spacing:-17.355617pt;}
.ws11a{word-spacing:-17.348207pt;}
.ws10a{word-spacing:-17.332267pt;}
.ws115{word-spacing:-17.236626pt;}
.ws3d{word-spacing:-16.843436pt;}
.ws16f{word-spacing:-16.790302pt;}
.ws81{word-spacing:-16.758422pt;}
.ws17b{word-spacing:-16.753108pt;}
.ws179{word-spacing:-16.646840pt;}
.ws1c0{word-spacing:-16.577766pt;}
.ws19f{word-spacing:-16.556513pt;}
.ws3a{word-spacing:-16.535259pt;}
.ws1b6{word-spacing:-16.450245pt;}
.ws11b{word-spacing:-16.439618pt;}
.ws163{word-spacing:-16.264277pt;}
.ws4f{word-spacing:-16.258963pt;}
.ws197{word-spacing:-16.184576pt;}
.ws1a6{word-spacing:-16.152695pt;}
.ws50{word-spacing:-16.136755pt;}
.ws117{word-spacing:-16.099562pt;}
.ws257{word-spacing:-16.057866pt;}
.ws199{word-spacing:-15.977354pt;}
.ws187{word-spacing:-15.871086pt;}
.ws175{word-spacing:-15.865773pt;}
.ws10d{word-spacing:-15.855146pt;}
.ws164{word-spacing:-15.812639pt;}
.ws10e{word-spacing:-15.780758pt;}
.ws2a0{word-spacing:-15.727910pt;}
.ws1fd{word-spacing:-15.716998pt;}
.wsb6{word-spacing:-15.616043pt;}
.wscd{word-spacing:-15.562910pt;}
.ws1ad{word-spacing:-15.546969pt;}
.ws82{word-spacing:-15.509776pt;}
.ws12e{word-spacing:-15.339747pt;}
.ws77{word-spacing:-15.318494pt;}
.ws18c{word-spacing:-15.238793pt;}
.ws135{word-spacing:-15.217539pt;}
.ws4a{word-spacing:-15.212226pt;}
.ws134{word-spacing:-15.185659pt;}
.ws20e{word-spacing:-15.175032pt;}
.ws16c{word-spacing:-15.153779pt;}
.ws31{word-spacing:-15.148465pt;}
.ws62{word-spacing:-15.111272pt;}
.ws1b8{word-spacing:-14.989064pt;}
.ws13b{word-spacing:-14.962497pt;}
.ws21c{word-spacing:-14.930617pt;}
.ws29a{word-spacing:-14.929321pt;}
.ws198{word-spacing:-14.888109pt;}
.ws116{word-spacing:-14.861543pt;}
.ws39{word-spacing:-14.808409pt;}
.ws73{word-spacing:-14.797782pt;}
.ws1e9{word-spacing:-14.787155pt;}
.ws1e8{word-spacing:-14.781842pt;}
.ws36{word-spacing:-14.771215pt;}
.ws20c{word-spacing:-14.691514pt;}
.ws1b1{word-spacing:-14.654320pt;}
.ws1be{word-spacing:-14.441785pt;}
.ws79{word-spacing:-14.362084pt;}
.wsae{word-spacing:-14.351457pt;}
.ws15{word-spacing:-14.336356pt;}
.ws1af{word-spacing:-14.330204pt;}
.wsaa{word-spacing:-14.319577pt;}
.ws28d{word-spacing:-14.298100pt;}
.ws159{word-spacing:-14.216807pt;}
.ws202{word-spacing:-14.202683pt;}
.ws28f{word-spacing:-14.149859pt;}
.ws211{word-spacing:-14.144235pt;}
.wsc1{word-spacing:-14.117668pt;}
.wsba{word-spacing:-14.101728pt;}
.ws58{word-spacing:-14.091101pt;}
.ws59{word-spacing:-14.059221pt;}
.ws14{word-spacing:-14.059002pt;}
.ws12d{word-spacing:-14.048594pt;}
.wsa2{word-spacing:-14.032654pt;}
.ws23e{word-spacing:-13.987272pt;}
.ws69{word-spacing:-13.952953pt;}
.ws1df{word-spacing:-13.947640pt;}
.ws65{word-spacing:-13.910446pt;}
.ws1cd{word-spacing:-13.905978pt;}
.ws8a{word-spacing:-13.867939pt;}
.ws262{word-spacing:-13.867723pt;}
.ws182{word-spacing:-13.814805pt;}
.wsa3{word-spacing:-13.809492pt;}
.ws88{word-spacing:-13.766985pt;}
.ws195{word-spacing:-13.761671pt;}
.ws1c8{word-spacing:-13.756358pt;}
.ws37{word-spacing:-13.692597pt;}
.ws264{word-spacing:-13.642970pt;}
.ws4c{word-spacing:-13.618210pt;}
.ws17d{word-spacing:-13.559763pt;}
.ws14c{word-spacing:-13.517256pt;}
.wsd9{word-spacing:-13.506629pt;}
.ws26a{word-spacing:-13.475601pt;}
.wsd8{word-spacing:-13.442868pt;}
.ws265{word-spacing:-13.422999pt;}
.ws26c{word-spacing:-13.389525pt;}
.ws136{word-spacing:-13.384421pt;}
.ws16b{word-spacing:-13.373794pt;}
.wsbb{word-spacing:-13.331287pt;}
.ws12a{word-spacing:-13.320660pt;}
.ws296{word-spacing:-13.317796pt;}
.wsc4{word-spacing:-13.299407pt;}
.ws23{word-spacing:-13.298668pt;}
.ws2c{word-spacing:-13.294093pt;}
.ws2f{word-spacing:-13.288780pt;}
.ws162{word-spacing:-13.235646pt;}
.ws5a{word-spacing:-13.230333pt;}
.ws19e{word-spacing:-13.193139pt;}
.ws16a{word-spacing:-13.187826pt;}
.ws1b7{word-spacing:-13.182512pt;}
.ws294{word-spacing:-13.140863pt;}
.wsbe{word-spacing:-13.033737pt;}
.wsa5{word-spacing:-13.012484pt;}
.ws119{word-spacing:-13.001857pt;}
.wsa0{word-spacing:-12.879649pt;}
.ws6f{word-spacing:-12.842456pt;}
.ws2ac{word-spacing:-12.815689pt;}
.ws1c6{word-spacing:-12.773382pt;}
.ws124{word-spacing:-12.762755pt;}
.ws121{word-spacing:-12.752128pt;}
.ws232{word-spacing:-12.739177pt;}
.ws19{word-spacing:-12.710485pt;}
.ws72{word-spacing:-12.683054pt;}
.ws283{word-spacing:-12.667447pt;}
.ws123{word-spacing:-12.661800pt;}
.ws28{word-spacing:-12.629192pt;}
.ws1a{word-spacing:-12.600500pt;}
.ws161{word-spacing:-12.598040pt;}
.ws8c{word-spacing:-12.576786pt;}
.ws28c{word-spacing:-12.571808pt;}
.ws22b{word-spacing:-12.560846pt;}
.ws269{word-spacing:-12.552680pt;}
.ws120{word-spacing:-12.497085pt;}
.ws7a{word-spacing:-12.470519pt;}
.ws57{word-spacing:-12.438638pt;}
.ws29{word-spacing:-12.437913pt;}
.ws1d1{word-spacing:-12.404439pt;}
.ws1b9{word-spacing:-12.396131pt;}
.ws15a{word-spacing:-12.342273pt;}
.ws278{word-spacing:-12.318363pt;}
.ws25c{word-spacing:-12.308799pt;}
.ws43{word-spacing:-12.295177pt;}
.ws63{word-spacing:-12.273923pt;}
.ws20a{word-spacing:-12.226103pt;}
.ws158{word-spacing:-12.203596pt;}
.ws170{word-spacing:-11.965747pt;}
.ws1ae{word-spacing:-11.933866pt;}
.ws22e{word-spacing:-11.928553pt;}
.ws252{word-spacing:-11.926241pt;}
.ws28b{word-spacing:-11.916678pt;}
.ws248{word-spacing:-11.844948pt;}
.ws1b{word-spacing:-11.835384pt;}
.ws16d{word-spacing:-11.806345pt;}
.ws30{word-spacing:-11.785092pt;}
.ws1bf{word-spacing:-11.753211pt;}
.ws3b{word-spacing:-11.678824pt;}
.ws1c9{word-spacing:-11.673511pt;}
.wse1{word-spacing:-11.662884pt;}
.ws122{word-spacing:-11.652257pt;}
.ws11f{word-spacing:-11.641630pt;}
.ws12b{word-spacing:-11.631003pt;}
.ws32{word-spacing:-11.620377pt;}
.wsce{word-spacing:-11.593810pt;}
.ws218{word-spacing:-11.572556pt;}
.wsc0{word-spacing:-11.561929pt;}
.ws1e{word-spacing:-11.534120pt;}
.ws18{word-spacing:-11.529338pt;}
.ws1bb{word-spacing:-11.487542pt;}
.ws78{word-spacing:-11.482229pt;}
.ws21{word-spacing:-11.433698pt;}
.ws74{word-spacing:-11.344081pt;}
.ws138{word-spacing:-11.306887pt;}
.ws112{word-spacing:-11.275007pt;}
.ws132{word-spacing:-11.136858pt;}
.ws133{word-spacing:-10.982770pt;}
.ws274{word-spacing:-10.950719pt;}
.ws1d{word-spacing:-10.931591pt;}
.ws12{word-spacing:-10.917245pt;}
.ws137{word-spacing:-10.876503pt;}
.ws9a{word-spacing:-10.865876pt;}
.ws152{word-spacing:-10.831170pt;}
.ws52{word-spacing:-10.818055pt;}
.ws29d{word-spacing:-10.759440pt;}
.ws13{word-spacing:-10.725966pt;}
.wsb1{word-spacing:-10.658654pt;}
.ws84{word-spacing:-10.653340pt;}
.ws2a2{word-spacing:-10.649455pt;}
.ws206{word-spacing:-10.610833pt;}
.ws1fa{word-spacing:-10.584266pt;}
.ws1e3{word-spacing:-10.563013pt;}
.ws96{word-spacing:-10.541759pt;}
.ws1f7{word-spacing:-10.536446pt;}
.ws203{word-spacing:-10.509879pt;}
.wse6{word-spacing:-10.440805pt;}
.ws76{word-spacing:-10.424865pt;}
.ws1b4{word-spacing:-10.392984pt;}
.ws1bd{word-spacing:-10.339850pt;}
.ws173{word-spacing:-10.329224pt;}
.wse3{word-spacing:-10.281403pt;}
.ws1f{word-spacing:-10.204731pt;}
.ws247{word-spacing:-10.199949pt;}
.ws4e{word-spacing:-10.196389pt;}
.ws1d0{word-spacing:-10.089964pt;}
.ws1d5{word-spacing:-10.046926pt;}
.ws126{word-spacing:-9.978540pt;}
.ws167{word-spacing:-9.962600pt;}
.ws100{word-spacing:-9.936033pt;}
.ws13e{word-spacing:-9.831737pt;}
.ws7c{word-spacing:-9.824452pt;}
.wsda{word-spacing:-9.797885pt;}
.ws1a7{word-spacing:-9.781945pt;}
.ws83{word-spacing:-9.750065pt;}
.ws250{word-spacing:-9.721752pt;}
.wse0{word-spacing:-9.718184pt;}
.ws297{word-spacing:-9.707406pt;}
.ws150{word-spacing:-9.673932pt;}
.ws174{word-spacing:-9.665050pt;}
.ws2a1{word-spacing:-9.640458pt;}
.ws273{word-spacing:-9.635676pt;}
.ws3f{word-spacing:-9.595680pt;}
.ws282{word-spacing:-9.592639pt;}
.ws234{word-spacing:-9.587857pt;}
.wsc9{word-spacing:-9.585350pt;}
.wsaf{word-spacing:-9.526902pt;}
.ws33{word-spacing:-9.452515pt;}
.ws94{word-spacing:-9.420635pt;}
.ws279{word-spacing:-9.415705pt;}
.wsb4{word-spacing:-9.372814pt;}
.ws259{word-spacing:-9.334412pt;}
.ws151{word-spacing:-9.320066pt;}
.ws263{word-spacing:-9.291374pt;}
.ws24a{word-spacing:-9.114441pt;}
.ws275{word-spacing:-9.080967pt;}
.ws191{word-spacing:-9.006190pt;}
.ws289{word-spacing:-8.947072pt;}
.ws192{word-spacing:-8.926490pt;}
.wsc8{word-spacing:-8.921176pt;}
.wsd7{word-spacing:-8.915863pt;}
.ws18a{word-spacing:-8.910549pt;}
.ws291{word-spacing:-8.894470pt;}
.wsc6{word-spacing:-8.846789pt;}
.wsd6{word-spacing:-8.820222pt;}
.ws24e{word-spacing:-8.808395pt;}
.ws1a4{word-spacing:-8.804282pt;}
.ws1f3{word-spacing:-8.751148pt;}
.ws1c5{word-spacing:-8.698014pt;}
.ws46{word-spacing:-8.692701pt;}
.ws3e{word-spacing:-8.634253pt;}
.ws19b{word-spacing:-8.628940pt;}
.ws212{word-spacing:-8.575806pt;}
.ws64{word-spacing:-8.559866pt;}
.ws25e{word-spacing:-8.545386pt;}
.ws1e5{word-spacing:-8.538612pt;}
.ws166{word-spacing:-8.506732pt;}
.ws34{word-spacing:-8.490792pt;}
.ws9d{word-spacing:-8.421718pt;}
.ws19c{word-spacing:-8.379211pt;}
.wsbc{word-spacing:-8.373897pt;}
.ws168{word-spacing:-8.368584pt;}
.ws128{word-spacing:-8.326077pt;}
.ws1d3{word-spacing:-8.320000pt;}
.ws16{word-spacing:-8.268032pt;}
.ws47{word-spacing:-8.225123pt;}
.ws2b5{word-spacing:-8.224994pt;}
.ws20{word-spacing:-8.210648pt;}
.ws1e4{word-spacing:-8.209182pt;}
.ws17{word-spacing:-8.172392pt;}
.wsb2{word-spacing:-8.150735pt;}
.wsea{word-spacing:-8.145422pt;}
.ws287{word-spacing:-8.091099pt;}
.ws213{word-spacing:-8.044467pt;}
.ws1ca{word-spacing:-8.001960pt;}
.wsf8{word-spacing:-7.996647pt;}
.wse5{word-spacing:-7.991334pt;}
.ws2a3{word-spacing:-7.981113pt;}
.ws235{word-spacing:-7.976332pt;}
.ws229{word-spacing:-7.938200pt;}
.ws66{word-spacing:-7.922260pt;}
.ws21a{word-spacing:-7.916946pt;}
.wsab{word-spacing:-7.895693pt;}
.ws80{word-spacing:-7.890379pt;}
.ws1ff{word-spacing:-7.874439pt;}
.ws196{word-spacing:-7.858499pt;}
.wsb7{word-spacing:-7.853185pt;}
.ws186{word-spacing:-7.805365pt;}
.wsf5{word-spacing:-7.773485pt;}
.ws90{word-spacing:-7.768171pt;}
.ws1c4{word-spacing:-7.757545pt;}
.wsdf{word-spacing:-7.730978pt;}
.ws3c{word-spacing:-7.704411pt;}
.wsd1{word-spacing:-7.688471pt;}
.ws1c3{word-spacing:-7.672530pt;}
.ws281{word-spacing:-7.646375pt;}
.wsfc{word-spacing:-7.640650pt;}
.ws1c7{word-spacing:-7.635337pt;}
.ws222{word-spacing:-7.571576pt;}
.ws35{word-spacing:-7.539696pt;}
.ws2b9{word-spacing:-7.507698pt;}
.ws2b4{word-spacing:-7.502916pt;}
.ws55{word-spacing:-7.502502pt;}
.wsac{word-spacing:-7.438741pt;}
.ws22f{word-spacing:-7.433428pt;}
.ws85{word-spacing:-7.428115pt;}
.ws7e{word-spacing:-7.401548pt;}
.ws13f{word-spacing:-7.239908pt;}
.ws143{word-spacing:-7.235126pt;}
.ws1ec{word-spacing:-7.226206pt;}
.ws147{word-spacing:-7.225562pt;}
.ws149{word-spacing:-7.220780pt;}
.ws254{word-spacing:-7.215998pt;}
.ws200{word-spacing:-7.215579pt;}
.ws245{word-spacing:-7.211216pt;}
.ws286{word-spacing:-7.196870pt;}
.ws292{word-spacing:-7.187306pt;}
.ws153{word-spacing:-7.177742pt;}
.ws26d{word-spacing:-7.172960pt;}
.ws29b{word-spacing:-7.168178pt;}
.ws1dc{word-spacing:-7.149050pt;}
.ws184{word-spacing:-7.141192pt;}
.wsff{word-spacing:-7.135878pt;}
.ws1d6{word-spacing:-7.129922pt;}
.ws23d{word-spacing:-7.115576pt;}
.ws1ba{word-spacing:-7.082744pt;}
.ws243{word-spacing:-7.077321pt;}
.ws101{word-spacing:-7.072118pt;}
.ws1f4{word-spacing:-7.045551pt;}
.ws208{word-spacing:-7.039065pt;}
.ws1dd{word-spacing:-7.010373pt;}
.wsb8{word-spacing:-6.997730pt;}
.ws21e{word-spacing:-6.976477pt;}
.ws142{word-spacing:-6.948207pt;}
.wsd0{word-spacing:-6.928656pt;}
.ws28a{word-spacing:-6.919515pt;}
.ws1e0{word-spacing:-6.912716pt;}
.ws2ae{word-spacing:-6.909951pt;}
.ws25d{word-spacing:-6.900388pt;}
.ws45{word-spacing:-6.859582pt;}
.ws1b2{word-spacing:-6.833015pt;}
.wsb3{word-spacing:-6.827702pt;}
.ws1e6{word-spacing:-6.811762pt;}
.ws140{word-spacing:-6.809530pt;}
.wscf{word-spacing:-6.769255pt;}
.ws214{word-spacing:-6.748001pt;}
.ws92{word-spacing:-6.732061pt;}
.wsc3{word-spacing:-6.694867pt;}
.ws267{word-spacing:-6.694763pt;}
.ws109{word-spacing:-6.657673pt;}
.ws17f{word-spacing:-6.631107pt;}
.ws5d{word-spacing:-6.593913pt;}
.ws21d{word-spacing:-6.577973pt;}
.wsde{word-spacing:-6.546092pt;}
.wsdc{word-spacing:-6.535466pt;}
.ws193{word-spacing:-6.498272pt;}
.ws5c{word-spacing:-6.487645pt;}
.wsdd{word-spacing:-6.482332pt;}
.ws16e{word-spacing:-6.471705pt;}
.ws1b3{word-spacing:-6.423884pt;}
.ws24d{word-spacing:-6.407844pt;}
.ws268{word-spacing:-6.398280pt;}
.ws194{word-spacing:-6.328244pt;}
.ws221{word-spacing:-6.322930pt;}
.ws75{word-spacing:-6.312303pt;}
.ws172{word-spacing:-6.306990pt;}
.ws298{word-spacing:-6.293077pt;}
.ws165{word-spacing:-6.200722pt;}
.ws98{word-spacing:-6.190095pt;}
.ws9b{word-spacing:-6.184782pt;}
.ws1a0{word-spacing:-6.163529pt;}
.ws7d{word-spacing:-6.158215pt;}
.ws1c1{word-spacing:-6.152902pt;}
.ws7f{word-spacing:-6.073201pt;}
.ws14e{word-spacing:-6.053333pt;}
.ws185{word-spacing:-6.025380pt;}
.wsf4{word-spacing:-6.020067pt;}
.ws87{word-spacing:-5.972247pt;}
.ws2a{word-spacing:-5.958339pt;}
.ws1e7{word-spacing:-5.924426pt;}
.wsf2{word-spacing:-5.897859pt;}
.ws236{word-spacing:-5.834007pt;}
.wsf0{word-spacing:-5.791591pt;}
.ws44{word-spacing:-5.733144pt;}
.ws41{word-spacing:-5.658757pt;}
.wsc5{word-spacing:-5.642817pt;}
.wsb9{word-spacing:-5.616250pt;}
.ws255{word-spacing:-5.604473pt;}
.ws204{word-spacing:-5.589683pt;}
.ws19a{word-spacing:-5.568429pt;}
.wsa4{word-spacing:-5.563116pt;}
.ws13a{word-spacing:-5.552489pt;}
.ws246{word-spacing:-5.456232pt;}
.wsf7{word-spacing:-5.382461pt;}
.ws8f{word-spacing:-5.318700pt;}
.ws256{word-spacing:-5.269735pt;}
.ws231{word-spacing:-5.264953pt;}
.ws53{word-spacing:-5.254939pt;}
.ws139{word-spacing:-5.180552pt;}
.ws271{word-spacing:-5.174095pt;}
.ws8d{word-spacing:-5.063657pt;}
.ws7b{word-spacing:-5.047717pt;}
.ws99{word-spacing:-5.010524pt;}
.ws1a2{word-spacing:-4.978643pt;}
.wsfa{word-spacing:-4.952076pt;}
.wsb0{word-spacing:-4.925509pt;}
.ws56{word-spacing:-4.872376pt;}
.ws29f{word-spacing:-4.829793pt;}
.ws8e{word-spacing:-4.824555pt;}
.wsbd{word-spacing:-4.792675pt;}
.ws5b{word-spacing:-4.718287pt;}
.ws2b0{word-spacing:-4.681552pt;}
.ws103{word-spacing:-4.643900pt;}
.ws24{word-spacing:-4.643296pt;}
.ws95{word-spacing:-4.627960pt;}
.ws25{word-spacing:-4.595476pt;}
.ws1f0{word-spacing:-4.558886pt;}
.ws25b{word-spacing:-4.447235pt;}
.ws17a{word-spacing:-4.383544pt;}
.ws219{word-spacing:-4.282590pt;}
.ws111{word-spacing:-4.250709pt;}
.ws223{word-spacing:-4.229456pt;}
.ws190{word-spacing:-4.085994pt;}
.ws18e{word-spacing:-4.080681pt;}
.ws238{word-spacing:-4.035985pt;}
.wsb5{word-spacing:-4.006294pt;}
.ws18f{word-spacing:-3.985040pt;}
.ws2ad{word-spacing:-3.940346pt;}
.ws118{word-spacing:-3.931906pt;}
.wsca{word-spacing:-3.825638pt;}
.ws27d{word-spacing:-3.811233pt;}
.ws299{word-spacing:-3.777759pt;}
.ws61{word-spacing:-3.767191pt;}
.wsbf{word-spacing:-3.751251pt;}
.ws260{word-spacing:-3.696465pt;}
.ws1c{word-spacing:-3.677337pt;}
.ws227{word-spacing:-3.671550pt;}
.ws1ac{word-spacing:-3.528089pt;}
.ws54{word-spacing:-3.506835pt;}
.ws226{word-spacing:-3.490895pt;}
.ws8b{word-spacing:-3.464328pt;}
.ws20d{word-spacing:-3.453701pt;}
.ws131{word-spacing:-3.437761pt;}
.ws1c2{word-spacing:-3.363374pt;}
.wsa8{word-spacing:-3.294300pt;}
.ws13c{word-spacing:-3.278360pt;}
.ws220{word-spacing:-3.246479pt;}
.ws17e{word-spacing:-3.214599pt;}
.ws180{word-spacing:-3.198659pt;}
.wsf9{word-spacing:-3.145525pt;}
.ws1f1{word-spacing:-3.044571pt;}
.ws277{word-spacing:-2.969605pt;}
.ws26{word-spacing:-2.931350pt;}
.ws6a{word-spacing:-2.874542pt;}
.ws6e{word-spacing:-2.847975pt;}
.ws1ed{word-spacing:-2.837348pt;}
.ws27{word-spacing:-2.835710pt;}
.ws6b{word-spacing:-2.794841pt;}
.ws6c{word-spacing:-2.715141pt;}
.ws1ee{word-spacing:-2.704514pt;}
.ws205{word-spacing:-2.651380pt;}
.ws1ef{word-spacing:-2.619500pt;}
.ws183{word-spacing:-2.592933pt;}
.wsfe{word-spacing:-2.561052pt;}
.ws24c{word-spacing:-2.544010pt;}
.ws1f6{word-spacing:-2.534485pt;}
.ws2b7{word-spacing:-2.534446pt;}
.ws27f{word-spacing:-2.434024pt;}
.ws9c{word-spacing:-2.433531pt;}
.ws239{word-spacing:-2.362295pt;}
.ws22{word-spacing:-2.324039pt;}
.ws71{word-spacing:-2.249111pt;}
.ws242{word-spacing:-2.228400pt;}
.ws125{word-spacing:-2.226309pt;}
.ws2a8{word-spacing:-2.214054pt;}
.ws207{word-spacing:-2.109415pt;}
.ws1cc{word-spacing:-2.008429pt;}
.ws251{word-spacing:-1.979737pt;}
.ws1b0{word-spacing:-1.934073pt;}
.ws25a{word-spacing:-1.908007pt;}
.ws23f{word-spacing:-1.888879pt;}
.ws241{word-spacing:-1.798022pt;}
.ws26e{word-spacing:-1.793240pt;}
.ws27a{word-spacing:-1.778894pt;}
.ws2b3{word-spacing:-1.769330pt;}
.ws230{word-spacing:-1.630653pt;}
.ws1ab{word-spacing:-1.408047pt;}
.ws89{word-spacing:-1.354914pt;}
.ws23b{word-spacing:-1.353298pt;}
.ws1f9{word-spacing:-1.296466pt;}
.ws1f2{word-spacing:-1.275213pt;}
.ws171{word-spacing:-1.206139pt;}
.ws2a9{word-spacing:-1.028124pt;}
.ws9e{word-spacing:-0.961723pt;}
.ws18d{word-spacing:-0.951096pt;}
.ws102{word-spacing:-0.834202pt;}
.ws217{word-spacing:-0.754501pt;}
.wscc{word-spacing:-0.611039pt;}
.ws1de{word-spacing:-0.601600pt;}
.ws38{word-spacing:-0.600413pt;}
.wsa9{word-spacing:-0.568532pt;}
.ws188{word-spacing:-0.557906pt;}
.ws290{word-spacing:-0.468633pt;}
.ws5e{word-spacing:-0.223162pt;}
.ws157{word-spacing:-0.191279pt;}
.ws201{word-spacing:-0.143461pt;}
.ws29c{word-spacing:-0.109985pt;}
.ws4b{word-spacing:-0.095641pt;}
.ws51{word-spacing:-0.053134pt;}
.ws145{word-spacing:-0.047820pt;}
.ws1d9{word-spacing:-0.008533pt;}
.ws40{word-spacing:0.000000pt;}
.ws15c{word-spacing:0.002667pt;}
.ws15b{word-spacing:0.005333pt;}
.ws15e{word-spacing:0.008000pt;}
.ws1d2{word-spacing:0.013333pt;}
.ws160{word-spacing:0.016000pt;}
.ws1da{word-spacing:0.021333pt;}
.ws15d{word-spacing:0.061333pt;}
.ws10b{word-spacing:0.170028pt;}
.wsc2{word-spacing:0.180655pt;}
.ws12c{word-spacing:0.270983pt;}
.ws104{word-spacing:0.292236pt;}
.ws105{word-spacing:0.340057pt;}
.ws284{word-spacing:0.353866pt;}
.ws15f{word-spacing:0.373333pt;}
.ws1aa{word-spacing:0.414444pt;}
.ws181{word-spacing:0.430384pt;}
.ws48{word-spacing:0.515399pt;}
.ws237{word-spacing:0.683822pt;}
.ws209{word-spacing:0.729600pt;}
.ws12f{word-spacing:0.882022pt;}
.ws1d8{word-spacing:1.070933pt;}
.ws11e{word-spacing:1.078617pt;}
.ws11c{word-spacing:1.206139pt;}
.ws1a3{word-spacing:1.312407pt;}
.ws114{word-spacing:1.360227pt;}
.ws1db{word-spacing:1.369600pt;}
.wse2{word-spacing:1.461181pt;}
.ws1f8{word-spacing:1.466495pt;}
.ws216{word-spacing:1.493062pt;}
.wsfb{word-spacing:1.535569pt;}
.ws1cf{word-spacing:1.625871pt;}
.ws1fc{word-spacing:1.641836pt;}
.ws11d{word-spacing:1.673717pt;}
.ws42{word-spacing:1.753418pt;}
.ws2b1{word-spacing:1.778894pt;}
.ws1fb{word-spacing:1.859685pt;}
.ws127{word-spacing:1.950013pt;}
.ws1d4{word-spacing:1.960609pt;}
.ws288{word-spacing:2.151888pt;}
.ws14f{word-spacing:2.247527pt;}
.ws60{word-spacing:2.268816pt;}
.ws13d{word-spacing:2.338385pt;}
.ws9f{word-spacing:2.470725pt;}
.ws91{word-spacing:2.491978pt;}
.ws4d{word-spacing:2.608873pt;}
.ws2a4{word-spacing:2.610957pt;}
.ws20b{word-spacing:2.662007pt;}
.ws2e{word-spacing:2.672633pt;}
.ws93{word-spacing:2.725767pt;}
.ws1e1{word-spacing:3.055197pt;}
.ws189{word-spacing:3.203972pt;}
.ws224{word-spacing:3.219912pt;}
.ws280{word-spacing:3.223050pt;}
.ws10f{word-spacing:3.474955pt;}
.wsa7{word-spacing:3.740624pt;}
.ws18b{word-spacing:3.788445pt;}
.ws1bc{word-spacing:3.841579pt;}
.ws110{word-spacing:4.000980pt;}
.ws1eb{word-spacing:4.016920pt;}
.wscb{word-spacing:4.032860pt;}
.wsf1{word-spacing:4.345483pt;}
.ws266{word-spacing:4.351596pt;}
.wsf3{word-spacing:4.370193pt;}
.wsf6{word-spacing:4.596079pt;}
.ws26f{word-spacing:4.715026pt;}
.ws1d7{word-spacing:4.973252pt;}
.ws1e2{word-spacing:5.430281pt;}
.ws270{word-spacing:5.470577pt;}
.ws2a6{word-spacing:5.738368pt;}
.ws2b8{word-spacing:5.853135pt;}
.ws97{word-spacing:5.860665pt;}
.ws27b{word-spacing:5.939211pt;}
.ws130{word-spacing:5.950993pt;}
.ws22d{word-spacing:5.956306pt;}
.wsad{word-spacing:6.020067pt;}
.ws5f{word-spacing:6.625793pt;}
.ws23c{word-spacing:6.914733pt;}
.ws27c{word-spacing:7.024719pt;}
.ws21f{word-spacing:7.050864pt;}
.ws10c{word-spacing:7.295280pt;}
.ws29e{word-spacing:7.608120pt;}
.wsdb{word-spacing:7.784111pt;}
.ws25f{word-spacing:7.875910pt;}
.ws1fe{word-spacing:7.932886pt;}
.ws49{word-spacing:8.065721pt;}
.ws68{word-spacing:8.182615pt;}
.ws21b{word-spacing:8.283570pt;}
.ws2b6{word-spacing:8.291942pt;}
.ws176{word-spacing:8.336704pt;}
.wsa1{word-spacing:8.389838pt;}
.ws178{word-spacing:8.427031pt;}
.ws177{word-spacing:8.453598pt;}
.ws86{word-spacing:8.501419pt;}
.wsed{word-spacing:8.580150pt;}
.wsee{word-spacing:8.604859pt;}
.ws210{word-spacing:8.921176pt;}
.ws2d{word-spacing:8.926490pt;}
.ws1a9{word-spacing:9.452515pt;}
.ws23a{word-spacing:9.755226pt;}
.ws113{word-spacing:10.600206pt;}
.ws169{word-spacing:10.993397pt;}
.wse4{word-spacing:11.078411pt;}
.ws1ea{word-spacing:11.769151pt;}
.ws1f5{word-spacing:12.172969pt;}
.ws67{word-spacing:12.858396pt;}
.ws1b5{word-spacing:14.500232pt;}
.ws1a5{word-spacing:14.649007pt;}
.wsd4{word-spacing:14.909363pt;}
.wsec{word-spacing:14.925303pt;}
.ws108{word-spacing:15.307867pt;}
.ws106{word-spacing:15.446015pt;}
.ws107{word-spacing:15.456642pt;}
.ws2a5{word-spacing:16.832546pt;}
.ws154{word-spacing:19.786667pt;}
.ws20f{word-spacing:22.868816pt;}
.ws215{word-spacing:24.473459pt;}
.ws1ce{word-spacing:34.813333pt;}
.ws22c{word-spacing:40.222337pt;}
.ws22a{word-spacing:72.224865pt;}
.ws146{word-spacing:116.512780pt;}
.ws141{word-spacing:145.324170pt;}
.ws148{word-spacing:178.797983pt;}
.wsef{word-spacing:198.492186pt;}
.ws14b{word-spacing:205.079708pt;}
.wse9{word-spacing:236.923911pt;}
.wse8{word-spacing:241.121487pt;}
.wse7{word-spacing:265.350530pt;}
.ws144{word-spacing:311.163005pt;}
.ws14a{word-spacing:323.859144pt;}
.ws27e{word-spacing:1969.566170pt;}
._1f{margin-left:-400.772816pt;}
._1d{margin-left:-396.219244pt;}
._3c{margin-left:-57.349333pt;}
._2a{margin-left:-55.272000pt;}
._29{margin-left:-54.229333pt;}
._2b{margin-left:-52.896000pt;}
._2e{margin-left:-37.640026pt;}
._34{margin-left:-34.322164pt;}
._2c{margin-left:-30.800000pt;}
._35{margin-left:-27.992528pt;}
._4c{margin-left:-22.456147pt;}
._5{margin-left:-21.241526pt;}
._4a{margin-left:-19.888783pt;}
._2d{margin-left:-12.712528pt;}
._33{margin-left:-7.253333pt;}
._1a{margin-left:-5.823472pt;}
._2{margin-left:-4.385070pt;}
._22{margin-left:-3.384627pt;}
._b{margin-left:-2.419679pt;}
._2f{margin-left:-1.050667pt;}
._23{width:1.583389pt;}
._4{width:2.759199pt;}
._4b{width:3.971930pt;}
._37{width:5.462161pt;}
._21{width:6.668300pt;}
._d{width:7.947640pt;}
._7{width:9.707406pt;}
._38{width:10.606004pt;}
._9{width:11.572375pt;}
._12{width:12.518339pt;}
._6{width:13.499511pt;}
._e{width:14.978437pt;}
._3{width:16.655613pt;}
._c{width:17.549842pt;}
._8{width:18.788373pt;}
._a{width:20.270785pt;}
._17{width:21.372529pt;}
._13{width:22.560640pt;}
._47{width:23.559556pt;}
._f{width:24.627547pt;}
._16{width:25.543397pt;}
._0{width:26.655314pt;}
._10{width:27.937787pt;}
._18{width:28.904823pt;}
._19{width:30.318184pt;}
._49{width:31.808124pt;}
._14{width:33.022698pt;}
._11{width:34.287284pt;}
._4d{width:35.625166pt;}
._1b{width:37.501883pt;}
._15{width:39.425329pt;}
._3a{width:40.727109pt;}
._3b{width:42.028889pt;}
._3e{width:47.553057pt;}
._39{width:49.499510pt;}
._48{width:50.907558pt;}
._3d{width:53.526138pt;}
._3f{width:54.549973pt;}
._1{width:61.851083pt;}
._26{width:92.244266pt;}
._36{width:134.880000pt;}
._30{width:136.746667pt;}
._31{width:142.122667pt;}
._27{width:143.535712pt;}
._46{width:148.697645pt;}
._32{width:150.442667pt;}
._45{width:156.281012pt;}
._44{width:158.739966pt;}
._40{width:163.152633pt;}
._1c{width:164.350577pt;}
._42{width:166.629032pt;}
._41{width:168.327166pt;}
._43{width:173.203966pt;}
._24{width:178.817111pt;}
._25{width:201.512356pt;}
._1e{width:372.362138pt;}
._20{width:377.197319pt;}
._4e{width:1995.771793pt;}
._28{width:2021.169781pt;}
.fsa{font-size:15.546667pt;}
.fs8{font-size:25.653333pt;}
.fs9{font-size:26.666667pt;}
.fs3{font-size:31.876267pt;}
.fs7{font-size:37.193067pt;}
.fsb{font-size:38.309333pt;}
.fs2{font-size:42.501333pt;}
.fs6{font-size:42.506666pt;}
.fsd{font-size:42.507200pt;}
.fsc{font-size:42.666667pt;}
.fs4{font-size:47.819733pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.760533pt;}
.fs0{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:2.397067pt;}
.y219{bottom:2.400000pt;}
.y1ed{bottom:2.401333pt;}
.y145{bottom:2.420133pt;}
.y2db{bottom:3.801333pt;}
.y2f4{bottom:3.805467pt;}
.y383{bottom:3.809733pt;}
.y36b{bottom:3.815067pt;}
.y353{bottom:3.816400pt;}
.y2c0{bottom:3.825200pt;}
.y291{bottom:3.842933pt;}
.y2a9{bottom:3.844267pt;}
.y30c{bottom:3.866133pt;}
.y25e{bottom:3.881067pt;}
.y245{bottom:3.891067pt;}
.y276{bottom:3.895467pt;}
.y153{bottom:9.643733pt;}
.y218{bottom:9.646667pt;}
.y1ec{bottom:9.648000pt;}
.y143{bottom:9.846800pt;}
.y382{bottom:11.159067pt;}
.y290{bottom:12.568267pt;}
.y2a8{bottom:12.569600pt;}
.y2bf{bottom:12.998533pt;}
.y36a{bottom:12.999067pt;}
.y25d{bottom:13.043733pt;}
.y244{bottom:13.053733pt;}
.y2da{bottom:13.337333pt;}
.y2f3{bottom:13.597467pt;}
.y30b{bottom:13.839467pt;}
.y275{bottom:14.466133pt;}
.y20a{bottom:15.188000pt;}
.y234{bottom:15.400000pt;}
.y142{bottom:16.073467pt;}
.y16d{bottom:19.530400pt;}
.y172{bottom:20.790400pt;}
.y1eb{bottom:21.226667pt;}
.y217{bottom:21.345333pt;}
.y14a{bottom:22.106800pt;}
.y38c{bottom:23.287067pt;}
.y2e4{bottom:23.833333pt;}
.y315{bottom:23.994133pt;}
.y374{bottom:24.028400pt;}
.y2fd{bottom:24.082800pt;}
.y35c{bottom:24.083067pt;}
.y141{bottom:24.100133pt;}
.y2b2{bottom:24.398933pt;}
.y29a{bottom:24.728267pt;}
.y267{bottom:24.915733pt;}
.y24e{bottom:24.925733pt;}
.y2c9{bottom:25.179867pt;}
.y27f{bottom:25.666133pt;}
.y232{bottom:27.733333pt;}
.y208{bottom:27.794667pt;}
.y381{bottom:29.644400pt;}
.y369{bottom:31.367067pt;}
.y352{bottom:31.432400pt;}
.y2d9{bottom:31.705333pt;}
.y16c{bottom:31.777067pt;}
.y2f2{bottom:31.965467pt;}
.y28f{bottom:31.992267pt;}
.y2a7{bottom:31.993600pt;}
.y140{bottom:32.126800pt;}
.y30a{bottom:32.164800pt;}
.y2be{bottom:32.305200pt;}
.y25c{bottom:32.446400pt;}
.y243{bottom:32.456400pt;}
.y274{bottom:33.868800pt;}
.y233{bottom:40.066667pt;}
.y13f{bottom:40.153467pt;}
.y209{bottom:40.408000pt;}
.y38b{bottom:42.700400pt;}
.y2e3{bottom:43.289333pt;}
.y314{bottom:43.354133pt;}
.y373{bottom:43.356400pt;}
.y35b{bottom:43.411067pt;}
.y2fc{bottom:43.538800pt;}
.y299{bottom:45.058933pt;}
.y2b1{bottom:45.060267pt;}
.y266{bottom:45.203733pt;}
.y24d{bottom:45.213733pt;}
.y2c8{bottom:45.350533pt;}
.y27e{bottom:45.996800pt;}
.y380{bottom:48.129733pt;}
.y16b{bottom:49.550400pt;}
.y368{bottom:49.745733pt;}
.y351{bottom:49.811067pt;}
.y2d8{bottom:50.073333pt;}
.y2f1{bottom:50.333467pt;}
.y231{bottom:50.340000pt;}
.y309{bottom:50.490133pt;}
.y207{bottom:50.514667pt;}
.y13e{bottom:50.846800pt;}
.y28e{bottom:51.416267pt;}
.y2a6{bottom:51.417600pt;}
.y2bd{bottom:51.611867pt;}
.y242{bottom:51.859067pt;}
.y25b{bottom:51.859733pt;}
.y273{bottom:53.271467pt;}
.y230{bottom:55.200000pt;}
.y206{bottom:55.561333pt;}
.y16a{bottom:57.770400pt;}
.y13d{bottom:58.746800pt;}
.y22f{bottom:60.053333pt;}
.y205{bottom:60.608000pt;}
.y38a{bottom:62.113733pt;}
.y372{bottom:62.684400pt;}
.y313{bottom:62.714133pt;}
.y35a{bottom:62.739067pt;}
.y2e2{bottom:62.745333pt;}
.y2fb{bottom:62.994800pt;}
.y22c{bottom:64.906667pt;}
.y298{bottom:65.389600pt;}
.y2b0{bottom:65.390933pt;}
.y265{bottom:65.491733pt;}
.y24c{bottom:65.501733pt;}
.y2c7{bottom:65.521200pt;}
.y202{bottom:65.648000pt;}
.y169{bottom:65.990400pt;}
.y27d{bottom:66.327467pt;}
.y37f{bottom:66.615067pt;}
.y13c{bottom:66.646800pt;}
.y367{bottom:68.124400pt;}
.y350{bottom:68.189733pt;}
.y173{bottom:68.290400pt;}
.y2d7{bottom:68.441333pt;}
.y214{bottom:68.497333pt;}
.y14b{bottom:68.633467pt;}
.y2f0{bottom:68.690800pt;}
.y308{bottom:68.815467pt;}
.y1e8{bottom:69.458667pt;}
.y22d{bottom:69.760000pt;}
.y203{bottom:70.694667pt;}
.y28d{bottom:70.840267pt;}
.y2a5{bottom:70.841600pt;}
.y2bc{bottom:70.918533pt;}
.y241{bottom:71.261733pt;}
.y25a{bottom:71.262400pt;}
.y272{bottom:72.674133pt;}
.y3f5{bottom:73.747555pt;}
.y3b7{bottom:73.783420pt;}
.ye2{bottom:73.802521pt;}
.y1a6{bottom:73.815781pt;}
.y78{bottom:73.831970pt;}
.yb1{bottom:73.906498pt;}
.y119{bottom:74.094744pt;}
.y1e1{bottom:74.095334pt;}
.y168{bottom:74.210400pt;}
.y2f{bottom:74.502411pt;}
.y13b{bottom:74.546800pt;}
.y39{bottom:74.555545pt;}
.y22e{bottom:74.620000pt;}
.y204{bottom:75.741333pt;}
.y216{bottom:77.578667pt;}
.y330{bottom:77.903208pt;}
.y174{bottom:78.042667pt;}
.y347{bottom:78.115743pt;}
.y14c{bottom:78.128000pt;}
.y1ea{bottom:78.685333pt;}
.y389{bottom:81.527067pt;}
.y371{bottom:82.012400pt;}
.y359{bottom:82.067067pt;}
.y312{bottom:82.074133pt;}
.y2e1{bottom:82.201333pt;}
.y2fa{bottom:82.450800pt;}
.y22b{bottom:85.006667pt;}
.y37e{bottom:85.100400pt;}
.y139{bottom:85.620133pt;}
.y167{bottom:85.683733pt;}
.y2c6{bottom:85.691867pt;}
.y297{bottom:85.720267pt;}
.y2af{bottom:85.721600pt;}
.y264{bottom:85.779733pt;}
.y24b{bottom:85.789733pt;}
.y366{bottom:86.503067pt;}
.y1ff{bottom:86.508000pt;}
.y34f{bottom:86.568400pt;}
.y27c{bottom:86.658133pt;}
.y2d6{bottom:86.809333pt;}
.y2ef{bottom:87.058800pt;}
.y307{bottom:87.140800pt;}
.y3b6{bottom:87.687007pt;}
.y3f4{bottom:88.487988pt;}
.ye1{bottom:89.065224pt;}
.y1a5{bottom:89.078484pt;}
.y77{bottom:89.094674pt;}
.yb0{bottom:89.169201pt;}
.y118{bottom:89.357447pt;}
.y1e0{bottom:89.358037pt;}
.y2e{bottom:89.765114pt;}
.y38{bottom:89.818248pt;}
.y2bb{bottom:90.225200pt;}
.y28c{bottom:90.264267pt;}
.y2a4{bottom:90.265600pt;}
.y138{bottom:90.453467pt;}
.y149{bottom:90.480133pt;}
.y240{bottom:90.664400pt;}
.y259{bottom:90.665067pt;}
.y375{bottom:91.306267pt;}
.y35d{bottom:91.360933pt;}
.y316{bottom:91.859067pt;}
.y271{bottom:92.076800pt;}
.y2e5{bottom:92.130533pt;}
.y2fe{bottom:92.380133pt;}
.y200{bottom:92.788000pt;}
.y22a{bottom:93.060000pt;}
.y32f{bottom:93.165911pt;}
.y346{bottom:93.378446pt;}
.y166{bottom:93.463733pt;}
.y38d{bottom:93.927733pt;}
.y137{bottom:95.286800pt;}
.y29b{bottom:96.096000pt;}
.y24f{bottom:96.445067pt;}
.y268{bottom:96.445733pt;}
.y2ca{bottom:96.539067pt;}
.y280{bottom:97.858000pt;}
.y201{bottom:99.068000pt;}
.y136{bottom:100.120133pt;}
.y388{bottom:100.940400pt;}
.y229{bottom:101.113333pt;}
.y165{bottom:101.243733pt;}
.y370{bottom:101.340400pt;}
.y358{bottom:101.395067pt;}
.y311{bottom:101.434133pt;}
.y2e0{bottom:101.657333pt;}
.y3b5{bottom:101.674279pt;}
.y2f9{bottom:101.906800pt;}
.y171{bottom:102.930400pt;}
.y3f3{bottom:103.156691pt;}
.y213{bottom:103.538667pt;}
.y37d{bottom:103.585733pt;}
.ye0{bottom:104.327927pt;}
.y1a4{bottom:104.341187pt;}
.y76{bottom:104.357377pt;}
.yaf{bottom:104.431904pt;}
.y117{bottom:104.620150pt;}
.y1df{bottom:104.620740pt;}
.y365{bottom:104.881733pt;}
.y34e{bottom:104.947067pt;}
.y13a{bottom:104.966800pt;}
.y2d{bottom:105.027817pt;}
.y37{bottom:105.080951pt;}
.y2d5{bottom:105.177333pt;}
.y1fe{bottom:105.341333pt;}
.y1e7{bottom:105.353333pt;}
.y2ee{bottom:105.426800pt;}
.y306{bottom:105.466133pt;}
.y2c5{bottom:105.862533pt;}
.y296{bottom:106.050933pt;}
.y2ae{bottom:106.052267pt;}
.y263{bottom:106.067733pt;}
.y24a{bottom:106.077733pt;}
.y27b{bottom:106.988800pt;}
.y32e{bottom:108.428614pt;}
.y345{bottom:108.641150pt;}
.y164{bottom:109.023733pt;}
.y228{bottom:109.166667pt;}
.y2ba{bottom:109.531867pt;}
.y28b{bottom:109.688267pt;}
.y2a3{bottom:109.689600pt;}
.y135{bottom:109.793467pt;}
.y23f{bottom:110.067067pt;}
.y258{bottom:110.067733pt;}
.y270{bottom:111.479467pt;}
.y1fd{bottom:111.621333pt;}
.y3b4{bottom:115.577867pt;}
.y3f2{bottom:117.897124pt;}
.y134{bottom:118.673467pt;}
.y163{bottom:119.243733pt;}
.ydf{bottom:119.590630pt;}
.y1a3{bottom:119.603890pt;}
.y75{bottom:119.620080pt;}
.yae{bottom:119.694607pt;}
.y227{bottom:119.746667pt;}
.y116{bottom:119.882853pt;}
.y1de{bottom:119.883443pt;}
.y2c{bottom:120.290521pt;}
.y36{bottom:120.343654pt;}
.y387{bottom:120.353733pt;}
.y36f{bottom:120.668400pt;}
.y357{bottom:120.723067pt;}
.y310{bottom:120.794133pt;}
.y2df{bottom:121.113333pt;}
.y2f8{bottom:121.362800pt;}
.y1fc{bottom:121.734667pt;}
.y37c{bottom:122.071067pt;}
.y133{bottom:123.180133pt;}
.y364{bottom:123.260400pt;}
.y34d{bottom:123.325733pt;}
.y2d4{bottom:123.545333pt;}
.y32d{bottom:123.691317pt;}
.y305{bottom:123.791467pt;}
.y2ed{bottom:123.794800pt;}
.y344{bottom:123.903853pt;}
.y215{bottom:124.689333pt;}
.y162{bottom:125.190400pt;}
.y2c4{bottom:126.033200pt;}
.y262{bottom:126.355733pt;}
.y249{bottom:126.365733pt;}
.y295{bottom:126.381600pt;}
.y2ad{bottom:126.382933pt;}
.y27a{bottom:127.319467pt;}
.y226{bottom:127.633333pt;}
.y132{bottom:127.686800pt;}
.y1fb{bottom:128.041333pt;}
.y2b9{bottom:128.838533pt;}
.y28a{bottom:129.112267pt;}
.y2a2{bottom:129.113600pt;}
.y23e{bottom:129.469733pt;}
.y257{bottom:129.470400pt;}
.y26f{bottom:130.882133pt;}
.y161{bottom:131.137067pt;}
.y3f1{bottom:131.884396pt;}
.y131{bottom:132.193467pt;}
.y1fa{bottom:134.348000pt;}
.yde{bottom:134.856783pt;}
.y1a2{bottom:134.866594pt;}
.y74{bottom:134.882783pt;}
.yad{bottom:134.957311pt;}
.y115{bottom:135.145557pt;}
.y1dd{bottom:135.146146pt;}
.y225{bottom:135.520000pt;}
.y2b{bottom:135.553224pt;}
.y35{bottom:135.606358pt;}
.y130{bottom:136.700133pt;}
.y160{bottom:137.083733pt;}
.y148{bottom:137.313467pt;}
.y170{bottom:138.023733pt;}
.y32c{bottom:138.954021pt;}
.y343{bottom:139.166556pt;}
.y386{bottom:139.767067pt;}
.y36e{bottom:139.996400pt;}
.y356{bottom:140.051067pt;}
.y30f{bottom:140.154133pt;}
.y1e9{bottom:140.497333pt;}
.y37b{bottom:140.556400pt;}
.y2de{bottom:140.569333pt;}
.y1f8{bottom:140.654667pt;}
.y2f7{bottom:140.818800pt;}
.y3b3{bottom:140.825333pt;}
.y12f{bottom:141.206800pt;}
.y363{bottom:141.639067pt;}
.y34c{bottom:141.704400pt;}
.y2d3{bottom:141.913333pt;}
.y304{bottom:142.116800pt;}
.y2ec{bottom:142.162800pt;}
.y15f{bottom:143.030400pt;}
.y224{bottom:143.406667pt;}
.y12e{bottom:145.713467pt;}
.y2c3{bottom:146.203867pt;}
.y31a{bottom:146.575079pt;}
.y3f0{bottom:146.624829pt;}
.y261{bottom:146.643733pt;}
.y248{bottom:146.653733pt;}
.y294{bottom:146.712267pt;}
.y2ac{bottom:146.713600pt;}
.y1f9{bottom:146.961333pt;}
.y279{bottom:147.650133pt;}
.y2b8{bottom:148.145200pt;}
.y289{bottom:148.536267pt;}
.y2a1{bottom:148.537600pt;}
.y23d{bottom:148.872400pt;}
.y256{bottom:148.873067pt;}
.y1a1{bottom:150.129297pt;}
.y73{bottom:150.145486pt;}
.yac{bottom:150.220014pt;}
.y26e{bottom:150.284800pt;}
.y114{bottom:150.408260pt;}
.y1dc{bottom:150.408850pt;}
.y2b3{bottom:150.652000pt;}
.y2a{bottom:150.815927pt;}
.y34{bottom:150.869061pt;}
.y15e{bottom:154.137067pt;}
.y32b{bottom:154.216724pt;}
.y342{bottom:154.429259pt;}
.y20e{bottom:155.035202pt;}
.y12d{bottom:155.113467pt;}
.y223{bottom:156.740000pt;}
.y1f6{bottom:157.628000pt;}
.y37a{bottom:159.041733pt;}
.y385{bottom:159.180400pt;}
.y36d{bottom:159.324400pt;}
.y355{bottom:159.379067pt;}
.y30e{bottom:159.514133pt;}
.y362{bottom:160.017733pt;}
.y2dd{bottom:160.025333pt;}
.y34b{bottom:160.072400pt;}
.y2f6{bottom:160.274800pt;}
.y2d2{bottom:160.281333pt;}
.y303{bottom:160.442133pt;}
.y319{bottom:160.478667pt;}
.y2eb{bottom:160.530800pt;}
.y3ef{bottom:161.365261pt;}
.y178{bottom:161.468220pt;}
.ydd{bottom:162.818480pt;}
.ydc{bottom:163.111354pt;}
.y72{bottom:165.408190pt;}
.yab{bottom:165.482717pt;}
.y113{bottom:165.670963pt;}
.y1db{bottom:165.671553pt;}
.y1a0{bottom:165.674413pt;}
.y29{bottom:166.078630pt;}
.y33{bottom:166.131764pt;}
.y2c2{bottom:166.374533pt;}
.y260{bottom:166.931733pt;}
.y247{bottom:166.941733pt;}
.y293{bottom:167.042933pt;}
.y2ab{bottom:167.044267pt;}
.y29d{bottom:167.281333pt;}
.y2b7{bottom:167.451867pt;}
.y288{bottom:167.960267pt;}
.y2a0{bottom:167.961600pt;}
.y278{bottom:167.980800pt;}
.y23c{bottom:168.275067pt;}
.y255{bottom:168.275733pt;}
.y15d{bottom:168.803733pt;}
.y20d{bottom:169.022474pt;}
.y32a{bottom:169.479427pt;}
.y26d{bottom:169.687467pt;}
.y341{bottom:169.691962pt;}
.y1f7{bottom:169.714667pt;}
.y222{bottom:170.320000pt;}
.y12c{bottom:171.853467pt;}
.y3b2{bottom:173.818747pt;}
.y177{bottom:175.371807pt;}
.y3ee{bottom:176.033965pt;}
.y379{bottom:177.527067pt;}
.y361{bottom:178.396400pt;}
.y34a{bottom:178.451067pt;}
.y384{bottom:178.593733pt;}
.y2d1{bottom:178.649333pt;}
.y36c{bottom:178.652400pt;}
.y354{bottom:178.707067pt;}
.y302{bottom:178.767467pt;}
.y30d{bottom:178.874133pt;}
.y2ea{bottom:178.898800pt;}
.y2dc{bottom:179.481333pt;}
.y2f5{bottom:179.730800pt;}
.y71{bottom:180.670893pt;}
.yaa{bottom:180.745420pt;}
.y112{bottom:180.933666pt;}
.y1da{bottom:180.934256pt;}
.y19f{bottom:180.937116pt;}
.y28{bottom:181.341333pt;}
.y32{bottom:181.394467pt;}
.y1f5{bottom:181.808000pt;}
.y20c{bottom:183.009746pt;}
.y285{bottom:183.232000pt;}
.y15c{bottom:183.470400pt;}
.y221{bottom:183.906667pt;}
.y329{bottom:184.742130pt;}
.y340{bottom:184.954666pt;}
.y318{bottom:186.406667pt;}
.y2c1{bottom:186.545200pt;}
.y2b6{bottom:186.758533pt;}
.y25f{bottom:187.219733pt;}
.y246{bottom:187.229733pt;}
.y292{bottom:187.373600pt;}
.y2aa{bottom:187.374933pt;}
.ydb{bottom:187.380248pt;}
.y287{bottom:187.384267pt;}
.y29f{bottom:187.385600pt;}
.y23b{bottom:187.677733pt;}
.y254{bottom:187.678400pt;}
.y277{bottom:188.311467pt;}
.y12b{bottom:188.593467pt;}
.y3b1{bottom:189.081450pt;}
.y26c{bottom:189.090133pt;}
.y176{bottom:189.359079pt;}
.y3ed{bottom:190.021237pt;}
.y16f{bottom:190.970400pt;}
.y1f4{bottom:193.894667pt;}
.y1e6{bottom:195.305333pt;}
.ya9{bottom:196.008123pt;}
.y378{bottom:196.012400pt;}
.y70{bottom:196.013297pt;}
.y111{bottom:196.196369pt;}
.y19e{bottom:196.199819pt;}
.y1d9{bottom:196.276660pt;}
.y31{bottom:196.657170pt;}
.y360{bottom:196.775067pt;}
.y349{bottom:196.829733pt;}
.y20b{bottom:196.913333pt;}
.y2d0{bottom:197.017333pt;}
.y301{bottom:197.092800pt;}
.y2e9{bottom:197.266800pt;}
.y220{bottom:197.486667pt;}
.y15b{bottom:198.137067pt;}
.y328{bottom:200.084534pt;}
.y33f{bottom:200.217369pt;}
.y300{bottom:202.356000pt;}
.yda{bottom:202.642951pt;}
.y175{bottom:203.262667pt;}
.y3b0{bottom:204.344153pt;}
.y3ec{bottom:204.761669pt;}
.y12a{bottom:205.333467pt;}
.y212{bottom:205.855067pt;}
.y1f3{bottom:205.981333pt;}
.y2b5{bottom:206.065200pt;}
.y38e{bottom:206.470667pt;}
.y147{bottom:206.626800pt;}
.y286{bottom:206.808267pt;}
.y29e{bottom:206.809600pt;}
.y23a{bottom:207.080400pt;}
.y253{bottom:207.081067pt;}
.y376{bottom:207.124000pt;}
.y2e6{bottom:207.126667pt;}
.y35e{bottom:207.178667pt;}
.y317{bottom:207.349333pt;}
.y2ff{bottom:207.354667pt;}
.y26b{bottom:208.492800pt;}
.y27{bottom:209.234667pt;}
.y21f{bottom:211.066667pt;}
.ya8{bottom:211.270827pt;}
.y6f{bottom:211.282630pt;}
.y110{bottom:211.459073pt;}
.y19d{bottom:211.462522pt;}
.y1d8{bottom:211.539363pt;}
.y30{bottom:211.919874pt;}
.y15a{bottom:212.803733pt;}
.y269{bottom:213.765333pt;}
.y1e3{bottom:214.224000pt;}
.y250{bottom:215.237333pt;}
.y327{bottom:215.347237pt;}
.y33e{bottom:215.559773pt;}
.y29c{bottom:215.985333pt;}
.y2cb{bottom:216.390667pt;}
.y281{bottom:217.468000pt;}
.y1f2{bottom:218.068000pt;}
.y3eb{bottom:219.502102pt;}
.y3af{bottom:219.606856pt;}
.y151{bottom:220.573333pt;}
.y159{bottom:223.337067pt;}
.y21e{bottom:223.626667pt;}
.y129{bottom:223.973467pt;}
.y6e{bottom:226.545333pt;}
.ya7{bottom:226.613231pt;}
.y10f{bottom:226.801477pt;}
.y1d7{bottom:226.802066pt;}
.y19c{bottom:226.804926pt;}
.y1f1{bottom:228.514667pt;}
.yd9{bottom:230.471814pt;}
.y326{bottom:230.609941pt;}
.yd8{bottom:230.777333pt;}
.y3ea{bottom:233.405690pt;}
.y33d{bottom:234.754382pt;}
.y3ae{bottom:234.949260pt;}
.y42a{bottom:235.207303pt;}
.yd6{bottom:241.633815pt;}
.y6d{bottom:241.839854pt;}
.ya6{bottom:241.875934pt;}
.y10e{bottom:242.064180pt;}
.y1d6{bottom:242.064770pt;}
.y19b{bottom:242.067629pt;}
.y325{bottom:245.872644pt;}
.y158{bottom:246.937067pt;}
.y21d{bottom:247.266667pt;}
.y3e9{bottom:248.146122pt;}
.y429{bottom:249.194575pt;}
.y33c{bottom:250.017085pt;}
.y3ad{bottom:250.211963pt;}
.yd7{bottom:252.166480pt;}
.y128{bottom:253.526800pt;}
.y6c{bottom:257.102557pt;}
.ya5{bottom:257.138637pt;}
.y10d{bottom:257.326883pt;}
.y1d5{bottom:257.327473pt;}
.y19a{bottom:257.330333pt;}
.y1f0{bottom:258.794667pt;}
.y324{bottom:261.135347pt;}
.y3e8{bottom:262.886555pt;}
.y428{bottom:263.098162pt;}
.y33b{bottom:265.359489pt;}
.y3ac{bottom:265.474667pt;}
.y157{bottom:270.530400pt;}
.y21c{bottom:270.906667pt;}
.y6b{bottom:272.365260pt;}
.ya4{bottom:272.401340pt;}
.y10c{bottom:272.589586pt;}
.y1d4{bottom:272.590176pt;}
.y199{bottom:272.593036pt;}
.y427{bottom:277.085434pt;}
.y3e7{bottom:277.626988pt;}
.yd5{bottom:279.053340pt;}
.y26{bottom:279.991302pt;}
.y33a{bottom:280.622193pt;}
.y127{bottom:283.080133pt;}
.y323{bottom:284.036043pt;}
.y6a{bottom:287.627963pt;}
.ya3{bottom:287.664043pt;}
.y10b{bottom:287.852289pt;}
.y1d3{bottom:287.852879pt;}
.y198{bottom:287.855739pt;}
.y1ef{bottom:289.074667pt;}
.y426{bottom:290.989022pt;}
.y3ab{bottom:292.006667pt;}
.y3e6{bottom:292.295691pt;}
.y25{bottom:293.978574pt;}
.y156{bottom:294.130400pt;}
.y16e{bottom:294.137067pt;}
.yd4{bottom:294.316043pt;}
.y211{bottom:294.359733pt;}
.y21b{bottom:294.546667pt;}
.y339{bottom:295.884896pt;}
.y322{bottom:299.298747pt;}
.y1e5{bottom:300.721067pt;}
.y69{bottom:302.897297pt;}
.ya2{bottom:302.926747pt;}
.y10a{bottom:303.114993pt;}
.y1d2{bottom:303.115582pt;}
.y197{bottom:303.118442pt;}
.y425{bottom:304.976294pt;}
.y3e5{bottom:306.282963pt;}
.y24{bottom:307.882161pt;}
.yd3{bottom:309.578747pt;}
.y146{bottom:310.760133pt;}
.y338{bottom:311.147599pt;}
.y126{bottom:312.633467pt;}
.y321{bottom:314.561450pt;}
.y155{bottom:317.723733pt;}
.y68{bottom:318.166630pt;}
.y21a{bottom:318.186667pt;}
.ya1{bottom:318.189450pt;}
.y109{bottom:318.377696pt;}
.y1d1{bottom:318.378286pt;}
.y196{bottom:318.381145pt;}
.y424{bottom:318.879881pt;}
.y1ee{bottom:319.354667pt;}
.y3e4{bottom:321.023396pt;}
.y23{bottom:321.869433pt;}
.y144{bottom:322.673467pt;}
.y152{bottom:323.930400pt;}
.y210{bottom:324.606400pt;}
.yd2{bottom:324.841450pt;}
.y3aa{bottom:324.964000pt;}
.y337{bottom:326.410302pt;}
.y1e4{bottom:329.534400pt;}
.y320{bottom:329.824153pt;}
.y423{bottom:332.867153pt;}
.ya0{bottom:333.452153pt;}
.y1d0{bottom:333.640989pt;}
.y195{bottom:333.643849pt;}
.y67{bottom:333.683699pt;}
.y3e3{bottom:335.763829pt;}
.y22{bottom:335.856705pt;}
.yd1{bottom:340.183854pt;}
.y336{bottom:341.673005pt;}
.y31f{bottom:345.086856pt;}
.y422{bottom:346.770741pt;}
.y9f{bottom:348.714856pt;}
.y1cf{bottom:348.903692pt;}
.y66{bottom:348.946402pt;}
.y21{bottom:349.760293pt;}
.y3e2{bottom:350.432532pt;}
.y3a9{bottom:351.572000pt;}
.yd0{bottom:355.446557pt;}
.y335{bottom:356.935709pt;}
.y108{bottom:357.683474pt;}
.y31e{bottom:360.349559pt;}
.y421{bottom:360.758013pt;}
.y20{bottom:363.747565pt;}
.y9e{bottom:363.977559pt;}
.y1ce{bottom:364.246096pt;}
.y65{bottom:364.288806pt;}
.y3e1{bottom:364.419804pt;}
.ycf{bottom:370.709260pt;}
.y334{bottom:372.198412pt;}
.y107{bottom:372.946177pt;}
.y194{bottom:374.384241pt;}
.y420{bottom:374.745285pt;}
.y31d{bottom:375.691963pt;}
.y1f{bottom:377.651152pt;}
.y3e0{bottom:379.160237pt;}
.y9d{bottom:379.240263pt;}
.y1cd{bottom:379.508799pt;}
.y64{bottom:379.551509pt;}
.y3a8{bottom:384.542594pt;}
.yce{bottom:385.971963pt;}
.y333{bottom:387.461115pt;}
.y106{bottom:388.208880pt;}
.y41f{bottom:388.648872pt;}
.y193{bottom:389.646944pt;}
.y31c{bottom:390.954667pt;}
.y1e{bottom:391.638424pt;}
.y3df{bottom:393.900670pt;}
.y9c{bottom:394.582667pt;}
.y1cc{bottom:394.771502pt;}
.y63{bottom:394.814213pt;}
.ycd{bottom:397.530121pt;}
.y3a7{bottom:399.805297pt;}
.ycc{bottom:401.241297pt;}
.y41e{bottom:402.636144pt;}
.y332{bottom:402.723818pt;}
.y105{bottom:403.551284pt;}
.y192{bottom:404.909647pt;}
.y1d{bottom:405.542012pt;}
.y3de{bottom:408.569373pt;}
.y1cb{bottom:410.034206pt;}
.y62{bottom:410.076916pt;}
.y3a6{bottom:415.068000pt;}
.y31b{bottom:416.201333pt;}
.ycb{bottom:416.517260pt;}
.y41d{bottom:416.539731pt;}
.y331{bottom:417.986521pt;}
.y104{bottom:418.813987pt;}
.y1c{bottom:419.529284pt;}
.y191{bottom:420.172350pt;}
.y9b{bottom:421.114667pt;}
.y3dd{bottom:422.556645pt;}
.y1ca{bottom:425.296909pt;}
.y61{bottom:425.339619pt;}
.y2e7{bottom:427.464000pt;}
.y41c{bottom:430.527003pt;}
.yca{bottom:431.779963pt;}
.y1b{bottom:433.432871pt;}
.y103{bottom:434.076690pt;}
.y190{bottom:435.514754pt;}
.y3dc{bottom:437.297078pt;}
.y284{bottom:438.800728pt;}
.y1c9{bottom:440.559612pt;}
.y60{bottom:440.602322pt;}
.y3a5{bottom:441.600000pt;}
.y2e8{bottom:443.414667pt;}
.y2cf{bottom:443.641333pt;}
.y41b{bottom:444.430591pt;}
.yc9{bottom:447.036843pt;}
.y1a{bottom:447.420143pt;}
.y102{bottom:449.339394pt;}
.y18f{bottom:450.777458pt;}
.y3db{bottom:452.037510pt;}
.y283{bottom:452.788000pt;}
.y9a{bottom:455.810388pt;}
.y1c8{bottom:455.822315pt;}
.y5f{bottom:455.865025pt;}
.y391{bottom:456.563395pt;}
.y41a{bottom:458.417863pt;}
.y19{bottom:461.323731pt;}
.y101{bottom:464.602097pt;}
.y18e{bottom:466.040161pt;}
.y3da{bottom:466.777943pt;}
.y390{bottom:470.550667pt;}
.yc8{bottom:470.628574pt;}
.y99{bottom:471.073091pt;}
.y1c7{bottom:471.085018pt;}
.y5e{bottom:471.127729pt;}
.y419{bottom:472.321450pt;}
.yc7{bottom:474.299423pt;}
.y3a4{bottom:474.740831pt;}
.y18{bottom:475.311003pt;}
.y282{bottom:478.638667pt;}
.y100{bottom:479.864800pt;}
.y18d{bottom:481.302864pt;}
.y3d9{bottom:481.446646pt;}
.y418{bottom:486.308722pt;}
.y98{bottom:486.335795pt;}
.y1c6{bottom:486.347722pt;}
.y5d{bottom:486.390432pt;}
.y3a3{bottom:490.083235pt;}
.y26a{bottom:494.589333pt;}
.yff{bottom:495.127503pt;}
.y3d8{bottom:495.433918pt;}
.y38f{bottom:496.402667pt;}
.y18c{bottom:496.565567pt;}
.yc6{bottom:497.585340pt;}
.y17{bottom:499.196959pt;}
.y417{bottom:500.212310pt;}
.y97{bottom:501.598498pt;}
.y1c5{bottom:501.610425pt;}
.y5c{bottom:501.653135pt;}
.y3a2{bottom:505.345939pt;}
.y3d7{bottom:510.174351pt;}
.yfe{bottom:510.390206pt;}
.y18b{bottom:511.828270pt;}
.y377{bottom:512.428000pt;}
.yc5{bottom:512.848043pt;}
.y16{bottom:513.100547pt;}
.y416{bottom:514.199582pt;}
.y96{bottom:516.861201pt;}
.y1c4{bottom:516.873128pt;}
.y5b{bottom:516.915838pt;}
.y3a1{bottom:520.608642pt;}
.y3d6{bottom:524.914784pt;}
.yfd{bottom:525.652910pt;}
.y18a{bottom:527.090974pt;}
.y415{bottom:528.103169pt;}
.yc4{bottom:528.110747pt;}
.y95{bottom:532.203605pt;}
.y1c3{bottom:532.215532pt;}
.y5a{bottom:532.258242pt;}
.y3a0{bottom:535.871345pt;}
.y15{bottom:538.349366pt;}
.y3d5{bottom:538.818371pt;}
.yfc{bottom:540.915613pt;}
.y414{bottom:542.090441pt;}
.yc3{bottom:543.373450pt;}
.y94{bottom:547.466308pt;}
.y1c2{bottom:547.478235pt;}
.y59{bottom:547.520945pt;}
.y39f{bottom:551.134048pt;}
.y3d4{bottom:553.558804pt;}
.y413{bottom:555.994029pt;}
.yfb{bottom:556.178316pt;}
.yc2{bottom:558.636153pt;}
.y93{bottom:562.729011pt;}
.y1c1{bottom:562.740938pt;}
.y58{bottom:562.783649pt;}
.y14{bottom:563.598185pt;}
.y39e{bottom:566.396751pt;}
.y189{bottom:567.831366pt;}
.y3d3{bottom:568.299237pt;}
.y412{bottom:569.981301pt;}
.yfa{bottom:571.520720pt;}
.yc1{bottom:573.898856pt;}
.y92{bottom:577.991715pt;}
.y1c0{bottom:578.003642pt;}
.y57{bottom:578.046352pt;}
.y238{bottom:579.257553pt;}
.y150{bottom:581.222886pt;}
.y39d{bottom:581.659455pt;}
.y3d2{bottom:582.202825pt;}
.y188{bottom:583.094069pt;}
.y411{bottom:583.884888pt;}
.yf9{bottom:586.783423pt;}
.yc0{bottom:589.161559pt;}
.y13{bottom:590.209847pt;}
.y237{bottom:593.161141pt;}
.y91{bottom:593.254418pt;}
.y1bf{bottom:593.266345pt;}
.y56{bottom:593.309055pt;}
.y14f{bottom:595.126474pt;}
.y39c{bottom:596.922158pt;}
.y3d1{bottom:596.943257pt;}
.y410{bottom:597.872160pt;}
.y187{bottom:598.356772pt;}
.yf8{bottom:602.046126pt;}
.ybf{bottom:604.503963pt;}
.y236{bottom:607.148413pt;}
.y90{bottom:608.517121pt;}
.y1be{bottom:608.529048pt;}
.y55{bottom:608.571758pt;}
.y14e{bottom:609.113746pt;}
.y3d0{bottom:611.683690pt;}
.y40f{bottom:611.775748pt;}
.y39b{bottom:612.184861pt;}
.y186{bottom:613.619475pt;}
.y12{bottom:615.458667pt;}
.yf7{bottom:617.308830pt;}
.ybe{bottom:619.829267pt;}
.y11{bottom:620.749333pt;}
.y235{bottom:621.052000pt;}
.y14d{bottom:623.017333pt;}
.y8f{bottom:623.779824pt;}
.y1bd{bottom:623.791751pt;}
.y54{bottom:623.834461pt;}
.y3cf{bottom:625.587278pt;}
.y40e{bottom:625.763020pt;}
.y39a{bottom:627.447564pt;}
.y185{bottom:628.882179pt;}
.y10{bottom:630.046667pt;}
.yf6{bottom:632.571533pt;}
.ybd{bottom:635.091970pt;}
.yf{bottom:635.338667pt;}
.y20f{bottom:638.437333pt;}
.y8e{bottom:639.042527pt;}
.y1bc{bottom:639.054454pt;}
.y53{bottom:639.097165pt;}
.y40d{bottom:639.666607pt;}
.y3ce{bottom:640.327710pt;}
.y125{bottom:640.328000pt;}
.y399{bottom:642.710267pt;}
.y184{bottom:644.144882pt;}
.ye{bottom:644.636000pt;}
.yf5{bottom:647.834236pt;}
.yd{bottom:649.928000pt;}
.ybc{bottom:650.354674pt;}
.y40c{bottom:653.653879pt;}
.y8d{bottom:654.305231pt;}
.y1bb{bottom:654.317158pt;}
.y52{bottom:654.359868pt;}
.y3cd{bottom:655.068143pt;}
.yc{bottom:659.225333pt;}
.y183{bottom:659.487286pt;}
.yf4{bottom:663.096939pt;}
.yb{bottom:664.592000pt;}
.ybb{bottom:665.617377pt;}
.y398{bottom:665.690665pt;}
.y40b{bottom:667.557467pt;}
.y8c{bottom:669.567934pt;}
.y1ba{bottom:669.579861pt;}
.y51{bottom:669.622571pt;}
.y3cc{bottom:669.808576pt;}
.ya{bottom:673.889333pt;}
.y182{bottom:674.749989pt;}
.yf3{bottom:678.359642pt;}
.y9{bottom:679.181333pt;}
.yba{bottom:680.880080pt;}
.y397{bottom:680.953368pt;}
.y40a{bottom:681.544739pt;}
.y3cb{bottom:683.712163pt;}
.y8b{bottom:684.830637pt;}
.y1b9{bottom:684.842564pt;}
.y50{bottom:684.885274pt;}
.y2ce{bottom:688.778061pt;}
.y181{bottom:690.012692pt;}
.yf2{bottom:693.622346pt;}
.y409{bottom:695.448326pt;}
.yb9{bottom:696.142783pt;}
.y396{bottom:696.216071pt;}
.y3ca{bottom:698.452596pt;}
.y8a{bottom:700.093340pt;}
.y1b8{bottom:700.105267pt;}
.y4f{bottom:700.147977pt;}
.y7{bottom:700.422667pt;}
.y2cd{bottom:702.765333pt;}
.y180{bottom:705.275395pt;}
.y8{bottom:707.528000pt;}
.yf1{bottom:708.885049pt;}
.y408{bottom:709.435598pt;}
.yb8{bottom:711.405486pt;}
.y395{bottom:711.478774pt;}
.y3c9{bottom:713.193029pt;}
.y89{bottom:715.435744pt;}
.y1b7{bottom:715.447671pt;}
.y4e{bottom:715.490381pt;}
.y5{bottom:719.017333pt;}
.y17f{bottom:720.538099pt;}
.y407{bottom:723.339186pt;}
.yf0{bottom:724.147752pt;}
.y6{bottom:726.122667pt;}
.yb7{bottom:726.668190pt;}
.y394{bottom:726.741478pt;}
.y3c8{bottom:727.933462pt;}
.y2cc{bottom:728.617333pt;}
.y251{bottom:729.826667pt;}
.y88{bottom:730.698447pt;}
.y1b6{bottom:730.710374pt;}
.y4d{bottom:730.753085pt;}
.y17e{bottom:735.800802pt;}
.y35f{bottom:736.629333pt;}
.y406{bottom:737.326458pt;}
.yef{bottom:739.490156pt;}
.yb6{bottom:741.930893pt;}
.y393{bottom:742.004181pt;}
.y3c7{bottom:742.673895pt;}
.y2b4{bottom:743.357333pt;}
.y239{bottom:744.492000pt;}
.y252{bottom:745.928000pt;}
.y87{bottom:745.961151pt;}
.y1b5{bottom:745.973078pt;}
.y4c{bottom:746.015788pt;}
.y17d{bottom:751.063505pt;}
.y405{bottom:751.230045pt;}
.y348{bottom:752.580000pt;}
.yee{bottom:754.752859pt;}
.y3c6{bottom:756.577482pt;}
.yb5{bottom:757.193596pt;}
.y392{bottom:757.266884pt;}
.y86{bottom:761.223854pt;}
.y1b4{bottom:761.235781pt;}
.y4b{bottom:761.278491pt;}
.y404{bottom:765.217317pt;}
.y17c{bottom:766.326208pt;}
.yed{bottom:770.015562pt;}
.y3c5{bottom:771.317915pt;}
.yb4{bottom:772.536000pt;}
.y85{bottom:776.486557pt;}
.y1b3{bottom:776.498484pt;}
.y4a{bottom:776.541194pt;}
.y403{bottom:779.120905pt;}
.y17b{bottom:781.588911pt;}
.y4{bottom:782.802438pt;}
.yec{bottom:785.278266pt;}
.y3c4{bottom:786.058348pt;}
.y84{bottom:791.749260pt;}
.y1b2{bottom:791.761187pt;}
.y49{bottom:791.803897pt;}
.y402{bottom:793.108177pt;}
.y17a{bottom:796.851615pt;}
.yeb{bottom:800.540969pt;}
.y3c3{bottom:800.798781pt;}
.y401{bottom:807.011764pt;}
.y83{bottom:807.011963pt;}
.y1b1{bottom:807.023890pt;}
.y48{bottom:807.066601pt;}
.y3{bottom:809.342982pt;}
.y179{bottom:812.114318pt;}
.y3c2{bottom:814.702368pt;}
.yea{bottom:815.803672pt;}
.y400{bottom:820.999036pt;}
.y1b0{bottom:822.286594pt;}
.y47{bottom:822.329304pt;}
.y82{bottom:822.381884pt;}
.y123{bottom:823.731968pt;}
.y3c1{bottom:829.442801pt;}
.y122{bottom:830.761469pt;}
.ye9{bottom:831.066375pt;}
.y3ff{bottom:834.986308pt;}
.y2{bottom:835.955258pt;}
.y1af{bottom:837.549297pt;}
.y46{bottom:837.592007pt;}
.y81{bottom:837.644587pt;}
.y3c0{bottom:844.183234pt;}
.y3fe{bottom:848.889895pt;}
.y121{bottom:851.622828pt;}
.y45{bottom:852.854710pt;}
.y1ae{bottom:852.891101pt;}
.y80{bottom:852.907290pt;}
.y3bf{bottom:858.170506pt;}
.y120{bottom:858.652329pt;}
.y3fd{bottom:862.877167pt;}
.y1{bottom:867.780000pt;}
.y44{bottom:868.117413pt;}
.y1ad{bottom:868.153804pt;}
.y7f{bottom:868.169994pt;}
.ye8{bottom:870.372153pt;}
.y3be{bottom:872.839209pt;}
.y3fc{bottom:876.780755pt;}
.y11f{bottom:879.513687pt;}
.y43{bottom:883.459817pt;}
.y1ac{bottom:883.496208pt;}
.y7e{bottom:883.512398pt;}
.ye7{bottom:885.634856pt;}
.y3bd{bottom:887.579642pt;}
.y3fb{bottom:890.768027pt;}
.y11e{bottom:893.489004pt;}
.y42{bottom:898.722521pt;}
.y1ab{bottom:898.758911pt;}
.y7d{bottom:898.775101pt;}
.y11d{bottom:900.434821pt;}
.ye6{bottom:900.897559pt;}
.y3bc{bottom:902.320074pt;}
.y3fa{bottom:904.671614pt;}
.y41{bottom:913.985224pt;}
.y1aa{bottom:914.021614pt;}
.y7c{bottom:914.037804pt;}
.ye5{bottom:916.239963pt;}
.y3bb{bottom:916.307346pt;}
.y3f9{bottom:918.658886pt;}
.y11c{bottom:924.392507pt;}
.y40{bottom:929.247927pt;}
.y1a9{bottom:929.284318pt;}
.y7b{bottom:929.300507pt;}
.y3ba{bottom:930.976050pt;}
.y11b{bottom:931.350278pt;}
.ye4{bottom:931.502667pt;}
.y3f8{bottom:932.562474pt;}
.y3f{bottom:944.510630pt;}
.y1a8{bottom:944.547021pt;}
.y7a{bottom:944.563210pt;}
.y3b9{bottom:945.716482pt;}
.y3f7{bottom:946.549746pt;}
.y3d{bottom:955.034381pt;}
.ye3{bottom:958.034667pt;}
.y3e{bottom:959.773333pt;}
.y1a7{bottom:959.809724pt;}
.y79{bottom:959.825914pt;}
.y3f6{bottom:960.453333pt;}
.y3b8{bottom:960.456915pt;}
.y11a{bottom:960.604000pt;}
.y3c{bottom:967.341103pt;}
.y3b{bottom:979.954384pt;}
.y3a{bottom:992.234413pt;}
.y124{bottom:998.324000pt;}
.yb2{bottom:998.449061pt;}
.y1e2{bottom:998.637897pt;}
.yb3{bottom:1045.400000pt;}
.h1f{height:18.986667pt;}
.h20{height:19.949227pt;}
.h6{height:22.759654pt;}
.he{height:25.177344pt;}
.h5{height:29.920939pt;}
.hc{height:30.264746pt;}
.h28{height:30.378667pt;}
.h29{height:30.435155pt;}
.h9{height:34.047650pt;}
.h7{height:34.143290pt;}
.h8{height:34.238929pt;}
.h2c{height:36.096000pt;}
.h1a{height:37.881897pt;}
.h22{height:37.937581pt;}
.h12{height:37.990807pt;}
.ha{height:38.043849pt;}
.h11{height:38.067141pt;}
.h24{height:40.115746pt;}
.h23{height:44.701147pt;}
.h4{height:44.887415pt;}
.h17{height:52.032902pt;}
.h14{height:52.862033pt;}
.h18{height:53.254981pt;}
.hd{height:56.826717pt;}
.hb{height:56.853237pt;}
.h1b{height:58.075316pt;}
.h13{height:59.727394pt;}
.h1d{height:62.070014pt;}
.h1c{height:62.356932pt;}
.h16{height:62.625648pt;}
.hf{height:65.318889pt;}
.h3{height:67.331686pt;}
.h2{height:68.288102pt;}
.h10{height:71.357609pt;}
.h15{height:95.385644pt;}
.h19{height:106.108332pt;}
.h31{height:215.206667pt;}
.h2f{height:215.886667pt;}
.h30{height:216.113333pt;}
.h2a{height:222.538667pt;}
.h27{height:223.974667pt;}
.h2d{height:224.730667pt;}
.h2e{height:225.108000pt;}
.h2b{height:226.242667pt;}
.h1e{height:328.138667pt;}
.h21{height:329.348000pt;}
.h26{height:330.028000pt;}
.h25{height:335.017333pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.733333pt;}
.w10{width:282.406667pt;}
.wd{width:282.481333pt;}
.we{width:282.557333pt;}
.wf{width:282.935470pt;}
.wc{width:288.529333pt;}
.w7{width:293.518667pt;}
.wa{width:293.745333pt;}
.w9{width:294.122400pt;}
.wb{width:294.349333pt;}
.w8{width:296.768000pt;}
.w6{width:299.565333pt;}
.w2{width:612.208000pt;}
.w3{width:612.284000pt;}
.w5{width:612.737333pt;}
.w4{width:624.453333pt;}
.w1{width:800.000000pt;}
.w0{width:800.050667pt;}
.x0{left:0.000000pt;}
.x22{left:3.199730pt;}
.x20{left:5.573064pt;}
.x21{left:8.773064pt;}
.x34{left:11.866538pt;}
.x2a{left:14.276797pt;}
.x57{left:15.406667pt;}
.x3e{left:20.124795pt;}
.x42{left:23.588000pt;}
.x3d{left:25.244795pt;}
.x3b{left:29.564795pt;}
.x3c{left:35.484795pt;}
.x54{left:38.973333pt;}
.x43{left:43.990267pt;}
.x5b{left:55.139333pt;}
.x31{left:57.784671pt;}
.x25{left:58.773064pt;}
.x4a{left:60.261067pt;}
.x3f{left:65.649862pt;}
.x1{left:67.955867pt;}
.x1c{left:70.597907pt;}
.x5d{left:74.456667pt;}
.x58{left:75.559867pt;}
.x4f{left:80.069067pt;}
.x47{left:82.509067pt;}
.xf{left:87.854500pt;}
.x59{left:88.970311pt;}
.x1f{left:93.884000pt;}
.x39{left:96.832000pt;}
.x49{left:99.401600pt;}
.x2d{left:102.704797pt;}
.x50{left:107.868000pt;}
.x15{left:110.967329pt;}
.x2{left:115.729067pt;}
.xd{left:120.037733pt;}
.x1a{left:138.269606pt;}
.x12{left:139.843586pt;}
.x1e{left:147.181210pt;}
.x17{left:169.095998pt;}
.x18{left:175.301274pt;}
.x16{left:212.708013pt;}
.x3{left:231.005333pt;}
.x1b{left:238.258065pt;}
.x4{left:240.453333pt;}
.x52{left:246.122667pt;}
.x45{left:251.641333pt;}
.x4e{left:252.850667pt;}
.x27{left:256.613064pt;}
.x56{left:258.746667pt;}
.x1d{left:260.860671pt;}
.x19{left:262.297334pt;}
.xc{left:265.096000pt;}
.x23{left:266.973064pt;}
.x53{left:269.840000pt;}
.x2b{left:273.844797pt;}
.x51{left:275.859737pt;}
.x13{left:276.888000pt;}
.x30{left:278.698004pt;}
.x41{left:280.921333pt;}
.x46{left:284.138667pt;}
.x3a{left:286.898128pt;}
.x24{left:297.579730pt;}
.x36{left:302.433604pt;}
.x4d{left:346.960000pt;}
.x14{left:348.774667pt;}
.x2c{left:356.671464pt;}
.x5{left:366.312000pt;}
.x6{left:375.760000pt;}
.x48{left:394.129333pt;}
.x4b{left:406.904000pt;}
.x40{left:409.701333pt;}
.xe{left:411.971086pt;}
.x5e{left:417.862127pt;}
.x10{left:431.917161pt;}
.x5f{left:437.133479pt;}
.x5a{left:452.246557pt;}
.x26{left:454.486397pt;}
.x32{left:463.263338pt;}
.x7{left:477.128000pt;}
.x28{left:482.493064pt;}
.x2e{left:483.631464pt;}
.x8{left:486.652000pt;}
.x5c{left:541.757333pt;}
.x55{left:544.554667pt;}
.x4c{left:547.426667pt;}
.x44{left:550.072000pt;}
.x2f{left:555.571464pt;}
.x38{left:556.468667pt;}
.x29{left:566.933064pt;}
.x37{left:568.364667pt;}
.x35{left:577.351338pt;}
.x33{left:578.390004pt;}
.x9{left:615.306667pt;}
.xa{left:620.673333pt;}
.xb{left:623.621333pt;}
.x11{left:780.293333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  