
    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_8d6af0a13e431d1e1e2cfc60.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b276af5aba700afb623e47bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_ae50bf5ec90aa82844464d39.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_0932eabeb69db3aa05e6f7da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_30a52ccb02bfe4849161d21c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;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_6e5117e147614ead0b5e75c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;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_7e61f93c86cfb402f545e8d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_6ceed01d329bee290ce7746c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_7c7a649ba4a2f035c1b23065.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_a5cc6b1e0cf47ab94497c63a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_f728edd05f471e0eddf9bf5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_9db2636cce21ae4d51b9bfde.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_119264bc1cfc38ad31cdd173.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_9d5c7bae2b85cff38abf732f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_ff463a32d4256a7271995d17.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_96b492691920c6bb2e3d5145.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;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_af86f595bd21acb381ec5fb4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_9db2636cce21ae4d51b9bfde.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;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_0053c93acd153ab6793eda2c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;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_26b55e884428288a940bd5ac.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.909180;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_3f8fe319f35bb44df6bb0d8a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_517e9bc7c1948cace4d102b9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;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_00d921e1e82323cb3d19d4e6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;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_d52e6e6aba307b8110b25c87.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;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_dc136a8d4dc4e850f39db444.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_9e627589eda6122976238726.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000488;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_57d00dfc2173738a848a7211.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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_558571a1bd24d0c5669f80a6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;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_7036f698ba1e8d171f2c3f29.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909180;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_db036827c4b4b50bb0657bb2.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000488;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_a1b7081b170a27d3b91332f6.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.006348;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_95052d3f2d7d0cdeb9803fe0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.011230;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:ff23;src:url('chunks/assets/font_26b55e884428288a940bd5ac.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.909180;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:ff24;src:url('chunks/assets/font_a77de4c5a9cb18d391a3fa69.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.726000;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;}
.m2c{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.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);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-26.998920px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:19.801800px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:24.690000px;}
.v6{vertical-align:32.874000px;}
.v7{vertical-align:36.720000px;}
.ls91{letter-spacing:-0.300600px;}
.ls95{letter-spacing:-0.294588px;}
.lsad{letter-spacing:-0.265129px;}
.lsb3{letter-spacing:-0.238075px;}
.lsa9{letter-spacing:-0.227254px;}
.ls8b{letter-spacing:-0.222444px;}
.ls89{letter-spacing:-0.216432px;}
.ls75{letter-spacing:-0.181116px;}
.ls2b{letter-spacing:-0.176753px;}
.ls9f{letter-spacing:-0.172800px;}
.ls87{letter-spacing:-0.168336px;}
.ls6e{letter-spacing:-0.156312px;}
.lsb1{letter-spacing:-0.155520px;}
.ls28{letter-spacing:-0.145190px;}
.ls8e{letter-spacing:-0.143208px;}
.lsab{letter-spacing:-0.140681px;}
.ls9a{letter-spacing:-0.138996px;}
.lsb5{letter-spacing:-0.135270px;}
.ls2f{letter-spacing:-0.132565px;}
.lsa2{letter-spacing:-0.132264px;}
.ls8f{letter-spacing:-0.130572px;}
.ls44{letter-spacing:-0.119038px;}
.ls96{letter-spacing:-0.117936px;}
.ls25{letter-spacing:-0.113627px;}
.ls8c{letter-spacing:-0.108216px;}
.ls29{letter-spacing:-0.094689px;}
.ls7a{letter-spacing:-0.092664px;}
.ls88{letter-spacing:-0.090180px;}
.ls6d{letter-spacing:-0.078156px;}
.ls2c{letter-spacing:-0.075751px;}
.ls79{letter-spacing:-0.070560px;}
.ls97{letter-spacing:-0.063180px;}
.ls6a{letter-spacing:-0.060120px;}
.lsb4{letter-spacing:-0.059519px;}
.ls77{letter-spacing:-0.058968px;}
.ls93{letter-spacing:-0.054108px;}
.lsaf{letter-spacing:-0.048697px;}
.ls94{letter-spacing:-0.048096px;}
.ls2d{letter-spacing:-0.044188px;}
.ls90{letter-spacing:-0.042084px;}
.ls2e{letter-spacing:-0.037876px;}
.ls8a{letter-spacing:-0.036072px;}
.ls43{letter-spacing:-0.032465px;}
.ls6f{letter-spacing:-0.030060px;}
.ls71{letter-spacing:-0.027000px;}
.ls8d{letter-spacing:-0.024048px;}
.lsb0{letter-spacing:-0.021643px;}
.ls2a{letter-spacing:-0.018938px;}
.ls92{letter-spacing:-0.018036px;}
.lsae{letter-spacing:-0.016232px;}
.ls69{letter-spacing:-0.014364px;}
.ls30{letter-spacing:-0.012625px;}
.ls6b{letter-spacing:-0.012024px;}
.lsaa{letter-spacing:-0.010822px;}
.ls73{letter-spacing:-0.010800px;}
.ls98{letter-spacing:-0.008424px;}
.ls27{letter-spacing:-0.006313px;}
.ls6c{letter-spacing:-0.006012px;}
.lsa8{letter-spacing:-0.005411px;}
.ls70{letter-spacing:-0.005400px;}
.ls78{letter-spacing:-0.005040px;}
.ls24{letter-spacing:-0.005027px;}
.ls9e{letter-spacing:-0.004788px;}
.ls42{letter-spacing:-0.004309px;}
.ls0{letter-spacing:0.000000px;}
.lsbc{letter-spacing:0.000086px;}
.lsc3{letter-spacing:0.000800px;}
.lsc0{letter-spacing:0.001584px;}
.lsc2{letter-spacing:0.001899px;}
.lsc4{letter-spacing:0.002544px;}
.lsbe{letter-spacing:0.002773px;}
.lsb8{letter-spacing:0.003226px;}
.lsbb{letter-spacing:0.003794px;}
.ls67{letter-spacing:0.005040px;}
.ls60{letter-spacing:0.005400px;}
.ls3d{letter-spacing:0.005411px;}
.ls57{letter-spacing:0.006012px;}
.ls17{letter-spacing:0.006313px;}
.ls62{letter-spacing:0.010800px;}
.lsa5{letter-spacing:0.010822px;}
.ls5d{letter-spacing:0.012024px;}
.ls13{letter-spacing:0.012625px;}
.ls36{letter-spacing:0.014580px;}
.ls7b{letter-spacing:0.016200px;}
.ls3a{letter-spacing:0.016232px;}
.ls7f{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.018938px;}
.ls51{letter-spacing:0.019152px;}
.lsb2{letter-spacing:0.019440px;}
.ls63{letter-spacing:0.021600px;}
.ls3c{letter-spacing:0.021643px;}
.ls58{letter-spacing:0.024048px;}
.ls37{letter-spacing:0.024300px;}
.ls1c{letter-spacing:0.025250px;}
.ls31{letter-spacing:0.025855px;}
.ls65{letter-spacing:0.027000px;}
.lsa4{letter-spacing:0.027054px;}
.ls9b{letter-spacing:0.028728px;}
.ls80{letter-spacing:0.030060px;}
.lsd{letter-spacing:0.030164px;}
.ls12{letter-spacing:0.031563px;}
.ls64{letter-spacing:0.032400px;}
.ls3b{letter-spacing:0.032465px;}
.ls1d{letter-spacing:0.034020px;}
.ls5a{letter-spacing:0.036072px;}
.ls5f{letter-spacing:0.037800px;}
.ls20{letter-spacing:0.037876px;}
.ls55{letter-spacing:0.042084px;}
.ls35{letter-spacing:0.043286px;}
.ls59{letter-spacing:0.048096px;}
.ls61{letter-spacing:0.048600px;}
.ls34{letter-spacing:0.048697px;}
.ls18{letter-spacing:0.050501px;}
.ls82{letter-spacing:0.054000px;}
.ls5c{letter-spacing:0.054108px;}
.ls14{letter-spacing:0.056813px;}
.ls5e{letter-spacing:0.060120px;}
.ls1b{letter-spacing:0.063126px;}
.ls9d{letter-spacing:0.064800px;}
.ls3e{letter-spacing:0.064930px;}
.ls56{letter-spacing:0.066132px;}
.ls11{letter-spacing:0.069439px;}
.ls39{letter-spacing:0.070340px;}
.ls5b{letter-spacing:0.072144px;}
.ls1e{letter-spacing:0.073710px;}
.ls19{letter-spacing:0.075751px;}
.ls7e{letter-spacing:0.078156px;}
.ls45{letter-spacing:0.081162px;}
.ls21{letter-spacing:0.082064px;}
.lsa7{letter-spacing:0.082620px;}
.ls54{letter-spacing:0.084168px;}
.ls40{letter-spacing:0.086573px;}
.ls15{letter-spacing:0.088376px;}
.ls83{letter-spacing:0.090180px;}
.ls38{letter-spacing:0.091984px;}
.ls22{letter-spacing:0.094689px;}
.ls7d{letter-spacing:0.096192px;}
.ls76{letter-spacing:0.096876px;}
.ls66{letter-spacing:0.097200px;}
.ls3f{letter-spacing:0.097394px;}
.ls7c{letter-spacing:0.102204px;}
.ls1a{letter-spacing:0.107314px;}
.ls99{letter-spacing:0.109512px;}
.ls1f{letter-spacing:0.132565px;}
.ls10{letter-spacing:0.138877px;}
.ls33{letter-spacing:0.159440px;}
.lsa3{letter-spacing:0.163750px;}
.ls53{letter-spacing:0.167580px;}
.ls32{letter-spacing:0.172368px;}
.ls81{letter-spacing:0.178200px;}
.ls74{letter-spacing:0.181116px;}
.ls52{letter-spacing:0.181944px;}
.lsa0{letter-spacing:0.183600px;}
.lsf{letter-spacing:0.186014px;}
.ls9c{letter-spacing:0.191520px;}
.lse{letter-spacing:0.201096px;}
.lsac{letter-spacing:0.275951px;}
.lsa1{letter-spacing:0.342684px;}
.ls85{letter-spacing:2.609208px;}
.ls26{letter-spacing:2.745981px;}
.ls49{letter-spacing:2.989200px;}
.lsa6{letter-spacing:3.086100px;}
.ls84{letter-spacing:4.052088px;}
.ls5{letter-spacing:11.954850px;}
.lsc1{letter-spacing:12.223249px;}
.lsbf{letter-spacing:12.355056px;}
.lsb6{letter-spacing:12.851754px;}
.ls47{letter-spacing:14.585246px;}
.ls4b{letter-spacing:14.764573px;}
.ls46{letter-spacing:14.824349px;}
.ls7{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.ls68{letter-spacing:15.063451px;}
.ls8{letter-spacing:15.123227px;}
.lsa{letter-spacing:15.302554px;}
.lsb7{letter-spacing:15.601432px;}
.ls4a{letter-spacing:15.663483px;}
.ls23{letter-spacing:15.900310px;}
.ls4f{letter-spacing:16.139412px;}
.ls41{letter-spacing:17.872904px;}
.ls48{letter-spacing:17.935200px;}
.lsb9{letter-spacing:18.171782px;}
.lsbd{letter-spacing:18.709763px;}
.ls6{letter-spacing:19.068416px;}
.lsc{letter-spacing:20.024826px;}
.lsba{letter-spacing:22.774504px;}
.ls4c{letter-spacing:23.073382px;}
.lsb{letter-spacing:26.779469px;}
.ls50{letter-spacing:27.676103px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.ls4d{letter-spacing:111.940090px;}
.ls4e{letter-spacing:123.721939px;}
.ls86{letter-spacing:318.060756px;}
.ls72{letter-spacing:551.701800px;}
.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;}
}
.ws112{word-spacing:-15.108156px;}
.ws29{word-spacing:-14.943900px;}
.wsd6{word-spacing:-13.548600px;}
.ws1d4{word-spacing:-13.449600px;}
.ws60{word-spacing:-12.769596px;}
.ws61{word-spacing:-12.568500px;}
.ws16a{word-spacing:-12.161520px;}
.wsd4{word-spacing:-12.151944px;}
.wsd5{word-spacing:-11.970000px;}
.ws2b{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws9a{word-spacing:-10.945368px;}
.ws9b{word-spacing:-10.773000px;}
.ws111{word-spacing:-10.711116px;}
.ws114{word-spacing:-10.639512px;}
.ws5{word-spacing:-10.460700px;}
.wsda{word-spacing:-10.437336px;}
.wsd7{word-spacing:-10.348884px;}
.ws156{word-spacing:-3.901788px;}
.ws70{word-spacing:-3.749684px;}
.ws140{word-spacing:-3.559104px;}
.ws157{word-spacing:-3.547080px;}
.ws6f{word-spacing:-3.295177px;}
.ws1ca{word-spacing:-3.227882px;}
.ws188{word-spacing:-3.216420px;}
.ws1a4{word-spacing:-3.186961px;}
.ws161{word-spacing:-3.174336px;}
.ws1ad{word-spacing:-3.170729px;}
.ws41{word-spacing:-2.929004px;}
.wsb3{word-spacing:-2.878546px;}
.ws1a3{word-spacing:-2.873135px;}
.ws1ac{word-spacing:-2.856902px;}
.ws146{word-spacing:-2.825640px;}
.ws1cf{word-spacing:-2.636122px;}
.ws1bc{word-spacing:-2.630126px;}
.wsad{word-spacing:-2.537665px;}
.ws147{word-spacing:-2.440872px;}
.ws17c{word-spacing:-2.416824px;}
.ws119{word-spacing:-2.391024px;}
.ws12a{word-spacing:-2.338668px;}
.ws35{word-spacing:-2.331248px;}
.ws1c8{word-spacing:-2.271473px;}
.ws14d{word-spacing:-2.134260px;}
.ws14e{word-spacing:-2.092176px;}
.wsbc{word-spacing:-2.092146px;}
.ws17b{word-spacing:-2.056104px;}
.ws44{word-spacing:-2.032370px;}
.ws56{word-spacing:-1.972595px;}
.ws1a6{word-spacing:-1.893780px;}
.wscb{word-spacing:-1.853044px;}
.ws9d{word-spacing:-1.793268px;}
.wsf1{word-spacing:-1.779552px;}
.ws173{word-spacing:-1.737468px;}
.wsbd{word-spacing:-1.733492px;}
.wsf0{word-spacing:-1.707408px;}
.ws32{word-spacing:-1.673717px;}
.ws162{word-spacing:-1.671336px;}
.ws1fb{word-spacing:-1.667750px;}
.wsc3{word-spacing:-1.554166px;}
.ws206{word-spacing:-1.506355px;}
.ws176{word-spacing:-1.418832px;}
.ws163{word-spacing:-1.412820px;}
.ws172{word-spacing:-1.400796px;}
.wsf8{word-spacing:-1.376748px;}
.ws1be{word-spacing:-1.374839px;}
.wsf7{word-spacing:-1.322640px;}
.ws1ee{word-spacing:-1.291162px;}
.wsb2{word-spacing:-1.260716px;}
.ws1c9{word-spacing:-1.255288px;}
.ws1f7{word-spacing:-1.237363px;}
.wsb1{word-spacing:-1.217430px;}
.ws39{word-spacing:-1.195512px;}
.ws1dc{word-spacing:-1.129766px;}
.ws184{word-spacing:-1.064124px;}
.wse4{word-spacing:-1.034064px;}
.ws18e{word-spacing:-1.016185px;}
.ws168{word-spacing:-0.956410px;}
.ws38{word-spacing:-0.896634px;}
.ws117{word-spacing:-0.836858px;}
.ws1dd{word-spacing:-0.806976px;}
.ws1c4{word-spacing:-0.777083px;}
.ws9e{word-spacing:-0.717307px;}
.ws1e3{word-spacing:-0.699379px;}
.ws15a{word-spacing:-0.673344px;}
.ws1c0{word-spacing:-0.657532px;}
.ws15c{word-spacing:-0.655308px;}
.ws153{word-spacing:-0.649296px;}
.ws1e4{word-spacing:-0.645581px;}
.ws18d{word-spacing:-0.625248px;}
.ws183{word-spacing:-0.607212px;}
.ws10f{word-spacing:-0.597756px;}
.ws1a0{word-spacing:-0.584366px;}
.ws15d{word-spacing:-0.583164px;}
.ws72{word-spacing:-0.561821px;}
.ws1eb{word-spacing:-0.537984px;}
.ws71{word-spacing:-0.511321px;}
.ws18f{word-spacing:-0.478205px;}
.ws9c{word-spacing:-0.418429px;}
.ws90{word-spacing:-0.410319px;}
.ws203{word-spacing:-0.376589px;}
.ws47{word-spacing:-0.358654px;}
.ws8b{word-spacing:-0.340880px;}
.ws174{word-spacing:-0.336672px;}
.wsa9{word-spacing:-0.330059px;}
.ws159{word-spacing:-0.324648px;}
.ws1e2{word-spacing:-0.322790px;}
.ws18b{word-spacing:-0.318636px;}
.wse5{word-spacing:-0.306612px;}
.ws51{word-spacing:-0.298878px;}
.ws6a{word-spacing:-0.291589px;}
.wsb4{word-spacing:-0.286772px;}
.ws16d{word-spacing:-0.277704px;}
.wsbb{word-spacing:-0.275951px;}
.wsdf{word-spacing:-0.272916px;}
.ws175{word-spacing:-0.270540px;}
.ws1d0{word-spacing:-0.268992px;}
.wsfd{word-spacing:-0.258516px;}
.ws1ea{word-spacing:-0.257115px;}
.ws9f{word-spacing:-0.249934px;}
.ws21{word-spacing:-0.239102px;}
.ws12f{word-spacing:-0.234468px;}
.ws13d{word-spacing:-0.232200px;}
.ws1b1{word-spacing:-0.216432px;}
.wsff{word-spacing:-0.216000px;}
.ws1d1{word-spacing:-0.215194px;}
.ws106{word-spacing:-0.210600px;}
.ws11d{word-spacing:-0.199800px;}
.ws100{word-spacing:-0.183600px;}
.ws20{word-spacing:-0.179327px;}
.ws101{word-spacing:-0.178200px;}
.ws13e{word-spacing:-0.167400px;}
.ws11{word-spacing:-0.161395px;}
.ws18a{word-spacing:-0.132264px;}
.ws1e{word-spacing:-0.119551px;}
.ws13{word-spacing:-0.107597px;}
.ws6b{word-spacing:-0.085466px;}
.ws16e{word-spacing:-0.081396px;}
.wse0{word-spacing:-0.076608px;}
.wsa0{word-spacing:-0.073256px;}
.ws2e{word-spacing:-0.059776px;}
.ws12e{word-spacing:-0.054108px;}
.ws1a{word-spacing:-0.053798px;}
.ws1d7{word-spacing:-0.046330px;}
.ws1ff{word-spacing:-0.013622px;}
.ws1d8{word-spacing:-0.008621px;}
.ws1f9{word-spacing:-0.007661px;}
.ws1e6{word-spacing:-0.007133px;}
.ws1d5{word-spacing:-0.006182px;}
.ws1f8{word-spacing:-0.005798px;}
.ws1ed{word-spacing:-0.005510px;}
.ws1a9{word-spacing:-0.005411px;}
.ws10e{word-spacing:-0.005040px;}
.ws1fc{word-spacing:-0.003696px;}
.ws1fe{word-spacing:-0.002496px;}
.ws1de{word-spacing:-0.002333px;}
.ws2a{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.000631px;}
.ws10c{word-spacing:0.005040px;}
.wsb5{word-spacing:0.005411px;}
.wse2{word-spacing:0.006012px;}
.ws1b4{word-spacing:0.016232px;}
.ws124{word-spacing:0.018036px;}
.ws136{word-spacing:0.024048px;}
.ws1f2{word-spacing:0.025627px;}
.ws12b{word-spacing:0.030060px;}
.ws13f{word-spacing:0.036072px;}
.wsa6{word-spacing:0.037876px;}
.wsfc{word-spacing:0.042084px;}
.ws1d9{word-spacing:0.051081px;}
.ws1cb{word-spacing:0.053798px;}
.wsef{word-spacing:0.054108px;}
.ws1a7{word-spacing:0.059519px;}
.ws34{word-spacing:0.059776px;}
.ws1b3{word-spacing:0.064930px;}
.wsf9{word-spacing:0.066132px;}
.ws10d{word-spacing:0.070560px;}
.ws8c{word-spacing:0.075751px;}
.ws137{word-spacing:0.078156px;}
.ws10a{word-spacing:0.081000px;}
.ws8f{word-spacing:0.088376px;}
.ws148{word-spacing:0.096192px;}
.ws19d{word-spacing:0.097394px;}
.wscf{word-spacing:0.107597px;}
.ws1ae{word-spacing:0.108216px;}
.ws13c{word-spacing:0.114228px;}
.ws16f{word-spacing:0.118800px;}
.wsa5{word-spacing:0.119038px;}
.ws8e{word-spacing:0.119070px;}
.ws28{word-spacing:0.119551px;}
.ws11e{word-spacing:0.120240px;}
.ws6{word-spacing:0.125528px;}
.ws189{word-spacing:0.126252px;}
.ws107{word-spacing:0.129600px;}
.ws19f{word-spacing:0.135270px;}
.wsa8{word-spacing:0.140940px;}
.ws10b{word-spacing:0.145800px;}
.wse3{word-spacing:0.150300px;}
.ws108{word-spacing:0.151200px;}
.ws105{word-spacing:0.156600px;}
.ws8d{word-spacing:0.158760px;}
.ws1da{word-spacing:0.161395px;}
.ws11b{word-spacing:0.162000px;}
.ws102{word-spacing:0.167400px;}
.ws11c{word-spacing:0.172800px;}
.wsfe{word-spacing:0.178200px;}
.ws1f{word-spacing:0.179327px;}
.ws103{word-spacing:0.183600px;}
.ws13b{word-spacing:0.198396px;}
.ws19{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.ws12{word-spacing:0.268992px;}
.ws43{word-spacing:0.298878px;}
.ws1b2{word-spacing:0.303005px;}
.ws19c{word-spacing:0.313826px;}
.ws14{word-spacing:0.322790px;}
.ws1a8{word-spacing:0.346291px;}
.wsc0{word-spacing:0.358654px;}
.ws135{word-spacing:0.366732px;}
.ws179{word-spacing:0.372744px;}
.ws192{word-spacing:0.376589px;}
.ws1b9{word-spacing:0.384167px;}
.ws17a{word-spacing:0.384768px;}
.ws1bb{word-spacing:0.418429px;}
.ws155{word-spacing:0.420840px;}
.wsd{word-spacing:0.430387px;}
.ws154{word-spacing:0.468936px;}
.wsf5{word-spacing:0.529056px;}
.wsc8{word-spacing:0.537980px;}
.ws1ba{word-spacing:0.546491px;}
.ws16{word-spacing:0.591782px;}
.ws50{word-spacing:0.597756px;}
.wsf6{word-spacing:0.607212px;}
.ws3e{word-spacing:0.657532px;}
.wsab{word-spacing:0.665528px;}
.ws1a2{word-spacing:0.708815px;}
.ws25{word-spacing:0.717307px;}
.wsac{word-spacing:0.719636px;}
.ws166{word-spacing:0.763524px;}
.ws182{word-spacing:0.769536px;}
.ws4b{word-spacing:0.777083px;}
.wseb{word-spacing:0.787572px;}
.wsea{word-spacing:0.817632px;}
.ws95{word-spacing:0.833263px;}
.ws5f{word-spacing:0.836858px;}
.ws97{word-spacing:0.845888px;}
.ws180{word-spacing:0.847692px;}
.ws7c{word-spacing:0.852201px;}
.wsae{word-spacing:0.854906px;}
.ws96{word-spacing:0.871139px;}
.ws19e{word-spacing:0.876550px;}
.ws69{word-spacing:0.896634px;}
.ws68{word-spacing:0.956410px;}
.ws1a1{word-spacing:1.000998px;}
.ws49{word-spacing:1.016185px;}
.ws194{word-spacing:1.033463px;}
.ws7d{word-spacing:1.035266px;}
.ws181{word-spacing:1.106208px;}
.ws1e9{word-spacing:1.183565px;}
.ws54{word-spacing:1.255288px;}
.ws89{word-spacing:1.275145px;}
.ws1ef{word-spacing:1.291162px;}
.ws8a{word-spacing:1.369834px;}
.ws55{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws3d{word-spacing:1.434614px;}
.ws14a{word-spacing:1.466928px;}
.ws3f{word-spacing:1.494390px;}
.ws187{word-spacing:1.503000px;}
.ws16b{word-spacing:1.554166px;}
.wsc2{word-spacing:1.613941px;}
.ws205{word-spacing:1.667750px;}
.wsd3{word-spacing:1.673717px;}
.ws1a5{word-spacing:1.682759px;}
.ws196{word-spacing:1.709813px;}
.ws3b{word-spacing:1.733492px;}
.ws26{word-spacing:1.793268px;}
.ws139{word-spacing:1.833660px;}
.ws164{word-spacing:1.857708px;}
.wse7{word-spacing:1.899792px;}
.ws2f{word-spacing:1.912819px;}
.ws48{word-spacing:1.972595px;}
.wsaa{word-spacing:1.991174px;}
.wsb7{word-spacing:2.007407px;}
.ws195{word-spacing:2.023639px;}
.ws42{word-spacing:2.032370px;}
.ws197{word-spacing:2.083158px;}
.ws1c7{word-spacing:2.092146px;}
.ws1ce{word-spacing:2.110862px;}
.ws46{word-spacing:2.151922px;}
.ws133{word-spacing:2.170332px;}
.wse9{word-spacing:2.176344px;}
.ws171{word-spacing:2.200392px;}
.ws125{word-spacing:2.206404px;}
.ws1c1{word-spacing:2.211697px;}
.ws170{word-spacing:2.236464px;}
.wse8{word-spacing:2.242476px;}
.ws132{word-spacing:2.260512px;}
.ws65{word-spacing:2.271473px;}
.ws76{word-spacing:2.310412px;}
.ws1d2{word-spacing:2.313331px;}
.ws33{word-spacing:2.331248px;}
.ws199{word-spacing:2.348287px;}
.ws75{word-spacing:2.354600px;}
.ws201{word-spacing:2.367130px;}
.wsd2{word-spacing:2.391024px;}
.ws115{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws1{word-spacing:2.511541px;}
.ws151{word-spacing:2.543076px;}
.ws150{word-spacing:2.561112px;}
.ws14f{word-spacing:2.567124px;}
.ws120{word-spacing:2.573136px;}
.ws1cd{word-spacing:2.582323px;}
.ws40{word-spacing:2.630126px;}
.ws1b0{word-spacing:2.677860px;}
.ws79{word-spacing:2.689168px;}
.ws2d{word-spacing:2.689902px;}
.ws1f4{word-spacing:2.689920px;}
.ws82{word-spacing:2.695480px;}
.ws78{word-spacing:2.733356px;}
.ws1d6{word-spacing:2.743718px;}
.ws5e{word-spacing:2.749678px;}
.ws1f1{word-spacing:2.797517px;}
.ws1bf{word-spacing:2.809453px;}
.ws202{word-spacing:2.851315px;}
.ws62{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.wse6{word-spacing:2.903796px;}
.ws1b{word-spacing:2.905114px;}
.wsfa{word-spacing:2.909808px;}
.ws143{word-spacing:2.927844px;}
.ws5d{word-spacing:2.929004px;}
.ws17e{word-spacing:2.933856px;}
.ws13a{word-spacing:2.939868px;}
.ws149{word-spacing:2.969928px;}
.ws152{word-spacing:2.981952px;}
.ws63{word-spacing:2.988780px;}
.ws19a{word-spacing:2.992172px;}
.ws142{word-spacing:3.012012px;}
.wsbe{word-spacing:3.048556px;}
.ws200{word-spacing:3.066509px;}
.ws1af{word-spacing:3.071520px;}
.ws10{word-spacing:3.094585px;}
.ws3c{word-spacing:3.168107px;}
.ws81{word-spacing:3.168925px;}
.ws1f0{word-spacing:3.217584px;}
.ws1db{word-spacing:3.219370px;}
.ws1c{word-spacing:3.219667px;}
.ws1df{word-spacing:3.223306px;}
.ws31{word-spacing:3.227882px;}
.ws1d3{word-spacing:3.227904px;}
.wsee{word-spacing:3.264516px;}
.ws11f{word-spacing:3.270528px;}
.ws127{word-spacing:3.276540px;}
.ws1f3{word-spacing:3.281702px;}
.wsed{word-spacing:3.282552px;}
.ws52{word-spacing:3.287658px;}
.ws17f{word-spacing:3.300588px;}
.ws19b{word-spacing:3.311410px;}
.ws131{word-spacing:3.318624px;}
.ws24{word-spacing:3.347434px;}
.ws53{word-spacing:3.407209px;}
.ws5a{word-spacing:3.466985px;}
.ws207{word-spacing:3.496896px;}
.ws110{word-spacing:3.526760px;}
.ws130{word-spacing:3.553092px;}
.ws1d{word-spacing:3.586536px;}
.ws1cc{word-spacing:3.598335px;}
.ws18{word-spacing:3.604493px;}
.wsa4{word-spacing:3.609004px;}
.ws198{word-spacing:3.619825px;}
.ws5b{word-spacing:3.646312px;}
.ws123{word-spacing:3.649284px;}
.ws14b{word-spacing:3.655296px;}
.ws186{word-spacing:3.661308px;}
.wsdb{word-spacing:3.706087px;}
.ws17d{word-spacing:3.709404px;}
.wsdd{word-spacing:3.712090px;}
.wsc7{word-spacing:3.765863px;}
.ws84{word-spacing:3.806498px;}
.ws1fa{word-spacing:3.819686px;}
.ws22{word-spacing:3.825638px;}
.ws1c6{word-spacing:3.885414px;}
.wsb6{word-spacing:3.912008px;}
.ws57{word-spacing:3.945190px;}
.wsf4{word-spacing:3.979944px;}
.ws165{word-spacing:4.003992px;}
.ws4e{word-spacing:4.004965px;}
.wsf3{word-spacing:4.040064px;}
.ws185{word-spacing:4.046076px;}
.ws178{word-spacing:4.076136px;}
.ws17{word-spacing:4.088678px;}
.ws177{word-spacing:4.112208px;}
.wsc4{word-spacing:4.184292px;}
.ws88{word-spacing:4.191566px;}
.ws87{word-spacing:4.204192px;}
.ws30{word-spacing:4.303843px;}
.ws1aa{word-spacing:4.317818px;}
.ws138{word-spacing:4.340664px;}
.ws1ab{word-spacing:4.350283px;}
.ws1bd{word-spacing:4.363619px;}
.ws3a{word-spacing:4.483170px;}
.wsb0{word-spacing:4.539661px;}
.ws4d{word-spacing:4.542946px;}
.ws1b5{word-spacing:4.550483px;}
.wsaf{word-spacing:4.604591px;}
.ws36{word-spacing:4.662497px;}
.ws1e5{word-spacing:4.680461px;}
.ws15f{word-spacing:4.737456px;}
.wsc6{word-spacing:4.782048px;}
.ws1e0{word-spacing:4.788058px;}
.ws15e{word-spacing:4.791564px;}
.ws67{word-spacing:4.841824px;}
.ws204{word-spacing:5.003251px;}
.ws141{word-spacing:5.074128px;}
.ws12c{word-spacing:5.086152px;}
.ws66{word-spacing:5.140702px;}
.ws64{word-spacing:5.200477px;}
.ws1fd{word-spacing:5.218445px;}
.ws58{word-spacing:5.260253px;}
.ws1ec{word-spacing:5.272243px;}
.ws59{word-spacing:5.320028px;}
.ws7e{word-spacing:5.384648px;}
.ws80{word-spacing:5.403586px;}
.ws23{word-spacing:5.439580px;}
.ws12d{word-spacing:5.440860px;}
.ws122{word-spacing:5.446872px;}
.ws7f{word-spacing:5.473024px;}
.wsa{word-spacing:5.481407px;}
.ws4f{word-spacing:5.499355px;}
.ws15{word-spacing:5.541235px;}
.ws121{word-spacing:5.657292px;}
.wsd0{word-spacing:5.738458px;}
.ws144{word-spacing:5.765508px;}
.ws145{word-spacing:5.807592px;}
.ws160{word-spacing:5.825628px;}
.ws134{word-spacing:5.831640px;}
.ws191{word-spacing:5.858009px;}
.ws118{word-spacing:5.977560px;}
.wsc9{word-spacing:6.037336px;}
.ws98{word-spacing:6.079034px;}
.wsf2{word-spacing:6.156288px;}
.wsbf{word-spacing:6.156887px;}
.ws190{word-spacing:6.216662px;}
.ws1f6{word-spacing:6.240614px;}
.ws1f5{word-spacing:6.262612px;}
.ws1e1{word-spacing:6.294413px;}
.ws1c5{word-spacing:6.336214px;}
.ws6e{word-spacing:6.388351px;}
.ws169{word-spacing:6.395989px;}
.ws92{word-spacing:6.445165px;}
.ws16c{word-spacing:6.455765px;}
.ws91{word-spacing:6.489353px;}
.ws1b6{word-spacing:6.525425px;}
.ws1e8{word-spacing:6.563405px;}
.ws1b8{word-spacing:6.628230px;}
.ws6d{word-spacing:6.640855px;}
.ws1b7{word-spacing:6.806786px;}
.ws5c{word-spacing:6.814418px;}
.ws14c{word-spacing:6.865704px;}
.ws2c{word-spacing:6.874194px;}
.wsec{word-spacing:6.883740px;}
.ws1c3{word-spacing:6.933970px;}
.ws18c{word-spacing:6.937848px;}
.ws4a{word-spacing:7.053521px;}
.wsa2{word-spacing:7.169310px;}
.wsa3{word-spacing:7.180132px;}
.ws4c{word-spacing:7.232848px;}
.ws37{word-spacing:7.471950px;}
.wsc1{word-spacing:7.531726px;}
.ws128{word-spacing:7.545060px;}
.ws129{word-spacing:7.551072px;}
.wsfb{word-spacing:7.581132px;}
.ws7a{word-spacing:7.594058px;}
.ws126{word-spacing:7.623216px;}
.ws7b{word-spacing:7.644559px;}
.ws15b{word-spacing:7.701372px;}
.wsdc{word-spacing:7.711052px;}
.ws45{word-spacing:7.770828px;}
.wsc5{word-spacing:8.129482px;}
.ws1c2{word-spacing:8.308808px;}
.ws167{word-spacing:8.338644px;}
.wsd1{word-spacing:8.368584px;}
.ws116{word-spacing:8.428360px;}
.wsca{word-spacing:8.488135px;}
.ws1e7{word-spacing:8.876736px;}
.ws99{word-spacing:9.506776px;}
.ws8{word-spacing:9.833058px;}
.wsa7{word-spacing:9.875520px;}
.ws193{word-spacing:10.454119px;}
.wsa1{word-spacing:10.458428px;}
.ws11a{word-spacing:11.615688px;}
.wse1{word-spacing:11.620476px;}
.ws74{word-spacing:11.791937px;}
.ws9{word-spacing:11.841512px;}
.ws73{word-spacing:11.842438px;}
.ws6c{word-spacing:12.201500px;}
.wsb9{word-spacing:12.304159px;}
.wsba{word-spacing:12.314981px;}
.wsb8{word-spacing:12.352856px;}
.ws77{word-spacing:12.492635px;}
.ws83{word-spacing:12.902954px;}
.ws4{word-spacing:15.481836px;}
.ws86{word-spacing:16.633701px;}
.ws85{word-spacing:17.107146px;}
.ws94{word-spacing:17.397526px;}
.ws93{word-spacing:17.416463px;}
.ws158{word-spacing:19.869660px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wscc{word-spacing:116.581133px;}
.wsce{word-spacing:125.511667px;}
.wscd{word-spacing:204.003533px;}
.wsd8{word-spacing:214.197048px;}
.wsd9{word-spacing:257.399532px;}
.ws113{word-spacing:285.565176px;}
.wsde{word-spacing:451.583770px;}
.ws104{word-spacing:1250.472600px;}
.ws109{word-spacing:1268.438400px;}
._5c{margin-left:-865.463400px;}
._4e{margin-left:-847.006200px;}
._6{margin-left:-11.943245px;}
._1c{margin-left:-7.196987px;}
._10{margin-left:-6.180802px;}
._9{margin-left:-5.164625px;}
._2{margin-left:-3.765852px;}
._a{margin-left:-2.630133px;}
._3{margin-left:-1.590026px;}
._20{width:1.221658px;}
._7{width:2.999071px;}
._1b{width:4.483170px;}
._0{width:9.707530px;}
._1{width:12.971268px;}
._13{width:14.822586px;}
._f{width:15.924305px;}
._b{width:16.994306px;}
._12{width:18.410885px;}
._d{width:19.738024px;}
._c{width:21.351976px;}
._1e{width:22.535401px;}
._16{width:23.910240px;}
._4{width:25.314894px;}
._23{width:27.138122px;}
._17{width:28.190168px;}
._e{width:29.595067px;}
._1d{width:31.023536px;}
._8f{width:32.297155px;}
._5{width:33.355008px;}
._11{width:35.267604px;}
._4a{width:36.678304px;}
._1f{width:39.153018px;}
._1a{width:40.766959px;}
._19{width:41.819005px;}
._18{width:42.954742px;}
._2a{width:44.198083px;}
._8{width:54.404009px;}
._8b{width:82.483670px;}
._8c{width:93.074508px;}
._49{width:97.106112px;}
._46{width:100.011226px;}
._48{width:103.723315px;}
._47{width:108.995558px;}
._2d{width:130.461120px;}
._8d{width:133.495128px;}
._32{width:138.961267px;}
._28{width:140.306227px;}
._24{width:143.211341px;}
._26{width:146.923430px;}
._25{width:152.195674px;}
._27{width:155.154586px;}
._3b{width:165.860467px;}
._29{width:167.151629px;}
._30{width:214.763213px;}
._2f{width:217.453133px;}
._41{width:242.702563px;}
._31{width:281.258035px;}
._3c{width:313.052890px;}
._36{width:322.377994px;}
._34{width:326.897059px;}
._3d{width:341.350848px;}
._3a{width:345.654720px;}
._45{width:349.223395px;}
._52{width:375.818400px;}
._50{width:389.496600px;}
._5b{width:402.807600px;}
._37{width:408.186442px;}
._3f{width:422.981002px;}
._5e{width:429.813000px;}
._43{width:433.633085px;}
._40{width:438.307557px;}
._3e{width:441.380054px;}
._58{width:443.469600px;}
._33{width:450.951696px;}
._65{width:452.304706px;}
._55{width:457.164000px;}
._2c{width:460.621901px;}
._6f{width:465.033370px;}
._44{width:479.415523px;}
._39{width:480.688704px;}
._78{width:481.926067px;}
._72{width:491.932570px;}
._6c{width:505.382170px;}
._69{width:518.831770px;}
._75{width:519.901749px;}
._42{width:524.978246px;}
._61{width:551.523600px;}
._74{width:554.284915px;}
._63{width:584.681530px;}
._84{width:595.609200px;}
._6e{width:599.098982px;}
._81{width:615.227400px;}
._2b{width:631.963790px;}
._2e{width:634.659725px;}
._62{width:653.127026px;}
._77{width:662.634893px;}
._4c{width:667.661400px;}
._5a{width:698.497826px;}
._79{width:700.777937px;}
._7c{width:703.306483px;}
._14{width:723.860422px;}
._35{width:725.327088px;}
._73{width:739.297613px;}
._83{width:761.383800px;}
._68{width:775.450138px;}
._87{width:786.628800px;}
._7f{width:794.494771px;}
._7b{width:813.969792px;}
._5f{width:822.619800px;}
._38{width:836.901370px;}
._7a{width:838.717056px;}
._4d{width:839.982470px;}
._54{width:874.746000px;}
._8a{width:878.763600px;}
._6a{width:888.857143px;}
._71{width:891.648667px;}
._86{width:897.490800px;}
._76{width:923.449536px;}
._5d{width:946.243670px;}
._56{width:967.950000px;}
._53{width:969.991200px;}
._6d{width:977.409331px;}
._66{width:991.127902px;}
._6b{width:1000.973030px;}
._7d{width:1003.979752px;}
._82{width:1008.363600px;}
._85{width:1026.000000px;}
._7e{width:1050.628954px;}
._59{width:1062.001800px;}
._51{width:1070.674200px;}
._57{width:1084.779000px;}
._88{width:1086.123600px;}
._89{width:1135.306800px;}
._4f{width:1156.145400px;}
._64{width:1164.896755px;}
._60{width:1185.167426px;}
._70{width:1187.922449px;}
._8e{width:1859.689125px;}
._22{width:1881.084303px;}
._80{width:2065.556846px;}
._4b{width:2089.314902px;}
._21{width:2194.801963px;}
._67{width:2500.851000px;}
._15{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs10{font-size:37.800000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs19{font-size:42.120000px;}
.fs12{font-size:43.092000px;}
.fs9{font-size:45.429600px;}
.fsd{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fs16{font-size:47.880000px;}
.fs14{font-size:48.600000px;}
.fse{font-size:50.274000px;}
.fs1a{font-size:50.400000px;}
.fsc{font-size:53.798400px;}
.fs18{font-size:54.000000px;}
.fs13{font-size:54.108000px;}
.fs11{font-size:56.700000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs17{font-size:60.120000px;}
.fs15{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:63.126000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y28c{bottom:-719.321211px;}
.y28b{bottom:-700.061769px;}
.y28a{bottom:-680.802327px;}
.y289{bottom:-661.633065px;}
.y288{bottom:-642.373623px;}
.y287{bottom:-623.114181px;}
.y286{bottom:-603.944919px;}
.y285{bottom:-584.685477px;}
.y284{bottom:-565.516215px;}
.y283{bottom:-546.256773px;}
.y282{bottom:-526.997331px;}
.y281{bottom:-507.828069px;}
.y280{bottom:-488.568627px;}
.y2cb{bottom:-483.856158px;}
.y27f{bottom:-469.397862px;}
.y2ca{bottom:-464.596716px;}
.y27e{bottom:-450.138420px;}
.y2c9{bottom:-440.927472px;}
.y27d{bottom:-430.878978px;}
.y27c{bottom:-411.709716px;}
.y2c8{bottom:-403.668102px;}
.y1da{bottom:-396.206550px;}
.y27b{bottom:-392.450274px;}
.y2c7{bottom:-384.408660px;}
.y1d9{bottom:-378.026550px;}
.y27a{bottom:-373.279509px;}
.yfb{bottom:-368.428883px;}
.y2c6{bottom:-365.239398px;}
.y1d8{bottom:-359.037900px;}
.y279{bottom:-354.020067px;}
.y2c5{bottom:-345.979956px;}
.y1d7{bottom:-340.047450px;}
.yfa{bottom:-334.895450px;}
.y278{bottom:-334.760625px;}
.y2c4{bottom:-326.720514px;}
.y1d6{bottom:-321.867000px;}
.yf9{bottom:-317.561953px;}
.y277{bottom:-315.591363px;}
.y2c3{bottom:-307.551252px;}
.y1d5{bottom:-303.597450px;}
.yf8{bottom:-300.309617px;}
.y276{bottom:-296.331921px;}
.y2c2{bottom:-288.291810px;}
.y1d4{bottom:-285.417000px;}
.yf7{bottom:-282.976119px;}
.y275{bottom:-277.072479px;}
.y2c1{bottom:-269.122548px;}
.y1d3{bottom:-267.236550px;}
.yf6{bottom:-261.672447px;}
.y274{bottom:-257.903217px;}
.y2c0{bottom:-249.863106px;}
.y1d2{bottom:-248.967000px;}
.y273{bottom:-238.643775px;}
.y1d1{bottom:-230.786550px;}
.y2bf{bottom:-230.603664px;}
.yf5{bottom:-228.139014px;}
.y272{bottom:-219.474513px;}
.y1d0{bottom:-212.606550px;}
.y2be{bottom:-211.434402px;}
.yf4{bottom:-210.805516px;}
.y271{bottom:-200.215071px;}
.y1cf{bottom:-193.617450px;}
.yf3{bottom:-193.553180px;}
.y2bd{bottom:-192.174960px;}
.yd7{bottom:-191.879235px;}
.y270{bottom:-180.955629px;}
.yf2{bottom:-176.219682px;}
.y1ce{bottom:-174.627000px;}
.y2bc{bottom:-173.005698px;}
.yd6{bottom:-171.751510px;}
.y26f{bottom:-161.784864px;}
.y2fb{bottom:-160.160730px;}
.yf1{bottom:-158.967346px;}
.y1cd{bottom:-156.446550px;}
.y2bb{bottom:-153.746256px;}
.yd5{bottom:-151.529096px;}
.y2fa{bottom:-142.827232px;}
.y26e{bottom:-142.525422px;}
.yf0{bottom:-141.633849px;}
.y1cc{bottom:-138.176550px;}
.y2ba{bottom:-134.486814px;}
.yd4{bottom:-131.401371px;}
.y2f9{bottom:-125.574897px;}
.yef{bottom:-124.300351px;}
.y26d{bottom:-123.356160px;}
.y1ca{bottom:-119.277300px;}
.y2b9{bottom:-115.316049px;}
.yd3{bottom:-111.178957px;}
.y1c9{bottom:-110.187750px;}
.y2f8{bottom:-108.241399px;}
.yee{bottom:-107.048015px;}
.y26c{bottom:-104.096718px;}
.y1cb{bottom:-101.007750px;}
.y2b8{bottom:-96.056607px;}
.yed{bottom:-89.714517px;}
.y2f7{bottom:-86.937727px;}
.yd2{bottom:-86.324673px;}
.y26b{bottom:-80.427474px;}
.y2b7{bottom:-76.885842px;}
.y1c8{bottom:-72.567300px;}
.yec{bottom:-68.410845px;}
.y2f6{bottom:-65.554245px;}
.yd1{bottom:-61.377277px;}
.y2b6{bottom:-57.626400px;}
.y26a{bottom:-56.668050px;}
.y1c7{bottom:-55.196850px;}
.yeb{bottom:-35.281440px;}
.y2f4{bottom:-32.425650px;}
.y2f5{bottom:-32.425245px;}
.yd0{bottom:-22.726778px;}
.y2b5{bottom:-20.816550px;}
.y1c6{bottom:-20.006400px;}
.y269{bottom:-19.858050px;}
.yea{bottom:-19.567845px;}
.y25e{bottom:-18.347250px;}
.y2f3{bottom:-16.792245px;}
.y0{bottom:0.000000px;}
.ye9{bottom:0.600823px;}
.ycf{bottom:0.905801px;}
.y2b4{bottom:1.683450px;}
.y1c5{bottom:2.503575px;}
.y268{bottom:2.641950px;}
.y2f2{bottom:3.384175px;}
.y25d{bottom:4.161552px;}
.y1ee{bottom:12.573180px;}
.y1e3{bottom:15.542091px;}
.y41{bottom:16.704213px;}
.y25f{bottom:20.622900px;}
.y1e9{bottom:27.873270px;}
.y1dd{bottom:30.933792px;}
.y297{bottom:31.080960px;}
.y6e{bottom:31.890000px;}
.y296{bottom:43.140969px;}
.y1ef{bottom:50.463450px;}
.y7{bottom:50.595005px;}
.y1de{bottom:53.793369px;}
.y28f{bottom:55.471599px;}
.y1ea{bottom:56.043126px;}
.y1e7{bottom:69.003450px;}
.y6{bottom:75.795004px;}
.y1df{bottom:76.652946px;}
.y1e4{bottom:77.823450px;}
.y1db{bottom:78.093450px;}
.y28e{bottom:79.051428px;}
.y290{bottom:80.131806px;}
.y1eb{bottom:84.212982px;}
.y1e0{bottom:99.512523px;}
.y5{bottom:100.995005px;}
.y3f{bottom:104.646000px;}
.y291{bottom:104.701455px;}
.y19f{bottom:105.649500px;}
.y13c{bottom:105.699000px;}
.y2d7{bottom:108.604500px;}
.y6d{bottom:108.700500px;}
.y2b0{bottom:110.826000px;}
.y34f{bottom:111.930000px;}
.y1ec{bottom:112.382838px;}
.y114{bottom:113.790000px;}
.y386{bottom:116.458500px;}
.ya4{bottom:117.802500px;}
.y335{bottom:118.699500px;}
.yb7{bottom:119.148000px;}
.y2fd{bottom:119.977500px;}
.y1e1{bottom:122.372100px;}
.y3e{bottom:122.535000px;}
.y19e{bottom:124.479000px;}
.y13b{bottom:124.528500px;}
.yb8{bottom:124.572000px;}
.y1e8{bottom:125.343162px;}
.y2d6{bottom:127.434000px;}
.y6c{bottom:127.530000px;}
.y34e{bottom:129.190500px;}
.y292{bottom:129.271104px;}
.y2af{bottom:129.655500px;}
.y263{bottom:132.042093px;}
.y113{bottom:132.619500px;}
.y385{bottom:133.719000px;}
.y1dc{bottom:135.333477px;}
.ya3{bottom:136.632000px;}
.y334{bottom:137.529000px;}
.yb5{bottom:137.977500px;}
.y298{bottom:138.181950px;}
.y261{bottom:138.432750px;}
.y2fc{bottom:139.210500px;}
.y24{bottom:139.264499px;}
.y3d{bottom:140.422500px;}
.y1ed{bottom:140.552694px;}
.y19d{bottom:143.308500px;}
.y13a{bottom:143.358000px;}
.yb6{bottom:143.401500px;}
.y1e2{bottom:145.231677px;}
.y2d5{bottom:146.263500px;}
.y6b{bottom:146.359500px;}
.y34d{bottom:146.451000px;}
.y2ae{bottom:148.485000px;}
.y384{bottom:150.978000px;}
.y112{bottom:151.449000px;}
.y293{bottom:153.840753px;}
.ya2{bottom:155.461500px;}
.ye2{bottom:155.539500px;}
.y333{bottom:156.358500px;}
.yb4{bottom:156.807000px;}
.y1e6{bottom:157.473450px;}
.y3c{bottom:158.310000px;}
.y234{bottom:159.399000px;}
.y2dc{bottom:161.640000px;}
.y19c{bottom:162.138000px;}
.y139{bottom:162.187500px;}
.y34c{bottom:163.711500px;}
.y2d4{bottom:165.093000px;}
.y6a{bottom:165.189000px;}
.y2ad{bottom:167.314500px;}
.y203{bottom:168.003000px;}
.y383{bottom:168.238500px;}
.y111{bottom:170.278500px;}
.ya1{bottom:174.291000px;}
.ye1{bottom:174.369000px;}
.y1e5{bottom:174.483450px;}
.y332{bottom:175.188000px;}
.yb3{bottom:175.636500px;}
.y3b{bottom:176.199000px;}
.y233{bottom:178.228500px;}
.y28d{bottom:178.321950px;}
.y294{bottom:178.410402px;}
.y19b{bottom:180.967500px;}
.y34b{bottom:180.972000px;}
.y138{bottom:181.017000px;}
.y16e{bottom:181.684500px;}
.y2d3{bottom:183.922500px;}
.y69{bottom:184.018500px;}
.y382{bottom:185.499000px;}
.y2ac{bottom:186.144000px;}
.y110{bottom:189.108000px;}
.y16d{bottom:189.903000px;}
.y202{bottom:191.643000px;}
.ya0{bottom:193.120500px;}
.ye0{bottom:193.198500px;}
.y331{bottom:194.017500px;}
.y3a{bottom:194.086500px;}
.yb2{bottom:194.466000px;}
.y1b{bottom:196.933500px;}
.y232{bottom:197.058000px;}
.y34a{bottom:198.232500px;}
.y19a{bottom:199.797000px;}
.y137{bottom:199.846500px;}
.y2d2{bottom:202.752000px;}
.y381{bottom:202.759500px;}
.y68{bottom:202.848000px;}
.y295{bottom:203.070609px;}
.y2ab{bottom:204.973500px;}
.y10f{bottom:207.937500px;}
.y201{bottom:208.081500px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y9f{bottom:211.950000px;}
.y39{bottom:211.974000px;}
.ydf{bottom:212.028000px;}
.y1c4{bottom:212.203638px;}
.y330{bottom:212.847000px;}
.yb0{bottom:213.295500px;}
.y16c{bottom:214.561500px;}
.y349{bottom:215.493000px;}
.y231{bottom:215.887500px;}
.y262{bottom:216.012525px;}
.y260{bottom:216.372750px;}
.y199{bottom:218.626500px;}
.y136{bottom:218.674500px;}
.yb1{bottom:218.719500px;}
.y380{bottom:220.020000px;}
.y2d1{bottom:221.581500px;}
.y67{bottom:221.677500px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y16b{bottom:222.780000px;}
.y2aa{bottom:223.803000px;}
.y200{bottom:224.520000px;}
.y10e{bottom:226.765500px;}
.y38{bottom:229.863000px;}
.y9e{bottom:230.779500px;}
.yde{bottom:230.857500px;}
.y1c3{bottom:231.463080px;}
.y32f{bottom:231.676500px;}
.yae{bottom:232.125000px;}
.y348{bottom:232.752000px;}
.y230{bottom:234.717000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y37f{bottom:237.280500px;}
.y198{bottom:237.456000px;}
.y135{bottom:237.504000px;}
.yaf{bottom:237.549000px;}
.y2d0{bottom:240.411000px;}
.y66{bottom:240.507000px;}
.y2a9{bottom:242.632500px;}
.y16a{bottom:247.437000px;}
.y1fe{bottom:248.160000px;}
.y9d{bottom:249.609000px;}
.ydd{bottom:249.687000px;}
.y347{bottom:250.012500px;}
.y10d{bottom:250.078500px;}
.y32e{bottom:250.506000px;}
.y1c2{bottom:250.722522px;}
.yad{bottom:250.954500px;}
.y22f{bottom:253.546500px;}
.y37e{bottom:254.541000px;}
.y169{bottom:255.657000px;}
.y197{bottom:256.285500px;}
.y1fd{bottom:256.380000px;}
.y2cf{bottom:259.240500px;}
.y65{bottom:259.336500px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y2a8{bottom:261.462000px;}
.y1ff{bottom:264.598500px;}
.y346{bottom:267.273000px;}
.y9c{bottom:268.438500px;}
.ydc{bottom:268.516500px;}
.y267{bottom:268.862085px;}
.y32d{bottom:269.335500px;}
.y1c1{bottom:269.891784px;}
.y37d{bottom:271.801500px;}
.y134{bottom:272.025000px;}
.y22e{bottom:272.376000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.yac{bottom:274.267500px;}
.y196{bottom:275.115000px;}
.y2ce{bottom:278.070000px;}
.y64{bottom:278.166000px;}
.y266{bottom:278.491950px;}
.y2a7{bottom:280.291500px;}
.y168{bottom:280.314000px;}
.y10c{bottom:283.702500px;}
.y345{bottom:284.533500px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y25c{bottom:285.141390px;}
.y9b{bottom:287.268000px;}
.ydb{bottom:287.346000px;}
.y32c{bottom:288.165000px;}
.y37c{bottom:289.062000px;}
.y1c0{bottom:289.151226px;}
.y22d{bottom:291.205500px;}
.y195{bottom:293.944500px;}
.y1fc{bottom:296.218500px;}
.y167{bottom:296.752500px;}
.y2cd{bottom:296.899500px;}
.y63{bottom:296.995500px;}
.y2a6{bottom:299.119500px;}
.y37{bottom:299.892000px;}
.y344{bottom:301.794000px;}
.y10b{bottom:302.532000px;}
.y25b{bottom:304.310652px;}
.y9a{bottom:306.097500px;}
.y37b{bottom:306.321000px;}
.y133{bottom:306.546000px;}
.y32b{bottom:306.994500px;}
.yab{bottom:307.891500px;}
.y1bf{bottom:308.320488px;}
.y22c{bottom:310.033500px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.yda{bottom:310.657500px;}
.y1fb{bottom:315.451500px;}
.y62{bottom:315.825000px;}
.y194{bottom:317.257500px;}
.y36{bottom:317.779500px;}
.y2a5{bottom:317.949000px;}
.y343{bottom:319.054500px;}
.y166{bottom:320.394000px;}
.y10a{bottom:321.361500px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y25a{bottom:323.570094px;}
.y37a{bottom:323.581500px;}
.y99{bottom:324.927000px;}
.y132{bottom:325.375500px;}
.yaa{bottom:326.719500px;}
.y1be{bottom:327.579930px;}
.y22b{bottom:328.863000px;}
.y32a{bottom:330.307500px;}
.y2cc{bottom:330.465000px;}
.yd9{bottom:330.832500px;}
.y61{bottom:334.654500px;}
.y35{bottom:335.667000px;}
.y2a4{bottom:336.778500px;}
.y109{bottom:340.191000px;}
.y342{bottom:340.798500px;}
.y379{bottom:340.842000px;}
.y259{bottom:342.829536px;}
.y98{bottom:343.756500px;}
.y165{bottom:344.034000px;}
.y131{bottom:344.205000px;}
.ya9{bottom:345.549000px;}
.y1bd{bottom:346.839372px;}
.y22a{bottom:347.692500px;}
.y12{bottom:348.133500px;}
.y193{bottom:351.138000px;}
.y164{bottom:352.254000px;}
.y1fa{bottom:352.555500px;}
.y60{bottom:353.484000px;}
.y34{bottom:353.556000px;}
.y2a3{bottom:355.608000px;}
.y2b1{bottom:355.882500px;}
.y378{bottom:358.102500px;}
.yd8{bottom:361.260000px;}
.y258{bottom:361.998798px;}
.y97{bottom:362.586000px;}
.y130{bottom:363.034500px;}
.y108{bottom:363.504000px;}
.y329{bottom:363.931500px;}
.ya8{bottom:364.378500px;}
.y1bc{bottom:366.010137px;}
.y229{bottom:366.522000px;}
.y192{bottom:369.981000px;}
.y1f9{bottom:371.385000px;}
.y5f{bottom:372.313500px;}
.y341{bottom:374.422500px;}
.y2a2{bottom:374.437500px;}
.y377{bottom:375.363000px;}
.y163{bottom:376.911000px;}
.y191{bottom:378.201000px;}
.y257{bottom:381.258240px;}
.y317{bottom:381.415500px;}
.y12f{bottom:381.864000px;}
.y33{bottom:381.904500px;}
.y328{bottom:382.761000px;}
.ya7{bottom:383.208000px;}
.yb9{bottom:383.689500px;}
.y162{bottom:385.129500px;}
.y1bb{bottom:385.269579px;}
.y228{bottom:385.351500px;}
.y96{bottom:385.899000px;}
.y11{bottom:386.785499px;}
.y1f8{bottom:390.214500px;}
.y376{bottom:392.623500px;}
.y2a1{bottom:393.267000px;}
.y5e{bottom:395.625000px;}
.y107{bottom:397.128000px;}
.y32{bottom:399.792000px;}
.y316{bottom:400.245000px;}
.y256{bottom:400.429005px;}
.y12e{bottom:400.693500px;}
.y340{bottom:400.962000px;}
.y327{bottom:401.589000px;}
.ya6{bottom:402.037500px;}
.y227{bottom:404.181000px;}
.y1ba{bottom:404.438841px;}
.y95{bottom:406.072500px;}
.y10{bottom:408.044999px;}
.y1f7{bottom:409.044000px;}
.y161{bottom:409.788000px;}
.y375{bottom:409.884000px;}
.y190{bottom:410.061000px;}
.y2a0{bottom:412.096500px;}
.y106{bottom:415.957500px;}
.y31{bottom:417.679500px;}
.y160{bottom:418.006500px;}
.y33f{bottom:418.536000px;}
.y315{bottom:419.074500px;}
.y12d{bottom:419.523000px;}
.y255{bottom:419.688447px;}
.y326{bottom:420.418500px;}
.ya5{bottom:420.867000px;}
.y226{bottom:423.010500px;}
.y1b9{bottom:423.698283px;}
.y374{bottom:427.144500px;}
.y1f6{bottom:427.873500px;}
.y29f{bottom:430.926000px;}
.y18f{bottom:433.701000px;}
.y105{bottom:434.787000px;}
.y33e{bottom:436.110000px;}
.y2f1{bottom:437.625223px;}
.y314{bottom:437.904000px;}
.y254{bottom:438.947889px;}
.y325{bottom:439.248000px;}
.y94{bottom:439.696500px;}
.y225{bottom:441.840000px;}
.y18d{bottom:441.921000px;}
.y12c{bottom:442.836000px;}
.y1b8{bottom:442.957725px;}
.y373{bottom:444.403500px;}
.y30{bottom:444.534000px;}
.y1f5{bottom:446.703000px;}
.y29e{bottom:449.755500px;}
.y15f{bottom:449.866500px;}
.y18e{bottom:450.139500px;}
.y104{bottom:453.616500px;}
.y2f0{bottom:454.958721px;}
.y313{bottom:456.733500px;}
.y324{bottom:458.077500px;}
.y253{bottom:458.117151px;}
.y93{bottom:458.526000px;}
.y224{bottom:460.669500px;}
.y372{bottom:461.664000px;}
.y1b7{bottom:462.126987px;}
.y2f{bottom:462.423000px;}
.y33d{bottom:462.651000px;}
.y1f4{bottom:465.532500px;}
.y29d{bottom:468.585000px;}
.y5d{bottom:470.776500px;}
.y2ef{bottom:472.211057px;}
.y103{bottom:472.446000px;}
.y15e{bottom:473.508000px;}
.y18c{bottom:473.781000px;}
.y312{bottom:475.563000px;}
.y12b{bottom:476.458500px;}
.y323{bottom:476.907000px;}
.y92{bottom:477.355500px;}
.y252{bottom:477.376593px;}
.y371{bottom:478.924500px;}
.y223{bottom:479.499000px;}
.y33c{bottom:480.225000px;}
.y2e{bottom:480.310500px;}
.y1b6{bottom:481.386429px;}
.y15c{bottom:481.726500px;}
.y18b{bottom:481.999500px;}
.y1f3{bottom:484.362000px;}
.yf{bottom:484.864502px;}
.y29c{bottom:487.414500px;}
.y2ee{bottom:489.544555px;}
.y15d{bottom:489.945000px;}
.y102{bottom:491.275500px;}
.y311{bottom:494.392500px;}
.y12a{bottom:495.288000px;}
.y322{bottom:495.736500px;}
.y91{bottom:496.185000px;}
.y251{bottom:496.636035px;}
.y2d{bottom:498.198000px;}
.y222{bottom:498.328500px;}
.y1b5{bottom:500.645871px;}
.ye{bottom:502.864502px;}
.y1f2{bottom:503.191500px;}
.ye8{bottom:505.230969px;}
.y15b{bottom:506.383500px;}
.y33b{bottom:506.766000px;}
.y2ed{bottom:506.878052px;}
.y5c{bottom:508.165500px;}
.y101{bottom:510.105000px;}
.y29b{bottom:510.727500px;}
.y310{bottom:513.222000px;}
.y370{bottom:513.445500px;}
.y18a{bottom:513.859500px;}
.y129{bottom:514.117500px;}
.y321{bottom:514.566000px;}
.y90{bottom:515.014500px;}
.y250{bottom:515.805297px;}
.y2c{bottom:516.087000px;}
.y221{bottom:517.158000px;}
.y1b4{bottom:519.816636px;}
.yd{bottom:520.864502px;}
.y1f1{bottom:522.021000px;}
.ye7{bottom:522.564467px;}
.y15a{bottom:522.822000px;}
.y2ec{bottom:524.131741px;}
.yce{bottom:526.704350px;}
.y5b{bottom:527.622000px;}
.y100{bottom:528.934500px;}
.y36f{bottom:530.706000px;}
.y29a{bottom:530.901000px;}
.y30f{bottom:532.051500px;}
.y128{bottom:532.947000px;}
.y33a{bottom:533.307000px;}
.y320{bottom:533.395500px;}
.y8f{bottom:533.844000px;}
.y2b{bottom:533.974500px;}
.y24f{bottom:535.064739px;}
.y220{bottom:535.987500px;}
.y189{bottom:537.499500px;}
.yc{bottom:538.864499px;}
.y1b3{bottom:539.076078px;}
.ye6{bottom:539.818155px;}
.y2eb{bottom:541.465239px;}
.y159{bottom:546.463500px;}
.ycd{bottom:546.832075px;}
.y5a{bottom:547.080000px;}
.yff{bottom:547.764000px;}
.y36e{bottom:547.966500px;}
.y30e{bottom:550.881000px;}
.y127{bottom:551.776500px;}
.y2a{bottom:551.862000px;}
.y31f{bottom:552.225000px;}
.y8e{bottom:552.673500px;}
.y24e{bottom:554.235504px;}
.y21f{bottom:554.817000px;}
.y1f0{bottom:555.586500px;}
.yb{bottom:556.864499px;}
.y1b2{bottom:558.245340px;}
.y2ea{bottom:558.717575px;}
.y188{bottom:561.141000px;}
.y299{bottom:561.328500px;}
.y36d{bottom:565.227000px;}
.y59{bottom:566.536500px;}
.ycc{bottom:567.054489px;}
.y30d{bottom:569.710500px;}
.y29{bottom:569.751000px;}
.y158{bottom:570.103500px;}
.y126{bottom:570.606000px;}
.y31e{bottom:571.054500px;}
.yfe{bottom:571.075500px;}
.y8d{bottom:571.503000px;}
.y24d{bottom:573.494946px;}
.y21e{bottom:573.646500px;}
.y2e9{bottom:576.051072px;}
.y339{bottom:577.420500px;}
.y1b1{bottom:577.504782px;}
.y1ac{bottom:578.016000px;}
.y36c{bottom:582.487500px;}
.y265{bottom:583.758000px;}
.y2b3{bottom:584.613585px;}
.y187{bottom:584.781000px;}
.y58{bottom:585.994500px;}
.ycb{bottom:587.276903px;}
.y28{bottom:587.638500px;}
.y30c{bottom:588.538500px;}
.ye5{bottom:589.066277px;}
.y31d{bottom:589.884000px;}
.y8c{bottom:590.332500px;}
.y24c{bottom:592.754388px;}
.y2e8{bottom:593.384570px;}
.y125{bottom:593.919000px;}
.y2b2{bottom:594.243450px;}
.y338{bottom:594.994500px;}
.y21d{bottom:596.959500px;}
.ye4{bottom:597.733155px;}
.y36b{bottom:599.746500px;}
.y1b0{bottom:601.174026px;}
.yfd{bottom:601.503000px;}
.y157{bottom:601.723500px;}
.y57{bottom:605.451000px;}
.y27{bottom:605.526000px;}
.y30b{bottom:607.368000px;}
.yca{bottom:607.406206px;}
.y2db{bottom:608.713500px;}
.y8b{bottom:609.162000px;}
.y2e7{bottom:610.636906px;}
.y24b{bottom:611.925153px;}
.y337{bottom:612.568500px;}
.y186{bottom:616.401000px;}
.y36a{bottom:617.007000px;}
.yfc{bottom:620.736000px;}
.y26{bottom:623.415000px;}
.y56{bottom:624.907500px;}
.y1af{bottom:624.933450px;}
.y30a{bottom:626.197500px;}
.y124{bottom:627.543000px;}
.yc9{bottom:627.628620px;}
.y2e6{bottom:627.970404px;}
.y8a{bottom:627.991500px;}
.y336{bottom:630.144000px;}
.y21c{bottom:630.840000px;}
.y24a{bottom:631.184595px;}
.y369{bottom:634.267500px;}
.y156{bottom:638.827500px;}
.y25{bottom:641.302500px;}
.y55{bottom:644.365500px;}
.y309{bottom:645.027000px;}
.y2e5{bottom:645.303902px;}
.ya{bottom:645.510000px;}
.ye3{bottom:646.155000px;}
.y123{bottom:646.372500px;}
.y89{bottom:646.821000px;}
.yc8{bottom:647.756345px;}
.y21b{bottom:649.683000px;}
.y249{bottom:650.353857px;}
.y368{bottom:651.528000px;}
.y185{bottom:653.505000px;}
.y155{bottom:657.657000px;}
.y2e4{bottom:662.556237px;}
.y54{bottom:663.822000px;}
.y308{bottom:663.856500px;}
.y122{bottom:665.202000px;}
.y88{bottom:665.650500px;}
.y21a{bottom:666.121500px;}
.y9{bottom:666.771000px;}
.yc7{bottom:667.978759px;}
.y367{bottom:668.788500px;}
.y248{bottom:669.613299px;}
.y184{bottom:672.334500px;}
.y154{bottom:676.486500px;}
.y1ae{bottom:679.653585px;}
.y2e3{bottom:679.889735px;}
.y219{bottom:682.560000px;}
.y307{bottom:682.686000px;}
.y53{bottom:683.278500px;}
.y121{bottom:684.031500px;}
.y87{bottom:684.480000px;}
.y366{bottom:686.049000px;}
.yc6{bottom:688.201173px;}
.y247{bottom:688.872741px;}
.y1ad{bottom:689.283450px;}
.y183{bottom:691.164000px;}
.y153{bottom:695.316000px;}
.y2e2{bottom:697.142071px;}
.y306{bottom:701.515500px;}
.y52{bottom:702.736500px;}
.y120{bottom:702.861000px;}
.y86{bottom:703.309500px;}
.y218{bottom:706.201500px;}
.y246{bottom:708.042003px;}
.yc5{bottom:708.328899px;}
.y182{bottom:709.993500px;}
.y152{bottom:714.145500px;}
.y2e1{bottom:714.475569px;}
.y305{bottom:720.345000px;}
.y365{bottom:720.570000px;}
.y11f{bottom:721.690500px;}
.y85{bottom:722.139000px;}
.y51{bottom:722.193000px;}
.y8{bottom:726.298500px;}
.yc4{bottom:728.551313px;}
.y181{bottom:728.823000px;}
.y217{bottom:729.841500px;}
.y245{bottom:731.712750px;}
.y2e0{bottom:731.809067px;}
.y151{bottom:732.975000px;}
.y364{bottom:737.829000px;}
.y304{bottom:739.174500px;}
.y11e{bottom:740.520000px;}
.y84{bottom:740.968500px;}
.y50{bottom:741.651000px;}
.y180{bottom:747.652500px;}
.yc3{bottom:748.773727px;}
.y2df{bottom:749.062755px;}
.y150{bottom:751.804500px;}
.y4{bottom:752.599495px;}
.y216{bottom:753.483000px;}
.y363{bottom:755.089500px;}
.y303{bottom:758.004000px;}
.y11d{bottom:759.349500px;}
.y83{bottom:759.798000px;}
.y4f{bottom:761.107500px;}
.y17f{bottom:766.482000px;}
.y244{bottom:768.612750px;}
.yc2{bottom:768.901452px;}
.y215{bottom:769.921500px;}
.y14f{bottom:770.634000px;}
.y362{bottom:772.350000px;}
.y302{bottom:776.833500px;}
.y11c{bottom:778.179000px;}
.y82{bottom:778.627500px;}
.y4e{bottom:780.564000px;}
.y17e{bottom:785.311500px;}
.y214{bottom:786.360000px;}
.y243{bottom:787.692450px;}
.yc1{bottom:789.123866px;}
.y14e{bottom:789.463500px;}
.y361{bottom:789.610500px;}
.y1ab{bottom:795.663000px;}
.y11b{bottom:797.008500px;}
.y81{bottom:797.457000px;}
.y2de{bottom:798.310877px;}
.y4d{bottom:800.022000px;}
.y213{bottom:802.797000px;}
.y242{bottom:805.872900px;}
.y360{bottom:806.871000px;}
.y2dd{bottom:806.977755px;}
.y14d{bottom:808.293000px;}
.y17d{bottom:808.624500px;}
.yc0{bottom:809.251591px;}
.y1aa{bottom:814.492500px;}
.y11a{bottom:815.838000px;}
.y80{bottom:816.286500px;}
.y212{bottom:819.235500px;}
.y241{bottom:824.052750px;}
.y35f{bottom:824.131500px;}
.y14c{bottom:827.122500px;}
.ybf{bottom:829.474005px;}
.y1a9{bottom:833.322000px;}
.y119{bottom:834.667500px;}
.y7f{bottom:835.114500px;}
.y211{bottom:835.674000px;}
.y4c{bottom:838.606500px;}
.y35e{bottom:841.392000px;}
.y264{bottom:842.233500px;}
.y17c{bottom:842.505000px;}
.y240{bottom:843.042750px;}
.y14b{bottom:845.952000px;}
.ybe{bottom:849.696419px;}
.y210{bottom:852.112500px;}
.y1a8{bottom:852.151500px;}
.y118{bottom:853.497000px;}
.y7e{bottom:853.944000px;}
.y4b{bottom:854.746500px;}
.y35d{bottom:858.652500px;}
.y17b{bottom:861.348000px;}
.y23f{bottom:862.031400px;}
.y235{bottom:864.662700px;}
.y14a{bottom:864.781500px;}
.y20f{bottom:868.551000px;}
.y17a{bottom:869.568000px;}
.ybc{bottom:869.825723px;}
.y1a7{bottom:870.981000px;}
.y389{bottom:871.354500px;}
.y117{bottom:872.326500px;}
.y7d{bottom:872.773500px;}
.ybd{bottom:873.794723px;}
.y4a{bottom:875.226000px;}
.y35c{bottom:875.913000px;}
.y3{bottom:879.369000px;}
.y23e{bottom:881.021850px;}
.y149{bottom:883.611000px;}
.y20e{bottom:884.989500px;}
.y49{bottom:887.025000px;}
.y388{bottom:888.615000px;}
.y1a6{bottom:889.810500px;}
.y116{bottom:891.156000px;}
.y7c{bottom:891.603000px;}
.y35b{bottom:893.172000px;}
.y179{bottom:894.225000px;}
.y23d{bottom:899.202300px;}
.y177{bottom:902.445000px;}
.y48{bottom:903.165000px;}
.y387{bottom:905.875500px;}
.y20d{bottom:908.629500px;}
.y1a5{bottom:908.640000px;}
.y2da{bottom:909.984000px;}
.y7b{bottom:910.432500px;}
.y178{bottom:910.663500px;}
.y115{bottom:914.467500px;}
.y23c{bottom:917.382750px;}
.y148{bottom:920.629500px;}
.y47{bottom:923.644500px;}
.y176{bottom:927.102000px;}
.ybb{bottom:927.281864px;}
.y1a4{bottom:927.469500px;}
.y35a{bottom:927.693000px;}
.y2d9{bottom:928.813500px;}
.y7a{bottom:929.262000px;}
.y20c{bottom:932.271000px;}
.y175{bottom:935.322000px;}
.y23b{bottom:935.652300px;}
.yba{bottom:937.393223px;}
.y147{bottom:939.472500px;}
.y359{bottom:944.953500px;}
.y2{bottom:945.126001px;}
.y1a3{bottom:946.299000px;}
.y31c{bottom:947.643000px;}
.y79{bottom:948.091500px;}
.y20b{bottom:948.709500px;}
.y2d8{bottom:952.126500px;}
.y23a{bottom:953.832750px;}
.y146{bottom:955.911000px;}
.y358{bottom:962.214000px;}
.y1a2{bottom:965.128500px;}
.y20a{bottom:965.148000px;}
.y31b{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y78{bottom:966.921000px;}
.y174{bottom:967.180500px;}
.y46{bottom:968.320500px;}
.y239{bottom:972.013200px;}
.y145{bottom:972.349500px;}
.y357{bottom:979.474500px;}
.y209{bottom:981.586500px;}
.y301{bottom:983.958000px;}
.y31a{bottom:985.302000px;}
.y77{bottom:985.750500px;}
.y1a1{bottom:988.440000px;}
.y144{bottom:988.788000px;}
.y238{bottom:990.282750px;}
.y173{bottom:990.822000px;}
.y356{bottom:996.735000px;}
.y208{bottom:998.023500px;}
.y172{bottom:999.040500px;}
.y300{bottom:1002.787500px;}
.y319{bottom:1004.131500px;}
.y76{bottom:1004.580000px;}
.y143{bottom:1005.226500px;}
.y45{bottom:1008.240000px;}
.y1a0{bottom:1008.615000px;}
.y355{bottom:1013.995500px;}
.y207{bottom:1014.462000px;}
.y142{bottom:1021.665000px;}
.y75{bottom:1023.409500px;}
.y171{bottom:1023.699000px;}
.y2ff{bottom:1026.099000px;}
.y318{bottom:1027.444500px;}
.y206{bottom:1030.900500px;}
.y354{bottom:1031.254500px;}
.y170{bottom:1031.917500px;}
.y44{bottom:1036.485000px;}
.y141{bottom:1038.103500px;}
.y74{bottom:1042.239000px;}
.y237{bottom:1044.102885px;}
.y2fe{bottom:1046.274000px;}
.y205{bottom:1047.339000px;}
.y353{bottom:1048.515000px;}
.y236{bottom:1053.732750px;}
.y140{bottom:1054.542000px;}
.y73{bottom:1061.068500px;}
.y16f{bottom:1063.777500px;}
.y43{bottom:1064.728500px;}
.y352{bottom:1065.775500px;}
.y13f{bottom:1070.980500px;}
.y204{bottom:1079.199000px;}
.y72{bottom:1079.898000px;}
.y351{bottom:1083.036000px;}
.y13e{bottom:1087.419000px;}
.y42{bottom:1092.972000px;}
.y71{bottom:1098.727500px;}
.y350{bottom:1100.296500px;}
.y70{bottom:1117.557000px;}
.y13d{bottom:1119.037500px;}
.y40{bottom:1136.460000px;}
.y6f{bottom:1177.662000px;}
.h17{height:21.017894px;}
.h10{height:26.110157px;}
.h1c{height:27.593262px;}
.h3c{height:29.245430px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h36{height:30.746777px;}
.h22{height:31.456318px;}
.h21{height:31.729852px;}
.h7{height:32.130000px;}
.h16{height:33.072749px;}
.h3d{height:33.244805px;}
.h11{height:34.813397px;}
.h2d{height:34.951465px;}
.h15{height:35.052500px;}
.h2c{height:35.255391px;}
.h25{height:35.477051px;}
.h24{height:35.785547px;}
.h1a{height:36.699038px;}
.h37{height:36.791016px;}
.h19{height:37.018160px;}
.h45{height:37.707715px;}
.h27{height:38.896243px;}
.h44{height:38.942965px;}
.h12{height:39.165235px;}
.h32{height:39.418945px;}
.h28{height:39.434227px;}
.h23{height:39.497783px;}
.h31{height:39.761719px;}
.h47{height:39.841242px;}
.h46{height:41.389893px;}
.h1d{height:41.749805px;}
.h41{height:41.897461px;}
.h13{height:43.217759px;}
.h2f{height:43.269961px;}
.h14{height:43.516637px;}
.hd{height:43.815515px;}
.h30{height:43.886426px;}
.h2e{height:44.268047px;}
.h42{height:45.342773px;}
.h1f{height:45.433459px;}
.h6{height:45.900000px;}
.h3b{height:45.988770px;}
.h1b{height:46.080747px;}
.h1e{height:46.481449px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.547601px;}
.h2{height:55.080000px;}
.h26{height:57.762749px;}
.h34{height:59.220745px;}
.h35{height:59.577145px;}
.h5{height:64.260000px;}
.h3f{height:65.245394px;}
.h38{height:71.770243px;}
.h39{height:71.776243px;}
.h29{height:72.039235px;}
.h2a{height:72.045235px;}
.h33{height:76.481719px;}
.he{height:77.792486px;}
.hc{height:87.128261px;}
.h4{height:119.055004px;}
.h2b{height:194.007000px;}
.h3e{height:233.278500px;}
.h3a{height:267.838800px;}
.h43{height:423.436950px;}
.h20{height:486.351000px;}
.h18{height:503.102250px;}
.h40{height:548.245500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w5{width:386.262450px;}
.w8{width:420.216000px;}
.w9{width:422.574000px;}
.wb{width:437.575500px;}
.w7{width:590.659500px;}
.w2{width:637.794021px;}
.w6{width:643.284855px;}
.wa{width:787.808700px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x15{left:-204.472800px;}
.x24{left:-191.061000px;}
.x4f{left:-171.247500px;}
.x1b{left:-31.280445px;}
.x0{left:0.000000px;}
.x4a{left:2.945700px;}
.x25{left:4.509000px;}
.x3f{left:20.169000px;}
.x19{left:34.328589px;}
.x26{left:36.369594px;}
.x2f{left:40.779000px;}
.x44{left:43.814172px;}
.x2d{left:48.428892px;}
.x7{left:49.836000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x45{left:65.323803px;}
.x51{left:68.674500px;}
.x30{left:80.649000px;}
.x5a{left:85.848000px;}
.x31{left:99.729180px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3e{left:111.339000px;}
.x2e{left:116.468487px;}
.x2b{left:119.439000px;}
.x1a{left:124.604595px;}
.x1c{left:144.732555px;}
.x46{left:161.533254px;}
.x1e{left:173.406460px;}
.x4c{left:198.515700px;}
.x40{left:202.149000px;}
.x4{left:203.484001px;}
.x2c{left:214.028937px;}
.x4e{left:230.375700px;}
.x47{left:247.392768px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x20{left:258.556500px;}
.x9{left:269.484000px;}
.x43{left:272.414154px;}
.xb{left:281.479500px;}
.x56{left:286.036500px;}
.xc{left:288.625500px;}
.x58{left:290.584500px;}
.x23{left:294.019500px;}
.x49{left:307.321500px;}
.x21{left:310.693500px;}
.x59{left:320.472000px;}
.x48{left:322.632777px;}
.x37{left:324.639000px;}
.x34{left:332.199432px;}
.x35{left:340.119045px;}
.x38{left:342.729000px;}
.x39{left:344.799180px;}
.x28{left:354.159000px;}
.xd{left:360.399000px;}
.x41{left:369.819243px;}
.x18{left:386.718494px;}
.x36{left:392.499477px;}
.x32{left:406.179000px;}
.x57{left:410.892000px;}
.x3d{left:416.258856px;}
.x42{left:417.765000px;}
.x50{left:436.088314px;}
.x22{left:438.288000px;}
.x3{left:454.959000px;}
.x14{left:464.410500px;}
.x12{left:470.925000px;}
.x29{left:476.289450px;}
.x13{left:477.730500px;}
.x2a{left:485.379000px;}
.x1f{left:500.235000px;}
.x33{left:511.479000px;}
.x16{left:540.281700px;}
.x17{left:544.912200px;}
.x3a{left:583.062000px;}
.x27{left:587.976606px;}
.x4d{left:596.405700px;}
.x54{left:640.060500px;}
.x1d{left:642.557302px;}
.xe{left:716.212500px;}
.x3b{left:717.474000px;}
.x52{left:722.554500px;}
.x3c{left:726.216000px;}
.x55{left:768.502500px;}
.x4b{left:787.835550px;}
.x10{left:801.984000px;}
.x11{left:813.106500px;}
.x53{left:832.990500px;}
.xf{left:836.974500px;}
@media print{
.v9{vertical-align:-23.999040pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:17.601600pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:21.946667pt;}
.v6{vertical-align:29.221333pt;}
.v7{vertical-align:32.640000pt;}
.ls91{letter-spacing:-0.267200pt;}
.ls95{letter-spacing:-0.261856pt;}
.lsad{letter-spacing:-0.235670pt;}
.lsb3{letter-spacing:-0.211622pt;}
.lsa9{letter-spacing:-0.202003pt;}
.ls8b{letter-spacing:-0.197728pt;}
.ls89{letter-spacing:-0.192384pt;}
.ls75{letter-spacing:-0.160992pt;}
.ls2b{letter-spacing:-0.157114pt;}
.ls9f{letter-spacing:-0.153600pt;}
.ls87{letter-spacing:-0.149632pt;}
.ls6e{letter-spacing:-0.138944pt;}
.lsb1{letter-spacing:-0.138240pt;}
.ls28{letter-spacing:-0.129058pt;}
.ls8e{letter-spacing:-0.127296pt;}
.lsab{letter-spacing:-0.125050pt;}
.ls9a{letter-spacing:-0.123552pt;}
.lsb5{letter-spacing:-0.120240pt;}
.ls2f{letter-spacing:-0.117835pt;}
.lsa2{letter-spacing:-0.117568pt;}
.ls8f{letter-spacing:-0.116064pt;}
.ls44{letter-spacing:-0.105811pt;}
.ls96{letter-spacing:-0.104832pt;}
.ls25{letter-spacing:-0.101002pt;}
.ls8c{letter-spacing:-0.096192pt;}
.ls29{letter-spacing:-0.084168pt;}
.ls7a{letter-spacing:-0.082368pt;}
.ls88{letter-spacing:-0.080160pt;}
.ls6d{letter-spacing:-0.069472pt;}
.ls2c{letter-spacing:-0.067334pt;}
.ls79{letter-spacing:-0.062720pt;}
.ls97{letter-spacing:-0.056160pt;}
.ls6a{letter-spacing:-0.053440pt;}
.lsb4{letter-spacing:-0.052906pt;}
.ls77{letter-spacing:-0.052416pt;}
.ls93{letter-spacing:-0.048096pt;}
.lsaf{letter-spacing:-0.043286pt;}
.ls94{letter-spacing:-0.042752pt;}
.ls2d{letter-spacing:-0.039278pt;}
.ls90{letter-spacing:-0.037408pt;}
.ls2e{letter-spacing:-0.033667pt;}
.ls8a{letter-spacing:-0.032064pt;}
.ls43{letter-spacing:-0.028858pt;}
.ls6f{letter-spacing:-0.026720pt;}
.ls71{letter-spacing:-0.024000pt;}
.ls8d{letter-spacing:-0.021376pt;}
.lsb0{letter-spacing:-0.019238pt;}
.ls2a{letter-spacing:-0.016834pt;}
.ls92{letter-spacing:-0.016032pt;}
.lsae{letter-spacing:-0.014429pt;}
.ls69{letter-spacing:-0.012768pt;}
.ls30{letter-spacing:-0.011222pt;}
.ls6b{letter-spacing:-0.010688pt;}
.lsaa{letter-spacing:-0.009619pt;}
.ls73{letter-spacing:-0.009600pt;}
.ls98{letter-spacing:-0.007488pt;}
.ls27{letter-spacing:-0.005611pt;}
.ls6c{letter-spacing:-0.005344pt;}
.lsa8{letter-spacing:-0.004810pt;}
.ls70{letter-spacing:-0.004800pt;}
.ls78{letter-spacing:-0.004480pt;}
.ls24{letter-spacing:-0.004469pt;}
.ls9e{letter-spacing:-0.004256pt;}
.ls42{letter-spacing:-0.003830pt;}
.ls0{letter-spacing:0.000000pt;}
.lsbc{letter-spacing:0.000076pt;}
.lsc3{letter-spacing:0.000711pt;}
.lsc0{letter-spacing:0.001408pt;}
.lsc2{letter-spacing:0.001688pt;}
.lsc4{letter-spacing:0.002262pt;}
.lsbe{letter-spacing:0.002465pt;}
.lsb8{letter-spacing:0.002868pt;}
.lsbb{letter-spacing:0.003372pt;}
.ls67{letter-spacing:0.004480pt;}
.ls60{letter-spacing:0.004800pt;}
.ls3d{letter-spacing:0.004810pt;}
.ls57{letter-spacing:0.005344pt;}
.ls17{letter-spacing:0.005611pt;}
.ls62{letter-spacing:0.009600pt;}
.lsa5{letter-spacing:0.009619pt;}
.ls5d{letter-spacing:0.010688pt;}
.ls13{letter-spacing:0.011222pt;}
.ls36{letter-spacing:0.012960pt;}
.ls7b{letter-spacing:0.014400pt;}
.ls3a{letter-spacing:0.014429pt;}
.ls7f{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.016834pt;}
.ls51{letter-spacing:0.017024pt;}
.lsb2{letter-spacing:0.017280pt;}
.ls63{letter-spacing:0.019200pt;}
.ls3c{letter-spacing:0.019238pt;}
.ls58{letter-spacing:0.021376pt;}
.ls37{letter-spacing:0.021600pt;}
.ls1c{letter-spacing:0.022445pt;}
.ls31{letter-spacing:0.022982pt;}
.ls65{letter-spacing:0.024000pt;}
.lsa4{letter-spacing:0.024048pt;}
.ls9b{letter-spacing:0.025536pt;}
.ls80{letter-spacing:0.026720pt;}
.lsd{letter-spacing:0.026813pt;}
.ls12{letter-spacing:0.028056pt;}
.ls64{letter-spacing:0.028800pt;}
.ls3b{letter-spacing:0.028858pt;}
.ls1d{letter-spacing:0.030240pt;}
.ls5a{letter-spacing:0.032064pt;}
.ls5f{letter-spacing:0.033600pt;}
.ls20{letter-spacing:0.033667pt;}
.ls55{letter-spacing:0.037408pt;}
.ls35{letter-spacing:0.038477pt;}
.ls59{letter-spacing:0.042752pt;}
.ls61{letter-spacing:0.043200pt;}
.ls34{letter-spacing:0.043286pt;}
.ls18{letter-spacing:0.044890pt;}
.ls82{letter-spacing:0.048000pt;}
.ls5c{letter-spacing:0.048096pt;}
.ls14{letter-spacing:0.050501pt;}
.ls5e{letter-spacing:0.053440pt;}
.ls1b{letter-spacing:0.056112pt;}
.ls9d{letter-spacing:0.057600pt;}
.ls3e{letter-spacing:0.057715pt;}
.ls56{letter-spacing:0.058784pt;}
.ls11{letter-spacing:0.061723pt;}
.ls39{letter-spacing:0.062525pt;}
.ls5b{letter-spacing:0.064128pt;}
.ls1e{letter-spacing:0.065520pt;}
.ls19{letter-spacing:0.067334pt;}
.ls7e{letter-spacing:0.069472pt;}
.ls45{letter-spacing:0.072144pt;}
.ls21{letter-spacing:0.072946pt;}
.lsa7{letter-spacing:0.073440pt;}
.ls54{letter-spacing:0.074816pt;}
.ls40{letter-spacing:0.076954pt;}
.ls15{letter-spacing:0.078557pt;}
.ls83{letter-spacing:0.080160pt;}
.ls38{letter-spacing:0.081763pt;}
.ls22{letter-spacing:0.084168pt;}
.ls7d{letter-spacing:0.085504pt;}
.ls76{letter-spacing:0.086112pt;}
.ls66{letter-spacing:0.086400pt;}
.ls3f{letter-spacing:0.086573pt;}
.ls7c{letter-spacing:0.090848pt;}
.ls1a{letter-spacing:0.095390pt;}
.ls99{letter-spacing:0.097344pt;}
.ls1f{letter-spacing:0.117835pt;}
.ls10{letter-spacing:0.123446pt;}
.ls33{letter-spacing:0.141725pt;}
.lsa3{letter-spacing:0.145555pt;}
.ls53{letter-spacing:0.148960pt;}
.ls32{letter-spacing:0.153216pt;}
.ls81{letter-spacing:0.158400pt;}
.ls74{letter-spacing:0.160992pt;}
.ls52{letter-spacing:0.161728pt;}
.lsa0{letter-spacing:0.163200pt;}
.lsf{letter-spacing:0.165346pt;}
.ls9c{letter-spacing:0.170240pt;}
.lse{letter-spacing:0.178752pt;}
.lsac{letter-spacing:0.245290pt;}
.lsa1{letter-spacing:0.304608pt;}
.ls85{letter-spacing:2.319296pt;}
.ls26{letter-spacing:2.440872pt;}
.ls49{letter-spacing:2.657067pt;}
.lsa6{letter-spacing:2.743200pt;}
.ls84{letter-spacing:3.601856pt;}
.ls5{letter-spacing:10.626533pt;}
.lsc1{letter-spacing:10.865110pt;}
.lsbf{letter-spacing:10.982272pt;}
.lsb6{letter-spacing:11.423781pt;}
.ls47{letter-spacing:12.964663pt;}
.ls4b{letter-spacing:13.124065pt;}
.ls46{letter-spacing:13.177199pt;}
.ls7{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.ls68{letter-spacing:13.389734pt;}
.ls8{letter-spacing:13.442868pt;}
.lsa{letter-spacing:13.602270pt;}
.lsb7{letter-spacing:13.867939pt;}
.ls4a{letter-spacing:13.923096pt;}
.ls23{letter-spacing:14.133609pt;}
.ls4f{letter-spacing:14.346144pt;}
.ls41{letter-spacing:15.887026pt;}
.ls48{letter-spacing:15.942400pt;}
.lsb9{letter-spacing:16.152695pt;}
.lsbd{letter-spacing:16.630900pt;}
.ls6{letter-spacing:16.949703pt;}
.lsc{letter-spacing:17.799845pt;}
.lsba{letter-spacing:20.244003pt;}
.ls4c{letter-spacing:20.509673pt;}
.lsb{letter-spacing:23.803972pt;}
.ls50{letter-spacing:24.600980pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ls4d{letter-spacing:99.502302pt;}
.ls4e{letter-spacing:109.975057pt;}
.ls86{letter-spacing:282.720672pt;}
.ls72{letter-spacing:490.401600pt;}
.ws112{word-spacing:-13.429472pt;}
.ws29{word-spacing:-13.283467pt;}
.wsd6{word-spacing:-12.043200pt;}
.ws1d4{word-spacing:-11.955200pt;}
.ws60{word-spacing:-11.350752pt;}
.ws61{word-spacing:-11.172000pt;}
.ws16a{word-spacing:-10.810240pt;}
.wsd4{word-spacing:-10.801728pt;}
.wsd5{word-spacing:-10.640000pt;}
.ws2b{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws9a{word-spacing:-9.729216pt;}
.ws9b{word-spacing:-9.576000pt;}
.ws111{word-spacing:-9.520992pt;}
.ws114{word-spacing:-9.457344pt;}
.ws5{word-spacing:-9.298400pt;}
.wsda{word-spacing:-9.277632pt;}
.wsd7{word-spacing:-9.199008pt;}
.ws156{word-spacing:-3.468256pt;}
.ws70{word-spacing:-3.333053pt;}
.ws140{word-spacing:-3.163648pt;}
.ws157{word-spacing:-3.152960pt;}
.ws6f{word-spacing:-2.929046pt;}
.ws1ca{word-spacing:-2.869229pt;}
.ws188{word-spacing:-2.859040pt;}
.ws1a4{word-spacing:-2.832854pt;}
.ws161{word-spacing:-2.821632pt;}
.ws1ad{word-spacing:-2.818426pt;}
.ws41{word-spacing:-2.603559pt;}
.wsb3{word-spacing:-2.558707pt;}
.ws1a3{word-spacing:-2.553898pt;}
.ws1ac{word-spacing:-2.539469pt;}
.ws146{word-spacing:-2.511680pt;}
.ws1cf{word-spacing:-2.343219pt;}
.ws1bc{word-spacing:-2.337890pt;}
.wsad{word-spacing:-2.255702pt;}
.ws147{word-spacing:-2.169664pt;}
.ws17c{word-spacing:-2.148288pt;}
.ws119{word-spacing:-2.125355pt;}
.ws12a{word-spacing:-2.078816pt;}
.ws35{word-spacing:-2.072221pt;}
.ws1c8{word-spacing:-2.019087pt;}
.ws14d{word-spacing:-1.897120pt;}
.ws14e{word-spacing:-1.859712pt;}
.wsbc{word-spacing:-1.859685pt;}
.ws17b{word-spacing:-1.827648pt;}
.ws44{word-spacing:-1.806551pt;}
.ws56{word-spacing:-1.753418pt;}
.ws1a6{word-spacing:-1.683360pt;}
.wscb{word-spacing:-1.647150pt;}
.ws9d{word-spacing:-1.594016pt;}
.wsf1{word-spacing:-1.581824pt;}
.ws173{word-spacing:-1.544416pt;}
.wsbd{word-spacing:-1.540882pt;}
.wsf0{word-spacing:-1.517696pt;}
.ws32{word-spacing:-1.487748pt;}
.ws162{word-spacing:-1.485632pt;}
.ws1fb{word-spacing:-1.482445pt;}
.wsc3{word-spacing:-1.381481pt;}
.ws206{word-spacing:-1.338982pt;}
.ws176{word-spacing:-1.261184pt;}
.ws163{word-spacing:-1.255840pt;}
.ws172{word-spacing:-1.245152pt;}
.wsf8{word-spacing:-1.223776pt;}
.ws1be{word-spacing:-1.222079pt;}
.wsf7{word-spacing:-1.175680pt;}
.ws1ee{word-spacing:-1.147699pt;}
.wsb2{word-spacing:-1.120637pt;}
.ws1c9{word-spacing:-1.115811pt;}
.ws1f7{word-spacing:-1.099878pt;}
.wsb1{word-spacing:-1.082160pt;}
.ws39{word-spacing:-1.062677pt;}
.ws1dc{word-spacing:-1.004237pt;}
.ws184{word-spacing:-0.945888pt;}
.wse4{word-spacing:-0.919168pt;}
.ws18e{word-spacing:-0.903276pt;}
.ws168{word-spacing:-0.850142pt;}
.ws38{word-spacing:-0.797008pt;}
.ws117{word-spacing:-0.743874pt;}
.ws1dd{word-spacing:-0.717312pt;}
.ws1c4{word-spacing:-0.690740pt;}
.ws9e{word-spacing:-0.637606pt;}
.ws1e3{word-spacing:-0.621670pt;}
.ws15a{word-spacing:-0.598528pt;}
.ws1c0{word-spacing:-0.584473pt;}
.ws15c{word-spacing:-0.582496pt;}
.ws153{word-spacing:-0.577152pt;}
.ws1e4{word-spacing:-0.573850pt;}
.ws18d{word-spacing:-0.555776pt;}
.ws183{word-spacing:-0.539744pt;}
.ws10f{word-spacing:-0.531339pt;}
.ws1a0{word-spacing:-0.519437pt;}
.ws15d{word-spacing:-0.518368pt;}
.ws72{word-spacing:-0.499397pt;}
.ws1eb{word-spacing:-0.478208pt;}
.ws71{word-spacing:-0.454507pt;}
.ws18f{word-spacing:-0.425071pt;}
.ws9c{word-spacing:-0.371937pt;}
.ws90{word-spacing:-0.364728pt;}
.ws203{word-spacing:-0.334746pt;}
.ws47{word-spacing:-0.318803pt;}
.ws8b{word-spacing:-0.303005pt;}
.ws174{word-spacing:-0.299264pt;}
.wsa9{word-spacing:-0.293386pt;}
.ws159{word-spacing:-0.288576pt;}
.ws1e2{word-spacing:-0.286925pt;}
.ws18b{word-spacing:-0.283232pt;}
.wse5{word-spacing:-0.272544pt;}
.ws51{word-spacing:-0.265669pt;}
.ws6a{word-spacing:-0.259190pt;}
.wsb4{word-spacing:-0.254909pt;}
.ws16d{word-spacing:-0.246848pt;}
.wsbb{word-spacing:-0.245290pt;}
.wsdf{word-spacing:-0.242592pt;}
.ws175{word-spacing:-0.240480pt;}
.ws1d0{word-spacing:-0.239104pt;}
.wsfd{word-spacing:-0.229792pt;}
.ws1ea{word-spacing:-0.228547pt;}
.ws9f{word-spacing:-0.222163pt;}
.ws21{word-spacing:-0.212535pt;}
.ws12f{word-spacing:-0.208416pt;}
.ws13d{word-spacing:-0.206400pt;}
.ws1b1{word-spacing:-0.192384pt;}
.wsff{word-spacing:-0.192000pt;}
.ws1d1{word-spacing:-0.191283pt;}
.ws106{word-spacing:-0.187200pt;}
.ws11d{word-spacing:-0.177600pt;}
.ws100{word-spacing:-0.163200pt;}
.ws20{word-spacing:-0.159402pt;}
.ws101{word-spacing:-0.158400pt;}
.ws13e{word-spacing:-0.148800pt;}
.ws11{word-spacing:-0.143462pt;}
.ws18a{word-spacing:-0.117568pt;}
.ws1e{word-spacing:-0.106268pt;}
.ws13{word-spacing:-0.095642pt;}
.ws6b{word-spacing:-0.075970pt;}
.ws16e{word-spacing:-0.072352pt;}
.wse0{word-spacing:-0.068096pt;}
.wsa0{word-spacing:-0.065117pt;}
.ws2e{word-spacing:-0.053134pt;}
.ws12e{word-spacing:-0.048096pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws1d7{word-spacing:-0.041182pt;}
.ws1ff{word-spacing:-0.012109pt;}
.ws1d8{word-spacing:-0.007663pt;}
.ws1f9{word-spacing:-0.006810pt;}
.ws1e6{word-spacing:-0.006340pt;}
.ws1d5{word-spacing:-0.005495pt;}
.ws1f8{word-spacing:-0.005154pt;}
.ws1ed{word-spacing:-0.004898pt;}
.ws1a9{word-spacing:-0.004810pt;}
.ws10e{word-spacing:-0.004480pt;}
.ws1fc{word-spacing:-0.003285pt;}
.ws1fe{word-spacing:-0.002219pt;}
.ws1de{word-spacing:-0.002074pt;}
.ws2a{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.000561pt;}
.ws10c{word-spacing:0.004480pt;}
.wsb5{word-spacing:0.004810pt;}
.wse2{word-spacing:0.005344pt;}
.ws1b4{word-spacing:0.014429pt;}
.ws124{word-spacing:0.016032pt;}
.ws136{word-spacing:0.021376pt;}
.ws1f2{word-spacing:0.022779pt;}
.ws12b{word-spacing:0.026720pt;}
.ws13f{word-spacing:0.032064pt;}
.wsa6{word-spacing:0.033667pt;}
.wsfc{word-spacing:0.037408pt;}
.ws1d9{word-spacing:0.045405pt;}
.ws1cb{word-spacing:0.047821pt;}
.wsef{word-spacing:0.048096pt;}
.ws1a7{word-spacing:0.052906pt;}
.ws34{word-spacing:0.053134pt;}
.ws1b3{word-spacing:0.057715pt;}
.wsf9{word-spacing:0.058784pt;}
.ws10d{word-spacing:0.062720pt;}
.ws8c{word-spacing:0.067334pt;}
.ws137{word-spacing:0.069472pt;}
.ws10a{word-spacing:0.072000pt;}
.ws8f{word-spacing:0.078557pt;}
.ws148{word-spacing:0.085504pt;}
.ws19d{word-spacing:0.086573pt;}
.wscf{word-spacing:0.095642pt;}
.ws1ae{word-spacing:0.096192pt;}
.ws13c{word-spacing:0.101536pt;}
.ws16f{word-spacing:0.105600pt;}
.wsa5{word-spacing:0.105811pt;}
.ws8e{word-spacing:0.105840pt;}
.ws28{word-spacing:0.106268pt;}
.ws11e{word-spacing:0.106880pt;}
.ws6{word-spacing:0.111581pt;}
.ws189{word-spacing:0.112224pt;}
.ws107{word-spacing:0.115200pt;}
.ws19f{word-spacing:0.120240pt;}
.wsa8{word-spacing:0.125280pt;}
.ws10b{word-spacing:0.129600pt;}
.wse3{word-spacing:0.133600pt;}
.ws108{word-spacing:0.134400pt;}
.ws105{word-spacing:0.139200pt;}
.ws8d{word-spacing:0.141120pt;}
.ws1da{word-spacing:0.143462pt;}
.ws11b{word-spacing:0.144000pt;}
.ws102{word-spacing:0.148800pt;}
.ws11c{word-spacing:0.153600pt;}
.wsfe{word-spacing:0.158400pt;}
.ws1f{word-spacing:0.159402pt;}
.ws103{word-spacing:0.163200pt;}
.ws13b{word-spacing:0.176352pt;}
.ws19{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.ws12{word-spacing:0.239104pt;}
.ws43{word-spacing:0.265669pt;}
.ws1b2{word-spacing:0.269338pt;}
.ws19c{word-spacing:0.278957pt;}
.ws14{word-spacing:0.286925pt;}
.ws1a8{word-spacing:0.307814pt;}
.wsc0{word-spacing:0.318803pt;}
.ws135{word-spacing:0.325984pt;}
.ws179{word-spacing:0.331328pt;}
.ws192{word-spacing:0.334746pt;}
.ws1b9{word-spacing:0.341482pt;}
.ws17a{word-spacing:0.342016pt;}
.ws1bb{word-spacing:0.371937pt;}
.ws155{word-spacing:0.374080pt;}
.wsd{word-spacing:0.382566pt;}
.ws154{word-spacing:0.416832pt;}
.wsf5{word-spacing:0.470272pt;}
.wsc8{word-spacing:0.478205pt;}
.ws1ba{word-spacing:0.485770pt;}
.ws16{word-spacing:0.526029pt;}
.ws50{word-spacing:0.531339pt;}
.wsf6{word-spacing:0.539744pt;}
.ws3e{word-spacing:0.584473pt;}
.wsab{word-spacing:0.591581pt;}
.ws1a2{word-spacing:0.630058pt;}
.ws25{word-spacing:0.637606pt;}
.wsac{word-spacing:0.639677pt;}
.ws166{word-spacing:0.678688pt;}
.ws182{word-spacing:0.684032pt;}
.ws4b{word-spacing:0.690740pt;}
.wseb{word-spacing:0.700064pt;}
.wsea{word-spacing:0.726784pt;}
.ws95{word-spacing:0.740678pt;}
.ws5f{word-spacing:0.743874pt;}
.ws97{word-spacing:0.751901pt;}
.ws180{word-spacing:0.753504pt;}
.ws7c{word-spacing:0.757512pt;}
.wsae{word-spacing:0.759917pt;}
.ws96{word-spacing:0.774346pt;}
.ws19e{word-spacing:0.779155pt;}
.ws69{word-spacing:0.797008pt;}
.ws68{word-spacing:0.850142pt;}
.ws1a1{word-spacing:0.889776pt;}
.ws49{word-spacing:0.903276pt;}
.ws194{word-spacing:0.918634pt;}
.ws7d{word-spacing:0.920237pt;}
.ws181{word-spacing:0.983296pt;}
.ws1e9{word-spacing:1.052058pt;}
.ws54{word-spacing:1.115811pt;}
.ws89{word-spacing:1.133462pt;}
.ws1ef{word-spacing:1.147699pt;}
.ws8a{word-spacing:1.217630pt;}
.ws55{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws3d{word-spacing:1.275213pt;}
.ws14a{word-spacing:1.303936pt;}
.ws3f{word-spacing:1.328347pt;}
.ws187{word-spacing:1.336000pt;}
.ws16b{word-spacing:1.381481pt;}
.wsc2{word-spacing:1.434614pt;}
.ws205{word-spacing:1.482445pt;}
.wsd3{word-spacing:1.487748pt;}
.ws1a5{word-spacing:1.495786pt;}
.ws196{word-spacing:1.519834pt;}
.ws3b{word-spacing:1.540882pt;}
.ws26{word-spacing:1.594016pt;}
.ws139{word-spacing:1.629920pt;}
.ws164{word-spacing:1.651296pt;}
.wse7{word-spacing:1.688704pt;}
.ws2f{word-spacing:1.700284pt;}
.ws48{word-spacing:1.753418pt;}
.wsaa{word-spacing:1.769933pt;}
.wsb7{word-spacing:1.784362pt;}
.ws195{word-spacing:1.798790pt;}
.ws42{word-spacing:1.806551pt;}
.ws197{word-spacing:1.851696pt;}
.ws1c7{word-spacing:1.859685pt;}
.ws1ce{word-spacing:1.876322pt;}
.ws46{word-spacing:1.912819pt;}
.ws133{word-spacing:1.929184pt;}
.wse9{word-spacing:1.934528pt;}
.ws171{word-spacing:1.955904pt;}
.ws125{word-spacing:1.961248pt;}
.ws1c1{word-spacing:1.965953pt;}
.ws170{word-spacing:1.987968pt;}
.wse8{word-spacing:1.993312pt;}
.ws132{word-spacing:2.009344pt;}
.ws65{word-spacing:2.019087pt;}
.ws76{word-spacing:2.053699pt;}
.ws1d2{word-spacing:2.056294pt;}
.ws33{word-spacing:2.072221pt;}
.ws199{word-spacing:2.087366pt;}
.ws75{word-spacing:2.092978pt;}
.ws201{word-spacing:2.104115pt;}
.wsd2{word-spacing:2.125355pt;}
.ws115{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws1{word-spacing:2.232481pt;}
.ws151{word-spacing:2.260512pt;}
.ws150{word-spacing:2.276544pt;}
.ws14f{word-spacing:2.281888pt;}
.ws120{word-spacing:2.287232pt;}
.ws1cd{word-spacing:2.295398pt;}
.ws40{word-spacing:2.337890pt;}
.ws1b0{word-spacing:2.380320pt;}
.ws79{word-spacing:2.390371pt;}
.ws2d{word-spacing:2.391024pt;}
.ws1f4{word-spacing:2.391040pt;}
.ws82{word-spacing:2.395982pt;}
.ws78{word-spacing:2.429650pt;}
.ws1d6{word-spacing:2.438861pt;}
.ws5e{word-spacing:2.444158pt;}
.ws1f1{word-spacing:2.486682pt;}
.ws1bf{word-spacing:2.497292pt;}
.ws202{word-spacing:2.534502pt;}
.ws62{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.wse6{word-spacing:2.581152pt;}
.ws1b{word-spacing:2.582323pt;}
.wsfa{word-spacing:2.586496pt;}
.ws143{word-spacing:2.602528pt;}
.ws5d{word-spacing:2.603559pt;}
.ws17e{word-spacing:2.607872pt;}
.ws13a{word-spacing:2.613216pt;}
.ws149{word-spacing:2.639936pt;}
.ws152{word-spacing:2.650624pt;}
.ws63{word-spacing:2.656693pt;}
.ws19a{word-spacing:2.659709pt;}
.ws142{word-spacing:2.677344pt;}
.wsbe{word-spacing:2.709827pt;}
.ws200{word-spacing:2.725786pt;}
.ws1af{word-spacing:2.730240pt;}
.ws10{word-spacing:2.750742pt;}
.ws3c{word-spacing:2.816095pt;}
.ws81{word-spacing:2.816822pt;}
.ws1f0{word-spacing:2.860075pt;}
.ws1db{word-spacing:2.861662pt;}
.ws1c{word-spacing:2.861926pt;}
.ws1df{word-spacing:2.865161pt;}
.ws31{word-spacing:2.869229pt;}
.ws1d3{word-spacing:2.869248pt;}
.wsee{word-spacing:2.901792pt;}
.ws11f{word-spacing:2.907136pt;}
.ws127{word-spacing:2.912480pt;}
.ws1f3{word-spacing:2.917069pt;}
.wsed{word-spacing:2.917824pt;}
.ws52{word-spacing:2.922363pt;}
.ws17f{word-spacing:2.933856pt;}
.ws19b{word-spacing:2.943475pt;}
.ws131{word-spacing:2.949888pt;}
.ws24{word-spacing:2.975497pt;}
.ws53{word-spacing:3.028630pt;}
.ws5a{word-spacing:3.081764pt;}
.ws207{word-spacing:3.108352pt;}
.ws110{word-spacing:3.134898pt;}
.ws130{word-spacing:3.158304pt;}
.ws1d{word-spacing:3.188032pt;}
.ws1cc{word-spacing:3.198520pt;}
.ws18{word-spacing:3.203994pt;}
.wsa4{word-spacing:3.208003pt;}
.ws198{word-spacing:3.217622pt;}
.ws5b{word-spacing:3.241166pt;}
.ws123{word-spacing:3.243808pt;}
.ws14b{word-spacing:3.249152pt;}
.ws186{word-spacing:3.254496pt;}
.wsdb{word-spacing:3.294300pt;}
.ws17d{word-spacing:3.297248pt;}
.wsdd{word-spacing:3.299635pt;}
.wsc7{word-spacing:3.347434pt;}
.ws84{word-spacing:3.383554pt;}
.ws1fa{word-spacing:3.395277pt;}
.ws22{word-spacing:3.400567pt;}
.ws1c6{word-spacing:3.453701pt;}
.wsb6{word-spacing:3.477341pt;}
.ws57{word-spacing:3.506835pt;}
.wsf4{word-spacing:3.537728pt;}
.ws165{word-spacing:3.559104pt;}
.ws4e{word-spacing:3.559969pt;}
.wsf3{word-spacing:3.591168pt;}
.ws185{word-spacing:3.596512pt;}
.ws178{word-spacing:3.623232pt;}
.ws17{word-spacing:3.634381pt;}
.ws177{word-spacing:3.655296pt;}
.wsc4{word-spacing:3.719371pt;}
.ws88{word-spacing:3.725837pt;}
.ws87{word-spacing:3.737059pt;}
.ws30{word-spacing:3.825638pt;}
.ws1aa{word-spacing:3.838061pt;}
.ws138{word-spacing:3.858368pt;}
.ws1ab{word-spacing:3.866918pt;}
.ws1bd{word-spacing:3.878772pt;}
.ws3a{word-spacing:3.985040pt;}
.wsb0{word-spacing:4.035254pt;}
.ws4d{word-spacing:4.038174pt;}
.ws1b5{word-spacing:4.044874pt;}
.wsaf{word-spacing:4.092970pt;}
.ws36{word-spacing:4.144442pt;}
.ws1e5{word-spacing:4.160410pt;}
.ws15f{word-spacing:4.211072pt;}
.wsc6{word-spacing:4.250709pt;}
.ws1e0{word-spacing:4.256051pt;}
.ws15e{word-spacing:4.259168pt;}
.ws67{word-spacing:4.303843pt;}
.ws204{word-spacing:4.447334pt;}
.ws141{word-spacing:4.510336pt;}
.ws12c{word-spacing:4.521024pt;}
.ws66{word-spacing:4.569513pt;}
.ws64{word-spacing:4.622646pt;}
.ws1fd{word-spacing:4.638618pt;}
.ws58{word-spacing:4.675780pt;}
.ws1ec{word-spacing:4.686438pt;}
.ws59{word-spacing:4.728914pt;}
.ws7e{word-spacing:4.786354pt;}
.ws80{word-spacing:4.803187pt;}
.ws23{word-spacing:4.835182pt;}
.ws12d{word-spacing:4.836320pt;}
.ws122{word-spacing:4.841664pt;}
.ws7f{word-spacing:4.864910pt;}
.wsa{word-spacing:4.872362pt;}
.ws4f{word-spacing:4.888316pt;}
.ws15{word-spacing:4.925542pt;}
.ws121{word-spacing:5.028704pt;}
.wsd0{word-spacing:5.100851pt;}
.ws144{word-spacing:5.124896pt;}
.ws145{word-spacing:5.162304pt;}
.ws160{word-spacing:5.178336pt;}
.ws134{word-spacing:5.183680pt;}
.ws191{word-spacing:5.207119pt;}
.ws118{word-spacing:5.313387pt;}
.wsc9{word-spacing:5.366521pt;}
.ws98{word-spacing:5.403586pt;}
.wsf2{word-spacing:5.472256pt;}
.wsbf{word-spacing:5.472788pt;}
.ws190{word-spacing:5.525922pt;}
.ws1f6{word-spacing:5.547213pt;}
.ws1f5{word-spacing:5.566766pt;}
.ws1e1{word-spacing:5.595034pt;}
.ws1c5{word-spacing:5.632190pt;}
.ws6e{word-spacing:5.678534pt;}
.ws169{word-spacing:5.685324pt;}
.ws92{word-spacing:5.729035pt;}
.ws16c{word-spacing:5.738458pt;}
.ws91{word-spacing:5.768314pt;}
.ws1b6{word-spacing:5.800378pt;}
.ws1e8{word-spacing:5.834138pt;}
.ws1b8{word-spacing:5.891760pt;}
.ws6d{word-spacing:5.902982pt;}
.ws1b7{word-spacing:6.050477pt;}
.ws5c{word-spacing:6.057261pt;}
.ws14c{word-spacing:6.102848pt;}
.ws2c{word-spacing:6.110395pt;}
.wsec{word-spacing:6.118880pt;}
.ws1c3{word-spacing:6.163529pt;}
.ws18c{word-spacing:6.166976pt;}
.ws4a{word-spacing:6.269796pt;}
.wsa2{word-spacing:6.372720pt;}
.wsa3{word-spacing:6.382339pt;}
.ws4c{word-spacing:6.429198pt;}
.ws37{word-spacing:6.641733pt;}
.wsc1{word-spacing:6.694867pt;}
.ws128{word-spacing:6.706720pt;}
.ws129{word-spacing:6.712064pt;}
.wsfb{word-spacing:6.738784pt;}
.ws7a{word-spacing:6.750274pt;}
.ws126{word-spacing:6.776192pt;}
.ws7b{word-spacing:6.795163pt;}
.ws15b{word-spacing:6.845664pt;}
.wsdc{word-spacing:6.854269pt;}
.ws45{word-spacing:6.907403pt;}
.wsc5{word-spacing:7.226206pt;}
.ws1c2{word-spacing:7.385607pt;}
.ws167{word-spacing:7.412128pt;}
.wsd1{word-spacing:7.438741pt;}
.ws116{word-spacing:7.491875pt;}
.wsca{word-spacing:7.545009pt;}
.ws1e7{word-spacing:7.890432pt;}
.ws99{word-spacing:8.450467pt;}
.ws8{word-spacing:8.740496pt;}
.wsa7{word-spacing:8.778240pt;}
.ws193{word-spacing:9.292550pt;}
.wsa1{word-spacing:9.296381pt;}
.ws11a{word-spacing:10.325056pt;}
.wse1{word-spacing:10.329312pt;}
.ws74{word-spacing:10.481722pt;}
.ws9{word-spacing:10.525789pt;}
.ws73{word-spacing:10.526611pt;}
.ws6c{word-spacing:10.845778pt;}
.wsb9{word-spacing:10.937030pt;}
.wsba{word-spacing:10.946650pt;}
.wsb8{word-spacing:10.980317pt;}
.ws77{word-spacing:11.104565pt;}
.ws83{word-spacing:11.469293pt;}
.ws4{word-spacing:13.761632pt;}
.ws86{word-spacing:14.785512pt;}
.ws85{word-spacing:15.206352pt;}
.ws94{word-spacing:15.464467pt;}
.ws93{word-spacing:15.481301pt;}
.ws158{word-spacing:17.661920pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wscc{word-spacing:103.627674pt;}
.wsce{word-spacing:111.565926pt;}
.wscd{word-spacing:181.336474pt;}
.wsd8{word-spacing:190.397376pt;}
.wsd9{word-spacing:228.799584pt;}
.ws113{word-spacing:253.835712pt;}
.wsde{word-spacing:401.407795pt;}
.ws104{word-spacing:1111.531200pt;}
.ws109{word-spacing:1127.500800pt;}
._5c{margin-left:-769.300800pt;}
._4e{margin-left:-752.894400pt;}
._6{margin-left:-10.616218pt;}
._1c{margin-left:-6.397322pt;}
._10{margin-left:-5.494046pt;}
._9{margin-left:-4.590778pt;}
._2{margin-left:-3.347424pt;}
._a{margin-left:-2.337896pt;}
._3{margin-left:-1.413357pt;}
._20{width:1.085918pt;}
._7{width:2.665841pt;}
._1b{width:3.985040pt;}
._0{width:8.628915pt;}
._1{width:11.530016pt;}
._13{width:13.175632pt;}
._f{width:14.154938pt;}
._b{width:15.106050pt;}
._12{width:16.365231pt;}
._d{width:17.544910pt;}
._c{width:18.979534pt;}
._1e{width:20.031468pt;}
._16{width:21.253547pt;}
._4{width:22.502128pt;}
._23{width:24.122775pt;}
._17{width:25.057927pt;}
._e{width:26.306726pt;}
._1d{width:27.576477pt;}
._8f{width:28.708582pt;}
._5{width:29.648896pt;}
._11{width:31.348981pt;}
._4a{width:32.602937pt;}
._1f{width:34.802683pt;}
._1a{width:36.237297pt;}
._19{width:37.172449pt;}
._18{width:38.181993pt;}
._2a{width:39.287185pt;}
._8{width:48.359119pt;}
._8b{width:73.318818pt;}
._8c{width:82.732896pt;}
._49{width:86.316544pt;}
._46{width:88.898867pt;}
._48{width:92.198502pt;}
._47{width:96.884941pt;}
._2d{width:115.965440pt;}
._8d{width:118.662336pt;}
._32{width:123.521126pt;}
._28{width:124.716646pt;}
._24{width:127.298970pt;}
._26{width:130.598605pt;}
._25{width:135.285043pt;}
._27{width:137.915187pt;}
._3b{width:147.431526pt;}
._29{width:148.579226pt;}
._30{width:190.900634pt;}
._2f{width:193.291674pt;}
._41{width:215.735612pt;}
._31{width:250.007142pt;}
._3c{width:278.269235pt;}
._36{width:286.558217pt;}
._34{width:290.575164pt;}
._3d{width:303.422976pt;}
._3a{width:307.248640pt;}
._45{width:310.420796pt;}
._52{width:334.060800pt;}
._50{width:346.219200pt;}
._5b{width:358.051200pt;}
._37{width:362.832393pt;}
._3f{width:375.983113pt;}
._5e{width:382.056000pt;}
._43{width:385.451631pt;}
._40{width:389.606717pt;}
._3e{width:392.337826pt;}
._58{width:394.195200pt;}
._33{width:400.845952pt;}
._65{width:402.048627pt;}
._55{width:406.368000pt;}
._2c{width:409.441690pt;}
._6f{width:413.362995pt;}
._44{width:426.147132pt;}
._39{width:427.278848pt;}
._78{width:428.378726pt;}
._72{width:437.273395pt;}
._6c{width:449.228595pt;}
._69{width:461.183795pt;}
._75{width:462.134888pt;}
._42{width:466.647330pt;}
._61{width:490.243200pt;}
._74{width:492.697702pt;}
._63{width:519.716915pt;}
._84{width:529.430400pt;}
._6e{width:532.532429pt;}
._81{width:546.868800pt;}
._2b{width:561.745591pt;}
._2e{width:564.141978pt;}
._62{width:580.557357pt;}
._77{width:589.008794pt;}
._4c{width:593.476800pt;}
._5a{width:620.886957pt;}
._79{width:622.913722pt;}
._7c{width:625.161318pt;}
._14{width:643.431486pt;}
._35{width:644.735189pt;}
._73{width:657.153434pt;}
._83{width:676.785600pt;}
._68{width:689.289011pt;}
._87{width:699.225600pt;}
._7f{width:706.217574pt;}
._7b{width:723.528704pt;}
._5f{width:731.217600pt;}
._38{width:743.912329pt;}
._7a{width:745.526272pt;}
._4d{width:746.651085pt;}
._54{width:777.552000pt;}
._8a{width:781.123200pt;}
._6a{width:790.095238pt;}
._71{width:792.576593pt;}
._86{width:797.769600pt;}
._76{width:820.844032pt;}
._5d{width:841.105485pt;}
._56{width:860.400000pt;}
._53{width:862.214400pt;}
._6d{width:868.808294pt;}
._66{width:881.002579pt;}
._6b{width:889.753805pt;}
._7d{width:892.426446pt;}
._82{width:896.323200pt;}
._85{width:912.000000pt;}
._7e{width:933.892403pt;}
._59{width:944.001600pt;}
._51{width:951.710400pt;}
._57{width:964.248000pt;}
._88{width:965.443200pt;}
._89{width:1009.161600pt;}
._4f{width:1027.684800pt;}
._64{width:1035.463782pt;}
._60{width:1053.482157pt;}
._70{width:1055.931066pt;}
._8e{width:1653.057000pt;}
._22{width:1672.074936pt;}
._80{width:1836.050530pt;}
._4b{width:1857.168802pt;}
._21{width:1950.935078pt;}
._67{width:2222.978667pt;}
._15{width:2244.232000pt;}
.fsa{font-size:31.880533pt;}
.fs10{font-size:33.600000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs19{font-size:37.440000pt;}
.fs12{font-size:38.304000pt;}
.fs9{font-size:40.381867pt;}
.fsd{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fs16{font-size:42.560000pt;}
.fs14{font-size:43.200000pt;}
.fse{font-size:44.688000pt;}
.fs1a{font-size:44.800000pt;}
.fsc{font-size:47.820800pt;}
.fs18{font-size:48.000000pt;}
.fs13{font-size:48.096000pt;}
.fs11{font-size:50.400000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs17{font-size:53.440000pt;}
.fs15{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:56.112000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y28c{bottom:-639.396632pt;}
.y28b{bottom:-622.277128pt;}
.y28a{bottom:-605.157624pt;}
.y289{bottom:-588.118280pt;}
.y288{bottom:-570.998776pt;}
.y287{bottom:-553.879272pt;}
.y286{bottom:-536.839928pt;}
.y285{bottom:-519.720424pt;}
.y284{bottom:-502.681080pt;}
.y283{bottom:-485.561576pt;}
.y282{bottom:-468.442072pt;}
.y281{bottom:-451.402728pt;}
.y280{bottom:-434.283224pt;}
.y2cb{bottom:-430.094363pt;}
.y27f{bottom:-417.242544pt;}
.y2ca{bottom:-412.974859pt;}
.y27e{bottom:-400.123040pt;}
.y2c9{bottom:-391.935531pt;}
.y27d{bottom:-383.003536pt;}
.y27c{bottom:-365.964192pt;}
.y2c8{bottom:-358.816091pt;}
.y1da{bottom:-352.183600pt;}
.y27b{bottom:-348.844688pt;}
.y2c7{bottom:-341.696587pt;}
.y1d9{bottom:-336.023600pt;}
.y27a{bottom:-331.804008pt;}
.yfb{bottom:-327.492341pt;}
.y2c6{bottom:-324.657243pt;}
.y1d8{bottom:-319.144800pt;}
.y279{bottom:-314.684504pt;}
.y2c5{bottom:-307.537739pt;}
.y1d7{bottom:-302.264400pt;}
.yfa{bottom:-297.684845pt;}
.y278{bottom:-297.565000pt;}
.y2c4{bottom:-290.418235pt;}
.y1d6{bottom:-286.104000pt;}
.yf9{bottom:-282.277291pt;}
.y277{bottom:-280.525656pt;}
.y2c3{bottom:-273.378891pt;}
.y1d5{bottom:-269.864400pt;}
.yf8{bottom:-266.941882pt;}
.y276{bottom:-263.406152pt;}
.y2c2{bottom:-256.259387pt;}
.y1d4{bottom:-253.704000pt;}
.yf7{bottom:-251.534328pt;}
.y275{bottom:-246.286648pt;}
.y2c1{bottom:-239.220043pt;}
.y1d3{bottom:-237.543600pt;}
.yf6{bottom:-232.597730pt;}
.y274{bottom:-229.247304pt;}
.y2c0{bottom:-222.100539pt;}
.y1d2{bottom:-221.304000pt;}
.y273{bottom:-212.127800pt;}
.y1d1{bottom:-205.143600pt;}
.y2bf{bottom:-204.981035pt;}
.yf5{bottom:-202.790234pt;}
.y272{bottom:-195.088456pt;}
.y1d0{bottom:-188.983600pt;}
.y2be{bottom:-187.941691pt;}
.yf4{bottom:-187.382681pt;}
.y271{bottom:-177.968952pt;}
.y1cf{bottom:-172.104400pt;}
.yf3{bottom:-172.047271pt;}
.y2bd{bottom:-170.822187pt;}
.yd7{bottom:-170.559320pt;}
.y270{bottom:-160.849448pt;}
.yf2{bottom:-156.639718pt;}
.y1ce{bottom:-155.224000pt;}
.y2bc{bottom:-153.782843pt;}
.yd6{bottom:-152.668009pt;}
.y26f{bottom:-143.808768pt;}
.y2fb{bottom:-142.365094pt;}
.yf1{bottom:-141.304308pt;}
.y1cd{bottom:-139.063600pt;}
.y2bb{bottom:-136.663339pt;}
.yd5{bottom:-134.692530pt;}
.y2fa{bottom:-126.957540pt;}
.y26e{bottom:-126.689264pt;}
.yf0{bottom:-125.896754pt;}
.y1cc{bottom:-122.823600pt;}
.y2ba{bottom:-119.543835pt;}
.yd4{bottom:-116.801219pt;}
.y2f9{bottom:-111.622130pt;}
.yef{bottom:-110.489201pt;}
.y26d{bottom:-109.649920pt;}
.y1ca{bottom:-106.024267pt;}
.y2b9{bottom:-102.503155pt;}
.yd3{bottom:-98.825740pt;}
.y1c9{bottom:-97.944667pt;}
.y2f8{bottom:-96.214577pt;}
.yee{bottom:-95.153791pt;}
.y26c{bottom:-92.530416pt;}
.y1cb{bottom:-89.784667pt;}
.y2b8{bottom:-85.383651pt;}
.yed{bottom:-79.746238pt;}
.y2f7{bottom:-77.277979pt;}
.yd2{bottom:-76.733042pt;}
.y26b{bottom:-71.491088pt;}
.y2b7{bottom:-68.342971pt;}
.y1c8{bottom:-64.504267pt;}
.yec{bottom:-60.809640pt;}
.y2f6{bottom:-58.270440pt;}
.yd1{bottom:-54.557580pt;}
.y2b6{bottom:-51.223467pt;}
.y26a{bottom:-50.371600pt;}
.y1c7{bottom:-49.063867pt;}
.yeb{bottom:-31.361280pt;}
.y2f4{bottom:-28.822800pt;}
.y2f5{bottom:-28.822440pt;}
.yd0{bottom:-20.201580pt;}
.y2b5{bottom:-18.503600pt;}
.y1c6{bottom:-17.783467pt;}
.y269{bottom:-17.651600pt;}
.yea{bottom:-17.393640pt;}
.y25e{bottom:-16.308667pt;}
.y2f3{bottom:-14.926440pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:0.534065pt;}
.ycf{bottom:0.805157pt;}
.y2b4{bottom:1.496400pt;}
.y1c5{bottom:2.225400pt;}
.y268{bottom:2.348400pt;}
.y2f2{bottom:3.008155pt;}
.y25d{bottom:3.699157pt;}
.y1ee{bottom:11.176160pt;}
.y1e3{bottom:13.815192pt;}
.y41{bottom:14.848190pt;}
.y25f{bottom:18.331467pt;}
.y1e9{bottom:24.776240pt;}
.y1dd{bottom:27.496704pt;}
.y297{bottom:27.627520pt;}
.y6e{bottom:28.346667pt;}
.y296{bottom:38.347528pt;}
.y1ef{bottom:44.856400pt;}
.y7{bottom:44.973338pt;}
.y1de{bottom:47.816328pt;}
.y28f{bottom:49.308088pt;}
.y1ea{bottom:49.816112pt;}
.y1e7{bottom:61.336400pt;}
.y6{bottom:67.373337pt;}
.y1df{bottom:68.135952pt;}
.y1e4{bottom:69.176400pt;}
.y1db{bottom:69.416400pt;}
.y28e{bottom:70.267936pt;}
.y290{bottom:71.228272pt;}
.y1eb{bottom:74.855984pt;}
.y1e0{bottom:88.455576pt;}
.y5{bottom:89.773337pt;}
.y3f{bottom:93.018667pt;}
.y291{bottom:93.067960pt;}
.y19f{bottom:93.910667pt;}
.y13c{bottom:93.954667pt;}
.y2d7{bottom:96.537333pt;}
.y6d{bottom:96.622667pt;}
.y2b0{bottom:98.512000pt;}
.y34f{bottom:99.493333pt;}
.y1ec{bottom:99.895856pt;}
.y114{bottom:101.146667pt;}
.y386{bottom:103.518667pt;}
.ya4{bottom:104.713333pt;}
.y335{bottom:105.510667pt;}
.yb7{bottom:105.909333pt;}
.y2fd{bottom:106.646667pt;}
.y1e1{bottom:108.775200pt;}
.y3e{bottom:108.920000pt;}
.y19e{bottom:110.648000pt;}
.y13b{bottom:110.692000pt;}
.yb8{bottom:110.730667pt;}
.y1e8{bottom:111.416144pt;}
.y2d6{bottom:113.274667pt;}
.y6c{bottom:113.360000pt;}
.y34e{bottom:114.836000pt;}
.y292{bottom:114.907648pt;}
.y2af{bottom:115.249333pt;}
.y263{bottom:117.370749pt;}
.y113{bottom:117.884000pt;}
.y385{bottom:118.861333pt;}
.y1dc{bottom:120.296424pt;}
.ya3{bottom:121.450667pt;}
.y334{bottom:122.248000pt;}
.yb5{bottom:122.646667pt;}
.y298{bottom:122.828400pt;}
.y261{bottom:123.051333pt;}
.y2fc{bottom:123.742667pt;}
.y24{bottom:123.790666pt;}
.y3d{bottom:124.820000pt;}
.y1ed{bottom:124.935728pt;}
.y19d{bottom:127.385333pt;}
.y13a{bottom:127.429333pt;}
.yb6{bottom:127.468000pt;}
.y1e2{bottom:129.094824pt;}
.y2d5{bottom:130.012000pt;}
.y6b{bottom:130.097333pt;}
.y34d{bottom:130.178667pt;}
.y2ae{bottom:131.986667pt;}
.y384{bottom:134.202667pt;}
.y112{bottom:134.621333pt;}
.y293{bottom:136.747336pt;}
.ya2{bottom:138.188000pt;}
.ye2{bottom:138.257333pt;}
.y333{bottom:138.985333pt;}
.yb4{bottom:139.384000pt;}
.y1e6{bottom:139.976400pt;}
.y3c{bottom:140.720000pt;}
.y234{bottom:141.688000pt;}
.y2dc{bottom:143.680000pt;}
.y19c{bottom:144.122667pt;}
.y139{bottom:144.166667pt;}
.y34c{bottom:145.521333pt;}
.y2d4{bottom:146.749333pt;}
.y6a{bottom:146.834667pt;}
.y2ad{bottom:148.724000pt;}
.y203{bottom:149.336000pt;}
.y383{bottom:149.545333pt;}
.y111{bottom:151.358667pt;}
.ya1{bottom:154.925333pt;}
.ye1{bottom:154.994667pt;}
.y1e5{bottom:155.096400pt;}
.y332{bottom:155.722667pt;}
.yb3{bottom:156.121333pt;}
.y3b{bottom:156.621333pt;}
.y233{bottom:158.425333pt;}
.y28d{bottom:158.508400pt;}
.y294{bottom:158.587024pt;}
.y19b{bottom:160.860000pt;}
.y34b{bottom:160.864000pt;}
.y138{bottom:160.904000pt;}
.y16e{bottom:161.497333pt;}
.y2d3{bottom:163.486667pt;}
.y69{bottom:163.572000pt;}
.y382{bottom:164.888000pt;}
.y2ac{bottom:165.461333pt;}
.y110{bottom:168.096000pt;}
.y16d{bottom:168.802667pt;}
.y202{bottom:170.349333pt;}
.ya0{bottom:171.662667pt;}
.ye0{bottom:171.732000pt;}
.y331{bottom:172.460000pt;}
.y3a{bottom:172.521333pt;}
.yb2{bottom:172.858667pt;}
.y1b{bottom:175.052000pt;}
.y232{bottom:175.162667pt;}
.y34a{bottom:176.206667pt;}
.y19a{bottom:177.597333pt;}
.y137{bottom:177.641333pt;}
.y2d2{bottom:180.224000pt;}
.y381{bottom:180.230667pt;}
.y68{bottom:180.309333pt;}
.y295{bottom:180.507208pt;}
.y2ab{bottom:182.198667pt;}
.y10f{bottom:184.833333pt;}
.y201{bottom:184.961333pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y9f{bottom:188.400000pt;}
.y39{bottom:188.421333pt;}
.ydf{bottom:188.469333pt;}
.y1c4{bottom:188.625456pt;}
.y330{bottom:189.197333pt;}
.yb0{bottom:189.596000pt;}
.y16c{bottom:190.721333pt;}
.y349{bottom:191.549333pt;}
.y231{bottom:191.900000pt;}
.y262{bottom:192.011133pt;}
.y260{bottom:192.331333pt;}
.y199{bottom:194.334667pt;}
.y136{bottom:194.377333pt;}
.yb1{bottom:194.417333pt;}
.y380{bottom:195.573333pt;}
.y2d1{bottom:196.961333pt;}
.y67{bottom:197.046667pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y16b{bottom:198.026667pt;}
.y2aa{bottom:198.936000pt;}
.y200{bottom:199.573333pt;}
.y10e{bottom:201.569333pt;}
.y38{bottom:204.322667pt;}
.y9e{bottom:205.137333pt;}
.yde{bottom:205.206667pt;}
.y1c3{bottom:205.744960pt;}
.y32f{bottom:205.934667pt;}
.yae{bottom:206.333333pt;}
.y348{bottom:206.890667pt;}
.y230{bottom:208.637333pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y37f{bottom:210.916000pt;}
.y198{bottom:211.072000pt;}
.y135{bottom:211.114667pt;}
.yaf{bottom:211.154667pt;}
.y2d0{bottom:213.698667pt;}
.y66{bottom:213.784000pt;}
.y2a9{bottom:215.673333pt;}
.y16a{bottom:219.944000pt;}
.y1fe{bottom:220.586667pt;}
.y9d{bottom:221.874667pt;}
.ydd{bottom:221.944000pt;}
.y347{bottom:222.233333pt;}
.y10d{bottom:222.292000pt;}
.y32e{bottom:222.672000pt;}
.y1c2{bottom:222.864464pt;}
.yad{bottom:223.070667pt;}
.y22f{bottom:225.374667pt;}
.y37e{bottom:226.258667pt;}
.y169{bottom:227.250667pt;}
.y197{bottom:227.809333pt;}
.y1fd{bottom:227.893333pt;}
.y2cf{bottom:230.436000pt;}
.y65{bottom:230.521333pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y2a8{bottom:232.410667pt;}
.y1ff{bottom:235.198667pt;}
.y346{bottom:237.576000pt;}
.y9c{bottom:238.612000pt;}
.ydc{bottom:238.681333pt;}
.y267{bottom:238.988520pt;}
.y32d{bottom:239.409333pt;}
.y1c1{bottom:239.903808pt;}
.y37d{bottom:241.601333pt;}
.y134{bottom:241.800000pt;}
.y22e{bottom:242.112000pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.yac{bottom:243.793333pt;}
.y196{bottom:244.546667pt;}
.y2ce{bottom:247.173333pt;}
.y64{bottom:247.258667pt;}
.y266{bottom:247.548400pt;}
.y2a7{bottom:249.148000pt;}
.y168{bottom:249.168000pt;}
.y10c{bottom:252.180000pt;}
.y345{bottom:252.918667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y25c{bottom:253.459013pt;}
.y9b{bottom:255.349333pt;}
.ydb{bottom:255.418667pt;}
.y32c{bottom:256.146667pt;}
.y37c{bottom:256.944000pt;}
.y1c0{bottom:257.023312pt;}
.y22d{bottom:258.849333pt;}
.y195{bottom:261.284000pt;}
.y1fc{bottom:263.305333pt;}
.y167{bottom:263.780000pt;}
.y2cd{bottom:263.910667pt;}
.y63{bottom:263.996000pt;}
.y2a6{bottom:265.884000pt;}
.y37{bottom:266.570667pt;}
.y344{bottom:268.261333pt;}
.y10b{bottom:268.917333pt;}
.y25b{bottom:270.498357pt;}
.y9a{bottom:272.086667pt;}
.y37b{bottom:272.285333pt;}
.y133{bottom:272.485333pt;}
.y32b{bottom:272.884000pt;}
.yab{bottom:273.681333pt;}
.y1bf{bottom:274.062656pt;}
.y22c{bottom:275.585333pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.yda{bottom:276.140000pt;}
.y1fb{bottom:280.401333pt;}
.y62{bottom:280.733333pt;}
.y194{bottom:282.006667pt;}
.y36{bottom:282.470667pt;}
.y2a5{bottom:282.621333pt;}
.y343{bottom:283.604000pt;}
.y166{bottom:284.794667pt;}
.y10a{bottom:285.654667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y25a{bottom:287.617861pt;}
.y37a{bottom:287.628000pt;}
.y99{bottom:288.824000pt;}
.y132{bottom:289.222667pt;}
.yaa{bottom:290.417333pt;}
.y1be{bottom:291.182160pt;}
.y22b{bottom:292.322667pt;}
.y32a{bottom:293.606667pt;}
.y2cc{bottom:293.746667pt;}
.yd9{bottom:294.073333pt;}
.y61{bottom:297.470667pt;}
.y35{bottom:298.370667pt;}
.y2a4{bottom:299.358667pt;}
.y109{bottom:302.392000pt;}
.y342{bottom:302.932000pt;}
.y379{bottom:302.970667pt;}
.y259{bottom:304.737365pt;}
.y98{bottom:305.561333pt;}
.y165{bottom:305.808000pt;}
.y131{bottom:305.960000pt;}
.ya9{bottom:307.154667pt;}
.y1bd{bottom:308.301664pt;}
.y22a{bottom:309.060000pt;}
.y12{bottom:309.452000pt;}
.y193{bottom:312.122667pt;}
.y164{bottom:313.114667pt;}
.y1fa{bottom:313.382667pt;}
.y60{bottom:314.208000pt;}
.y34{bottom:314.272000pt;}
.y2a3{bottom:316.096000pt;}
.y2b1{bottom:316.340000pt;}
.y378{bottom:318.313333pt;}
.yd8{bottom:321.120000pt;}
.y258{bottom:321.776709pt;}
.y97{bottom:322.298667pt;}
.y130{bottom:322.697333pt;}
.y108{bottom:323.114667pt;}
.y329{bottom:323.494667pt;}
.ya8{bottom:323.892000pt;}
.y1bc{bottom:325.342344pt;}
.y229{bottom:325.797333pt;}
.y192{bottom:328.872000pt;}
.y1f9{bottom:330.120000pt;}
.y5f{bottom:330.945333pt;}
.y341{bottom:332.820000pt;}
.y2a2{bottom:332.833333pt;}
.y377{bottom:333.656000pt;}
.y163{bottom:335.032000pt;}
.y191{bottom:336.178667pt;}
.y257{bottom:338.896213pt;}
.y317{bottom:339.036000pt;}
.y12f{bottom:339.434667pt;}
.y33{bottom:339.470667pt;}
.y328{bottom:340.232000pt;}
.ya7{bottom:340.629333pt;}
.yb9{bottom:341.057333pt;}
.y162{bottom:342.337333pt;}
.y1bb{bottom:342.461848pt;}
.y228{bottom:342.534667pt;}
.y96{bottom:343.021333pt;}
.y11{bottom:343.809333pt;}
.y1f8{bottom:346.857333pt;}
.y376{bottom:348.998667pt;}
.y2a1{bottom:349.570667pt;}
.y5e{bottom:351.666667pt;}
.y107{bottom:353.002667pt;}
.y32{bottom:355.370667pt;}
.y316{bottom:355.773333pt;}
.y256{bottom:355.936893pt;}
.y12e{bottom:356.172000pt;}
.y340{bottom:356.410667pt;}
.y327{bottom:356.968000pt;}
.ya6{bottom:357.366667pt;}
.y227{bottom:359.272000pt;}
.y1ba{bottom:359.501192pt;}
.y95{bottom:360.953333pt;}
.y10{bottom:362.706666pt;}
.y1f7{bottom:363.594667pt;}
.y161{bottom:364.256000pt;}
.y375{bottom:364.341333pt;}
.y190{bottom:364.498667pt;}
.y2a0{bottom:366.308000pt;}
.y106{bottom:369.740000pt;}
.y31{bottom:371.270667pt;}
.y160{bottom:371.561333pt;}
.y33f{bottom:372.032000pt;}
.y315{bottom:372.510667pt;}
.y12d{bottom:372.909333pt;}
.y255{bottom:373.056397pt;}
.y326{bottom:373.705333pt;}
.ya5{bottom:374.104000pt;}
.y226{bottom:376.009333pt;}
.y1b9{bottom:376.620696pt;}
.y374{bottom:379.684000pt;}
.y1f6{bottom:380.332000pt;}
.y29f{bottom:383.045333pt;}
.y18f{bottom:385.512000pt;}
.y105{bottom:386.477333pt;}
.y33e{bottom:387.653333pt;}
.y2f1{bottom:389.000198pt;}
.y314{bottom:389.248000pt;}
.y254{bottom:390.175901pt;}
.y325{bottom:390.442667pt;}
.y94{bottom:390.841333pt;}
.y225{bottom:392.746667pt;}
.y18d{bottom:392.818667pt;}
.y12c{bottom:393.632000pt;}
.y1b8{bottom:393.740200pt;}
.y373{bottom:395.025333pt;}
.y30{bottom:395.141333pt;}
.y1f5{bottom:397.069333pt;}
.y29e{bottom:399.782667pt;}
.y15f{bottom:399.881333pt;}
.y18e{bottom:400.124000pt;}
.y104{bottom:403.214667pt;}
.y2f0{bottom:404.407752pt;}
.y313{bottom:405.985333pt;}
.y324{bottom:407.180000pt;}
.y253{bottom:407.215245pt;}
.y93{bottom:407.578667pt;}
.y224{bottom:409.484000pt;}
.y372{bottom:410.368000pt;}
.y1b7{bottom:410.779544pt;}
.y2f{bottom:411.042667pt;}
.y33d{bottom:411.245333pt;}
.y1f4{bottom:413.806667pt;}
.y29d{bottom:416.520000pt;}
.y5d{bottom:418.468000pt;}
.y2ef{bottom:419.743162pt;}
.y103{bottom:419.952000pt;}
.y15e{bottom:420.896000pt;}
.y18c{bottom:421.138667pt;}
.y312{bottom:422.722667pt;}
.y12b{bottom:423.518667pt;}
.y323{bottom:423.917333pt;}
.y92{bottom:424.316000pt;}
.y252{bottom:424.334749pt;}
.y371{bottom:425.710667pt;}
.y223{bottom:426.221333pt;}
.y33c{bottom:426.866667pt;}
.y2e{bottom:426.942667pt;}
.y1b6{bottom:427.899048pt;}
.y15c{bottom:428.201333pt;}
.y18b{bottom:428.444000pt;}
.y1f3{bottom:430.544000pt;}
.yf{bottom:430.990669pt;}
.y29c{bottom:433.257333pt;}
.y2ee{bottom:435.150715pt;}
.y15d{bottom:435.506667pt;}
.y102{bottom:436.689333pt;}
.y311{bottom:439.460000pt;}
.y12a{bottom:440.256000pt;}
.y322{bottom:440.654667pt;}
.y91{bottom:441.053333pt;}
.y251{bottom:441.454253pt;}
.y2d{bottom:442.842667pt;}
.y222{bottom:442.958667pt;}
.y1b5{bottom:445.018552pt;}
.ye{bottom:446.990669pt;}
.y1f2{bottom:447.281333pt;}
.ye8{bottom:449.094194pt;}
.y15b{bottom:450.118667pt;}
.y33b{bottom:450.458667pt;}
.y2ed{bottom:450.558269pt;}
.y5c{bottom:451.702667pt;}
.y101{bottom:453.426667pt;}
.y29b{bottom:453.980000pt;}
.y310{bottom:456.197333pt;}
.y370{bottom:456.396000pt;}
.y18a{bottom:456.764000pt;}
.y129{bottom:456.993333pt;}
.y321{bottom:457.392000pt;}
.y90{bottom:457.790667pt;}
.y250{bottom:458.493597pt;}
.y2c{bottom:458.744000pt;}
.y221{bottom:459.696000pt;}
.y1b4{bottom:462.059232pt;}
.yd{bottom:462.990669pt;}
.y1f1{bottom:464.018667pt;}
.ye7{bottom:464.501748pt;}
.y15a{bottom:464.730667pt;}
.y2ec{bottom:465.894881pt;}
.yce{bottom:468.181644pt;}
.y5b{bottom:468.997333pt;}
.y100{bottom:470.164000pt;}
.y36f{bottom:471.738667pt;}
.y29a{bottom:471.912000pt;}
.y30f{bottom:472.934667pt;}
.y128{bottom:473.730667pt;}
.y33a{bottom:474.050667pt;}
.y320{bottom:474.129333pt;}
.y8f{bottom:474.528000pt;}
.y2b{bottom:474.644000pt;}
.y24f{bottom:475.613101pt;}
.y220{bottom:476.433333pt;}
.y189{bottom:477.777333pt;}
.yc{bottom:478.990666pt;}
.y1b3{bottom:479.178736pt;}
.ye6{bottom:479.838360pt;}
.y2eb{bottom:481.302434pt;}
.y159{bottom:485.745333pt;}
.ycd{bottom:486.072955pt;}
.y5a{bottom:486.293333pt;}
.yff{bottom:486.901333pt;}
.y36e{bottom:487.081333pt;}
.y30e{bottom:489.672000pt;}
.y127{bottom:490.468000pt;}
.y2a{bottom:490.544000pt;}
.y31f{bottom:490.866667pt;}
.y8e{bottom:491.265333pt;}
.y24e{bottom:492.653781pt;}
.y21f{bottom:493.170667pt;}
.y1f0{bottom:493.854667pt;}
.yb{bottom:494.990666pt;}
.y1b2{bottom:496.218080pt;}
.y2ea{bottom:496.637844pt;}
.y188{bottom:498.792000pt;}
.y299{bottom:498.958667pt;}
.y36d{bottom:502.424000pt;}
.y59{bottom:503.588000pt;}
.ycc{bottom:504.048434pt;}
.y30d{bottom:506.409333pt;}
.y29{bottom:506.445333pt;}
.y158{bottom:506.758667pt;}
.y126{bottom:507.205333pt;}
.y31e{bottom:507.604000pt;}
.yfe{bottom:507.622667pt;}
.y8d{bottom:508.002667pt;}
.y24d{bottom:509.773285pt;}
.y21e{bottom:509.908000pt;}
.y2e9{bottom:512.045398pt;}
.y339{bottom:513.262667pt;}
.y1b1{bottom:513.337584pt;}
.y1ac{bottom:513.792000pt;}
.y36c{bottom:517.766667pt;}
.y265{bottom:518.896000pt;}
.y2b3{bottom:519.656520pt;}
.y187{bottom:519.805333pt;}
.y58{bottom:520.884000pt;}
.ycb{bottom:522.023914pt;}
.y28{bottom:522.345333pt;}
.y30c{bottom:523.145333pt;}
.ye5{bottom:523.614468pt;}
.y31d{bottom:524.341333pt;}
.y8c{bottom:524.740000pt;}
.y24c{bottom:526.892789pt;}
.y2e8{bottom:527.452951pt;}
.y125{bottom:527.928000pt;}
.y2b2{bottom:528.216400pt;}
.y338{bottom:528.884000pt;}
.y21d{bottom:530.630667pt;}
.ye4{bottom:531.318360pt;}
.y36b{bottom:533.108000pt;}
.y1b0{bottom:534.376912pt;}
.yfd{bottom:534.669333pt;}
.y157{bottom:534.865333pt;}
.y57{bottom:538.178667pt;}
.y27{bottom:538.245333pt;}
.y30b{bottom:539.882667pt;}
.yca{bottom:539.916628pt;}
.y2db{bottom:541.078667pt;}
.y8b{bottom:541.477333pt;}
.y2e7{bottom:542.788361pt;}
.y24b{bottom:543.933469pt;}
.y337{bottom:544.505333pt;}
.y186{bottom:547.912000pt;}
.y36a{bottom:548.450667pt;}
.yfc{bottom:551.765333pt;}
.y26{bottom:554.146667pt;}
.y56{bottom:555.473333pt;}
.y1af{bottom:555.496400pt;}
.y30a{bottom:556.620000pt;}
.y124{bottom:557.816000pt;}
.yc9{bottom:557.892107pt;}
.y2e6{bottom:558.195914pt;}
.y8a{bottom:558.214667pt;}
.y336{bottom:560.128000pt;}
.y21c{bottom:560.746667pt;}
.y24a{bottom:561.052973pt;}
.y369{bottom:563.793333pt;}
.y156{bottom:567.846667pt;}
.y25{bottom:570.046667pt;}
.y55{bottom:572.769333pt;}
.y309{bottom:573.357333pt;}
.y2e5{bottom:573.603468pt;}
.ya{bottom:573.786667pt;}
.ye3{bottom:574.360000pt;}
.y123{bottom:574.553333pt;}
.y89{bottom:574.952000pt;}
.yc8{bottom:575.783418pt;}
.y21b{bottom:577.496000pt;}
.y249{bottom:578.092317pt;}
.y368{bottom:579.136000pt;}
.y185{bottom:580.893333pt;}
.y155{bottom:584.584000pt;}
.y2e4{bottom:588.938878pt;}
.y54{bottom:590.064000pt;}
.y308{bottom:590.094667pt;}
.y122{bottom:591.290667pt;}
.y88{bottom:591.689333pt;}
.y21a{bottom:592.108000pt;}
.y9{bottom:592.685334pt;}
.yc7{bottom:593.758897pt;}
.y367{bottom:594.478667pt;}
.y248{bottom:595.211821pt;}
.y184{bottom:597.630667pt;}
.y154{bottom:601.321333pt;}
.y1ae{bottom:604.136520pt;}
.y2e3{bottom:604.346431pt;}
.y219{bottom:606.720000pt;}
.y307{bottom:606.832000pt;}
.y53{bottom:607.358667pt;}
.y121{bottom:608.028000pt;}
.y87{bottom:608.426667pt;}
.y366{bottom:609.821333pt;}
.yc6{bottom:611.734376pt;}
.y247{bottom:612.331325pt;}
.y1ad{bottom:612.696400pt;}
.y183{bottom:614.368000pt;}
.y153{bottom:618.058667pt;}
.y2e2{bottom:619.681841pt;}
.y306{bottom:623.569333pt;}
.y52{bottom:624.654667pt;}
.y120{bottom:624.765333pt;}
.y86{bottom:625.164000pt;}
.y218{bottom:627.734667pt;}
.y246{bottom:629.370669pt;}
.yc5{bottom:629.625688pt;}
.y182{bottom:631.105333pt;}
.y152{bottom:634.796000pt;}
.y2e1{bottom:635.089394pt;}
.y305{bottom:640.306667pt;}
.y365{bottom:640.506667pt;}
.y11f{bottom:641.502667pt;}
.y85{bottom:641.901333pt;}
.y51{bottom:641.949333pt;}
.y8{bottom:645.598667pt;}
.yc4{bottom:647.601167pt;}
.y181{bottom:647.842667pt;}
.y217{bottom:648.748000pt;}
.y245{bottom:650.411333pt;}
.y2e0{bottom:650.496948pt;}
.y151{bottom:651.533333pt;}
.y364{bottom:655.848000pt;}
.y304{bottom:657.044000pt;}
.y11e{bottom:658.240000pt;}
.y84{bottom:658.638667pt;}
.y50{bottom:659.245333pt;}
.y180{bottom:664.580000pt;}
.yc3{bottom:665.576646pt;}
.y2df{bottom:665.833560pt;}
.y150{bottom:668.270667pt;}
.y4{bottom:668.977329pt;}
.y216{bottom:669.762667pt;}
.y363{bottom:671.190667pt;}
.y303{bottom:673.781333pt;}
.y11d{bottom:674.977333pt;}
.y83{bottom:675.376000pt;}
.y4f{bottom:676.540000pt;}
.y17f{bottom:681.317333pt;}
.y244{bottom:683.211333pt;}
.yc2{bottom:683.467957pt;}
.y215{bottom:684.374667pt;}
.y14f{bottom:685.008000pt;}
.y362{bottom:686.533333pt;}
.y302{bottom:690.518667pt;}
.y11c{bottom:691.714667pt;}
.y82{bottom:692.113333pt;}
.y4e{bottom:693.834667pt;}
.y17e{bottom:698.054667pt;}
.y214{bottom:698.986667pt;}
.y243{bottom:700.171067pt;}
.yc1{bottom:701.443436pt;}
.y14e{bottom:701.745333pt;}
.y361{bottom:701.876000pt;}
.y1ab{bottom:707.256000pt;}
.y11b{bottom:708.452000pt;}
.y81{bottom:708.850667pt;}
.y2de{bottom:709.609668pt;}
.y4d{bottom:711.130667pt;}
.y213{bottom:713.597333pt;}
.y242{bottom:716.331467pt;}
.y360{bottom:717.218667pt;}
.y2dd{bottom:717.313560pt;}
.y14d{bottom:718.482667pt;}
.y17d{bottom:718.777333pt;}
.yc0{bottom:719.334748pt;}
.y1aa{bottom:723.993333pt;}
.y11a{bottom:725.189333pt;}
.y80{bottom:725.588000pt;}
.y212{bottom:728.209333pt;}
.y241{bottom:732.491333pt;}
.y35f{bottom:732.561333pt;}
.y14c{bottom:735.220000pt;}
.ybf{bottom:737.310227pt;}
.y1a9{bottom:740.730667pt;}
.y119{bottom:741.926667pt;}
.y7f{bottom:742.324000pt;}
.y211{bottom:742.821333pt;}
.y4c{bottom:745.428000pt;}
.y35e{bottom:747.904000pt;}
.y264{bottom:748.652000pt;}
.y17c{bottom:748.893333pt;}
.y240{bottom:749.371333pt;}
.y14b{bottom:751.957333pt;}
.ybe{bottom:755.285706pt;}
.y210{bottom:757.433333pt;}
.y1a8{bottom:757.468000pt;}
.y118{bottom:758.664000pt;}
.y7e{bottom:759.061333pt;}
.y4b{bottom:759.774667pt;}
.y35d{bottom:763.246667pt;}
.y17b{bottom:765.642667pt;}
.y23f{bottom:766.250133pt;}
.y235{bottom:768.589067pt;}
.y14a{bottom:768.694667pt;}
.y20f{bottom:772.045333pt;}
.y17a{bottom:772.949333pt;}
.ybc{bottom:773.178420pt;}
.y1a7{bottom:774.205333pt;}
.y389{bottom:774.537333pt;}
.y117{bottom:775.401333pt;}
.y7d{bottom:775.798667pt;}
.ybd{bottom:776.706420pt;}
.y4a{bottom:777.978667pt;}
.y35c{bottom:778.589333pt;}
.y3{bottom:781.661334pt;}
.y23e{bottom:783.130533pt;}
.y149{bottom:785.432000pt;}
.y20e{bottom:786.657333pt;}
.y49{bottom:788.466667pt;}
.y388{bottom:789.880000pt;}
.y1a6{bottom:790.942667pt;}
.y116{bottom:792.138667pt;}
.y7c{bottom:792.536000pt;}
.y35b{bottom:793.930667pt;}
.y179{bottom:794.866667pt;}
.y23d{bottom:799.290933pt;}
.y177{bottom:802.173333pt;}
.y48{bottom:802.813333pt;}
.y387{bottom:805.222667pt;}
.y20d{bottom:807.670667pt;}
.y1a5{bottom:807.680000pt;}
.y2da{bottom:808.874667pt;}
.y7b{bottom:809.273333pt;}
.y178{bottom:809.478667pt;}
.y115{bottom:812.860000pt;}
.y23c{bottom:815.451333pt;}
.y148{bottom:818.337333pt;}
.y47{bottom:821.017333pt;}
.y176{bottom:824.090667pt;}
.ybb{bottom:824.250546pt;}
.y1a4{bottom:824.417333pt;}
.y35a{bottom:824.616000pt;}
.y2d9{bottom:825.612000pt;}
.y7a{bottom:826.010667pt;}
.y20c{bottom:828.685333pt;}
.y175{bottom:831.397333pt;}
.y23b{bottom:831.690933pt;}
.yba{bottom:833.238420pt;}
.y147{bottom:835.086667pt;}
.y359{bottom:839.958667pt;}
.y2{bottom:840.112001pt;}
.y1a3{bottom:841.154667pt;}
.y31c{bottom:842.349333pt;}
.y79{bottom:842.748000pt;}
.y20b{bottom:843.297333pt;}
.y2d8{bottom:846.334667pt;}
.y23a{bottom:847.851333pt;}
.y146{bottom:849.698667pt;}
.y358{bottom:855.301333pt;}
.y1a2{bottom:857.892000pt;}
.y20a{bottom:857.909333pt;}
.y31b{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y78{bottom:859.485333pt;}
.y174{bottom:859.716000pt;}
.y46{bottom:860.729333pt;}
.y239{bottom:864.011733pt;}
.y145{bottom:864.310667pt;}
.y357{bottom:870.644000pt;}
.y209{bottom:872.521333pt;}
.y301{bottom:874.629333pt;}
.y31a{bottom:875.824000pt;}
.y77{bottom:876.222667pt;}
.y1a1{bottom:878.613333pt;}
.y144{bottom:878.922667pt;}
.y238{bottom:880.251333pt;}
.y173{bottom:880.730667pt;}
.y356{bottom:885.986667pt;}
.y208{bottom:887.132000pt;}
.y172{bottom:888.036000pt;}
.y300{bottom:891.366667pt;}
.y319{bottom:892.561333pt;}
.y76{bottom:892.960000pt;}
.y143{bottom:893.534667pt;}
.y45{bottom:896.213333pt;}
.y1a0{bottom:896.546667pt;}
.y355{bottom:901.329333pt;}
.y207{bottom:901.744000pt;}
.y142{bottom:908.146667pt;}
.y75{bottom:909.697333pt;}
.y171{bottom:909.954667pt;}
.y2ff{bottom:912.088000pt;}
.y318{bottom:913.284000pt;}
.y206{bottom:916.356000pt;}
.y354{bottom:916.670667pt;}
.y170{bottom:917.260000pt;}
.y44{bottom:921.320000pt;}
.y141{bottom:922.758667pt;}
.y74{bottom:926.434667pt;}
.y237{bottom:928.091453pt;}
.y2fe{bottom:930.021333pt;}
.y205{bottom:930.968000pt;}
.y353{bottom:932.013333pt;}
.y236{bottom:936.651333pt;}
.y140{bottom:937.370667pt;}
.y73{bottom:943.172000pt;}
.y16f{bottom:945.580000pt;}
.y43{bottom:946.425333pt;}
.y352{bottom:947.356000pt;}
.y13f{bottom:951.982667pt;}
.y204{bottom:959.288000pt;}
.y72{bottom:959.909333pt;}
.y351{bottom:962.698667pt;}
.y13e{bottom:966.594667pt;}
.y42{bottom:971.530667pt;}
.y71{bottom:976.646667pt;}
.y350{bottom:978.041333pt;}
.y70{bottom:993.384000pt;}
.y13d{bottom:994.700000pt;}
.y40{bottom:1010.186667pt;}
.y6f{bottom:1046.810667pt;}
.h17{height:18.682573pt;}
.h10{height:23.209028pt;}
.h1c{height:24.527344pt;}
.h3c{height:25.995937pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h36{height:27.330469pt;}
.h22{height:27.961172pt;}
.h21{height:28.204313pt;}
.h7{height:28.560000pt;}
.h16{height:29.397999pt;}
.h3d{height:29.550937pt;}
.h11{height:30.945242pt;}
.h2d{height:31.067969pt;}
.h15{height:31.157778pt;}
.h2c{height:31.338125pt;}
.h25{height:31.535156pt;}
.h24{height:31.809375pt;}
.h1a{height:32.621367pt;}
.h37{height:32.703125pt;}
.h19{height:32.905031pt;}
.h45{height:33.517969pt;}
.h27{height:34.574438pt;}
.h44{height:34.615969pt;}
.h12{height:34.813542pt;}
.h32{height:35.039062pt;}
.h28{height:35.052646pt;}
.h23{height:35.109141pt;}
.h31{height:35.343750pt;}
.h47{height:35.414437pt;}
.h46{height:36.791016pt;}
.h1d{height:37.110937pt;}
.h41{height:37.242188pt;}
.h13{height:38.415786pt;}
.h2f{height:38.462187pt;}
.h14{height:38.681455pt;}
.hd{height:38.947124pt;}
.h30{height:39.010156pt;}
.h2e{height:39.349375pt;}
.h42{height:40.304688pt;}
.h1f{height:40.385297pt;}
.h6{height:40.800000pt;}
.h3b{height:40.878906pt;}
.h1b{height:40.960664pt;}
.h1e{height:41.316844pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.486756pt;}
.h2{height:48.960000pt;}
.h26{height:51.344666pt;}
.h34{height:52.640662pt;}
.h35{height:52.957463pt;}
.h5{height:57.120000pt;}
.h3f{height:57.995906pt;}
.h38{height:63.795772pt;}
.h39{height:63.801105pt;}
.h29{height:64.034876pt;}
.h2a{height:64.040209pt;}
.h33{height:67.983750pt;}
.he{height:69.148877pt;}
.hc{height:77.447343pt;}
.h4{height:105.826671pt;}
.h2b{height:172.450667pt;}
.h3e{height:207.358667pt;}
.h3a{height:238.078933pt;}
.h43{height:376.388400pt;}
.h20{height:432.312000pt;}
.h18{height:447.202000pt;}
.h40{height:487.329333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w5{width:343.344400pt;}
.w8{width:373.525333pt;}
.w9{width:375.621333pt;}
.wb{width:388.956000pt;}
.w7{width:525.030667pt;}
.w2{width:566.928019pt;}
.w6{width:571.808760pt;}
.wa{width:700.274400pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x15{left:-181.753600pt;}
.x24{left:-169.832000pt;}
.x4f{left:-152.220000pt;}
.x1b{left:-27.804840pt;}
.x0{left:0.000000pt;}
.x4a{left:2.618400pt;}
.x25{left:4.008000pt;}
.x3f{left:17.928000pt;}
.x19{left:30.514301pt;}
.x26{left:32.328528pt;}
.x2f{left:36.248000pt;}
.x44{left:38.945931pt;}
.x2d{left:43.047904pt;}
.x7{left:44.298667pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x45{left:58.065603pt;}
.x51{left:61.044000pt;}
.x30{left:71.688000pt;}
.x5a{left:76.309333pt;}
.x31{left:88.648160pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3e{left:98.968000pt;}
.x2e{left:103.527544pt;}
.x2b{left:106.168000pt;}
.x1a{left:110.759640pt;}
.x1c{left:128.651160pt;}
.x46{left:143.585115pt;}
.x1e{left:154.139076pt;}
.x4c{left:176.458400pt;}
.x40{left:179.688000pt;}
.x4{left:180.874667pt;}
.x2c{left:190.247944pt;}
.x4e{left:204.778400pt;}
.x47{left:219.904683pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x20{left:229.828000pt;}
.x9{left:239.541333pt;}
.x43{left:242.145915pt;}
.xb{left:250.204000pt;}
.x56{left:254.254667pt;}
.xc{left:256.556000pt;}
.x58{left:258.297333pt;}
.x23{left:261.350667pt;}
.x49{left:273.174667pt;}
.x21{left:276.172000pt;}
.x59{left:284.864000pt;}
.x48{left:286.784691pt;}
.x37{left:288.568000pt;}
.x34{left:295.288384pt;}
.x35{left:302.328040pt;}
.x38{left:304.648000pt;}
.x39{left:306.488160pt;}
.x28{left:314.808000pt;}
.xd{left:320.354667pt;}
.x41{left:328.728216pt;}
.x18{left:343.749773pt;}
.x36{left:348.888424pt;}
.x32{left:361.048000pt;}
.x57{left:365.237333pt;}
.x3d{left:370.007872pt;}
.x42{left:371.346667pt;}
.x50{left:387.634057pt;}
.x22{left:389.589333pt;}
.x3{left:404.408000pt;}
.x14{left:412.809333pt;}
.x12{left:418.600000pt;}
.x29{left:423.368400pt;}
.x13{left:424.649333pt;}
.x2a{left:431.448000pt;}
.x1f{left:444.653333pt;}
.x33{left:454.648000pt;}
.x16{left:480.250400pt;}
.x17{left:484.366400pt;}
.x3a{left:518.277333pt;}
.x27{left:522.645872pt;}
.x4d{left:530.138400pt;}
.x54{left:568.942667pt;}
.x1d{left:571.162046pt;}
.xe{left:636.633333pt;}
.x3b{left:637.754667pt;}
.x52{left:642.270667pt;}
.x3c{left:645.525333pt;}
.x55{left:683.113333pt;}
.x4b{left:700.298267pt;}
.x10{left:712.874667pt;}
.x11{left:722.761333pt;}
.x53{left:740.436000pt;}
.xf{left:743.977333pt;}
}




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