
    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_cced0a6000ca68f9cb635c69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0b85c6c1d015fac1564edd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_233c5f4057f6a9105da89cd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd56b76f4d5925b32b366260.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0dff68fb894576b45651ea68.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0e84acc7c7b65f48542441e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_752c3980d157da0c78a27bd9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_a313af038f9f5d3b63159f89.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_9a930e2ade07fe682056c530.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_586807140243027dd1fb9e7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2cb622ce2e8bb7a90d0ea657.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1b2ae6ccb1b0919ef982436d.woff2')format("woff");}.fff{font-family:fff;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f64555e51d76c4bd3bb7febe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9d4391f7e5abe6e8786f734e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_feb3cff4ef036aabbbb8d8e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f64555e51d76c4bd3bb7febe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b35b89acd0665b6e6f381734.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_20cc09e6a9d2c8b525f593ae.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5741943c3887680e7fa78514.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_170ca929fb1ce317b6213774.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d83726951ebb98d37f54ad3c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c2f2b75c6472ec4dcb7b1997.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7ae0c55e7f09235bb985a616.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8a7e747b077bf63cc46d8d0d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_471b15917f10d4527c179c52.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_0f78b869995e8a66eb1892f7.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_66ba07c328d85fa251d0789c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_bba0d025b7cfee7c2503d34e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_23eda63b02c393ecb6460230.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_aff287ba13ee0dd888f25459.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.003418;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.364000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:32.622000px;}
.lsc6{letter-spacing:-0.379080px;}
.ls89{letter-spacing:-0.351000px;}
.ls51{letter-spacing:-0.347490px;}
.ls23{letter-spacing:-0.333450px;}
.ls50{letter-spacing:-0.315414px;}
.ls69{letter-spacing:-0.279936px;}
.lsc7{letter-spacing:-0.268272px;}
.lsec{letter-spacing:-0.259308px;}
.ls85{letter-spacing:-0.253800px;}
.ls68{letter-spacing:-0.248832px;}
.ls46{letter-spacing:-0.220220px;}
.lsf3{letter-spacing:-0.206212px;}
.lsa8{letter-spacing:-0.202003px;}
.lsee{letter-spacing:-0.194428px;}
.lsf1{letter-spacing:-0.176753px;}
.ls4d{letter-spacing:-0.166653px;}
.ls8e{letter-spacing:-0.156312px;}
.lsc9{letter-spacing:-0.155831px;}
.ls2e{letter-spacing:-0.154208px;}
.lsd0{letter-spacing:-0.149338px;}
.ls91{letter-spacing:-0.144288px;}
.ls2c{letter-spacing:-0.142785px;}
.ls8f{letter-spacing:-0.138276px;}
.lsce{letter-spacing:-0.129859px;}
.ls82{letter-spacing:-0.126252px;}
.lscd{letter-spacing:-0.123366px;}
.lsa6{letter-spacing:-0.121202px;}
.ls8d{letter-spacing:-0.120240px;}
.ls2b{letter-spacing:-0.119939px;}
.ls4b{letter-spacing:-0.119038px;}
.lscb{letter-spacing:-0.116873px;}
.ls26{letter-spacing:-0.114228px;}
.ls6a{letter-spacing:-0.109659px;}
.ls28{letter-spacing:-0.108517px;}
.ls8a{letter-spacing:-0.108216px;}
.ls83{letter-spacing:-0.096192px;}
.lsa0{letter-spacing:-0.092344px;}
.lsad{letter-spacing:-0.086573px;}
.ls90{letter-spacing:-0.084168px;}
.ls8b{letter-spacing:-0.078156px;}
.lsa3{letter-spacing:-0.075030px;}
.lsaa{letter-spacing:-0.069258px;}
.ls9e{letter-spacing:-0.067392px;}
.ls92{letter-spacing:-0.066132px;}
.ls49{letter-spacing:-0.065471px;}
.lsf4{letter-spacing:-0.064809px;}
.lsa5{letter-spacing:-0.063487px;}
.lsa9{letter-spacing:-0.057715px;}
.ls25{letter-spacing:-0.057114px;}
.ls2f{letter-spacing:-0.051403px;}
.ls47{letter-spacing:-0.047615px;}
.lsc4{letter-spacing:-0.046656px;}
.lscf{letter-spacing:-0.045451px;}
.lse9{letter-spacing:-0.037044px;}
.ls9f{letter-spacing:-0.036288px;}
.ls4e{letter-spacing:-0.035711px;}
.lsef{letter-spacing:-0.035351px;}
.ls2d{letter-spacing:-0.034268px;}
.ls66{letter-spacing:-0.031104px;}
.ls4c{letter-spacing:-0.029759px;}
.lscc{letter-spacing:-0.025972px;}
.ls81{letter-spacing:-0.024048px;}
.ls4a{letter-spacing:-0.023808px;}
.lsf2{letter-spacing:-0.023567px;}
.lsa4{letter-spacing:-0.023086px;}
.ls27{letter-spacing:-0.022846px;}
.ls84{letter-spacing:-0.021600px;}
.ls9d{letter-spacing:-0.020736px;}
.lsed{letter-spacing:-0.017675px;}
.lsc5{letter-spacing:-0.017496px;}
.ls29{letter-spacing:-0.017134px;}
.ls88{letter-spacing:-0.016200px;}
.ls52{letter-spacing:-0.016038px;}
.ls24{letter-spacing:-0.015390px;}
.ls8c{letter-spacing:-0.012024px;}
.lsc2{letter-spacing:-0.011664px;}
.lsa7{letter-spacing:-0.011543px;}
.ls2a{letter-spacing:-0.011423px;}
.ls87{letter-spacing:-0.010800px;}
.ls67{letter-spacing:-0.010368px;}
.lsca{letter-spacing:-0.006493px;}
.ls48{letter-spacing:-0.005952px;}
.lsf0{letter-spacing:-0.005892px;}
.lsc3{letter-spacing:-0.005832px;}
.lsa1{letter-spacing:-0.005772px;}
.ls30{letter-spacing:-0.005711px;}
.ls86{letter-spacing:-0.005400px;}
.lsea{letter-spacing:-0.005292px;}
.lsa{letter-spacing:0.000000px;}
.lsfa{letter-spacing:0.000088px;}
.ls10d{letter-spacing:0.000292px;}
.ls106{letter-spacing:0.000676px;}
.lsfe{letter-spacing:0.000800px;}
.lsfd{letter-spacing:0.001036px;}
.ls103{letter-spacing:0.001155px;}
.ls10b{letter-spacing:0.001303px;}
.ls104{letter-spacing:0.001391px;}
.ls44{letter-spacing:0.001555px;}
.ls13{letter-spacing:0.001608px;}
.ls65{letter-spacing:0.002400px;}
.ls102{letter-spacing:0.002544px;}
.ls2{letter-spacing:0.002725px;}
.ls108{letter-spacing:0.002841px;}
.ls10a{letter-spacing:0.003431px;}
.ls7{letter-spacing:0.003488px;}
.ls105{letter-spacing:0.004026px;}
.lsfc{letter-spacing:0.004800px;}
.ls57{letter-spacing:0.005184px;}
.lsd8{letter-spacing:0.005292px;}
.ls1e{letter-spacing:0.005711px;}
.lsb5{letter-spacing:0.005832px;}
.lse5{letter-spacing:0.005892px;}
.ls37{letter-spacing:0.005952px;}
.ls7a{letter-spacing:0.006012px;}
.ls1f{letter-spacing:0.006840px;}
.ls5e{letter-spacing:0.010368px;}
.ls3f{letter-spacing:0.010692px;}
.ls77{letter-spacing:0.010800px;}
.lsc8{letter-spacing:0.011664px;}
.lse1{letter-spacing:0.011784px;}
.ls14{letter-spacing:0.013646px;}
.ls53{letter-spacing:0.013789px;}
.lsd1{letter-spacing:0.014077px;}
.ls33{letter-spacing:0.014220px;}
.ls6b{letter-spacing:0.014364px;}
.lsae{letter-spacing:0.015513px;}
.ls56{letter-spacing:0.015552px;}
.lsd4{letter-spacing:0.015876px;}
.ls3b{letter-spacing:0.016038px;}
.ls63{letter-spacing:0.017315px;}
.lsb1{letter-spacing:0.017496px;}
.lse4{letter-spacing:0.017675px;}
.ls6e{letter-spacing:0.018036px;}
.ls5a{letter-spacing:0.020736px;}
.lsde{letter-spacing:0.021168px;}
.ls73{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.022846px;}
.lsb4{letter-spacing:0.023328px;}
.lse7{letter-spacing:0.023567px;}
.ls70{letter-spacing:0.024048px;}
.ls96{letter-spacing:0.025920px;}
.lsbe{letter-spacing:0.025972px;}
.lsda{letter-spacing:0.026460px;}
.ls9b{letter-spacing:0.028858px;}
.lsb8{letter-spacing:0.029160px;}
.lse0{letter-spacing:0.029459px;}
.ls39{letter-spacing:0.029759px;}
.ls95{letter-spacing:0.031104px;}
.lsd5{letter-spacing:0.031752px;}
.ls74{letter-spacing:0.032400px;}
.ls99{letter-spacing:0.034629px;}
.lse6{letter-spacing:0.035351px;}
.ls17{letter-spacing:0.035910px;}
.ls7c{letter-spacing:0.036072px;}
.ls93{letter-spacing:0.036288px;}
.lsd9{letter-spacing:0.037044px;}
.ls3c{letter-spacing:0.037422px;}
.ls72{letter-spacing:0.037800px;}
.ls1a{letter-spacing:0.039980px;}
.ls97{letter-spacing:0.040401px;}
.ls18{letter-spacing:0.041040px;}
.lse3{letter-spacing:0.041242px;}
.ls58{letter-spacing:0.041472px;}
.ls38{letter-spacing:0.041663px;}
.ls7b{letter-spacing:0.042084px;}
.lsd6{letter-spacing:0.042336px;}
.ls40{letter-spacing:0.042768px;}
.lsbb{letter-spacing:0.045451px;}
.ls1d{letter-spacing:0.045691px;}
.ls61{letter-spacing:0.046172px;}
.ls5d{letter-spacing:0.046656px;}
.ls6f{letter-spacing:0.048096px;}
.ls42{letter-spacing:0.048114px;}
.ls19{letter-spacing:0.051300px;}
.ls1c{letter-spacing:0.051403px;}
.ls9a{letter-spacing:0.051944px;}
.lsdf{letter-spacing:0.053026px;}
.ls41{letter-spacing:0.053460px;}
.ls76{letter-spacing:0.054000px;}
.ls98{letter-spacing:0.057715px;}
.lsb6{letter-spacing:0.058320px;}
.lsbc{letter-spacing:0.058437px;}
.lse2{letter-spacing:0.058918px;}
.ls36{letter-spacing:0.059519px;}
.ls71{letter-spacing:0.060120px;}
.lsdb{letter-spacing:0.063504px;}
.ls78{letter-spacing:0.064800px;}
.lsbd{letter-spacing:0.064930px;}
.ls7d{letter-spacing:0.066132px;}
.ls94{letter-spacing:0.067392px;}
.lsdd{letter-spacing:0.068796px;}
.ls62{letter-spacing:0.069258px;}
.ls3e{letter-spacing:0.069498px;}
.lsb3{letter-spacing:0.069984px;}
.lsbf{letter-spacing:0.071423px;}
.lsab{letter-spacing:0.075030px;}
.lse8{letter-spacing:0.076593px;}
.ls60{letter-spacing:0.077760px;}
.lsa2{letter-spacing:0.080801px;}
.lsb9{letter-spacing:0.081648px;}
.ls3a{letter-spacing:0.095230px;}
.lsba{letter-spacing:0.097394px;}
.ls79{letter-spacing:0.108216px;}
.ls5f{letter-spacing:0.114048px;}
.ls59{letter-spacing:0.119232px;}
.lsd7{letter-spacing:0.121716px;}
.ls3d{letter-spacing:0.122958px;}
.ls75{letter-spacing:0.124200px;}
.lsb2{letter-spacing:0.134136px;}
.ls5b{letter-spacing:0.139968px;}
.lsdc{letter-spacing:0.142884px;}
.ls20{letter-spacing:0.147060px;}
.lsb7{letter-spacing:0.157464px;}
.ls16{letter-spacing:0.168298px;}
.ls55{letter-spacing:0.170070px;}
.ls35{letter-spacing:0.175384px;}
.ls5c{letter-spacing:0.176256px;}
.ls6d{letter-spacing:0.177156px;}
.lsd3{letter-spacing:0.178305px;}
.ls15{letter-spacing:0.181944px;}
.ls54{letter-spacing:0.183859px;}
.lsd2{letter-spacing:0.187690px;}
.ls34{letter-spacing:0.189605px;}
.ls6c{letter-spacing:0.191520px;}
.lsb0{letter-spacing:0.196500px;}
.lsaf{letter-spacing:0.206842px;}
.lseb{letter-spacing:0.375732px;}
.lsb{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.998354px;}
.lsc{letter-spacing:3.553200px;}
.ls31{letter-spacing:3.559200px;}
.lsac{letter-spacing:5.967752px;}
.ls5{letter-spacing:10.461300px;}
.ls4f{letter-spacing:11.504984px;}
.ls9{letter-spacing:11.954850px;}
.lsc1{letter-spacing:12.550892px;}
.ls7e{letter-spacing:13.237402px;}
.lsf8{letter-spacing:13.293257px;}
.ls43{letter-spacing:13.403405px;}
.ls9c{letter-spacing:13.444090px;}
.ls45{letter-spacing:13.444800px;}
.lsf6{letter-spacing:13.448400px;}
.ls21{letter-spacing:13.450090px;}
.ls22{letter-spacing:13.450800px;}
.lsfb{letter-spacing:13.454400px;}
.ls107{letter-spacing:13.535202px;}
.ls10e{letter-spacing:13.535294px;}
.ls7f{letter-spacing:13.538241px;}
.ls80{letter-spacing:13.541888px;}
.ls101{letter-spacing:13.583700px;}
.lsf7{letter-spacing:13.599380px;}
.ls10c{letter-spacing:13.614359px;}
.lsf9{letter-spacing:13.651112px;}
.ls32{letter-spacing:14.943900px;}
.ls3{letter-spacing:14.948725px;}
.lsc0{letter-spacing:15.617501px;}
.lse{letter-spacing:15.645483px;}
.ls11{letter-spacing:15.663483px;}
.ls64{letter-spacing:16.246913px;}
.ls109{letter-spacing:17.062165px;}
.ls100{letter-spacing:17.338635px;}
.lsf{letter-spacing:17.911200px;}
.ls10{letter-spacing:17.922089px;}
.lsd{letter-spacing:17.929200px;}
.lsff{letter-spacing:18.838635px;}
.ls12{letter-spacing:20.994178px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.lsf5{letter-spacing:832.323043px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-91.154711px;}
.ws52{word-spacing:-14.943900px;}
.ws142{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.355754px;}
.wsda{word-spacing:-13.500000px;}
.wsbb{word-spacing:-13.449600px;}
.ws91{word-spacing:-13.365000px;}
.ws177{word-spacing:-13.230000px;}
.ws140{word-spacing:-13.134442px;}
.wsb8{word-spacing:-12.960000px;}
.ws13f{word-spacing:-12.943113px;}
.ws141{word-spacing:-12.927600px;}
.ws62{word-spacing:-12.825000px;}
.wsd8{word-spacing:-12.161520px;}
.ws8f{word-spacing:-12.039905px;}
.wsd7{word-spacing:-11.984364px;}
.wsd9{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws175{word-spacing:-11.918290px;}
.ws8e{word-spacing:-11.864520px;}
.ws90{word-spacing:-11.850300px;}
.ws174{word-spacing:-11.744677px;}
.ws176{word-spacing:-11.730600px;}
.wsb6{word-spacing:-11.675059px;}
.ws60{word-spacing:-11.553444px;}
.wsb5{word-spacing:-11.504989px;}
.wsb7{word-spacing:-11.491200px;}
.ws5f{word-spacing:-11.385146px;}
.ws61{word-spacing:-11.371500px;}
.ws8{word-spacing:-11.357400px;}
.wse{word-spacing:-10.460700px;}
.ws4a{word-spacing:-3.347434px;}
.ws147{word-spacing:-3.287658px;}
.ws146{word-spacing:-2.450800px;}
.ws17d{word-spacing:-2.271473px;}
.ws1e7{word-spacing:-2.259533px;}
.ws54{word-spacing:-2.092146px;}
.ws48{word-spacing:-1.912819px;}
.wsa{word-spacing:-1.908367px;}
.ws1f1{word-spacing:-1.721549px;}
.ws1c1{word-spacing:-1.673717px;}
.ws148{word-spacing:-1.613941px;}
.ws1b7{word-spacing:-1.494390px;}
.ws150{word-spacing:-1.423008px;}
.ws1c0{word-spacing:-1.374839px;}
.ws9{word-spacing:-1.322630px;}
.ws18e{word-spacing:-1.296540px;}
.ws18d{word-spacing:-1.291248px;}
.ws18f{word-spacing:-1.248912px;}
.ws111{word-spacing:-1.183565px;}
.ws1b5{word-spacing:-1.135736px;}
.ws41{word-spacing:-1.075961px;}
.ws127{word-spacing:-0.986930px;}
.ws24{word-spacing:-0.968371px;}
.ws14f{word-spacing:-0.956448px;}
.ws1f{word-spacing:-0.914573px;}
.ws1c5{word-spacing:-0.860774px;}
.ws145{word-spacing:-0.836858px;}
.ws166{word-spacing:-0.733704px;}
.ws115{word-spacing:-0.717307px;}
.ws167{word-spacing:-0.675268px;}
.wsff{word-spacing:-0.661320px;}
.ws116{word-spacing:-0.657532px;}
.wsac{word-spacing:-0.598752px;}
.ws55{word-spacing:-0.597756px;}
.ws14e{word-spacing:-0.594864px;}
.ws70{word-spacing:-0.593986px;}
.ws178{word-spacing:-0.591782px;}
.wscc{word-spacing:-0.590976px;}
.ws139{word-spacing:-0.577152px;}
.wsad{word-spacing:-0.539946px;}
.wscb{word-spacing:-0.523584px;}
.ws56{word-spacing:-0.418429px;}
.ws36{word-spacing:-0.358654px;}
.ws173{word-spacing:-0.357113px;}
.ws163{word-spacing:-0.331141px;}
.ws13c{word-spacing:-0.328977px;}
.wse8{word-spacing:-0.324648px;}
.ws1c{word-spacing:-0.322790px;}
.ws14c{word-spacing:-0.299920px;}
.ws37{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.277704px;}
.ws93{word-spacing:-0.274927px;}
.ws181{word-spacing:-0.272150px;}
.ws21{word-spacing:-0.268992px;}
.wsbe{word-spacing:-0.266596px;}
.ws162{word-spacing:-0.266211px;}
.wscd{word-spacing:-0.264384px;}
.ws67{word-spacing:-0.263819px;}
.ws80{word-spacing:-0.251302px;}
.ws8a{word-spacing:-0.245590px;}
.ws138{word-spacing:-0.242404px;}
.ws7f{word-spacing:-0.239879px;}
.ws47{word-spacing:-0.239102px;}
.ws9b{word-spacing:-0.238075px;}
.wsce{word-spacing:-0.233280px;}
.ws76{word-spacing:-0.228456px;}
.wsdc{word-spacing:-0.215194px;}
.ws9a{word-spacing:-0.196412px;}
.ws35{word-spacing:-0.179327px;}
.ws13e{word-spacing:-0.167374px;}
.wsdb{word-spacing:-0.161395px;}
.ws77{word-spacing:-0.142785px;}
.ws2d{word-spacing:-0.119551px;}
.wsb9{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws8c{word-spacing:-0.047338px;}
.wsf8{word-spacing:-0.012024px;}
.ws1ce{word-spacing:-0.009312px;}
.ws1e5{word-spacing:-0.007258px;}
.ws66{word-spacing:-0.005779px;}
.ws7{word-spacing:-0.005641px;}
.ws1e9{word-spacing:-0.005453px;}
.ws1cc{word-spacing:-0.004224px;}
.ws1d3{word-spacing:-0.004214px;}
.ws5{word-spacing:-0.003799px;}
.ws2{word-spacing:-0.003449px;}
.ws1cb{word-spacing:-0.003312px;}
.ws1da{word-spacing:-0.002467px;}
.ws1c7{word-spacing:-0.002304px;}
.ws1cf{word-spacing:-0.001594px;}
.ws2f{word-spacing:-0.000410px;}
.ws1{word-spacing:0.000000px;}
.ws1f2{word-spacing:0.000288px;}
.wsd{word-spacing:0.001648px;}
.ws15c{word-spacing:0.006493px;}
.ws129{word-spacing:0.011543px;}
.ws1af{word-spacing:0.017675px;}
.ws19f{word-spacing:0.041242px;}
.ws1a7{word-spacing:0.053026px;}
.ws1d{word-spacing:0.053798px;}
.wsfa{word-spacing:0.054108px;}
.ws59{word-spacing:0.059776px;}
.wsdd{word-spacing:0.082701px;}
.ws82{word-spacing:0.085671px;}
.wsf9{word-spacing:0.090180px;}
.ws128{word-spacing:0.098116px;}
.ws99{word-spacing:0.101182px;}
.ws23{word-spacing:0.107597px;}
.ws78{word-spacing:0.108517px;}
.ws19e{word-spacing:0.111943px;}
.ws81{word-spacing:0.114228px;}
.ws15b{word-spacing:0.116640px;}
.wsf6{word-spacing:0.118800px;}
.ws34{word-spacing:0.119551px;}
.ws6d{word-spacing:0.123120px;}
.wsa4{word-spacing:0.124989px;}
.wsb2{word-spacing:0.133650px;}
.ws6e{word-spacing:0.138510px;}
.ws121{word-spacing:0.139968px;}
.ws19{word-spacing:0.143462px;}
.wsb3{word-spacing:0.144342px;}
.ws120{word-spacing:0.145152px;}
.ws191{word-spacing:0.148176px;}
.ws123{word-spacing:0.150336px;}
.ws15a{word-spacing:0.151632px;}
.ws190{word-spacing:0.158760px;}
.ws110{word-spacing:0.161395px;}
.ws13b{word-spacing:0.161603px;}
.wsf7{word-spacing:0.162000px;}
.ws10e{word-spacing:0.162324px;}
.ws12a{word-spacing:0.167374px;}
.ws159{word-spacing:0.169128px;}
.ws4d{word-spacing:0.179327px;}
.ws10a{word-spacing:0.180360px;}
.wsb1{word-spacing:0.181764px;}
.ws12e{word-spacing:0.184689px;}
.ws6f{word-spacing:0.189810px;}
.wsb4{word-spacing:0.197802px;}
.wsf{word-spacing:0.209214px;}
.ws104{word-spacing:0.210420px;}
.ws122{word-spacing:0.212544px;}
.ws12f{word-spacing:0.213546px;}
.wsa3{word-spacing:0.214268px;}
.ws64{word-spacing:0.215194px;}
.ws158{word-spacing:0.215784px;}
.ws16a{word-spacing:0.233747px;}
.ws109{word-spacing:0.234468px;}
.ws46{word-spacing:0.239102px;}
.ws1a{word-spacing:0.268992px;}
.ws11{word-spacing:0.292900px;}
.ws3a{word-spacing:0.298878px;}
.ws1b{word-spacing:0.322790px;}
.ws10f{word-spacing:0.358654px;}
.ws57{word-spacing:0.418429px;}
.ws9f{word-spacing:0.422583px;}
.ws192{word-spacing:0.439236px;}
.wsa0{word-spacing:0.452343px;}
.ws2c{word-spacing:0.478205px;}
.ws63{word-spacing:0.484186px;}
.ws51{word-spacing:0.537980px;}
.ws92{word-spacing:0.591782px;}
.ws113{word-spacing:0.597756px;}
.ws38{word-spacing:0.657532px;}
.ws65{word-spacing:0.699379px;}
.ws29{word-spacing:0.717307px;}
.ws199{word-spacing:0.742362px;}
.ws10d{word-spacing:0.751500px;}
.ws9c{word-spacing:0.767793px;}
.ws4e{word-spacing:0.777083px;}
.ws10c{word-spacing:0.817632px;}
.wsec{word-spacing:0.874800px;}
.wseb{word-spacing:0.885600px;}
.ws1b6{word-spacing:0.896634px;}
.wsea{word-spacing:0.928800px;}
.ws14a{word-spacing:0.956410px;}
.ws40{word-spacing:1.016185px;}
.ws1f0{word-spacing:1.022170px;}
.wscf{word-spacing:1.085046px;}
.ws19d{word-spacing:1.095867px;}
.ws17a{word-spacing:1.129766px;}
.ws85{word-spacing:1.130857px;}
.ws180{word-spacing:1.135736px;}
.ws1a2{word-spacing:1.137110px;}
.ws19a{word-spacing:1.172460px;}
.ws17b{word-spacing:1.183565px;}
.ws5e{word-spacing:1.195512px;}
.ws1ed{word-spacing:1.237363px;}
.ws3f{word-spacing:1.315063px;}
.ws1a3{word-spacing:1.331538px;}
.ws1ef{word-spacing:1.344960px;}
.ws117{word-spacing:1.374839px;}
.ws1b8{word-spacing:1.434614px;}
.ws12d{word-spacing:1.442880px;}
.ws1e{word-spacing:1.452557px;}
.ws1dd{word-spacing:1.506355px;}
.ws97{word-spacing:1.517729px;}
.ws18b{word-spacing:1.555848px;}
.ws1ec{word-spacing:1.560154px;}
.ws18c{word-spacing:1.566432px;}
.ws98{word-spacing:1.571296px;}
.wse9{word-spacing:1.587600px;}
.ws42{word-spacing:1.613941px;}
.ws1e6{word-spacing:1.613952px;}
.ws179{word-spacing:1.667750px;}
.ws1ba{word-spacing:1.673717px;}
.ws151{word-spacing:1.708776px;}
.ws152{word-spacing:1.732104px;}
.ws44{word-spacing:1.733492px;}
.ws137{word-spacing:1.760314px;}
.ws22{word-spacing:1.775347px;}
.ws49{word-spacing:1.853044px;}
.ws106{word-spacing:1.875744px;}
.ws8b{word-spacing:1.912819px;}
.ws31{word-spacing:1.972595px;}
.ws107{word-spacing:2.008008px;}
.ws10{word-spacing:2.008454px;}
.ws73{word-spacing:2.101795px;}
.ws114{word-spacing:2.151922px;}
.ws144{word-spacing:2.151936px;}
.ws135{word-spacing:2.164320px;}
.ws6a{word-spacing:2.190510px;}
.ws6b{word-spacing:2.195640px;}
.ws71{word-spacing:2.198889px;}
.ws11a{word-spacing:2.213568px;}
.ws136{word-spacing:2.222035px;}
.ws119{word-spacing:2.223936px;}
.ws72{word-spacing:2.256003px;}
.ws2a{word-spacing:2.271473px;}
.wsee{word-spacing:2.295000px;}
.wsef{word-spacing:2.338200px;}
.wsfe{word-spacing:2.374740px;}
.ws1b4{word-spacing:2.391024px;}
.ws27{word-spacing:2.450800px;}
.ws89{word-spacing:2.461613px;}
.wsc{word-spacing:2.508400px;}
.ws53{word-spacing:2.510575px;}
.ws1c9{word-spacing:2.528525px;}
.ws13d{word-spacing:2.533697px;}
.ws2b{word-spacing:2.570351px;}
.wse3{word-spacing:2.597184px;}
.wsed{word-spacing:2.602800px;}
.wsfd{word-spacing:2.627244px;}
.wsbc{word-spacing:2.630126px;}
.wse1{word-spacing:2.639268px;}
.wsf3{word-spacing:2.640600px;}
.wsaa{word-spacing:2.640924px;}
.ws187{word-spacing:2.651292px;}
.wsf4{word-spacing:2.683800px;}
.wsd5{word-spacing:2.689902px;}
.wsf2{word-spacing:2.694600px;}
.wsf5{word-spacing:2.721600px;}
.wse2{word-spacing:2.741472px;}
.wsba{word-spacing:2.797517px;}
.ws124{word-spacing:2.816502px;}
.wsd1{word-spacing:2.839588px;}
.ws1ee{word-spacing:2.851315px;}
.ws194{word-spacing:2.863395px;}
.ws1bb{word-spacing:2.869229px;}
.ws69{word-spacing:2.877930px;}
.ws1aa{word-spacing:2.892854px;}
.ws118{word-spacing:2.908224px;}
.ws1c2{word-spacing:2.929004px;}
.ws193{word-spacing:2.934096px;}
.ws185{word-spacing:2.963520px;}
.wsd2{word-spacing:2.966561px;}
.wsab{word-spacing:2.993760px;}
.ws186{word-spacing:3.042900px;}
.ws1d6{word-spacing:3.066509px;}
.wse5{word-spacing:3.072132px;}
.wse4{word-spacing:3.102192px;}
.ws3d{word-spacing:3.108331px;}
.ws1d2{word-spacing:3.120307px;}
.ws7c{word-spacing:3.124136px;}
.wsd0{word-spacing:3.133935px;}
.ws15f{word-spacing:3.142593px;}
.ws3e{word-spacing:3.168107px;}
.ws25{word-spacing:3.174106px;}
.ws1eb{word-spacing:3.221386px;}
.ws6c{word-spacing:3.221640px;}
.ws1d8{word-spacing:3.222038px;}
.ws1e2{word-spacing:3.223008px;}
.ws1ca{word-spacing:3.224419px;}
.ws1e4{word-spacing:3.225475px;}
.ws1dc{word-spacing:3.225571px;}
.ws1e3{word-spacing:3.225725px;}
.ws5d{word-spacing:3.227882px;}
.ws1c8{word-spacing:3.227904px;}
.ws1cd{word-spacing:3.229507px;}
.ws1de{word-spacing:3.281702px;}
.ws45{word-spacing:3.347434px;}
.wsa9{word-spacing:3.378672px;}
.ws17f{word-spacing:3.466985px;}
.ws39{word-spacing:3.526760px;}
.ws169{word-spacing:3.538663px;}
.ws17c{word-spacing:3.550694px;}
.ws170{word-spacing:3.551649px;}
.ws26{word-spacing:3.586536px;}
.ws197{word-spacing:3.611649px;}
.ws11d{word-spacing:3.618432px;}
.ws11b{word-spacing:3.633984px;}
.ws11c{word-spacing:3.654720px;}
.ws1e8{word-spacing:3.658291px;}
.ws11f{word-spacing:3.701376px;}
.ws28{word-spacing:3.706087px;}
.ws168{word-spacing:3.726959px;}
.wsaf{word-spacing:3.731508px;}
.ws4c{word-spacing:3.765863px;}
.ws79{word-spacing:3.815215px;}
.ws5c{word-spacing:3.825638px;}
.ws1ea{word-spacing:3.873485px;}
.ws4f{word-spacing:3.885414px;}
.wsc4{word-spacing:3.939840px;}
.ws1bf{word-spacing:3.945190px;}
.ws1d1{word-spacing:3.981082px;}
.wsa7{word-spacing:3.987760px;}
.wsd6{word-spacing:4.004965px;}
.ws198{word-spacing:4.012289px;}
.wsb0{word-spacing:4.052268px;}
.wsae{word-spacing:4.062960px;}
.ws14b{word-spacing:4.064741px;}
.ws149{word-spacing:4.124516px;}
.ws1b3{word-spacing:4.184292px;}
.ws1e1{word-spacing:4.196275px;}
.ws1d4{word-spacing:4.250074px;}
.ws11e{word-spacing:4.261248px;}
.ws1c6{word-spacing:4.303872px;}
.wsc6{word-spacing:4.307904px;}
.wsc5{word-spacing:4.313088px;}
.ws108{word-spacing:4.376736px;}
.ws1b1{word-spacing:4.483170px;}
.wsf0{word-spacing:4.514400px;}
.wsf1{word-spacing:4.519800px;}
.ws58{word-spacing:4.602721px;}
.ws50{word-spacing:4.662497px;}
.ws16c{word-spacing:4.778819px;}
.ws7a{word-spacing:4.837556px;}
.ws1d0{word-spacing:4.841856px;}
.ws10b{word-spacing:4.845672px;}
.ws74{word-spacing:4.860401px;}
.ws16b{word-spacing:4.889199px;}
.ws7b{word-spacing:4.894670px;}
.ws1bd{word-spacing:4.901599px;}
.ws1b9{word-spacing:4.961375px;}
.ws1a0{word-spacing:5.037455px;}
.ws184{word-spacing:5.090904px;}
.ws16f{word-spacing:5.187875px;}
.ws126{word-spacing:5.217454px;}
.ws1e0{word-spacing:5.272243px;}
.ws1a1{word-spacing:5.343826px;}
.wsc3{word-spacing:5.360256px;}
.wsc1{word-spacing:5.365440px;}
.ws125{word-spacing:5.367514px;}
.ws1c3{word-spacing:5.379804px;}
.ws1c4{word-spacing:5.379840px;}
.wsc2{word-spacing:5.396544px;}
.wse7{word-spacing:5.476932px;}
.ws165{word-spacing:5.506030px;}
.ws15e{word-spacing:5.557974px;}
.ws161{word-spacing:5.577453px;}
.ws4b{word-spacing:5.618906px;}
.ws160{word-spacing:5.668354px;}
.ws1bc{word-spacing:5.678682px;}
.ws15d{word-spacing:5.707312px;}
.ws1ad{word-spacing:5.709115px;}
.ws183{word-spacing:5.810616px;}
.ws189{word-spacing:5.821200px;}
.ws188{word-spacing:5.826492px;}
.ws18a{word-spacing:5.831784px;}
.ws1b2{word-spacing:5.858009px;}
.wsd3{word-spacing:5.917784px;}
.ws1d9{word-spacing:6.025421px;}
.ws5a{word-spacing:6.037336px;}
.wsc0{word-spacing:6.039360px;}
.ws17{word-spacing:6.067206px;}
.ws1db{word-spacing:6.079219px;}
.ws5b{word-spacing:6.097111px;}
.ws18{word-spacing:6.150892px;}
.ws86{word-spacing:6.202580px;}
.ws1df{word-spacing:6.402010px;}
.ws154{word-spacing:6.415200px;}
.ws155{word-spacing:6.438528px;}
.ws153{word-spacing:6.467688px;}
.ws134{word-spacing:6.608390px;}
.ws13a{word-spacing:6.631476px;}
.ws157{word-spacing:6.689304px;}
.ws156{word-spacing:6.800112px;}
.ws43{word-spacing:6.814418px;}
.ws1be{word-spacing:6.874194px;}
.ws75{word-spacing:6.882237px;}
.ws112{word-spacing:6.933970px;}
.wsbd{word-spacing:6.993745px;}
.ws3c{word-spacing:7.113296px;}
.ws3b{word-spacing:7.173072px;}
.ws9d{word-spacing:7.231534px;}
.wsd4{word-spacing:7.232848px;}
.ws83{word-spacing:7.236344px;}
.wsa6{word-spacing:7.261294px;}
.ws84{word-spacing:7.310592px;}
.ws9e{word-spacing:7.344620px;}
.ws8d{word-spacing:7.352399px;}
.wsa5{word-spacing:7.392235px;}
.wsa8{word-spacing:7.552936px;}
.ws100{word-spacing:7.773516px;}
.ws1a5{word-spacing:7.800690px;}
.ws101{word-spacing:7.815600px;}
.wsde{word-spacing:7.890379px;}
.ws32{word-spacing:8.129482px;}
.ws1a4{word-spacing:8.207222px;}
.ws2e{word-spacing:8.308808px;}
.ws196{word-spacing:8.407542px;}
.ws1b0{word-spacing:8.488135px;}
.ws1a6{word-spacing:8.531268px;}
.ws195{word-spacing:8.537160px;}
.ws15{word-spacing:8.661460px;}
.ws164{word-spacing:8.661609px;}
.ws12b{word-spacing:9.101687px;}
.ws12c{word-spacing:9.142088px;}
.ws96{word-spacing:9.231366px;}
.ws16e{word-spacing:9.414792px;}
.ws16d{word-spacing:9.486215px;}
.ws88{word-spacing:10.063487px;}
.wse6{word-spacing:10.130220px;}
.ws103{word-spacing:10.154268px;}
.ws87{word-spacing:10.166292px;}
.ws143{word-spacing:10.167898px;}
.ws131{word-spacing:10.180961px;}
.ws132{word-spacing:10.192504px;}
.ws102{word-spacing:10.202364px;}
.ws1ac{word-spacing:10.310580px;}
.ws133{word-spacing:10.319478px;}
.ws1ab{word-spacing:10.393065px;}
.ws68{word-spacing:11.039452px;}
.wsbf{word-spacing:11.155657px;}
.ws182{word-spacing:11.383374px;}
.ws94{word-spacing:11.504271px;}
.ws172{word-spacing:11.512018px;}
.ws171{word-spacing:11.531497px;}
.wsc8{word-spacing:11.565504px;}
.wsca{word-spacing:11.570688px;}
.wsc7{word-spacing:11.586240px;}
.wsc9{word-spacing:11.596608px;}
.wse0{word-spacing:11.620476px;}
.ws17e{word-spacing:11.656242px;}
.wsfc{word-spacing:11.699352px;}
.wsfb{word-spacing:11.729412px;}
.ws95{word-spacing:11.802578px;}
.ws105{word-spacing:12.090132px;}
.ws19c{word-spacing:12.455181px;}
.ws19b{word-spacing:12.472856px;}
.ws14d{word-spacing:12.544943px;}
.ws1d7{word-spacing:12.911616px;}
.ws1a8{word-spacing:14.234492px;}
.ws1a9{word-spacing:14.417137px;}
.ws130{word-spacing:14.625032px;}
.wsb{word-spacing:15.483541px;}
.ws12{word-spacing:16.142252px;}
.ws13{word-spacing:16.151321px;}
.ws1d5{word-spacing:16.462310px;}
.ws7d{word-spacing:16.631597px;}
.ws7e{word-spacing:16.654442px;}
.ws14{word-spacing:17.699504px;}
.ws1ae{word-spacing:17.745981px;}
.wsa1{word-spacing:21.123222px;}
.wsa2{word-spacing:21.135126px;}
.ws16{word-spacing:27.448877px;}
.ws33{word-spacing:28.512961px;}
.ws6{word-spacing:40.042186px;}
._1{margin-left:-7.735664px;}
._2{margin-left:-6.635447px;}
._9{margin-left:-5.397721px;}
._7{margin-left:-4.100594px;}
._8{margin-left:-3.096367px;}
._0{margin-left:-1.936742px;}
._6{width:1.091170px;}
._4{width:3.002528px;}
._20{width:8.946734px;}
._1b{width:11.383398px;}
._a{width:12.971268px;}
._c{width:15.386342px;}
._e{width:16.731302px;}
._d{width:17.753472px;}
._16{width:18.913013px;}
._13{width:20.027789px;}
._17{width:22.081120px;}
._15{width:23.629279px;}
._12{width:24.866650px;}
._f{width:25.882835px;}
._1e{width:27.078347px;}
._18{width:28.333634px;}
._3{width:29.890825px;}
._19{width:31.167011px;}
._b{width:32.637384px;}
._25{width:33.773214px;}
._24{width:35.686033px;}
._14{width:40.527857px;}
._27{width:61.868160px;}
._5{width:69.346552px;}
._26{width:88.767360px;}
._10{width:690.515653px;}
._1a{width:2289.701560px;}
._1d{width:2313.803681px;}
._23{width:2338.710953px;}
._1c{width:2386.110046px;}
._1f{width:2410.212168px;}
._22{width:2425.886700px;}
._11{width:2449.796700px;}
._21{width:2577.354928px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(70,45,144);}
.fsf{font-size:34.200000px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:45.486000px;}
.fs13{font-size:45.964800px;}
.fs1c{font-size:46.922400px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs10{font-size:47.401200px;}
.fs8{font-size:47.820600px;}
.fs16{font-size:47.880000px;}
.fse{font-size:51.300000px;}
.fs19{font-size:51.710400px;}
.fs15{font-size:51.840000px;}
.fs1e{font-size:52.920000px;}
.fs12{font-size:53.460000px;}
.fs9{font-size:53.798400px;}
.fs18{font-size:54.000000px;}
.fsd{font-size:57.114000px;}
.fs14{font-size:57.715200px;}
.fs1b{font-size:58.320000px;}
.fs1d{font-size:58.917600px;}
.fs11{font-size:59.518800px;}
.fs1{font-size:59.775600px;}
.fs17{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs1a{font-size:64.929600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:117.165438px;}
.y177{bottom:-513.310124px;}
.y176{bottom:-494.821060px;}
.y1dd{bottom:-491.828366px;}
.y175{bottom:-476.331996px;}
.y1dc{bottom:-470.130487px;}
.y1af{bottom:-461.682206px;}
.y174{bottom:-457.929504px;}
.ye6{bottom:-456.942974px;}
.y1db{bottom:-451.256234px;}
.y1ae{bottom:-440.882009px;}
.y173{bottom:-439.440440px;}
.ye5{bottom:-438.732175px;}
.y1da{bottom:-432.470357px;}
.y172{bottom:-421.037948px;}
.ye4{bottom:-420.435705px;}
.ye3{bottom:-420.426981px;}
.y1ad{bottom:-420.081811px;}
.y14f{bottom:-418.690935px;}
.y1d9{bottom:-413.596104px;}
.y171{bottom:-402.548884px;}
.ye2{bottom:-402.216182px;}
.y14e{bottom:-399.521673px;}
.y1ac{bottom:-399.379008px;}
.y1d8{bottom:-394.721851px;}
.y170{bottom:-384.059820px;}
.ye1{bottom:-383.919712px;}
.y14d{bottom:-380.262231px;}
.y1ab{bottom:-378.578811px;}
.y1d7{bottom:-375.935974px;}
.y16f{bottom:-365.657328px;}
.ye0{bottom:-365.623242px;}
.y14c{bottom:-361.002789px;}
.y1aa{bottom:-357.876008px;}
.y1d6{bottom:-357.061721px;}
.y16e{bottom:-347.168264px;}
.ydf{bottom:-343.136033px;}
.y14b{bottom:-341.833527px;}
.y1d5{bottom:-338.275844px;}
.y1a9{bottom:-337.075811px;}
.y16d{bottom:-328.764329px;}
.yde{bottom:-324.839563px;}
.y14a{bottom:-322.574085px;}
.y1d4{bottom:-319.401591px;}
.y1a8{bottom:-316.275613px;}
.y16c{bottom:-310.275265px;}
.y149{bottom:-303.404823px;}
.y1d3{bottom:-300.527338px;}
.y1a7{bottom:-295.572810px;}
.y16b{bottom:-291.786201px;}
.ydd{bottom:-289.443161px;}
.y148{bottom:-284.145381px;}
.y1d2{bottom:-281.741461px;}
.y1a6{bottom:-274.772613px;}
.y16a{bottom:-273.383709px;}
.ydc{bottom:-271.232362px;}
.y147{bottom:-264.885939px;}
.y1d1{bottom:-262.867208px;}
.y169{bottom:-254.894645px;}
.y1a5{bottom:-253.972416px;}
.ydb{bottom:-252.935893px;}
.y146{bottom:-245.716677px;}
.y1d0{bottom:-244.081331px;}
.y168{bottom:-236.405580px;}
.yda{bottom:-234.725094px;}
.y1a4{bottom:-233.269613px;}
.y145{bottom:-226.457235px;}
.y1cf{bottom:-225.207078px;}
.yd9{bottom:-216.428624px;}
.y167{bottom:-213.681663px;}
.y1a3{bottom:-212.469415px;}
.y144{bottom:-207.287973px;}
.y1ce{bottom:-206.332825px;}
.yd8{bottom:-198.132154px;}
.y1a2{bottom:-191.766612px;}
.y143{bottom:-188.028531px;}
.y1cd{bottom:-187.545475px;}
.yd7{bottom:-179.921355px;}
.y166{bottom:-177.912668px;}
.y1a1{bottom:-170.966415px;}
.y142{bottom:-168.769089px;}
.y1cc{bottom:-168.671222px;}
.yd6{bottom:-161.624885px;}
.y165{bottom:-159.510177px;}
.y120{bottom:-159.250660px;}
.y1a0{bottom:-150.166218px;}
.y1cb{bottom:-149.796969px;}
.y141{bottom:-145.098342px;}
.yd5{bottom:-143.414086px;}
.y164{bottom:-141.021112px;}
.y11f{bottom:-140.848168px;}
.y140{bottom:-125.838900px;}
.yd4{bottom:-125.117616px;}
.y19f{bottom:-124.603434px;}
.y163{bottom:-122.532048px;}
.y11e{bottom:-122.359104px;}
.y1ca{bottom:-113.811369px;}
.yd3{bottom:-106.821146px;}
.y1c9{bottom:-96.701010px;}
.y13f{bottom:-89.029950px;}
.yd2{bottom:-88.610347px;}
.y162{bottom:-87.280272px;}
.y11d{bottom:-87.022512px;}
.y19e{bottom:-84.849606px;}
.y1c8{bottom:-79.766610px;}
.y110{bottom:-73.519231px;}
.y13e{bottom:-71.659500px;}
.y161{bottom:-70.519104px;}
.y11c{bottom:-70.346880px;}
.y19d{bottom:-66.089520px;}
.y1c7{bottom:-62.832210px;}
.y10f{bottom:-56.322486px;}
.y13d{bottom:-54.379500px;}
.y160{bottom:-53.930304px;}
.y11b{bottom:-53.758080px;}
.yd1{bottom:-53.641702px;}
.y19c{bottom:-47.329434px;}
.y1c6{bottom:-45.897810px;}
.y10e{bottom:-39.215286px;}
.y15f{bottom:-37.341504px;}
.yd0{bottom:-37.139775px;}
.y11a{bottom:-37.082448px;}
.y13c{bottom:-37.009050px;}
.y1c5{bottom:-28.874769px;}
.y19b{bottom:-28.667034px;}
.y10d{bottom:-22.108086px;}
.y15e{bottom:-20.752704px;}
.ycf{bottom:-20.637847px;}
.y119{bottom:-20.493648px;}
.y13b{bottom:-19.729050px;}
.y1c4{bottom:-7.001169px;}
.y19a{bottom:-4.561434px;}
.y0{bottom:0.000000px;}
.y10c{bottom:0.082709px;}
.yce{bottom:0.566152px;}
.y15d{bottom:0.760752px;}
.y118{bottom:1.019952px;}
.y13a{bottom:2.683353px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:17.412896px;}
.y4d{bottom:31.890000px;}
.y23b{bottom:92.304000px;}
.y159{bottom:100.002000px;}
.y25{bottom:102.823500px;}
.y275{bottom:103.557000px;}
.y4c{bottom:103.621500px;}
.ye9{bottom:103.846500px;}
.ybc{bottom:104.005500px;}
.y222{bottom:106.246500px;}
.y83{bottom:107.574000px;}
.y23a{bottom:109.564500px;}
.y1f6{bottom:116.635500px;}
.y158{bottom:118.831500px;}
.y24{bottom:120.711000px;}
.y274{bottom:120.817500px;}
.y4b{bottom:122.449500px;}
.y128{bottom:122.767500px;}
.ybb{bottom:122.835000px;}
.ye8{bottom:123.079500px;}
.y221{bottom:125.076000px;}
.y82{bottom:126.403500px;}
.y239{bottom:126.825000px;}
.y1f5{bottom:135.465000px;}
.y157{bottom:137.661000px;}
.y273{bottom:138.078000px;}
.y23{bottom:138.600000px;}
.y4a{bottom:141.279000px;}
.y127{bottom:141.597000px;}
.yba{bottom:141.664500px;}
.ye7{bottom:142.312500px;}
.y220{bottom:143.905500px;}
.y238{bottom:144.085500px;}
.y81{bottom:145.233000px;}
.y1f4{bottom:154.294500px;}
.y272{bottom:155.338500px;}
.y22{bottom:156.487500px;}
.y49{bottom:160.108500px;}
.y126{bottom:160.426500px;}
.yb8{bottom:160.494000px;}
.y156{bottom:160.974000px;}
.y237{bottom:161.346000px;}
.y21f{bottom:162.735000px;}
.y80{bottom:164.062500px;}
.ycb{bottom:164.740500px;}
.yb9{bottom:165.918000px;}
.y271{bottom:172.599000px;}
.y1f3{bottom:173.124000px;}
.y21{bottom:174.375000px;}
.y155{bottom:176.665500px;}
.y48{bottom:178.938000px;}
.y125{bottom:179.256000px;}
.yb7{bottom:179.323500px;}
.y21e{bottom:181.564500px;}
.y7f{bottom:182.892000px;}
.y236{bottom:183.090000px;}
.y114{bottom:188.422500px;}
.y270{bottom:189.858000px;}
.y1c0{bottom:190.627500px;}
.y1f2{bottom:191.953500px;}
.y20{bottom:192.264000px;}
.y47{bottom:197.767500px;}
.yb6{bottom:198.153000px;}
.y21d{bottom:200.394000px;}
.y196{bottom:200.991000px;}
.y7e{bottom:201.721500px;}
.y26f{bottom:207.118500px;}
.y113{bottom:207.655500px;}
.y1bf{bottom:209.455500px;}
.y1f{bottom:210.151500px;}
.y1f1{bottom:210.783000px;}
.y124{bottom:212.821500px;}
.y154{bottom:213.070500px;}
.y46{bottom:216.597000px;}
.y235{bottom:216.714000px;}
.y21c{bottom:219.223500px;}
.y195{bottom:219.820500px;}
.y7d{bottom:220.551000px;}
.yb5{bottom:221.466000px;}
.y26e{bottom:224.379000px;}
.y112{bottom:226.888500px;}
.y1e{bottom:228.039000px;}
.y1be{bottom:228.285000px;}
.y1f0{bottom:229.611000px;}
.y123{bottom:232.054500px;}
.y153{bottom:232.302000px;}
.y234{bottom:234.288000px;}
.y45{bottom:235.426500px;}
.y21b{bottom:238.053000px;}
.y194{bottom:238.650000px;}
.y7c{bottom:239.380500px;}
.y26d{bottom:241.639500px;}
.y111{bottom:246.121500px;}
.y1bd{bottom:247.114500px;}
.y1ef{bottom:248.440500px;}
.y122{bottom:251.287500px;}
.y15c{bottom:251.320882px;}
.y152{bottom:251.535000px;}
.y233{bottom:251.862000px;}
.y44{bottom:254.256000px;}
.yb4{bottom:255.090000px;}
.y21a{bottom:256.882500px;}
.y193{bottom:257.479500px;}
.y26c{bottom:258.900000px;}
.y15b{bottom:260.565552px;}
.y7b{bottom:262.692000px;}
.y1bc{bottom:265.944000px;}
.y1ee{bottom:267.270000px;}
.yfa{bottom:268.551000px;}
.y232{bottom:269.436000px;}
.y121{bottom:270.520500px;}
.y151{bottom:270.768000px;}
.y43{bottom:273.085500px;}
.yb3{bottom:273.919500px;}
.y219{bottom:275.712000px;}
.y26b{bottom:276.160500px;}
.y192{bottom:276.309000px;}
.y7a{bottom:282.867000px;}
.y1bb{bottom:284.773500px;}
.y1ed{bottom:286.099500px;}
.y231{bottom:287.010000px;}
.y150{bottom:290.001000px;}
.yb1{bottom:292.749000px;}
.y115{bottom:292.950000px;}
.y26a{bottom:293.421000px;}
.y218{bottom:294.541500px;}
.y191{bottom:295.138500px;}
.y42{bottom:296.398500px;}
.yb2{bottom:298.173000px;}
.y1ba{bottom:303.603000px;}
.y1ec{bottom:304.929000px;}
.y1d{bottom:307.299000px;}
.y269{bottom:310.681500px;}
.yb0{bottom:311.578500px;}
.y131{bottom:312.430500px;}
.y217{bottom:313.371000px;}
.y230{bottom:313.551000px;}
.y190{bottom:313.968000px;}
.y79{bottom:316.491000px;}
.y1b9{bottom:322.432500px;}
.y1eb{bottom:323.758500px;}
.y1c{bottom:325.186500px;}
.y268{bottom:327.940500px;}
.yaf{bottom:330.408000px;}
.y216{bottom:332.200500px;}
.y18f{bottom:332.797500px;}
.y78{bottom:335.320500px;}
.y22f{bottom:340.090500px;}
.y1b8{bottom:341.262000px;}
.y1ea{bottom:342.588000px;}
.y1b{bottom:343.074000px;}
.y267{bottom:345.201000px;}
.yae{bottom:349.237500px;}
.y215{bottom:351.030000px;}
.y18e{bottom:351.627000px;}
.y77{bottom:354.150000px;}
.y1a{bottom:360.963000px;}
.y1e9{bottom:361.417500px;}
.y266{bottom:362.461500px;}
.y1b7{bottom:364.575000px;}
.y22e{bottom:366.631500px;}
.yad{bottom:368.065500px;}
.y214{bottom:369.859500px;}
.y18d{bottom:370.456500px;}
.y41{bottom:371.548500px;}
.y76{bottom:372.979500px;}
.y265{bottom:379.722000px;}
.y1e8{bottom:380.247000px;}
.yab{bottom:386.895000px;}
.y213{bottom:388.689000px;}
.y18c{bottom:389.286000px;}
.y40{bottom:391.005000px;}
.y75{bottom:391.809000px;}
.yac{bottom:392.320500px;}
.y22d{bottom:393.172500px;}
.y264{bottom:396.982500px;}
.y1b6{bottom:398.199000px;}
.y19{bottom:399.024000px;}
.y1e7{bottom:399.076500px;}
.yaa{bottom:405.724500px;}
.y212{bottom:407.518500px;}
.y18b{bottom:408.115500px;}
.y74{bottom:410.638500px;}
.y22c{bottom:410.746500px;}
.y263{bottom:414.243000px;}
.y18{bottom:416.913000px;}
.y1b5{bottom:417.028500px;}
.y1e6{bottom:417.906000px;}
.ya9{bottom:424.554000px;}
.y211{bottom:426.348000px;}
.y18a{bottom:426.945000px;}
.y22b{bottom:428.320500px;}
.y3f{bottom:428.395500px;}
.y73{bottom:429.468000px;}
.y262{bottom:431.503500px;}
.y139{bottom:432.164100px;}
.y17{bottom:434.800500px;}
.y1b4{bottom:435.858000px;}
.y1e5{bottom:436.735500px;}
.ya8{bottom:443.383500px;}
.y210{bottom:445.177500px;}
.y22a{bottom:445.894500px;}
.y3e{bottom:447.852000px;}
.y72{bottom:448.297500px;}
.y261{bottom:448.764000px;}
.y189{bottom:450.258000px;}
.y138{bottom:451.333362px;}
.y1e4{bottom:455.565000px;}
.y10b{bottom:458.681014px;}
.ya7{bottom:462.213000px;}
.y229{bottom:463.468500px;}
.y20f{bottom:464.007000px;}
.y260{bottom:466.024500px;}
.y71{bottom:467.127000px;}
.y3d{bottom:467.310000px;}
.y1b3{bottom:469.423500px;}
.y137{bottom:470.592804px;}
.y16{bottom:470.622000px;}
.y10a{bottom:477.747862px;}
.y20e{bottom:482.836500px;}
.y25f{bottom:483.283500px;}
.y188{bottom:483.882000px;}
.ya6{bottom:485.526000px;}
.y70{bottom:485.956500px;}
.y3c{bottom:486.766500px;}
.y1b2{bottom:488.656500px;}
.y1e3{bottom:489.130500px;}
.y136{bottom:489.852246px;}
.y228{bottom:490.009500px;}
.y109{bottom:496.814710px;}
.y25e{bottom:500.544000px;}
.y20d{bottom:501.666000px;}
.y187{bottom:502.711500px;}
.y6f{bottom:504.786000px;}
.y3b{bottom:506.223000px;}
.y15{bottom:506.442000px;}
.y227{bottom:507.583500px;}
.y1b1{bottom:507.889500px;}
.y1e2{bottom:508.363500px;}
.y135{bottom:509.021508px;}
.y108{bottom:515.793767px;}
.y25d{bottom:517.804500px;}
.ya5{bottom:519.150000px;}
.y20c{bottom:520.495500px;}
.y186{bottom:521.541000px;}
.y6e{bottom:523.615500px;}
.y14{bottom:524.329500px;}
.y226{bottom:525.157500px;}
.y3a{bottom:525.681000px;}
.y1b0{bottom:527.122500px;}
.y1e1{bottom:527.596500px;}
.y134{bottom:528.280950px;}
.ycd{bottom:533.744281px;}
.y107{bottom:534.860615px;}
.y25c{bottom:535.065000px;}
.ya4{bottom:537.979500px;}
.y20b{bottom:539.323500px;}
.y185{bottom:540.370500px;}
.y1c3{bottom:542.132163px;}
.y13{bottom:542.218500px;}
.y6d{bottom:542.445000px;}
.y225{bottom:542.731500px;}
.ycc{bottom:542.892653px;}
.y39{bottom:545.137500px;}
.y1e0{bottom:546.829500px;}
.y197{bottom:549.552000px;}
.y1c2{bottom:551.569431px;}
.y25b{bottom:552.325500px;}
.y106{bottom:553.839672px;}
.ya3{bottom:556.809000px;}
.y20a{bottom:558.153000px;}
.y184{bottom:559.200000px;}
.y12{bottom:560.106000px;}
.y224{bottom:560.305500px;}
.y6c{bottom:561.274500px;}
.y38{bottom:564.595500px;}
.y1df{bottom:566.062500px;}
.y25a{bottom:569.586000px;}
.y105{bottom:572.906519px;}
.ya1{bottom:575.638500px;}
.y209{bottom:576.982500px;}
.y11{bottom:577.993500px;}
.y183{bottom:578.028000px;}
.y6b{bottom:580.104000px;}
.ya2{bottom:581.062500px;}
.y133{bottom:581.471085px;}
.y37{bottom:584.052000px;}
.y1de{bottom:585.295500px;}
.y259{bottom:586.846500px;}
.y132{bottom:591.100950px;}
.y104{bottom:591.973367px;}
.y208{bottom:595.812000px;}
.y10{bottom:595.882500px;}
.y182{bottom:596.857500px;}
.y6a{bottom:598.932000px;}
.ya0{bottom:598.951500px;}
.y36{bottom:603.508500px;}
.y258{bottom:604.107000px;}
.y1c1{bottom:607.725000px;}
.y199{bottom:608.479112px;}
.y103{bottom:610.950936px;}
.yf{bottom:613.770000px;}
.y207{bottom:614.641500px;}
.y181{bottom:615.687000px;}
.y69{bottom:617.761500px;}
.y198{bottom:618.879366px;}
.y257{bottom:621.366000px;}
.y35{bottom:622.966500px;}
.y102{bottom:630.017784px;}
.ye{bottom:631.657500px;}
.y9f{bottom:632.575500px;}
.y206{bottom:633.471000px;}
.y180{bottom:634.516500px;}
.y68{bottom:636.591000px;}
.y256{bottom:638.626500px;}
.y34{bottom:642.423000px;}
.y101{bottom:648.995353px;}
.yd{bottom:649.546500px;}
.y9e{bottom:651.405000px;}
.y205{bottom:652.300500px;}
.y17f{bottom:653.346000px;}
.y67{bottom:655.420500px;}
.y255{bottom:655.887000px;}
.y33{bottom:661.879500px;}
.yc{bottom:667.434000px;}
.y100{bottom:668.062201px;}
.y9d{bottom:670.234500px;}
.y204{bottom:671.130000px;}
.y17e{bottom:672.175500px;}
.y254{bottom:673.147500px;}
.y66{bottom:674.250000px;}
.y32{bottom:681.337500px;}
.yff{bottom:687.129049px;}
.y9b{bottom:689.064000px;}
.y9{bottom:689.805055px;}
.y203{bottom:689.959500px;}
.y253{bottom:690.408000px;}
.y17d{bottom:691.005000px;}
.yca{bottom:691.305000px;}
.y65{bottom:693.079500px;}
.y9c{bottom:694.488000px;}
.y31{bottom:700.794000px;}
.yfe{bottom:706.106618px;}
.y252{bottom:707.668500px;}
.y9a{bottom:707.892000px;}
.y202{bottom:708.789000px;}
.yc9{bottom:710.134500px;}
.y64{bottom:711.909000px;}
.y30{bottom:720.252000px;}
.y17c{bottom:724.570500px;}
.y251{bottom:724.929000px;}
.yfd{bottom:725.173466px;}
.y201{bottom:727.618500px;}
.yc8{bottom:728.964000px;}
.y63{bottom:730.738500px;}
.yf9{bottom:730.756500px;}
.y99{bottom:731.205000px;}
.y250{bottom:742.189500px;}
.y17b{bottom:743.803500px;}
.y200{bottom:746.448000px;}
.y130{bottom:746.896500px;}
.yc7{bottom:747.793500px;}
.y62{bottom:749.568000px;}
.yf8{bottom:749.586000px;}
.y2f{bottom:758.638500px;}
.y24f{bottom:759.450000px;}
.y17a{bottom:763.036500px;}
.y98{bottom:764.829000px;}
.y1ff{bottom:765.277500px;}
.yf7{bottom:765.685500px;}
.y12f{bottom:765.726000px;}
.yc6{bottom:766.623000px;}
.y61{bottom:768.397500px;}
.yf6{bottom:768.415500px;}
.y24e{bottom:776.709000px;}
.yfc{bottom:777.831699px;}
.y2e{bottom:779.118000px;}
.y179{bottom:782.269500px;}
.y97{bottom:783.658500px;}
.y1fe{bottom:784.107000px;}
.y12e{bottom:784.555500px;}
.yc5{bottom:785.452500px;}
.y60{bottom:787.227000px;}
.yf5{bottom:787.245000px;}
.yfb{bottom:787.365266px;}
.y223{bottom:788.590500px;}
.y2d{bottom:790.917000px;}
.y24d{bottom:793.969500px;}
.y178{bottom:801.502500px;}
.y96{bottom:802.488000px;}
.y1fd{bottom:802.936500px;}
.y12d{bottom:803.385000px;}
.yc4{bottom:804.282000px;}
.y5f{bottom:806.056500px;}
.yf4{bottom:806.074500px;}
.y24c{bottom:811.230000px;}
.y2c{bottom:811.396500px;}
.y95{bottom:821.317500px;}
.y1fc{bottom:821.766000px;}
.y12c{bottom:822.214500px;}
.yc3{bottom:823.111500px;}
.y15a{bottom:823.932000px;}
.y5e{bottom:824.886000px;}
.yf3{bottom:824.904000px;}
.y2b{bottom:827.536500px;}
.y24b{bottom:828.490500px;}
.y94{bottom:837.417000px;}
.y92{bottom:840.147000px;}
.y1fb{bottom:840.595500px;}
.y12b{bottom:841.044000px;}
.yc2{bottom:841.941000px;}
.y2a{bottom:843.675000px;}
.y5d{bottom:843.715500px;}
.y93{bottom:845.571000px;}
.y24a{bottom:845.751000px;}
.yf2{bottom:848.217000px;}
.y91{bottom:858.976500px;}
.y1fa{bottom:859.425000px;}
.y29{bottom:859.815000px;}
.y12a{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y249{bottom:863.011500px;}
.y117{bottom:863.464882px;}
.yf1{bottom:863.908500px;}
.yc1{bottom:865.252500px;}
.y28{bottom:871.615500px;}
.y116{bottom:872.709552px;}
.y1f9{bottom:878.254500px;}
.y129{bottom:878.703000px;}
.y248{bottom:880.272000px;}
.yc0{bottom:880.944000px;}
.y5b{bottom:881.374500px;}
.y90{bottom:882.289500px;}
.y27{bottom:887.754000px;}
.y1f8{bottom:897.084000px;}
.yf0{bottom:897.532500px;}
.y5a{bottom:900.204000px;}
.ybf{bottom:901.119000px;}
.y26{bottom:908.233500px;}
.y246{bottom:914.791500px;}
.y247{bottom:914.793000px;}
.y8f{bottom:915.913500px;}
.yef{bottom:916.362000px;}
.y59{bottom:919.033500px;}
.y245{bottom:932.052000px;}
.y8e{bottom:934.743000px;}
.yee{bottom:935.191500px;}
.y58{bottom:937.863000px;}
.y8{bottom:948.228000px;}
.y244{bottom:949.312500px;}
.y8d{bottom:950.842500px;}
.y8c{bottom:953.572500px;}
.yed{bottom:954.021000px;}
.y57{bottom:956.692500px;}
.y243{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.y8a{bottom:972.402000px;}
.yec{bottom:972.849000px;}
.y56{bottom:975.522000px;}
.y1f7{bottom:976.884000px;}
.y8b{bottom:977.826000px;}
.y242{bottom:983.833500px;}
.y89{bottom:991.231500px;}
.yeb{bottom:991.678500px;}
.y55{bottom:994.351500px;}
.ybe{bottom:995.713500px;}
.y241{bottom:1001.094000px;}
.yea{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y54{bottom:1013.181000px;}
.y88{bottom:1014.543000px;}
.y240{bottom:1018.354500px;}
.ybd{bottom:1029.337500px;}
.y53{bottom:1032.010500px;}
.y23f{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y87{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y23e{bottom:1052.875500px;}
.y86{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y23d{bottom:1070.134500px;}
.y85{bottom:1085.826000px;}
.y23c{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.ha{height:30.461558px;}
.hb{height:30.712615px;}
.h13{height:31.526842px;}
.h14{height:33.072749px;}
.h9{height:33.112997px;}
.h1c{height:33.203892px;}
.h1b{height:33.359361px;}
.h2e{height:33.553406px;}
.h2d{height:33.710513px;}
.h8{height:34.199443px;}
.h48{height:34.252436px;}
.h47{height:34.412815px;}
.h27{height:34.601950px;}
.h26{height:34.763966px;}
.hd{height:34.813397px;}
.h34{height:34.951465px;}
.h12{height:35.100320px;}
.h33{height:35.115117px;}
.h1f{height:37.447998px;}
.h3a{height:37.551283px;}
.h1e{height:37.623340px;}
.h40{height:37.747582px;}
.h31{height:37.842188px;}
.h3f{height:37.924327px;}
.h30{height:38.019375px;}
.h4b{height:38.630566px;}
.he{height:38.734848px;}
.h4a{height:38.811445px;}
.h2b{height:39.024756px;}
.hf{height:39.165235px;}
.h2a{height:39.207480px;}
.h22{height:39.329332px;}
.h38{height:39.418945px;}
.h23{height:39.488026px;}
.h37{height:39.603516px;}
.h21{height:41.441115px;}
.h19{height:41.482876px;}
.h1d{height:41.692104px;}
.h17{height:41.723369px;}
.h3d{height:41.877338px;}
.h20{height:41.887318px;}
.h2f{height:42.130969px;}
.h3c{height:42.328238px;}
.h43{height:42.572461px;}
.h42{height:42.771797px;}
.h49{height:43.008697px;}
.h10{height:43.038432px;}
.h4c{height:43.210076px;}
.h28{height:43.447562px;}
.h11{height:43.516637px;}
.h39{height:43.622227px;}
.h29{height:43.650995px;}
.h4{height:43.875290px;}
.h35{height:43.886426px;}
.h36{height:44.091914px;}
.h44{height:47.112005px;}
.h41{height:47.397340px;}
.h45{height:47.619267px;}
.h2{height:50.930649px;}
.h15{height:53.222842px;}
.h6{height:54.411312px;}
.h16{height:54.768749px;}
.h18{height:54.774749px;}
.h24{height:64.148842px;}
.h5{height:77.469696px;}
.h3{height:79.438167px;}
.h3b{height:219.422880px;}
.h32{height:414.718500px;}
.h25{height:438.563565px;}
.h1a{height:502.925250px;}
.h46{height:511.878990px;}
.h3e{height:570.048840px;}
.h2c{height:826.646400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.503181px;}
.w9{width:715.106880px;}
.w4{width:746.924865px;}
.w7{width:748.535250px;}
.wa{width:749.728812px;}
.w8{width:759.312144px;}
.w6{width:760.207392px;}
.w5{width:776.819241px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9c{left:-64.681740px;}
.x9e{left:-30.272940px;}
.x88{left:-15.905250px;}
.xab{left:-9.429168px;}
.x0{left:0.000000px;}
.x65{left:2.798415px;}
.x77{left:7.121952px;}
.x8a{left:15.954750px;}
.xac{left:21.793632px;}
.x4{left:29.274117px;}
.x72{left:30.569616px;}
.x67{left:33.065415px;}
.x78{left:37.707552px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.742127px;}
.x76{left:66.351288px;}
.xaa{left:71.595588px;}
.x64{left:72.996285px;}
.x6c{left:85.890000px;}
.x9b{left:88.903500px;}
.xb6{left:134.212500px;}
.x90{left:136.033500px;}
.x6d{left:143.611500px;}
.x91{left:145.005000px;}
.x9f{left:146.533860px;}
.x7b{left:162.046500px;}
.x7c{left:172.510500px;}
.x89{left:179.664750px;}
.xa0{left:180.942546px;}
.xae{left:182.229535px;}
.x69{left:188.590015px;}
.x96{left:189.821045px;}
.x71{left:192.642621px;}
.x7a{left:194.869253px;}
.x8b{left:211.524644px;}
.xad{left:213.452232px;}
.x68{left:218.856915px;}
.x95{left:220.406544px;}
.x70{left:224.183916px;}
.x79{left:225.454752px;}
.x8c{left:228.601500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x6{left:271.221000px;}
.x3f{left:272.880000px;}
.xbe{left:278.134500px;}
.x40{left:279.306000px;}
.xa{left:282.786000px;}
.x56{left:285.318000px;}
.x7d{left:291.421500px;}
.xbf{left:293.077500px;}
.x55{left:295.071000px;}
.xc0{left:296.874000px;}
.x5a{left:298.870500px;}
.xb8{left:303.394500px;}
.x5b{left:308.101500px;}
.x8{left:309.441000px;}
.x84{left:312.375000px;}
.x87{left:314.334000px;}
.xc1{left:315.613500px;}
.x22{left:317.028000px;}
.xb9{left:318.337500px;}
.x83{left:320.487000px;}
.x9{left:322.372500px;}
.xc4{left:324.174000px;}
.xa5{left:325.885500px;}
.x85{left:327.319500px;}
.x41{left:328.834500px;}
.xc2{left:330.556500px;}
.x23{left:331.971000px;}
.x8d{left:334.110000px;}
.x24{left:335.715000px;}
.xba{left:337.021500px;}
.x31{left:338.932500px;}
.x8e{left:342.418500px;}
.x42{left:343.777500px;}
.x86{left:345.925500px;}
.xc3{left:349.297500px;}
.x25{left:350.659500px;}
.xaf{left:356.599500px;}
.x6a{left:361.214415px;}
.x6b{left:374.979915px;}
.xcf{left:378.468000px;}
.x99{left:383.661000px;}
.x6e{left:390.021000px;}
.x32{left:392.724000px;}
.x35{left:399.511500px;}
.x75{left:408.339000px;}
.x36{left:414.454500px;}
.x6f{left:416.607000px;}
.x37{left:418.266000px;}
.x92{left:420.043500px;}
.x18{left:422.823000px;}
.x19{left:430.294500px;}
.x38{left:433.210500px;}
.x93{left:434.988000px;}
.x51{left:439.776000px;}
.x14{left:442.644000px;}
.x29{left:445.209000px;}
.x98{left:448.011000px;}
.x15{left:450.115500px;}
.x52{left:456.684000px;}
.xb0{left:458.875500px;}
.xa3{left:459.970500px;}
.xa4{left:468.277500px;}
.x43{left:471.129000px;}
.x7e{left:476.583000px;}
.x44{left:477.934500px;}
.x53{left:482.970000px;}
.x7f{left:485.553000px;}
.x80{left:488.908500px;}
.x61{left:497.680500px;}
.x4a{left:513.009000px;}
.x62{left:515.326500px;}
.x54{left:519.670500px;}
.xb3{left:526.378500px;}
.x4b{left:528.904500px;}
.xb4{left:534.687000px;}
.xc5{left:541.404000px;}
.x4c{left:543.549000px;}
.x2b{left:546.685500px;}
.x26{left:550.255500px;}
.x4d{left:553.579500px;}
.x2c{left:561.630000px;}
.x27{left:565.200000px;}
.x45{left:566.788500px;}
.x28{left:569.010000px;}
.x46{left:573.214500px;}
.x4e{left:582.078000px;}
.x16{left:584.268000px;}
.x17{left:591.739500px;}
.xc6{left:593.391000px;}
.x4f{left:597.975000px;}
.x48{left:600.279000px;}
.x12{left:605.947500px;}
.xb7{left:608.497500px;}
.x49{left:609.508500px;}
.x13{left:613.419000px;}
.x97{left:619.564500px;}
.x50{left:622.650000px;}
.x60{left:627.868500px;}
.x2a{left:631.836000px;}
.xcc{left:634.486500px;}
.xd7{left:635.701500px;}
.xb{left:639.142500px;}
.xf{left:643.665000px;}
.xc{left:646.615500px;}
.xd{left:650.425500px;}
.x1e{left:653.173500px;}
.x10{left:654.946500px;}
.xe{left:657.897000px;}
.x11{left:662.419500px;}
.x1f{left:664.449000px;}
.x20{left:668.251500px;}
.xda{left:669.651000px;}
.xa7{left:670.864500px;}
.xc7{left:672.817500px;}
.xa8{left:674.526000px;}
.xc8{left:677.883000px;}
.xb5{left:679.912500px;}
.x21{left:683.196000px;}
.xa1{left:686.724000px;}
.xa9{left:689.469000px;}
.x58{left:691.230000px;}
.xc9{left:692.826000px;}
.xa6{left:695.272500px;}
.xa2{left:697.186500px;}
.x81{left:698.482500px;}
.x39{left:700.302000px;}
.x5c{left:705.060000px;}
.x82{left:707.712000px;}
.x5d{left:711.865500px;}
.x9d{left:714.084660px;}
.x3a{left:715.245000px;}
.x3b{left:719.011500px;}
.xcd{left:722.413500px;}
.x47{left:724.504500px;}
.xca{left:730.321500px;}
.xd0{left:731.638500px;}
.xd2{left:732.739500px;}
.x3c{left:733.956000px;}
.xce{left:737.358000px;}
.xd6{left:744.984000px;}
.xb1{left:747.417000px;}
.x66{left:748.785915px;}
.x73{left:750.424500px;}
.xbd{left:752.016000px;}
.x33{left:754.818000px;}
.x94{left:755.913744px;}
.xb2{left:757.126500px;}
.xd1{left:758.538000px;}
.xd3{left:759.637500px;}
.x74{left:760.888500px;}
.xd9{left:763.533000px;}
.x3d{left:766.323000px;}
.xcb{left:767.815500px;}
.x34{left:769.762500px;}
.x3e{left:773.128500px;}
.x1a{left:774.897000px;}
.x57{left:780.939000px;}
.x1b{left:782.368500px;}
.x9a{left:783.645000px;}
.x5e{left:787.405500px;}
.xd8{left:788.767500px;}
.x1c{left:789.990000px;}
.x8f{left:791.322000px;}
.x5f{left:797.305500px;}
.x2d{left:798.943500px;}
.x1d{left:804.933000px;}
.xd4{left:810.360000px;}
.x2e{left:813.886500px;}
.xd5{left:816.267000px;}
.x2f{left:817.698000px;}
.xbb{left:819.028500px;}
.x59{left:831.375000px;}
.x30{left:832.642500px;}
.xbc{left:833.971500px;}
.x63{left:837.042000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.768000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:28.997333pt;}
.lsc6{letter-spacing:-0.336960pt;}
.ls89{letter-spacing:-0.312000pt;}
.ls51{letter-spacing:-0.308880pt;}
.ls23{letter-spacing:-0.296400pt;}
.ls50{letter-spacing:-0.280368pt;}
.ls69{letter-spacing:-0.248832pt;}
.lsc7{letter-spacing:-0.238464pt;}
.lsec{letter-spacing:-0.230496pt;}
.ls85{letter-spacing:-0.225600pt;}
.ls68{letter-spacing:-0.221184pt;}
.ls46{letter-spacing:-0.195751pt;}
.lsf3{letter-spacing:-0.183299pt;}
.lsa8{letter-spacing:-0.179558pt;}
.lsee{letter-spacing:-0.172825pt;}
.lsf1{letter-spacing:-0.157114pt;}
.ls4d{letter-spacing:-0.148136pt;}
.ls8e{letter-spacing:-0.138944pt;}
.lsc9{letter-spacing:-0.138516pt;}
.ls2e{letter-spacing:-0.137074pt;}
.lsd0{letter-spacing:-0.132745pt;}
.ls91{letter-spacing:-0.128256pt;}
.ls2c{letter-spacing:-0.126920pt;}
.ls8f{letter-spacing:-0.122912pt;}
.lsce{letter-spacing:-0.115430pt;}
.ls82{letter-spacing:-0.112224pt;}
.lscd{letter-spacing:-0.109659pt;}
.lsa6{letter-spacing:-0.107735pt;}
.ls8d{letter-spacing:-0.106880pt;}
.ls2b{letter-spacing:-0.106613pt;}
.ls4b{letter-spacing:-0.105811pt;}
.lscb{letter-spacing:-0.103887pt;}
.ls26{letter-spacing:-0.101536pt;}
.ls6a{letter-spacing:-0.097475pt;}
.ls28{letter-spacing:-0.096459pt;}
.ls8a{letter-spacing:-0.096192pt;}
.ls83{letter-spacing:-0.085504pt;}
.lsa0{letter-spacing:-0.082084pt;}
.lsad{letter-spacing:-0.076954pt;}
.ls90{letter-spacing:-0.074816pt;}
.ls8b{letter-spacing:-0.069472pt;}
.lsa3{letter-spacing:-0.066693pt;}
.lsaa{letter-spacing:-0.061563pt;}
.ls9e{letter-spacing:-0.059904pt;}
.ls92{letter-spacing:-0.058784pt;}
.ls49{letter-spacing:-0.058196pt;}
.lsf4{letter-spacing:-0.057608pt;}
.lsa5{letter-spacing:-0.056433pt;}
.lsa9{letter-spacing:-0.051302pt;}
.ls25{letter-spacing:-0.050768pt;}
.ls2f{letter-spacing:-0.045691pt;}
.ls47{letter-spacing:-0.042324pt;}
.lsc4{letter-spacing:-0.041472pt;}
.lscf{letter-spacing:-0.040401pt;}
.lse9{letter-spacing:-0.032928pt;}
.ls9f{letter-spacing:-0.032256pt;}
.ls4e{letter-spacing:-0.031743pt;}
.lsef{letter-spacing:-0.031423pt;}
.ls2d{letter-spacing:-0.030461pt;}
.ls66{letter-spacing:-0.027648pt;}
.ls4c{letter-spacing:-0.026453pt;}
.lscc{letter-spacing:-0.023086pt;}
.ls81{letter-spacing:-0.021376pt;}
.ls4a{letter-spacing:-0.021162pt;}
.lsf2{letter-spacing:-0.020948pt;}
.lsa4{letter-spacing:-0.020521pt;}
.ls27{letter-spacing:-0.020307pt;}
.ls84{letter-spacing:-0.019200pt;}
.ls9d{letter-spacing:-0.018432pt;}
.lsed{letter-spacing:-0.015711pt;}
.lsc5{letter-spacing:-0.015552pt;}
.ls29{letter-spacing:-0.015230pt;}
.ls88{letter-spacing:-0.014400pt;}
.ls52{letter-spacing:-0.014256pt;}
.ls24{letter-spacing:-0.013680pt;}
.ls8c{letter-spacing:-0.010688pt;}
.lsc2{letter-spacing:-0.010368pt;}
.lsa7{letter-spacing:-0.010260pt;}
.ls2a{letter-spacing:-0.010154pt;}
.ls87{letter-spacing:-0.009600pt;}
.ls67{letter-spacing:-0.009216pt;}
.lsca{letter-spacing:-0.005772pt;}
.ls48{letter-spacing:-0.005291pt;}
.lsf0{letter-spacing:-0.005237pt;}
.lsc3{letter-spacing:-0.005184pt;}
.lsa1{letter-spacing:-0.005130pt;}
.ls30{letter-spacing:-0.005077pt;}
.ls86{letter-spacing:-0.004800pt;}
.lsea{letter-spacing:-0.004704pt;}
.lsa{letter-spacing:0.000000pt;}
.lsfa{letter-spacing:0.000078pt;}
.ls10d{letter-spacing:0.000260pt;}
.ls106{letter-spacing:0.000600pt;}
.lsfe{letter-spacing:0.000711pt;}
.lsfd{letter-spacing:0.000921pt;}
.ls103{letter-spacing:0.001026pt;}
.ls10b{letter-spacing:0.001158pt;}
.ls104{letter-spacing:0.001237pt;}
.ls44{letter-spacing:0.001382pt;}
.ls13{letter-spacing:0.001429pt;}
.ls65{letter-spacing:0.002133pt;}
.ls102{letter-spacing:0.002262pt;}
.ls2{letter-spacing:0.002422pt;}
.ls108{letter-spacing:0.002525pt;}
.ls10a{letter-spacing:0.003050pt;}
.ls7{letter-spacing:0.003100pt;}
.ls105{letter-spacing:0.003578pt;}
.lsfc{letter-spacing:0.004267pt;}
.ls57{letter-spacing:0.004608pt;}
.lsd8{letter-spacing:0.004704pt;}
.ls1e{letter-spacing:0.005077pt;}
.lsb5{letter-spacing:0.005184pt;}
.lse5{letter-spacing:0.005237pt;}
.ls37{letter-spacing:0.005291pt;}
.ls7a{letter-spacing:0.005344pt;}
.ls1f{letter-spacing:0.006080pt;}
.ls5e{letter-spacing:0.009216pt;}
.ls3f{letter-spacing:0.009504pt;}
.ls77{letter-spacing:0.009600pt;}
.lsc8{letter-spacing:0.010368pt;}
.lse1{letter-spacing:0.010474pt;}
.ls14{letter-spacing:0.012130pt;}
.ls53{letter-spacing:0.012257pt;}
.lsd1{letter-spacing:0.012513pt;}
.ls33{letter-spacing:0.012640pt;}
.ls6b{letter-spacing:0.012768pt;}
.lsae{letter-spacing:0.013789pt;}
.ls56{letter-spacing:0.013824pt;}
.lsd4{letter-spacing:0.014112pt;}
.ls3b{letter-spacing:0.014256pt;}
.ls63{letter-spacing:0.015391pt;}
.lsb1{letter-spacing:0.015552pt;}
.lse4{letter-spacing:0.015711pt;}
.ls6e{letter-spacing:0.016032pt;}
.ls5a{letter-spacing:0.018432pt;}
.lsde{letter-spacing:0.018816pt;}
.ls73{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.020307pt;}
.lsb4{letter-spacing:0.020736pt;}
.lse7{letter-spacing:0.020948pt;}
.ls70{letter-spacing:0.021376pt;}
.ls96{letter-spacing:0.023040pt;}
.lsbe{letter-spacing:0.023086pt;}
.lsda{letter-spacing:0.023520pt;}
.ls9b{letter-spacing:0.025651pt;}
.lsb8{letter-spacing:0.025920pt;}
.lse0{letter-spacing:0.026186pt;}
.ls39{letter-spacing:0.026453pt;}
.ls95{letter-spacing:0.027648pt;}
.lsd5{letter-spacing:0.028224pt;}
.ls74{letter-spacing:0.028800pt;}
.ls99{letter-spacing:0.030781pt;}
.lse6{letter-spacing:0.031423pt;}
.ls17{letter-spacing:0.031920pt;}
.ls7c{letter-spacing:0.032064pt;}
.ls93{letter-spacing:0.032256pt;}
.lsd9{letter-spacing:0.032928pt;}
.ls3c{letter-spacing:0.033264pt;}
.ls72{letter-spacing:0.033600pt;}
.ls1a{letter-spacing:0.035538pt;}
.ls97{letter-spacing:0.035912pt;}
.ls18{letter-spacing:0.036480pt;}
.lse3{letter-spacing:0.036660pt;}
.ls58{letter-spacing:0.036864pt;}
.ls38{letter-spacing:0.037034pt;}
.ls7b{letter-spacing:0.037408pt;}
.lsd6{letter-spacing:0.037632pt;}
.ls40{letter-spacing:0.038016pt;}
.lsbb{letter-spacing:0.040401pt;}
.ls1d{letter-spacing:0.040614pt;}
.ls61{letter-spacing:0.041042pt;}
.ls5d{letter-spacing:0.041472pt;}
.ls6f{letter-spacing:0.042752pt;}
.ls42{letter-spacing:0.042768pt;}
.ls19{letter-spacing:0.045600pt;}
.ls1c{letter-spacing:0.045691pt;}
.ls9a{letter-spacing:0.046172pt;}
.lsdf{letter-spacing:0.047134pt;}
.ls41{letter-spacing:0.047520pt;}
.ls76{letter-spacing:0.048000pt;}
.ls98{letter-spacing:0.051302pt;}
.lsb6{letter-spacing:0.051840pt;}
.lsbc{letter-spacing:0.051944pt;}
.lse2{letter-spacing:0.052371pt;}
.ls36{letter-spacing:0.052906pt;}
.ls71{letter-spacing:0.053440pt;}
.lsdb{letter-spacing:0.056448pt;}
.ls78{letter-spacing:0.057600pt;}
.lsbd{letter-spacing:0.057715pt;}
.ls7d{letter-spacing:0.058784pt;}
.ls94{letter-spacing:0.059904pt;}
.lsdd{letter-spacing:0.061152pt;}
.ls62{letter-spacing:0.061563pt;}
.ls3e{letter-spacing:0.061776pt;}
.lsb3{letter-spacing:0.062208pt;}
.lsbf{letter-spacing:0.063487pt;}
.lsab{letter-spacing:0.066693pt;}
.lse8{letter-spacing:0.068083pt;}
.ls60{letter-spacing:0.069120pt;}
.lsa2{letter-spacing:0.071823pt;}
.lsb9{letter-spacing:0.072576pt;}
.ls3a{letter-spacing:0.084649pt;}
.lsba{letter-spacing:0.086573pt;}
.ls79{letter-spacing:0.096192pt;}
.ls5f{letter-spacing:0.101376pt;}
.ls59{letter-spacing:0.105984pt;}
.lsd7{letter-spacing:0.108192pt;}
.ls3d{letter-spacing:0.109296pt;}
.ls75{letter-spacing:0.110400pt;}
.lsb2{letter-spacing:0.119232pt;}
.ls5b{letter-spacing:0.124416pt;}
.lsdc{letter-spacing:0.127008pt;}
.ls20{letter-spacing:0.130720pt;}
.lsb7{letter-spacing:0.139968pt;}
.ls16{letter-spacing:0.149598pt;}
.ls55{letter-spacing:0.151173pt;}
.ls35{letter-spacing:0.155897pt;}
.ls5c{letter-spacing:0.156672pt;}
.ls6d{letter-spacing:0.157472pt;}
.lsd3{letter-spacing:0.158493pt;}
.ls15{letter-spacing:0.161728pt;}
.ls54{letter-spacing:0.163430pt;}
.lsd2{letter-spacing:0.166835pt;}
.ls34{letter-spacing:0.168538pt;}
.ls6c{letter-spacing:0.170240pt;}
.lsb0{letter-spacing:0.174666pt;}
.lsaf{letter-spacing:0.183859pt;}
.lseb{letter-spacing:0.333984pt;}
.lsb{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.665203pt;}
.lsc{letter-spacing:3.158400pt;}
.ls31{letter-spacing:3.163733pt;}
.lsac{letter-spacing:5.304668pt;}
.ls5{letter-spacing:9.298933pt;}
.ls4f{letter-spacing:10.226652pt;}
.ls9{letter-spacing:10.626533pt;}
.lsc1{letter-spacing:11.156348pt;}
.ls7e{letter-spacing:11.766580pt;}
.lsf8{letter-spacing:11.816229pt;}
.ls43{letter-spacing:11.914138pt;}
.ls9c{letter-spacing:11.950302pt;}
.ls45{letter-spacing:11.950933pt;}
.lsf6{letter-spacing:11.954133pt;}
.ls21{letter-spacing:11.955635pt;}
.ls22{letter-spacing:11.956267pt;}
.lsfb{letter-spacing:11.959467pt;}
.ls107{letter-spacing:12.031291pt;}
.ls10e{letter-spacing:12.031373pt;}
.ls7f{letter-spacing:12.033992pt;}
.ls80{letter-spacing:12.037233pt;}
.ls101{letter-spacing:12.074400pt;}
.lsf7{letter-spacing:12.088337pt;}
.ls10c{letter-spacing:12.101653pt;}
.lsf9{letter-spacing:12.134322pt;}
.ls32{letter-spacing:13.283467pt;}
.ls3{letter-spacing:13.287756pt;}
.lsc0{letter-spacing:13.882223pt;}
.lse{letter-spacing:13.907096pt;}
.ls11{letter-spacing:13.923096pt;}
.ls64{letter-spacing:14.441701pt;}
.ls109{letter-spacing:15.166369pt;}
.ls100{letter-spacing:15.412120pt;}
.lsf{letter-spacing:15.921067pt;}
.ls10{letter-spacing:15.930746pt;}
.lsd{letter-spacing:15.937067pt;}
.lsff{letter-spacing:16.745454pt;}
.ls12{letter-spacing:18.661492pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.lsf5{letter-spacing:739.842705pt;}
.ws0{word-spacing:-81.026410pt;}
.ws52{word-spacing:-13.283467pt;}
.ws142{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.760670pt;}
.wsda{word-spacing:-12.000000pt;}
.wsbb{word-spacing:-11.955200pt;}
.ws91{word-spacing:-11.880000pt;}
.ws177{word-spacing:-11.760000pt;}
.ws140{word-spacing:-11.675059pt;}
.wsb8{word-spacing:-11.520000pt;}
.ws13f{word-spacing:-11.504989pt;}
.ws141{word-spacing:-11.491200pt;}
.ws62{word-spacing:-11.400000pt;}
.wsd8{word-spacing:-10.810240pt;}
.ws8f{word-spacing:-10.702138pt;}
.wsd7{word-spacing:-10.652768pt;}
.wsd9{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws175{word-spacing:-10.594035pt;}
.ws8e{word-spacing:-10.546240pt;}
.ws90{word-spacing:-10.533600pt;}
.ws174{word-spacing:-10.439713pt;}
.ws176{word-spacing:-10.427200pt;}
.wsb6{word-spacing:-10.377830pt;}
.ws60{word-spacing:-10.269728pt;}
.wsb5{word-spacing:-10.226657pt;}
.wsb7{word-spacing:-10.214400pt;}
.ws5f{word-spacing:-10.120130pt;}
.ws61{word-spacing:-10.108000pt;}
.ws8{word-spacing:-10.095467pt;}
.wse{word-spacing:-9.298400pt;}
.ws4a{word-spacing:-2.975497pt;}
.ws147{word-spacing:-2.922363pt;}
.ws146{word-spacing:-2.178489pt;}
.ws17d{word-spacing:-2.019087pt;}
.ws1e7{word-spacing:-2.008474pt;}
.ws54{word-spacing:-1.859685pt;}
.ws48{word-spacing:-1.700284pt;}
.wsa{word-spacing:-1.696326pt;}
.ws1f1{word-spacing:-1.530266pt;}
.ws1c1{word-spacing:-1.487748pt;}
.ws148{word-spacing:-1.434614pt;}
.ws1b7{word-spacing:-1.328347pt;}
.ws150{word-spacing:-1.264896pt;}
.ws1c0{word-spacing:-1.222079pt;}
.ws9{word-spacing:-1.175671pt;}
.ws18e{word-spacing:-1.152480pt;}
.ws18d{word-spacing:-1.147776pt;}
.ws18f{word-spacing:-1.110144pt;}
.ws111{word-spacing:-1.052058pt;}
.ws1b5{word-spacing:-1.009543pt;}
.ws41{word-spacing:-0.956410pt;}
.ws127{word-spacing:-0.877271pt;}
.ws24{word-spacing:-0.860774pt;}
.ws14f{word-spacing:-0.850176pt;}
.ws1f{word-spacing:-0.812954pt;}
.ws1c5{word-spacing:-0.765133pt;}
.ws145{word-spacing:-0.743874pt;}
.ws166{word-spacing:-0.652182pt;}
.ws115{word-spacing:-0.637606pt;}
.ws167{word-spacing:-0.600238pt;}
.wsff{word-spacing:-0.587840pt;}
.ws116{word-spacing:-0.584473pt;}
.wsac{word-spacing:-0.532224pt;}
.ws55{word-spacing:-0.531339pt;}
.ws14e{word-spacing:-0.528768pt;}
.ws70{word-spacing:-0.527987pt;}
.ws178{word-spacing:-0.526029pt;}
.wscc{word-spacing:-0.525312pt;}
.ws139{word-spacing:-0.513024pt;}
.wsad{word-spacing:-0.479952pt;}
.wscb{word-spacing:-0.465408pt;}
.ws56{word-spacing:-0.371937pt;}
.ws36{word-spacing:-0.318803pt;}
.ws173{word-spacing:-0.317434pt;}
.ws163{word-spacing:-0.294348pt;}
.ws13c{word-spacing:-0.292424pt;}
.wse8{word-spacing:-0.288576pt;}
.ws1c{word-spacing:-0.286925pt;}
.ws14c{word-spacing:-0.266596pt;}
.ws37{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.246848pt;}
.ws93{word-spacing:-0.244380pt;}
.ws181{word-spacing:-0.241911pt;}
.ws21{word-spacing:-0.239104pt;}
.wsbe{word-spacing:-0.236974pt;}
.ws162{word-spacing:-0.236632pt;}
.wscd{word-spacing:-0.235008pt;}
.ws67{word-spacing:-0.234506pt;}
.ws80{word-spacing:-0.223379pt;}
.ws8a{word-spacing:-0.218302pt;}
.ws138{word-spacing:-0.215470pt;}
.ws7f{word-spacing:-0.213226pt;}
.ws47{word-spacing:-0.212535pt;}
.ws9b{word-spacing:-0.211622pt;}
.wsce{word-spacing:-0.207360pt;}
.ws76{word-spacing:-0.203072pt;}
.wsdc{word-spacing:-0.191283pt;}
.ws9a{word-spacing:-0.174588pt;}
.ws35{word-spacing:-0.159402pt;}
.ws13e{word-spacing:-0.148777pt;}
.wsdb{word-spacing:-0.143462pt;}
.ws77{word-spacing:-0.126920pt;}
.ws2d{word-spacing:-0.106268pt;}
.wsb9{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws8c{word-spacing:-0.042078pt;}
.wsf8{word-spacing:-0.010688pt;}
.ws1ce{word-spacing:-0.008277pt;}
.ws1e5{word-spacing:-0.006451pt;}
.ws66{word-spacing:-0.005137pt;}
.ws7{word-spacing:-0.005014pt;}
.ws1e9{word-spacing:-0.004847pt;}
.ws1cc{word-spacing:-0.003755pt;}
.ws1d3{word-spacing:-0.003746pt;}
.ws5{word-spacing:-0.003377pt;}
.ws2{word-spacing:-0.003066pt;}
.ws1cb{word-spacing:-0.002944pt;}
.ws1da{word-spacing:-0.002193pt;}
.ws1c7{word-spacing:-0.002048pt;}
.ws1cf{word-spacing:-0.001417pt;}
.ws2f{word-spacing:-0.000364pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f2{word-spacing:0.000256pt;}
.wsd{word-spacing:0.001465pt;}
.ws15c{word-spacing:0.005772pt;}
.ws129{word-spacing:0.010260pt;}
.ws1af{word-spacing:0.015711pt;}
.ws19f{word-spacing:0.036660pt;}
.ws1a7{word-spacing:0.047134pt;}
.ws1d{word-spacing:0.047821pt;}
.wsfa{word-spacing:0.048096pt;}
.ws59{word-spacing:0.053134pt;}
.wsdd{word-spacing:0.073512pt;}
.ws82{word-spacing:0.076152pt;}
.wsf9{word-spacing:0.080160pt;}
.ws128{word-spacing:0.087214pt;}
.ws99{word-spacing:0.089940pt;}
.ws23{word-spacing:0.095642pt;}
.ws78{word-spacing:0.096459pt;}
.ws19e{word-spacing:0.099505pt;}
.ws81{word-spacing:0.101536pt;}
.ws15b{word-spacing:0.103680pt;}
.wsf6{word-spacing:0.105600pt;}
.ws34{word-spacing:0.106268pt;}
.ws6d{word-spacing:0.109440pt;}
.wsa4{word-spacing:0.111102pt;}
.wsb2{word-spacing:0.118800pt;}
.ws6e{word-spacing:0.123120pt;}
.ws121{word-spacing:0.124416pt;}
.ws19{word-spacing:0.127522pt;}
.wsb3{word-spacing:0.128304pt;}
.ws120{word-spacing:0.129024pt;}
.ws191{word-spacing:0.131712pt;}
.ws123{word-spacing:0.133632pt;}
.ws15a{word-spacing:0.134784pt;}
.ws190{word-spacing:0.141120pt;}
.ws110{word-spacing:0.143462pt;}
.ws13b{word-spacing:0.143647pt;}
.wsf7{word-spacing:0.144000pt;}
.ws10e{word-spacing:0.144288pt;}
.ws12a{word-spacing:0.148777pt;}
.ws159{word-spacing:0.150336pt;}
.ws4d{word-spacing:0.159402pt;}
.ws10a{word-spacing:0.160320pt;}
.wsb1{word-spacing:0.161568pt;}
.ws12e{word-spacing:0.164168pt;}
.ws6f{word-spacing:0.168720pt;}
.wsb4{word-spacing:0.175824pt;}
.wsf{word-spacing:0.185968pt;}
.ws104{word-spacing:0.187040pt;}
.ws122{word-spacing:0.188928pt;}
.ws12f{word-spacing:0.189819pt;}
.wsa3{word-spacing:0.190460pt;}
.ws64{word-spacing:0.191283pt;}
.ws158{word-spacing:0.191808pt;}
.ws16a{word-spacing:0.207775pt;}
.ws109{word-spacing:0.208416pt;}
.ws46{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.239104pt;}
.ws11{word-spacing:0.260355pt;}
.ws3a{word-spacing:0.265669pt;}
.ws1b{word-spacing:0.286925pt;}
.ws10f{word-spacing:0.318803pt;}
.ws57{word-spacing:0.371937pt;}
.ws9f{word-spacing:0.375630pt;}
.ws192{word-spacing:0.390432pt;}
.wsa0{word-spacing:0.402083pt;}
.ws2c{word-spacing:0.425071pt;}
.ws63{word-spacing:0.430387pt;}
.ws51{word-spacing:0.478205pt;}
.ws92{word-spacing:0.526029pt;}
.ws113{word-spacing:0.531339pt;}
.ws38{word-spacing:0.584473pt;}
.ws65{word-spacing:0.621670pt;}
.ws29{word-spacing:0.637606pt;}
.ws199{word-spacing:0.659877pt;}
.ws10d{word-spacing:0.668000pt;}
.ws9c{word-spacing:0.682482pt;}
.ws4e{word-spacing:0.690740pt;}
.ws10c{word-spacing:0.726784pt;}
.wsec{word-spacing:0.777600pt;}
.wseb{word-spacing:0.787200pt;}
.ws1b6{word-spacing:0.797008pt;}
.wsea{word-spacing:0.825600pt;}
.ws14a{word-spacing:0.850142pt;}
.ws40{word-spacing:0.903276pt;}
.ws1f0{word-spacing:0.908595pt;}
.wscf{word-spacing:0.964485pt;}
.ws19d{word-spacing:0.974104pt;}
.ws17a{word-spacing:1.004237pt;}
.ws85{word-spacing:1.005206pt;}
.ws180{word-spacing:1.009543pt;}
.ws1a2{word-spacing:1.010764pt;}
.ws19a{word-spacing:1.042187pt;}
.ws17b{word-spacing:1.052058pt;}
.ws5e{word-spacing:1.062677pt;}
.ws1ed{word-spacing:1.099878pt;}
.ws3f{word-spacing:1.168945pt;}
.ws1a3{word-spacing:1.183589pt;}
.ws1ef{word-spacing:1.195520pt;}
.ws117{word-spacing:1.222079pt;}
.ws1b8{word-spacing:1.275213pt;}
.ws12d{word-spacing:1.282560pt;}
.ws1e{word-spacing:1.291162pt;}
.ws1dd{word-spacing:1.338982pt;}
.ws97{word-spacing:1.349093pt;}
.ws18b{word-spacing:1.382976pt;}
.ws1ec{word-spacing:1.386803pt;}
.ws18c{word-spacing:1.392384pt;}
.ws98{word-spacing:1.396708pt;}
.wse9{word-spacing:1.411200pt;}
.ws42{word-spacing:1.434614pt;}
.ws1e6{word-spacing:1.434624pt;}
.ws179{word-spacing:1.482445pt;}
.ws1ba{word-spacing:1.487748pt;}
.ws151{word-spacing:1.518912pt;}
.ws152{word-spacing:1.539648pt;}
.ws44{word-spacing:1.540882pt;}
.ws137{word-spacing:1.564723pt;}
.ws22{word-spacing:1.578086pt;}
.ws49{word-spacing:1.647150pt;}
.ws106{word-spacing:1.667328pt;}
.ws8b{word-spacing:1.700284pt;}
.ws31{word-spacing:1.753418pt;}
.ws107{word-spacing:1.784896pt;}
.ws10{word-spacing:1.785293pt;}
.ws73{word-spacing:1.868262pt;}
.ws114{word-spacing:1.912819pt;}
.ws144{word-spacing:1.912832pt;}
.ws135{word-spacing:1.923840pt;}
.ws6a{word-spacing:1.947120pt;}
.ws6b{word-spacing:1.951680pt;}
.ws71{word-spacing:1.954568pt;}
.ws11a{word-spacing:1.967616pt;}
.ws136{word-spacing:1.975142pt;}
.ws119{word-spacing:1.976832pt;}
.ws72{word-spacing:2.005336pt;}
.ws2a{word-spacing:2.019087pt;}
.wsee{word-spacing:2.040000pt;}
.wsef{word-spacing:2.078400pt;}
.wsfe{word-spacing:2.110880pt;}
.ws1b4{word-spacing:2.125355pt;}
.ws27{word-spacing:2.178489pt;}
.ws89{word-spacing:2.188101pt;}
.wsc{word-spacing:2.229689pt;}
.ws53{word-spacing:2.231622pt;}
.ws1c9{word-spacing:2.247578pt;}
.ws13d{word-spacing:2.252175pt;}
.ws2b{word-spacing:2.284756pt;}
.wse3{word-spacing:2.308608pt;}
.wsed{word-spacing:2.313600pt;}
.wsfd{word-spacing:2.335328pt;}
.wsbc{word-spacing:2.337890pt;}
.wse1{word-spacing:2.346016pt;}
.wsf3{word-spacing:2.347200pt;}
.wsaa{word-spacing:2.347488pt;}
.ws187{word-spacing:2.356704pt;}
.wsf4{word-spacing:2.385600pt;}
.wsd5{word-spacing:2.391024pt;}
.wsf2{word-spacing:2.395200pt;}
.wsf5{word-spacing:2.419200pt;}
.wse2{word-spacing:2.436864pt;}
.wsba{word-spacing:2.486682pt;}
.ws124{word-spacing:2.503557pt;}
.wsd1{word-spacing:2.524078pt;}
.ws1ee{word-spacing:2.534502pt;}
.ws194{word-spacing:2.545240pt;}
.ws1bb{word-spacing:2.550426pt;}
.ws69{word-spacing:2.558160pt;}
.ws1aa{word-spacing:2.571426pt;}
.ws118{word-spacing:2.585088pt;}
.ws1c2{word-spacing:2.603559pt;}
.ws193{word-spacing:2.608086pt;}
.ws185{word-spacing:2.634240pt;}
.wsd2{word-spacing:2.636943pt;}
.wsab{word-spacing:2.661120pt;}
.ws186{word-spacing:2.704800pt;}
.ws1d6{word-spacing:2.725786pt;}
.wse5{word-spacing:2.730784pt;}
.wse4{word-spacing:2.757504pt;}
.ws3d{word-spacing:2.762961pt;}
.ws1d2{word-spacing:2.773606pt;}
.ws7c{word-spacing:2.777010pt;}
.wsd0{word-spacing:2.785720pt;}
.ws15f{word-spacing:2.793416pt;}
.ws3e{word-spacing:2.816095pt;}
.ws25{word-spacing:2.821427pt;}
.ws1eb{word-spacing:2.863454pt;}
.ws6c{word-spacing:2.863680pt;}
.ws1d8{word-spacing:2.864034pt;}
.ws1e2{word-spacing:2.864896pt;}
.ws1ca{word-spacing:2.866150pt;}
.ws1e4{word-spacing:2.867089pt;}
.ws1dc{word-spacing:2.867174pt;}
.ws1e3{word-spacing:2.867311pt;}
.ws5d{word-spacing:2.869229pt;}
.ws1c8{word-spacing:2.869248pt;}
.ws1cd{word-spacing:2.870673pt;}
.ws1de{word-spacing:2.917069pt;}
.ws45{word-spacing:2.975497pt;}
.wsa9{word-spacing:3.003264pt;}
.ws17f{word-spacing:3.081764pt;}
.ws39{word-spacing:3.134898pt;}
.ws169{word-spacing:3.145478pt;}
.ws17c{word-spacing:3.156173pt;}
.ws170{word-spacing:3.157021pt;}
.ws26{word-spacing:3.188032pt;}
.ws197{word-spacing:3.210355pt;}
.ws11d{word-spacing:3.216384pt;}
.ws11b{word-spacing:3.230208pt;}
.ws11c{word-spacing:3.248640pt;}
.ws1e8{word-spacing:3.251814pt;}
.ws11f{word-spacing:3.290112pt;}
.ws28{word-spacing:3.294300pt;}
.ws168{word-spacing:3.312852pt;}
.wsaf{word-spacing:3.316896pt;}
.ws4c{word-spacing:3.347434pt;}
.ws79{word-spacing:3.391302pt;}
.ws5c{word-spacing:3.400567pt;}
.ws1ea{word-spacing:3.443098pt;}
.ws4f{word-spacing:3.453701pt;}
.wsc4{word-spacing:3.502080pt;}
.ws1bf{word-spacing:3.506835pt;}
.ws1d1{word-spacing:3.538739pt;}
.wsa7{word-spacing:3.544675pt;}
.wsd6{word-spacing:3.559969pt;}
.ws198{word-spacing:3.566479pt;}
.wsb0{word-spacing:3.602016pt;}
.wsae{word-spacing:3.611520pt;}
.ws14b{word-spacing:3.613103pt;}
.ws149{word-spacing:3.666237pt;}
.ws1b3{word-spacing:3.719371pt;}
.ws1e1{word-spacing:3.730022pt;}
.ws1d4{word-spacing:3.777843pt;}
.ws11e{word-spacing:3.787776pt;}
.ws1c6{word-spacing:3.825664pt;}
.wsc6{word-spacing:3.829248pt;}
.wsc5{word-spacing:3.833856pt;}
.ws108{word-spacing:3.890432pt;}
.ws1b1{word-spacing:3.985040pt;}
.wsf0{word-spacing:4.012800pt;}
.wsf1{word-spacing:4.017600pt;}
.ws58{word-spacing:4.091308pt;}
.ws50{word-spacing:4.144442pt;}
.ws16c{word-spacing:4.247839pt;}
.ws7a{word-spacing:4.300050pt;}
.ws1d0{word-spacing:4.303872pt;}
.ws10b{word-spacing:4.307264pt;}
.ws74{word-spacing:4.320357pt;}
.ws16b{word-spacing:4.345955pt;}
.ws7b{word-spacing:4.350818pt;}
.ws1bd{word-spacing:4.356977pt;}
.ws1b9{word-spacing:4.410111pt;}
.ws1a0{word-spacing:4.477738pt;}
.ws184{word-spacing:4.525248pt;}
.ws16f{word-spacing:4.611444pt;}
.ws126{word-spacing:4.637737pt;}
.ws1e0{word-spacing:4.686438pt;}
.ws1a1{word-spacing:4.750068pt;}
.wsc3{word-spacing:4.764672pt;}
.wsc1{word-spacing:4.769280pt;}
.ws125{word-spacing:4.771123pt;}
.ws1c3{word-spacing:4.782048pt;}
.ws1c4{word-spacing:4.782080pt;}
.wsc2{word-spacing:4.796928pt;}
.wse7{word-spacing:4.868384pt;}
.ws165{word-spacing:4.894249pt;}
.ws15e{word-spacing:4.940421pt;}
.ws161{word-spacing:4.957736pt;}
.ws4b{word-spacing:4.994583pt;}
.ws160{word-spacing:5.038537pt;}
.ws1bc{word-spacing:5.047717pt;}
.ws15d{word-spacing:5.073166pt;}
.ws1ad{word-spacing:5.074769pt;}
.ws183{word-spacing:5.164992pt;}
.ws189{word-spacing:5.174400pt;}
.ws188{word-spacing:5.179104pt;}
.ws18a{word-spacing:5.183808pt;}
.ws1b2{word-spacing:5.207119pt;}
.wsd3{word-spacing:5.260253pt;}
.ws1d9{word-spacing:5.355930pt;}
.ws5a{word-spacing:5.366521pt;}
.wsc0{word-spacing:5.368320pt;}
.ws17{word-spacing:5.393072pt;}
.ws1db{word-spacing:5.403750pt;}
.ws5b{word-spacing:5.419654pt;}
.ws18{word-spacing:5.467459pt;}
.ws86{word-spacing:5.513405pt;}
.ws1df{word-spacing:5.690675pt;}
.ws154{word-spacing:5.702400pt;}
.ws155{word-spacing:5.723136pt;}
.ws153{word-spacing:5.749056pt;}
.ws134{word-spacing:5.874125pt;}
.ws13a{word-spacing:5.894646pt;}
.ws157{word-spacing:5.946048pt;}
.ws156{word-spacing:6.044544pt;}
.ws43{word-spacing:6.057261pt;}
.ws1be{word-spacing:6.110395pt;}
.ws75{word-spacing:6.117544pt;}
.ws112{word-spacing:6.163529pt;}
.wsbd{word-spacing:6.216662pt;}
.ws3c{word-spacing:6.322930pt;}
.ws3b{word-spacing:6.376064pt;}
.ws9d{word-spacing:6.428030pt;}
.wsd4{word-spacing:6.429198pt;}
.ws83{word-spacing:6.432306pt;}
.wsa6{word-spacing:6.454483pt;}
.ws84{word-spacing:6.498304pt;}
.ws9e{word-spacing:6.528551pt;}
.ws8d{word-spacing:6.535466pt;}
.wsa5{word-spacing:6.570876pt;}
.wsa8{word-spacing:6.713721pt;}
.ws100{word-spacing:6.909792pt;}
.ws1a5{word-spacing:6.933947pt;}
.ws101{word-spacing:6.947200pt;}
.wsde{word-spacing:7.013670pt;}
.ws32{word-spacing:7.226206pt;}
.ws1a4{word-spacing:7.295308pt;}
.ws2e{word-spacing:7.385607pt;}
.ws196{word-spacing:7.473370pt;}
.ws1b0{word-spacing:7.545009pt;}
.ws1a6{word-spacing:7.583350pt;}
.ws195{word-spacing:7.588587pt;}
.ws15{word-spacing:7.699075pt;}
.ws164{word-spacing:7.699208pt;}
.ws12b{word-spacing:8.090388pt;}
.ws12c{word-spacing:8.126300pt;}
.ws96{word-spacing:8.205659pt;}
.ws16e{word-spacing:8.368704pt;}
.ws16d{word-spacing:8.432191pt;}
.ws88{word-spacing:8.945322pt;}
.wse6{word-spacing:9.004640pt;}
.ws103{word-spacing:9.026016pt;}
.ws87{word-spacing:9.036704pt;}
.ws143{word-spacing:9.038131pt;}
.ws131{word-spacing:9.049743pt;}
.ws132{word-spacing:9.060004pt;}
.ws102{word-spacing:9.068768pt;}
.ws1ac{word-spacing:9.164960pt;}
.ws133{word-spacing:9.172869pt;}
.ws1ab{word-spacing:9.238280pt;}
.ws68{word-spacing:9.812846pt;}
.wsbf{word-spacing:9.916140pt;}
.ws182{word-spacing:10.118555pt;}
.ws94{word-spacing:10.226019pt;}
.ws172{word-spacing:10.232905pt;}
.ws171{word-spacing:10.250220pt;}
.wsc8{word-spacing:10.280448pt;}
.wsca{word-spacing:10.285056pt;}
.wsc7{word-spacing:10.298880pt;}
.wsc9{word-spacing:10.308096pt;}
.wse0{word-spacing:10.329312pt;}
.ws17e{word-spacing:10.361104pt;}
.wsfc{word-spacing:10.399424pt;}
.wsfb{word-spacing:10.426144pt;}
.ws95{word-spacing:10.491180pt;}
.ws105{word-spacing:10.746784pt;}
.ws19c{word-spacing:11.071272pt;}
.ws19b{word-spacing:11.086983pt;}
.ws14d{word-spacing:11.151060pt;}
.ws1d7{word-spacing:11.476992pt;}
.ws1a8{word-spacing:12.652882pt;}
.ws1a9{word-spacing:12.815233pt;}
.ws130{word-spacing:13.000028pt;}
.wsb{word-spacing:13.763148pt;}
.ws12{word-spacing:14.348669pt;}
.ws13{word-spacing:14.356730pt;}
.ws1d5{word-spacing:14.633165pt;}
.ws7d{word-spacing:14.783642pt;}
.ws7e{word-spacing:14.803949pt;}
.ws14{word-spacing:15.732893pt;}
.ws1ae{word-spacing:15.774205pt;}
.wsa1{word-spacing:18.776197pt;}
.wsa2{word-spacing:18.786779pt;}
.ws16{word-spacing:24.399002pt;}
.ws33{word-spacing:25.344854pt;}
.ws6{word-spacing:35.593054pt;}
._1{margin-left:-6.876146pt;}
._2{margin-left:-5.898175pt;}
._9{margin-left:-4.797974pt;}
._7{margin-left:-3.644973pt;}
._8{margin-left:-2.752326pt;}
._0{margin-left:-1.721549pt;}
._6{width:0.969929pt;}
._4{width:2.668914pt;}
._20{width:7.952653pt;}
._1b{width:10.118576pt;}
._a{width:11.530016pt;}
._c{width:13.676749pt;}
._e{width:14.872269pt;}
._d{width:15.780864pt;}
._16{width:16.811567pt;}
._13{width:17.802479pt;}
._17{width:19.627662pt;}
._15{width:21.003804pt;}
._12{width:22.103689pt;}
._f{width:23.006964pt;}
._1e{width:24.069642pt;}
._18{width:25.185453pt;}
._3{width:26.569622pt;}
._19{width:27.704010pt;}
._b{width:29.011008pt;}
._25{width:30.020635pt;}
._24{width:31.720918pt;}
._14{width:36.024762pt;}
._27{width:54.993920pt;}
._5{width:61.641379pt;}
._26{width:78.904320pt;}
._10{width:613.791691pt;}
._1a{width:2035.290275pt;}
._1d{width:2056.714383pt;}
._23{width:2078.854180pt;}
._1c{width:2120.986708pt;}
._1f{width:2142.410816pt;}
._22{width:2156.343733pt;}
._11{width:2177.597067pt;}
._21{width:2290.982158pt;}
.fsf{font-size:30.400000pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:40.432000pt;}
.fs13{font-size:40.857600pt;}
.fs1c{font-size:41.708800pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs10{font-size:42.134400pt;}
.fs8{font-size:42.507200pt;}
.fs16{font-size:42.560000pt;}
.fse{font-size:45.600000pt;}
.fs19{font-size:45.964800pt;}
.fs15{font-size:46.080000pt;}
.fs1e{font-size:47.040000pt;}
.fs12{font-size:47.520000pt;}
.fs9{font-size:47.820800pt;}
.fs18{font-size:48.000000pt;}
.fsd{font-size:50.768000pt;}
.fs14{font-size:51.302400pt;}
.fs1b{font-size:51.840000pt;}
.fs1d{font-size:52.371200pt;}
.fs11{font-size:52.905600pt;}
.fs1{font-size:53.133867pt;}
.fs17{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs1a{font-size:57.715200pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:104.147056pt;}
.y177{bottom:-456.275666pt;}
.y176{bottom:-439.840942pt;}
.y1dd{bottom:-437.180770pt;}
.y175{bottom:-423.406218pt;}
.y1dc{bottom:-417.893766pt;}
.y1af{bottom:-410.384183pt;}
.y174{bottom:-407.048448pt;}
.ye6{bottom:-406.171532pt;}
.y1db{bottom:-401.116653pt;}
.y1ae{bottom:-391.895119pt;}
.y173{bottom:-390.613724pt;}
.ye5{bottom:-389.984155pt;}
.y1da{bottom:-384.418095pt;}
.y172{bottom:-374.255954pt;}
.ye4{bottom:-373.720627pt;}
.ye3{bottom:-373.712872pt;}
.y1ad{bottom:-373.406054pt;}
.y14f{bottom:-372.169720pt;}
.y1d9{bottom:-367.640981pt;}
.y171{bottom:-357.821230pt;}
.ye2{bottom:-357.525495pt;}
.y14e{bottom:-355.130376pt;}
.y1ac{bottom:-355.003563pt;}
.y1d8{bottom:-350.863868pt;}
.y170{bottom:-341.386506pt;}
.ye1{bottom:-341.261967pt;}
.y14d{bottom:-338.010872pt;}
.y1ab{bottom:-336.514499pt;}
.y1d7{bottom:-334.165310pt;}
.y16f{bottom:-325.028736pt;}
.ye0{bottom:-324.998438pt;}
.y14c{bottom:-320.891368pt;}
.y1aa{bottom:-318.112007pt;}
.y1d6{bottom:-317.388197pt;}
.y16e{bottom:-308.594012pt;}
.ydf{bottom:-305.009807pt;}
.y14b{bottom:-303.852024pt;}
.y1d5{bottom:-300.689639pt;}
.y1a9{bottom:-299.622943pt;}
.y16d{bottom:-292.234959pt;}
.yde{bottom:-288.746278pt;}
.y14a{bottom:-286.732520pt;}
.y1d4{bottom:-283.912525pt;}
.y1a8{bottom:-281.133878pt;}
.y16c{bottom:-275.800236pt;}
.y149{bottom:-269.693176pt;}
.y1d3{bottom:-267.135412pt;}
.y1a7{bottom:-262.731387pt;}
.y16b{bottom:-259.365512pt;}
.ydd{bottom:-257.282810pt;}
.y148{bottom:-252.573672pt;}
.y1d2{bottom:-250.436854pt;}
.y1a6{bottom:-244.242323pt;}
.y16a{bottom:-243.007741pt;}
.ydc{bottom:-241.095433pt;}
.y147{bottom:-235.454168pt;}
.y1d1{bottom:-233.659741pt;}
.y169{bottom:-226.573018pt;}
.y1a5{bottom:-225.753258pt;}
.ydb{bottom:-224.831905pt;}
.y146{bottom:-218.414824pt;}
.y1d0{bottom:-216.961183pt;}
.y168{bottom:-210.138294pt;}
.yda{bottom:-208.644528pt;}
.y1a4{bottom:-207.350767pt;}
.y145{bottom:-201.295320pt;}
.y1cf{bottom:-200.184069pt;}
.yd9{bottom:-192.380999pt;}
.y167{bottom:-189.939256pt;}
.y1a3{bottom:-188.861702pt;}
.y144{bottom:-184.255976pt;}
.y1ce{bottom:-183.406956pt;}
.yd8{bottom:-176.117470pt;}
.y1a2{bottom:-170.459211pt;}
.y143{bottom:-167.136472pt;}
.y1cd{bottom:-166.707089pt;}
.yd7{bottom:-159.930093pt;}
.y166{bottom:-158.144594pt;}
.y1a1{bottom:-151.970147pt;}
.y142{bottom:-150.016968pt;}
.y1cc{bottom:-149.929975pt;}
.yd6{bottom:-143.666565pt;}
.y165{bottom:-141.786824pt;}
.y120{bottom:-141.556142pt;}
.y1a0{bottom:-133.481082pt;}
.y1cb{bottom:-133.152861pt;}
.y141{bottom:-128.976304pt;}
.yd5{bottom:-127.479188pt;}
.y164{bottom:-125.352100pt;}
.y11f{bottom:-125.198372pt;}
.y140{bottom:-111.856800pt;}
.yd4{bottom:-111.215659pt;}
.y19f{bottom:-110.758608pt;}
.y163{bottom:-108.917376pt;}
.y11e{bottom:-108.763648pt;}
.y1ca{bottom:-101.165661pt;}
.yd3{bottom:-94.952130pt;}
.y1c9{bottom:-85.956453pt;}
.y13f{bottom:-79.137733pt;}
.yd2{bottom:-78.764753pt;}
.y162{bottom:-77.582464pt;}
.y11d{bottom:-77.353344pt;}
.y19e{bottom:-75.421872pt;}
.y1c8{bottom:-70.903653pt;}
.y110{bottom:-65.350428pt;}
.y13e{bottom:-63.697333pt;}
.y161{bottom:-62.683648pt;}
.y11c{bottom:-62.530560pt;}
.y19d{bottom:-58.746240pt;}
.y1c7{bottom:-55.850853pt;}
.y10f{bottom:-50.064432pt;}
.y13d{bottom:-48.337333pt;}
.y160{bottom:-47.938048pt;}
.y11b{bottom:-47.784960pt;}
.yd1{bottom:-47.681513pt;}
.y19c{bottom:-42.070608pt;}
.y1c6{bottom:-40.798053pt;}
.y10e{bottom:-34.858032pt;}
.y15f{bottom:-33.192448pt;}
.yd0{bottom:-33.013133pt;}
.y11a{bottom:-32.962176pt;}
.y13c{bottom:-32.896933pt;}
.y1c5{bottom:-25.666461pt;}
.y19b{bottom:-25.481808pt;}
.y10d{bottom:-19.651632pt;}
.y15e{bottom:-18.446848pt;}
.ycf{bottom:-18.344753pt;}
.y119{bottom:-18.216576pt;}
.y13b{bottom:-17.536933pt;}
.y1c4{bottom:-6.223261pt;}
.y19a{bottom:-4.054608pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:0.073519pt;}
.yce{bottom:0.503247pt;}
.y15d{bottom:0.676224pt;}
.y118{bottom:0.906624pt;}
.y13a{bottom:2.385203pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:15.478130pt;}
.y4d{bottom:28.346667pt;}
.y23b{bottom:82.048000pt;}
.y159{bottom:88.890667pt;}
.y25{bottom:91.398667pt;}
.y275{bottom:92.050667pt;}
.y4c{bottom:92.108000pt;}
.ye9{bottom:92.308000pt;}
.ybc{bottom:92.449333pt;}
.y222{bottom:94.441333pt;}
.y83{bottom:95.621333pt;}
.y23a{bottom:97.390667pt;}
.y1f6{bottom:103.676000pt;}
.y158{bottom:105.628000pt;}
.y24{bottom:107.298667pt;}
.y274{bottom:107.393333pt;}
.y4b{bottom:108.844000pt;}
.y128{bottom:109.126667pt;}
.ybb{bottom:109.186667pt;}
.ye8{bottom:109.404000pt;}
.y221{bottom:111.178667pt;}
.y82{bottom:112.358667pt;}
.y239{bottom:112.733333pt;}
.y1f5{bottom:120.413333pt;}
.y157{bottom:122.365333pt;}
.y273{bottom:122.736000pt;}
.y23{bottom:123.200000pt;}
.y4a{bottom:125.581333pt;}
.y127{bottom:125.864000pt;}
.yba{bottom:125.924000pt;}
.ye7{bottom:126.500000pt;}
.y220{bottom:127.916000pt;}
.y238{bottom:128.076000pt;}
.y81{bottom:129.096000pt;}
.y1f4{bottom:137.150667pt;}
.y272{bottom:138.078667pt;}
.y22{bottom:139.100000pt;}
.y49{bottom:142.318667pt;}
.y126{bottom:142.601333pt;}
.yb8{bottom:142.661333pt;}
.y156{bottom:143.088000pt;}
.y237{bottom:143.418667pt;}
.y21f{bottom:144.653333pt;}
.y80{bottom:145.833333pt;}
.ycb{bottom:146.436000pt;}
.yb9{bottom:147.482667pt;}
.y271{bottom:153.421333pt;}
.y1f3{bottom:153.888000pt;}
.y21{bottom:155.000000pt;}
.y155{bottom:157.036000pt;}
.y48{bottom:159.056000pt;}
.y125{bottom:159.338667pt;}
.yb7{bottom:159.398667pt;}
.y21e{bottom:161.390667pt;}
.y7f{bottom:162.570667pt;}
.y236{bottom:162.746667pt;}
.y114{bottom:167.486667pt;}
.y270{bottom:168.762667pt;}
.y1c0{bottom:169.446667pt;}
.y1f2{bottom:170.625333pt;}
.y20{bottom:170.901333pt;}
.y47{bottom:175.793333pt;}
.yb6{bottom:176.136000pt;}
.y21d{bottom:178.128000pt;}
.y196{bottom:178.658667pt;}
.y7e{bottom:179.308000pt;}
.y26f{bottom:184.105333pt;}
.y113{bottom:184.582667pt;}
.y1bf{bottom:186.182667pt;}
.y1f{bottom:186.801333pt;}
.y1f1{bottom:187.362667pt;}
.y124{bottom:189.174667pt;}
.y154{bottom:189.396000pt;}
.y46{bottom:192.530667pt;}
.y235{bottom:192.634667pt;}
.y21c{bottom:194.865333pt;}
.y195{bottom:195.396000pt;}
.y7d{bottom:196.045333pt;}
.yb5{bottom:196.858667pt;}
.y26e{bottom:199.448000pt;}
.y112{bottom:201.678667pt;}
.y1e{bottom:202.701333pt;}
.y1be{bottom:202.920000pt;}
.y1f0{bottom:204.098667pt;}
.y123{bottom:206.270667pt;}
.y153{bottom:206.490667pt;}
.y234{bottom:208.256000pt;}
.y45{bottom:209.268000pt;}
.y21b{bottom:211.602667pt;}
.y194{bottom:212.133333pt;}
.y7c{bottom:212.782667pt;}
.y26d{bottom:214.790667pt;}
.y111{bottom:218.774667pt;}
.y1bd{bottom:219.657333pt;}
.y1ef{bottom:220.836000pt;}
.y122{bottom:223.366667pt;}
.y15c{bottom:223.396339pt;}
.y152{bottom:223.586667pt;}
.y233{bottom:223.877333pt;}
.y44{bottom:226.005333pt;}
.yb4{bottom:226.746667pt;}
.y21a{bottom:228.340000pt;}
.y193{bottom:228.870667pt;}
.y26c{bottom:230.133333pt;}
.y15b{bottom:231.613824pt;}
.y7b{bottom:233.504000pt;}
.y1bc{bottom:236.394667pt;}
.y1ee{bottom:237.573333pt;}
.yfa{bottom:238.712000pt;}
.y232{bottom:239.498667pt;}
.y121{bottom:240.462667pt;}
.y151{bottom:240.682667pt;}
.y43{bottom:242.742667pt;}
.yb3{bottom:243.484000pt;}
.y219{bottom:245.077333pt;}
.y26b{bottom:245.476000pt;}
.y192{bottom:245.608000pt;}
.y7a{bottom:251.437333pt;}
.y1bb{bottom:253.132000pt;}
.y1ed{bottom:254.310667pt;}
.y231{bottom:255.120000pt;}
.y150{bottom:257.778667pt;}
.yb1{bottom:260.221333pt;}
.y115{bottom:260.400000pt;}
.y26a{bottom:260.818667pt;}
.y218{bottom:261.814667pt;}
.y191{bottom:262.345333pt;}
.y42{bottom:263.465333pt;}
.yb2{bottom:265.042667pt;}
.y1ba{bottom:269.869333pt;}
.y1ec{bottom:271.048000pt;}
.y1d{bottom:273.154667pt;}
.y269{bottom:276.161333pt;}
.yb0{bottom:276.958667pt;}
.y131{bottom:277.716000pt;}
.y217{bottom:278.552000pt;}
.y230{bottom:278.712000pt;}
.y190{bottom:279.082667pt;}
.y79{bottom:281.325333pt;}
.y1b9{bottom:286.606667pt;}
.y1eb{bottom:287.785333pt;}
.y1c{bottom:289.054667pt;}
.y268{bottom:291.502667pt;}
.yaf{bottom:293.696000pt;}
.y216{bottom:295.289333pt;}
.y18f{bottom:295.820000pt;}
.y78{bottom:298.062667pt;}
.y22f{bottom:302.302667pt;}
.y1b8{bottom:303.344000pt;}
.y1ea{bottom:304.522667pt;}
.y1b{bottom:304.954667pt;}
.y267{bottom:306.845333pt;}
.yae{bottom:310.433333pt;}
.y215{bottom:312.026667pt;}
.y18e{bottom:312.557333pt;}
.y77{bottom:314.800000pt;}
.y1a{bottom:320.856000pt;}
.y1e9{bottom:321.260000pt;}
.y266{bottom:322.188000pt;}
.y1b7{bottom:324.066667pt;}
.y22e{bottom:325.894667pt;}
.yad{bottom:327.169333pt;}
.y214{bottom:328.764000pt;}
.y18d{bottom:329.294667pt;}
.y41{bottom:330.265333pt;}
.y76{bottom:331.537333pt;}
.y265{bottom:337.530667pt;}
.y1e8{bottom:337.997333pt;}
.yab{bottom:343.906667pt;}
.y213{bottom:345.501333pt;}
.y18c{bottom:346.032000pt;}
.y40{bottom:347.560000pt;}
.y75{bottom:348.274667pt;}
.yac{bottom:348.729333pt;}
.y22d{bottom:349.486667pt;}
.y264{bottom:352.873333pt;}
.y1b6{bottom:353.954667pt;}
.y19{bottom:354.688000pt;}
.y1e7{bottom:354.734667pt;}
.yaa{bottom:360.644000pt;}
.y212{bottom:362.238667pt;}
.y18b{bottom:362.769333pt;}
.y74{bottom:365.012000pt;}
.y22c{bottom:365.108000pt;}
.y263{bottom:368.216000pt;}
.y18{bottom:370.589333pt;}
.y1b5{bottom:370.692000pt;}
.y1e6{bottom:371.472000pt;}
.ya9{bottom:377.381333pt;}
.y211{bottom:378.976000pt;}
.y18a{bottom:379.506667pt;}
.y22b{bottom:380.729333pt;}
.y3f{bottom:380.796000pt;}
.y73{bottom:381.749333pt;}
.y262{bottom:383.558667pt;}
.y139{bottom:384.145867pt;}
.y17{bottom:386.489333pt;}
.y1b4{bottom:387.429333pt;}
.y1e5{bottom:388.209333pt;}
.ya8{bottom:394.118667pt;}
.y210{bottom:395.713333pt;}
.y22a{bottom:396.350667pt;}
.y3e{bottom:398.090667pt;}
.y72{bottom:398.486667pt;}
.y261{bottom:398.901333pt;}
.y189{bottom:400.229333pt;}
.y138{bottom:401.185211pt;}
.y1e4{bottom:404.946667pt;}
.y10b{bottom:407.716457pt;}
.ya7{bottom:410.856000pt;}
.y229{bottom:411.972000pt;}
.y20f{bottom:412.450667pt;}
.y260{bottom:414.244000pt;}
.y71{bottom:415.224000pt;}
.y3d{bottom:415.386667pt;}
.y1b3{bottom:417.265333pt;}
.y137{bottom:418.304715pt;}
.y16{bottom:418.330667pt;}
.y10a{bottom:424.664766pt;}
.y20e{bottom:429.188000pt;}
.y25f{bottom:429.585333pt;}
.y188{bottom:430.117333pt;}
.ya6{bottom:431.578667pt;}
.y70{bottom:431.961333pt;}
.y3c{bottom:432.681333pt;}
.y1b2{bottom:434.361333pt;}
.y1e3{bottom:434.782667pt;}
.y136{bottom:435.424219pt;}
.y228{bottom:435.564000pt;}
.y109{bottom:441.613075pt;}
.y25e{bottom:444.928000pt;}
.y20d{bottom:445.925333pt;}
.y187{bottom:446.854667pt;}
.y6f{bottom:448.698667pt;}
.y3b{bottom:449.976000pt;}
.y15{bottom:450.170667pt;}
.y227{bottom:451.185333pt;}
.y1b1{bottom:451.457333pt;}
.y1e2{bottom:451.878667pt;}
.y135{bottom:452.463563pt;}
.y108{bottom:458.483348pt;}
.y25d{bottom:460.270667pt;}
.ya5{bottom:461.466667pt;}
.y20c{bottom:462.662667pt;}
.y186{bottom:463.592000pt;}
.y6e{bottom:465.436000pt;}
.y14{bottom:466.070667pt;}
.y226{bottom:466.806667pt;}
.y3a{bottom:467.272000pt;}
.y1b0{bottom:468.553333pt;}
.y1e1{bottom:468.974667pt;}
.y134{bottom:469.583067pt;}
.ycd{bottom:474.439361pt;}
.y107{bottom:475.431657pt;}
.y25c{bottom:475.613333pt;}
.ya4{bottom:478.204000pt;}
.y20b{bottom:479.398667pt;}
.y185{bottom:480.329333pt;}
.y1c3{bottom:481.895256pt;}
.y13{bottom:481.972000pt;}
.y6d{bottom:482.173333pt;}
.y225{bottom:482.428000pt;}
.ycc{bottom:482.571247pt;}
.y39{bottom:484.566667pt;}
.y1e0{bottom:486.070667pt;}
.y197{bottom:488.490667pt;}
.y1c2{bottom:490.283939pt;}
.y25b{bottom:490.956000pt;}
.y106{bottom:492.301931pt;}
.ya3{bottom:494.941333pt;}
.y20a{bottom:496.136000pt;}
.y184{bottom:497.066667pt;}
.y12{bottom:497.872000pt;}
.y224{bottom:498.049333pt;}
.y6c{bottom:498.910667pt;}
.y38{bottom:501.862667pt;}
.y1df{bottom:503.166667pt;}
.y25a{bottom:506.298667pt;}
.y105{bottom:509.250240pt;}
.ya1{bottom:511.678667pt;}
.y209{bottom:512.873333pt;}
.y11{bottom:513.772000pt;}
.y183{bottom:513.802667pt;}
.y6b{bottom:515.648000pt;}
.ya2{bottom:516.500000pt;}
.y133{bottom:516.863187pt;}
.y37{bottom:519.157333pt;}
.y1de{bottom:520.262667pt;}
.y259{bottom:521.641333pt;}
.y132{bottom:525.423067pt;}
.y104{bottom:526.198548pt;}
.y208{bottom:529.610667pt;}
.y10{bottom:529.673333pt;}
.y182{bottom:530.540000pt;}
.y6a{bottom:532.384000pt;}
.ya0{bottom:532.401333pt;}
.y36{bottom:536.452000pt;}
.y258{bottom:536.984000pt;}
.y1c1{bottom:540.200000pt;}
.y199{bottom:540.870322pt;}
.y103{bottom:543.067499pt;}
.yf{bottom:545.573333pt;}
.y207{bottom:546.348000pt;}
.y181{bottom:547.277333pt;}
.y69{bottom:549.121333pt;}
.y198{bottom:550.114992pt;}
.y257{bottom:552.325333pt;}
.y35{bottom:553.748000pt;}
.y102{bottom:560.015808pt;}
.ye{bottom:561.473333pt;}
.y9f{bottom:562.289333pt;}
.y206{bottom:563.085333pt;}
.y180{bottom:564.014667pt;}
.y68{bottom:565.858667pt;}
.y256{bottom:567.668000pt;}
.y34{bottom:571.042667pt;}
.y101{bottom:576.884759pt;}
.yd{bottom:577.374667pt;}
.y9e{bottom:579.026667pt;}
.y205{bottom:579.822667pt;}
.y17f{bottom:580.752000pt;}
.y67{bottom:582.596000pt;}
.y255{bottom:583.010667pt;}
.y33{bottom:588.337333pt;}
.yc{bottom:593.274667pt;}
.y100{bottom:593.833068pt;}
.y9d{bottom:595.764000pt;}
.y204{bottom:596.560000pt;}
.y17e{bottom:597.489333pt;}
.y254{bottom:598.353333pt;}
.y66{bottom:599.333333pt;}
.y32{bottom:605.633333pt;}
.yff{bottom:610.781376pt;}
.y9b{bottom:612.501333pt;}
.y9{bottom:613.160048pt;}
.y203{bottom:613.297333pt;}
.y253{bottom:613.696000pt;}
.y17d{bottom:614.226667pt;}
.yca{bottom:614.493333pt;}
.y65{bottom:616.070667pt;}
.y9c{bottom:617.322667pt;}
.y31{bottom:622.928000pt;}
.yfe{bottom:627.650327pt;}
.y252{bottom:629.038667pt;}
.y9a{bottom:629.237333pt;}
.y202{bottom:630.034667pt;}
.yc9{bottom:631.230667pt;}
.y64{bottom:632.808000pt;}
.y30{bottom:640.224000pt;}
.y17c{bottom:644.062667pt;}
.y251{bottom:644.381333pt;}
.yfd{bottom:644.598636pt;}
.y201{bottom:646.772000pt;}
.yc8{bottom:647.968000pt;}
.y63{bottom:649.545333pt;}
.yf9{bottom:649.561333pt;}
.y99{bottom:649.960000pt;}
.y250{bottom:659.724000pt;}
.y17b{bottom:661.158667pt;}
.y200{bottom:663.509333pt;}
.y130{bottom:663.908000pt;}
.yc7{bottom:664.705333pt;}
.y62{bottom:666.282667pt;}
.yf8{bottom:666.298667pt;}
.y2f{bottom:674.345333pt;}
.y24f{bottom:675.066667pt;}
.y17a{bottom:678.254667pt;}
.y98{bottom:679.848000pt;}
.y1ff{bottom:680.246667pt;}
.yf7{bottom:680.609333pt;}
.y12f{bottom:680.645333pt;}
.yc6{bottom:681.442667pt;}
.y61{bottom:683.020000pt;}
.yf6{bottom:683.036000pt;}
.y24e{bottom:690.408000pt;}
.yfc{bottom:691.405955pt;}
.y2e{bottom:692.549333pt;}
.y179{bottom:695.350667pt;}
.y97{bottom:696.585333pt;}
.y1fe{bottom:696.984000pt;}
.y12e{bottom:697.382667pt;}
.yc5{bottom:698.180000pt;}
.y60{bottom:699.757333pt;}
.yf5{bottom:699.773333pt;}
.yfb{bottom:699.880236pt;}
.y223{bottom:700.969333pt;}
.y2d{bottom:703.037333pt;}
.y24d{bottom:705.750667pt;}
.y178{bottom:712.446667pt;}
.y96{bottom:713.322667pt;}
.y1fd{bottom:713.721333pt;}
.y12d{bottom:714.120000pt;}
.yc4{bottom:714.917333pt;}
.y5f{bottom:716.494667pt;}
.yf4{bottom:716.510667pt;}
.y24c{bottom:721.093333pt;}
.y2c{bottom:721.241333pt;}
.y95{bottom:730.060000pt;}
.y1fc{bottom:730.458667pt;}
.y12c{bottom:730.857333pt;}
.yc3{bottom:731.654667pt;}
.y15a{bottom:732.384000pt;}
.y5e{bottom:733.232000pt;}
.yf3{bottom:733.248000pt;}
.y2b{bottom:735.588000pt;}
.y24b{bottom:736.436000pt;}
.y94{bottom:744.370667pt;}
.y92{bottom:746.797333pt;}
.y1fb{bottom:747.196000pt;}
.y12b{bottom:747.594667pt;}
.yc2{bottom:748.392000pt;}
.y2a{bottom:749.933333pt;}
.y5d{bottom:749.969333pt;}
.y93{bottom:751.618667pt;}
.y24a{bottom:751.778667pt;}
.yf2{bottom:753.970667pt;}
.y91{bottom:763.534667pt;}
.y1fa{bottom:763.933333pt;}
.y29{bottom:764.280000pt;}
.y12a{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y249{bottom:767.121333pt;}
.y117{bottom:767.524339pt;}
.yf1{bottom:767.918667pt;}
.yc1{bottom:769.113333pt;}
.y28{bottom:774.769333pt;}
.y116{bottom:775.741824pt;}
.y1f9{bottom:780.670667pt;}
.y129{bottom:781.069333pt;}
.y248{bottom:782.464000pt;}
.yc0{bottom:783.061333pt;}
.y5b{bottom:783.444000pt;}
.y90{bottom:784.257333pt;}
.y27{bottom:789.114667pt;}
.y1f8{bottom:797.408000pt;}
.yf0{bottom:797.806667pt;}
.y5a{bottom:800.181333pt;}
.ybf{bottom:800.994667pt;}
.y26{bottom:807.318667pt;}
.y246{bottom:813.148000pt;}
.y247{bottom:813.149333pt;}
.y8f{bottom:814.145333pt;}
.yef{bottom:814.544000pt;}
.y59{bottom:816.918667pt;}
.y245{bottom:828.490667pt;}
.y8e{bottom:830.882667pt;}
.yee{bottom:831.281333pt;}
.y58{bottom:833.656000pt;}
.y8{bottom:842.869333pt;}
.y244{bottom:843.833333pt;}
.y8d{bottom:845.193333pt;}
.y8c{bottom:847.620000pt;}
.yed{bottom:848.018667pt;}
.y57{bottom:850.393333pt;}
.y243{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.y8a{bottom:864.357333pt;}
.yec{bottom:864.754667pt;}
.y56{bottom:867.130667pt;}
.y1f7{bottom:868.341333pt;}
.y8b{bottom:869.178667pt;}
.y242{bottom:874.518667pt;}
.y89{bottom:881.094667pt;}
.yeb{bottom:881.492000pt;}
.y55{bottom:883.868000pt;}
.ybe{bottom:885.078667pt;}
.y241{bottom:889.861333pt;}
.yea{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y54{bottom:900.605333pt;}
.y88{bottom:901.816000pt;}
.y240{bottom:905.204000pt;}
.ybd{bottom:914.966667pt;}
.y53{bottom:917.342667pt;}
.y23f{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y87{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y23e{bottom:935.889333pt;}
.y86{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y23d{bottom:951.230667pt;}
.y85{bottom:965.178667pt;}
.y23c{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.ha{height:27.076941pt;}
.hb{height:27.300102pt;}
.h13{height:28.023859pt;}
.h14{height:29.397999pt;}
.h9{height:29.433775pt;}
.h1c{height:29.514570pt;}
.h1b{height:29.652766pt;}
.h2e{height:29.825250pt;}
.h2d{height:29.964900pt;}
.h8{height:30.399505pt;}
.h48{height:30.446609pt;}
.h47{height:30.589169pt;}
.h27{height:30.757289pt;}
.h26{height:30.901303pt;}
.hd{height:30.945242pt;}
.h34{height:31.067969pt;}
.h12{height:31.200285pt;}
.h33{height:31.213438pt;}
.h1f{height:33.287109pt;}
.h3a{height:33.378918pt;}
.h1e{height:33.442969pt;}
.h40{height:33.553406pt;}
.h31{height:33.637500pt;}
.h3f{height:33.710513pt;}
.h30{height:33.795000pt;}
.h4b{height:34.338281pt;}
.he{height:34.430976pt;}
.h4a{height:34.499062pt;}
.h2b{height:34.688672pt;}
.hf{height:34.813542pt;}
.h2a{height:34.851094pt;}
.h22{height:34.959406pt;}
.h38{height:35.039062pt;}
.h23{height:35.100467pt;}
.h37{height:35.203125pt;}
.h21{height:36.836547pt;}
.h19{height:36.873667pt;}
.h1d{height:37.059648pt;}
.h17{height:37.087439pt;}
.h3d{height:37.224300pt;}
.h20{height:37.233172pt;}
.h2f{height:37.449750pt;}
.h3c{height:37.625100pt;}
.h43{height:37.842188pt;}
.h42{height:38.019375pt;}
.h49{height:38.229953pt;}
.h10{height:38.256384pt;}
.h4c{height:38.408956pt;}
.h28{height:38.620055pt;}
.h11{height:38.681455pt;}
.h39{height:38.775312pt;}
.h29{height:38.800884pt;}
.h4{height:39.000258pt;}
.h35{height:39.010156pt;}
.h36{height:39.192812pt;}
.h44{height:41.877338pt;}
.h41{height:42.130969pt;}
.h45{height:42.328238pt;}
.h2{height:45.271688pt;}
.h15{height:47.309193pt;}
.h6{height:48.365611pt;}
.h16{height:48.683332pt;}
.h18{height:48.688666pt;}
.h24{height:57.021193pt;}
.h5{height:68.861952pt;}
.h3{height:70.611704pt;}
.h3b{height:195.042560pt;}
.h32{height:368.638667pt;}
.h25{height:389.834280pt;}
.h1a{height:447.044667pt;}
.h46{height:455.003547pt;}
.h3e{height:506.710080pt;}
.h2c{height:734.796800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.447272pt;}
.w9{width:635.650560pt;}
.w4{width:663.933213pt;}
.w7{width:665.364667pt;}
.wa{width:666.425611pt;}
.w8{width:674.944128pt;}
.w6{width:675.739904pt;}
.w5{width:690.505992pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9c{left:-57.494880pt;}
.x9e{left:-26.909280pt;}
.x88{left:-14.138000pt;}
.xab{left:-8.381483pt;}
.x0{left:0.000000pt;}
.x65{left:2.487480pt;}
.x77{left:6.330624pt;}
.x8a{left:14.182000pt;}
.xac{left:19.372117pt;}
.x4{left:26.021437pt;}
.x72{left:27.172992pt;}
.x67{left:29.391480pt;}
.x78{left:33.517824pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.326335pt;}
.x76{left:58.978923pt;}
.xaa{left:63.640523pt;}
.x64{left:64.885587pt;}
.x6c{left:76.346667pt;}
.x9b{left:79.025333pt;}
.xb6{left:119.300000pt;}
.x90{left:120.918667pt;}
.x6d{left:127.654667pt;}
.x91{left:128.893333pt;}
.x9f{left:130.252320pt;}
.x7b{left:144.041333pt;}
.x7c{left:153.342667pt;}
.x89{left:159.702000pt;}
.xa0{left:160.837819pt;}
.xae{left:161.981809pt;}
.x69{left:167.635569pt;}
.x96{left:168.729818pt;}
.x71{left:171.237885pt;}
.x7a{left:173.217114pt;}
.x8b{left:188.021906pt;}
.xad{left:189.735317pt;}
.x68{left:194.539480pt;}
.x95{left:195.916928pt;}
.x70{left:199.274592pt;}
.x79{left:200.404224pt;}
.x8c{left:203.201333pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x6{left:241.085333pt;}
.x3f{left:242.560000pt;}
.xbe{left:247.230667pt;}
.x40{left:248.272000pt;}
.xa{left:251.365333pt;}
.x56{left:253.616000pt;}
.x7d{left:259.041333pt;}
.xbf{left:260.513333pt;}
.x55{left:262.285333pt;}
.xc0{left:263.888000pt;}
.x5a{left:265.662667pt;}
.xb8{left:269.684000pt;}
.x5b{left:273.868000pt;}
.x8{left:275.058667pt;}
.x84{left:277.666667pt;}
.x87{left:279.408000pt;}
.xc1{left:280.545333pt;}
.x22{left:281.802667pt;}
.xb9{left:282.966667pt;}
.x83{left:284.877333pt;}
.x9{left:286.553333pt;}
.xc4{left:288.154667pt;}
.xa5{left:289.676000pt;}
.x85{left:290.950667pt;}
.x41{left:292.297333pt;}
.xc2{left:293.828000pt;}
.x23{left:295.085333pt;}
.x8d{left:296.986667pt;}
.x24{left:298.413333pt;}
.xba{left:299.574667pt;}
.x31{left:301.273333pt;}
.x8e{left:304.372000pt;}
.x42{left:305.580000pt;}
.x86{left:307.489333pt;}
.xc3{left:310.486667pt;}
.x25{left:311.697333pt;}
.xaf{left:316.977333pt;}
.x6a{left:321.079480pt;}
.x6b{left:333.315480pt;}
.xcf{left:336.416000pt;}
.x99{left:341.032000pt;}
.x6e{left:346.685333pt;}
.x32{left:349.088000pt;}
.x35{left:355.121333pt;}
.x75{left:362.968000pt;}
.x36{left:368.404000pt;}
.x6f{left:370.317333pt;}
.x37{left:371.792000pt;}
.x92{left:373.372000pt;}
.x18{left:375.842667pt;}
.x19{left:382.484000pt;}
.x38{left:385.076000pt;}
.x93{left:386.656000pt;}
.x51{left:390.912000pt;}
.x14{left:393.461333pt;}
.x29{left:395.741333pt;}
.x98{left:398.232000pt;}
.x15{left:400.102667pt;}
.x52{left:405.941333pt;}
.xb0{left:407.889333pt;}
.xa3{left:408.862667pt;}
.xa4{left:416.246667pt;}
.x43{left:418.781333pt;}
.x7e{left:423.629333pt;}
.x44{left:424.830667pt;}
.x53{left:429.306667pt;}
.x7f{left:431.602667pt;}
.x80{left:434.585333pt;}
.x61{left:442.382667pt;}
.x4a{left:456.008000pt;}
.x62{left:458.068000pt;}
.x54{left:461.929333pt;}
.xb3{left:467.892000pt;}
.x4b{left:470.137333pt;}
.xb4{left:475.277333pt;}
.xc5{left:481.248000pt;}
.x4c{left:483.154667pt;}
.x2b{left:485.942667pt;}
.x26{left:489.116000pt;}
.x4d{left:492.070667pt;}
.x2c{left:499.226667pt;}
.x27{left:502.400000pt;}
.x45{left:503.812000pt;}
.x28{left:505.786667pt;}
.x46{left:509.524000pt;}
.x4e{left:517.402667pt;}
.x16{left:519.349333pt;}
.x17{left:525.990667pt;}
.xc6{left:527.458667pt;}
.x4f{left:531.533333pt;}
.x48{left:533.581333pt;}
.x12{left:538.620000pt;}
.xb7{left:540.886667pt;}
.x49{left:541.785333pt;}
.x13{left:545.261333pt;}
.x97{left:550.724000pt;}
.x50{left:553.466667pt;}
.x60{left:558.105333pt;}
.x2a{left:561.632000pt;}
.xcc{left:563.988000pt;}
.xd7{left:565.068000pt;}
.xb{left:568.126667pt;}
.xf{left:572.146667pt;}
.xc{left:574.769333pt;}
.xd{left:578.156000pt;}
.x1e{left:580.598667pt;}
.x10{left:582.174667pt;}
.xe{left:584.797333pt;}
.x11{left:588.817333pt;}
.x1f{left:590.621333pt;}
.x20{left:594.001333pt;}
.xda{left:595.245333pt;}
.xa7{left:596.324000pt;}
.xc7{left:598.060000pt;}
.xa8{left:599.578667pt;}
.xc8{left:602.562667pt;}
.xb5{left:604.366667pt;}
.x21{left:607.285333pt;}
.xa1{left:610.421333pt;}
.xa9{left:612.861333pt;}
.x58{left:614.426667pt;}
.xc9{left:615.845333pt;}
.xa6{left:618.020000pt;}
.xa2{left:619.721333pt;}
.x81{left:620.873333pt;}
.x39{left:622.490667pt;}
.x5c{left:626.720000pt;}
.x82{left:629.077333pt;}
.x5d{left:632.769333pt;}
.x9d{left:634.741920pt;}
.x3a{left:635.773333pt;}
.x3b{left:639.121333pt;}
.xcd{left:642.145333pt;}
.x47{left:644.004000pt;}
.xca{left:649.174667pt;}
.xd0{left:650.345333pt;}
.xd2{left:651.324000pt;}
.x3c{left:652.405333pt;}
.xce{left:655.429333pt;}
.xd6{left:662.208000pt;}
.xb1{left:664.370667pt;}
.x66{left:665.587480pt;}
.x73{left:667.044000pt;}
.xbd{left:668.458667pt;}
.x33{left:670.949333pt;}
.x94{left:671.923328pt;}
.xb2{left:673.001333pt;}
.xd1{left:674.256000pt;}
.xd3{left:675.233333pt;}
.x74{left:676.345333pt;}
.xd9{left:678.696000pt;}
.x3d{left:681.176000pt;}
.xcb{left:682.502667pt;}
.x34{left:684.233333pt;}
.x3e{left:687.225333pt;}
.x1a{left:688.797333pt;}
.x57{left:694.168000pt;}
.x1b{left:695.438667pt;}
.x9a{left:696.573333pt;}
.x5e{left:699.916000pt;}
.xd8{left:701.126667pt;}
.x1c{left:702.213333pt;}
.x8f{left:703.397333pt;}
.x5f{left:708.716000pt;}
.x2d{left:710.172000pt;}
.x1d{left:715.496000pt;}
.xd4{left:720.320000pt;}
.x2e{left:723.454667pt;}
.xd5{left:725.570667pt;}
.x2f{left:726.842667pt;}
.xbb{left:728.025333pt;}
.x59{left:739.000000pt;}
.x30{left:740.126667pt;}
.xbc{left:741.308000pt;}
.x63{left:744.037333pt;}
}




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