
    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_391ecfa0464919d648194ce8.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_2bddcef06622dae6e7e08fad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_744bb104216d9b377bf5445f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fba69ff08040d110c6db5197.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.638000;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_035c2149bc37243b858a55a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_450c623a8c9dda22c2393aba.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_c71152846ac4053895e1a3e2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2c5635ae5dedcc02a20095a2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3f758a908568d0de9af91b4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8dd8abfc045e71d62c0ebbf7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bc62361b2202fd21b2acb588.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_67c833ee81f04b5b853c81ae.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b88794f4081fa7e94a5b390c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7d5211d4267aa42b772d08e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_f070c824e529a9045c2d925d.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7928c13eab40d944c328557e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_709567a62a2b13ae57acd4c3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cbf24afedf423aecf8463bfd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e6dcefae0de5f39aaf0043a8.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a48368d2d841a8c42713b426.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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;}
.m3{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);}
.m1b{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);}
.m5{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);}
.m16{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);}
.m20{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);}
.mc{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);}
.m15{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);}
.m19{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);}
.m26{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);}
.ma{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);}
.m7{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);}
.m2{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);}
.m4{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);}
.mb{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);}
.m13{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);}
.m6{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);}
.m1f{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);}
.m24{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);}
.mf{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);}
.m1{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);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m9{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);}
.m27{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);}
.m23{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);}
.m1c{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);}
.m17{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);}
.m12{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);}
.m25{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);}
.m1e{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);}
.m28{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);}
.m18{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);}
.m21{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);}
.m22{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);}
.m1d{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);}
.md{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);}
.m8{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);}
.m11{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;}
.v8{vertical-align:-13.322592px;}
.va{vertical-align:-7.917804px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.254000px;}
.v9{vertical-align:15.117048px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.v7{vertical-align:36.720000px;}
.v6{vertical-align:65.754000px;}
.lsa0{letter-spacing:-1.490400px;}
.lsa3{letter-spacing:-1.441800px;}
.ls9f{letter-spacing:-1.371600px;}
.ls4b{letter-spacing:-1.334664px;}
.ls4a{letter-spacing:-1.298592px;}
.ls49{letter-spacing:-1.274544px;}
.ls52{letter-spacing:-1.252800px;}
.ls51{letter-spacing:-1.231200px;}
.lsa5{letter-spacing:-1.171800px;}
.lsa2{letter-spacing:-1.134000px;}
.lsa1{letter-spacing:-1.123200px;}
.ls9e{letter-spacing:-1.112400px;}
.lsa6{letter-spacing:-1.101600px;}
.lsa4{letter-spacing:-1.080000px;}
.ls53{letter-spacing:-1.020600px;}
.ls87{letter-spacing:-0.788400px;}
.ls7d{letter-spacing:-0.766800px;}
.ls7b{letter-spacing:-0.729000px;}
.ls85{letter-spacing:-0.718200px;}
.ls83{letter-spacing:-0.702000px;}
.ls8c{letter-spacing:-0.691200px;}
.ls89{letter-spacing:-0.680400px;}
.ls82{letter-spacing:-0.675000px;}
.ls84{letter-spacing:-0.669600px;}
.ls7c{letter-spacing:-0.664200px;}
.ls86{letter-spacing:-0.658800px;}
.ls8b{letter-spacing:-0.653400px;}
.ls7e{letter-spacing:-0.642600px;}
.ls80{letter-spacing:-0.626400px;}
.ls8a{letter-spacing:-0.610200px;}
.ls81{letter-spacing:-0.604800px;}
.ls88{letter-spacing:-0.561600px;}
.ls7f{letter-spacing:-0.399600px;}
.ls50{letter-spacing:-0.361800px;}
.lsad{letter-spacing:-0.210420px;}
.ls93{letter-spacing:-0.204408px;}
.ls95{letter-spacing:-0.180360px;}
.lsae{letter-spacing:-0.162324px;}
.lsab{letter-spacing:-0.150300px;}
.ls94{letter-spacing:-0.138276px;}
.lsb0{letter-spacing:-0.137592px;}
.ls98{letter-spacing:-0.132264px;}
.lsb1{letter-spacing:-0.131976px;}
.lsb3{letter-spacing:-0.129168px;}
.ls9d{letter-spacing:-0.120240px;}
.lsa8{letter-spacing:-0.114228px;}
.lsa7{letter-spacing:-0.108216px;}
.ls92{letter-spacing:-0.102204px;}
.ls8f{letter-spacing:-0.096192px;}
.ls58{letter-spacing:-0.095760px;}
.ls55{letter-spacing:-0.085248px;}
.ls5b{letter-spacing:-0.079344px;}
.lsaf{letter-spacing:-0.078156px;}
.ls4e{letter-spacing:-0.064800px;}
.ls57{letter-spacing:-0.063936px;}
.ls59{letter-spacing:-0.062928px;}
.ls5c{letter-spacing:-0.060192px;}
.ls5a{letter-spacing:-0.057456px;}
.ls54{letter-spacing:-0.055944px;}
.ls99{letter-spacing:-0.054108px;}
.ls56{letter-spacing:-0.053280px;}
.ls8d{letter-spacing:-0.048096px;}
.ls9c{letter-spacing:-0.042084px;}
.lsaa{letter-spacing:-0.030060px;}
.ls8e{letter-spacing:-0.024048px;}
.ls4d{letter-spacing:-0.021600px;}
.ls97{letter-spacing:-0.012024px;}
.ls9a{letter-spacing:-0.006012px;}
.ls4c{letter-spacing:-0.005400px;}
.lse{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000608px;}
.lsbe{letter-spacing:0.000676px;}
.ls10{letter-spacing:0.003389px;}
.ls0{letter-spacing:0.003634px;}
.lsbf{letter-spacing:0.004560px;}
.lsbc{letter-spacing:0.004800px;}
.ls37{letter-spacing:0.005400px;}
.ls64{letter-spacing:0.006012px;}
.ls34{letter-spacing:0.010800px;}
.ls40{letter-spacing:0.016200px;}
.ls32{letter-spacing:0.019152px;}
.ls3a{letter-spacing:0.021600px;}
.ls3f{letter-spacing:0.027000px;}
.ls68{letter-spacing:0.030060px;}
.ls3e{letter-spacing:0.032400px;}
.ls90{letter-spacing:0.036072px;}
.ls3b{letter-spacing:0.037800px;}
.ls3c{letter-spacing:0.043200px;}
.ls62{letter-spacing:0.048096px;}
.ls41{letter-spacing:0.048600px;}
.ls30{letter-spacing:0.052668px;}
.ls42{letter-spacing:0.054000px;}
.ls65{letter-spacing:0.054108px;}
.ls35{letter-spacing:0.059400px;}
.lsa9{letter-spacing:0.060120px;}
.ls91{letter-spacing:0.066132px;}
.ls39{letter-spacing:0.070200px;}
.ls9b{letter-spacing:0.078156px;}
.lsb2{letter-spacing:0.081432px;}
.ls66{letter-spacing:0.084168px;}
.ls69{letter-spacing:0.090180px;}
.lsac{letter-spacing:0.102204px;}
.ls72{letter-spacing:0.138240px;}
.ls96{letter-spacing:0.138276px;}
.ls70{letter-spacing:0.144000px;}
.ls71{letter-spacing:0.146880px;}
.ls6e{letter-spacing:0.150300px;}
.ls33{letter-spacing:0.172368px;}
.ls3d{letter-spacing:0.178200px;}
.ls63{letter-spacing:0.180360px;}
.lsb4{letter-spacing:0.181440px;}
.ls31{letter-spacing:0.181944px;}
.ls74{letter-spacing:0.184320px;}
.ls11{letter-spacing:0.717483px;}
.ls6c{letter-spacing:1.981800px;}
.ls6b{letter-spacing:2.338200px;}
.ls1{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls67{letter-spacing:9.450864px;}
.lsd{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.934154px;}
.ls15{letter-spacing:13.050481px;}
.ls14{letter-spacing:13.056603px;}
.lsbb{letter-spacing:13.209224px;}
.lsc2{letter-spacing:13.220341px;}
.ls9{letter-spacing:13.358285px;}
.lsa{letter-spacing:13.364273px;}
.lsba{letter-spacing:13.418135px;}
.ls46{letter-spacing:13.439445px;}
.ls1e{letter-spacing:13.444090px;}
.ls2e{letter-spacing:13.444800px;}
.lsb7{letter-spacing:13.448400px;}
.ls1c{letter-spacing:13.450090px;}
.ls8{letter-spacing:13.450800px;}
.lsb9{letter-spacing:13.454400px;}
.lsc0{letter-spacing:13.484135px;}
.lsc{letter-spacing:13.486090px;}
.ls75{letter-spacing:13.561565px;}
.lsc1{letter-spacing:13.706363px;}
.ls16{letter-spacing:13.717828px;}
.ls6d{letter-spacing:13.767480px;}
.lsb8{letter-spacing:13.785694px;}
.ls61{letter-spacing:13.861800px;}
.ls2f{letter-spacing:14.100088px;}
.ls78{letter-spacing:14.464766px;}
.lsbd{letter-spacing:14.562165px;}
.ls76{letter-spacing:14.618082px;}
.ls26{letter-spacing:14.699626px;}
.ls25{letter-spacing:14.705520px;}
.ls13{letter-spacing:14.902766px;}
.ls1b{letter-spacing:14.943900px;}
.ls20{letter-spacing:14.944200px;}
.ls48{letter-spacing:14.957537px;}
.ls7a{letter-spacing:14.983329px;}
.ls60{letter-spacing:14.989077px;}
.ls12{letter-spacing:15.045935px;}
.ls2a{letter-spacing:15.049010px;}
.ls29{letter-spacing:15.179273px;}
.lsb6{letter-spacing:15.271384px;}
.ls24{letter-spacing:15.365141px;}
.lsb{letter-spacing:15.370443px;}
.ls79{letter-spacing:15.429847px;}
.lsf{letter-spacing:15.657483px;}
.ls27{letter-spacing:16.106318px;}
.ls28{letter-spacing:16.112200px;}
.ls5e{letter-spacing:16.288296px;}
.ls1d{letter-spacing:16.434600px;}
.ls77{letter-spacing:16.435355px;}
.ls1f{letter-spacing:16.440600px;}
.ls19{letter-spacing:16.882413px;}
.ls1a{letter-spacing:16.888296px;}
.ls5f{letter-spacing:18.276531px;}
.ls47{letter-spacing:18.400435px;}
.ls23{letter-spacing:18.676906px;}
.ls22{letter-spacing:22.353376px;}
.ls5d{letter-spacing:22.958884px;}
.ls21{letter-spacing:24.285512px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.671200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:62.767200px;}
.ls7{letter-spacing:64.321654px;}
.ls38{letter-spacing:103.140000px;}
.ls44{letter-spacing:151.868160px;}
.ls45{letter-spacing:156.867840px;}
.ls6f{letter-spacing:161.507520px;}
.ls73{letter-spacing:164.347200px;}
.ls2d{letter-spacing:179.980090px;}
.ls36{letter-spacing:186.661800px;}
.ls2c{letter-spacing:309.982090px;}
.ls2b{letter-spacing:417.283133px;}
.lsb5{letter-spacing:456.706090px;}
.ls4f{letter-spacing:592.741800px;}
.ls6a{letter-spacing:1192.408056px;}
.ls43{letter-spacing:1200.331872px;}
.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;}
}
.wsd4{word-spacing:-60.120000px;}
.ws9d{word-spacing:-54.000000px;}
.wsd6{word-spacing:-15.030000px;}
.ws13a{word-spacing:-14.943900px;}
.ws11{word-spacing:-14.355754px;}
.ws9c{word-spacing:-13.500000px;}
.ws2d{word-spacing:-13.449600px;}
.wsd2{word-spacing:-12.733200px;}
.wsd3{word-spacing:-12.711600px;}
.wsd8{word-spacing:-12.328200px;}
.ws9a{word-spacing:-12.151944px;}
.wsd9{word-spacing:-12.058200px;}
.wsd7{word-spacing:-12.009600px;}
.ws9b{word-spacing:-11.970000px;}
.ws15{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.wsd5{word-spacing:-9.000000px;}
.ws13b{word-spacing:-3.765863px;}
.ws120{word-spacing:-3.571128px;}
.ws121{word-spacing:-3.480948px;}
.ws13e{word-spacing:-3.407209px;}
.ws13d{word-spacing:-3.287658px;}
.ws135{word-spacing:-2.988780px;}
.ws139{word-spacing:-2.929004px;}
.wsa2{word-spacing:-2.797517px;}
.wsa3{word-spacing:-2.582323px;}
.ws56{word-spacing:-2.510575px;}
.ws156{word-spacing:-2.474726px;}
.wscd{word-spacing:-2.397600px;}
.ws46{word-spacing:-2.391024px;}
.ws11a{word-spacing:-2.284200px;}
.ws142{word-spacing:-2.211697px;}
.wscb{word-spacing:-2.187000px;}
.wscc{word-spacing:-2.165400px;}
.ws13f{word-spacing:-2.151922px;}
.wsff{word-spacing:-2.134260px;}
.ws148{word-spacing:-2.092146px;}
.ws154{word-spacing:-2.044339px;}
.ws70{word-spacing:-2.032370px;}
.ws122{word-spacing:-1.965924px;}
.ws11d{word-spacing:-1.938600px;}
.ws19{word-spacing:-1.936742px;}
.ws123{word-spacing:-1.917828px;}
.ws67{word-spacing:-1.912819px;}
.ws138{word-spacing:-1.853044px;}
.ws155{word-spacing:-1.829146px;}
.ws13c{word-spacing:-1.793268px;}
.wsfe{word-spacing:-1.743480px;}
.ws143{word-spacing:-1.733492px;}
.ws1a{word-spacing:-1.721549px;}
.wsfb{word-spacing:-1.683360px;}
.ws40{word-spacing:-1.673717px;}
.wsfc{word-spacing:-1.659312px;}
.wsfd{word-spacing:-1.611216px;}
.ws57{word-spacing:-1.554166px;}
.ws4a{word-spacing:-1.434614px;}
.ws133{word-spacing:-1.374839px;}
.ws31{word-spacing:-1.315063px;}
.ws141{word-spacing:-1.255288px;}
.wsec{word-spacing:-1.220400px;}
.ws69{word-spacing:-1.195512px;}
.ws14d{word-spacing:-1.183565px;}
.ws5{word-spacing:-1.171598px;}
.ws35{word-spacing:-1.075961px;}
.ws7{word-spacing:-1.046070px;}
.wseb{word-spacing:-0.977400px;}
.ws125{word-spacing:-0.961920px;}
.ws14c{word-spacing:-0.956410px;}
.wsea{word-spacing:-0.955800px;}
.ws126{word-spacing:-0.949896px;}
.wsd0{word-spacing:-0.896634px;}
.wse9{word-spacing:-0.891000px;}
.ws25{word-spacing:-0.699379px;}
.ws5e{word-spacing:-0.657532px;}
.ws17d{word-spacing:-0.537984px;}
.ws53{word-spacing:-0.537980px;}
.wse8{word-spacing:-0.478205px;}
.ws26{word-spacing:-0.430387px;}
.ws14a{word-spacing:-0.418429px;}
.ws106{word-spacing:-0.408816px;}
.ws47{word-spacing:-0.358654px;}
.ws173{word-spacing:-0.322790px;}
.ws54{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.272916px;}
.ws27{word-spacing:-0.268992px;}
.wsaa{word-spacing:-0.263340px;}
.ws4b{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.215194px;}
.wsc6{word-spacing:-0.205200px;}
.ws68{word-spacing:-0.179327px;}
.ws115{word-spacing:-0.162324px;}
.ws2b{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.wsa9{word-spacing:-0.110124px;}
.ws24{word-spacing:-0.107597px;}
.ws16{word-spacing:-0.095641px;}
.ws3c{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws124{word-spacing:-0.012024px;}
.ws7b{word-spacing:-0.010157px;}
.ws8b{word-spacing:-0.010138px;}
.ws8d{word-spacing:-0.007123px;}
.ws7f{word-spacing:-0.006931px;}
.ws80{word-spacing:-0.005606px;}
.ws8c{word-spacing:-0.005386px;}
.ws8e{word-spacing:-0.005357px;}
.ws83{word-spacing:-0.004819px;}
.ws7d{word-spacing:-0.004800px;}
.ws8a{word-spacing:-0.004435px;}
.ws82{word-spacing:-0.004320px;}
.wsd1{word-spacing:-0.004200px;}
.ws90{word-spacing:-0.004042px;}
.ws89{word-spacing:-0.003686px;}
.ws81{word-spacing:-0.003091px;}
.ws7c{word-spacing:-0.002938px;}
.ws87{word-spacing:-0.002870px;}
.ws8f{word-spacing:-0.002285px;}
.ws79{word-spacing:-0.002035px;}
.ws75{word-spacing:-0.001930px;}
.ws84{word-spacing:-0.001594px;}
.ws7e{word-spacing:-0.001421px;}
.ws98{word-spacing:-0.001267px;}
.ws76{word-spacing:-0.000355px;}
.ws1{word-spacing:0.000000px;}
.ws88{word-spacing:0.000355px;}
.ws78{word-spacing:0.000902px;}
.ws7a{word-spacing:0.003341px;}
.ws105{word-spacing:0.042084px;}
.ws17{word-spacing:0.047821px;}
.ws1b{word-spacing:0.053798px;}
.ws60{word-spacing:0.059776px;}
.ws107{word-spacing:0.102204px;}
.ws1e{word-spacing:0.107597px;}
.wsf8{word-spacing:0.113400px;}
.wsb1{word-spacing:0.118800px;}
.ws3f{word-spacing:0.119551px;}
.wsc8{word-spacing:0.124200px;}
.wsc3{word-spacing:0.129600px;}
.ws64{word-spacing:0.134066px;}
.wsb6{word-spacing:0.135000px;}
.wsb7{word-spacing:0.140400px;}
.wsb8{word-spacing:0.145800px;}
.wsc7{word-spacing:0.151200px;}
.wsc4{word-spacing:0.156600px;}
.ws22{word-spacing:0.161395px;}
.wsca{word-spacing:0.162000px;}
.wsb0{word-spacing:0.167400px;}
.wsb2{word-spacing:0.172800px;}
.wsc1{word-spacing:0.178200px;}
.ws30{word-spacing:0.179327px;}
.wsae{word-spacing:0.183600px;}
.ws92{word-spacing:0.191282px;}
.wsaf{word-spacing:0.199800px;}
.ws116{word-spacing:0.210420px;}
.ws2a{word-spacing:0.215194px;}
.ws42{word-spacing:0.239102px;}
.ws1c{word-spacing:0.268992px;}
.ws41{word-spacing:0.298878px;}
.ws1d{word-spacing:0.322790px;}
.wsad{word-spacing:0.342684px;}
.ws147{word-spacing:0.358654px;}
.ws96{word-spacing:0.417161px;}
.ws61{word-spacing:0.418429px;}
.ws13{word-spacing:0.442186px;}
.ws6b{word-spacing:0.478205px;}
.ws136{word-spacing:0.537980px;}
.ws32{word-spacing:0.597756px;}
.ws36{word-spacing:0.657532px;}
.ws99{word-spacing:0.666979px;}
.wse2{word-spacing:0.699379px;}
.ws10a{word-spacing:0.727452px;}
.ws45{word-spacing:0.777083px;}
.ws175{word-spacing:0.806976px;}
.ws6e{word-spacing:0.836858px;}
.ws160{word-spacing:0.860774px;}
.ws132{word-spacing:0.956410px;}
.ws20{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.ws65{word-spacing:1.075961px;}
.ws177{word-spacing:1.129766px;}
.ws97{word-spacing:1.135736px;}
.ws43{word-spacing:1.255288px;}
.ws91{word-spacing:1.291156px;}
.ws167{word-spacing:1.291162px;}
.wscf{word-spacing:1.315063px;}
.ws50{word-spacing:1.374839px;}
.ws169{word-spacing:1.398758px;}
.ws49{word-spacing:1.434614px;}
.wse7{word-spacing:1.494390px;}
.wse6{word-spacing:1.554166px;}
.ws134{word-spacing:1.613941px;}
.ws130{word-spacing:1.733492px;}
.ws181{word-spacing:1.829146px;}
.ws10d{word-spacing:1.839672px;}
.ws144{word-spacing:1.853044px;}
.wsee{word-spacing:1.863000px;}
.ws15f{word-spacing:1.882944px;}
.wsed{word-spacing:1.884600px;}
.ws10c{word-spacing:1.893780px;}
.ws71{word-spacing:1.912819px;}
.ws28{word-spacing:1.936742px;}
.ws10b{word-spacing:1.941876px;}
.ws5d{word-spacing:1.972595px;}
.ws11e{word-spacing:1.995984px;}
.ws11f{word-spacing:2.001996px;}
.wse3{word-spacing:2.098138px;}
.ws37{word-spacing:2.151922px;}
.ws59{word-spacing:2.211697px;}
.ws14e{word-spacing:2.259533px;}
.ws3b{word-spacing:2.391024px;}
.ws48{word-spacing:2.450800px;}
.ws63{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws15e{word-spacing:2.528525px;}
.ws15d{word-spacing:2.582323px;}
.ws3d{word-spacing:2.630126px;}
.ws3e{word-spacing:2.689902px;}
.ws11c{word-spacing:2.721600px;}
.ws140{word-spacing:2.809453px;}
.ws5b{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws170{word-spacing:2.958912px;}
.ws34{word-spacing:3.048556px;}
.ws11b{word-spacing:3.061800px;}
.ws117{word-spacing:3.094200px;}
.ws119{word-spacing:3.105000px;}
.ws131{word-spacing:3.108331px;}
.wsac{word-spacing:3.186360px;}
.ws2e{word-spacing:3.219667px;}
.ws17f{word-spacing:3.223306px;}
.ws153{word-spacing:3.224822px;}
.ws58{word-spacing:3.227882px;}
.ws184{word-spacing:3.227904px;}
.ws17c{word-spacing:3.281702px;}
.wse4{word-spacing:3.287658px;}
.ws38{word-spacing:3.347434px;}
.ws118{word-spacing:3.353400px;}
.wsa6{word-spacing:3.407209px;}
.ws151{word-spacing:3.443098px;}
.wsa7{word-spacing:3.466985px;}
.ws15a{word-spacing:3.496896px;}
.wsab{word-spacing:3.523032px;}
.ws2f{word-spacing:3.586536px;}
.wsfa{word-spacing:3.643272px;}
.ws5f{word-spacing:3.646312px;}
.wsf7{word-spacing:3.672000px;}
.ws94{word-spacing:3.706087px;}
.wsf0{word-spacing:3.726000px;}
.wsef{word-spacing:3.736800px;}
.wsf6{word-spacing:3.742200px;}
.ws159{word-spacing:3.819686px;}
.ws149{word-spacing:3.825638px;}
.ws12f{word-spacing:3.901788px;}
.ws150{word-spacing:3.927283px;}
.ws112{word-spacing:4.058100px;}
.ws111{word-spacing:4.076136px;}
.wsa4{word-spacing:4.088678px;}
.wsf9{word-spacing:4.100184px;}
.ws52{word-spacing:4.124516px;}
.ws12e{word-spacing:4.172328px;}
.ws16d{word-spacing:4.196275px;}
.ws95{word-spacing:4.244068px;}
.ws12d{word-spacing:4.376736px;}
.ws104{word-spacing:4.400784px;}
.ws6d{word-spacing:4.483170px;}
.ws1f{word-spacing:4.519066px;}
.ws55{word-spacing:4.542946px;}
.ws15c{word-spacing:4.626662px;}
.wsa5{word-spacing:4.680461px;}
.ws10e{word-spacing:4.719420px;}
.wsd{word-spacing:4.770079px;}
.ws14b{word-spacing:4.782048px;}
.ws12b{word-spacing:4.821624px;}
.ws12c{word-spacing:4.845672px;}
.wse{word-spacing:4.853765px;}
.ws145{word-spacing:4.901599px;}
.ws15b{word-spacing:4.949453px;}
.ws6f{word-spacing:5.140702px;}
.ws2c{word-spacing:5.218445px;}
.ws152{word-spacing:5.326042px;}
.ws62{word-spacing:5.379804px;}
.ws5c{word-spacing:5.439580px;}
.ws101{word-spacing:5.591160px;}
.ws51{word-spacing:5.618906px;}
.ws103{word-spacing:5.627232px;}
.ws102{word-spacing:5.693364px;}
.ws6c{word-spacing:5.738458px;}
.ws4f{word-spacing:5.798233px;}
.ws6a{word-spacing:5.858009px;}
.ws158{word-spacing:5.864026px;}
.ws33{word-spacing:5.917784px;}
.ws166{word-spacing:5.917824px;}
.ws4d{word-spacing:5.977560px;}
.ws4c{word-spacing:6.097111px;}
.ws146{word-spacing:6.216662px;}
.ws157{word-spacing:6.240614px;}
.ws129{word-spacing:6.306588px;}
.ws12a{word-spacing:6.372720px;}
.ws137{word-spacing:6.515540px;}
.ws113{word-spacing:6.613200px;}
.ws114{word-spacing:6.673320px;}
.ws66{word-spacing:6.754643px;}
.ws4e{word-spacing:6.814418px;}
.ws14f{word-spacing:7.155187px;}
.wse5{word-spacing:7.232848px;}
.ws93{word-spacing:7.412174px;}
.ws39{word-spacing:7.711052px;}
.ws3a{word-spacing:7.770828px;}
.wsb{word-spacing:7.782761px;}
.wsce{word-spacing:8.009930px;}
.ws5a{word-spacing:8.129482px;}
.ws10f{word-spacing:9.372708px;}
.ws110{word-spacing:9.781524px;}
.ws2{word-spacing:10.415642px;}
.wse0{word-spacing:10.705882px;}
.wse1{word-spacing:10.759680px;}
.wsdf{word-spacing:11.190067px;}
.ws29{word-spacing:11.909615px;}
.ws100{word-spacing:11.933820px;}
.ws9{word-spacing:12.176255px;}
.ws171{word-spacing:13.126810px;}
.ws179{word-spacing:13.288205px;}
.ws16e{word-spacing:13.342003px;}
.ws168{word-spacing:13.386653px;}
.ws165{word-spacing:13.388995px;}
.ws16a{word-spacing:13.391578px;}
.ws178{word-spacing:13.392490px;}
.ws16f{word-spacing:13.393690px;}
.ws16c{word-spacing:13.395802px;}
.ws17b{word-spacing:13.430934px;}
.ws17a{word-spacing:13.449600px;}
.ws183{word-spacing:13.503802px;}
.ws162{word-spacing:13.610995px;}
.ws182{word-spacing:13.664794px;}
.ws128{word-spacing:13.791528px;}
.ws127{word-spacing:13.815576px;}
.wsf5{word-spacing:14.061600px;}
.ws108{word-spacing:14.230404px;}
.ws176{word-spacing:14.256576px;}
.ws109{word-spacing:14.260464px;}
.wsf4{word-spacing:14.466600px;}
.wsf3{word-spacing:14.520600px;}
.wsf2{word-spacing:14.531400px;}
.wsf1{word-spacing:14.563800px;}
.ws44{word-spacing:14.884124px;}
.wsa{word-spacing:16.109478px;}
.ws174{word-spacing:16.354714px;}
.ws164{word-spacing:16.615104px;}
.ws180{word-spacing:16.617005px;}
.ws17e{word-spacing:16.618867px;}
.ws172{word-spacing:16.619654px;}
.ws16b{word-spacing:16.620499px;}
.ws161{word-spacing:16.623706px;}
.ws163{word-spacing:17.645875px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws10{word-spacing:46.636891px;}
.ws9f{word-spacing:137.018232px;}
.ws9e{word-spacing:137.369160px;}
.wsa1{word-spacing:142.256880px;}
.wsdb{word-spacing:146.061576px;}
.wsda{word-spacing:146.411928px;}
.wsde{word-spacing:147.695040px;}
.wsdc{word-spacing:148.046400px;}
.wsdd{word-spacing:155.972160px;}
.wsa0{word-spacing:157.369248px;}
.ws72{word-spacing:270.709046px;}
.ws85{word-spacing:292.329773px;}
.ws86{word-spacing:312.265200px;}
.ws77{word-spacing:341.363731px;}
.wsbb{word-spacing:349.353000px;}
.wsc9{word-spacing:362.296800px;}
.ws73{word-spacing:377.065200px;}
.wsc2{word-spacing:389.296800px;}
.wsbd{word-spacing:390.047400px;}
.wsc5{word-spacing:409.476600px;}
.wsb9{word-spacing:428.549400px;}
.wsbe{word-spacing:431.422200px;}
.wsb4{word-spacing:440.062200px;}
.wsba{word-spacing:440.796600px;}
.wsb5{word-spacing:442.584000px;}
.wsbc{word-spacing:464.562000px;}
.wsb3{word-spacing:480.038400px;}
.wsbf{word-spacing:490.816800px;}
.wsc0{word-spacing:504.489600px;}
.ws74{word-spacing:2370.339494px;}
._e9{margin-left:-1081.739520px;}
._e4{margin-left:-1059.087744px;}
._e8{margin-left:-1036.048320px;}
._de{margin-left:-1031.734656px;}
._e3{margin-left:-1015.167816px;}
._d9{margin-left:-997.532136px;}
._dd{margin-left:-988.533216px;}
._d8{margin-left:-956.130912px;}
._c5{margin-left:-504.360000px;}
._c2{margin-left:-490.681800px;}
._a2{margin-left:-479.881800px;}
._bb{margin-left:-464.400000px;}
._a9{margin-left:-442.443600px;}
._b4{margin-left:-441.358200px;}
._a6{margin-left:-439.921800px;}
._bf{margin-left:-431.281800px;}
._b0{margin-left:-428.403600px;}
._cc{margin-left:-409.320000px;}
._bd{margin-left:-389.880000px;}
._d3{margin-left:-362.161800px;}
._b7{margin-left:-348.294518px;}
._c1{margin-left:-175.726800px;}
._c4{margin-left:-169.246800px;}
._c7{margin-left:-166.484740px;}
._a1{margin-left:-164.521800px;}
._ba{margin-left:-162.356400px;}
._c3{margin-left:-148.726800px;}
._d2{margin-left:-138.581453px;}
._a5{margin-left:-124.561800px;}
._a8{margin-left:-120.792600px;}
._af{margin-left:-113.043600px;}
._be{margin-left:-102.729600px;}
._cb{margin-left:-80.276400px;}
._a3{margin-left:-77.787000px;}
._bc{margin-left:-74.520000px;}
._b5{margin-left:-38.545200px;}
._aa{margin-left:-33.539400px;}
._b1{margin-left:-26.330400px;}
._fb{margin-left:-7.782911px;}
._a{margin-left:-6.663568px;}
._0{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._8a{margin-left:-2.701885px;}
._2{margin-left:-1.506341px;}
._a0{width:1.013357px;}
._5{width:2.301354px;}
._9{width:3.694762px;}
._e0{width:5.370718px;}
._a7{width:9.271800px;}
._6{width:11.582422px;}
._3{width:12.971477px;}
._10{width:14.822586px;}
._c{width:15.978125px;}
._e{width:17.215488px;}
._14{width:18.470660px;}
._d{width:19.844176px;}
._fd{width:20.934997px;}
._f{width:21.949747px;}
._fc{width:23.097953px;}
._18{width:24.101518px;}
._4{width:25.943736px;}
._17{width:27.078347px;}
._15{width:29.110717px;}
._7{width:30.587087px;}
._19{width:32.290775px;}
._8{width:33.355008px;}
._1a{width:35.140655px;}
._13{width:36.618239px;}
._1b{width:38.567213px;}
._8b{width:41.245164px;}
._16{width:42.261349px;}
._eb{width:49.386931px;}
._b{width:56.810873px;}
._b8{width:59.362200px;}
._a4{width:65.377800px;}
._ab{width:102.799800px;}
._b6{width:104.716800px;}
._b2{width:116.623800px;}
._da{width:122.036803px;}
._df{width:128.219904px;}
._ea{width:130.507301px;}
._e5{width:132.344179px;}
._7f{width:140.048030px;}
._db{width:149.760432px;}
._d6{width:151.919928px;}
._7b{width:154.381670px;}
._dc{width:157.320000px;}
._d7{width:159.120720px;}
._e1{width:161.639712px;}
._e6{width:164.157120px;}
._d5{width:166.320000px;}
._e2{width:169.201656px;}
._d1{width:171.374400px;}
._e7{width:173.139840px;}
._80{width:181.569600px;}
._b9{width:182.730600px;}
._70{width:190.715328px;}
._78{width:193.219906px;}
._6f{width:202.012992px;}
._2c{width:205.940275px;}
._7c{width:207.339034px;}
._d0{width:209.147400px;}
._c0{width:210.792686px;}
._9c{width:217.775923px;}
._f2{width:218.989334px;}
._81{width:220.788634px;}
._2b{width:227.459635px;}
._79{width:232.032499px;}
._77{width:234.238234px;}
._50{width:236.543789px;}
._7e{width:238.326912px;}
._6d{width:246.965515px;}
._83{width:248.602406px;}
._ad{width:250.507901px;}
._9b{width:255.542400px;}
._6c{width:258.955646px;}
._95{width:262.643789px;}
._27{width:263.952832px;}
._84{width:266.452118px;}
._7d{width:272.166106px;}
._76{width:275.447808px;}
._82{width:276.472637px;}
._6a{width:278.675712px;}
._74{width:280.451059px;}
._c8{width:281.766341px;}
._20{width:284.647334px;}
._28{width:286.637875px;}
._66{width:289.034856px;}
._9a{width:292.717094px;}
._51{width:299.500013px;}
._71{width:300.733056px;}
._ac{width:302.635397px;}
._63{width:304.078694px;}
._2f{width:306.811267px;}
._6b{width:311.323907px;}
._6e{width:312.514906px;}
._2d{width:313.913664px;}
._72{width:314.935834px;}
._87{width:316.586555px;}
._73{width:319.024512px;}
._c6{width:321.121800px;}
._21{width:326.986675px;}
._7a{width:328.797940px;}
._2e{width:330.053184px;}
._4e{width:331.236749px;}
._64{width:334.201046px;}
._86{width:336.777984px;}
._9d{width:338.122944px;}
._99{width:339.736896px;}
._93{width:341.297050px;}
._25{width:342.319219px;}
._3b{width:347.214874px;}
._cf{width:348.793344px;}
._4d{width:350.119987px;}
._33{width:351.680141px;}
._67{width:352.863706px;}
._2a{width:354.101069px;}
._35{width:355.768819px;}
._ca{width:358.954200px;}
._91{width:360.879667px;}
._31{width:362.493619px;}
._61{width:363.892378px;}
._49{width:364.914547px;}
._9e{width:367.293641px;}
._68{width:369.009130px;}
._4c{width:371.854541px;}
._75{width:373.455155px;}
._d4{width:374.950368px;}
._5d{width:377.503373px;}
._4f{width:380.752249px;}
._3c{width:382.668019px;}
._23{width:383.851584px;}
._b3{width:387.001800px;}
._30{width:389.930803px;}
._ae{width:391.462200px;}
._69{width:393.212506px;}
._8f{width:394.288474px;}
._40{width:396.117619px;}
._8d{width:399.537450px;}
._34{width:402.304435px;}
._24{width:404.366656px;}
._98{width:406.177920px;}
._3a{width:408.276058px;}
._f7{width:410.105203px;}
._97{width:411.557760px;}
._3e{width:413.171712px;}
._29{width:414.785664px;}
._38{width:416.292019px;}
._5b{width:417.744576px;}
._ce{width:420.120000px;}
._1e{width:423.178214px;}
._89{width:424.781520px;}
._44{width:427.266893px;}
._59{width:428.289062px;}
._88{width:429.572790px;}
._3f{width:432.138600px;}
._22{width:434.960064px;}
._8e{width:436.789210px;}
._26{width:441.308275px;}
._65{width:442.660358px;}
._f0{width:444.116239px;}
._85{width:448.893850px;}
._1f{width:450.346406px;}
._4a{width:455.511053px;}
._56{width:463.742208px;}
._55{width:465.947942px;}
._45{width:468.530266px;}
._32{width:470.467008px;}
._f4{width:471.965929px;}
._37{width:473.318323px;}
._5e{width:475.793050px;}
._48{width:478.106381px;}
._5c{width:482.517850px;}
._36{width:483.970406px;}
._90{width:485.853350px;}
._8c{width:487.915571px;}
._54{width:490.641408px;}
._53{width:492.847142px;}
._f5{width:500.271888px;}
._46{width:501.401088px;}
._41{width:504.144806px;}
._92{width:509.309453px;}
._3d{width:510.815808px;}
._1c{width:517.102787px;}
._60{width:521.790682px;}
._39{width:524.319206px;}
._f8{width:527.202086px;}
._f1{width:530.444790px;}
._94{width:535.616870px;}
._c9{width:545.351081px;}
._cd{width:546.532531px;}
._42{width:547.560115px;}
._96{width:549.066470px;}
._5a{width:551.756390px;}
._58{width:581.876060px;}
._1d{width:590.168448px;}
._ef{width:598.194842px;}
._f6{width:625.237571px;}
._f9{width:637.780032px;}
._f3{width:663.151200px;}
._fa{width:665.540006px;}
._ee{width:674.058035px;}
._ed{width:849.214733px;}
._11{width:884.968024px;}
._52{width:2130.920233px;}
._5f{width:2143.734173px;}
._4b{width:2178.787488px;}
._57{width:2185.082314px;}
._47{width:2244.338189px;}
._62{width:2286.564048px;}
._43{width:2327.701430px;}
._ec{width:2527.484700px;}
._12{width:2551.394700px;}
._9f{width:2593.171224px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(42,62,149);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.640000px;}
.fse{font-size:27.360000px;}
.fs10{font-size:28.080000px;}
.fs11{font-size:28.800000px;}
.fs5{font-size:35.865600px;}
.fsf{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:148.440000px;}
.y1e2{bottom:-290.901546px;}
.y1e1{bottom:-271.642104px;}
.y1e0{bottom:-252.472842px;}
.y1df{bottom:-233.213400px;}
.y1de{bottom:-213.953958px;}
.y1dd{bottom:-194.784696px;}
.y1dc{bottom:-175.525254px;}
.y1db{bottom:-156.355992px;}
.y1da{bottom:-137.096550px;}
.y1d9{bottom:-100.287450px;}
.y1d8{bottom:-82.917000px;}
.y1d7{bottom:-65.637000px;}
.y1d6{bottom:-48.266550px;}
.y1d5{bottom:-30.986550px;}
.y1d4{bottom:-0.381906px;}
.y0{bottom:0.000000px;}
.y19a{bottom:2.058150px;}
.y1ee{bottom:11.403450px;}
.y1a6{bottom:11.868150px;}
.y1e8{bottom:13.113450px;}
.y1a0{bottom:14.658150px;}
.y1e{bottom:16.661091px;}
.y1a1{bottom:24.918150px;}
.y1e9{bottom:24.993450px;}
.y1e3{bottom:26.433450px;}
.y19b{bottom:27.258150px;}
.y51{bottom:31.890000px;}
.y1a2{bottom:32.658294px;}
.y1ea{bottom:33.183450px;}
.y1e4{bottom:34.443270px;}
.y19c{bottom:34.728006px;}
.y1a3{bottom:40.488042px;}
.y1eb{bottom:41.283450px;}
.y19d{bottom:42.287772px;}
.y1e5{bottom:42.453090px;}
.y1a5{bottom:49.488438px;}
.y1ed{bottom:50.823450px;}
.y19f{bottom:51.018060px;}
.y1e7{bottom:51.723306px;}
.y1a4{bottom:56.238150px;}
.y19e{bottom:57.588150px;}
.y1ec{bottom:57.843450px;}
.y1e6{bottom:58.653450px;}
.y13e{bottom:77.196000px;}
.y13d{bottom:91.392000px;}
.y1b2{bottom:92.758500px;}
.y83{bottom:99.918000px;}
.y1c{bottom:104.646000px;}
.y13c{bottom:105.589500px;}
.yb7{bottom:106.296000px;}
.y50{bottom:106.560000px;}
.y254{bottom:107.641500px;}
.y1b1{bottom:111.588000px;}
.y2a8{bottom:117.280500px;}
.y82{bottom:118.747500px;}
.y270{bottom:118.939500px;}
.y13b{bottom:119.785500px;}
.y22e{bottom:119.823000px;}
.y1b{bottom:122.535000px;}
.yb6{bottom:125.125500px;}
.y4f{bottom:126.018000px;}
.y253{bottom:126.471000px;}
.y1b0{bottom:130.417500px;}
.y13a{bottom:133.983000px;}
.y2a7{bottom:134.541000px;}
.y26f{bottom:136.513500px;}
.y81{bottom:137.577000px;}
.y110{bottom:137.832000px;}
.y22d{bottom:138.652500px;}
.y1a{bottom:140.422500px;}
.ye5{bottom:143.506500px;}
.yb5{bottom:143.955000px;}
.y252{bottom:145.300500px;}
.y4e{bottom:145.474500px;}
.y1af{bottom:149.247000px;}
.y2a6{bottom:151.800000px;}
.y26e{bottom:154.087500px;}
.y139{bottom:155.815500px;}
.y80{bottom:156.406500px;}
.y22c{bottom:157.482000px;}
.y19{bottom:158.310000px;}
.y10f{bottom:161.472000px;}
.ye4{bottom:162.336000px;}
.y251{bottom:164.130000px;}
.y4d{bottom:164.931000px;}
.yb4{bottom:167.268000px;}
.y2a5{bottom:169.060500px;}
.y26d{bottom:171.661500px;}
.y7f{bottom:175.236000px;}
.y18{bottom:176.199000px;}
.y22b{bottom:176.311500px;}
.y138{bottom:179.455500px;}
.ye3{bottom:181.165500px;}
.y1ae{bottom:182.812500px;}
.y250{bottom:182.959500px;}
.y4c{bottom:184.389000px;}
.y10e{bottom:185.113500px;}
.y2a4{bottom:186.321000px;}
.y26c{bottom:189.235500px;}
.y7e{bottom:194.065500px;}
.y17{bottom:194.086500px;}
.y22a{bottom:195.139500px;}
.ye2{bottom:199.995000px;}
.yb3{bottom:200.892000px;}
.y24f{bottom:201.789000px;}
.y1ad{bottom:202.045500px;}
.y137{bottom:203.097000px;}
.y2a3{bottom:203.581500px;}
.y4b{bottom:203.845500px;}
.y167{bottom:206.002500px;}
.y26b{bottom:206.809500px;}
.y10d{bottom:208.753500px;}
.y16{bottom:211.974000px;}
.y229{bottom:213.969000px;}
.y203{bottom:215.955000px;}
.y7d{bottom:217.378500px;}
.ye1{bottom:218.824500px;}
.yb2{bottom:219.721500px;}
.y24e{bottom:220.618500px;}
.y2a2{bottom:220.842000px;}
.y1ac{bottom:221.278500px;}
.y199{bottom:223.098150px;}
.y4a{bottom:223.302000px;}
.y26a{bottom:224.383500px;}
.y136{bottom:226.737000px;}
.y166{bottom:229.642500px;}
.y15{bottom:229.863000px;}
.y10c{bottom:232.393500px;}
.y228{bottom:232.798500px;}
.y1d3{bottom:233.438301px;}
.y202{bottom:234.784500px;}
.y7c{bottom:237.553500px;}
.ye0{bottom:237.654000px;}
.y2a1{bottom:238.102500px;}
.yb1{bottom:238.551000px;}
.y24d{bottom:239.446500px;}
.y1ab{bottom:240.511500px;}
.y269{bottom:241.959000px;}
.y198{bottom:242.178150px;}
.y49{bottom:242.760000px;}
.y135{bottom:250.378500px;}
.y227{bottom:251.628000px;}
.y1d2{bottom:252.697743px;}
.y165{bottom:253.284000px;}
.y201{bottom:253.614000px;}
.y2a0{bottom:255.363000px;}
.y10b{bottom:256.035000px;}
.ydf{bottom:256.483500px;}
.yb0{bottom:257.380500px;}
.y24c{bottom:258.276000px;}
.y1aa{bottom:259.744500px;}
.y197{bottom:261.078150px;}
.y48{bottom:262.216500px;}
.y268{bottom:268.498500px;}
.y226{bottom:270.457500px;}
.y7b{bottom:271.177500px;}
.y1d1{bottom:271.957185px;}
.y200{bottom:272.443500px;}
.y29f{bottom:272.623500px;}
.y134{bottom:274.018500px;}
.yde{bottom:275.313000px;}
.yaf{bottom:276.210000px;}
.y164{bottom:276.924000px;}
.y24b{bottom:277.105500px;}
.y1a9{bottom:278.976000px;}
.y10a{bottom:279.675000px;}
.y196{bottom:280.068150px;}
.y47{bottom:281.674500px;}
.y267{bottom:286.072500px;}
.y225{bottom:289.287000px;}
.y29e{bottom:289.884000px;}
.y7a{bottom:290.007000px;}
.y1d0{bottom:291.127950px;}
.y1ff{bottom:291.273000px;}
.ydd{bottom:294.142500px;}
.yae{bottom:295.039500px;}
.y24a{bottom:295.935000px;}
.y133{bottom:297.658500px;}
.y1a8{bottom:298.209000px;}
.y195{bottom:299.058150px;}
.y14{bottom:300.154500px;}
.y163{bottom:300.565500px;}
.y46{bottom:301.131000px;}
.y109{bottom:303.316500px;}
.y266{bottom:303.646500px;}
.y29d{bottom:307.143000px;}
.y224{bottom:308.116500px;}
.y79{bottom:308.836500px;}
.y1fe{bottom:310.102500px;}
.y1cf{bottom:310.387392px;}
.ydc{bottom:312.972000px;}
.yad{bottom:313.869000px;}
.y249{bottom:314.764500px;}
.y1a7{bottom:317.442000px;}
.y13{bottom:318.043500px;}
.y194{bottom:318.048150px;}
.y45{bottom:320.587500px;}
.y132{bottom:321.300000px;}
.y162{bottom:324.205500px;}
.y29c{bottom:324.403500px;}
.y223{bottom:326.946000px;}
.y108{bottom:326.956500px;}
.y78{bottom:327.664500px;}
.y1fd{bottom:328.932000px;}
.y1ce{bottom:329.556654px;}
.y265{bottom:330.187500px;}
.ydb{bottom:331.801500px;}
.yac{bottom:332.698500px;}
.y248{bottom:333.594000px;}
.y12{bottom:335.931000px;}
.y193{bottom:336.948150px;}
.y169{bottom:339.871800px;}
.y44{bottom:340.045500px;}
.y29b{bottom:341.664000px;}
.y131{bottom:344.940000px;}
.y222{bottom:345.775500px;}
.y77{bottom:346.494000px;}
.y1fc{bottom:347.761500px;}
.y161{bottom:347.847000px;}
.y1cd{bottom:348.816096px;}
.y107{bottom:350.598000px;}
.yda{bottom:350.631000px;}
.yab{bottom:351.528000px;}
.y247{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.y192{bottom:355.938300px;}
.y29a{bottom:358.924500px;}
.y43{bottom:359.502000px;}
.y221{bottom:364.605000px;}
.y76{bottom:365.323500px;}
.y264{bottom:365.335500px;}
.y1fb{bottom:366.591000px;}
.y1cc{bottom:368.075538px;}
.y130{bottom:369.205500px;}
.yd9{bottom:369.460500px;}
.yaa{bottom:370.357500px;}
.y246{bottom:371.253000px;}
.y160{bottom:371.487000px;}
.y106{bottom:374.238000px;}
.y191{bottom:374.928300px;}
.y299{bottom:376.185000px;}
.y42{bottom:378.960000px;}
.y10{bottom:380.673000px;}
.y220{bottom:383.434500px;}
.y75{bottom:384.153000px;}
.y1fa{bottom:385.420500px;}
.yd8{bottom:388.290000px;}
.ya8{bottom:389.187000px;}
.y245{bottom:390.082500px;}
.y1cb{bottom:391.744782px;}
.y263{bottom:391.876500px;}
.y12f{bottom:392.847000px;}
.y298{bottom:393.445500px;}
.y190{bottom:393.828300px;}
.ya9{bottom:394.611000px;}
.y15f{bottom:395.127000px;}
.y105{bottom:397.879500px;}
.y41{bottom:398.416500px;}
.yf{bottom:398.562000px;}
.y21f{bottom:402.264000px;}
.y74{bottom:402.982500px;}
.y1f9{bottom:404.250000px;}
.yd7{bottom:407.119500px;}
.y244{bottom:408.912000px;}
.y262{bottom:409.450500px;}
.y297{bottom:410.706000px;}
.ya7{bottom:412.498500px;}
.y18f{bottom:412.818150px;}
.ye{bottom:416.449500px;}
.y12e{bottom:417.112500px;}
.y15e{bottom:418.768500px;}
.y21e{bottom:421.093500px;}
.y104{bottom:421.519500px;}
.y73{bottom:421.812000px;}
.y1f8{bottom:423.079500px;}
.yd6{bottom:425.949000px;}
.y261{bottom:427.024500px;}
.y243{bottom:427.741500px;}
.y296{bottom:427.966500px;}
.y1ca{bottom:429.004152px;}
.y18e{bottom:431.808150px;}
.y40{bottom:435.805500px;}
.y21d{bottom:439.923000px;}
.y72{bottom:440.641500px;}
.y12d{bottom:441.378000px;}
.y1f7{bottom:441.909000px;}
.y15d{bottom:442.408500px;}
.yd5{bottom:444.778500px;}
.yd{bottom:444.798000px;}
.y103{bottom:445.161000px;}
.y295{bottom:445.225500px;}
.ya6{bottom:446.122500px;}
.y242{bottom:446.571000px;}
.y1c9{bottom:448.263594px;}
.y18d{bottom:450.708150px;}
.y260{bottom:453.565500px;}
.y3f{bottom:455.263500px;}
.y71{bottom:459.471000px;}
.y1f6{bottom:460.737000px;}
.y294{bottom:462.486000px;}
.yc{bottom:462.685500px;}
.y21c{bottom:463.236000px;}
.yd4{bottom:463.608000px;}
.ya5{bottom:464.952000px;}
.y12c{bottom:465.018000px;}
.y241{bottom:465.400500px;}
.y15c{bottom:466.050000px;}
.y1c8{bottom:467.434359px;}
.y102{bottom:468.801000px;}
.y18c{bottom:469.698150px;}
.y3e{bottom:474.720000px;}
.y70{bottom:478.300500px;}
.y1f5{bottom:479.566500px;}
.y293{bottom:479.746500px;}
.y25f{bottom:480.105000px;}
.yd3{bottom:482.437500px;}
.ya4{bottom:483.781500px;}
.y240{bottom:484.230000px;}
.y1c7{bottom:486.693801px;}
.y12b{bottom:488.659500px;}
.y18b{bottom:488.688150px;}
.yb{bottom:489.540000px;}
.y15b{bottom:489.690000px;}
.y101{bottom:492.442500px;}
.y3d{bottom:494.178000px;}
.y292{bottom:497.007000px;}
.y21b{bottom:497.116500px;}
.y6f{bottom:497.130000px;}
.y25e{bottom:497.680500px;}
.yd2{bottom:501.267000px;}
.ya3{bottom:502.611000px;}
.y23f{bottom:503.059500px;}
.y1c6{bottom:505.864566px;}
.ya{bottom:507.429000px;}
.y18a{bottom:507.678150px;}
.y21a{bottom:511.314000px;}
.y12a{bottom:512.299500px;}
.y1f4{bottom:513.133500px;}
.y15a{bottom:513.331500px;}
.y3c{bottom:513.634500px;}
.y291{bottom:514.267500px;}
.y25d{bottom:515.254500px;}
.y6e{bottom:515.959500px;}
.y100{bottom:516.082500px;}
.yd1{bottom:520.095000px;}
.ya2{bottom:521.440500px;}
.y23e{bottom:521.889000px;}
.y1c5{bottom:525.124008px;}
.y9{bottom:525.316500px;}
.y189{bottom:526.578150px;}
.y290{bottom:531.528000px;}
.y1f3{bottom:532.365000px;}
.y25c{bottom:532.828500px;}
.y3b{bottom:533.091000px;}
.y219{bottom:533.146500px;}
.y6d{bottom:534.789000px;}
.y129{bottom:535.941000px;}
.y159{bottom:536.971500px;}
.yd0{bottom:538.924500px;}
.yff{bottom:539.724000px;}
.ya1{bottom:540.270000px;}
.y23d{bottom:540.718500px;}
.y8{bottom:543.204000px;}
.y1c4{bottom:544.384188px;}
.y187{bottom:545.568150px;}
.y28f{bottom:548.788500px;}
.y25b{bottom:550.402500px;}
.y188{bottom:550.607700px;}
.y1f2{bottom:551.598000px;}
.y3a{bottom:552.549000px;}
.y6c{bottom:553.618500px;}
.y218{bottom:556.786500px;}
.ycf{bottom:557.754000px;}
.ya0{bottom:559.099500px;}
.y23c{bottom:559.548000px;}
.y128{bottom:559.581000px;}
.y158{bottom:560.613000px;}
.y7{bottom:561.093000px;}
.y168{bottom:561.390000px;}
.yfe{bottom:563.364000px;}
.y1c3{bottom:563.553450px;}
.y185{bottom:564.558150px;}
.y28e{bottom:566.049000px;}
.y25a{bottom:567.976500px;}
.y157{bottom:568.831500px;}
.y186{bottom:569.508600px;}
.y1f1{bottom:570.831000px;}
.y6b{bottom:572.448000px;}
.yce{bottom:576.583500px;}
.y9f{bottom:577.929000px;}
.y23b{bottom:578.377500px;}
.y6{bottom:578.980500px;}
.y217{bottom:580.428000px;}
.y127{bottom:583.221000px;}
.y28d{bottom:583.309500px;}
.y183{bottom:583.458150px;}
.y259{bottom:585.550500px;}
.yfd{bottom:587.005500px;}
.y184{bottom:588.497700px;}
.y1f0{bottom:590.064000px;}
.y39{bottom:591.133500px;}
.y6a{bottom:591.277500px;}
.ycd{bottom:595.413000px;}
.y9e{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y23a{bottom:597.207000px;}
.y1c2{bottom:600.362100px;}
.y28c{bottom:600.568500px;}
.y181{bottom:602.448150px;}
.y258{bottom:603.124500px;}
.y216{bottom:604.068000px;}
.y126{bottom:606.862500px;}
.y38{bottom:607.273500px;}
.y182{bottom:607.487700px;}
.y1ef{bottom:609.297000px;}
.y69{bottom:610.107000px;}
.yfc{bottom:610.645500px;}
.y156{bottom:611.659500px;}
.ycb{bottom:614.242500px;}
.y4{bottom:614.757000px;}
.y9d{bottom:615.588000px;}
.y239{bottom:616.036500px;}
.y1c1{bottom:617.732550px;}
.y28b{bottom:617.829000px;}
.ycc{bottom:619.668000px;}
.y257{bottom:620.698500px;}
.y180{bottom:621.438150px;}
.y37{bottom:623.413500px;}
.y215{bottom:627.708000px;}
.y36{bottom:627.753000px;}
.y68{bottom:628.936500px;}
.y125{bottom:630.502500px;}
.y1b8{bottom:631.726500px;}
.y3{bottom:632.644500px;}
.yc9{bottom:633.072000px;}
.yfb{bottom:634.287000px;}
.y9c{bottom:634.417500px;}
.y238{bottom:634.866000px;}
.y28a{bottom:635.089500px;}
.y1c0{bottom:635.103000px;}
.y256{bottom:638.272500px;}
.yca{bottom:638.497500px;}
.y35{bottom:639.552000px;}
.y17f{bottom:640.338150px;}
.y67{bottom:647.766000px;}
.y155{bottom:648.763500px;}
.y2{bottom:650.532000px;}
.y214{bottom:651.349500px;}
.yc7{bottom:651.901500px;}
.y289{bottom:652.350000px;}
.y1bf{bottom:652.383000px;}
.y9b{bottom:653.247000px;}
.y237{bottom:653.695500px;}
.y124{bottom:654.144000px;}
.y255{bottom:655.846500px;}
.yc8{bottom:657.327000px;}
.yfa{bottom:657.927000px;}
.y17e{bottom:659.328150px;}
.y34{bottom:660.031500px;}
.y66{bottom:666.595500px;}
.y154{bottom:667.593000px;}
.y1{bottom:668.421000px;}
.y288{bottom:669.610500px;}
.y1be{bottom:669.663000px;}
.yc6{bottom:670.731000px;}
.y9a{bottom:672.076500px;}
.y236{bottom:672.525000px;}
.y2c0{bottom:674.094000px;}
.y213{bottom:674.989500px;}
.y33{bottom:676.171500px;}
.y123{bottom:677.784000px;}
.y17c{bottom:678.318150px;}
.yf9{bottom:681.568500px;}
.y17d{bottom:683.357700px;}
.y65{bottom:685.425000px;}
.y153{bottom:686.422500px;}
.y287{bottom:686.871000px;}
.y1bd{bottom:686.943000px;}
.y32{bottom:687.970500px;}
.yc5{bottom:689.560500px;}
.y99{bottom:690.906000px;}
.y235{bottom:691.354500px;}
.y17b{bottom:697.308150px;}
.y212{bottom:698.631000px;}
.y122{bottom:701.425500px;}
.y286{bottom:704.131500px;}
.y64{bottom:704.254500px;}
.y1bc{bottom:704.313450px;}
.yf8{bottom:705.208500px;}
.y152{bottom:705.252000px;}
.yc4{bottom:708.390000px;}
.y31{bottom:708.450000px;}
.y2bf{bottom:708.613500px;}
.y98{bottom:709.735500px;}
.y234{bottom:710.184000px;}
.y17a{bottom:716.208150px;}
.y30{bottom:720.250500px;}
.y285{bottom:721.392000px;}
.y1bb{bottom:721.593450px;}
.y211{bottom:722.271000px;}
.y63{bottom:723.084000px;}
.y151{bottom:724.081500px;}
.y121{bottom:725.065500px;}
.y2be{bottom:725.874000px;}
.yc3{bottom:727.219500px;}
.y97{bottom:728.565000px;}
.yf7{bottom:728.850000px;}
.y233{bottom:729.013500px;}
.y179{bottom:735.198150px;}
.y2f{bottom:736.390500px;}
.y284{bottom:738.651000px;}
.y62{bottom:741.913500px;}
.y150{bottom:742.911000px;}
.y2bd{bottom:743.134500px;}
.y210{bottom:745.912500px;}
.yc2{bottom:746.049000px;}
.y96{bottom:747.394500px;}
.y232{bottom:747.843000px;}
.y120{bottom:748.707000px;}
.yf6{bottom:752.490000px;}
.y178{bottom:754.188300px;}
.y283{bottom:755.911500px;}
.y2e{bottom:756.868500px;}
.y2bc{bottom:760.395000px;}
.y61{bottom:760.743000px;}
.y14f{bottom:761.740500px;}
.y95{bottom:766.224000px;}
.y231{bottom:766.671000px;}
.y2d{bottom:768.669000px;}
.yc1{bottom:769.362000px;}
.y20f{bottom:769.552500px;}
.y11f{bottom:772.347000px;}
.y177{bottom:773.088150px;}
.y282{bottom:773.172000px;}
.y1ba{bottom:774.693585px;}
.yf5{bottom:776.130000px;}
.y2bb{bottom:777.655500px;}
.y60{bottom:779.572500px;}
.y14e{bottom:780.570000px;}
.y1b9{bottom:784.323450px;}
.y94{bottom:785.053500px;}
.y230{bottom:785.500500px;}
.y2c{bottom:789.148500px;}
.yc0{bottom:789.535500px;}
.y281{bottom:790.432500px;}
.y176{bottom:792.078300px;}
.y20e{bottom:793.194000px;}
.y2ba{bottom:794.916000px;}
.y11e{bottom:795.988500px;}
.y5f{bottom:798.402000px;}
.y14d{bottom:799.399500px;}
.yf4{bottom:799.771500px;}
.y2b{bottom:800.947500px;}
.y93{bottom:803.883000px;}
.y22f{bottom:804.330000px;}
.y280{bottom:807.693000px;}
.y175{bottom:811.068150px;}
.y2b9{bottom:812.176500px;}
.y20d{bottom:816.834000px;}
.y2a{bottom:817.087500px;}
.y5e{bottom:817.231500px;}
.y14c{bottom:818.229000px;}
.y11d{bottom:819.628500px;}
.y92{bottom:822.712500px;}
.ybf{bottom:823.159500px;}
.yf3{bottom:823.411500px;}
.y27f{bottom:824.953500px;}
.y2b8{bottom:829.437000px;}
.y174{bottom:829.968150px;}
.y29{bottom:833.227500px;}
.y5d{bottom:836.059500px;}
.y20c{bottom:840.475500px;}
.y91{bottom:841.540500px;}
.ybe{bottom:841.989000px;}
.y27e{bottom:842.214000px;}
.y11c{bottom:843.270000px;}
.y2b7{bottom:846.697500px;}
.yf2{bottom:847.677000px;}
.y173{bottom:848.958150px;}
.y28{bottom:853.707000px;}
.y5c{bottom:854.889000px;}
.y27d{bottom:859.474500px;}
.y90{bottom:860.370000px;}
.ybd{bottom:860.818500px;}
.y2b6{bottom:863.956500px;}
.y20b{bottom:864.115500px;}
.y27{bottom:865.506000px;}
.y11b{bottom:866.910000px;}
.y172{bottom:867.948150px;}
.yf1{bottom:871.318500px;}
.y5b{bottom:873.718500px;}
.y14b{bottom:875.164500px;}
.y27c{bottom:876.735000px;}
.y8f{bottom:879.199500px;}
.ybc{bottom:879.648000px;}
.y2b5{bottom:881.217000px;}
.y26{bottom:885.985500px;}
.y171{bottom:886.938300px;}
.y20a{bottom:887.757000px;}
.y11a{bottom:890.551500px;}
.y5a{bottom:892.548000px;}
.y14a{bottom:893.994000px;}
.yf0{bottom:894.958500px;}
.y8e{bottom:898.029000px;}
.ybb{bottom:898.477500px;}
.y170{bottom:905.838150px;}
.y27b{bottom:911.254500px;}
.y59{bottom:911.377500px;}
.y209{bottom:911.397000px;}
.y149{bottom:912.823500px;}
.y119{bottom:914.191500px;}
.y16f{bottom:914.927700px;}
.y2b4{bottom:915.738000px;}
.y8d{bottom:916.858500px;}
.yba{bottom:917.307000px;}
.yef{bottom:918.600000px;}
.y27a{bottom:928.515000px;}
.y25{bottom:930.661500px;}
.y148{bottom:931.653000px;}
.y2b3{bottom:932.998500px;}
.y58{bottom:934.690500px;}
.y208{bottom:935.038500px;}
.y1b7{bottom:935.688000px;}
.yb9{bottom:936.136500px;}
.y118{bottom:937.833000px;}
.y8c{bottom:940.171500px;}
.yee{bottom:942.240000px;}
.y279{bottom:945.775500px;}
.y24{bottom:949.491000px;}
.y2b2{bottom:950.259000px;}
.y147{bottom:950.482500px;}
.y16e{bottom:952.548150px;}
.y1b6{bottom:954.517500px;}
.yb8{bottom:954.966000px;}
.y207{bottom:958.678500px;}
.y117{bottom:961.473000px;}
.y278{bottom:963.036000px;}
.yed{bottom:965.881500px;}
.y2b1{bottom:967.519500px;}
.y23{bottom:968.320500px;}
.y146{bottom:969.312000px;}
.y1b5{bottom:973.347000px;}
.y8b{bottom:973.795500px;}
.y277{bottom:980.296500px;}
.y206{bottom:982.320000px;}
.y2b0{bottom:984.780000px;}
.y116{bottom:985.114500px;}
.y145{bottom:988.141500px;}
.y16d{bottom:988.277385px;}
.yec{bottom:989.521500px;}
.y1b4{bottom:992.176500px;}
.y8a{bottom:992.625000px;}
.y276{bottom:997.557000px;}
.y2ae{bottom:1002.039000px;}
.y2af{bottom:1002.040500px;}
.y205{bottom:1005.960000px;}
.y144{bottom:1006.971000px;}
.y16c{bottom:1007.448150px;}
.y22{bottom:1008.240000px;}
.y115{bottom:1008.754500px;}
.y57{bottom:1009.840500px;}
.y89{bottom:1011.454500px;}
.yeb{bottom:1013.163000px;}
.y275{bottom:1014.817500px;}
.y1b3{bottom:1015.489500px;}
.y2ad{bottom:1019.299500px;}
.y142{bottom:1025.800500px;}
.y204{bottom:1029.601500px;}
.y87{bottom:1030.284000px;}
.y143{bottom:1031.226000px;}
.y274{bottom:1032.076500px;}
.y114{bottom:1032.396000px;}
.y88{bottom:1035.708000px;}
.y21{bottom:1036.485000px;}
.y2ac{bottom:1036.560000px;}
.ye9{bottom:1036.803000px;}
.y141{bottom:1044.630000px;}
.ye8{bottom:1045.023000px;}
.y56{bottom:1047.231000px;}
.y86{bottom:1049.113500px;}
.y273{bottom:1049.337000px;}
.yea{bottom:1053.241500px;}
.y2ab{bottom:1053.820500px;}
.y112{bottom:1056.036000px;}
.y16b{bottom:1062.168285px;}
.y140{bottom:1063.459500px;}
.y111{bottom:1064.256000px;}
.y20{bottom:1064.728500px;}
.y272{bottom:1066.597500px;}
.y55{bottom:1066.687500px;}
.y85{bottom:1067.943000px;}
.y2aa{bottom:1071.081000px;}
.y16a{bottom:1071.798150px;}
.y113{bottom:1072.474500px;}
.y13f{bottom:1082.289000px;}
.y271{bottom:1083.858000px;}
.y54{bottom:1086.144000px;}
.y84{bottom:1086.772500px;}
.ye7{bottom:1087.849500px;}
.y2a9{bottom:1088.341500px;}
.y1f{bottom:1092.972000px;}
.y53{bottom:1105.602000px;}
.ye6{bottom:1107.082500px;}
.y1d{bottom:1136.460000px;}
.y52{bottom:1168.366500px;}
.h22{height:19.394648px;}
.h23{height:19.918828px;}
.h27{height:20.443008px;}
.h28{height:20.967187px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h12{height:33.072749px;}
.ha{height:34.813397px;}
.h1a{height:34.951465px;}
.h19{height:34.974844px;}
.he{height:35.052500px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h21{height:39.418945px;}
.hd{height:39.434227px;}
.h1c{height:39.445312px;}
.h11{height:39.614278px;}
.h26{height:41.897461px;}
.hf{height:43.217759px;}
.h25{height:43.269961px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h1b{height:43.886426px;}
.h16{height:49.991558px;}
.h4{height:50.330809px;}
.h8{height:54.547601px;}
.h13{height:54.768749px;}
.h1f{height:59.220745px;}
.h20{height:59.577145px;}
.h14{height:71.770243px;}
.h15{height:71.776243px;}
.h1d{height:76.165312px;}
.h7{height:77.792486px;}
.h5{height:92.775000px;}
.h17{height:104.650243px;}
.h1e{height:114.975661px;}
.h18{height:198.719700px;}
.h24{height:205.003500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:173.920654px;}
.w3{width:568.666500px;}
.w4{width:580.449000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x77{left:-210.697500px;}
.x9d{left:-203.628000px;}
.x8f{left:-192.517500px;}
.x8c{left:-191.167500px;}
.x8b{left:-181.717500px;}
.x8e{left:-176.947500px;}
.x82{left:-170.557500px;}
.x86{left:-163.807500px;}
.x8d{left:-158.407500px;}
.x85{left:-153.817500px;}
.x89{left:-146.977500px;}
.x79{left:-144.186150px;}
.x87{left:-142.567500px;}
.x81{left:-137.347500px;}
.x80{left:-136.177500px;}
.x7e{left:-132.847500px;}
.x88{left:-131.767500px;}
.x8a{left:-129.067500px;}
.x7f{left:-126.277500px;}
.x7d{left:-124.207500px;}
.x83{left:-118.087500px;}
.x7c{left:-114.127500px;}
.x84{left:-111.427500px;}
.x78{left:-15.127500px;}
.x9e{left:-8.058000px;}
.x0{left:0.000000px;}
.x9f{left:23.802000px;}
.x91{left:26.272212px;}
.xa1{left:27.311946px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:56.429652px;}
.x75{left:63.258000px;}
.x64{left:65.145000px;}
.x5e{left:68.188500px;}
.x63{left:69.193500px;}
.x65{left:70.702500px;}
.x56{left:73.461000px;}
.x55{left:75.330000px;}
.x92{left:76.492500px;}
.x61{left:78.274500px;}
.x62{left:81.315000px;}
.x48{left:82.531500px;}
.x73{left:83.944500px;}
.x52{left:85.564500px;}
.x44{left:86.742000px;}
.x5a{left:87.850500px;}
.x5f{left:90.177000px;}
.x54{left:92.269500px;}
.x60{left:94.171500px;}
.xac{left:95.709000px;}
.x5d{left:96.814500px;}
.x5c{left:98.314500px;}
.x4c{left:99.627000px;}
.xb0{left:100.638000px;}
.x51{left:101.953500px;}
.x68{left:103.216500px;}
.x49{left:104.283000px;}
.x93{left:105.292500px;}
.x66{left:107.064000px;}
.x53{left:109.141500px;}
.x5b{left:111.126000px;}
.x4a{left:113.667000px;}
.x67{left:115.167000px;}
.x46{left:117.163500px;}
.x72{left:121.374000px;}
.x4e{left:122.793000px;}
.x74{left:125.160000px;}
.x47{left:126.517500px;}
.x4b{left:127.795500px;}
.x3f{left:130.303500px;}
.x4f{left:133.324500px;}
.x45{left:136.813500px;}
.xae{left:137.967000px;}
.x71{left:140.028000px;}
.x50{left:141.541500px;}
.x43{left:143.518500px;}
.xb1{left:144.697500px;}
.x4d{left:146.349000px;}
.x7a{left:149.303850px;}
.xa2{left:152.322234px;}
.xab{left:161.859000px;}
.xb4{left:165.403500px;}
.xaf{left:172.255500px;}
.xb2{left:175.564500px;}
.xad{left:178.684500px;}
.xb3{left:181.866000px;}
.xaa{left:187.642500px;}
.xa9{left:225.199500px;}
.x6e{left:247.348500px;}
.x7{left:248.526000px;}
.x4{left:249.591000px;}
.x3a{left:254.152500px;}
.x90{left:263.962500px;}
.x5{left:269.914500px;}
.x3d{left:271.750500px;}
.xa0{left:279.674331px;}
.xc{left:281.479500px;}
.x21{left:285.796500px;}
.x28{left:291.148500px;}
.x76{left:298.522500px;}
.x3c{left:299.697000px;}
.x22{left:300.741000px;}
.xd{left:303.285000px;}
.x1c{left:306.258000px;}
.x29{left:308.070000px;}
.x9{left:310.584000px;}
.x3b{left:311.716500px;}
.x69{left:314.686500px;}
.x1d{left:318.549000px;}
.x10{left:321.030000px;}
.x18{left:322.602000px;}
.xa7{left:324.387000px;}
.x11{left:328.503000px;}
.x19{left:330.075000px;}
.x2c{left:331.228500px;}
.x31{left:336.597000px;}
.x3e{left:342.591000px;}
.x9b{left:348.915000px;}
.x8{left:363.610500px;}
.xc7{left:367.042500px;}
.x94{left:372.142500px;}
.x6{left:374.964000px;}
.xa3{left:375.972000px;}
.x2d{left:377.992500px;}
.x6f{left:381.063000px;}
.xbb{left:383.082000px;}
.x1e{left:384.322500px;}
.xbe{left:385.425000px;}
.x2e{left:390.283500px;}
.xbd{left:393.592500px;}
.xbc{left:398.026500px;}
.x96{left:403.912500px;}
.xa5{left:409.182000px;}
.x2a{left:416.085000px;}
.x2b{left:431.028000px;}
.x1f{left:438.814500px;}
.xa6{left:440.007000px;}
.xb9{left:442.006500px;}
.x95{left:443.872278px;}
.xa4{left:451.122000px;}
.x20{left:453.759000px;}
.x14{left:454.890000px;}
.xba{left:456.949500px;}
.x40{left:458.257500px;}
.x15{left:462.361500px;}
.x7b{left:464.752950px;}
.xca{left:487.300500px;}
.x57{left:490.656000px;}
.x97{left:494.254500px;}
.x98{left:518.907000px;}
.x36{left:522.537000px;}
.x32{left:534.303000px;}
.x1a{left:536.863500px;}
.x37{left:538.833000px;}
.x1b{left:544.335000px;}
.x12{left:547.416000px;}
.x33{left:550.335000px;}
.x13{left:554.887500px;}
.xc9{left:558.685500px;}
.x2f{left:562.639500px;}
.x30{left:572.787000px;}
.x41{left:575.544000px;}
.x38{left:597.729000px;}
.x58{left:602.542500px;}
.x39{left:604.155000px;}
.x34{left:608.320500px;}
.x35{left:614.746500px;}
.x42{left:631.440000px;}
.xcf{left:634.024500px;}
.xd1{left:635.361000px;}
.x6a{left:636.802500px;}
.xb5{left:640.801500px;}
.x6b{left:643.228500px;}
.xb6{left:655.746000px;}
.x59{left:658.438500px;}
.xd0{left:660.924000px;}
.xb7{left:663.202500px;}
.x23{left:669.582000px;}
.xb8{left:678.147000px;}
.x24{left:681.873000px;}
.x16{left:689.835000px;}
.xc3{left:692.032500px;}
.x17{left:697.306500px;}
.x99{left:702.820500px;}
.xcb{left:705.576000px;}
.xa{left:712.063500px;}
.xc8{left:716.860500px;}
.x70{left:726.216000px;}
.xcd{left:728.751000px;}
.xe{left:735.021000px;}
.x9a{left:737.184000px;}
.x25{left:739.572000px;}
.xf{left:742.492500px;}
.xcc{left:743.968500px;}
.x26{left:749.722500px;}
.xc4{left:751.537500px;}
.xce{left:755.649000px;}
.xc5{left:765.735000px;}
.xc6{left:769.164000px;}
.xb{left:770.649000px;}
.x6c{left:775.750500px;}
.x27{left:780.147000px;}
.xa8{left:783.874500px;}
.xd2{left:789.793500px;}
.x9c{left:792.049500px;}
.xbf{left:801.358500px;}
.xc0{left:815.554500px;}
.xd3{left:816.693000px;}
.xc1{left:818.937000px;}
.xc2{left:833.134500px;}
.x6d{left:835.525500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v8{vertical-align:-11.842304pt;}
.va{vertical-align:-7.038048pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.114667pt;}
.v9{vertical-align:13.437376pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.v7{vertical-align:32.640000pt;}
.v6{vertical-align:58.448000pt;}
.lsa0{letter-spacing:-1.324800pt;}
.lsa3{letter-spacing:-1.281600pt;}
.ls9f{letter-spacing:-1.219200pt;}
.ls4b{letter-spacing:-1.186368pt;}
.ls4a{letter-spacing:-1.154304pt;}
.ls49{letter-spacing:-1.132928pt;}
.ls52{letter-spacing:-1.113600pt;}
.ls51{letter-spacing:-1.094400pt;}
.lsa5{letter-spacing:-1.041600pt;}
.lsa2{letter-spacing:-1.008000pt;}
.lsa1{letter-spacing:-0.998400pt;}
.ls9e{letter-spacing:-0.988800pt;}
.lsa6{letter-spacing:-0.979200pt;}
.lsa4{letter-spacing:-0.960000pt;}
.ls53{letter-spacing:-0.907200pt;}
.ls87{letter-spacing:-0.700800pt;}
.ls7d{letter-spacing:-0.681600pt;}
.ls7b{letter-spacing:-0.648000pt;}
.ls85{letter-spacing:-0.638400pt;}
.ls83{letter-spacing:-0.624000pt;}
.ls8c{letter-spacing:-0.614400pt;}
.ls89{letter-spacing:-0.604800pt;}
.ls82{letter-spacing:-0.600000pt;}
.ls84{letter-spacing:-0.595200pt;}
.ls7c{letter-spacing:-0.590400pt;}
.ls86{letter-spacing:-0.585600pt;}
.ls8b{letter-spacing:-0.580800pt;}
.ls7e{letter-spacing:-0.571200pt;}
.ls80{letter-spacing:-0.556800pt;}
.ls8a{letter-spacing:-0.542400pt;}
.ls81{letter-spacing:-0.537600pt;}
.ls88{letter-spacing:-0.499200pt;}
.ls7f{letter-spacing:-0.355200pt;}
.ls50{letter-spacing:-0.321600pt;}
.lsad{letter-spacing:-0.187040pt;}
.ls93{letter-spacing:-0.181696pt;}
.ls95{letter-spacing:-0.160320pt;}
.lsae{letter-spacing:-0.144288pt;}
.lsab{letter-spacing:-0.133600pt;}
.ls94{letter-spacing:-0.122912pt;}
.lsb0{letter-spacing:-0.122304pt;}
.ls98{letter-spacing:-0.117568pt;}
.lsb1{letter-spacing:-0.117312pt;}
.lsb3{letter-spacing:-0.114816pt;}
.ls9d{letter-spacing:-0.106880pt;}
.lsa8{letter-spacing:-0.101536pt;}
.lsa7{letter-spacing:-0.096192pt;}
.ls92{letter-spacing:-0.090848pt;}
.ls8f{letter-spacing:-0.085504pt;}
.ls58{letter-spacing:-0.085120pt;}
.ls55{letter-spacing:-0.075776pt;}
.ls5b{letter-spacing:-0.070528pt;}
.lsaf{letter-spacing:-0.069472pt;}
.ls4e{letter-spacing:-0.057600pt;}
.ls57{letter-spacing:-0.056832pt;}
.ls59{letter-spacing:-0.055936pt;}
.ls5c{letter-spacing:-0.053504pt;}
.ls5a{letter-spacing:-0.051072pt;}
.ls54{letter-spacing:-0.049728pt;}
.ls99{letter-spacing:-0.048096pt;}
.ls56{letter-spacing:-0.047360pt;}
.ls8d{letter-spacing:-0.042752pt;}
.ls9c{letter-spacing:-0.037408pt;}
.lsaa{letter-spacing:-0.026720pt;}
.ls8e{letter-spacing:-0.021376pt;}
.ls4d{letter-spacing:-0.019200pt;}
.ls97{letter-spacing:-0.010688pt;}
.ls9a{letter-spacing:-0.005344pt;}
.ls4c{letter-spacing:-0.004800pt;}
.lse{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000540pt;}
.lsbe{letter-spacing:0.000600pt;}
.ls10{letter-spacing:0.003012pt;}
.ls0{letter-spacing:0.003230pt;}
.lsbf{letter-spacing:0.004053pt;}
.lsbc{letter-spacing:0.004267pt;}
.ls37{letter-spacing:0.004800pt;}
.ls64{letter-spacing:0.005344pt;}
.ls34{letter-spacing:0.009600pt;}
.ls40{letter-spacing:0.014400pt;}
.ls32{letter-spacing:0.017024pt;}
.ls3a{letter-spacing:0.019200pt;}
.ls3f{letter-spacing:0.024000pt;}
.ls68{letter-spacing:0.026720pt;}
.ls3e{letter-spacing:0.028800pt;}
.ls90{letter-spacing:0.032064pt;}
.ls3b{letter-spacing:0.033600pt;}
.ls3c{letter-spacing:0.038400pt;}
.ls62{letter-spacing:0.042752pt;}
.ls41{letter-spacing:0.043200pt;}
.ls30{letter-spacing:0.046816pt;}
.ls42{letter-spacing:0.048000pt;}
.ls65{letter-spacing:0.048096pt;}
.ls35{letter-spacing:0.052800pt;}
.lsa9{letter-spacing:0.053440pt;}
.ls91{letter-spacing:0.058784pt;}
.ls39{letter-spacing:0.062400pt;}
.ls9b{letter-spacing:0.069472pt;}
.lsb2{letter-spacing:0.072384pt;}
.ls66{letter-spacing:0.074816pt;}
.ls69{letter-spacing:0.080160pt;}
.lsac{letter-spacing:0.090848pt;}
.ls72{letter-spacing:0.122880pt;}
.ls96{letter-spacing:0.122912pt;}
.ls70{letter-spacing:0.128000pt;}
.ls71{letter-spacing:0.130560pt;}
.ls6e{letter-spacing:0.133600pt;}
.ls33{letter-spacing:0.153216pt;}
.ls3d{letter-spacing:0.158400pt;}
.ls63{letter-spacing:0.160320pt;}
.lsb4{letter-spacing:0.161280pt;}
.ls31{letter-spacing:0.161728pt;}
.ls74{letter-spacing:0.163840pt;}
.ls11{letter-spacing:0.637762pt;}
.ls6c{letter-spacing:1.761600pt;}
.ls6b{letter-spacing:2.078400pt;}
.ls1{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls67{letter-spacing:8.400768pt;}
.lsd{letter-spacing:10.626533pt;}
.ls17{letter-spacing:11.497026pt;}
.ls15{letter-spacing:11.600427pt;}
.ls14{letter-spacing:11.605869pt;}
.lsbb{letter-spacing:11.741532pt;}
.lsc2{letter-spacing:11.751414pt;}
.ls9{letter-spacing:11.874031pt;}
.lsa{letter-spacing:11.879354pt;}
.lsba{letter-spacing:11.927232pt;}
.ls46{letter-spacing:11.946174pt;}
.ls1e{letter-spacing:11.950302pt;}
.ls2e{letter-spacing:11.950933pt;}
.lsb7{letter-spacing:11.954133pt;}
.ls1c{letter-spacing:11.955635pt;}
.ls8{letter-spacing:11.956267pt;}
.lsb9{letter-spacing:11.959467pt;}
.lsc0{letter-spacing:11.985898pt;}
.lsc{letter-spacing:11.987635pt;}
.ls75{letter-spacing:12.054724pt;}
.lsc1{letter-spacing:12.183434pt;}
.ls16{letter-spacing:12.193625pt;}
.ls6d{letter-spacing:12.237760pt;}
.lsb8{letter-spacing:12.253950pt;}
.ls61{letter-spacing:12.321600pt;}
.ls2f{letter-spacing:12.533411pt;}
.ls78{letter-spacing:12.857570pt;}
.lsbd{letter-spacing:12.944146pt;}
.ls76{letter-spacing:12.993851pt;}
.ls26{letter-spacing:13.066335pt;}
.ls25{letter-spacing:13.071574pt;}
.ls13{letter-spacing:13.246903pt;}
.ls1b{letter-spacing:13.283467pt;}
.ls20{letter-spacing:13.283733pt;}
.ls48{letter-spacing:13.295589pt;}
.ls7a{letter-spacing:13.318515pt;}
.ls60{letter-spacing:13.323624pt;}
.ls12{letter-spacing:13.374164pt;}
.ls2a{letter-spacing:13.376898pt;}
.ls29{letter-spacing:13.492687pt;}
.lsb6{letter-spacing:13.574563pt;}
.ls24{letter-spacing:13.657903pt;}
.lsb{letter-spacing:13.662616pt;}
.ls79{letter-spacing:13.715420pt;}
.lsf{letter-spacing:13.917762pt;}
.ls27{letter-spacing:14.316727pt;}
.ls28{letter-spacing:14.321956pt;}
.ls5e{letter-spacing:14.478485pt;}
.ls1d{letter-spacing:14.608533pt;}
.ls77{letter-spacing:14.609204pt;}
.ls1f{letter-spacing:14.613867pt;}
.ls19{letter-spacing:15.006590pt;}
.ls1a{letter-spacing:15.011818pt;}
.ls5f{letter-spacing:16.245805pt;}
.ls47{letter-spacing:16.355942pt;}
.ls23{letter-spacing:16.601694pt;}
.ls22{letter-spacing:19.869668pt;}
.ls5d{letter-spacing:20.407897pt;}
.ls21{letter-spacing:21.587122pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.707733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:55.793067pt;}
.ls7{letter-spacing:57.174803pt;}
.ls38{letter-spacing:91.680000pt;}
.ls44{letter-spacing:134.993920pt;}
.ls45{letter-spacing:139.438080pt;}
.ls6f{letter-spacing:143.562240pt;}
.ls73{letter-spacing:146.086400pt;}
.ls2d{letter-spacing:159.982302pt;}
.ls36{letter-spacing:165.921600pt;}
.ls2c{letter-spacing:275.539635pt;}
.ls2b{letter-spacing:370.918340pt;}
.lsb5{letter-spacing:405.960969pt;}
.ls4f{letter-spacing:526.881600pt;}
.ls6a{letter-spacing:1059.918272pt;}
.ls43{letter-spacing:1066.961664pt;}
.wsd4{word-spacing:-53.440000pt;}
.ws9d{word-spacing:-48.000000pt;}
.wsd6{word-spacing:-13.360000pt;}
.ws13a{word-spacing:-13.283467pt;}
.ws11{word-spacing:-12.760670pt;}
.ws9c{word-spacing:-12.000000pt;}
.ws2d{word-spacing:-11.955200pt;}
.wsd2{word-spacing:-11.318400pt;}
.wsd3{word-spacing:-11.299200pt;}
.wsd8{word-spacing:-10.958400pt;}
.ws9a{word-spacing:-10.801728pt;}
.wsd9{word-spacing:-10.718400pt;}
.wsd7{word-spacing:-10.675200pt;}
.ws9b{word-spacing:-10.640000pt;}
.ws15{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.wsd5{word-spacing:-8.000000pt;}
.ws13b{word-spacing:-3.347434pt;}
.ws120{word-spacing:-3.174336pt;}
.ws121{word-spacing:-3.094176pt;}
.ws13e{word-spacing:-3.028630pt;}
.ws13d{word-spacing:-2.922363pt;}
.ws135{word-spacing:-2.656693pt;}
.ws139{word-spacing:-2.603559pt;}
.wsa2{word-spacing:-2.486682pt;}
.wsa3{word-spacing:-2.295398pt;}
.ws56{word-spacing:-2.231622pt;}
.ws156{word-spacing:-2.199757pt;}
.wscd{word-spacing:-2.131200pt;}
.ws46{word-spacing:-2.125355pt;}
.ws11a{word-spacing:-2.030400pt;}
.ws142{word-spacing:-1.965953pt;}
.wscb{word-spacing:-1.944000pt;}
.wscc{word-spacing:-1.924800pt;}
.ws13f{word-spacing:-1.912819pt;}
.wsff{word-spacing:-1.897120pt;}
.ws148{word-spacing:-1.859685pt;}
.ws154{word-spacing:-1.817190pt;}
.ws70{word-spacing:-1.806551pt;}
.ws122{word-spacing:-1.747488pt;}
.ws11d{word-spacing:-1.723200pt;}
.ws19{word-spacing:-1.721549pt;}
.ws123{word-spacing:-1.704736pt;}
.ws67{word-spacing:-1.700284pt;}
.ws138{word-spacing:-1.647150pt;}
.ws155{word-spacing:-1.625907pt;}
.ws13c{word-spacing:-1.594016pt;}
.wsfe{word-spacing:-1.549760pt;}
.ws143{word-spacing:-1.540882pt;}
.ws1a{word-spacing:-1.530266pt;}
.wsfb{word-spacing:-1.496320pt;}
.ws40{word-spacing:-1.487748pt;}
.wsfc{word-spacing:-1.474944pt;}
.wsfd{word-spacing:-1.432192pt;}
.ws57{word-spacing:-1.381481pt;}
.ws4a{word-spacing:-1.275213pt;}
.ws133{word-spacing:-1.222079pt;}
.ws31{word-spacing:-1.168945pt;}
.ws141{word-spacing:-1.115811pt;}
.wsec{word-spacing:-1.084800pt;}
.ws69{word-spacing:-1.062677pt;}
.ws14d{word-spacing:-1.052058pt;}
.ws5{word-spacing:-1.041421pt;}
.ws35{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.929840pt;}
.wseb{word-spacing:-0.868800pt;}
.ws125{word-spacing:-0.855040pt;}
.ws14c{word-spacing:-0.850142pt;}
.wsea{word-spacing:-0.849600pt;}
.ws126{word-spacing:-0.844352pt;}
.wsd0{word-spacing:-0.797008pt;}
.wse9{word-spacing:-0.792000pt;}
.ws25{word-spacing:-0.621670pt;}
.ws5e{word-spacing:-0.584473pt;}
.ws17d{word-spacing:-0.478208pt;}
.ws53{word-spacing:-0.478205pt;}
.wse8{word-spacing:-0.425071pt;}
.ws26{word-spacing:-0.382566pt;}
.ws14a{word-spacing:-0.371937pt;}
.ws106{word-spacing:-0.363392pt;}
.ws47{word-spacing:-0.318803pt;}
.ws173{word-spacing:-0.286925pt;}
.ws54{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.242592pt;}
.ws27{word-spacing:-0.239104pt;}
.wsaa{word-spacing:-0.234080pt;}
.ws4b{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.191283pt;}
.wsc6{word-spacing:-0.182400pt;}
.ws68{word-spacing:-0.159402pt;}
.ws115{word-spacing:-0.144288pt;}
.ws2b{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.wsa9{word-spacing:-0.097888pt;}
.ws24{word-spacing:-0.095642pt;}
.ws16{word-spacing:-0.085014pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws124{word-spacing:-0.010688pt;}
.ws7b{word-spacing:-0.009028pt;}
.ws8b{word-spacing:-0.009011pt;}
.ws8d{word-spacing:-0.006332pt;}
.ws7f{word-spacing:-0.006161pt;}
.ws80{word-spacing:-0.004983pt;}
.ws8c{word-spacing:-0.004787pt;}
.ws8e{word-spacing:-0.004762pt;}
.ws83{word-spacing:-0.004284pt;}
.ws7d{word-spacing:-0.004267pt;}
.ws8a{word-spacing:-0.003942pt;}
.ws82{word-spacing:-0.003840pt;}
.wsd1{word-spacing:-0.003733pt;}
.ws90{word-spacing:-0.003593pt;}
.ws89{word-spacing:-0.003277pt;}
.ws81{word-spacing:-0.002748pt;}
.ws7c{word-spacing:-0.002611pt;}
.ws87{word-spacing:-0.002551pt;}
.ws8f{word-spacing:-0.002031pt;}
.ws79{word-spacing:-0.001809pt;}
.ws75{word-spacing:-0.001715pt;}
.ws84{word-spacing:-0.001417pt;}
.ws7e{word-spacing:-0.001263pt;}
.ws98{word-spacing:-0.001126pt;}
.ws76{word-spacing:-0.000316pt;}
.ws1{word-spacing:0.000000pt;}
.ws88{word-spacing:0.000316pt;}
.ws78{word-spacing:0.000802pt;}
.ws7a{word-spacing:0.002970pt;}
.ws105{word-spacing:0.037408pt;}
.ws17{word-spacing:0.042507pt;}
.ws1b{word-spacing:0.047821pt;}
.ws60{word-spacing:0.053134pt;}
.ws107{word-spacing:0.090848pt;}
.ws1e{word-spacing:0.095642pt;}
.wsf8{word-spacing:0.100800pt;}
.wsb1{word-spacing:0.105600pt;}
.ws3f{word-spacing:0.106268pt;}
.wsc8{word-spacing:0.110400pt;}
.wsc3{word-spacing:0.115200pt;}
.ws64{word-spacing:0.119170pt;}
.wsb6{word-spacing:0.120000pt;}
.wsb7{word-spacing:0.124800pt;}
.wsb8{word-spacing:0.129600pt;}
.wsc7{word-spacing:0.134400pt;}
.wsc4{word-spacing:0.139200pt;}
.ws22{word-spacing:0.143462pt;}
.wsca{word-spacing:0.144000pt;}
.wsb0{word-spacing:0.148800pt;}
.wsb2{word-spacing:0.153600pt;}
.wsc1{word-spacing:0.158400pt;}
.ws30{word-spacing:0.159402pt;}
.wsae{word-spacing:0.163200pt;}
.ws92{word-spacing:0.170029pt;}
.wsaf{word-spacing:0.177600pt;}
.ws116{word-spacing:0.187040pt;}
.ws2a{word-spacing:0.191283pt;}
.ws42{word-spacing:0.212535pt;}
.ws1c{word-spacing:0.239104pt;}
.ws41{word-spacing:0.265669pt;}
.ws1d{word-spacing:0.286925pt;}
.wsad{word-spacing:0.304608pt;}
.ws147{word-spacing:0.318803pt;}
.ws96{word-spacing:0.370809pt;}
.ws61{word-spacing:0.371937pt;}
.ws13{word-spacing:0.393054pt;}
.ws6b{word-spacing:0.425071pt;}
.ws136{word-spacing:0.478205pt;}
.ws32{word-spacing:0.531339pt;}
.ws36{word-spacing:0.584473pt;}
.ws99{word-spacing:0.592870pt;}
.wse2{word-spacing:0.621670pt;}
.ws10a{word-spacing:0.646624pt;}
.ws45{word-spacing:0.690740pt;}
.ws175{word-spacing:0.717312pt;}
.ws6e{word-spacing:0.743874pt;}
.ws160{word-spacing:0.765133pt;}
.ws132{word-spacing:0.850142pt;}
.ws20{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.ws65{word-spacing:0.956410pt;}
.ws177{word-spacing:1.004237pt;}
.ws97{word-spacing:1.009543pt;}
.ws43{word-spacing:1.115811pt;}
.ws91{word-spacing:1.147694pt;}
.ws167{word-spacing:1.147699pt;}
.wscf{word-spacing:1.168945pt;}
.ws50{word-spacing:1.222079pt;}
.ws169{word-spacing:1.243341pt;}
.ws49{word-spacing:1.275213pt;}
.wse7{word-spacing:1.328347pt;}
.wse6{word-spacing:1.381481pt;}
.ws134{word-spacing:1.434614pt;}
.ws130{word-spacing:1.540882pt;}
.ws181{word-spacing:1.625907pt;}
.ws10d{word-spacing:1.635264pt;}
.ws144{word-spacing:1.647150pt;}
.wsee{word-spacing:1.656000pt;}
.ws15f{word-spacing:1.673728pt;}
.wsed{word-spacing:1.675200pt;}
.ws10c{word-spacing:1.683360pt;}
.ws71{word-spacing:1.700284pt;}
.ws28{word-spacing:1.721549pt;}
.ws10b{word-spacing:1.726112pt;}
.ws5d{word-spacing:1.753418pt;}
.ws11e{word-spacing:1.774208pt;}
.ws11f{word-spacing:1.779552pt;}
.wse3{word-spacing:1.865011pt;}
.ws37{word-spacing:1.912819pt;}
.ws59{word-spacing:1.965953pt;}
.ws14e{word-spacing:2.008474pt;}
.ws3b{word-spacing:2.125355pt;}
.ws48{word-spacing:2.178489pt;}
.ws63{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws15e{word-spacing:2.247578pt;}
.ws15d{word-spacing:2.295398pt;}
.ws3d{word-spacing:2.337890pt;}
.ws3e{word-spacing:2.391024pt;}
.ws11c{word-spacing:2.419200pt;}
.ws140{word-spacing:2.497292pt;}
.ws5b{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws170{word-spacing:2.630144pt;}
.ws34{word-spacing:2.709827pt;}
.ws11b{word-spacing:2.721600pt;}
.ws117{word-spacing:2.750400pt;}
.ws119{word-spacing:2.760000pt;}
.ws131{word-spacing:2.762961pt;}
.wsac{word-spacing:2.832320pt;}
.ws2e{word-spacing:2.861926pt;}
.ws17f{word-spacing:2.865161pt;}
.ws153{word-spacing:2.866509pt;}
.ws58{word-spacing:2.869229pt;}
.ws184{word-spacing:2.869248pt;}
.ws17c{word-spacing:2.917069pt;}
.wse4{word-spacing:2.922363pt;}
.ws38{word-spacing:2.975497pt;}
.ws118{word-spacing:2.980800pt;}
.wsa6{word-spacing:3.028630pt;}
.ws151{word-spacing:3.060531pt;}
.wsa7{word-spacing:3.081764pt;}
.ws15a{word-spacing:3.108352pt;}
.wsab{word-spacing:3.131584pt;}
.ws2f{word-spacing:3.188032pt;}
.wsfa{word-spacing:3.238464pt;}
.ws5f{word-spacing:3.241166pt;}
.wsf7{word-spacing:3.264000pt;}
.ws94{word-spacing:3.294300pt;}
.wsf0{word-spacing:3.312000pt;}
.wsef{word-spacing:3.321600pt;}
.wsf6{word-spacing:3.326400pt;}
.ws159{word-spacing:3.395277pt;}
.ws149{word-spacing:3.400567pt;}
.ws12f{word-spacing:3.468256pt;}
.ws150{word-spacing:3.490918pt;}
.ws112{word-spacing:3.607200pt;}
.ws111{word-spacing:3.623232pt;}
.wsa4{word-spacing:3.634381pt;}
.wsf9{word-spacing:3.644608pt;}
.ws52{word-spacing:3.666237pt;}
.ws12e{word-spacing:3.708736pt;}
.ws16d{word-spacing:3.730022pt;}
.ws95{word-spacing:3.772505pt;}
.ws12d{word-spacing:3.890432pt;}
.ws104{word-spacing:3.911808pt;}
.ws6d{word-spacing:3.985040pt;}
.ws1f{word-spacing:4.016947pt;}
.ws55{word-spacing:4.038174pt;}
.ws15c{word-spacing:4.112589pt;}
.wsa5{word-spacing:4.160410pt;}
.ws10e{word-spacing:4.195040pt;}
.wsd{word-spacing:4.240070pt;}
.ws14b{word-spacing:4.250709pt;}
.ws12b{word-spacing:4.285888pt;}
.ws12c{word-spacing:4.307264pt;}
.wse{word-spacing:4.314458pt;}
.ws145{word-spacing:4.356977pt;}
.ws15b{word-spacing:4.399514pt;}
.ws6f{word-spacing:4.569513pt;}
.ws2c{word-spacing:4.638618pt;}
.ws152{word-spacing:4.734259pt;}
.ws62{word-spacing:4.782048pt;}
.ws5c{word-spacing:4.835182pt;}
.ws101{word-spacing:4.969920pt;}
.ws51{word-spacing:4.994583pt;}
.ws103{word-spacing:5.001984pt;}
.ws102{word-spacing:5.060768pt;}
.ws6c{word-spacing:5.100851pt;}
.ws4f{word-spacing:5.153985pt;}
.ws6a{word-spacing:5.207119pt;}
.ws158{word-spacing:5.212467pt;}
.ws33{word-spacing:5.260253pt;}
.ws166{word-spacing:5.260288pt;}
.ws4d{word-spacing:5.313387pt;}
.ws4c{word-spacing:5.419654pt;}
.ws146{word-spacing:5.525922pt;}
.ws157{word-spacing:5.547213pt;}
.ws129{word-spacing:5.605856pt;}
.ws12a{word-spacing:5.664640pt;}
.ws137{word-spacing:5.791591pt;}
.ws113{word-spacing:5.878400pt;}
.ws114{word-spacing:5.931840pt;}
.ws66{word-spacing:6.004127pt;}
.ws4e{word-spacing:6.057261pt;}
.ws14f{word-spacing:6.360166pt;}
.wse5{word-spacing:6.429198pt;}
.ws93{word-spacing:6.588599pt;}
.ws39{word-spacing:6.854269pt;}
.ws3a{word-spacing:6.907403pt;}
.wsb{word-spacing:6.918010pt;}
.wsce{word-spacing:7.119938pt;}
.ws5a{word-spacing:7.226206pt;}
.ws10f{word-spacing:8.331296pt;}
.ws110{word-spacing:8.694688pt;}
.ws2{word-spacing:9.258349pt;}
.wse0{word-spacing:9.516339pt;}
.wse1{word-spacing:9.564160pt;}
.wsdf{word-spacing:9.946726pt;}
.ws29{word-spacing:10.586324pt;}
.ws100{word-spacing:10.607840pt;}
.ws9{word-spacing:10.823338pt;}
.ws171{word-spacing:11.668275pt;}
.ws179{word-spacing:11.811738pt;}
.ws16e{word-spacing:11.859558pt;}
.ws168{word-spacing:11.899247pt;}
.ws165{word-spacing:11.901329pt;}
.ws16a{word-spacing:11.903625pt;}
.ws178{word-spacing:11.904435pt;}
.ws16f{word-spacing:11.905502pt;}
.ws16c{word-spacing:11.907379pt;}
.ws17b{word-spacing:11.938608pt;}
.ws17a{word-spacing:11.955200pt;}
.ws183{word-spacing:12.003379pt;}
.ws162{word-spacing:12.098662pt;}
.ws182{word-spacing:12.146483pt;}
.ws128{word-spacing:12.259136pt;}
.ws127{word-spacing:12.280512pt;}
.wsf5{word-spacing:12.499200pt;}
.ws108{word-spacing:12.649248pt;}
.ws176{word-spacing:12.672512pt;}
.ws109{word-spacing:12.675968pt;}
.wsf4{word-spacing:12.859200pt;}
.wsf3{word-spacing:12.907200pt;}
.wsf2{word-spacing:12.916800pt;}
.wsf1{word-spacing:12.945600pt;}
.ws44{word-spacing:13.230333pt;}
.wsa{word-spacing:14.319536pt;}
.ws174{word-spacing:14.537523pt;}
.ws164{word-spacing:14.768981pt;}
.ws180{word-spacing:14.770671pt;}
.ws17e{word-spacing:14.772326pt;}
.ws172{word-spacing:14.773026pt;}
.ws16b{word-spacing:14.773777pt;}
.ws161{word-spacing:14.776627pt;}
.ws163{word-spacing:15.685222pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws10{word-spacing:41.455014pt;}
.ws9f{word-spacing:121.793984pt;}
.ws9e{word-spacing:122.105920pt;}
.wsa1{word-spacing:126.450560pt;}
.wsdb{word-spacing:129.832512pt;}
.wsda{word-spacing:130.143936pt;}
.wsde{word-spacing:131.284480pt;}
.wsdc{word-spacing:131.596800pt;}
.wsdd{word-spacing:138.641920pt;}
.wsa0{word-spacing:139.883776pt;}
.ws72{word-spacing:240.630263pt;}
.ws85{word-spacing:259.848687pt;}
.ws86{word-spacing:277.569067pt;}
.ws77{word-spacing:303.434428pt;}
.wsbb{word-spacing:310.536000pt;}
.wsc9{word-spacing:322.041600pt;}
.ws73{word-spacing:335.169067pt;}
.wsc2{word-spacing:346.041600pt;}
.wsbd{word-spacing:346.708800pt;}
.wsc5{word-spacing:363.979200pt;}
.wsb9{word-spacing:380.932800pt;}
.wsbe{word-spacing:383.486400pt;}
.wsb4{word-spacing:391.166400pt;}
.wsba{word-spacing:391.819200pt;}
.wsb5{word-spacing:393.408000pt;}
.wsbc{word-spacing:412.944000pt;}
.wsb3{word-spacing:426.700800pt;}
.wsbf{word-spacing:436.281600pt;}
.wsc0{word-spacing:448.435200pt;}
.ws74{word-spacing:2106.968439pt;}
._e9{margin-left:-961.546240pt;}
._e4{margin-left:-941.411328pt;}
._e8{margin-left:-920.931840pt;}
._de{margin-left:-917.097472pt;}
._e3{margin-left:-902.371392pt;}
._d9{margin-left:-886.695232pt;}
._dd{margin-left:-878.696192pt;}
._d8{margin-left:-849.894144pt;}
._c5{margin-left:-448.320000pt;}
._c2{margin-left:-436.161600pt;}
._a2{margin-left:-426.561600pt;}
._bb{margin-left:-412.800000pt;}
._a9{margin-left:-393.283200pt;}
._b4{margin-left:-392.318400pt;}
._a6{margin-left:-391.041600pt;}
._bf{margin-left:-383.361600pt;}
._b0{margin-left:-380.803200pt;}
._cc{margin-left:-363.840000pt;}
._bd{margin-left:-346.560000pt;}
._d3{margin-left:-321.921600pt;}
._b7{margin-left:-309.595127pt;}
._c1{margin-left:-156.201600pt;}
._c4{margin-left:-150.441600pt;}
._c7{margin-left:-147.986435pt;}
._a1{margin-left:-146.241600pt;}
._ba{margin-left:-144.316800pt;}
._c3{margin-left:-132.201600pt;}
._d2{margin-left:-123.183514pt;}
._a5{margin-left:-110.721600pt;}
._a8{margin-left:-107.371200pt;}
._af{margin-left:-100.483200pt;}
._be{margin-left:-91.315200pt;}
._cb{margin-left:-71.356800pt;}
._a3{margin-left:-69.144000pt;}
._bc{margin-left:-66.240000pt;}
._b5{margin-left:-34.262400pt;}
._aa{margin-left:-29.812800pt;}
._b1{margin-left:-23.404800pt;}
._fb{margin-left:-6.918143pt;}
._a{margin-left:-5.923171pt;}
._0{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._8a{margin-left:-2.401675pt;}
._2{margin-left:-1.338970pt;}
._a0{width:0.900762pt;}
._5{width:2.045648pt;}
._9{width:3.284233pt;}
._e0{width:4.773971pt;}
._a7{width:8.241600pt;}
._6{width:10.295486pt;}
._3{width:11.530202pt;}
._10{width:13.175632pt;}
._c{width:14.202778pt;}
._e{width:15.302656pt;}
._14{width:16.418365pt;}
._d{width:17.639267pt;}
._fd{width:18.608886pt;}
._f{width:19.510886pt;}
._fc{width:20.531514pt;}
._18{width:21.423571pt;}
._4{width:23.061099pt;}
._17{width:24.069642pt;}
._15{width:25.876193pt;}
._7{width:27.188522pt;}
._19{width:28.702911pt;}
._8{width:29.648896pt;}
._1a{width:31.236138pt;}
._13{width:32.549546pt;}
._1b{width:34.281967pt;}
._8b{width:36.662368pt;}
._16{width:37.565644pt;}
._eb{width:43.899494pt;}
._b{width:50.498554pt;}
._b8{width:52.766400pt;}
._a4{width:58.113600pt;}
._ab{width:91.377600pt;}
._b6{width:93.081600pt;}
._b2{width:103.665600pt;}
._da{width:108.477158pt;}
._df{width:113.973248pt;}
._ea{width:116.006490pt;}
._e5{width:117.639270pt;}
._7f{width:124.487138pt;}
._db{width:133.120384pt;}
._d6{width:135.039936pt;}
._7b{width:137.228151pt;}
._dc{width:139.840000pt;}
._d7{width:141.440640pt;}
._e1{width:143.679744pt;}
._e6{width:145.917440pt;}
._d5{width:147.840000pt;}
._e2{width:150.401472pt;}
._d1{width:152.332800pt;}
._e7{width:153.902080pt;}
._80{width:161.395200pt;}
._b9{width:162.427200pt;}
._70{width:169.524736pt;}
._78{width:171.751027pt;}
._6f{width:179.567104pt;}
._2c{width:183.058022pt;}
._7c{width:184.301363pt;}
._d0{width:185.908800pt;}
._c0{width:187.371277pt;}
._9c{width:193.578598pt;}
._f2{width:194.657186pt;}
._81{width:196.256563pt;}
._2b{width:202.186342pt;}
._79{width:206.251110pt;}
._77{width:208.211763pt;}
._50{width:210.261146pt;}
._7e{width:211.846144pt;}
._6d{width:219.524902pt;}
._83{width:220.979917pt;}
._ad{width:222.673690pt;}
._9b{width:227.148800pt;}
._6c{width:230.182797pt;}
._95{width:233.461146pt;}
._27{width:234.624739pt;}
._84{width:236.846327pt;}
._7d{width:241.925427pt;}
._76{width:244.842496pt;}
._82{width:245.753455pt;}
._6a{width:247.711744pt;}
._74{width:249.289830pt;}
._c8{width:250.458970pt;}
._20{width:253.019853pt;}
._28{width:254.789222pt;}
._66{width:256.919872pt;}
._9a{width:260.192973pt;}
._51{width:266.222234pt;}
._71{width:267.318272pt;}
._ac{width:269.009242pt;}
._63{width:270.292173pt;}
._2f{width:272.721126pt;}
._6b{width:276.732362pt;}
._6e{width:277.791027pt;}
._2d{width:279.034368pt;}
._72{width:279.942963pt;}
._87{width:281.410271pt;}
._73{width:283.577344pt;}
._c6{width:285.441600pt;}
._21{width:290.654822pt;}
._7a{width:292.264835pt;}
._2e{width:293.380608pt;}
._4e{width:294.432666pt;}
._64{width:297.067597pt;}
._86{width:299.358208pt;}
._9d{width:300.553728pt;}
._99{width:301.988352pt;}
._93{width:303.375155pt;}
._25{width:304.283750pt;}
._3b{width:308.635443pt;}
._cf{width:310.038528pt;}
._4d{width:311.217766pt;}
._33{width:312.604570pt;}
._67{width:313.656627pt;}
._2a{width:314.756506pt;}
._35{width:316.238950pt;}
._ca{width:319.070400pt;}
._91{width:320.781926pt;}
._31{width:322.216550pt;}
._61{width:323.459891pt;}
._49{width:324.368486pt;}
._9e{width:326.483237pt;}
._68{width:328.008115pt;}
._4c{width:330.537370pt;}
._75{width:331.960138pt;}
._d4{width:333.289216pt;}
._5d{width:335.558554pt;}
._4f{width:338.446444pt;}
._3c{width:340.149350pt;}
._23{width:341.201408pt;}
._b3{width:344.001600pt;}
._30{width:346.605158pt;}
._ae{width:347.966400pt;}
._69{width:349.522227pt;}
._8f{width:350.478643pt;}
._40{width:352.104550pt;}
._8d{width:355.144400pt;}
._34{width:357.603942pt;}
._24{width:359.437027pt;}
._98{width:361.047040pt;}
._3a{width:362.912051pt;}
._f7{width:364.537958pt;}
._97{width:365.829120pt;}
._3e{width:367.263744pt;}
._29{width:368.698368pt;}
._38{width:370.037350pt;}
._5b{width:371.328512pt;}
._ce{width:373.440000pt;}
._1e{width:376.158413pt;}
._89{width:377.583573pt;}
._44{width:379.792794pt;}
._59{width:380.701389pt;}
._88{width:381.842480pt;}
._3f{width:384.123200pt;}
._22{width:386.631168pt;}
._8e{width:388.257075pt;}
._26{width:392.274022pt;}
._65{width:393.475874pt;}
._f0{width:394.769990pt;}
._85{width:399.016755pt;}
._1f{width:400.307917pt;}
._4a{width:404.898714pt;}
._56{width:412.215296pt;}
._55{width:414.175949pt;}
._45{width:416.471347pt;}
._32{width:418.192896pt;}
._f4{width:419.525270pt;}
._37{width:420.727398pt;}
._5e{width:422.927155pt;}
._48{width:424.983450pt;}
._5c{width:428.904755pt;}
._36{width:430.195917pt;}
._90{width:431.869645pt;}
._8c{width:433.702730pt;}
._54{width:436.125696pt;}
._53{width:438.086349pt;}
._f5{width:444.686123pt;}
._46{width:445.689856pt;}
._41{width:448.128717pt;}
._92{width:452.719514pt;}
._3d{width:454.058496pt;}
._1c{width:459.646922pt;}
._60{width:463.813939pt;}
._39{width:466.061517pt;}
._f8{width:468.624077pt;}
._f1{width:471.506480pt;}
._94{width:476.103885pt;}
._c9{width:484.756517pt;}
._cd{width:485.806694pt;}
._42{width:486.720102pt;}
._96{width:488.059085pt;}
._5a{width:490.450125pt;}
._58{width:517.223165pt;}
._1d{width:524.594176pt;}
._ef{width:531.728749pt;}
._f6{width:555.766730pt;}
._f9{width:566.915584pt;}
._f3{width:589.467733pt;}
._fa{width:591.591117pt;}
._ee{width:599.162698pt;}
._ed{width:754.857540pt;}
._11{width:786.638243pt;}
._52{width:1894.151318pt;}
._5f{width:1905.541487pt;}
._4b{width:1936.699989pt;}
._57{width:1942.295390pt;}
._47{width:1994.967279pt;}
._62{width:2032.501376pt;}
._43{width:2069.067938pt;}
._ec{width:2246.653067pt;}
._12{width:2267.906400pt;}
._9f{width:2305.041088pt;}
.fsd{font-size:23.680000pt;}
.fse{font-size:24.320000pt;}
.fs10{font-size:24.960000pt;}
.fs11{font-size:25.600000pt;}
.fs5{font-size:31.880533pt;}
.fsf{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.946667pt;}
.y1e2{bottom:-258.579152pt;}
.y1e1{bottom:-241.459648pt;}
.y1e0{bottom:-224.420304pt;}
.y1df{bottom:-207.300800pt;}
.y1de{bottom:-190.181296pt;}
.y1dd{bottom:-173.141952pt;}
.y1dc{bottom:-156.022448pt;}
.y1db{bottom:-138.983104pt;}
.y1da{bottom:-121.863600pt;}
.y1d9{bottom:-89.144400pt;}
.y1d8{bottom:-73.704000pt;}
.y1d7{bottom:-58.344000pt;}
.y1d6{bottom:-42.903600pt;}
.y1d5{bottom:-27.543600pt;}
.y1d4{bottom:-0.339472pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:1.829467pt;}
.y1ee{bottom:10.136400pt;}
.y1a6{bottom:10.549467pt;}
.y1e8{bottom:11.656400pt;}
.y1a0{bottom:13.029467pt;}
.y1e{bottom:14.809859pt;}
.y1a1{bottom:22.149467pt;}
.y1e9{bottom:22.216400pt;}
.y1e3{bottom:23.496400pt;}
.y19b{bottom:24.229467pt;}
.y51{bottom:28.346667pt;}
.y1a2{bottom:29.029595pt;}
.y1ea{bottom:29.496400pt;}
.y1e4{bottom:30.616240pt;}
.y19c{bottom:30.869339pt;}
.y1a3{bottom:35.989371pt;}
.y1eb{bottom:36.696400pt;}
.y19d{bottom:37.589131pt;}
.y1e5{bottom:37.736080pt;}
.y1a5{bottom:43.989723pt;}
.y1ed{bottom:45.176400pt;}
.y19f{bottom:45.349387pt;}
.y1e7{bottom:45.976272pt;}
.y1a4{bottom:49.989467pt;}
.y19e{bottom:51.189467pt;}
.y1ec{bottom:51.416400pt;}
.y1e6{bottom:52.136400pt;}
.y13e{bottom:68.618667pt;}
.y13d{bottom:81.237333pt;}
.y1b2{bottom:82.452000pt;}
.y83{bottom:88.816000pt;}
.y1c{bottom:93.018667pt;}
.y13c{bottom:93.857333pt;}
.yb7{bottom:94.485333pt;}
.y50{bottom:94.720000pt;}
.y254{bottom:95.681333pt;}
.y1b1{bottom:99.189333pt;}
.y2a8{bottom:104.249333pt;}
.y82{bottom:105.553333pt;}
.y270{bottom:105.724000pt;}
.y13b{bottom:106.476000pt;}
.y22e{bottom:106.509333pt;}
.y1b{bottom:108.920000pt;}
.yb6{bottom:111.222667pt;}
.y4f{bottom:112.016000pt;}
.y253{bottom:112.418667pt;}
.y1b0{bottom:115.926667pt;}
.y13a{bottom:119.096000pt;}
.y2a7{bottom:119.592000pt;}
.y26f{bottom:121.345333pt;}
.y81{bottom:122.290667pt;}
.y110{bottom:122.517333pt;}
.y22d{bottom:123.246667pt;}
.y1a{bottom:124.820000pt;}
.ye5{bottom:127.561333pt;}
.yb5{bottom:127.960000pt;}
.y252{bottom:129.156000pt;}
.y4e{bottom:129.310667pt;}
.y1af{bottom:132.664000pt;}
.y2a6{bottom:134.933333pt;}
.y26e{bottom:136.966667pt;}
.y139{bottom:138.502667pt;}
.y80{bottom:139.028000pt;}
.y22c{bottom:139.984000pt;}
.y19{bottom:140.720000pt;}
.y10f{bottom:143.530667pt;}
.ye4{bottom:144.298667pt;}
.y251{bottom:145.893333pt;}
.y4d{bottom:146.605333pt;}
.yb4{bottom:148.682667pt;}
.y2a5{bottom:150.276000pt;}
.y26d{bottom:152.588000pt;}
.y7f{bottom:155.765333pt;}
.y18{bottom:156.621333pt;}
.y22b{bottom:156.721333pt;}
.y138{bottom:159.516000pt;}
.ye3{bottom:161.036000pt;}
.y1ae{bottom:162.500000pt;}
.y250{bottom:162.630667pt;}
.y4c{bottom:163.901333pt;}
.y10e{bottom:164.545333pt;}
.y2a4{bottom:165.618667pt;}
.y26c{bottom:168.209333pt;}
.y7e{bottom:172.502667pt;}
.y17{bottom:172.521333pt;}
.y22a{bottom:173.457333pt;}
.ye2{bottom:177.773333pt;}
.yb3{bottom:178.570667pt;}
.y24f{bottom:179.368000pt;}
.y1ad{bottom:179.596000pt;}
.y137{bottom:180.530667pt;}
.y2a3{bottom:180.961333pt;}
.y4b{bottom:181.196000pt;}
.y167{bottom:183.113333pt;}
.y26b{bottom:183.830667pt;}
.y10d{bottom:185.558667pt;}
.y16{bottom:188.421333pt;}
.y229{bottom:190.194667pt;}
.y203{bottom:191.960000pt;}
.y7d{bottom:193.225333pt;}
.ye1{bottom:194.510667pt;}
.yb2{bottom:195.308000pt;}
.y24e{bottom:196.105333pt;}
.y2a2{bottom:196.304000pt;}
.y1ac{bottom:196.692000pt;}
.y199{bottom:198.309467pt;}
.y4a{bottom:198.490667pt;}
.y26a{bottom:199.452000pt;}
.y136{bottom:201.544000pt;}
.y166{bottom:204.126667pt;}
.y15{bottom:204.322667pt;}
.y10c{bottom:206.572000pt;}
.y228{bottom:206.932000pt;}
.y1d3{bottom:207.500712pt;}
.y202{bottom:208.697333pt;}
.y7c{bottom:211.158667pt;}
.ye0{bottom:211.248000pt;}
.y2a1{bottom:211.646667pt;}
.yb1{bottom:212.045333pt;}
.y24d{bottom:212.841333pt;}
.y1ab{bottom:213.788000pt;}
.y269{bottom:215.074667pt;}
.y198{bottom:215.269467pt;}
.y49{bottom:215.786667pt;}
.y135{bottom:222.558667pt;}
.y227{bottom:223.669333pt;}
.y1d2{bottom:224.620216pt;}
.y165{bottom:225.141333pt;}
.y201{bottom:225.434667pt;}
.y2a0{bottom:226.989333pt;}
.y10b{bottom:227.586667pt;}
.ydf{bottom:227.985333pt;}
.yb0{bottom:228.782667pt;}
.y24c{bottom:229.578667pt;}
.y1aa{bottom:230.884000pt;}
.y197{bottom:232.069467pt;}
.y48{bottom:233.081333pt;}
.y268{bottom:238.665333pt;}
.y226{bottom:240.406667pt;}
.y7b{bottom:241.046667pt;}
.y1d1{bottom:241.739720pt;}
.y200{bottom:242.172000pt;}
.y29f{bottom:242.332000pt;}
.y134{bottom:243.572000pt;}
.yde{bottom:244.722667pt;}
.yaf{bottom:245.520000pt;}
.y164{bottom:246.154667pt;}
.y24b{bottom:246.316000pt;}
.y1a9{bottom:247.978667pt;}
.y10a{bottom:248.600000pt;}
.y196{bottom:248.949467pt;}
.y47{bottom:250.377333pt;}
.y267{bottom:254.286667pt;}
.y225{bottom:257.144000pt;}
.y29e{bottom:257.674667pt;}
.y7a{bottom:257.784000pt;}
.y1d0{bottom:258.780400pt;}
.y1ff{bottom:258.909333pt;}
.ydd{bottom:261.460000pt;}
.yae{bottom:262.257333pt;}
.y24a{bottom:263.053333pt;}
.y133{bottom:264.585333pt;}
.y1a8{bottom:265.074667pt;}
.y195{bottom:265.829467pt;}
.y14{bottom:266.804000pt;}
.y163{bottom:267.169333pt;}
.y46{bottom:267.672000pt;}
.y109{bottom:269.614667pt;}
.y266{bottom:269.908000pt;}
.y29d{bottom:273.016000pt;}
.y224{bottom:273.881333pt;}
.y79{bottom:274.521333pt;}
.y1fe{bottom:275.646667pt;}
.y1cf{bottom:275.899904pt;}
.ydc{bottom:278.197333pt;}
.yad{bottom:278.994667pt;}
.y249{bottom:279.790667pt;}
.y1a7{bottom:282.170667pt;}
.y13{bottom:282.705333pt;}
.y194{bottom:282.709467pt;}
.y45{bottom:284.966667pt;}
.y132{bottom:285.600000pt;}
.y162{bottom:288.182667pt;}
.y29c{bottom:288.358667pt;}
.y223{bottom:290.618667pt;}
.y108{bottom:290.628000pt;}
.y78{bottom:291.257333pt;}
.y1fd{bottom:292.384000pt;}
.y1ce{bottom:292.939248pt;}
.y265{bottom:293.500000pt;}
.ydb{bottom:294.934667pt;}
.yac{bottom:295.732000pt;}
.y248{bottom:296.528000pt;}
.y12{bottom:298.605333pt;}
.y193{bottom:299.509467pt;}
.y169{bottom:302.108267pt;}
.y44{bottom:302.262667pt;}
.y29b{bottom:303.701333pt;}
.y131{bottom:306.613333pt;}
.y222{bottom:307.356000pt;}
.y77{bottom:307.994667pt;}
.y1fc{bottom:309.121333pt;}
.y161{bottom:309.197333pt;}
.y1cd{bottom:310.058752pt;}
.y107{bottom:311.642667pt;}
.yda{bottom:311.672000pt;}
.yab{bottom:312.469333pt;}
.y247{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.y192{bottom:316.389600pt;}
.y29a{bottom:319.044000pt;}
.y43{bottom:319.557333pt;}
.y221{bottom:324.093333pt;}
.y76{bottom:324.732000pt;}
.y264{bottom:324.742667pt;}
.y1fb{bottom:325.858667pt;}
.y1cc{bottom:327.178256pt;}
.y130{bottom:328.182667pt;}
.yd9{bottom:328.409333pt;}
.yaa{bottom:329.206667pt;}
.y246{bottom:330.002667pt;}
.y160{bottom:330.210667pt;}
.y106{bottom:332.656000pt;}
.y191{bottom:333.269600pt;}
.y299{bottom:334.386667pt;}
.y42{bottom:336.853333pt;}
.y10{bottom:338.376000pt;}
.y220{bottom:340.830667pt;}
.y75{bottom:341.469333pt;}
.y1fa{bottom:342.596000pt;}
.yd8{bottom:345.146667pt;}
.ya8{bottom:345.944000pt;}
.y245{bottom:346.740000pt;}
.y1cb{bottom:348.217584pt;}
.y263{bottom:348.334667pt;}
.y12f{bottom:349.197333pt;}
.y298{bottom:349.729333pt;}
.y190{bottom:350.069600pt;}
.ya9{bottom:350.765333pt;}
.y15f{bottom:351.224000pt;}
.y105{bottom:353.670667pt;}
.y41{bottom:354.148000pt;}
.yf{bottom:354.277333pt;}
.y21f{bottom:357.568000pt;}
.y74{bottom:358.206667pt;}
.y1f9{bottom:359.333333pt;}
.yd7{bottom:361.884000pt;}
.y244{bottom:363.477333pt;}
.y262{bottom:363.956000pt;}
.y297{bottom:365.072000pt;}
.ya7{bottom:366.665333pt;}
.y18f{bottom:366.949467pt;}
.ye{bottom:370.177333pt;}
.y12e{bottom:370.766667pt;}
.y15e{bottom:372.238667pt;}
.y21e{bottom:374.305333pt;}
.y104{bottom:374.684000pt;}
.y73{bottom:374.944000pt;}
.y1f8{bottom:376.070667pt;}
.yd6{bottom:378.621333pt;}
.y261{bottom:379.577333pt;}
.y243{bottom:380.214667pt;}
.y296{bottom:380.414667pt;}
.y1ca{bottom:381.337024pt;}
.y18e{bottom:383.829467pt;}
.y40{bottom:387.382667pt;}
.y21d{bottom:391.042667pt;}
.y72{bottom:391.681333pt;}
.y12d{bottom:392.336000pt;}
.y1f7{bottom:392.808000pt;}
.y15d{bottom:393.252000pt;}
.yd5{bottom:395.358667pt;}
.yd{bottom:395.376000pt;}
.y103{bottom:395.698667pt;}
.y295{bottom:395.756000pt;}
.ya6{bottom:396.553333pt;}
.y242{bottom:396.952000pt;}
.y1c9{bottom:398.456528pt;}
.y18d{bottom:400.629467pt;}
.y260{bottom:403.169333pt;}
.y3f{bottom:404.678667pt;}
.y71{bottom:408.418667pt;}
.y1f6{bottom:409.544000pt;}
.y294{bottom:411.098667pt;}
.yc{bottom:411.276000pt;}
.y21c{bottom:411.765333pt;}
.yd4{bottom:412.096000pt;}
.ya5{bottom:413.290667pt;}
.y12c{bottom:413.349333pt;}
.y241{bottom:413.689333pt;}
.y15c{bottom:414.266667pt;}
.y1c8{bottom:415.497208pt;}
.y102{bottom:416.712000pt;}
.y18c{bottom:417.509467pt;}
.y3e{bottom:421.973333pt;}
.y70{bottom:425.156000pt;}
.y1f5{bottom:426.281333pt;}
.y293{bottom:426.441333pt;}
.y25f{bottom:426.760000pt;}
.yd3{bottom:428.833333pt;}
.ya4{bottom:430.028000pt;}
.y240{bottom:430.426667pt;}
.y1c7{bottom:432.616712pt;}
.y12b{bottom:434.364000pt;}
.y18b{bottom:434.389467pt;}
.yb{bottom:435.146667pt;}
.y15b{bottom:435.280000pt;}
.y101{bottom:437.726667pt;}
.y3d{bottom:439.269333pt;}
.y292{bottom:441.784000pt;}
.y21b{bottom:441.881333pt;}
.y6f{bottom:441.893333pt;}
.y25e{bottom:442.382667pt;}
.yd2{bottom:445.570667pt;}
.ya3{bottom:446.765333pt;}
.y23f{bottom:447.164000pt;}
.y1c6{bottom:449.657392pt;}
.ya{bottom:451.048000pt;}
.y18a{bottom:451.269467pt;}
.y21a{bottom:454.501333pt;}
.y12a{bottom:455.377333pt;}
.y1f4{bottom:456.118667pt;}
.y15a{bottom:456.294667pt;}
.y3c{bottom:456.564000pt;}
.y291{bottom:457.126667pt;}
.y25d{bottom:458.004000pt;}
.y6e{bottom:458.630667pt;}
.y100{bottom:458.740000pt;}
.yd1{bottom:462.306667pt;}
.ya2{bottom:463.502667pt;}
.y23e{bottom:463.901333pt;}
.y1c5{bottom:466.776896pt;}
.y9{bottom:466.948000pt;}
.y189{bottom:468.069467pt;}
.y290{bottom:472.469333pt;}
.y1f3{bottom:473.213333pt;}
.y25c{bottom:473.625333pt;}
.y3b{bottom:473.858667pt;}
.y219{bottom:473.908000pt;}
.y6d{bottom:475.368000pt;}
.y129{bottom:476.392000pt;}
.y159{bottom:477.308000pt;}
.yd0{bottom:479.044000pt;}
.yff{bottom:479.754667pt;}
.ya1{bottom:480.240000pt;}
.y23d{bottom:480.638667pt;}
.y8{bottom:482.848000pt;}
.y1c4{bottom:483.897056pt;}
.y187{bottom:484.949467pt;}
.y28f{bottom:487.812000pt;}
.y25b{bottom:489.246667pt;}
.y188{bottom:489.429067pt;}
.y1f2{bottom:490.309333pt;}
.y3a{bottom:491.154667pt;}
.y6c{bottom:492.105333pt;}
.y218{bottom:494.921333pt;}
.ycf{bottom:495.781333pt;}
.ya0{bottom:496.977333pt;}
.y23c{bottom:497.376000pt;}
.y128{bottom:497.405333pt;}
.y158{bottom:498.322667pt;}
.y7{bottom:498.749333pt;}
.y168{bottom:499.013333pt;}
.yfe{bottom:500.768000pt;}
.y1c3{bottom:500.936400pt;}
.y185{bottom:501.829467pt;}
.y28e{bottom:503.154667pt;}
.y25a{bottom:504.868000pt;}
.y157{bottom:505.628000pt;}
.y186{bottom:506.229867pt;}
.y1f1{bottom:507.405333pt;}
.y6b{bottom:508.842667pt;}
.yce{bottom:512.518667pt;}
.y9f{bottom:513.714667pt;}
.y23b{bottom:514.113333pt;}
.y6{bottom:514.649333pt;}
.y217{bottom:515.936000pt;}
.y127{bottom:518.418667pt;}
.y28d{bottom:518.497333pt;}
.y183{bottom:518.629467pt;}
.y259{bottom:520.489333pt;}
.yfd{bottom:521.782667pt;}
.y184{bottom:523.109067pt;}
.y1f0{bottom:524.501333pt;}
.y39{bottom:525.452000pt;}
.y6a{bottom:525.580000pt;}
.ycd{bottom:529.256000pt;}
.y9e{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y23a{bottom:530.850667pt;}
.y1c2{bottom:533.655200pt;}
.y28c{bottom:533.838667pt;}
.y181{bottom:535.509467pt;}
.y258{bottom:536.110667pt;}
.y216{bottom:536.949333pt;}
.y126{bottom:539.433333pt;}
.y38{bottom:539.798667pt;}
.y182{bottom:539.989067pt;}
.y1ef{bottom:541.597333pt;}
.y69{bottom:542.317333pt;}
.yfc{bottom:542.796000pt;}
.y156{bottom:543.697333pt;}
.ycb{bottom:545.993333pt;}
.y4{bottom:546.450667pt;}
.y9d{bottom:547.189333pt;}
.y239{bottom:547.588000pt;}
.y1c1{bottom:549.095600pt;}
.y28b{bottom:549.181333pt;}
.ycc{bottom:550.816000pt;}
.y257{bottom:551.732000pt;}
.y180{bottom:552.389467pt;}
.y37{bottom:554.145333pt;}
.y215{bottom:557.962667pt;}
.y36{bottom:558.002667pt;}
.y68{bottom:559.054667pt;}
.y125{bottom:560.446667pt;}
.y1b8{bottom:561.534667pt;}
.y3{bottom:562.350667pt;}
.yc9{bottom:562.730667pt;}
.yfb{bottom:563.810667pt;}
.y9c{bottom:563.926667pt;}
.y238{bottom:564.325333pt;}
.y28a{bottom:564.524000pt;}
.y1c0{bottom:564.536000pt;}
.y256{bottom:567.353333pt;}
.yca{bottom:567.553333pt;}
.y35{bottom:568.490667pt;}
.y17f{bottom:569.189467pt;}
.y67{bottom:575.792000pt;}
.y155{bottom:576.678667pt;}
.y2{bottom:578.250667pt;}
.y214{bottom:578.977333pt;}
.yc7{bottom:579.468000pt;}
.y289{bottom:579.866667pt;}
.y1bf{bottom:579.896000pt;}
.y9b{bottom:580.664000pt;}
.y237{bottom:581.062667pt;}
.y124{bottom:581.461333pt;}
.y255{bottom:582.974667pt;}
.yc8{bottom:584.290667pt;}
.yfa{bottom:584.824000pt;}
.y17e{bottom:586.069467pt;}
.y34{bottom:586.694667pt;}
.y66{bottom:592.529333pt;}
.y154{bottom:593.416000pt;}
.y1{bottom:594.152000pt;}
.y288{bottom:595.209333pt;}
.y1be{bottom:595.256000pt;}
.yc6{bottom:596.205333pt;}
.y9a{bottom:597.401333pt;}
.y236{bottom:597.800000pt;}
.y2c0{bottom:599.194667pt;}
.y213{bottom:599.990667pt;}
.y33{bottom:601.041333pt;}
.y123{bottom:602.474667pt;}
.y17c{bottom:602.949467pt;}
.yf9{bottom:605.838667pt;}
.y17d{bottom:607.429067pt;}
.y65{bottom:609.266667pt;}
.y153{bottom:610.153333pt;}
.y287{bottom:610.552000pt;}
.y1bd{bottom:610.616000pt;}
.y32{bottom:611.529333pt;}
.yc5{bottom:612.942667pt;}
.y99{bottom:614.138667pt;}
.y235{bottom:614.537333pt;}
.y17b{bottom:619.829467pt;}
.y212{bottom:621.005333pt;}
.y122{bottom:623.489333pt;}
.y286{bottom:625.894667pt;}
.y64{bottom:626.004000pt;}
.y1bc{bottom:626.056400pt;}
.yf8{bottom:626.852000pt;}
.y152{bottom:626.890667pt;}
.yc4{bottom:629.680000pt;}
.y31{bottom:629.733333pt;}
.y2bf{bottom:629.878667pt;}
.y98{bottom:630.876000pt;}
.y234{bottom:631.274667pt;}
.y17a{bottom:636.629467pt;}
.y30{bottom:640.222667pt;}
.y285{bottom:641.237333pt;}
.y1bb{bottom:641.416400pt;}
.y211{bottom:642.018667pt;}
.y63{bottom:642.741333pt;}
.y151{bottom:643.628000pt;}
.y121{bottom:644.502667pt;}
.y2be{bottom:645.221333pt;}
.yc3{bottom:646.417333pt;}
.y97{bottom:647.613333pt;}
.yf7{bottom:647.866667pt;}
.y233{bottom:648.012000pt;}
.y179{bottom:653.509467pt;}
.y2f{bottom:654.569333pt;}
.y284{bottom:656.578667pt;}
.y62{bottom:659.478667pt;}
.y150{bottom:660.365333pt;}
.y2bd{bottom:660.564000pt;}
.y210{bottom:663.033333pt;}
.yc2{bottom:663.154667pt;}
.y96{bottom:664.350667pt;}
.y232{bottom:664.749333pt;}
.y120{bottom:665.517333pt;}
.yf6{bottom:668.880000pt;}
.y178{bottom:670.389600pt;}
.y283{bottom:671.921333pt;}
.y2e{bottom:672.772000pt;}
.y2bc{bottom:675.906667pt;}
.y61{bottom:676.216000pt;}
.y14f{bottom:677.102667pt;}
.y95{bottom:681.088000pt;}
.y231{bottom:681.485333pt;}
.y2d{bottom:683.261333pt;}
.yc1{bottom:683.877333pt;}
.y20f{bottom:684.046667pt;}
.y11f{bottom:686.530667pt;}
.y177{bottom:687.189467pt;}
.y282{bottom:687.264000pt;}
.y1ba{bottom:688.616520pt;}
.yf5{bottom:689.893333pt;}
.y2bb{bottom:691.249333pt;}
.y60{bottom:692.953333pt;}
.y14e{bottom:693.840000pt;}
.y1b9{bottom:697.176400pt;}
.y94{bottom:697.825333pt;}
.y230{bottom:698.222667pt;}
.y2c{bottom:701.465333pt;}
.yc0{bottom:701.809333pt;}
.y281{bottom:702.606667pt;}
.y176{bottom:704.069600pt;}
.y20e{bottom:705.061333pt;}
.y2ba{bottom:706.592000pt;}
.y11e{bottom:707.545333pt;}
.y5f{bottom:709.690667pt;}
.y14d{bottom:710.577333pt;}
.yf4{bottom:710.908000pt;}
.y2b{bottom:711.953333pt;}
.y93{bottom:714.562667pt;}
.y22f{bottom:714.960000pt;}
.y280{bottom:717.949333pt;}
.y175{bottom:720.949467pt;}
.y2b9{bottom:721.934667pt;}
.y20d{bottom:726.074667pt;}
.y2a{bottom:726.300000pt;}
.y5e{bottom:726.428000pt;}
.y14c{bottom:727.314667pt;}
.y11d{bottom:728.558667pt;}
.y92{bottom:731.300000pt;}
.ybf{bottom:731.697333pt;}
.yf3{bottom:731.921333pt;}
.y27f{bottom:733.292000pt;}
.y2b8{bottom:737.277333pt;}
.y174{bottom:737.749467pt;}
.y29{bottom:740.646667pt;}
.y5d{bottom:743.164000pt;}
.y20c{bottom:747.089333pt;}
.y91{bottom:748.036000pt;}
.ybe{bottom:748.434667pt;}
.y27e{bottom:748.634667pt;}
.y11c{bottom:749.573333pt;}
.y2b7{bottom:752.620000pt;}
.yf2{bottom:753.490667pt;}
.y173{bottom:754.629467pt;}
.y28{bottom:758.850667pt;}
.y5c{bottom:759.901333pt;}
.y27d{bottom:763.977333pt;}
.y90{bottom:764.773333pt;}
.ybd{bottom:765.172000pt;}
.y2b6{bottom:767.961333pt;}
.y20b{bottom:768.102667pt;}
.y27{bottom:769.338667pt;}
.y11b{bottom:770.586667pt;}
.y172{bottom:771.509467pt;}
.yf1{bottom:774.505333pt;}
.y5b{bottom:776.638667pt;}
.y14b{bottom:777.924000pt;}
.y27c{bottom:779.320000pt;}
.y8f{bottom:781.510667pt;}
.ybc{bottom:781.909333pt;}
.y2b5{bottom:783.304000pt;}
.y26{bottom:787.542667pt;}
.y171{bottom:788.389600pt;}
.y20a{bottom:789.117333pt;}
.y11a{bottom:791.601333pt;}
.y5a{bottom:793.376000pt;}
.y14a{bottom:794.661333pt;}
.yf0{bottom:795.518667pt;}
.y8e{bottom:798.248000pt;}
.ybb{bottom:798.646667pt;}
.y170{bottom:805.189467pt;}
.y27b{bottom:810.004000pt;}
.y59{bottom:810.113333pt;}
.y209{bottom:810.130667pt;}
.y149{bottom:811.398667pt;}
.y119{bottom:812.614667pt;}
.y16f{bottom:813.269067pt;}
.y2b4{bottom:813.989333pt;}
.y8d{bottom:814.985333pt;}
.yba{bottom:815.384000pt;}
.yef{bottom:816.533333pt;}
.y27a{bottom:825.346667pt;}
.y25{bottom:827.254667pt;}
.y148{bottom:828.136000pt;}
.y2b3{bottom:829.332000pt;}
.y58{bottom:830.836000pt;}
.y208{bottom:831.145333pt;}
.y1b7{bottom:831.722667pt;}
.yb9{bottom:832.121333pt;}
.y118{bottom:833.629333pt;}
.y8c{bottom:835.708000pt;}
.yee{bottom:837.546667pt;}
.y279{bottom:840.689333pt;}
.y24{bottom:843.992000pt;}
.y2b2{bottom:844.674667pt;}
.y147{bottom:844.873333pt;}
.y16e{bottom:846.709467pt;}
.y1b6{bottom:848.460000pt;}
.yb8{bottom:848.858667pt;}
.y207{bottom:852.158667pt;}
.y117{bottom:854.642667pt;}
.y278{bottom:856.032000pt;}
.yed{bottom:858.561333pt;}
.y2b1{bottom:860.017333pt;}
.y23{bottom:860.729333pt;}
.y146{bottom:861.610667pt;}
.y1b5{bottom:865.197333pt;}
.y8b{bottom:865.596000pt;}
.y277{bottom:871.374667pt;}
.y206{bottom:873.173333pt;}
.y2b0{bottom:875.360000pt;}
.y116{bottom:875.657333pt;}
.y145{bottom:878.348000pt;}
.y16d{bottom:878.468787pt;}
.yec{bottom:879.574667pt;}
.y1b4{bottom:881.934667pt;}
.y8a{bottom:882.333333pt;}
.y276{bottom:886.717333pt;}
.y2ae{bottom:890.701333pt;}
.y2af{bottom:890.702667pt;}
.y205{bottom:894.186667pt;}
.y144{bottom:895.085333pt;}
.y16c{bottom:895.509467pt;}
.y22{bottom:896.213333pt;}
.y115{bottom:896.670667pt;}
.y57{bottom:897.636000pt;}
.y89{bottom:899.070667pt;}
.yeb{bottom:900.589333pt;}
.y275{bottom:902.060000pt;}
.y1b3{bottom:902.657333pt;}
.y2ad{bottom:906.044000pt;}
.y142{bottom:911.822667pt;}
.y204{bottom:915.201333pt;}
.y87{bottom:915.808000pt;}
.y143{bottom:916.645333pt;}
.y274{bottom:917.401333pt;}
.y114{bottom:917.685333pt;}
.y88{bottom:920.629333pt;}
.y21{bottom:921.320000pt;}
.y2ac{bottom:921.386667pt;}
.ye9{bottom:921.602667pt;}
.y141{bottom:928.560000pt;}
.ye8{bottom:928.909333pt;}
.y56{bottom:930.872000pt;}
.y86{bottom:932.545333pt;}
.y273{bottom:932.744000pt;}
.yea{bottom:936.214667pt;}
.y2ab{bottom:936.729333pt;}
.y112{bottom:938.698667pt;}
.y16b{bottom:944.149587pt;}
.y140{bottom:945.297333pt;}
.y111{bottom:946.005333pt;}
.y20{bottom:946.425333pt;}
.y272{bottom:948.086667pt;}
.y55{bottom:948.166667pt;}
.y85{bottom:949.282667pt;}
.y2aa{bottom:952.072000pt;}
.y16a{bottom:952.709467pt;}
.y113{bottom:953.310667pt;}
.y13f{bottom:962.034667pt;}
.y271{bottom:963.429333pt;}
.y54{bottom:965.461333pt;}
.y84{bottom:966.020000pt;}
.ye7{bottom:966.977333pt;}
.y2a9{bottom:967.414667pt;}
.y1f{bottom:971.530667pt;}
.y53{bottom:982.757333pt;}
.ye6{bottom:984.073333pt;}
.y1d{bottom:1010.186667pt;}
.y52{bottom:1038.548000pt;}
.h22{height:17.239687pt;}
.h23{height:17.705625pt;}
.h27{height:18.171562pt;}
.h28{height:18.637500pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h12{height:29.397999pt;}
.ha{height:30.945242pt;}
.h1a{height:31.067969pt;}
.h19{height:31.088750pt;}
.he{height:31.157778pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h21{height:35.039062pt;}
.hd{height:35.052646pt;}
.h1c{height:35.062500pt;}
.h11{height:35.212691pt;}
.h26{height:37.242188pt;}
.hf{height:38.415786pt;}
.h25{height:38.462187pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h1b{height:39.010156pt;}
.h16{height:44.436941pt;}
.h4{height:44.738497pt;}
.h8{height:48.486756pt;}
.h13{height:48.683332pt;}
.h1f{height:52.640663pt;}
.h20{height:52.957462pt;}
.h14{height:63.795772pt;}
.h15{height:63.801105pt;}
.h1d{height:67.702500pt;}
.h7{height:69.148877pt;}
.h5{height:82.466667pt;}
.h17{height:93.022438pt;}
.h1e{height:102.200587pt;}
.h18{height:176.639733pt;}
.h24{height:182.225333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.596137pt;}
.w3{width:505.481333pt;}
.w4{width:515.954667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x77{left:-187.286667pt;}
.x9d{left:-181.002667pt;}
.x8f{left:-171.126667pt;}
.x8c{left:-169.926667pt;}
.x8b{left:-161.526667pt;}
.x8e{left:-157.286667pt;}
.x82{left:-151.606667pt;}
.x86{left:-145.606667pt;}
.x8d{left:-140.806667pt;}
.x85{left:-136.726667pt;}
.x89{left:-130.646667pt;}
.x79{left:-128.165467pt;}
.x87{left:-126.726667pt;}
.x81{left:-122.086667pt;}
.x80{left:-121.046667pt;}
.x7e{left:-118.086667pt;}
.x88{left:-117.126667pt;}
.x8a{left:-114.726667pt;}
.x7f{left:-112.246667pt;}
.x7d{left:-110.406667pt;}
.x83{left:-104.966667pt;}
.x7c{left:-101.446667pt;}
.x84{left:-99.046667pt;}
.x78{left:-13.446667pt;}
.x9e{left:-7.162667pt;}
.x0{left:0.000000pt;}
.x9f{left:21.157333pt;}
.x91{left:23.353077pt;}
.xa1{left:24.277285pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:50.159690pt;}
.x75{left:56.229333pt;}
.x64{left:57.906667pt;}
.x5e{left:60.612000pt;}
.x63{left:61.505333pt;}
.x65{left:62.846667pt;}
.x56{left:65.298667pt;}
.x55{left:66.960000pt;}
.x92{left:67.993333pt;}
.x61{left:69.577333pt;}
.x62{left:72.280000pt;}
.x48{left:73.361333pt;}
.x73{left:74.617333pt;}
.x52{left:76.057333pt;}
.x44{left:77.104000pt;}
.x5a{left:78.089333pt;}
.x5f{left:80.157333pt;}
.x54{left:82.017333pt;}
.x60{left:83.708000pt;}
.xac{left:85.074667pt;}
.x5d{left:86.057333pt;}
.x5c{left:87.390667pt;}
.x4c{left:88.557333pt;}
.xb0{left:89.456000pt;}
.x51{left:90.625333pt;}
.x68{left:91.748000pt;}
.x49{left:92.696000pt;}
.x93{left:93.593333pt;}
.x66{left:95.168000pt;}
.x53{left:97.014667pt;}
.x5b{left:98.778667pt;}
.x4a{left:101.037333pt;}
.x67{left:102.370667pt;}
.x46{left:104.145333pt;}
.x72{left:107.888000pt;}
.x4e{left:109.149333pt;}
.x74{left:111.253333pt;}
.x47{left:112.460000pt;}
.x4b{left:113.596000pt;}
.x3f{left:115.825333pt;}
.x4f{left:118.510667pt;}
.x45{left:121.612000pt;}
.xae{left:122.637333pt;}
.x71{left:124.469333pt;}
.x50{left:125.814667pt;}
.x43{left:127.572000pt;}
.xb1{left:128.620000pt;}
.x4d{left:130.088000pt;}
.x7a{left:132.714533pt;}
.xa2{left:135.397541pt;}
.xab{left:143.874667pt;}
.xb4{left:147.025333pt;}
.xaf{left:153.116000pt;}
.xb2{left:156.057333pt;}
.xad{left:158.830667pt;}
.xb3{left:161.658667pt;}
.xaa{left:166.793333pt;}
.xa9{left:200.177333pt;}
.x6e{left:219.865333pt;}
.x7{left:220.912000pt;}
.x4{left:221.858667pt;}
.x3a{left:225.913333pt;}
.x90{left:234.633333pt;}
.x5{left:239.924000pt;}
.x3d{left:241.556000pt;}
.xa0{left:248.599405pt;}
.xc{left:250.204000pt;}
.x21{left:254.041333pt;}
.x28{left:258.798667pt;}
.x76{left:265.353333pt;}
.x3c{left:266.397333pt;}
.x22{left:267.325333pt;}
.xd{left:269.586667pt;}
.x1c{left:272.229333pt;}
.x29{left:273.840000pt;}
.x9{left:276.074667pt;}
.x3b{left:277.081333pt;}
.x69{left:279.721333pt;}
.x1d{left:283.154667pt;}
.x10{left:285.360000pt;}
.x18{left:286.757333pt;}
.xa7{left:288.344000pt;}
.x11{left:292.002667pt;}
.x19{left:293.400000pt;}
.x2c{left:294.425333pt;}
.x31{left:299.197333pt;}
.x3e{left:304.525333pt;}
.x9b{left:310.146667pt;}
.x8{left:323.209333pt;}
.xc7{left:326.260000pt;}
.x94{left:330.793333pt;}
.x6{left:333.301333pt;}
.xa3{left:334.197333pt;}
.x2d{left:335.993333pt;}
.x6f{left:338.722667pt;}
.xbb{left:340.517333pt;}
.x1e{left:341.620000pt;}
.xbe{left:342.600000pt;}
.x2e{left:346.918667pt;}
.xbd{left:349.860000pt;}
.xbc{left:353.801333pt;}
.x96{left:359.033333pt;}
.xa5{left:363.717333pt;}
.x2a{left:369.853333pt;}
.x2b{left:383.136000pt;}
.x1f{left:390.057333pt;}
.xa6{left:391.117333pt;}
.xb9{left:392.894667pt;}
.x95{left:394.553136pt;}
.xa4{left:400.997333pt;}
.x20{left:403.341333pt;}
.x14{left:404.346667pt;}
.xba{left:406.177333pt;}
.x40{left:407.340000pt;}
.x15{left:410.988000pt;}
.x7b{left:413.113733pt;}
.xca{left:433.156000pt;}
.x57{left:436.138667pt;}
.x97{left:439.337333pt;}
.x98{left:461.250667pt;}
.x36{left:464.477333pt;}
.x32{left:474.936000pt;}
.x1a{left:477.212000pt;}
.x37{left:478.962667pt;}
.x1b{left:483.853333pt;}
.x12{left:486.592000pt;}
.x33{left:489.186667pt;}
.x13{left:493.233333pt;}
.xc9{left:496.609333pt;}
.x2f{left:500.124000pt;}
.x30{left:509.144000pt;}
.x41{left:511.594667pt;}
.x38{left:531.314667pt;}
.x58{left:535.593333pt;}
.x39{left:537.026667pt;}
.x34{left:540.729333pt;}
.x35{left:546.441333pt;}
.x42{left:561.280000pt;}
.xcf{left:563.577333pt;}
.xd1{left:564.765333pt;}
.x6a{left:566.046667pt;}
.xb5{left:569.601333pt;}
.x6b{left:571.758667pt;}
.xb6{left:582.885333pt;}
.x59{left:585.278667pt;}
.xd0{left:587.488000pt;}
.xb7{left:589.513333pt;}
.x23{left:595.184000pt;}
.xb8{left:602.797333pt;}
.x24{left:606.109333pt;}
.x16{left:613.186667pt;}
.xc3{left:615.140000pt;}
.x17{left:619.828000pt;}
.x99{left:624.729333pt;}
.xcb{left:627.178667pt;}
.xa{left:632.945333pt;}
.xc8{left:637.209333pt;}
.x70{left:645.525333pt;}
.xcd{left:647.778667pt;}
.xe{left:653.352000pt;}
.x9a{left:655.274667pt;}
.x25{left:657.397333pt;}
.xf{left:659.993333pt;}
.xcc{left:661.305333pt;}
.x26{left:666.420000pt;}
.xc4{left:668.033333pt;}
.xce{left:671.688000pt;}
.xc5{left:680.653333pt;}
.xc6{left:683.701333pt;}
.xb{left:685.021333pt;}
.x6c{left:689.556000pt;}
.x27{left:693.464000pt;}
.xa8{left:696.777333pt;}
.xd2{left:702.038667pt;}
.x9c{left:704.044000pt;}
.xbf{left:712.318667pt;}
.xc0{left:724.937333pt;}
.xd3{left:725.949333pt;}
.xc1{left:727.944000pt;}
.xc2{left:740.564000pt;}
.x6d{left:742.689333pt;}
}




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