
    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_15bcbd88c1422e0e7ca43fbb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c93a7fa605acffec050f3624.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_1d05453a5907837dad5d6c46.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ec20e4c58dbd57256adc9ffe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5bab3fce64fb70dc7ecf8dc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_a967970d18537b2a90bb7784.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_2e95fb4ab4556374703ae3fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_0c726bf59a3c03a1e5b3fe3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_3394827453a4ae84f7658513.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2950d575863ae4479894b8ec.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_6fa2c7dae462cfb33b7c7847.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_efb99d193199c3b192485bd7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_08a46958a636c63a54c50ed8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_5362b3b7790363c828a55357.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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_83734d9827ae76e08eb12538.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.221680;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_185e119e47209f6a5a9619ea.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.054688;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_48e91ca4e178b02c75931989.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740000;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_5e4931a5aaee3a10137786bf.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_5127d0b91146d963466b0a10.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ec8cd419935dfaeb13ae1a5a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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_5362b3b7790363c828a55357.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.727539;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_3d35307d7a889971210a4801.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.221680;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_3561030a0bbc38330f6299f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.054688;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_373afdf8a6e060fed8da59e3.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_773422ceb270a80b5161fec7.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_1f4d6e6b4f9e08832210018a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;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_373afdf8a6e060fed8da59e3.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_6c9d4f88d6f566ee6958769d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_cbe7075de37f7c5cebb129e8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.206055;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_0cfc6189f6d86c7ebeebb479.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.221680;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_5362b3b7790363c828a55357.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.727539;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;}
.mb{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);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m2{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);}
.m16{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);}
.m10{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);}
.m12{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);}
.m24{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);}
.m5{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);}
.m1e{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);}
.m26{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);}
.m22{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);}
.m18{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);}
.m28{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);}
.ma{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);}
.m19{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);}
.m1f{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);}
.m27{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);}
.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);}
.m7{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);}
.m25{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);}
.m8{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);}
.mc{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);}
.m11{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);}
.m1a{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);}
.m29{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);}
.m20{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);}
.md{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);}
.me{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);}
.m15{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);}
.m21{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);}
.m4{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);}
.m13{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);}
.m23{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);}
.m1b{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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:-11.760000px;}
.v8{vertical-align:-10.494000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.248000px;}
.vc{vertical-align:16.176000px;}
.v5{vertical-align:17.472000px;}
.va{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:24.684000px;}
.vb{vertical-align:38.478000px;}
.v6{vertical-align:40.464000px;}
.v7{vertical-align:41.634000px;}
.lsa2{letter-spacing:-0.330059px;}
.lsc5{letter-spacing:-0.222444px;}
.ls5e{letter-spacing:-0.200320px;}
.ls6a{letter-spacing:-0.182645px;}
.lsa1{letter-spacing:-0.151502px;}
.lscf{letter-spacing:-0.144288px;}
.ls6d{letter-spacing:-0.135510px;}
.lsa3{letter-spacing:-0.135270px;}
.ls61{letter-spacing:-0.129619px;}
.lsa6{letter-spacing:-0.124448px;}
.lsce{letter-spacing:-0.120240px;}
.lsa9{letter-spacing:-0.119038px;}
.ls66{letter-spacing:-0.117835px;}
.lsab{letter-spacing:-0.113627px;}
.ls5a{letter-spacing:-0.111943px;}
.ls98{letter-spacing:-0.108216px;}
.ls60{letter-spacing:-0.106052px;}
.lsd1{letter-spacing:-0.102204px;}
.ls5c{letter-spacing:-0.100160px;}
.lsa5{letter-spacing:-0.097394px;}
.lsc6{letter-spacing:-0.096192px;}
.ls69{letter-spacing:-0.094268px;}
.lscb{letter-spacing:-0.090180px;}
.ls65{letter-spacing:-0.088376px;}
.lsca{letter-spacing:-0.084168px;}
.ls9a{letter-spacing:-0.081162px;}
.ls9c{letter-spacing:-0.075751px;}
.lsd0{letter-spacing:-0.072144px;}
.lsa7{letter-spacing:-0.070340px;}
.ls9e{letter-spacing:-0.068040px;}
.ls9f{letter-spacing:-0.064930px;}
.ls64{letter-spacing:-0.064809px;}
.ls6b{letter-spacing:-0.058918px;}
.lsd2{letter-spacing:-0.054108px;}
.ls5b{letter-spacing:-0.053026px;}
.lsb3{letter-spacing:-0.052668px;}
.ls56{letter-spacing:-0.051615px;}
.lsa4{letter-spacing:-0.048697px;}
.lscd{letter-spacing:-0.048096px;}
.ls96{letter-spacing:-0.047401px;}
.ls99{letter-spacing:-0.043286px;}
.ls6c{letter-spacing:-0.041242px;}
.lsa8{letter-spacing:-0.037876px;}
.lsc7{letter-spacing:-0.036072px;}
.lsa0{letter-spacing:-0.032465px;}
.lsc4{letter-spacing:-0.030060px;}
.ls5d{letter-spacing:-0.029459px;}
.ls9b{letter-spacing:-0.027054px;}
.ls63{letter-spacing:-0.023567px;}
.ls9d{letter-spacing:-0.021643px;}
.lsb5{letter-spacing:-0.021600px;}
.ls59{letter-spacing:-0.017675px;}
.lsaa{letter-spacing:-0.016232px;}
.lsb4{letter-spacing:-0.014364px;}
.ls57{letter-spacing:-0.014077px;}
.ls97{letter-spacing:-0.012928px;}
.lsc8{letter-spacing:-0.012024px;}
.ls62{letter-spacing:-0.011784px;}
.ls58{letter-spacing:-0.005892px;}
.ls68{letter-spacing:-0.005292px;}
.lse{letter-spacing:0.000000px;}
.lsee{letter-spacing:0.000088px;}
.lsd4{letter-spacing:0.000216px;}
.lsf5{letter-spacing:0.000253px;}
.lsdd{letter-spacing:0.000263px;}
.lsf7{letter-spacing:0.000419px;}
.ls26{letter-spacing:0.000435px;}
.ls25{letter-spacing:0.000608px;}
.ls3c{letter-spacing:0.000656px;}
.lsef{letter-spacing:0.000658px;}
.lse7{letter-spacing:0.000676px;}
.lsf6{letter-spacing:0.000699px;}
.lse3{letter-spacing:0.000800px;}
.ls2f{letter-spacing:0.000840px;}
.ls55{letter-spacing:0.000845px;}
.lsf3{letter-spacing:0.000901px;}
.lsd5{letter-spacing:0.001036px;}
.lse1{letter-spacing:0.001155px;}
.lse0{letter-spacing:0.001301px;}
.lsfd{letter-spacing:0.001303px;}
.ls2a{letter-spacing:0.001367px;}
.lsf0{letter-spacing:0.001584px;}
.lsfc{letter-spacing:0.001776px;}
.lsdc{letter-spacing:0.001831px;}
.lsb{letter-spacing:0.001952px;}
.ls32{letter-spacing:0.002108px;}
.ls50{letter-spacing:0.002458px;}
.ls71{letter-spacing:0.002467px;}
.lsd6{letter-spacing:0.002544px;}
.ls29{letter-spacing:0.002555px;}
.lsdb{letter-spacing:0.002841px;}
.lsea{letter-spacing:0.002877px;}
.lse4{letter-spacing:0.003155px;}
.lsd7{letter-spacing:0.003179px;}
.lsdf{letter-spacing:0.003239px;}
.lsec{letter-spacing:0.003634px;}
.lsd8{letter-spacing:0.003717px;}
.ls6f{letter-spacing:0.004090px;}
.ls3d{letter-spacing:0.004168px;}
.ls2{letter-spacing:0.004200px;}
.ls5{letter-spacing:0.004766px;}
.ls87{letter-spacing:0.004860px;}
.lsfe{letter-spacing:0.004981px;}
.ls4a{letter-spacing:0.005292px;}
.ls91{letter-spacing:0.005411px;}
.ls45{letter-spacing:0.005892px;}
.lsb9{letter-spacing:0.006012px;}
.lsb1{letter-spacing:0.010800px;}
.ls90{letter-spacing:0.010822px;}
.ls49{letter-spacing:0.011784px;}
.ls8b{letter-spacing:0.014580px;}
.ls8f{letter-spacing:0.016232px;}
.lsbc{letter-spacing:0.018036px;}
.ls4d{letter-spacing:0.019757px;}
.lsb2{letter-spacing:0.021600px;}
.ls83{letter-spacing:0.021643px;}
.ls40{letter-spacing:0.023567px;}
.lsb8{letter-spacing:0.024048px;}
.ls84{letter-spacing:0.027054px;}
.ls41{letter-spacing:0.029459px;}
.lsbb{letter-spacing:0.030060px;}
.lsb0{letter-spacing:0.032400px;}
.ls43{letter-spacing:0.035351px;}
.lsbd{letter-spacing:0.036072px;}
.lsb7{letter-spacing:0.037800px;}
.ls8e{letter-spacing:0.037876px;}
.ls46{letter-spacing:0.041242px;}
.lsbf{letter-spacing:0.042084px;}
.ls86{letter-spacing:0.043286px;}
.ls8c{letter-spacing:0.043740px;}
.ls42{letter-spacing:0.047134px;}
.lsc3{letter-spacing:0.048096px;}
.ls89{letter-spacing:0.048600px;}
.ls4c{letter-spacing:0.052920px;}
.ls48{letter-spacing:0.053026px;}
.ls92{letter-spacing:0.054108px;}
.ls8d{letter-spacing:0.058320px;}
.lsb6{letter-spacing:0.059400px;}
.ls85{letter-spacing:0.059519px;}
.lsc2{letter-spacing:0.060120px;}
.lsc0{letter-spacing:0.066132px;}
.ls67{letter-spacing:0.070701px;}
.lsbe{letter-spacing:0.072144px;}
.ls5f{letter-spacing:0.076593px;}
.lsc1{letter-spacing:0.078156px;}
.ls44{letter-spacing:0.088376px;}
.lscc{letter-spacing:0.090180px;}
.ls82{letter-spacing:0.091984px;}
.ls8a{letter-spacing:0.097200px;}
.ls47{letter-spacing:0.100160px;}
.lsba{letter-spacing:0.102204px;}
.ls7c{letter-spacing:0.150017px;}
.ls81{letter-spacing:0.155131px;}
.ls80{letter-spacing:0.163750px;}
.ls3f{letter-spacing:0.164228px;}
.lsaf{letter-spacing:0.172368px;}
.ls4e{letter-spacing:0.176753px;}
.ls3e{letter-spacing:0.178305px;}
.lsae{letter-spacing:0.181944px;}
.ls17{letter-spacing:0.396017px;}
.ls1e{letter-spacing:0.402017px;}
.ls4b{letter-spacing:0.529200px;}
.ls14{letter-spacing:0.542815px;}
.ls1d{letter-spacing:0.548815px;}
.ls33{letter-spacing:0.670741px;}
.ls37{letter-spacing:0.676741px;}
.ls30{letter-spacing:0.717483px;}
.ls11{letter-spacing:0.745625px;}
.ls34{letter-spacing:0.746496px;}
.ls23{letter-spacing:0.751625px;}
.ls1c{letter-spacing:0.794815px;}
.ls1b{letter-spacing:1.134571px;}
.ls13{letter-spacing:1.452571px;}
.ls74{letter-spacing:1.855555px;}
.ls19{letter-spacing:2.064017px;}
.ls88{letter-spacing:2.104380px;}
.ls15{letter-spacing:2.191625px;}
.ls20{letter-spacing:2.310017px;}
.lsc9{letter-spacing:2.609208px;}
.ls53{letter-spacing:2.988600px;}
.ls7{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls6e{letter-spacing:3.513900px;}
.ls24{letter-spacing:3.553200px;}
.ls31{letter-spacing:3.559200px;}
.ls16{letter-spacing:5.520571px;}
.ls0{letter-spacing:10.461300px;}
.ls7a{letter-spacing:11.951700px;}
.lsa{letter-spacing:11.953933px;}
.lsd{letter-spacing:11.954850px;}
.ls9{letter-spacing:11.959933px;}
.ls2d{letter-spacing:12.339483px;}
.ls2e{letter-spacing:12.345483px;}
.ls12{letter-spacing:12.370200px;}
.lsf4{letter-spacing:13.048359px;}
.lse9{letter-spacing:13.304109px;}
.lsd9{letter-spacing:13.448400px;}
.lsde{letter-spacing:13.454400px;}
.lsed{letter-spacing:13.454592px;}
.lse6{letter-spacing:13.541373px;}
.lsf9{letter-spacing:13.547391px;}
.lsf1{letter-spacing:13.609224px;}
.lse8{letter-spacing:13.626388px;}
.lse5{letter-spacing:13.681364px;}
.lsfa{letter-spacing:13.709259px;}
.ls52{letter-spacing:14.094088px;}
.lseb{letter-spacing:14.468047px;}
.ls7b{letter-spacing:14.681098px;}
.ls28{letter-spacing:14.745336px;}
.lsd3{letter-spacing:14.764573px;}
.ls93{letter-spacing:14.837300px;}
.ls6{letter-spacing:14.939108px;}
.ls79{letter-spacing:14.941200px;}
.ls4{letter-spacing:14.944200px;}
.lsda{letter-spacing:15.026871px;}
.lsfb{letter-spacing:15.232753px;}
.ls7e{letter-spacing:15.355200px;}
.ls94{letter-spacing:15.361200px;}
.ls3b{letter-spacing:15.663483px;}
.lse2{letter-spacing:16.144518px;}
.ls18{letter-spacing:16.248571px;}
.lsad{letter-spacing:16.318739px;}
.ls72{letter-spacing:16.440600px;}
.lsf8{letter-spacing:16.676400px;}
.ls35{letter-spacing:18.022741px;}
.ls7d{letter-spacing:18.069483px;}
.lsac{letter-spacing:18.112007px;}
.lsf2{letter-spacing:18.232753px;}
.ls2b{letter-spacing:19.112200px;}
.lsf{letter-spacing:19.175675px;}
.ls10{letter-spacing:19.563483px;}
.ls27{letter-spacing:20.171024px;}
.ls38{letter-spacing:20.212741px;}
.ls3a{letter-spacing:20.218741px;}
.ls1f{letter-spacing:20.460571px;}
.ls22{letter-spacing:20.835557px;}
.ls2c{letter-spacing:24.495483px;}
.ls1a{letter-spacing:27.108571px;}
.ls36{letter-spacing:28.599483px;}
.ls39{letter-spacing:32.841483px;}
.ls1{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls4f{letter-spacing:169.684800px;}
.ls51{letter-spacing:284.412600px;}
.ls54{letter-spacing:308.322600px;}
.ls21{letter-spacing:450.990571px;}
.ls95{letter-spacing:586.651200px;}
.ls7f{letter-spacing:603.475200px;}
.ls70{letter-spacing:630.348600px;}
.ls77{letter-spacing:643.800600px;}
.ls73{letter-spacing:661.710600px;}
.ls76{letter-spacing:691.680600px;}
.ls75{letter-spacing:696.906600px;}
.ls78{letter-spacing:711.756600px;}
.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;}
}
.wsf{word-spacing:-14.943900px;}
.ws93{word-spacing:-14.776534px;}
.ws94{word-spacing:-14.729400px;}
.ws92{word-spacing:-14.705833px;}
.wsf6{word-spacing:-13.581108px;}
.wsf2{word-spacing:-13.527000px;}
.ws96{word-spacing:-13.449600px;}
.wsf5{word-spacing:-13.375498px;}
.ws14b{word-spacing:-12.151944px;}
.wsf4{word-spacing:-12.150000px;}
.ws14c{word-spacing:-11.970000px;}
.ws14{word-spacing:-11.955150px;}
.ws8f{word-spacing:-11.908905px;}
.ws90{word-spacing:-11.730600px;}
.wse{word-spacing:-11.357400px;}
.wsf0{word-spacing:-10.936750px;}
.wsf1{word-spacing:-10.773000px;}
.ws3{word-spacing:-10.460700px;}
.ws95{word-spacing:-8.820000px;}
.ws7e{word-spacing:-4.238647px;}
.ws81{word-spacing:-4.234512px;}
.ws7f{word-spacing:-4.219904px;}
.ws165{word-spacing:-3.174336px;}
.ws4b{word-spacing:-3.168107px;}
.ws18e{word-spacing:-2.988780px;}
.ws88{word-spacing:-2.869229px;}
.ws128{word-spacing:-2.856902px;}
.ws12a{word-spacing:-2.840670px;}
.ws69{word-spacing:-2.809453px;}
.ws129{word-spacing:-2.791973px;}
.wsbb{word-spacing:-2.769127px;}
.wsba{word-spacing:-2.739668px;}
.ws59{word-spacing:-2.689902px;}
.ws1d9{word-spacing:-2.636122px;}
.wsec{word-spacing:-2.577000px;}
.wsfa{word-spacing:-2.571000px;}
.ws13e{word-spacing:-2.570351px;}
.ws6c{word-spacing:-2.556576px;}
.ws19c{word-spacing:-2.450800px;}
.ws1a0{word-spacing:-2.391024px;}
.wsc2{word-spacing:-2.374379px;}
.wsc1{word-spacing:-2.362596px;}
.ws144{word-spacing:-2.331248px;}
.ws7d{word-spacing:-2.151922px;}
.ws12b{word-spacing:-2.115623px;}
.ws76{word-spacing:-2.092146px;}
.ws175{word-spacing:-2.086164px;}
.ws1b3{word-spacing:-2.044339px;}
.ws46{word-spacing:-2.032370px;}
.ws174{word-spacing:-1.977948px;}
.ws1bc{word-spacing:-1.936742px;}
.ws191{word-spacing:-1.853044px;}
.ws164{word-spacing:-1.845684px;}
.ws1b4{word-spacing:-1.775347px;}
.ws18a{word-spacing:-1.755504px;}
.ws193{word-spacing:-1.733492px;}
.ws18b{word-spacing:-1.731456px;}
.wsa5{word-spacing:-1.696827px;}
.ws1b5{word-spacing:-1.613952px;}
.ws198{word-spacing:-1.613941px;}
.ws15c{word-spacing:-1.554166px;}
.ws1bb{word-spacing:-1.506355px;}
.ws19e{word-spacing:-1.494390px;}
.ws1ba{word-spacing:-1.452557px;}
.wsfd{word-spacing:-1.374839px;}
.wsaf{word-spacing:-1.349213px;}
.wsa4{word-spacing:-1.319754px;}
.ws68{word-spacing:-1.315063px;}
.ws1bd{word-spacing:-1.291162px;}
.ws45{word-spacing:-1.255288px;}
.ws125{word-spacing:-1.233662px;}
.ws126{word-spacing:-1.217430px;}
.ws15d{word-spacing:-1.195512px;}
.wsfb{word-spacing:-1.135736px;}
.ws75{word-spacing:-1.075961px;}
.ws182{word-spacing:-1.052100px;}
.wsb2{word-spacing:-1.048733px;}
.ws184{word-spacing:-1.040076px;}
.wsfe{word-spacing:-1.016185px;}
.wsa8{word-spacing:-1.001599px;}
.wsb1{word-spacing:-0.978032px;}
.wsfc{word-spacing:-0.956410px;}
.ws183{word-spacing:-0.919836px;}
.ws107{word-spacing:-0.914425px;}
.ws37{word-spacing:-0.896634px;}
.wsa9{word-spacing:-0.871980px;}
.ws131{word-spacing:-0.871139px;}
.ws104{word-spacing:-0.849496px;}
.ws2d{word-spacing:-0.836858px;}
.ws105{word-spacing:-0.811620px;}
.ws1b6{word-spacing:-0.806976px;}
.ws130{word-spacing:-0.795388px;}
.ws103{word-spacing:-0.784566px;}
.wsdf{word-spacing:-0.753178px;}
.ws57{word-spacing:-0.717307px;}
.ws16d{word-spacing:-0.667332px;}
.ws58{word-spacing:-0.657532px;}
.ws17c{word-spacing:-0.649296px;}
.wsc5{word-spacing:-0.618635px;}
.wsa2{word-spacing:-0.612743px;}
.ws127{word-spacing:-0.611420px;}
.wsa3{word-spacing:-0.600960px;}
.ws1e5{word-spacing:-0.591782px;}
.ws48{word-spacing:-0.537980px;}
.ws17b{word-spacing:-0.511020px;}
.wsc6{word-spacing:-0.500800px;}
.wsd2{word-spacing:-0.441882px;}
.wsb{word-spacing:-0.430387px;}
.ws39{word-spacing:-0.418429px;}
.ws1e6{word-spacing:-0.376589px;}
.ws77{word-spacing:-0.358654px;}
.wsae{word-spacing:-0.353506px;}
.wsca{word-spacing:-0.335830px;}
.ws106{word-spacing:-0.335470px;}
.ws14e{word-spacing:-0.322790px;}
.ws31{word-spacing:-0.298878px;}
.ws14f{word-spacing:-0.272916px;}
.ws121{word-spacing:-0.270540px;}
.ws21{word-spacing:-0.268992px;}
.ws9f{word-spacing:-0.267458px;}
.wsb6{word-spacing:-0.253346px;}
.ws100{word-spacing:-0.245624px;}
.ws2a{word-spacing:-0.239102px;}
.wsd4{word-spacing:-0.223887px;}
.ws1ae{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.ws1b8{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws150{word-spacing:-0.076608px;}
.wsa0{word-spacing:-0.075076px;}
.ws101{word-spacing:-0.068947px;}
.ws157{word-spacing:-0.060120px;}
.ws10{word-spacing:-0.059776px;}
.ws91{word-spacing:-0.058918px;}
.wsf3{word-spacing:-0.054108px;}
.ws1d{word-spacing:-0.053798px;}
.ws1c9{word-spacing:-0.037633px;}
.wse4{word-spacing:-0.014381px;}
.ws1c2{word-spacing:-0.008467px;}
.ws1c8{word-spacing:-0.007968px;}
.ws1c5{word-spacing:-0.007488px;}
.ws1e7{word-spacing:-0.007238px;}
.ws1c7{word-spacing:-0.006998px;}
.wse6{word-spacing:-0.004800px;}
.ws1d3{word-spacing:-0.004282px;}
.wse2{word-spacing:-0.002688px;}
.ws1c1{word-spacing:-0.002467px;}
.wsc{word-spacing:-0.002392px;}
.ws1bf{word-spacing:-0.001267px;}
.ws1cc{word-spacing:-0.000998px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.000350px;}
.ws2b{word-spacing:0.000629px;}
.ws12{word-spacing:0.000726px;}
.ws2{word-spacing:0.002257px;}
.ws185{word-spacing:0.030060px;}
.ws1e4{word-spacing:0.037095px;}
.wsde{word-spacing:0.047821px;}
.ws172{word-spacing:0.048096px;}
.ws19{word-spacing:0.053798px;}
.wsb7{word-spacing:0.058918px;}
.ws10c{word-spacing:0.059519px;}
.ws25{word-spacing:0.059776px;}
.ws168{word-spacing:0.060120px;}
.ws122{word-spacing:0.070340px;}
.wsb4{word-spacing:0.094268px;}
.ws10e{word-spacing:0.102805px;}
.ws1b{word-spacing:0.107597px;}
.wsb8{word-spacing:0.111943px;}
.ws118{word-spacing:0.113627px;}
.ws138{word-spacing:0.119038px;}
.ws2f{word-spacing:0.119551px;}
.wsce{word-spacing:0.121716px;}
.ws162{word-spacing:0.140400px;}
.ws13{word-spacing:0.143462px;}
.ws117{word-spacing:0.146092px;}
.ws156{word-spacing:0.156600px;}
.ws10d{word-spacing:0.156913px;}
.ws1ab{word-spacing:0.161395px;}
.ws1db{word-spacing:0.166620px;}
.wscc{word-spacing:0.169344px;}
.ws32{word-spacing:0.179327px;}
.wscd{word-spacing:0.179928px;}
.ws167{word-spacing:0.186372px;}
.ws15{word-spacing:0.191282px;}
.ws186{word-spacing:0.192384px;}
.wsb3{word-spacing:0.194428px;}
.ws137{word-spacing:0.194789px;}
.ws14d{word-spacing:0.215194px;}
.wsb5{word-spacing:0.217995px;}
.wsd5{word-spacing:0.223887px;}
.ws114{word-spacing:0.228420px;}
.ws33{word-spacing:0.239102px;}
.ws1de{word-spacing:0.268992px;}
.wsad{word-spacing:0.288696px;}
.ws2c{word-spacing:0.298878px;}
.ws1d1{word-spacing:0.322790px;}
.ws10b{word-spacing:0.346291px;}
.ws29{word-spacing:0.358654px;}
.wsf8{word-spacing:0.376589px;}
.ws15b{word-spacing:0.418429px;}
.ws136{word-spacing:0.432864px;}
.ws135{word-spacing:0.443686px;}
.ws56{word-spacing:0.478205px;}
.ws1a3{word-spacing:0.537980px;}
.ws84{word-spacing:0.562500px;}
.ws74{word-spacing:0.568500px;}
.ws65{word-spacing:0.571500px;}
.wse9{word-spacing:0.573847px;}
.ws85{word-spacing:0.597756px;}
.wsf7{word-spacing:0.645581px;}
.ws13c{word-spacing:0.657532px;}
.ws97{word-spacing:0.676925px;}
.ws99{word-spacing:0.680525px;}
.ws9e{word-spacing:0.682925px;}
.ws171{word-spacing:0.739476px;}
.ws83{word-spacing:0.744600px;}
.ws1b2{word-spacing:0.753178px;}
.ws19b{word-spacing:0.777083px;}
.ws170{word-spacing:0.811620px;}
.ws199{word-spacing:0.836858px;}
.wsa7{word-spacing:0.848413px;}
.ws158{word-spacing:0.860774px;}
.wscb{word-spacing:0.878472px;}
.ws155{word-spacing:0.891000px;}
.ws141{word-spacing:0.896634px;}
.wsa6{word-spacing:0.907331px;}
.ws66{word-spacing:0.956410px;}
.wsef{word-spacing:1.016185px;}
.ws1df{word-spacing:1.022170px;}
.wsf9{word-spacing:1.075961px;}
.ws1a{word-spacing:1.075968px;}
.ws86{word-spacing:1.135736px;}
.ws11a{word-spacing:1.136268px;}
.ws1b9{word-spacing:1.183565px;}
.ws18f{word-spacing:1.195512px;}
.ws67{word-spacing:1.255288px;}
.ws64{word-spacing:1.315063px;}
.ws17e{word-spacing:1.316628px;}
.ws1f2{word-spacing:1.344960px;}
.ws8b{word-spacing:1.374839px;}
.ws1f1{word-spacing:1.398758px;}
.ws190{word-spacing:1.434614px;}
.ws1ad{word-spacing:1.452557px;}
.ws13b{word-spacing:1.455505px;}
.ws17{word-spacing:1.506355px;}
.ws18d{word-spacing:1.554166px;}
.ws1e{word-spacing:1.560154px;}
.wsea{word-spacing:1.613941px;}
.ws1c6{word-spacing:1.613952px;}
.ws1f4{word-spacing:1.721549px;}
.ws40{word-spacing:1.733492px;}
.ws1c{word-spacing:1.775347px;}
.ws52{word-spacing:1.793268px;}
.ws179{word-spacing:1.821636px;}
.ws15e{word-spacing:1.853044px;}
.ws1cd{word-spacing:1.882944px;}
.ws17a{word-spacing:1.887768px;}
.ws8c{word-spacing:1.912819px;}
.ws1e9{word-spacing:1.936742px;}
.ws3c{word-spacing:2.032370px;}
.ws1f3{word-spacing:2.044339px;}
.ws113{word-spacing:2.046060px;}
.ws110{word-spacing:2.055780px;}
.ws112{word-spacing:2.060640px;}
.ws13a{word-spacing:2.061515px;}
.ws111{word-spacing:2.089800px;}
.ws192{word-spacing:2.092146px;}
.ws1ce{word-spacing:2.098138px;}
.ws10f{word-spacing:2.099520px;}
.ws123{word-spacing:2.121034px;}
.ws139{word-spacing:2.131855px;}
.ws124{word-spacing:2.148088px;}
.ws1a6{word-spacing:2.151922px;}
.ws50{word-spacing:2.211697px;}
.ws1ca{word-spacing:2.259533px;}
.ws19a{word-spacing:2.271473px;}
.ws1f{word-spacing:2.313331px;}
.ws1ac{word-spacing:2.367130px;}
.ws27{word-spacing:2.391024px;}
.ws6b{word-spacing:2.402813px;}
.wsb0{word-spacing:2.403838px;}
.ws3f{word-spacing:2.450800px;}
.ws115{word-spacing:2.456503px;}
.ws1ea{word-spacing:2.474726px;}
.ws0{word-spacing:2.511541px;}
.ws1e8{word-spacing:2.528525px;}
.ws35{word-spacing:2.570351px;}
.ws8e{word-spacing:2.630126px;}
.wsc3{word-spacing:2.645400px;}
.wsc4{word-spacing:2.668967px;}
.ws161{word-spacing:2.678400px;}
.ws71{word-spacing:2.689902px;}
.ws1d0{word-spacing:2.689920px;}
.ws3a{word-spacing:2.749678px;}
.ws16{word-spacing:2.797517px;}
.wsee{word-spacing:2.809453px;}
.ws1ed{word-spacing:2.851315px;}
.ws30{word-spacing:2.869229px;}
.ws7a{word-spacing:2.929004px;}
.ws16f{word-spacing:2.981952px;}
.ws6f{word-spacing:2.988780px;}
.ws160{word-spacing:3.002400px;}
.ws1a9{word-spacing:3.012710px;}
.ws70{word-spacing:3.048556px;}
.ws16e{word-spacing:3.054096px;}
.ws15f{word-spacing:3.083400px;}
.ws63{word-spacing:3.108331px;}
.ws143{word-spacing:3.168107px;}
.ws1cb{word-spacing:3.220234px;}
.ws1ef{word-spacing:3.221155px;}
.ws1d2{word-spacing:3.221645px;}
.ws1d4{word-spacing:3.222672px;}
.ws1dd{word-spacing:3.223229px;}
.ws1da{word-spacing:3.223430px;}
.ws1f5{word-spacing:3.223718px;}
.ws1be{word-spacing:3.225571px;}
.ws1d8{word-spacing:3.226253px;}
.ws51{word-spacing:3.227882px;}
.wse3{word-spacing:3.227904px;}
.ws16a{word-spacing:3.282552px;}
.ws13d{word-spacing:3.287658px;}
.ws178{word-spacing:3.312612px;}
.ws2e{word-spacing:3.347434px;}
.ws4f{word-spacing:3.466985px;}
.ws26{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws1f0{word-spacing:3.604493px;}
.ws38{word-spacing:3.646312px;}
.ws1ee{word-spacing:3.658291px;}
.ws16c{word-spacing:3.673332px;}
.ws16b{word-spacing:3.703392px;}
.ws62{word-spacing:3.706087px;}
.ws169{word-spacing:3.727440px;}
.ws177{word-spacing:3.739464px;}
.ws43{word-spacing:3.765863px;}
.ws1e2{word-spacing:3.765888px;}
.ws1d7{word-spacing:3.819686px;}
.ws7c{word-spacing:3.825638px;}
.ws142{word-spacing:3.885414px;}
.wsb9{word-spacing:3.918020px;}
.ws11e{word-spacing:3.928241px;}
.ws120{word-spacing:3.949884px;}
.ws20{word-spacing:3.981082px;}
.ws11f{word-spacing:4.020224px;}
.ws166{word-spacing:4.046076px;}
.ws4e{word-spacing:4.064741px;}
.ws1a5{word-spacing:4.124516px;}
.ws6a{word-spacing:4.184292px;}
.ws53{word-spacing:4.244068px;}
.ws1b7{word-spacing:4.250074px;}
.ws44{word-spacing:4.303843px;}
.wsd6{word-spacing:4.423394px;}
.ws17d{word-spacing:4.502988px;}
.wsed{word-spacing:4.542946px;}
.ws1ec{word-spacing:4.572864px;}
.wsff{word-spacing:4.602721px;}
.ws1f6{word-spacing:4.626662px;}
.wsac{word-spacing:4.636815px;}
.ws1a4{word-spacing:4.662497px;}
.ws13f{word-spacing:4.722272px;}
.ws9{word-spacing:4.770079px;}
.ws3e{word-spacing:4.782048px;}
.ws1e3{word-spacing:4.788058px;}
.ws8a{word-spacing:4.841824px;}
.wsa{word-spacing:4.853765px;}
.ws1d6{word-spacing:4.895654px;}
.ws140{word-spacing:4.901599px;}
.wseb{word-spacing:4.961375px;}
.ws5e{word-spacing:5.080926px;}
.ws176{word-spacing:5.092164px;}
.ws188{word-spacing:5.140260px;}
.ws159{word-spacing:5.140702px;}
.ws1a8{word-spacing:5.164646px;}
.ws189{word-spacing:5.182344px;}
.ws36{word-spacing:5.200477px;}
.ws1c3{word-spacing:5.326042px;}
.ws5d{word-spacing:5.379804px;}
.ws4a{word-spacing:5.439580px;}
.ws5c{word-spacing:5.448719px;}
.ws1a7{word-spacing:5.487437px;}
.ws8d{word-spacing:5.499355px;}
.ws154{word-spacing:5.545800px;}
.ws4c{word-spacing:5.559131px;}
.ws153{word-spacing:5.578200px;}
.ws152{word-spacing:5.599800px;}
.ws89{word-spacing:5.618906px;}
.ws54{word-spacing:5.678682px;}
.ws1aa{word-spacing:5.702630px;}
.ws1e0{word-spacing:5.721157px;}
.ws1e1{word-spacing:5.756429px;}
.ws24{word-spacing:5.798233px;}
.ws173{word-spacing:5.831640px;}
.ws196{word-spacing:5.858009px;}
.ws10a{word-spacing:5.886950px;}
.ws61{word-spacing:5.917784px;}
.ws109{word-spacing:5.941058px;}
.ws11d{word-spacing:5.957291px;}
.ws1c0{word-spacing:5.971622px;}
.ws4d{word-spacing:5.977560px;}
.ws108{word-spacing:5.995166px;}
.ws11c{word-spacing:6.049274px;}
.wsbe{word-spacing:6.109755px;}
.ws12d{word-spacing:6.217009px;}
.ws11b{word-spacing:6.244063px;}
.ws12c{word-spacing:6.271117px;}
.ws49{word-spacing:6.336214px;}
.ws5f{word-spacing:6.395989px;}
.wsbf{word-spacing:6.445585px;}
.ws195{word-spacing:6.455765px;}
.ws180{word-spacing:6.492960px;}
.ws55{word-spacing:6.515540px;}
.ws17f{word-spacing:6.517008px;}
.ws116{word-spacing:6.520014px;}
.ws60{word-spacing:6.526597px;}
.ws47{word-spacing:6.575316px;}
.ws15a{word-spacing:6.635092px;}
.ws73{word-spacing:6.694867px;}
.ws72{word-spacing:6.754643px;}
.ws3b{word-spacing:6.814418px;}
.ws187{word-spacing:6.901776px;}
.ws87{word-spacing:6.933970px;}
.wsd8{word-spacing:6.939994px;}
.ws163{word-spacing:6.961896px;}
.ws42{word-spacing:6.993745px;}
.ws1eb{word-spacing:6.993792px;}
.ws3d{word-spacing:7.053521px;}
.wsc8{word-spacing:7.146705px;}
.wsc7{word-spacing:7.152597px;}
.ws1a1{word-spacing:7.232848px;}
.ws1c4{word-spacing:7.262784px;}
.ws78{word-spacing:7.292623px;}
.wsd7{word-spacing:7.316582px;}
.ws19d{word-spacing:7.471950px;}
.wsc9{word-spacing:7.482535px;}
.ws119{word-spacing:7.488547px;}
.ws7b{word-spacing:7.531726px;}
.ws22{word-spacing:7.693171px;}
.ws7{word-spacing:7.782761px;}
.ws18c{word-spacing:7.890379px;}
.ws197{word-spacing:7.950155px;}
.ws194{word-spacing:8.009930px;}
.ws19f{word-spacing:8.069706px;}
.ws12f{word-spacing:8.219005px;}
.ws181{word-spacing:8.344656px;}
.ws12e{word-spacing:8.532832px;}
.ws5b{word-spacing:8.783959px;}
.ws1dc{word-spacing:9.038131px;}
.ws5a{word-spacing:9.102002px;}
.ws79{word-spacing:9.145667px;}
.ws133{word-spacing:9.815191px;}
.ws134{word-spacing:9.826013px;}
.ws132{word-spacing:9.917996px;}
.wsaa{word-spacing:9.921724px;}
.ws14a{word-spacing:9.922750px;}
.ws1cf{word-spacing:10.006502px;}
.ws1d5{word-spacing:10.167898px;}
.wsab{word-spacing:10.345931px;}
.ws102{word-spacing:10.454119px;}
.ws1b0{word-spacing:10.544486px;}
.ws1af{word-spacing:10.598285px;}
.wsa1{word-spacing:11.388066px;}
.ws151{word-spacing:11.615688px;}
.wsbc{word-spacing:11.701035px;}
.wsbd{word-spacing:11.795304px;}
.ws1a2{word-spacing:11.835569px;}
.ws5{word-spacing:12.176255px;}
.ws1b1{word-spacing:13.288205px;}
.ws6{word-spacing:16.109478px;}
.wsc0{word-spacing:18.394075px;}
.ws41{word-spacing:19.666172px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.wsd{word-spacing:40.042186px;}
.ws6e{word-spacing:55.411981px;}
.wscf{word-spacing:112.408889px;}
.wsd0{word-spacing:164.674692px;}
.wsda{word-spacing:187.109088px;}
.wsd9{word-spacing:197.896310px;}
.wsdc{word-spacing:202.228186px;}
.wsdb{word-spacing:206.747251px;}
.wsdd{word-spacing:215.731584px;}
.wsd3{word-spacing:218.572512px;}
.ws9d{word-spacing:227.997619px;}
.wsd1{word-spacing:232.995541px;}
.ws98{word-spacing:241.447219px;}
.ws9a{word-spacing:263.494500px;}
.ws9b{word-spacing:276.940500px;}
.ws9c{word-spacing:385.035149px;}
.ws80{word-spacing:399.301008px;}
.ws82{word-spacing:465.233495px;}
.ws6d{word-spacing:531.347424px;}
.wse1{word-spacing:584.017910px;}
.wse7{word-spacing:588.393101px;}
.wse5{word-spacing:651.283430px;}
.wse0{word-spacing:676.676275px;}
.wse8{word-spacing:678.182630px;}
.ws147{word-spacing:828.710554px;}
.ws145{word-spacing:914.787994px;}
.ws146{word-spacing:949.810752px;}
.ws148{word-spacing:969.231974px;}
.ws149{word-spacing:971.921894px;}
._21{margin-left:-233.419748px;}
._1f{margin-left:-164.355167px;}
._1b{margin-left:-112.108409px;}
._63{margin-left:-20.938113px;}
._62{margin-left:-19.054545px;}
._65{margin-left:-8.075021px;}
._10{margin-left:-6.838468px;}
._7{margin-left:-5.260266px;}
._0{margin-left:-3.849538px;}
._4d{margin-left:-2.630133px;}
._4{margin-left:-1.506341px;}
._16{width:1.135740px;}
._5{width:2.993814px;}
._17{width:9.982525px;}
._4e{width:10.998738px;}
._2{width:12.971268px;}
._52{width:14.441947px;}
._8{width:15.685157px;}
._a{width:17.215474px;}
._d{width:18.470660px;}
._12{width:19.755919px;}
._9{width:20.766182px;}
._b{width:22.433933px;}
._c{width:24.101683px;}
._1{width:25.940136px;}
._11{width:27.389176px;}
._19{width:28.524912px;}
._3{width:30.587087px;}
._14{width:32.171224px;}
._5f{width:33.725389px;}
._13{width:35.757760px;}
._15{width:37.072823px;}
._18{width:39.344296px;}
._20{width:40.570659px;}
._60{width:42.918881px;}
._22{width:52.212777px;}
._64{width:61.868160px;}
._6{width:69.359090px;}
._61{width:88.767360px;}
._1c{width:147.470753px;}
._29{width:156.997729px;}
._2b{width:159.297062px;}
._25{width:172.716944px;}
._32{width:179.019674px;}
._23{width:181.732396px;}
._24{width:184.516190px;}
._3c{width:203.680742px;}
._1d{width:204.774011px;}
._38{width:205.948020px;}
._26{width:207.731674px;}
._2a{width:214.111386px;}
._4b{width:215.677786px;}
._28{width:218.737482px;}
._2e{width:222.484090px;}
._4a{width:229.181184px;}
._4c{width:235.905984px;}
._42{width:241.447219px;}
._1e{width:243.353255px;}
._35{width:246.295856px;}
._49{width:249.355584px;}
._36{width:254.896819px;}
._27{width:258.676867px;}
._37{width:261.696818px;}
._2f{width:268.346419px;}
._41{width:273.198420px;}
._2c{width:283.117032px;}
._3d{width:284.539738px;}
._30{width:294.976627px;}
._2d{width:307.942042px;}
._3b{width:316.603584px;}
._47{width:343.825574px;}
._3e{width:365.207486px;}
._43{width:369.003226px;}
._31{width:373.468478px;}
._33{width:402.465830px;}
._48{width:435.229056px;}
._39{width:437.488589px;}
._44{width:449.916019px;}
._3f{width:456.909811px;}
._45{width:459.599731px;}
._34{width:504.790373px;}
._50{width:514.354525px;}
._3a{width:520.236599px;}
._40{width:537.822605px;}
._53{width:539.006170px;}
._46{width:540.458726px;}
._4f{width:629.279885px;}
._51{width:651.283430px;}
._54{width:664.733030px;}
._57{width:689.049907px;}
._59{width:705.189427px;}
._5a{width:728.430336px;}
._58{width:807.992181px;}
._5b{width:809.020339px;}
._5d{width:868.628966px;}
._5c{width:893.806618px;}
._e{width:959.733724px;}
._55{width:1872.319124px;}
._1a{width:2060.995601px;}
._5e{width:2079.345036px;}
._56{width:2537.385300px;}
._f{width:2561.295300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(41,66,37);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.280000px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:43.092000px;}
.fs10{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fsb{font-size:46.922400px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs14{font-size:47.880000px;}
.fs13{font-size:48.600000px;}
.fsd{font-size:52.920000px;}
.fs7{font-size:53.798400px;}
.fs16{font-size:54.000000px;}
.fs12{font-size:54.108000px;}
.fsf{font-size:56.058000px;}
.fsc{font-size:58.917600px;}
.fs2{font-size:59.775600px;}
.fs15{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fsa{font-size:83.686200px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y222{bottom:-708.137550px;}
.y243{bottom:-644.222952px;}
.y242{bottom:-624.963510px;}
.y241{bottom:-605.704068px;}
.y240{bottom:-586.534806px;}
.y23f{bottom:-567.275364px;}
.y23e{bottom:-548.104599px;}
.y1c7{bottom:-536.920245px;}
.y23d{bottom:-528.845157px;}
.y23c{bottom:-509.585715px;}
.y217{bottom:-503.920050px;}
.y23b{bottom:-490.416453px;}
.y23a{bottom:-471.157011px;}
.y1e8{bottom:-454.775091px;}
.y239{bottom:-451.987749px;}
.y1e7{bottom:-437.441594px;}
.y238{bottom:-432.728307px;}
.y1e6{bottom:-420.187905px;}
.y237{bottom:-413.468865px;}
.y1e5{bottom:-402.854407px;}
.y236{bottom:-394.299603px;}
.y1e4{bottom:-385.602071px;}
.y235{bottom:-375.040161px;}
.y1e3{bottom:-368.268574px;}
.y234{bottom:-355.870899px;}
.y1e2{bottom:-350.935076px;}
.y233{bottom:-336.611457px;}
.y1e1{bottom:-333.682740px;}
.y232{bottom:-317.352015px;}
.y1e0{bottom:-316.349242px;}
.y1df{bottom:-299.096906px;}
.y231{bottom:-298.182753px;}
.y1de{bottom:-281.763409px;}
.y230{bottom:-278.923311px;}
.y1dd{bottom:-264.429911px;}
.y145{bottom:-260.895159px;}
.y22f{bottom:-259.663869px;}
.y1dc{bottom:-247.177575px;}
.y22e{bottom:-240.494607px;}
.y1db{bottom:-229.844077px;}
.y22d{bottom:-221.235165px;}
.y1da{bottom:-212.510579px;}
.y169{bottom:-203.476880px;}
.y22c{bottom:-202.065903px;}
.y1d9{bottom:-195.258244px;}
.y168{bottom:-183.631880px;}
.y22b{bottom:-182.806461px;}
.y1d8{bottom:-177.924746px;}
.y167{bottom:-163.786959px;}
.y22a{bottom:-163.547019px;}
.y1d7{bottom:-160.672410px;}
.y229{bottom:-144.377757px;}
.y166{bottom:-144.030159px;}
.y1d6{bottom:-143.338912px;}
.y1d5{bottom:-126.005414px;}
.y228{bottom:-125.118315px;}
.y165{bottom:-123.390495px;}
.y164{bottom:-113.512959px;}
.y1d4{bottom:-108.753079px;}
.y227{bottom:-105.947550px;}
.y1d3{bottom:-91.419581px;}
.y21b{bottom:-76.419600px;}
.y163{bottom:-74.174877px;}
.y1d2{bottom:-74.167245px;}
.y226{bottom:-69.137100px;}
.y21a{bottom:-58.960050px;}
.y225{bottom:-51.677550px;}
.y219{bottom:-41.680050px;}
.y1d1{bottom:-41.037840px;}
.y162{bottom:-39.600918px;}
.y224{bottom:-34.397550px;}
.y1d0{bottom:-25.324245px;}
.y161{bottom:-22.490559px;}
.y218{bottom:-19.270185px;}
.y223{bottom:-11.987028px;}
.y1cf{bottom:-5.152232px;}
.y160{bottom:-0.519136px;}
.y0{bottom:0.000000px;}
.y1c{bottom:14.814771px;}
.y4c{bottom:31.890000px;}
.y1b5{bottom:91.665000px;}
.y2be{bottom:92.601000px;}
.y28a{bottom:103.158000px;}
.y17a{bottom:103.354500px;}
.y4b{bottom:103.621500px;}
.y32c{bottom:104.503500px;}
.y1a{bottom:104.646000px;}
.y102{bottom:106.744500px;}
.y29d{bottom:107.193000px;}
.y84{bottom:107.641500px;}
.y2bd{bottom:110.175000px;}
.ydc{bottom:110.386500px;}
.y1b4{bottom:110.494500px;}
.y209{bottom:119.287500px;}
.y179{bottom:119.793000px;}
.y12f{bottom:120.486000px;}
.y32b{bottom:121.762500px;}
.y289{bottom:121.987500px;}
.y4a{bottom:122.449500px;}
.y21e{bottom:122.455500px;}
.y19{bottom:122.535000px;}
.y101{bottom:125.574000px;}
.y29c{bottom:126.022500px;}
.y2f6{bottom:126.157500px;}
.y83{bottom:126.471000px;}
.ydb{bottom:129.216000px;}
.y1b2{bottom:129.324000px;}
.y1b3{bottom:134.749500px;}
.y208{bottom:135.726000px;}
.y178{bottom:136.231500px;}
.y2bc{bottom:136.714500px;}
.y32a{bottom:139.023000px;}
.y12e{bottom:139.315500px;}
.y18{bottom:140.422500px;}
.y288{bottom:140.817000px;}
.y49{bottom:141.279000px;}
.y21d{bottom:141.688500px;}
.y2f5{bottom:143.416500px;}
.y100{bottom:144.403500px;}
.y29b{bottom:144.852000px;}
.y82{bottom:145.300500px;}
.yda{bottom:148.045500px;}
.y1b1{bottom:148.153500px;}
.y262{bottom:148.681500px;}
.y207{bottom:152.164500px;}
.y177{bottom:152.670000px;}
.y329{bottom:156.283500px;}
.y12d{bottom:158.145000px;}
.y17{bottom:158.310000px;}
.y287{bottom:159.646500px;}
.y48{bottom:160.108500px;}
.y2f4{bottom:160.677000px;}
.y21c{bottom:160.921500px;}
.y9f{bottom:161.887500px;}
.yff{bottom:163.233000px;}
.y2bb{bottom:163.255500px;}
.y29a{bottom:163.681500px;}
.y81{bottom:164.130000px;}
.yd9{bottom:166.875000px;}
.y1b0{bottom:166.983000px;}
.y261{bottom:167.511000px;}
.y206{bottom:168.603000px;}
.y176{bottom:169.107000px;}
.y328{bottom:173.544000px;}
.y16{bottom:176.199000px;}
.y12c{bottom:176.974500px;}
.y2f3{bottom:177.937500px;}
.y286{bottom:178.476000px;}
.y47{bottom:178.938000px;}
.y9d{bottom:180.717000px;}
.y299{bottom:182.511000px;}
.y80{bottom:182.959500px;}
.y205{bottom:185.041500px;}
.y175{bottom:185.545500px;}
.y1f8{bottom:185.812500px;}
.y9e{bottom:186.142500px;}
.y214{bottom:186.339000px;}
.y260{bottom:186.340500px;}
.yfe{bottom:186.546000px;}
.y2ba{bottom:189.796500px;}
.yd8{bottom:190.188000px;}
.y327{bottom:190.804500px;}
.y15{bottom:194.086500px;}
.y2f2{bottom:195.198000px;}
.y12b{bottom:195.804000px;}
.y285{bottom:197.305500px;}
.y46{bottom:197.767500px;}
.y9c{bottom:199.546500px;}
.y298{bottom:201.340500px;}
.y204{bottom:201.480000px;}
.y7f{bottom:201.789000px;}
.y174{bottom:201.984000px;}
.y1f7{bottom:204.642000px;}
.y25f{bottom:205.170000px;}
.y2b9{bottom:207.370500px;}
.y326{bottom:208.065000px;}
.y1af{bottom:210.945000px;}
.y14{bottom:211.974000px;}
.y2f1{bottom:212.458500px;}
.y12a{bottom:214.633500px;}
.y284{bottom:216.135000px;}
.y45{bottom:216.597000px;}
.y203{bottom:217.917000px;}
.y9a{bottom:218.376000px;}
.y173{bottom:218.422500px;}
.yfd{bottom:220.170000px;}
.y7e{bottom:220.618500px;}
.y1ad{bottom:220.801500px;}
.y1f6{bottom:223.471500px;}
.y9b{bottom:223.801500px;}
.y25e{bottom:223.999500px;}
.yd7{bottom:224.812500px;}
.y2b8{bottom:224.944500px;}
.y1ae{bottom:225.141000px;}
.y325{bottom:225.325500px;}
.y2f0{bottom:229.719000px;}
.y13{bottom:229.863000px;}
.y129{bottom:233.463000px;}
.y202{bottom:234.355500px;}
.y172{bottom:234.861000px;}
.y283{bottom:234.964500px;}
.yd6{bottom:235.065000px;}
.y44{bottom:235.426500px;}
.y99{bottom:237.205500px;}
.yfc{bottom:238.999500px;}
.y7d{bottom:239.446500px;}
.y1ac{bottom:241.549500px;}
.y1f5{bottom:242.301000px;}
.y2b7{bottom:242.518500px;}
.y324{bottom:242.586000px;}
.y25d{bottom:242.829000px;}
.y2ef{bottom:246.979500px;}
.y201{bottom:250.794000px;}
.y171{bottom:251.299500px;}
.y128{bottom:252.292500px;}
.y282{bottom:253.794000px;}
.y43{bottom:254.256000px;}
.y98{bottom:256.035000px;}
.yfa{bottom:257.829000px;}
.y7c{bottom:258.276000px;}
.y323{bottom:259.846500px;}
.y2b6{bottom:260.092500px;}
.y25c{bottom:261.657000px;}
.yfb{bottom:263.253000px;}
.y2ee{bottom:264.240000px;}
.y1ab{bottom:265.815000px;}
.y200{bottom:267.232500px;}
.y170{bottom:267.738000px;}
.y127{bottom:271.122000px;}
.y281{bottom:272.623500px;}
.y1f4{bottom:272.778000px;}
.yf9{bottom:276.658500px;}
.y1f3{bottom:276.822000px;}
.y7b{bottom:277.105500px;}
.yd5{bottom:277.393500px;}
.y15f{bottom:277.399602px;}
.y42{bottom:277.569000px;}
.y2b5{bottom:277.666500px;}
.y1aa{bottom:277.776000px;}
.y97{bottom:279.348000px;}
.y25b{bottom:280.486500px;}
.y2ed{bottom:281.500500px;}
.y1a9{bottom:282.253500px;}
.y1ff{bottom:283.671000px;}
.y16f{bottom:284.176500px;}
.y126{bottom:289.951500px;}
.y280{bottom:291.453000px;}
.y322{bottom:294.366000px;}
.y1a8{bottom:294.577500px;}
.y2b4{bottom:295.240500px;}
.yf7{bottom:295.488000px;}
.y7a{bottom:295.935000px;}
.yd3{bottom:296.223000px;}
.y15e{bottom:296.273855px;}
.y12{bottom:297.166500px;}
.y2ec{bottom:298.759500px;}
.y1a7{bottom:299.211000px;}
.y25a{bottom:299.316000px;}
.y1fe{bottom:300.109500px;}
.y16e{bottom:300.615000px;}
.yf8{bottom:300.912000px;}
.yd4{bottom:301.647000px;}
.y125{bottom:308.781000px;}
.y27f{bottom:310.282500px;}
.y1f2{bottom:311.343000px;}
.y321{bottom:311.626500px;}
.y2b3{bottom:312.814500px;}
.y96{bottom:312.972000px;}
.yf6{bottom:314.317500px;}
.y79{bottom:314.764500px;}
.yd1{bottom:315.052500px;}
.y11{bottom:315.054000px;}
.y15d{bottom:315.061205px;}
.y2eb{bottom:316.020000px;}
.y1a6{bottom:316.170000px;}
.y1fd{bottom:316.548000px;}
.y259{bottom:318.145500px;}
.yd2{bottom:320.476500px;}
.y16d{bottom:324.255000px;}
.y124{bottom:327.610500px;}
.y320{bottom:328.887000px;}
.y95{bottom:329.071500px;}
.y27e{bottom:329.112000px;}
.y1f1{bottom:330.172500px;}
.y1ce{bottom:330.754290px;}
.y94{bottom:331.801500px;}
.y1a5{bottom:332.608500px;}
.y10{bottom:332.943000px;}
.yf5{bottom:333.145500px;}
.y2ea{bottom:333.280500px;}
.y78{bottom:333.594000px;}
.ycf{bottom:333.882000px;}
.y15c{bottom:333.935458px;}
.y258{bottom:336.975000px;}
.yd0{bottom:339.306000px;}
.y2b2{bottom:339.355500px;}
.y1fc{bottom:340.188000px;}
.y31f{bottom:346.147500px;}
.y123{bottom:346.440000px;}
.y93{bottom:347.901000px;}
.y27d{bottom:347.940000px;}
.y1cd{bottom:348.006626px;}
.y1f0{bottom:349.002000px;}
.y1a4{bottom:349.047000px;}
.y2e9{bottom:350.541000px;}
.y92{bottom:350.631000px;}
.yf{bottom:350.830500px;}
.yf3{bottom:351.975000px;}
.y77{bottom:352.423500px;}
.yce{bottom:352.711500px;}
.y41{bottom:352.719000px;}
.y15b{bottom:352.721334px;}
.y257{bottom:355.804500px;}
.y2b1{bottom:356.929500px;}
.yf4{bottom:357.400500px;}
.y16c{bottom:358.863000px;}
.y31e{bottom:363.408000px;}
.y122{bottom:365.269500px;}
.y1cc{bottom:365.340124px;}
.y1a3{bottom:365.485500px;}
.y27c{bottom:366.769500px;}
.y2e8{bottom:367.801500px;}
.y1ee{bottom:367.831500px;}
.y91{bottom:369.460500px;}
.yf2{bottom:370.804500px;}
.y76{bottom:371.253000px;}
.ycd{bottom:371.539500px;}
.y15a{bottom:371.595588px;}
.y1fb{bottom:371.808000px;}
.y40{bottom:372.175500px;}
.y1ef{bottom:373.255500px;}
.y2b0{bottom:374.503500px;}
.y256{bottom:374.634000px;}
.ye{bottom:379.179000px;}
.y31d{bottom:380.668500px;}
.y1cb{bottom:382.592460px;}
.y121{bottom:384.099000px;}
.y2e7{bottom:385.062000px;}
.y27b{bottom:385.599000px;}
.y1ed{bottom:386.659500px;}
.y90{bottom:388.290000px;}
.y1a2{bottom:389.125500px;}
.y16b{bottom:389.163000px;}
.yf1{bottom:389.634000px;}
.y75{bottom:390.082500px;}
.ycc{bottom:390.369000px;}
.y159{bottom:390.469841px;}
.y2af{bottom:392.077500px;}
.y255{bottom:393.463500px;}
.yd{bottom:397.066500px;}
.y31c{bottom:397.929000px;}
.y1ca{bottom:399.925958px;}
.y2e6{bottom:402.322500px;}
.y27a{bottom:404.428500px;}
.y1ec{bottom:405.489000px;}
.y8f{bottom:407.119500px;}
.y120{bottom:407.410500px;}
.y16a{bottom:408.396000px;}
.yf0{bottom:408.463500px;}
.y74{bottom:408.912000px;}
.yca{bottom:409.198500px;}
.y158{bottom:409.255718px;}
.y3f{bottom:409.566000px;}
.y2ae{bottom:409.651500px;}
.y254{bottom:412.293000px;}
.y1a1{bottom:412.765500px;}
.y19f{bottom:414.591000px;}
.ycb{bottom:414.624000px;}
.yc{bottom:414.955500px;}
.y31b{bottom:415.188000px;}
.y1c9{bottom:417.259455px;}
.y2e5{bottom:419.583000px;}
.y279{bottom:423.258000px;}
.y1eb{bottom:424.318500px;}
.y8e{bottom:425.949000px;}
.y221{bottom:425.952585px;}
.y2ad{bottom:427.227000px;}
.yee{bottom:427.293000px;}
.y73{bottom:427.741500px;}
.yc8{bottom:428.028000px;}
.y157{bottom:428.129971px;}
.y3e{bottom:429.022500px;}
.y142{bottom:430.825500px;}
.y253{bottom:431.122500px;}
.y31a{bottom:432.448500px;}
.yef{bottom:432.718500px;}
.yc9{bottom:433.453500px;}
.y1c8{bottom:434.513144px;}
.y220{bottom:435.582450px;}
.y1a0{bottom:436.407000px;}
.y2e4{bottom:436.842000px;}
.y11f{bottom:441.034500px;}
.yb{bottom:441.810000px;}
.y278{bottom:442.087500px;}
.y8d{bottom:444.778500px;}
.y2ac{bottom:444.801000px;}
.yec{bottom:446.122500px;}
.y72{bottom:446.571000px;}
.yc6{bottom:446.857500px;}
.y156{bottom:446.915847px;}
.y3d{bottom:448.480500px;}
.y319{bottom:449.709000px;}
.y252{bottom:449.952000px;}
.yed{bottom:451.548000px;}
.yc7{bottom:452.283000px;}
.y2e3{bottom:454.102500px;}
.y1ea{bottom:456.739500px;}
.ya{bottom:459.697500px;}
.y11e{bottom:459.864000px;}
.y277{bottom:460.917000px;}
.y8c{bottom:463.608000px;}
.yeb{bottom:464.952000px;}
.y71{bottom:465.400500px;}
.yc5{bottom:465.687000px;}
.y155{bottom:465.790101px;}
.y318{bottom:466.969500px;}
.y3c{bottom:467.937000px;}
.y19e{bottom:468.027000px;}
.y251{bottom:468.781500px;}
.y2ab{bottom:471.340500px;}
.y2e2{bottom:471.363000px;}
.y1e9{bottom:475.972500px;}
.y9{bottom:477.585000px;}
.y11d{bottom:478.693500px;}
.y276{bottom:479.746500px;}
.y8b{bottom:482.437500px;}
.y1c6{bottom:483.760877px;}
.yea{bottom:483.781500px;}
.y70{bottom:484.230000px;}
.yc4{bottom:484.516500px;}
.y154{bottom:484.664354px;}
.y3b{bottom:487.393500px;}
.y250{bottom:487.611000px;}
.y2e1{bottom:488.623500px;}
.y2aa{bottom:489.385500px;}
.y1c5{bottom:492.427755px;}
.y8{bottom:495.474000px;}
.y11c{bottom:497.523000px;}
.y1c4{bottom:498.402000px;}
.y275{bottom:498.576000px;}
.y8a{bottom:501.267000px;}
.y317{bottom:501.490500px;}
.ye9{bottom:502.611000px;}
.y6f{bottom:503.059500px;}
.yc3{bottom:503.346000px;}
.y2e0{bottom:505.884000px;}
.y24f{bottom:506.440500px;}
.y3a{bottom:506.851500px;}
.y2a9{bottom:507.430500px;}
.y19d{bottom:507.747000px;}
.y153{bottom:507.861686px;}
.y7{bottom:513.361500px;}
.y11b{bottom:516.352500px;}
.y274{bottom:517.405500px;}
.y316{bottom:518.751000px;}
.y89{bottom:520.095000px;}
.ye7{bottom:521.440500px;}
.y6e{bottom:521.889000px;}
.y19c{bottom:521.944500px;}
.yc2{bottom:522.175500px;}
.y2df{bottom:523.144500px;}
.y24e{bottom:525.270000px;}
.y2a8{bottom:525.475500px;}
.y39{bottom:526.308000px;}
.ye8{bottom:526.866000px;}
.y152{bottom:531.059018px;}
.y6{bottom:531.249000px;}
.y11a{bottom:535.182000px;}
.y315{bottom:536.011500px;}
.y273{bottom:536.235000px;}
.y88{bottom:538.924500px;}
.ye6{bottom:540.270000px;}
.y2de{bottom:540.405000px;}
.y6d{bottom:540.718500px;}
.y19b{bottom:540.787500px;}
.y2a7{bottom:543.520500px;}
.y24d{bottom:544.099500px;}
.yc1{bottom:545.488500px;}
.y38{bottom:545.766000px;}
.y5{bottom:549.138000px;}
.y314{bottom:553.272000px;}
.y118{bottom:554.011500px;}
.y272{bottom:555.064500px;}
.y19a{bottom:557.226000px;}
.y2dd{bottom:557.665500px;}
.y87{bottom:557.754000px;}
.ye5{bottom:559.099500px;}
.y119{bottom:559.437000px;}
.y6c{bottom:559.548000px;}
.y2a6{bottom:561.565500px;}
.y24c{bottom:562.929000px;}
.y37{bottom:565.222500px;}
.y4{bottom:567.025500px;}
.y151{bottom:567.573200px;}
.y313{bottom:570.531000px;}
.y117{bottom:572.841000px;}
.y199{bottom:573.664500px;}
.y271{bottom:573.894000px;}
.y2dc{bottom:574.926000px;}
.ye4{bottom:577.929000px;}
.y6b{bottom:578.377500px;}
.yc0{bottom:579.112500px;}
.y2a5{bottom:579.610500px;}
.y86{bottom:581.067000px;}
.y24b{bottom:581.758500px;}
.y36{bottom:584.679000px;}
.y3{bottom:584.913000px;}
.y150{bottom:586.447454px;}
.y312{bottom:587.791500px;}
.y198{bottom:590.103000px;}
.y116{bottom:591.670500px;}
.y2db{bottom:592.185000px;}
.y270{bottom:592.723500px;}
.y297{bottom:596.758500px;}
.y6a{bottom:597.207000px;}
.ybe{bottom:597.942000px;}
.y24a{bottom:600.588000px;}
.y85{bottom:601.242000px;}
.y2{bottom:602.802000px;}
.ybf{bottom:603.366000px;}
.y35{bottom:604.137000px;}
.y311{bottom:605.052000px;}
.y14f{bottom:605.321707px;}
.y197{bottom:606.541500px;}
.y2da{bottom:609.445500px;}
.y115{bottom:610.500000px;}
.y26f{bottom:611.553000px;}
.y296{bottom:615.588000px;}
.y69{bottom:616.036500px;}
.ybd{bottom:616.771500px;}
.y249{bottom:619.417500px;}
.y1{bottom:620.689500px;}
.y310{bottom:622.312500px;}
.y196{bottom:622.980000px;}
.y34{bottom:623.593500px;}
.y14e{bottom:624.107584px;}
.y2d9{bottom:626.706000px;}
.y114{bottom:629.329500px;}
.y216{bottom:630.170085px;}
.y26e{bottom:630.382500px;}
.y295{bottom:634.417500px;}
.y68{bottom:634.866000px;}
.ybb{bottom:635.601000px;}
.y248{bottom:638.247000px;}
.y195{bottom:639.418500px;}
.y30f{bottom:639.573000px;}
.y215{bottom:639.799950px;}
.ybc{bottom:641.025000px;}
.y33{bottom:643.050000px;}
.y2d8{bottom:643.966500px;}
.y14d{bottom:647.391819px;}
.y113{bottom:648.159000px;}
.y26d{bottom:649.212000px;}
.y294{bottom:653.247000px;}
.y67{bottom:653.695500px;}
.yba{bottom:654.430500px;}
.y194{bottom:655.855500px;}
.y30e{bottom:656.833500px;}
.y247{bottom:657.076500px;}
.y2d6{bottom:661.227000px;}
.y32{bottom:662.508000px;}
.y2d7{bottom:664.455000px;}
.y112{bottom:666.988500px;}
.y26c{bottom:668.041500px;}
.y293{bottom:672.076500px;}
.y193{bottom:672.294000px;}
.y66{bottom:672.525000px;}
.yb9{bottom:673.260000px;}
.y30d{bottom:674.094000px;}
.y2d5{bottom:678.487500px;}
.y31{bottom:681.964500px;}
.y14c{bottom:683.906002px;}
.y111{bottom:685.818000px;}
.y26b{bottom:686.871000px;}
.y192{bottom:688.732500px;}
.y246{bottom:690.642000px;}
.y292{bottom:690.906000px;}
.y65{bottom:691.354500px;}
.yb8{bottom:692.089500px;}
.y29e{bottom:695.389500px;}
.y2d4{bottom:695.748000px;}
.y30{bottom:701.422500px;}
.y14b{bottom:702.691878px;}
.y110{bottom:704.647500px;}
.y191{bottom:705.171000px;}
.y26a{bottom:705.700500px;}
.y141{bottom:707.941500px;}
.y30c{bottom:708.613500px;}
.y291{bottom:709.735500px;}
.y245{bottom:709.875000px;}
.y64{bottom:710.184000px;}
.yb6{bottom:710.919000px;}
.y2d3{bottom:713.008500px;}
.yb7{bottom:716.343000px;}
.y14a{bottom:721.566132px;}
.y190{bottom:721.609500px;}
.y10f{bottom:723.477000px;}
.y269{bottom:724.530000px;}
.y30b{bottom:725.874000px;}
.y140{bottom:726.771000px;}
.y290{bottom:728.565000px;}
.y63{bottom:729.013500px;}
.y244{bottom:729.108000px;}
.yb5{bottom:729.748500px;}
.y2d2{bottom:730.267500px;}
.ye3{bottom:734.437500px;}
.y2f{bottom:739.585500px;}
.y149{bottom:740.352008px;}
.y10e{bottom:742.306500px;}
.y30a{bottom:743.134500px;}
.y268{bottom:743.359500px;}
.ye2{bottom:745.113000px;}
.y18f{bottom:745.251000px;}
.y13f{bottom:745.600500px;}
.y28f{bottom:747.394500px;}
.y2d1{bottom:747.528000px;}
.y62{bottom:747.843000px;}
.yb4{bottom:748.578000px;}
.y21f{bottom:754.525500px;}
.y18d{bottom:755.493000px;}
.y2e{bottom:755.725500px;}
.y148{bottom:759.226261px;}
.y309{bottom:760.395000px;}
.y10d{bottom:761.136000px;}
.y267{bottom:762.189000px;}
.y13e{bottom:764.430000px;}
.y2d0{bottom:764.788500px;}
.y28e{bottom:766.224000px;}
.y61{bottom:766.671000px;}
.yb3{bottom:767.407500px;}
.y18e{bottom:768.891000px;}
.y2d{bottom:771.865500px;}
.y32f{bottom:773.097000px;}
.y2c{bottom:776.205000px;}
.y308{bottom:777.655500px;}
.y147{bottom:778.100515px;}
.y10c{bottom:779.965500px;}
.y266{bottom:781.018500px;}
.y2cf{bottom:782.049000px;}
.ye1{bottom:782.772000px;}
.y13d{bottom:783.259500px;}
.y213{bottom:784.605000px;}
.y28d{bottom:785.053500px;}
.y60{bottom:785.500500px;}
.yb2{bottom:786.237000px;}
.y2b{bottom:788.004000px;}
.y32e{bottom:790.357500px;}
.y307{bottom:794.916000px;}
.y146{bottom:796.887864px;}
.y10b{bottom:798.795000px;}
.y2ce{bottom:799.309500px;}
.y265{bottom:799.848000px;}
.y18c{bottom:800.511000px;}
.y13c{bottom:802.089000px;}
.y212{bottom:803.434500px;}
.y28c{bottom:803.883000px;}
.y5f{bottom:804.330000px;}
.yb1{bottom:805.065000px;}
.y32d{bottom:807.618000px;}
.y2a{bottom:808.483500px;}
.y1c3{bottom:810.607500px;}
.y306{bottom:812.176500px;}
.y2cd{bottom:816.570000px;}
.y264{bottom:818.677500px;}
.y18b{bottom:819.744000px;}
.y29{bottom:820.284000px;}
.y13b{bottom:820.918500px;}
.y10a{bottom:822.106500px;}
.y211{bottom:822.264000px;}
.y2a4{bottom:822.712500px;}
.y5e{bottom:823.159500px;}
.yb0{bottom:823.894500px;}
.y28b{bottom:827.194500px;}
.y1c2{bottom:829.437000px;}
.y2cc{bottom:833.830500px;}
.y263{bottom:837.507000px;}
.y13a{bottom:839.748000px;}
.y28{bottom:840.762000px;}
.y210{bottom:841.093500px;}
.y2a3{bottom:841.540500px;}
.y5d{bottom:841.989000px;}
.yaf{bottom:842.724000px;}
.y305{bottom:846.697500px;}
.y1c0{bottom:848.266500px;}
.y144{bottom:850.513173px;}
.y2cb{bottom:851.091000px;}
.y27{bottom:852.562500px;}
.y1c1{bottom:853.690500px;}
.y109{bottom:855.730500px;}
.y18a{bottom:856.335000px;}
.y139{bottom:858.577500px;}
.y20f{bottom:859.923000px;}
.y143{bottom:859.950441px;}
.y2a2{bottom:860.370000px;}
.y5c{bottom:860.818500px;}
.yae{bottom:861.553500px;}
.y304{bottom:863.956500px;}
.y1bf{bottom:867.096000px;}
.y2ca{bottom:868.351500px;}
.y26{bottom:873.042000px;}
.y108{bottom:874.560000px;}
.y189{bottom:875.164500px;}
.y138{bottom:877.407000px;}
.y20e{bottom:878.752500px;}
.y2a1{bottom:879.199500px;}
.y5b{bottom:879.648000px;}
.yad{bottom:880.383000px;}
.y303{bottom:881.217000px;}
.y25{bottom:884.841000px;}
.y1fa{bottom:885.073500px;}
.y2c9{bottom:885.610500px;}
.y1be{bottom:885.925500px;}
.y107{bottom:893.389500px;}
.y188{bottom:893.994000px;}
.y137{bottom:896.236500px;}
.y20d{bottom:897.582000px;}
.y2a0{bottom:898.029000px;}
.y5a{bottom:898.477500px;}
.yab{bottom:899.212500px;}
.y24{bottom:900.981000px;}
.y2c8{bottom:902.871000px;}
.ye0{bottom:903.903000px;}
.yac{bottom:904.638000px;}
.y1bd{bottom:904.755000px;}
.y23{bottom:905.320500px;}
.y187{bottom:912.823500px;}
.ydf{bottom:914.577000px;}
.y302{bottom:915.738000px;}
.y59{bottom:917.307000px;}
.yaa{bottom:918.042000px;}
.y106{bottom:919.324500px;}
.y136{bottom:919.549500px;}
.y2c7{bottom:920.131500px;}
.y20c{bottom:920.893500px;}
.y29f{bottom:921.342000px;}
.y1bc{bottom:923.583000px;}
.y105{bottom:929.577000px;}
.y186{bottom:931.653000px;}
.y301{bottom:932.998500px;}
.yde{bottom:933.406500px;}
.y58{bottom:936.136500px;}
.ya9{bottom:936.871500px;}
.y2c6{bottom:937.392000px;}
.y135{bottom:939.723000px;}
.y1bb{bottom:942.412500px;}
.y185{bottom:947.752500px;}
.y22{bottom:949.576500px;}
.y300{bottom:950.259000px;}
.y184{bottom:950.482500px;}
.ydd{bottom:952.236000px;}
.ya8{bottom:952.636500px;}
.y20b{bottom:954.517500px;}
.y2c5{bottom:954.652500px;}
.y57{bottom:954.966000px;}
.ya7{bottom:955.701000px;}
.y1ba{bottom:961.242000px;}
.y2ff{bottom:967.519500px;}
.y21{bottom:968.406000px;}
.y183{bottom:969.312000px;}
.y2c4{bottom:971.913000px;}
.y134{bottom:973.347000px;}
.y56{bottom:973.795500px;}
.ya6{bottom:974.530500px;}
.y104{bottom:976.986000px;}
.y1b9{bottom:980.071500px;}
.y2fe{bottom:984.780000px;}
.y103{bottom:987.238500px;}
.y181{bottom:988.141500px;}
.y2c3{bottom:989.173500px;}
.y133{bottom:992.176500px;}
.y55{bottom:992.625000px;}
.ya5{bottom:993.360000px;}
.y182{bottom:993.567000px;}
.y1b8{bottom:998.901000px;}
.y2fc{bottom:1002.039000px;}
.y2fd{bottom:1002.040500px;}
.y2c2{bottom:1006.434000px;}
.y180{bottom:1006.971000px;}
.y20{bottom:1008.324000px;}
.y132{bottom:1011.006000px;}
.y54{bottom:1011.454500px;}
.y2fb{bottom:1019.299500px;}
.y2c1{bottom:1023.693000px;}
.y17f{bottom:1025.800500px;}
.ya3{bottom:1025.992500px;}
.y1b7{bottom:1029.378000px;}
.y131{bottom:1029.835500px;}
.y53{bottom:1030.284000px;}
.y1b6{bottom:1033.422000px;}
.y20a{bottom:1034.319000px;}
.y2fa{bottom:1036.560000px;}
.y1f{bottom:1036.569000px;}
.ya4{bottom:1037.880000px;}
.ya2{bottom:1039.138500px;}
.ya0{bottom:1042.248000px;}
.y17d{bottom:1044.630000px;}
.y2c0{bottom:1045.437000px;}
.y52{bottom:1049.113500px;}
.y17e{bottom:1050.055500px;}
.y130{bottom:1053.148500px;}
.y2f9{bottom:1053.820500px;}
.ya1{bottom:1058.386500px;}
.y17c{bottom:1063.459500px;}
.y1e{bottom:1064.812500px;}
.y51{bottom:1067.943000px;}
.y2f8{bottom:1071.081000px;}
.y2bf{bottom:1079.061000px;}
.y17b{bottom:1082.289000px;}
.y50{bottom:1086.772500px;}
.y2f7{bottom:1088.341500px;}
.y1f9{bottom:1092.196500px;}
.y1d{bottom:1093.057500px;}
.y4f{bottom:1102.872000px;}
.y4e{bottom:1105.602000px;}
.y1b{bottom:1136.544000px;}
.y4d{bottom:1168.366500px;}
.h8{height:31.131341px;}
.h10{height:31.526842px;}
.h11{height:33.345326px;}
.h2{height:36.319550px;}
.hb{height:38.896243px;}
.hf{height:39.432893px;}
.h2e{height:39.851684px;}
.h18{height:41.482876px;}
.h9{height:41.508281px;}
.h19{height:41.723369px;}
.h16{height:42.500452px;}
.h20{height:42.749782px;}
.hd{height:43.217759px;}
.h22{height:43.382686px;}
.h1e{height:43.394055px;}
.ha{height:43.660208px;}
.h5{height:43.875290px;}
.h33{height:44.279648px;}
.h31{height:44.945508px;}
.hc{height:46.697011px;}
.h13{height:46.714950px;}
.h23{height:48.940664px;}
.h39{height:49.117939px;}
.h26{height:49.815733px;}
.h35{height:49.939453px;}
.h2f{height:50.039332px;}
.h30{height:50.329951px;}
.h3{height:50.931027px;}
.he{height:51.885221px;}
.h17{height:53.222842px;}
.h1c{height:53.228842px;}
.h1f{height:54.487273px;}
.h7{height:54.541601px;}
.h38{height:54.575123px;}
.h21{height:54.803725px;}
.h34{height:55.599258px;}
.h27{height:55.843550px;}
.h28{height:55.849550px;}
.h37{height:55.922168px;}
.h14{height:64.116893px;}
.h2b{height:64.122893px;}
.h15{height:64.186950px;}
.h12{height:65.024177px;}
.h29{height:66.275011px;}
.h2c{height:68.061221px;}
.h2a{height:74.797550px;}
.h6{height:77.792486px;}
.h24{height:82.898720px;}
.h25{height:85.228957px;}
.h1a{height:92.349221px;}
.h1b{height:92.895221px;}
.h4{height:102.503837px;}
.h1d{height:259.308000px;}
.h2d{height:298.679400px;}
.h36{height:366.021000px;}
.h32{height:583.591500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w4{width:503.691750px;}
.w3{width:541.226070px;}
.w6{width:708.477600px;}
.w5{width:774.455850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xb2{left:-200.615310px;}
.xca{left:-181.743750px;}
.xb5{left:-177.683310px;}
.xb7{left:-165.070710px;}
.xdf{left:-37.112400px;}
.xb3{left:-8.956357px;}
.xcb{left:-5.730426px;}
.xdb{left:-1.767150px;}
.x0{left:0.000000px;}
.xb4{left:22.267025px;}
.x3{left:52.444500px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.xb9{left:77.041500px;}
.xbb{left:85.258500px;}
.xba{left:88.621500px;}
.xde{left:92.006400px;}
.xe1{left:158.457600px;}
.xe2{left:190.317600px;}
.xdd{left:193.802850px;}
.x103{left:238.488000px;}
.xb6{left:247.352675px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x90{left:262.090500px;}
.x5{left:269.746500px;}
.x18{left:271.596000px;}
.x85{left:275.089500px;}
.xc9{left:277.104000px;}
.xbf{left:278.611500px;}
.xc{left:281.479500px;}
.x49{left:282.516000px;}
.x8a{left:284.599500px;}
.x7f{left:288.537000px;}
.x4e{left:294.556500px;}
.x99{left:298.111500px;}
.x7c{left:300.186000px;}
.xa2{left:305.371500px;}
.xb8{left:306.804000px;}
.x7{left:309.685500px;}
.xfb{left:314.958000px;}
.x15{left:316.263000px;}
.x24{left:318.600000px;}
.xda{left:319.641000px;}
.x77{left:322.426500px;}
.xa{left:323.947500px;}
.x3d{left:326.143500px;}
.x80{left:327.562500px;}
.x16{left:331.065000px;}
.x4a{left:332.226000px;}
.x25{left:333.543000px;}
.xa4{left:335.466000px;}
.x17{left:338.536500px;}
.xc3{left:339.919500px;}
.x3e{left:341.088000px;}
.xa5{left:342.273000px;}
.x7d{left:343.588500px;}
.x3f{left:344.880000px;}
.x4f{left:347.062500px;}
.x7e{left:350.395500px;}
.xa3{left:353.962500px;}
.xd9{left:358.207500px;}
.x40{left:359.823000px;}
.xd8{left:362.175000px;}
.x30{left:363.672000px;}
.xe6{left:367.639500px;}
.xa9{left:370.579500px;}
.xf1{left:373.132500px;}
.x8c{left:376.534500px;}
.x31{left:378.616500px;}
.xf7{left:380.343000px;}
.x1d{left:381.379500px;}
.xe7{left:382.584000px;}
.x32{left:385.938000px;}
.xaa{left:387.063000px;}
.x9b{left:390.105000px;}
.x8d{left:391.479000px;}
.x8e{left:395.289000px;}
.x1e{left:396.324000px;}
.x33{left:400.882500px;}
.x8{left:403.839000px;}
.xe8{left:405.150000px;}
.x8f{left:410.233500px;}
.x4b{left:412.326000px;}
.xa6{left:414.840000px;}
.xc7{left:416.658000px;}
.xfa{left:417.768000px;}
.x1f{left:418.858500px;}
.xe9{left:420.093000px;}
.x2a{left:421.260000px;}
.x5f{left:422.349000px;}
.xea{left:423.904500px;}
.x78{left:425.055000px;}
.xfc{left:426.730500px;}
.xd0{left:430.048500px;}
.x79{left:431.481000px;}
.x60{left:432.522000px;}
.x2b{left:436.203000px;}
.xad{left:438.813000px;}
.x58{left:441.166500px;}
.xc4{left:444.288000px;}
.x26{left:445.849500px;}
.x59{left:447.592500px;}
.x38{left:449.731500px;}
.x9{left:451.083000px;}
.x63{left:452.586000px;}
.xec{left:455.238000px;}
.x4c{left:456.601500px;}
.x27{left:460.794000px;}
.xe3{left:463.090500px;}
.x39{left:464.674500px;}
.xe4{left:466.900500px;}
.xf8{left:468.145500px;}
.x64{left:469.963500px;}
.x3a{left:472.198500px;}
.x89{left:475.107000px;}
.xed{left:477.802500px;}
.x82{left:478.891500px;}
.xcc{left:479.937000px;}
.xe5{left:481.845000px;}
.x45{left:483.120000px;}
.x83{left:485.697000px;}
.x3b{left:487.143000px;}
.xee{left:490.942500px;}
.xd6{left:492.081000px;}
.xab{left:496.758000px;}
.x46{left:498.064500px;}
.x75{left:501.645000px;}
.x50{left:502.894500px;}
.x47{left:505.387500px;}
.xd7{left:507.024000px;}
.x4d{left:510.036000px;}
.x2c{left:512.898000px;}
.x66{left:516.516000px;}
.x9c{left:518.311500px;}
.x48{left:520.330500px;}
.x86{left:522.094500px;}
.x65{left:524.466000px;}
.x2d{left:527.841000px;}
.xc0{left:530.991000px;}
.xd4{left:532.149000px;}
.xc2{left:534.165000px;}
.x6d{left:535.734000px;}
.x67{left:541.843500px;}
.x91{left:544.335000px;}
.x6e{left:545.551500px;}
.x92{left:550.759500px;}
.xeb{left:554.112000px;}
.x51{left:556.024500px;}
.x9d{left:558.411000px;}
.x6f{left:560.899500px;}
.x6c{left:561.949500px;}
.x54{left:563.149500px;}
.x87{left:564.687000px;}
.xcd{left:565.780500px;}
.xc1{left:566.959500px;}
.x55{left:569.575500px;}
.x88{left:571.494000px;}
.x68{left:573.094500px;}
.xce{left:574.750500px;}
.x20{left:577.542000px;}
.x97{left:582.517500px;}
.x9e{left:584.407500px;}
.x56{left:590.763000px;}
.x21{left:592.486500px;}
.x9f{left:593.638500px;}
.x57{left:597.189000px;}
.x6a{left:598.288500px;}
.x69{left:599.502000px;}
.x70{left:601.627500px;}
.xf2{left:603.663000px;}
.x52{left:605.056500px;}
.xa8{left:608.242500px;}
.x11{left:613.296000px;}
.x71{left:618.922500px;}
.x12{left:620.769000px;}
.x13{left:624.519000px;}
.x6b{left:627.256500px;}
.x95{left:629.295000px;}
.x9a{left:630.592500px;}
.x14{left:631.990500px;}
.x96{left:636.102000px;}
.x7a{left:638.097000px;}
.xc6{left:639.435000px;}
.xd{left:643.582500px;}
.x7b{left:644.902500px;}
.xe{left:651.054000px;}
.xf{left:654.865500px;}
.x53{left:657.015000px;}
.x28{left:660.769500px;}
.x10{left:662.337000px;}
.xfe{left:663.634500px;}
.xc8{left:664.941000px;}
.x34{left:666.648000px;}
.xa7{left:668.140500px;}
.xd1{left:669.147000px;}
.x5a{left:672.990000px;}
.x29{left:675.712500px;}
.x5b{left:679.416000px;}
.x35{left:681.592500px;}
.xa0{left:682.627500px;}
.x5c{left:684.292500px;}
.x76{left:685.963500px;}
.x36{left:689.011500px;}
.x3c{left:690.118500px;}
.xf3{left:693.187500px;}
.x100{left:694.947000px;}
.xc5{left:696.315000px;}
.x72{left:697.762500px;}
.x61{left:699.985500px;}
.x37{left:703.956000px;}
.xcf{left:705.774000px;}
.x62{left:706.792500px;}
.xbc{left:711.334500px;}
.x5d{left:712.612500px;}
.xef{left:715.209000px;}
.xe0{left:717.086988px;}
.x5e{left:719.038500px;}
.x101{left:721.846500px;}
.xfd{left:723.504000px;}
.xf6{left:725.337000px;}
.x98{left:728.017500px;}
.xf0{left:730.153500px;}
.x22{left:732.129000px;}
.x93{left:733.887000px;}
.x41{left:736.513500px;}
.x73{left:740.047500px;}
.x94{left:744.066000px;}
.x23{left:747.073500px;}
.x74{left:749.427000px;}
.x42{left:751.458000px;}
.x43{left:755.268000px;}
.xff{left:756.355500px;}
.xa1{left:760.666500px;}
.xf9{left:762.070500px;}
.xb0{left:764.025000px;}
.x44{left:770.212500px;}
.xd2{left:776.593500px;}
.xb1{left:780.051000px;}
.xdc{left:782.672598px;}
.x102{left:789.646500px;}
.x8b{left:790.675500px;}
.xb{left:795.498000px;}
.xf5{left:797.685000px;}
.xd5{left:799.105500px;}
.xae{left:802.141500px;}
.x2e{left:809.458500px;}
.xf4{left:810.540000px;}
.x19{left:813.139500px;}
.xac{left:814.281000px;}
.x84{left:815.965500px;}
.x2f{left:817.020000px;}
.x1a{left:820.612500px;}
.x1b{left:824.422500px;}
.x81{left:825.532500px;}
.xbd{left:829.000500px;}
.xaf{left:830.508000px;}
.x1c{left:831.894000px;}
.xbe{left:835.426500px;}
.xd3{left:837.852000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.453333pt;}
.v8{vertical-align:-9.328000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.109333pt;}
.vc{vertical-align:14.378667pt;}
.v5{vertical-align:15.530667pt;}
.va{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.941333pt;}
.vb{vertical-align:34.202667pt;}
.v6{vertical-align:35.968000pt;}
.v7{vertical-align:37.008000pt;}
.lsa2{letter-spacing:-0.293386pt;}
.lsc5{letter-spacing:-0.197728pt;}
.ls5e{letter-spacing:-0.178062pt;}
.ls6a{letter-spacing:-0.162351pt;}
.lsa1{letter-spacing:-0.134669pt;}
.lscf{letter-spacing:-0.128256pt;}
.ls6d{letter-spacing:-0.120454pt;}
.lsa3{letter-spacing:-0.120240pt;}
.ls61{letter-spacing:-0.115217pt;}
.lsa6{letter-spacing:-0.110621pt;}
.lsce{letter-spacing:-0.106880pt;}
.lsa9{letter-spacing:-0.105811pt;}
.ls66{letter-spacing:-0.104742pt;}
.lsab{letter-spacing:-0.101002pt;}
.ls5a{letter-spacing:-0.099505pt;}
.ls98{letter-spacing:-0.096192pt;}
.ls60{letter-spacing:-0.094268pt;}
.lsd1{letter-spacing:-0.090848pt;}
.ls5c{letter-spacing:-0.089031pt;}
.lsa5{letter-spacing:-0.086573pt;}
.lsc6{letter-spacing:-0.085504pt;}
.ls69{letter-spacing:-0.083794pt;}
.lscb{letter-spacing:-0.080160pt;}
.ls65{letter-spacing:-0.078557pt;}
.lsca{letter-spacing:-0.074816pt;}
.ls9a{letter-spacing:-0.072144pt;}
.ls9c{letter-spacing:-0.067334pt;}
.lsd0{letter-spacing:-0.064128pt;}
.lsa7{letter-spacing:-0.062525pt;}
.ls9e{letter-spacing:-0.060480pt;}
.ls9f{letter-spacing:-0.057715pt;}
.ls64{letter-spacing:-0.057608pt;}
.ls6b{letter-spacing:-0.052371pt;}
.lsd2{letter-spacing:-0.048096pt;}
.ls5b{letter-spacing:-0.047134pt;}
.lsb3{letter-spacing:-0.046816pt;}
.ls56{letter-spacing:-0.045880pt;}
.lsa4{letter-spacing:-0.043286pt;}
.lscd{letter-spacing:-0.042752pt;}
.ls96{letter-spacing:-0.042134pt;}
.ls99{letter-spacing:-0.038477pt;}
.ls6c{letter-spacing:-0.036660pt;}
.lsa8{letter-spacing:-0.033667pt;}
.lsc7{letter-spacing:-0.032064pt;}
.lsa0{letter-spacing:-0.028858pt;}
.lsc4{letter-spacing:-0.026720pt;}
.ls5d{letter-spacing:-0.026186pt;}
.ls9b{letter-spacing:-0.024048pt;}
.ls63{letter-spacing:-0.020948pt;}
.ls9d{letter-spacing:-0.019238pt;}
.lsb5{letter-spacing:-0.019200pt;}
.ls59{letter-spacing:-0.015711pt;}
.lsaa{letter-spacing:-0.014429pt;}
.lsb4{letter-spacing:-0.012768pt;}
.ls57{letter-spacing:-0.012513pt;}
.ls97{letter-spacing:-0.011491pt;}
.lsc8{letter-spacing:-0.010688pt;}
.ls62{letter-spacing:-0.010474pt;}
.ls58{letter-spacing:-0.005237pt;}
.ls68{letter-spacing:-0.004704pt;}
.lse{letter-spacing:0.000000pt;}
.lsee{letter-spacing:0.000078pt;}
.lsd4{letter-spacing:0.000192pt;}
.lsf5{letter-spacing:0.000225pt;}
.lsdd{letter-spacing:0.000234pt;}
.lsf7{letter-spacing:0.000372pt;}
.ls26{letter-spacing:0.000387pt;}
.ls25{letter-spacing:0.000540pt;}
.ls3c{letter-spacing:0.000583pt;}
.lsef{letter-spacing:0.000585pt;}
.lse7{letter-spacing:0.000600pt;}
.lsf6{letter-spacing:0.000621pt;}
.lse3{letter-spacing:0.000711pt;}
.ls2f{letter-spacing:0.000747pt;}
.ls55{letter-spacing:0.000751pt;}
.lsf3{letter-spacing:0.000801pt;}
.lsd5{letter-spacing:0.000921pt;}
.lse1{letter-spacing:0.001026pt;}
.lse0{letter-spacing:0.001156pt;}
.lsfd{letter-spacing:0.001158pt;}
.ls2a{letter-spacing:0.001215pt;}
.lsf0{letter-spacing:0.001408pt;}
.lsfc{letter-spacing:0.001579pt;}
.lsdc{letter-spacing:0.001628pt;}
.lsb{letter-spacing:0.001735pt;}
.ls32{letter-spacing:0.001874pt;}
.ls50{letter-spacing:0.002185pt;}
.ls71{letter-spacing:0.002193pt;}
.lsd6{letter-spacing:0.002262pt;}
.ls29{letter-spacing:0.002271pt;}
.lsdb{letter-spacing:0.002525pt;}
.lsea{letter-spacing:0.002557pt;}
.lse4{letter-spacing:0.002805pt;}
.lsd7{letter-spacing:0.002826pt;}
.lsdf{letter-spacing:0.002879pt;}
.lsec{letter-spacing:0.003230pt;}
.lsd8{letter-spacing:0.003304pt;}
.ls6f{letter-spacing:0.003635pt;}
.ls3d{letter-spacing:0.003705pt;}
.ls2{letter-spacing:0.003733pt;}
.ls5{letter-spacing:0.004237pt;}
.ls87{letter-spacing:0.004320pt;}
.lsfe{letter-spacing:0.004428pt;}
.ls4a{letter-spacing:0.004704pt;}
.ls91{letter-spacing:0.004810pt;}
.ls45{letter-spacing:0.005237pt;}
.lsb9{letter-spacing:0.005344pt;}
.lsb1{letter-spacing:0.009600pt;}
.ls90{letter-spacing:0.009619pt;}
.ls49{letter-spacing:0.010474pt;}
.ls8b{letter-spacing:0.012960pt;}
.ls8f{letter-spacing:0.014429pt;}
.lsbc{letter-spacing:0.016032pt;}
.ls4d{letter-spacing:0.017562pt;}
.lsb2{letter-spacing:0.019200pt;}
.ls83{letter-spacing:0.019238pt;}
.ls40{letter-spacing:0.020948pt;}
.lsb8{letter-spacing:0.021376pt;}
.ls84{letter-spacing:0.024048pt;}
.ls41{letter-spacing:0.026186pt;}
.lsbb{letter-spacing:0.026720pt;}
.lsb0{letter-spacing:0.028800pt;}
.ls43{letter-spacing:0.031423pt;}
.lsbd{letter-spacing:0.032064pt;}
.lsb7{letter-spacing:0.033600pt;}
.ls8e{letter-spacing:0.033667pt;}
.ls46{letter-spacing:0.036660pt;}
.lsbf{letter-spacing:0.037408pt;}
.ls86{letter-spacing:0.038477pt;}
.ls8c{letter-spacing:0.038880pt;}
.ls42{letter-spacing:0.041897pt;}
.lsc3{letter-spacing:0.042752pt;}
.ls89{letter-spacing:0.043200pt;}
.ls4c{letter-spacing:0.047040pt;}
.ls48{letter-spacing:0.047134pt;}
.ls92{letter-spacing:0.048096pt;}
.ls8d{letter-spacing:0.051840pt;}
.lsb6{letter-spacing:0.052800pt;}
.ls85{letter-spacing:0.052906pt;}
.lsc2{letter-spacing:0.053440pt;}
.lsc0{letter-spacing:0.058784pt;}
.ls67{letter-spacing:0.062845pt;}
.lsbe{letter-spacing:0.064128pt;}
.ls5f{letter-spacing:0.068083pt;}
.lsc1{letter-spacing:0.069472pt;}
.ls44{letter-spacing:0.078557pt;}
.lscc{letter-spacing:0.080160pt;}
.ls82{letter-spacing:0.081763pt;}
.ls8a{letter-spacing:0.086400pt;}
.ls47{letter-spacing:0.089031pt;}
.lsba{letter-spacing:0.090848pt;}
.ls7c{letter-spacing:0.133348pt;}
.ls81{letter-spacing:0.137894pt;}
.ls80{letter-spacing:0.145555pt;}
.ls3f{letter-spacing:0.145981pt;}
.lsaf{letter-spacing:0.153216pt;}
.ls4e{letter-spacing:0.157114pt;}
.ls3e{letter-spacing:0.158493pt;}
.lsae{letter-spacing:0.161728pt;}
.ls17{letter-spacing:0.352015pt;}
.ls1e{letter-spacing:0.357348pt;}
.ls4b{letter-spacing:0.470400pt;}
.ls14{letter-spacing:0.482502pt;}
.ls1d{letter-spacing:0.487835pt;}
.ls33{letter-spacing:0.596214pt;}
.ls37{letter-spacing:0.601548pt;}
.ls30{letter-spacing:0.637762pt;}
.ls11{letter-spacing:0.662778pt;}
.ls34{letter-spacing:0.663552pt;}
.ls23{letter-spacing:0.668111pt;}
.ls1c{letter-spacing:0.706502pt;}
.ls1b{letter-spacing:1.008508pt;}
.ls13{letter-spacing:1.291174pt;}
.ls74{letter-spacing:1.649382pt;}
.ls19{letter-spacing:1.834682pt;}
.ls88{letter-spacing:1.870560pt;}
.ls15{letter-spacing:1.948111pt;}
.ls20{letter-spacing:2.053348pt;}
.lsc9{letter-spacing:2.319296pt;}
.ls53{letter-spacing:2.656533pt;}
.ls7{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls6e{letter-spacing:3.123467pt;}
.ls24{letter-spacing:3.158400pt;}
.ls31{letter-spacing:3.163733pt;}
.ls16{letter-spacing:4.907174pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7a{letter-spacing:10.623733pt;}
.lsa{letter-spacing:10.625718pt;}
.lsd{letter-spacing:10.626533pt;}
.ls9{letter-spacing:10.631051pt;}
.ls2d{letter-spacing:10.968429pt;}
.ls2e{letter-spacing:10.973762pt;}
.ls12{letter-spacing:10.995733pt;}
.lsf4{letter-spacing:11.598541pt;}
.lse9{letter-spacing:11.825875pt;}
.lsd9{letter-spacing:11.954133pt;}
.lsde{letter-spacing:11.959467pt;}
.lsed{letter-spacing:11.959637pt;}
.lse6{letter-spacing:12.036776pt;}
.lsf9{letter-spacing:12.042125pt;}
.lsf1{letter-spacing:12.097088pt;}
.lse8{letter-spacing:12.112345pt;}
.lse5{letter-spacing:12.161213pt;}
.lsfa{letter-spacing:12.186008pt;}
.ls52{letter-spacing:12.528078pt;}
.lseb{letter-spacing:12.860486pt;}
.ls7b{letter-spacing:13.049865pt;}
.ls28{letter-spacing:13.106965pt;}
.lsd3{letter-spacing:13.124065pt;}
.ls93{letter-spacing:13.188711pt;}
.ls6{letter-spacing:13.279207pt;}
.ls79{letter-spacing:13.281067pt;}
.ls4{letter-spacing:13.283733pt;}
.lsda{letter-spacing:13.357218pt;}
.lsfb{letter-spacing:13.540225pt;}
.ls7e{letter-spacing:13.649067pt;}
.ls94{letter-spacing:13.654400pt;}
.ls3b{letter-spacing:13.923096pt;}
.lse2{letter-spacing:14.350682pt;}
.ls18{letter-spacing:14.443174pt;}
.lsad{letter-spacing:14.505546pt;}
.ls72{letter-spacing:14.613867pt;}
.lsf8{letter-spacing:14.823467pt;}
.ls35{letter-spacing:16.020214pt;}
.ls7d{letter-spacing:16.061762pt;}
.lsac{letter-spacing:16.099562pt;}
.lsf2{letter-spacing:16.206892pt;}
.ls2b{letter-spacing:16.988622pt;}
.lsf{letter-spacing:17.045044pt;}
.ls10{letter-spacing:17.389762pt;}
.ls27{letter-spacing:17.929799pt;}
.ls38{letter-spacing:17.966881pt;}
.ls3a{letter-spacing:17.972214pt;}
.ls1f{letter-spacing:18.187174pt;}
.ls22{letter-spacing:18.520495pt;}
.ls2c{letter-spacing:21.773762pt;}
.ls1a{letter-spacing:24.096508pt;}
.ls36{letter-spacing:25.421762pt;}
.ls39{letter-spacing:29.192429pt;}
.ls1{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls4f{letter-spacing:150.830933pt;}
.ls51{letter-spacing:252.811200pt;}
.ls54{letter-spacing:274.064533pt;}
.ls21{letter-spacing:400.880508pt;}
.ls95{letter-spacing:521.467733pt;}
.ls7f{letter-spacing:536.422400pt;}
.ls70{letter-spacing:560.309867pt;}
.ls77{letter-spacing:572.267200pt;}
.ls73{letter-spacing:588.187200pt;}
.ls76{letter-spacing:614.827200pt;}
.ls75{letter-spacing:619.472533pt;}
.ls78{letter-spacing:632.672533pt;}
.wsf{word-spacing:-13.283467pt;}
.ws93{word-spacing:-13.134697pt;}
.ws94{word-spacing:-13.092800pt;}
.ws92{word-spacing:-13.071852pt;}
.wsf6{word-spacing:-12.072096pt;}
.wsf2{word-spacing:-12.024000pt;}
.ws96{word-spacing:-11.955200pt;}
.wsf5{word-spacing:-11.889331pt;}
.ws14b{word-spacing:-10.801728pt;}
.wsf4{word-spacing:-10.800000pt;}
.ws14c{word-spacing:-10.640000pt;}
.ws14{word-spacing:-10.626800pt;}
.ws8f{word-spacing:-10.585693pt;}
.ws90{word-spacing:-10.427200pt;}
.wse{word-spacing:-10.095467pt;}
.wsf0{word-spacing:-9.721555pt;}
.wsf1{word-spacing:-9.576000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws95{word-spacing:-7.840000pt;}
.ws7e{word-spacing:-3.767686pt;}
.ws81{word-spacing:-3.764011pt;}
.ws7f{word-spacing:-3.751026pt;}
.ws165{word-spacing:-2.821632pt;}
.ws4b{word-spacing:-2.816095pt;}
.ws18e{word-spacing:-2.656693pt;}
.ws88{word-spacing:-2.550426pt;}
.ws128{word-spacing:-2.539469pt;}
.ws12a{word-spacing:-2.525040pt;}
.ws69{word-spacing:-2.497292pt;}
.ws129{word-spacing:-2.481754pt;}
.wsbb{word-spacing:-2.461446pt;}
.wsba{word-spacing:-2.435261pt;}
.ws59{word-spacing:-2.391024pt;}
.ws1d9{word-spacing:-2.343219pt;}
.wsec{word-spacing:-2.290667pt;}
.wsfa{word-spacing:-2.285333pt;}
.ws13e{word-spacing:-2.284756pt;}
.ws6c{word-spacing:-2.272512pt;}
.ws19c{word-spacing:-2.178489pt;}
.ws1a0{word-spacing:-2.125355pt;}
.wsc2{word-spacing:-2.110559pt;}
.wsc1{word-spacing:-2.100085pt;}
.ws144{word-spacing:-2.072221pt;}
.ws7d{word-spacing:-1.912819pt;}
.ws12b{word-spacing:-1.880554pt;}
.ws76{word-spacing:-1.859685pt;}
.ws175{word-spacing:-1.854368pt;}
.ws1b3{word-spacing:-1.817190pt;}
.ws46{word-spacing:-1.806551pt;}
.ws174{word-spacing:-1.758176pt;}
.ws1bc{word-spacing:-1.721549pt;}
.ws191{word-spacing:-1.647150pt;}
.ws164{word-spacing:-1.640608pt;}
.ws1b4{word-spacing:-1.578086pt;}
.ws18a{word-spacing:-1.560448pt;}
.ws193{word-spacing:-1.540882pt;}
.ws18b{word-spacing:-1.539072pt;}
.wsa5{word-spacing:-1.508291pt;}
.ws1b5{word-spacing:-1.434624pt;}
.ws198{word-spacing:-1.434614pt;}
.ws15c{word-spacing:-1.381481pt;}
.ws1bb{word-spacing:-1.338982pt;}
.ws19e{word-spacing:-1.328347pt;}
.ws1ba{word-spacing:-1.291162pt;}
.wsfd{word-spacing:-1.222079pt;}
.wsaf{word-spacing:-1.199300pt;}
.wsa4{word-spacing:-1.173115pt;}
.ws68{word-spacing:-1.168945pt;}
.ws1bd{word-spacing:-1.147699pt;}
.ws45{word-spacing:-1.115811pt;}
.ws125{word-spacing:-1.096589pt;}
.ws126{word-spacing:-1.082160pt;}
.ws15d{word-spacing:-1.062677pt;}
.wsfb{word-spacing:-1.009543pt;}
.ws75{word-spacing:-0.956410pt;}
.ws182{word-spacing:-0.935200pt;}
.wsb2{word-spacing:-0.932207pt;}
.ws184{word-spacing:-0.924512pt;}
.wsfe{word-spacing:-0.903276pt;}
.wsa8{word-spacing:-0.890310pt;}
.wsb1{word-spacing:-0.869362pt;}
.wsfc{word-spacing:-0.850142pt;}
.ws183{word-spacing:-0.817632pt;}
.ws107{word-spacing:-0.812822pt;}
.ws37{word-spacing:-0.797008pt;}
.wsa9{word-spacing:-0.775094pt;}
.ws131{word-spacing:-0.774346pt;}
.ws104{word-spacing:-0.755107pt;}
.ws2d{word-spacing:-0.743874pt;}
.ws105{word-spacing:-0.721440pt;}
.ws1b6{word-spacing:-0.717312pt;}
.ws130{word-spacing:-0.707011pt;}
.ws103{word-spacing:-0.697392pt;}
.wsdf{word-spacing:-0.669491pt;}
.ws57{word-spacing:-0.637606pt;}
.ws16d{word-spacing:-0.593184pt;}
.ws58{word-spacing:-0.584473pt;}
.ws17c{word-spacing:-0.577152pt;}
.wsc5{word-spacing:-0.549898pt;}
.wsa2{word-spacing:-0.544660pt;}
.ws127{word-spacing:-0.543485pt;}
.wsa3{word-spacing:-0.534186pt;}
.ws1e5{word-spacing:-0.526029pt;}
.ws48{word-spacing:-0.478205pt;}
.ws17b{word-spacing:-0.454240pt;}
.wsc6{word-spacing:-0.445155pt;}
.wsd2{word-spacing:-0.392784pt;}
.wsb{word-spacing:-0.382566pt;}
.ws39{word-spacing:-0.371937pt;}
.ws1e6{word-spacing:-0.334746pt;}
.ws77{word-spacing:-0.318803pt;}
.wsae{word-spacing:-0.314227pt;}
.wsca{word-spacing:-0.298516pt;}
.ws106{word-spacing:-0.298195pt;}
.ws14e{word-spacing:-0.286925pt;}
.ws31{word-spacing:-0.265669pt;}
.ws14f{word-spacing:-0.242592pt;}
.ws121{word-spacing:-0.240480pt;}
.ws21{word-spacing:-0.239104pt;}
.ws9f{word-spacing:-0.237740pt;}
.wsb6{word-spacing:-0.225196pt;}
.ws100{word-spacing:-0.218333pt;}
.ws2a{word-spacing:-0.212535pt;}
.wsd4{word-spacing:-0.199011pt;}
.ws1ae{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.ws1b8{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws150{word-spacing:-0.068096pt;}
.wsa0{word-spacing:-0.066734pt;}
.ws101{word-spacing:-0.061286pt;}
.ws157{word-spacing:-0.053440pt;}
.ws10{word-spacing:-0.053134pt;}
.ws91{word-spacing:-0.052371pt;}
.wsf3{word-spacing:-0.048096pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws1c9{word-spacing:-0.033452pt;}
.wse4{word-spacing:-0.012783pt;}
.ws1c2{word-spacing:-0.007526pt;}
.ws1c8{word-spacing:-0.007083pt;}
.ws1c5{word-spacing:-0.006656pt;}
.ws1e7{word-spacing:-0.006434pt;}
.ws1c7{word-spacing:-0.006221pt;}
.wse6{word-spacing:-0.004267pt;}
.ws1d3{word-spacing:-0.003806pt;}
.wse2{word-spacing:-0.002389pt;}
.ws1c1{word-spacing:-0.002193pt;}
.wsc{word-spacing:-0.002126pt;}
.ws1bf{word-spacing:-0.001126pt;}
.ws1cc{word-spacing:-0.000887pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.000311pt;}
.ws2b{word-spacing:0.000559pt;}
.ws12{word-spacing:0.000645pt;}
.ws2{word-spacing:0.002006pt;}
.ws185{word-spacing:0.026720pt;}
.ws1e4{word-spacing:0.032973pt;}
.wsde{word-spacing:0.042507pt;}
.ws172{word-spacing:0.042752pt;}
.ws19{word-spacing:0.047821pt;}
.wsb7{word-spacing:0.052371pt;}
.ws10c{word-spacing:0.052906pt;}
.ws25{word-spacing:0.053134pt;}
.ws168{word-spacing:0.053440pt;}
.ws122{word-spacing:0.062525pt;}
.wsb4{word-spacing:0.083794pt;}
.ws10e{word-spacing:0.091382pt;}
.ws1b{word-spacing:0.095642pt;}
.wsb8{word-spacing:0.099505pt;}
.ws118{word-spacing:0.101002pt;}
.ws138{word-spacing:0.105811pt;}
.ws2f{word-spacing:0.106268pt;}
.wsce{word-spacing:0.108192pt;}
.ws162{word-spacing:0.124800pt;}
.ws13{word-spacing:0.127522pt;}
.ws117{word-spacing:0.129859pt;}
.ws156{word-spacing:0.139200pt;}
.ws10d{word-spacing:0.139478pt;}
.ws1ab{word-spacing:0.143462pt;}
.ws1db{word-spacing:0.148107pt;}
.wscc{word-spacing:0.150528pt;}
.ws32{word-spacing:0.159402pt;}
.wscd{word-spacing:0.159936pt;}
.ws167{word-spacing:0.165664pt;}
.ws15{word-spacing:0.170029pt;}
.ws186{word-spacing:0.171008pt;}
.wsb3{word-spacing:0.172825pt;}
.ws137{word-spacing:0.173146pt;}
.ws14d{word-spacing:0.191283pt;}
.wsb5{word-spacing:0.193773pt;}
.wsd5{word-spacing:0.199011pt;}
.ws114{word-spacing:0.203040pt;}
.ws33{word-spacing:0.212535pt;}
.ws1de{word-spacing:0.239104pt;}
.wsad{word-spacing:0.256619pt;}
.ws2c{word-spacing:0.265669pt;}
.ws1d1{word-spacing:0.286925pt;}
.ws10b{word-spacing:0.307814pt;}
.ws29{word-spacing:0.318803pt;}
.wsf8{word-spacing:0.334746pt;}
.ws15b{word-spacing:0.371937pt;}
.ws136{word-spacing:0.384768pt;}
.ws135{word-spacing:0.394387pt;}
.ws56{word-spacing:0.425071pt;}
.ws1a3{word-spacing:0.478205pt;}
.ws84{word-spacing:0.500000pt;}
.ws74{word-spacing:0.505333pt;}
.ws65{word-spacing:0.508000pt;}
.wse9{word-spacing:0.510086pt;}
.ws85{word-spacing:0.531339pt;}
.wsf7{word-spacing:0.573850pt;}
.ws13c{word-spacing:0.584473pt;}
.ws97{word-spacing:0.601711pt;}
.ws99{word-spacing:0.604911pt;}
.ws9e{word-spacing:0.607044pt;}
.ws171{word-spacing:0.657312pt;}
.ws83{word-spacing:0.661867pt;}
.ws1b2{word-spacing:0.669491pt;}
.ws19b{word-spacing:0.690740pt;}
.ws170{word-spacing:0.721440pt;}
.ws199{word-spacing:0.743874pt;}
.wsa7{word-spacing:0.754145pt;}
.ws158{word-spacing:0.765133pt;}
.wscb{word-spacing:0.780864pt;}
.ws155{word-spacing:0.792000pt;}
.ws141{word-spacing:0.797008pt;}
.wsa6{word-spacing:0.806516pt;}
.ws66{word-spacing:0.850142pt;}
.wsef{word-spacing:0.903276pt;}
.ws1df{word-spacing:0.908595pt;}
.wsf9{word-spacing:0.956410pt;}
.ws1a{word-spacing:0.956416pt;}
.ws86{word-spacing:1.009543pt;}
.ws11a{word-spacing:1.010016pt;}
.ws1b9{word-spacing:1.052058pt;}
.ws18f{word-spacing:1.062677pt;}
.ws67{word-spacing:1.115811pt;}
.ws64{word-spacing:1.168945pt;}
.ws17e{word-spacing:1.170336pt;}
.ws1f2{word-spacing:1.195520pt;}
.ws8b{word-spacing:1.222079pt;}
.ws1f1{word-spacing:1.243341pt;}
.ws190{word-spacing:1.275213pt;}
.ws1ad{word-spacing:1.291162pt;}
.ws13b{word-spacing:1.293782pt;}
.ws17{word-spacing:1.338982pt;}
.ws18d{word-spacing:1.381481pt;}
.ws1e{word-spacing:1.386803pt;}
.wsea{word-spacing:1.434614pt;}
.ws1c6{word-spacing:1.434624pt;}
.ws1f4{word-spacing:1.530266pt;}
.ws40{word-spacing:1.540882pt;}
.ws1c{word-spacing:1.578086pt;}
.ws52{word-spacing:1.594016pt;}
.ws179{word-spacing:1.619232pt;}
.ws15e{word-spacing:1.647150pt;}
.ws1cd{word-spacing:1.673728pt;}
.ws17a{word-spacing:1.678016pt;}
.ws8c{word-spacing:1.700284pt;}
.ws1e9{word-spacing:1.721549pt;}
.ws3c{word-spacing:1.806551pt;}
.ws1f3{word-spacing:1.817190pt;}
.ws113{word-spacing:1.818720pt;}
.ws110{word-spacing:1.827360pt;}
.ws112{word-spacing:1.831680pt;}
.ws13a{word-spacing:1.832458pt;}
.ws111{word-spacing:1.857600pt;}
.ws192{word-spacing:1.859685pt;}
.ws1ce{word-spacing:1.865011pt;}
.ws10f{word-spacing:1.866240pt;}
.ws123{word-spacing:1.885363pt;}
.ws139{word-spacing:1.894982pt;}
.ws124{word-spacing:1.909411pt;}
.ws1a6{word-spacing:1.912819pt;}
.ws50{word-spacing:1.965953pt;}
.ws1ca{word-spacing:2.008474pt;}
.ws19a{word-spacing:2.019087pt;}
.ws1f{word-spacing:2.056294pt;}
.ws1ac{word-spacing:2.104115pt;}
.ws27{word-spacing:2.125355pt;}
.ws6b{word-spacing:2.135834pt;}
.wsb0{word-spacing:2.136745pt;}
.ws3f{word-spacing:2.178489pt;}
.ws115{word-spacing:2.183558pt;}
.ws1ea{word-spacing:2.199757pt;}
.ws0{word-spacing:2.232481pt;}
.ws1e8{word-spacing:2.247578pt;}
.ws35{word-spacing:2.284756pt;}
.ws8e{word-spacing:2.337890pt;}
.wsc3{word-spacing:2.351467pt;}
.wsc4{word-spacing:2.372415pt;}
.ws161{word-spacing:2.380800pt;}
.ws71{word-spacing:2.391024pt;}
.ws1d0{word-spacing:2.391040pt;}
.ws3a{word-spacing:2.444158pt;}
.ws16{word-spacing:2.486682pt;}
.wsee{word-spacing:2.497292pt;}
.ws1ed{word-spacing:2.534502pt;}
.ws30{word-spacing:2.550426pt;}
.ws7a{word-spacing:2.603559pt;}
.ws16f{word-spacing:2.650624pt;}
.ws6f{word-spacing:2.656693pt;}
.ws160{word-spacing:2.668800pt;}
.ws1a9{word-spacing:2.677965pt;}
.ws70{word-spacing:2.709827pt;}
.ws16e{word-spacing:2.714752pt;}
.ws15f{word-spacing:2.740800pt;}
.ws63{word-spacing:2.762961pt;}
.ws143{word-spacing:2.816095pt;}
.ws1cb{word-spacing:2.862430pt;}
.ws1ef{word-spacing:2.863249pt;}
.ws1d2{word-spacing:2.863684pt;}
.ws1d4{word-spacing:2.864597pt;}
.ws1dd{word-spacing:2.865092pt;}
.ws1da{word-spacing:2.865271pt;}
.ws1f5{word-spacing:2.865527pt;}
.ws1be{word-spacing:2.867174pt;}
.ws1d8{word-spacing:2.867780pt;}
.ws51{word-spacing:2.869229pt;}
.wse3{word-spacing:2.869248pt;}
.ws16a{word-spacing:2.917824pt;}
.ws13d{word-spacing:2.922363pt;}
.ws178{word-spacing:2.944544pt;}
.ws2e{word-spacing:2.975497pt;}
.ws4f{word-spacing:3.081764pt;}
.ws26{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws1f0{word-spacing:3.203994pt;}
.ws38{word-spacing:3.241166pt;}
.ws1ee{word-spacing:3.251814pt;}
.ws16c{word-spacing:3.265184pt;}
.ws16b{word-spacing:3.291904pt;}
.ws62{word-spacing:3.294300pt;}
.ws169{word-spacing:3.313280pt;}
.ws177{word-spacing:3.323968pt;}
.ws43{word-spacing:3.347434pt;}
.ws1e2{word-spacing:3.347456pt;}
.ws1d7{word-spacing:3.395277pt;}
.ws7c{word-spacing:3.400567pt;}
.ws142{word-spacing:3.453701pt;}
.wsb9{word-spacing:3.482685pt;}
.ws11e{word-spacing:3.491770pt;}
.ws120{word-spacing:3.511008pt;}
.ws20{word-spacing:3.538739pt;}
.ws11f{word-spacing:3.573533pt;}
.ws166{word-spacing:3.596512pt;}
.ws4e{word-spacing:3.613103pt;}
.ws1a5{word-spacing:3.666237pt;}
.ws6a{word-spacing:3.719371pt;}
.ws53{word-spacing:3.772505pt;}
.ws1b7{word-spacing:3.777843pt;}
.ws44{word-spacing:3.825638pt;}
.wsd6{word-spacing:3.931906pt;}
.ws17d{word-spacing:4.002656pt;}
.wsed{word-spacing:4.038174pt;}
.ws1ec{word-spacing:4.064768pt;}
.wsff{word-spacing:4.091308pt;}
.ws1f6{word-spacing:4.112589pt;}
.wsac{word-spacing:4.121613pt;}
.ws1a4{word-spacing:4.144442pt;}
.ws13f{word-spacing:4.197575pt;}
.ws9{word-spacing:4.240070pt;}
.ws3e{word-spacing:4.250709pt;}
.ws1e3{word-spacing:4.256051pt;}
.ws8a{word-spacing:4.303843pt;}
.wsa{word-spacing:4.314458pt;}
.ws1d6{word-spacing:4.351693pt;}
.ws140{word-spacing:4.356977pt;}
.wseb{word-spacing:4.410111pt;}
.ws5e{word-spacing:4.516379pt;}
.ws176{word-spacing:4.526368pt;}
.ws188{word-spacing:4.569120pt;}
.ws159{word-spacing:4.569513pt;}
.ws1a8{word-spacing:4.590797pt;}
.ws189{word-spacing:4.606528pt;}
.ws36{word-spacing:4.622646pt;}
.ws1c3{word-spacing:4.734259pt;}
.ws5d{word-spacing:4.782048pt;}
.ws4a{word-spacing:4.835182pt;}
.ws5c{word-spacing:4.843305pt;}
.ws1a7{word-spacing:4.877722pt;}
.ws8d{word-spacing:4.888316pt;}
.ws154{word-spacing:4.929600pt;}
.ws4c{word-spacing:4.941450pt;}
.ws153{word-spacing:4.958400pt;}
.ws152{word-spacing:4.977600pt;}
.ws89{word-spacing:4.994583pt;}
.ws54{word-spacing:5.047717pt;}
.ws1aa{word-spacing:5.069005pt;}
.ws1e0{word-spacing:5.085473pt;}
.ws1e1{word-spacing:5.116826pt;}
.ws24{word-spacing:5.153985pt;}
.ws173{word-spacing:5.183680pt;}
.ws196{word-spacing:5.207119pt;}
.ws10a{word-spacing:5.232845pt;}
.ws61{word-spacing:5.260253pt;}
.ws109{word-spacing:5.280941pt;}
.ws11d{word-spacing:5.295370pt;}
.ws1c0{word-spacing:5.308109pt;}
.ws4d{word-spacing:5.313387pt;}
.ws108{word-spacing:5.329037pt;}
.ws11c{word-spacing:5.377133pt;}
.wsbe{word-spacing:5.430893pt;}
.ws12d{word-spacing:5.526230pt;}
.ws11b{word-spacing:5.550278pt;}
.ws12c{word-spacing:5.574326pt;}
.ws49{word-spacing:5.632190pt;}
.ws5f{word-spacing:5.685324pt;}
.wsbf{word-spacing:5.729409pt;}
.ws195{word-spacing:5.738458pt;}
.ws180{word-spacing:5.771520pt;}
.ws55{word-spacing:5.791591pt;}
.ws17f{word-spacing:5.792896pt;}
.ws116{word-spacing:5.795568pt;}
.ws60{word-spacing:5.801420pt;}
.ws47{word-spacing:5.844725pt;}
.ws15a{word-spacing:5.897859pt;}
.ws73{word-spacing:5.950993pt;}
.ws72{word-spacing:6.004127pt;}
.ws3b{word-spacing:6.057261pt;}
.ws187{word-spacing:6.134912pt;}
.ws87{word-spacing:6.163529pt;}
.wsd8{word-spacing:6.168883pt;}
.ws163{word-spacing:6.188352pt;}
.ws42{word-spacing:6.216662pt;}
.ws1eb{word-spacing:6.216704pt;}
.ws3d{word-spacing:6.269796pt;}
.wsc8{word-spacing:6.352627pt;}
.wsc7{word-spacing:6.357864pt;}
.ws1a1{word-spacing:6.429198pt;}
.ws1c4{word-spacing:6.455808pt;}
.ws78{word-spacing:6.482332pt;}
.wsd7{word-spacing:6.503629pt;}
.ws19d{word-spacing:6.641733pt;}
.wsc9{word-spacing:6.651142pt;}
.ws119{word-spacing:6.656486pt;}
.ws7b{word-spacing:6.694867pt;}
.ws22{word-spacing:6.838374pt;}
.ws7{word-spacing:6.918010pt;}
.ws18c{word-spacing:7.013670pt;}
.ws197{word-spacing:7.066804pt;}
.ws194{word-spacing:7.119938pt;}
.ws19f{word-spacing:7.173072pt;}
.ws12f{word-spacing:7.305782pt;}
.ws181{word-spacing:7.417472pt;}
.ws12e{word-spacing:7.584739pt;}
.ws5b{word-spacing:7.807964pt;}
.ws1dc{word-spacing:8.033894pt;}
.ws5a{word-spacing:8.090669pt;}
.ws79{word-spacing:8.129482pt;}
.ws133{word-spacing:8.724614pt;}
.ws134{word-spacing:8.734234pt;}
.ws132{word-spacing:8.815997pt;}
.wsaa{word-spacing:8.819310pt;}
.ws14a{word-spacing:8.820222pt;}
.ws1cf{word-spacing:8.894669pt;}
.ws1d5{word-spacing:9.038131pt;}
.wsab{word-spacing:9.196383pt;}
.ws102{word-spacing:9.292550pt;}
.ws1b0{word-spacing:9.372877pt;}
.ws1af{word-spacing:9.420698pt;}
.wsa1{word-spacing:10.122726pt;}
.ws151{word-spacing:10.325056pt;}
.wsbc{word-spacing:10.400920pt;}
.wsbd{word-spacing:10.484714pt;}
.ws1a2{word-spacing:10.520506pt;}
.ws5{word-spacing:10.823338pt;}
.ws1b1{word-spacing:11.811738pt;}
.ws6{word-spacing:14.319536pt;}
.wsc0{word-spacing:16.350289pt;}
.ws41{word-spacing:17.481042pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.wsd{word-spacing:35.593054pt;}
.ws6e{word-spacing:49.255094pt;}
.wscf{word-spacing:99.919012pt;}
.wsd0{word-spacing:146.377504pt;}
.wsda{word-spacing:166.319189pt;}
.wsd9{word-spacing:175.907831pt;}
.wsdc{word-spacing:179.758387pt;}
.wsdb{word-spacing:183.775334pt;}
.wsdd{word-spacing:191.761408pt;}
.wsd3{word-spacing:194.286678pt;}
.ws9d{word-spacing:202.664550pt;}
.wsd1{word-spacing:207.107148pt;}
.ws98{word-spacing:214.619750pt;}
.ws9a{word-spacing:234.217333pt;}
.ws9b{word-spacing:246.169333pt;}
.ws9c{word-spacing:342.253466pt;}
.ws80{word-spacing:354.934229pt;}
.ws82{word-spacing:413.540884pt;}
.ws6d{word-spacing:472.308821pt;}
.wse1{word-spacing:519.127031pt;}
.wse7{word-spacing:523.016090pt;}
.wse5{word-spacing:578.918605pt;}
.wse0{word-spacing:601.490022pt;}
.wse8{word-spacing:602.829005pt;}
.ws147{word-spacing:736.631603pt;}
.ws145{word-spacing:813.144883pt;}
.ws146{word-spacing:844.276224pt;}
.ws148{word-spacing:861.539533pt;}
.ws149{word-spacing:863.930573pt;}
._21{margin-left:-207.484220pt;}
._1f{margin-left:-146.093482pt;}
._1b{margin-left:-99.651919pt;}
._63{margin-left:-18.611656pt;}
._62{margin-left:-16.937374pt;}
._65{margin-left:-7.177797pt;}
._10{margin-left:-6.078638pt;}
._7{margin-left:-4.675792pt;}
._0{margin-left:-3.421811pt;}
._4d{margin-left:-2.337896pt;}
._4{margin-left:-1.338970pt;}
._16{width:1.009547pt;}
._5{width:2.661168pt;}
._17{width:8.873356pt;}
._4e{width:9.776656pt;}
._2{width:11.530016pt;}
._52{width:12.837286pt;}
._8{width:13.942362pt;}
._a{width:15.302643pt;}
._d{width:16.418365pt;}
._12{width:17.560817pt;}
._9{width:18.458829pt;}
._b{width:19.941274pt;}
._c{width:21.423718pt;}
._1{width:23.057899pt;}
._11{width:24.345934pt;}
._19{width:25.355477pt;}
._3{width:27.188522pt;}
._14{width:28.596643pt;}
._5f{width:29.978124pt;}
._13{width:31.784675pt;}
._15{width:32.953620pt;}
._18{width:34.972707pt;}
._20{width:36.062808pt;}
._60{width:38.150116pt;}
._22{width:46.411357pt;}
._64{width:54.993920pt;}
._6{width:61.652525pt;}
._61{width:78.904320pt;}
._1c{width:131.085114pt;}
._29{width:139.553537pt;}
._2b{width:141.597389pt;}
._25{width:153.526173pt;}
._32{width:159.128599pt;}
._23{width:161.539907pt;}
._24{width:164.014391pt;}
._3c{width:181.049549pt;}
._1d{width:182.021343pt;}
._38{width:183.064907pt;}
._26{width:184.650377pt;}
._2a{width:190.321232pt;}
._4b{width:191.713587pt;}
._28{width:194.433317pt;}
._2e{width:197.763635pt;}
._4a{width:203.716608pt;}
._4c{width:209.694208pt;}
._42{width:214.619750pt;}
._1e{width:216.314004pt;}
._35{width:218.929650pt;}
._49{width:221.649408pt;}
._36{width:226.574950pt;}
._27{width:229.934993pt;}
._37{width:232.619394pt;}
._2f{width:238.530150pt;}
._41{width:242.843040pt;}
._2c{width:251.659584pt;}
._3d{width:252.924211pt;}
._30{width:262.201446pt;}
._2d{width:273.726259pt;}
._3b{width:281.425408pt;}
._47{width:305.622733pt;}
._3e{width:324.628877pt;}
._43{width:328.002867pt;}
._31{width:331.971981pt;}
._33{width:357.747405pt;}
._48{width:386.870272pt;}
._39{width:388.878746pt;}
._44{width:399.925350pt;}
._3f{width:406.142054pt;}
._45{width:408.533094pt;}
._34{width:448.702554pt;}
._50{width:457.204022pt;}
._3a{width:462.432532pt;}
._40{width:478.064538pt;}
._53{width:479.116595pt;}
._46{width:480.407757pt;}
._4f{width:559.359898pt;}
._51{width:578.918605pt;}
._54{width:590.873805pt;}
._57{width:612.488806pt;}
._59{width:626.835046pt;}
._5a{width:647.493632pt;}
._58{width:718.215272pt;}
._5b{width:719.129190pt;}
._5d{width:772.114637pt;}
._5c{width:794.494771pt;}
._e{width:853.096643pt;}
._55{width:1664.283666pt;}
._1a{width:1831.996089pt;}
._5e{width:1848.306699pt;}
._56{width:2255.453600pt;}
._f{width:2276.706933pt;}
.fse{font-size:31.360000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:38.304000pt;}
.fs10{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fsb{font-size:41.708800pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs14{font-size:42.560000pt;}
.fs13{font-size:43.200000pt;}
.fsd{font-size:47.040000pt;}
.fs7{font-size:47.820800pt;}
.fs16{font-size:48.000000pt;}
.fs12{font-size:48.096000pt;}
.fsf{font-size:49.829333pt;}
.fsc{font-size:52.371200pt;}
.fs2{font-size:53.133867pt;}
.fs15{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fsa{font-size:74.387733pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y222{bottom:-629.455600pt;}
.y243{bottom:-572.642624pt;}
.y242{bottom:-555.523120pt;}
.y241{bottom:-538.403616pt;}
.y240{bottom:-521.364272pt;}
.y23f{bottom:-504.244768pt;}
.y23e{bottom:-487.204088pt;}
.y1c7{bottom:-477.262440pt;}
.y23d{bottom:-470.084584pt;}
.y23c{bottom:-452.965080pt;}
.y217{bottom:-447.928933pt;}
.y23b{bottom:-435.925736pt;}
.y23a{bottom:-418.806232pt;}
.y1e8{bottom:-404.244526pt;}
.y239{bottom:-401.766888pt;}
.y1e7{bottom:-388.836972pt;}
.y238{bottom:-384.647384pt;}
.y1e6{bottom:-373.500360pt;}
.y237{bottom:-367.527880pt;}
.y1e5{bottom:-358.092806pt;}
.y236{bottom:-350.488536pt;}
.y1e4{bottom:-342.757397pt;}
.y235{bottom:-333.369032pt;}
.y1e3{bottom:-327.349843pt;}
.y234{bottom:-316.329688pt;}
.y1e2{bottom:-311.942290pt;}
.y233{bottom:-299.210184pt;}
.y1e1{bottom:-296.606880pt;}
.y232{bottom:-282.090680pt;}
.y1e0{bottom:-281.199326pt;}
.y1df{bottom:-265.863917pt;}
.y231{bottom:-265.051336pt;}
.y1de{bottom:-250.456363pt;}
.y230{bottom:-247.931832pt;}
.y1dd{bottom:-235.048810pt;}
.y145{bottom:-231.906808pt;}
.y22f{bottom:-230.812328pt;}
.y1dc{bottom:-219.713400pt;}
.y22e{bottom:-213.772984pt;}
.y1db{bottom:-204.305846pt;}
.y22d{bottom:-196.653480pt;}
.y1da{bottom:-188.898293pt;}
.y169{bottom:-180.868337pt;}
.y22c{bottom:-179.614136pt;}
.y1d9{bottom:-173.562883pt;}
.y168{bottom:-163.228337pt;}
.y22b{bottom:-162.494632pt;}
.y1d8{bottom:-158.155330pt;}
.y167{bottom:-145.588408pt;}
.y22a{bottom:-145.375128pt;}
.y1d7{bottom:-142.819920pt;}
.y229{bottom:-128.335784pt;}
.y166{bottom:-128.026808pt;}
.y1d6{bottom:-127.412366pt;}
.y1d5{bottom:-112.004813pt;}
.y228{bottom:-111.216280pt;}
.y165{bottom:-109.680440pt;}
.y164{bottom:-100.900408pt;}
.y1d4{bottom:-96.669403pt;}
.y227{bottom:-94.175600pt;}
.y1d3{bottom:-81.261850pt;}
.y21b{bottom:-67.928533pt;}
.y163{bottom:-65.933224pt;}
.y1d2{bottom:-65.926440pt;}
.y226{bottom:-61.455200pt;}
.y21a{bottom:-52.408933pt;}
.y225{bottom:-45.935600pt;}
.y219{bottom:-37.048933pt;}
.y1d1{bottom:-36.478080pt;}
.y162{bottom:-35.200816pt;}
.y224{bottom:-30.575600pt;}
.y1d0{bottom:-22.510440pt;}
.y161{bottom:-19.991608pt;}
.y218{bottom:-17.129053pt;}
.y223{bottom:-10.655136pt;}
.y1cf{bottom:-4.579762pt;}
.y160{bottom:-0.461455pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:13.168686pt;}
.y4c{bottom:28.346667pt;}
.y1b5{bottom:81.480000pt;}
.y2be{bottom:82.312000pt;}
.y28a{bottom:91.696000pt;}
.y17a{bottom:91.870667pt;}
.y4b{bottom:92.108000pt;}
.y32c{bottom:92.892000pt;}
.y1a{bottom:93.018667pt;}
.y102{bottom:94.884000pt;}
.y29d{bottom:95.282667pt;}
.y84{bottom:95.681333pt;}
.y2bd{bottom:97.933333pt;}
.ydc{bottom:98.121333pt;}
.y1b4{bottom:98.217333pt;}
.y209{bottom:106.033333pt;}
.y179{bottom:106.482667pt;}
.y12f{bottom:107.098667pt;}
.y32b{bottom:108.233333pt;}
.y289{bottom:108.433333pt;}
.y4a{bottom:108.844000pt;}
.y21e{bottom:108.849333pt;}
.y19{bottom:108.920000pt;}
.y101{bottom:111.621333pt;}
.y29c{bottom:112.020000pt;}
.y2f6{bottom:112.140000pt;}
.y83{bottom:112.418667pt;}
.ydb{bottom:114.858667pt;}
.y1b2{bottom:114.954667pt;}
.y1b3{bottom:119.777333pt;}
.y208{bottom:120.645333pt;}
.y178{bottom:121.094667pt;}
.y2bc{bottom:121.524000pt;}
.y32a{bottom:123.576000pt;}
.y12e{bottom:123.836000pt;}
.y18{bottom:124.820000pt;}
.y288{bottom:125.170667pt;}
.y49{bottom:125.581333pt;}
.y21d{bottom:125.945333pt;}
.y2f5{bottom:127.481333pt;}
.y100{bottom:128.358667pt;}
.y29b{bottom:128.757333pt;}
.y82{bottom:129.156000pt;}
.yda{bottom:131.596000pt;}
.y1b1{bottom:131.692000pt;}
.y262{bottom:132.161333pt;}
.y207{bottom:135.257333pt;}
.y177{bottom:135.706667pt;}
.y329{bottom:138.918667pt;}
.y12d{bottom:140.573333pt;}
.y17{bottom:140.720000pt;}
.y287{bottom:141.908000pt;}
.y48{bottom:142.318667pt;}
.y2f4{bottom:142.824000pt;}
.y21c{bottom:143.041333pt;}
.y9f{bottom:143.900000pt;}
.yff{bottom:145.096000pt;}
.y2bb{bottom:145.116000pt;}
.y29a{bottom:145.494667pt;}
.y81{bottom:145.893333pt;}
.yd9{bottom:148.333333pt;}
.y1b0{bottom:148.429333pt;}
.y261{bottom:148.898667pt;}
.y206{bottom:149.869333pt;}
.y176{bottom:150.317333pt;}
.y328{bottom:154.261333pt;}
.y16{bottom:156.621333pt;}
.y12c{bottom:157.310667pt;}
.y2f3{bottom:158.166667pt;}
.y286{bottom:158.645333pt;}
.y47{bottom:159.056000pt;}
.y9d{bottom:160.637333pt;}
.y299{bottom:162.232000pt;}
.y80{bottom:162.630667pt;}
.y205{bottom:164.481333pt;}
.y175{bottom:164.929333pt;}
.y1f8{bottom:165.166667pt;}
.y9e{bottom:165.460000pt;}
.y214{bottom:165.634667pt;}
.y260{bottom:165.636000pt;}
.yfe{bottom:165.818667pt;}
.y2ba{bottom:168.708000pt;}
.yd8{bottom:169.056000pt;}
.y327{bottom:169.604000pt;}
.y15{bottom:172.521333pt;}
.y2f2{bottom:173.509333pt;}
.y12b{bottom:174.048000pt;}
.y285{bottom:175.382667pt;}
.y46{bottom:175.793333pt;}
.y9c{bottom:177.374667pt;}
.y298{bottom:178.969333pt;}
.y204{bottom:179.093333pt;}
.y7f{bottom:179.368000pt;}
.y174{bottom:179.541333pt;}
.y1f7{bottom:181.904000pt;}
.y25f{bottom:182.373333pt;}
.y2b9{bottom:184.329333pt;}
.y326{bottom:184.946667pt;}
.y1af{bottom:187.506667pt;}
.y14{bottom:188.421333pt;}
.y2f1{bottom:188.852000pt;}
.y12a{bottom:190.785333pt;}
.y284{bottom:192.120000pt;}
.y45{bottom:192.530667pt;}
.y203{bottom:193.704000pt;}
.y9a{bottom:194.112000pt;}
.y173{bottom:194.153333pt;}
.yfd{bottom:195.706667pt;}
.y7e{bottom:196.105333pt;}
.y1ad{bottom:196.268000pt;}
.y1f6{bottom:198.641333pt;}
.y9b{bottom:198.934667pt;}
.y25e{bottom:199.110667pt;}
.yd7{bottom:199.833333pt;}
.y2b8{bottom:199.950667pt;}
.y1ae{bottom:200.125333pt;}
.y325{bottom:200.289333pt;}
.y2f0{bottom:204.194667pt;}
.y13{bottom:204.322667pt;}
.y129{bottom:207.522667pt;}
.y202{bottom:208.316000pt;}
.y172{bottom:208.765333pt;}
.y283{bottom:208.857333pt;}
.yd6{bottom:208.946667pt;}
.y44{bottom:209.268000pt;}
.y99{bottom:210.849333pt;}
.yfc{bottom:212.444000pt;}
.y7d{bottom:212.841333pt;}
.y1ac{bottom:214.710667pt;}
.y1f5{bottom:215.378667pt;}
.y2b7{bottom:215.572000pt;}
.y324{bottom:215.632000pt;}
.y25d{bottom:215.848000pt;}
.y2ef{bottom:219.537333pt;}
.y201{bottom:222.928000pt;}
.y171{bottom:223.377333pt;}
.y128{bottom:224.260000pt;}
.y282{bottom:225.594667pt;}
.y43{bottom:226.005333pt;}
.y98{bottom:227.586667pt;}
.yfa{bottom:229.181333pt;}
.y7c{bottom:229.578667pt;}
.y323{bottom:230.974667pt;}
.y2b6{bottom:231.193333pt;}
.y25c{bottom:232.584000pt;}
.yfb{bottom:234.002667pt;}
.y2ee{bottom:234.880000pt;}
.y1ab{bottom:236.280000pt;}
.y200{bottom:237.540000pt;}
.y170{bottom:237.989333pt;}
.y127{bottom:240.997333pt;}
.y281{bottom:242.332000pt;}
.y1f4{bottom:242.469333pt;}
.yf9{bottom:245.918667pt;}
.y1f3{bottom:246.064000pt;}
.y7b{bottom:246.316000pt;}
.yd5{bottom:246.572000pt;}
.y15f{bottom:246.577424pt;}
.y42{bottom:246.728000pt;}
.y2b5{bottom:246.814667pt;}
.y1aa{bottom:246.912000pt;}
.y97{bottom:248.309333pt;}
.y25b{bottom:249.321333pt;}
.y2ed{bottom:250.222667pt;}
.y1a9{bottom:250.892000pt;}
.y1ff{bottom:252.152000pt;}
.y16f{bottom:252.601333pt;}
.y126{bottom:257.734667pt;}
.y280{bottom:259.069333pt;}
.y322{bottom:261.658667pt;}
.y1a8{bottom:261.846667pt;}
.y2b4{bottom:262.436000pt;}
.yf7{bottom:262.656000pt;}
.y7a{bottom:263.053333pt;}
.yd3{bottom:263.309333pt;}
.y15e{bottom:263.354538pt;}
.y12{bottom:264.148000pt;}
.y2ec{bottom:265.564000pt;}
.y1a7{bottom:265.965333pt;}
.y25a{bottom:266.058667pt;}
.y1fe{bottom:266.764000pt;}
.y16e{bottom:267.213333pt;}
.yf8{bottom:267.477333pt;}
.yd4{bottom:268.130667pt;}
.y125{bottom:274.472000pt;}
.y27f{bottom:275.806667pt;}
.y1f2{bottom:276.749333pt;}
.y321{bottom:277.001333pt;}
.y2b3{bottom:278.057333pt;}
.y96{bottom:278.197333pt;}
.yf6{bottom:279.393333pt;}
.y79{bottom:279.790667pt;}
.yd1{bottom:280.046667pt;}
.y11{bottom:280.048000pt;}
.y15d{bottom:280.054404pt;}
.y2eb{bottom:280.906667pt;}
.y1a6{bottom:281.040000pt;}
.y1fd{bottom:281.376000pt;}
.y259{bottom:282.796000pt;}
.yd2{bottom:284.868000pt;}
.y16d{bottom:288.226667pt;}
.y124{bottom:291.209333pt;}
.y320{bottom:292.344000pt;}
.y95{bottom:292.508000pt;}
.y27e{bottom:292.544000pt;}
.y1f1{bottom:293.486667pt;}
.y1ce{bottom:294.003814pt;}
.y94{bottom:294.934667pt;}
.y1a5{bottom:295.652000pt;}
.y10{bottom:295.949333pt;}
.yf5{bottom:296.129333pt;}
.y2ea{bottom:296.249333pt;}
.y78{bottom:296.528000pt;}
.ycf{bottom:296.784000pt;}
.y15c{bottom:296.831518pt;}
.y258{bottom:299.533333pt;}
.yd0{bottom:301.605333pt;}
.y2b2{bottom:301.649333pt;}
.y1fc{bottom:302.389333pt;}
.y31f{bottom:307.686667pt;}
.y123{bottom:307.946667pt;}
.y93{bottom:309.245333pt;}
.y27d{bottom:309.280000pt;}
.y1cd{bottom:309.339223pt;}
.y1f0{bottom:310.224000pt;}
.y1a4{bottom:310.264000pt;}
.y2e9{bottom:311.592000pt;}
.y92{bottom:311.672000pt;}
.yf{bottom:311.849333pt;}
.yf3{bottom:312.866667pt;}
.y77{bottom:313.265333pt;}
.yce{bottom:313.521333pt;}
.y41{bottom:313.528000pt;}
.y15b{bottom:313.530075pt;}
.y257{bottom:316.270667pt;}
.y2b1{bottom:317.270667pt;}
.yf4{bottom:317.689333pt;}
.y16c{bottom:318.989333pt;}
.y31e{bottom:323.029333pt;}
.y122{bottom:324.684000pt;}
.y1cc{bottom:324.746777pt;}
.y1a3{bottom:324.876000pt;}
.y27c{bottom:326.017333pt;}
.y2e8{bottom:326.934667pt;}
.y1ee{bottom:326.961333pt;}
.y91{bottom:328.409333pt;}
.yf2{bottom:329.604000pt;}
.y76{bottom:330.002667pt;}
.ycd{bottom:330.257333pt;}
.y15a{bottom:330.307189pt;}
.y1fb{bottom:330.496000pt;}
.y40{bottom:330.822667pt;}
.y1ef{bottom:331.782667pt;}
.y2b0{bottom:332.892000pt;}
.y256{bottom:333.008000pt;}
.ye{bottom:337.048000pt;}
.y31d{bottom:338.372000pt;}
.y1cb{bottom:340.082186pt;}
.y121{bottom:341.421333pt;}
.y2e7{bottom:342.277333pt;}
.y27b{bottom:342.754667pt;}
.y1ed{bottom:343.697333pt;}
.y90{bottom:345.146667pt;}
.y1a2{bottom:345.889333pt;}
.y16b{bottom:345.922667pt;}
.yf1{bottom:346.341333pt;}
.y75{bottom:346.740000pt;}
.ycc{bottom:346.994667pt;}
.y159{bottom:347.084303pt;}
.y2af{bottom:348.513333pt;}
.y255{bottom:349.745333pt;}
.yd{bottom:352.948000pt;}
.y31c{bottom:353.714667pt;}
.y1ca{bottom:355.489740pt;}
.y2e6{bottom:357.620000pt;}
.y27a{bottom:359.492000pt;}
.y1ec{bottom:360.434667pt;}
.y8f{bottom:361.884000pt;}
.y120{bottom:362.142667pt;}
.y16a{bottom:363.018667pt;}
.yf0{bottom:363.078667pt;}
.y74{bottom:363.477333pt;}
.yca{bottom:363.732000pt;}
.y158{bottom:363.782860pt;}
.y3f{bottom:364.058667pt;}
.y2ae{bottom:364.134667pt;}
.y254{bottom:366.482667pt;}
.y1a1{bottom:366.902667pt;}
.y19f{bottom:368.525333pt;}
.ycb{bottom:368.554667pt;}
.yc{bottom:368.849333pt;}
.y31b{bottom:369.056000pt;}
.y1c9{bottom:370.897294pt;}
.y2e5{bottom:372.962667pt;}
.y279{bottom:376.229333pt;}
.y1eb{bottom:377.172000pt;}
.y8e{bottom:378.621333pt;}
.y221{bottom:378.624520pt;}
.y2ad{bottom:379.757333pt;}
.yee{bottom:379.816000pt;}
.y73{bottom:380.214667pt;}
.yc8{bottom:380.469333pt;}
.y157{bottom:380.559974pt;}
.y3e{bottom:381.353333pt;}
.y142{bottom:382.956000pt;}
.y253{bottom:383.220000pt;}
.y31a{bottom:384.398667pt;}
.yef{bottom:384.638667pt;}
.yc9{bottom:385.292000pt;}
.y1c8{bottom:386.233906pt;}
.y220{bottom:387.184400pt;}
.y1a0{bottom:387.917333pt;}
.y2e4{bottom:388.304000pt;}
.y11f{bottom:392.030667pt;}
.yb{bottom:392.720000pt;}
.y278{bottom:392.966667pt;}
.y8d{bottom:395.358667pt;}
.y2ac{bottom:395.378667pt;}
.yec{bottom:396.553333pt;}
.y72{bottom:396.952000pt;}
.yc6{bottom:397.206667pt;}
.y156{bottom:397.258531pt;}
.y3d{bottom:398.649333pt;}
.y319{bottom:399.741333pt;}
.y252{bottom:399.957333pt;}
.yed{bottom:401.376000pt;}
.yc7{bottom:402.029333pt;}
.y2e3{bottom:403.646667pt;}
.y1ea{bottom:405.990667pt;}
.ya{bottom:408.620000pt;}
.y11e{bottom:408.768000pt;}
.y277{bottom:409.704000pt;}
.y8c{bottom:412.096000pt;}
.yeb{bottom:413.290667pt;}
.y71{bottom:413.689333pt;}
.yc5{bottom:413.944000pt;}
.y155{bottom:414.035645pt;}
.y318{bottom:415.084000pt;}
.y3c{bottom:415.944000pt;}
.y19e{bottom:416.024000pt;}
.y251{bottom:416.694667pt;}
.y2ab{bottom:418.969333pt;}
.y2e2{bottom:418.989333pt;}
.y1e9{bottom:423.086667pt;}
.y9{bottom:424.520000pt;}
.y11d{bottom:425.505333pt;}
.y276{bottom:426.441333pt;}
.y8b{bottom:428.833333pt;}
.y1c6{bottom:430.009668pt;}
.yea{bottom:430.028000pt;}
.y70{bottom:430.426667pt;}
.yc4{bottom:430.681333pt;}
.y154{bottom:430.812759pt;}
.y3b{bottom:433.238667pt;}
.y250{bottom:433.432000pt;}
.y2e1{bottom:434.332000pt;}
.y2aa{bottom:435.009333pt;}
.y1c5{bottom:437.713560pt;}
.y8{bottom:440.421333pt;}
.y11c{bottom:442.242667pt;}
.y1c4{bottom:443.024000pt;}
.y275{bottom:443.178667pt;}
.y8a{bottom:445.570667pt;}
.y317{bottom:445.769333pt;}
.ye9{bottom:446.765333pt;}
.y6f{bottom:447.164000pt;}
.yc3{bottom:447.418667pt;}
.y2e0{bottom:449.674667pt;}
.y24f{bottom:450.169333pt;}
.y3a{bottom:450.534667pt;}
.y2a9{bottom:451.049333pt;}
.y19d{bottom:451.330667pt;}
.y153{bottom:451.432610pt;}
.y7{bottom:456.321333pt;}
.y11b{bottom:458.980000pt;}
.y274{bottom:459.916000pt;}
.y316{bottom:461.112000pt;}
.y89{bottom:462.306667pt;}
.ye7{bottom:463.502667pt;}
.y6e{bottom:463.901333pt;}
.y19c{bottom:463.950667pt;}
.yc2{bottom:464.156000pt;}
.y2df{bottom:465.017333pt;}
.y24e{bottom:466.906667pt;}
.y2a8{bottom:467.089333pt;}
.y39{bottom:467.829333pt;}
.ye8{bottom:468.325333pt;}
.y152{bottom:472.052460pt;}
.y6{bottom:472.221333pt;}
.y11a{bottom:475.717333pt;}
.y315{bottom:476.454667pt;}
.y273{bottom:476.653333pt;}
.y88{bottom:479.044000pt;}
.ye6{bottom:480.240000pt;}
.y2de{bottom:480.360000pt;}
.y6d{bottom:480.638667pt;}
.y19b{bottom:480.700000pt;}
.y2a7{bottom:483.129333pt;}
.y24d{bottom:483.644000pt;}
.yc1{bottom:484.878667pt;}
.y38{bottom:485.125333pt;}
.y5{bottom:488.122667pt;}
.y314{bottom:491.797333pt;}
.y118{bottom:492.454667pt;}
.y272{bottom:493.390667pt;}
.y19a{bottom:495.312000pt;}
.y2dd{bottom:495.702667pt;}
.y87{bottom:495.781333pt;}
.ye5{bottom:496.977333pt;}
.y119{bottom:497.277333pt;}
.y6c{bottom:497.376000pt;}
.y2a6{bottom:499.169333pt;}
.y24c{bottom:500.381333pt;}
.y37{bottom:502.420000pt;}
.y4{bottom:504.022667pt;}
.y151{bottom:504.509512pt;}
.y313{bottom:507.138667pt;}
.y117{bottom:509.192000pt;}
.y199{bottom:509.924000pt;}
.y271{bottom:510.128000pt;}
.y2dc{bottom:511.045333pt;}
.ye4{bottom:513.714667pt;}
.y6b{bottom:514.113333pt;}
.yc0{bottom:514.766667pt;}
.y2a5{bottom:515.209333pt;}
.y86{bottom:516.504000pt;}
.y24b{bottom:517.118667pt;}
.y36{bottom:519.714667pt;}
.y3{bottom:519.922667pt;}
.y150{bottom:521.286625pt;}
.y312{bottom:522.481333pt;}
.y198{bottom:524.536000pt;}
.y116{bottom:525.929333pt;}
.y2db{bottom:526.386667pt;}
.y270{bottom:526.865333pt;}
.y297{bottom:530.452000pt;}
.y6a{bottom:530.850667pt;}
.ybe{bottom:531.504000pt;}
.y24a{bottom:533.856000pt;}
.y85{bottom:534.437333pt;}
.y2{bottom:535.824000pt;}
.ybf{bottom:536.325333pt;}
.y35{bottom:537.010667pt;}
.y311{bottom:537.824000pt;}
.y14f{bottom:538.063739pt;}
.y197{bottom:539.148000pt;}
.y2da{bottom:541.729333pt;}
.y115{bottom:542.666667pt;}
.y26f{bottom:543.602667pt;}
.y296{bottom:547.189333pt;}
.y69{bottom:547.588000pt;}
.ybd{bottom:548.241333pt;}
.y249{bottom:550.593333pt;}
.y1{bottom:551.724000pt;}
.y310{bottom:553.166667pt;}
.y196{bottom:553.760000pt;}
.y34{bottom:554.305333pt;}
.y14e{bottom:554.762296pt;}
.y2d9{bottom:557.072000pt;}
.y114{bottom:559.404000pt;}
.y216{bottom:560.151187pt;}
.y26e{bottom:560.340000pt;}
.y295{bottom:563.926667pt;}
.y68{bottom:564.325333pt;}
.ybb{bottom:564.978667pt;}
.y248{bottom:567.330667pt;}
.y195{bottom:568.372000pt;}
.y30f{bottom:568.509333pt;}
.y215{bottom:568.711067pt;}
.ybc{bottom:569.800000pt;}
.y33{bottom:571.600000pt;}
.y2d8{bottom:572.414667pt;}
.y14d{bottom:575.459395pt;}
.y113{bottom:576.141333pt;}
.y26d{bottom:577.077333pt;}
.y294{bottom:580.664000pt;}
.y67{bottom:581.062667pt;}
.yba{bottom:581.716000pt;}
.y194{bottom:582.982667pt;}
.y30e{bottom:583.852000pt;}
.y247{bottom:584.068000pt;}
.y2d6{bottom:587.757333pt;}
.y32{bottom:588.896000pt;}
.y2d7{bottom:590.626667pt;}
.y112{bottom:592.878667pt;}
.y26c{bottom:593.814667pt;}
.y293{bottom:597.401333pt;}
.y193{bottom:597.594667pt;}
.y66{bottom:597.800000pt;}
.yb9{bottom:598.453333pt;}
.y30d{bottom:599.194667pt;}
.y2d5{bottom:603.100000pt;}
.y31{bottom:606.190667pt;}
.y14c{bottom:607.916446pt;}
.y111{bottom:609.616000pt;}
.y26b{bottom:610.552000pt;}
.y192{bottom:612.206667pt;}
.y246{bottom:613.904000pt;}
.y292{bottom:614.138667pt;}
.y65{bottom:614.537333pt;}
.yb8{bottom:615.190667pt;}
.y29e{bottom:618.124000pt;}
.y2d4{bottom:618.442667pt;}
.y30{bottom:623.486667pt;}
.y14b{bottom:624.615003pt;}
.y110{bottom:626.353333pt;}
.y191{bottom:626.818667pt;}
.y26a{bottom:627.289333pt;}
.y141{bottom:629.281333pt;}
.y30c{bottom:629.878667pt;}
.y291{bottom:630.876000pt;}
.y245{bottom:631.000000pt;}
.y64{bottom:631.274667pt;}
.yb6{bottom:631.928000pt;}
.y2d3{bottom:633.785333pt;}
.yb7{bottom:636.749333pt;}
.y14a{bottom:641.392117pt;}
.y190{bottom:641.430667pt;}
.y10f{bottom:643.090667pt;}
.y269{bottom:644.026667pt;}
.y30b{bottom:645.221333pt;}
.y140{bottom:646.018667pt;}
.y290{bottom:647.613333pt;}
.y63{bottom:648.012000pt;}
.y244{bottom:648.096000pt;}
.yb5{bottom:648.665333pt;}
.y2d2{bottom:649.126667pt;}
.ye3{bottom:652.833333pt;}
.y2f{bottom:657.409333pt;}
.y149{bottom:658.090674pt;}
.y10e{bottom:659.828000pt;}
.y30a{bottom:660.564000pt;}
.y268{bottom:660.764000pt;}
.ye2{bottom:662.322667pt;}
.y18f{bottom:662.445333pt;}
.y13f{bottom:662.756000pt;}
.y28f{bottom:664.350667pt;}
.y2d1{bottom:664.469333pt;}
.y62{bottom:664.749333pt;}
.yb4{bottom:665.402667pt;}
.y21f{bottom:670.689333pt;}
.y18d{bottom:671.549333pt;}
.y2e{bottom:671.756000pt;}
.y148{bottom:674.867788pt;}
.y309{bottom:675.906667pt;}
.y10d{bottom:676.565333pt;}
.y267{bottom:677.501333pt;}
.y13e{bottom:679.493333pt;}
.y2d0{bottom:679.812000pt;}
.y28e{bottom:681.088000pt;}
.y61{bottom:681.485333pt;}
.yb3{bottom:682.140000pt;}
.y18e{bottom:683.458667pt;}
.y2d{bottom:686.102667pt;}
.y32f{bottom:687.197333pt;}
.y2c{bottom:689.960000pt;}
.y308{bottom:691.249333pt;}
.y147{bottom:691.644902pt;}
.y10c{bottom:693.302667pt;}
.y266{bottom:694.238667pt;}
.y2cf{bottom:695.154667pt;}
.ye1{bottom:695.797333pt;}
.y13d{bottom:696.230667pt;}
.y213{bottom:697.426667pt;}
.y28d{bottom:697.825333pt;}
.y60{bottom:698.222667pt;}
.yb2{bottom:698.877333pt;}
.y2b{bottom:700.448000pt;}
.y32e{bottom:702.540000pt;}
.y307{bottom:706.592000pt;}
.y146{bottom:708.344768pt;}
.y10b{bottom:710.040000pt;}
.y2ce{bottom:710.497333pt;}
.y265{bottom:710.976000pt;}
.y18c{bottom:711.565333pt;}
.y13c{bottom:712.968000pt;}
.y212{bottom:714.164000pt;}
.y28c{bottom:714.562667pt;}
.y5f{bottom:714.960000pt;}
.yb1{bottom:715.613333pt;}
.y32d{bottom:717.882667pt;}
.y2a{bottom:718.652000pt;}
.y1c3{bottom:720.540000pt;}
.y306{bottom:721.934667pt;}
.y2cd{bottom:725.840000pt;}
.y264{bottom:727.713333pt;}
.y18b{bottom:728.661333pt;}
.y29{bottom:729.141333pt;}
.y13b{bottom:729.705333pt;}
.y10a{bottom:730.761333pt;}
.y211{bottom:730.901333pt;}
.y2a4{bottom:731.300000pt;}
.y5e{bottom:731.697333pt;}
.yb0{bottom:732.350667pt;}
.y28b{bottom:735.284000pt;}
.y1c2{bottom:737.277333pt;}
.y2cc{bottom:741.182667pt;}
.y263{bottom:744.450667pt;}
.y13a{bottom:746.442667pt;}
.y28{bottom:747.344000pt;}
.y210{bottom:747.638667pt;}
.y2a3{bottom:748.036000pt;}
.y5d{bottom:748.434667pt;}
.yaf{bottom:749.088000pt;}
.y305{bottom:752.620000pt;}
.y1c0{bottom:754.014667pt;}
.y144{bottom:756.011710pt;}
.y2cb{bottom:756.525333pt;}
.y27{bottom:757.833333pt;}
.y1c1{bottom:758.836000pt;}
.y109{bottom:760.649333pt;}
.y18a{bottom:761.186667pt;}
.y139{bottom:763.180000pt;}
.y20f{bottom:764.376000pt;}
.y143{bottom:764.400392pt;}
.y2a2{bottom:764.773333pt;}
.y5c{bottom:765.172000pt;}
.yae{bottom:765.825333pt;}
.y304{bottom:767.961333pt;}
.y1bf{bottom:770.752000pt;}
.y2ca{bottom:771.868000pt;}
.y26{bottom:776.037333pt;}
.y108{bottom:777.386667pt;}
.y189{bottom:777.924000pt;}
.y138{bottom:779.917333pt;}
.y20e{bottom:781.113333pt;}
.y2a1{bottom:781.510667pt;}
.y5b{bottom:781.909333pt;}
.yad{bottom:782.562667pt;}
.y303{bottom:783.304000pt;}
.y25{bottom:786.525333pt;}
.y1fa{bottom:786.732000pt;}
.y2c9{bottom:787.209333pt;}
.y1be{bottom:787.489333pt;}
.y107{bottom:794.124000pt;}
.y188{bottom:794.661333pt;}
.y137{bottom:796.654667pt;}
.y20d{bottom:797.850667pt;}
.y2a0{bottom:798.248000pt;}
.y5a{bottom:798.646667pt;}
.yab{bottom:799.300000pt;}
.y24{bottom:800.872000pt;}
.y2c8{bottom:802.552000pt;}
.ye0{bottom:803.469333pt;}
.yac{bottom:804.122667pt;}
.y1bd{bottom:804.226667pt;}
.y23{bottom:804.729333pt;}
.y187{bottom:811.398667pt;}
.ydf{bottom:812.957333pt;}
.y302{bottom:813.989333pt;}
.y59{bottom:815.384000pt;}
.yaa{bottom:816.037333pt;}
.y106{bottom:817.177333pt;}
.y136{bottom:817.377333pt;}
.y2c7{bottom:817.894667pt;}
.y20c{bottom:818.572000pt;}
.y29f{bottom:818.970667pt;}
.y1bc{bottom:820.962667pt;}
.y105{bottom:826.290667pt;}
.y186{bottom:828.136000pt;}
.y301{bottom:829.332000pt;}
.yde{bottom:829.694667pt;}
.y58{bottom:832.121333pt;}
.ya9{bottom:832.774667pt;}
.y2c6{bottom:833.237333pt;}
.y135{bottom:835.309333pt;}
.y1bb{bottom:837.700000pt;}
.y185{bottom:842.446667pt;}
.y22{bottom:844.068000pt;}
.y300{bottom:844.674667pt;}
.y184{bottom:844.873333pt;}
.ydd{bottom:846.432000pt;}
.ya8{bottom:846.788000pt;}
.y20b{bottom:848.460000pt;}
.y2c5{bottom:848.580000pt;}
.y57{bottom:848.858667pt;}
.ya7{bottom:849.512000pt;}
.y1ba{bottom:854.437333pt;}
.y2ff{bottom:860.017333pt;}
.y21{bottom:860.805333pt;}
.y183{bottom:861.610667pt;}
.y2c4{bottom:863.922667pt;}
.y134{bottom:865.197333pt;}
.y56{bottom:865.596000pt;}
.ya6{bottom:866.249333pt;}
.y104{bottom:868.432000pt;}
.y1b9{bottom:871.174667pt;}
.y2fe{bottom:875.360000pt;}
.y103{bottom:877.545333pt;}
.y181{bottom:878.348000pt;}
.y2c3{bottom:879.265333pt;}
.y133{bottom:881.934667pt;}
.y55{bottom:882.333333pt;}
.ya5{bottom:882.986667pt;}
.y182{bottom:883.170667pt;}
.y1b8{bottom:887.912000pt;}
.y2fc{bottom:890.701333pt;}
.y2fd{bottom:890.702667pt;}
.y2c2{bottom:894.608000pt;}
.y180{bottom:895.085333pt;}
.y20{bottom:896.288000pt;}
.y132{bottom:898.672000pt;}
.y54{bottom:899.070667pt;}
.y2fb{bottom:906.044000pt;}
.y2c1{bottom:909.949333pt;}
.y17f{bottom:911.822667pt;}
.ya3{bottom:911.993333pt;}
.y1b7{bottom:915.002667pt;}
.y131{bottom:915.409333pt;}
.y53{bottom:915.808000pt;}
.y1b6{bottom:918.597333pt;}
.y20a{bottom:919.394667pt;}
.y2fa{bottom:921.386667pt;}
.y1f{bottom:921.394667pt;}
.ya4{bottom:922.560000pt;}
.ya2{bottom:923.678667pt;}
.ya0{bottom:926.442667pt;}
.y17d{bottom:928.560000pt;}
.y2c0{bottom:929.277333pt;}
.y52{bottom:932.545333pt;}
.y17e{bottom:933.382667pt;}
.y130{bottom:936.132000pt;}
.y2f9{bottom:936.729333pt;}
.ya1{bottom:940.788000pt;}
.y17c{bottom:945.297333pt;}
.y1e{bottom:946.500000pt;}
.y51{bottom:949.282667pt;}
.y2f8{bottom:952.072000pt;}
.y2bf{bottom:959.165333pt;}
.y17b{bottom:962.034667pt;}
.y50{bottom:966.020000pt;}
.y2f7{bottom:967.414667pt;}
.y1f9{bottom:970.841333pt;}
.y1d{bottom:971.606667pt;}
.y4f{bottom:980.330667pt;}
.y4e{bottom:982.757333pt;}
.y1b{bottom:1010.261333pt;}
.y4d{bottom:1038.548000pt;}
.h8{height:27.672303pt;}
.h10{height:28.023859pt;}
.h11{height:29.640290pt;}
.h2{height:32.284045pt;}
.hb{height:34.574438pt;}
.hf{height:35.051460pt;}
.h2e{height:35.423719pt;}
.h18{height:36.873667pt;}
.h9{height:36.896250pt;}
.h19{height:37.087439pt;}
.h16{height:37.778179pt;}
.h20{height:37.999806pt;}
.hd{height:38.415786pt;}
.h22{height:38.562387pt;}
.h1e{height:38.572494pt;}
.ha{height:38.809074pt;}
.h5{height:39.000258pt;}
.h33{height:39.359687pt;}
.h31{height:39.951563pt;}
.hc{height:41.508454pt;}
.h13{height:41.524400pt;}
.h23{height:43.502813pt;}
.h39{height:43.660390pt;}
.h26{height:44.280652pt;}
.h35{height:44.390625pt;}
.h2f{height:44.479406pt;}
.h30{height:44.737734pt;}
.h3{height:45.272024pt;}
.he{height:46.120196pt;}
.h17{height:47.309193pt;}
.h1c{height:47.314526pt;}
.h1f{height:48.433131pt;}
.h7{height:48.481423pt;}
.h38{height:48.511220pt;}
.h21{height:48.714422pt;}
.h34{height:49.421563pt;}
.h27{height:49.638711pt;}
.h28{height:49.644045pt;}
.h37{height:49.708594pt;}
.h14{height:56.992794pt;}
.h2b{height:56.998127pt;}
.h15{height:57.055067pt;}
.h12{height:57.799269pt;}
.h29{height:58.911121pt;}
.h2c{height:60.498863pt;}
.h2a{height:66.486711pt;}
.h6{height:69.148877pt;}
.h24{height:73.687751pt;}
.h25{height:75.759073pt;}
.h1a{height:82.088196pt;}
.h1b{height:82.573530pt;}
.h4{height:91.114522pt;}
.h1d{height:230.496000pt;}
.h2d{height:265.492800pt;}
.h36{height:325.352000pt;}
.h32{height:518.748000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w4{width:447.726000pt;}
.w3{width:481.089840pt;}
.w6{width:629.757867pt;}
.w5{width:688.405200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xb2{left:-178.324720pt;}
.xca{left:-161.550000pt;}
.xb5{left:-157.940720pt;}
.xb7{left:-146.729520pt;}
.xdf{left:-32.988800pt;}
.xb3{left:-7.961206pt;}
.xcb{left:-5.093712pt;}
.xdb{left:-1.570800pt;}
.x0{left:0.000000pt;}
.xb4{left:19.792911pt;}
.x3{left:46.617333pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.xb9{left:68.481333pt;}
.xbb{left:75.785333pt;}
.xba{left:78.774667pt;}
.xde{left:81.783467pt;}
.xe1{left:140.851200pt;}
.xe2{left:169.171200pt;}
.xdd{left:172.269200pt;}
.x103{left:211.989333pt;}
.xb6{left:219.869045pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x90{left:232.969333pt;}
.x5{left:239.774667pt;}
.x18{left:241.418667pt;}
.x85{left:244.524000pt;}
.xc9{left:246.314667pt;}
.xbf{left:247.654667pt;}
.xc{left:250.204000pt;}
.x49{left:251.125333pt;}
.x8a{left:252.977333pt;}
.x7f{left:256.477333pt;}
.x4e{left:261.828000pt;}
.x99{left:264.988000pt;}
.x7c{left:266.832000pt;}
.xa2{left:271.441333pt;}
.xb8{left:272.714667pt;}
.x7{left:275.276000pt;}
.xfb{left:279.962667pt;}
.x15{left:281.122667pt;}
.x24{left:283.200000pt;}
.xda{left:284.125333pt;}
.x77{left:286.601333pt;}
.xa{left:287.953333pt;}
.x3d{left:289.905333pt;}
.x80{left:291.166667pt;}
.x16{left:294.280000pt;}
.x4a{left:295.312000pt;}
.x25{left:296.482667pt;}
.xa4{left:298.192000pt;}
.x17{left:300.921333pt;}
.xc3{left:302.150667pt;}
.x3e{left:303.189333pt;}
.xa5{left:304.242667pt;}
.x7d{left:305.412000pt;}
.x3f{left:306.560000pt;}
.x4f{left:308.500000pt;}
.x7e{left:311.462667pt;}
.xa3{left:314.633333pt;}
.xd9{left:318.406667pt;}
.x40{left:319.842667pt;}
.xd8{left:321.933333pt;}
.x30{left:323.264000pt;}
.xe6{left:326.790667pt;}
.xa9{left:329.404000pt;}
.xf1{left:331.673333pt;}
.x8c{left:334.697333pt;}
.x31{left:336.548000pt;}
.xf7{left:338.082667pt;}
.x1d{left:339.004000pt;}
.xe7{left:340.074667pt;}
.x32{left:343.056000pt;}
.xaa{left:344.056000pt;}
.x9b{left:346.760000pt;}
.x8d{left:347.981333pt;}
.x8e{left:351.368000pt;}
.x1e{left:352.288000pt;}
.x33{left:356.340000pt;}
.x8{left:358.968000pt;}
.xe8{left:360.133333pt;}
.x8f{left:364.652000pt;}
.x4b{left:366.512000pt;}
.xa6{left:368.746667pt;}
.xc7{left:370.362667pt;}
.xfa{left:371.349333pt;}
.x1f{left:372.318667pt;}
.xe9{left:373.416000pt;}
.x2a{left:374.453333pt;}
.x5f{left:375.421333pt;}
.xea{left:376.804000pt;}
.x78{left:377.826667pt;}
.xfc{left:379.316000pt;}
.xd0{left:382.265333pt;}
.x79{left:383.538667pt;}
.x60{left:384.464000pt;}
.x2b{left:387.736000pt;}
.xad{left:390.056000pt;}
.x58{left:392.148000pt;}
.xc4{left:394.922667pt;}
.x26{left:396.310667pt;}
.x59{left:397.860000pt;}
.x38{left:399.761333pt;}
.x9{left:400.962667pt;}
.x63{left:402.298667pt;}
.xec{left:404.656000pt;}
.x4c{left:405.868000pt;}
.x27{left:409.594667pt;}
.xe3{left:411.636000pt;}
.x39{left:413.044000pt;}
.xe4{left:415.022667pt;}
.xf8{left:416.129333pt;}
.x64{left:417.745333pt;}
.x3a{left:419.732000pt;}
.x89{left:422.317333pt;}
.xed{left:424.713333pt;}
.x82{left:425.681333pt;}
.xcc{left:426.610667pt;}
.xe5{left:428.306667pt;}
.x45{left:429.440000pt;}
.x83{left:431.730667pt;}
.x3b{left:433.016000pt;}
.xee{left:436.393333pt;}
.xd6{left:437.405333pt;}
.xab{left:441.562667pt;}
.x46{left:442.724000pt;}
.x75{left:445.906667pt;}
.x50{left:447.017333pt;}
.x47{left:449.233333pt;}
.xd7{left:450.688000pt;}
.x4d{left:453.365333pt;}
.x2c{left:455.909333pt;}
.x66{left:459.125333pt;}
.x9c{left:460.721333pt;}
.x48{left:462.516000pt;}
.x86{left:464.084000pt;}
.x65{left:466.192000pt;}
.x2d{left:469.192000pt;}
.xc0{left:471.992000pt;}
.xd4{left:473.021333pt;}
.xc2{left:474.813333pt;}
.x6d{left:476.208000pt;}
.x67{left:481.638667pt;}
.x91{left:483.853333pt;}
.x6e{left:484.934667pt;}
.x92{left:489.564000pt;}
.xeb{left:492.544000pt;}
.x51{left:494.244000pt;}
.x9d{left:496.365333pt;}
.x6f{left:498.577333pt;}
.x6c{left:499.510667pt;}
.x54{left:500.577333pt;}
.x87{left:501.944000pt;}
.xcd{left:502.916000pt;}
.xc1{left:503.964000pt;}
.x55{left:506.289333pt;}
.x88{left:507.994667pt;}
.x68{left:509.417333pt;}
.xce{left:510.889333pt;}
.x20{left:513.370667pt;}
.x97{left:517.793333pt;}
.x9e{left:519.473333pt;}
.x56{left:525.122667pt;}
.x21{left:526.654667pt;}
.x9f{left:527.678667pt;}
.x57{left:530.834667pt;}
.x6a{left:531.812000pt;}
.x69{left:532.890667pt;}
.x70{left:534.780000pt;}
.xf2{left:536.589333pt;}
.x52{left:537.828000pt;}
.xa8{left:540.660000pt;}
.x11{left:545.152000pt;}
.x71{left:550.153333pt;}
.x12{left:551.794667pt;}
.x13{left:555.128000pt;}
.x6b{left:557.561333pt;}
.x95{left:559.373333pt;}
.x9a{left:560.526667pt;}
.x14{left:561.769333pt;}
.x96{left:565.424000pt;}
.x7a{left:567.197333pt;}
.xc6{left:568.386667pt;}
.xd{left:572.073333pt;}
.x7b{left:573.246667pt;}
.xe{left:578.714667pt;}
.xf{left:582.102667pt;}
.x53{left:584.013333pt;}
.x28{left:587.350667pt;}
.x10{left:588.744000pt;}
.xfe{left:589.897333pt;}
.xc8{left:591.058667pt;}
.x34{left:592.576000pt;}
.xa7{left:593.902667pt;}
.xd1{left:594.797333pt;}
.x5a{left:598.213333pt;}
.x29{left:600.633333pt;}
.x5b{left:603.925333pt;}
.x35{left:605.860000pt;}
.xa0{left:606.780000pt;}
.x5c{left:608.260000pt;}
.x76{left:609.745333pt;}
.x36{left:612.454667pt;}
.x3c{left:613.438667pt;}
.xf3{left:616.166667pt;}
.x100{left:617.730667pt;}
.xc5{left:618.946667pt;}
.x72{left:620.233333pt;}
.x61{left:622.209333pt;}
.x37{left:625.738667pt;}
.xcf{left:627.354667pt;}
.x62{left:628.260000pt;}
.xbc{left:632.297333pt;}
.x5d{left:633.433333pt;}
.xef{left:635.741333pt;}
.xe0{left:637.410656pt;}
.x5e{left:639.145333pt;}
.x101{left:641.641333pt;}
.xfd{left:643.114667pt;}
.xf6{left:644.744000pt;}
.x98{left:647.126667pt;}
.xf0{left:649.025333pt;}
.x22{left:650.781333pt;}
.x93{left:652.344000pt;}
.x41{left:654.678667pt;}
.x73{left:657.820000pt;}
.x94{left:661.392000pt;}
.x23{left:664.065333pt;}
.x74{left:666.157333pt;}
.x42{left:667.962667pt;}
.x43{left:671.349333pt;}
.xff{left:672.316000pt;}
.xa1{left:676.148000pt;}
.xf9{left:677.396000pt;}
.xb0{left:679.133333pt;}
.x44{left:684.633333pt;}
.xd2{left:690.305333pt;}
.xb1{left:693.378667pt;}
.xdc{left:695.708976pt;}
.x102{left:701.908000pt;}
.x8b{left:702.822667pt;}
.xb{left:707.109333pt;}
.xf5{left:709.053333pt;}
.xd5{left:710.316000pt;}
.xae{left:713.014667pt;}
.x2e{left:719.518667pt;}
.xf4{left:720.480000pt;}
.x19{left:722.790667pt;}
.xac{left:723.805333pt;}
.x84{left:725.302667pt;}
.x2f{left:726.240000pt;}
.x1a{left:729.433333pt;}
.x1b{left:732.820000pt;}
.x81{left:733.806667pt;}
.xbd{left:736.889333pt;}
.xaf{left:738.229333pt;}
.x1c{left:739.461333pt;}
.xbe{left:742.601333pt;}
.xd3{left:744.757333pt;}
}




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