
    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_667367bb6b7d21f0b3d1ed39.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_c8840cf40a51625ffd9ee897.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_ae99ccea6f5b255f259278e6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_929308c4837a23b73879673f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;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_d60886849f2b204c0c5ea10a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;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_7fd390e011c7a629ff8ea751.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_b7200c164e474476ac034ef2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_39d13aa89f69ebbb6cf2e32e.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_8c90061fc263eacf40be9d5a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_151de0ef5ce3d7c1ed21c13b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4a3cc788fa23cd358699fa1f.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_75ebdda16978c1db7cc0882a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2b6cd9b22144d7db0f912eed.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b7200c164e474476ac034ef2.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_3cfbbcf0e75eeed84c3c86bd.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a520a62d4c1887f1b972d236.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_73e313e2561fd2e343a99103.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_0af39f0dd69b8fad607f8a07.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_d1af881be94cca485b7c9c83.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_73e313e2561fd2e343a99103.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_0af39f0dd69b8fad607f8a07.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_d1af881be94cca485b7c9c83.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_eaab60f0db1ce4b152974797.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_368470bf4cad5cbbdc753781.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5b0ba750f554f4fc53c7d16b.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_c2795e0d8618956acc6167af.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_823651549c37914125ce4a8d.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_ae32bbf0c31c726bbe42aacb.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_1ca54e3ebef18c0676680b5c.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_e5fca3ee2f131b1dbe716507.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_3b66e3e4d46cf1f03dc549c4.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;}
@font-face{font-family:ff25;src:url('chunks/assets/font_b0c0a245183d8ce9ebf4b4d3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.m28{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);}
.m27{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);}
.m18{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);}
.me{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);}
.m2b{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);}
.m20{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);}
.m26{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);}
.m16{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);}
.m17{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);}
.mc{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);}
.m21{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);}
.m2a{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);}
.m7{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);}
.m19{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);}
.m24{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);}
.m1c{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);}
.m1d{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);}
.m25{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);}
.m12{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);}
.m14{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m29{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);}
.m8{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);}
.m1a{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);}
.m2c{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);}
.m1e{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);}
.mb{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);}
.m10{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);}
.m22{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);}
.m6{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);}
.m1b{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);}
.m23{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.md{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);}
.m5{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);}
.m15{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);}
.m11{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);}
.m1f{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);}
.m3{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);}
.ma{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.994000px;}
.v1{vertical-align:32.874000px;}
.ls42{letter-spacing:-0.715428px;}
.ls43{letter-spacing:-0.667332px;}
.ls44{letter-spacing:-0.252504px;}
.ls3b{letter-spacing:-0.228456px;}
.ls23{letter-spacing:-0.186372px;}
.ls71{letter-spacing:-0.173747px;}
.ls9c{letter-spacing:-0.146092px;}
.ls22{letter-spacing:-0.132264px;}
.ls51{letter-spacing:-0.126252px;}
.ls41{letter-spacing:-0.120240px;}
.ls50{letter-spacing:-0.114228px;}
.ls99{letter-spacing:-0.113627px;}
.ls7a{letter-spacing:-0.112424px;}
.ls3f{letter-spacing:-0.108216px;}
.ls98{letter-spacing:-0.102805px;}
.ls1f{letter-spacing:-0.102204px;}
.ls24{letter-spacing:-0.096192px;}
.ls3e{letter-spacing:-0.090180px;}
.ls9a{letter-spacing:-0.086573px;}
.ls16{letter-spacing:-0.086184px;}
.ls40{letter-spacing:-0.084168px;}
.ls1d{letter-spacing:-0.078156px;}
.ls8e{letter-spacing:-0.077566px;}
.ls6f{letter-spacing:-0.073256px;}
.ls25{letter-spacing:-0.072144px;}
.ls74{letter-spacing:-0.071543px;}
.ls97{letter-spacing:-0.070340px;}
.ls78{letter-spacing:-0.066433px;}
.ls19{letter-spacing:-0.066132px;}
.ls73{letter-spacing:-0.061322px;}
.ls3d{letter-spacing:-0.060120px;}
.ls95{letter-spacing:-0.059519px;}
.ls7b{letter-spacing:-0.056212px;}
.ls1e{letter-spacing:-0.054108px;}
.ls54{letter-spacing:-0.054000px;}
.ls7d{letter-spacing:-0.051102px;}
.ls20{letter-spacing:-0.048096px;}
.ls7e{letter-spacing:-0.045992px;}
.ls94{letter-spacing:-0.043286px;}
.ls5b{letter-spacing:-0.042084px;}
.ls90{letter-spacing:-0.037876px;}
.ls21{letter-spacing:-0.036072px;}
.ls7c{letter-spacing:-0.035771px;}
.ls8f{letter-spacing:-0.032465px;}
.ls53{letter-spacing:-0.032400px;}
.ls72{letter-spacing:-0.030661px;}
.ls1c{letter-spacing:-0.030060px;}
.ls9b{letter-spacing:-0.027054px;}
.ls55{letter-spacing:-0.027000px;}
.ls17{letter-spacing:-0.024048px;}
.ls92{letter-spacing:-0.021643px;}
.ls77{letter-spacing:-0.020441px;}
.ls1a{letter-spacing:-0.018036px;}
.ls9d{letter-spacing:-0.016232px;}
.ls70{letter-spacing:-0.015331px;}
.ls1b{letter-spacing:-0.012024px;}
.ls93{letter-spacing:-0.010822px;}
.ls79{letter-spacing:-0.010220px;}
.ls18{letter-spacing:-0.006012px;}
.ls91{letter-spacing:-0.005411px;}
.ls76{letter-spacing:-0.005110px;}
.ls96{letter-spacing:-0.004860px;}
.ls0{letter-spacing:0.000000px;}
.ls80{letter-spacing:0.000099px;}
.ls15{letter-spacing:0.000273px;}
.lsa6{letter-spacing:0.000566px;}
.ls4f{letter-spacing:0.000649px;}
.lsa3{letter-spacing:0.000745px;}
.lsb4{letter-spacing:0.000800px;}
.ls28{letter-spacing:0.001331px;}
.ls27{letter-spacing:0.001518px;}
.lsa5{letter-spacing:0.001837px;}
.ls6{letter-spacing:0.002224px;}
.lsb5{letter-spacing:0.002338px;}
.ls58{letter-spacing:0.002870px;}
.lsa1{letter-spacing:0.002940px;}
.ls5c{letter-spacing:0.003178px;}
.lsa2{letter-spacing:0.003226px;}
.lsa0{letter-spacing:0.003314px;}
.ls7f{letter-spacing:0.003343px;}
.ls3{letter-spacing:0.003494px;}
.ls57{letter-spacing:0.003859px;}
.lsa4{letter-spacing:0.004435px;}
.lsaa{letter-spacing:0.004800px;}
.ls6a{letter-spacing:0.005110px;}
.ls59{letter-spacing:0.005400px;}
.ls8a{letter-spacing:0.005411px;}
.lsac{letter-spacing:0.005862px;}
.lsa{letter-spacing:0.006012px;}
.ls68{letter-spacing:0.010220px;}
.ls4e{letter-spacing:0.010800px;}
.ls88{letter-spacing:0.010822px;}
.lsf{letter-spacing:0.012024px;}
.ls61{letter-spacing:0.013770px;}
.ls85{letter-spacing:0.014580px;}
.lse{letter-spacing:0.016200px;}
.ls12{letter-spacing:0.018036px;}
.ls64{letter-spacing:0.020441px;}
.ls4d{letter-spacing:0.021600px;}
.ls8b{letter-spacing:0.021643px;}
.ls62{letter-spacing:0.022950px;}
.ls13{letter-spacing:0.024048px;}
.lsd{letter-spacing:0.027000px;}
.ls6c{letter-spacing:0.027540px;}
.ls87{letter-spacing:0.029160px;}
.ls2f{letter-spacing:0.030060px;}
.ls69{letter-spacing:0.030661px;}
.ls5f{letter-spacing:0.032130px;}
.lsc{letter-spacing:0.032400px;}
.ls65{letter-spacing:0.035771px;}
.ls29{letter-spacing:0.036072px;}
.ls4a{letter-spacing:0.037800px;}
.ls82{letter-spacing:0.037876px;}
.lsb{letter-spacing:0.042084px;}
.ls4c{letter-spacing:0.043200px;}
.ls84{letter-spacing:0.043286px;}
.ls86{letter-spacing:0.043740px;}
.ls60{letter-spacing:0.045900px;}
.ls6b{letter-spacing:0.045992px;}
.ls9{letter-spacing:0.048096px;}
.ls47{letter-spacing:0.048600px;}
.ls83{letter-spacing:0.048697px;}
.ls66{letter-spacing:0.051102px;}
.ls30{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.054108px;}
.ls48{letter-spacing:0.059400px;}
.ls89{letter-spacing:0.059519px;}
.ls63{letter-spacing:0.059670px;}
.ls2e{letter-spacing:0.060120px;}
.ls49{letter-spacing:0.064800px;}
.ls8d{letter-spacing:0.064930px;}
.ls46{letter-spacing:0.066132px;}
.ls8c{letter-spacing:0.070340px;}
.ls11{letter-spacing:0.072144px;}
.ls14{letter-spacing:0.078156px;}
.ls4b{letter-spacing:0.081000px;}
.ls67{letter-spacing:0.081763px;}
.ls2c{letter-spacing:0.096192px;}
.ls2a{letter-spacing:0.102204px;}
.ls6d{letter-spacing:0.127755px;}
.ls5e{letter-spacing:0.146513px;}
.ls2b{letter-spacing:0.150300px;}
.ls81{letter-spacing:0.155131px;}
.ls5d{letter-spacing:0.162792px;}
.ls8{letter-spacing:0.172368px;}
.ls7{letter-spacing:0.191520px;}
.lsae{letter-spacing:0.524565px;}
.lsb1{letter-spacing:0.526262px;}
.lsb0{letter-spacing:0.532191px;}
.lsa8{letter-spacing:0.537859px;}
.ls5{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls52{letter-spacing:2.975940px;}
.ls3c{letter-spacing:6.937848px;}
.ls2d{letter-spacing:9.102168px;}
.ls4{letter-spacing:11.960850px;}
.lsab{letter-spacing:13.445510px;}
.lsa7{letter-spacing:13.448400px;}
.ls56{letter-spacing:13.448870px;}
.lsb2{letter-spacing:13.454400px;}
.lsa9{letter-spacing:13.983859px;}
.ls9f{letter-spacing:14.585246px;}
.ls26{letter-spacing:14.769755px;}
.ls45{letter-spacing:15.063451px;}
.ls75{letter-spacing:15.693424px;}
.lsb6{letter-spacing:15.797459px;}
.ls9e{letter-spacing:16.737168px;}
.lsb3{letter-spacing:17.220988px;}
.ls5a{letter-spacing:18.171782px;}
.lsad{letter-spacing:18.309224px;}
.lsaf{letter-spacing:28.089271px;}
.ls1{letter-spacing:32.009510px;}
.ls6e{letter-spacing:77.015824px;}
.ls38{letter-spacing:230.903731px;}
.ls37{letter-spacing:232.467821px;}
.ls36{letter-spacing:238.330090px;}
.ls3a{letter-spacing:264.157133px;}
.ls33{letter-spacing:281.992934px;}
.ls35{letter-spacing:284.625178px;}
.ls39{letter-spacing:300.145939px;}
.ls34{letter-spacing:336.216038px;}
.ls31{letter-spacing:339.876845px;}
.ls32{letter-spacing:344.367178px;}
.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;}
}
.ws24{word-spacing:-17.394700px;}
.wsfc{word-spacing:-15.655334px;}
.ws76{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.915795px;}
.ws89{word-spacing:-13.449600px;}
.ws23{word-spacing:-12.161520px;}
.ws1f{word-spacing:-11.955150px;}
.ws1a2{word-spacing:-10.945368px;}
.ws152{word-spacing:-10.337292px;}
.ws1ee{word-spacing:-5.439580px;}
.ws82{word-spacing:-5.140702px;}
.ws18{word-spacing:-5.080926px;}
.ws111{word-spacing:-4.961375px;}
.ws8e{word-spacing:-4.841824px;}
.ws87{word-spacing:-4.722272px;}
.wsd4{word-spacing:-4.662497px;}
.ws19d{word-spacing:-4.483170px;}
.ws1f8{word-spacing:-4.363619px;}
.ws1ef{word-spacing:-4.184292px;}
.ws207{word-spacing:-4.124516px;}
.ws8{word-spacing:-3.945190px;}
.wsd1{word-spacing:-3.885414px;}
.ws57{word-spacing:-3.871728px;}
.ws1dd{word-spacing:-3.825638px;}
.wsfe{word-spacing:-3.765863px;}
.ws189{word-spacing:-3.407209px;}
.ws58{word-spacing:-3.372732px;}
.ws195{word-spacing:-3.347434px;}
.wsfd{word-spacing:-3.287658px;}
.ws11a{word-spacing:-3.168324px;}
.ws18c{word-spacing:-3.108331px;}
.ws20e{word-spacing:-3.066509px;}
.ws20f{word-spacing:-3.012710px;}
.ws1c7{word-spacing:-2.883956px;}
.ws1c4{word-spacing:-2.878546px;}
.ws81{word-spacing:-2.869229px;}
.wse2{word-spacing:-2.843676px;}
.ws1c8{word-spacing:-2.835259px;}
.ws1c5{word-spacing:-2.829848px;}
.ws14b{word-spacing:-2.809453px;}
.wsaf{word-spacing:-2.807604px;}
.ws96{word-spacing:-2.765520px;}
.wsa9{word-spacing:-2.753496px;}
.ws1c6{word-spacing:-2.743276px;}
.ws99{word-spacing:-2.735460px;}
.ws97{word-spacing:-2.705400px;}
.wsa8{word-spacing:-2.675340px;}
.wsb0{word-spacing:-2.663316px;}
.wse3{word-spacing:-2.657304px;}
.ws74{word-spacing:-2.630126px;}
.ws1a{word-spacing:-2.570351px;}
.ws98{word-spacing:-2.555100px;}
.ws116{word-spacing:-2.476944px;}
.ws20d{word-spacing:-2.474726px;}
.ws1df{word-spacing:-2.450800px;}
.ws6f{word-spacing:-2.428848px;}
.ws115{word-spacing:-2.404800px;}
.ws117{word-spacing:-2.398788px;}
.ws193{word-spacing:-2.391024px;}
.ws70{word-spacing:-2.350692px;}
.ws166{word-spacing:-2.335361px;}
.ws167{word-spacing:-2.304700px;}
.ws168{word-spacing:-2.294480px;}
.ws1bb{word-spacing:-2.229250px;}
.ws7d{word-spacing:-2.211697px;}
.ws1bc{word-spacing:-2.137266px;}
.wsfb{word-spacing:-2.134260px;}
.ws192{word-spacing:-2.092146px;}
.wscb{word-spacing:-2.074140px;}
.wsca{word-spacing:-2.056104px;}
.ws22e{word-spacing:-2.044339px;}
.ws7e{word-spacing:-2.032370px;}
.ws199{word-spacing:-1.972595px;}
.ws3{word-spacing:-1.908367px;}
.ws1da{word-spacing:-1.904602px;}
.ws34{word-spacing:-1.853044px;}
.ws1d9{word-spacing:-1.839672px;}
.ws9{word-spacing:-1.793268px;}
.wsa1{word-spacing:-1.755504px;}
.ws33{word-spacing:-1.733492px;}
.ws118{word-spacing:-1.731456px;}
.ws38{word-spacing:-1.713420px;}
.wsab{word-spacing:-1.707408px;}
.ws39{word-spacing:-1.683360px;}
.ws1f7{word-spacing:-1.673717px;}
.wsa0{word-spacing:-1.635264px;}
.ws102{word-spacing:-1.613941px;}
.ws151{word-spacing:-1.554166px;}
.ws1b5{word-spacing:-1.496880px;}
.ws1b7{word-spacing:-1.467720px;}
.ws1b6{word-spacing:-1.448280px;}
.ws158{word-spacing:-1.434614px;}
.ws9f{word-spacing:-1.418832px;}
.ws9e{word-spacing:-1.394784px;}
.ws1e1{word-spacing:-1.374839px;}
.wsd7{word-spacing:-1.346688px;}
.wsd8{word-spacing:-1.328652px;}
.ws2{word-spacing:-1.322630px;}
.ws1e3{word-spacing:-1.315063px;}
.ws8f{word-spacing:-1.255288px;}
.wse4{word-spacing:-1.250496px;}
.ws132{word-spacing:-1.244484px;}
.ws19{word-spacing:-1.195512px;}
.ws188{word-spacing:-1.135736px;}
.ws1fe{word-spacing:-1.075961px;}
.ws134{word-spacing:-1.046088px;}
.ws63{word-spacing:-1.028052px;}
.wsa{word-spacing:-1.016185px;}
.wsfa{word-spacing:-1.010016px;}
.ws1e2{word-spacing:-0.956410px;}
.ws71{word-spacing:-0.955908px;}
.ws1d4{word-spacing:-0.936068px;}
.wsa6{word-spacing:-0.931860px;}
.ws133{word-spacing:-0.925848px;}
.ws73{word-spacing:-0.896634px;}
.ws62{word-spacing:-0.889776px;}
.ws1d5{word-spacing:-0.865728px;}
.ws226{word-spacing:-0.860774px;}
.ws1f2{word-spacing:-0.836858px;}
.ws16e{word-spacing:-0.822742px;}
.ws1eb{word-spacing:-0.806976px;}
.ws180{word-spacing:-0.786971px;}
.ws1f9{word-spacing:-0.777083px;}
.wscf{word-spacing:-0.717307px;}
.ws114{word-spacing:-0.657532px;}
.ws12d{word-spacing:-0.649296px;}
.wsbd{word-spacing:-0.613224px;}
.wsdf{word-spacing:-0.607212px;}
.ws1e4{word-spacing:-0.597756px;}
.wsde{word-spacing:-0.595188px;}
.wsed{word-spacing:-0.594000px;}
.wsec{word-spacing:-0.583200px;}
.ws181{word-spacing:-0.567232px;}
.ws1ba{word-spacing:-0.551902px;}
.ws1a8{word-spacing:-0.530258px;}
.wsf{word-spacing:-0.478205px;}
.ws1a9{word-spacing:-0.454507px;}
.ws194{word-spacing:-0.418429px;}
.ws20c{word-spacing:-0.376589px;}
.ws112{word-spacing:-0.358654px;}
.ws50{word-spacing:-0.336672px;}
.wsbf{word-spacing:-0.318636px;}
.wsbe{word-spacing:-0.300600px;}
.ws6{word-spacing:-0.298878px;}
.ws21f{word-spacing:-0.268992px;}
.ws137{word-spacing:-0.264528px;}
.ws36{word-spacing:-0.258552px;}
.ws1b9{word-spacing:-0.248897px;}
.ws25{word-spacing:-0.239102px;}
.ws139{word-spacing:-0.234468px;}
.ws1a7{word-spacing:-0.232697px;}
.ws15a{word-spacing:-0.219769px;}
.ws21c{word-spacing:-0.215194px;}
.wsf7{word-spacing:-0.194400px;}
.ws17{word-spacing:-0.179327px;}
.ws217{word-spacing:-0.161395px;}
.wsc{word-spacing:-0.119551px;}
.ws216{word-spacing:-0.107597px;}
.ws35{word-spacing:-0.086184px;}
.ws1a6{word-spacing:-0.077566px;}
.ws159{word-spacing:-0.073256px;}
.ws13{word-spacing:-0.059776px;}
.ws1a3{word-spacing:-0.053798px;}
.ws0{word-spacing:0.000000px;}
.ws144{word-spacing:0.024048px;}
.wse7{word-spacing:0.030060px;}
.ws1b3{word-spacing:0.032465px;}
.ws182{word-spacing:0.035771px;}
.ws11b{word-spacing:0.042084px;}
.ws127{word-spacing:0.048096px;}
.ws173{word-spacing:0.051102px;}
.ws14d{word-spacing:0.053798px;}
.ws3c{word-spacing:0.054108px;}
.wsd{word-spacing:0.059776px;}
.ws91{word-spacing:0.060120px;}
.ws138{word-spacing:0.072144px;}
.ws185{word-spacing:0.076653px;}
.ws186{word-spacing:0.081763px;}
.wsb3{word-spacing:0.084168px;}
.ws174{word-spacing:0.086873px;}
.wsba{word-spacing:0.090180px;}
.ws183{word-spacing:0.091984px;}
.ws72{word-spacing:0.096192px;}
.ws15f{word-spacing:0.096390px;}
.wsb2{word-spacing:0.102204px;}
.wsf3{word-spacing:0.102600px;}
.ws1d6{word-spacing:0.102805px;}
.ws22f{word-spacing:0.107597px;}
.ws1c0{word-spacing:0.108216px;}
.ws15c{word-spacing:0.110160px;}
.wsef{word-spacing:0.118800px;}
.ws2c{word-spacing:0.119551px;}
.wseb{word-spacing:0.120240px;}
.wsf0{word-spacing:0.124200px;}
.ws1aa{word-spacing:0.124448px;}
.ws187{word-spacing:0.127755px;}
.ws184{word-spacing:0.128520px;}
.wsc3{word-spacing:0.129600px;}
.ws1b8{word-spacing:0.136080px;}
.wsf4{word-spacing:0.140400px;}
.ws15d{word-spacing:0.142290px;}
.ws6c{word-spacing:0.144288px;}
.wsf1{word-spacing:0.145800px;}
.ws1b2{word-spacing:0.146092px;}
.ws3e{word-spacing:0.151200px;}
.ws3f{word-spacing:0.156600px;}
.ws1a5{word-spacing:0.161395px;}
.ws3d{word-spacing:0.162324px;}
.ws40{word-spacing:0.167400px;}
.wsc2{word-spacing:0.168336px;}
.wsf8{word-spacing:0.172800px;}
.wsea{word-spacing:0.174348px;}
.ws14a{word-spacing:0.178200px;}
.ws14{word-spacing:0.179327px;}
.wsf6{word-spacing:0.210600px;}
.ws1a4{word-spacing:0.215194px;}
.wsee{word-spacing:0.216000px;}
.wsf2{word-spacing:0.237600px;}
.wse{word-spacing:0.239102px;}
.ws10a{word-spacing:0.268992px;}
.ws1c{word-spacing:0.298878px;}
.ws21d{word-spacing:0.322790px;}
.ws85{word-spacing:0.358654px;}
.ws1ad{word-spacing:0.373345px;}
.ws20b{word-spacing:0.376589px;}
.wsbc{word-spacing:0.378756px;}
.ws12f{word-spacing:0.384768px;}
.wsbb{word-spacing:0.414828px;}
.ws10c{word-spacing:0.418429px;}
.ws12e{word-spacing:0.474948px;}
.ws1a1{word-spacing:0.478205px;}
.ws1be{word-spacing:0.514026px;}
.ws153{word-spacing:0.537980px;}
.ws109{word-spacing:0.591782px;}
.ws198{word-spacing:0.597756px;}
.ws77{word-spacing:0.657532px;}
.ws1bf{word-spacing:0.676350px;}
.ws7c{word-spacing:0.717307px;}
.ws65{word-spacing:0.739476px;}
.ws12c{word-spacing:0.757512px;}
.ws64{word-spacing:0.775548px;}
.ws7b{word-spacing:0.777083px;}
.ws66{word-spacing:0.793584px;}
.ws79{word-spacing:0.836858px;}
.ws214{word-spacing:0.860774px;}
.ws7a{word-spacing:0.896634px;}
.ws7{word-spacing:0.956410px;}
.ws17c{word-spacing:0.965828px;}
.ws19f{word-spacing:1.016185px;}
.ws154{word-spacing:1.075961px;}
.ws1b4{word-spacing:1.122660px;}
.ws225{word-spacing:1.129766px;}
.ws22{word-spacing:1.135736px;}
.wsf9{word-spacing:1.148292px;}
.ws53{word-spacing:1.160316px;}
.ws61{word-spacing:1.166328px;}
.ws227{word-spacing:1.183565px;}
.ws60{word-spacing:1.184364px;}
.ws196{word-spacing:1.195512px;}
.ws54{word-spacing:1.214424px;}
.ws29{word-spacing:1.255288px;}
.ws228{word-spacing:1.291162px;}
.ws86{word-spacing:1.315063px;}
.ws17d{word-spacing:1.343983px;}
.ws1fa{word-spacing:1.434614px;}
.ws1de{word-spacing:1.494390px;}
.ws11d{word-spacing:1.509012px;}
.ws11c{word-spacing:1.545084px;}
.ws5e{word-spacing:1.551096px;}
.ws2a{word-spacing:1.554166px;}
.ws11e{word-spacing:1.569132px;}
.ws16{word-spacing:1.613941px;}
.ws10b{word-spacing:1.613952px;}
.ws160{word-spacing:1.625044px;}
.ws191{word-spacing:1.673717px;}
.ws1ac{word-spacing:1.715224px;}
.ws5f{word-spacing:1.725444px;}
.ws1ab{word-spacing:1.726045px;}
.ws1a0{word-spacing:1.793268px;}
.ws230{word-spacing:1.829146px;}
.ws113{word-spacing:1.853044px;}
.ws12a{word-spacing:1.869732px;}
.ws122{word-spacing:1.917828px;}
.ws123{word-spacing:1.935864px;}
.wsd5{word-spacing:1.972595px;}
.ws12b{word-spacing:1.995984px;}
.ws84{word-spacing:2.092146px;}
.ws101{word-spacing:2.151922px;}
.wsa3{word-spacing:2.194380px;}
.ws1f1{word-spacing:2.211697px;}
.ws3a{word-spacing:2.248488px;}
.ws3b{word-spacing:2.260512px;}
.ws90{word-spacing:2.278548px;}
.ws1d1{word-spacing:2.283358px;}
.ws1ae{word-spacing:2.305001px;}
.ws19e{word-spacing:2.331248px;}
.ws1cf{word-spacing:2.332055px;}
.wsa4{word-spacing:2.344680px;}
.ws1d0{word-spacing:2.375341px;}
.ws156{word-spacing:2.391024px;}
.ws31{word-spacing:2.450800px;}
.ws1d3{word-spacing:2.499790px;}
.wsb{word-spacing:2.510575px;}
.ws80{word-spacing:2.570351px;}
.wsd9{word-spacing:2.573136px;}
.wsda{word-spacing:2.615220px;}
.ws43{word-spacing:2.627244px;}
.ws107{word-spacing:2.630126px;}
.ws41{word-spacing:2.633256px;}
.ws42{word-spacing:2.639268px;}
.ws44{word-spacing:2.645280px;}
.ws1f6{word-spacing:2.689902px;}
.ws1e0{word-spacing:2.749678px;}
.ws1d2{word-spacing:2.791973px;}
.ws172{word-spacing:2.805500px;}
.ws197{word-spacing:2.929004px;}
.wsb8{word-spacing:2.951892px;}
.ws211{word-spacing:2.958912px;}
.ws83{word-spacing:2.988780px;}
.wsb9{word-spacing:2.993976px;}
.wse9{word-spacing:3.006000px;}
.ws13b{word-spacing:3.012012px;}
.ws146{word-spacing:3.018600px;}
.ws145{word-spacing:3.029400px;}
.ws1b{word-spacing:3.048556px;}
.wsb1{word-spacing:3.060108px;}
.ws20a{word-spacing:3.120307px;}
.ws110{word-spacing:3.168107px;}
.ws2b{word-spacing:3.227882px;}
.ws19b{word-spacing:3.287658px;}
.ws13a{word-spacing:3.342672px;}
.ws13c{word-spacing:3.390768px;}
.ws105{word-spacing:3.407209px;}
.ws1f5{word-spacing:3.466985px;}
.ws1e8{word-spacing:3.586536px;}
.ws1fc{word-spacing:3.646312px;}
.wsae{word-spacing:3.697380px;}
.ws163{word-spacing:3.704895px;}
.ws162{word-spacing:3.720226px;}
.wsad{word-spacing:3.721428px;}
.ws1f3{word-spacing:3.765863px;}
.ws219{word-spacing:3.819686px;}
.ws103{word-spacing:3.825638px;}
.ws14c{word-spacing:3.885414px;}
.ws130{word-spacing:3.985956px;}
.wsb6{word-spacing:4.003992px;}
.ws75{word-spacing:4.004965px;}
.ws5b{word-spacing:4.034052px;}
.wsb5{word-spacing:4.046076px;}
.wsb4{word-spacing:4.052088px;}
.ws4{word-spacing:4.064741px;}
.ws1f4{word-spacing:4.124516px;}
.ws2d{word-spacing:4.184292px;}
.ws7f{word-spacing:4.244068px;}
.ws1e5{word-spacing:4.303843px;}
.ws213{word-spacing:4.303872px;}
.ws1d{word-spacing:4.363619px;}
.ws131{word-spacing:4.388760px;}
.ws4a{word-spacing:4.406796px;}
.ws15{word-spacing:4.423394px;}
.ws10d{word-spacing:4.483170px;}
.ws19c{word-spacing:4.542946px;}
.ws1e7{word-spacing:4.722272px;}
.ws93{word-spacing:4.767516px;}
.wsff{word-spacing:4.782048px;}
.ws1e{word-spacing:4.782060px;}
.ws210{word-spacing:4.788058px;}
.ws92{word-spacing:4.833648px;}
.ws1ff{word-spacing:4.841824px;}
.ws21b{word-spacing:4.841856px;}
.wsd2{word-spacing:4.901599px;}
.ws1cc{word-spacing:4.902185px;}
.ws30{word-spacing:5.080926px;}
.ws4b{word-spacing:5.146272px;}
.ws147{word-spacing:5.167800px;}
.ws1e6{word-spacing:5.200477px;}
.ws149{word-spacing:5.205600px;}
.ws148{word-spacing:5.221800px;}
.ws177{word-spacing:5.263506px;}
.ws178{word-spacing:5.278837px;}
.ws212{word-spacing:5.374339px;}
.ws1{word-spacing:5.379840px;}
.ws22d{word-spacing:5.380080px;}
.ws220{word-spacing:5.382096px;}
.ws12{word-spacing:5.439580px;}
.wsa2{word-spacing:5.452884px;}
.ws4c{word-spacing:5.482944px;}
.ws218{word-spacing:5.487437px;}
.ws18d{word-spacing:5.499355px;}
.ws1fd{word-spacing:5.559131px;}
.ws1ed{word-spacing:5.738458px;}
.ws78{word-spacing:5.798233px;}
.wsa7{word-spacing:5.807592px;}
.ws10{word-spacing:5.971475px;}
.ws11{word-spacing:5.977560px;}
.ws22c{word-spacing:6.025421px;}
.ws106{word-spacing:6.037336px;}
.ws32{word-spacing:6.156887px;}
.ws179{word-spacing:6.173122px;}
.ws16c{word-spacing:6.193562px;}
.ws1f0{word-spacing:6.216662px;}
.ws22b{word-spacing:6.240614px;}
.ws16d{word-spacing:6.270215px;}
.ws18b{word-spacing:6.276438px;}
.wsd0{word-spacing:6.336214px;}
.ws19a{word-spacing:6.395989px;}
.ws136{word-spacing:6.523020px;}
.ws142{word-spacing:6.547068px;}
.wsce{word-spacing:6.565104px;}
.ws2f{word-spacing:6.575316px;}
.ws135{word-spacing:6.595164px;}
.ws18a{word-spacing:6.635092px;}
.wse1{word-spacing:6.691356px;}
.ws1fb{word-spacing:6.694867px;}
.ws21e{word-spacing:6.724800px;}
.ws170{word-spacing:6.781235px;}
.ws16f{word-spacing:6.827227px;}
.ws208{word-spacing:6.874194px;}
.ws9a{word-spacing:6.895764px;}
.ws119{word-spacing:6.901776px;}
.ws171{word-spacing:6.929431px;}
.ws27{word-spacing:6.933970px;}
.ws6e{word-spacing:6.943860px;}
.wsdc{word-spacing:6.961896px;}
.ws10e{word-spacing:6.993745px;}
.ws6d{word-spacing:7.040052px;}
.wsdd{word-spacing:7.046064px;}
.wsd3{word-spacing:7.053521px;}
.ws1d8{word-spacing:7.212596px;}
.ws4e{word-spacing:7.244460px;}
.ws1d7{word-spacing:7.304580px;}
.ws4d{word-spacing:7.310592px;}
.ws51{word-spacing:7.322616px;}
.ws52{word-spacing:7.346664px;}
.ws100{word-spacing:7.352399px;}
.ws18f{word-spacing:7.471950px;}
.ws1cb{word-spacing:7.856482px;}
.ws140{word-spacing:7.989948px;}
.ws141{word-spacing:8.026020px;}
.ws5{word-spacing:8.129482px;}
.ws1ca{word-spacing:8.191951px;}
.ws1c9{word-spacing:8.294756px;}
.ws104{word-spacing:8.308808px;}
.ws209{word-spacing:8.906564px;}
.ws1ce{word-spacing:8.944052px;}
.ws9c{word-spacing:9.126216px;}
.ws9b{word-spacing:9.138240px;}
.ws9d{word-spacing:9.162288px;}
.ws1cd{word-spacing:9.192949px;}
.ws202{word-spacing:9.205442px;}
.ws37{word-spacing:9.408780px;}
.ws229{word-spacing:9.629914px;}
.ws2e{word-spacing:9.683647px;}
.wsaa{word-spacing:9.757476px;}
.ws190{word-spacing:9.922750px;}
.ws1c2{word-spacing:10.080320px;}
.wsc0{word-spacing:10.148256px;}
.ws206{word-spacing:10.221628px;}
.ws1c3{word-spacing:10.248055px;}
.wsc1{word-spacing:10.430820px;}
.ws201{word-spacing:10.460730px;}
.ws1db{word-spacing:10.718795px;}
.ws1dc{word-spacing:10.805368px;}
.ws28{word-spacing:10.938935px;}
.wsd6{word-spacing:11.272500px;}
.ws18e{word-spacing:11.297588px;}
.ws231{word-spacing:11.297664px;}
.ws1c1{word-spacing:11.433020px;}
.ws68{word-spacing:11.633220px;}
.ws67{word-spacing:11.639232px;}
.ws56{word-spacing:11.993940px;}
.ws55{word-spacing:11.999952px;}
.ws1b1{word-spacing:12.033619px;}
.ws1bd{word-spacing:12.147246px;}
.ws1af{word-spacing:12.412375px;}
.ws1b0{word-spacing:12.444840px;}
.ws47{word-spacing:12.757464px;}
.ws48{word-spacing:12.805560px;}
.ws200{word-spacing:12.911530px;}
.ws120{word-spacing:13.442832px;}
.wsdb{word-spacing:13.527000px;}
.wse8{word-spacing:13.731408px;}
.ws11f{word-spacing:13.749444px;}
.ws10f{word-spacing:13.808164px;}
.ws222{word-spacing:14.095181px;}
.ws221{word-spacing:14.148979px;}
.ws108{word-spacing:14.286368px;}
.ws26{word-spacing:14.465695px;}
.ws22a{word-spacing:14.686963px;}
.ws165{word-spacing:14.788919px;}
.wsa5{word-spacing:14.813568px;}
.ws232{word-spacing:14.848358px;}
.ws13d{word-spacing:14.849640px;}
.wsc7{word-spacing:14.951844px;}
.wsc6{word-spacing:14.963868px;}
.ws17f{word-spacing:15.110861px;}
.ws17e{word-spacing:15.151743px;}
.wse6{word-spacing:15.228396px;}
.wse5{word-spacing:15.252444px;}
.ws164{word-spacing:15.253947px;}
.ws49{word-spacing:15.601140px;}
.ws215{word-spacing:15.709133px;}
.ws13e{word-spacing:15.901740px;}
.ws169{word-spacing:15.918273px;}
.ws13f{word-spacing:15.931800px;}
.ws17b{word-spacing:15.989816px;}
.ws17a{word-spacing:16.010257px;}
.ws16b{word-spacing:16.020477px;}
.ws125{word-spacing:16.244424px;}
.ws126{word-spacing:16.262460px;}
.ws121{word-spacing:16.304544px;}
.ws16a{word-spacing:16.311758px;}
.ws124{word-spacing:16.316568px;}
.ws6a{word-spacing:16.322580px;}
.wse0{word-spacing:16.629192px;}
.ws5d{word-spacing:16.665264px;}
.ws6b{word-spacing:16.683300px;}
.ws176{word-spacing:16.899431px;}
.ws175{word-spacing:16.976084px;}
.ws5c{word-spacing:17.001936px;}
.wsb7{word-spacing:17.320572px;}
.ws21a{word-spacing:17.323085px;}
.ws45{word-spacing:17.404740px;}
.ws46{word-spacing:17.458848px;}
.ws59{word-spacing:17.735400px;}
.ws5a{word-spacing:17.741412px;}
.wsc4{word-spacing:17.747424px;}
.wsc8{word-spacing:19.142208px;}
.wsc9{word-spacing:19.202328px;}
.ws8d{word-spacing:19.427070px;}
.wsc5{word-spacing:20.218356px;}
.ws4f{word-spacing:20.927772px;}
.wsac{word-spacing:21.787488px;}
.ws161{word-spacing:21.795003px;}
.wscd{word-spacing:22.785480px;}
.wscc{word-spacing:22.845600px;}
.ws157{word-spacing:23.073382px;}
.ws224{word-spacing:23.187110px;}
.ws69{word-spacing:24.204312px;}
.ws204{word-spacing:24.567772px;}
.ws203{word-spacing:27.974981px;}
.ws1ea{word-spacing:30.019507px;}
.ws223{word-spacing:30.180902px;}
.ws205{word-spacing:30.366005px;}
.ws1e9{word-spacing:30.934080px;}
.ws128{word-spacing:33.168204px;}
.ws129{word-spacing:33.258384px;}
.ws95{word-spacing:35.693244px;}
.ws94{word-spacing:35.741340px;}
.ws155{word-spacing:40.288754px;}
.ws143{word-spacing:46.148112px;}
.ws8a{word-spacing:212.115898px;}
.ws88{word-spacing:234.817747px;}
.ws150{word-spacing:263.881152px;}
.ws14f{word-spacing:277.330752px;}
.ws1ec{word-spacing:298.957709px;}
.wsf5{word-spacing:305.175600px;}
.ws21{word-spacing:376.109019px;}
.ws8b{word-spacing:549.773990px;}
.ws8c{word-spacing:559.672896px;}
.ws14e{word-spacing:665.780381px;}
.ws15e{word-spacing:974.842560px;}
.ws15b{word-spacing:1026.259740px;}
._5f{margin-left:-774.342180px;}
._63{margin-left:-722.608290px;}
._31{margin-left:-305.824546px;}
._83{margin-left:-19.937814px;}
._65{margin-left:-15.759857px;}
._66{margin-left:-14.717376px;}
._7{margin-left:-6.939994px;}
._6{margin-left:-5.003251px;}
._1{margin-left:-3.489596px;}
._9{margin-left:-2.412897px;}
._0{margin-left:-1.241054px;}
._2{width:1.431164px;}
._86{width:3.007978px;}
._44{width:4.042571px;}
._1a{width:8.738018px;}
._e{width:11.245453px;}
._10{width:12.664847px;}
._17{width:13.802140px;}
._82{width:14.841058px;}
._d{width:15.989598px;}
._16{width:17.022264px;}
._8{width:18.829440px;}
._a{width:20.733924px;}
._26{width:22.282066px;}
._18{width:23.731486px;}
._12{width:24.747098px;}
._15{width:26.526133px;}
._19{width:27.735878px;}
._c{width:28.931390px;}
._46{width:30.826310px;}
._69{width:32.936356px;}
._f{width:34.729624px;}
._84{width:36.844604px;}
._25{width:40.468081px;}
._14{width:41.962471px;}
._45{width:45.355447px;}
._b{width:46.607069px;}
._81{width:48.059582px;}
._7e{width:50.777128px;}
._80{width:53.066500px;}
._3{width:54.429084px;}
._89{width:58.433093px;}
._88{width:59.546798px;}
._87{width:61.599168px;}
._8a{width:64.500760px;}
._85{width:65.531555px;}
._67{width:67.127999px;}
._4{width:69.368492px;}
._1b{width:72.412646px;}
._5{width:84.310775px;}
._32{width:108.047654px;}
._7f{width:112.922132px;}
._2b{width:138.417254px;}
._2c{width:162.656909px;}
._40{width:175.105761px;}
._4b{width:194.849774px;}
._39{width:205.234061px;}
._3a{width:226.437466px;}
._21{width:227.801136px;}
._7c{width:230.633741px;}
._22{width:242.210515px;}
._1e{width:250.864027px;}
._61{width:252.252630px;}
._58{width:267.001459px;}
._1d{width:276.631373px;}
._33{width:280.739654px;}
._1f{width:285.563995px;}
._49{width:290.780352px;}
._30{width:298.461509px;}
._1c{width:301.217242px;}
._6e{width:312.730099px;}
._7b{width:329.872349px;}
._41{width:344.901542px;}
._56{width:354.415828px;}
._77{width:364.368532px;}
._3e{width:368.250048px;}
._3f{width:370.662470px;}
._70{width:371.893646px;}
._4e{width:375.719995px;}
._24{width:408.598848px;}
._78{width:410.198563px;}
._76{width:418.334333px;}
._23{width:462.351590px;}
._20{width:481.667194px;}
._54{width:490.202990px;}
._34{width:491.578200px;}
._6c{width:508.979117px;}
._35{width:512.102654px;}
._72{width:521.414093px;}
._7a{width:541.588493px;}
._42{width:545.504045px;}
._6f{width:551.756390px;}
._43{width:566.699184px;}
._48{width:578.805120px;}
._71{width:607.755230px;}
._6d{width:609.790608px;}
._6b{width:612.333389px;}
._7d{width:631.700813px;}
._28{width:640.483200px;}
._60{width:659.997854px;}
._62{width:663.378930px;}
._2a{width:672.667200px;}
._37{width:704.113459px;}
._53{width:715.456891px;}
._38{width:735.908314px;}
._55{width:737.944622px;}
._2d{width:743.709600px;}
._2f{width:753.558254px;}
._29{width:758.650454px;}
._47{width:760.870771px;}
._79{width:764.367667px;}
._52{width:795.947328px;}
._5b{width:798.575419px;}
._5c{width:800.358797px;}
._3b{width:805.900032px;}
._4c{width:811.656461px;}
._3d{width:815.798938px;}
._27{width:822.582000px;}
._36{width:848.508365px;}
._57{width:850.714099px;}
._2e{width:860.743800px;}
._75{width:869.382144px;}
._73{width:888.641971px;}
._64{width:900.348614px;}
._3c{width:926.569843px;}
._51{width:941.203008px;}
._74{width:974.450419px;}
._4d{width:1065.692506px;}
._5e{width:1077.528154px;}
._50{width:1112.927501px;}
._4f{width:1161.292262px;}
._5d{width:1165.058150px;}
._59{width:1217.887450px;}
._5a{width:1225.150963px;}
._4a{width:1283.683622px;}
._6a{width:1337.837521px;}
._68{width:1449.423583px;}
._11{width:1473.333883px;}
._13{width:1510.930903px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(95,159,35);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.962980px;}
.fs11{font-size:40.698000px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:43.092000px;}
.fs7{font-size:44.529120px;}
.fs12{font-size:45.900000px;}
.fsb{font-size:47.236800px;}
.fsd{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs18{font-size:48.600000px;}
.fs13{font-size:51.102000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs16{font-size:54.108000px;}
.fs5{font-size:55.661400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs14{font-size:61.200000px;}
.fs1{font-size:63.000000px;}
.fs17{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.y14c{bottom:-805.203627px;}
.y14b{bottom:-784.953708px;}
.y14a{bottom:-764.703789px;}
.y149{bottom:-744.544050px;}
.y148{bottom:-705.304950px;}
.y147{bottom:-687.035400px;}
.y146{bottom:-668.854950px;}
.y7e{bottom:-651.230301px;}
.y145{bottom:-650.585400px;}
.y144{bottom:-632.404950px;}
.y7d{bottom:-630.980382px;}
.y143{bottom:-614.224500px;}
.y7c{bottom:-610.820643px;}
.y142{bottom:-595.954950px;}
.y7b{bottom:-590.570724px;}
.y141{bottom:-577.774500px;}
.y7a{bottom:-570.320805px;}
.y140{bottom:-559.594050px;}
.y79{bottom:-550.070886px;}
.y13f{bottom:-541.324500px;}
.y78{bottom:-529.820967px;}
.y13e{bottom:-523.144050px;}
.y77{bottom:-509.571048px;}
.y13d{bottom:-504.874500px;}
.y76{bottom:-489.411309px;}
.y13c{bottom:-486.694050px;}
.y75{bottom:-469.161390px;}
.y13b{bottom:-468.514050px;}
.y2c0{bottom:-454.718016px;}
.y13a{bottom:-449.433600px;}
.y74{bottom:-448.911471px;}
.y2bf{bottom:-436.493089px;}
.y73{bottom:-428.661552px;}
.y139{bottom:-420.813600px;}
.y2be{bottom:-418.268162px;}
.y72{bottom:-408.411633px;}
.y138{bottom:-401.194050px;}
.y2bd{bottom:-400.124397px;}
.y71{bottom:-388.161714px;}
.y2bc{bottom:-381.899470px;}
.y70{bottom:-367.911795px;}
.y2bb{bottom:-363.674542px;}
.y137{bottom:-363.302556px;}
.y6f{bottom:-347.752056px;}
.y2ba{bottom:-345.449615px;}
.y136{bottom:-343.052637px;}
.y6e{bottom:-327.502137px;}
.y2b9{bottom:-327.224688px;}
.y135{bottom:-322.802718px;}
.y2b8{bottom:-308.999761px;}
.y6d{bottom:-307.252218px;}
.y134{bottom:-302.642979px;}
.y2b7{bottom:-290.774834px;}
.y6c{bottom:-287.002299px;}
.y133{bottom:-282.393060px;}
.y2b6{bottom:-272.631069px;}
.y6b{bottom:-266.752380px;}
.y132{bottom:-262.143141px;}
.y2b5{bottom:-254.406142px;}
.y6a{bottom:-246.502461px;}
.y131{bottom:-241.893222px;}
.y2b4{bottom:-236.181215px;}
.y69{bottom:-226.252542px;}
.y130{bottom:-221.643303px;}
.y2b3{bottom:-217.956288px;}
.y68{bottom:-206.092803px;}
.y12f{bottom:-201.393384px;}
.y2b2{bottom:-199.731361px;}
.y67{bottom:-185.842884px;}
.y2b1{bottom:-181.506433px;}
.y12e{bottom:-181.143465px;}
.yf4{bottom:-178.264884px;}
.y66{bottom:-165.592965px;}
.y2b0{bottom:-163.281506px;}
.y12d{bottom:-160.983726px;}
.yf3{bottom:-158.014965px;}
.y65{bottom:-145.343046px;}
.y2af{bottom:-145.137741px;}
.y12c{bottom:-140.733807px;}
.yf2{bottom:-137.765046px;}
.y2ae{bottom:-126.912814px;}
.y64{bottom:-125.093127px;}
.y12b{bottom:-120.483888px;}
.yf1{bottom:-117.515127px;}
.y2ad{bottom:-108.687887px;}
.y63{bottom:-104.843208px;}
.y12a{bottom:-100.233969px;}
.yf0{bottom:-97.265208px;}
.y2ac{bottom:-90.462960px;}
.y62{bottom:-84.593289px;}
.y24a{bottom:-81.915718px;}
.y129{bottom:-79.984050px;}
.yef{bottom:-77.105469px;}
.y1b8{bottom:-68.016600px;}
.y61{bottom:-64.433550px;}
.y249{bottom:-57.053318px;}
.yee{bottom:-56.855550px;}
.y2ab{bottom:-56.442690px;}
.y1b7{bottom:-48.576600px;}
.y128{bottom:-42.183900px;}
.y2aa{bottom:-38.946690px;}
.y1b6{bottom:-28.957050px;}
.y60{bottom:-26.543550px;}
.y248{bottom:-24.846818px;}
.y2a9{bottom:-21.289095px;}
.y1de{bottom:-19.069950px;}
.yed{bottom:-18.965550px;}
.y127{bottom:-5.644050px;}
.y247{bottom:-1.590817px;}
.y5f{bottom:-0.713550px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:0.370050px;}
.y31{bottom:3.425340px;}
.y2a8{bottom:3.820905px;}
.yec{bottom:5.428005px;}
.y1b5{bottom:5.872950px;}
.y25{bottom:12.664592px;}
.y30{bottom:14.151273px;}
.y1dc{bottom:19.989600px;}
.y24{bottom:26.023328px;}
.y1db{bottom:54.819600px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y26a{bottom:108.612000px;}
.y51{bottom:113.811000px;}
.yc8{bottom:116.218500px;}
.y1fe{bottom:119.743500px;}
.y317{bottom:119.863500px;}
.y9a{bottom:120.564000px;}
.y2f4{bottom:121.849500px;}
.y297{bottom:123.121500px;}
.y269{bottom:128.875500px;}
.y50{bottom:134.074500px;}
.yc7{bottom:136.482000px;}
.y22{bottom:139.264499px;}
.y1fd{bottom:140.007000px;}
.y316{bottom:140.128500px;}
.y99{bottom:140.827500px;}
.y2f3{bottom:142.113000px;}
.y296{bottom:143.386500px;}
.y194{bottom:145.653000px;}
.y268{bottom:149.139000px;}
.y2c3{bottom:152.241000px;}
.y4f{bottom:154.339500px;}
.yc6{bottom:156.745500px;}
.y33c{bottom:157.195500px;}
.y1fc{bottom:160.270500px;}
.y315{bottom:160.392000px;}
.y98{bottom:161.092500px;}
.y2f2{bottom:162.378000px;}
.y295{bottom:163.650000px;}
.y193{bottom:165.916500px;}
.y267{bottom:169.404000px;}
.y2c2{bottom:171.472500px;}
.y4e{bottom:174.603000px;}
.y33b{bottom:176.563500px;}
.yc5{bottom:177.010500px;}
.y1fb{bottom:180.535500px;}
.y314{bottom:180.657000px;}
.yeb{bottom:180.927303px;}
.y97{bottom:181.356000px;}
.y2f1{bottom:182.641500px;}
.y294{bottom:183.913500px;}
.y192{bottom:186.180000px;}
.y266{bottom:189.667500px;}
.y2c1{bottom:190.705500px;}
.y4d{bottom:194.868000px;}
.y164{bottom:195.340500px;}
.y33a{bottom:195.930000px;}
.y19{bottom:196.933500px;}
.yc4{bottom:197.274000px;}
.y1fa{bottom:200.799000px;}
.y313{bottom:200.920500px;}
.yea{bottom:201.177222px;}
.y96{bottom:201.621000px;}
.y2f0{bottom:202.906500px;}
.y293{bottom:204.178500px;}
.y119{bottom:204.523500px;}
.y191{bottom:206.445000px;}
.y22a{bottom:208.315500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y265{bottom:209.932500px;}
.y29e{bottom:213.135000px;}
.y4c{bottom:215.131500px;}
.y339{bottom:215.298000px;}
.y163{bottom:215.605500px;}
.yc3{bottom:217.539000px;}
.y1f9{bottom:221.064000px;}
.y312{bottom:221.184000px;}
.ye9{bottom:221.427141px;}
.y95{bottom:221.884500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y2ef{bottom:223.170000px;}
.y292{bottom:224.442000px;}
.y126{bottom:224.756031px;}
.y118{bottom:224.788500px;}
.y190{bottom:226.708500px;}
.y229{bottom:228.579000px;}
.y264{bottom:230.196000px;}
.y338{bottom:234.666000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y4b{bottom:235.395000px;}
.y162{bottom:235.869000px;}
.yc2{bottom:237.802500px;}
.y1f8{bottom:241.327500px;}
.y311{bottom:241.449000px;}
.ye8{bottom:241.586880px;}
.y94{bottom:242.148000px;}
.y2ee{bottom:243.433500px;}
.y291{bottom:244.707000px;}
.y125{bottom:245.005950px;}
.y117{bottom:245.052000px;}
.y18f{bottom:246.973500px;}
.y228{bottom:248.844000px;}
.y263{bottom:250.459500px;}
.y337{bottom:254.032500px;}
.y4a{bottom:255.660000px;}
.y161{bottom:256.132500px;}
.yc1{bottom:258.066000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1f7{bottom:261.591000px;}
.y310{bottom:261.712500px;}
.ye7{bottom:261.836799px;}
.y93{bottom:262.413000px;}
.y2ed{bottom:263.698500px;}
.y290{bottom:264.970500px;}
.y116{bottom:265.315500px;}
.y18e{bottom:267.237000px;}
.y227{bottom:269.107500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y336{bottom:273.400500px;}
.y49{bottom:275.923500px;}
.y160{bottom:276.397500px;}
.yc0{bottom:278.331000px;}
.y1f6{bottom:281.856000px;}
.y30f{bottom:281.977500px;}
.ye6{bottom:282.086718px;}
.y124{bottom:282.445950px;}
.y262{bottom:282.649500px;}
.y92{bottom:282.676500px;}
.y2ec{bottom:283.962000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y28f{bottom:285.234000px;}
.y115{bottom:285.580500px;}
.y18d{bottom:287.500500px;}
.y226{bottom:289.371000px;}
.y335{bottom:292.767000px;}
.y48{bottom:296.188500px;}
.y15f{bottom:296.661000px;}
.ybf{bottom:298.594500px;}
.y1f5{bottom:302.119500px;}
.y30e{bottom:302.241000px;}
.ye5{bottom:302.336637px;}
.y261{bottom:302.914500px;}
.y91{bottom:302.940000px;}
.y2eb{bottom:304.227000px;}
.y28e{bottom:305.499000px;}
.y114{bottom:305.844000px;}
.y18c{bottom:307.765500px;}
.y225{bottom:309.636000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y334{bottom:312.135000px;}
.y47{bottom:316.452000px;}
.y15e{bottom:316.926000px;}
.ybe{bottom:318.858000px;}
.y1f4{bottom:322.384500px;}
.y30d{bottom:322.504500px;}
.ye4{bottom:322.586556px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y90{bottom:323.205000px;}
.y2ea{bottom:324.490500px;}
.y260{bottom:324.672000px;}
.y28d{bottom:325.762500px;}
.y113{bottom:326.109000px;}
.y246{bottom:326.749110px;}
.y18b{bottom:328.029000px;}
.y2a7{bottom:328.955675px;}
.y224{bottom:329.899500px;}
.y333{bottom:331.503000px;}
.y1b4{bottom:335.726127px;}
.y46{bottom:336.715500px;}
.y15d{bottom:337.189500px;}
.y5e{bottom:338.226873px;}
.ybd{bottom:339.123000px;}
.y1f3{bottom:342.648000px;}
.y30c{bottom:342.769500px;}
.ye3{bottom:342.836475px;}
.y8f{bottom:343.468500px;}
.y245{bottom:343.884888px;}
.y2e9{bottom:344.754000px;}
.y25f{bottom:344.937000px;}
.y28c{bottom:346.027500px;}
.y112{bottom:346.372500px;}
.y2a6{bottom:347.180602px;}
.y10{bottom:348.133500px;}
.y18a{bottom:348.294000px;}
.y223{bottom:350.163000px;}
.y332{bottom:350.869500px;}
.y1b3{bottom:355.976046px;}
.y45{bottom:356.980500px;}
.y15c{bottom:357.453000px;}
.y5d{bottom:358.386612px;}
.ybc{bottom:359.386500px;}
.y244{bottom:361.097320px;}
.y1f2{bottom:362.911500px;}
.y30b{bottom:363.033000px;}
.y8e{bottom:363.733500px;}
.y2e8{bottom:365.019000px;}
.y2a5{bottom:365.405529px;}
.y28b{bottom:366.291000px;}
.y111{bottom:366.636000px;}
.y25e{bottom:366.694500px;}
.y189{bottom:368.557500px;}
.y331{bottom:370.237500px;}
.ye2{bottom:372.086358px;}
.y1b2{bottom:376.225965px;}
.y44{bottom:377.244000px;}
.y15b{bottom:377.718000px;}
.y243{bottom:378.309751px;}
.y5c{bottom:378.636531px;}
.y222{bottom:379.393500px;}
.ybb{bottom:379.651500px;}
.y1f1{bottom:383.176500px;}
.y30a{bottom:383.298000px;}
.y2a4{bottom:383.630456px;}
.y8d{bottom:383.997000px;}
.y1da{bottom:384.672777px;}
.y2e7{bottom:385.282500px;}
.y28a{bottom:386.554500px;}
.yf{bottom:386.785499px;}
.y25d{bottom:386.959500px;}
.y188{bottom:388.821000px;}
.y330{bottom:389.605500px;}
.y242{bottom:395.522182px;}
.y1b1{bottom:396.475884px;}
.y43{bottom:397.509000px;}
.y15a{bottom:397.981500px;}
.y5b{bottom:398.886450px;}
.yba{bottom:399.915000px;}
.y2a3{bottom:401.855383px;}
.y1f0{bottom:403.440000px;}
.y309{bottom:403.561500px;}
.y8c{bottom:404.260500px;}
.y1d9{bottom:404.922696px;}
.y2e6{bottom:405.547500px;}
.y289{bottom:406.819500px;}
.ye{bottom:408.044999px;}
.y25c{bottom:408.717000px;}
.y32f{bottom:408.972000px;}
.ye1{bottom:410.246025px;}
.y241{bottom:412.734613px;}
.y10f{bottom:413.533500px;}
.y1b0{bottom:416.725803px;}
.y42{bottom:417.772500px;}
.y187{bottom:418.051500px;}
.y159{bottom:418.246500px;}
.yb9{bottom:420.178500px;}
.y10e{bottom:421.752000px;}
.y221{bottom:423.270000px;}
.y1ef{bottom:423.705000px;}
.y308{bottom:423.825000px;}
.y8b{bottom:424.525500px;}
.y1d8{bottom:425.172615px;}
.y2e5{bottom:425.811000px;}
.y288{bottom:427.083000px;}
.y2a2{bottom:428.099116px;}
.y32e{bottom:428.340000px;}
.y25b{bottom:428.982000px;}
.y240{bottom:429.947044px;}
.y110{bottom:429.972000px;}
.ye0{bottom:430.495944px;}
.y5a{bottom:436.326450px;}
.y1af{bottom:436.975722px;}
.y35e{bottom:437.998500px;}
.y158{bottom:438.510000px;}
.yb8{bottom:440.443500px;}
.y1ee{bottom:443.968500px;}
.y307{bottom:444.090000px;}
.y8a{bottom:444.789000px;}
.y1d7{bottom:445.422534px;}
.y2e4{bottom:446.074500px;}
.y41{bottom:447.003000px;}
.y23f{bottom:447.159475px;}
.y220{bottom:447.268500px;}
.y287{bottom:447.348000px;}
.y32d{bottom:447.706500px;}
.y25a{bottom:450.741000px;}
.ydf{bottom:450.745863px;}
.y186{bottom:452.871000px;}
.y10c{bottom:453.612000px;}
.y1ae{bottom:457.135461px;}
.y35d{bottom:457.365000px;}
.y157{bottom:458.773500px;}
.yb7{bottom:460.707000px;}
.y10b{bottom:461.832000px;}
.y2a1{bottom:462.523978px;}
.y1ed{bottom:464.232000px;}
.y306{bottom:464.353500px;}
.y89{bottom:465.054000px;}
.y1d6{bottom:465.672453px;}
.y2e3{bottom:466.339500px;}
.y32c{bottom:467.074500px;}
.y286{bottom:467.611500px;}
.y10d{bottom:470.050500px;}
.yde{bottom:470.995782px;}
.y259{bottom:471.004500px;}
.y21f{bottom:471.267000px;}
.y23e{bottom:471.945223px;}
.y185{bottom:473.136000px;}
.y35c{bottom:476.733000px;}
.y156{bottom:479.038500px;}
.y2a0{bottom:480.748905px;}
.yb6{bottom:480.972000px;}
.y1ec{bottom:484.497000px;}
.y305{bottom:484.618500px;}
.yd{bottom:484.864502px;}
.y88{bottom:485.317500px;}
.y1d5{bottom:485.922372px;}
.y1ad{bottom:486.385344px;}
.y32b{bottom:486.442500px;}
.y2e2{bottom:486.603000px;}
.y285{bottom:487.875000px;}
.ydd{bottom:491.245701px;}
.y184{bottom:493.399500px;}
.y10a{bottom:493.692000px;}
.y21e{bottom:495.264000px;}
.y155{bottom:499.302000px;}
.yb5{bottom:501.235500px;}
.y109{bottom:501.910500px;}
.yc{bottom:502.864502px;}
.y258{bottom:503.194500px;}
.y23d{bottom:504.457593px;}
.y1eb{bottom:504.760500px;}
.y304{bottom:504.882000px;}
.y87{bottom:505.581000px;}
.y32a{bottom:505.809000px;}
.y35b{bottom:506.079000px;}
.y1d4{bottom:506.082111px;}
.y2e1{bottom:506.868000px;}
.y284{bottom:508.140000px;}
.ydc{bottom:511.495620px;}
.y183{bottom:513.664500px;}
.y29f{bottom:514.444905px;}
.y21d{bottom:519.262500px;}
.y154{bottom:519.567000px;}
.yb{bottom:520.864502px;}
.y35a{bottom:521.277000px;}
.yb4{bottom:521.499000px;}
.y23c{bottom:521.670024px;}
.y40{bottom:523.419000px;}
.y217{bottom:523.845000px;}
.y1ac{bottom:524.635191px;}
.y1ea{bottom:525.025500px;}
.y303{bottom:525.145500px;}
.y329{bottom:525.177000px;}
.y86{bottom:525.846000px;}
.y2e0{bottom:527.131500px;}
.y283{bottom:528.403500px;}
.ydb{bottom:531.655359px;}
.y107{bottom:533.770500px;}
.y182{bottom:533.928000px;}
.y1d3{bottom:535.331994px;}
.y257{bottom:535.384500px;}
.ya{bottom:538.864499px;}
.y23b{bottom:538.882455px;}
.y153{bottom:539.830500px;}
.y216{bottom:540.283500px;}
.yb3{bottom:541.764000px;}
.y106{bottom:541.989000px;}
.y21c{bottom:543.261000px;}
.y328{bottom:544.543500px;}
.y1ab{bottom:544.885110px;}
.y1e9{bottom:545.289000px;}
.y29d{bottom:545.410500px;}
.y85{bottom:546.109500px;}
.y2df{bottom:547.395000px;}
.y282{bottom:548.667000px;}
.y108{bottom:550.209000px;}
.yda{bottom:551.905278px;}
.y181{bottom:554.191500px;}
.y359{bottom:554.407500px;}
.y256{bottom:555.648000px;}
.y23a{bottom:556.094886px;}
.y9{bottom:556.864499px;}
.y152{bottom:560.094000px;}
.y3f{bottom:561.615000px;}
.yb2{bottom:562.027500px;}
.y327{bottom:563.911500px;}
.y1aa{bottom:565.135029px;}
.y1e8{bottom:565.552500px;}
.y29c{bottom:565.674000px;}
.y84{bottom:566.374500px;}
.y21b{bottom:567.258000px;}
.y281{bottom:568.932000px;}
.yd9{bottom:572.155197px;}
.y239{bottom:573.307317px;}
.y1d2{bottom:573.581841px;}
.y358{bottom:573.775500px;}
.y105{bottom:573.849000px;}
.y180{bottom:574.456500px;}
.y255{bottom:577.407000px;}
.y151{bottom:580.359000px;}
.y3e{bottom:581.880000px;}
.y104{bottom:582.069000px;}
.y326{bottom:583.279500px;}
.y1a9{bottom:585.384948px;}
.y1e7{bottom:585.817500px;}
.y29b{bottom:585.939000px;}
.y83{bottom:586.638000px;}
.y280{bottom:589.195500px;}
.y238{bottom:590.443096px;}
.y21a{bottom:591.256500px;}
.yb1{bottom:591.258000px;}
.yd8{bottom:592.405116px;}
.y357{bottom:593.142000px;}
.y1d1{bottom:593.831760px;}
.y2de{bottom:594.649500px;}
.y17f{bottom:594.720000px;}
.y254{bottom:599.164500px;}
.y150{bottom:600.622500px;}
.y3d{bottom:602.143500px;}
.y325{bottom:602.646000px;}
.y1a8{bottom:605.634867px;}
.y1e6{bottom:606.081000px;}
.y29a{bottom:606.202500px;}
.y82{bottom:606.901500px;}
.y237{bottom:607.655527px;}
.y27f{bottom:609.460500px;}
.y356{bottom:612.510000px;}
.yd7{bottom:612.655035px;}
.y103{bottom:613.929000px;}
.y1d0{bottom:614.081679px;}
.y17e{bottom:614.985000px;}
.y219{bottom:615.253500px;}
.y2dd{bottom:618.648000px;}
.y253{bottom:619.429500px;}
.y14f{bottom:620.886000px;}
.y324{bottom:622.014000px;}
.y102{bottom:622.147500px;}
.y3c{bottom:622.408500px;}
.y236{bottom:624.867958px;}
.y1a7{bottom:625.794606px;}
.yb0{bottom:626.077500px;}
.y1e5{bottom:626.346000px;}
.y299{bottom:626.466000px;}
.y81{bottom:627.166500px;}
.y27e{bottom:629.724000px;}
.y355{bottom:631.878000px;}
.yd6{bottom:632.904954px;}
.y1cf{bottom:634.331598px;}
.y17d{bottom:635.248500px;}
.y218{bottom:639.252000px;}
.y14e{bottom:641.151000px;}
.y252{bottom:641.187000px;}
.y323{bottom:641.380500px;}
.y235{bottom:642.080389px;}
.y2dc{bottom:642.645000px;}
.y3b{bottom:642.672000px;}
.y8{bottom:645.510000px;}
.y1a6{bottom:646.044525px;}
.yaf{bottom:646.342500px;}
.y1e4{bottom:646.609500px;}
.y302{bottom:646.731000px;}
.y80{bottom:647.430000px;}
.y27d{bottom:649.987500px;}
.y354{bottom:651.244500px;}
.yd5{bottom:653.154873px;}
.y101{bottom:654.007500px;}
.y1ce{bottom:654.581517px;}
.y17c{bottom:655.512000px;}
.y298{bottom:655.696500px;}
.y234{bottom:659.292820px;}
.y322{bottom:660.748500px;}
.y251{bottom:661.452000px;}
.y100{bottom:662.227500px;}
.y3a{bottom:662.935500px;}
.y215{bottom:663.250500px;}
.y213{bottom:665.241000px;}
.y1a5{bottom:666.294444px;}
.yae{bottom:666.606000px;}
.y2db{bottom:666.643500px;}
.y7{bottom:666.771000px;}
.y1e3{bottom:666.873000px;}
.y301{bottom:666.994500px;}
.y27c{bottom:670.252500px;}
.y353{bottom:670.612500px;}
.y2d7{bottom:671.052000px;}
.yd4{bottom:673.314612px;}
.y1cd{bottom:674.741256px;}
.y17b{bottom:675.777000px;}
.y14d{bottom:676.150500px;}
.y233{bottom:676.505251px;}
.y321{bottom:680.116500px;}
.y212{bottom:681.679500px;}
.y7f{bottom:682.431000px;}
.y39{bottom:683.200500px;}
.y250{bottom:683.211000px;}
.y1a4{bottom:686.544363px;}
.yad{bottom:686.869500px;}
.y1e2{bottom:687.138000px;}
.y214{bottom:687.247500px;}
.y300{bottom:687.258000px;}
.y2d6{bottom:687.490500px;}
.y352{bottom:689.979000px;}
.y27b{bottom:690.516000px;}
.y2da{bottom:690.640500px;}
.yd3{bottom:693.564531px;}
.y232{bottom:693.717683px;}
.yfe{bottom:694.087500px;}
.y1cc{bottom:694.991175px;}
.y17a{bottom:696.040500px;}
.y123{bottom:698.580000px;}
.y320{bottom:699.483000px;}
.yfd{bottom:702.306000px;}
.y38{bottom:703.464000px;}
.y24f{bottom:703.474500px;}
.y59{bottom:704.860500px;}
.y1a3{bottom:706.794282px;}
.yac{bottom:707.134500px;}
.y1e1{bottom:707.401500px;}
.y2ff{bottom:707.523000px;}
.y351{bottom:709.347000px;}
.yff{bottom:710.524500px;}
.y27a{bottom:710.781000px;}
.y211{bottom:711.246000px;}
.yd2{bottom:713.814450px;}
.y2d9{bottom:714.639000px;}
.y1cb{bottom:715.241094px;}
.y179{bottom:716.305500px;}
.y37{bottom:723.729000px;}
.y24e{bottom:723.738000px;}
.y6{bottom:726.298500px;}
.y1a2{bottom:727.044201px;}
.y231{bottom:727.071683px;}
.yab{bottom:727.398000px;}
.y1e0{bottom:727.666500px;}
.y2fe{bottom:727.786500px;}
.y31f{bottom:727.816500px;}
.y350{bottom:728.715000px;}
.y279{bottom:731.044500px;}
.yd1{bottom:734.065152px;}
.yfb{bottom:734.166000px;}
.y210{bottom:735.243000px;}
.y1ca{bottom:735.491013px;}
.y178{bottom:736.569000px;}
.y2d8{bottom:738.637500px;}
.yfa{bottom:742.384500px;}
.y230{bottom:743.136683px;}
.y36{bottom:743.992500px;}
.y24d{bottom:745.497000px;}
.y1a1{bottom:747.294120px;}
.yaa{bottom:747.663000px;}
.y2fd{bottom:748.051500px;}
.y34f{bottom:748.081500px;}
.yfc{bottom:750.604500px;}
.y278{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.yd0{bottom:754.315071px;}
.y1c9{bottom:755.740932px;}
.y177{bottom:756.832500px;}
.y20f{bottom:759.241500px;}
.y22f{bottom:759.278183px;}
.y2d5{bottom:762.634500px;}
.y1df{bottom:762.666000px;}
.y35{bottom:764.256000px;}
.y31e{bottom:767.269500px;}
.y34e{bottom:767.449500px;}
.y1a0{bottom:767.453859px;}
.ya9{bottom:767.926500px;}
.y2fc{bottom:768.315000px;}
.y277{bottom:771.573000px;}
.yf9{bottom:774.244500px;}
.ycf{bottom:774.564990px;}
.y22e{bottom:775.419683px;}
.y1c8{bottom:775.990851px;}
.y176{bottom:777.097500px;}
.y24c{bottom:777.687000px;}
.y1bb{bottom:781.898850px;}
.y1ba{bottom:781.899000px;}
.yf8{bottom:782.464500px;}
.y20e{bottom:783.240000px;}
.y34{bottom:784.521000px;}
.y2d2{bottom:785.992500px;}
.y2d4{bottom:786.633000px;}
.y34d{bottom:786.816000px;}
.y19f{bottom:787.703778px;}
.y20a{bottom:788.005500px;}
.ya8{bottom:788.190000px;}
.y2fb{bottom:788.578500px;}
.y31d{bottom:791.433000px;}
.y22d{bottom:791.484683px;}
.y276{bottom:791.836500px;}
.yce{bottom:794.814909px;}
.y1c7{bottom:796.240770px;}
.y1b9{bottom:801.132000px;}
.y33{bottom:804.784500px;}
.y34c{bottom:806.184000px;}
.y31c{bottom:806.631000px;}
.y20d{bottom:807.237000px;}
.y19e{bottom:807.953697px;}
.ya7{bottom:808.455000px;}
.y2fa{bottom:808.843500px;}
.y2d3{bottom:810.631500px;}
.y275{bottom:812.101500px;}
.y24b{bottom:812.673000px;}
.yf7{bottom:814.681500px;}
.ycd{bottom:814.974648px;}
.y1c6{bottom:816.400509px;}
.y22c{bottom:823.308683px;}
.y195{bottom:823.561500px;}
.y175{bottom:824.350500px;}
.y32{bottom:825.049500px;}
.y34b{bottom:825.552000px;}
.y19d{bottom:828.203616px;}
.ya6{bottom:828.718500px;}
.y2f9{bottom:829.107000px;}
.y31b{bottom:830.796000px;}
.y20c{bottom:831.235500px;}
.y274{bottom:832.365000px;}
.y2d1{bottom:834.628500px;}
.y22b{bottom:835.102500px;}
.y1c5{bottom:836.650428px;}
.y174{bottom:841.146000px;}
.ycc{bottom:844.224531px;}
.y34a{bottom:844.918500px;}
.y31a{bottom:845.994000px;}
.yf6{bottom:846.301500px;}
.y19c{bottom:848.453535px;}
.ya5{bottom:848.983500px;}
.y2f8{bottom:849.372000px;}
.y273{bottom:852.628500px;}
.y20b{bottom:855.234000px;}
.y1c4{bottom:856.900347px;}
.y173{bottom:857.941500px;}
.y2d0{bottom:858.627000px;}
.y2cd{bottom:861.192000px;}
.y2f{bottom:862.705464px;}
.y349{bottom:864.286500px;}
.ycb{bottom:864.474450px;}
.y19b{bottom:868.703454px;}
.ya4{bottom:869.247000px;}
.y2f7{bottom:869.635500px;}
.y2e{bottom:870.651000px;}
.y272{bottom:872.893500px;}
.y172{bottom:874.738500px;}
.y319{bottom:876.390000px;}
.y1c3{bottom:877.150266px;}
.y2cc{bottom:877.630500px;}
.y209{bottom:879.231000px;}
.y2{bottom:879.369000px;}
.y2cf{bottom:882.624000px;}
.y348{bottom:883.653000px;}
.yf5{bottom:884.961000px;}
.y206{bottom:887.287500px;}
.y19a{bottom:888.953373px;}
.ya3{bottom:889.510500px;}
.y2f6{bottom:889.899000px;}
.y171{bottom:891.534000px;}
.y318{bottom:891.588000px;}
.y271{bottom:893.157000px;}
.y1c2{bottom:897.400185px;}
.yca{bottom:901.914450px;}
.y2d{bottom:902.478000px;}
.y347{bottom:903.021000px;}
.y208{bottom:903.229500px;}
.y205{bottom:903.726000px;}
.y2ce{bottom:906.622500px;}
.yc9{bottom:907.390500px;}
.y170{bottom:908.329500px;}
.y199{bottom:909.113112px;}
.ya2{bottom:909.775500px;}
.y122{bottom:910.164000px;}
.y270{bottom:913.422000px;}
.y1c1{bottom:917.650104px;}
.y204{bottom:920.164500px;}
.y2c{bottom:920.634000px;}
.y346{bottom:922.389000px;}
.y16f{bottom:925.125000px;}
.y207{bottom:927.226500px;}
.y198{bottom:929.363031px;}
.ya1{bottom:930.039000px;}
.y121{bottom:930.427500px;}
.y2cb{bottom:930.621000px;}
.y26f{bottom:933.685500px;}
.y1c0{bottom:937.900023px;}
.y2b{bottom:938.791500px;}
.y345{bottom:941.755500px;}
.y16e{bottom:941.920500px;}
.y197{bottom:949.612950px;}
.ya0{bottom:950.304000px;}
.y120{bottom:950.692500px;}
.y202{bottom:950.868000px;}
.y26e{bottom:953.949000px;}
.y2ca{bottom:954.618000px;}
.y1bf{bottom:958.059762px;}
.y16d{bottom:958.716000px;}
.y201{bottom:959.086500px;}
.y344{bottom:961.123500px;}
.y2a{bottom:965.914500px;}
.y1{bottom:966.726000px;}
.y203{bottom:967.306500px;}
.y9f{bottom:970.567500px;}
.y11f{bottom:970.956000px;}
.y26d{bottom:974.214000px;}
.y16c{bottom:975.511500px;}
.y1be{bottom:978.309681px;}
.y2c9{bottom:978.616500px;}
.y2c6{bottom:979.558500px;}
.y343{bottom:980.490000px;}
.y196{bottom:987.052950px;}
.y9e{bottom:990.831000px;}
.y11e{bottom:991.219500px;}
.y16b{bottom:992.307000px;}
.y26c{bottom:994.477500px;}
.y1bd{bottom:998.559600px;}
.y200{bottom:998.925000px;}
.y342{bottom:999.858000px;}
.y2c8{bottom:1002.613500px;}
.y16a{bottom:1009.102500px;}
.y29{bottom:1010.451000px;}
.y9d{bottom:1011.096000px;}
.y11d{bottom:1011.484500px;}
.y26b{bottom:1014.742500px;}
.y1ff{bottom:1018.158000px;}
.y341{bottom:1019.226000px;}
.y169{bottom:1025.898000px;}
.y2c7{bottom:1026.612000px;}
.y11c{bottom:1031.748000px;}
.y58{bottom:1035.006000px;}
.y1bc{bottom:1035.999600px;}
.y340{bottom:1038.592500px;}
.y28{bottom:1040.848500px;}
.y168{bottom:1042.693500px;}
.y9c{bottom:1043.314500px;}
.y2c5{bottom:1050.253500px;}
.y11b{bottom:1052.013000px;}
.y57{bottom:1055.269500px;}
.y33f{bottom:1057.960500px;}
.y2c4{bottom:1058.472000px;}
.y2f5{bottom:1060.978500px;}
.y9b{bottom:1063.579500px;}
.y167{bottom:1066.690500px;}
.y27{bottom:1071.244500px;}
.y56{bottom:1075.534500px;}
.y33e{bottom:1077.327000px;}
.y11a{bottom:1081.243500px;}
.y55{bottom:1095.798000px;}
.y33d{bottom:1096.695000px;}
.y166{bottom:1098.310500px;}
.y26{bottom:1100.145000px;}
.y54{bottom:1116.063000px;}
.y165{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h22{height:10.051050px;}
.h10{height:25.508090px;}
.h25{height:29.708745px;}
.hb{height:30.190743px;}
.h2b{height:31.456318px;}
.h7{height:32.130000px;}
.h12{height:33.112997px;}
.h26{height:33.506104px;}
.h11{height:34.199443px;}
.h16{height:34.951465px;}
.h14{height:35.052500px;}
.h2f{height:35.477051px;}
.h28{height:36.779467px;}
.h27{height:37.303462px;}
.ha{height:37.738429px;}
.h35{height:37.927872px;}
.h31{height:38.412058px;}
.h33{height:38.465856px;}
.h1c{height:38.734848px;}
.h2d{height:38.942965px;}
.hf{height:39.165235px;}
.h19{height:39.418945px;}
.h32{height:39.434227px;}
.h2c{height:39.497783px;}
.he{height:43.038432px;}
.h1b{height:43.269961px;}
.h13{height:43.516637px;}
.hc{height:43.815515px;}
.h17{height:43.886426px;}
.h29{height:44.674805px;}
.h6{height:45.900000px;}
.h2e{height:47.302734px;}
.h3{height:48.195000px;}
.h9{height:51.022950px;}
.h34{height:51.159235px;}
.h18{height:52.558594px;}
.h2{height:55.080000px;}
.h30{height:71.608848px;}
.h23{height:71.614848px;}
.h1d{height:72.039235px;}
.h1f{height:72.045235px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.h1e{height:104.919235px;}
.h4{height:119.055004px;}
.h1a{height:164.760000px;}
.h20{height:187.935000px;}
.h24{height:295.903275px;}
.h15{height:306.498000px;}
.h21{height:307.446000px;}
.h2a{height:308.628900px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:12.588000px;}
.w5{width:75.364879px;}
.w8{width:206.854500px;}
.w4{width:233.211061px;}
.wb{width:542.489550px;}
.w9{width:579.418500px;}
.wc{width:609.453585px;}
.w6{width:619.303350px;}
.w7{width:633.812850px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x3e{left:-390.573000px;}
.x3f{left:-358.713106px;}
.x30{left:-228.237000px;}
.x35{left:-218.067000px;}
.x33{left:-196.377000px;}
.x34{left:-109.887022px;}
.x32{left:-108.447000px;}
.x39{left:-42.036000px;}
.x13{left:-23.904150px;}
.x20{left:-14.445150px;}
.x51{left:-12.813750px;}
.x3a{left:-10.176106px;}
.x0{left:0.000000px;}
.x64{left:4.027185px;}
.x15{left:7.955850px;}
.x52{left:14.267250px;}
.x21{left:17.414850px;}
.xb{left:29.274117px;}
.x65{left:32.701090px;}
.x6{left:56.951817px;}
.x14{left:96.245850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x71{left:112.561500px;}
.x7{left:113.754000px;}
.x5{left:114.802500px;}
.x56{left:115.804500px;}
.x9{left:122.110500px;}
.x8{left:123.307500px;}
.x4a{left:126.508500px;}
.x1f{left:129.550650px;}
.x6e{left:130.933500px;}
.x6f{left:132.493500px;}
.x4b{left:135.177000px;}
.x12{left:136.806150px;}
.x63{left:141.733215px;}
.x54{left:143.322750px;}
.xd{left:146.692500px;}
.x4e{left:147.919500px;}
.x25{left:149.284500px;}
.x28{left:150.408000px;}
.x2c{left:152.250000px;}
.x4c{left:155.458500px;}
.x38{left:156.748500px;}
.x46{left:160.368000px;}
.x24{left:164.476500px;}
.x69{left:165.768000px;}
.x5b{left:166.875000px;}
.x5f{left:171.472500px;}
.x57{left:173.112000px;}
.x50{left:175.210500px;}
.x8e{left:179.149500px;}
.x5c{left:181.819500px;}
.x75{left:185.026500px;}
.x58{left:188.056500px;}
.xc{left:191.178000px;}
.x60{left:196.281000px;}
.x36{left:198.055500px;}
.x76{left:199.971000px;}
.x98{left:202.459500px;}
.x4{left:203.484001px;}
.x3c{left:205.030500px;}
.x22{left:211.634850px;}
.x2e{left:219.136500px;}
.x40{left:224.577000px;}
.x99{left:225.619500px;}
.x68{left:228.945000px;}
.x16{left:235.105500px;}
.x37{left:237.861000px;}
.x4f{left:239.514000px;}
.x2b{left:241.657500px;}
.x26{left:247.333500px;}
.x72{left:249.711000px;}
.x9a{left:251.667000px;}
.x9b{left:254.101500px;}
.x7b{left:256.437000px;}
.x8f{left:258.135000px;}
.x2d{left:259.678500px;}
.x90{left:265.479000px;}
.x86{left:267.813000px;}
.x31{left:272.253000px;}
.x87{left:274.537500px;}
.x79{left:285.615000px;}
.x4d{left:289.596000px;}
.x7a{left:293.086500px;}
.x55{left:298.432500px;}
.x6d{left:300.397500px;}
.x62{left:303.949500px;}
.x7c{left:319.230000px;}
.x82{left:322.287000px;}
.x7d{left:326.574000px;}
.x83{left:330.397500px;}
.x23{left:340.644000px;}
.x2f{left:343.029000px;}
.x81{left:345.712500px;}
.x7e{left:354.003000px;}
.x7f{left:357.862500px;}
.x61{left:374.850000px;}
.x5d{left:381.690000px;}
.x88{left:385.963500px;}
.x5e{left:389.163000px;}
.x89{left:394.135500px;}
.x29{left:401.422500px;}
.x73{left:424.273500px;}
.x42{left:433.444500px;}
.x74{left:439.218000px;}
.x43{left:448.389000px;}
.x3{left:454.959000px;}
.x77{left:461.362500px;}
.x1c{left:470.091000px;}
.x78{left:476.307000px;}
.x1a{left:486.352500px;}
.x1b{left:493.824000px;}
.x80{left:499.422000px;}
.x3d{left:506.602500px;}
.x41{left:519.190500px;}
.x8a{left:526.311000px;}
.x8b{left:533.035500px;}
.x53{left:538.215750px;}
.x44{left:569.829000px;}
.x3b{left:573.114000px;}
.x45{left:584.773500px;}
.x66{left:605.452050px;}
.xe{left:607.758000px;}
.xf{left:615.229500px;}
.x6a{left:617.908500px;}
.x10{left:619.039500px;}
.x11{left:626.512500px;}
.x47{left:628.710000px;}
.x17{left:633.462000px;}
.x2a{left:639.469500px;}
.x70{left:644.808000px;}
.x84{left:649.395000px;}
.x85{left:656.872500px;}
.x91{left:665.346000px;}
.x27{left:668.580000px;}
.x59{left:672.297000px;}
.x5a{left:679.768500px;}
.x1d{left:683.167500px;}
.x92{left:692.244000px;}
.x1e{left:698.112000px;}
.x6c{left:700.140000px;}
.xa{left:701.339982px;}
.x49{left:707.650500px;}
.x6b{left:721.975500px;}
.x48{left:727.375500px;}
.x95{left:734.782500px;}
.x8c{left:739.669500px;}
.x8d{left:746.394000px;}
.x97{left:748.326000px;}
.x93{left:749.463000px;}
.x67{left:757.243500px;}
.x96{left:761.682000px;}
.x18{left:764.367000px;}
.x19{left:771.838500px;}
.x94{left:776.362500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.661333pt;}
.v1{vertical-align:29.221333pt;}
.ls42{letter-spacing:-0.635936pt;}
.ls43{letter-spacing:-0.593184pt;}
.ls44{letter-spacing:-0.224448pt;}
.ls3b{letter-spacing:-0.203072pt;}
.ls23{letter-spacing:-0.165664pt;}
.ls71{letter-spacing:-0.154442pt;}
.ls9c{letter-spacing:-0.129859pt;}
.ls22{letter-spacing:-0.117568pt;}
.ls51{letter-spacing:-0.112224pt;}
.ls41{letter-spacing:-0.106880pt;}
.ls50{letter-spacing:-0.101536pt;}
.ls99{letter-spacing:-0.101002pt;}
.ls7a{letter-spacing:-0.099933pt;}
.ls3f{letter-spacing:-0.096192pt;}
.ls98{letter-spacing:-0.091382pt;}
.ls1f{letter-spacing:-0.090848pt;}
.ls24{letter-spacing:-0.085504pt;}
.ls3e{letter-spacing:-0.080160pt;}
.ls9a{letter-spacing:-0.076954pt;}
.ls16{letter-spacing:-0.076608pt;}
.ls40{letter-spacing:-0.074816pt;}
.ls1d{letter-spacing:-0.069472pt;}
.ls8e{letter-spacing:-0.068947pt;}
.ls6f{letter-spacing:-0.065117pt;}
.ls25{letter-spacing:-0.064128pt;}
.ls74{letter-spacing:-0.063594pt;}
.ls97{letter-spacing:-0.062525pt;}
.ls78{letter-spacing:-0.059051pt;}
.ls19{letter-spacing:-0.058784pt;}
.ls73{letter-spacing:-0.054509pt;}
.ls3d{letter-spacing:-0.053440pt;}
.ls95{letter-spacing:-0.052906pt;}
.ls7b{letter-spacing:-0.049966pt;}
.ls1e{letter-spacing:-0.048096pt;}
.ls54{letter-spacing:-0.048000pt;}
.ls7d{letter-spacing:-0.045424pt;}
.ls20{letter-spacing:-0.042752pt;}
.ls7e{letter-spacing:-0.040882pt;}
.ls94{letter-spacing:-0.038477pt;}
.ls5b{letter-spacing:-0.037408pt;}
.ls90{letter-spacing:-0.033667pt;}
.ls21{letter-spacing:-0.032064pt;}
.ls7c{letter-spacing:-0.031797pt;}
.ls8f{letter-spacing:-0.028858pt;}
.ls53{letter-spacing:-0.028800pt;}
.ls72{letter-spacing:-0.027254pt;}
.ls1c{letter-spacing:-0.026720pt;}
.ls9b{letter-spacing:-0.024048pt;}
.ls55{letter-spacing:-0.024000pt;}
.ls17{letter-spacing:-0.021376pt;}
.ls92{letter-spacing:-0.019238pt;}
.ls77{letter-spacing:-0.018170pt;}
.ls1a{letter-spacing:-0.016032pt;}
.ls9d{letter-spacing:-0.014429pt;}
.ls70{letter-spacing:-0.013627pt;}
.ls1b{letter-spacing:-0.010688pt;}
.ls93{letter-spacing:-0.009619pt;}
.ls79{letter-spacing:-0.009085pt;}
.ls18{letter-spacing:-0.005344pt;}
.ls91{letter-spacing:-0.004810pt;}
.ls76{letter-spacing:-0.004542pt;}
.ls96{letter-spacing:-0.004320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls80{letter-spacing:0.000088pt;}
.ls15{letter-spacing:0.000243pt;}
.lsa6{letter-spacing:0.000503pt;}
.ls4f{letter-spacing:0.000577pt;}
.lsa3{letter-spacing:0.000662pt;}
.lsb4{letter-spacing:0.000711pt;}
.ls28{letter-spacing:0.001183pt;}
.ls27{letter-spacing:0.001349pt;}
.lsa5{letter-spacing:0.001633pt;}
.ls6{letter-spacing:0.001977pt;}
.lsb5{letter-spacing:0.002078pt;}
.ls58{letter-spacing:0.002551pt;}
.lsa1{letter-spacing:0.002613pt;}
.ls5c{letter-spacing:0.002825pt;}
.lsa2{letter-spacing:0.002868pt;}
.lsa0{letter-spacing:0.002946pt;}
.ls7f{letter-spacing:0.002972pt;}
.ls3{letter-spacing:0.003106pt;}
.ls57{letter-spacing:0.003430pt;}
.lsa4{letter-spacing:0.003942pt;}
.lsaa{letter-spacing:0.004267pt;}
.ls6a{letter-spacing:0.004542pt;}
.ls59{letter-spacing:0.004800pt;}
.ls8a{letter-spacing:0.004810pt;}
.lsac{letter-spacing:0.005211pt;}
.lsa{letter-spacing:0.005344pt;}
.ls68{letter-spacing:0.009085pt;}
.ls4e{letter-spacing:0.009600pt;}
.ls88{letter-spacing:0.009619pt;}
.lsf{letter-spacing:0.010688pt;}
.ls61{letter-spacing:0.012240pt;}
.ls85{letter-spacing:0.012960pt;}
.lse{letter-spacing:0.014400pt;}
.ls12{letter-spacing:0.016032pt;}
.ls64{letter-spacing:0.018170pt;}
.ls4d{letter-spacing:0.019200pt;}
.ls8b{letter-spacing:0.019238pt;}
.ls62{letter-spacing:0.020400pt;}
.ls13{letter-spacing:0.021376pt;}
.lsd{letter-spacing:0.024000pt;}
.ls6c{letter-spacing:0.024480pt;}
.ls87{letter-spacing:0.025920pt;}
.ls2f{letter-spacing:0.026720pt;}
.ls69{letter-spacing:0.027254pt;}
.ls5f{letter-spacing:0.028560pt;}
.lsc{letter-spacing:0.028800pt;}
.ls65{letter-spacing:0.031797pt;}
.ls29{letter-spacing:0.032064pt;}
.ls4a{letter-spacing:0.033600pt;}
.ls82{letter-spacing:0.033667pt;}
.lsb{letter-spacing:0.037408pt;}
.ls4c{letter-spacing:0.038400pt;}
.ls84{letter-spacing:0.038477pt;}
.ls86{letter-spacing:0.038880pt;}
.ls60{letter-spacing:0.040800pt;}
.ls6b{letter-spacing:0.040882pt;}
.ls9{letter-spacing:0.042752pt;}
.ls47{letter-spacing:0.043200pt;}
.ls83{letter-spacing:0.043286pt;}
.ls66{letter-spacing:0.045424pt;}
.ls30{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.048096pt;}
.ls48{letter-spacing:0.052800pt;}
.ls89{letter-spacing:0.052906pt;}
.ls63{letter-spacing:0.053040pt;}
.ls2e{letter-spacing:0.053440pt;}
.ls49{letter-spacing:0.057600pt;}
.ls8d{letter-spacing:0.057715pt;}
.ls46{letter-spacing:0.058784pt;}
.ls8c{letter-spacing:0.062525pt;}
.ls11{letter-spacing:0.064128pt;}
.ls14{letter-spacing:0.069472pt;}
.ls4b{letter-spacing:0.072000pt;}
.ls67{letter-spacing:0.072678pt;}
.ls2c{letter-spacing:0.085504pt;}
.ls2a{letter-spacing:0.090848pt;}
.ls6d{letter-spacing:0.113560pt;}
.ls5e{letter-spacing:0.130234pt;}
.ls2b{letter-spacing:0.133600pt;}
.ls81{letter-spacing:0.137894pt;}
.ls5d{letter-spacing:0.144704pt;}
.ls8{letter-spacing:0.153216pt;}
.ls7{letter-spacing:0.170240pt;}
.lsae{letter-spacing:0.466280pt;}
.lsb1{letter-spacing:0.467789pt;}
.lsb0{letter-spacing:0.473059pt;}
.lsa8{letter-spacing:0.478097pt;}
.ls5{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls52{letter-spacing:2.645280pt;}
.ls3c{letter-spacing:6.166976pt;}
.ls2d{letter-spacing:8.090816pt;}
.ls4{letter-spacing:10.631867pt;}
.lsab{letter-spacing:11.951565pt;}
.lsa7{letter-spacing:11.954133pt;}
.ls56{letter-spacing:11.954551pt;}
.lsb2{letter-spacing:11.959467pt;}
.lsa9{letter-spacing:12.430097pt;}
.ls9f{letter-spacing:12.964663pt;}
.ls26{letter-spacing:13.128671pt;}
.ls45{letter-spacing:13.389734pt;}
.ls75{letter-spacing:13.949710pt;}
.lsb6{letter-spacing:14.042186pt;}
.ls9e{letter-spacing:14.877483pt;}
.lsb3{letter-spacing:15.307545pt;}
.ls5a{letter-spacing:16.152695pt;}
.lsad{letter-spacing:16.274865pt;}
.lsaf{letter-spacing:24.968241pt;}
.ls1{letter-spacing:28.452898pt;}
.ls6e{letter-spacing:68.458510pt;}
.ls38{letter-spacing:205.247761pt;}
.ls37{letter-spacing:206.638063pt;}
.ls36{letter-spacing:211.848969pt;}
.ls3a{letter-spacing:234.806340pt;}
.ls33{letter-spacing:250.660386pt;}
.ls35{letter-spacing:253.000158pt;}
.ls39{letter-spacing:266.796390pt;}
.ls34{letter-spacing:298.858701pt;}
.ls31{letter-spacing:302.112751pt;}
.ls32{letter-spacing:306.104158pt;}
.ws24{word-spacing:-15.461955pt;}
.wsfc{word-spacing:-13.915853pt;}
.ws76{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.369595pt;}
.ws89{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.810240pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws1a2{word-spacing:-9.729216pt;}
.ws152{word-spacing:-9.188704pt;}
.ws1ee{word-spacing:-4.835182pt;}
.ws82{word-spacing:-4.569513pt;}
.ws18{word-spacing:-4.516379pt;}
.ws111{word-spacing:-4.410111pt;}
.ws8e{word-spacing:-4.303843pt;}
.ws87{word-spacing:-4.197575pt;}
.wsd4{word-spacing:-4.144442pt;}
.ws19d{word-spacing:-3.985040pt;}
.ws1f8{word-spacing:-3.878772pt;}
.ws1ef{word-spacing:-3.719371pt;}
.ws207{word-spacing:-3.666237pt;}
.ws8{word-spacing:-3.506835pt;}
.wsd1{word-spacing:-3.453701pt;}
.ws57{word-spacing:-3.441536pt;}
.ws1dd{word-spacing:-3.400567pt;}
.wsfe{word-spacing:-3.347434pt;}
.ws189{word-spacing:-3.028630pt;}
.ws58{word-spacing:-2.997984pt;}
.ws195{word-spacing:-2.975497pt;}
.wsfd{word-spacing:-2.922363pt;}
.ws11a{word-spacing:-2.816288pt;}
.ws18c{word-spacing:-2.762961pt;}
.ws20e{word-spacing:-2.725786pt;}
.ws20f{word-spacing:-2.677965pt;}
.ws1c7{word-spacing:-2.563517pt;}
.ws1c4{word-spacing:-2.558707pt;}
.ws81{word-spacing:-2.550426pt;}
.wse2{word-spacing:-2.527712pt;}
.ws1c8{word-spacing:-2.520230pt;}
.ws1c5{word-spacing:-2.515421pt;}
.ws14b{word-spacing:-2.497292pt;}
.wsaf{word-spacing:-2.495648pt;}
.ws96{word-spacing:-2.458240pt;}
.wsa9{word-spacing:-2.447552pt;}
.ws1c6{word-spacing:-2.438467pt;}
.ws99{word-spacing:-2.431520pt;}
.ws97{word-spacing:-2.404800pt;}
.wsa8{word-spacing:-2.378080pt;}
.wsb0{word-spacing:-2.367392pt;}
.wse3{word-spacing:-2.362048pt;}
.ws74{word-spacing:-2.337890pt;}
.ws1a{word-spacing:-2.284756pt;}
.ws98{word-spacing:-2.271200pt;}
.ws116{word-spacing:-2.201728pt;}
.ws20d{word-spacing:-2.199757pt;}
.ws1df{word-spacing:-2.178489pt;}
.ws6f{word-spacing:-2.158976pt;}
.ws115{word-spacing:-2.137600pt;}
.ws117{word-spacing:-2.132256pt;}
.ws193{word-spacing:-2.125355pt;}
.ws70{word-spacing:-2.089504pt;}
.ws166{word-spacing:-2.075877pt;}
.ws167{word-spacing:-2.048622pt;}
.ws168{word-spacing:-2.039538pt;}
.ws1bb{word-spacing:-1.981555pt;}
.ws7d{word-spacing:-1.965953pt;}
.ws1bc{word-spacing:-1.899792pt;}
.wsfb{word-spacing:-1.897120pt;}
.ws192{word-spacing:-1.859685pt;}
.wscb{word-spacing:-1.843680pt;}
.wsca{word-spacing:-1.827648pt;}
.ws22e{word-spacing:-1.817190pt;}
.ws7e{word-spacing:-1.806551pt;}
.ws199{word-spacing:-1.753418pt;}
.ws3{word-spacing:-1.696326pt;}
.ws1da{word-spacing:-1.692979pt;}
.ws34{word-spacing:-1.647150pt;}
.ws1d9{word-spacing:-1.635264pt;}
.ws9{word-spacing:-1.594016pt;}
.wsa1{word-spacing:-1.560448pt;}
.ws33{word-spacing:-1.540882pt;}
.ws118{word-spacing:-1.539072pt;}
.ws38{word-spacing:-1.523040pt;}
.wsab{word-spacing:-1.517696pt;}
.ws39{word-spacing:-1.496320pt;}
.ws1f7{word-spacing:-1.487748pt;}
.wsa0{word-spacing:-1.453568pt;}
.ws102{word-spacing:-1.434614pt;}
.ws151{word-spacing:-1.381481pt;}
.ws1b5{word-spacing:-1.330560pt;}
.ws1b7{word-spacing:-1.304640pt;}
.ws1b6{word-spacing:-1.287360pt;}
.ws158{word-spacing:-1.275213pt;}
.ws9f{word-spacing:-1.261184pt;}
.ws9e{word-spacing:-1.239808pt;}
.ws1e1{word-spacing:-1.222079pt;}
.wsd7{word-spacing:-1.197056pt;}
.wsd8{word-spacing:-1.181024pt;}
.ws2{word-spacing:-1.175671pt;}
.ws1e3{word-spacing:-1.168945pt;}
.ws8f{word-spacing:-1.115811pt;}
.wse4{word-spacing:-1.111552pt;}
.ws132{word-spacing:-1.106208pt;}
.ws19{word-spacing:-1.062677pt;}
.ws188{word-spacing:-1.009543pt;}
.ws1fe{word-spacing:-0.956410pt;}
.ws134{word-spacing:-0.929856pt;}
.ws63{word-spacing:-0.913824pt;}
.wsa{word-spacing:-0.903276pt;}
.wsfa{word-spacing:-0.897792pt;}
.ws1e2{word-spacing:-0.850142pt;}
.ws71{word-spacing:-0.849696pt;}
.ws1d4{word-spacing:-0.832061pt;}
.wsa6{word-spacing:-0.828320pt;}
.ws133{word-spacing:-0.822976pt;}
.ws73{word-spacing:-0.797008pt;}
.ws62{word-spacing:-0.790912pt;}
.ws1d5{word-spacing:-0.769536pt;}
.ws226{word-spacing:-0.765133pt;}
.ws1f2{word-spacing:-0.743874pt;}
.ws16e{word-spacing:-0.731326pt;}
.ws1eb{word-spacing:-0.717312pt;}
.ws180{word-spacing:-0.699530pt;}
.ws1f9{word-spacing:-0.690740pt;}
.wscf{word-spacing:-0.637606pt;}
.ws114{word-spacing:-0.584473pt;}
.ws12d{word-spacing:-0.577152pt;}
.wsbd{word-spacing:-0.545088pt;}
.wsdf{word-spacing:-0.539744pt;}
.ws1e4{word-spacing:-0.531339pt;}
.wsde{word-spacing:-0.529056pt;}
.wsed{word-spacing:-0.528000pt;}
.wsec{word-spacing:-0.518400pt;}
.ws181{word-spacing:-0.504206pt;}
.ws1ba{word-spacing:-0.490579pt;}
.ws1a8{word-spacing:-0.471341pt;}
.wsf{word-spacing:-0.425071pt;}
.ws1a9{word-spacing:-0.404006pt;}
.ws194{word-spacing:-0.371937pt;}
.ws20c{word-spacing:-0.334746pt;}
.ws112{word-spacing:-0.318803pt;}
.ws50{word-spacing:-0.299264pt;}
.wsbf{word-spacing:-0.283232pt;}
.wsbe{word-spacing:-0.267200pt;}
.ws6{word-spacing:-0.265669pt;}
.ws21f{word-spacing:-0.239104pt;}
.ws137{word-spacing:-0.235136pt;}
.ws36{word-spacing:-0.229824pt;}
.ws1b9{word-spacing:-0.221242pt;}
.ws25{word-spacing:-0.212535pt;}
.ws139{word-spacing:-0.208416pt;}
.ws1a7{word-spacing:-0.206842pt;}
.ws15a{word-spacing:-0.195350pt;}
.ws21c{word-spacing:-0.191283pt;}
.wsf7{word-spacing:-0.172800pt;}
.ws17{word-spacing:-0.159402pt;}
.ws217{word-spacing:-0.143462pt;}
.wsc{word-spacing:-0.106268pt;}
.ws216{word-spacing:-0.095642pt;}
.ws35{word-spacing:-0.076608pt;}
.ws1a6{word-spacing:-0.068947pt;}
.ws159{word-spacing:-0.065117pt;}
.ws13{word-spacing:-0.053134pt;}
.ws1a3{word-spacing:-0.047821pt;}
.ws0{word-spacing:0.000000pt;}
.ws144{word-spacing:0.021376pt;}
.wse7{word-spacing:0.026720pt;}
.ws1b3{word-spacing:0.028858pt;}
.ws182{word-spacing:0.031797pt;}
.ws11b{word-spacing:0.037408pt;}
.ws127{word-spacing:0.042752pt;}
.ws173{word-spacing:0.045424pt;}
.ws14d{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.048096pt;}
.wsd{word-spacing:0.053134pt;}
.ws91{word-spacing:0.053440pt;}
.ws138{word-spacing:0.064128pt;}
.ws185{word-spacing:0.068136pt;}
.ws186{word-spacing:0.072678pt;}
.wsb3{word-spacing:0.074816pt;}
.ws174{word-spacing:0.077221pt;}
.wsba{word-spacing:0.080160pt;}
.ws183{word-spacing:0.081763pt;}
.ws72{word-spacing:0.085504pt;}
.ws15f{word-spacing:0.085680pt;}
.wsb2{word-spacing:0.090848pt;}
.wsf3{word-spacing:0.091200pt;}
.ws1d6{word-spacing:0.091382pt;}
.ws22f{word-spacing:0.095642pt;}
.ws1c0{word-spacing:0.096192pt;}
.ws15c{word-spacing:0.097920pt;}
.wsef{word-spacing:0.105600pt;}
.ws2c{word-spacing:0.106268pt;}
.wseb{word-spacing:0.106880pt;}
.wsf0{word-spacing:0.110400pt;}
.ws1aa{word-spacing:0.110621pt;}
.ws187{word-spacing:0.113560pt;}
.ws184{word-spacing:0.114240pt;}
.wsc3{word-spacing:0.115200pt;}
.ws1b8{word-spacing:0.120960pt;}
.wsf4{word-spacing:0.124800pt;}
.ws15d{word-spacing:0.126480pt;}
.ws6c{word-spacing:0.128256pt;}
.wsf1{word-spacing:0.129600pt;}
.ws1b2{word-spacing:0.129859pt;}
.ws3e{word-spacing:0.134400pt;}
.ws3f{word-spacing:0.139200pt;}
.ws1a5{word-spacing:0.143462pt;}
.ws3d{word-spacing:0.144288pt;}
.ws40{word-spacing:0.148800pt;}
.wsc2{word-spacing:0.149632pt;}
.wsf8{word-spacing:0.153600pt;}
.wsea{word-spacing:0.154976pt;}
.ws14a{word-spacing:0.158400pt;}
.ws14{word-spacing:0.159402pt;}
.wsf6{word-spacing:0.187200pt;}
.ws1a4{word-spacing:0.191283pt;}
.wsee{word-spacing:0.192000pt;}
.wsf2{word-spacing:0.211200pt;}
.wse{word-spacing:0.212535pt;}
.ws10a{word-spacing:0.239104pt;}
.ws1c{word-spacing:0.265669pt;}
.ws21d{word-spacing:0.286925pt;}
.ws85{word-spacing:0.318803pt;}
.ws1ad{word-spacing:0.331862pt;}
.ws20b{word-spacing:0.334746pt;}
.wsbc{word-spacing:0.336672pt;}
.ws12f{word-spacing:0.342016pt;}
.wsbb{word-spacing:0.368736pt;}
.ws10c{word-spacing:0.371937pt;}
.ws12e{word-spacing:0.422176pt;}
.ws1a1{word-spacing:0.425071pt;}
.ws1be{word-spacing:0.456912pt;}
.ws153{word-spacing:0.478205pt;}
.ws109{word-spacing:0.526029pt;}
.ws198{word-spacing:0.531339pt;}
.ws77{word-spacing:0.584473pt;}
.ws1bf{word-spacing:0.601200pt;}
.ws7c{word-spacing:0.637606pt;}
.ws65{word-spacing:0.657312pt;}
.ws12c{word-spacing:0.673344pt;}
.ws64{word-spacing:0.689376pt;}
.ws7b{word-spacing:0.690740pt;}
.ws66{word-spacing:0.705408pt;}
.ws79{word-spacing:0.743874pt;}
.ws214{word-spacing:0.765133pt;}
.ws7a{word-spacing:0.797008pt;}
.ws7{word-spacing:0.850142pt;}
.ws17c{word-spacing:0.858514pt;}
.ws19f{word-spacing:0.903276pt;}
.ws154{word-spacing:0.956410pt;}
.ws1b4{word-spacing:0.997920pt;}
.ws225{word-spacing:1.004237pt;}
.ws22{word-spacing:1.009543pt;}
.wsf9{word-spacing:1.020704pt;}
.ws53{word-spacing:1.031392pt;}
.ws61{word-spacing:1.036736pt;}
.ws227{word-spacing:1.052058pt;}
.ws60{word-spacing:1.052768pt;}
.ws196{word-spacing:1.062677pt;}
.ws54{word-spacing:1.079488pt;}
.ws29{word-spacing:1.115811pt;}
.ws228{word-spacing:1.147699pt;}
.ws86{word-spacing:1.168945pt;}
.ws17d{word-spacing:1.194651pt;}
.ws1fa{word-spacing:1.275213pt;}
.ws1de{word-spacing:1.328347pt;}
.ws11d{word-spacing:1.341344pt;}
.ws11c{word-spacing:1.373408pt;}
.ws5e{word-spacing:1.378752pt;}
.ws2a{word-spacing:1.381481pt;}
.ws11e{word-spacing:1.394784pt;}
.ws16{word-spacing:1.434614pt;}
.ws10b{word-spacing:1.434624pt;}
.ws160{word-spacing:1.444483pt;}
.ws191{word-spacing:1.487748pt;}
.ws1ac{word-spacing:1.524643pt;}
.ws5f{word-spacing:1.533728pt;}
.ws1ab{word-spacing:1.534262pt;}
.ws1a0{word-spacing:1.594016pt;}
.ws230{word-spacing:1.625907pt;}
.ws113{word-spacing:1.647150pt;}
.ws12a{word-spacing:1.661984pt;}
.ws122{word-spacing:1.704736pt;}
.ws123{word-spacing:1.720768pt;}
.wsd5{word-spacing:1.753418pt;}
.ws12b{word-spacing:1.774208pt;}
.ws84{word-spacing:1.859685pt;}
.ws101{word-spacing:1.912819pt;}
.wsa3{word-spacing:1.950560pt;}
.ws1f1{word-spacing:1.965953pt;}
.ws3a{word-spacing:1.998656pt;}
.ws3b{word-spacing:2.009344pt;}
.ws90{word-spacing:2.025376pt;}
.ws1d1{word-spacing:2.029651pt;}
.ws1ae{word-spacing:2.048890pt;}
.ws19e{word-spacing:2.072221pt;}
.ws1cf{word-spacing:2.072938pt;}
.wsa4{word-spacing:2.084160pt;}
.ws1d0{word-spacing:2.111414pt;}
.ws156{word-spacing:2.125355pt;}
.ws31{word-spacing:2.178489pt;}
.ws1d3{word-spacing:2.222035pt;}
.wsb{word-spacing:2.231622pt;}
.ws80{word-spacing:2.284756pt;}
.wsd9{word-spacing:2.287232pt;}
.wsda{word-spacing:2.324640pt;}
.ws43{word-spacing:2.335328pt;}
.ws107{word-spacing:2.337890pt;}
.ws41{word-spacing:2.340672pt;}
.ws42{word-spacing:2.346016pt;}
.ws44{word-spacing:2.351360pt;}
.ws1f6{word-spacing:2.391024pt;}
.ws1e0{word-spacing:2.444158pt;}
.ws1d2{word-spacing:2.481754pt;}
.ws172{word-spacing:2.493778pt;}
.ws197{word-spacing:2.603559pt;}
.wsb8{word-spacing:2.623904pt;}
.ws211{word-spacing:2.630144pt;}
.ws83{word-spacing:2.656693pt;}
.wsb9{word-spacing:2.661312pt;}
.wse9{word-spacing:2.672000pt;}
.ws13b{word-spacing:2.677344pt;}
.ws146{word-spacing:2.683200pt;}
.ws145{word-spacing:2.692800pt;}
.ws1b{word-spacing:2.709827pt;}
.wsb1{word-spacing:2.720096pt;}
.ws20a{word-spacing:2.773606pt;}
.ws110{word-spacing:2.816095pt;}
.ws2b{word-spacing:2.869229pt;}
.ws19b{word-spacing:2.922363pt;}
.ws13a{word-spacing:2.971264pt;}
.ws13c{word-spacing:3.014016pt;}
.ws105{word-spacing:3.028630pt;}
.ws1f5{word-spacing:3.081764pt;}
.ws1e8{word-spacing:3.188032pt;}
.ws1fc{word-spacing:3.241166pt;}
.wsae{word-spacing:3.286560pt;}
.ws163{word-spacing:3.293240pt;}
.ws162{word-spacing:3.306867pt;}
.wsad{word-spacing:3.307936pt;}
.ws1f3{word-spacing:3.347434pt;}
.ws219{word-spacing:3.395277pt;}
.ws103{word-spacing:3.400567pt;}
.ws14c{word-spacing:3.453701pt;}
.ws130{word-spacing:3.543072pt;}
.wsb6{word-spacing:3.559104pt;}
.ws75{word-spacing:3.559969pt;}
.ws5b{word-spacing:3.585824pt;}
.wsb5{word-spacing:3.596512pt;}
.wsb4{word-spacing:3.601856pt;}
.ws4{word-spacing:3.613103pt;}
.ws1f4{word-spacing:3.666237pt;}
.ws2d{word-spacing:3.719371pt;}
.ws7f{word-spacing:3.772505pt;}
.ws1e5{word-spacing:3.825638pt;}
.ws213{word-spacing:3.825664pt;}
.ws1d{word-spacing:3.878772pt;}
.ws131{word-spacing:3.901120pt;}
.ws4a{word-spacing:3.917152pt;}
.ws15{word-spacing:3.931906pt;}
.ws10d{word-spacing:3.985040pt;}
.ws19c{word-spacing:4.038174pt;}
.ws1e7{word-spacing:4.197575pt;}
.ws93{word-spacing:4.237792pt;}
.wsff{word-spacing:4.250709pt;}
.ws1e{word-spacing:4.250720pt;}
.ws210{word-spacing:4.256051pt;}
.ws92{word-spacing:4.296576pt;}
.ws1ff{word-spacing:4.303843pt;}
.ws21b{word-spacing:4.303872pt;}
.wsd2{word-spacing:4.356977pt;}
.ws1cc{word-spacing:4.357498pt;}
.ws30{word-spacing:4.516379pt;}
.ws4b{word-spacing:4.574464pt;}
.ws147{word-spacing:4.593600pt;}
.ws1e6{word-spacing:4.622646pt;}
.ws149{word-spacing:4.627200pt;}
.ws148{word-spacing:4.641600pt;}
.ws177{word-spacing:4.678672pt;}
.ws178{word-spacing:4.692299pt;}
.ws212{word-spacing:4.777190pt;}
.ws1{word-spacing:4.782080pt;}
.ws22d{word-spacing:4.782293pt;}
.ws220{word-spacing:4.784085pt;}
.ws12{word-spacing:4.835182pt;}
.wsa2{word-spacing:4.847008pt;}
.ws4c{word-spacing:4.873728pt;}
.ws218{word-spacing:4.877722pt;}
.ws18d{word-spacing:4.888316pt;}
.ws1fd{word-spacing:4.941450pt;}
.ws1ed{word-spacing:5.100851pt;}
.ws78{word-spacing:5.153985pt;}
.wsa7{word-spacing:5.162304pt;}
.ws10{word-spacing:5.307978pt;}
.ws11{word-spacing:5.313387pt;}
.ws22c{word-spacing:5.355930pt;}
.ws106{word-spacing:5.366521pt;}
.ws32{word-spacing:5.472788pt;}
.ws179{word-spacing:5.487219pt;}
.ws16c{word-spacing:5.505389pt;}
.ws1f0{word-spacing:5.525922pt;}
.ws22b{word-spacing:5.547213pt;}
.ws16d{word-spacing:5.573525pt;}
.ws18b{word-spacing:5.579056pt;}
.wsd0{word-spacing:5.632190pt;}
.ws19a{word-spacing:5.685324pt;}
.ws136{word-spacing:5.798240pt;}
.ws142{word-spacing:5.819616pt;}
.wsce{word-spacing:5.835648pt;}
.ws2f{word-spacing:5.844725pt;}
.ws135{word-spacing:5.862368pt;}
.ws18a{word-spacing:5.897859pt;}
.wse1{word-spacing:5.947872pt;}
.ws1fb{word-spacing:5.950993pt;}
.ws21e{word-spacing:5.977600pt;}
.ws170{word-spacing:6.027765pt;}
.ws16f{word-spacing:6.068646pt;}
.ws208{word-spacing:6.110395pt;}
.ws9a{word-spacing:6.129568pt;}
.ws119{word-spacing:6.134912pt;}
.ws171{word-spacing:6.159494pt;}
.ws27{word-spacing:6.163529pt;}
.ws6e{word-spacing:6.172320pt;}
.wsdc{word-spacing:6.188352pt;}
.ws10e{word-spacing:6.216662pt;}
.ws6d{word-spacing:6.257824pt;}
.wsdd{word-spacing:6.263168pt;}
.wsd3{word-spacing:6.269796pt;}
.ws1d8{word-spacing:6.411197pt;}
.ws4e{word-spacing:6.439520pt;}
.ws1d7{word-spacing:6.492960pt;}
.ws4d{word-spacing:6.498304pt;}
.ws51{word-spacing:6.508992pt;}
.ws52{word-spacing:6.530368pt;}
.ws100{word-spacing:6.535466pt;}
.ws18f{word-spacing:6.641733pt;}
.ws1cb{word-spacing:6.983539pt;}
.ws140{word-spacing:7.102176pt;}
.ws141{word-spacing:7.134240pt;}
.ws5{word-spacing:7.226206pt;}
.ws1ca{word-spacing:7.281734pt;}
.ws1c9{word-spacing:7.373117pt;}
.ws104{word-spacing:7.385607pt;}
.ws209{word-spacing:7.916946pt;}
.ws1ce{word-spacing:7.950269pt;}
.ws9c{word-spacing:8.112192pt;}
.ws9b{word-spacing:8.122880pt;}
.ws9d{word-spacing:8.144256pt;}
.ws1cd{word-spacing:8.171510pt;}
.ws202{word-spacing:8.182615pt;}
.ws37{word-spacing:8.363360pt;}
.ws229{word-spacing:8.559923pt;}
.ws2e{word-spacing:8.607686pt;}
.wsaa{word-spacing:8.673312pt;}
.ws190{word-spacing:8.820222pt;}
.ws1c2{word-spacing:8.960285pt;}
.wsc0{word-spacing:9.020672pt;}
.ws206{word-spacing:9.085891pt;}
.ws1c3{word-spacing:9.109382pt;}
.wsc1{word-spacing:9.271840pt;}
.ws201{word-spacing:9.298427pt;}
.ws1db{word-spacing:9.527818pt;}
.ws1dc{word-spacing:9.604771pt;}
.ws28{word-spacing:9.723498pt;}
.wsd6{word-spacing:10.020000pt;}
.ws18e{word-spacing:10.042301pt;}
.ws231{word-spacing:10.042368pt;}
.ws1c1{word-spacing:10.162685pt;}
.ws68{word-spacing:10.340640pt;}
.ws67{word-spacing:10.345984pt;}
.ws56{word-spacing:10.661280pt;}
.ws55{word-spacing:10.666624pt;}
.ws1b1{word-spacing:10.696550pt;}
.ws1bd{word-spacing:10.797552pt;}
.ws1af{word-spacing:11.033222pt;}
.ws1b0{word-spacing:11.062080pt;}
.ws47{word-spacing:11.339968pt;}
.ws48{word-spacing:11.382720pt;}
.ws200{word-spacing:11.476915pt;}
.ws120{word-spacing:11.949184pt;}
.wsdb{word-spacing:12.024000pt;}
.wse8{word-spacing:12.205696pt;}
.ws11f{word-spacing:12.221728pt;}
.ws10f{word-spacing:12.273923pt;}
.ws222{word-spacing:12.529050pt;}
.ws221{word-spacing:12.576870pt;}
.ws108{word-spacing:12.698994pt;}
.ws26{word-spacing:12.858396pt;}
.ws22a{word-spacing:13.055078pt;}
.ws165{word-spacing:13.145706pt;}
.wsa5{word-spacing:13.167616pt;}
.ws232{word-spacing:13.198541pt;}
.ws13d{word-spacing:13.199680pt;}
.wsc7{word-spacing:13.290528pt;}
.wsc6{word-spacing:13.301216pt;}
.ws17f{word-spacing:13.431877pt;}
.ws17e{word-spacing:13.468216pt;}
.wse6{word-spacing:13.536352pt;}
.wse5{word-spacing:13.557728pt;}
.ws164{word-spacing:13.559064pt;}
.ws49{word-spacing:13.867680pt;}
.ws215{word-spacing:13.963674pt;}
.ws13e{word-spacing:14.134880pt;}
.ws169{word-spacing:14.149576pt;}
.ws13f{word-spacing:14.161600pt;}
.ws17b{word-spacing:14.213170pt;}
.ws17a{word-spacing:14.231339pt;}
.ws16b{word-spacing:14.240424pt;}
.ws125{word-spacing:14.439488pt;}
.ws126{word-spacing:14.455520pt;}
.ws121{word-spacing:14.492928pt;}
.ws16a{word-spacing:14.499341pt;}
.ws124{word-spacing:14.503616pt;}
.ws6a{word-spacing:14.508960pt;}
.wse0{word-spacing:14.781504pt;}
.ws5d{word-spacing:14.813568pt;}
.ws6b{word-spacing:14.829600pt;}
.ws176{word-spacing:15.021717pt;}
.ws175{word-spacing:15.089853pt;}
.ws5c{word-spacing:15.112832pt;}
.wsb7{word-spacing:15.396064pt;}
.ws21a{word-spacing:15.398298pt;}
.ws45{word-spacing:15.470880pt;}
.ws46{word-spacing:15.518976pt;}
.ws59{word-spacing:15.764800pt;}
.ws5a{word-spacing:15.770144pt;}
.wsc4{word-spacing:15.775488pt;}
.wsc8{word-spacing:17.015296pt;}
.wsc9{word-spacing:17.068736pt;}
.ws8d{word-spacing:17.268507pt;}
.wsc5{word-spacing:17.971872pt;}
.ws4f{word-spacing:18.602464pt;}
.wsac{word-spacing:19.366656pt;}
.ws161{word-spacing:19.373336pt;}
.wscd{word-spacing:20.253760pt;}
.wscc{word-spacing:20.307200pt;}
.ws157{word-spacing:20.509673pt;}
.ws224{word-spacing:20.610765pt;}
.ws69{word-spacing:21.514944pt;}
.ws204{word-spacing:21.838019pt;}
.ws203{word-spacing:24.866650pt;}
.ws1ea{word-spacing:26.684006pt;}
.ws223{word-spacing:26.827469pt;}
.ws205{word-spacing:26.992004pt;}
.ws1e9{word-spacing:27.496960pt;}
.ws128{word-spacing:29.482848pt;}
.ws129{word-spacing:29.563008pt;}
.ws95{word-spacing:31.727328pt;}
.ws94{word-spacing:31.770080pt;}
.ws155{word-spacing:35.812226pt;}
.ws143{word-spacing:41.020544pt;}
.ws8a{word-spacing:188.547465pt;}
.ws88{word-spacing:208.726886pt;}
.ws150{word-spacing:234.561024pt;}
.ws14f{word-spacing:246.516224pt;}
.ws1ec{word-spacing:265.740186pt;}
.wsf5{word-spacing:271.267200pt;}
.ws21{word-spacing:334.319128pt;}
.ws8b{word-spacing:488.687991pt;}
.ws8c{word-spacing:497.487019pt;}
.ws14e{word-spacing:591.804783pt;}
.ws15e{word-spacing:866.526720pt;}
.ws15b{word-spacing:912.230880pt;}
._5f{margin-left:-688.304160pt;}
._63{margin-left:-642.318480pt;}
._31{margin-left:-271.844041pt;}
._83{margin-left:-17.722501pt;}
._65{margin-left:-14.008762pt;}
._66{margin-left:-13.082112pt;}
._7{margin-left:-6.168883pt;}
._6{margin-left:-4.447334pt;}
._1{margin-left:-3.101863pt;}
._9{margin-left:-2.144797pt;}
._0{margin-left:-1.103159pt;}
._2{width:1.272146pt;}
._86{width:2.673758pt;}
._44{width:3.593396pt;}
._1a{width:7.767127pt;}
._e{width:9.995958pt;}
._10{width:11.257642pt;}
._17{width:12.268569pt;}
._82{width:13.192052pt;}
._d{width:14.212976pt;}
._16{width:15.130901pt;}
._8{width:16.737280pt;}
._a{width:18.430155pt;}
._26{width:19.806281pt;}
._18{width:21.094654pt;}
._12{width:21.997421pt;}
._15{width:23.578785pt;}
._19{width:24.654114pt;}
._c{width:25.716791pt;}
._46{width:27.401165pt;}
._69{width:29.276761pt;}
._f{width:30.870777pt;}
._84{width:32.750759pt;}
._25{width:35.971628pt;}
._14{width:37.299974pt;}
._45{width:40.315953pt;}
._b{width:41.428506pt;}
._81{width:42.719629pt;}
._7e{width:45.135225pt;}
._80{width:47.170222pt;}
._3{width:48.381408pt;}
._89{width:51.940527pt;}
._88{width:52.930487pt;}
._87{width:54.754816pt;}
._8a{width:57.334009pt;}
._85{width:58.250271pt;}
._67{width:59.669332pt;}
._4{width:61.660882pt;}
._1b{width:64.366797pt;}
._5{width:74.942911pt;}
._32{width:96.042359pt;}
._7f{width:100.375229pt;}
._2b{width:123.037559pt;}
._2c{width:144.583919pt;}
._40{width:155.649565pt;}
._4b{width:173.199799pt;}
._39{width:182.430276pt;}
._3a{width:201.277747pt;}
._21{width:202.489899pt;}
._7c{width:205.007770pt;}
._22{width:215.298236pt;}
._1e{width:222.990246pt;}
._61{width:224.224560pt;}
._58{width:237.334630pt;}
._1d{width:245.894554pt;}
._33{width:249.546359pt;}
._1f{width:253.834662pt;}
._49{width:258.471424pt;}
._30{width:265.299119pt;}
._1c{width:267.748659pt;}
._6e{width:277.982310pt;}
._7b{width:293.219866pt;}
._41{width:306.579149pt;}
._56{width:315.036292pt;}
._77{width:323.883140pt;}
._3e{width:327.333376pt;}
._3f{width:329.477751pt;}
._70{width:330.572130pt;}
._4e{width:333.973329pt;}
._24{width:363.198976pt;}
._78{width:364.620945pt;}
._76{width:371.852740pt;}
._23{width:410.979191pt;}
._20{width:428.148617pt;}
._54{width:435.735991pt;}
._34{width:436.958400pt;}
._6c{width:452.425882pt;}
._35{width:455.202359pt;}
._72{width:463.479194pt;}
._7a{width:481.411994pt;}
._42{width:484.892484pt;}
._6f{width:490.450125pt;}
._43{width:503.732608pt;}
._48{width:514.493440pt;}
._71{width:540.226871pt;}
._6d{width:542.036096pt;}
._6b{width:544.296346pt;}
._7d{width:561.511834pt;}
._28{width:569.318400pt;}
._60{width:586.664759pt;}
._62{width:589.670160pt;}
._2a{width:597.926400pt;}
._37{width:625.878630pt;}
._53{width:635.961681pt;}
._38{width:654.140723pt;}
._55{width:655.950775pt;}
._2d{width:661.075200pt;}
._2f{width:669.829559pt;}
._29{width:674.355959pt;}
._47{width:676.329574pt;}
._79{width:679.437926pt;}
._52{width:707.508736pt;}
._5b{width:709.844817pt;}
._5c{width:711.430042pt;}
._3b{width:716.355584pt;}
._4c{width:721.472410pt;}
._3d{width:725.154611pt;}
._27{width:731.184000pt;}
._36{width:754.229658pt;}
._57{width:756.190310pt;}
._2e{width:765.105600pt;}
._75{width:772.784128pt;}
._73{width:789.903974pt;}
._64{width:800.309879pt;}
._3c{width:823.617638pt;}
._51{width:836.624896pt;}
._74{width:866.178150pt;}
._4d{width:947.282227pt;}
._5e{width:957.802803pt;}
._50{width:989.268890pt;}
._4f{width:1032.259789pt;}
._5d{width:1035.607245pt;}
._59{width:1082.566622pt;}
._5a{width:1089.023078pt;}
._4a{width:1141.052109pt;}
._6a{width:1189.188908pt;}
._68{width:1288.376518pt;}
._11{width:1309.630118pt;}
._13{width:1343.049692pt;}
.fs6{font-size:34.633760pt;}
.fs11{font-size:36.176000pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:38.304000pt;}
.fs7{font-size:39.581440pt;}
.fs12{font-size:40.800000pt;}
.fsb{font-size:41.988267pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs18{font-size:43.200000pt;}
.fs13{font-size:45.424000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs16{font-size:48.096000pt;}
.fs5{font-size:49.476800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs14{font-size:54.400000pt;}
.fs1{font-size:56.000000pt;}
.fs17{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.y14c{bottom:-715.736557pt;}
.y14b{bottom:-697.736629pt;}
.y14a{bottom:-679.736701pt;}
.y149{bottom:-661.816933pt;}
.y148{bottom:-626.937733pt;}
.y147{bottom:-610.698133pt;}
.y146{bottom:-594.537733pt;}
.y7e{bottom:-578.871379pt;}
.y145{bottom:-578.298133pt;}
.y144{bottom:-562.137733pt;}
.y7d{bottom:-560.871451pt;}
.y143{bottom:-545.977333pt;}
.y7c{bottom:-542.951683pt;}
.y142{bottom:-529.737733pt;}
.y7b{bottom:-524.951755pt;}
.y141{bottom:-513.577333pt;}
.y7a{bottom:-506.951827pt;}
.y140{bottom:-497.416933pt;}
.y79{bottom:-488.951899pt;}
.y13f{bottom:-481.177333pt;}
.y78{bottom:-470.951971pt;}
.y13e{bottom:-465.016933pt;}
.y77{bottom:-452.952043pt;}
.y13d{bottom:-448.777333pt;}
.y76{bottom:-435.032275pt;}
.y13c{bottom:-432.616933pt;}
.y75{bottom:-417.032347pt;}
.y13b{bottom:-416.456933pt;}
.y2c0{bottom:-404.193792pt;}
.y13a{bottom:-399.496533pt;}
.y74{bottom:-399.032419pt;}
.y2bf{bottom:-387.993857pt;}
.y73{bottom:-381.032491pt;}
.y139{bottom:-374.056533pt;}
.y2be{bottom:-371.793922pt;}
.y72{bottom:-363.032563pt;}
.y138{bottom:-356.616933pt;}
.y2bd{bottom:-355.666130pt;}
.y71{bottom:-345.032635pt;}
.y2bc{bottom:-339.466195pt;}
.y70{bottom:-327.032707pt;}
.y2bb{bottom:-323.266260pt;}
.y137{bottom:-322.935605pt;}
.y6f{bottom:-309.112939pt;}
.y2ba{bottom:-307.066325pt;}
.y136{bottom:-304.935677pt;}
.y6e{bottom:-291.113011pt;}
.y2b9{bottom:-290.866390pt;}
.y135{bottom:-286.935749pt;}
.y2b8{bottom:-274.666454pt;}
.y6d{bottom:-273.113083pt;}
.y134{bottom:-269.015981pt;}
.y2b7{bottom:-258.466519pt;}
.y6c{bottom:-255.113155pt;}
.y133{bottom:-251.016053pt;}
.y2b6{bottom:-242.338728pt;}
.y6b{bottom:-237.113227pt;}
.y132{bottom:-233.016125pt;}
.y2b5{bottom:-226.138793pt;}
.y6a{bottom:-219.113299pt;}
.y131{bottom:-215.016197pt;}
.y2b4{bottom:-209.938858pt;}
.y69{bottom:-201.113371pt;}
.y130{bottom:-197.016269pt;}
.y2b3{bottom:-193.738922pt;}
.y68{bottom:-183.193603pt;}
.y12f{bottom:-179.016341pt;}
.y2b2{bottom:-177.538987pt;}
.y67{bottom:-165.193675pt;}
.y2b1{bottom:-161.339052pt;}
.y12e{bottom:-161.016413pt;}
.yf4{bottom:-158.457675pt;}
.y66{bottom:-147.193747pt;}
.y2b0{bottom:-145.139117pt;}
.y12d{bottom:-143.096645pt;}
.yf3{bottom:-140.457747pt;}
.y65{bottom:-129.193819pt;}
.y2af{bottom:-129.011326pt;}
.y12c{bottom:-125.096717pt;}
.yf2{bottom:-122.457819pt;}
.y2ae{bottom:-112.811390pt;}
.y64{bottom:-111.193891pt;}
.y12b{bottom:-107.096789pt;}
.yf1{bottom:-104.457891pt;}
.y2ad{bottom:-96.611455pt;}
.y63{bottom:-93.193963pt;}
.y12a{bottom:-89.096861pt;}
.yf0{bottom:-86.457963pt;}
.y2ac{bottom:-80.411520pt;}
.y62{bottom:-75.194035pt;}
.y24a{bottom:-72.813972pt;}
.y129{bottom:-71.096933pt;}
.yef{bottom:-68.538195pt;}
.y1b8{bottom:-60.459200pt;}
.y61{bottom:-57.274267pt;}
.y249{bottom:-50.714060pt;}
.yee{bottom:-50.538267pt;}
.y2ab{bottom:-50.171280pt;}
.y1b7{bottom:-43.179200pt;}
.y128{bottom:-37.496800pt;}
.y2aa{bottom:-34.619280pt;}
.y1b6{bottom:-25.739600pt;}
.y60{bottom:-23.594267pt;}
.y248{bottom:-22.086060pt;}
.y2a9{bottom:-18.923640pt;}
.y1de{bottom:-16.951067pt;}
.yed{bottom:-16.858267pt;}
.y127{bottom:-5.016933pt;}
.y247{bottom:-1.414060pt;}
.y5f{bottom:-0.634267pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:0.328933pt;}
.y31{bottom:3.044747pt;}
.y2a8{bottom:3.396360pt;}
.yec{bottom:4.824893pt;}
.y1b5{bottom:5.220400pt;}
.y25{bottom:11.257415pt;}
.y30{bottom:12.578910pt;}
.y1dc{bottom:17.768533pt;}
.y24{bottom:23.131847pt;}
.y1db{bottom:48.728533pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y26a{bottom:96.544000pt;}
.y51{bottom:101.165333pt;}
.yc8{bottom:103.305333pt;}
.y1fe{bottom:106.438667pt;}
.y317{bottom:106.545333pt;}
.y9a{bottom:107.168000pt;}
.y2f4{bottom:108.310667pt;}
.y297{bottom:109.441333pt;}
.y269{bottom:114.556000pt;}
.y50{bottom:119.177333pt;}
.yc7{bottom:121.317333pt;}
.y22{bottom:123.790666pt;}
.y1fd{bottom:124.450667pt;}
.y316{bottom:124.558667pt;}
.y99{bottom:125.180000pt;}
.y2f3{bottom:126.322667pt;}
.y296{bottom:127.454667pt;}
.y194{bottom:129.469333pt;}
.y268{bottom:132.568000pt;}
.y2c3{bottom:135.325333pt;}
.y4f{bottom:137.190667pt;}
.yc6{bottom:139.329333pt;}
.y33c{bottom:139.729333pt;}
.y1fc{bottom:142.462667pt;}
.y315{bottom:142.570667pt;}
.y98{bottom:143.193333pt;}
.y2f2{bottom:144.336000pt;}
.y295{bottom:145.466667pt;}
.y193{bottom:147.481333pt;}
.y267{bottom:150.581333pt;}
.y2c2{bottom:152.420000pt;}
.y4e{bottom:155.202667pt;}
.y33b{bottom:156.945333pt;}
.yc5{bottom:157.342667pt;}
.y1fb{bottom:160.476000pt;}
.y314{bottom:160.584000pt;}
.yeb{bottom:160.824269pt;}
.y97{bottom:161.205333pt;}
.y2f1{bottom:162.348000pt;}
.y294{bottom:163.478667pt;}
.y192{bottom:165.493333pt;}
.y266{bottom:168.593333pt;}
.y2c1{bottom:169.516000pt;}
.y4d{bottom:173.216000pt;}
.y164{bottom:173.636000pt;}
.y33a{bottom:174.160000pt;}
.y19{bottom:175.052000pt;}
.yc4{bottom:175.354667pt;}
.y1fa{bottom:178.488000pt;}
.y313{bottom:178.596000pt;}
.yea{bottom:178.824197pt;}
.y96{bottom:179.218667pt;}
.y2f0{bottom:180.361333pt;}
.y293{bottom:181.492000pt;}
.y119{bottom:181.798667pt;}
.y191{bottom:183.506667pt;}
.y22a{bottom:185.169333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y265{bottom:186.606667pt;}
.y29e{bottom:189.453333pt;}
.y4c{bottom:191.228000pt;}
.y339{bottom:191.376000pt;}
.y163{bottom:191.649333pt;}
.yc3{bottom:193.368000pt;}
.y1f9{bottom:196.501333pt;}
.y312{bottom:196.608000pt;}
.ye9{bottom:196.824125pt;}
.y95{bottom:197.230667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y2ef{bottom:198.373333pt;}
.y292{bottom:199.504000pt;}
.y126{bottom:199.783139pt;}
.y118{bottom:199.812000pt;}
.y190{bottom:201.518667pt;}
.y229{bottom:203.181333pt;}
.y264{bottom:204.618667pt;}
.y338{bottom:208.592000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y4b{bottom:209.240000pt;}
.y162{bottom:209.661333pt;}
.yc2{bottom:211.380000pt;}
.y1f8{bottom:214.513333pt;}
.y311{bottom:214.621333pt;}
.ye8{bottom:214.743893pt;}
.y94{bottom:215.242667pt;}
.y2ee{bottom:216.385333pt;}
.y291{bottom:217.517333pt;}
.y125{bottom:217.783067pt;}
.y117{bottom:217.824000pt;}
.y18f{bottom:219.532000pt;}
.y228{bottom:221.194667pt;}
.y263{bottom:222.630667pt;}
.y337{bottom:225.806667pt;}
.y4a{bottom:227.253333pt;}
.y161{bottom:227.673333pt;}
.yc1{bottom:229.392000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1f7{bottom:232.525333pt;}
.y310{bottom:232.633333pt;}
.ye7{bottom:232.743821pt;}
.y93{bottom:233.256000pt;}
.y2ed{bottom:234.398667pt;}
.y290{bottom:235.529333pt;}
.y116{bottom:235.836000pt;}
.y18e{bottom:237.544000pt;}
.y227{bottom:239.206667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y336{bottom:243.022667pt;}
.y49{bottom:245.265333pt;}
.y160{bottom:245.686667pt;}
.yc0{bottom:247.405333pt;}
.y1f6{bottom:250.538667pt;}
.y30f{bottom:250.646667pt;}
.ye6{bottom:250.743749pt;}
.y124{bottom:251.063067pt;}
.y262{bottom:251.244000pt;}
.y92{bottom:251.268000pt;}
.y2ec{bottom:252.410667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y28f{bottom:253.541333pt;}
.y115{bottom:253.849333pt;}
.y18d{bottom:255.556000pt;}
.y226{bottom:257.218667pt;}
.y335{bottom:260.237333pt;}
.y48{bottom:263.278667pt;}
.y15f{bottom:263.698667pt;}
.ybf{bottom:265.417333pt;}
.y1f5{bottom:268.550667pt;}
.y30e{bottom:268.658667pt;}
.ye5{bottom:268.743677pt;}
.y261{bottom:269.257333pt;}
.y91{bottom:269.280000pt;}
.y2eb{bottom:270.424000pt;}
.y28e{bottom:271.554667pt;}
.y114{bottom:271.861333pt;}
.y18c{bottom:273.569333pt;}
.y225{bottom:275.232000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y334{bottom:277.453333pt;}
.y47{bottom:281.290667pt;}
.y15e{bottom:281.712000pt;}
.ybe{bottom:283.429333pt;}
.y1f4{bottom:286.564000pt;}
.y30d{bottom:286.670667pt;}
.ye4{bottom:286.743605pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y90{bottom:287.293333pt;}
.y2ea{bottom:288.436000pt;}
.y260{bottom:288.597333pt;}
.y28d{bottom:289.566667pt;}
.y113{bottom:289.874667pt;}
.y246{bottom:290.443654pt;}
.y18b{bottom:291.581333pt;}
.y2a7{bottom:292.405044pt;}
.y224{bottom:293.244000pt;}
.y333{bottom:294.669333pt;}
.y1b4{bottom:298.423224pt;}
.y46{bottom:299.302667pt;}
.y15d{bottom:299.724000pt;}
.y5e{bottom:300.646109pt;}
.ybd{bottom:301.442667pt;}
.y1f3{bottom:304.576000pt;}
.y30c{bottom:304.684000pt;}
.ye3{bottom:304.743533pt;}
.y8f{bottom:305.305333pt;}
.y245{bottom:305.675456pt;}
.y2e9{bottom:306.448000pt;}
.y25f{bottom:306.610667pt;}
.y28c{bottom:307.580000pt;}
.y112{bottom:307.886667pt;}
.y2a6{bottom:308.604979pt;}
.y10{bottom:309.452000pt;}
.y18a{bottom:309.594667pt;}
.y223{bottom:311.256000pt;}
.y332{bottom:311.884000pt;}
.y1b3{bottom:316.423152pt;}
.y45{bottom:317.316000pt;}
.y15c{bottom:317.736000pt;}
.y5d{bottom:318.565877pt;}
.ybc{bottom:319.454667pt;}
.y244{bottom:320.975395pt;}
.y1f2{bottom:322.588000pt;}
.y30b{bottom:322.696000pt;}
.y8e{bottom:323.318667pt;}
.y2e8{bottom:324.461333pt;}
.y2a5{bottom:324.804914pt;}
.y28b{bottom:325.592000pt;}
.y111{bottom:325.898667pt;}
.y25e{bottom:325.950667pt;}
.y189{bottom:327.606667pt;}
.y331{bottom:329.100000pt;}
.ye2{bottom:330.743429pt;}
.y1b2{bottom:334.423080pt;}
.y44{bottom:335.328000pt;}
.y15b{bottom:335.749333pt;}
.y243{bottom:336.275334pt;}
.y5c{bottom:336.565805pt;}
.y222{bottom:337.238667pt;}
.ybb{bottom:337.468000pt;}
.y1f1{bottom:340.601333pt;}
.y30a{bottom:340.709333pt;}
.y2a4{bottom:341.004850pt;}
.y8d{bottom:341.330667pt;}
.y1da{bottom:341.931357pt;}
.y2e7{bottom:342.473333pt;}
.y28a{bottom:343.604000pt;}
.yf{bottom:343.809333pt;}
.y25d{bottom:343.964000pt;}
.y188{bottom:345.618667pt;}
.y330{bottom:346.316000pt;}
.y242{bottom:351.575273pt;}
.y1b1{bottom:352.423008pt;}
.y43{bottom:353.341333pt;}
.y15a{bottom:353.761333pt;}
.y5b{bottom:354.565733pt;}
.yba{bottom:355.480000pt;}
.y2a3{bottom:357.204785pt;}
.y1f0{bottom:358.613333pt;}
.y309{bottom:358.721333pt;}
.y8c{bottom:359.342667pt;}
.y1d9{bottom:359.931285pt;}
.y2e6{bottom:360.486667pt;}
.y289{bottom:361.617333pt;}
.ye{bottom:362.706666pt;}
.y25c{bottom:363.304000pt;}
.y32f{bottom:363.530667pt;}
.ye1{bottom:364.663133pt;}
.y241{bottom:366.875212pt;}
.y10f{bottom:367.585333pt;}
.y1b0{bottom:370.422936pt;}
.y42{bottom:371.353333pt;}
.y187{bottom:371.601333pt;}
.y159{bottom:371.774667pt;}
.yb9{bottom:373.492000pt;}
.y10e{bottom:374.890667pt;}
.y221{bottom:376.240000pt;}
.y1ef{bottom:376.626667pt;}
.y308{bottom:376.733333pt;}
.y8b{bottom:377.356000pt;}
.y1d8{bottom:377.931213pt;}
.y2e5{bottom:378.498667pt;}
.y288{bottom:379.629333pt;}
.y2a2{bottom:380.532547pt;}
.y32e{bottom:380.746667pt;}
.y25b{bottom:381.317333pt;}
.y240{bottom:382.175150pt;}
.y110{bottom:382.197333pt;}
.ye0{bottom:382.663061pt;}
.y5a{bottom:387.845733pt;}
.y1af{bottom:388.422864pt;}
.y35e{bottom:389.332000pt;}
.y158{bottom:389.786667pt;}
.yb8{bottom:391.505333pt;}
.y1ee{bottom:394.638667pt;}
.y307{bottom:394.746667pt;}
.y8a{bottom:395.368000pt;}
.y1d7{bottom:395.931141pt;}
.y2e4{bottom:396.510667pt;}
.y41{bottom:397.336000pt;}
.y23f{bottom:397.475089pt;}
.y220{bottom:397.572000pt;}
.y287{bottom:397.642667pt;}
.y32d{bottom:397.961333pt;}
.y25a{bottom:400.658667pt;}
.ydf{bottom:400.662989pt;}
.y186{bottom:402.552000pt;}
.y10c{bottom:403.210667pt;}
.y1ae{bottom:406.342632pt;}
.y35d{bottom:406.546667pt;}
.y157{bottom:407.798667pt;}
.yb7{bottom:409.517333pt;}
.y10b{bottom:410.517333pt;}
.y2a1{bottom:411.132425pt;}
.y1ed{bottom:412.650667pt;}
.y306{bottom:412.758667pt;}
.y89{bottom:413.381333pt;}
.y1d6{bottom:413.931069pt;}
.y2e3{bottom:414.524000pt;}
.y32c{bottom:415.177333pt;}
.y286{bottom:415.654667pt;}
.y10d{bottom:417.822667pt;}
.yde{bottom:418.662917pt;}
.y259{bottom:418.670667pt;}
.y21f{bottom:418.904000pt;}
.y23e{bottom:419.506865pt;}
.y185{bottom:420.565333pt;}
.y35c{bottom:423.762667pt;}
.y156{bottom:425.812000pt;}
.y2a0{bottom:427.332360pt;}
.yb6{bottom:427.530667pt;}
.y1ec{bottom:430.664000pt;}
.y305{bottom:430.772000pt;}
.yd{bottom:430.990669pt;}
.y88{bottom:431.393333pt;}
.y1d5{bottom:431.930997pt;}
.y1ad{bottom:432.342528pt;}
.y32b{bottom:432.393333pt;}
.y2e2{bottom:432.536000pt;}
.y285{bottom:433.666667pt;}
.ydd{bottom:436.662845pt;}
.y184{bottom:438.577333pt;}
.y10a{bottom:438.837333pt;}
.y21e{bottom:440.234667pt;}
.y155{bottom:443.824000pt;}
.yb5{bottom:445.542667pt;}
.y109{bottom:446.142667pt;}
.yc{bottom:446.990669pt;}
.y258{bottom:447.284000pt;}
.y23d{bottom:448.406749pt;}
.y1eb{bottom:448.676000pt;}
.y304{bottom:448.784000pt;}
.y87{bottom:449.405333pt;}
.y32a{bottom:449.608000pt;}
.y35b{bottom:449.848000pt;}
.y1d4{bottom:449.850765pt;}
.y2e1{bottom:450.549333pt;}
.y284{bottom:451.680000pt;}
.ydc{bottom:454.662773pt;}
.y183{bottom:456.590667pt;}
.y29f{bottom:457.284360pt;}
.y21d{bottom:461.566667pt;}
.y154{bottom:461.837333pt;}
.yb{bottom:462.990669pt;}
.y35a{bottom:463.357333pt;}
.yb4{bottom:463.554667pt;}
.y23c{bottom:463.706688pt;}
.y40{bottom:465.261333pt;}
.y217{bottom:465.640000pt;}
.y1ac{bottom:466.342392pt;}
.y1ea{bottom:466.689333pt;}
.y303{bottom:466.796000pt;}
.y329{bottom:466.824000pt;}
.y86{bottom:467.418667pt;}
.y2e0{bottom:468.561333pt;}
.y283{bottom:469.692000pt;}
.ydb{bottom:472.582541pt;}
.y107{bottom:474.462667pt;}
.y182{bottom:474.602667pt;}
.y1d3{bottom:475.850661pt;}
.y257{bottom:475.897333pt;}
.ya{bottom:478.990666pt;}
.y23b{bottom:479.006627pt;}
.y153{bottom:479.849333pt;}
.y216{bottom:480.252000pt;}
.yb3{bottom:481.568000pt;}
.y106{bottom:481.768000pt;}
.y21c{bottom:482.898667pt;}
.y328{bottom:484.038667pt;}
.y1ab{bottom:484.342320pt;}
.y1e9{bottom:484.701333pt;}
.y29d{bottom:484.809333pt;}
.y85{bottom:485.430667pt;}
.y2df{bottom:486.573333pt;}
.y282{bottom:487.704000pt;}
.y108{bottom:489.074667pt;}
.yda{bottom:490.582469pt;}
.y181{bottom:492.614667pt;}
.y359{bottom:492.806667pt;}
.y256{bottom:493.909333pt;}
.y23a{bottom:494.306566pt;}
.y9{bottom:494.990666pt;}
.y152{bottom:497.861333pt;}
.y3f{bottom:499.213333pt;}
.yb2{bottom:499.580000pt;}
.y327{bottom:501.254667pt;}
.y1aa{bottom:502.342248pt;}
.y1e8{bottom:502.713333pt;}
.y29c{bottom:502.821333pt;}
.y84{bottom:503.444000pt;}
.y21b{bottom:504.229333pt;}
.y281{bottom:505.717333pt;}
.yd9{bottom:508.582397pt;}
.y239{bottom:509.606504pt;}
.y1d2{bottom:509.850525pt;}
.y358{bottom:510.022667pt;}
.y105{bottom:510.088000pt;}
.y180{bottom:510.628000pt;}
.y255{bottom:513.250667pt;}
.y151{bottom:515.874667pt;}
.y3e{bottom:517.226667pt;}
.y104{bottom:517.394667pt;}
.y326{bottom:518.470667pt;}
.y1a9{bottom:520.342176pt;}
.y1e7{bottom:520.726667pt;}
.y29b{bottom:520.834667pt;}
.y83{bottom:521.456000pt;}
.y280{bottom:523.729333pt;}
.y238{bottom:524.838307pt;}
.y21a{bottom:525.561333pt;}
.yb1{bottom:525.562667pt;}
.yd8{bottom:526.582325pt;}
.y357{bottom:527.237333pt;}
.y1d1{bottom:527.850453pt;}
.y2de{bottom:528.577333pt;}
.y17f{bottom:528.640000pt;}
.y254{bottom:532.590667pt;}
.y150{bottom:533.886667pt;}
.y3d{bottom:535.238667pt;}
.y325{bottom:535.685333pt;}
.y1a8{bottom:538.342104pt;}
.y1e6{bottom:538.738667pt;}
.y29a{bottom:538.846667pt;}
.y82{bottom:539.468000pt;}
.y237{bottom:540.138246pt;}
.y27f{bottom:541.742667pt;}
.y356{bottom:544.453333pt;}
.yd7{bottom:544.582253pt;}
.y103{bottom:545.714667pt;}
.y1d0{bottom:545.850381pt;}
.y17e{bottom:546.653333pt;}
.y219{bottom:546.892000pt;}
.y2dd{bottom:549.909333pt;}
.y253{bottom:550.604000pt;}
.y14f{bottom:551.898667pt;}
.y324{bottom:552.901333pt;}
.y102{bottom:553.020000pt;}
.y3c{bottom:553.252000pt;}
.y236{bottom:555.438185pt;}
.y1a7{bottom:556.261872pt;}
.yb0{bottom:556.513333pt;}
.y1e5{bottom:556.752000pt;}
.y299{bottom:556.858667pt;}
.y81{bottom:557.481333pt;}
.y27e{bottom:559.754667pt;}
.y355{bottom:561.669333pt;}
.yd6{bottom:562.582181pt;}
.y1cf{bottom:563.850309pt;}
.y17d{bottom:564.665333pt;}
.y218{bottom:568.224000pt;}
.y14e{bottom:569.912000pt;}
.y252{bottom:569.944000pt;}
.y323{bottom:570.116000pt;}
.y235{bottom:570.738124pt;}
.y2dc{bottom:571.240000pt;}
.y3b{bottom:571.264000pt;}
.y8{bottom:573.786667pt;}
.y1a6{bottom:574.261800pt;}
.yaf{bottom:574.526667pt;}
.y1e4{bottom:574.764000pt;}
.y302{bottom:574.872000pt;}
.y80{bottom:575.493333pt;}
.y27d{bottom:577.766667pt;}
.y354{bottom:578.884000pt;}
.yd5{bottom:580.582109pt;}
.y101{bottom:581.340000pt;}
.y1ce{bottom:581.850237pt;}
.y17c{bottom:582.677333pt;}
.y298{bottom:582.841333pt;}
.y234{bottom:586.038062pt;}
.y322{bottom:587.332000pt;}
.y251{bottom:587.957333pt;}
.y100{bottom:588.646667pt;}
.y3a{bottom:589.276000pt;}
.y215{bottom:589.556000pt;}
.y213{bottom:591.325333pt;}
.y1a5{bottom:592.261728pt;}
.yae{bottom:592.538667pt;}
.y2db{bottom:592.572000pt;}
.y7{bottom:592.685334pt;}
.y1e3{bottom:592.776000pt;}
.y301{bottom:592.884000pt;}
.y27c{bottom:595.780000pt;}
.y353{bottom:596.100000pt;}
.y2d7{bottom:596.490667pt;}
.yd4{bottom:598.501877pt;}
.y1cd{bottom:599.770005pt;}
.y17b{bottom:600.690667pt;}
.y14d{bottom:601.022667pt;}
.y233{bottom:601.338001pt;}
.y321{bottom:604.548000pt;}
.y212{bottom:605.937333pt;}
.y7f{bottom:606.605333pt;}
.y39{bottom:607.289333pt;}
.y250{bottom:607.298667pt;}
.y1a4{bottom:610.261656pt;}
.yad{bottom:610.550667pt;}
.y1e2{bottom:610.789333pt;}
.y214{bottom:610.886667pt;}
.y300{bottom:610.896000pt;}
.y2d6{bottom:611.102667pt;}
.y352{bottom:613.314667pt;}
.y27b{bottom:613.792000pt;}
.y2da{bottom:613.902667pt;}
.yd3{bottom:616.501805pt;}
.y232{bottom:616.637940pt;}
.yfe{bottom:616.966667pt;}
.y1cc{bottom:617.769933pt;}
.y17a{bottom:618.702667pt;}
.y123{bottom:620.960000pt;}
.y320{bottom:621.762667pt;}
.yfd{bottom:624.272000pt;}
.y38{bottom:625.301333pt;}
.y24f{bottom:625.310667pt;}
.y59{bottom:626.542667pt;}
.y1a3{bottom:628.261584pt;}
.yac{bottom:628.564000pt;}
.y1e1{bottom:628.801333pt;}
.y2ff{bottom:628.909333pt;}
.y351{bottom:630.530667pt;}
.yff{bottom:631.577333pt;}
.y27a{bottom:631.805333pt;}
.y211{bottom:632.218667pt;}
.yd2{bottom:634.501733pt;}
.y2d9{bottom:635.234667pt;}
.y1cb{bottom:635.769861pt;}
.y179{bottom:636.716000pt;}
.y37{bottom:643.314667pt;}
.y24e{bottom:643.322667pt;}
.y6{bottom:645.598667pt;}
.y1a2{bottom:646.261512pt;}
.y231{bottom:646.285940pt;}
.yab{bottom:646.576000pt;}
.y1e0{bottom:646.814667pt;}
.y2fe{bottom:646.921333pt;}
.y31f{bottom:646.948000pt;}
.y350{bottom:647.746667pt;}
.y279{bottom:649.817333pt;}
.yd1{bottom:652.502357pt;}
.yfb{bottom:652.592000pt;}
.y210{bottom:653.549333pt;}
.y1ca{bottom:653.769789pt;}
.y178{bottom:654.728000pt;}
.y2d8{bottom:656.566667pt;}
.yfa{bottom:659.897333pt;}
.y230{bottom:660.565940pt;}
.y36{bottom:661.326667pt;}
.y24d{bottom:662.664000pt;}
.y1a1{bottom:664.261440pt;}
.yaa{bottom:664.589333pt;}
.y2fd{bottom:664.934667pt;}
.y34f{bottom:664.961333pt;}
.yfc{bottom:667.204000pt;}
.y278{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.yd0{bottom:670.502285pt;}
.y1c9{bottom:671.769717pt;}
.y177{bottom:672.740000pt;}
.y20f{bottom:674.881333pt;}
.y22f{bottom:674.913940pt;}
.y2d5{bottom:677.897333pt;}
.y1df{bottom:677.925333pt;}
.y35{bottom:679.338667pt;}
.y31e{bottom:682.017333pt;}
.y34e{bottom:682.177333pt;}
.y1a0{bottom:682.181208pt;}
.ya9{bottom:682.601333pt;}
.y2fc{bottom:682.946667pt;}
.y277{bottom:685.842667pt;}
.yf9{bottom:688.217333pt;}
.ycf{bottom:688.502213pt;}
.y22e{bottom:689.261940pt;}
.y1c8{bottom:689.769645pt;}
.y176{bottom:690.753333pt;}
.y24c{bottom:691.277333pt;}
.y1bb{bottom:695.021200pt;}
.y1ba{bottom:695.021333pt;}
.yf8{bottom:695.524000pt;}
.y20e{bottom:696.213333pt;}
.y34{bottom:697.352000pt;}
.y2d2{bottom:698.660000pt;}
.y2d4{bottom:699.229333pt;}
.y34d{bottom:699.392000pt;}
.y19f{bottom:700.181136pt;}
.y20a{bottom:700.449333pt;}
.ya8{bottom:700.613333pt;}
.y2fb{bottom:700.958667pt;}
.y31d{bottom:703.496000pt;}
.y22d{bottom:703.541940pt;}
.y276{bottom:703.854667pt;}
.yce{bottom:706.502141pt;}
.y1c7{bottom:707.769573pt;}
.y1b9{bottom:712.117333pt;}
.y33{bottom:715.364000pt;}
.y34c{bottom:716.608000pt;}
.y31c{bottom:717.005333pt;}
.y20d{bottom:717.544000pt;}
.y19e{bottom:718.181064pt;}
.ya7{bottom:718.626667pt;}
.y2fa{bottom:718.972000pt;}
.y2d3{bottom:720.561333pt;}
.y275{bottom:721.868000pt;}
.y24b{bottom:722.376000pt;}
.yf7{bottom:724.161333pt;}
.ycd{bottom:724.421909pt;}
.y1c6{bottom:725.689341pt;}
.y22c{bottom:731.829940pt;}
.y195{bottom:732.054667pt;}
.y175{bottom:732.756000pt;}
.y32{bottom:733.377333pt;}
.y34b{bottom:733.824000pt;}
.y19d{bottom:736.180992pt;}
.ya6{bottom:736.638667pt;}
.y2f9{bottom:736.984000pt;}
.y31b{bottom:738.485333pt;}
.y20c{bottom:738.876000pt;}
.y274{bottom:739.880000pt;}
.y2d1{bottom:741.892000pt;}
.y22b{bottom:742.313333pt;}
.y1c5{bottom:743.689269pt;}
.y174{bottom:747.685333pt;}
.ycc{bottom:750.421805pt;}
.y34a{bottom:751.038667pt;}
.y31a{bottom:751.994667pt;}
.yf6{bottom:752.268000pt;}
.y19c{bottom:754.180920pt;}
.ya5{bottom:754.652000pt;}
.y2f8{bottom:754.997333pt;}
.y273{bottom:757.892000pt;}
.y20b{bottom:760.208000pt;}
.y1c4{bottom:761.689197pt;}
.y173{bottom:762.614667pt;}
.y2d0{bottom:763.224000pt;}
.y2cd{bottom:765.504000pt;}
.y2f{bottom:766.849301pt;}
.y349{bottom:768.254667pt;}
.ycb{bottom:768.421733pt;}
.y19b{bottom:772.180848pt;}
.ya4{bottom:772.664000pt;}
.y2f7{bottom:773.009333pt;}
.y2e{bottom:773.912000pt;}
.y272{bottom:775.905333pt;}
.y172{bottom:777.545333pt;}
.y319{bottom:779.013333pt;}
.y1c3{bottom:779.689125pt;}
.y2cc{bottom:780.116000pt;}
.y209{bottom:781.538667pt;}
.y2{bottom:781.661334pt;}
.y2cf{bottom:784.554667pt;}
.y348{bottom:785.469333pt;}
.yf5{bottom:786.632000pt;}
.y206{bottom:788.700000pt;}
.y19a{bottom:790.180776pt;}
.ya3{bottom:790.676000pt;}
.y2f6{bottom:791.021333pt;}
.y171{bottom:792.474667pt;}
.y318{bottom:792.522667pt;}
.y271{bottom:793.917333pt;}
.y1c2{bottom:797.689053pt;}
.yca{bottom:801.701733pt;}
.y2d{bottom:802.202667pt;}
.y347{bottom:802.685333pt;}
.y208{bottom:802.870667pt;}
.y205{bottom:803.312000pt;}
.y2ce{bottom:805.886667pt;}
.yc9{bottom:806.569333pt;}
.y170{bottom:807.404000pt;}
.y199{bottom:808.100544pt;}
.ya2{bottom:808.689333pt;}
.y122{bottom:809.034667pt;}
.y270{bottom:811.930667pt;}
.y1c1{bottom:815.688981pt;}
.y204{bottom:817.924000pt;}
.y2c{bottom:818.341333pt;}
.y346{bottom:819.901333pt;}
.y16f{bottom:822.333333pt;}
.y207{bottom:824.201333pt;}
.y198{bottom:826.100472pt;}
.ya1{bottom:826.701333pt;}
.y121{bottom:827.046667pt;}
.y2cb{bottom:827.218667pt;}
.y26f{bottom:829.942667pt;}
.y1c0{bottom:833.688909pt;}
.y2b{bottom:834.481333pt;}
.y345{bottom:837.116000pt;}
.y16e{bottom:837.262667pt;}
.y197{bottom:844.100400pt;}
.ya0{bottom:844.714667pt;}
.y120{bottom:845.060000pt;}
.y202{bottom:845.216000pt;}
.y26e{bottom:847.954667pt;}
.y2ca{bottom:848.549333pt;}
.y1bf{bottom:851.608677pt;}
.y16d{bottom:852.192000pt;}
.y201{bottom:852.521333pt;}
.y344{bottom:854.332000pt;}
.y2a{bottom:858.590667pt;}
.y1{bottom:859.312000pt;}
.y203{bottom:859.828000pt;}
.y9f{bottom:862.726667pt;}
.y11f{bottom:863.072000pt;}
.y26d{bottom:865.968000pt;}
.y16c{bottom:867.121333pt;}
.y1be{bottom:869.608605pt;}
.y2c9{bottom:869.881333pt;}
.y2c6{bottom:870.718667pt;}
.y343{bottom:871.546667pt;}
.y196{bottom:877.380400pt;}
.y9e{bottom:880.738667pt;}
.y11e{bottom:881.084000pt;}
.y16b{bottom:882.050667pt;}
.y26c{bottom:883.980000pt;}
.y1bd{bottom:887.608533pt;}
.y200{bottom:887.933333pt;}
.y342{bottom:888.762667pt;}
.y2c8{bottom:891.212000pt;}
.y16a{bottom:896.980000pt;}
.y29{bottom:898.178667pt;}
.y9d{bottom:898.752000pt;}
.y11d{bottom:899.097333pt;}
.y26b{bottom:901.993333pt;}
.y1ff{bottom:905.029333pt;}
.y341{bottom:905.978667pt;}
.y169{bottom:911.909333pt;}
.y2c7{bottom:912.544000pt;}
.y11c{bottom:917.109333pt;}
.y58{bottom:920.005333pt;}
.y1bc{bottom:920.888533pt;}
.y340{bottom:923.193333pt;}
.y28{bottom:925.198667pt;}
.y168{bottom:926.838667pt;}
.y9c{bottom:927.390667pt;}
.y2c5{bottom:933.558667pt;}
.y11b{bottom:935.122667pt;}
.y57{bottom:938.017333pt;}
.y33f{bottom:940.409333pt;}
.y2c4{bottom:940.864000pt;}
.y2f5{bottom:943.092000pt;}
.y9b{bottom:945.404000pt;}
.y167{bottom:948.169333pt;}
.y27{bottom:952.217333pt;}
.y56{bottom:956.030667pt;}
.y33e{bottom:957.624000pt;}
.y11a{bottom:961.105333pt;}
.y55{bottom:974.042667pt;}
.y33d{bottom:974.840000pt;}
.y166{bottom:976.276000pt;}
.y26{bottom:977.906667pt;}
.y54{bottom:992.056000pt;}
.y165{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h22{height:8.934267pt;}
.h10{height:22.673858pt;}
.h25{height:26.407773pt;}
.hb{height:26.836216pt;}
.h2b{height:27.961172pt;}
.h7{height:28.560000pt;}
.h12{height:29.433775pt;}
.h26{height:29.783203pt;}
.h11{height:30.399505pt;}
.h16{height:31.067969pt;}
.h14{height:31.157778pt;}
.h2f{height:31.535156pt;}
.h28{height:32.692859pt;}
.h27{height:33.158633pt;}
.ha{height:33.545270pt;}
.h35{height:33.713664pt;}
.h31{height:34.144051pt;}
.h33{height:34.191872pt;}
.h1c{height:34.430976pt;}
.h2d{height:34.615969pt;}
.hf{height:34.813542pt;}
.h19{height:35.039062pt;}
.h32{height:35.052646pt;}
.h2c{height:35.109141pt;}
.he{height:38.256384pt;}
.h1b{height:38.462187pt;}
.h13{height:38.681455pt;}
.hc{height:38.947124pt;}
.h17{height:39.010156pt;}
.h29{height:39.710938pt;}
.h6{height:40.800000pt;}
.h2e{height:42.046875pt;}
.h3{height:42.840000pt;}
.h9{height:45.353733pt;}
.h34{height:45.474876pt;}
.h18{height:46.718750pt;}
.h2{height:48.960000pt;}
.h30{height:63.652309pt;}
.h23{height:63.657643pt;}
.h1d{height:64.034876pt;}
.h1f{height:64.040209pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.h1e{height:93.261542pt;}
.h4{height:105.826671pt;}
.h1a{height:146.453333pt;}
.h20{height:167.053333pt;}
.h24{height:263.025133pt;}
.h15{height:272.442667pt;}
.h21{height:273.285333pt;}
.h2a{height:274.336800pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:11.189333pt;}
.w5{width:66.991004pt;}
.w8{width:183.870667pt;}
.w4{width:207.298721pt;}
.wb{width:482.212933pt;}
.w9{width:515.038667pt;}
.wc{width:541.736520pt;}
.w6{width:550.491867pt;}
.w7{width:563.389200pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3e{left:-347.176000pt;}
.x3f{left:-318.856094pt;}
.x30{left:-202.877333pt;}
.x35{left:-193.837333pt;}
.x33{left:-174.557333pt;}
.x34{left:-97.677353pt;}
.x32{left:-96.397333pt;}
.x39{left:-37.365333pt;}
.x13{left:-21.248133pt;}
.x20{left:-12.840133pt;}
.x51{left:-11.390000pt;}
.x3a{left:-9.045427pt;}
.x0{left:0.000000pt;}
.x64{left:3.579720pt;}
.x15{left:7.071867pt;}
.x52{left:12.682000pt;}
.x21{left:15.479867pt;}
.xb{left:26.021437pt;}
.x65{left:29.067636pt;}
.x6{left:50.623837pt;}
.x14{left:85.551867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x71{left:100.054667pt;}
.x7{left:101.114667pt;}
.x5{left:102.046667pt;}
.x56{left:102.937333pt;}
.x9{left:108.542667pt;}
.x8{left:109.606667pt;}
.x4a{left:112.452000pt;}
.x1f{left:115.156133pt;}
.x6e{left:116.385333pt;}
.x6f{left:117.772000pt;}
.x4b{left:120.157333pt;}
.x12{left:121.605467pt;}
.x63{left:125.985080pt;}
.x54{left:127.398000pt;}
.xd{left:130.393333pt;}
.x4e{left:131.484000pt;}
.x25{left:132.697333pt;}
.x28{left:133.696000pt;}
.x2c{left:135.333333pt;}
.x4c{left:138.185333pt;}
.x38{left:139.332000pt;}
.x46{left:142.549333pt;}
.x24{left:146.201333pt;}
.x69{left:147.349333pt;}
.x5b{left:148.333333pt;}
.x5f{left:152.420000pt;}
.x57{left:153.877333pt;}
.x50{left:155.742667pt;}
.x8e{left:159.244000pt;}
.x5c{left:161.617333pt;}
.x75{left:164.468000pt;}
.x58{left:167.161333pt;}
.xc{left:169.936000pt;}
.x60{left:174.472000pt;}
.x36{left:176.049333pt;}
.x76{left:177.752000pt;}
.x98{left:179.964000pt;}
.x4{left:180.874667pt;}
.x3c{left:182.249333pt;}
.x22{left:188.119867pt;}
.x2e{left:194.788000pt;}
.x40{left:199.624000pt;}
.x99{left:200.550667pt;}
.x68{left:203.506667pt;}
.x16{left:208.982667pt;}
.x37{left:211.432000pt;}
.x4f{left:212.901333pt;}
.x2b{left:214.806667pt;}
.x26{left:219.852000pt;}
.x72{left:221.965333pt;}
.x9a{left:223.704000pt;}
.x9b{left:225.868000pt;}
.x7b{left:227.944000pt;}
.x8f{left:229.453333pt;}
.x2d{left:230.825333pt;}
.x90{left:235.981333pt;}
.x86{left:238.056000pt;}
.x31{left:242.002667pt;}
.x87{left:244.033333pt;}
.x79{left:253.880000pt;}
.x4d{left:257.418667pt;}
.x7a{left:260.521333pt;}
.x55{left:265.273333pt;}
.x6d{left:267.020000pt;}
.x62{left:270.177333pt;}
.x7c{left:283.760000pt;}
.x82{left:286.477333pt;}
.x7d{left:290.288000pt;}
.x83{left:293.686667pt;}
.x23{left:302.794667pt;}
.x2f{left:304.914667pt;}
.x81{left:307.300000pt;}
.x7e{left:314.669333pt;}
.x7f{left:318.100000pt;}
.x61{left:333.200000pt;}
.x5d{left:339.280000pt;}
.x88{left:343.078667pt;}
.x5e{left:345.922667pt;}
.x89{left:350.342667pt;}
.x29{left:356.820000pt;}
.x73{left:377.132000pt;}
.x42{left:385.284000pt;}
.x74{left:390.416000pt;}
.x43{left:398.568000pt;}
.x3{left:404.408000pt;}
.x77{left:410.100000pt;}
.x1c{left:417.858667pt;}
.x78{left:423.384000pt;}
.x1a{left:432.313333pt;}
.x1b{left:438.954667pt;}
.x80{left:443.930667pt;}
.x3d{left:450.313333pt;}
.x41{left:461.502667pt;}
.x8a{left:467.832000pt;}
.x8b{left:473.809333pt;}
.x53{left:478.414000pt;}
.x44{left:506.514667pt;}
.x3b{left:509.434667pt;}
.x45{left:519.798667pt;}
.x66{left:538.179600pt;}
.xe{left:540.229333pt;}
.xf{left:546.870667pt;}
.x6a{left:549.252000pt;}
.x10{left:550.257333pt;}
.x11{left:556.900000pt;}
.x47{left:558.853333pt;}
.x17{left:563.077333pt;}
.x2a{left:568.417333pt;}
.x70{left:573.162667pt;}
.x84{left:577.240000pt;}
.x85{left:583.886667pt;}
.x91{left:591.418667pt;}
.x27{left:594.293333pt;}
.x59{left:597.597333pt;}
.x5a{left:604.238667pt;}
.x1d{left:607.260000pt;}
.x92{left:615.328000pt;}
.x1e{left:620.544000pt;}
.x6c{left:622.346667pt;}
.xa{left:623.413317pt;}
.x49{left:629.022667pt;}
.x6b{left:641.756000pt;}
.x48{left:646.556000pt;}
.x95{left:653.140000pt;}
.x8c{left:657.484000pt;}
.x8d{left:663.461333pt;}
.x97{left:665.178667pt;}
.x93{left:666.189333pt;}
.x67{left:673.105333pt;}
.x96{left:677.050667pt;}
.x18{left:679.437333pt;}
.x19{left:686.078667pt;}
.x94{left:690.100000pt;}
}




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