
    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_f785102fa718edf20d2a63e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_301fb79cc5cb58613fe0fdea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_1366a080581ae3f6a8c44b53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_98ffd2244b943da3ede8d78a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_8b342f3e927a6610f2d6b291.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_7b8bf26718e1c2d45b116b88.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.205078;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_65fd4537e3b676f5f0f421d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_285e650e75637a6f1afc41c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2d8816f8cc5ebda5d244890b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0e184d0f638aeaf37994f552.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_8852cfa87941c12c5d56edc2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ccea98fd35c856b273b1f8c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e{transform:matrix(0.000000,-0.247865,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247865,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247865,0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,-0.248233,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248233,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248233,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,-0.248268,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248268,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248268,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.266121,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266121,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266121,0.250000,0.000000,0,0);}
.m2c{transform:matrix(0.000000,-0.266784,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.266784,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.266784,0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,-0.273802,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.273802,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.273802,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.290423,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.290423,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.290423,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.312894,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.312894,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.312894,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.313415,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.313415,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.313415,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.355738,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.355738,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.355738,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.356662,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.356662,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.356662,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.368510,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.368510,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.368510,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.400224,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.400224,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.400224,0.250000,0.000000,0,0);}
.m40{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.209567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209567,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247887,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248233,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,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);}
.m1{transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.266121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266121,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.266136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266136,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.266774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266774,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.266784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266784,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266801,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267508,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.273777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273777,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273789,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273802,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274717,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.274739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274739,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290381,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290397,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290423,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.312894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312894,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312908,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312924,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.312937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312937,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313361,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313378,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.355643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355643,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.355731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355731,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.355738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355738,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.355756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355756,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.356627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356627,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.356662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356662,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.356690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356690,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.368510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368510,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.368584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368584,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.400152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400152,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.400224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400224,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.400239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400239,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-24.479400px;}
.v7{vertical-align:-22.680000px;}
.v4{vertical-align:-19.079400px;}
.v9{vertical-align:-16.560600px;}
.v5{vertical-align:-8.639400px;}
.v2{vertical-align:-7.560000px;}
.va{vertical-align:-3.960000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.759400px;}
.v6{vertical-align:7.206078px;}
.v1{vertical-align:9.720000px;}
.vb{vertical-align:10.800000px;}
.vc{vertical-align:18.360000px;}
.ls9b{letter-spacing:-1.685679px;}
.ls115{letter-spacing:-1.429002px;}
.ls81{letter-spacing:-1.004330px;}
.ls8d{letter-spacing:-0.997574px;}
.ls87{letter-spacing:-0.954789px;}
.ls154{letter-spacing:-0.945081px;}
.ls106{letter-spacing:-0.939582px;}
.ls8e{letter-spacing:-0.928552px;}
.ls99{letter-spacing:-0.811682px;}
.ls82{letter-spacing:-0.781395px;}
.ls8b{letter-spacing:-0.758877px;}
.lsfe{letter-spacing:-0.711185px;}
.lsfb{letter-spacing:-0.709342px;}
.lsf7{letter-spacing:-0.694528px;}
.ls155{letter-spacing:-0.673204px;}
.ls100{letter-spacing:-0.672066px;}
.ls89{letter-spacing:-0.664299px;}
.ls116{letter-spacing:-0.658148px;}
.ls7f{letter-spacing:-0.644032px;}
.ls111{letter-spacing:-0.641967px;}
.ls2d{letter-spacing:-0.629990px;}
.ls96{letter-spacing:-0.620916px;}
.ls3b{letter-spacing:-0.615612px;}
.lsfd{letter-spacing:-0.541239px;}
.ls136{letter-spacing:-0.532332px;}
.ls10a{letter-spacing:-0.524241px;}
.ls86{letter-spacing:-0.495409px;}
.ls140{letter-spacing:-0.490946px;}
.ls149{letter-spacing:-0.482420px;}
.ls158{letter-spacing:-0.476185px;}
.ls9c{letter-spacing:-0.476144px;}
.ls9a{letter-spacing:-0.474547px;}
.ls84{letter-spacing:-0.459379px;}
.ls80{letter-spacing:-0.454876px;}
.lsc5{letter-spacing:-0.453096px;}
.ls85{letter-spacing:-0.450372px;}
.ls12b{letter-spacing:-0.437760px;}
.ls7e{letter-spacing:-0.434609px;}
.lscb{letter-spacing:-0.421776px;}
.ls151{letter-spacing:-0.407771px;}
.lsc6{letter-spacing:-0.407160px;}
.ls94{letter-spacing:-0.395893px;}
.ls4d{letter-spacing:-0.395716px;}
.ls4f{letter-spacing:-0.393767px;}
.ls4c{letter-spacing:-0.391817px;}
.lscf{letter-spacing:-0.390456px;}
.ls97{letter-spacing:-0.388372px;}
.ls101{letter-spacing:-0.364996px;}
.ls90{letter-spacing:-0.343260px;}
.ls8a{letter-spacing:-0.299497px;}
.ls8c{letter-spacing:-0.294994px;}
.ls88{letter-spacing:-0.290490px;}
.ls2c{letter-spacing:-0.271042px;}
.ls39{letter-spacing:-0.269330px;}
.ls14f{letter-spacing:-0.266819px;}
.lsff{letter-spacing:-0.263538px;}
.ls10d{letter-spacing:-0.263374px;}
.ls46{letter-spacing:-0.253440px;}
.ls12d{letter-spacing:-0.248832px;}
.lsbb{letter-spacing:-0.244800px;}
.ls12e{letter-spacing:-0.241920px;}
.ls131{letter-spacing:-0.237312px;}
.ls134{letter-spacing:-0.232704px;}
.lsbd{letter-spacing:-0.230400px;}
.lsbc{letter-spacing:-0.223488px;}
.ls128{letter-spacing:-0.214272px;}
.lsa0{letter-spacing:-0.207792px;}
.ls108{letter-spacing:-0.203141px;}
.ls9e{letter-spacing:-0.198468px;}
.lsbe{letter-spacing:-0.195840px;}
.ls38{letter-spacing:-0.193004px;}
.ls118{letter-spacing:-0.184320px;}
.ls139{letter-spacing:-0.181260px;}
.ls15f{letter-spacing:-0.178560px;}
.ls13d{letter-spacing:-0.172800px;}
.ls41{letter-spacing:-0.167040px;}
.ls11b{letter-spacing:-0.164160px;}
.ls126{letter-spacing:-0.162180px;}
.ls11c{letter-spacing:-0.161280px;}
.lsab{letter-spacing:-0.160740px;}
.ls123{letter-spacing:-0.160272px;}
.ls127{letter-spacing:-0.156456px;}
.ls125{letter-spacing:-0.154548px;}
.ls167{letter-spacing:-0.154512px;}
.ls135{letter-spacing:-0.152640px;}
.ls121{letter-spacing:-0.150732px;}
.ls11a{letter-spacing:-0.149760px;}
.lsa7{letter-spacing:-0.147852px;}
.ls44{letter-spacing:-0.146880px;}
.ls162{letter-spacing:-0.146160px;}
.ls122{letter-spacing:-0.143100px;}
.ls164{letter-spacing:-0.137808px;}
.ls12c{letter-spacing:-0.135936px;}
.lsb9{letter-spacing:-0.135360px;}
.ls16a{letter-spacing:-0.133632px;}
.ls16b{letter-spacing:-0.131544px;}
.ls13c{letter-spacing:-0.131328px;}
.lsb8{letter-spacing:-0.129960px;}
.ls169{letter-spacing:-0.129456px;}
.ls13a{letter-spacing:-0.129024px;}
.ls40{letter-spacing:-0.126720px;}
.ls165{letter-spacing:-0.123192px;}
.lsa8{letter-spacing:-0.122544px;}
.ls45{letter-spacing:-0.120960px;}
.ls157{letter-spacing:-0.118792px;}
.ls161{letter-spacing:-0.116928px;}
.ls9f{letter-spacing:-0.115884px;}
.ls16c{letter-spacing:-0.114840px;}
.lsf8{letter-spacing:-0.113805px;}
.lsac{letter-spacing:-0.112896px;}
.ls166{letter-spacing:-0.112752px;}
.lsa1{letter-spacing:-0.110556px;}
.ls83{letter-spacing:-0.108089px;}
.lsa2{letter-spacing:-0.106560px;}
.ls13b{letter-spacing:-0.105984px;}
.ls98{letter-spacing:-0.100661px;}
.lsa4{letter-spacing:-0.094572px;}
.ls34{letter-spacing:-0.092340px;}
.lsc1{letter-spacing:-0.091872px;}
.lscd{letter-spacing:-0.082944px;}
.ls145{letter-spacing:-0.082908px;}
.lsc4{letter-spacing:-0.081432px;}
.ls15e{letter-spacing:-0.080640px;}
.ls24{letter-spacing:-0.079920px;}
.lsc2{letter-spacing:-0.079344px;}
.ls27{letter-spacing:-0.077256px;}
.ls13e{letter-spacing:-0.076032px;}
.lsbf{letter-spacing:-0.075168px;}
.ls23{letter-spacing:-0.074592px;}
.ls168{letter-spacing:-0.073728px;}
.ls37{letter-spacing:-0.073606px;}
.ls3c{letter-spacing:-0.071933px;}
.ls4a{letter-spacing:-0.071928px;}
.lsb4{letter-spacing:-0.070380px;}
.lsd2{letter-spacing:-0.068904px;}
.ls3f{letter-spacing:-0.068587px;}
.lsc8{letter-spacing:-0.066816px;}
.ls26{letter-spacing:-0.066600px;}
.ls28{letter-spacing:-0.063936px;}
.lsd0{letter-spacing:-0.060552px;}
.lsb6{letter-spacing:-0.058140px;}
.ls12f{letter-spacing:-0.057600px;}
.ls3d{letter-spacing:-0.056877px;}
.ls35{letter-spacing:-0.055204px;}
.ls21{letter-spacing:-0.055080px;}
.ls1f{letter-spacing:-0.053568px;}
.ls14d{letter-spacing:-0.050271px;}
.ls36{letter-spacing:-0.048513px;}
.ls25{letter-spacing:-0.047952px;}
.ls117{letter-spacing:-0.043200px;}
.lsb7{letter-spacing:-0.042840px;}
.ls4e{letter-spacing:-0.038987px;}
.ls52{letter-spacing:-0.037037px;}
.ls129{letter-spacing:-0.034560px;}
.ls49{letter-spacing:-0.031680px;}
.lsaf{letter-spacing:-0.027360px;}
.ls51{letter-spacing:-0.027291px;}
.ls1e{letter-spacing:-0.026784px;}
.ls3e{letter-spacing:-0.026766px;}
.ls29{letter-spacing:-0.026640px;}
.lsae{letter-spacing:-0.020520px;}
.ls3a{letter-spacing:-0.020074px;}
.lscc{letter-spacing:-0.018432px;}
.ls2a{letter-spacing:-0.017100px;}
.ls13f{letter-spacing:-0.016297px;}
.ls103{letter-spacing:-0.014561px;}
.ls42{letter-spacing:-0.011520px;}
.lsce{letter-spacing:-0.010440px;}
.lsad{letter-spacing:-0.010260px;}
.ls11d{letter-spacing:-0.008640px;}
.lsd5{letter-spacing:-0.006840px;}
.ls20{letter-spacing:-0.006696px;}
.ls2b{letter-spacing:-0.006120px;}
.ls110{letter-spacing:-0.004741px;}
.lsd6{letter-spacing:-0.003420px;}
.ls148{letter-spacing:-0.003047px;}
.ls1d{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.002880px;}
.ls53{letter-spacing:0.003420px;}
.ls12a{letter-spacing:0.004536px;}
.lsd8{letter-spacing:0.004951px;}
.lsf3{letter-spacing:0.006092px;}
.ls0{letter-spacing:0.006696px;}
.ls8{letter-spacing:0.006840px;}
.lseb{letter-spacing:0.009216px;}
.ls68{letter-spacing:0.010260px;}
.lsca{letter-spacing:0.010440px;}
.lsea{letter-spacing:0.011520px;}
.ls6a{letter-spacing:0.013680px;}
.lsec{letter-spacing:0.013824px;}
.lsf{letter-spacing:0.015300px;}
.ls93{letter-spacing:0.016019px;}
.ls19{letter-spacing:0.017100px;}
.lse1{letter-spacing:0.017280px;}
.ls171{letter-spacing:0.020520px;}
.lsd3{letter-spacing:0.020880px;}
.ls7b{letter-spacing:0.022968px;}
.ls7a{letter-spacing:0.025056px;}
.ls6{letter-spacing:0.027360px;}
.lsb5{letter-spacing:0.027540px;}
.ls17{letter-spacing:0.028800px;}
.ls64{letter-spacing:0.030780px;}
.ls15{letter-spacing:0.031680px;}
.ls6c{letter-spacing:0.034200px;}
.ls16d{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.037620px;}
.ls4{letter-spacing:0.041040px;}
.ls150{letter-spacing:0.041051px;}
.ls160{letter-spacing:0.041760px;}
.ls12{letter-spacing:0.044460px;}
.ls7c{letter-spacing:0.045936px;}
.ls1a{letter-spacing:0.047880px;}
.ls54{letter-spacing:0.048056px;}
.ls2{letter-spacing:0.048960px;}
.ls63{letter-spacing:0.051300px;}
.ls5{letter-spacing:0.054720px;}
.ls9{letter-spacing:0.058140px;}
.ls4b{letter-spacing:0.061560px;}
.lsa{letter-spacing:0.064980px;}
.ls95{letter-spacing:0.066364px;}
.ls5f{letter-spacing:0.066600px;}
.lsc{letter-spacing:0.068400px;}
.ls73{letter-spacing:0.069120px;}
.ls1b{letter-spacing:0.071820px;}
.ls11{letter-spacing:0.075240px;}
.ls67{letter-spacing:0.078660px;}
.ls70{letter-spacing:0.082080px;}
.ls92{letter-spacing:0.082382px;}
.ls15a{letter-spacing:0.084272px;}
.ls170{letter-spacing:0.085500px;}
.ls172{letter-spacing:0.088920px;}
.ls16f{letter-spacing:0.092340px;}
.ls153{letter-spacing:0.094873px;}
.ls65{letter-spacing:0.095760px;}
.ls78{letter-spacing:0.096048px;}
.lsed{letter-spacing:0.099072px;}
.lsb{letter-spacing:0.099180px;}
.lsa6{letter-spacing:0.101232px;}
.lsc9{letter-spacing:0.102312px;}
.ls173{letter-spacing:0.106020px;}
.ls5e{letter-spacing:0.106560px;}
.ls1{letter-spacing:0.107100px;}
.ls33{letter-spacing:0.108288px;}
.ls6e{letter-spacing:0.109440px;}
.ls109{letter-spacing:0.111037px;}
.ls3{letter-spacing:0.112320px;}
.ls124{letter-spacing:0.112572px;}
.lsb0{letter-spacing:0.112860px;}
.ls133{letter-spacing:0.112896px;}
.ls91{letter-spacing:0.114420px;}
.lsf1{letter-spacing:0.114937px;}
.lsa9{letter-spacing:0.115884px;}
.lsd{letter-spacing:0.116280px;}
.ls74{letter-spacing:0.117504px;}
.ls174{letter-spacing:0.119700px;}
.lsee{letter-spacing:0.121202px;}
.lsd1{letter-spacing:0.123192px;}
.lsba{letter-spacing:0.125928px;}
.ls22{letter-spacing:0.128520px;}
.ls119{letter-spacing:0.129600px;}
.ls66{letter-spacing:0.129960px;}
.ls114{letter-spacing:0.130786px;}
.lsde{letter-spacing:0.132739px;}
.lsa3{letter-spacing:0.134532px;}
.lse0{letter-spacing:0.135005px;}
.ls69{letter-spacing:0.136800px;}
.ls156{letter-spacing:0.136830px;}
.ls60{letter-spacing:0.137196px;}
.lse7{letter-spacing:0.138240px;}
.ls9d{letter-spacing:0.139860px;}
.ls147{letter-spacing:0.140766px;}
.ls57{letter-spacing:0.141192px;}
.ls5b{letter-spacing:0.142524px;}
.lse8{letter-spacing:0.145008px;}
.ls76{letter-spacing:0.145152px;}
.ls62{letter-spacing:0.145188px;}
.ls5c{letter-spacing:0.146520px;}
.lse4{letter-spacing:0.147456px;}
.ls5d{letter-spacing:0.147852px;}
.ls58{letter-spacing:0.150516px;}
.ls59{letter-spacing:0.151848px;}
.lsa5{letter-spacing:0.154512px;}
.ls48{letter-spacing:0.155448px;}
.ls132{letter-spacing:0.156456px;}
.ls8f{letter-spacing:0.157900px;}
.lsaa{letter-spacing:0.158508px;}
.ls5a{letter-spacing:0.159840px;}
.ls138{letter-spacing:0.162180px;}
.ls47{letter-spacing:0.169164px;}
.lse9{letter-spacing:0.171720px;}
.ls13{letter-spacing:0.174420px;}
.lsfc{letter-spacing:0.175738px;}
.lsb2{letter-spacing:0.191520px;}
.ls105{letter-spacing:0.192361px;}
.ls2e{letter-spacing:0.192904px;}
.ls32{letter-spacing:0.195346px;}
.ls31{letter-spacing:0.197787px;}
.ls16e{letter-spacing:0.198360px;}
.ls130{letter-spacing:0.202248px;}
.lsf6{letter-spacing:0.204624px;}
.ls163{letter-spacing:0.235944px;}
.ls72{letter-spacing:0.244800px;}
.lsf5{letter-spacing:0.246384px;}
.ls120{letter-spacing:0.249902px;}
.lsf4{letter-spacing:0.250560px;}
.lsc0{letter-spacing:0.267264px;}
.lsc3{letter-spacing:0.270396px;}
.ls137{letter-spacing:0.278568px;}
.ls15c{letter-spacing:0.285911px;}
.lsb1{letter-spacing:0.294120px;}
.lsf9{letter-spacing:0.299385px;}
.lsd9{letter-spacing:0.300163px;}
.lsda{letter-spacing:0.304579px;}
.lsc7{letter-spacing:0.319464px;}
.ls50{letter-spacing:0.321641px;}
.lsd7{letter-spacing:0.348840px;}
.ls102{letter-spacing:0.354152px;}
.ls112{letter-spacing:0.386225px;}
.lsdd{letter-spacing:0.416439px;}
.ls107{letter-spacing:0.417285px;}
.ls144{letter-spacing:0.417610px;}
.ls142{letter-spacing:0.433907px;}
.ls14a{letter-spacing:0.440779px;}
.lsd4{letter-spacing:0.453096px;}
.ls10b{letter-spacing:0.464370px;}
.ls10c{letter-spacing:0.467451px;}
.ls104{letter-spacing:0.475156px;}
.lsdb{letter-spacing:0.475922px;}
.ls11e{letter-spacing:0.487102px;}
.lsb3{letter-spacing:0.502740px;}
.lsdc{letter-spacing:0.550382px;}
.ls143{letter-spacing:0.556134px;}
.lsef{letter-spacing:0.561310px;}
.ls14b{letter-spacing:0.567732px;}
.ls15b{letter-spacing:0.576702px;}
.lse2{letter-spacing:0.577360px;}
.lsf0{letter-spacing:0.577561px;}
.lsf2{letter-spacing:0.588575px;}
.ls61{letter-spacing:0.626040px;}
.ls11f{letter-spacing:0.643427px;}
.lsdf{letter-spacing:0.670321px;}
.ls152{letter-spacing:0.698776px;}
.ls10f{letter-spacing:0.700661px;}
.ls2f{letter-spacing:0.769173px;}
.lse3{letter-spacing:0.914872px;}
.ls146{letter-spacing:1.020666px;}
.ls14e{letter-spacing:1.037823px;}
.ls15d{letter-spacing:1.050946px;}
.ls141{letter-spacing:1.071525px;}
.ls14c{letter-spacing:1.084682px;}
.ls159{letter-spacing:1.095530px;}
.ls10{letter-spacing:1.472417px;}
.ls30{letter-spacing:1.528579px;}
.ls77{letter-spacing:5.825520px;}
.ls56{letter-spacing:5.911860px;}
.lse6{letter-spacing:6.059520px;}
.ls75{letter-spacing:6.082560px;}
.ls79{letter-spacing:6.180480px;}
.lse5{letter-spacing:6.428160px;}
.ls6f{letter-spacing:9.336600px;}
.ls6b{letter-spacing:9.473400px;}
.ls6d{letter-spacing:9.712800px;}
.ls71{letter-spacing:9.849600px;}
.lsfa{letter-spacing:22.253427px;}
.ls16{letter-spacing:26.812800px;}
.ls113{letter-spacing:32.775015px;}
.ls10e{letter-spacing:34.151282px;}
.ls14{letter-spacing:41.414400px;}
.ls55{letter-spacing:47.974249px;}
.ls1c{letter-spacing:64.414650px;}
.ls7d{letter-spacing:65.423400px;}
.ls18{letter-spacing:75.574650px;}
.lse{letter-spacing:86.014650px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsed{word-spacing:-36.521582px;}
.wsef{word-spacing:-32.581626px;}
.wsfb{word-spacing:-23.040000px;}
.wsd9{word-spacing:-22.104705px;}
.ws66{word-spacing:-13.320000px;}
.ws188{word-spacing:-9.705960px;}
.ws189{word-spacing:-9.627300px;}
.ws4{word-spacing:-9.623880px;}
.ws8d{word-spacing:-9.589680px;}
.ws6a{word-spacing:-9.569160px;}
.ws6f{word-spacing:-9.565740px;}
.ws3{word-spacing:-9.534960px;}
.ws6c{word-spacing:-9.497340px;}
.ws71{word-spacing:-9.377640px;}
.ws8{word-spacing:-8.316839px;}
.wsa{word-spacing:-8.260677px;}
.ws12{word-spacing:-7.994880px;}
.ws7{word-spacing:-7.557433px;}
.ws2{word-spacing:-7.379280px;}
.ws1{word-spacing:-7.339320px;}
.ws9{word-spacing:-6.981163px;}
.ws100{word-spacing:-6.552576px;}
.ws73{word-spacing:-6.550272px;}
.ws5{word-spacing:-6.517218px;}
.wsfc{word-spacing:-6.405120px;}
.ws6b{word-spacing:-6.292224px;}
.wsfe{word-spacing:-6.269184px;}
.ws102{word-spacing:-6.190848px;}
.ws109{word-spacing:-6.172416px;}
.ws106{word-spacing:-6.167808px;}
.ws103{word-spacing:-6.163200px;}
.ws6{word-spacing:-6.158270px;}
.ws101{word-spacing:-6.156288px;}
.ws75{word-spacing:-6.071904px;}
.ws133{word-spacing:-6.055200px;}
.ws13c{word-spacing:-6.051024px;}
.ws137{word-spacing:-6.040584px;}
.ws13f{word-spacing:-6.009264px;}
.ws134{word-spacing:-5.846400px;}
.ws4f{word-spacing:-5.835420px;}
.ws0{word-spacing:-5.804640px;}
.ws4e{word-spacing:-5.769056px;}
.ws82{word-spacing:-5.741568px;}
.ws7d{word-spacing:-5.737824px;}
.ws4d{word-spacing:-5.737019px;}
.ws78{word-spacing:-5.729472px;}
.ws7e{word-spacing:-5.725296px;}
.ws13e{word-spacing:-5.723208px;}
.ws76{word-spacing:-5.712768px;}
.ws104{word-spacing:-5.702400px;}
.ws13b{word-spacing:-5.691888px;}
.ws135{word-spacing:-5.687712px;}
.ws114{word-spacing:-5.683968px;}
.ws139{word-spacing:-5.681448px;}
.ws83{word-spacing:-5.677056px;}
.ws142{word-spacing:-5.675184px;}
.ws144{word-spacing:-5.673096px;}
.ws143{word-spacing:-5.671008px;}
.ws138{word-spacing:-5.666832px;}
.ws136{word-spacing:-5.658480px;}
.ws13d{word-spacing:-5.650128px;}
.ws10f{word-spacing:-5.630976px;}
.ws111{word-spacing:-5.628672px;}
.ws113{word-spacing:-5.587200px;}
.ws4c{word-spacing:-5.478775px;}
.ws72{word-spacing:-5.430168px;}
.wsf7{word-spacing:-5.416812px;}
.ws8a{word-spacing:-5.343192px;}
.ws7f{word-spacing:-5.322312px;}
.ws77{word-spacing:-5.316048px;}
.ws88{word-spacing:-5.242968px;}
.ws8c{word-spacing:-5.240880px;}
.ws80{word-spacing:-5.230440px;}
.ws84{word-spacing:-5.209560px;}
.ws15{word-spacing:-5.194991px;}
.wsf5{word-spacing:-5.161140px;}
.ws87{word-spacing:-5.159448px;}
.ws8b{word-spacing:-5.151096px;}
.ws89{word-spacing:-5.142744px;}
.ws86{word-spacing:-5.128128px;}
.ws105{word-spacing:-4.972248px;}
.ws107{word-spacing:-4.926456px;}
.ws10d{word-spacing:-4.915008px;}
.ws16{word-spacing:-4.836313px;}
.ws14{word-spacing:-4.834363px;}
.ws85{word-spacing:-4.829544px;}
.ws7b{word-spacing:-4.812840px;}
.ws81{word-spacing:-4.798224px;}
.ws79{word-spacing:-4.766904px;}
.wsf1{word-spacing:-4.730152px;}
.ws10a{word-spacing:-4.617360px;}
.ws108{word-spacing:-4.607820px;}
.wsc{word-spacing:-4.602038px;}
.ws10e{word-spacing:-4.588740px;}
.wsb{word-spacing:-4.576945px;}
.wsf2{word-spacing:-4.505422px;}
.ws51{word-spacing:-4.341223px;}
.ws10b{word-spacing:-4.237668px;}
.ws141{word-spacing:-4.207896px;}
.ws74{word-spacing:-4.203360px;}
.wse{word-spacing:-4.034938px;}
.ws55{word-spacing:-3.967337px;}
.ws69{word-spacing:-3.862800px;}
.ws68{word-spacing:-3.861468px;}
.ws5f{word-spacing:-3.857472px;}
.ws58{word-spacing:-3.854808px;}
.ws57{word-spacing:-3.853476px;}
.ws60{word-spacing:-3.850812px;}
.ws5e{word-spacing:-3.849480px;}
.ws67{word-spacing:-3.848148px;}
.ws5a{word-spacing:-3.845484px;}
.ws56{word-spacing:-3.844152px;}
.ws65{word-spacing:-3.840156px;}
.ws5d{word-spacing:-3.837492px;}
.ws64{word-spacing:-3.818844px;}
.wsd{word-spacing:-3.667081px;}
.ws12f{word-spacing:-3.633830px;}
.ws54{word-spacing:-3.630202px;}
.ws122{word-spacing:-3.623732px;}
.ws118{word-spacing:-3.617925px;}
.ws5c{word-spacing:-3.596400px;}
.ws5b{word-spacing:-3.592404px;}
.ws59{word-spacing:-3.587076px;}
.ws63{word-spacing:-3.580416px;}
.ws62{word-spacing:-3.555108px;}
.ws131{word-spacing:-3.115002px;}
.ws121{word-spacing:-3.106782px;}
.ws11a{word-spacing:-3.102534px;}
.ws132{word-spacing:-3.078011px;}
.wsec{word-spacing:-3.040621px;}
.ws119{word-spacing:-2.980307px;}
.ws120{word-spacing:-2.979829px;}
.ws127{word-spacing:-2.979376px;}
.ws11b{word-spacing:-2.964010px;}
.wse5{word-spacing:-2.859032px;}
.ws123{word-spacing:-2.742579px;}
.ws11c{word-spacing:-2.718042px;}
.ws130{word-spacing:-2.622572px;}
.wse2{word-spacing:-2.618552px;}
.ws12d{word-spacing:-2.544392px;}
.ws11e{word-spacing:-2.536003px;}
.wse6{word-spacing:-2.532489px;}
.ws116{word-spacing:-2.530103px;}
.wse3{word-spacing:-2.391872px;}
.ws128{word-spacing:-2.375473px;}
.ws125{word-spacing:-2.321651px;}
.ws12b{word-spacing:-2.063396px;}
.ws12e{word-spacing:-2.062115px;}
.ws11f{word-spacing:-2.056630px;}
.ws117{word-spacing:-2.055454px;}
.wsdc{word-spacing:-1.920913px;}
.ws126{word-spacing:-1.872829px;}
.wsdf{word-spacing:-1.861729px;}
.wse9{word-spacing:-1.751109px;}
.wsde{word-spacing:-1.576812px;}
.wsdb{word-spacing:-1.521411px;}
.wsd8{word-spacing:-1.362722px;}
.ws129{word-spacing:-1.335519px;}
.ws176{word-spacing:-1.293900px;}
.wse1{word-spacing:-1.192154px;}
.wsee{word-spacing:-1.115883px;}
.ws17d{word-spacing:-0.938146px;}
.ws17c{word-spacing:-0.937140px;}
.ws177{word-spacing:-0.930578px;}
.ws174{word-spacing:-0.920952px;}
.wsf0{word-spacing:-0.848602px;}
.ws2f{word-spacing:-0.759406px;}
.ws157{word-spacing:-0.703505px;}
.wseb{word-spacing:-0.679802px;}
.ws156{word-spacing:-0.673165px;}
.wsc5{word-spacing:-0.646380px;}
.ws165{word-spacing:-0.522784px;}
.ws140{word-spacing:-0.510480px;}
.ws163{word-spacing:-0.495360px;}
.ws11{word-spacing:-0.460800px;}
.wsc3{word-spacing:-0.437760px;}
.wsa3{word-spacing:-0.409624px;}
.wscb{word-spacing:-0.398592px;}
.ws94{word-spacing:-0.387320px;}
.ws8e{word-spacing:-0.383040px;}
.ws154{word-spacing:-0.378889px;}
.wsce{word-spacing:-0.360972px;}
.ws173{word-spacing:-0.354459px;}
.ws179{word-spacing:-0.349388px;}
.ws7c{word-spacing:-0.340344px;}
.ws10c{word-spacing:-0.297648px;}
.wsc1{word-spacing:-0.280440px;}
.wsd1{word-spacing:-0.273528px;}
.wsc0{word-spacing:-0.256500px;}
.ws16c{word-spacing:-0.251856px;}
.wsc2{word-spacing:-0.249660px;}
.ws18{word-spacing:-0.247752px;}
.ws18c{word-spacing:-0.246240px;}
.ws17a{word-spacing:-0.244105px;}
.wsad{word-spacing:-0.242424px;}
.wsaa{word-spacing:-0.241092px;}
.ws2a{word-spacing:-0.239400px;}
.wsb6{word-spacing:-0.235980px;}
.ws16b{word-spacing:-0.234684px;}
.ws18a{word-spacing:-0.232560px;}
.ws6e{word-spacing:-0.225720px;}
.wsc4{word-spacing:-0.222300px;}
.ws153{word-spacing:-0.220111px;}
.wsb8{word-spacing:-0.218880px;}
.ws145{word-spacing:-0.218160px;}
.wsb2{word-spacing:-0.215460px;}
.wsd2{word-spacing:-0.212040px;}
.ws2b{word-spacing:-0.208620px;}
.ws36{word-spacing:-0.205200px;}
.ws99{word-spacing:-0.204919px;}
.wsbc{word-spacing:-0.201780px;}
.ws9e{word-spacing:-0.200416px;}
.wsd5{word-spacing:-0.198360px;}
.ws9c{word-spacing:-0.195912px;}
.ws25{word-spacing:-0.194940px;}
.wsb0{word-spacing:-0.191520px;}
.ws37{word-spacing:-0.188100px;}
.wsbb{word-spacing:-0.184680px;}
.wsda{word-spacing:-0.183988px;}
.ws23{word-spacing:-0.181260px;}
.ws27{word-spacing:-0.177840px;}
.ws13a{word-spacing:-0.175392px;}
.wsd6{word-spacing:-0.174420px;}
.wsb1{word-spacing:-0.171000px;}
.ws18b{word-spacing:-0.160740px;}
.ws46{word-spacing:-0.157320px;}
.wsbf{word-spacing:-0.153900px;}
.ws14c{word-spacing:-0.151978px;}
.wsb9{word-spacing:-0.150480px;}
.ws14a{word-spacing:-0.149757px;}
.ws147{word-spacing:-0.149369px;}
.wsb3{word-spacing:-0.147060px;}
.ws8f{word-spacing:-0.143640px;}
.wsd4{word-spacing:-0.140220px;}
.wsd3{word-spacing:-0.133380px;}
.wsbd{word-spacing:-0.129960px;}
.ws184{word-spacing:-0.129600px;}
.ws166{word-spacing:-0.129260px;}
.wsb4{word-spacing:-0.123120px;}
.wse8{word-spacing:-0.120138px;}
.wsb7{word-spacing:-0.119700px;}
.ws164{word-spacing:-0.119206px;}
.ws187{word-spacing:-0.118080px;}
.ws61{word-spacing:-0.114552px;}
.ws169{word-spacing:-0.112860px;}
.wsc9{word-spacing:-0.112320px;}
.ws3d{word-spacing:-0.109440px;}
.ws170{word-spacing:-0.099072px;}
.ws14f{word-spacing:-0.098097px;}
.ws15d{word-spacing:-0.097920px;}
.ws171{word-spacing:-0.092160px;}
.ws3e{word-spacing:-0.083520px;}
.ws42{word-spacing:-0.077724px;}
.ws162{word-spacing:-0.072000px;}
.ws159{word-spacing:-0.067502px;}
.ws43{word-spacing:-0.064008px;}
.ws15a{word-spacing:-0.063284px;}
.ws32{word-spacing:-0.062208px;}
.ws70{word-spacing:-0.058140px;}
.wsca{word-spacing:-0.057600px;}
.ws152{word-spacing:-0.054171px;}
.ws151{word-spacing:-0.053324px;}
.wscc{word-spacing:-0.050688px;}
.wsba{word-spacing:-0.047880px;}
.ws96{word-spacing:-0.045037px;}
.ws97{word-spacing:-0.040533px;}
.ws15c{word-spacing:-0.037440px;}
.ws95{word-spacing:-0.036030px;}
.ws6d{word-spacing:-0.034200px;}
.ws7a{word-spacing:-0.020880px;}
.ws16f{word-spacing:-0.013824px;}
.ws16d{word-spacing:-0.011520px;}
.ws16e{word-spacing:-0.009216px;}
.wsf{word-spacing:-0.006691px;}
.wsae{word-spacing:-0.006660px;}
.ws39{word-spacing:-0.005019px;}
.ws17{word-spacing:0.000000px;}
.ws158{word-spacing:0.001896px;}
.ws1e{word-spacing:0.009180px;}
.wsaf{word-spacing:0.017100px;}
.ws1c{word-spacing:0.030600px;}
.ws44{word-spacing:0.031680px;}
.ws40{word-spacing:0.040320px;}
.ws3a{word-spacing:0.044460px;}
.ws3b{word-spacing:0.046080px;}
.ws181{word-spacing:0.050112px;}
.wsc8{word-spacing:0.054720px;}
.ws155{word-spacing:0.063918px;}
.ws3f{word-spacing:0.066240px;}
.ws15f{word-spacing:0.069120px;}
.ws186{word-spacing:0.073080px;}
.ws161{word-spacing:0.080640px;}
.ws160{word-spacing:0.083520px;}
.ws185{word-spacing:0.086400px;}
.ws1f{word-spacing:0.088740px;}
.ws14d{word-spacing:0.091560px;}
.ws17e{word-spacing:0.097920px;}
.ws15e{word-spacing:0.103680px;}
.wsac{word-spacing:0.106560px;}
.ws14e{word-spacing:0.108826px;}
.ws167{word-spacing:0.112896px;}
.ws183{word-spacing:0.114840px;}
.ws1b{word-spacing:0.120528px;}
.ws2c{word-spacing:0.122400px;}
.wsd0{word-spacing:0.133632px;}
.ws168{word-spacing:0.136800px;}
.ws19{word-spacing:0.140616px;}
.ws33{word-spacing:0.143640px;}
.ws2d{word-spacing:0.143820px;}
.ws47{word-spacing:0.147060px;}
.ws92{word-spacing:0.148623px;}
.ws182{word-spacing:0.152064px;}
.ws34{word-spacing:0.153900px;}
.wscf{word-spacing:0.154512px;}
.wsd7{word-spacing:0.157320px;}
.ws29{word-spacing:0.160740px;}
.ws24{word-spacing:0.164160px;}
.ws1a{word-spacing:0.167400px;}
.ws9a{word-spacing:0.168890px;}
.ws41{word-spacing:0.172800px;}
.ws4b{word-spacing:0.189086px;}
.wsb5{word-spacing:0.191520px;}
.ws1d{word-spacing:0.192780px;}
.wsc7{word-spacing:0.195840px;}
.ws21{word-spacing:0.207792px;}
.wsc6{word-spacing:0.208080px;}
.ws28{word-spacing:0.212040px;}
.ws110{word-spacing:0.221184px;}
.ws22{word-spacing:0.223776px;}
.ws16a{word-spacing:0.229140px;}
.ws45{word-spacing:0.231768px;}
.wsa1{word-spacing:0.233417px;}
.ws20{word-spacing:0.234432px;}
.ws26{word-spacing:0.235980px;}
.wsbe{word-spacing:0.246240px;}
.ws17f{word-spacing:0.249948px;}
.ws149{word-spacing:0.251063px;}
.ws146{word-spacing:0.263821px;}
.ws112{word-spacing:0.267264px;}
.wscd{word-spacing:0.274176px;}
.wsa2{word-spacing:0.276896px;}
.ws175{word-spacing:0.291485px;}
.ws172{word-spacing:0.302291px;}
.ws17b{word-spacing:0.306119px;}
.ws35{word-spacing:0.311220px;}
.ws91{word-spacing:0.317512px;}
.wsa5{word-spacing:0.324953px;}
.ws148{word-spacing:0.354348px;}
.ws14b{word-spacing:0.355268px;}
.ws98{word-spacing:0.358046px;}
.wsa6{word-spacing:0.375298px;}
.ws180{word-spacing:0.398808px;}
.ws3c{word-spacing:0.446400px;}
.wsab{word-spacing:0.458208px;}
.ws178{word-spacing:0.462485px;}
.ws90{word-spacing:0.506669px;}
.ws93{word-spacing:0.508920px;}
.wsa0{word-spacing:0.527326px;}
.ws38{word-spacing:0.535315px;}
.ws48{word-spacing:0.553613px;}
.ws4a{word-spacing:0.555562px;}
.ws49{word-spacing:0.557511px;}
.ws30{word-spacing:0.571386px;}
.ws31{word-spacing:0.573828px;}
.ws2e{word-spacing:0.576270px;}
.ws10{word-spacing:0.603902px;}
.ws12a{word-spacing:0.634919px;}
.ws9d{word-spacing:0.718343px;}
.ws150{word-spacing:0.747221px;}
.wsa4{word-spacing:0.787210px;}
.ws15b{word-spacing:0.822083px;}
.ws9b{word-spacing:0.866966px;}
.wsa7{word-spacing:1.100388px;}
.ws9f{word-spacing:1.220508px;}
.wsa8{word-spacing:1.227448px;}
.wsa9{word-spacing:1.957305px;}
.wsf9{word-spacing:4.245300px;}
.ws13{word-spacing:8.231940px;}
.wsea{word-spacing:11.703210px;}
.wsf3{word-spacing:15.738099px;}
.wsdd{word-spacing:18.824687px;}
.wse4{word-spacing:19.144172px;}
.wse7{word-spacing:26.905999px;}
.wse0{word-spacing:31.106251px;}
.ws53{word-spacing:39.436617px;}
.ws52{word-spacing:42.130214px;}
.ws124{word-spacing:43.823912px;}
.ws12c{word-spacing:48.541217px;}
.ws11d{word-spacing:64.060159px;}
.ws115{word-spacing:64.431933px;}
.wsf4{word-spacing:160.063416px;}
.wsf6{word-spacing:169.089336px;}
.wsfa{word-spacing:221.282064px;}
.wsfd{word-spacing:225.144576px;}
.wsff{word-spacing:235.944576px;}
.wsf8{word-spacing:243.607104px;}
.ws50{word-spacing:723.794440px;}
._3e{margin-left:-650.083392px;}
._55{margin-left:-636.028416px;}
._5d{margin-left:-582.536736px;}
._5c{margin-left:-531.457920px;}
._58{margin-left:-487.462752px;}
._2c{margin-left:-437.893776px;}
._4d{margin-left:-414.745920px;}
._48{margin-left:-408.955104px;}
._54{margin-left:-403.337088px;}
._2b{margin-left:-399.817440px;}
._1c{margin-left:-352.382112px;}
._1f{margin-left:-349.532640px;}
._1d{margin-left:-346.262112px;}
._26{margin-left:-333.049248px;}
._1e{margin-left:-327.548664px;}
._29{margin-left:-323.193024px;}
._59{margin-left:-318.697920px;}
._24{margin-left:-316.795104px;}
._5a{margin-left:-309.697920px;}
._2d{margin-left:-306.439498px;}
._5b{margin-left:-304.657920px;}
._2a{margin-left:-277.998552px;}
._25{margin-left:-259.942752px;}
._27{margin-left:-256.999104px;}
._20{margin-left:-254.182752px;}
._21{margin-left:-251.239104px;}
._4e{margin-left:-247.998600px;}
._4a{margin-left:-245.545920px;}
._44{margin-left:-242.228664px;}
._4b{margin-left:-239.809248px;}
._46{margin-left:-233.995104px;}
._56{margin-left:-230.422752px;}
._3c{margin-left:-225.637632px;}
._3a{margin-left:-220.682592px;}
._57{margin-left:-217.122912px;}
._39{margin-left:-213.174720px;}
._3b{margin-left:-206.920512px;}
._3d{margin-left:-202.021056px;}
._51{margin-left:-199.866096px;}
._53{margin-left:-191.946096px;}
._50{margin-left:-183.658464px;}
._49{margin-left:-177.984576px;}
._45{margin-left:-165.955104px;}
._4f{margin-left:-162.409248px;}
._4c{margin-left:-156.595104px;}
._52{margin-left:-155.586096px;}
._47{margin-left:-151.159104px;}
._28{margin-left:-146.905920px;}
._23{margin-left:-143.635104px;}
._22{margin-left:-141.115104px;}
._31{margin-left:-33.826093px;}
._33{margin-left:-32.616436px;}
._2e{margin-left:-21.952749px;}
._32{margin-left:-5.745607px;}
._3{margin-left:-4.204850px;}
._2{margin-left:-2.244014px;}
._0{margin-left:-1.124640px;}
._1{width:1.172160px;}
._4{width:2.219596px;}
._b{width:7.497501px;}
._1a{width:10.651680px;}
._13{width:14.199694px;}
._1b{width:15.859944px;}
._30{width:17.571111px;}
._e{width:19.835211px;}
._38{width:21.572024px;}
._37{width:25.291834px;}
._35{width:28.006290px;}
._36{width:29.011644px;}
._2f{width:30.725046px;}
._34{width:33.061784px;}
._18{width:43.673599px;}
._6{width:44.767800px;}
._19{width:47.106167px;}
._41{width:49.302586px;}
._15{width:54.507988px;}
._42{width:56.126686px;}
._7{width:59.696675px;}
._40{width:60.807252px;}
._12{width:63.897458px;}
._a{width:65.567006px;}
._16{width:66.602862px;}
._8{width:72.352031px;}
._3f{width:83.020158px;}
._d{width:90.298393px;}
._c{width:97.231445px;}
._9{width:104.393844px;}
._17{width:111.015505px;}
._10{width:115.789448px;}
._11{width:133.601661px;}
._f{width:138.533234px;}
._14{width:140.380952px;}
._5{width:321.445800px;}
._43{width:588.923280px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs24{font-size:3.963000px;}
.fs33{font-size:4.017600px;}
.fs1d{font-size:4.114800px;}
.fs20{font-size:4.715400px;}
.fs27{font-size:4.876800px;}
.fs2a{font-size:5.386200px;}
.fs34{font-size:5.525400px;}
.fs2d{font-size:5.601000px;}
.fs32{font-size:6.027000px;}
.fs30{font-size:6.033000px;}
.fs23{font-size:6.228600px;}
.fs1c{font-size:6.466200px;}
.fs21{font-size:6.483000px;}
.fs31{font-size:7.031400px;}
.fs1f{font-size:7.072200px;}
.fs22{font-size:7.361400px;}
.fs26{font-size:7.663800px;}
.fs2e{font-size:7.701000px;}
.fs1b{font-size:8.229000px;}
.fs1e{font-size:8.250600px;}
.fs2c{font-size:8.401200px;}
.fs29{font-size:8.464200px;}
.fs25{font-size:9.057600px;}
.fs2b{font-size:9.101400px;}
.fs41{font-size:9.122400px;}
.fs37{font-size:9.139200px;}
.fs28{font-size:9.234600px;}
.fs2f{font-size:9.481200px;}
.fs44{font-size:10.153200px;}
.fs3e{font-size:10.156200px;}
.fs3b{font-size:10.185600px;}
.fsb{font-size:10.376400px;}
.fs18{font-size:10.466400px;}
.fs40{font-size:10.946400px;}
.fs43{font-size:11.168400px;}
.fs3d{font-size:11.171400px;}
.fs3a{font-size:11.203800px;}
.fs8{font-size:13.061400px;}
.fs46{font-size:13.068600px;}
.fs17{font-size:13.320000px;}
.fs45{font-size:13.522800px;}
.fs3f{font-size:13.683000px;}
.fs38{font-size:13.704000px;}
.fsd{font-size:13.885200px;}
.fs3c{font-size:14.218800px;}
.fs39{font-size:14.259000px;}
.fs36{font-size:14.362200px;}
.fs1a{font-size:15.120000px;}
.fs42{font-size:15.229800px;}
.fs16{font-size:15.978000px;}
.fsc{font-size:16.728600px;}
.fs35{font-size:16.972200px;}
.fs4{font-size:17.280000px;}
.fs6{font-size:18.070200px;}
.fs19{font-size:19.080000px;}
.fs10{font-size:19.493400px;}
.fs3{font-size:20.880000px;}
.fs12{font-size:22.518600px;}
.fs14{font-size:22.884000px;}
.fsa{font-size:23.040000px;}
.fs15{font-size:23.973600px;}
.fs9{font-size:24.418200px;}
.fs5{font-size:26.640000px;}
.fs13{font-size:28.659000px;}
.fse{font-size:28.800000px;}
.fs2{font-size:30.600000px;}
.fs7{font-size:34.200000px;}
.fsf{font-size:45.720000px;}
.fs1{font-size:66.960000px;}
.fs11{font-size:72.000000px;}
.fs0{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:0.900600px;}
.y67{bottom:4.707450px;}
.y69{bottom:4.715850px;}
.y66{bottom:24.129450px;}
.y1{bottom:37.470450px;}
.y68{bottom:54.000031px;}
.y2c4{bottom:163.560450px;}
.y164{bottom:164.370600px;}
.y2b1{bottom:166.170450px;}
.y19a{bottom:167.700600px;}
.y2c5{bottom:169.230450px;}
.y163{bottom:169.323330px;}
.y5b{bottom:169.680450px;}
.y2b2{bottom:172.380450px;}
.y162{bottom:176.160450px;}
.y2b3{bottom:182.460600px;}
.y5a{bottom:183.450600px;}
.y199{bottom:186.826350px;}
.y165{bottom:189.480450px;}
.y57{bottom:189.660450px;}
.y166{bottom:190.200600px;}
.y2a0{bottom:190.290600px;}
.y2b4{bottom:194.880450px;}
.y198{bottom:197.171850px;}
.y167{bottom:200.100450px;}
.y168{bottom:200.280600px;}
.y169{bottom:200.550450px;}
.y2a1{bottom:200.730450px;}
.y59{bottom:204.690450px;}
.y2b5{bottom:207.300450px;}
.y197{bottom:207.517350px;}
.y16a{bottom:210.360450px;}
.y16b{bottom:210.540600px;}
.y16c{bottom:210.810450px;}
.y2a2{bottom:211.530600px;}
.y55{bottom:212.081250px;}
.y196{bottom:217.862850px;}
.y2b6{bottom:219.720450px;}
.y16d{bottom:220.620600px;}
.y16e{bottom:220.800450px;}
.y16f{bottom:221.070450px;}
.y2a3{bottom:222.330450px;}
.y54{bottom:222.427650px;}
.y170{bottom:230.790600px;}
.y2b7{bottom:232.140450px;}
.y53{bottom:232.687650px;}
.y58{bottom:233.130450px;}
.y195{bottom:233.338350px;}
.y2a4{bottom:233.580450px;}
.y171{bottom:240.960600px;}
.y172{bottom:241.050450px;}
.y173{bottom:241.590450px;}
.y52{bottom:243.034050px;}
.y194{bottom:243.683850px;}
.y2b8{bottom:244.650450px;}
.y2a5{bottom:244.830450px;}
.y56{bottom:246.540600px;}
.y174{bottom:251.850450px;}
.y175{bottom:252.030450px;}
.y176{bottom:252.570450px;}
.y51{bottom:253.380450px;}
.y193{bottom:253.943850px;}
.y2a6{bottom:255.270450px;}
.y64{bottom:255.272430px;}
.y2b9{bottom:257.070450px;}
.y63{bottom:261.120450px;}
.y50{bottom:261.934050px;}
.y177{bottom:262.380450px;}
.y178{bottom:262.560450px;}
.y179{bottom:262.830450px;}
.y2a7{bottom:265.710450px;}
.y2ba{bottom:269.400450px;}
.y192{bottom:269.513400px;}
.y4f{bottom:272.280450px;}
.y17c{bottom:272.730450px;}
.y17a{bottom:272.820450px;}
.y17b{bottom:273.090450px;}
.y2a8{bottom:277.140450px;}
.y62{bottom:279.032430px;}
.y191{bottom:279.858900px;}
.y2bb{bottom:281.820450px;}
.y17f{bottom:282.990450px;}
.y17d{bottom:283.080450px;}
.y17e{bottom:283.350450px;}
.y61{bottom:284.880450px;}
.y60{bottom:288.480450px;}
.y2a9{bottom:288.570450px;}
.y180{bottom:293.070450px;}
.y2bc{bottom:294.330450px;}
.y4a{bottom:294.510959px;}
.y190{bottom:295.334400px;}
.y2aa{bottom:299.010450px;}
.y49{bottom:299.550450px;}
.y181{bottom:302.790450px;}
.y18f{bottom:305.679900px;}
.y2bd{bottom:306.750450px;}
.y2ab{bottom:309.450450px;}
.y182{bottom:312.600450px;}
.y183{bottom:312.870450px;}
.y184{bottom:313.050450px;}
.y46{bottom:314.220450px;}
.y2be{bottom:319.170450px;}
.y4c{bottom:319.620450px;}
.y18e{bottom:321.163950px;}
.y185{bottom:322.770450px;}
.y2ac{bottom:323.220450px;}
.y2bf{bottom:331.590450px;}
.y187{bottom:336.451170px;}
.y18d{bottom:336.639450px;}
.y2ad{bottom:336.990450px;}
.y43{bottom:337.621468px;}
.y188{bottom:339.600450px;}
.y5f{bottom:339.868650px;}
.y42{bottom:342.660959px;}
.y186{bottom:342.840450px;}
.y4b{bottom:343.470450px;}
.y2c0{bottom:346.080450px;}
.y18c{bottom:346.984950px;}
.y41{bottom:347.700450px;}
.y45{bottom:348.420450px;}
.y2ae{bottom:352.380450px;}
.y5e{bottom:355.352700px;}
.y18b{bottom:357.330450px;}
.y48{bottom:359.400959px;}
.y189{bottom:361.290600px;}
.y2c1{bottom:363.900450px;}
.y47{bottom:364.440450px;}
.y5d{bottom:365.698200px;}
.y4e{bottom:371.011050px;}
.y44{bottom:371.910450px;}
.y2b0{bottom:377.404200px;}
.y5c{bottom:381.900450px;}
.y161{bottom:383.974050px;}
.y18a{bottom:384.600450px;}
.y2c3{bottom:385.504050px;}
.y2af{bottom:385.950600px;}
.y4d{bottom:390.000600px;}
.y160{bottom:392.614050px;}
.y2c2{bottom:394.050450px;}
.y15f{bottom:401.160450px;}
.y39{bottom:511.410450px;}
.y40{bottom:515.550450px;}
.y3a{bottom:517.800450px;}
.y29d{bottom:517.890450px;}
.y14f{bottom:519.870600px;}
.y259{bottom:522.300450px;}
.y15d{bottom:526.348650px;}
.y258{bottom:528.420450px;}
.y14d{bottom:532.930800px;}
.y29e{bottom:533.190450px;}
.y27a{bottom:534.180450px;}
.y299{bottom:534.450450px;}
.y37{bottom:534.900450px;}
.y15c{bottom:535.620450px;}
.y26b{bottom:539.400450px;}
.y28b{bottom:539.670450px;}
.y14c{bottom:543.276300px;}
.y15b{bottom:544.800450px;}
.y23{bottom:544.981840px;}
.y36{bottom:545.520450px;}
.y26c{bottom:545.610450px;}
.y28c{bottom:545.880450px;}
.y26d{bottom:549.929374px;}
.y28d{bottom:550.200637px;}
.y14b{bottom:553.536300px;}
.y26e{bottom:554.519976px;}
.y28e{bottom:554.520823px;}
.y22c{bottom:555.150450px;}
.y22d{bottom:555.240450px;}
.y21{bottom:555.329053px;}
.y22{bottom:555.780789px;}
.y24{bottom:556.769727px;}
.y20{bottom:557.221463px;}
.y26f{bottom:558.841440px;}
.y15a{bottom:558.852150px;}
.y28f{bottom:559.110070px;}
.y1f{bottom:560.011243px;}
.y35{bottom:562.890450px;}
.y290{bottom:563.430256px;}
.y270{bottom:563.432042px;}
.y14a{bottom:563.881800px;}
.y279{bottom:565.230450px;}
.y22e{bottom:565.410450px;}
.y22f{bottom:565.500450px;}
.y230{bottom:565.860450px;}
.y291{bottom:567.750443px;}
.y271{bottom:567.750966px;}
.y25{bottom:568.472149px;}
.y292{bottom:572.339689px;}
.y272{bottom:572.341568px;}
.y159{bottom:574.336200px;}
.y293{bottom:576.659876px;}
.y273{bottom:576.660492px;}
.y231{bottom:576.750450px;}
.y232{bottom:576.840450px;}
.y233{bottom:577.110450px;}
.y149{bottom:579.451350px;}
.y34{bottom:580.260450px;}
.y274{bottom:580.979417px;}
.y294{bottom:580.980062px;}
.y1e{bottom:581.609140px;}
.y295{bottom:585.300249px;}
.y275{bottom:585.478613px;}
.y234{bottom:587.910450px;}
.y235{bottom:588.000450px;}
.y236{bottom:588.360450px;}
.y276{bottom:589.797537px;}
.y296{bottom:589.800655px;}
.y158{bottom:589.905750px;}
.y33{bottom:590.158481px;}
.y148{bottom:593.943600px;}
.y297{bottom:594.120841px;}
.y277{bottom:594.388140px;}
.y32{bottom:597.630450px;}
.y237{bottom:598.170450px;}
.y238{bottom:598.260450px;}
.y298{bottom:598.441028px;}
.y239{bottom:598.620450px;}
.y278{bottom:598.707064px;}
.y147{bottom:604.289100px;}
.y157{bottom:605.381250px;}
.y28a{bottom:607.710450px;}
.y26a{bottom:608.250450px;}
.y23a{bottom:609.510450px;}
.y23b{bottom:609.600450px;}
.y23c{bottom:609.870450px;}
.y31{bottom:615.000450px;}
.y146{bottom:615.735300px;}
.y23d{bottom:620.760450px;}
.y23e{bottom:620.850450px;}
.y156{bottom:620.856750px;}
.y269{bottom:620.940450px;}
.y23f{bottom:621.210450px;}
.y29f{bottom:622.561170px;}
.y30{bottom:624.898481px;}
.y25b{bottom:626.070450px;}
.y240{bottom:631.020450px;}
.y241{bottom:631.110450px;}
.y145{bottom:631.210800px;}
.y242{bottom:631.470450px;}
.y2f{bottom:632.370450px;}
.y27c{bottom:632.550450px;}
.y1d{bottom:634.260884px;}
.y155{bottom:636.426300px;}
.y25c{bottom:636.691691px;}
.y27d{bottom:636.961130px;}
.y25d{bottom:641.012932px;}
.y243{bottom:641.280450px;}
.y244{bottom:641.370450px;}
.y27e{bottom:641.460754px;}
.y245{bottom:641.730450px;}
.y25e{bottom:645.604091px;}
.y27f{bottom:646.051602px;}
.y144{bottom:646.780350px;}
.y2e{bottom:649.740450px;}
.y25f{bottom:649.925332px;}
.y280{bottom:650.371058px;}
.y246{bottom:651.540450px;}
.y247{bottom:651.630450px;}
.y268{bottom:651.810450px;}
.y154{bottom:651.901800px;}
.y248{bottom:651.990450px;}
.y289{bottom:653.160450px;}
.y260{bottom:654.516491px;}
.y281{bottom:654.961906px;}
.y143{bottom:657.040350px;}
.y261{bottom:658.837732px;}
.y282{bottom:659.461530px;}
.y26{bottom:660.540972px;}
.y249{bottom:661.890450px;}
.y24a{bottom:661.980450px;}
.y153{bottom:662.255850px;}
.y24b{bottom:662.340450px;}
.y262{bottom:663.158972px;}
.y283{bottom:663.872210px;}
.y2d{bottom:667.110450px;}
.y263{bottom:667.750132px;}
.y284{bottom:668.371834px;}
.y264{bottom:672.071372px;}
.y24c{bottom:672.150450px;}
.y24d{bottom:672.240450px;}
.y24e{bottom:672.600450px;}
.y142{bottom:672.609900px;}
.y285{bottom:672.691291px;}
.y265{bottom:676.662532px;}
.y2c{bottom:677.008481px;}
.y286{bottom:677.282138px;}
.y152{bottom:677.739900px;}
.y266{bottom:680.983772px;}
.y287{bottom:681.872986px;}
.y24f{bottom:682.410450px;}
.y250{bottom:682.500450px;}
.y251{bottom:682.860450px;}
.y2b{bottom:684.480450px;}
.y267{bottom:685.394137px;}
.y288{bottom:686.192443px;}
.y151{bottom:688.085400px;}
.y141{bottom:688.093950px;}
.y3f{bottom:691.950450px;}
.y1c{bottom:692.040450px;}
.y253{bottom:692.853330px;}
.y2a{bottom:694.378481px;}
.y25a{bottom:694.920450px;}
.y27b{bottom:695.100450px;}
.y254{bottom:696.270450px;}
.y140{bottom:698.439450px;}
.y252{bottom:699.690450px;}
.y29{bottom:701.850450px;}
.y150{bottom:703.654950px;}
.y3e{bottom:706.989450px;}
.y28{bottom:711.753017px;}
.y13f{bottom:713.914950px;}
.y29c{bottom:713.996850px;}
.y255{bottom:714.630450px;}
.y3d{bottom:717.249450px;}
.y27{bottom:719.310450px;}
.y29b{bottom:722.550450px;}
.y13e{bottom:724.260450px;}
.y3c{bottom:727.594950px;}
.y29a{bottom:731.190450px;}
.y3b{bottom:737.940450px;}
.y257{bottom:739.654050px;}
.y38{bottom:740.640450px;}
.y14e{bottom:743.354850px;}
.y15e{bottom:746.130450px;}
.y256{bottom:748.200450px;}
.y86{bottom:856.470135px;}
.y80{bottom:858.628392px;}
.y82{bottom:858.631671px;}
.y22b{bottom:861.960450px;}
.y1a4{bottom:864.030062px;}
.y13d{bottom:864.750600px;}
.y1ec{bottom:865.106735px;}
.y1a3{bottom:866.999665px;}
.y2d6{bottom:868.350450px;}
.y22a{bottom:868.800450px;}
.y19e{bottom:869.338812px;}
.y1eb{bottom:869.427792px;}
.y1b{bottom:870.870450px;}
.y13c{bottom:871.140450px;}
.y83{bottom:871.590450px;}
.y13a{bottom:872.315130px;}
.y101{bottom:872.347890px;}
.y1e4{bottom:872.940577px;}
.y84{bottom:873.570450px;}
.y139{bottom:876.274500px;}
.y100{bottom:876.307260px;}
.y1e5{bottom:878.700406px;}
.y2d5{bottom:878.815200px;}
.y19f{bottom:879.599055px;}
.y138{bottom:880.323780px;}
.yff{bottom:880.356540px;}
.y85{bottom:882.300450px;}
.y1ed{bottom:882.570450px;}
.y137{bottom:884.283150px;}
.yfe{bottom:884.315910px;}
.y81{bottom:884.370450px;}
.y1e6{bottom:884.550306px;}
.y1a5{bottom:884.640450px;}
.y136{bottom:888.242520px;}
.yfd{bottom:888.275280px;}
.y2d4{bottom:889.160700px;}
.y1a0{bottom:889.949825px;}
.y1e7{bottom:890.129993px;}
.y135{bottom:892.291800px;}
.yfc{bottom:892.324560px;}
.y214{bottom:893.550450px;}
.y88{bottom:894.543031px;}
.y1e8{bottom:895.979893px;}
.y134{bottom:896.251170px;}
.yfb{bottom:896.283930px;}
.y219{bottom:896.340450px;}
.y20e{bottom:896.341275px;}
.y19{bottom:898.794750px;}
.y1e1{bottom:899.669735px;}
.y1e3{bottom:899.670450px;}
.y1a1{bottom:900.210068px;}
.y133{bottom:900.300450px;}
.yfa{bottom:900.333210px;}
.y1e2{bottom:900.390450px;}
.y19c{bottom:901.380450px;}
.y1e9{bottom:901.829793px;}
.y19d{bottom:901.830450px;}
.y20d{bottom:902.911981px;}
.yb{bottom:903.543510px;}
.y229{bottom:903.654300px;}
.yf9{bottom:904.292580px;}
.y132{bottom:904.329210px;}
.y1ea{bottom:907.589622px;}
.y204{bottom:908.129050px;}
.y8d{bottom:908.130450px;}
.yf8{bottom:908.341860px;}
.y131{bottom:908.378490px;}
.y18{bottom:909.140250px;}
.y2d3{bottom:909.766200px;}
.y1a2{bottom:910.470311px;}
.y213{bottom:910.830450px;}
.y8b{bottom:911.640000px;}
.ya{bottom:911.820450px;}
.yf7{bottom:912.301230px;}
.y130{bottom:912.337860px;}
.y8a{bottom:912.540600px;}
.y228{bottom:913.999800px;}
.y1e0{bottom:915.510450px;}
.yf6{bottom:916.260600px;}
.y12f{bottom:916.297230px;}
.y19b{bottom:916.320450px;}
.y8e{bottom:916.590450px;}
.y205{bottom:916.951032px;}
.y17{bottom:919.485750px;}
.y2d2{bottom:920.111700px;}
.yf5{bottom:920.219970px;}
.y12e{bottom:920.346510px;}
.y79{bottom:920.910450px;}
.y7c{bottom:920.912562px;}
.y8f{bottom:924.150450px;}
.yf4{bottom:924.269250px;}
.y12d{bottom:924.305880px;}
.y227{bottom:924.345300px;}
.y1de{bottom:925.230545px;}
.ya6{bottom:925.409003px;}
.y1d3{bottom:925.590227px;}
.y9{bottom:925.866570px;}
.y206{bottom:926.042304px;}
.ya8{bottom:926.759144px;}
.y215{bottom:926.850450px;}
.yf3{bottom:928.318530px;}
.y12c{bottom:928.355160px;}
.y1dd{bottom:928.830763px;}
.y7e{bottom:929.460450px;}
.y1d2{bottom:929.460483px;}
.yab{bottom:929.910804px;}
.y90{bottom:931.260450px;}
.yc4{bottom:931.612461px;}
.ya5{bottom:931.620450px;}
.y20f{bottom:932.250450px;}
.y8{bottom:932.253510px;}
.yf2{bottom:932.277900px;}
.y12b{bottom:932.314530px;}
.y1cc{bottom:932.520291px;}
.y7a{bottom:933.691164px;}
.y226{bottom:934.605300px;}
.y207{bottom:934.860695px;}
.yaf{bottom:935.666879px;}
.yac{bottom:935.670873px;}
.y7f{bottom:935.850450px;}
.yf1{bottom:936.327180px;}
.y12a{bottom:936.363810px;}
.ya7{bottom:938.279282px;}
.y91{bottom:938.730450px;}
.y1d8{bottom:939.359955px;}
.yb4{bottom:940.080801px;}
.y1cd{bottom:940.080938px;}
.yf0{bottom:940.196640px;}
.y129{bottom:940.323180px;}
.y7{bottom:940.530450px;}
.y2d1{bottom:940.811250px;}
.yaa{bottom:941.430942px;}
.y7b{bottom:942.240450px;}
.yc{bottom:942.870450px;}
.y208{bottom:944.041732px;}
.ya9{bottom:944.131224px;}
.y1d4{bottom:944.220450px;}
.yef{bottom:944.245920px;}
.y128{bottom:944.282550px;}
.y1df{bottom:944.490450px;}
.y92{bottom:945.840450px;}
.yb0{bottom:946.288254px;}
.y7d{bottom:946.650450px;}
.y1d9{bottom:947.010899px;}
.y1ce{bottom:947.370730px;}
.yee{bottom:948.295200px;}
.y127{bottom:948.331830px;}
.yb1{bottom:950.338677px;}
.y16{bottom:950.539350px;}
.y2d0{bottom:951.071250px;}
.yae{bottom:952.048323px;}
.yed{bottom:952.254570px;}
.y126{bottom:952.291200px;}
.y209{bottom:952.770359px;}
.y93{bottom:952.950450px;}
.y1da{bottom:954.571355px;}
.yb9{bottom:954.748605px;}
.y1cf{bottom:954.840386px;}
.y225{bottom:955.304850px;}
.ybe{bottom:956.094752px;}
.yec{bottom:956.303850px;}
.y125{bottom:956.340480px;}
.y87{bottom:956.820450px;}
.ybb{bottom:957.808392px;}
.y6{bottom:958.260450px;}
.y21a{bottom:958.620450px;}
.yb5{bottom:958.711149px;}
.yeb{bottom:960.263220px;}
.y124{bottom:960.299850px;}
.y94{bottom:960.510450px;}
.y15{bottom:960.799350px;}
.y218{bottom:961.320450px;}
.y2cf{bottom:961.416750px;}
.y1ca{bottom:961.770450px;}
.yba{bottom:961.858815px;}
.y20a{bottom:961.951395px;}
.y1d0{bottom:962.130179px;}
.y1d6{bottom:962.130450px;}
.y202{bottom:962.310450px;}
.y1db{bottom:962.310860px;}
.y1cb{bottom:962.490450px;}
.y1d7{bottom:962.850450px;}
.y203{bottom:963.480450px;}
.yea{bottom:964.222590px;}
.y123{bottom:964.259220px;}
.yb7{bottom:964.918602px;}
.y224{bottom:965.564850px;}
.y95{bottom:967.620450px;}
.ye9{bottom:968.271870px;}
.y122{bottom:968.308500px;}
.yb6{bottom:969.420404px;}
.y1d1{bottom:969.690825px;}
.y1dc{bottom:969.961804px;}
.yc0{bottom:970.674677px;}
.y20b{bottom:970.769786px;}
.y14{bottom:971.144850px;}
.ye8{bottom:972.231240px;}
.y121{bottom:972.267870px;}
.yb3{bottom:972.480191px;}
.y96{bottom:974.730450px;}
.y212{bottom:975.810450px;}
.y223{bottom:975.910350px;}
.ye7{bottom:976.280520px;}
.y120{bottom:976.317150px;}
.y1d5{bottom:976.440450px;}
.y1c9{bottom:976.710450px;}
.yc6{bottom:978.236265px;}
.ya3{bottom:978.240450px;}
.y20c{bottom:979.861058px;}
.ye6{bottom:980.239890px;}
.y11f{bottom:980.276520px;}
.y13{bottom:981.490350px;}
.y2ce{bottom:982.022250px;}
.y97{bottom:982.290600px;}
.yad{bottom:984.000329px;}
.ye5{bottom:984.289170px;}
.y11e{bottom:984.325800px;}
.y77{bottom:985.170227px;}
.ybd{bottom:985.346475px;}
.y1f7{bottom:985.800450px;}
.y1c7{bottom:987.065497px;}
.yc1{bottom:988.042763px;}
.ybc{bottom:988.046757px;}
.ye4{bottom:988.248540px;}
.y11d{bottom:988.285170px;}
.y1f6{bottom:988.590975px;}
.yc5{bottom:989.844282px;}
.y98{bottom:989.850450px;}
.y1f1{bottom:990.570450px;}
.y1c6{bottom:990.665567px;}
.y12{bottom:991.835850px;}
.y76{bottom:991.920178px;}
.y201{bottom:992.010450px;}
.ye3{bottom:992.207910px;}
.y11c{bottom:992.244540px;}
.y2cd{bottom:992.367750px;}
.y1c0{bottom:993.451359px;}
.ybf{bottom:994.254210px;}
.yb2{bottom:996.059724px;}
.ye2{bottom:996.257190px;}
.y11b{bottom:996.293820px;}
.y222{bottom:996.609900px;}
.y99{bottom:996.870450px;}
.y75{bottom:998.850277px;}
.ye1{bottom:1000.216560px;}
.y11a{bottom:1000.253190px;}
.y1c1{bottom:1001.101747px;}
.y1f2{bottom:1001.371226px;}
.y5{bottom:1002.086670px;}
.y11{bottom:1002.095850px;}
.y2cc{bottom:1002.713250px;}
.y9a{bottom:1003.980450px;}
.ye0{bottom:1004.265840px;}
.y119{bottom:1004.302470px;}
.y74{bottom:1005.690302px;}
.y1c8{bottom:1006.140450px;}
.y221{bottom:1006.869900px;}
.y1f8{bottom:1007.580450px;}
.ydf{bottom:1008.225210px;}
.y118{bottom:1008.261840px;}
.y1c2{bottom:1008.752135px;}
.y9b{bottom:1011.540450px;}
.y1f3{bottom:1012.172001px;}
.yde{bottom:1012.274490px;}
.y117{bottom:1012.311120px;}
.y10{bottom:1012.441350px;}
.y73{bottom:1012.530326px;}
.ydd{bottom:1016.233860px;}
.y116{bottom:1016.270490px;}
.y1c3{bottom:1016.402524px;}
.y220{bottom:1017.215400px;}
.y9c{bottom:1018.650450px;}
.y72{bottom:1019.370351px;}
.ydc{bottom:1020.193230px;}
.y115{bottom:1020.229860px;}
.y217{bottom:1020.810450px;}
.y4{bottom:1022.157930px;}
.y1be{bottom:1023.060450px;}
.y1f4{bottom:1023.152352px;}
.y2cb{bottom:1023.327300px;}
.y1bf{bottom:1023.510450px;}
.y1ef{bottom:1023.600450px;}
.y1c4{bottom:1024.052912px;}
.y1f0{bottom:1024.230450px;}
.ydb{bottom:1024.242510px;}
.y114{bottom:1024.279140px;}
.y200{bottom:1024.324050px;}
.y71{bottom:1026.210376px;}
.y9d{bottom:1026.210450px;}
.yda{bottom:1028.201880px;}
.y113{bottom:1028.238510px;}
.y1c5{bottom:1031.703300px;}
.yd9{bottom:1032.251160px;}
.y112{bottom:1032.287790px;}
.y1ff{bottom:1032.870450px;}
.y70{bottom:1033.050401px;}
.y9e{bottom:1033.320450px;}
.y2ca{bottom:1033.672800px;}
.y1f5{bottom:1033.951747px;}
.y211{bottom:1035.390450px;}
.yd8{bottom:1036.210530px;}
.y111{bottom:1036.247160px;}
.yb8{bottom:1037.730348px;}
.y1bd{bottom:1037.820450px;}
.y21f{bottom:1037.829450px;}
.y1ee{bottom:1038.990450px;}
.yc3{bottom:1039.523879px;}
.y6f{bottom:1039.980500px;}
.yd7{bottom:1040.259810px;}
.y110{bottom:1040.296440px;}
.y9f{bottom:1040.430450px;}
.y1fe{bottom:1041.510450px;}
.y3{bottom:1042.229190px;}
.yf{bottom:1043.494950px;}
.y2c9{bottom:1044.018300px;}
.yd6{bottom:1044.219180px;}
.y10f{bottom:1044.255810px;}
.y6e{bottom:1046.730450px;}
.y1bb{bottom:1046.997850px;}
.y1b0{bottom:1047.089252px;}
.ya0{bottom:1047.990450px;}
.y21e{bottom:1048.174950px;}
.yd5{bottom:1048.178550px;}
.y10e{bottom:1048.215180px;}
.y1ba{bottom:1049.878578px;}
.y1fd{bottom:1050.056850px;}
.y1af{bottom:1050.060087px;}
.y1b5{bottom:1052.128660px;}
.yd4{bottom:1052.227830px;}
.y10d{bottom:1052.264460px;}
.y1a9{bottom:1052.400450px;}
.y6d{bottom:1053.660549px;}
.ye{bottom:1053.840450px;}
.ya1{bottom:1055.010450px;}
.yd3{bottom:1056.187200px;}
.y10c{bottom:1056.223830px;}
.yc2{bottom:1057.255464px;}
.y21d{bottom:1058.520450px;}
.y1fc{bottom:1058.696850px;}
.yd2{bottom:1060.236480px;}
.y10b{bottom:1060.273110px;}
.y6c{bottom:1060.410500px;}
.y1aa{bottom:1060.680862px;}
.y2{bottom:1062.300450px;}
.y1b6{bottom:1062.569350px;}
.ya2{bottom:1062.570450px;}
.yd{bottom:1064.100450px;}
.yd1{bottom:1064.195850px;}
.y10a{bottom:1064.232480px;}
.y2c8{bottom:1064.632350px;}
.yc7{bottom:1066.167193px;}
.yc8{bottom:1067.065956px;}
.ya4{bottom:1067.070141px;}
.y89{bottom:1067.070450px;}
.y6b{bottom:1067.160450px;}
.y1fb{bottom:1067.250450px;}
.y1b1{bottom:1067.700450px;}
.y1bc{bottom:1068.060450px;}
.yd0{bottom:1068.245130px;}
.y109{bottom:1068.281760px;}
.y1ab{bottom:1068.961274px;}
.ycf{bottom:1072.204500px;}
.y108{bottom:1072.241130px;}
.y1b7{bottom:1073.189113px;}
.y2c7{bottom:1074.986400px;}
.y21c{bottom:1075.444950px;}
.y1fa{bottom:1075.894050px;}
.yce{bottom:1076.163870px;}
.y107{bottom:1076.200500px;}
.y1ac{bottom:1077.150923px;}
.ycd{bottom:1080.213150px;}
.y106{bottom:1080.249780px;}
.y216{bottom:1080.390450px;}
.y1a{bottom:1083.115650px;}
.y1b8{bottom:1083.720119px;}
.ycc{bottom:1084.172520px;}
.y105{bottom:1084.209150px;}
.y1b3{bottom:1084.260450px;}
.y1f9{bottom:1084.440450px;}
.y1b4{bottom:1084.620450px;}
.y78{bottom:1085.070450px;}
.y1a7{bottom:1085.160450px;}
.y1ad{bottom:1085.431335px;}
.y21b{bottom:1085.790450px;}
.y1a8{bottom:1085.970450px;}
.ycb{bottom:1088.221800px;}
.y104{bottom:1088.258430px;}
.y13b{bottom:1091.190450px;}
.yca{bottom:1092.181170px;}
.y103{bottom:1092.217800px;}
.y1ae{bottom:1093.711747px;}
.y2c6{bottom:1093.890450px;}
.y1b9{bottom:1094.339882px;}
.yc9{bottom:1096.230450px;}
.y102{bottom:1096.267080px;}
.y210{bottom:1097.580450px;}
.y1a6{bottom:1099.470450px;}
.y1b2{bottom:1099.830450px;}
.y6a{bottom:1101.000450px;}
.y65{bottom:1167.896673px;}
.h38{height:3.889468px;}
.h4c{height:3.943055px;}
.h2f{height:4.038451px;}
.h1d{height:4.500000px;}
.h33{height:4.627907px;}
.h3c{height:4.786313px;}
.h40{height:5.286261px;}
.h4d{height:5.422878px;}
.h44{height:5.497075px;}
.h4b{height:5.915171px;}
.h49{height:5.921060px;}
.h4e{height:6.074086px;}
.h37{height:6.113030px;}
.h39{height:6.277261px;}
.h2e{height:6.346222px;}
.h34{height:6.362710px;}
.h30{height:6.516717px;}
.h35{height:6.533648px;}
.h32{height:6.940978px;}
.h4a{height:7.086333px;}
.h36{height:7.418911px;}
.h3b{height:7.521601px;}
.h45{height:7.558110px;}
.h3d{height:7.723673px;}
.h46{height:7.761164px;}
.h43{height:8.245318px;}
.h2d{height:8.293289px;}
.h3f{height:8.307149px;}
.h41{height:8.530327px;}
.h64{height:8.953137px;}
.h52{height:8.969625px;}
.h31{height:9.032860px;}
.h3a{height:9.128362px;}
.h42{height:9.172505px;}
.h48{height:9.305279px;}
.h3e{height:9.306745px;}
.h47{height:9.555272px;}
.h20{height:9.703828px;}
.h68{height:9.964811px;}
.h60{height:9.967755px;}
.h5c{height:9.996609px;}
.he{height:10.115585px;}
.hc{height:10.183869px;}
.h22{height:10.272199px;}
.h63{height:10.743293px;}
.h67{height:10.961174px;}
.h5f{height:10.964118px;}
.h5b{height:10.995917px;}
.h28{height:11.015156px;}
.h65{height:11.031919px;}
.h69{height:11.255653px;}
.h61{height:11.258677px;}
.h5d{height:11.291330px;}
.h1c{height:11.640223px;}
.hd{height:12.187046px;}
.h4{height:12.588750px;}
.h8{height:12.819050px;}
.h6e{height:12.826116px;}
.h6c{height:13.271889px;}
.h59{height:13.449727px;}
.h62{height:13.789898px;}
.h21{height:13.892344px;}
.h54{height:13.900078px;}
.h51{height:14.095714px;}
.h5e{height:14.329884px;}
.h5a{height:14.370398px;}
.h53{height:14.474405px;}
.h2b{height:15.211406px;}
.h66{height:15.348783px;}
.h18{height:16.405152px;}
.h29{height:16.785000px;}
.h50{height:17.104795px;}
.h6{height:17.734913px;}
.h9{height:17.789040px;}
.h56{height:18.575156px;}
.h6d{height:18.575756px;}
.h1e{height:18.846301px;}
.h13{height:19.131706px;}
.h58{height:19.229063px;}
.h5{height:19.407656px;}
.h19{height:20.878529px;}
.hf{height:20.981250px;}
.h2a{height:21.043125px;}
.h16{height:21.689727px;}
.h6a{height:21.777188px;}
.h1f{height:22.073857px;}
.hb{height:22.292578px;}
.h1a{height:22.459395px;}
.h2c{height:23.220000px;}
.h17{height:23.486196px;}
.h4f{height:23.605678px;}
.h6b{height:23.619478px;}
.h26{height:23.620678px;}
.h27{height:24.030000px;}
.h1b{height:24.160894px;}
.h55{height:24.340078px;}
.ha{height:24.583680px;}
.h7{height:24.915234px;}
.h3{height:24.931406px;}
.h23{height:26.445600px;}
.h12{height:29.025000px;}
.h57{height:29.375156px;}
.h25{height:31.914844px;}
.h11{height:34.467188px;}
.h24{height:35.669531px;}
.h14{height:41.103327px;}
.h10{height:44.871680px;}
.h2{height:48.781406px;}
.h1{height:56.911641px;}
.h15{height:67.886719px;}
.h0{height:1263.000000px;}
.w4{width:4.320000px;}
.w3{width:248.976000px;}
.w2{width:391.302000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4a{left:2.160000px;}
.x36{left:18.072000px;}
.x98{left:89.100000px;}
.x28{left:95.850000px;}
.x7a{left:98.550000px;}
.xab{left:99.630000px;}
.x74{left:101.520000px;}
.x23{left:104.040000px;}
.x9f{left:105.300000px;}
.xae{left:106.560000px;}
.x9e{left:107.730761px;}
.x24{left:109.443600px;}
.x9d{left:111.960847px;}
.x8{left:114.120000px;}
.x77{left:116.820000px;}
.x18{left:119.610000px;}
.x4{left:121.417200px;}
.x9a{left:122.490000px;}
.x9b{left:124.920000px;}
.x9c{left:126.360000px;}
.xcf{left:128.340000px;}
.x15{left:130.226581px;}
.x2{left:133.470000px;}
.x75{left:135.899550px;}
.x29{left:139.140000px;}
.x3{left:140.400360px;}
.x76{left:142.022250px;}
.x17{left:144.630000px;}
.x39{left:146.162009px;}
.x47{left:149.490000px;}
.x99{left:152.010000px;}
.x3e{left:153.718691px;}
.x7{left:155.430000px;}
.x14{left:156.509650px;}
.xa3{left:157.590000px;}
.xa4{left:159.210000px;}
.x86{left:161.641980px;}
.x85{left:162.900000px;}
.x7d{left:164.970000px;}
.x13{left:166.859143px;}
.x3c{left:168.570000px;}
.x27{left:170.910000px;}
.x40{left:172.893058px;}
.x12{left:174.416595px;}
.x43{left:177.300000px;}
.x41{left:179.460000px;}
.x84{left:186.660000px;}
.xa7{left:187.920000px;}
.xa2{left:189.450000px;}
.x11{left:191.339910px;}
.xac{left:192.600000px;}
.x6{left:195.660000px;}
.xa8{left:197.370000px;}
.xb1{left:200.790000px;}
.x3a{left:203.494364px;}
.x10{left:206.821383px;}
.x38{left:207.990000px;}
.x5{left:212.851080px;}
.x7e{left:214.560000px;}
.x80{left:216.000000px;}
.x3f{left:218.070000px;}
.xf{left:219.962918px;}
.xe{left:231.302149px;}
.x8f{left:233.100000px;}
.x96{left:234.180000px;}
.x8d{left:235.439891px;}
.x46{left:237.422250px;}
.x2a{left:239.400000px;}
.xb{left:241.560000px;}
.x3b{left:243.003248px;}
.x92{left:244.350000px;}
.x8b{left:246.420000px;}
.x8c{left:247.860000px;}
.x91{left:249.570000px;}
.x35{left:250.763978px;}
.x90{left:253.080000px;}
.x3d{left:256.770000px;}
.xd{left:258.483315px;}
.x95{left:260.457300px;}
.x8e{left:262.168659px;}
.xc{left:274.502424px;}
.x45{left:280.440000px;}
.x25{left:284.040000px;}
.xb0{left:286.290000px;}
.xaa{left:288.180000px;}
.xa6{left:289.800000px;}
.xa1{left:291.330000px;}
.x2b{left:293.400000px;}
.xaf{left:294.570000px;}
.x26{left:301.233600px;}
.x44{left:304.020000px;}
.x42{left:306.180000px;}
.x16{left:312.570000px;}
.x1e{left:313.830000px;}
.x1b{left:316.080000px;}
.x87{left:317.880000px;}
.x88{left:320.130900px;}
.x37{left:321.926978px;}
.xa9{left:323.550000px;}
.xa5{left:325.170000px;}
.xad{left:326.700000px;}
.x8a{left:328.590000px;}
.x97{left:329.850000px;}
.x7c{left:331.020000px;}
.x1c{left:332.100000px;}
.x7f{left:333.900000px;}
.x94{left:335.250000px;}
.x89{left:336.420000px;}
.x83{left:337.680000px;}
.x20{left:339.030000px;}
.x93{left:341.190000px;}
.x1d{left:343.620000px;}
.x1f{left:348.210000px;}
.x22{left:364.230000px;}
.x21{left:368.820000px;}
.xca{left:372.060000px;}
.xc9{left:373.500000px;}
.x82{left:375.392160px;}
.xcb{left:382.770000px;}
.x81{left:386.730000px;}
.x7b{left:389.790000px;}
.xa0{left:391.680000px;}
.x48{left:470.160000px;}
.x4d{left:472.770000px;}
.xb5{left:474.300000px;}
.x4c{left:475.380000px;}
.xb3{left:478.077932px;}
.xb4{left:479.604904px;}
.x9{left:481.320000px;}
.x4f{left:484.920000px;}
.x2c{left:486.720000px;}
.x2d{left:489.421800px;}
.x78{left:490.504050px;}
.x19{left:492.120000px;}
.xa{left:496.890000px;}
.x73{left:500.310000px;}
.x50{left:504.085737px;}
.xc5{left:505.620000px;}
.x1a{left:508.410000px;}
.x51{left:511.104055px;}
.x79{left:513.810000px;}
.x52{left:515.874118px;}
.x53{left:518.485685px;}
.x54{left:520.195385px;}
.x55{left:521.546048px;}
.xb2{left:528.480000px;}
.x56{left:532.800148px;}
.x57{left:535.860511px;}
.xc8{left:540.898650px;}
.xc7{left:543.598470px;}
.x58{left:550.260460px;}
.x59{left:554.581726px;}
.xb6{left:555.750000px;}
.x5a{left:561.600045px;}
.x5b{left:564.660408px;}
.x5c{left:567.271975px;}
.x5d{left:575.910234px;}
.x5e{left:580.321260px;}
.x5f{left:581.582164px;}
.x60{left:584.642527px;}
.x61{left:587.702890px;}
.x4b{left:589.860000px;}
.x62{left:593.370545px;}
.x63{left:597.691812px;}
.x64{left:599.042475px;}
.x72{left:600.840000px;}
.x65{left:605.522238px;}
.x4e{left:610.740000px;}
.x66{left:612.993627px;}
.x67{left:616.413027px;}
.x68{left:622.084957px;}
.x69{left:625.145320px;}
.x6a{left:632.078153px;}
.x6b{left:636.489179px;}
.xbf{left:639.810000px;}
.xc4{left:641.338920px;}
.xbd{left:642.600563px;}
.xc2{left:643.679590px;}
.x6c{left:644.768401px;}
.xbe{left:645.839820px;}
.xb9{left:647.638020px;}
.xc3{left:650.789691px;}
.xbb{left:651.868785px;}
.xbc{left:653.669483px;}
.xb8{left:655.650000px;}
.xba{left:657.178470px;}
.x33{left:661.769536px;}
.xb7{left:666.180000px;}
.x2f{left:667.530000px;}
.x34{left:673.287911px;}
.x30{left:679.141068px;}
.x6d{left:682.206557px;}
.x6e{left:693.905179px;}
.xc1{left:701.460000px;}
.xce{left:704.790000px;}
.xc6{left:711.450000px;}
.x6f{left:713.977058px;}
.x49{left:718.290000px;}
.xc0{left:721.620000px;}
.x70{left:725.130000px;}
.xcd{left:738.450000px;}
.x2e{left:748.440000px;}
.xcc{left:749.520000px;}
.x31{left:754.380000px;}
.x32{left:765.717866px;}
.x71{left:789.478920px;}
.x1{left:843.210000px;}
@media print{
.v3{vertical-align:-21.759467pt;}
.v7{vertical-align:-20.160000pt;}
.v4{vertical-align:-16.959467pt;}
.v9{vertical-align:-14.720533pt;}
.v5{vertical-align:-7.679467pt;}
.v2{vertical-align:-6.720000pt;}
.va{vertical-align:-3.520000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.119467pt;}
.v6{vertical-align:6.405403pt;}
.v1{vertical-align:8.640000pt;}
.vb{vertical-align:9.600000pt;}
.vc{vertical-align:16.320000pt;}
.ls9b{letter-spacing:-1.498381pt;}
.ls115{letter-spacing:-1.270224pt;}
.ls81{letter-spacing:-0.892737pt;}
.ls8d{letter-spacing:-0.886732pt;}
.ls87{letter-spacing:-0.848701pt;}
.ls154{letter-spacing:-0.840072pt;}
.ls106{letter-spacing:-0.835184pt;}
.ls8e{letter-spacing:-0.825379pt;}
.ls99{letter-spacing:-0.721495pt;}
.ls82{letter-spacing:-0.694574pt;}
.ls8b{letter-spacing:-0.674557pt;}
.lsfe{letter-spacing:-0.632165pt;}
.lsfb{letter-spacing:-0.630526pt;}
.lsf7{letter-spacing:-0.617358pt;}
.ls155{letter-spacing:-0.598403pt;}
.ls100{letter-spacing:-0.597392pt;}
.ls89{letter-spacing:-0.590488pt;}
.ls116{letter-spacing:-0.585021pt;}
.ls7f{letter-spacing:-0.572473pt;}
.ls111{letter-spacing:-0.570637pt;}
.ls2d{letter-spacing:-0.559991pt;}
.ls96{letter-spacing:-0.551926pt;}
.ls3b{letter-spacing:-0.547211pt;}
.lsfd{letter-spacing:-0.481102pt;}
.ls136{letter-spacing:-0.473184pt;}
.ls10a{letter-spacing:-0.465992pt;}
.ls86{letter-spacing:-0.440364pt;}
.ls140{letter-spacing:-0.436396pt;}
.ls149{letter-spacing:-0.428817pt;}
.ls158{letter-spacing:-0.423276pt;}
.ls9c{letter-spacing:-0.423239pt;}
.ls9a{letter-spacing:-0.421819pt;}
.ls84{letter-spacing:-0.408337pt;}
.ls80{letter-spacing:-0.404334pt;}
.lsc5{letter-spacing:-0.402752pt;}
.ls85{letter-spacing:-0.400331pt;}
.ls12b{letter-spacing:-0.389120pt;}
.ls7e{letter-spacing:-0.386319pt;}
.lscb{letter-spacing:-0.374912pt;}
.ls151{letter-spacing:-0.362463pt;}
.lsc6{letter-spacing:-0.361920pt;}
.ls94{letter-spacing:-0.351905pt;}
.ls4d{letter-spacing:-0.351748pt;}
.ls4f{letter-spacing:-0.350015pt;}
.ls4c{letter-spacing:-0.348282pt;}
.lscf{letter-spacing:-0.347072pt;}
.ls97{letter-spacing:-0.345220pt;}
.ls101{letter-spacing:-0.324441pt;}
.ls90{letter-spacing:-0.305120pt;}
.ls8a{letter-spacing:-0.266220pt;}
.ls8c{letter-spacing:-0.262217pt;}
.ls88{letter-spacing:-0.258213pt;}
.ls2c{letter-spacing:-0.240926pt;}
.ls39{letter-spacing:-0.239405pt;}
.ls14f{letter-spacing:-0.237172pt;}
.lsff{letter-spacing:-0.234256pt;}
.ls10d{letter-spacing:-0.234110pt;}
.ls46{letter-spacing:-0.225280pt;}
.ls12d{letter-spacing:-0.221184pt;}
.lsbb{letter-spacing:-0.217600pt;}
.ls12e{letter-spacing:-0.215040pt;}
.ls131{letter-spacing:-0.210944pt;}
.ls134{letter-spacing:-0.206848pt;}
.lsbd{letter-spacing:-0.204800pt;}
.lsbc{letter-spacing:-0.198656pt;}
.ls128{letter-spacing:-0.190464pt;}
.lsa0{letter-spacing:-0.184704pt;}
.ls108{letter-spacing:-0.180570pt;}
.ls9e{letter-spacing:-0.176416pt;}
.lsbe{letter-spacing:-0.174080pt;}
.ls38{letter-spacing:-0.171559pt;}
.ls118{letter-spacing:-0.163840pt;}
.ls139{letter-spacing:-0.161120pt;}
.ls15f{letter-spacing:-0.158720pt;}
.ls13d{letter-spacing:-0.153600pt;}
.ls41{letter-spacing:-0.148480pt;}
.ls11b{letter-spacing:-0.145920pt;}
.ls126{letter-spacing:-0.144160pt;}
.ls11c{letter-spacing:-0.143360pt;}
.lsab{letter-spacing:-0.142880pt;}
.ls123{letter-spacing:-0.142464pt;}
.ls127{letter-spacing:-0.139072pt;}
.ls125{letter-spacing:-0.137376pt;}
.ls167{letter-spacing:-0.137344pt;}
.ls135{letter-spacing:-0.135680pt;}
.ls121{letter-spacing:-0.133984pt;}
.ls11a{letter-spacing:-0.133120pt;}
.lsa7{letter-spacing:-0.131424pt;}
.ls44{letter-spacing:-0.130560pt;}
.ls162{letter-spacing:-0.129920pt;}
.ls122{letter-spacing:-0.127200pt;}
.ls164{letter-spacing:-0.122496pt;}
.ls12c{letter-spacing:-0.120832pt;}
.lsb9{letter-spacing:-0.120320pt;}
.ls16a{letter-spacing:-0.118784pt;}
.ls16b{letter-spacing:-0.116928pt;}
.ls13c{letter-spacing:-0.116736pt;}
.lsb8{letter-spacing:-0.115520pt;}
.ls169{letter-spacing:-0.115072pt;}
.ls13a{letter-spacing:-0.114688pt;}
.ls40{letter-spacing:-0.112640pt;}
.ls165{letter-spacing:-0.109504pt;}
.lsa8{letter-spacing:-0.108928pt;}
.ls45{letter-spacing:-0.107520pt;}
.ls157{letter-spacing:-0.105593pt;}
.ls161{letter-spacing:-0.103936pt;}
.ls9f{letter-spacing:-0.103008pt;}
.ls16c{letter-spacing:-0.102080pt;}
.lsf8{letter-spacing:-0.101160pt;}
.lsac{letter-spacing:-0.100352pt;}
.ls166{letter-spacing:-0.100224pt;}
.lsa1{letter-spacing:-0.098272pt;}
.ls83{letter-spacing:-0.096079pt;}
.lsa2{letter-spacing:-0.094720pt;}
.ls13b{letter-spacing:-0.094208pt;}
.ls98{letter-spacing:-0.089477pt;}
.lsa4{letter-spacing:-0.084064pt;}
.ls34{letter-spacing:-0.082080pt;}
.lsc1{letter-spacing:-0.081664pt;}
.lscd{letter-spacing:-0.073728pt;}
.ls145{letter-spacing:-0.073696pt;}
.lsc4{letter-spacing:-0.072384pt;}
.ls15e{letter-spacing:-0.071680pt;}
.ls24{letter-spacing:-0.071040pt;}
.lsc2{letter-spacing:-0.070528pt;}
.ls27{letter-spacing:-0.068672pt;}
.ls13e{letter-spacing:-0.067584pt;}
.lsbf{letter-spacing:-0.066816pt;}
.ls23{letter-spacing:-0.066304pt;}
.ls168{letter-spacing:-0.065536pt;}
.ls37{letter-spacing:-0.065427pt;}
.ls3c{letter-spacing:-0.063940pt;}
.ls4a{letter-spacing:-0.063936pt;}
.lsb4{letter-spacing:-0.062560pt;}
.lsd2{letter-spacing:-0.061248pt;}
.ls3f{letter-spacing:-0.060966pt;}
.lsc8{letter-spacing:-0.059392pt;}
.ls26{letter-spacing:-0.059200pt;}
.ls28{letter-spacing:-0.056832pt;}
.lsd0{letter-spacing:-0.053824pt;}
.lsb6{letter-spacing:-0.051680pt;}
.ls12f{letter-spacing:-0.051200pt;}
.ls3d{letter-spacing:-0.050558pt;}
.ls35{letter-spacing:-0.049071pt;}
.ls21{letter-spacing:-0.048960pt;}
.ls1f{letter-spacing:-0.047616pt;}
.ls14d{letter-spacing:-0.044686pt;}
.ls36{letter-spacing:-0.043123pt;}
.ls25{letter-spacing:-0.042624pt;}
.ls117{letter-spacing:-0.038400pt;}
.lsb7{letter-spacing:-0.038080pt;}
.ls4e{letter-spacing:-0.034655pt;}
.ls52{letter-spacing:-0.032922pt;}
.ls129{letter-spacing:-0.030720pt;}
.ls49{letter-spacing:-0.028160pt;}
.lsaf{letter-spacing:-0.024320pt;}
.ls51{letter-spacing:-0.024258pt;}
.ls1e{letter-spacing:-0.023808pt;}
.ls3e{letter-spacing:-0.023792pt;}
.ls29{letter-spacing:-0.023680pt;}
.lsae{letter-spacing:-0.018240pt;}
.ls3a{letter-spacing:-0.017844pt;}
.lscc{letter-spacing:-0.016384pt;}
.ls2a{letter-spacing:-0.015200pt;}
.ls13f{letter-spacing:-0.014486pt;}
.ls103{letter-spacing:-0.012943pt;}
.ls42{letter-spacing:-0.010240pt;}
.lsce{letter-spacing:-0.009280pt;}
.lsad{letter-spacing:-0.009120pt;}
.ls11d{letter-spacing:-0.007680pt;}
.lsd5{letter-spacing:-0.006080pt;}
.ls20{letter-spacing:-0.005952pt;}
.ls2b{letter-spacing:-0.005440pt;}
.ls110{letter-spacing:-0.004214pt;}
.lsd6{letter-spacing:-0.003040pt;}
.ls148{letter-spacing:-0.002708pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.002560pt;}
.ls53{letter-spacing:0.003040pt;}
.ls12a{letter-spacing:0.004032pt;}
.lsd8{letter-spacing:0.004400pt;}
.lsf3{letter-spacing:0.005415pt;}
.ls0{letter-spacing:0.005952pt;}
.ls8{letter-spacing:0.006080pt;}
.lseb{letter-spacing:0.008192pt;}
.ls68{letter-spacing:0.009120pt;}
.lsca{letter-spacing:0.009280pt;}
.lsea{letter-spacing:0.010240pt;}
.ls6a{letter-spacing:0.012160pt;}
.lsec{letter-spacing:0.012288pt;}
.lsf{letter-spacing:0.013600pt;}
.ls93{letter-spacing:0.014239pt;}
.ls19{letter-spacing:0.015200pt;}
.lse1{letter-spacing:0.015360pt;}
.ls171{letter-spacing:0.018240pt;}
.lsd3{letter-spacing:0.018560pt;}
.ls7b{letter-spacing:0.020416pt;}
.ls7a{letter-spacing:0.022272pt;}
.ls6{letter-spacing:0.024320pt;}
.lsb5{letter-spacing:0.024480pt;}
.ls17{letter-spacing:0.025600pt;}
.ls64{letter-spacing:0.027360pt;}
.ls15{letter-spacing:0.028160pt;}
.ls6c{letter-spacing:0.030400pt;}
.ls16d{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.033440pt;}
.ls4{letter-spacing:0.036480pt;}
.ls150{letter-spacing:0.036490pt;}
.ls160{letter-spacing:0.037120pt;}
.ls12{letter-spacing:0.039520pt;}
.ls7c{letter-spacing:0.040832pt;}
.ls1a{letter-spacing:0.042560pt;}
.ls54{letter-spacing:0.042717pt;}
.ls2{letter-spacing:0.043520pt;}
.ls63{letter-spacing:0.045600pt;}
.ls5{letter-spacing:0.048640pt;}
.ls9{letter-spacing:0.051680pt;}
.ls4b{letter-spacing:0.054720pt;}
.lsa{letter-spacing:0.057760pt;}
.ls95{letter-spacing:0.058990pt;}
.ls5f{letter-spacing:0.059200pt;}
.lsc{letter-spacing:0.060800pt;}
.ls73{letter-spacing:0.061440pt;}
.ls1b{letter-spacing:0.063840pt;}
.ls11{letter-spacing:0.066880pt;}
.ls67{letter-spacing:0.069920pt;}
.ls70{letter-spacing:0.072960pt;}
.ls92{letter-spacing:0.073229pt;}
.ls15a{letter-spacing:0.074908pt;}
.ls170{letter-spacing:0.076000pt;}
.ls172{letter-spacing:0.079040pt;}
.ls16f{letter-spacing:0.082080pt;}
.ls153{letter-spacing:0.084332pt;}
.ls65{letter-spacing:0.085120pt;}
.ls78{letter-spacing:0.085376pt;}
.lsed{letter-spacing:0.088064pt;}
.lsb{letter-spacing:0.088160pt;}
.lsa6{letter-spacing:0.089984pt;}
.lsc9{letter-spacing:0.090944pt;}
.ls173{letter-spacing:0.094240pt;}
.ls5e{letter-spacing:0.094720pt;}
.ls1{letter-spacing:0.095200pt;}
.ls33{letter-spacing:0.096256pt;}
.ls6e{letter-spacing:0.097280pt;}
.ls109{letter-spacing:0.098700pt;}
.ls3{letter-spacing:0.099840pt;}
.ls124{letter-spacing:0.100064pt;}
.lsb0{letter-spacing:0.100320pt;}
.ls133{letter-spacing:0.100352pt;}
.ls91{letter-spacing:0.101707pt;}
.lsf1{letter-spacing:0.102166pt;}
.lsa9{letter-spacing:0.103008pt;}
.lsd{letter-spacing:0.103360pt;}
.ls74{letter-spacing:0.104448pt;}
.ls174{letter-spacing:0.106400pt;}
.lsee{letter-spacing:0.107735pt;}
.lsd1{letter-spacing:0.109504pt;}
.lsba{letter-spacing:0.111936pt;}
.ls22{letter-spacing:0.114240pt;}
.ls119{letter-spacing:0.115200pt;}
.ls66{letter-spacing:0.115520pt;}
.ls114{letter-spacing:0.116254pt;}
.lsde{letter-spacing:0.117990pt;}
.lsa3{letter-spacing:0.119584pt;}
.lse0{letter-spacing:0.120004pt;}
.ls69{letter-spacing:0.121600pt;}
.ls156{letter-spacing:0.121627pt;}
.ls60{letter-spacing:0.121952pt;}
.lse7{letter-spacing:0.122880pt;}
.ls9d{letter-spacing:0.124320pt;}
.ls147{letter-spacing:0.125125pt;}
.ls57{letter-spacing:0.125504pt;}
.ls5b{letter-spacing:0.126688pt;}
.lse8{letter-spacing:0.128896pt;}
.ls76{letter-spacing:0.129024pt;}
.ls62{letter-spacing:0.129056pt;}
.ls5c{letter-spacing:0.130240pt;}
.lse4{letter-spacing:0.131072pt;}
.ls5d{letter-spacing:0.131424pt;}
.ls58{letter-spacing:0.133792pt;}
.ls59{letter-spacing:0.134976pt;}
.lsa5{letter-spacing:0.137344pt;}
.ls48{letter-spacing:0.138176pt;}
.ls132{letter-spacing:0.139072pt;}
.ls8f{letter-spacing:0.140355pt;}
.lsaa{letter-spacing:0.140896pt;}
.ls5a{letter-spacing:0.142080pt;}
.ls138{letter-spacing:0.144160pt;}
.ls47{letter-spacing:0.150368pt;}
.lse9{letter-spacing:0.152640pt;}
.ls13{letter-spacing:0.155040pt;}
.lsfc{letter-spacing:0.156211pt;}
.lsb2{letter-spacing:0.170240pt;}
.ls105{letter-spacing:0.170988pt;}
.ls2e{letter-spacing:0.171470pt;}
.ls32{letter-spacing:0.173641pt;}
.ls31{letter-spacing:0.175811pt;}
.ls16e{letter-spacing:0.176320pt;}
.ls130{letter-spacing:0.179776pt;}
.lsf6{letter-spacing:0.181888pt;}
.ls163{letter-spacing:0.209728pt;}
.ls72{letter-spacing:0.217600pt;}
.lsf5{letter-spacing:0.219008pt;}
.ls120{letter-spacing:0.222135pt;}
.lsf4{letter-spacing:0.222720pt;}
.lsc0{letter-spacing:0.237568pt;}
.lsc3{letter-spacing:0.240352pt;}
.ls137{letter-spacing:0.247616pt;}
.ls15c{letter-spacing:0.254143pt;}
.lsb1{letter-spacing:0.261440pt;}
.lsf9{letter-spacing:0.266120pt;}
.lsd9{letter-spacing:0.266811pt;}
.lsda{letter-spacing:0.270736pt;}
.lsc7{letter-spacing:0.283968pt;}
.ls50{letter-spacing:0.285903pt;}
.lsd7{letter-spacing:0.310080pt;}
.ls102{letter-spacing:0.314802pt;}
.ls112{letter-spacing:0.343312pt;}
.lsdd{letter-spacing:0.370168pt;}
.ls107{letter-spacing:0.370920pt;}
.ls144{letter-spacing:0.371209pt;}
.ls142{letter-spacing:0.385695pt;}
.ls14a{letter-spacing:0.391804pt;}
.lsd4{letter-spacing:0.402752pt;}
.ls10b{letter-spacing:0.412774pt;}
.ls10c{letter-spacing:0.415512pt;}
.ls104{letter-spacing:0.422361pt;}
.lsdb{letter-spacing:0.423042pt;}
.ls11e{letter-spacing:0.432980pt;}
.lsb3{letter-spacing:0.446880pt;}
.lsdc{letter-spacing:0.489229pt;}
.ls143{letter-spacing:0.494341pt;}
.lsef{letter-spacing:0.498943pt;}
.ls14b{letter-spacing:0.504650pt;}
.ls15b{letter-spacing:0.512624pt;}
.lse2{letter-spacing:0.513209pt;}
.lsf0{letter-spacing:0.513388pt;}
.lsf2{letter-spacing:0.523177pt;}
.ls61{letter-spacing:0.556480pt;}
.ls11f{letter-spacing:0.571935pt;}
.lsdf{letter-spacing:0.595841pt;}
.ls152{letter-spacing:0.621134pt;}
.ls10f{letter-spacing:0.622809pt;}
.ls2f{letter-spacing:0.683710pt;}
.lse3{letter-spacing:0.813220pt;}
.ls146{letter-spacing:0.907259pt;}
.ls14e{letter-spacing:0.922509pt;}
.ls15d{letter-spacing:0.934175pt;}
.ls141{letter-spacing:0.952467pt;}
.ls14c{letter-spacing:0.964162pt;}
.ls159{letter-spacing:0.973805pt;}
.ls10{letter-spacing:1.308816pt;}
.ls30{letter-spacing:1.358737pt;}
.ls77{letter-spacing:5.178240pt;}
.ls56{letter-spacing:5.254987pt;}
.lse6{letter-spacing:5.386240pt;}
.ls75{letter-spacing:5.406720pt;}
.ls79{letter-spacing:5.493760pt;}
.lse5{letter-spacing:5.713920pt;}
.ls6f{letter-spacing:8.299200pt;}
.ls6b{letter-spacing:8.420800pt;}
.ls6d{letter-spacing:8.633600pt;}
.ls71{letter-spacing:8.755200pt;}
.lsfa{letter-spacing:19.780824pt;}
.ls16{letter-spacing:23.833600pt;}
.ls113{letter-spacing:29.133347pt;}
.ls10e{letter-spacing:30.356695pt;}
.ls14{letter-spacing:36.812800pt;}
.ls55{letter-spacing:42.643777pt;}
.ls1c{letter-spacing:57.257467pt;}
.ls7d{letter-spacing:58.154133pt;}
.ls18{letter-spacing:67.177467pt;}
.lse{letter-spacing:76.457467pt;}
.wsed{word-spacing:-32.463629pt;}
.wsef{word-spacing:-28.961445pt;}
.wsfb{word-spacing:-20.480000pt;}
.wsd9{word-spacing:-19.648626pt;}
.ws66{word-spacing:-11.840000pt;}
.ws188{word-spacing:-8.627520pt;}
.ws189{word-spacing:-8.557600pt;}
.ws4{word-spacing:-8.554560pt;}
.ws8d{word-spacing:-8.524160pt;}
.ws6a{word-spacing:-8.505920pt;}
.ws6f{word-spacing:-8.502880pt;}
.ws3{word-spacing:-8.475520pt;}
.ws6c{word-spacing:-8.442080pt;}
.ws71{word-spacing:-8.335680pt;}
.ws8{word-spacing:-7.392746pt;}
.wsa{word-spacing:-7.342824pt;}
.ws12{word-spacing:-7.106560pt;}
.ws7{word-spacing:-6.717718pt;}
.ws2{word-spacing:-6.559360pt;}
.ws1{word-spacing:-6.523840pt;}
.ws9{word-spacing:-6.205479pt;}
.ws100{word-spacing:-5.824512pt;}
.ws73{word-spacing:-5.822464pt;}
.ws5{word-spacing:-5.793082pt;}
.wsfc{word-spacing:-5.693440pt;}
.ws6b{word-spacing:-5.593088pt;}
.wsfe{word-spacing:-5.572608pt;}
.ws102{word-spacing:-5.502976pt;}
.ws109{word-spacing:-5.486592pt;}
.ws106{word-spacing:-5.482496pt;}
.ws103{word-spacing:-5.478400pt;}
.ws6{word-spacing:-5.474018pt;}
.ws101{word-spacing:-5.472256pt;}
.ws75{word-spacing:-5.397248pt;}
.ws133{word-spacing:-5.382400pt;}
.ws13c{word-spacing:-5.378688pt;}
.ws137{word-spacing:-5.369408pt;}
.ws13f{word-spacing:-5.341568pt;}
.ws134{word-spacing:-5.196800pt;}
.ws4f{word-spacing:-5.187040pt;}
.ws0{word-spacing:-5.159680pt;}
.ws4e{word-spacing:-5.128050pt;}
.ws82{word-spacing:-5.103616pt;}
.ws7d{word-spacing:-5.100288pt;}
.ws4d{word-spacing:-5.099572pt;}
.ws78{word-spacing:-5.092864pt;}
.ws7e{word-spacing:-5.089152pt;}
.ws13e{word-spacing:-5.087296pt;}
.ws76{word-spacing:-5.078016pt;}
.ws104{word-spacing:-5.068800pt;}
.ws13b{word-spacing:-5.059456pt;}
.ws135{word-spacing:-5.055744pt;}
.ws114{word-spacing:-5.052416pt;}
.ws139{word-spacing:-5.050176pt;}
.ws83{word-spacing:-5.046272pt;}
.ws142{word-spacing:-5.044608pt;}
.ws144{word-spacing:-5.042752pt;}
.ws143{word-spacing:-5.040896pt;}
.ws138{word-spacing:-5.037184pt;}
.ws136{word-spacing:-5.029760pt;}
.ws13d{word-spacing:-5.022336pt;}
.ws10f{word-spacing:-5.005312pt;}
.ws111{word-spacing:-5.003264pt;}
.ws113{word-spacing:-4.966400pt;}
.ws4c{word-spacing:-4.870023pt;}
.ws72{word-spacing:-4.826816pt;}
.wsf7{word-spacing:-4.814944pt;}
.ws8a{word-spacing:-4.749504pt;}
.ws7f{word-spacing:-4.730944pt;}
.ws77{word-spacing:-4.725376pt;}
.ws88{word-spacing:-4.660416pt;}
.ws8c{word-spacing:-4.658560pt;}
.ws80{word-spacing:-4.649280pt;}
.ws84{word-spacing:-4.630720pt;}
.ws15{word-spacing:-4.617770pt;}
.wsf5{word-spacing:-4.587680pt;}
.ws87{word-spacing:-4.586176pt;}
.ws8b{word-spacing:-4.578752pt;}
.ws89{word-spacing:-4.571328pt;}
.ws86{word-spacing:-4.558336pt;}
.ws105{word-spacing:-4.419776pt;}
.ws107{word-spacing:-4.379072pt;}
.ws10d{word-spacing:-4.368896pt;}
.ws16{word-spacing:-4.298944pt;}
.ws14{word-spacing:-4.297212pt;}
.ws85{word-spacing:-4.292928pt;}
.ws7b{word-spacing:-4.278080pt;}
.ws81{word-spacing:-4.265088pt;}
.ws79{word-spacing:-4.237248pt;}
.wsf1{word-spacing:-4.204580pt;}
.ws10a{word-spacing:-4.104320pt;}
.ws108{word-spacing:-4.095840pt;}
.wsc{word-spacing:-4.090700pt;}
.ws10e{word-spacing:-4.078880pt;}
.wsb{word-spacing:-4.068396pt;}
.wsf2{word-spacing:-4.004820pt;}
.ws51{word-spacing:-3.858865pt;}
.ws10b{word-spacing:-3.766816pt;}
.ws141{word-spacing:-3.740352pt;}
.ws74{word-spacing:-3.736320pt;}
.wse{word-spacing:-3.586612pt;}
.ws55{word-spacing:-3.526522pt;}
.ws69{word-spacing:-3.433600pt;}
.ws68{word-spacing:-3.432416pt;}
.ws5f{word-spacing:-3.428864pt;}
.ws58{word-spacing:-3.426496pt;}
.ws57{word-spacing:-3.425312pt;}
.ws60{word-spacing:-3.422944pt;}
.ws5e{word-spacing:-3.421760pt;}
.ws67{word-spacing:-3.420576pt;}
.ws5a{word-spacing:-3.418208pt;}
.ws56{word-spacing:-3.417024pt;}
.ws65{word-spacing:-3.413472pt;}
.ws5d{word-spacing:-3.411104pt;}
.ws64{word-spacing:-3.394528pt;}
.wsd{word-spacing:-3.259628pt;}
.ws12f{word-spacing:-3.230071pt;}
.ws54{word-spacing:-3.226846pt;}
.ws122{word-spacing:-3.221095pt;}
.ws118{word-spacing:-3.215933pt;}
.ws5c{word-spacing:-3.196800pt;}
.ws5b{word-spacing:-3.193248pt;}
.ws59{word-spacing:-3.188512pt;}
.ws63{word-spacing:-3.182592pt;}
.ws62{word-spacing:-3.160096pt;}
.ws131{word-spacing:-2.768890pt;}
.ws121{word-spacing:-2.761584pt;}
.ws11a{word-spacing:-2.757808pt;}
.ws132{word-spacing:-2.736010pt;}
.wsec{word-spacing:-2.702774pt;}
.ws119{word-spacing:-2.649161pt;}
.ws120{word-spacing:-2.648737pt;}
.ws127{word-spacing:-2.648334pt;}
.ws11b{word-spacing:-2.634675pt;}
.wse5{word-spacing:-2.541362pt;}
.ws123{word-spacing:-2.437848pt;}
.ws11c{word-spacing:-2.416037pt;}
.ws130{word-spacing:-2.331175pt;}
.wse2{word-spacing:-2.327602pt;}
.ws12d{word-spacing:-2.261682pt;}
.ws11e{word-spacing:-2.254225pt;}
.wse6{word-spacing:-2.251101pt;}
.ws116{word-spacing:-2.248980pt;}
.wse3{word-spacing:-2.126108pt;}
.ws128{word-spacing:-2.111532pt;}
.ws125{word-spacing:-2.063690pt;}
.ws12b{word-spacing:-1.834130pt;}
.ws12e{word-spacing:-1.832991pt;}
.ws11f{word-spacing:-1.828116pt;}
.ws117{word-spacing:-1.827070pt;}
.wsdc{word-spacing:-1.707478pt;}
.ws126{word-spacing:-1.664737pt;}
.wsdf{word-spacing:-1.654870pt;}
.wse9{word-spacing:-1.556542pt;}
.wsde{word-spacing:-1.401611pt;}
.wsdb{word-spacing:-1.352365pt;}
.wsd8{word-spacing:-1.211309pt;}
.ws129{word-spacing:-1.187128pt;}
.ws176{word-spacing:-1.150133pt;}
.wse1{word-spacing:-1.059692pt;}
.wsee{word-spacing:-0.991896pt;}
.ws17d{word-spacing:-0.833907pt;}
.ws17c{word-spacing:-0.833014pt;}
.ws177{word-spacing:-0.827180pt;}
.ws174{word-spacing:-0.818624pt;}
.wsf0{word-spacing:-0.754313pt;}
.ws2f{word-spacing:-0.675028pt;}
.ws157{word-spacing:-0.625338pt;}
.wseb{word-spacing:-0.604268pt;}
.ws156{word-spacing:-0.598369pt;}
.wsc5{word-spacing:-0.574560pt;}
.ws165{word-spacing:-0.464697pt;}
.ws140{word-spacing:-0.453760pt;}
.ws163{word-spacing:-0.440320pt;}
.ws11{word-spacing:-0.409600pt;}
.wsc3{word-spacing:-0.389120pt;}
.wsa3{word-spacing:-0.364110pt;}
.wscb{word-spacing:-0.354304pt;}
.ws94{word-spacing:-0.344284pt;}
.ws8e{word-spacing:-0.340480pt;}
.ws154{word-spacing:-0.336790pt;}
.wsce{word-spacing:-0.320864pt;}
.ws173{word-spacing:-0.315075pt;}
.ws179{word-spacing:-0.310567pt;}
.ws7c{word-spacing:-0.302528pt;}
.ws10c{word-spacing:-0.264576pt;}
.wsc1{word-spacing:-0.249280pt;}
.wsd1{word-spacing:-0.243136pt;}
.wsc0{word-spacing:-0.228000pt;}
.ws16c{word-spacing:-0.223872pt;}
.wsc2{word-spacing:-0.221920pt;}
.ws18{word-spacing:-0.220224pt;}
.ws18c{word-spacing:-0.218880pt;}
.ws17a{word-spacing:-0.216982pt;}
.wsad{word-spacing:-0.215488pt;}
.wsaa{word-spacing:-0.214304pt;}
.ws2a{word-spacing:-0.212800pt;}
.wsb6{word-spacing:-0.209760pt;}
.ws16b{word-spacing:-0.208608pt;}
.ws18a{word-spacing:-0.206720pt;}
.ws6e{word-spacing:-0.200640pt;}
.wsc4{word-spacing:-0.197600pt;}
.ws153{word-spacing:-0.195655pt;}
.wsb8{word-spacing:-0.194560pt;}
.ws145{word-spacing:-0.193920pt;}
.wsb2{word-spacing:-0.191520pt;}
.wsd2{word-spacing:-0.188480pt;}
.ws2b{word-spacing:-0.185440pt;}
.ws36{word-spacing:-0.182400pt;}
.ws99{word-spacing:-0.182150pt;}
.wsbc{word-spacing:-0.179360pt;}
.ws9e{word-spacing:-0.178147pt;}
.wsd5{word-spacing:-0.176320pt;}
.ws9c{word-spacing:-0.174144pt;}
.ws25{word-spacing:-0.173280pt;}
.wsb0{word-spacing:-0.170240pt;}
.ws37{word-spacing:-0.167200pt;}
.wsbb{word-spacing:-0.164160pt;}
.wsda{word-spacing:-0.163545pt;}
.ws23{word-spacing:-0.161120pt;}
.ws27{word-spacing:-0.158080pt;}
.ws13a{word-spacing:-0.155904pt;}
.wsd6{word-spacing:-0.155040pt;}
.wsb1{word-spacing:-0.152000pt;}
.ws18b{word-spacing:-0.142880pt;}
.ws46{word-spacing:-0.139840pt;}
.wsbf{word-spacing:-0.136800pt;}
.ws14c{word-spacing:-0.135091pt;}
.wsb9{word-spacing:-0.133760pt;}
.ws14a{word-spacing:-0.133118pt;}
.ws147{word-spacing:-0.132773pt;}
.wsb3{word-spacing:-0.130720pt;}
.ws8f{word-spacing:-0.127680pt;}
.wsd4{word-spacing:-0.124640pt;}
.wsd3{word-spacing:-0.118560pt;}
.wsbd{word-spacing:-0.115520pt;}
.ws184{word-spacing:-0.115200pt;}
.ws166{word-spacing:-0.114898pt;}
.wsb4{word-spacing:-0.109440pt;}
.wse8{word-spacing:-0.106790pt;}
.wsb7{word-spacing:-0.106400pt;}
.ws164{word-spacing:-0.105961pt;}
.ws187{word-spacing:-0.104960pt;}
.ws61{word-spacing:-0.101824pt;}
.ws169{word-spacing:-0.100320pt;}
.wsc9{word-spacing:-0.099840pt;}
.ws3d{word-spacing:-0.097280pt;}
.ws170{word-spacing:-0.088064pt;}
.ws14f{word-spacing:-0.087197pt;}
.ws15d{word-spacing:-0.087040pt;}
.ws171{word-spacing:-0.081920pt;}
.ws3e{word-spacing:-0.074240pt;}
.ws42{word-spacing:-0.069088pt;}
.ws162{word-spacing:-0.064000pt;}
.ws159{word-spacing:-0.060002pt;}
.ws43{word-spacing:-0.056896pt;}
.ws15a{word-spacing:-0.056252pt;}
.ws32{word-spacing:-0.055296pt;}
.ws70{word-spacing:-0.051680pt;}
.wsca{word-spacing:-0.051200pt;}
.ws152{word-spacing:-0.048152pt;}
.ws151{word-spacing:-0.047400pt;}
.wscc{word-spacing:-0.045056pt;}
.wsba{word-spacing:-0.042560pt;}
.ws96{word-spacing:-0.040033pt;}
.ws97{word-spacing:-0.036030pt;}
.ws15c{word-spacing:-0.033280pt;}
.ws95{word-spacing:-0.032026pt;}
.ws6d{word-spacing:-0.030400pt;}
.ws7a{word-spacing:-0.018560pt;}
.ws16f{word-spacing:-0.012288pt;}
.ws16d{word-spacing:-0.010240pt;}
.ws16e{word-spacing:-0.008192pt;}
.wsf{word-spacing:-0.005948pt;}
.wsae{word-spacing:-0.005920pt;}
.ws39{word-spacing:-0.004461pt;}
.ws17{word-spacing:0.000000pt;}
.ws158{word-spacing:0.001686pt;}
.ws1e{word-spacing:0.008160pt;}
.wsaf{word-spacing:0.015200pt;}
.ws1c{word-spacing:0.027200pt;}
.ws44{word-spacing:0.028160pt;}
.ws40{word-spacing:0.035840pt;}
.ws3a{word-spacing:0.039520pt;}
.ws3b{word-spacing:0.040960pt;}
.ws181{word-spacing:0.044544pt;}
.wsc8{word-spacing:0.048640pt;}
.ws155{word-spacing:0.056816pt;}
.ws3f{word-spacing:0.058880pt;}
.ws15f{word-spacing:0.061440pt;}
.ws186{word-spacing:0.064960pt;}
.ws161{word-spacing:0.071680pt;}
.ws160{word-spacing:0.074240pt;}
.ws185{word-spacing:0.076800pt;}
.ws1f{word-spacing:0.078880pt;}
.ws14d{word-spacing:0.081387pt;}
.ws17e{word-spacing:0.087040pt;}
.ws15e{word-spacing:0.092160pt;}
.wsac{word-spacing:0.094720pt;}
.ws14e{word-spacing:0.096734pt;}
.ws167{word-spacing:0.100352pt;}
.ws183{word-spacing:0.102080pt;}
.ws1b{word-spacing:0.107136pt;}
.ws2c{word-spacing:0.108800pt;}
.wsd0{word-spacing:0.118784pt;}
.ws168{word-spacing:0.121600pt;}
.ws19{word-spacing:0.124992pt;}
.ws33{word-spacing:0.127680pt;}
.ws2d{word-spacing:0.127840pt;}
.ws47{word-spacing:0.130720pt;}
.ws92{word-spacing:0.132109pt;}
.ws182{word-spacing:0.135168pt;}
.ws34{word-spacing:0.136800pt;}
.wscf{word-spacing:0.137344pt;}
.wsd7{word-spacing:0.139840pt;}
.ws29{word-spacing:0.142880pt;}
.ws24{word-spacing:0.145920pt;}
.ws1a{word-spacing:0.148800pt;}
.ws9a{word-spacing:0.150124pt;}
.ws41{word-spacing:0.153600pt;}
.ws4b{word-spacing:0.168076pt;}
.wsb5{word-spacing:0.170240pt;}
.ws1d{word-spacing:0.171360pt;}
.wsc7{word-spacing:0.174080pt;}
.ws21{word-spacing:0.184704pt;}
.wsc6{word-spacing:0.184960pt;}
.ws28{word-spacing:0.188480pt;}
.ws110{word-spacing:0.196608pt;}
.ws22{word-spacing:0.198912pt;}
.ws16a{word-spacing:0.203680pt;}
.ws45{word-spacing:0.206016pt;}
.wsa1{word-spacing:0.207482pt;}
.ws20{word-spacing:0.208384pt;}
.ws26{word-spacing:0.209760pt;}
.wsbe{word-spacing:0.218880pt;}
.ws17f{word-spacing:0.222176pt;}
.ws149{word-spacing:0.223167pt;}
.ws146{word-spacing:0.234508pt;}
.ws112{word-spacing:0.237568pt;}
.wscd{word-spacing:0.243712pt;}
.wsa2{word-spacing:0.246130pt;}
.ws175{word-spacing:0.259098pt;}
.ws172{word-spacing:0.268703pt;}
.ws17b{word-spacing:0.272106pt;}
.ws35{word-spacing:0.276640pt;}
.ws91{word-spacing:0.282233pt;}
.wsa5{word-spacing:0.288847pt;}
.ws148{word-spacing:0.314976pt;}
.ws14b{word-spacing:0.315794pt;}
.ws98{word-spacing:0.318263pt;}
.wsa6{word-spacing:0.333598pt;}
.ws180{word-spacing:0.354496pt;}
.ws3c{word-spacing:0.396800pt;}
.wsab{word-spacing:0.407296pt;}
.ws178{word-spacing:0.411098pt;}
.ws90{word-spacing:0.450372pt;}
.ws93{word-spacing:0.452374pt;}
.wsa0{word-spacing:0.468734pt;}
.ws38{word-spacing:0.475836pt;}
.ws48{word-spacing:0.492100pt;}
.ws4a{word-spacing:0.493833pt;}
.ws49{word-spacing:0.495566pt;}
.ws30{word-spacing:0.507899pt;}
.ws31{word-spacing:0.510069pt;}
.ws2e{word-spacing:0.512240pt;}
.ws10{word-spacing:0.536802pt;}
.ws12a{word-spacing:0.564372pt;}
.ws9d{word-spacing:0.638527pt;}
.ws150{word-spacing:0.664196pt;}
.wsa4{word-spacing:0.699742pt;}
.ws15b{word-spacing:0.730740pt;}
.ws9b{word-spacing:0.770637pt;}
.wsa7{word-spacing:0.978123pt;}
.ws9f{word-spacing:1.084896pt;}
.wsa8{word-spacing:1.091065pt;}
.wsa9{word-spacing:1.739827pt;}
.wsf9{word-spacing:3.773600pt;}
.ws13{word-spacing:7.317280pt;}
.wsea{word-spacing:10.402853pt;}
.wsf3{word-spacing:13.989421pt;}
.wsdd{word-spacing:16.733055pt;}
.wse4{word-spacing:17.017042pt;}
.wse7{word-spacing:23.916444pt;}
.wse0{word-spacing:27.650001pt;}
.ws53{word-spacing:35.054770pt;}
.ws52{word-spacing:37.449079pt;}
.ws124{word-spacing:38.954589pt;}
.ws12c{word-spacing:43.147748pt;}
.ws11d{word-spacing:56.942364pt;}
.ws115{word-spacing:57.272830pt;}
.wsf4{word-spacing:142.278592pt;}
.wsf6{word-spacing:150.301632pt;}
.wsfa{word-spacing:196.695168pt;}
.wsfd{word-spacing:200.128512pt;}
.wsff{word-spacing:209.728512pt;}
.wsf8{word-spacing:216.539648pt;}
.ws50{word-spacing:643.372836pt;}
._3e{margin-left:-577.851904pt;}
._55{margin-left:-565.358592pt;}
._5d{margin-left:-517.810432pt;}
._5c{margin-left:-472.407040pt;}
._58{margin-left:-433.300224pt;}
._2c{margin-left:-389.238912pt;}
._4d{margin-left:-368.663040pt;}
._48{margin-left:-363.515648pt;}
._54{margin-left:-358.521856pt;}
._2b{margin-left:-355.393280pt;}
._1c{margin-left:-313.228544pt;}
._1f{margin-left:-310.695680pt;}
._1d{margin-left:-307.788544pt;}
._26{margin-left:-296.043776pt;}
._1e{margin-left:-291.154368pt;}
._29{margin-left:-287.282688pt;}
._59{margin-left:-283.287040pt;}
._24{margin-left:-281.595648pt;}
._5a{margin-left:-275.287040pt;}
._2d{margin-left:-272.390665pt;}
._5b{margin-left:-270.807040pt;}
._2a{margin-left:-247.109824pt;}
._25{margin-left:-231.060224pt;}
._27{margin-left:-228.443648pt;}
._20{margin-left:-225.940224pt;}
._21{margin-left:-223.323648pt;}
._4e{margin-left:-220.443200pt;}
._4a{margin-left:-218.263040pt;}
._44{margin-left:-215.314368pt;}
._4b{margin-left:-213.163776pt;}
._46{margin-left:-207.995648pt;}
._56{margin-left:-204.820224pt;}
._3c{margin-left:-200.566784pt;}
._3a{margin-left:-196.162304pt;}
._57{margin-left:-192.998144pt;}
._39{margin-left:-189.488640pt;}
._3b{margin-left:-183.929344pt;}
._3d{margin-left:-179.574272pt;}
._51{margin-left:-177.658752pt;}
._53{margin-left:-170.618752pt;}
._50{margin-left:-163.251968pt;}
._49{margin-left:-158.208512pt;}
._45{margin-left:-147.515648pt;}
._4f{margin-left:-144.363776pt;}
._4c{margin-left:-139.195648pt;}
._52{margin-left:-138.298752pt;}
._47{margin-left:-134.363648pt;}
._28{margin-left:-130.583040pt;}
._23{margin-left:-127.675648pt;}
._22{margin-left:-125.435648pt;}
._31{margin-left:-30.067638pt;}
._33{margin-left:-28.992388pt;}
._2e{margin-left:-19.513555pt;}
._32{margin-left:-5.107206pt;}
._3{margin-left:-3.737645pt;}
._2{margin-left:-1.994679pt;}
._0{margin-left:-0.999680pt;}
._1{width:1.041920pt;}
._4{width:1.972974pt;}
._b{width:6.664445pt;}
._1a{width:9.468160pt;}
._13{width:12.621950pt;}
._1b{width:14.097728pt;}
._30{width:15.618765pt;}
._e{width:17.631299pt;}
._38{width:19.175133pt;}
._37{width:22.481630pt;}
._35{width:24.894480pt;}
._36{width:25.788128pt;}
._2f{width:27.311152pt;}
._34{width:29.388253pt;}
._18{width:38.820977pt;}
._6{width:39.793600pt;}
._19{width:41.872149pt;}
._41{width:43.824521pt;}
._15{width:48.451545pt;}
._42{width:49.890387pt;}
._7{width:53.063711pt;}
._40{width:54.050891pt;}
._12{width:56.797741pt;}
._a{width:58.281783pt;}
._16{width:59.202544pt;}
._8{width:64.312916pt;}
._3f{width:73.795696pt;}
._d{width:80.265238pt;}
._c{width:86.427951pt;}
._9{width:92.794528pt;}
._17{width:98.680449pt;}
._10{width:102.923954pt;}
._11{width:118.757032pt;}
._f{width:123.140653pt;}
._14{width:124.783069pt;}
._5{width:285.729600pt;}
._43{width:523.487360pt;}
.fs24{font-size:3.522667pt;}
.fs33{font-size:3.571200pt;}
.fs1d{font-size:3.657600pt;}
.fs20{font-size:4.191467pt;}
.fs27{font-size:4.334933pt;}
.fs2a{font-size:4.787733pt;}
.fs34{font-size:4.911467pt;}
.fs2d{font-size:4.978667pt;}
.fs32{font-size:5.357333pt;}
.fs30{font-size:5.362667pt;}
.fs23{font-size:5.536533pt;}
.fs1c{font-size:5.747733pt;}
.fs21{font-size:5.762667pt;}
.fs31{font-size:6.250133pt;}
.fs1f{font-size:6.286400pt;}
.fs22{font-size:6.543467pt;}
.fs26{font-size:6.812267pt;}
.fs2e{font-size:6.845333pt;}
.fs1b{font-size:7.314667pt;}
.fs1e{font-size:7.333867pt;}
.fs2c{font-size:7.467733pt;}
.fs29{font-size:7.523733pt;}
.fs25{font-size:8.051200pt;}
.fs2b{font-size:8.090133pt;}
.fs41{font-size:8.108800pt;}
.fs37{font-size:8.123733pt;}
.fs28{font-size:8.208533pt;}
.fs2f{font-size:8.427733pt;}
.fs44{font-size:9.025067pt;}
.fs3e{font-size:9.027733pt;}
.fs3b{font-size:9.053867pt;}
.fsb{font-size:9.223467pt;}
.fs18{font-size:9.303467pt;}
.fs40{font-size:9.730133pt;}
.fs43{font-size:9.927467pt;}
.fs3d{font-size:9.930133pt;}
.fs3a{font-size:9.958933pt;}
.fs8{font-size:11.610133pt;}
.fs46{font-size:11.616533pt;}
.fs17{font-size:11.840000pt;}
.fs45{font-size:12.020267pt;}
.fs3f{font-size:12.162667pt;}
.fs38{font-size:12.181333pt;}
.fsd{font-size:12.342400pt;}
.fs3c{font-size:12.638933pt;}
.fs39{font-size:12.674667pt;}
.fs36{font-size:12.766400pt;}
.fs1a{font-size:13.440000pt;}
.fs42{font-size:13.537600pt;}
.fs16{font-size:14.202667pt;}
.fsc{font-size:14.869867pt;}
.fs35{font-size:15.086400pt;}
.fs4{font-size:15.360000pt;}
.fs6{font-size:16.062400pt;}
.fs19{font-size:16.960000pt;}
.fs10{font-size:17.327467pt;}
.fs3{font-size:18.560000pt;}
.fs12{font-size:20.016533pt;}
.fs14{font-size:20.341333pt;}
.fsa{font-size:20.480000pt;}
.fs15{font-size:21.309867pt;}
.fs9{font-size:21.705067pt;}
.fs5{font-size:23.680000pt;}
.fs13{font-size:25.474667pt;}
.fse{font-size:25.600000pt;}
.fs2{font-size:27.200000pt;}
.fs7{font-size:30.400000pt;}
.fsf{font-size:40.640000pt;}
.fs1{font-size:59.520000pt;}
.fs11{font-size:64.000000pt;}
.fs0{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:0.800533pt;}
.y67{bottom:4.184400pt;}
.y69{bottom:4.191867pt;}
.y66{bottom:21.448400pt;}
.y1{bottom:33.307067pt;}
.y68{bottom:48.000028pt;}
.y2c4{bottom:145.387067pt;}
.y164{bottom:146.107200pt;}
.y2b1{bottom:147.707067pt;}
.y19a{bottom:149.067200pt;}
.y2c5{bottom:150.427067pt;}
.y163{bottom:150.509627pt;}
.y5b{bottom:150.827067pt;}
.y2b2{bottom:153.227067pt;}
.y162{bottom:156.587067pt;}
.y2b3{bottom:162.187200pt;}
.y5a{bottom:163.067200pt;}
.y199{bottom:166.067867pt;}
.y165{bottom:168.427067pt;}
.y57{bottom:168.587067pt;}
.y166{bottom:169.067200pt;}
.y2a0{bottom:169.147200pt;}
.y2b4{bottom:173.227067pt;}
.y198{bottom:175.263867pt;}
.y167{bottom:177.867067pt;}
.y168{bottom:178.027200pt;}
.y169{bottom:178.267067pt;}
.y2a1{bottom:178.427067pt;}
.y59{bottom:181.947067pt;}
.y2b5{bottom:184.267067pt;}
.y197{bottom:184.459867pt;}
.y16a{bottom:186.987067pt;}
.y16b{bottom:187.147200pt;}
.y16c{bottom:187.387067pt;}
.y2a2{bottom:188.027200pt;}
.y55{bottom:188.516667pt;}
.y196{bottom:193.655867pt;}
.y2b6{bottom:195.307067pt;}
.y16d{bottom:196.107200pt;}
.y16e{bottom:196.267067pt;}
.y16f{bottom:196.507067pt;}
.y2a3{bottom:197.627067pt;}
.y54{bottom:197.713467pt;}
.y170{bottom:205.147200pt;}
.y2b7{bottom:206.347067pt;}
.y53{bottom:206.833467pt;}
.y58{bottom:207.227067pt;}
.y195{bottom:207.411867pt;}
.y2a4{bottom:207.627067pt;}
.y171{bottom:214.187200pt;}
.y172{bottom:214.267067pt;}
.y173{bottom:214.747067pt;}
.y52{bottom:216.030267pt;}
.y194{bottom:216.607867pt;}
.y2b8{bottom:217.467067pt;}
.y2a5{bottom:217.627067pt;}
.y56{bottom:219.147200pt;}
.y174{bottom:223.867067pt;}
.y175{bottom:224.027067pt;}
.y176{bottom:224.507067pt;}
.y51{bottom:225.227067pt;}
.y193{bottom:225.727867pt;}
.y2a6{bottom:226.907067pt;}
.y64{bottom:226.908827pt;}
.y2b9{bottom:228.507067pt;}
.y63{bottom:232.107067pt;}
.y50{bottom:232.830267pt;}
.y177{bottom:233.227067pt;}
.y178{bottom:233.387067pt;}
.y179{bottom:233.627067pt;}
.y2a7{bottom:236.187067pt;}
.y2ba{bottom:239.467067pt;}
.y192{bottom:239.567467pt;}
.y4f{bottom:242.027067pt;}
.y17c{bottom:242.427067pt;}
.y17a{bottom:242.507067pt;}
.y17b{bottom:242.747067pt;}
.y2a8{bottom:246.347067pt;}
.y62{bottom:248.028827pt;}
.y191{bottom:248.763467pt;}
.y2bb{bottom:250.507067pt;}
.y17f{bottom:251.547067pt;}
.y17d{bottom:251.627067pt;}
.y17e{bottom:251.867067pt;}
.y61{bottom:253.227067pt;}
.y60{bottom:256.427067pt;}
.y2a9{bottom:256.507067pt;}
.y180{bottom:260.507067pt;}
.y2bc{bottom:261.627067pt;}
.y4a{bottom:261.787519pt;}
.y190{bottom:262.519467pt;}
.y2aa{bottom:265.787067pt;}
.y49{bottom:266.267067pt;}
.y181{bottom:269.147067pt;}
.y18f{bottom:271.715467pt;}
.y2bd{bottom:272.667067pt;}
.y2ab{bottom:275.067067pt;}
.y182{bottom:277.867067pt;}
.y183{bottom:278.107067pt;}
.y184{bottom:278.267067pt;}
.y46{bottom:279.307067pt;}
.y2be{bottom:283.707067pt;}
.y4c{bottom:284.107067pt;}
.y18e{bottom:285.479067pt;}
.y185{bottom:286.907067pt;}
.y2ac{bottom:287.307067pt;}
.y2bf{bottom:294.747067pt;}
.y187{bottom:299.067707pt;}
.y18d{bottom:299.235067pt;}
.y2ad{bottom:299.547067pt;}
.y43{bottom:300.107972pt;}
.y188{bottom:301.867067pt;}
.y5f{bottom:302.105467pt;}
.y42{bottom:304.587519pt;}
.y186{bottom:304.747067pt;}
.y4b{bottom:305.307067pt;}
.y2c0{bottom:307.627067pt;}
.y18c{bottom:308.431067pt;}
.y41{bottom:309.067067pt;}
.y45{bottom:309.707067pt;}
.y2ae{bottom:313.227067pt;}
.y5e{bottom:315.869067pt;}
.y18b{bottom:317.627067pt;}
.y48{bottom:319.467519pt;}
.y189{bottom:321.147200pt;}
.y2c1{bottom:323.467067pt;}
.y47{bottom:323.947067pt;}
.y5d{bottom:325.065067pt;}
.y4e{bottom:329.787600pt;}
.y44{bottom:330.587067pt;}
.y2b0{bottom:335.470400pt;}
.y5c{bottom:339.467067pt;}
.y161{bottom:341.310267pt;}
.y18a{bottom:341.867067pt;}
.y2c3{bottom:342.670267pt;}
.y2af{bottom:343.067200pt;}
.y4d{bottom:346.667200pt;}
.y160{bottom:348.990267pt;}
.y2c2{bottom:350.267067pt;}
.y15f{bottom:356.587067pt;}
.y39{bottom:454.587067pt;}
.y40{bottom:458.267067pt;}
.y3a{bottom:460.267067pt;}
.y29d{bottom:460.347067pt;}
.y14f{bottom:462.107200pt;}
.y259{bottom:464.267067pt;}
.y15d{bottom:467.865467pt;}
.y258{bottom:469.707067pt;}
.y14d{bottom:473.716267pt;}
.y29e{bottom:473.947067pt;}
.y27a{bottom:474.827067pt;}
.y299{bottom:475.067067pt;}
.y37{bottom:475.467067pt;}
.y15c{bottom:476.107067pt;}
.y26b{bottom:479.467067pt;}
.y28b{bottom:479.707067pt;}
.y14c{bottom:482.912267pt;}
.y15b{bottom:484.267067pt;}
.y23{bottom:484.428303pt;}
.y36{bottom:484.907067pt;}
.y26c{bottom:484.987067pt;}
.y28c{bottom:485.227067pt;}
.y26d{bottom:488.826110pt;}
.y28d{bottom:489.067233pt;}
.y14b{bottom:492.032267pt;}
.y26e{bottom:492.906646pt;}
.y28e{bottom:492.907398pt;}
.y22c{bottom:493.467067pt;}
.y22d{bottom:493.547067pt;}
.y21{bottom:493.625825pt;}
.y22{bottom:494.027368pt;}
.y24{bottom:494.906424pt;}
.y20{bottom:495.307967pt;}
.y26f{bottom:496.747946pt;}
.y15a{bottom:496.757467pt;}
.y28f{bottom:496.986729pt;}
.y1f{bottom:497.787771pt;}
.y35{bottom:500.347067pt;}
.y290{bottom:500.826894pt;}
.y270{bottom:500.828482pt;}
.y14a{bottom:501.228267pt;}
.y279{bottom:502.427067pt;}
.y22e{bottom:502.587067pt;}
.y22f{bottom:502.667067pt;}
.y230{bottom:502.987067pt;}
.y291{bottom:504.667060pt;}
.y271{bottom:504.667525pt;}
.y25{bottom:505.308577pt;}
.y292{bottom:508.746390pt;}
.y272{bottom:508.748061pt;}
.y159{bottom:510.521067pt;}
.y293{bottom:512.586556pt;}
.y273{bottom:512.587104pt;}
.y231{bottom:512.667067pt;}
.y232{bottom:512.747067pt;}
.y233{bottom:512.987067pt;}
.y149{bottom:515.067867pt;}
.y34{bottom:515.787067pt;}
.y274{bottom:516.426148pt;}
.y294{bottom:516.426722pt;}
.y1e{bottom:516.985903pt;}
.y295{bottom:520.266888pt;}
.y275{bottom:520.425434pt;}
.y234{bottom:522.587067pt;}
.y235{bottom:522.667067pt;}
.y236{bottom:522.987067pt;}
.y276{bottom:524.264477pt;}
.y296{bottom:524.267249pt;}
.y158{bottom:524.360667pt;}
.y33{bottom:524.585316pt;}
.y148{bottom:527.949867pt;}
.y297{bottom:528.107415pt;}
.y277{bottom:528.345013pt;}
.y32{bottom:531.227067pt;}
.y237{bottom:531.707067pt;}
.y238{bottom:531.787067pt;}
.y298{bottom:531.947581pt;}
.y239{bottom:532.107067pt;}
.y278{bottom:532.184057pt;}
.y147{bottom:537.145867pt;}
.y157{bottom:538.116667pt;}
.y28a{bottom:540.187067pt;}
.y26a{bottom:540.667067pt;}
.y23a{bottom:541.787067pt;}
.y23b{bottom:541.867067pt;}
.y23c{bottom:542.107067pt;}
.y31{bottom:546.667067pt;}
.y146{bottom:547.320267pt;}
.y23d{bottom:551.787067pt;}
.y23e{bottom:551.867067pt;}
.y156{bottom:551.872667pt;}
.y269{bottom:551.947067pt;}
.y23f{bottom:552.187067pt;}
.y29f{bottom:553.387707pt;}
.y30{bottom:555.465316pt;}
.y25b{bottom:556.507067pt;}
.y240{bottom:560.907067pt;}
.y241{bottom:560.987067pt;}
.y145{bottom:561.076267pt;}
.y242{bottom:561.307067pt;}
.y2f{bottom:562.107067pt;}
.y27c{bottom:562.267067pt;}
.y1d{bottom:563.787453pt;}
.y155{bottom:565.712267pt;}
.y25c{bottom:565.948170pt;}
.y27d{bottom:566.187671pt;}
.y25d{bottom:569.789273pt;}
.y243{bottom:570.027067pt;}
.y244{bottom:570.107067pt;}
.y27e{bottom:570.187337pt;}
.y245{bottom:570.427067pt;}
.y25e{bottom:573.870303pt;}
.y27f{bottom:574.268091pt;}
.y144{bottom:574.915867pt;}
.y2e{bottom:577.547067pt;}
.y25f{bottom:577.711406pt;}
.y280{bottom:578.107607pt;}
.y246{bottom:579.147067pt;}
.y247{bottom:579.227067pt;}
.y268{bottom:579.387067pt;}
.y154{bottom:579.468267pt;}
.y248{bottom:579.547067pt;}
.y289{bottom:580.587067pt;}
.y260{bottom:581.792436pt;}
.y281{bottom:582.188361pt;}
.y143{bottom:584.035867pt;}
.y261{bottom:585.633539pt;}
.y282{bottom:586.188027pt;}
.y26{bottom:587.147531pt;}
.y249{bottom:588.347067pt;}
.y24a{bottom:588.427067pt;}
.y153{bottom:588.671867pt;}
.y24b{bottom:588.747067pt;}
.y262{bottom:589.474642pt;}
.y283{bottom:590.108631pt;}
.y2d{bottom:592.987067pt;}
.y263{bottom:593.555673pt;}
.y284{bottom:594.108297pt;}
.y264{bottom:597.396775pt;}
.y24c{bottom:597.467067pt;}
.y24d{bottom:597.547067pt;}
.y24e{bottom:597.867067pt;}
.y142{bottom:597.875467pt;}
.y285{bottom:597.947814pt;}
.y265{bottom:601.477806pt;}
.y2c{bottom:601.785316pt;}
.y286{bottom:602.028567pt;}
.y152{bottom:602.435467pt;}
.y266{bottom:605.318909pt;}
.y287{bottom:606.109321pt;}
.y24f{bottom:606.587067pt;}
.y250{bottom:606.667067pt;}
.y251{bottom:606.987067pt;}
.y2b{bottom:608.427067pt;}
.y267{bottom:609.239233pt;}
.y288{bottom:609.948838pt;}
.y151{bottom:611.631467pt;}
.y141{bottom:611.639067pt;}
.y3f{bottom:615.067067pt;}
.y1c{bottom:615.147067pt;}
.y253{bottom:615.869627pt;}
.y2a{bottom:617.225316pt;}
.y25a{bottom:617.707067pt;}
.y27b{bottom:617.867067pt;}
.y254{bottom:618.907067pt;}
.y140{bottom:620.835067pt;}
.y252{bottom:621.947067pt;}
.y29{bottom:623.867067pt;}
.y150{bottom:625.471067pt;}
.y3e{bottom:628.435067pt;}
.y28{bottom:632.669349pt;}
.y13f{bottom:634.591067pt;}
.y29c{bottom:634.663867pt;}
.y255{bottom:635.227067pt;}
.y3d{bottom:637.555067pt;}
.y27{bottom:639.387067pt;}
.y29b{bottom:642.267067pt;}
.y13e{bottom:643.787067pt;}
.y3c{bottom:646.751067pt;}
.y29a{bottom:649.947067pt;}
.y3b{bottom:655.947067pt;}
.y257{bottom:657.470267pt;}
.y38{bottom:658.347067pt;}
.y14e{bottom:660.759867pt;}
.y15e{bottom:663.227067pt;}
.y256{bottom:665.067067pt;}
.y86{bottom:761.306787pt;}
.y80{bottom:763.225237pt;}
.y82{bottom:763.228152pt;}
.y22b{bottom:766.187067pt;}
.y1a4{bottom:768.026722pt;}
.y13d{bottom:768.667200pt;}
.y1ec{bottom:768.983765pt;}
.y1a3{bottom:770.666369pt;}
.y2d6{bottom:771.867067pt;}
.y22a{bottom:772.267067pt;}
.y19e{bottom:772.745611pt;}
.y1eb{bottom:772.824704pt;}
.y1b{bottom:774.107067pt;}
.y13c{bottom:774.347067pt;}
.y83{bottom:774.747067pt;}
.y13a{bottom:775.391227pt;}
.y101{bottom:775.420347pt;}
.y1e4{bottom:775.947179pt;}
.y84{bottom:776.507067pt;}
.y139{bottom:778.910667pt;}
.y100{bottom:778.939787pt;}
.y1e5{bottom:781.067027pt;}
.y2d5{bottom:781.169067pt;}
.y19f{bottom:781.865827pt;}
.y138{bottom:782.510027pt;}
.yff{bottom:782.539147pt;}
.y85{bottom:784.267067pt;}
.y1ed{bottom:784.507067pt;}
.y137{bottom:786.029467pt;}
.yfe{bottom:786.058587pt;}
.y81{bottom:786.107067pt;}
.y1e6{bottom:786.266939pt;}
.y1a5{bottom:786.347067pt;}
.y136{bottom:789.548907pt;}
.yfd{bottom:789.578027pt;}
.y2d4{bottom:790.365067pt;}
.y1a0{bottom:791.066511pt;}
.y1e7{bottom:791.226660pt;}
.y135{bottom:793.148267pt;}
.yfc{bottom:793.177387pt;}
.y214{bottom:794.267067pt;}
.y88{bottom:795.149361pt;}
.y1e8{bottom:796.426571pt;}
.y134{bottom:796.667707pt;}
.yfb{bottom:796.696827pt;}
.y219{bottom:796.747067pt;}
.y20e{bottom:796.747800pt;}
.y19{bottom:798.928667pt;}
.y1e1{bottom:799.706431pt;}
.y1e3{bottom:799.707067pt;}
.y1a1{bottom:800.186727pt;}
.y133{bottom:800.267067pt;}
.yfa{bottom:800.296187pt;}
.y1e2{bottom:800.347067pt;}
.y19c{bottom:801.227067pt;}
.y1e9{bottom:801.626483pt;}
.y19d{bottom:801.627067pt;}
.y20d{bottom:802.588428pt;}
.yb{bottom:803.149787pt;}
.y229{bottom:803.248267pt;}
.yf9{bottom:803.815627pt;}
.y132{bottom:803.848187pt;}
.y1ea{bottom:806.746331pt;}
.y204{bottom:807.225823pt;}
.y8d{bottom:807.227067pt;}
.yf8{bottom:807.414987pt;}
.y131{bottom:807.447547pt;}
.y18{bottom:808.124667pt;}
.y2d3{bottom:808.681067pt;}
.y1a2{bottom:809.306943pt;}
.y213{bottom:809.627067pt;}
.y8b{bottom:810.346667pt;}
.ya{bottom:810.507067pt;}
.yf7{bottom:810.934427pt;}
.y130{bottom:810.966987pt;}
.y8a{bottom:811.147200pt;}
.y228{bottom:812.444267pt;}
.y1e0{bottom:813.787067pt;}
.yf6{bottom:814.453867pt;}
.y12f{bottom:814.486427pt;}
.y19b{bottom:814.507067pt;}
.y8e{bottom:814.747067pt;}
.y205{bottom:815.067584pt;}
.y17{bottom:817.320667pt;}
.y2d2{bottom:817.877067pt;}
.yf5{bottom:817.973307pt;}
.y12e{bottom:818.085787pt;}
.y79{bottom:818.587067pt;}
.y7c{bottom:818.588944pt;}
.y8f{bottom:821.467067pt;}
.yf4{bottom:821.572667pt;}
.y12d{bottom:821.605227pt;}
.y227{bottom:821.640267pt;}
.y1de{bottom:822.427151pt;}
.ya6{bottom:822.585780pt;}
.y1d3{bottom:822.746869pt;}
.y9{bottom:822.992507pt;}
.y206{bottom:823.148715pt;}
.ya8{bottom:823.785905pt;}
.y215{bottom:823.867067pt;}
.yf3{bottom:825.172027pt;}
.y12c{bottom:825.204587pt;}
.y1dd{bottom:825.627345pt;}
.y7e{bottom:826.187067pt;}
.y1d2{bottom:826.187096pt;}
.yab{bottom:826.587381pt;}
.y90{bottom:827.787067pt;}
.yc4{bottom:828.099965pt;}
.ya5{bottom:828.107067pt;}
.y20f{bottom:828.667067pt;}
.y8{bottom:828.669787pt;}
.yf2{bottom:828.691467pt;}
.y12b{bottom:828.724027pt;}
.y1cc{bottom:828.906925pt;}
.y7a{bottom:829.947701pt;}
.y226{bottom:830.760267pt;}
.y207{bottom:830.987285pt;}
.yaf{bottom:831.703892pt;}
.yac{bottom:831.707443pt;}
.y7f{bottom:831.867067pt;}
.yf1{bottom:832.290827pt;}
.y12a{bottom:832.323387pt;}
.ya7{bottom:834.026028pt;}
.y91{bottom:834.427067pt;}
.y1d8{bottom:834.986627pt;}
.yb4{bottom:835.627379pt;}
.y1cd{bottom:835.627500pt;}
.yf0{bottom:835.730347pt;}
.y129{bottom:835.842827pt;}
.y7{bottom:836.027067pt;}
.y2d1{bottom:836.276667pt;}
.yaa{bottom:836.827504pt;}
.y7b{bottom:837.547067pt;}
.yc{bottom:838.107067pt;}
.y208{bottom:839.148206pt;}
.ya9{bottom:839.227755pt;}
.y1d4{bottom:839.307067pt;}
.yef{bottom:839.329707pt;}
.y128{bottom:839.362267pt;}
.y1df{bottom:839.547067pt;}
.y92{bottom:840.747067pt;}
.yb0{bottom:841.145115pt;}
.y7d{bottom:841.467067pt;}
.y1d9{bottom:841.787465pt;}
.y1ce{bottom:842.107315pt;}
.yee{bottom:842.929067pt;}
.y127{bottom:842.961627pt;}
.yb1{bottom:844.745491pt;}
.y16{bottom:844.923867pt;}
.y2d0{bottom:845.396667pt;}
.yae{bottom:846.265176pt;}
.yed{bottom:846.448507pt;}
.y126{bottom:846.481067pt;}
.y209{bottom:846.906985pt;}
.y93{bottom:847.067067pt;}
.y1da{bottom:848.507871pt;}
.yb9{bottom:848.665427pt;}
.y1cf{bottom:848.747010pt;}
.y225{bottom:849.159867pt;}
.ybe{bottom:849.862001pt;}
.yec{bottom:850.047867pt;}
.y125{bottom:850.080427pt;}
.y87{bottom:850.507067pt;}
.ybb{bottom:851.385237pt;}
.y6{bottom:851.787067pt;}
.y21a{bottom:852.107067pt;}
.yb5{bottom:852.187688pt;}
.yeb{bottom:853.567307pt;}
.y124{bottom:853.599867pt;}
.y94{bottom:853.787067pt;}
.y15{bottom:854.043867pt;}
.y218{bottom:854.507067pt;}
.y2cf{bottom:854.592667pt;}
.y1ca{bottom:854.907067pt;}
.yba{bottom:854.985613pt;}
.y20a{bottom:855.067907pt;}
.y1d0{bottom:855.226825pt;}
.y1d6{bottom:855.227067pt;}
.y202{bottom:855.387067pt;}
.y1db{bottom:855.387431pt;}
.y1cb{bottom:855.547067pt;}
.y1d7{bottom:855.867067pt;}
.y203{bottom:856.427067pt;}
.yea{bottom:857.086747pt;}
.y123{bottom:857.119307pt;}
.yb7{bottom:857.705424pt;}
.y224{bottom:858.279867pt;}
.y95{bottom:860.107067pt;}
.ye9{bottom:860.686107pt;}
.y122{bottom:860.718667pt;}
.yb6{bottom:861.707025pt;}
.y1d1{bottom:861.947400pt;}
.y1dc{bottom:862.188270pt;}
.yc0{bottom:862.821935pt;}
.y20b{bottom:862.906476pt;}
.y14{bottom:863.239867pt;}
.ye8{bottom:864.205547pt;}
.y121{bottom:864.238107pt;}
.yb3{bottom:864.426836pt;}
.y96{bottom:866.427067pt;}
.y212{bottom:867.387067pt;}
.y223{bottom:867.475867pt;}
.ye7{bottom:867.804907pt;}
.y120{bottom:867.837467pt;}
.y1d5{bottom:867.947067pt;}
.y1c9{bottom:868.187067pt;}
.yc6{bottom:869.543347pt;}
.ya3{bottom:869.547067pt;}
.y20c{bottom:870.987607pt;}
.ye6{bottom:871.324347pt;}
.y11f{bottom:871.356907pt;}
.y13{bottom:872.435867pt;}
.y2ce{bottom:872.908667pt;}
.y97{bottom:873.147200pt;}
.yad{bottom:874.666959pt;}
.ye5{bottom:874.923707pt;}
.y11e{bottom:874.956267pt;}
.y77{bottom:875.706869pt;}
.ybd{bottom:875.863533pt;}
.y1f7{bottom:876.267067pt;}
.y1c7{bottom:877.391553pt;}
.yc1{bottom:878.260233pt;}
.ybc{bottom:878.263784pt;}
.ye4{bottom:878.443147pt;}
.y11d{bottom:878.475707pt;}
.y1f6{bottom:878.747534pt;}
.yc5{bottom:879.861584pt;}
.y98{bottom:879.867067pt;}
.y1f1{bottom:880.507067pt;}
.y1c6{bottom:880.591615pt;}
.y12{bottom:881.631867pt;}
.y76{bottom:881.706825pt;}
.y201{bottom:881.787067pt;}
.ye3{bottom:881.962587pt;}
.y11c{bottom:881.995147pt;}
.y2cd{bottom:882.104667pt;}
.y1c0{bottom:883.067874pt;}
.ybf{bottom:883.781520pt;}
.yb2{bottom:885.386421pt;}
.ye2{bottom:885.561947pt;}
.y11b{bottom:885.594507pt;}
.y222{bottom:885.875467pt;}
.y99{bottom:886.107067pt;}
.y75{bottom:887.866913pt;}
.ye1{bottom:889.081387pt;}
.y11a{bottom:889.113947pt;}
.y1c1{bottom:889.868220pt;}
.y1f2{bottom:890.107756pt;}
.y5{bottom:890.743707pt;}
.y11{bottom:890.751867pt;}
.y2cc{bottom:891.300667pt;}
.y9a{bottom:892.427067pt;}
.ye0{bottom:892.680747pt;}
.y119{bottom:892.713307pt;}
.y74{bottom:893.946935pt;}
.y1c8{bottom:894.347067pt;}
.y221{bottom:894.995467pt;}
.y1f8{bottom:895.627067pt;}
.ydf{bottom:896.200187pt;}
.y118{bottom:896.232747pt;}
.y1c2{bottom:896.668565pt;}
.y9b{bottom:899.147067pt;}
.y1f3{bottom:899.708446pt;}
.yde{bottom:899.799547pt;}
.y117{bottom:899.832107pt;}
.y10{bottom:899.947867pt;}
.y73{bottom:900.026957pt;}
.ydd{bottom:903.318987pt;}
.y116{bottom:903.351547pt;}
.y1c3{bottom:903.468910pt;}
.y220{bottom:904.191467pt;}
.y9c{bottom:905.467067pt;}
.y72{bottom:906.106979pt;}
.ydc{bottom:906.838427pt;}
.y115{bottom:906.870987pt;}
.y217{bottom:907.387067pt;}
.y4{bottom:908.584827pt;}
.y1be{bottom:909.387067pt;}
.y1f4{bottom:909.468758pt;}
.y2cb{bottom:909.624267pt;}
.y1bf{bottom:909.787067pt;}
.y1ef{bottom:909.867067pt;}
.y1c4{bottom:910.269255pt;}
.y1f0{bottom:910.427067pt;}
.ydb{bottom:910.437787pt;}
.y114{bottom:910.470347pt;}
.y200{bottom:910.510267pt;}
.y71{bottom:912.187001pt;}
.y9d{bottom:912.187067pt;}
.yda{bottom:913.957227pt;}
.y113{bottom:913.989787pt;}
.y1c5{bottom:917.069600pt;}
.yd9{bottom:917.556587pt;}
.y112{bottom:917.589147pt;}
.y1ff{bottom:918.107067pt;}
.y70{bottom:918.267023pt;}
.y9e{bottom:918.507067pt;}
.y2ca{bottom:918.820267pt;}
.y1f5{bottom:919.068219pt;}
.y211{bottom:920.347067pt;}
.yd8{bottom:921.076027pt;}
.y111{bottom:921.108587pt;}
.yb8{bottom:922.426976pt;}
.y1bd{bottom:922.507067pt;}
.y21f{bottom:922.515067pt;}
.y1ee{bottom:923.547067pt;}
.yc3{bottom:924.021225pt;}
.y6f{bottom:924.427111pt;}
.yd7{bottom:924.675387pt;}
.y110{bottom:924.707947pt;}
.y9f{bottom:924.827067pt;}
.y1fe{bottom:925.787067pt;}
.y3{bottom:926.425947pt;}
.yf{bottom:927.551067pt;}
.y2c9{bottom:928.016267pt;}
.yd6{bottom:928.194827pt;}
.y10f{bottom:928.227387pt;}
.y6e{bottom:930.427067pt;}
.y1bb{bottom:930.664756pt;}
.y1b0{bottom:930.746002pt;}
.ya0{bottom:931.547067pt;}
.y21e{bottom:931.711067pt;}
.yd5{bottom:931.714267pt;}
.y10e{bottom:931.746827pt;}
.y1ba{bottom:933.225403pt;}
.y1fd{bottom:933.383867pt;}
.y1af{bottom:933.386744pt;}
.y1b5{bottom:935.225475pt;}
.yd4{bottom:935.313627pt;}
.y10d{bottom:935.346187pt;}
.y1a9{bottom:935.467067pt;}
.y6d{bottom:936.587155pt;}
.ye{bottom:936.747067pt;}
.ya1{bottom:937.787067pt;}
.yd3{bottom:938.833067pt;}
.y10c{bottom:938.865627pt;}
.yc2{bottom:939.782635pt;}
.y21d{bottom:940.907067pt;}
.y1fc{bottom:941.063867pt;}
.yd2{bottom:942.432427pt;}
.y10b{bottom:942.464987pt;}
.y6c{bottom:942.587111pt;}
.y1aa{bottom:942.827433pt;}
.y2{bottom:944.267067pt;}
.y1b6{bottom:944.506089pt;}
.ya2{bottom:944.507067pt;}
.yd{bottom:945.867067pt;}
.yd1{bottom:945.951867pt;}
.y10a{bottom:945.984427pt;}
.y2c8{bottom:946.339867pt;}
.yc7{bottom:947.704172pt;}
.yc8{bottom:948.503072pt;}
.ya4{bottom:948.506792pt;}
.y89{bottom:948.507067pt;}
.y6b{bottom:948.587067pt;}
.y1fb{bottom:948.667067pt;}
.y1b1{bottom:949.067067pt;}
.y1bc{bottom:949.387067pt;}
.yd0{bottom:949.551227pt;}
.y109{bottom:949.583787pt;}
.y1ab{bottom:950.187799pt;}
.ycf{bottom:953.070667pt;}
.y108{bottom:953.103227pt;}
.y1b7{bottom:953.945879pt;}
.y2c7{bottom:955.543467pt;}
.y21c{bottom:955.951067pt;}
.y1fa{bottom:956.350267pt;}
.yce{bottom:956.590107pt;}
.y107{bottom:956.622667pt;}
.y1ac{bottom:957.467487pt;}
.ycd{bottom:960.189467pt;}
.y106{bottom:960.222027pt;}
.y216{bottom:960.347067pt;}
.y1a{bottom:962.769467pt;}
.y1b8{bottom:963.306772pt;}
.ycc{bottom:963.708907pt;}
.y105{bottom:963.741467pt;}
.y1b3{bottom:963.787067pt;}
.y1f9{bottom:963.947067pt;}
.y1b4{bottom:964.107067pt;}
.y78{bottom:964.507067pt;}
.y1a7{bottom:964.587067pt;}
.y1ad{bottom:964.827853pt;}
.y21b{bottom:965.147067pt;}
.y1a8{bottom:965.307067pt;}
.ycb{bottom:967.308267pt;}
.y104{bottom:967.340827pt;}
.y13b{bottom:969.947067pt;}
.yca{bottom:970.827707pt;}
.y103{bottom:970.860267pt;}
.y1ae{bottom:972.188219pt;}
.y2c6{bottom:972.347067pt;}
.y1b9{bottom:972.746562pt;}
.yc9{bottom:974.427067pt;}
.y102{bottom:974.459627pt;}
.y210{bottom:975.627067pt;}
.y1a6{bottom:977.307067pt;}
.y1b2{bottom:977.627067pt;}
.y6a{bottom:978.667067pt;}
.y65{bottom:1038.130376pt;}
.h38{height:3.457305pt;}
.h4c{height:3.504938pt;}
.h2f{height:3.589734pt;}
.h1d{height:4.000000pt;}
.h33{height:4.113695pt;}
.h3c{height:4.254500pt;}
.h40{height:4.698898pt;}
.h4d{height:4.820336pt;}
.h44{height:4.886289pt;}
.h4b{height:5.257930pt;}
.h49{height:5.263164pt;}
.h4e{height:5.399187pt;}
.h37{height:5.433805pt;}
.h39{height:5.579788pt;}
.h2e{height:5.641086pt;}
.h34{height:5.655742pt;}
.h30{height:5.792637pt;}
.h35{height:5.807688pt;}
.h32{height:6.169758pt;}
.h4a{height:6.298962pt;}
.h36{height:6.594587pt;}
.h3b{height:6.685867pt;}
.h45{height:6.718320pt;}
.h3d{height:6.865487pt;}
.h46{height:6.898812pt;}
.h43{height:7.329172pt;}
.h2d{height:7.371812pt;}
.h3f{height:7.384133pt;}
.h41{height:7.582512pt;}
.h64{height:7.958344pt;}
.h52{height:7.973000pt;}
.h31{height:8.029209pt;}
.h3a{height:8.114100pt;}
.h42{height:8.153337pt;}
.h48{height:8.271359pt;}
.h3e{height:8.272662pt;}
.h47{height:8.493575pt;}
.h20{height:8.625625pt;}
.h68{height:8.857609pt;}
.h60{height:8.860227pt;}
.h5c{height:8.885875pt;}
.he{height:8.991631pt;}
.hc{height:9.052328pt;}
.h22{height:9.130844pt;}
.h63{height:9.549594pt;}
.h67{height:9.743266pt;}
.h5f{height:9.745883pt;}
.h5b{height:9.774148pt;}
.h28{height:9.791250pt;}
.h65{height:9.806150pt;}
.h69{height:10.005025pt;}
.h61{height:10.007712pt;}
.h5d{height:10.036737pt;}
.h1c{height:10.346865pt;}
.hd{height:10.832930pt;}
.h4{height:11.190000pt;}
.h8{height:11.394711pt;}
.h6e{height:11.400992pt;}
.h6c{height:11.797234pt;}
.h59{height:11.955312pt;}
.h62{height:12.257688pt;}
.h21{height:12.348750pt;}
.h54{height:12.355625pt;}
.h51{height:12.529523pt;}
.h5e{height:12.737675pt;}
.h5a{height:12.773687pt;}
.h53{height:12.866137pt;}
.h2b{height:13.521250pt;}
.h66{height:13.643363pt;}
.h18{height:14.582357pt;}
.h29{height:14.920000pt;}
.h50{height:15.204263pt;}
.h6{height:15.764367pt;}
.h9{height:15.812480pt;}
.h56{height:16.511250pt;}
.h6d{height:16.511783pt;}
.h1e{height:16.752267pt;}
.h13{height:17.005961pt;}
.h58{height:17.092500pt;}
.h5{height:17.251250pt;}
.h19{height:18.558693pt;}
.hf{height:18.650000pt;}
.h2a{height:18.705000pt;}
.h16{height:19.279757pt;}
.h6a{height:19.357500pt;}
.h1f{height:19.621206pt;}
.hb{height:19.815625pt;}
.h1a{height:19.963906pt;}
.h2c{height:20.640000pt;}
.h17{height:20.876619pt;}
.h4f{height:20.982825pt;}
.h6b{height:20.995092pt;}
.h26{height:20.996158pt;}
.h27{height:21.360000pt;}
.h1b{height:21.476350pt;}
.h55{height:21.635625pt;}
.ha{height:21.852160pt;}
.h7{height:22.146875pt;}
.h3{height:22.161250pt;}
.h23{height:23.507200pt;}
.h12{height:25.800000pt;}
.h57{height:26.111250pt;}
.h25{height:28.368750pt;}
.h11{height:30.637500pt;}
.h24{height:31.706250pt;}
.h14{height:36.536291pt;}
.h10{height:39.885937pt;}
.h2{height:43.361250pt;}
.h1{height:50.588125pt;}
.h15{height:60.343750pt;}
.h0{height:1122.666667pt;}
.w4{width:3.840000pt;}
.w3{width:221.312000pt;}
.w2{width:347.824000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4a{left:1.920000pt;}
.x36{left:16.064000pt;}
.x98{left:79.200000pt;}
.x28{left:85.200000pt;}
.x7a{left:87.600000pt;}
.xab{left:88.560000pt;}
.x74{left:90.240000pt;}
.x23{left:92.480000pt;}
.x9f{left:93.600000pt;}
.xae{left:94.720000pt;}
.x9e{left:95.760676pt;}
.x24{left:97.283200pt;}
.x9d{left:99.520753pt;}
.x8{left:101.440000pt;}
.x77{left:103.840000pt;}
.x18{left:106.320000pt;}
.x4{left:107.926400pt;}
.x9a{left:108.880000pt;}
.x9b{left:111.040000pt;}
.x9c{left:112.320000pt;}
.xcf{left:114.080000pt;}
.x15{left:115.756961pt;}
.x2{left:118.640000pt;}
.x75{left:120.799600pt;}
.x29{left:123.680000pt;}
.x3{left:124.800320pt;}
.x76{left:126.242000pt;}
.x17{left:128.560000pt;}
.x39{left:129.921786pt;}
.x47{left:132.880000pt;}
.x99{left:135.120000pt;}
.x3e{left:136.638837pt;}
.x7{left:138.160000pt;}
.x14{left:139.119689pt;}
.xa3{left:140.080000pt;}
.xa4{left:141.520000pt;}
.x86{left:143.681760pt;}
.x85{left:144.800000pt;}
.x7d{left:146.640000pt;}
.x13{left:148.319239pt;}
.x3c{left:149.840000pt;}
.x27{left:151.920000pt;}
.x40{left:153.682718pt;}
.x12{left:155.036973pt;}
.x43{left:157.600000pt;}
.x41{left:159.520000pt;}
.x84{left:165.920000pt;}
.xa7{left:167.040000pt;}
.xa2{left:168.400000pt;}
.x11{left:170.079920pt;}
.xac{left:171.200000pt;}
.x6{left:173.920000pt;}
.xa8{left:175.440000pt;}
.xb1{left:178.480000pt;}
.x3a{left:180.883879pt;}
.x10{left:183.841229pt;}
.x38{left:184.880000pt;}
.x5{left:189.200960pt;}
.x7e{left:190.720000pt;}
.x80{left:192.000000pt;}
.x3f{left:193.840000pt;}
.xf{left:195.522593pt;}
.xe{left:205.601911pt;}
.x8f{left:207.200000pt;}
.x96{left:208.160000pt;}
.x8d{left:209.279903pt;}
.x46{left:211.042000pt;}
.x2a{left:212.800000pt;}
.xb{left:214.720000pt;}
.x3b{left:216.002887pt;}
.x92{left:217.200000pt;}
.x8b{left:219.040000pt;}
.x8c{left:220.320000pt;}
.x91{left:221.840000pt;}
.x35{left:222.901314pt;}
.x90{left:224.960000pt;}
.x3d{left:228.240000pt;}
.xd{left:229.762947pt;}
.x95{left:231.517600pt;}
.x8e{left:233.038808pt;}
.xc{left:244.002155pt;}
.x45{left:249.280000pt;}
.x25{left:252.480000pt;}
.xb0{left:254.480000pt;}
.xaa{left:256.160000pt;}
.xa6{left:257.600000pt;}
.xa1{left:258.960000pt;}
.x2b{left:260.800000pt;}
.xaf{left:261.840000pt;}
.x26{left:267.763200pt;}
.x44{left:270.240000pt;}
.x42{left:272.160000pt;}
.x16{left:277.840000pt;}
.x1e{left:278.960000pt;}
.x1b{left:280.960000pt;}
.x87{left:282.560000pt;}
.x88{left:284.560800pt;}
.x37{left:286.157314pt;}
.xa9{left:287.600000pt;}
.xa5{left:289.040000pt;}
.xad{left:290.400000pt;}
.x8a{left:292.080000pt;}
.x97{left:293.200000pt;}
.x7c{left:294.240000pt;}
.x1c{left:295.200000pt;}
.x7f{left:296.800000pt;}
.x94{left:298.000000pt;}
.x89{left:299.040000pt;}
.x83{left:300.160000pt;}
.x20{left:301.360000pt;}
.x93{left:303.280000pt;}
.x1d{left:305.440000pt;}
.x1f{left:309.520000pt;}
.x22{left:323.760000pt;}
.x21{left:327.840000pt;}
.xca{left:330.720000pt;}
.xc9{left:332.000000pt;}
.x82{left:333.681920pt;}
.xcb{left:340.240000pt;}
.x81{left:343.760000pt;}
.x7b{left:346.480000pt;}
.xa0{left:348.160000pt;}
.x48{left:417.920000pt;}
.x4d{left:420.240000pt;}
.xb5{left:421.600000pt;}
.x4c{left:422.560000pt;}
.xb3{left:424.958162pt;}
.xb4{left:426.315470pt;}
.x9{left:427.840000pt;}
.x4f{left:431.040000pt;}
.x2c{left:432.640000pt;}
.x2d{left:435.041600pt;}
.x78{left:436.003600pt;}
.x19{left:437.440000pt;}
.xa{left:441.680000pt;}
.x73{left:444.720000pt;}
.x50{left:448.076211pt;}
.xc5{left:449.440000pt;}
.x1a{left:451.920000pt;}
.x51{left:454.314716pt;}
.x79{left:456.720000pt;}
.x52{left:458.554772pt;}
.x53{left:460.876165pt;}
.x54{left:462.395898pt;}
.x55{left:463.596487pt;}
.xb2{left:469.760000pt;}
.x56{left:473.600132pt;}
.x57{left:476.320455pt;}
.xc8{left:480.798800pt;}
.xc7{left:483.198640pt;}
.x58{left:489.120409pt;}
.x59{left:492.961535pt;}
.xb6{left:494.000000pt;}
.x5a{left:499.200040pt;}
.x5b{left:501.920363pt;}
.x5c{left:504.241755pt;}
.x5d{left:511.920208pt;}
.x5e{left:515.841120pt;}
.x5f{left:516.961923pt;}
.x60{left:519.682246pt;}
.x61{left:522.402569pt;}
.x4b{left:524.320000pt;}
.x62{left:527.440485pt;}
.x63{left:531.281611pt;}
.x64{left:532.482200pt;}
.x72{left:534.080000pt;}
.x65{left:538.241989pt;}
.x4e{left:542.880000pt;}
.x66{left:544.883224pt;}
.x67{left:547.922691pt;}
.x68{left:552.964406pt;}
.x69{left:555.684729pt;}
.x6a{left:561.847247pt;}
.x6b{left:565.768159pt;}
.xbf{left:568.720000pt;}
.xc4{left:570.079040pt;}
.xbd{left:571.200500pt;}
.xc2{left:572.159636pt;}
.x6c{left:573.127468pt;}
.xbe{left:574.079840pt;}
.xb9{left:575.678240pt;}
.xc3{left:578.479726pt;}
.xbb{left:579.438920pt;}
.xbc{left:581.039540pt;}
.xb8{left:582.800000pt;}
.xba{left:584.158640pt;}
.x33{left:588.239588pt;}
.xb7{left:592.160000pt;}
.x2f{left:593.360000pt;}
.x34{left:598.478143pt;}
.x30{left:603.680949pt;}
.x6d{left:606.405829pt;}
.x6e{left:616.804604pt;}
.xc1{left:623.520000pt;}
.xce{left:626.480000pt;}
.xc6{left:632.400000pt;}
.x6f{left:634.646273pt;}
.x49{left:638.480000pt;}
.xc0{left:641.440000pt;}
.x70{left:644.560000pt;}
.xcd{left:656.400000pt;}
.x2e{left:665.280000pt;}
.xcc{left:666.240000pt;}
.x31{left:670.560000pt;}
.x32{left:680.638103pt;}
.x71{left:701.759040pt;}
.x1{left:749.520000pt;}
}




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