
    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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bb6b120f93d03b49e8867b3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c4a85d37865d4bb8577ea4b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_47dae27502727ebe63909e05.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.256000;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.237029;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_8dcfa54e34fd396ba09f47e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.237029;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_8948558c44ae5c277ad6fb51.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.764000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7431cdd98475cd0057be5bf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882324;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.237029;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_302365b4a1386054fc8d9446.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.882324;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_41f1188e129faefa6e8c15de.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.237029;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_8f0e9ef933ddd321ef0f3e6d.woff2')format("woff");}.fff{font-family:fff;line-height:0.748000;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_af782f79f9572b14b19df8f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.882324;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.237029;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_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.256000;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_4cc40a8e8191ca76c98b13b1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.882324;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.237029;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_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.256000;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_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.237029;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_458830c2f62305d47f9789eb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.882324;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_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.256000;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_994adb2843faff89dd9fe5fd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.882324;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_e994d7c739af821f200434c6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.237029;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_9329bb66d1d34ceee214f0ff.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.748000;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:ff1c;src:url('chunks/assets/font_00c873ed3402a02ebd41d2e0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.752000;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:ff1d;src:url('chunks/assets/font_4e57c32b70bdedc710f26cc0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.882324;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:ff1e;src:url('chunks/assets/font_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.237029;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:ff1f;src:url('chunks/assets/font_1668a1809e6e8bea3d7110e8.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.256000;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:ff20;src:url('chunks/assets/font_cfb58099bf8d3b7fbf99a9a0.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.237029;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:ff21;src:url('chunks/assets/font_ee94d41a95d98d13460a5e12.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.882324;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:ff22;src:url('chunks/assets/font_8f0e9ef933ddd321ef0f3e6d.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.748000;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;}
.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);}
.v2{vertical-align:-265.500000px;}
.v5{vertical-align:-30.240024px;}
.v1{vertical-align:-13.500000px;}
.v4{vertical-align:-2.880002px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240024px;}
.v7{vertical-align:67.680054px;}
.v6{vertical-align:69.120055px;}
.ls3f{letter-spacing:-3.024000px;}
.ls88{letter-spacing:-2.250000px;}
.ls35{letter-spacing:-2.016000px;}
.ls9{letter-spacing:-1.889400px;}
.ls34{letter-spacing:-1.860000px;}
.ls32{letter-spacing:-1.476000px;}
.lsc{letter-spacing:-1.269000px;}
.lsf{letter-spacing:-1.056000px;}
.ls10{letter-spacing:-0.993600px;}
.ls6{letter-spacing:-0.991200px;}
.ls8{letter-spacing:-0.887400px;}
.lsd{letter-spacing:-0.843000px;}
.ls48{letter-spacing:-0.774000px;}
.ls39{letter-spacing:-0.558000px;}
.ls7b{letter-spacing:-0.525600px;}
.lsa{letter-spacing:-0.519600px;}
.ls82{letter-spacing:-0.492000px;}
.lse{letter-spacing:-0.424200px;}
.ls2f{letter-spacing:-0.412200px;}
.ls30{letter-spacing:-0.403800px;}
.ls2a{letter-spacing:-0.403200px;}
.ls4f{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.388200px;}
.ls6b{letter-spacing:-0.363600px;}
.lsb3{letter-spacing:-0.343800px;}
.ls38{letter-spacing:-0.309000px;}
.ls95{letter-spacing:-0.302400px;}
.lsbf{letter-spacing:-0.295200px;}
.ls3c{letter-spacing:-0.273600px;}
.ls5f{letter-spacing:-0.239400px;}
.ls46{letter-spacing:-0.208800px;}
.ls26{letter-spacing:-0.184800px;}
.lsb{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.168000px;}
.ls61{letter-spacing:-0.147000px;}
.ls3b{letter-spacing:-0.115200px;}
.ls63{letter-spacing:-0.114000px;}
.ls6f{letter-spacing:-0.100800px;}
.ls45{letter-spacing:-0.093000px;}
.ls4d{letter-spacing:-0.052800px;}
.ls4a{letter-spacing:-0.036000px;}
.ls3e{letter-spacing:-0.034800px;}
.ls77{letter-spacing:-0.030600px;}
.ls65{letter-spacing:-0.025800px;}
.ls8f{letter-spacing:-0.024000px;}
.ls16{letter-spacing:-0.009600px;}
.ls41{letter-spacing:-0.007800px;}
.ls75{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.008400px;}
.ls3d{letter-spacing:0.021000px;}
.ls72{letter-spacing:0.022200px;}
.ls29{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.025800px;}
.ls1a{letter-spacing:0.046800px;}
.ls97{letter-spacing:0.053280px;}
.ls51{letter-spacing:0.055200px;}
.ls66{letter-spacing:0.061200px;}
.ls1f{letter-spacing:0.065400px;}
.ls53{letter-spacing:0.066000px;}
.ls24{letter-spacing:0.067800px;}
.ls68{letter-spacing:0.068400px;}
.ls4e{letter-spacing:0.071400px;}
.ls5d{letter-spacing:0.075600px;}
.ls67{letter-spacing:0.082200px;}
.ls52{letter-spacing:0.097800px;}
.ls74{letter-spacing:0.105600px;}
.ls1b{letter-spacing:0.116400px;}
.lsbd{letter-spacing:0.117000px;}
.ls69{letter-spacing:0.118200px;}
.ls43{letter-spacing:0.120000px;}
.ls8e{letter-spacing:0.124200px;}
.ls5e{letter-spacing:0.130800px;}
.ls80{letter-spacing:0.144000px;}
.ls7f{letter-spacing:0.152400px;}
.ls21{letter-spacing:0.156600px;}
.ls2d{letter-spacing:0.162600px;}
.ls5b{letter-spacing:0.163800px;}
.ls56{letter-spacing:0.165600px;}
.ls71{letter-spacing:0.168600px;}
.ls40{letter-spacing:0.171000px;}
.ls42{letter-spacing:0.175200px;}
.ls8a{letter-spacing:0.180000px;}
.ls5c{letter-spacing:0.182400px;}
.ls58{letter-spacing:0.184200px;}
.ls37{letter-spacing:0.186600px;}
.ls6d{letter-spacing:0.188400px;}
.ls73{letter-spacing:0.195600px;}
.ls79{letter-spacing:0.198600px;}
.ls20{letter-spacing:0.201600px;}
.ls2e{letter-spacing:0.202800px;}
.ls62{letter-spacing:0.204000px;}
.lsad{letter-spacing:0.206640px;}
.ls70{letter-spacing:0.213000px;}
.ls2b{letter-spacing:0.221400px;}
.ls44{letter-spacing:0.222600px;}
.ls7a{letter-spacing:0.230400px;}
.ls1d{letter-spacing:0.243600px;}
.ls85{letter-spacing:0.246000px;}
.ls57{letter-spacing:0.248400px;}
.ls6e{letter-spacing:0.252600px;}
.ls6a{letter-spacing:0.255600px;}
.ls27{letter-spacing:0.259200px;}
.ls25{letter-spacing:0.269400px;}
.ls23{letter-spacing:0.277200px;}
.ls93{letter-spacing:0.280800px;}
.ls96{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.291000px;}
.ls28{letter-spacing:0.294000px;}
.ls78{letter-spacing:0.295800px;}
.ls47{letter-spacing:0.298800px;}
.ls76{letter-spacing:0.313800px;}
.ls7e{letter-spacing:0.319200px;}
.ls7c{letter-spacing:0.321600px;}
.ls36{letter-spacing:0.328800px;}
.ls33{letter-spacing:0.331200px;}
.ls1c{letter-spacing:0.351000px;}
.ls17{letter-spacing:0.357600px;}
.ls83{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.366600px;}
.ls4c{letter-spacing:0.372600px;}
.ls4b{letter-spacing:0.375000px;}
.ls60{letter-spacing:0.386400px;}
.ls7d{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.398400px;}
.ls55{letter-spacing:0.403800px;}
.ls64{letter-spacing:0.404400px;}
.ls49{letter-spacing:0.409200px;}
.ls14{letter-spacing:0.427800px;}
.ls5a{letter-spacing:0.468000px;}
.ls13{letter-spacing:0.478200px;}
.ls59{letter-spacing:0.483000px;}
.ls54{letter-spacing:0.492000px;}
.ls90{letter-spacing:0.591600px;}
.ls12{letter-spacing:0.661800px;}
.ls0{letter-spacing:0.711000px;}
.ls15{letter-spacing:0.748800px;}
.ls87{letter-spacing:0.766800px;}
.ls19{letter-spacing:0.902400px;}
.ls22{letter-spacing:0.972000px;}
.ls6c{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.204200px;}
.lsb5{letter-spacing:1.386721px;}
.ls31{letter-spacing:1.476000px;}
.ls1{letter-spacing:1.746000px;}
.ls3{letter-spacing:1.962000px;}
.lsc0{letter-spacing:2.250000px;}
.lsb9{letter-spacing:2.826722px;}
.lsbb{letter-spacing:3.546723px;}
.lsb4{letter-spacing:4.266723px;}
.ls92{letter-spacing:4.572000px;}
.ls89{letter-spacing:5.031364px;}
.ls8b{letter-spacing:5.706725px;}
.lsb8{letter-spacing:8.586727px;}
.ls8c{letter-spacing:9.306727px;}
.lsb6{letter-spacing:10.746729px;}
.lsba{letter-spacing:21.546737px;}
.lsb7{letter-spacing:25.146740px;}
.ls11{letter-spacing:189.000000px;}
.ls99{letter-spacing:199.900240px;}
.lsa3{letter-spacing:206.380245px;}
.ls9b{letter-spacing:207.100246px;}
.ls98{letter-spacing:212.140250px;}
.lsa6{letter-spacing:230.606824px;}
.ls9a{letter-spacing:233.740267px;}
.lsa7{letter-spacing:247.166838px;}
.lsa8{letter-spacing:249.580280px;}
.lsa9{letter-spacing:251.486841px;}
.lsab{letter-spacing:256.526845px;}
.lsa1{letter-spacing:270.460296px;}
.lsaa{letter-spacing:278.380303px;}
.lsac{letter-spacing:294.940316px;}
.lsa5{letter-spacing:296.846877px;}
.lsae{letter-spacing:299.006879px;}
.ls9e{letter-spacing:302.140322px;}
.lsa0{letter-spacing:309.340327px;}
.lsb1{letter-spacing:315.566892px;}
.lsaf{letter-spacing:316.286893px;}
.lsa2{letter-spacing:325.900341px;}
.lsb0{letter-spacing:358.046926px;}
.ls9c{letter-spacing:368.380375px;}
.ls9f{letter-spacing:490.527032px;}
.ls9d{letter-spacing:533.007066px;}
.lsa4{letter-spacing:549.567080px;}
.lsbc{letter-spacing:729.000000px;}
.ls81{letter-spacing:756.000000px;}
.ls86{letter-spacing:787.500000px;}
.lsbe{letter-spacing:913.500000px;}
.ls94{letter-spacing:985.500000px;}
.ls8d{letter-spacing:1111.500000px;}
.lsb2{letter-spacing:1269.000000px;}
.ls91{letter-spacing:1521.000000px;}
.ls84{letter-spacing:1737.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1cf{word-spacing:-62.298000px;}
.ws8e{word-spacing:-60.814800px;}
.ws97{word-spacing:-60.328800px;}
.ws93{word-spacing:-60.172200px;}
.ws92{word-spacing:-60.024000px;}
.ws1ce{word-spacing:-59.752800px;}
.ws98{word-spacing:-59.745600px;}
.ws1cc{word-spacing:-59.704200px;}
.ws87{word-spacing:-59.556000px;}
.ws8f{word-spacing:-57.798000px;}
.ws95{word-spacing:-55.944045px;}
.ws8b{word-spacing:-46.793557px;}
.ws8c{word-spacing:-46.433557px;}
.ws96{word-spacing:-26.621301px;}
.ws85{word-spacing:-23.418739px;}
.ws1e{word-spacing:-21.492000px;}
.ws5a{word-spacing:-21.024000px;}
.ws0{word-spacing:-20.727000px;}
.ws20{word-spacing:-20.367000px;}
.ws1cd{word-spacing:-20.304016px;}
.ws8d{word-spacing:-20.160016px;}
.ws86{word-spacing:-20.016016px;}
.ws1d{word-spacing:-19.831200px;}
.ws23{word-spacing:-19.620000px;}
.ws1f{word-spacing:-18.540000px;}
.ws21{word-spacing:-18.156000px;}
.ws22{word-spacing:-18.000000px;}
.ws158{word-spacing:-16.819933px;}
.ws91{word-spacing:-16.613293px;}
.ws90{word-spacing:-10.808649px;}
.wsc{word-spacing:-3.343200px;}
.ws2{word-spacing:-2.601000px;}
.ws5c{word-spacing:-2.508000px;}
.ws32{word-spacing:-2.414400px;}
.ws69{word-spacing:-2.204400px;}
.ws84{word-spacing:-2.146800px;}
.ws3b{word-spacing:-2.081400px;}
.ws8{word-spacing:-2.041800px;}
.ws5{word-spacing:-2.016000px;}
.ws82{word-spacing:-2.013600px;}
.ws33{word-spacing:-1.935600px;}
.ws25{word-spacing:-1.935000px;}
.ws38{word-spacing:-1.900800px;}
.ws24{word-spacing:-1.900200px;}
.ws44{word-spacing:-1.863600px;}
.ws37{word-spacing:-1.857000px;}
.ws6f{word-spacing:-1.808400px;}
.ws3{word-spacing:-1.777800px;}
.ws3f{word-spacing:-1.767600px;}
.ws49{word-spacing:-1.752000px;}
.ws75{word-spacing:-1.749000px;}
.ws35{word-spacing:-1.707000px;}
.ws70{word-spacing:-1.701600px;}
.ws67{word-spacing:-1.652400px;}
.ws7{word-spacing:-1.627800px;}
.ws2d{word-spacing:-1.603800px;}
.ws68{word-spacing:-1.601400px;}
.ws4e{word-spacing:-1.600800px;}
.ws8a{word-spacing:-1.548000px;}
.ws58{word-spacing:-1.535400px;}
.ws2f{word-spacing:-1.529400px;}
.ws5f{word-spacing:-1.527600px;}
.ws4d{word-spacing:-1.491000px;}
.ws7d{word-spacing:-1.490400px;}
.ws55{word-spacing:-1.482600px;}
.ws4f{word-spacing:-1.407000px;}
.ws4b{word-spacing:-1.386600px;}
.ws5d{word-spacing:-1.363800px;}
.ws72{word-spacing:-1.311600px;}
.ws77{word-spacing:-1.291200px;}
.ws88{word-spacing:-1.287000px;}
.ws4{word-spacing:-1.269000px;}
.ws51{word-spacing:-1.263600px;}
.ws63{word-spacing:-1.258800px;}
.ws4a{word-spacing:-1.242000px;}
.ws66{word-spacing:-1.233000px;}
.ws6a{word-spacing:-1.230000px;}
.ws6e{word-spacing:-1.220400px;}
.ws7c{word-spacing:-1.207800px;}
.ws83{word-spacing:-1.204200px;}
.ws79{word-spacing:-1.186800px;}
.ws64{word-spacing:-1.134000px;}
.ws18{word-spacing:-1.125000px;}
.ws6d{word-spacing:-1.104000px;}
.ws48{word-spacing:-1.077600px;}
.ws74{word-spacing:-1.075200px;}
.ws7f{word-spacing:-1.073400px;}
.ws7a{word-spacing:-1.054800px;}
.ws60{word-spacing:-1.002000px;}
.ws3e{word-spacing:-0.959400px;}
.ws2b{word-spacing:-0.937800px;}
.ws80{word-spacing:-0.912000px;}
.ws7b{word-spacing:-0.864600px;}
.ws30{word-spacing:-0.846600px;}
.wse{word-spacing:-0.844800px;}
.ws56{word-spacing:-0.844200px;}
.ws34{word-spacing:-0.817800px;}
.ws31{word-spacing:-0.759600px;}
.wsb{word-spacing:-0.749400px;}
.ws61{word-spacing:-0.732600px;}
.ws7e{word-spacing:-0.700800px;}
.ws53{word-spacing:-0.696600px;}
.ws6b{word-spacing:-0.681600px;}
.ws41{word-spacing:-0.672600px;}
.ws5b{word-spacing:-0.651600px;}
.ws28{word-spacing:-0.549600px;}
.ws3a{word-spacing:-0.537000px;}
.ws73{word-spacing:-0.514200px;}
.ws4c{word-spacing:-0.480000px;}
.ws52{word-spacing:-0.463200px;}
.ws50{word-spacing:-0.447000px;}
.wsd{word-spacing:-0.426000px;}
.ws2c{word-spacing:-0.418800px;}
.ws42{word-spacing:-0.391200px;}
.ws9{word-spacing:-0.381600px;}
.ws2a{word-spacing:-0.378600px;}
.ws81{word-spacing:-0.291600px;}
.ws65{word-spacing:-0.284400px;}
.ws10{word-spacing:-0.275400px;}
.ws39{word-spacing:-0.242400px;}
.ws57{word-spacing:-0.238800px;}
.ws71{word-spacing:-0.238200px;}
.ws54{word-spacing:-0.234600px;}
.wsf{word-spacing:-0.213000px;}
.ws43{word-spacing:-0.136200px;}
.ws78{word-spacing:-0.056400px;}
.ws1{word-spacing:0.000000px;}
.ws45{word-spacing:0.005400px;}
.ws29{word-spacing:0.052200px;}
.ws94{word-spacing:0.110400px;}
.ws40{word-spacing:0.241800px;}
.ws17{word-spacing:0.250800px;}
.ws62{word-spacing:0.259800px;}
.ws19{word-spacing:0.301200px;}
.ws26{word-spacing:0.383400px;}
.ws3c{word-spacing:0.473400px;}
.ws59{word-spacing:0.489600px;}
.wsa{word-spacing:0.620400px;}
.ws13{word-spacing:0.729000px;}
.ws6{word-spacing:0.738000px;}
.ws36{word-spacing:0.792000px;}
.ws89{word-spacing:0.936000px;}
.ws11{word-spacing:1.125000px;}
.ws1c{word-spacing:1.480200px;}
.ws47{word-spacing:1.512000px;}
.ws12{word-spacing:2.238600px;}
.ws76{word-spacing:2.490000px;}
.ws6c{word-spacing:2.584800px;}
.ws5e{word-spacing:2.631000px;}
.ws46{word-spacing:2.692800px;}
.ws27{word-spacing:2.887200px;}
.ws2e{word-spacing:2.887800px;}
.ws16{word-spacing:4.024800px;}
.ws1b{word-spacing:5.229000px;}
.ws3d{word-spacing:5.508000px;}
.ws15{word-spacing:22.871400px;}
.ws14{word-spacing:24.067200px;}
.ws103{word-spacing:69.326695px;}
.ws108{word-spacing:113.193451px;}
.ws178{word-spacing:113.246731px;}
.ws19e{word-spacing:124.713460px;}
.wsde{word-spacing:126.973542px;}
.ws107{word-spacing:127.646742px;}
.wse2{word-spacing:128.160103px;}
.wsf4{word-spacing:128.880103px;}
.wsf7{word-spacing:129.600104px;}
.wsed{word-spacing:130.526744px;}
.wsf9{word-spacing:130.573544px;}
.wsee{word-spacing:131.246745px;}
.wsf8{word-spacing:131.806905px;}
.ws117{word-spacing:132.686746px;}
.wsf5{word-spacing:132.886906px;}
.wsfa{word-spacing:134.073467px;}
.wsc5{word-spacing:135.513468px;}
.ws167{word-spacing:135.566748px;}
.ws10b{word-spacing:136.286749px;}
.wsfb{word-spacing:136.800109px;}
.wsf3{word-spacing:138.960111px;}
.wsea{word-spacing:139.680112px;}
.wsf6{word-spacing:139.933552px;}
.wsef{word-spacing:141.326753px;}
.wse7{word-spacing:142.406754px;}
.ws199{word-spacing:143.426995px;}
.ws102{word-spacing:144.206755px;}
.ws1a{word-spacing:144.726600px;}
.wsb7{word-spacing:144.873476px;}
.ws9a{word-spacing:145.440116px;}
.wsfc{word-spacing:146.160117px;}
.wsbd{word-spacing:146.366757px;}
.wse0{word-spacing:146.880118px;}
.wsbe{word-spacing:147.086758px;}
.ws154{word-spacing:147.440278px;}
.ws10c{word-spacing:147.806758px;}
.ws10e{word-spacing:148.526759px;}
.wsf1{word-spacing:149.246759px;}
.wse3{word-spacing:149.446920px;}
.wse9{word-spacing:150.633481px;}
.wse1{word-spacing:152.793482px;}
.ws99{word-spacing:153.513483px;}
.ws115{word-spacing:153.566763px;}
.ws106{word-spacing:154.286763px;}
.wse5{word-spacing:154.800124px;}
.wsf0{word-spacing:155.006764px;}
.wse8{word-spacing:155.053564px;}
.wse4{word-spacing:156.493565px;}
.wse6{word-spacing:157.006926px;}
.ws13f{word-spacing:157.113486px;}
.ws114{word-spacing:158.606767px;}
.wsa0{word-spacing:161.686929px;}
.wsc1{word-spacing:162.926770px;}
.wsad{word-spacing:164.366771px;}
.ws11e{word-spacing:164.720292px;}
.ws124{word-spacing:164.880132px;}
.wsaf{word-spacing:165.440292px;}
.ws12e{word-spacing:165.806773px;}
.ws1b9{word-spacing:167.966774px;}
.wsbc{word-spacing:168.686775px;}
.wsb3{word-spacing:169.406776px;}
.ws12f{word-spacing:169.760296px;}
.ws116{word-spacing:170.126776px;}
.ws100{word-spacing:170.846777px;}
.ws9b{word-spacing:173.053578px;}
.ws125{word-spacing:173.673499px;}
.ws144{word-spacing:173.726779px;}
.ws9f{word-spacing:174.240139px;}
.wsff{word-spacing:174.446780px;}
.ws128{word-spacing:175.166780px;}
.wsb6{word-spacing:175.886781px;}
.wsa4{word-spacing:175.933581px;}
.wsc2{word-spacing:177.993502px;}
.ws105{word-spacing:179.486784px;}
.ws126{word-spacing:181.280305px;}
.wsdf{word-spacing:182.313506px;}
.ws153{word-spacing:185.193508px;}
.wsc0{word-spacing:185.246788px;}
.ws147{word-spacing:185.600308px;}
.ws139{word-spacing:185.966789px;}
.ws119{word-spacing:186.320309px;}
.ws12b{word-spacing:186.686789px;}
.wsaa{word-spacing:187.406790px;}
.ws173{word-spacing:188.126791px;}
.wsa3{word-spacing:188.486791px;}
.wsbb{word-spacing:188.846791px;}
.wsba{word-spacing:189.566792px;}
.ws11d{word-spacing:190.233512px;}
.wsb1{word-spacing:190.286792px;}
.ws18b{word-spacing:190.953513px;}
.wsb2{word-spacing:191.006793px;}
.wsa7{word-spacing:191.520153px;}
.ws101{word-spacing:191.726793px;}
.ws9d{word-spacing:192.960154px;}
.wsdc{word-spacing:193.113514px;}
.wsa9{word-spacing:194.553516px;}
.wsa2{word-spacing:195.166956px;}
.ws13b{word-spacing:195.273516px;}
.wsfe{word-spacing:196.046797px;}
.wsa5{word-spacing:196.713517px;}
.wsb4{word-spacing:197.486798px;}
.ws13c{word-spacing:197.840318px;}
.wsb5{word-spacing:198.206799px;}
.ws159{word-spacing:198.560319px;}
.ws9e{word-spacing:198.873519px;}
.ws15a{word-spacing:200.000320px;}
.ws166{word-spacing:201.086801px;}
.ws109{word-spacing:202.160322px;}
.wsa6{word-spacing:202.320162px;}
.wsab{word-spacing:202.526802px;}
.wsa1{word-spacing:202.573602px;}
.ws122{word-spacing:202.880322px;}
.ws12c{word-spacing:203.246803px;}
.ws13a{word-spacing:203.966803px;}
.wsdb{word-spacing:204.373603px;}
.wsa8{word-spacing:205.040324px;}
.ws14b{word-spacing:205.406804px;}
.ws104{word-spacing:205.813605px;}
.wsbf{word-spacing:206.126805px;}
.ws1bc{word-spacing:207.513526px;}
.ws110{word-spacing:207.566806px;}
.wseb{word-spacing:207.973606px;}
.ws129{word-spacing:208.286807px;}
.wsae{word-spacing:209.006807px;}
.wsac{word-spacing:209.726808px;}
.ws170{word-spacing:210.446808px;}
.ws9c{word-spacing:211.833529px;}
.ws1b6{word-spacing:212.553530px;}
.ws1a0{word-spacing:213.273531px;}
.ws171{word-spacing:215.120332px;}
.ws168{word-spacing:215.840333px;}
.ws19b{word-spacing:216.873533px;}
.ws1a8{word-spacing:217.846974px;}
.wsd1{word-spacing:219.806816px;}
.ws1a6{word-spacing:220.006976px;}
.ws1aa{word-spacing:220.160336px;}
.ws151{word-spacing:220.526816px;}
.ws141{word-spacing:221.246817px;}
.ws14e{word-spacing:221.966818px;}
.ws12d{word-spacing:224.126819px;}
.ws121{word-spacing:224.846820px;}
.ws16e{word-spacing:225.200340px;}
.ws181{word-spacing:226.953542px;}
.ws1bf{word-spacing:227.360342px;}
.ws1c2{word-spacing:227.726822px;}
.wsc6{word-spacing:228.080342px;}
.ws113{word-spacing:228.133623px;}
.wsfd{word-spacing:228.493623px;}
.ws138{word-spacing:229.166823px;}
.ws17f{word-spacing:229.520344px;}
.ws1b7{word-spacing:230.086984px;}
.ws16c{word-spacing:231.680345px;}
.wsd4{word-spacing:232.046826px;}
.ws161{word-spacing:232.400346px;}
.ws1a3{word-spacing:233.433547px;}
.ws19c{word-spacing:234.406988px;}
.ws142{word-spacing:234.926828px;}
.ws1a7{word-spacing:235.440188px;}
.ws198{word-spacing:235.646829px;}
.wsb8{word-spacing:236.720349px;}
.ws15d{word-spacing:237.440350px;}
.wsd2{word-spacing:237.753550px;}
.ws162{word-spacing:238.160351px;}
.ws16d{word-spacing:238.526831px;}
.wsec{word-spacing:239.600352px;}
.ws10a{word-spacing:241.200193px;}
.ws152{word-spacing:241.406833px;}
.ws19f{word-spacing:242.126834px;}
.ws19d{word-spacing:242.533634px;}
.ws1bb{word-spacing:242.640194px;}
.ws1a9{word-spacing:244.800196px;}
.ws1af{word-spacing:245.673557px;}
.ws1b0{word-spacing:246.646997px;}
.ws1b5{word-spacing:246.960198px;}
.ws1b4{word-spacing:248.086998px;}
.ws1b2{word-spacing:248.240359px;}
.ws1c9{word-spacing:248.960359px;}
.ws135{word-spacing:249.013639px;}
.ws17b{word-spacing:249.993560px;}
.ws156{word-spacing:250.046840px;}
.ws14f{word-spacing:250.400360px;}
.ws148{word-spacing:250.766841px;}
.ws1a2{word-spacing:250.967001px;}
.ws145{word-spacing:251.486841px;}
.ws13d{word-spacing:252.000202px;}
.wsd5{word-spacing:252.206842px;}
.ws19a{word-spacing:253.127003px;}
.ws1a4{word-spacing:253.280363px;}
.ws11b{word-spacing:253.440203px;}
.wsc7{word-spacing:253.646843px;}
.ws133{word-spacing:253.693643px;}
.ws1ca{word-spacing:254.773644px;}
.ws130{word-spacing:255.647005px;}
.ws1c3{word-spacing:255.753565px;}
.ws180{word-spacing:255.806845px;}
.ws127{word-spacing:256.007005px;}
.ws143{word-spacing:256.526845px;}
.ws1b8{word-spacing:257.040206px;}
.ws169{word-spacing:258.320367px;}
.ws16f{word-spacing:259.040367px;}
.ws1cb{word-spacing:259.093647px;}
.ws120{word-spacing:259.353567px;}
.ws12a{word-spacing:263.053650px;}
.ws1ae{word-spacing:263.520211px;}
.ws149{word-spacing:263.726851px;}
.ws1c7{word-spacing:264.240211px;}
.ws14a{word-spacing:264.446852px;}
.ws1ad{word-spacing:264.647012px;}
.ws131{word-spacing:265.526852px;}
.ws196{word-spacing:266.087013px;}
.ws185{word-spacing:266.553573px;}
.ws146{word-spacing:266.854533px;}
.wsc3{word-spacing:266.960374px;}
.ws155{word-spacing:267.326854px;}
.ws17c{word-spacing:267.527014px;}
.ws17a{word-spacing:268.560215px;}
.ws1ac{word-spacing:269.687016px;}
.ws17e{word-spacing:269.840376px;}
.ws140{word-spacing:270.000216px;}
.ws157{word-spacing:270.206856px;}
.ws197{word-spacing:270.560376px;}
.ws1a5{word-spacing:271.280377px;}
.ws177{word-spacing:271.646857px;}
.wsd8{word-spacing:273.086858px;}
.ws1b1{word-spacing:273.600219px;}
.wsd9{word-spacing:273.806859px;}
.ws165{word-spacing:274.880380px;}
.wsb0{word-spacing:275.246860px;}
.ws17d{word-spacing:277.920222px;}
.ws134{word-spacing:278.073582px;}
.ws195{word-spacing:278.126863px;}
.ws179{word-spacing:278.327023px;}
.ws15f{word-spacing:278.846863px;}
.ws123{word-spacing:279.360223px;}
.wsb9{word-spacing:279.566864px;}
.ws14c{word-spacing:280.286864px;}
.ws18f{word-spacing:280.953585px;}
.ws14d{word-spacing:281.006865px;}
.ws18d{word-spacing:281.927026px;}
.ws137{word-spacing:283.680227px;}
.ws186{word-spacing:284.087027px;}
.ws184{word-spacing:284.400228px;}
.ws18a{word-spacing:284.606868px;}
.ws1c5{word-spacing:285.120228px;}
.ws188{word-spacing:285.680389px;}
.ws1c0{word-spacing:286.453669px;}
.ws15e{word-spacing:288.206871px;}
.ws193{word-spacing:290.053672px;}
.ws160{word-spacing:290.366872px;}
.ws175{word-spacing:292.160394px;}
.ws183{word-spacing:293.447035px;}
.ws187{word-spacing:294.480236px;}
.ws194{word-spacing:295.406876px;}
.ws1ab{word-spacing:295.813677px;}
.ws190{word-spacing:298.487039px;}
.ws18e{word-spacing:299.520240px;}
.ws136{word-spacing:300.960241px;}
.wsce{word-spacing:301.520401px;}
.wsdd{word-spacing:304.713604px;}
.ws1b3{word-spacing:308.053686px;}
.ws174{word-spacing:308.720407px;}
.ws191{word-spacing:308.880247px;}
.ws15c{word-spacing:312.373690px;}
.wsd6{word-spacing:314.480412px;}
.ws176{word-spacing:316.286893px;}
.wsd7{word-spacing:317.006894px;}
.ws192{word-spacing:317.360414px;}
.wscf{word-spacing:322.046898px;}
.ws150{word-spacing:322.560258px;}
.wsd0{word-spacing:323.486899px;}
.wsd3{word-spacing:327.440422px;}
.ws189{word-spacing:328.933703px;}
.ws16b{word-spacing:329.653704px;}
.ws15b{word-spacing:331.920266px;}
.ws1c1{word-spacing:337.520430px;}
.ws1c4{word-spacing:345.753637px;}
.ws164{word-spacing:346.213717px;}
.wsda{word-spacing:347.600438px;}
.ws172{word-spacing:348.480279px;}
.ws163{word-spacing:349.200279px;}
.wscc{word-spacing:364.526932px;}
.ws18c{word-spacing:364.727092px;}
.wscb{word-spacing:364.880452px;}
.wsc8{word-spacing:365.600452px;}
.ws16a{word-spacing:365.760293px;}
.ws1a1{word-spacing:409.833688px;}
.ws182{word-spacing:426.393701px;}
.ws10d{word-spacing:445.886997px;}
.ws132{word-spacing:467.487014px;}
.ws11c{word-spacing:468.207015px;}
.wsf2{word-spacing:473.193739px;}
.ws118{word-spacing:476.073741px;}
.ws112{word-spacing:484.767028px;}
.ws13e{word-spacing:504.927044px;}
.wscd{word-spacing:534.447068px;}
.ws11a{word-spacing:565.200452px;}
.wsca{word-spacing:577.647102px;}
.ws10f{word-spacing:591.273833px;}
.wsc4{word-spacing:594.927116px;}
.ws11f{word-spacing:599.040479px;}
.ws1ba{word-spacing:609.527288px;}
.ws1be{word-spacing:617.760494px;}
.ws1c8{word-spacing:621.047297px;}
.ws1c6{word-spacing:631.127305px;}
.ws111{word-spacing:802.287282px;}
.wsc9{word-spacing:880.047344px;}
.ws1bd{word-spacing:1415.207932px;}
._c{margin-left:-12.672010px;}
._1c{margin-left:-10.152728px;}
._2d{margin-left:-8.292967px;}
._1{margin-left:-4.500000px;}
._7{margin-left:-3.090242px;}
._5{margin-left:-1.828081px;}
._8{width:1.070641px;}
._6{width:2.113202px;}
._1f{width:3.389043px;}
._2{width:4.505400px;}
._1e{width:5.770092px;}
._12{width:7.488006px;}
._4{width:9.006000px;}
._23{width:10.180088px;}
._22{width:11.306889px;}
._20{width:12.349875px;}
._3{width:13.498500px;}
._21{width:14.843107px;}
._1d{width:17.709854px;}
._24{width:19.229775px;}
._25{width:20.506336px;}
._e{width:21.537377px;}
._26{width:22.998978px;}
._27{width:24.503780px;}
._2a{width:26.102181px;}
._b{width:27.936022px;}
._28{width:29.403384px;}
._14{width:31.178905px;}
._13{width:32.256026px;}
._2c{width:33.775947px;}
._d{width:34.992028px;}
._29{width:36.768989px;}
._2b{width:38.301871px;}
._30{width:39.474752px;}
._9{width:41.546913px;}
._31{width:44.075555px;}
._c7{width:46.347877px;}
._11{width:47.664038px;}
._100{width:48.761319px;}
._2e{width:49.867240px;}
._48{width:51.853361px;}
._dc{width:53.633563px;}
._47{width:55.582244px;}
._c0{width:57.494206px;}
._3a{width:58.773647px;}
._39{width:61.650769px;}
._d8{width:62.764610px;}
._49{width:63.853971px;}
._5b{width:65.206852px;}
._32{width:66.480533px;}
._4a{width:68.110974px;}
._a{width:71.486697px;}
._52{width:73.126859px;}
._b6{width:76.347421px;}
._33{width:80.320384px;}
._40{width:81.853985px;}
._58{width:85.639749px;}
._c1{width:86.766549px;}
._6d{width:88.240751px;}
._69{width:89.334071px;}
._19{width:90.576072px;}
._1a{width:92.169434px;}
._bd{width:94.194075px;}
._c5{width:95.820917px;}
._c8{width:96.833597px;}
._b9{width:98.121678px;}
._ac{width:99.540800px;}
._15{width:101.526561px;}
._16{width:102.737602px;}
._fc{width:104.917044px;}
._57{width:107.527766px;}
._6c{width:109.320567px;}
._f1{width:110.666249px;}
._ba{width:113.000850px;}
._44{width:114.040891px;}
._38{width:115.380812px;}
._4b{width:117.091894px;}
._6e{width:118.175135px;}
._bb{width:119.270255px;}
._b7{width:120.289776px;}
._6b{width:121.560577px;}
._50{width:123.164739px;}
._55{width:124.701220px;}
._73{width:126.711461px;}
._6a{width:127.719462px;}
._34{width:128.807383px;}
._3d{width:130.667145px;}
._3e{width:131.734185px;}
._17{width:133.344107px;}
._18{width:134.352107px;}
._60{width:136.083709px;}
._e1{width:137.113310px;}
._41{width:138.627471px;}
._e3{width:139.723312px;}
._56{width:141.474353px;}
._8e{width:143.830915px;}
._bf{width:144.927476px;}
._2f{width:145.946997px;}
._e7{width:146.962918px;}
._42{width:148.523159px;}
._b3{width:149.865960px;}
._f4{width:151.491001px;}
._46{width:152.536442px;}
._af{width:154.101003px;}
._35{width:156.134285px;}
._5f{width:157.314366px;}
._8d{width:160.616288px;}
._93{width:162.153490px;}
._51{width:163.214051px;}
._e8{width:164.430132px;}
._3b{width:165.624612px;}
._96{width:166.935014px;}
._ca{width:168.527655px;}
._68{width:169.660936px;}
._b0{width:170.833817px;}
._10{width:171.998778px;}
._37{width:173.820379px;}
._9b{width:176.541261px;}
._67{width:178.454303px;}
._81{width:179.687664px;}
._61{width:181.794385px;}
._82{width:184.006947px;}
._f6{width:185.187748px;}
._c4{width:186.491669px;}
._43{width:188.520631px;}
._f2{width:189.969992px;}
._4c{width:191.040633px;}
._f{width:192.158794px;}
._64{width:193.574315px;}
._4e{width:195.360636px;}
._45{width:197.220398px;}
._91{width:198.561039px;}
._92{width:200.040640px;}
._b1{width:201.339521px;}
._77{width:203.096322px;}
._3c{width:205.187204px;}
._66{width:206.534325px;}
._6f{width:208.414247px;}
._f9{width:209.867208px;}
._4d{width:211.920650px;}
._3f{width:213.467211px;}
._1b{width:215.136172px;}
._4f{width:216.534413px;}
._ad{width:217.570494px;}
._65{width:219.494336px;}
._85{width:222.166978px;}
._71{width:224.000819px;}
._e6{width:225.154980px;}
._9a{width:227.367542px;}
._9e{width:228.803943px;}
._88{width:230.647865px;}
._f8{width:231.933786px;}
._36{width:233.174347px;}
._f5{width:234.181627px;}
._63{width:235.267388px;}
._b2{width:236.507229px;}
._ae{width:237.577150px;}
._f3{width:238.714031px;}
._72{width:240.107232px;}
._ee{width:241.196593px;}
._7a{width:242.257154px;}
._d7{width:244.067235px;}
._9d{width:245.109076px;}
._a1{width:246.594437px;}
._5a{width:248.174119px;}
._76{width:249.734360px;}
._87{width:250.894281px;}
._de{width:253.367483px;}
._59{width:255.020604px;}
._ed{width:257.177726px;}
._53{width:258.707727px;}
._e9{width:261.660449px;}
._62{width:262.993890px;}
._8a{width:264.594452px;}
._70{width:267.200854px;}
._89{width:268.807895px;}
._a5{width:270.916057px;}
._86{width:271.916138px;}
._90{width:273.441099px;}
._f0{width:274.667260px;}
._54{width:276.000701px;}
._eb{width:277.033902px;}
._a6{width:278.069982px;}
._e0{width:281.040705px;}
._a3{width:282.914146px;}
._dd{width:284.400228px;}
._7e{width:285.474468px;}
._ec{width:287.733830px;}
._98{width:290.654153px;}
._78{width:292.920714px;}
._a2{width:295.260716px;}
._df{width:296.558157px;}
._fd{width:297.660478px;}
._5e{width:299.253839px;}
._79{width:300.953761px;}
._5d{width:304.200243px;}
._84{width:309.749288px;}
._99{width:310.814169px;}
._97{width:312.254170px;}
._7d{width:313.874171px;}
._fa{width:316.083133px;}
._aa{width:320.460736px;}
._9c{width:324.860660px;}
._5c{width:325.880901px;}
._d3{width:327.954502px;}
._7f{width:330.834505px;}
._a9{width:334.034187px;}
._e4{width:335.118508px;}
._fb{width:338.080590px;}
._94{width:339.920192px;}
._e5{width:341.733873px;}
._ef{width:343.919795px;}
._9f{width:345.993397px;}
._da{width:348.170679px;}
._bc{width:355.967565px;}
._80{width:358.947647px;}
._8b{width:361.580689px;}
._e2{width:363.603171px;}
._95{width:364.907812px;}
._ea{width:368.536615px;}
._d2{width:370.434536px;}
._8f{width:377.013902px;}
._74{width:380.001184px;}
._8c{width:382.460706px;}
._75{width:384.321187px;}
._a0{width:389.866632px;}
._cc{width:393.845355px;}
._d5{width:401.534241px;}
._7b{width:403.440803px;}
._a7{width:406.060165px;}
._7c{width:415.067372px;}
._c9{width:417.374254px;}
._c6{width:422.414258px;}
._be{width:423.654099px;}
._a8{width:427.413942px;}
._d6{width:431.000985px;}
._83{width:436.773949px;}
._db{width:438.974271px;}
._b8{width:453.587403px;}
._d4{width:460.574288px;}
._d1{width:479.147423px;}
._b5{width:486.813989px;}
._cf{width:492.573994px;}
._cb{width:495.268236px;}
._ce{width:501.934002px;}
._d9{width:517.274334px;}
._d0{width:521.880898px;}
._ff{width:591.727433px;}
._fe{width:613.940891px;}
._f7{width:635.540908px;}
._a4{width:716.174493px;}
._b4{width:742.558194px;}
._c3{width:779.360303px;}
._c2{width:814.494892px;}
._cd{width:1065.114852px;}
._ab{width:1225.934901px;}
._0{width:2106.000000px;}
.fc7{color:rgb(78,119,195);}
.fc6{color:rgb(51,80,161);}
.fc4{color:rgb(254,253,252);}
.fc3{color:rgb(144,214,137);}
.fc5{color:rgb(229,121,195);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,33,46);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880031px;}
.fs4{font-size:59.760048px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs1{font-size:85.500000px;}
.fs2{font-size:94.500000px;}
.fsa{font-size:95.760077px;}
.fs6{font-size:166.500000px;}
.fs8{font-size:216.000000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:3.960059px;}
.yda{bottom:3.960070px;}
.yc5{bottom:3.960072px;}
.y4{bottom:4.500000px;}
.y10{bottom:5.625000px;}
.y3de{bottom:57.600046px;}
.yfd{bottom:69.300000px;}
.yd9{bottom:83.160000px;}
.yc4{bottom:86.580000px;}
.y3dd{bottom:95.040076px;}
.y3d8{bottom:99.360079px;}
.y6d{bottom:108.900087px;}
.yd8{bottom:120.060096px;}
.y46{bottom:126.000000px;}
.yc3{bottom:126.180101px;}
.y45{bottom:146.250000px;}
.y3ce{bottom:154.260123px;}
.y367{bottom:154.980124px;}
.ycf{bottom:155.700125px;}
.yd0{bottom:155.880125px;}
.y17d{bottom:159.120127px;}
.y3d3{bottom:163.260131px;}
.y44{bottom:167.625000px;}
.y2ff{bottom:175.500140px;}
.y285{bottom:176.040141px;}
.y2b6{bottom:177.480142px;}
.y22d{bottom:180.540144px;}
.ycc{bottom:181.620145px;}
.y43{bottom:187.875000px;}
.y3cd{bottom:188.820151px;}
.y12c{bottom:189.000151px;}
.y366{bottom:189.540152px;}
.y2d5{bottom:189.720152px;}
.yce{bottom:190.260152px;}
.y138{bottom:190.440152px;}
.y17c{bottom:193.680155px;}
.y270{bottom:194.760156px;}
.y3a2{bottom:197.280158px;}
.y3d2{bottom:197.820158px;}
.y23f{bottom:200.160160px;}
.y22c{bottom:203.400163px;}
.y54{bottom:204.660164px;}
.y9{bottom:204.750000px;}
.y3d1{bottom:206.820165px;}
.y387{bottom:207.540166px;}
.yb4{bottom:208.260167px;}
.y42{bottom:209.250000px;}
.y2fe{bottom:210.060168px;}
.y284{bottom:210.420168px;}
.y2c3{bottom:211.320169px;}
.y2b5{bottom:212.040170px;}
.y3a1{bottom:214.560172px;}
.ycb{bottom:216.180173px;}
.y33c{bottom:217.620174px;}
.y84{bottom:217.800174px;}
.y168{bottom:220.680177px;}
.y11b{bottom:223.200179px;}
.y365{bottom:223.920179px;}
.y2d4{bottom:224.100179px;}
.yd5{bottom:224.640180px;}
.y9e{bottom:224.820180px;}
.y141{bottom:225.000180px;}
.y22b{bottom:226.440181px;}
.y17b{bottom:228.060182px;}
.y26f{bottom:229.320183px;}
.y41{bottom:229.500000px;}
.y3c7{bottom:232.200186px;}
.y1e7{bottom:233.460187px;}
.y2a4{bottom:237.420190px;}
.y63{bottom:239.760192px;}
.y3d0{bottom:241.200193px;}
.y19c{bottom:241.380193px;}
.y19b{bottom:241.560193px;}
.y386{bottom:241.920194px;}
.y283{bottom:244.980196px;}
.y2c2{bottom:245.700197px;}
.y2b4{bottom:246.420197px;}
.y22a{bottom:249.480200px;}
.yb3{bottom:249.660200px;}
.y40{bottom:249.750000px;}
.y389{bottom:249.840200px;}
.yca{bottom:250.560200px;}
.y33b{bottom:252.180202px;}
.y83{bottom:252.360202px;}
.y2e8{bottom:254.700204px;}
.y311{bottom:255.060204px;}
.y167{bottom:255.240204px;}
.y10f{bottom:257.760206px;}
.y364{bottom:258.480207px;}
.y2d3{bottom:258.660207px;}
.y19a{bottom:258.840207px;}
.y9d{bottom:259.200207px;}
.y13c{bottom:259.380208px;}
.yfc{bottom:259.560208px;}
.y17a{bottom:262.620210px;}
.y26e{bottom:263.700211px;}
.y149{bottom:265.320212px;}
.y3c6{bottom:266.760213px;}
.y3a0{bottom:267.300214px;}
.y350{bottom:267.660214px;}
.y1e6{bottom:268.740215px;}
.y1e5{bottom:268.920215px;}
.y3f{bottom:271.125000px;}
.y2a3{bottom:271.980218px;}
.y229{bottom:272.520218px;}
.yec{bottom:272.700218px;}
.y23e{bottom:273.420219px;}
.y123{bottom:275.760221px;}
.y385{bottom:276.480221px;}
.y199{bottom:278.820223px;}
.y282{bottom:279.540224px;}
.y2c1{bottom:280.260224px;}
.y2b3{bottom:280.980225px;}
.y62{bottom:281.160225px;}
.yc9{bottom:285.120228px;}
.y8{bottom:285.750000px;}
.y1e4{bottom:286.200229px;}
.y33a{bottom:286.560229px;}
.y82{bottom:286.920230px;}
.y2fd{bottom:288.180231px;}
.y2e7{bottom:289.260231px;}
.y166{bottom:289.620232px;}
.yb2{bottom:291.060233px;}
.y3e{bottom:291.375000px;}
.y10e{bottom:292.320234px;}
.y363{bottom:293.040234px;}
.y9c{bottom:293.760235px;}
.y140{bottom:293.940235px;}
.y23d{bottom:294.480236px;}
.y228{bottom:295.560236px;}
.y39f{bottom:295.920237px;}
.y34f{bottom:296.460237px;}
.y179{bottom:297.180238px;}
.yfb{bottom:298.260239px;}
.y3bd{bottom:301.320241px;}
.y388{bottom:301.500241px;}
.y1e3{bottom:306.180245px;}
.y2a2{bottom:306.540245px;}
.yeb{bottom:307.260246px;}
.y148{bottom:308.700247px;}
.y122{bottom:310.320248px;}
.y384{bottom:311.040249px;}
.y3d{bottom:312.750000px;}
.y281{bottom:313.920251px;}
.y198{bottom:314.460252px;}
.y2c0{bottom:314.820252px;}
.y23c{bottom:315.540252px;}
.y39e{bottom:315.900253px;}
.y34e{bottom:316.260253px;}
.y24f{bottom:318.060254px;}
.y227{bottom:318.420255px;}
.yc8{bottom:319.680256px;}
.y339{bottom:321.120257px;}
.y81{bottom:321.300257px;}
.y2e6{bottom:323.820259px;}
.y165{bottom:324.180259px;}
.y2b2{bottom:324.720260px;}
.y1e2{bottom:325.980261px;}
.y10d{bottom:326.700261px;}
.y12b{bottom:326.880262px;}
.y362{bottom:327.420262px;}
.yd4{bottom:328.140263px;}
.y9b{bottom:328.320263px;}
.y137{bottom:328.500263px;}
.y3bc{bottom:330.120264px;}
.y178{bottom:331.560265px;}
.yb1{bottom:332.460266px;}
.y197{bottom:332.640266px;}
.y26d{bottom:332.820266px;}
.y3c{bottom:333.000000px;}
.y1f9{bottom:333.180267px;}
.y310{bottom:333.360267px;}
.y1c6{bottom:335.160268px;}
.y39d{bottom:335.700269px;}
.y329{bottom:335.880269px;}
.y34d{bottom:336.060269px;}
.y23b{bottom:336.420269px;}
.y375{bottom:336.600269px;}
.y1af{bottom:339.840272px;}
.y2fc{bottom:340.740273px;}
.y226{bottom:341.460273px;}
.yea{bottom:341.820273px;}
.y121{bottom:344.700276px;}
.y383{bottom:345.420276px;}
.y2d2{bottom:345.780277px;}
.y1e1{bottom:345.960277px;}
.y3bb{bottom:349.920280px;}
.y196{bottom:350.100280px;}
.y2b1{bottom:351.720281px;}
.y147{bottom:352.260282px;}
.y24e{bottom:352.620282px;}
.y3b{bottom:353.250000px;}
.yc7{bottom:354.060283px;}
.y39c{bottom:355.680285px;}
.y80{bottom:355.860285px;}
.y34c{bottom:356.040285px;}
.y23a{bottom:357.480286px;}
.y280{bottom:357.660286px;}
.y2fb{bottom:358.200287px;}
.y164{bottom:358.740287px;}
.y10c{bottom:361.260289px;}
.y9a{bottom:362.700290px;}
.y13f{bottom:362.880290px;}
.y225{bottom:364.500292px;}
.y338{bottom:364.860292px;}
.y374{bottom:365.400292px;}
.y1e0{bottom:365.760293px;}
.y177{bottom:366.120293px;}
.y2e5{bottom:367.380294px;}
.y1f8{bottom:367.560294px;}
.y195{bottom:368.280295px;}
.y2b0{bottom:369.180295px;}
.y3ba{bottom:369.900296px;}
.y3c5{bottom:370.260296px;}
.y1c5{bottom:370.440296px;}
.y1c4{bottom:370.620296px;}
.y361{bottom:370.980297px;}
.y2d1{bottom:372.780298px;}
.yb0{bottom:373.860299px;}
.y1ae{bottom:374.220299px;}
.y3a{bottom:374.625000px;}
.y39b{bottom:375.480300px;}
.y34b{bottom:375.840301px;}
.ye9{bottom:376.200301px;}
.y26c{bottom:376.380301px;}
.y2a1{bottom:377.280302px;}
.y2fa{bottom:378.000302px;}
.y239{bottom:378.540303px;}
.yfa{bottom:378.900303px;}
.y3cf{bottom:379.260303px;}
.y36f{bottom:379.980304px;}
.y53{bottom:381.240305px;}
.y1df{bottom:384.120307px;}
.y27f{bottom:384.660308px;}
.y373{bottom:385.200308px;}
.y194{bottom:385.560308px;}
.y146{bottom:386.820309px;}
.y24d{bottom:387.180310px;}
.y224{bottom:387.540310px;}
.y1c3{bottom:387.900310px;}
.y120{bottom:388.260311px;}
.yc6{bottom:388.620311px;}
.y2af{bottom:388.980311px;}
.y3b9{bottom:389.700312px;}
.y2d0{bottom:390.240312px;}
.yd7{bottom:390.375000px;}
.y7f{bottom:390.420312px;}
.y163{bottom:393.120314px;}
.y2a0{bottom:394.560316px;}
.y39{bottom:394.875000px;}
.y39a{bottom:395.280316px;}
.y10b{bottom:395.820317px;}
.y2e4{bottom:396.180317px;}
.y99{bottom:397.260318px;}
.y136{bottom:397.440318px;}
.y2f9{bottom:397.980318px;}
.y238{bottom:399.420320px;}
.y176{bottom:400.680321px;}
.y1de{bottom:401.400321px;}
.y1f7{bottom:402.120322px;}
.y3d7{bottom:404.820324px;}
.y372{bottom:405.180324px;}
.y61{bottom:405.360324px;}
.y360{bottom:405.540324px;}
.y2ae{bottom:407.340326px;}
.y1c2{bottom:407.700326px;}
.y328{bottom:408.060326px;}
.y1ad{bottom:408.780327px;}
.y3b8{bottom:409.680328px;}
.y223{bottom:410.580328px;}
.ye8{bottom:410.760329px;}
.y2bf{bottom:411.660329px;}
.y2cf{bottom:412.380330px;}
.yf9{bottom:413.460331px;}
.y3c4{bottom:413.820331px;}
.y29f{bottom:414.540332px;}
.yaf{bottom:415.260332px;}
.y34a{bottom:415.620332px;}
.y2e3{bottom:415.980333px;}
.y2f8{bottom:416.160333px;}
.y38{bottom:416.250000px;}
.y2f7{bottom:416.340333px;}
.y237{bottom:420.480336px;}
.y26b{bottom:420.660337px;}
.y145{bottom:421.200337px;}
.y24c{bottom:421.560337px;}
.y27e{bottom:421.920338px;}
.y11f{bottom:422.820338px;}
.y382{bottom:423.720339px;}
.y2ad{bottom:424.620340px;}
.y371{bottom:424.980340px;}
.y327{bottom:426.240341px;}
.y162{bottom:427.680342px;}
.y2be{bottom:429.120343px;}
.y3b7{bottom:429.480344px;}
.y10a{bottom:430.200344px;}
.y2ce{bottom:430.740345px;}
.yd3{bottom:431.640345px;}
.y98{bottom:431.820345px;}
.y135{bottom:432.000346px;}
.y29e{bottom:432.900346px;}
.y222{bottom:433.620347px;}
.y349{bottom:433.980347px;}
.y2e2{bottom:434.340347px;}
.y175{bottom:435.060348px;}
.y337{bottom:435.240348px;}
.y37{bottom:436.500000px;}
.y1f6{bottom:436.680349px;}
.y1dd{bottom:436.860349px;}
.y26a{bottom:438.120350px;}
.y193{bottom:438.480351px;}
.y3cc{bottom:439.200351px;}
.y35f{bottom:439.920352px;}
.y27d{bottom:440.460352px;}
.y236{bottom:441.540353px;}
.y321{bottom:442.620354px;}
.y2ac{bottom:442.800354px;}
.y2ab{bottom:442.980354px;}
.y1ac{bottom:443.340355px;}
.y326{bottom:443.700355px;}
.y370{bottom:444.780356px;}
.y60{bottom:446.760357px;}
.y1c1{bottom:447.480358px;}
.y2cd{bottom:448.020358px;}
.y3c3{bottom:448.200359px;}
.y2bd{bottom:448.920359px;}
.y3b6{bottom:449.280359px;}
.y29d{bottom:450.180360px;}
.y399{bottom:450.900361px;}
.y348{bottom:451.260361px;}
.y2e1{bottom:451.620361px;}
.y2f6{bottom:451.800361px;}
.y2f5{bottom:451.980362px;}
.y381{bottom:452.340362px;}
.y336{bottom:452.700362px;}
.y192{bottom:455.760365px;}
.y24b{bottom:456.120365px;}
.yae{bottom:456.660365px;}
.y36{bottom:456.750000px;}
.y11e{bottom:457.200366px;}
.y27c{bottom:457.560366px;}
.y269{bottom:457.920366px;}
.ye7{bottom:458.460367px;}
.y7e{bottom:459.360367px;}
.y2aa{bottom:460.260368px;}
.y320{bottom:460.800369px;}
.yf8{bottom:461.160369px;}
.y161{bottom:462.240370px;}
.y235{bottom:462.420370px;}
.y30f{bottom:463.680371px;}
.y52{bottom:464.040371px;}
.y109{bottom:464.760372px;}
.y97{bottom:466.200373px;}
.y134{bottom:466.380373px;}
.y1c0{bottom:467.460374px;}
.y3b5{bottom:467.820374px;}
.y29c{bottom:468.360375px;}
.y29b{bottom:468.540375px;}
.y2f4{bottom:469.260375px;}
.y174{bottom:469.620376px;}
.y2e0{bottom:469.800376px;}
.y2df{bottom:469.980376px;}
.y1f5{bottom:471.060377px;}
.y380{bottom:472.320378px;}
.y335{bottom:472.680378px;}
.y191{bottom:473.040378px;}
.y3cb{bottom:473.760379px;}
.y27b{bottom:475.740381px;}
.y27a{bottom:475.920381px;}
.y268{bottom:476.460381px;}
.y1ab{bottom:477.720382px;}
.y35{bottom:478.125000px;}
.y31f{bottom:478.260383px;}
.y2a9{bottom:478.440383px;}
.y221{bottom:479.700384px;}
.y3c2{bottom:482.760386px;}
.y234{bottom:483.480387px;}
.y2cc{bottom:483.660387px;}
.y2bc{bottom:484.560388px;}
.y3b4{bottom:484.920388px;}
.y1bf{bottom:485.820389px;}
.y398{bottom:486.540389px;}
.y347{bottom:486.900390px;}
.y2de{bottom:487.260390px;}
.y2f3{bottom:487.440390px;}
.y2f2{bottom:487.620390px;}
.y1dc{bottom:488.880391px;}
.y11d{bottom:491.760393px;}
.y37f{bottom:492.120394px;}
.y334{bottom:492.480394px;}
.y279{bottom:493.200395px;}
.y267{bottom:493.560395px;}
.y7d{bottom:493.920395px;}
.y2a8{bottom:495.900397px;}
.y160{bottom:496.620397px;}
.yad{bottom:498.060398px;}
.y34{bottom:498.375000px;}
.y108{bottom:499.320399px;}
.y24a{bottom:499.680400px;}
.y96{bottom:500.760401px;}
.y13b{bottom:500.940401px;}
.y2cb{bottom:501.840401px;}
.y220{bottom:502.740402px;}
.y1be{bottom:502.920402px;}
.y325{bottom:503.280403px;}
.yb{bottom:504.000000px;}
.y29a{bottom:504.000403px;}
.y207{bottom:504.180403px;}
.y233{bottom:504.540404px;}
.y2f1{bottom:504.720404px;}
.y51{bottom:505.440404px;}
.y1f4{bottom:505.620404px;}
.y3ca{bottom:508.320407px;}
.y190{bottom:508.680407px;}
.y266{bottom:511.740409px;}
.y265{bottom:511.920410px;}
.y1aa{bottom:512.280410px;}
.y278{bottom:513.180411px;}
.y2a7{bottom:514.260411px;}
.y3c1{bottom:517.320414px;}
.y31e{bottom:518.040414px;}
.y6b{bottom:518.625000px;}
.y2ca{bottom:519.120415px;}
.y33{bottom:519.750000px;}
.y2bb{bottom:520.200416px;}
.y3b3{bottom:520.560416px;}
.y397{bottom:520.920417px;}
.y346{bottom:521.280417px;}
.y299{bottom:521.460417px;}
.y2dd{bottom:522.900418px;}
.y324{bottom:523.260419px;}
.y1db{bottom:524.160419px;}
.y1da{bottom:524.340419px;}
.y232{bottom:525.420420px;}
.y21f{bottom:525.780421px;}
.y3d6{bottom:526.320421px;}
.ya{bottom:526.500000px;}
.y35e{bottom:527.220422px;}
.y7c{bottom:528.300423px;}
.y264{bottom:529.200423px;}
.y5f{bottom:529.560424px;}
.y15f{bottom:531.180425px;}
.y277{bottom:531.540425px;}
.y37e{bottom:531.900426px;}
.y333{bottom:532.260426px;}
.y30e{bottom:532.620426px;}
.y107{bottom:533.700427px;}
.y249{bottom:534.060427px;}
.yd2{bottom:535.140428px;}
.y95{bottom:535.320428px;}
.y11c{bottom:535.500428px;}
.yc1{bottom:535.860429px;}
.y2c9{bottom:537.480430px;}
.y31d{bottom:537.840430px;}
.y2ba{bottom:538.380431px;}
.y206{bottom:538.560431px;}
.y173{bottom:538.740431px;}
.yac{bottom:539.460432px;}
.y298{bottom:539.820432px;}
.y32{bottom:540.000000px;}
.y1f3{bottom:540.180432px;}
.y2dc{bottom:541.260433px;}
.y1d9{bottom:541.620433px;}
.y3c9{bottom:542.700434px;}
.y231{bottom:546.480437px;}
.y1a9{bottom:546.840437px;}
.y263{bottom:547.380438px;}
.ye6{bottom:548.100438px;}
.y21e{bottom:548.820439px;}
.y50{bottom:550.800441px;}
.y37d{bottom:551.700441px;}
.y332{bottom:552.060442px;}
.y2c8{bottom:554.760444px;}
.y3b2{bottom:555.120444px;}
.y2b9{bottom:555.840445px;}
.y297{bottom:556.920446px;}
.y31c{bottom:557.820446px;}
.y2db{bottom:558.540447px;}
.y323{bottom:558.900447px;}
.y31{bottom:560.250000px;}
.y3d5{bottom:560.700449px;}
.y1d8{bottom:561.420449px;}
.y7b{bottom:562.860450px;}
.y396{bottom:564.480452px;}
.y262{bottom:564.840452px;}
.y15e{bottom:565.740453px;}
.y21d{bottom:567.180454px;}
.y230{bottom:567.540454px;}
.y106{bottom:568.260455px;}
.y248{bottom:568.620455px;}
.y94{bottom:569.700456px;}
.yd1{bottom:569.880456px;}
.y5e{bottom:570.960457px;}
.y37c{bottom:571.680457px;}
.y205{bottom:573.120458px;}
.y172{bottom:574.020459px;}
.y171{bottom:574.200459px;}
.y1f2{bottom:574.560460px;}
.y35d{bottom:575.640461px;}
.y31b{bottom:576.180461px;}
.yc0{bottom:577.260462px;}
.y18f{bottom:577.620462px;}
.yab{bottom:580.860465px;}
.y1d7{bottom:581.400465px;}
.y30{bottom:581.625000px;}
.ye5{bottom:582.660466px;}
.y261{bottom:583.200467px;}
.y21c{bottom:584.280467px;}
.yf7{bottom:585.360468px;}
.y22f{bottom:585.900469px;}
.y3c0{bottom:586.260469px;}
.y331{bottom:587.700470px;}
.y37b{bottom:590.040472px;}
.y1bd{bottom:590.400472px;}
.y170{bottom:591.480473px;}
.y296{bottom:592.560474px;}
.y31a{bottom:593.280475px;}
.y2da{bottom:594.180475px;}
.y3d4{bottom:595.260476px;}
.y35c{bottom:595.620476px;}
.y7a{bottom:597.420478px;}
.y4f{bottom:599.040479px;}
.y15d{bottom:600.120480px;}
.y260{bottom:600.480480px;}
.y6a{bottom:600.750000px;}
.y1d6{bottom:601.200481px;}
.y30d{bottom:601.560481px;}
.y2f{bottom:601.875000px;}
.y105{bottom:602.640482px;}
.y22e{bottom:603.180483px;}
.y93{bottom:604.260483px;}
.y13a{bottom:604.440484px;}
.y330{bottom:604.980484px;}
.y2f0{bottom:605.520484px;}
.y37a{bottom:607.320486px;}
.y204{bottom:607.680486px;}
.y1f1{bottom:609.120487px;}
.y7{bottom:609.750000px;}
.y16f{bottom:611.280489px;}
.y11a{bottom:611.640489px;}
.y18e{bottom:612.180490px;}
.y5d{bottom:612.360490px;}
.y35b{bottom:615.420492px;}
.y1a8{bottom:615.960493px;}
.ye4{bottom:617.040494px;}
.ybf{bottom:618.480495px;}
.y21b{bottom:619.920496px;}
.y3c8{bottom:620.640497px;}
.y1d5{bottom:621.180497px;}
.yaa{bottom:622.260498px;}
.y2e{bottom:623.250000px;}
.y1bc{bottom:624.780500px;}
.y2b8{bottom:627.120502px;}
.y276{bottom:627.840502px;}
.y3bf{bottom:629.640504px;}
.y16e{bottom:631.260505px;}
.y79{bottom:631.800505px;}
.yf6{bottom:632.880506px;}
.y395{bottom:633.420507px;}
.y35a{bottom:635.400508px;}
.y25f{bottom:636.120509px;}
.y104{bottom:637.200510px;}
.ycd{bottom:638.640511px;}
.y13e{bottom:638.820511px;}
.y4e{bottom:639.360511px;}
.y32f{bottom:640.620512px;}
.y1d4{bottom:640.980513px;}
.y3b1{bottom:642.060514px;}
.y345{bottom:642.780514px;}
.y2d{bottom:643.500000px;}
.y1f0{bottom:643.680515px;}
.y119{bottom:646.200517px;}
.y18d{bottom:646.560517px;}
.y16d{bottom:651.060521px;}
.y1a7{bottom:651.240521px;}
.y1a6{bottom:651.420521px;}
.y5c{bottom:653.760523px;}
.y2a6{bottom:654.120523px;}
.y359{bottom:655.200524px;}
.y2ef{bottom:658.260527px;}
.y1bb{bottom:659.340527px;}
.ybe{bottom:659.880528px;}
.y275{bottom:662.400530px;}
.ya9{bottom:663.480531px;}
.y21a{bottom:663.660531px;}
.y2c{bottom:663.750000px;}
.y3be{bottom:664.200531px;}
.ye3{bottom:664.740532px;}
.y78{bottom:666.360533px;}
.y394{bottom:667.980534px;}
.y1a5{bottom:668.700535px;}
.y15c{bottom:669.240535px;}
.y16c{bottom:671.040537px;}
.y144{bottom:671.760537px;}
.y2d9{bottom:672.120538px;}
.y92{bottom:673.200539px;}
.y133{bottom:673.380539px;}
.y32e{bottom:675.180540px;}
.y2ee{bottom:675.540540px;}
.y3b0{bottom:676.620541px;}
.y203{bottom:676.800541px;}
.y2c7{bottom:677.340542px;}
.y295{bottom:679.680544px;}
.y30c{bottom:679.860544px;}
.y103{bottom:680.760545px;}
.y18c{bottom:681.300545px;}
.y247{bottom:682.200546px;}
.y69{bottom:684.000000px;}
.y2b{bottom:685.125000px;}
.y379{bottom:686.340549px;}
.y1a4{bottom:688.500551px;}
.y2a5{bottom:688.680551px;}
.y16b{bottom:689.400552px;}
.y118{bottom:689.760552px;}
.y358{bottom:693.540555px;}
.y2ed{bottom:693.720555px;}
.y1ba{bottom:693.900555px;}
.y5b{bottom:695.160556px;}
.y274{bottom:696.780557px;}
.y219{bottom:698.220559px;}
.y322{bottom:698.760559px;}
.y77{bottom:700.740561px;}
.y246{bottom:702.180562px;}
.y393{bottom:702.540562px;}
.ya8{bottom:704.880564px;}
.y2a{bottom:705.375000px;}
.y16a{bottom:706.680565px;}
.y1a3{bottom:706.860565px;}
.y91{bottom:707.760566px;}
.y132{bottom:707.940566px;}
.y15b{bottom:708.120566px;}
.y357{bottom:710.640569px;}
.y3af{bottom:711.000569px;}
.y1d3{bottom:711.180569px;}
.y2c6{bottom:711.900570px;}
.y1ef{bottom:712.800570px;}
.y294{bottom:714.060571px;}
.y102{bottom:715.140572px;}
.y32d{bottom:718.560575px;}
.y245{bottom:720.540576px;}
.y378{bottom:720.900577px;}
.yf5{bottom:722.700578px;}
.y25e{bottom:723.060578px;}
.y169{bottom:723.780579px;}
.y117{bottom:724.140579px;}
.y29{bottom:726.750000px;}
.y15{bottom:727.875000px;}
.y1b9{bottom:728.280583px;}
.y202{bottom:729.360583px;}
.y201{bottom:729.540584px;}
.y15a{bottom:729.720584px;}
.y273{bottom:731.340585px;}
.y319{bottom:733.140587px;}
.y18b{bottom:733.860587px;}
.y18a{bottom:734.040587px;}
.y76{bottom:735.300588px;}
.y5a{bottom:736.560589px;}
.y244{bottom:737.820590px;}
.y2d8{bottom:741.060593px;}
.y218{bottom:741.420593px;}
.y90{bottom:742.140594px;}
.y139{bottom:742.320594px;}
.y1a2{bottom:742.500594px;}
.y1d2{bottom:745.560596px;}
.ya7{bottom:746.280597px;}
.y2c5{bottom:746.460597px;}
.y200{bottom:746.640597px;}
.y2ec{bottom:746.820597px;}
.y28{bottom:747.000000px;}
.y293{bottom:748.620599px;}
.y101{bottom:749.700600px;}
.y30b{bottom:750.240600px;}
.y189{bottom:751.320601px;}
.y14{bottom:751.500000px;}
.y159{bottom:751.500601px;}
.y32c{bottom:753.120602px;}
.ye2{bottom:754.560604px;}
.y377{bottom:755.280604px;}
.y243{bottom:756.000605px;}
.y242{bottom:756.180605px;}
.yf4{bottom:757.260606px;}
.y25d{bottom:757.620606px;}
.y116{bottom:758.700607px;}
.y1a1{bottom:759.780608px;}
.y211{bottom:762.840610px;}
.y4d{bottom:764.640612px;}
.y1ee{bottom:765.360612px;}
.y1ed{bottom:765.540612px;}
.y272{bottom:765.900613px;}
.y68{bottom:766.125000px;}
.y1ff{bottom:766.620613px;}
.y27{bottom:767.250000px;}
.y30a{bottom:767.700614px;}
.y75{bottom:769.860616px;}
.y188{bottom:771.120617px;}
.y158{bottom:773.100618px;}
.y241{bottom:773.280619px;}
.y2d7{bottom:775.620620px;}
.y217{bottom:775.980621px;}
.y8f{bottom:776.700621px;}
.y131{bottom:776.880622px;}
.y59{bottom:777.960622px;}
.y1a0{bottom:778.140623px;}
.y1d1{bottom:780.120624px;}
.y344{bottom:780.840625px;}
.y1ec{bottom:782.640626px;}
.y2b7{bottom:783.000626px;}
.y2eb{bottom:783.180627px;}
.y13{bottom:784.125000px;}
.y100{bottom:784.260627px;}
.y1fe{bottom:786.420629px;}
.y32b{bottom:787.500630px;}
.ya6{bottom:787.680630px;}
.y26{bottom:788.625000px;}
.ye1{bottom:788.940631px;}
.y3ae{bottom:789.300631px;}
.y187{bottom:789.480632px;}
.y392{bottom:789.660632px;}
.y376{bottom:789.840632px;}
.y36e{bottom:790.020632px;}
.y240{bottom:791.460633px;}
.yf3{bottom:791.640633px;}
.y25c{bottom:792.000634px;}
.y292{bottom:792.180634px;}
.y115{bottom:793.260635px;}
.y157{bottom:794.700636px;}
.y19f{bottom:795.420636px;}
.y210{bottom:797.400638px;}
.y1b8{bottom:797.580638px;}
.y318{bottom:802.260642px;}
.y1eb{bottom:802.620642px;}
.y74{bottom:804.240643px;}
.y309{bottom:806.040645px;}
.y1fd{bottom:806.400645px;}
.y186{bottom:806.760645px;}
.y25{bottom:808.875000px;}
.y2d6{bottom:810.180648px;}
.y216{bottom:810.540648px;}
.y8e{bottom:811.260649px;}
.y3da{bottom:811.440649px;}
.y12{bottom:812.250000px;}
.y4c{bottom:812.880650px;}
.y343{bottom:815.400652px;}
.y156{bottom:816.480653px;}
.y3ad{bottom:817.920654px;}
.y391{bottom:818.280655px;}
.y271{bottom:818.460655px;}
.yff{bottom:818.640655px;}
.y291{bottom:819.360655px;}
.y1ea{bottom:820.980657px;}
.y308{bottom:823.140659px;}
.ye0{bottom:823.500659px;}
.ybd{bottom:823.860659px;}
.y185{bottom:824.940660px;}
.y1fc{bottom:826.200661px;}
.y19e{bottom:827.280662px;}
.y114{bottom:827.640662px;}
.ya5{bottom:829.080663px;}
.y24{bottom:830.250000px;}
.y32a{bottom:831.240665px;}
.y20f{bottom:831.780665px;}
.y1b7{bottom:832.860666px;}
.y1b6{bottom:833.040666px;}
.y2c4{bottom:833.580667px;}
.y25b{bottom:835.740669px;}
.y290{bottom:836.640669px;}
.y3ac{bottom:837.900670px;}
.y155{bottom:838.080670px;}
.y1e9{bottom:838.260671px;}
.y36d{bottom:838.620671px;}
.y73{bottom:838.800671px;}
.yf2{bottom:839.340671px;}
.y307{bottom:841.500673px;}
.y306{bottom:841.680673px;}
.y184{bottom:842.400674px;}
.y19d{bottom:844.560676px;}
.y215{bottom:844.920676px;}
.y8d{bottom:845.640677px;}
.y130{bottom:845.820677px;}
.y1d0{bottom:849.240679px;}
.y67{bottom:849.375000px;}
.y1b5{bottom:850.140680px;}
.y23{bottom:850.500000px;}
.y12a{bottom:853.200683px;}
.ybc{bottom:855.000684px;}
.y28f{bottom:856.620685px;}
.y3ab{bottom:857.700686px;}
.y1e8{bottom:858.060686px;}
.y36c{bottom:858.420687px;}
.y305{bottom:858.780687px;}
.y342{bottom:858.960687px;}
.y154{bottom:859.860688px;}
.y183{bottom:860.580688px;}
.y58{bottom:860.760689px;}
.y4b{bottom:861.300689px;}
.y1fb{bottom:861.840689px;}
.y2ea{bottom:862.200690px;}
.y25a{bottom:862.740690px;}
.y20e{bottom:866.520693px;}
.y1b4{bottom:870.120696px;}
.ya4{bottom:870.480696px;}
.y22{bottom:870.750000px;}
.ydf{bottom:871.200697px;}
.y72{bottom:873.360699px;}
.y28e{bottom:874.980700px;}
.y304{bottom:876.960702px;}
.y303{bottom:877.140702px;}
.y3aa{bottom:877.500702px;}
.y182{bottom:878.040702px;}
.y36b{bottom:878.400703px;}
.y1fa{bottom:879.120703px;}
.y214{bottom:879.480704px;}
.y8c{bottom:880.200704px;}
.y12f{bottom:880.380704px;}
.y153{bottom:881.460705px;}
.y356{bottom:882.000706px;}
.y129{bottom:887.760710px;}
.y1b3{bottom:889.920712px;}
.y21{bottom:892.125000px;}
.y28d{bottom:892.260714px;}
.y302{bottom:894.420716px;}
.ybb{bottom:894.960716px;}
.y181{bottom:896.400717px;}
.y2e9{bottom:896.760717px;}
.y3a9{bottom:897.480718px;}
.y390{bottom:897.840718px;}
.y36a{bottom:898.200719px;}
.y259{bottom:900.180720px;}
.y1cf{bottom:901.800721px;}
.y1ce{bottom:901.980722px;}
.y152{bottom:903.240723px;}
.y113{bottom:905.760725px;}
.y341{bottom:907.560726px;}
.y71{bottom:907.740726px;}
.y1b2{bottom:909.900728px;}
.y28c{bottom:910.440728px;}
.y28b{bottom:910.620728px;}
.ya3{bottom:911.880730px;}
.y20{bottom:912.375000px;}
.y301{bottom:912.780730px;}
.y180{bottom:913.680731px;}
.y213{bottom:914.040731px;}
.y8b{bottom:914.760732px;}
.y3db{bottom:914.940732px;}
.y3a8{bottom:917.280734px;}
.y38f{bottom:917.640734px;}
.y2{bottom:918.000000px;}
.y317{bottom:918.000734px;}
.y369{bottom:918.180735px;}
.y258{bottom:918.540735px;}
.y20d{bottom:919.080735px;}
.y1cd{bottom:919.260735px;}
.y355{bottom:921.780737px;}
.yd6{bottom:922.320738px;}
.y151{bottom:924.840740px;}
.y66{bottom:925.875000px;}
.yba{bottom:926.100741px;}
.y340{bottom:927.540742px;}
.y28a{bottom:927.900742px;}
.yf1{bottom:929.160743px;}
.y1b1{bottom:929.700744px;}
.y300{bottom:930.060744px;}
.y17f{bottom:930.780745px;}
.y128{bottom:931.140745px;}
.y4a{bottom:933.660747px;}
.y1f{bottom:933.750000px;}
.y257{bottom:935.640749px;}
.y316{bottom:936.360749px;}
.y20c{bottom:936.540749px;}
.y3a7{bottom:937.260750px;}
.y38e{bottom:937.620750px;}
.y368{bottom:937.980750px;}
.y1cc{bottom:939.060751px;}
.y112{bottom:940.140752px;}
.y354{bottom:941.760753px;}
.y70{bottom:942.300754px;}
.y57{bottom:943.560755px;}
.y289{bottom:946.080757px;}
.y150{bottom:946.440757px;}
.y33f{bottom:947.340758px;}
.y17e{bottom:948.060758px;}
.y212{bottom:948.420759px;}
.y8a{bottom:949.140759px;}
.y12e{bottom:949.320759px;}
.ya2{bottom:953.280763px;}
.y315{bottom:953.640763px;}
.y256{bottom:953.820763px;}
.y1e{bottom:954.000000px;}
.y255{bottom:954.000763px;}
.y3a6{bottom:955.620764px;}
.y38d{bottom:955.980765px;}
.y20b{bottom:956.340765px;}
.y11{bottom:957.375000px;}
.y1cb{bottom:959.040767px;}
.yde{bottom:960.840769px;}
.y353{bottom:961.560769px;}
.yf0{bottom:963.540771px;}
.y1b0{bottom:965.340772px;}
.y127{bottom:965.700773px;}
.yb9{bottom:966.060773px;}
.y33e{bottom:967.140774px;}
.y14f{bottom:968.220775px;}
.y254{bottom:971.280777px;}
.y3a5{bottom:972.900778px;}
.y6{bottom:973.125000px;}
.y38c{bottom:973.260779px;}
.y314{bottom:973.620779px;}
.y1d{bottom:974.250000px;}
.y111{bottom:974.700780px;}
.y20a{bottom:976.140781px;}
.y6f{bottom:976.860781px;}
.y1ca{bottom:978.840783px;}
.yf{bottom:981.000000px;}
.y352{bottom:981.540785px;}
.y288{bottom:981.900786px;}
.y89{bottom:983.700787px;}
.y3d9{bottom:983.880787px;}
.y56{bottom:984.960788px;}
.ye{bottom:986.625000px;}
.y33d{bottom:987.120790px;}
.y253{bottom:989.460792px;}
.y14e{bottom:989.820792px;}
.y313{bottom:993.420795px;}
.ya1{bottom:994.680796px;}
.ydd{bottom:995.400796px;}
.y5{bottom:995.625000px;}
.y209{bottom:996.120797px;}
.yb8{bottom:997.200798px;}
.yef{bottom:998.100798px;}
.y1c9{bottom:998.640799px;}
.y287{bottom:999.000799px;}
.y351{bottom:999.900800px;}
.y143{bottom:1000.260800px;}
.y252{bottom:1006.920806px;}
.y3a4{bottom:1008.360807px;}
.y38b{bottom:1008.900807px;}
.y110{bottom:1009.260807px;}
.y14d{bottom:1011.600809px;}
.y3{bottom:1012.500000px;}
.y312{bottom:1013.400811px;}
.yd{bottom:1013.625000px;}
.y1c{bottom:1015.875000px;}
.y208{bottom:1015.920813px;}
.y1c8{bottom:1017.000814px;}
.y88{bottom:1018.260815px;}
.y13d{bottom:1018.440815px;}
.y65{bottom:1022.625000px;}
.y251{bottom:1025.280820px;}
.y55{bottom:1026.360821px;}
.y49{bottom:1030.320824px;}
.y14c{bottom:1033.200827px;}
.y1c7{bottom:1034.280827px;}
.y286{bottom:1034.640828px;}
.ya0{bottom:1036.080829px;}
.yb7{bottom:1037.160830px;}
.y1b{bottom:1037.250000px;}
.ydc{bottom:1039.500832px;}
.y250{bottom:1042.560834px;}
.y3a3{bottom:1042.920834px;}
.y38a{bottom:1043.280835px;}
.y126{bottom:1043.640835px;}
.yc{bottom:1045.125000px;}
.yee{bottom:1045.800837px;}
.y14b{bottom:1051.560841px;}
.y87{bottom:1052.640842px;}
.y12d{bottom:1052.820842px;}
.y1a{bottom:1057.500000px;}
.y1{bottom:1066.500000px;}
.yb6{bottom:1068.300855px;}
.y14a{bottom:1068.840855px;}
.y64{bottom:1071.000000px;}
.y9f{bottom:1077.480862px;}
.y47{bottom:1077.750000px;}
.y142{bottom:1078.200863px;}
.y48{bottom:1078.560863px;}
.y19{bottom:1078.875000px;}
.y6e{bottom:1084.500868px;}
.y86{bottom:1087.200870px;}
.y125{bottom:1087.380870px;}
.y18{bottom:1099.125000px;}
.yed{bottom:1104.480884px;}
.ydb{bottom:1113.300891px;}
.yb5{bottom:1118.880895px;}
.y17{bottom:1119.375000px;}
.y85{bottom:1121.760897px;}
.y124{bottom:1121.940898px;}
.y16{bottom:1140.750000px;}
.y3dc{bottom:1172.700938px;}
.yc2{bottom:1176.120941px;}
.y6c{bottom:1193.400955px;}
.h12{height:20.520000px;}
.h2{height:23.625000px;}
.h7{height:27.000000px;}
.h15{height:37.052670px;}
.hf{height:39.830305px;}
.h17{height:47.988320px;}
.h13{height:52.128042px;}
.h10{height:53.352043px;}
.ha{height:56.712285px;}
.h11{height:56.951326px;}
.h14{height:67.292694px;}
.hc{height:68.328055px;}
.hb{height:68.616055px;}
.h1{height:70.664062px;}
.h4{height:75.093750px;}
.h9{height:79.943824px;}
.h5{height:85.060547px;}
.h3{height:89.173828px;}
.h18{height:90.876313px;}
.h6{height:98.560547px;}
.h1d{height:124.631380px;}
.h1a{height:125.112340px;}
.h1b{height:125.351380px;}
.h19{height:125.832341px;}
.h1c{height:126.071381px;}
.hd{height:173.654297px;}
.h16{height:225.281250px;}
.he{height:300.375000px;}
.h0{height:1188.000000px;}
.h8{height:1263.000000px;}
.wa{width:10.080000px;}
.w2{width:13.500000px;}
.wb{width:20.160000px;}
.wc{width:30.240000px;}
.w5{width:72.000000px;}
.w6{width:82.125000px;}
.w4{width:218.250000px;}
.w3{width:230.625000px;}
.w1{width:263.250000px;}
.w7{width:644.625000px;}
.w9{width:892.500000px;}
.w8{width:894.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.125000px;}
.x51{left:136.560395px;}
.x46{left:141.600393px;}
.x50{left:147.540391px;}
.x1a{left:150.419940px;}
.x8f{left:152.759939px;}
.xfb{left:154.919938px;}
.x91{left:155.999938px;}
.x47{left:157.439937px;}
.x90{left:159.959936px;}
.x26{left:163.739935px;}
.xea{left:165.359934px;}
.x1d{left:166.619933px;}
.x6b{left:167.699933px;}
.x10e{left:170.399932px;}
.x53{left:171.839931px;}
.x52{left:173.099931px;}
.xb2{left:174.539930px;}
.x11{left:176.699929px;}
.xc{left:178.875000px;}
.x21{left:180.119928px;}
.xc8{left:181.199928px;}
.xd7{left:182.279927px;}
.xdf{left:184.259926px;}
.x15{left:185.519926px;}
.x10{left:187.139925px;}
.xda{left:188.219925px;}
.x2e{left:190.739924px;}
.x72{left:192.539923px;}
.x1f{left:193.619923px;}
.xb1{left:196.139922px;}
.x2b{left:197.579921px;}
.xce{left:199.019920px;}
.x2{left:200.250000px;}
.x10c{left:202.259919px;}
.x1b{left:203.519919px;}
.xba{left:205.139918px;}
.x22{left:207.119917px;}
.x5{left:208.125000px;}
.x97{left:210.179916px;}
.xb9{left:211.439915px;}
.x29{left:216.839913px;}
.x20{left:219.539912px;}
.x23{left:220.619912px;}
.xe{left:221.699911px;}
.x2c{left:224.579910px;}
.x115{left:227.279909px;}
.xc3{left:230.339908px;}
.xc1{left:231.779907px;}
.xc2{left:233.039907px;}
.xf9{left:234.479906px;}
.xc4{left:241.679903px;}
.x19{left:243.119903px;}
.x25{left:246.539901px;}
.x92{left:247.619901px;}
.x2f{left:251.579899px;}
.xf2{left:255.179898px;}
.xf4{left:257.699897px;}
.x45{left:258.779896px;}
.x13{left:260.399896px;}
.xde{left:261.839895px;}
.xe0{left:263.459895px;}
.xcf{left:264.719894px;}
.x30{left:266.339893px;}
.x3f{left:268.679893px;}
.x28{left:269.939892px;}
.x89{left:271.019892px;}
.x77{left:272.099891px;}
.x18{left:273.539891px;}
.xd3{left:274.979890px;}
.x17{left:276.599889px;}
.x2a{left:277.679889px;}
.xc9{left:280.379888px;}
.x6c{left:281.819887px;}
.xb3{left:283.259887px;}
.x43{left:285.419886px;}
.x44{left:286.679885px;}
.xbb{left:288.479885px;}
.x58{left:289.739884px;}
.xfc{left:290.819884px;}
.x8{left:292.500000px;}
.x101{left:295.139882px;}
.xf{left:296.759881px;}
.xab{left:299.099880px;}
.x24{left:300.539880px;}
.xb5{left:306.119878px;}
.x96{left:310.079876px;}
.x114{left:311.699875px;}
.x110{left:312.779875px;}
.x7{left:315.000000px;}
.x109{left:316.919873px;}
.x95{left:318.359873px;}
.x9b{left:319.979872px;}
.x10d{left:321.959871px;}
.x32{left:323.759870px;}
.xa4{left:324.839870px;}
.x9a{left:330.959868px;}
.x93{left:332.759867px;}
.xa3{left:335.819866px;}
.x54{left:336.899865px;}
.xef{left:339.239864px;}
.x36{left:341.939863px;}
.x8b{left:344.279862px;}
.x48{left:346.259861px;}
.xed{left:350.219860px;}
.xf5{left:352.199859px;}
.x9e{left:355.259858px;}
.x9d{left:356.519857px;}
.x31{left:357.599857px;}
.xa7{left:360.119856px;}
.xa6{left:361.379855px;}
.x9c{left:363.179855px;}
.xf6{left:364.259854px;}
.x5a{left:366.239854px;}
.xa5{left:368.039853px;}
.x6{left:371.250000px;}
.x5b{left:373.439851px;}
.xb{left:374.625000px;}
.x2d{left:376.319849px;}
.x78{left:378.299849px;}
.xf1{left:380.099848px;}
.x40{left:383.339847px;}
.x111{left:385.139846px;}
.x6d{left:388.199845px;}
.x59{left:391.079844px;}
.x5c{left:396.119842px;}
.xfd{left:397.199841px;}
.x39{left:398.639841px;}
.x38{left:401.159840px;}
.x102{left:404.579838px;}
.x37{left:406.019838px;}
.x14{left:407.279837px;}
.x1e{left:415.739834px;}
.x3a{left:418.619833px;}
.xac{left:421.499831px;}
.x12{left:422.939831px;}
.xe4{left:424.019830px;}
.xff{left:425.999830px;}
.x55{left:427.259829px;}
.x33{left:429.239828px;}
.x9{left:430.875000px;}
.xa9{left:432.479827px;}
.x16{left:433.919826px;}
.x49{left:436.619825px;}
.xd0{left:437.879825px;}
.xe6{left:439.859824px;}
.x3d{left:441.119824px;}
.x3c{left:443.639823px;}
.xca{left:445.079822px;}
.x3b{left:446.159822px;}
.xa0{left:448.859820px;}
.x76{left:451.739819px;}
.x27{left:453.900600px;}
.x34{left:455.625000px;}
.x10a{left:458.399817px;}
.x108{left:460.379816px;}
.x3{left:463.500000px;}
.x104{left:464.519814px;}
.xe5{left:467.579813px;}
.x1c{left:469.019812px;}
.xf7{left:470.459812px;}
.x5e{left:472.619811px;}
.xe1{left:474.599810px;}
.x113{left:475.859810px;}
.x35{left:477.120600px;}
.x3e{left:478.560600px;}
.x41{left:480.359808px;}
.x7a{left:481.799807px;}
.xf3{left:483.239807px;}
.x79{left:486.659805px;}
.x10f{left:492.599803px;}
.x6e{left:494.399802px;}
.xc5{left:496.379801px;}
.x5d{left:497.459801px;}
.x86{left:498.539801px;}
.xa8{left:500.699800px;}
.x7b{left:502.319799px;}
.xfe{left:503.399799px;}
.x9f{left:505.019798px;}
.xee{left:506.639797px;}
.xd4{left:508.979796px;}
.xdb{left:510.419796px;}
.x105{left:511.679795px;}
.xb6{left:512.759795px;}
.xd8{left:514.559794px;}
.x56{left:517.619793px;}
.x94{left:518.879792px;}
.xe9{left:519.959792px;}
.xec{left:521.219792px;}
.x4a{left:526.259789px;}
.x8c{left:530.399788px;}
.xb4{left:534.719786px;}
.xad{left:538.499785px;}
.x10b{left:542.999783px;}
.xaf{left:548.399781px;}
.xaa{left:549.479780px;}
.x42{left:559.019776px;}
.xfa{left:562.259775px;}
.x99{left:569.099772px;}
.x98{left:570.359772px;}
.xa2{left:571.979771px;}
.xeb{left:573.419771px;}
.xf8{left:576.839769px;}
.x60{left:578.819768px;}
.xa1{left:581.339767px;}
.x7d{left:582.779767px;}
.xdd{left:584.759766px;}
.x61{left:586.019766px;}
.x73{left:587.819765px;}
.xd9{left:588.899764px;}
.xd1{left:591.959763px;}
.xe7{left:594.299762px;}
.x84{left:595.559762px;}
.x7c{left:598.439761px;}
.x87{left:599.699760px;}
.x6f{left:600.779760px;}
.x57{left:602.579759px;}
.x5f{left:603.659759px;}
.xcd{left:604.919758px;}
.x62{left:608.699757px;}
.x4b{left:611.939755px;}
.x106{left:618.059753px;}
.x8d{left:620.579752px;}
.x107{left:626.339749px;}
.xbc{left:628.679749px;}
.xb7{left:629.759748px;}
.xbf{left:639.299744px;}
.xbd{left:640.379744px;}
.x100{left:643.799742px;}
.xe2{left:645.779742px;}
.xf0{left:647.399741px;}
.xa{left:649.125000px;}
.xdc{left:651.539739px;}
.xc6{left:653.519739px;}
.xae{left:660.539736px;}
.xd5{left:663.059735px;}
.xd6{left:668.639733px;}
.xd2{left:671.879731px;}
.xe8{left:674.039730px;}
.xb0{left:675.839730px;}
.x7f{left:678.539729px;}
.x7e{left:681.419727px;}
.x4c{left:682.679727px;}
.x64{left:685.199726px;}
.x112{left:688.259725px;}
.x85{left:691.139724px;}
.x65{left:692.399723px;}
.x74{left:694.199722px;}
.x4d{left:697.079721px;}
.x80{left:699.059720px;}
.x8e{left:704.819718px;}
.x70{left:707.159717px;}
.x63{left:710.219716px;}
.x66{left:715.079714px;}
.x103{left:725.699710px;}
.x4{left:726.750000px;}
.xe3{left:729.659708px;}
.xc7{left:732.539707px;}
.xd{left:741.375000px;}
.xcb{left:742.799703px;}
.xcc{left:748.379701px;}
.xb8{left:751.979699px;}
.x4e{left:763.139695px;}
.xc0{left:766.919693px;}
.xbe{left:767.999693px;}
.x83{left:774.119690px;}
.x82{left:776.999689px;}
.x8a{left:778.079689px;}
.x68{left:786.179686px;}
.x4f{left:787.439685px;}
.x81{left:789.779684px;}
.x88{left:791.039684px;}
.x69{left:793.199683px;}
.x75{left:795.179682px;}
.x71{left:808.139677px;}
.x67{left:811.019676px;}
.x6a{left:816.059674px;}
@media print{
.v2{vertical-align:-236.000000pt;}
.v5{vertical-align:-26.880022pt;}
.v1{vertical-align:-12.000000pt;}
.v4{vertical-align:-2.560002pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880022pt;}
.v7{vertical-align:60.160048pt;}
.v6{vertical-align:61.440049pt;}
.ls3f{letter-spacing:-2.688000pt;}
.ls88{letter-spacing:-2.000000pt;}
.ls35{letter-spacing:-1.792000pt;}
.ls9{letter-spacing:-1.679467pt;}
.ls34{letter-spacing:-1.653333pt;}
.ls32{letter-spacing:-1.312000pt;}
.lsc{letter-spacing:-1.128000pt;}
.lsf{letter-spacing:-0.938667pt;}
.ls10{letter-spacing:-0.883200pt;}
.ls6{letter-spacing:-0.881067pt;}
.ls8{letter-spacing:-0.788800pt;}
.lsd{letter-spacing:-0.749333pt;}
.ls48{letter-spacing:-0.688000pt;}
.ls39{letter-spacing:-0.496000pt;}
.ls7b{letter-spacing:-0.467200pt;}
.lsa{letter-spacing:-0.461867pt;}
.ls82{letter-spacing:-0.437333pt;}
.lse{letter-spacing:-0.377067pt;}
.ls2f{letter-spacing:-0.366400pt;}
.ls30{letter-spacing:-0.358933pt;}
.ls2a{letter-spacing:-0.358400pt;}
.ls4f{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.345067pt;}
.ls6b{letter-spacing:-0.323200pt;}
.lsb3{letter-spacing:-0.305600pt;}
.ls38{letter-spacing:-0.274667pt;}
.ls95{letter-spacing:-0.268800pt;}
.lsbf{letter-spacing:-0.262400pt;}
.ls3c{letter-spacing:-0.243200pt;}
.ls5f{letter-spacing:-0.212800pt;}
.ls46{letter-spacing:-0.185600pt;}
.ls26{letter-spacing:-0.164267pt;}
.lsb{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.149333pt;}
.ls61{letter-spacing:-0.130667pt;}
.ls3b{letter-spacing:-0.102400pt;}
.ls63{letter-spacing:-0.101333pt;}
.ls6f{letter-spacing:-0.089600pt;}
.ls45{letter-spacing:-0.082667pt;}
.ls4d{letter-spacing:-0.046933pt;}
.ls4a{letter-spacing:-0.032000pt;}
.ls3e{letter-spacing:-0.030933pt;}
.ls77{letter-spacing:-0.027200pt;}
.ls65{letter-spacing:-0.022933pt;}
.ls8f{letter-spacing:-0.021333pt;}
.ls16{letter-spacing:-0.008533pt;}
.ls41{letter-spacing:-0.006933pt;}
.ls75{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.007467pt;}
.ls3d{letter-spacing:0.018667pt;}
.ls72{letter-spacing:0.019733pt;}
.ls29{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.022933pt;}
.ls1a{letter-spacing:0.041600pt;}
.ls97{letter-spacing:0.047360pt;}
.ls51{letter-spacing:0.049067pt;}
.ls66{letter-spacing:0.054400pt;}
.ls1f{letter-spacing:0.058133pt;}
.ls53{letter-spacing:0.058667pt;}
.ls24{letter-spacing:0.060267pt;}
.ls68{letter-spacing:0.060800pt;}
.ls4e{letter-spacing:0.063467pt;}
.ls5d{letter-spacing:0.067200pt;}
.ls67{letter-spacing:0.073067pt;}
.ls52{letter-spacing:0.086933pt;}
.ls74{letter-spacing:0.093867pt;}
.ls1b{letter-spacing:0.103467pt;}
.lsbd{letter-spacing:0.104000pt;}
.ls69{letter-spacing:0.105067pt;}
.ls43{letter-spacing:0.106667pt;}
.ls8e{letter-spacing:0.110400pt;}
.ls5e{letter-spacing:0.116267pt;}
.ls80{letter-spacing:0.128000pt;}
.ls7f{letter-spacing:0.135467pt;}
.ls21{letter-spacing:0.139200pt;}
.ls2d{letter-spacing:0.144533pt;}
.ls5b{letter-spacing:0.145600pt;}
.ls56{letter-spacing:0.147200pt;}
.ls71{letter-spacing:0.149867pt;}
.ls40{letter-spacing:0.152000pt;}
.ls42{letter-spacing:0.155733pt;}
.ls8a{letter-spacing:0.160000pt;}
.ls5c{letter-spacing:0.162133pt;}
.ls58{letter-spacing:0.163733pt;}
.ls37{letter-spacing:0.165867pt;}
.ls6d{letter-spacing:0.167467pt;}
.ls73{letter-spacing:0.173867pt;}
.ls79{letter-spacing:0.176533pt;}
.ls20{letter-spacing:0.179200pt;}
.ls2e{letter-spacing:0.180267pt;}
.ls62{letter-spacing:0.181333pt;}
.lsad{letter-spacing:0.183680pt;}
.ls70{letter-spacing:0.189333pt;}
.ls2b{letter-spacing:0.196800pt;}
.ls44{letter-spacing:0.197867pt;}
.ls7a{letter-spacing:0.204800pt;}
.ls1d{letter-spacing:0.216533pt;}
.ls85{letter-spacing:0.218667pt;}
.ls57{letter-spacing:0.220800pt;}
.ls6e{letter-spacing:0.224533pt;}
.ls6a{letter-spacing:0.227200pt;}
.ls27{letter-spacing:0.230400pt;}
.ls25{letter-spacing:0.239467pt;}
.ls23{letter-spacing:0.246400pt;}
.ls93{letter-spacing:0.249600pt;}
.ls96{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.258667pt;}
.ls28{letter-spacing:0.261333pt;}
.ls78{letter-spacing:0.262933pt;}
.ls47{letter-spacing:0.265600pt;}
.ls76{letter-spacing:0.278933pt;}
.ls7e{letter-spacing:0.283733pt;}
.ls7c{letter-spacing:0.285867pt;}
.ls36{letter-spacing:0.292267pt;}
.ls33{letter-spacing:0.294400pt;}
.ls1c{letter-spacing:0.312000pt;}
.ls17{letter-spacing:0.317867pt;}
.ls83{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.325867pt;}
.ls4c{letter-spacing:0.331200pt;}
.ls4b{letter-spacing:0.333333pt;}
.ls60{letter-spacing:0.343467pt;}
.ls7d{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.354133pt;}
.ls55{letter-spacing:0.358933pt;}
.ls64{letter-spacing:0.359467pt;}
.ls49{letter-spacing:0.363733pt;}
.ls14{letter-spacing:0.380267pt;}
.ls5a{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.425067pt;}
.ls59{letter-spacing:0.429333pt;}
.ls54{letter-spacing:0.437333pt;}
.ls90{letter-spacing:0.525867pt;}
.ls12{letter-spacing:0.588267pt;}
.ls0{letter-spacing:0.632000pt;}
.ls15{letter-spacing:0.665600pt;}
.ls87{letter-spacing:0.681600pt;}
.ls19{letter-spacing:0.802133pt;}
.ls22{letter-spacing:0.864000pt;}
.ls6c{letter-spacing:0.896000pt;}
.ls18{letter-spacing:1.070400pt;}
.lsb5{letter-spacing:1.232641pt;}
.ls31{letter-spacing:1.312000pt;}
.ls1{letter-spacing:1.552000pt;}
.ls3{letter-spacing:1.744000pt;}
.lsc0{letter-spacing:2.000000pt;}
.lsb9{letter-spacing:2.512642pt;}
.lsbb{letter-spacing:3.152643pt;}
.lsb4{letter-spacing:3.792643pt;}
.ls92{letter-spacing:4.064000pt;}
.ls89{letter-spacing:4.472324pt;}
.ls8b{letter-spacing:5.072644pt;}
.lsb8{letter-spacing:7.632646pt;}
.ls8c{letter-spacing:8.272647pt;}
.lsb6{letter-spacing:9.552648pt;}
.lsba{letter-spacing:19.152655pt;}
.lsb7{letter-spacing:22.352658pt;}
.ls11{letter-spacing:168.000000pt;}
.ls99{letter-spacing:177.689102pt;}
.lsa3{letter-spacing:183.449107pt;}
.ls9b{letter-spacing:184.089107pt;}
.ls98{letter-spacing:188.569111pt;}
.lsa6{letter-spacing:204.983844pt;}
.ls9a{letter-spacing:207.769126pt;}
.lsa7{letter-spacing:219.703856pt;}
.lsa8{letter-spacing:221.849137pt;}
.lsa9{letter-spacing:223.543859pt;}
.lsab{letter-spacing:228.023862pt;}
.lsa1{letter-spacing:240.409152pt;}
.lsaa{letter-spacing:247.449158pt;}
.lsac{letter-spacing:262.169170pt;}
.lsa5{letter-spacing:263.863891pt;}
.lsae{letter-spacing:265.783893pt;}
.ls9e{letter-spacing:268.569175pt;}
.lsa0{letter-spacing:274.969180pt;}
.lsb1{letter-spacing:280.503904pt;}
.lsaf{letter-spacing:281.143905pt;}
.lsa2{letter-spacing:289.689192pt;}
.lsb0{letter-spacing:318.263935pt;}
.ls9c{letter-spacing:327.449222pt;}
.ls9f{letter-spacing:436.024029pt;}
.ls9d{letter-spacing:473.784059pt;}
.lsa4{letter-spacing:488.504071pt;}
.lsbc{letter-spacing:648.000000pt;}
.ls81{letter-spacing:672.000000pt;}
.ls86{letter-spacing:700.000000pt;}
.lsbe{letter-spacing:812.000000pt;}
.ls94{letter-spacing:876.000000pt;}
.ls8d{letter-spacing:988.000000pt;}
.lsb2{letter-spacing:1128.000000pt;}
.ls91{letter-spacing:1352.000000pt;}
.ls84{letter-spacing:1544.000000pt;}
.ws1cf{word-spacing:-55.376000pt;}
.ws8e{word-spacing:-54.057600pt;}
.ws97{word-spacing:-53.625600pt;}
.ws93{word-spacing:-53.486400pt;}
.ws92{word-spacing:-53.354667pt;}
.ws1ce{word-spacing:-53.113600pt;}
.ws98{word-spacing:-53.107200pt;}
.ws1cc{word-spacing:-53.070400pt;}
.ws87{word-spacing:-52.938667pt;}
.ws8f{word-spacing:-51.376000pt;}
.ws95{word-spacing:-49.728040pt;}
.ws8b{word-spacing:-41.594273pt;}
.ws8c{word-spacing:-41.274273pt;}
.ws96{word-spacing:-23.663379pt;}
.ws85{word-spacing:-20.816657pt;}
.ws1e{word-spacing:-19.104000pt;}
.ws5a{word-spacing:-18.688000pt;}
.ws0{word-spacing:-18.424000pt;}
.ws20{word-spacing:-18.104000pt;}
.ws1cd{word-spacing:-18.048014pt;}
.ws8d{word-spacing:-17.920014pt;}
.ws86{word-spacing:-17.792014pt;}
.ws1d{word-spacing:-17.627733pt;}
.ws23{word-spacing:-17.440000pt;}
.ws1f{word-spacing:-16.480000pt;}
.ws21{word-spacing:-16.138667pt;}
.ws22{word-spacing:-16.000000pt;}
.ws158{word-spacing:-14.951052pt;}
.ws91{word-spacing:-14.767372pt;}
.ws90{word-spacing:-9.607688pt;}
.wsc{word-spacing:-2.971733pt;}
.ws2{word-spacing:-2.312000pt;}
.ws5c{word-spacing:-2.229333pt;}
.ws32{word-spacing:-2.146133pt;}
.ws69{word-spacing:-1.959467pt;}
.ws84{word-spacing:-1.908267pt;}
.ws3b{word-spacing:-1.850133pt;}
.ws8{word-spacing:-1.814933pt;}
.ws5{word-spacing:-1.792000pt;}
.ws82{word-spacing:-1.789867pt;}
.ws33{word-spacing:-1.720533pt;}
.ws25{word-spacing:-1.720000pt;}
.ws38{word-spacing:-1.689600pt;}
.ws24{word-spacing:-1.689067pt;}
.ws44{word-spacing:-1.656533pt;}
.ws37{word-spacing:-1.650667pt;}
.ws6f{word-spacing:-1.607467pt;}
.ws3{word-spacing:-1.580267pt;}
.ws3f{word-spacing:-1.571200pt;}
.ws49{word-spacing:-1.557333pt;}
.ws75{word-spacing:-1.554667pt;}
.ws35{word-spacing:-1.517333pt;}
.ws70{word-spacing:-1.512533pt;}
.ws67{word-spacing:-1.468800pt;}
.ws7{word-spacing:-1.446933pt;}
.ws2d{word-spacing:-1.425600pt;}
.ws68{word-spacing:-1.423467pt;}
.ws4e{word-spacing:-1.422933pt;}
.ws8a{word-spacing:-1.376000pt;}
.ws58{word-spacing:-1.364800pt;}
.ws2f{word-spacing:-1.359467pt;}
.ws5f{word-spacing:-1.357867pt;}
.ws4d{word-spacing:-1.325333pt;}
.ws7d{word-spacing:-1.324800pt;}
.ws55{word-spacing:-1.317867pt;}
.ws4f{word-spacing:-1.250667pt;}
.ws4b{word-spacing:-1.232533pt;}
.ws5d{word-spacing:-1.212267pt;}
.ws72{word-spacing:-1.165867pt;}
.ws77{word-spacing:-1.147733pt;}
.ws88{word-spacing:-1.144000pt;}
.ws4{word-spacing:-1.128000pt;}
.ws51{word-spacing:-1.123200pt;}
.ws63{word-spacing:-1.118933pt;}
.ws4a{word-spacing:-1.104000pt;}
.ws66{word-spacing:-1.096000pt;}
.ws6a{word-spacing:-1.093333pt;}
.ws6e{word-spacing:-1.084800pt;}
.ws7c{word-spacing:-1.073600pt;}
.ws83{word-spacing:-1.070400pt;}
.ws79{word-spacing:-1.054933pt;}
.ws64{word-spacing:-1.008000pt;}
.ws18{word-spacing:-1.000000pt;}
.ws6d{word-spacing:-0.981333pt;}
.ws48{word-spacing:-0.957867pt;}
.ws74{word-spacing:-0.955733pt;}
.ws7f{word-spacing:-0.954133pt;}
.ws7a{word-spacing:-0.937600pt;}
.ws60{word-spacing:-0.890667pt;}
.ws3e{word-spacing:-0.852800pt;}
.ws2b{word-spacing:-0.833600pt;}
.ws80{word-spacing:-0.810667pt;}
.ws7b{word-spacing:-0.768533pt;}
.ws30{word-spacing:-0.752533pt;}
.wse{word-spacing:-0.750933pt;}
.ws56{word-spacing:-0.750400pt;}
.ws34{word-spacing:-0.726933pt;}
.ws31{word-spacing:-0.675200pt;}
.wsb{word-spacing:-0.666133pt;}
.ws61{word-spacing:-0.651200pt;}
.ws7e{word-spacing:-0.622933pt;}
.ws53{word-spacing:-0.619200pt;}
.ws6b{word-spacing:-0.605867pt;}
.ws41{word-spacing:-0.597867pt;}
.ws5b{word-spacing:-0.579200pt;}
.ws28{word-spacing:-0.488533pt;}
.ws3a{word-spacing:-0.477333pt;}
.ws73{word-spacing:-0.457067pt;}
.ws4c{word-spacing:-0.426667pt;}
.ws52{word-spacing:-0.411733pt;}
.ws50{word-spacing:-0.397333pt;}
.wsd{word-spacing:-0.378667pt;}
.ws2c{word-spacing:-0.372267pt;}
.ws42{word-spacing:-0.347733pt;}
.ws9{word-spacing:-0.339200pt;}
.ws2a{word-spacing:-0.336533pt;}
.ws81{word-spacing:-0.259200pt;}
.ws65{word-spacing:-0.252800pt;}
.ws10{word-spacing:-0.244800pt;}
.ws39{word-spacing:-0.215467pt;}
.ws57{word-spacing:-0.212267pt;}
.ws71{word-spacing:-0.211733pt;}
.ws54{word-spacing:-0.208533pt;}
.wsf{word-spacing:-0.189333pt;}
.ws43{word-spacing:-0.121067pt;}
.ws78{word-spacing:-0.050133pt;}
.ws1{word-spacing:0.000000pt;}
.ws45{word-spacing:0.004800pt;}
.ws29{word-spacing:0.046400pt;}
.ws94{word-spacing:0.098133pt;}
.ws40{word-spacing:0.214933pt;}
.ws17{word-spacing:0.222933pt;}
.ws62{word-spacing:0.230933pt;}
.ws19{word-spacing:0.267733pt;}
.ws26{word-spacing:0.340800pt;}
.ws3c{word-spacing:0.420800pt;}
.ws59{word-spacing:0.435200pt;}
.wsa{word-spacing:0.551467pt;}
.ws13{word-spacing:0.648000pt;}
.ws6{word-spacing:0.656000pt;}
.ws36{word-spacing:0.704000pt;}
.ws89{word-spacing:0.832000pt;}
.ws11{word-spacing:1.000000pt;}
.ws1c{word-spacing:1.315733pt;}
.ws47{word-spacing:1.344000pt;}
.ws12{word-spacing:1.989867pt;}
.ws76{word-spacing:2.213333pt;}
.ws6c{word-spacing:2.297600pt;}
.ws5e{word-spacing:2.338667pt;}
.ws46{word-spacing:2.393600pt;}
.ws27{word-spacing:2.566400pt;}
.ws2e{word-spacing:2.566933pt;}
.ws16{word-spacing:3.577600pt;}
.ws1b{word-spacing:4.648000pt;}
.ws3d{word-spacing:4.896000pt;}
.ws15{word-spacing:20.330133pt;}
.ws14{word-spacing:21.393067pt;}
.ws103{word-spacing:61.623729pt;}
.ws108{word-spacing:100.616400pt;}
.ws178{word-spacing:100.663761pt;}
.ws19e{word-spacing:110.856409pt;}
.wsde{word-spacing:112.865370pt;}
.ws107{word-spacing:113.463771pt;}
.wse2{word-spacing:113.920091pt;}
.wsf4{word-spacing:114.560092pt;}
.wsf7{word-spacing:115.200092pt;}
.wsed{word-spacing:116.023773pt;}
.wsf9{word-spacing:116.065373pt;}
.wsee{word-spacing:116.663773pt;}
.wsf8{word-spacing:117.161694pt;}
.ws117{word-spacing:117.943774pt;}
.wsf5{word-spacing:118.121694pt;}
.wsfa{word-spacing:119.176415pt;}
.wsc5{word-spacing:120.456416pt;}
.ws167{word-spacing:120.503776pt;}
.ws10b{word-spacing:121.143777pt;}
.wsfb{word-spacing:121.600097pt;}
.wsf3{word-spacing:123.520099pt;}
.wsea{word-spacing:124.160099pt;}
.wsf6{word-spacing:124.385380pt;}
.wsef{word-spacing:125.623780pt;}
.wse7{word-spacing:126.583781pt;}
.ws199{word-spacing:127.490662pt;}
.ws102{word-spacing:128.183783pt;}
.ws1a{word-spacing:128.645867pt;}
.wsb7{word-spacing:128.776423pt;}
.ws9a{word-spacing:129.280103pt;}
.wsfc{word-spacing:129.920104pt;}
.wsbd{word-spacing:130.103784pt;}
.wse0{word-spacing:130.560104pt;}
.wsbe{word-spacing:130.743785pt;}
.ws154{word-spacing:131.058025pt;}
.ws10c{word-spacing:131.383785pt;}
.ws10e{word-spacing:132.023786pt;}
.wsf1{word-spacing:132.663786pt;}
.wse3{word-spacing:132.841706pt;}
.wse9{word-spacing:133.896427pt;}
.wse1{word-spacing:135.816429pt;}
.ws99{word-spacing:136.456429pt;}
.ws115{word-spacing:136.503789pt;}
.ws106{word-spacing:137.143790pt;}
.wse5{word-spacing:137.600110pt;}
.wsf0{word-spacing:137.783790pt;}
.wse8{word-spacing:137.825390pt;}
.wse4{word-spacing:139.105391pt;}
.wse6{word-spacing:139.561712pt;}
.ws13f{word-spacing:139.656432pt;}
.ws114{word-spacing:140.983793pt;}
.wsa0{word-spacing:143.721715pt;}
.wsc1{word-spacing:144.823796pt;}
.wsad{word-spacing:146.103797pt;}
.ws11e{word-spacing:146.418037pt;}
.ws124{word-spacing:146.560117pt;}
.wsaf{word-spacing:147.058038pt;}
.ws12e{word-spacing:147.383798pt;}
.ws1b9{word-spacing:149.303799pt;}
.wsbc{word-spacing:149.943800pt;}
.wsb3{word-spacing:150.583800pt;}
.ws12f{word-spacing:150.898041pt;}
.ws116{word-spacing:151.223801pt;}
.ws100{word-spacing:151.863801pt;}
.ws9b{word-spacing:153.825403pt;}
.ws125{word-spacing:154.376444pt;}
.ws144{word-spacing:154.423804pt;}
.ws9f{word-spacing:154.880124pt;}
.wsff{word-spacing:155.063804pt;}
.ws128{word-spacing:155.703805pt;}
.wsb6{word-spacing:156.343805pt;}
.wsa4{word-spacing:156.385405pt;}
.wsc2{word-spacing:158.216447pt;}
.ws105{word-spacing:159.543808pt;}
.ws126{word-spacing:161.138049pt;}
.wsdf{word-spacing:162.056450pt;}
.ws153{word-spacing:164.616452pt;}
.wsc0{word-spacing:164.663812pt;}
.ws147{word-spacing:164.978052pt;}
.ws139{word-spacing:165.303812pt;}
.ws119{word-spacing:165.618052pt;}
.ws12b{word-spacing:165.943813pt;}
.wsaa{word-spacing:166.583813pt;}
.ws173{word-spacing:167.223814pt;}
.wsa3{word-spacing:167.543814pt;}
.wsbb{word-spacing:167.863814pt;}
.wsba{word-spacing:168.503815pt;}
.ws11d{word-spacing:169.096455pt;}
.wsb1{word-spacing:169.143815pt;}
.ws18b{word-spacing:169.736456pt;}
.wsb2{word-spacing:169.783816pt;}
.wsa7{word-spacing:170.240136pt;}
.ws101{word-spacing:170.423816pt;}
.ws9d{word-spacing:171.520137pt;}
.wsdc{word-spacing:171.656457pt;}
.wsa9{word-spacing:172.936458pt;}
.wsa2{word-spacing:173.481739pt;}
.ws13b{word-spacing:173.576459pt;}
.wsfe{word-spacing:174.263819pt;}
.wsa5{word-spacing:174.856460pt;}
.wsb4{word-spacing:175.543820pt;}
.ws13c{word-spacing:175.858061pt;}
.wsb5{word-spacing:176.183821pt;}
.ws159{word-spacing:176.498061pt;}
.ws9e{word-spacing:176.776461pt;}
.ws15a{word-spacing:177.778062pt;}
.ws166{word-spacing:178.743823pt;}
.ws109{word-spacing:179.698064pt;}
.wsa6{word-spacing:179.840144pt;}
.wsab{word-spacing:180.023824pt;}
.wsa1{word-spacing:180.065424pt;}
.ws122{word-spacing:180.338064pt;}
.ws12c{word-spacing:180.663825pt;}
.ws13a{word-spacing:181.303825pt;}
.wsdb{word-spacing:181.665425pt;}
.wsa8{word-spacing:182.258066pt;}
.ws14b{word-spacing:182.583826pt;}
.ws104{word-spacing:182.945426pt;}
.wsbf{word-spacing:183.223827pt;}
.ws1bc{word-spacing:184.456468pt;}
.ws110{word-spacing:184.503828pt;}
.wseb{word-spacing:184.865428pt;}
.ws129{word-spacing:185.143828pt;}
.wsae{word-spacing:185.783829pt;}
.wsac{word-spacing:186.423829pt;}
.ws170{word-spacing:187.063830pt;}
.ws9c{word-spacing:188.296471pt;}
.ws1b6{word-spacing:188.936471pt;}
.ws1a0{word-spacing:189.576472pt;}
.ws171{word-spacing:191.218073pt;}
.ws168{word-spacing:191.858073pt;}
.ws19b{word-spacing:192.776474pt;}
.ws1a8{word-spacing:193.641755pt;}
.wsd1{word-spacing:195.383836pt;}
.ws1a6{word-spacing:195.561756pt;}
.ws1aa{word-spacing:195.698077pt;}
.ws151{word-spacing:196.023837pt;}
.ws141{word-spacing:196.663837pt;}
.ws14e{word-spacing:197.303838pt;}
.ws12d{word-spacing:199.223839pt;}
.ws121{word-spacing:199.863840pt;}
.ws16e{word-spacing:200.178080pt;}
.ws181{word-spacing:201.736481pt;}
.ws1bf{word-spacing:202.098082pt;}
.ws1c2{word-spacing:202.423842pt;}
.wsc6{word-spacing:202.738082pt;}
.ws113{word-spacing:202.785442pt;}
.wsfd{word-spacing:203.105442pt;}
.ws138{word-spacing:203.703843pt;}
.ws17f{word-spacing:204.018083pt;}
.ws1b7{word-spacing:204.521764pt;}
.ws16c{word-spacing:205.938085pt;}
.wsd4{word-spacing:206.263845pt;}
.ws161{word-spacing:206.578085pt;}
.ws1a3{word-spacing:207.496486pt;}
.ws19c{word-spacing:208.361767pt;}
.ws142{word-spacing:208.823847pt;}
.ws1a7{word-spacing:209.280167pt;}
.ws198{word-spacing:209.463848pt;}
.wsb8{word-spacing:210.418088pt;}
.ws15d{word-spacing:211.058089pt;}
.wsd2{word-spacing:211.336489pt;}
.ws162{word-spacing:211.698089pt;}
.ws16d{word-spacing:212.023850pt;}
.wsec{word-spacing:212.978090pt;}
.ws10a{word-spacing:214.400172pt;}
.ws152{word-spacing:214.583852pt;}
.ws19f{word-spacing:215.223852pt;}
.ws19d{word-spacing:215.585452pt;}
.ws1bb{word-spacing:215.680173pt;}
.ws1a9{word-spacing:217.600174pt;}
.ws1af{word-spacing:218.376495pt;}
.ws1b0{word-spacing:219.241775pt;}
.ws1b5{word-spacing:219.520176pt;}
.ws1b4{word-spacing:220.521776pt;}
.ws1b2{word-spacing:220.658097pt;}
.ws1c9{word-spacing:221.298097pt;}
.ws135{word-spacing:221.345457pt;}
.ws17b{word-spacing:222.216498pt;}
.ws156{word-spacing:222.263858pt;}
.ws14f{word-spacing:222.578098pt;}
.ws148{word-spacing:222.903858pt;}
.ws1a2{word-spacing:223.081778pt;}
.ws145{word-spacing:223.543859pt;}
.ws13d{word-spacing:224.000179pt;}
.wsd5{word-spacing:224.183859pt;}
.ws19a{word-spacing:225.001780pt;}
.ws1a4{word-spacing:225.138100pt;}
.ws11b{word-spacing:225.280180pt;}
.wsc7{word-spacing:225.463860pt;}
.ws133{word-spacing:225.505460pt;}
.ws1ca{word-spacing:226.465461pt;}
.ws130{word-spacing:227.241782pt;}
.ws1c3{word-spacing:227.336502pt;}
.ws180{word-spacing:227.383862pt;}
.ws127{word-spacing:227.561782pt;}
.ws143{word-spacing:228.023862pt;}
.ws1b8{word-spacing:228.480183pt;}
.ws169{word-spacing:229.618104pt;}
.ws16f{word-spacing:230.258104pt;}
.ws1cb{word-spacing:230.305464pt;}
.ws120{word-spacing:230.536504pt;}
.ws12a{word-spacing:233.825467pt;}
.ws1ae{word-spacing:234.240187pt;}
.ws149{word-spacing:234.423868pt;}
.ws1c7{word-spacing:234.880188pt;}
.ws14a{word-spacing:235.063868pt;}
.ws1ad{word-spacing:235.241788pt;}
.ws131{word-spacing:236.023869pt;}
.ws196{word-spacing:236.521789pt;}
.ws185{word-spacing:236.936510pt;}
.ws146{word-spacing:237.204030pt;}
.wsc3{word-spacing:237.298110pt;}
.ws155{word-spacing:237.623870pt;}
.ws17c{word-spacing:237.801790pt;}
.ws17a{word-spacing:238.720191pt;}
.ws1ac{word-spacing:239.721792pt;}
.ws17e{word-spacing:239.858112pt;}
.ws140{word-spacing:240.000192pt;}
.ws157{word-spacing:240.183872pt;}
.ws197{word-spacing:240.498112pt;}
.ws1a5{word-spacing:241.138113pt;}
.ws177{word-spacing:241.463873pt;}
.wsd8{word-spacing:242.743874pt;}
.ws1b1{word-spacing:243.200195pt;}
.wsd9{word-spacing:243.383875pt;}
.ws165{word-spacing:244.338115pt;}
.wsb0{word-spacing:244.663876pt;}
.ws17d{word-spacing:247.040198pt;}
.ws134{word-spacing:247.176518pt;}
.ws195{word-spacing:247.223878pt;}
.ws179{word-spacing:247.401798pt;}
.ws15f{word-spacing:247.863878pt;}
.ws123{word-spacing:248.320199pt;}
.wsb9{word-spacing:248.503879pt;}
.ws14c{word-spacing:249.143879pt;}
.ws18f{word-spacing:249.736520pt;}
.ws14d{word-spacing:249.783880pt;}
.ws18d{word-spacing:250.601800pt;}
.ws137{word-spacing:252.160202pt;}
.ws186{word-spacing:252.521802pt;}
.ws184{word-spacing:252.800202pt;}
.ws18a{word-spacing:252.983882pt;}
.ws1c5{word-spacing:253.440203pt;}
.ws188{word-spacing:253.938123pt;}
.ws1c0{word-spacing:254.625484pt;}
.ws15e{word-spacing:256.183885pt;}
.ws193{word-spacing:257.825486pt;}
.ws160{word-spacing:258.103886pt;}
.ws175{word-spacing:259.698128pt;}
.ws183{word-spacing:260.841809pt;}
.ws187{word-spacing:261.760209pt;}
.ws194{word-spacing:262.583890pt;}
.ws1ab{word-spacing:262.945490pt;}
.ws190{word-spacing:265.321812pt;}
.ws18e{word-spacing:266.240213pt;}
.ws136{word-spacing:267.520214pt;}
.wsce{word-spacing:268.018134pt;}
.wsdd{word-spacing:270.856537pt;}
.ws1b3{word-spacing:273.825499pt;}
.ws174{word-spacing:274.418140pt;}
.ws191{word-spacing:274.560220pt;}
.ws15c{word-spacing:277.665502pt;}
.wsd6{word-spacing:279.538144pt;}
.ws176{word-spacing:281.143905pt;}
.wsd7{word-spacing:281.783905pt;}
.ws192{word-spacing:282.098146pt;}
.wscf{word-spacing:286.263909pt;}
.ws150{word-spacing:286.720229pt;}
.wsd0{word-spacing:287.543910pt;}
.wsd3{word-spacing:291.058153pt;}
.ws189{word-spacing:292.385514pt;}
.ws16b{word-spacing:293.025514pt;}
.ws15b{word-spacing:295.040236pt;}
.ws1c1{word-spacing:300.018160pt;}
.ws1c4{word-spacing:307.336566pt;}
.ws164{word-spacing:307.745526pt;}
.wsda{word-spacing:308.978167pt;}
.ws172{word-spacing:309.760248pt;}
.ws163{word-spacing:310.400248pt;}
.wscc{word-spacing:324.023939pt;}
.ws18c{word-spacing:324.201859pt;}
.wscb{word-spacing:324.338179pt;}
.wsc8{word-spacing:324.978180pt;}
.ws16a{word-spacing:325.120260pt;}
.ws1a1{word-spacing:364.296611pt;}
.ws182{word-spacing:379.016623pt;}
.ws10d{word-spacing:396.343997pt;}
.ws132{word-spacing:415.544012pt;}
.ws11c{word-spacing:416.184013pt;}
.wsf2{word-spacing:420.616656pt;}
.ws118{word-spacing:423.176659pt;}
.ws112{word-spacing:430.904025pt;}
.ws13e{word-spacing:448.824039pt;}
.wscd{word-spacing:475.064060pt;}
.ws11a{word-spacing:502.400402pt;}
.wsca{word-spacing:513.464091pt;}
.ws10f{word-spacing:525.576740pt;}
.wsc4{word-spacing:528.824103pt;}
.ws11f{word-spacing:532.480426pt;}
.ws1ba{word-spacing:541.802033pt;}
.ws1be{word-spacing:549.120439pt;}
.ws1c8{word-spacing:552.042042pt;}
.ws1c6{word-spacing:561.002049pt;}
.ws111{word-spacing:713.144251pt;}
.wsc9{word-spacing:782.264306pt;}
.ws1bd{word-spacing:1257.962606pt;}
._c{margin-left:-11.264009pt;}
._1c{margin-left:-9.024647pt;}
._2d{margin-left:-7.371526pt;}
._1{margin-left:-4.000000pt;}
._7{margin-left:-2.746882pt;}
._5{margin-left:-1.624961pt;}
._8{width:0.951681pt;}
._6{width:1.878402pt;}
._1f{width:3.012482pt;}
._2{width:4.004800pt;}
._1e{width:5.128971pt;}
._12{width:6.656005pt;}
._4{width:8.005333pt;}
._23{width:9.048967pt;}
._22{width:10.050568pt;}
._20{width:10.977666pt;}
._3{width:11.998667pt;}
._21{width:13.193873pt;}
._1d{width:15.742093pt;}
._24{width:17.093134pt;}
._25{width:18.227855pt;}
._e{width:19.144335pt;}
._26{width:20.443536pt;}
._27{width:21.781137pt;}
._2a{width:23.201939pt;}
._b{width:24.832020pt;}
._28{width:26.136341pt;}
._14{width:27.714582pt;}
._13{width:28.672023pt;}
._2c{width:30.023064pt;}
._d{width:31.104025pt;}
._29{width:32.683546pt;}
._2b{width:34.046107pt;}
._30{width:35.088668pt;}
._9{width:36.930590pt;}
._31{width:39.178271pt;}
._c7{width:41.198113pt;}
._11{width:42.368034pt;}
._100{width:43.343395pt;}
._2e{width:44.326435pt;}
._48{width:46.091877pt;}
._dc{width:47.674278pt;}
._47{width:49.406440pt;}
._c0{width:51.105961pt;}
._3a{width:52.243242pt;}
._39{width:54.800684pt;}
._d8{width:55.790765pt;}
._49{width:56.759085pt;}
._5b{width:57.961646pt;}
._32{width:59.093807pt;}
._4a{width:60.543088pt;}
._a{width:63.543731pt;}
._52{width:65.001652pt;}
._b6{width:67.864374pt;}
._33{width:71.395897pt;}
._40{width:72.759098pt;}
._58{width:76.124221pt;}
._c1{width:77.125822pt;}
._6d{width:78.436223pt;}
._69{width:79.408064pt;}
._19{width:80.512064pt;}
._1a{width:81.928386pt;}
._bd{width:83.728067pt;}
._c5{width:85.174148pt;}
._c8{width:86.074309pt;}
._b9{width:87.219270pt;}
._ac{width:88.480711pt;}
._15{width:90.245832pt;}
._16{width:91.322313pt;}
._fc{width:93.259595pt;}
._57{width:95.580236pt;}
._6c{width:97.173838pt;}
._f1{width:98.369999pt;}
._ba{width:100.445200pt;}
._44{width:101.369681pt;}
._38{width:102.560722pt;}
._4b{width:104.081683pt;}
._6e{width:105.044564pt;}
._bb{width:106.018005pt;}
._b7{width:106.924246pt;}
._6b{width:108.053846pt;}
._50{width:109.479768pt;}
._55{width:110.845529pt;}
._73{width:112.632410pt;}
._6a{width:113.528411pt;}
._34{width:114.495452pt;}
._3d{width:116.148573pt;}
._3e{width:117.097054pt;}
._17{width:118.528095pt;}
._18{width:119.424096pt;}
._60{width:120.963297pt;}
._e1{width:121.878498pt;}
._41{width:123.224419pt;}
._e3{width:124.198499pt;}
._56{width:125.754981pt;}
._8e{width:127.849702pt;}
._bf{width:128.824423pt;}
._2f{width:129.730664pt;}
._e7{width:130.633705pt;}
._42{width:132.020586pt;}
._b3{width:133.214187pt;}
._f4{width:134.658668pt;}
._46{width:135.587948pt;}
._af{width:136.978670pt;}
._35{width:138.786031pt;}
._5f{width:139.834992pt;}
._8d{width:142.770034pt;}
._93{width:144.136435pt;}
._51{width:145.079156pt;}
._e8{width:146.160117pt;}
._3b{width:147.221878pt;}
._96{width:148.386679pt;}
._ca{width:149.802360pt;}
._68{width:150.809721pt;}
._b0{width:151.852281pt;}
._10{width:152.887802pt;}
._37{width:154.507004pt;}
._9b{width:156.925566pt;}
._67{width:158.626047pt;}
._81{width:159.722368pt;}
._61{width:161.595009pt;}
._82{width:163.561731pt;}
._f6{width:164.611332pt;}
._c4{width:165.770373pt;}
._43{width:167.573894pt;}
._f2{width:168.862215pt;}
._4c{width:169.813896pt;}
._f{width:170.807817pt;}
._64{width:172.066058pt;}
._4e{width:173.653899pt;}
._45{width:175.307020pt;}
._91{width:176.498701pt;}
._92{width:177.813902pt;}
._b1{width:178.968463pt;}
._77{width:180.530064pt;}
._3c{width:182.388626pt;}
._66{width:183.586067pt;}
._6f{width:185.257108pt;}
._f9{width:186.548629pt;}
._4d{width:188.373911pt;}
._3f{width:189.748632pt;}
._1b{width:191.232153pt;}
._4f{width:192.475034pt;}
._ad{width:193.395995pt;}
._65{width:195.106076pt;}
._85{width:197.481758pt;}
._71{width:199.111839pt;}
._e6{width:200.137760pt;}
._9a{width:202.104482pt;}
._9e{width:203.381283pt;}
._88{width:205.020324pt;}
._f8{width:206.163365pt;}
._36{width:207.266086pt;}
._f5{width:208.161447pt;}
._63{width:209.126567pt;}
._b2{width:210.228648pt;}
._ae{width:211.179689pt;}
._f3{width:212.190250pt;}
._72{width:213.428651pt;}
._ee{width:214.396972pt;}
._7a{width:215.339692pt;}
._d7{width:216.948654pt;}
._9d{width:217.874734pt;}
._a1{width:219.195055pt;}
._5a{width:220.599216pt;}
._76{width:221.986098pt;}
._87{width:223.017138pt;}
._de{width:225.215540pt;}
._59{width:226.684981pt;}
._ed{width:228.602423pt;}
._53{width:229.962424pt;}
._e9{width:232.587066pt;}
._62{width:233.772347pt;}
._8a{width:235.195068pt;}
._70{width:237.511870pt;}
._89{width:238.940351pt;}
._a5{width:240.814273pt;}
._86{width:241.703233pt;}
._90{width:243.058754pt;}
._f0{width:244.148675pt;}
._54{width:245.333956pt;}
._eb{width:246.252357pt;}
._a6{width:247.173318pt;}
._e0{width:249.813960pt;}
._a3{width:251.479241pt;}
._dd{width:252.800202pt;}
._7e{width:253.755083pt;}
._ec{width:255.763405pt;}
._98{width:258.359247pt;}
._78{width:260.373968pt;}
._a2{width:262.453970pt;}
._df{width:263.607251pt;}
._fd{width:264.587092pt;}
._5e{width:266.003413pt;}
._79{width:267.514454pt;}
._5d{width:270.400216pt;}
._84{width:275.332700pt;}
._99{width:276.279261pt;}
._97{width:277.559262pt;}
._7d{width:278.999263pt;}
._fa{width:280.962785pt;}
._aa{width:284.853988pt;}
._9c{width:288.765031pt;}
._5c{width:289.671912pt;}
._d3{width:291.515113pt;}
._7f{width:294.075115pt;}
._a9{width:296.919278pt;}
._e4{width:297.883118pt;}
._fb{width:300.516080pt;}
._94{width:302.151282pt;}
._e5{width:303.763443pt;}
._ef{width:305.706485pt;}
._9f{width:307.549686pt;}
._da{width:309.485048pt;}
._bc{width:316.415613pt;}
._80{width:319.064575pt;}
._8b{width:321.405057pt;}
._e2{width:323.202819pt;}
._95{width:324.362499pt;}
._ea{width:327.588102pt;}
._d2{width:329.275143pt;}
._8f{width:335.123468pt;}
._74{width:337.778830pt;}
._8c{width:339.965072pt;}
._75{width:341.618833pt;}
._a0{width:346.548117pt;}
._cc{width:350.084760pt;}
._d5{width:356.919326pt;}
._7b{width:358.614047pt;}
._a7{width:360.942369pt;}
._7c{width:368.948775pt;}
._c9{width:370.999337pt;}
._c6{width:375.479340pt;}
._be{width:376.581421pt;}
._a8{width:379.923504pt;}
._d6{width:383.111986pt;}
._83{width:388.243511pt;}
._db{width:390.199352pt;}
._b8{width:403.188803pt;}
._d4{width:409.399368pt;}
._d1{width:425.908821pt;}
._b5{width:432.723546pt;}
._cf{width:437.843550pt;}
._cb{width:440.238432pt;}
._ce{width:446.163557pt;}
._d9{width:459.799408pt;}
._d0{width:463.894131pt;}
._ff{width:525.979941pt;}
._fe{width:545.725237pt;}
._f7{width:564.925252pt;}
._a4{width:636.599549pt;}
._b4{width:660.051728pt;}
._c3{width:692.764714pt;}
._c2{width:723.995459pt;}
._cd{width:946.768757pt;}
._ab{width:1089.719912pt;}
._0{width:1872.000000pt;}
.fs9{font-size:34.560028pt;}
.fs4{font-size:53.120042pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs1{font-size:76.000000pt;}
.fs2{font-size:84.000000pt;}
.fsa{font-size:85.120068pt;}
.fs6{font-size:148.000000pt;}
.fs8{font-size:192.000000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:3.520052pt;}
.yda{bottom:3.520062pt;}
.yc5{bottom:3.520064pt;}
.y4{bottom:4.000000pt;}
.y10{bottom:5.000000pt;}
.y3de{bottom:51.200041pt;}
.yfd{bottom:61.600000pt;}
.yd9{bottom:73.920000pt;}
.yc4{bottom:76.960000pt;}
.y3dd{bottom:84.480068pt;}
.y3d8{bottom:88.320071pt;}
.y6d{bottom:96.800077pt;}
.yd8{bottom:106.720085pt;}
.y46{bottom:112.000000pt;}
.yc3{bottom:112.160090pt;}
.y45{bottom:130.000000pt;}
.y3ce{bottom:137.120110pt;}
.y367{bottom:137.760110pt;}
.ycf{bottom:138.400111pt;}
.yd0{bottom:138.560111pt;}
.y17d{bottom:141.440113pt;}
.y3d3{bottom:145.120116pt;}
.y44{bottom:149.000000pt;}
.y2ff{bottom:156.000125pt;}
.y285{bottom:156.480125pt;}
.y2b6{bottom:157.760126pt;}
.y22d{bottom:160.480128pt;}
.ycc{bottom:161.440129pt;}
.y43{bottom:167.000000pt;}
.y3cd{bottom:167.840134pt;}
.y12c{bottom:168.000134pt;}
.y366{bottom:168.480135pt;}
.y2d5{bottom:168.640135pt;}
.yce{bottom:169.120135pt;}
.y138{bottom:169.280135pt;}
.y17c{bottom:172.160138pt;}
.y270{bottom:173.120138pt;}
.y3a2{bottom:175.360140pt;}
.y3d2{bottom:175.840141pt;}
.y23f{bottom:177.920142pt;}
.y22c{bottom:180.800145pt;}
.y54{bottom:181.920146pt;}
.y9{bottom:182.000000pt;}
.y3d1{bottom:183.840147pt;}
.y387{bottom:184.480148pt;}
.yb4{bottom:185.120148pt;}
.y42{bottom:186.000000pt;}
.y2fe{bottom:186.720149pt;}
.y284{bottom:187.040150pt;}
.y2c3{bottom:187.840150pt;}
.y2b5{bottom:188.480151pt;}
.y3a1{bottom:190.720153pt;}
.ycb{bottom:192.160154pt;}
.y33c{bottom:193.440155pt;}
.y84{bottom:193.600155pt;}
.y168{bottom:196.160157pt;}
.y11b{bottom:198.400159pt;}
.y365{bottom:199.040159pt;}
.y2d4{bottom:199.200159pt;}
.yd5{bottom:199.680160pt;}
.y9e{bottom:199.840160pt;}
.y141{bottom:200.000160pt;}
.y22b{bottom:201.280161pt;}
.y17b{bottom:202.720162pt;}
.y26f{bottom:203.840163pt;}
.y41{bottom:204.000000pt;}
.y3c7{bottom:206.400165pt;}
.y1e7{bottom:207.520166pt;}
.y2a4{bottom:211.040169pt;}
.y63{bottom:213.120170pt;}
.y3d0{bottom:214.400172pt;}
.y19c{bottom:214.560172pt;}
.y19b{bottom:214.720172pt;}
.y386{bottom:215.040172pt;}
.y283{bottom:217.760174pt;}
.y2c2{bottom:218.400175pt;}
.y2b4{bottom:219.040175pt;}
.y22a{bottom:221.760177pt;}
.yb3{bottom:221.920178pt;}
.y40{bottom:222.000000pt;}
.y389{bottom:222.080178pt;}
.yca{bottom:222.720178pt;}
.y33b{bottom:224.160179pt;}
.y83{bottom:224.320179pt;}
.y2e8{bottom:226.400181pt;}
.y311{bottom:226.720181pt;}
.y167{bottom:226.880182pt;}
.y10f{bottom:229.120183pt;}
.y364{bottom:229.760184pt;}
.y2d3{bottom:229.920184pt;}
.y19a{bottom:230.080184pt;}
.y9d{bottom:230.400184pt;}
.y13c{bottom:230.560184pt;}
.yfc{bottom:230.720185pt;}
.y17a{bottom:233.440187pt;}
.y26e{bottom:234.400188pt;}
.y149{bottom:235.840189pt;}
.y3c6{bottom:237.120190pt;}
.y3a0{bottom:237.600190pt;}
.y350{bottom:237.920190pt;}
.y1e6{bottom:238.880191pt;}
.y1e5{bottom:239.040191pt;}
.y3f{bottom:241.000000pt;}
.y2a3{bottom:241.760193pt;}
.y229{bottom:242.240194pt;}
.yec{bottom:242.400194pt;}
.y23e{bottom:243.040194pt;}
.y123{bottom:245.120196pt;}
.y385{bottom:245.760197pt;}
.y199{bottom:247.840198pt;}
.y282{bottom:248.480199pt;}
.y2c1{bottom:249.120199pt;}
.y2b3{bottom:249.760200pt;}
.y62{bottom:249.920200pt;}
.yc9{bottom:253.440203pt;}
.y8{bottom:254.000000pt;}
.y1e4{bottom:254.400204pt;}
.y33a{bottom:254.720204pt;}
.y82{bottom:255.040204pt;}
.y2fd{bottom:256.160205pt;}
.y2e7{bottom:257.120206pt;}
.y166{bottom:257.440206pt;}
.yb2{bottom:258.720207pt;}
.y3e{bottom:259.000000pt;}
.y10e{bottom:259.840208pt;}
.y363{bottom:260.480208pt;}
.y9c{bottom:261.120209pt;}
.y140{bottom:261.280209pt;}
.y23d{bottom:261.760209pt;}
.y228{bottom:262.720210pt;}
.y39f{bottom:263.040210pt;}
.y34f{bottom:263.520211pt;}
.y179{bottom:264.160211pt;}
.yfb{bottom:265.120212pt;}
.y3bd{bottom:267.840214pt;}
.y388{bottom:268.000214pt;}
.y1e3{bottom:272.160218pt;}
.y2a2{bottom:272.480218pt;}
.yeb{bottom:273.120218pt;}
.y148{bottom:274.400220pt;}
.y122{bottom:275.840221pt;}
.y384{bottom:276.480221pt;}
.y3d{bottom:278.000000pt;}
.y281{bottom:279.040223pt;}
.y198{bottom:279.520224pt;}
.y2c0{bottom:279.840224pt;}
.y23c{bottom:280.480224pt;}
.y39e{bottom:280.800225pt;}
.y34e{bottom:281.120225pt;}
.y24f{bottom:282.720226pt;}
.y227{bottom:283.040226pt;}
.yc8{bottom:284.160227pt;}
.y339{bottom:285.440228pt;}
.y81{bottom:285.600228pt;}
.y2e6{bottom:287.840230pt;}
.y165{bottom:288.160231pt;}
.y2b2{bottom:288.640231pt;}
.y1e2{bottom:289.760232pt;}
.y10d{bottom:290.400232pt;}
.y12b{bottom:290.560232pt;}
.y362{bottom:291.040233pt;}
.yd4{bottom:291.680233pt;}
.y9b{bottom:291.840233pt;}
.y137{bottom:292.000234pt;}
.y3bc{bottom:293.440235pt;}
.y178{bottom:294.720236pt;}
.yb1{bottom:295.520236pt;}
.y197{bottom:295.680237pt;}
.y26d{bottom:295.840237pt;}
.y3c{bottom:296.000000pt;}
.y1f9{bottom:296.160237pt;}
.y310{bottom:296.320237pt;}
.y1c6{bottom:297.920238pt;}
.y39d{bottom:298.400239pt;}
.y329{bottom:298.560239pt;}
.y34d{bottom:298.720239pt;}
.y23b{bottom:299.040239pt;}
.y375{bottom:299.200239pt;}
.y1af{bottom:302.080242pt;}
.y2fc{bottom:302.880242pt;}
.y226{bottom:303.520243pt;}
.yea{bottom:303.840243pt;}
.y121{bottom:306.400245pt;}
.y383{bottom:307.040246pt;}
.y2d2{bottom:307.360246pt;}
.y1e1{bottom:307.520246pt;}
.y3bb{bottom:311.040249pt;}
.y196{bottom:311.200249pt;}
.y2b1{bottom:312.640250pt;}
.y147{bottom:313.120250pt;}
.y24e{bottom:313.440251pt;}
.y3b{bottom:314.000000pt;}
.yc7{bottom:314.720252pt;}
.y39c{bottom:316.160253pt;}
.y80{bottom:316.320253pt;}
.y34c{bottom:316.480253pt;}
.y23a{bottom:317.760254pt;}
.y280{bottom:317.920254pt;}
.y2fb{bottom:318.400255pt;}
.y164{bottom:318.880255pt;}
.y10c{bottom:321.120257pt;}
.y9a{bottom:322.400258pt;}
.y13f{bottom:322.560258pt;}
.y225{bottom:324.000259pt;}
.y338{bottom:324.320259pt;}
.y374{bottom:324.800260pt;}
.y1e0{bottom:325.120260pt;}
.y177{bottom:325.440260pt;}
.y2e5{bottom:326.560261pt;}
.y1f8{bottom:326.720261pt;}
.y195{bottom:327.360262pt;}
.y2b0{bottom:328.160263pt;}
.y3ba{bottom:328.800263pt;}
.y3c5{bottom:329.120263pt;}
.y1c5{bottom:329.280263pt;}
.y1c4{bottom:329.440264pt;}
.y361{bottom:329.760264pt;}
.y2d1{bottom:331.360265pt;}
.yb0{bottom:332.320266pt;}
.y1ae{bottom:332.640266pt;}
.y3a{bottom:333.000000pt;}
.y39b{bottom:333.760267pt;}
.y34b{bottom:334.080267pt;}
.ye9{bottom:334.400268pt;}
.y26c{bottom:334.560268pt;}
.y2a1{bottom:335.360268pt;}
.y2fa{bottom:336.000269pt;}
.y239{bottom:336.480269pt;}
.yfa{bottom:336.800269pt;}
.y3cf{bottom:337.120270pt;}
.y36f{bottom:337.760270pt;}
.y53{bottom:338.880271pt;}
.y1df{bottom:341.440273pt;}
.y27f{bottom:341.920274pt;}
.y373{bottom:342.400274pt;}
.y194{bottom:342.720274pt;}
.y146{bottom:343.840275pt;}
.y24d{bottom:344.160275pt;}
.y224{bottom:344.480276pt;}
.y1c3{bottom:344.800276pt;}
.y120{bottom:345.120276pt;}
.yc6{bottom:345.440276pt;}
.y2af{bottom:345.760277pt;}
.y3b9{bottom:346.400277pt;}
.y2d0{bottom:346.880278pt;}
.yd7{bottom:347.000000pt;}
.y7f{bottom:347.040278pt;}
.y163{bottom:349.440280pt;}
.y2a0{bottom:350.720281pt;}
.y39{bottom:351.000000pt;}
.y39a{bottom:351.360281pt;}
.y10b{bottom:351.840281pt;}
.y2e4{bottom:352.160282pt;}
.y99{bottom:353.120282pt;}
.y136{bottom:353.280283pt;}
.y2f9{bottom:353.760283pt;}
.y238{bottom:355.040284pt;}
.y176{bottom:356.160285pt;}
.y1de{bottom:356.800285pt;}
.y1f7{bottom:357.440286pt;}
.y3d7{bottom:359.840288pt;}
.y372{bottom:360.160288pt;}
.y61{bottom:360.320288pt;}
.y360{bottom:360.480288pt;}
.y2ae{bottom:362.080290pt;}
.y1c2{bottom:362.400290pt;}
.y328{bottom:362.720290pt;}
.y1ad{bottom:363.360291pt;}
.y3b8{bottom:364.160291pt;}
.y223{bottom:364.960292pt;}
.ye8{bottom:365.120292pt;}
.y2bf{bottom:365.920293pt;}
.y2cf{bottom:366.560293pt;}
.yf9{bottom:367.520294pt;}
.y3c4{bottom:367.840294pt;}
.y29f{bottom:368.480295pt;}
.yaf{bottom:369.120295pt;}
.y34a{bottom:369.440296pt;}
.y2e3{bottom:369.760296pt;}
.y2f8{bottom:369.920296pt;}
.y38{bottom:370.000000pt;}
.y2f7{bottom:370.080296pt;}
.y237{bottom:373.760299pt;}
.y26b{bottom:373.920299pt;}
.y145{bottom:374.400300pt;}
.y24c{bottom:374.720300pt;}
.y27e{bottom:375.040300pt;}
.y11f{bottom:375.840301pt;}
.y382{bottom:376.640301pt;}
.y2ad{bottom:377.440302pt;}
.y371{bottom:377.760302pt;}
.y327{bottom:378.880303pt;}
.y162{bottom:380.160304pt;}
.y2be{bottom:381.440305pt;}
.y3b7{bottom:381.760305pt;}
.y10a{bottom:382.400306pt;}
.y2ce{bottom:382.880306pt;}
.yd3{bottom:383.680307pt;}
.y98{bottom:383.840307pt;}
.y135{bottom:384.000307pt;}
.y29e{bottom:384.800308pt;}
.y222{bottom:385.440308pt;}
.y349{bottom:385.760309pt;}
.y2e2{bottom:386.080309pt;}
.y175{bottom:386.720309pt;}
.y337{bottom:386.880310pt;}
.y37{bottom:388.000000pt;}
.y1f6{bottom:388.160311pt;}
.y1dd{bottom:388.320311pt;}
.y26a{bottom:389.440312pt;}
.y193{bottom:389.760312pt;}
.y3cc{bottom:390.400312pt;}
.y35f{bottom:391.040313pt;}
.y27d{bottom:391.520313pt;}
.y236{bottom:392.480314pt;}
.y321{bottom:393.440315pt;}
.y2ac{bottom:393.600315pt;}
.y2ab{bottom:393.760315pt;}
.y1ac{bottom:394.080315pt;}
.y326{bottom:394.400316pt;}
.y370{bottom:395.360316pt;}
.y60{bottom:397.120318pt;}
.y1c1{bottom:397.760318pt;}
.y2cd{bottom:398.240319pt;}
.y3c3{bottom:398.400319pt;}
.y2bd{bottom:399.040319pt;}
.y3b6{bottom:399.360319pt;}
.y29d{bottom:400.160320pt;}
.y399{bottom:400.800321pt;}
.y348{bottom:401.120321pt;}
.y2e1{bottom:401.440321pt;}
.y2f6{bottom:401.600321pt;}
.y2f5{bottom:401.760321pt;}
.y381{bottom:402.080322pt;}
.y336{bottom:402.400322pt;}
.y192{bottom:405.120324pt;}
.y24b{bottom:405.440324pt;}
.yae{bottom:405.920325pt;}
.y36{bottom:406.000000pt;}
.y11e{bottom:406.400325pt;}
.y27c{bottom:406.720325pt;}
.y269{bottom:407.040326pt;}
.ye7{bottom:407.520326pt;}
.y7e{bottom:408.320327pt;}
.y2aa{bottom:409.120327pt;}
.y320{bottom:409.600328pt;}
.yf8{bottom:409.920328pt;}
.y161{bottom:410.880329pt;}
.y235{bottom:411.040329pt;}
.y30f{bottom:412.160330pt;}
.y52{bottom:412.480330pt;}
.y109{bottom:413.120330pt;}
.y97{bottom:414.400332pt;}
.y134{bottom:414.560332pt;}
.y1c0{bottom:415.520332pt;}
.y3b5{bottom:415.840333pt;}
.y29c{bottom:416.320333pt;}
.y29b{bottom:416.480333pt;}
.y2f4{bottom:417.120334pt;}
.y174{bottom:417.440334pt;}
.y2e0{bottom:417.600334pt;}
.y2df{bottom:417.760334pt;}
.y1f5{bottom:418.720335pt;}
.y380{bottom:419.840336pt;}
.y335{bottom:420.160336pt;}
.y191{bottom:420.480336pt;}
.y3cb{bottom:421.120337pt;}
.y27b{bottom:422.880338pt;}
.y27a{bottom:423.040338pt;}
.y268{bottom:423.520339pt;}
.y1ab{bottom:424.640340pt;}
.y35{bottom:425.000000pt;}
.y31f{bottom:425.120340pt;}
.y2a9{bottom:425.280340pt;}
.y221{bottom:426.400341pt;}
.y3c2{bottom:429.120343pt;}
.y234{bottom:429.760344pt;}
.y2cc{bottom:429.920344pt;}
.y2bc{bottom:430.720345pt;}
.y3b4{bottom:431.040345pt;}
.y1bf{bottom:431.840345pt;}
.y398{bottom:432.480346pt;}
.y347{bottom:432.800346pt;}
.y2de{bottom:433.120346pt;}
.y2f3{bottom:433.280347pt;}
.y2f2{bottom:433.440347pt;}
.y1dc{bottom:434.560348pt;}
.y11d{bottom:437.120350pt;}
.y37f{bottom:437.440350pt;}
.y334{bottom:437.760350pt;}
.y279{bottom:438.400351pt;}
.y267{bottom:438.720351pt;}
.y7d{bottom:439.040351pt;}
.y2a8{bottom:440.800353pt;}
.y160{bottom:441.440353pt;}
.yad{bottom:442.720354pt;}
.y34{bottom:443.000000pt;}
.y108{bottom:443.840355pt;}
.y24a{bottom:444.160355pt;}
.y96{bottom:445.120356pt;}
.y13b{bottom:445.280356pt;}
.y2cb{bottom:446.080357pt;}
.y220{bottom:446.880358pt;}
.y1be{bottom:447.040358pt;}
.y325{bottom:447.360358pt;}
.yb{bottom:448.000000pt;}
.y29a{bottom:448.000358pt;}
.y207{bottom:448.160359pt;}
.y233{bottom:448.480359pt;}
.y2f1{bottom:448.640359pt;}
.y51{bottom:449.280359pt;}
.y1f4{bottom:449.440360pt;}
.y3ca{bottom:451.840361pt;}
.y190{bottom:452.160362pt;}
.y266{bottom:454.880364pt;}
.y265{bottom:455.040364pt;}
.y1aa{bottom:455.360364pt;}
.y278{bottom:456.160365pt;}
.y2a7{bottom:457.120366pt;}
.y3c1{bottom:459.840368pt;}
.y31e{bottom:460.480368pt;}
.y6b{bottom:461.000000pt;}
.y2ca{bottom:461.440369pt;}
.y33{bottom:462.000000pt;}
.y2bb{bottom:462.400370pt;}
.y3b3{bottom:462.720370pt;}
.y397{bottom:463.040370pt;}
.y346{bottom:463.360371pt;}
.y299{bottom:463.520371pt;}
.y2dd{bottom:464.800372pt;}
.y324{bottom:465.120372pt;}
.y1db{bottom:465.920373pt;}
.y1da{bottom:466.080373pt;}
.y232{bottom:467.040374pt;}
.y21f{bottom:467.360374pt;}
.y3d6{bottom:467.840374pt;}
.ya{bottom:468.000000pt;}
.y35e{bottom:468.640375pt;}
.y7c{bottom:469.600376pt;}
.y264{bottom:470.400376pt;}
.y5f{bottom:470.720377pt;}
.y15f{bottom:472.160378pt;}
.y277{bottom:472.480378pt;}
.y37e{bottom:472.800378pt;}
.y333{bottom:473.120378pt;}
.y30e{bottom:473.440379pt;}
.y107{bottom:474.400380pt;}
.y249{bottom:474.720380pt;}
.yd2{bottom:475.680381pt;}
.y95{bottom:475.840381pt;}
.y11c{bottom:476.000381pt;}
.yc1{bottom:476.320381pt;}
.y2c9{bottom:477.760382pt;}
.y31d{bottom:478.080382pt;}
.y2ba{bottom:478.560383pt;}
.y206{bottom:478.720383pt;}
.y173{bottom:478.880383pt;}
.yac{bottom:479.520384pt;}
.y298{bottom:479.840384pt;}
.y32{bottom:480.000000pt;}
.y1f3{bottom:480.160384pt;}
.y2dc{bottom:481.120385pt;}
.y1d9{bottom:481.440385pt;}
.y3c9{bottom:482.400386pt;}
.y231{bottom:485.760389pt;}
.y1a9{bottom:486.080389pt;}
.y263{bottom:486.560389pt;}
.ye6{bottom:487.200390pt;}
.y21e{bottom:487.840390pt;}
.y50{bottom:489.600392pt;}
.y37d{bottom:490.400392pt;}
.y332{bottom:490.720393pt;}
.y2c8{bottom:493.120394pt;}
.y3b2{bottom:493.440395pt;}
.y2b9{bottom:494.080395pt;}
.y297{bottom:495.040396pt;}
.y31c{bottom:495.840397pt;}
.y2db{bottom:496.480397pt;}
.y323{bottom:496.800397pt;}
.y31{bottom:498.000000pt;}
.y3d5{bottom:498.400399pt;}
.y1d8{bottom:499.040399pt;}
.y7b{bottom:500.320400pt;}
.y396{bottom:501.760401pt;}
.y262{bottom:502.080402pt;}
.y15e{bottom:502.880402pt;}
.y21d{bottom:504.160403pt;}
.y230{bottom:504.480404pt;}
.y106{bottom:505.120404pt;}
.y248{bottom:505.440404pt;}
.y94{bottom:506.400405pt;}
.yd1{bottom:506.560405pt;}
.y5e{bottom:507.520406pt;}
.y37c{bottom:508.160407pt;}
.y205{bottom:509.440408pt;}
.y172{bottom:510.240408pt;}
.y171{bottom:510.400408pt;}
.y1f2{bottom:510.720409pt;}
.y35d{bottom:511.680409pt;}
.y31b{bottom:512.160410pt;}
.yc0{bottom:513.120410pt;}
.y18f{bottom:513.440411pt;}
.yab{bottom:516.320413pt;}
.y1d7{bottom:516.800413pt;}
.y30{bottom:517.000000pt;}
.ye5{bottom:517.920414pt;}
.y261{bottom:518.400415pt;}
.y21c{bottom:519.360415pt;}
.yf7{bottom:520.320416pt;}
.y22f{bottom:520.800417pt;}
.y3c0{bottom:521.120417pt;}
.y331{bottom:522.400418pt;}
.y37b{bottom:524.480420pt;}
.y1bd{bottom:524.800420pt;}
.y170{bottom:525.760421pt;}
.y296{bottom:526.720421pt;}
.y31a{bottom:527.360422pt;}
.y2da{bottom:528.160423pt;}
.y3d4{bottom:529.120423pt;}
.y35c{bottom:529.440424pt;}
.y7a{bottom:531.040425pt;}
.y4f{bottom:532.480426pt;}
.y15d{bottom:533.440427pt;}
.y260{bottom:533.760427pt;}
.y6a{bottom:534.000000pt;}
.y1d6{bottom:534.400428pt;}
.y30d{bottom:534.720428pt;}
.y2f{bottom:535.000000pt;}
.y105{bottom:535.680429pt;}
.y22e{bottom:536.160429pt;}
.y93{bottom:537.120430pt;}
.y13a{bottom:537.280430pt;}
.y330{bottom:537.760430pt;}
.y2f0{bottom:538.240431pt;}
.y37a{bottom:539.840432pt;}
.y204{bottom:540.160432pt;}
.y1f1{bottom:541.440433pt;}
.y7{bottom:542.000000pt;}
.y16f{bottom:543.360435pt;}
.y11a{bottom:543.680435pt;}
.y18e{bottom:544.160435pt;}
.y5d{bottom:544.320435pt;}
.y35b{bottom:547.040438pt;}
.y1a8{bottom:547.520438pt;}
.ye4{bottom:548.480439pt;}
.ybf{bottom:549.760440pt;}
.y21b{bottom:551.040441pt;}
.y3c8{bottom:551.680441pt;}
.y1d5{bottom:552.160442pt;}
.yaa{bottom:553.120442pt;}
.y2e{bottom:554.000000pt;}
.y1bc{bottom:555.360444pt;}
.y2b8{bottom:557.440446pt;}
.y276{bottom:558.080446pt;}
.y3bf{bottom:559.680448pt;}
.y16e{bottom:561.120449pt;}
.y79{bottom:561.600449pt;}
.yf6{bottom:562.560450pt;}
.y395{bottom:563.040450pt;}
.y35a{bottom:564.800452pt;}
.y25f{bottom:565.440452pt;}
.y104{bottom:566.400453pt;}
.ycd{bottom:567.680454pt;}
.y13e{bottom:567.840454pt;}
.y4e{bottom:568.320455pt;}
.y32f{bottom:569.440456pt;}
.y1d4{bottom:569.760456pt;}
.y3b1{bottom:570.720457pt;}
.y345{bottom:571.360457pt;}
.y2d{bottom:572.000000pt;}
.y1f0{bottom:572.160458pt;}
.y119{bottom:574.400460pt;}
.y18d{bottom:574.720460pt;}
.y16d{bottom:578.720463pt;}
.y1a7{bottom:578.880463pt;}
.y1a6{bottom:579.040463pt;}
.y5c{bottom:581.120465pt;}
.y2a6{bottom:581.440465pt;}
.y359{bottom:582.400466pt;}
.y2ef{bottom:585.120468pt;}
.y1bb{bottom:586.080469pt;}
.ybe{bottom:586.560469pt;}
.y275{bottom:588.800471pt;}
.ya9{bottom:589.760472pt;}
.y21a{bottom:589.920472pt;}
.y2c{bottom:590.000000pt;}
.y3be{bottom:590.400472pt;}
.ye3{bottom:590.880473pt;}
.y78{bottom:592.320474pt;}
.y394{bottom:593.760475pt;}
.y1a5{bottom:594.400476pt;}
.y15c{bottom:594.880476pt;}
.y16c{bottom:596.480477pt;}
.y144{bottom:597.120478pt;}
.y2d9{bottom:597.440478pt;}
.y92{bottom:598.400479pt;}
.y133{bottom:598.560479pt;}
.y32e{bottom:600.160480pt;}
.y2ee{bottom:600.480480pt;}
.y3b0{bottom:601.440481pt;}
.y203{bottom:601.600481pt;}
.y2c7{bottom:602.080482pt;}
.y295{bottom:604.160483pt;}
.y30c{bottom:604.320483pt;}
.y103{bottom:605.120484pt;}
.y18c{bottom:605.600484pt;}
.y247{bottom:606.400485pt;}
.y69{bottom:608.000000pt;}
.y2b{bottom:609.000000pt;}
.y379{bottom:610.080488pt;}
.y1a4{bottom:612.000490pt;}
.y2a5{bottom:612.160490pt;}
.y16b{bottom:612.800490pt;}
.y118{bottom:613.120490pt;}
.y358{bottom:616.480493pt;}
.y2ed{bottom:616.640493pt;}
.y1ba{bottom:616.800493pt;}
.y5b{bottom:617.920494pt;}
.y274{bottom:619.360495pt;}
.y219{bottom:620.640497pt;}
.y322{bottom:621.120497pt;}
.y77{bottom:622.880498pt;}
.y246{bottom:624.160499pt;}
.y393{bottom:624.480500pt;}
.ya8{bottom:626.560501pt;}
.y2a{bottom:627.000000pt;}
.y16a{bottom:628.160503pt;}
.y1a3{bottom:628.320503pt;}
.y91{bottom:629.120503pt;}
.y132{bottom:629.280503pt;}
.y15b{bottom:629.440504pt;}
.y357{bottom:631.680505pt;}
.y3af{bottom:632.000506pt;}
.y1d3{bottom:632.160506pt;}
.y2c6{bottom:632.800506pt;}
.y1ef{bottom:633.600507pt;}
.y294{bottom:634.720508pt;}
.y102{bottom:635.680509pt;}
.y32d{bottom:638.720511pt;}
.y245{bottom:640.480512pt;}
.y378{bottom:640.800513pt;}
.yf5{bottom:642.400514pt;}
.y25e{bottom:642.720514pt;}
.y169{bottom:643.360515pt;}
.y117{bottom:643.680515pt;}
.y29{bottom:646.000000pt;}
.y15{bottom:647.000000pt;}
.y1b9{bottom:647.360518pt;}
.y202{bottom:648.320519pt;}
.y201{bottom:648.480519pt;}
.y15a{bottom:648.640519pt;}
.y273{bottom:650.080520pt;}
.y319{bottom:651.680521pt;}
.y18b{bottom:652.320522pt;}
.y18a{bottom:652.480522pt;}
.y76{bottom:653.600523pt;}
.y5a{bottom:654.720524pt;}
.y244{bottom:655.840525pt;}
.y2d8{bottom:658.720527pt;}
.y218{bottom:659.040527pt;}
.y90{bottom:659.680528pt;}
.y139{bottom:659.840528pt;}
.y1a2{bottom:660.000528pt;}
.y1d2{bottom:662.720530pt;}
.ya7{bottom:663.360531pt;}
.y2c5{bottom:663.520531pt;}
.y200{bottom:663.680531pt;}
.y2ec{bottom:663.840531pt;}
.y28{bottom:664.000000pt;}
.y293{bottom:665.440532pt;}
.y101{bottom:666.400533pt;}
.y30b{bottom:666.880534pt;}
.y189{bottom:667.840534pt;}
.y14{bottom:668.000000pt;}
.y159{bottom:668.000534pt;}
.y32c{bottom:669.440536pt;}
.ye2{bottom:670.720537pt;}
.y377{bottom:671.360537pt;}
.y243{bottom:672.000538pt;}
.y242{bottom:672.160538pt;}
.yf4{bottom:673.120538pt;}
.y25d{bottom:673.440539pt;}
.y116{bottom:674.400540pt;}
.y1a1{bottom:675.360540pt;}
.y211{bottom:678.080542pt;}
.y4d{bottom:679.680544pt;}
.y1ee{bottom:680.320544pt;}
.y1ed{bottom:680.480544pt;}
.y272{bottom:680.800545pt;}
.y68{bottom:681.000000pt;}
.y1ff{bottom:681.440545pt;}
.y27{bottom:682.000000pt;}
.y30a{bottom:682.400546pt;}
.y75{bottom:684.320547pt;}
.y188{bottom:685.440548pt;}
.y158{bottom:687.200550pt;}
.y241{bottom:687.360550pt;}
.y2d7{bottom:689.440552pt;}
.y217{bottom:689.760552pt;}
.y8f{bottom:690.400552pt;}
.y131{bottom:690.560552pt;}
.y59{bottom:691.520553pt;}
.y1a0{bottom:691.680553pt;}
.y1d1{bottom:693.440555pt;}
.y344{bottom:694.080555pt;}
.y1ec{bottom:695.680557pt;}
.y2b7{bottom:696.000557pt;}
.y2eb{bottom:696.160557pt;}
.y13{bottom:697.000000pt;}
.y100{bottom:697.120558pt;}
.y1fe{bottom:699.040559pt;}
.y32b{bottom:700.000560pt;}
.ya6{bottom:700.160560pt;}
.y26{bottom:701.000000pt;}
.ye1{bottom:701.280561pt;}
.y3ae{bottom:701.600561pt;}
.y187{bottom:701.760561pt;}
.y392{bottom:701.920562pt;}
.y376{bottom:702.080562pt;}
.y36e{bottom:702.240562pt;}
.y240{bottom:703.520563pt;}
.yf3{bottom:703.680563pt;}
.y25c{bottom:704.000563pt;}
.y292{bottom:704.160563pt;}
.y115{bottom:705.120564pt;}
.y157{bottom:706.400565pt;}
.y19f{bottom:707.040566pt;}
.y210{bottom:708.800567pt;}
.y1b8{bottom:708.960567pt;}
.y318{bottom:713.120570pt;}
.y1eb{bottom:713.440571pt;}
.y74{bottom:714.880572pt;}
.y309{bottom:716.480573pt;}
.y1fd{bottom:716.800573pt;}
.y186{bottom:717.120574pt;}
.y25{bottom:719.000000pt;}
.y2d6{bottom:720.160576pt;}
.y216{bottom:720.480576pt;}
.y8e{bottom:721.120577pt;}
.y3da{bottom:721.280577pt;}
.y12{bottom:722.000000pt;}
.y4c{bottom:722.560578pt;}
.y343{bottom:724.800580pt;}
.y156{bottom:725.760581pt;}
.y3ad{bottom:727.040582pt;}
.y391{bottom:727.360582pt;}
.y271{bottom:727.520582pt;}
.yff{bottom:727.680582pt;}
.y291{bottom:728.320583pt;}
.y1ea{bottom:729.760584pt;}
.y308{bottom:731.680585pt;}
.ye0{bottom:732.000586pt;}
.ybd{bottom:732.320586pt;}
.y185{bottom:733.280587pt;}
.y1fc{bottom:734.400588pt;}
.y19e{bottom:735.360588pt;}
.y114{bottom:735.680589pt;}
.ya5{bottom:736.960590pt;}
.y24{bottom:738.000000pt;}
.y32a{bottom:738.880591pt;}
.y20f{bottom:739.360591pt;}
.y1b7{bottom:740.320592pt;}
.y1b6{bottom:740.480592pt;}
.y2c4{bottom:740.960593pt;}
.y25b{bottom:742.880594pt;}
.y290{bottom:743.680595pt;}
.y3ac{bottom:744.800596pt;}
.y155{bottom:744.960596pt;}
.y1e9{bottom:745.120596pt;}
.y36d{bottom:745.440596pt;}
.y73{bottom:745.600596pt;}
.yf2{bottom:746.080597pt;}
.y307{bottom:748.000598pt;}
.y306{bottom:748.160599pt;}
.y184{bottom:748.800599pt;}
.y19d{bottom:750.720601pt;}
.y215{bottom:751.040601pt;}
.y8d{bottom:751.680601pt;}
.y130{bottom:751.840601pt;}
.y1d0{bottom:754.880604pt;}
.y67{bottom:755.000000pt;}
.y1b5{bottom:755.680605pt;}
.y23{bottom:756.000000pt;}
.y12a{bottom:758.400607pt;}
.ybc{bottom:760.000608pt;}
.y28f{bottom:761.440609pt;}
.y3ab{bottom:762.400610pt;}
.y1e8{bottom:762.720610pt;}
.y36c{bottom:763.040610pt;}
.y305{bottom:763.360611pt;}
.y342{bottom:763.520611pt;}
.y154{bottom:764.320611pt;}
.y183{bottom:764.960612pt;}
.y58{bottom:765.120612pt;}
.y4b{bottom:765.600612pt;}
.y1fb{bottom:766.080613pt;}
.y2ea{bottom:766.400613pt;}
.y25a{bottom:766.880614pt;}
.y20e{bottom:770.240616pt;}
.y1b4{bottom:773.440619pt;}
.ya4{bottom:773.760619pt;}
.y22{bottom:774.000000pt;}
.ydf{bottom:774.400620pt;}
.y72{bottom:776.320621pt;}
.y28e{bottom:777.760622pt;}
.y304{bottom:779.520624pt;}
.y303{bottom:779.680624pt;}
.y3aa{bottom:780.000624pt;}
.y182{bottom:780.480624pt;}
.y36b{bottom:780.800625pt;}
.y1fa{bottom:781.440625pt;}
.y214{bottom:781.760625pt;}
.y8c{bottom:782.400626pt;}
.y12f{bottom:782.560626pt;}
.y153{bottom:783.520627pt;}
.y356{bottom:784.000627pt;}
.y129{bottom:789.120631pt;}
.y1b3{bottom:791.040633pt;}
.y21{bottom:793.000000pt;}
.y28d{bottom:793.120634pt;}
.y302{bottom:795.040636pt;}
.ybb{bottom:795.520636pt;}
.y181{bottom:796.800637pt;}
.y2e9{bottom:797.120638pt;}
.y3a9{bottom:797.760638pt;}
.y390{bottom:798.080638pt;}
.y36a{bottom:798.400639pt;}
.y259{bottom:800.160640pt;}
.y1cf{bottom:801.600641pt;}
.y1ce{bottom:801.760641pt;}
.y152{bottom:802.880642pt;}
.y113{bottom:805.120644pt;}
.y341{bottom:806.720645pt;}
.y71{bottom:806.880646pt;}
.y1b2{bottom:808.800647pt;}
.y28c{bottom:809.280647pt;}
.y28b{bottom:809.440648pt;}
.ya3{bottom:810.560648pt;}
.y20{bottom:811.000000pt;}
.y301{bottom:811.360649pt;}
.y180{bottom:812.160650pt;}
.y213{bottom:812.480650pt;}
.y8b{bottom:813.120650pt;}
.y3db{bottom:813.280651pt;}
.y3a8{bottom:815.360652pt;}
.y38f{bottom:815.680653pt;}
.y2{bottom:816.000000pt;}
.y317{bottom:816.000653pt;}
.y369{bottom:816.160653pt;}
.y258{bottom:816.480653pt;}
.y20d{bottom:816.960654pt;}
.y1cd{bottom:817.120654pt;}
.y355{bottom:819.360655pt;}
.yd6{bottom:819.840656pt;}
.y151{bottom:822.080658pt;}
.y66{bottom:823.000000pt;}
.yba{bottom:823.200659pt;}
.y340{bottom:824.480660pt;}
.y28a{bottom:824.800660pt;}
.yf1{bottom:825.920661pt;}
.y1b1{bottom:826.400661pt;}
.y300{bottom:826.720661pt;}
.y17f{bottom:827.360662pt;}
.y128{bottom:827.680662pt;}
.y4a{bottom:829.920664pt;}
.y1f{bottom:830.000000pt;}
.y257{bottom:831.680665pt;}
.y316{bottom:832.320666pt;}
.y20c{bottom:832.480666pt;}
.y3a7{bottom:833.120666pt;}
.y38e{bottom:833.440667pt;}
.y368{bottom:833.760667pt;}
.y1cc{bottom:834.720668pt;}
.y112{bottom:835.680669pt;}
.y354{bottom:837.120670pt;}
.y70{bottom:837.600670pt;}
.y57{bottom:838.720671pt;}
.y289{bottom:840.960673pt;}
.y150{bottom:841.280673pt;}
.y33f{bottom:842.080674pt;}
.y17e{bottom:842.720674pt;}
.y212{bottom:843.040674pt;}
.y8a{bottom:843.680675pt;}
.y12e{bottom:843.840675pt;}
.ya2{bottom:847.360678pt;}
.y315{bottom:847.680678pt;}
.y256{bottom:847.840678pt;}
.y1e{bottom:848.000000pt;}
.y255{bottom:848.000678pt;}
.y3a6{bottom:849.440680pt;}
.y38d{bottom:849.760680pt;}
.y20b{bottom:850.080680pt;}
.y11{bottom:851.000000pt;}
.y1cb{bottom:852.480682pt;}
.yde{bottom:854.080683pt;}
.y353{bottom:854.720684pt;}
.yf0{bottom:856.480685pt;}
.y1b0{bottom:858.080686pt;}
.y127{bottom:858.400687pt;}
.yb9{bottom:858.720687pt;}
.y33e{bottom:859.680688pt;}
.y14f{bottom:860.640689pt;}
.y254{bottom:863.360691pt;}
.y3a5{bottom:864.800692pt;}
.y6{bottom:865.000000pt;}
.y38c{bottom:865.120692pt;}
.y314{bottom:865.440692pt;}
.y1d{bottom:866.000000pt;}
.y111{bottom:866.400693pt;}
.y20a{bottom:867.680694pt;}
.y6f{bottom:868.320695pt;}
.y1ca{bottom:870.080696pt;}
.yf{bottom:872.000000pt;}
.y352{bottom:872.480698pt;}
.y288{bottom:872.800698pt;}
.y89{bottom:874.400700pt;}
.y3d9{bottom:874.560700pt;}
.y56{bottom:875.520700pt;}
.ye{bottom:877.000000pt;}
.y33d{bottom:877.440702pt;}
.y253{bottom:879.520704pt;}
.y14e{bottom:879.840704pt;}
.y313{bottom:883.040706pt;}
.ya1{bottom:884.160707pt;}
.ydd{bottom:884.800708pt;}
.y5{bottom:885.000000pt;}
.y209{bottom:885.440708pt;}
.yb8{bottom:886.400709pt;}
.yef{bottom:887.200710pt;}
.y1c9{bottom:887.680710pt;}
.y287{bottom:888.000710pt;}
.y351{bottom:888.800711pt;}
.y143{bottom:889.120711pt;}
.y252{bottom:895.040716pt;}
.y3a4{bottom:896.320717pt;}
.y38b{bottom:896.800717pt;}
.y110{bottom:897.120718pt;}
.y14d{bottom:899.200719pt;}
.y3{bottom:900.000000pt;}
.y312{bottom:900.800721pt;}
.yd{bottom:901.000000pt;}
.y1c{bottom:903.000000pt;}
.y208{bottom:903.040722pt;}
.y1c8{bottom:904.000723pt;}
.y88{bottom:905.120724pt;}
.y13d{bottom:905.280724pt;}
.y65{bottom:909.000000pt;}
.y251{bottom:911.360729pt;}
.y55{bottom:912.320730pt;}
.y49{bottom:915.840733pt;}
.y14c{bottom:918.400735pt;}
.y1c7{bottom:919.360735pt;}
.y286{bottom:919.680736pt;}
.ya0{bottom:920.960737pt;}
.yb7{bottom:921.920738pt;}
.y1b{bottom:922.000000pt;}
.ydc{bottom:924.000739pt;}
.y250{bottom:926.720741pt;}
.y3a3{bottom:927.040742pt;}
.y38a{bottom:927.360742pt;}
.y126{bottom:927.680742pt;}
.yc{bottom:929.000000pt;}
.yee{bottom:929.600744pt;}
.y14b{bottom:934.720748pt;}
.y87{bottom:935.680749pt;}
.y12d{bottom:935.840749pt;}
.y1a{bottom:940.000000pt;}
.y1{bottom:948.000000pt;}
.yb6{bottom:949.600760pt;}
.y14a{bottom:950.080760pt;}
.y64{bottom:952.000000pt;}
.y9f{bottom:957.760766pt;}
.y47{bottom:958.000000pt;}
.y142{bottom:958.400767pt;}
.y48{bottom:958.720767pt;}
.y19{bottom:959.000000pt;}
.y6e{bottom:964.000771pt;}
.y86{bottom:966.400773pt;}
.y125{bottom:966.560773pt;}
.y18{bottom:977.000000pt;}
.yed{bottom:981.760785pt;}
.ydb{bottom:989.600792pt;}
.yb5{bottom:994.560796pt;}
.y17{bottom:995.000000pt;}
.y85{bottom:997.120798pt;}
.y124{bottom:997.280798pt;}
.y16{bottom:1014.000000pt;}
.y3dc{bottom:1042.400834pt;}
.yc2{bottom:1045.440836pt;}
.y6c{bottom:1060.800849pt;}
.h12{height:18.240000pt;}
.h2{height:21.000000pt;}
.h7{height:24.000000pt;}
.h15{height:32.935706pt;}
.hf{height:35.404716pt;}
.h17{height:42.656284pt;}
.h13{height:46.336037pt;}
.h10{height:47.424038pt;}
.ha{height:50.410920pt;}
.h11{height:50.623400pt;}
.h14{height:59.815728pt;}
.hc{height:60.736049pt;}
.hb{height:60.992049pt;}
.h1{height:62.812500pt;}
.h4{height:66.750000pt;}
.h9{height:71.061177pt;}
.h5{height:75.609375pt;}
.h3{height:79.265625pt;}
.h18{height:80.778945pt;}
.h6{height:87.609375pt;}
.h1d{height:110.783449pt;}
.h1a{height:111.210969pt;}
.h1b{height:111.423449pt;}
.h19{height:111.850969pt;}
.h1c{height:112.063450pt;}
.hd{height:154.359375pt;}
.h16{height:200.250000pt;}
.he{height:267.000000pt;}
.h0{height:1056.000000pt;}
.h8{height:1122.666667pt;}
.wa{width:8.960000pt;}
.w2{width:12.000000pt;}
.wb{width:17.920000pt;}
.wc{width:26.880000pt;}
.w5{width:64.000000pt;}
.w6{width:73.000000pt;}
.w4{width:194.000000pt;}
.w3{width:205.000000pt;}
.w1{width:234.000000pt;}
.w7{width:573.000000pt;}
.w9{width:793.333333pt;}
.w8{width:794.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.000000pt;}
.x51{left:121.387018pt;}
.x46{left:125.867016pt;}
.x50{left:131.147014pt;}
.x1a{left:133.706613pt;}
.x8f{left:135.786612pt;}
.xfb{left:137.706612pt;}
.x91{left:138.666611pt;}
.x47{left:139.946611pt;}
.x90{left:142.186610pt;}
.x26{left:145.546608pt;}
.xea{left:146.986608pt;}
.x1d{left:148.106607pt;}
.x6b{left:149.066607pt;}
.x10e{left:151.466606pt;}
.x53{left:152.746606pt;}
.x52{left:153.866605pt;}
.xb2{left:155.146605pt;}
.x11{left:157.066604pt;}
.xc{left:159.000000pt;}
.x21{left:160.106603pt;}
.xc8{left:161.066602pt;}
.xd7{left:162.026602pt;}
.xdf{left:163.786601pt;}
.x15{left:164.906601pt;}
.x10{left:166.346600pt;}
.xda{left:167.306600pt;}
.x2e{left:169.546599pt;}
.x72{left:171.146598pt;}
.x1f{left:172.106598pt;}
.xb1{left:174.346597pt;}
.x2b{left:175.626596pt;}
.xce{left:176.906596pt;}
.x2{left:178.000000pt;}
.x10c{left:179.786595pt;}
.x1b{left:180.906594pt;}
.xba{left:182.346594pt;}
.x22{left:184.106593pt;}
.x5{left:185.000000pt;}
.x97{left:186.826592pt;}
.xb9{left:187.946591pt;}
.x29{left:192.746590pt;}
.x20{left:195.146589pt;}
.x23{left:196.106588pt;}
.xe{left:197.066588pt;}
.x2c{left:199.626587pt;}
.x115{left:202.026586pt;}
.xc3{left:204.746585pt;}
.xc1{left:206.026584pt;}
.xc2{left:207.146584pt;}
.xf9{left:208.426583pt;}
.xc4{left:214.826581pt;}
.x19{left:216.106580pt;}
.x25{left:219.146579pt;}
.x92{left:220.106579pt;}
.x2f{left:223.626577pt;}
.xf2{left:226.826576pt;}
.xf4{left:229.066575pt;}
.x45{left:230.026575pt;}
.x13{left:231.466574pt;}
.xde{left:232.746574pt;}
.xe0{left:234.186573pt;}
.xcf{left:235.306573pt;}
.x30{left:236.746572pt;}
.x3f{left:238.826571pt;}
.x28{left:239.946571pt;}
.x89{left:240.906570pt;}
.x77{left:241.866570pt;}
.x18{left:243.146569pt;}
.xd3{left:244.426569pt;}
.x17{left:245.866568pt;}
.x2a{left:246.826568pt;}
.xc9{left:249.226567pt;}
.x6c{left:250.506566pt;}
.xb3{left:251.786566pt;}
.x43{left:253.706565pt;}
.x44{left:254.826565pt;}
.xbb{left:256.426564pt;}
.x58{left:257.546564pt;}
.xfc{left:258.506563pt;}
.x8{left:260.000000pt;}
.x101{left:262.346562pt;}
.xf{left:263.786561pt;}
.xab{left:265.866560pt;}
.x24{left:267.146560pt;}
.xb5{left:272.106558pt;}
.x96{left:275.626556pt;}
.x114{left:277.066556pt;}
.x110{left:278.026555pt;}
.x7{left:280.000000pt;}
.x109{left:281.706554pt;}
.x95{left:282.986553pt;}
.x9b{left:284.426553pt;}
.x10d{left:286.186552pt;}
.x32{left:287.786552pt;}
.xa4{left:288.746551pt;}
.x9a{left:294.186549pt;}
.x93{left:295.786548pt;}
.xa3{left:298.506547pt;}
.x54{left:299.466547pt;}
.xef{left:301.546546pt;}
.x36{left:303.946545pt;}
.x8b{left:306.026544pt;}
.x48{left:307.786544pt;}
.xed{left:311.306542pt;}
.xf5{left:313.066541pt;}
.x9e{left:315.786540pt;}
.x9d{left:316.906540pt;}
.x31{left:317.866540pt;}
.xa7{left:320.106539pt;}
.xa6{left:321.226538pt;}
.x9c{left:322.826538pt;}
.xf6{left:323.786537pt;}
.x5a{left:325.546536pt;}
.xa5{left:327.146536pt;}
.x6{left:330.000000pt;}
.x5b{left:331.946534pt;}
.xb{left:333.000000pt;}
.x2d{left:334.506533pt;}
.x78{left:336.266532pt;}
.xf1{left:337.866532pt;}
.x40{left:340.746530pt;}
.x111{left:342.346530pt;}
.x6d{left:345.066529pt;}
.x59{left:347.626528pt;}
.x5c{left:352.106526pt;}
.xfd{left:353.066525pt;}
.x39{left:354.346525pt;}
.x38{left:356.586524pt;}
.x102{left:359.626523pt;}
.x37{left:360.906522pt;}
.x14{left:362.026522pt;}
.x1e{left:369.546519pt;}
.x3a{left:372.106518pt;}
.xac{left:374.666517pt;}
.x12{left:375.946516pt;}
.xe4{left:376.906516pt;}
.xff{left:378.666515pt;}
.x55{left:379.786515pt;}
.x33{left:381.546514pt;}
.x9{left:383.000000pt;}
.xa9{left:384.426513pt;}
.x16{left:385.706512pt;}
.x49{left:388.106511pt;}
.xd0{left:389.226511pt;}
.xe6{left:390.986510pt;}
.x3d{left:392.106510pt;}
.x3c{left:394.346509pt;}
.xca{left:395.626508pt;}
.x3b{left:396.586508pt;}
.xa0{left:398.986507pt;}
.x76{left:401.546506pt;}
.x27{left:403.467200pt;}
.x34{left:405.000000pt;}
.x10a{left:407.466504pt;}
.x108{left:409.226503pt;}
.x3{left:412.000000pt;}
.x104{left:412.906502pt;}
.xe5{left:415.626500pt;}
.x1c{left:416.906500pt;}
.xf7{left:418.186499pt;}
.x5e{left:420.106499pt;}
.xe1{left:421.866498pt;}
.x113{left:422.986497pt;}
.x35{left:424.107200pt;}
.x3e{left:425.387200pt;}
.x41{left:426.986496pt;}
.x7a{left:428.266495pt;}
.xf3{left:429.546495pt;}
.x79{left:432.586494pt;}
.x10f{left:437.866492pt;}
.x6e{left:439.466491pt;}
.xc5{left:441.226490pt;}
.x5d{left:442.186490pt;}
.x86{left:443.146489pt;}
.xa8{left:445.066489pt;}
.x7b{left:446.506488pt;}
.xfe{left:447.466488pt;}
.x9f{left:448.906487pt;}
.xee{left:450.346487pt;}
.xd4{left:452.426486pt;}
.xdb{left:453.706485pt;}
.x105{left:454.826485pt;}
.xb6{left:455.786484pt;}
.xd8{left:457.386484pt;}
.x56{left:460.106483pt;}
.x94{left:461.226482pt;}
.xe9{left:462.186482pt;}
.xec{left:463.306481pt;}
.x4a{left:467.786480pt;}
.x8c{left:471.466478pt;}
.xb4{left:475.306477pt;}
.xad{left:478.666475pt;}
.x10b{left:482.666474pt;}
.xaf{left:487.466472pt;}
.xaa{left:488.426471pt;}
.x42{left:496.906468pt;}
.xfa{left:499.786467pt;}
.x99{left:505.866464pt;}
.x98{left:506.986464pt;}
.xa2{left:508.426463pt;}
.xeb{left:509.706463pt;}
.xf8{left:512.746462pt;}
.x60{left:514.506461pt;}
.xa1{left:516.746460pt;}
.x7d{left:518.026459pt;}
.xdd{left:519.786459pt;}
.x61{left:520.906458pt;}
.x73{left:522.506458pt;}
.xd9{left:523.466457pt;}
.xd1{left:526.186456pt;}
.xe7{left:528.266455pt;}
.x84{left:529.386455pt;}
.x7c{left:531.946454pt;}
.x87{left:533.066453pt;}
.x6f{left:534.026453pt;}
.x57{left:535.626452pt;}
.x5f{left:536.586452pt;}
.xcd{left:537.706452pt;}
.x62{left:541.066450pt;}
.x4b{left:543.946449pt;}
.x106{left:549.386447pt;}
.x8d{left:551.626446pt;}
.x107{left:556.746444pt;}
.xbc{left:558.826443pt;}
.xb7{left:559.786443pt;}
.xbf{left:568.266439pt;}
.xbd{left:569.226439pt;}
.x100{left:572.266438pt;}
.xe2{left:574.026437pt;}
.xf0{left:575.466436pt;}
.xa{left:577.000000pt;}
.xdc{left:579.146435pt;}
.xc6{left:580.906434pt;}
.xae{left:587.146432pt;}
.xd5{left:589.386431pt;}
.xd6{left:594.346429pt;}
.xd2{left:597.226428pt;}
.xe8{left:599.146427pt;}
.xb0{left:600.746426pt;}
.x7f{left:603.146425pt;}
.x7e{left:605.706424pt;}
.x4c{left:606.826424pt;}
.x64{left:609.066423pt;}
.x112{left:611.786422pt;}
.x85{left:614.346421pt;}
.x65{left:615.466420pt;}
.x74{left:617.066420pt;}
.x4d{left:619.626419pt;}
.x80{left:621.386418pt;}
.x8e{left:626.506416pt;}
.x70{left:628.586415pt;}
.x63{left:631.306414pt;}
.x66{left:635.626412pt;}
.x103{left:645.066409pt;}
.x4{left:646.000000pt;}
.xe3{left:648.586407pt;}
.xc7{left:651.146406pt;}
.xd{left:659.000000pt;}
.xcb{left:660.266403pt;}
.xcc{left:665.226401pt;}
.xb8{left:668.426399pt;}
.x4e{left:678.346395pt;}
.xc0{left:681.706394pt;}
.xbe{left:682.666394pt;}
.x83{left:688.106391pt;}
.x82{left:690.666390pt;}
.x8a{left:691.626390pt;}
.x68{left:698.826387pt;}
.x4f{left:699.946387pt;}
.x81{left:702.026386pt;}
.x88{left:703.146385pt;}
.x69{left:705.066385pt;}
.x75{left:706.826384pt;}
.x71{left:718.346379pt;}
.x67{left:720.906378pt;}
.x6a{left:725.386377pt;}
}




    .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; }
  