
    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_47411e7cd1b3d7c72d831619.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_5dca06f4dad591a7c02de050.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_5c294d95bca1a7cfd5787d08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_290a39c4c6b6069efbedef56.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142000;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_0bd20f76a62e7aad27f5ae8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.144000;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_d0a379c6f6372a0ba8afba02.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_bd34fdf09f0ee0ddab521ff3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.607000;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_bbfbac0b22249439486b85fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.269531;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_905417039440b26967ece94c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9f5ea017015522a478bfdc1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;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_14d15388a06762629da837f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.441000;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_ed12181300dc49e8e2acfeb0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.266000;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_29ac1132de94df49e85fd3d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.698000;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_91d5f6e36e3b5bb845b548a4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.441000;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_2031e26c6d9682f6d63b0d5a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.266000;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_c9b81fdea666e825a7c1b5cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.702000;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_23ddf20defcc7e705325263c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.441000;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_7d1a9b41605a68c5c173a181.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a4ee0f877e444f7c1748f117.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_35dce8b6904b5f7bfac90144.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.441000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_0f83954f55b35a93c6b17a70.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.441000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ff551bfc634965df7694caf4.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f1b164a78c1f2ce2dd9b876c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_da4c84919c424e01c734ea3b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_03026b4410a715f84c3a653d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ca372a95f2c9b9c5d8f5a7c7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_f3cf7e426ea86bd7f6614636.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_36084dce2652f3da341a0dc6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_aae790d31d6fa08b5cf0af17.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.874000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsb7{letter-spacing:-1.836000px;}
.ls70{letter-spacing:-1.620000px;}
.lsb6{letter-spacing:-1.581000px;}
.ls61{letter-spacing:-1.560000px;}
.ls62{letter-spacing:-1.380000px;}
.lsb4{letter-spacing:-1.377000px;}
.lsb8{letter-spacing:-1.275000px;}
.ls17{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-1.080000px;}
.ls42{letter-spacing:-1.020000px;}
.lsb3{letter-spacing:-0.969000px;}
.ls59{letter-spacing:-0.960000px;}
.ls1c{letter-spacing:-0.900000px;}
.ls4a{letter-spacing:-0.840000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb5{letter-spacing:-0.765000px;}
.ls18{letter-spacing:-0.720000px;}
.lsb2{letter-spacing:-0.714000px;}
.ls49{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.540000px;}
.lsa0{letter-spacing:-0.510000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.420000px;}
.lsae{letter-spacing:-0.408000px;}
.ls38{letter-spacing:-0.360000px;}
.ls8e{letter-spacing:-0.357000px;}
.lsa1{letter-spacing:-0.306000px;}
.ls40{letter-spacing:-0.300000px;}
.ls8d{letter-spacing:-0.255000px;}
.ls41{letter-spacing:-0.240000px;}
.ls90{letter-spacing:-0.204000px;}
.lsf{letter-spacing:-0.180000px;}
.ls91{letter-spacing:-0.153000px;}
.ls12{letter-spacing:-0.120000px;}
.ls8c{letter-spacing:-0.102000px;}
.ls14{letter-spacing:-0.060000px;}
.ls8b{letter-spacing:-0.051000px;}
.lse{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000037px;}
.ls7e{letter-spacing:0.051000px;}
.lsb0{letter-spacing:0.056052px;}
.ls6{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.090000px;}
.ls82{letter-spacing:0.102000px;}
.ls4c{letter-spacing:0.119953px;}
.ls8{letter-spacing:0.120000px;}
.lsa2{letter-spacing:0.127500px;}
.ls4f{letter-spacing:0.150000px;}
.ls8f{letter-spacing:0.153000px;}
.lsc{letter-spacing:0.178791px;}
.ls7{letter-spacing:0.180000px;}
.ls7d{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.210000px;}
.ls58{letter-spacing:0.215973px;}
.lsac{letter-spacing:0.229500px;}
.ls71{letter-spacing:0.239990px;}
.ls1{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.255000px;}
.ls86{letter-spacing:0.264000px;}
.ls5b{letter-spacing:0.270000px;}
.ls6e{letter-spacing:0.275988px;}
.ls75{letter-spacing:0.276000px;}
.lsab{letter-spacing:0.280500px;}
.ls3d{letter-spacing:0.282000px;}
.ls8a{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls60{letter-spacing:0.305963px;}
.ls85{letter-spacing:0.306000px;}
.ls46{letter-spacing:0.330000px;}
.lsb1{letter-spacing:0.331500px;}
.lsaa{letter-spacing:0.356979px;}
.ls89{letter-spacing:0.357000px;}
.ls2c{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.365989px;}
.ls39{letter-spacing:0.390000px;}
.ls84{letter-spacing:0.408000px;}
.ls3a{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.444000px;}
.ls45{letter-spacing:0.450000px;}
.ls80{letter-spacing:0.459000px;}
.ls48{letter-spacing:0.479991px;}
.ls4{letter-spacing:0.480000px;}
.ls69{letter-spacing:0.510000px;}
.ls29{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.552000px;}
.ls87{letter-spacing:0.561000px;}
.ls50{letter-spacing:0.570000px;}
.ls3c{letter-spacing:0.600000px;}
.ls81{letter-spacing:0.612000px;}
.ls35{letter-spacing:0.630000px;}
.lsad{letter-spacing:0.637500px;}
.ls3e{letter-spacing:0.642000px;}
.ls4b{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.660000px;}
.ls7f{letter-spacing:0.663000px;}
.ls77{letter-spacing:0.690000px;}
.ls88{letter-spacing:0.714000px;}
.ls33{letter-spacing:0.720000px;}
.ls6d{letter-spacing:0.731987px;}
.lsa8{letter-spacing:0.739500px;}
.ls5c{letter-spacing:0.750000px;}
.ls76{letter-spacing:0.765000px;}
.ls68{letter-spacing:0.768000px;}
.ls27{letter-spacing:0.780000px;}
.lsa7{letter-spacing:0.790500px;}
.ls93{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.lsa4{letter-spacing:0.841500px;}
.lsa3{letter-spacing:0.851666px;}
.ls97{letter-spacing:0.867000px;}
.ls4e{letter-spacing:0.870000px;}
.ls9d{letter-spacing:0.892500px;}
.ls73{letter-spacing:0.894000px;}
.ls74{letter-spacing:0.899992px;}
.ls28{letter-spacing:0.900000px;}
.ls83{letter-spacing:0.918000px;}
.ls34{letter-spacing:0.960000px;}
.ls94{letter-spacing:0.969000px;}
.ls5d{letter-spacing:0.990000px;}
.ls65{letter-spacing:1.019973px;}
.ls31{letter-spacing:1.020000px;}
.ls6c{letter-spacing:1.031988px;}
.ls5f{letter-spacing:1.050000px;}
.ls99{letter-spacing:1.071000px;}
.ls36{letter-spacing:1.080000px;}
.ls96{letter-spacing:1.122000px;}
.ls25{letter-spacing:1.140000px;}
.ls92{letter-spacing:1.173000px;}
.ls67{letter-spacing:1.187989px;}
.ls2b{letter-spacing:1.200000px;}
.ls9b{letter-spacing:1.224000px;}
.ls7b{letter-spacing:1.230000px;}
.ls44{letter-spacing:1.260000px;}
.ls5e{letter-spacing:1.266000px;}
.ls9a{letter-spacing:1.275000px;}
.lsb{letter-spacing:1.320000px;}
.ls9f{letter-spacing:1.377000px;}
.ls2a{letter-spacing:1.380000px;}
.ls43{letter-spacing:1.392000px;}
.ls63{letter-spacing:1.403973px;}
.ls3b{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.500000px;}
.ls24{letter-spacing:1.530000px;}
.ls1e{letter-spacing:1.560000px;}
.ls30{letter-spacing:1.590000px;}
.ls2d{letter-spacing:1.620000px;}
.ls1d{letter-spacing:1.680000px;}
.lsa9{letter-spacing:1.734000px;}
.ls1f{letter-spacing:1.740000px;}
.ls52{letter-spacing:1.770000px;}
.lsa{letter-spacing:1.800000px;}
.ls26{letter-spacing:1.860000px;}
.ls7c{letter-spacing:1.890000px;}
.ls6b{letter-spacing:1.919958px;}
.ls53{letter-spacing:1.920000px;}
.ls32{letter-spacing:1.980000px;}
.lsa5{letter-spacing:1.989000px;}
.ls5a{letter-spacing:1.998000px;}
.ls79{letter-spacing:2.010000px;}
.ls55{letter-spacing:2.040000px;}
.ls9{letter-spacing:2.100000px;}
.ls51{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.220000px;}
.ls23{letter-spacing:2.280000px;}
.ls37{letter-spacing:2.340000px;}
.ls22{letter-spacing:2.400000px;}
.ls7a{letter-spacing:2.460000px;}
.ls20{letter-spacing:2.580000px;}
.lsaf{letter-spacing:2.616279px;}
.ls6a{letter-spacing:2.700000px;}
.ls9c{letter-spacing:2.794800px;}
.ls54{letter-spacing:2.820000px;}
.ls98{letter-spacing:3.054900px;}
.ls9e{letter-spacing:3.060000px;}
.ls78{letter-spacing:3.720000px;}
.ls95{letter-spacing:3.743400px;}
.ls0{letter-spacing:3.990000px;}
.ls72{letter-spacing:6.528000px;}
.ls6f{letter-spacing:9.001500px;}
.lsa6{letter-spacing:9.746100px;}
.ls57{letter-spacing:16.684169px;}
.ls56{letter-spacing:20.225054px;}
.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;}
}
.ws98{word-spacing:-61.260000px;}
.ws87{word-spacing:-60.900000px;}
.ws95{word-spacing:-60.780000px;}
.ws97{word-spacing:-60.720000px;}
.ws82{word-spacing:-60.480000px;}
.wsf4{word-spacing:-60.120000px;}
.ws72{word-spacing:-60.060000px;}
.ws59{word-spacing:-60.000000px;}
.ws99{word-spacing:-59.580000px;}
.ws96{word-spacing:-59.100000px;}
.ws9d{word-spacing:-16.684169px;}
.ws27{word-spacing:-16.620000px;}
.wsb4{word-spacing:-16.140000px;}
.ws28{word-spacing:-16.020000px;}
.ws94{word-spacing:-15.960000px;}
.wsf2{word-spacing:-15.780000px;}
.ws29{word-spacing:-15.660000px;}
.wsd0{word-spacing:-15.600000px;}
.wse4{word-spacing:-15.480000px;}
.ws57{word-spacing:-15.300000px;}
.ws58{word-spacing:-15.240000px;}
.ws5a{word-spacing:-15.000000px;}
.wse3{word-spacing:-14.880000px;}
.wsa3{word-spacing:-14.700000px;}
.ws8{word-spacing:-14.280000px;}
.wsb2{word-spacing:-14.100000px;}
.ws7{word-spacing:-13.920000px;}
.ws10a{word-spacing:-13.515000px;}
.ws9{word-spacing:-13.005000px;}
.wsf6{word-spacing:-12.852000px;}
.ws55{word-spacing:-12.750000px;}
.ws9e{word-spacing:-12.540000px;}
.wsb3{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws88{word-spacing:-11.520000px;}
.ws5{word-spacing:-10.740000px;}
.wsa2{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.wsf5{word-spacing:-9.741000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws74{word-spacing:-7.500000px;}
.wsce{word-spacing:-6.375000px;}
.ws3b{word-spacing:-2.340000px;}
.ws75{word-spacing:-2.220000px;}
.ws30{word-spacing:-2.100000px;}
.ws116{word-spacing:-2.040000px;}
.ws12f{word-spacing:-1.989000px;}
.ws3e{word-spacing:-1.980000px;}
.ws9a{word-spacing:-1.860000px;}
.ws35{word-spacing:-1.800000px;}
.ws2e{word-spacing:-1.740000px;}
.ws93{word-spacing:-1.560000px;}
.ws117{word-spacing:-1.530000px;}
.wsd{word-spacing:-1.500000px;}
.ws7e{word-spacing:-1.440000px;}
.ws49{word-spacing:-1.380000px;}
.wsa0{word-spacing:-1.320000px;}
.wsf9{word-spacing:-1.275000px;}
.ws63{word-spacing:-1.260000px;}
.ws142{word-spacing:-1.224000px;}
.ws40{word-spacing:-1.200000px;}
.ws13e{word-spacing:-1.173000px;}
.ws38{word-spacing:-1.140000px;}
.wsfc{word-spacing:-1.122000px;}
.ws3f{word-spacing:-1.080000px;}
.ws107{word-spacing:-1.071000px;}
.ws46{word-spacing:-1.020000px;}
.wsfe{word-spacing:-0.969000px;}
.ws32{word-spacing:-0.960000px;}
.ws126{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.900000px;}
.ws11b{word-spacing:-0.867000px;}
.ws4c{word-spacing:-0.840000px;}
.ws13f{word-spacing:-0.816000px;}
.ws3c{word-spacing:-0.780000px;}
.wsff{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.ws108{word-spacing:-0.714000px;}
.ws36{word-spacing:-0.660000px;}
.ws26{word-spacing:-0.612000px;}
.ws20{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.570000px;}
.ws10d{word-spacing:-0.561000px;}
.ws44{word-spacing:-0.540000px;}
.ws111{word-spacing:-0.510000px;}
.ws7b{word-spacing:-0.480000px;}
.ws56{word-spacing:-0.459000px;}
.ws12{word-spacing:-0.420000px;}
.ws12c{word-spacing:-0.408000px;}
.ws7d{word-spacing:-0.360000px;}
.ws12d{word-spacing:-0.357000px;}
.ws141{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.ws100{word-spacing:-0.264000px;}
.ws109{word-spacing:-0.255000px;}
.ws31{word-spacing:-0.240000px;}
.ws129{word-spacing:-0.204000px;}
.ws5c{word-spacing:-0.180000px;}
.ws101{word-spacing:-0.153000px;}
.ws61{word-spacing:-0.120000px;}
.ws143{word-spacing:-0.102000px;}
.ws6{word-spacing:-0.072000px;}
.wse{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.ws112{word-spacing:0.051000px;}
.ws48{word-spacing:0.060000px;}
.wsf1{word-spacing:0.102000px;}
.ws23{word-spacing:0.120000px;}
.wsfa{word-spacing:0.153000px;}
.ws11{word-spacing:0.180000px;}
.ws123{word-spacing:0.204000px;}
.ws85{word-spacing:0.240000px;}
.ws4e{word-spacing:0.300000px;}
.ws110{word-spacing:0.306000px;}
.ws128{word-spacing:0.357000px;}
.ws5e{word-spacing:0.360000px;}
.wsf8{word-spacing:0.408000px;}
.ws66{word-spacing:0.420000px;}
.ws121{word-spacing:0.459000px;}
.ws22{word-spacing:0.480000px;}
.wsd9{word-spacing:0.510000px;}
.ws1a{word-spacing:0.540000px;}
.wsef{word-spacing:0.561000px;}
.ws18{word-spacing:0.600000px;}
.ws138{word-spacing:0.612000px;}
.ws62{word-spacing:0.660000px;}
.ws137{word-spacing:0.663000px;}
.ws13d{word-spacing:0.714000px;}
.ws13{word-spacing:0.720000px;}
.wse2{word-spacing:0.765000px;}
.ws8f{word-spacing:0.780000px;}
.wsa8{word-spacing:0.816000px;}
.ws53{word-spacing:0.840000px;}
.wsa9{word-spacing:0.867000px;}
.ws37{word-spacing:0.900000px;}
.ws10e{word-spacing:0.918000px;}
.ws79{word-spacing:0.960000px;}
.ws136{word-spacing:0.969000px;}
.ws69{word-spacing:1.020000px;}
.wsdf{word-spacing:1.071000px;}
.ws21{word-spacing:1.080000px;}
.ws42{word-spacing:1.140000px;}
.ws106{word-spacing:1.173000px;}
.ws8e{word-spacing:1.200000px;}
.wsbf{word-spacing:1.224000px;}
.ws19{word-spacing:1.260000px;}
.wsfb{word-spacing:1.275000px;}
.ws41{word-spacing:1.320000px;}
.ws102{word-spacing:1.326000px;}
.ws6d{word-spacing:1.377000px;}
.ws86{word-spacing:1.380000px;}
.ws120{word-spacing:1.428000px;}
.ws77{word-spacing:1.440000px;}
.wsf{word-spacing:1.500000px;}
.wsee{word-spacing:1.530000px;}
.ws24{word-spacing:1.560000px;}
.ws11d{word-spacing:1.581000px;}
.ws81{word-spacing:1.620000px;}
.ws127{word-spacing:1.632000px;}
.ws16{word-spacing:1.680000px;}
.ws6e{word-spacing:1.683000px;}
.ws11c{word-spacing:1.734000px;}
.ws1d{word-spacing:1.740000px;}
.ws103{word-spacing:1.785000px;}
.ws1f{word-spacing:1.800000px;}
.wsa5{word-spacing:1.836000px;}
.ws50{word-spacing:1.860000px;}
.ws115{word-spacing:1.887000px;}
.ws5f{word-spacing:1.920000px;}
.wsa4{word-spacing:1.938000px;}
.ws10{word-spacing:1.980000px;}
.ws131{word-spacing:1.989000px;}
.ws2d{word-spacing:2.040000px;}
.ws10f{word-spacing:2.091000px;}
.ws15{word-spacing:2.100000px;}
.ws68{word-spacing:2.160000px;}
.ws11f{word-spacing:2.193000px;}
.ws84{word-spacing:2.220000px;}
.wsa1{word-spacing:2.244000px;}
.ws7c{word-spacing:2.280000px;}
.ws113{word-spacing:2.295000px;}
.ws1c{word-spacing:2.340000px;}
.ws12b{word-spacing:2.346000px;}
.ws125{word-spacing:2.397000px;}
.ws83{word-spacing:2.400000px;}
.ws13a{word-spacing:2.448000px;}
.ws67{word-spacing:2.460000px;}
.ws11a{word-spacing:2.499000px;}
.ws52{word-spacing:2.520000px;}
.ws122{word-spacing:2.550000px;}
.ws5d{word-spacing:2.580000px;}
.wsfd{word-spacing:2.601000px;}
.ws34{word-spacing:2.640000px;}
.ws12a{word-spacing:2.652000px;}
.ws2c{word-spacing:2.700000px;}
.ws13c{word-spacing:2.754000px;}
.ws60{word-spacing:2.760000px;}
.ws130{word-spacing:2.805000px;}
.ws1b{word-spacing:2.820000px;}
.ws133{word-spacing:2.856000px;}
.ws33{word-spacing:2.880000px;}
.ws17{word-spacing:2.940000px;}
.ws140{word-spacing:2.958000px;}
.ws47{word-spacing:3.000000px;}
.ws135{word-spacing:3.009000px;}
.ws54{word-spacing:3.060000px;}
.ws10c{word-spacing:3.111000px;}
.ws8a{word-spacing:3.120000px;}
.ws132{word-spacing:3.162000px;}
.ws8c{word-spacing:3.180000px;}
.ws65{word-spacing:3.240000px;}
.ws71{word-spacing:3.264000px;}
.ws2a{word-spacing:3.300000px;}
.wsb6{word-spacing:3.360000px;}
.ws11e{word-spacing:3.417000px;}
.ws3d{word-spacing:3.420000px;}
.wsdd{word-spacing:3.468000px;}
.ws2b{word-spacing:3.480000px;}
.ws5b{word-spacing:3.540000px;}
.ws139{word-spacing:3.570000px;}
.ws51{word-spacing:3.600000px;}
.ws7f{word-spacing:3.660000px;}
.ws119{word-spacing:3.672000px;}
.wsb7{word-spacing:3.720000px;}
.wsed{word-spacing:3.774000px;}
.ws92{word-spacing:3.780000px;}
.ws45{word-spacing:3.840000px;}
.ws9c{word-spacing:3.900000px;}
.wsdb{word-spacing:3.960000px;}
.ws80{word-spacing:4.020000px;}
.ws10b{word-spacing:4.029000px;}
.ws89{word-spacing:4.080000px;}
.wsea{word-spacing:4.131000px;}
.ws2f{word-spacing:4.140000px;}
.ws134{word-spacing:4.182000px;}
.ws4a{word-spacing:4.200000px;}
.ws90{word-spacing:4.260000px;}
.ws13b{word-spacing:4.284000px;}
.ws4d{word-spacing:4.320000px;}
.wsba{word-spacing:4.380000px;}
.ws124{word-spacing:4.437000px;}
.ws8d{word-spacing:4.440000px;}
.wse6{word-spacing:4.500000px;}
.ws39{word-spacing:4.560000px;}
.wsb0{word-spacing:4.590000px;}
.wsb8{word-spacing:4.620000px;}
.wsad{word-spacing:4.641000px;}
.ws6a{word-spacing:4.680000px;}
.ws6b{word-spacing:4.692000px;}
.ws4f{word-spacing:4.740000px;}
.wsae{word-spacing:4.743000px;}
.wsbc{word-spacing:4.794000px;}
.wsf3{word-spacing:4.800000px;}
.ws9f{word-spacing:4.860000px;}
.ws64{word-spacing:4.920000px;}
.wsb1{word-spacing:4.947000px;}
.ws7a{word-spacing:4.980000px;}
.ws78{word-spacing:5.040000px;}
.wsb5{word-spacing:5.100000px;}
.wsac{word-spacing:5.151000px;}
.wse1{word-spacing:5.220000px;}
.ws73{word-spacing:5.280000px;}
.wsc0{word-spacing:5.304000px;}
.ws3a{word-spacing:5.340000px;}
.wse5{word-spacing:5.400000px;}
.wsab{word-spacing:5.406000px;}
.wsbe{word-spacing:5.457000px;}
.wsb9{word-spacing:5.460000px;}
.ws43{word-spacing:5.580000px;}
.ws4b{word-spacing:5.700000px;}
.wscc{word-spacing:5.760000px;}
.ws118{word-spacing:5.814000px;}
.wscd{word-spacing:5.940000px;}
.wsa7{word-spacing:5.967000px;}
.wsf0{word-spacing:6.120000px;}
.wsd1{word-spacing:6.180000px;}
.ws104{word-spacing:6.222000px;}
.ws8b{word-spacing:6.300000px;}
.wse7{word-spacing:6.420000px;}
.wsde{word-spacing:6.528000px;}
.wscb{word-spacing:6.540000px;}
.wsda{word-spacing:6.780000px;}
.ws114{word-spacing:6.834000px;}
.ws9b{word-spacing:6.960000px;}
.wseb{word-spacing:7.191000px;}
.wsd5{word-spacing:7.320000px;}
.wsc1{word-spacing:7.446000px;}
.ws91{word-spacing:7.560000px;}
.wsd6{word-spacing:7.740000px;}
.wsd4{word-spacing:7.980000px;}
.ws12e{word-spacing:8.007000px;}
.ws105{word-spacing:8.109000px;}
.wsa6{word-spacing:8.160000px;}
.wse0{word-spacing:8.400000px;}
.ws6c{word-spacing:8.619000px;}
.wsd7{word-spacing:8.670000px;}
.ws6f{word-spacing:8.721000px;}
.ws76{word-spacing:8.760000px;}
.wsd8{word-spacing:9.027000px;}
.wsaf{word-spacing:9.537000px;}
.wsaa{word-spacing:10.251000px;}
.ws70{word-spacing:10.404000px;}
.wsf7{word-spacing:10.440000px;}
.wsd3{word-spacing:11.160000px;}
.wsd2{word-spacing:11.220000px;}
.wsbb{word-spacing:12.291000px;}
.wsec{word-spacing:12.750000px;}
.wsdc{word-spacing:13.362000px;}
.ws144{word-spacing:13.515000px;}
.wscf{word-spacing:13.719000px;}
.wsbd{word-spacing:15.351000px;}
.wse9{word-spacing:17.238000px;}
.wse8{word-spacing:17.289000px;}
.ws145{word-spacing:17.595000px;}
.wsc2{word-spacing:44.268000px;}
.wsc3{word-spacing:49.980000px;}
.wsc4{word-spacing:50.286000px;}
.ws25{word-spacing:72.267000px;}
.wsca{word-spacing:115.922994px;}
.wsc6{word-spacing:117.453000px;}
.wsc9{word-spacing:181.203000px;}
.wsc8{word-spacing:497.403000px;}
.wsc5{word-spacing:505.869000px;}
.wsc7{word-spacing:505.920000px;}
._c{margin-left:-2959.376944px;}
._7{margin-left:-96.900000px;}
._4{margin-left:-16.575000px;}
._4e{margin-left:-15.480000px;}
._2c{margin-left:-13.860000px;}
._2b{margin-left:-12.120000px;}
._29{margin-left:-11.040000px;}
._4d{margin-left:-9.971977px;}
._23{margin-left:-8.928023px;}
._28{margin-left:-7.248000px;}
._26{margin-left:-5.844026px;}
._3{margin-left:-4.170000px;}
._1{margin-left:-2.688000px;}
._0{margin-left:-1.632000px;}
._2{width:1.900800px;}
._b{width:3.384000px;}
._9{width:4.410000px;}
._a{width:5.700000px;}
._25{width:6.714000px;}
._22{width:8.058000px;}
._24{width:10.068000px;}
._2a{width:11.934000px;}
._4f{width:14.340000px;}
._d{width:15.381900px;}
._27{width:16.662000px;}
._5{width:18.360000px;}
._11{width:38.694000px;}
._6{width:54.621000px;}
._32{width:57.018000px;}
._1d{width:59.057985px;}
._33{width:60.267000px;}
._3d{width:62.730000px;}
._1a{width:68.901000px;}
._1b{width:82.518000px;}
._10{width:90.817200px;}
._18{width:94.095000px;}
._36{width:98.735990px;}
._30{width:109.191000px;}
._17{width:111.180000px;}
._19{width:116.178000px;}
._35{width:118.320000px;}
._4a{width:122.094000px;}
._3b{width:126.837000px;}
._3e{width:129.897000px;}
._3c{width:137.853000px;}
._45{width:138.938990px;}
._47{width:145.911000px;}
._38{width:149.022000px;}
._13{width:153.000000px;}
._3a{width:155.703000px;}
._49{width:157.539000px;}
._f{width:159.222000px;}
._31{width:161.415000px;}
._44{width:165.072010px;}
._37{width:166.311000px;}
._40{width:174.522000px;}
._1f{width:186.966000px;}
._41{width:191.811000px;}
._43{width:193.647000px;}
._46{width:194.885990px;}
._42{width:197.420990px;}
._3f{width:235.670990px;}
._14{width:255.510000px;}
._2e{width:292.269623px;}
._1c{width:293.760000px;}
._15{width:300.696000px;}
._12{width:302.583000px;}
._1e{width:336.396000px;}
._34{width:365.874000px;}
._21{width:402.593985px;}
._39{width:406.557000px;}
._2d{width:408.295080px;}
._16{width:427.328985px;}
._2f{width:580.710623px;}
._48{width:602.564964px;}
._4b{width:664.631960px;}
._20{width:779.024990px;}
._4c{width:964.295954px;}
._e{width:1234.423217px;}
._8{width:1985.277056px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:0.045410px;}
.y1b5{bottom:0.045456px;}
.y1c5{bottom:0.190543px;}
.y1ca{bottom:0.195282px;}
.y16d{bottom:0.195419px;}
.y16f{bottom:0.195442px;}
.y1c7{bottom:1.651978px;}
.y1ce{bottom:3.045227px;}
.y1c2{bottom:5.445282px;}
.y1c4{bottom:12.951141px;}
.y1{bottom:68.829002px;}
.y256{bottom:112.670648px;}
.y255{bottom:112.683443px;}
.y254{bottom:112.708983px;}
.y253{bottom:112.734524px;}
.y252{bottom:112.760064px;}
.y251{bottom:112.785605px;}
.y250{bottom:112.811145px;}
.y24f{bottom:112.836686px;}
.y24e{bottom:112.849481px;}
.y24d{bottom:112.862274px;}
.y24c{bottom:112.887817px;}
.y24b{bottom:112.900612px;}
.y6a{bottom:112.932300px;}
.y74{bottom:112.934960px;}
.y7a{bottom:112.934992px;}
.y6c{bottom:112.935007px;}
.y80{bottom:112.935024px;}
.y8b{bottom:112.935038px;}
.y96{bottom:112.935052px;}
.y86{bottom:112.935059px;}
.y91{bottom:112.935073px;}
.y9c{bottom:112.935087px;}
.y32{bottom:112.938300px;}
.yae{bottom:112.947807px;}
.ya9{bottom:112.947828px;}
.ya4{bottom:112.947873px;}
.y20b{bottom:112.968289px;}
.y107{bottom:112.974289px;}
.y21d{bottom:112.986289px;}
.y2bd{bottom:112.998289px;}
.y27d{bottom:113.161796px;}
.y1e5{bottom:113.395800px;}
.y68{bottom:113.415344px;}
.y2b1{bottom:113.544342px;}
.y272{bottom:113.763290px;}
.y20f{bottom:113.881800px;}
.y212{bottom:113.894550px;}
.y16b{bottom:114.169796px;}
.y191{bottom:114.694794px;}
.ye6{bottom:114.735260px;}
.y113{bottom:114.735306px;}
.y1b0{bottom:114.874809px;}
.y1f5{bottom:114.874947px;}
.y248{bottom:114.874969px;}
.y2fd{bottom:118.003800px;}
.y75{bottom:121.936460px;}
.y7b{bottom:121.936492px;}
.y81{bottom:121.936524px;}
.y8c{bottom:121.936538px;}
.y97{bottom:121.936552px;}
.y87{bottom:121.936559px;}
.y92{bottom:121.936573px;}
.y9d{bottom:121.936587px;}
.yaf{bottom:121.949307px;}
.yaa{bottom:121.949328px;}
.ya5{bottom:121.949373px;}
.y20a{bottom:127.962289px;}
.y106{bottom:127.968289px;}
.y21c{bottom:127.980289px;}
.y2bc{bottom:127.992289px;}
.y27c{bottom:128.155796px;}
.y1e4{bottom:128.389800px;}
.y20e{bottom:128.875800px;}
.y211{bottom:128.888550px;}
.y2c9{bottom:129.794556px;}
.y2b{bottom:130.711349px;}
.y33e{bottom:131.608823px;}
.y37f{bottom:131.991307px;}
.y67{bottom:132.165344px;}
.y2b0{bottom:132.294342px;}
.y271{bottom:132.513290px;}
.y2fc{bottom:132.997800px;}
.y31{bottom:133.032303px;}
.y276{bottom:133.108805px;}
.y190{bottom:133.444794px;}
.ye5{bottom:133.485260px;}
.y175{bottom:133.485294px;}
.y112{bottom:133.485306px;}
.y1af{bottom:133.624809px;}
.y1f4{bottom:133.624947px;}
.y247{bottom:133.624969px;}
.y209{bottom:142.956289px;}
.y105{bottom:142.962289px;}
.y21b{bottom:142.974289px;}
.y2bb{bottom:142.986289px;}
.y27b{bottom:143.149796px;}
.y261{bottom:143.368948px;}
.y20d{bottom:143.869800px;}
.y210{bottom:143.882550px;}
.y2c8{bottom:144.788556px;}
.y33d{bottom:146.602823px;}
.y37e{bottom:146.985307px;}
.y2fb{bottom:147.991800px;}
.y275{bottom:148.102805px;}
.y2a{bottom:149.461349px;}
.y30{bottom:150.491553px;}
.y66{bottom:150.915344px;}
.y2af{bottom:151.044342px;}
.y270{bottom:151.263290px;}
.y18f{bottom:152.194794px;}
.ye4{bottom:152.235260px;}
.y174{bottom:152.235294px;}
.y111{bottom:152.235306px;}
.y1ae{bottom:152.374809px;}
.y1f3{bottom:152.374947px;}
.y246{bottom:152.374969px;}
.y208{bottom:157.950289px;}
.y104{bottom:157.956289px;}
.y21a{bottom:157.968289px;}
.y2ba{bottom:157.980289px;}
.y260{bottom:158.362948px;}
.y2c7{bottom:159.782556px;}
.y33c{bottom:161.596823px;}
.y37d{bottom:161.979307px;}
.y2fa{bottom:162.985800px;}
.y274{bottom:163.096805px;}
.y2f{bottom:165.485553px;}
.y29{bottom:168.211349px;}
.y65{bottom:169.665344px;}
.y2ae{bottom:169.794342px;}
.y26f{bottom:170.013290px;}
.y18e{bottom:170.944794px;}
.ye3{bottom:170.985260px;}
.y173{bottom:170.985294px;}
.y110{bottom:170.985306px;}
.y1ad{bottom:171.124809px;}
.y1f2{bottom:171.124947px;}
.y245{bottom:171.124969px;}
.y207{bottom:172.944289px;}
.y103{bottom:172.950289px;}
.y219{bottom:172.962289px;}
.y2b9{bottom:172.974289px;}
.y25f{bottom:173.356948px;}
.y2c6{bottom:174.776556px;}
.y33b{bottom:176.590823px;}
.y37c{bottom:176.973307px;}
.y2f9{bottom:177.979800px;}
.y273{bottom:178.090805px;}
.y2e{bottom:185.579556px;}
.y206{bottom:187.938289px;}
.y102{bottom:187.944289px;}
.y218{bottom:187.956289px;}
.y2b8{bottom:187.968289px;}
.y25e{bottom:188.350948px;}
.y64{bottom:188.415344px;}
.y2ad{bottom:188.544342px;}
.y26e{bottom:188.763290px;}
.y18d{bottom:189.694794px;}
.ye2{bottom:189.735260px;}
.y172{bottom:189.735294px;}
.y10f{bottom:189.735306px;}
.y2c5{bottom:189.770556px;}
.y1ac{bottom:189.874809px;}
.y1f1{bottom:189.874947px;}
.y244{bottom:189.874969px;}
.y33a{bottom:191.584823px;}
.y37b{bottom:191.967307px;}
.y2f8{bottom:192.973800px;}
.y101{bottom:202.938289px;}
.y217{bottom:202.950289px;}
.y2b7{bottom:202.962289px;}
.y2c4{bottom:204.764556px;}
.y28{bottom:205.711349px;}
.y339{bottom:206.578823px;}
.y37a{bottom:206.961307px;}
.y63{bottom:207.165344px;}
.y2ac{bottom:207.294342px;}
.y26d{bottom:207.513290px;}
.y2f7{bottom:207.967800px;}
.y205{bottom:208.032303px;}
.y18c{bottom:208.444794px;}
.ye1{bottom:208.485260px;}
.y10e{bottom:208.485306px;}
.y1ab{bottom:208.624809px;}
.y1f0{bottom:208.624947px;}
.y243{bottom:208.624969px;}
.y2d{bottom:210.580059px;}
.y216{bottom:217.944289px;}
.y2b6{bottom:217.956289px;}
.y2c3{bottom:219.758556px;}
.y338{bottom:221.572823px;}
.y379{bottom:221.955307px;}
.y2f6{bottom:222.961800px;}
.y100{bottom:223.032303px;}
.y2c{bottom:225.574059px;}
.y62{bottom:225.915344px;}
.y2ab{bottom:226.044342px;}
.y26c{bottom:226.263290px;}
.y18b{bottom:227.194794px;}
.ye0{bottom:227.235260px;}
.y10d{bottom:227.235306px;}
.y171{bottom:227.241306px;}
.y1aa{bottom:227.374809px;}
.y1ef{bottom:227.374947px;}
.y242{bottom:227.374969px;}
.y215{bottom:232.938289px;}
.y2b5{bottom:232.950289px;}
.y6b{bottom:233.426994px;}
.y76{bottom:233.435208px;}
.y7c{bottom:233.435241px;}
.y6d{bottom:233.435257px;}
.y82{bottom:233.435273px;}
.y8d{bottom:233.435287px;}
.y98{bottom:233.435301px;}
.y88{bottom:233.435308px;}
.y93{bottom:233.435322px;}
.y9e{bottom:233.435336px;}
.yb0{bottom:233.448056px;}
.yab{bottom:233.448077px;}
.ya6{bottom:233.448121px;}
.y2c2{bottom:234.752556px;}
.y337{bottom:236.566823px;}
.y378{bottom:236.949307px;}
.y2f5{bottom:237.955800px;}
.y83{bottom:242.436773px;}
.y8e{bottom:242.436787px;}
.y99{bottom:242.436801px;}
.y89{bottom:242.436808px;}
.y94{bottom:242.436822px;}
.y9f{bottom:242.436836px;}
.yb1{bottom:242.449556px;}
.yac{bottom:242.449577px;}
.ya7{bottom:242.449621px;}
.y27{bottom:243.211349px;}
.y61{bottom:244.665344px;}
.y2aa{bottom:244.794342px;}
.y26b{bottom:245.013290px;}
.y18a{bottom:245.944794px;}
.ydf{bottom:245.985260px;}
.y10c{bottom:245.985306px;}
.y1a9{bottom:246.124809px;}
.y1ee{bottom:246.124947px;}
.y241{bottom:246.124969px;}
.y2b4{bottom:247.944289px;}
.y2c1{bottom:249.746556px;}
.y336{bottom:251.560823px;}
.y377{bottom:251.943307px;}
.y2f4{bottom:252.949800px;}
.y214{bottom:253.032303px;}
.y26{bottom:261.961349px;}
.y2b3{bottom:262.938289px;}
.y60{bottom:263.415344px;}
.y2a9{bottom:263.544342px;}
.y26a{bottom:263.763290px;}
.y189{bottom:264.694794px;}
.yde{bottom:264.735260px;}
.y10b{bottom:264.735306px;}
.y2c0{bottom:264.740556px;}
.y1a8{bottom:264.874809px;}
.y1ed{bottom:264.874947px;}
.y240{bottom:264.874969px;}
.y335{bottom:266.554823px;}
.y376{bottom:266.937307px;}
.y2f3{bottom:267.943800px;}
.y24{bottom:280.711349px;}
.y334{bottom:281.548823px;}
.y375{bottom:281.931307px;}
.y5f{bottom:282.165344px;}
.y2a8{bottom:282.294342px;}
.y269{bottom:282.513290px;}
.y2f2{bottom:282.937800px;}
.y249{bottom:282.968559px;}
.y24a{bottom:282.972902px;}
.y2b2{bottom:283.032303px;}
.y188{bottom:283.444794px;}
.ydd{bottom:283.485260px;}
.yff{bottom:283.485306px;}
.y1a7{bottom:283.624809px;}
.y23f{bottom:283.624969px;}
.y2bf{bottom:294.741306px;}
.y333{bottom:296.542823px;}
.y374{bottom:296.925307px;}
.y2f1{bottom:297.931800px;}
.y23{bottom:299.461349px;}
.y5e{bottom:300.915344px;}
.y2a7{bottom:301.044342px;}
.y268{bottom:301.263290px;}
.y187{bottom:302.194794px;}
.ydc{bottom:302.235260px;}
.yfe{bottom:302.235306px;}
.y1a6{bottom:302.374809px;}
.y1ec{bottom:302.374947px;}
.y23e{bottom:302.374969px;}
.y2be{bottom:309.735306px;}
.y332{bottom:311.536823px;}
.y373{bottom:311.919307px;}
.y22{bottom:318.211349px;}
.y5d{bottom:319.665344px;}
.y2a6{bottom:319.794342px;}
.y267{bottom:320.013290px;}
.y170{bottom:320.795998px;}
.y186{bottom:320.944794px;}
.ydb{bottom:320.985260px;}
.yfd{bottom:320.985306px;}
.y1a5{bottom:321.124809px;}
.y23d{bottom:321.124969px;}
.y331{bottom:326.530823px;}
.y372{bottom:326.913307px;}
.y2f0{bottom:331.681800px;}
.y21{bottom:336.961349px;}
.y5c{bottom:338.415344px;}
.y2a5{bottom:338.544342px;}
.y266{bottom:338.763290px;}
.y16e{bottom:339.545998px;}
.yda{bottom:339.735260px;}
.yfc{bottom:339.735306px;}
.y1a4{bottom:339.874809px;}
.y23c{bottom:339.874969px;}
.y330{bottom:341.524823px;}
.y371{bottom:341.907307px;}
.y6e{bottom:353.680504px;}
.y84{bottom:353.680523px;}
.y8f{bottom:353.680537px;}
.y9a{bottom:353.680551px;}
.y8a{bottom:353.680558px;}
.y95{bottom:353.680572px;}
.ya0{bottom:353.680586px;}
.yb2{bottom:353.693306px;}
.yad{bottom:353.693327px;}
.ya8{bottom:353.693371px;}
.y20{bottom:355.711349px;}
.y32f{bottom:356.518823px;}
.y370{bottom:356.901307px;}
.y5b{bottom:357.165344px;}
.y2a4{bottom:357.294342px;}
.y265{bottom:357.513290px;}
.y185{bottom:358.444794px;}
.yd9{bottom:358.485260px;}
.yfb{bottom:358.485306px;}
.y1a3{bottom:358.624809px;}
.y1ff{bottom:358.624947px;}
.y23b{bottom:358.624969px;}
.y77{bottom:362.681955px;}
.y7d{bottom:362.681987px;}
.y32e{bottom:371.512823px;}
.y36f{bottom:371.895307px;}
.y1f{bottom:374.461349px;}
.y5a{bottom:375.915344px;}
.y2a3{bottom:376.044342px;}
.y264{bottom:376.263290px;}
.yd8{bottom:377.235260px;}
.yfa{bottom:377.235306px;}
.y1a2{bottom:377.374809px;}
.y1fe{bottom:377.374947px;}
.y23a{bottom:377.374969px;}
.y32d{bottom:386.506823px;}
.y36e{bottom:386.889307px;}
.y1e{bottom:393.211349px;}
.y59{bottom:394.665344px;}
.y2a2{bottom:394.794342px;}
.y263{bottom:395.013290px;}
.y16c{bottom:395.796021px;}
.y184{bottom:395.944794px;}
.yd7{bottom:395.985260px;}
.yf9{bottom:395.985306px;}
.y1a1{bottom:396.124809px;}
.y1fd{bottom:396.124947px;}
.y239{bottom:396.124969px;}
.y32c{bottom:401.500823px;}
.y36d{bottom:401.883307px;}
.y2ef{bottom:404.986838px;}
.y1d{bottom:411.961349px;}
.y58{bottom:413.415344px;}
.y2a1{bottom:413.544342px;}
.y262{bottom:413.763290px;}
.y183{bottom:414.694794px;}
.yd6{bottom:414.735260px;}
.yf8{bottom:414.735306px;}
.y1a0{bottom:414.874809px;}
.y1fc{bottom:414.874947px;}
.y238{bottom:414.874969px;}
.y32b{bottom:416.494823px;}
.y36c{bottom:416.877307px;}
.y2ee{bottom:419.980838px;}
.y1c{bottom:430.711349px;}
.y32a{bottom:431.488823px;}
.y36b{bottom:431.871307px;}
.y57{bottom:432.165344px;}
.y2a0{bottom:432.294342px;}
.y148{bottom:433.161438px;}
.y1e3{bottom:433.275284px;}
.y182{bottom:433.444794px;}
.yd5{bottom:433.485260px;}
.yf7{bottom:433.485306px;}
.y16a{bottom:433.491428px;}
.y1eb{bottom:433.624786px;}
.y19f{bottom:433.624809px;}
.y1fb{bottom:433.624947px;}
.y237{bottom:433.624969px;}
.y2ed{bottom:434.974838px;}
.y329{bottom:446.482823px;}
.y36a{bottom:446.865307px;}
.y1b{bottom:449.461349px;}
.y2ec{bottom:449.968838px;}
.y27a{bottom:450.628931px;}
.y56{bottom:450.915344px;}
.y29f{bottom:451.044342px;}
.y147{bottom:451.911438px;}
.y1e2{bottom:452.025284px;}
.y1b4{bottom:452.191498px;}
.y181{bottom:452.194794px;}
.yd4{bottom:452.235260px;}
.yf6{bottom:452.235306px;}
.y169{bottom:452.241428px;}
.y1ea{bottom:452.374786px;}
.y19e{bottom:452.374809px;}
.y1fa{bottom:452.374947px;}
.y236{bottom:452.374969px;}
.y328{bottom:461.476823px;}
.y369{bottom:461.859307px;}
.y2eb{bottom:464.962838px;}
.y279{bottom:465.622931px;}
.y1a{bottom:468.211349px;}
.y55{bottom:469.665344px;}
.y29e{bottom:469.794342px;}
.y146{bottom:470.661438px;}
.y1e1{bottom:470.775284px;}
.y180{bottom:470.944794px;}
.yd3{bottom:470.985260px;}
.yf5{bottom:470.985306px;}
.y168{bottom:470.991428px;}
.y1e9{bottom:471.124786px;}
.y19d{bottom:471.124809px;}
.y1f9{bottom:471.124947px;}
.y235{bottom:471.124969px;}
.y78{bottom:472.472205px;}
.y7e{bottom:472.472237px;}
.y6f{bottom:472.472254px;}
.y327{bottom:476.470823px;}
.y368{bottom:476.853307px;}
.y2ea{bottom:479.956838px;}
.y278{bottom:480.616931px;}
.ya1{bottom:481.473836px;}
.y19{bottom:486.961349px;}
.y54{bottom:488.415344px;}
.y29d{bottom:488.544342px;}
.y1e0{bottom:489.525284px;}
.y17f{bottom:489.694794px;}
.yd2{bottom:489.735260px;}
.yf4{bottom:489.735306px;}
.y167{bottom:489.741428px;}
.y1e8{bottom:489.874786px;}
.y19c{bottom:489.874809px;}
.y1f8{bottom:489.874947px;}
.y234{bottom:489.874969px;}
.y326{bottom:491.464823px;}
.y367{bottom:491.847307px;}
.y2e9{bottom:494.950838px;}
.y277{bottom:495.610931px;}
.y18{bottom:505.711349px;}
.y325{bottom:506.458823px;}
.y366{bottom:506.841307px;}
.y53{bottom:507.165344px;}
.y29c{bottom:507.294342px;}
.y145{bottom:508.161438px;}
.y1df{bottom:508.275284px;}
.y17e{bottom:508.444794px;}
.yd1{bottom:508.485260px;}
.yf3{bottom:508.485306px;}
.y166{bottom:508.491428px;}
.y1e7{bottom:508.624786px;}
.y19b{bottom:508.624809px;}
.y1f7{bottom:508.624947px;}
.y233{bottom:508.624969px;}
.y2e8{bottom:509.944838px;}
.y324{bottom:521.452823px;}
.y365{bottom:521.835307px;}
.y25{bottom:524.461349px;}
.y2e7{bottom:524.938838px;}
.y52{bottom:525.915344px;}
.y29b{bottom:526.044342px;}
.y1de{bottom:527.025284px;}
.y17d{bottom:527.194794px;}
.yd0{bottom:527.235260px;}
.yf2{bottom:527.235306px;}
.y165{bottom:527.241428px;}
.y1e6{bottom:527.374786px;}
.y19a{bottom:527.374809px;}
.y1f6{bottom:527.374947px;}
.y232{bottom:527.374969px;}
.y323{bottom:536.446823px;}
.y364{bottom:536.829307px;}
.y2e6{bottom:539.932838px;}
.y17{bottom:543.211349px;}
.y51{bottom:544.665344px;}
.y29a{bottom:544.794342px;}
.y144{bottom:545.661438px;}
.y1dd{bottom:545.775284px;}
.y17c{bottom:545.944794px;}
.ycf{bottom:545.985260px;}
.yf1{bottom:545.985306px;}
.y164{bottom:545.991428px;}
.y199{bottom:546.124809px;}
.y231{bottom:546.124969px;}
.y322{bottom:551.440823px;}
.y363{bottom:551.823307px;}
.y2e5{bottom:554.926838px;}
.y50{bottom:563.415344px;}
.y299{bottom:563.544342px;}
.y143{bottom:564.411438px;}
.y1dc{bottom:564.525284px;}
.y17b{bottom:564.694794px;}
.yce{bottom:564.735260px;}
.yf0{bottom:564.735306px;}
.y163{bottom:564.741428px;}
.y198{bottom:564.874809px;}
.y230{bottom:564.874969px;}
.y321{bottom:566.434823px;}
.y362{bottom:566.817307px;}
.y202{bottom:568.582816px;}
.y2e4{bottom:569.920838px;}
.y320{bottom:581.428823px;}
.y361{bottom:581.811307px;}
.y4f{bottom:582.165344px;}
.y298{bottom:582.294342px;}
.y142{bottom:583.161438px;}
.y1db{bottom:583.275284px;}
.y17a{bottom:583.444794px;}
.ycd{bottom:583.485260px;}
.yef{bottom:583.485306px;}
.y162{bottom:583.491428px;}
.y201{bottom:583.576816px;}
.y204{bottom:583.589566px;}
.y197{bottom:583.624809px;}
.y22f{bottom:583.624969px;}
.y70{bottom:591.621004px;}
.ya2{bottom:591.633836px;}
.y31f{bottom:596.422823px;}
.y3a0{bottom:596.550324px;}
.y360{bottom:596.805307px;}
.y200{bottom:598.570816px;}
.y203{bottom:598.583566px;}
.y16{bottom:599.461395px;}
.y2e3{bottom:599.921588px;}
.y4e{bottom:600.915344px;}
.y297{bottom:601.044342px;}
.y141{bottom:601.911438px;}
.y1da{bottom:602.025284px;}
.y179{bottom:602.194794px;}
.ycc{bottom:602.235260px;}
.yee{bottom:602.235306px;}
.y213{bottom:602.241306px;}
.y161{bottom:602.241428px;}
.y196{bottom:602.374809px;}
.y22e{bottom:602.374969px;}
.y31e{bottom:611.416823px;}
.y39f{bottom:611.544324px;}
.y35f{bottom:611.799307px;}
.y2e2{bottom:614.915588px;}
.y4d{bottom:619.665344px;}
.y296{bottom:619.794342px;}
.y140{bottom:620.661438px;}
.y178{bottom:620.944794px;}
.ycb{bottom:620.985260px;}
.yed{bottom:620.985306px;}
.y160{bottom:620.991428px;}
.y195{bottom:621.124809px;}
.y22d{bottom:621.124969px;}
.y31d{bottom:626.410823px;}
.y35e{bottom:626.793307px;}
.y15{bottom:636.961395px;}
.y4c{bottom:638.415344px;}
.y295{bottom:638.544342px;}
.y13f{bottom:639.411438px;}
.y1d9{bottom:639.525284px;}
.y177{bottom:639.694794px;}
.yca{bottom:639.735260px;}
.yec{bottom:639.735306px;}
.y15f{bottom:639.741428px;}
.y194{bottom:639.874809px;}
.y22c{bottom:639.874969px;}
.y31c{bottom:641.404823px;}
.y39e{bottom:641.634323px;}
.y35d{bottom:641.787307px;}
.y2e1{bottom:652.362338px;}
.y14{bottom:655.711395px;}
.y31b{bottom:656.398823px;}
.y39d{bottom:656.628323px;}
.y35c{bottom:656.781307px;}
.y4b{bottom:657.165344px;}
.y294{bottom:657.294342px;}
.y13e{bottom:658.161438px;}
.yc9{bottom:658.485260px;}
.yeb{bottom:658.485306px;}
.y15e{bottom:658.491428px;}
.y193{bottom:658.624809px;}
.y22b{bottom:658.624969px;}
.y2e0{bottom:667.356338px;}
.y71{bottom:669.523504px;}
.y31a{bottom:671.392823px;}
.y39c{bottom:671.622323px;}
.y35b{bottom:671.775307px;}
.y13{bottom:674.461395px;}
.y4a{bottom:675.915344px;}
.y293{bottom:676.044342px;}
.y13d{bottom:676.911438px;}
.y1d8{bottom:677.025330px;}
.y176{bottom:677.194794px;}
.yc8{bottom:677.235260px;}
.yea{bottom:677.235306px;}
.y15d{bottom:677.241428px;}
.y192{bottom:677.374809px;}
.y22a{bottom:677.374969px;}
.y2df{bottom:682.350338px;}
.y319{bottom:686.386823px;}
.y39b{bottom:686.616323px;}
.y35a{bottom:686.769307px;}
.y12{bottom:693.211395px;}
.y49{bottom:694.665344px;}
.y292{bottom:694.794342px;}
.y13c{bottom:695.661438px;}
.y1d7{bottom:695.775330px;}
.yc7{bottom:695.985260px;}
.ye9{bottom:695.985306px;}
.y229{bottom:696.124969px;}
.y318{bottom:701.380823px;}
.y39a{bottom:701.610323px;}
.y359{bottom:701.763307px;}
.y11{bottom:711.961395px;}
.y2de{bottom:712.351088px;}
.y48{bottom:713.415344px;}
.y291{bottom:713.544342px;}
.y13b{bottom:714.411438px;}
.y1d6{bottom:714.525330px;}
.yc6{bottom:714.735260px;}
.y10a{bottom:714.735306px;}
.y15c{bottom:714.741428px;}
.y228{bottom:714.874969px;}
.y317{bottom:716.374823px;}
.y399{bottom:716.604323px;}
.y358{bottom:716.757307px;}
.y2dd{bottom:727.345088px;}
.y10{bottom:730.711395px;}
.y1b1{bottom:731.230820px;}
.y316{bottom:731.368823px;}
.y398{bottom:731.598323px;}
.y357{bottom:731.751307px;}
.y47{bottom:732.165344px;}
.y290{bottom:732.294342px;}
.y13a{bottom:733.161438px;}
.y1d5{bottom:733.275330px;}
.yc5{bottom:733.485260px;}
.y109{bottom:733.485306px;}
.y20c{bottom:733.491306px;}
.y227{bottom:733.624969px;}
.y2dc{bottom:742.339088px;}
.y315{bottom:746.362823px;}
.y397{bottom:746.592323px;}
.y356{bottom:746.745307px;}
.yf{bottom:749.461395px;}
.y46{bottom:750.915344px;}
.y28f{bottom:751.044342px;}
.y139{bottom:751.911438px;}
.y1d4{bottom:752.025330px;}
.yc4{bottom:752.235260px;}
.y126{bottom:752.235306px;}
.y15b{bottom:752.241428px;}
.y226{bottom:752.374969px;}
.y314{bottom:761.356823px;}
.y396{bottom:761.586323px;}
.y355{bottom:761.739307px;}
.ye{bottom:768.211395px;}
.y45{bottom:769.665344px;}
.y28e{bottom:769.794342px;}
.y138{bottom:770.661438px;}
.y1d3{bottom:770.775330px;}
.yc3{bottom:770.985260px;}
.y125{bottom:770.985306px;}
.y108{bottom:770.991260px;}
.y15a{bottom:770.991428px;}
.y225{bottom:771.124969px;}
.y2db{bottom:772.339838px;}
.y313{bottom:776.350823px;}
.y395{bottom:776.580323px;}
.y354{bottom:776.733307px;}
.yd{bottom:786.961395px;}
.y2da{bottom:787.333838px;}
.y44{bottom:788.415344px;}
.y28d{bottom:788.544342px;}
.y137{bottom:789.411438px;}
.y1d2{bottom:789.525330px;}
.ye8{bottom:789.735260px;}
.y124{bottom:789.735306px;}
.y159{bottom:789.741428px;}
.y224{bottom:789.874969px;}
.y312{bottom:791.344823px;}
.y394{bottom:791.574323px;}
.y353{bottom:791.727307px;}
.y2d9{bottom:802.327838px;}
.yc{bottom:805.711395px;}
.y311{bottom:806.338823px;}
.y393{bottom:806.568323px;}
.y352{bottom:806.721307px;}
.y43{bottom:807.165344px;}
.y28c{bottom:807.294342px;}
.y136{bottom:808.161438px;}
.y1d1{bottom:808.275330px;}
.yc2{bottom:808.485260px;}
.y123{bottom:808.485306px;}
.y158{bottom:808.491428px;}
.y223{bottom:808.624969px;}
.y2d8{bottom:817.321838px;}
.y310{bottom:821.332823px;}
.y392{bottom:821.562323px;}
.y351{bottom:821.715307px;}
.yb{bottom:824.461395px;}
.y42{bottom:825.915344px;}
.y28b{bottom:826.044342px;}
.y135{bottom:826.911438px;}
.y1d0{bottom:827.025330px;}
.ye7{bottom:827.235260px;}
.y122{bottom:827.235306px;}
.y157{bottom:827.241428px;}
.y222{bottom:827.374969px;}
.y30f{bottom:836.326823px;}
.y391{bottom:836.556323px;}
.y350{bottom:836.709307px;}
.ya{bottom:843.211395px;}
.y41{bottom:844.665344px;}
.y28a{bottom:844.794342px;}
.y134{bottom:845.661438px;}
.y1cf{bottom:845.775330px;}
.yc1{bottom:845.985260px;}
.y121{bottom:845.985306px;}
.y156{bottom:845.991428px;}
.y221{bottom:846.124969px;}
.y2d7{bottom:847.321838px;}
.y30e{bottom:851.320823px;}
.y390{bottom:851.550323px;}
.y34f{bottom:851.703307px;}
.y72{bottom:860.633254px;}
.y1cd{bottom:861.473968px;}
.y9{bottom:861.961395px;}
.y40{bottom:863.415344px;}
.y289{bottom:863.544342px;}
.y133{bottom:864.411438px;}
.y1cc{bottom:864.525330px;}
.yc0{bottom:864.735260px;}
.y120{bottom:864.735306px;}
.y155{bottom:864.741428px;}
.y220{bottom:864.874969px;}
.y30d{bottom:866.314823px;}
.y38f{bottom:866.544323px;}
.y34e{bottom:866.697307px;}
.y2d6{bottom:881.190332px;}
.y30c{bottom:881.308823px;}
.y38e{bottom:881.538323px;}
.y34d{bottom:881.691307px;}
.y3f{bottom:882.165344px;}
.y288{bottom:882.294342px;}
.y1c9{bottom:883.085999px;}
.y132{bottom:883.161438px;}
.y1cb{bottom:883.275330px;}
.ybf{bottom:883.485260px;}
.y11f{bottom:883.485306px;}
.y154{bottom:883.491428px;}
.y21f{bottom:883.624969px;}
.y2d5{bottom:896.184332px;}
.y30b{bottom:896.302823px;}
.y38d{bottom:896.532323px;}
.y1c1{bottom:896.570984px;}
.y34c{bottom:896.685307px;}
.y3e{bottom:900.915344px;}
.y287{bottom:901.044342px;}
.y131{bottom:901.911438px;}
.y1c6{bottom:902.016266px;}
.y1c0{bottom:902.025306px;}
.y1c8{bottom:902.025330px;}
.ybe{bottom:902.235260px;}
.y11e{bottom:902.235306px;}
.y153{bottom:902.241428px;}
.y21e{bottom:902.374969px;}
.y8{bottom:906.144153px;}
.y30a{bottom:911.296823px;}
.y38c{bottom:911.526323px;}
.y34b{bottom:911.679307px;}
.y1c3{bottom:912.478821px;}
.y3d{bottom:919.665344px;}
.y286{bottom:919.794342px;}
.y130{bottom:920.661438px;}
.y1bf{bottom:920.775306px;}
.ybd{bottom:920.985260px;}
.y11d{bottom:920.985306px;}
.y152{bottom:920.991428px;}
.y7{bottom:921.138153px;}
.y2d4{bottom:926.185082px;}
.y309{bottom:926.290823px;}
.y38b{bottom:926.520323px;}
.y34a{bottom:926.673307px;}
.y3c{bottom:938.415344px;}
.y285{bottom:938.544342px;}
.y12f{bottom:939.411438px;}
.y1be{bottom:939.525306px;}
.ybc{bottom:939.735260px;}
.y11c{bottom:939.735306px;}
.y151{bottom:939.741428px;}
.y2d3{bottom:941.179082px;}
.y308{bottom:941.284823px;}
.y38a{bottom:941.514323px;}
.y349{bottom:941.667307px;}
.y2d2{bottom:956.173082px;}
.y307{bottom:956.278823px;}
.y389{bottom:956.508323px;}
.y348{bottom:956.661307px;}
.y3b{bottom:957.165344px;}
.y284{bottom:957.294342px;}
.y12e{bottom:958.161438px;}
.y1bd{bottom:958.275306px;}
.ybb{bottom:958.485260px;}
.y11b{bottom:958.485306px;}
.y150{bottom:958.491428px;}
.y25d{bottom:960.796524px;}
.y6{bottom:963.738190px;}
.y306{bottom:971.272823px;}
.y388{bottom:971.502323px;}
.y347{bottom:971.655307px;}
.y3a{bottom:975.915344px;}
.y283{bottom:976.044342px;}
.y12d{bottom:976.911438px;}
.y1bc{bottom:977.025306px;}
.yba{bottom:977.235260px;}
.y11a{bottom:977.235306px;}
.y14f{bottom:977.241428px;}
.y25c{bottom:979.590024px;}
.y73{bottom:980.215500px;}
.y2d1{bottom:986.173832px;}
.y305{bottom:986.266823px;}
.y387{bottom:986.496323px;}
.y346{bottom:986.649307px;}
.y79{bottom:989.216952px;}
.y7f{bottom:989.216984px;}
.y85{bottom:989.217019px;}
.y90{bottom:989.217033px;}
.y9b{bottom:989.217047px;}
.yb3{bottom:989.229802px;}
.ya3{bottom:989.229832px;}
.y39{bottom:994.665344px;}
.y282{bottom:994.794342px;}
.y12c{bottom:995.661438px;}
.y1bb{bottom:995.775306px;}
.y1b2{bottom:995.941498px;}
.yb9{bottom:995.985260px;}
.y119{bottom:995.985306px;}
.y14e{bottom:995.991428px;}
.y25b{bottom:998.307024px;}
.y2d0{bottom:1001.167832px;}
.y304{bottom:1001.260823px;}
.y386{bottom:1001.490323px;}
.y345{bottom:1001.643307px;}
.y5{bottom:1008.424622px;}
.y38{bottom:1013.415344px;}
.y281{bottom:1013.544342px;}
.y12b{bottom:1014.411438px;}
.y1ba{bottom:1014.525306px;}
.yb8{bottom:1014.735260px;}
.y118{bottom:1014.735306px;}
.y14d{bottom:1014.741428px;}
.y2cf{bottom:1016.161832px;}
.y303{bottom:1016.254823px;}
.y385{bottom:1016.484323px;}
.y344{bottom:1016.637307px;}
.y25a{bottom:1017.024024px;}
.y2ce{bottom:1031.155832px;}
.y302{bottom:1031.248823px;}
.y384{bottom:1031.478323px;}
.y343{bottom:1031.631307px;}
.y37{bottom:1032.165344px;}
.y280{bottom:1032.294342px;}
.y12a{bottom:1033.161438px;}
.y1b9{bottom:1033.275306px;}
.yb7{bottom:1033.485260px;}
.y117{bottom:1033.485306px;}
.y14c{bottom:1033.491428px;}
.y259{bottom:1045.112274px;}
.y2cd{bottom:1046.149832px;}
.y301{bottom:1046.242823px;}
.y383{bottom:1046.472323px;}
.y342{bottom:1046.625307px;}
.y36{bottom:1050.915344px;}
.y27f{bottom:1051.044342px;}
.y129{bottom:1051.911438px;}
.y1b8{bottom:1052.025306px;}
.yb6{bottom:1052.235260px;}
.y116{bottom:1052.235306px;}
.y14b{bottom:1052.241428px;}
.y2cc{bottom:1061.143832px;}
.y300{bottom:1061.236823px;}
.y382{bottom:1061.466323px;}
.y341{bottom:1061.619307px;}
.y35{bottom:1069.665344px;}
.y258{bottom:1070.608844px;}
.y128{bottom:1070.661438px;}
.y1b7{bottom:1070.775306px;}
.yb5{bottom:1070.985260px;}
.y115{bottom:1070.985306px;}
.y14a{bottom:1070.991428px;}
.y4{bottom:1076.132080px;}
.y2cb{bottom:1076.137832px;}
.y2ff{bottom:1076.230823px;}
.y381{bottom:1076.460323px;}
.y340{bottom:1076.613307px;}
.y257{bottom:1085.602844px;}
.y34{bottom:1088.415344px;}
.y27e{bottom:1088.544342px;}
.y127{bottom:1089.411438px;}
.y1b6{bottom:1089.525306px;}
.yb4{bottom:1089.735260px;}
.y114{bottom:1089.735306px;}
.y149{bottom:1089.741428px;}
.y2ca{bottom:1091.131832px;}
.y2fe{bottom:1091.224823px;}
.y380{bottom:1091.454323px;}
.y33f{bottom:1091.607307px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y33{bottom:1127.482361px;}
.y69{bottom:1127.482544px;}
.h1a{height:3.960990px;}
.h16{height:6.750000px;}
.h1e{height:10.051500px;}
.h12{height:10.500000px;}
.h20{height:13.200000px;}
.h18{height:19.800000px;}
.h17{height:26.466614px;}
.h1b{height:27.474671px;}
.h1c{height:28.692967px;}
.hc{height:32.986799px;}
.h2{height:33.840000px;}
.h1f{height:39.189793px;}
.h19{height:40.570138px;}
.h1d{height:40.990243px;}
.h13{height:41.050258px;}
.h14{height:41.290318px;}
.h7{height:43.260000px;}
.h3{height:44.676000px;}
.hb{height:47.124000px;}
.h9{height:51.912000px;}
.h23{height:52.173000px;}
.h11{height:53.160000px;}
.hd{height:53.805000px;}
.h8{height:55.440000px;}
.h4{height:55.461000px;}
.he{height:58.593750px;}
.ha{height:59.004000px;}
.h10{height:61.380000px;}
.h21{height:62.807451px;}
.h22{height:62.808000px;}
.hf{height:62.808183px;}
.h15{height:63.300000px;}
.h6{height:64.866000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w5{width:7.485000px;}
.w7{width:11.205000px;}
.w8{width:22.125000px;}
.w4{width:52.094999px;}
.w3{width:52.633500px;}
.w2{width:52.635000px;}
.w6{width:128.234997px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:1.119278px;}
.x33{left:25.535110px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x6{left:93.545402px;}
.x5{left:97.796100px;}
.x35{left:101.230042px;}
.x4c{left:107.285397px;}
.x3c{left:115.058556px;}
.x37{left:123.949677px;}
.x2d{left:129.545998px;}
.x2e{left:137.105553px;}
.x3d{left:140.549252px;}
.x3e{left:164.965502px;}
.x9{left:181.147202px;}
.x3f{left:193.041002px;}
.xa{left:206.637749px;}
.x40{left:211.758002px;}
.xb{left:231.053999px;}
.x2f{left:233.719505px;}
.x30{left:241.141342px;}
.xc{left:246.047999px;}
.x41{left:249.192002px;}
.x42{left:267.909002px;}
.xd{left:274.136249px;}
.x43{left:286.626002px;}
.xe{left:289.130249px;}
.xf{left:304.124249px;}
.x44{left:305.343002px;}
.x10{left:322.828499px;}
.x45{left:324.060002px;}
.x11{left:337.822499px;}
.x46{left:342.777002px;}
.x12{left:352.816499px;}
.x47{left:361.494002px;}
.x13{left:371.520749px;}
.x48{left:380.211002px;}
.x14{left:386.514749px;}
.x49{left:399.004502px;}
.x15{left:405.231749px;}
.x16{left:420.225749px;}
.x17{left:438.942749px;}
.x18{left:453.936749px;}
.x4{left:459.215389px;}
.x19{left:468.930749px;}
.x39{left:470.909683px;}
.x7{left:476.225393px;}
.x1a{left:487.634999px;}
.x4b{left:489.965540px;}
.x1b{left:502.628999px;}
.x2c{left:511.440765px;}
.x1c{left:521.345999px;}
.x1d{left:536.339999px;}
.x1e{left:551.333999px;}
.x1f{left:570.050999px;}
.x20{left:585.044999px;}
.x21{left:600.038999px;}
.x3a{left:607.845016px;}
.x22{left:618.743249px;}
.x4a{left:619.748245px;}
.x29{left:629.892014px;}
.x23{left:633.737249px;}
.x31{left:643.226990px;}
.x24{left:652.454249px;}
.x32{left:655.046402px;}
.x25{left:667.448249px;}
.x26{left:682.442249px;}
.x34{left:687.379028px;}
.x27{left:701.222999px;}
.x28{left:716.216999px;}
.x1{left:728.220612px;}
.x2a{left:747.314987px;}
.x36{left:750.450623px;}
.x38{left:771.530365px;}
.x8{left:792.153442px;}
.x2b{left:800.234894px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsb7{letter-spacing:-1.632000pt;}
.ls70{letter-spacing:-1.440000pt;}
.lsb6{letter-spacing:-1.405333pt;}
.ls61{letter-spacing:-1.386667pt;}
.ls62{letter-spacing:-1.226667pt;}
.lsb4{letter-spacing:-1.224000pt;}
.lsb8{letter-spacing:-1.133333pt;}
.ls17{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls42{letter-spacing:-0.906667pt;}
.lsb3{letter-spacing:-0.861333pt;}
.ls59{letter-spacing:-0.853333pt;}
.ls1c{letter-spacing:-0.800000pt;}
.ls4a{letter-spacing:-0.746667pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb5{letter-spacing:-0.680000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsb2{letter-spacing:-0.634667pt;}
.ls49{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsa0{letter-spacing:-0.453333pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.373333pt;}
.lsae{letter-spacing:-0.362667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls8e{letter-spacing:-0.317333pt;}
.lsa1{letter-spacing:-0.272000pt;}
.ls40{letter-spacing:-0.266667pt;}
.ls8d{letter-spacing:-0.226667pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls90{letter-spacing:-0.181333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls91{letter-spacing:-0.136000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls8c{letter-spacing:-0.090667pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls8b{letter-spacing:-0.045333pt;}
.lse{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000033pt;}
.ls7e{letter-spacing:0.045333pt;}
.lsb0{letter-spacing:0.049824pt;}
.ls6{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.080000pt;}
.ls82{letter-spacing:0.090667pt;}
.ls4c{letter-spacing:0.106625pt;}
.ls8{letter-spacing:0.106667pt;}
.lsa2{letter-spacing:0.113333pt;}
.ls4f{letter-spacing:0.133333pt;}
.ls8f{letter-spacing:0.136000pt;}
.lsc{letter-spacing:0.158926pt;}
.ls7{letter-spacing:0.160000pt;}
.ls7d{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.186667pt;}
.ls58{letter-spacing:0.191976pt;}
.lsac{letter-spacing:0.204000pt;}
.ls71{letter-spacing:0.213325pt;}
.ls1{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.226667pt;}
.ls86{letter-spacing:0.234667pt;}
.ls5b{letter-spacing:0.240000pt;}
.ls6e{letter-spacing:0.245323pt;}
.ls75{letter-spacing:0.245333pt;}
.lsab{letter-spacing:0.249333pt;}
.ls3d{letter-spacing:0.250667pt;}
.ls8a{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls60{letter-spacing:0.271967pt;}
.ls85{letter-spacing:0.272000pt;}
.ls46{letter-spacing:0.293333pt;}
.lsb1{letter-spacing:0.294667pt;}
.lsaa{letter-spacing:0.317315pt;}
.ls89{letter-spacing:0.317333pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.325323pt;}
.ls39{letter-spacing:0.346667pt;}
.ls84{letter-spacing:0.362667pt;}
.ls3a{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.394667pt;}
.ls45{letter-spacing:0.400000pt;}
.ls80{letter-spacing:0.408000pt;}
.ls48{letter-spacing:0.426658pt;}
.ls4{letter-spacing:0.426667pt;}
.ls69{letter-spacing:0.453333pt;}
.ls29{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.490667pt;}
.ls87{letter-spacing:0.498667pt;}
.ls50{letter-spacing:0.506667pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls81{letter-spacing:0.544000pt;}
.ls35{letter-spacing:0.560000pt;}
.lsad{letter-spacing:0.566667pt;}
.ls3e{letter-spacing:0.570667pt;}
.ls4b{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls7f{letter-spacing:0.589333pt;}
.ls77{letter-spacing:0.613333pt;}
.ls88{letter-spacing:0.634667pt;}
.ls33{letter-spacing:0.640000pt;}
.ls6d{letter-spacing:0.650655pt;}
.lsa8{letter-spacing:0.657333pt;}
.ls5c{letter-spacing:0.666667pt;}
.ls76{letter-spacing:0.680000pt;}
.ls68{letter-spacing:0.682667pt;}
.ls27{letter-spacing:0.693333pt;}
.lsa7{letter-spacing:0.702667pt;}
.ls93{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.lsa4{letter-spacing:0.748000pt;}
.lsa3{letter-spacing:0.757037pt;}
.ls97{letter-spacing:0.770667pt;}
.ls4e{letter-spacing:0.773333pt;}
.ls9d{letter-spacing:0.793333pt;}
.ls73{letter-spacing:0.794667pt;}
.ls74{letter-spacing:0.799993pt;}
.ls28{letter-spacing:0.800000pt;}
.ls83{letter-spacing:0.816000pt;}
.ls34{letter-spacing:0.853333pt;}
.ls94{letter-spacing:0.861333pt;}
.ls5d{letter-spacing:0.880000pt;}
.ls65{letter-spacing:0.906643pt;}
.ls31{letter-spacing:0.906667pt;}
.ls6c{letter-spacing:0.917322pt;}
.ls5f{letter-spacing:0.933333pt;}
.ls99{letter-spacing:0.952000pt;}
.ls36{letter-spacing:0.960000pt;}
.ls96{letter-spacing:0.997333pt;}
.ls25{letter-spacing:1.013333pt;}
.ls92{letter-spacing:1.042667pt;}
.ls67{letter-spacing:1.055990pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls9b{letter-spacing:1.088000pt;}
.ls7b{letter-spacing:1.093333pt;}
.ls44{letter-spacing:1.120000pt;}
.ls5e{letter-spacing:1.125333pt;}
.ls9a{letter-spacing:1.133333pt;}
.lsb{letter-spacing:1.173333pt;}
.ls9f{letter-spacing:1.224000pt;}
.ls2a{letter-spacing:1.226667pt;}
.ls43{letter-spacing:1.237333pt;}
.ls63{letter-spacing:1.247976pt;}
.ls3b{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls24{letter-spacing:1.360000pt;}
.ls1e{letter-spacing:1.386667pt;}
.ls30{letter-spacing:1.413333pt;}
.ls2d{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:1.493333pt;}
.lsa9{letter-spacing:1.541333pt;}
.ls1f{letter-spacing:1.546667pt;}
.ls52{letter-spacing:1.573333pt;}
.lsa{letter-spacing:1.600000pt;}
.ls26{letter-spacing:1.653333pt;}
.ls7c{letter-spacing:1.680000pt;}
.ls6b{letter-spacing:1.706629pt;}
.ls53{letter-spacing:1.706667pt;}
.ls32{letter-spacing:1.760000pt;}
.lsa5{letter-spacing:1.768000pt;}
.ls5a{letter-spacing:1.776000pt;}
.ls79{letter-spacing:1.786667pt;}
.ls55{letter-spacing:1.813333pt;}
.ls9{letter-spacing:1.866667pt;}
.ls51{letter-spacing:1.920000pt;}
.ls21{letter-spacing:1.973333pt;}
.ls23{letter-spacing:2.026667pt;}
.ls37{letter-spacing:2.080000pt;}
.ls22{letter-spacing:2.133333pt;}
.ls7a{letter-spacing:2.186667pt;}
.ls20{letter-spacing:2.293333pt;}
.lsaf{letter-spacing:2.325581pt;}
.ls6a{letter-spacing:2.400000pt;}
.ls9c{letter-spacing:2.484267pt;}
.ls54{letter-spacing:2.506667pt;}
.ls98{letter-spacing:2.715467pt;}
.ls9e{letter-spacing:2.720000pt;}
.ls78{letter-spacing:3.306667pt;}
.ls95{letter-spacing:3.327467pt;}
.ls0{letter-spacing:3.546667pt;}
.ls72{letter-spacing:5.802667pt;}
.ls6f{letter-spacing:8.001333pt;}
.lsa6{letter-spacing:8.663200pt;}
.ls57{letter-spacing:14.830373pt;}
.ls56{letter-spacing:17.977826pt;}
.ws98{word-spacing:-54.453333pt;}
.ws87{word-spacing:-54.133333pt;}
.ws95{word-spacing:-54.026667pt;}
.ws97{word-spacing:-53.973333pt;}
.ws82{word-spacing:-53.760000pt;}
.wsf4{word-spacing:-53.440000pt;}
.ws72{word-spacing:-53.386667pt;}
.ws59{word-spacing:-53.333333pt;}
.ws99{word-spacing:-52.960000pt;}
.ws96{word-spacing:-52.533333pt;}
.ws9d{word-spacing:-14.830373pt;}
.ws27{word-spacing:-14.773333pt;}
.wsb4{word-spacing:-14.346667pt;}
.ws28{word-spacing:-14.240000pt;}
.ws94{word-spacing:-14.186667pt;}
.wsf2{word-spacing:-14.026667pt;}
.ws29{word-spacing:-13.920000pt;}
.wsd0{word-spacing:-13.866667pt;}
.wse4{word-spacing:-13.760000pt;}
.ws57{word-spacing:-13.600000pt;}
.ws58{word-spacing:-13.546667pt;}
.ws5a{word-spacing:-13.333333pt;}
.wse3{word-spacing:-13.226667pt;}
.wsa3{word-spacing:-13.066667pt;}
.ws8{word-spacing:-12.693333pt;}
.wsb2{word-spacing:-12.533333pt;}
.ws7{word-spacing:-12.373333pt;}
.ws10a{word-spacing:-12.013333pt;}
.ws9{word-spacing:-11.560000pt;}
.wsf6{word-spacing:-11.424000pt;}
.ws55{word-spacing:-11.333333pt;}
.ws9e{word-spacing:-11.146667pt;}
.wsb3{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws88{word-spacing:-10.240000pt;}
.ws5{word-spacing:-9.546667pt;}
.wsa2{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsf5{word-spacing:-8.658667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws74{word-spacing:-6.666667pt;}
.wsce{word-spacing:-5.666667pt;}
.ws3b{word-spacing:-2.080000pt;}
.ws75{word-spacing:-1.973333pt;}
.ws30{word-spacing:-1.866667pt;}
.ws116{word-spacing:-1.813333pt;}
.ws12f{word-spacing:-1.768000pt;}
.ws3e{word-spacing:-1.760000pt;}
.ws9a{word-spacing:-1.653333pt;}
.ws35{word-spacing:-1.600000pt;}
.ws2e{word-spacing:-1.546667pt;}
.ws93{word-spacing:-1.386667pt;}
.ws117{word-spacing:-1.360000pt;}
.wsd{word-spacing:-1.333333pt;}
.ws7e{word-spacing:-1.280000pt;}
.ws49{word-spacing:-1.226667pt;}
.wsa0{word-spacing:-1.173333pt;}
.wsf9{word-spacing:-1.133333pt;}
.ws63{word-spacing:-1.120000pt;}
.ws142{word-spacing:-1.088000pt;}
.ws40{word-spacing:-1.066667pt;}
.ws13e{word-spacing:-1.042667pt;}
.ws38{word-spacing:-1.013333pt;}
.wsfc{word-spacing:-0.997333pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws107{word-spacing:-0.952000pt;}
.ws46{word-spacing:-0.906667pt;}
.wsfe{word-spacing:-0.861333pt;}
.ws32{word-spacing:-0.853333pt;}
.ws126{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.800000pt;}
.ws11b{word-spacing:-0.770667pt;}
.ws4c{word-spacing:-0.746667pt;}
.ws13f{word-spacing:-0.725333pt;}
.ws3c{word-spacing:-0.693333pt;}
.wsff{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws108{word-spacing:-0.634667pt;}
.ws36{word-spacing:-0.586667pt;}
.ws26{word-spacing:-0.544000pt;}
.ws20{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.506667pt;}
.ws10d{word-spacing:-0.498667pt;}
.ws44{word-spacing:-0.480000pt;}
.ws111{word-spacing:-0.453333pt;}
.ws7b{word-spacing:-0.426667pt;}
.ws56{word-spacing:-0.408000pt;}
.ws12{word-spacing:-0.373333pt;}
.ws12c{word-spacing:-0.362667pt;}
.ws7d{word-spacing:-0.320000pt;}
.ws12d{word-spacing:-0.317333pt;}
.ws141{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.ws100{word-spacing:-0.234667pt;}
.ws109{word-spacing:-0.226667pt;}
.ws31{word-spacing:-0.213333pt;}
.ws129{word-spacing:-0.181333pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws101{word-spacing:-0.136000pt;}
.ws61{word-spacing:-0.106667pt;}
.ws143{word-spacing:-0.090667pt;}
.ws6{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.ws112{word-spacing:0.045333pt;}
.ws48{word-spacing:0.053333pt;}
.wsf1{word-spacing:0.090667pt;}
.ws23{word-spacing:0.106667pt;}
.wsfa{word-spacing:0.136000pt;}
.ws11{word-spacing:0.160000pt;}
.ws123{word-spacing:0.181333pt;}
.ws85{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.266667pt;}
.ws110{word-spacing:0.272000pt;}
.ws128{word-spacing:0.317333pt;}
.ws5e{word-spacing:0.320000pt;}
.wsf8{word-spacing:0.362667pt;}
.ws66{word-spacing:0.373333pt;}
.ws121{word-spacing:0.408000pt;}
.ws22{word-spacing:0.426667pt;}
.wsd9{word-spacing:0.453333pt;}
.ws1a{word-spacing:0.480000pt;}
.wsef{word-spacing:0.498667pt;}
.ws18{word-spacing:0.533333pt;}
.ws138{word-spacing:0.544000pt;}
.ws62{word-spacing:0.586667pt;}
.ws137{word-spacing:0.589333pt;}
.ws13d{word-spacing:0.634667pt;}
.ws13{word-spacing:0.640000pt;}
.wse2{word-spacing:0.680000pt;}
.ws8f{word-spacing:0.693333pt;}
.wsa8{word-spacing:0.725333pt;}
.ws53{word-spacing:0.746667pt;}
.wsa9{word-spacing:0.770667pt;}
.ws37{word-spacing:0.800000pt;}
.ws10e{word-spacing:0.816000pt;}
.ws79{word-spacing:0.853333pt;}
.ws136{word-spacing:0.861333pt;}
.ws69{word-spacing:0.906667pt;}
.wsdf{word-spacing:0.952000pt;}
.ws21{word-spacing:0.960000pt;}
.ws42{word-spacing:1.013333pt;}
.ws106{word-spacing:1.042667pt;}
.ws8e{word-spacing:1.066667pt;}
.wsbf{word-spacing:1.088000pt;}
.ws19{word-spacing:1.120000pt;}
.wsfb{word-spacing:1.133333pt;}
.ws41{word-spacing:1.173333pt;}
.ws102{word-spacing:1.178667pt;}
.ws6d{word-spacing:1.224000pt;}
.ws86{word-spacing:1.226667pt;}
.ws120{word-spacing:1.269333pt;}
.ws77{word-spacing:1.280000pt;}
.wsf{word-spacing:1.333333pt;}
.wsee{word-spacing:1.360000pt;}
.ws24{word-spacing:1.386667pt;}
.ws11d{word-spacing:1.405333pt;}
.ws81{word-spacing:1.440000pt;}
.ws127{word-spacing:1.450667pt;}
.ws16{word-spacing:1.493333pt;}
.ws6e{word-spacing:1.496000pt;}
.ws11c{word-spacing:1.541333pt;}
.ws1d{word-spacing:1.546667pt;}
.ws103{word-spacing:1.586667pt;}
.ws1f{word-spacing:1.600000pt;}
.wsa5{word-spacing:1.632000pt;}
.ws50{word-spacing:1.653333pt;}
.ws115{word-spacing:1.677333pt;}
.ws5f{word-spacing:1.706667pt;}
.wsa4{word-spacing:1.722667pt;}
.ws10{word-spacing:1.760000pt;}
.ws131{word-spacing:1.768000pt;}
.ws2d{word-spacing:1.813333pt;}
.ws10f{word-spacing:1.858667pt;}
.ws15{word-spacing:1.866667pt;}
.ws68{word-spacing:1.920000pt;}
.ws11f{word-spacing:1.949333pt;}
.ws84{word-spacing:1.973333pt;}
.wsa1{word-spacing:1.994667pt;}
.ws7c{word-spacing:2.026667pt;}
.ws113{word-spacing:2.040000pt;}
.ws1c{word-spacing:2.080000pt;}
.ws12b{word-spacing:2.085333pt;}
.ws125{word-spacing:2.130667pt;}
.ws83{word-spacing:2.133333pt;}
.ws13a{word-spacing:2.176000pt;}
.ws67{word-spacing:2.186667pt;}
.ws11a{word-spacing:2.221333pt;}
.ws52{word-spacing:2.240000pt;}
.ws122{word-spacing:2.266667pt;}
.ws5d{word-spacing:2.293333pt;}
.wsfd{word-spacing:2.312000pt;}
.ws34{word-spacing:2.346667pt;}
.ws12a{word-spacing:2.357333pt;}
.ws2c{word-spacing:2.400000pt;}
.ws13c{word-spacing:2.448000pt;}
.ws60{word-spacing:2.453333pt;}
.ws130{word-spacing:2.493333pt;}
.ws1b{word-spacing:2.506667pt;}
.ws133{word-spacing:2.538667pt;}
.ws33{word-spacing:2.560000pt;}
.ws17{word-spacing:2.613333pt;}
.ws140{word-spacing:2.629333pt;}
.ws47{word-spacing:2.666667pt;}
.ws135{word-spacing:2.674667pt;}
.ws54{word-spacing:2.720000pt;}
.ws10c{word-spacing:2.765333pt;}
.ws8a{word-spacing:2.773333pt;}
.ws132{word-spacing:2.810667pt;}
.ws8c{word-spacing:2.826667pt;}
.ws65{word-spacing:2.880000pt;}
.ws71{word-spacing:2.901333pt;}
.ws2a{word-spacing:2.933333pt;}
.wsb6{word-spacing:2.986667pt;}
.ws11e{word-spacing:3.037333pt;}
.ws3d{word-spacing:3.040000pt;}
.wsdd{word-spacing:3.082667pt;}
.ws2b{word-spacing:3.093333pt;}
.ws5b{word-spacing:3.146667pt;}
.ws139{word-spacing:3.173333pt;}
.ws51{word-spacing:3.200000pt;}
.ws7f{word-spacing:3.253333pt;}
.ws119{word-spacing:3.264000pt;}
.wsb7{word-spacing:3.306667pt;}
.wsed{word-spacing:3.354667pt;}
.ws92{word-spacing:3.360000pt;}
.ws45{word-spacing:3.413333pt;}
.ws9c{word-spacing:3.466667pt;}
.wsdb{word-spacing:3.520000pt;}
.ws80{word-spacing:3.573333pt;}
.ws10b{word-spacing:3.581333pt;}
.ws89{word-spacing:3.626667pt;}
.wsea{word-spacing:3.672000pt;}
.ws2f{word-spacing:3.680000pt;}
.ws134{word-spacing:3.717333pt;}
.ws4a{word-spacing:3.733333pt;}
.ws90{word-spacing:3.786667pt;}
.ws13b{word-spacing:3.808000pt;}
.ws4d{word-spacing:3.840000pt;}
.wsba{word-spacing:3.893333pt;}
.ws124{word-spacing:3.944000pt;}
.ws8d{word-spacing:3.946667pt;}
.wse6{word-spacing:4.000000pt;}
.ws39{word-spacing:4.053333pt;}
.wsb0{word-spacing:4.080000pt;}
.wsb8{word-spacing:4.106667pt;}
.wsad{word-spacing:4.125333pt;}
.ws6a{word-spacing:4.160000pt;}
.ws6b{word-spacing:4.170667pt;}
.ws4f{word-spacing:4.213333pt;}
.wsae{word-spacing:4.216000pt;}
.wsbc{word-spacing:4.261333pt;}
.wsf3{word-spacing:4.266667pt;}
.ws9f{word-spacing:4.320000pt;}
.ws64{word-spacing:4.373333pt;}
.wsb1{word-spacing:4.397333pt;}
.ws7a{word-spacing:4.426667pt;}
.ws78{word-spacing:4.480000pt;}
.wsb5{word-spacing:4.533333pt;}
.wsac{word-spacing:4.578667pt;}
.wse1{word-spacing:4.640000pt;}
.ws73{word-spacing:4.693333pt;}
.wsc0{word-spacing:4.714667pt;}
.ws3a{word-spacing:4.746667pt;}
.wse5{word-spacing:4.800000pt;}
.wsab{word-spacing:4.805333pt;}
.wsbe{word-spacing:4.850667pt;}
.wsb9{word-spacing:4.853333pt;}
.ws43{word-spacing:4.960000pt;}
.ws4b{word-spacing:5.066667pt;}
.wscc{word-spacing:5.120000pt;}
.ws118{word-spacing:5.168000pt;}
.wscd{word-spacing:5.280000pt;}
.wsa7{word-spacing:5.304000pt;}
.wsf0{word-spacing:5.440000pt;}
.wsd1{word-spacing:5.493333pt;}
.ws104{word-spacing:5.530667pt;}
.ws8b{word-spacing:5.600000pt;}
.wse7{word-spacing:5.706667pt;}
.wsde{word-spacing:5.802667pt;}
.wscb{word-spacing:5.813333pt;}
.wsda{word-spacing:6.026667pt;}
.ws114{word-spacing:6.074667pt;}
.ws9b{word-spacing:6.186667pt;}
.wseb{word-spacing:6.392000pt;}
.wsd5{word-spacing:6.506667pt;}
.wsc1{word-spacing:6.618667pt;}
.ws91{word-spacing:6.720000pt;}
.wsd6{word-spacing:6.880000pt;}
.wsd4{word-spacing:7.093333pt;}
.ws12e{word-spacing:7.117333pt;}
.ws105{word-spacing:7.208000pt;}
.wsa6{word-spacing:7.253333pt;}
.wse0{word-spacing:7.466667pt;}
.ws6c{word-spacing:7.661333pt;}
.wsd7{word-spacing:7.706667pt;}
.ws6f{word-spacing:7.752000pt;}
.ws76{word-spacing:7.786667pt;}
.wsd8{word-spacing:8.024000pt;}
.wsaf{word-spacing:8.477333pt;}
.wsaa{word-spacing:9.112000pt;}
.ws70{word-spacing:9.248000pt;}
.wsf7{word-spacing:9.280000pt;}
.wsd3{word-spacing:9.920000pt;}
.wsd2{word-spacing:9.973333pt;}
.wsbb{word-spacing:10.925333pt;}
.wsec{word-spacing:11.333333pt;}
.wsdc{word-spacing:11.877333pt;}
.ws144{word-spacing:12.013333pt;}
.wscf{word-spacing:12.194667pt;}
.wsbd{word-spacing:13.645333pt;}
.wse9{word-spacing:15.322667pt;}
.wse8{word-spacing:15.368000pt;}
.ws145{word-spacing:15.640000pt;}
.wsc2{word-spacing:39.349333pt;}
.wsc3{word-spacing:44.426667pt;}
.wsc4{word-spacing:44.698667pt;}
.ws25{word-spacing:64.237333pt;}
.wsca{word-spacing:103.042662pt;}
.wsc6{word-spacing:104.402667pt;}
.wsc9{word-spacing:161.069333pt;}
.wsc8{word-spacing:442.136000pt;}
.wsc5{word-spacing:449.661333pt;}
.wsc7{word-spacing:449.706667pt;}
._c{margin-left:-2630.557284pt;}
._7{margin-left:-86.133333pt;}
._4{margin-left:-14.733333pt;}
._4e{margin-left:-13.760000pt;}
._2c{margin-left:-12.320000pt;}
._2b{margin-left:-10.773333pt;}
._29{margin-left:-9.813333pt;}
._4d{margin-left:-8.863980pt;}
._23{margin-left:-7.936020pt;}
._28{margin-left:-6.442667pt;}
._26{margin-left:-5.194690pt;}
._3{margin-left:-3.706667pt;}
._1{margin-left:-2.389333pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.689600pt;}
._b{width:3.008000pt;}
._9{width:3.920000pt;}
._a{width:5.066667pt;}
._25{width:5.968000pt;}
._22{width:7.162667pt;}
._24{width:8.949334pt;}
._2a{width:10.608000pt;}
._4f{width:12.746667pt;}
._d{width:13.672800pt;}
._27{width:14.810667pt;}
._5{width:16.320000pt;}
._11{width:34.394667pt;}
._6{width:48.552000pt;}
._32{width:50.682667pt;}
._1d{width:52.495987pt;}
._33{width:53.570667pt;}
._3d{width:55.760000pt;}
._1a{width:61.245333pt;}
._1b{width:73.349333pt;}
._10{width:80.726400pt;}
._18{width:83.640000pt;}
._36{width:87.765325pt;}
._30{width:97.058667pt;}
._17{width:98.826667pt;}
._19{width:103.269333pt;}
._35{width:105.173333pt;}
._4a{width:108.528000pt;}
._3b{width:112.744000pt;}
._3e{width:115.464000pt;}
._3c{width:122.536000pt;}
._45{width:123.501325pt;}
._47{width:129.698667pt;}
._38{width:132.464000pt;}
._13{width:136.000000pt;}
._3a{width:138.402667pt;}
._49{width:140.034667pt;}
._f{width:141.530667pt;}
._31{width:143.480000pt;}
._44{width:146.730675pt;}
._37{width:147.832000pt;}
._40{width:155.130667pt;}
._1f{width:166.192000pt;}
._41{width:170.498667pt;}
._43{width:172.130667pt;}
._46{width:173.231992pt;}
._42{width:175.485325pt;}
._3f{width:209.485325pt;}
._14{width:227.120000pt;}
._2e{width:259.795220pt;}
._1c{width:261.120000pt;}
._15{width:267.285333pt;}
._12{width:268.962667pt;}
._1e{width:299.018667pt;}
._34{width:325.221333pt;}
._21{width:357.861320pt;}
._39{width:361.384000pt;}
._2d{width:362.928960pt;}
._16{width:379.847987pt;}
._2f{width:516.187220pt;}
._48{width:535.613302pt;}
._4b{width:590.783964pt;}
._20{width:692.466658pt;}
._4c{width:857.151959pt;}
._e{width:1097.265082pt;}
._8{width:1764.690716pt;}
.fs8{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:0.040365pt;}
.y1b5{bottom:0.040405pt;}
.y1c5{bottom:0.169372pt;}
.y1ca{bottom:0.173584pt;}
.y16d{bottom:0.173706pt;}
.y16f{bottom:0.173726pt;}
.y1c7{bottom:1.468424pt;}
.y1ce{bottom:2.706868pt;}
.y1c2{bottom:4.840251pt;}
.y1c4{bottom:11.512126pt;}
.y1{bottom:61.181335pt;}
.y256{bottom:100.151687pt;}
.y255{bottom:100.163060pt;}
.y254{bottom:100.185763pt;}
.y253{bottom:100.208466pt;}
.y252{bottom:100.231168pt;}
.y251{bottom:100.253871pt;}
.y250{bottom:100.276574pt;}
.y24f{bottom:100.299276pt;}
.y24e{bottom:100.310650pt;}
.y24d{bottom:100.322021pt;}
.y24c{bottom:100.344726pt;}
.y24b{bottom:100.356099pt;}
.y6a{bottom:100.384267pt;}
.y74{bottom:100.386631pt;}
.y7a{bottom:100.386660pt;}
.y6c{bottom:100.386673pt;}
.y80{bottom:100.386688pt;}
.y8b{bottom:100.386701pt;}
.y96{bottom:100.386713pt;}
.y86{bottom:100.386720pt;}
.y91{bottom:100.386732pt;}
.y9c{bottom:100.386744pt;}
.y32{bottom:100.389600pt;}
.yae{bottom:100.398051pt;}
.ya9{bottom:100.398070pt;}
.ya4{bottom:100.398109pt;}
.y20b{bottom:100.416257pt;}
.y107{bottom:100.421590pt;}
.y21d{bottom:100.432257pt;}
.y2bd{bottom:100.442924pt;}
.y27d{bottom:100.588263pt;}
.y1e5{bottom:100.796267pt;}
.y68{bottom:100.813639pt;}
.y2b1{bottom:100.928304pt;}
.y272{bottom:101.122925pt;}
.y20f{bottom:101.228267pt;}
.y212{bottom:101.239600pt;}
.y16b{bottom:101.484263pt;}
.y191{bottom:101.950928pt;}
.ye6{bottom:101.986898pt;}
.y113{bottom:101.986938pt;}
.y1b0{bottom:102.110942pt;}
.y1f5{bottom:102.111064pt;}
.y248{bottom:102.111084pt;}
.y2fd{bottom:104.892267pt;}
.y75{bottom:108.387964pt;}
.y7b{bottom:108.387993pt;}
.y81{bottom:108.388022pt;}
.y8c{bottom:108.388034pt;}
.y97{bottom:108.388046pt;}
.y87{bottom:108.388053pt;}
.y92{bottom:108.388065pt;}
.y9d{bottom:108.388078pt;}
.yaf{bottom:108.399384pt;}
.yaa{bottom:108.399403pt;}
.ya5{bottom:108.399442pt;}
.y20a{bottom:113.744257pt;}
.y106{bottom:113.749590pt;}
.y21c{bottom:113.760257pt;}
.y2bc{bottom:113.770924pt;}
.y27c{bottom:113.916263pt;}
.y1e4{bottom:114.124267pt;}
.y20e{bottom:114.556267pt;}
.y211{bottom:114.567600pt;}
.y2c9{bottom:115.372938pt;}
.y2b{bottom:116.187866pt;}
.y33e{bottom:116.985620pt;}
.y37f{bottom:117.325606pt;}
.y67{bottom:117.480306pt;}
.y2b0{bottom:117.594971pt;}
.y271{bottom:117.789591pt;}
.y2fc{bottom:118.220267pt;}
.y31{bottom:118.250936pt;}
.y276{bottom:118.318938pt;}
.y190{bottom:118.617594pt;}
.ye5{bottom:118.653564pt;}
.y175{bottom:118.653595pt;}
.y112{bottom:118.653605pt;}
.y1af{bottom:118.777608pt;}
.y1f4{bottom:118.777730pt;}
.y247{bottom:118.777751pt;}
.y209{bottom:127.072257pt;}
.y105{bottom:127.077590pt;}
.y21b{bottom:127.088257pt;}
.y2bb{bottom:127.098924pt;}
.y27b{bottom:127.244263pt;}
.y261{bottom:127.439065pt;}
.y20d{bottom:127.884267pt;}
.y210{bottom:127.895600pt;}
.y2c8{bottom:128.700938pt;}
.y33d{bottom:130.313620pt;}
.y37e{bottom:130.653606pt;}
.y2fb{bottom:131.548267pt;}
.y275{bottom:131.646938pt;}
.y2a{bottom:132.854533pt;}
.y30{bottom:133.770270pt;}
.y66{bottom:134.146973pt;}
.y2af{bottom:134.261637pt;}
.y270{bottom:134.456258pt;}
.y18f{bottom:135.284261pt;}
.ye4{bottom:135.320231pt;}
.y174{bottom:135.320262pt;}
.y111{bottom:135.320272pt;}
.y1ae{bottom:135.444275pt;}
.y1f3{bottom:135.444397pt;}
.y246{bottom:135.444417pt;}
.y208{bottom:140.400257pt;}
.y104{bottom:140.405590pt;}
.y21a{bottom:140.416257pt;}
.y2ba{bottom:140.426924pt;}
.y260{bottom:140.767065pt;}
.y2c7{bottom:142.028938pt;}
.y33c{bottom:143.641620pt;}
.y37d{bottom:143.981606pt;}
.y2fa{bottom:144.876267pt;}
.y274{bottom:144.974938pt;}
.y2f{bottom:147.098270pt;}
.y29{bottom:149.521200pt;}
.y65{bottom:150.813639pt;}
.y2ae{bottom:150.928304pt;}
.y26f{bottom:151.122925pt;}
.y18e{bottom:151.950928pt;}
.ye3{bottom:151.986898pt;}
.y173{bottom:151.986928pt;}
.y110{bottom:151.986938pt;}
.y1ad{bottom:152.110942pt;}
.y1f2{bottom:152.111064pt;}
.y245{bottom:152.111084pt;}
.y207{bottom:153.728257pt;}
.y103{bottom:153.733590pt;}
.y219{bottom:153.744257pt;}
.y2b9{bottom:153.754924pt;}
.y25f{bottom:154.095065pt;}
.y2c6{bottom:155.356938pt;}
.y33b{bottom:156.969620pt;}
.y37c{bottom:157.309606pt;}
.y2f9{bottom:158.204267pt;}
.y273{bottom:158.302938pt;}
.y2e{bottom:164.959605pt;}
.y206{bottom:167.056257pt;}
.y102{bottom:167.061590pt;}
.y218{bottom:167.072257pt;}
.y2b8{bottom:167.082924pt;}
.y25e{bottom:167.423065pt;}
.y64{bottom:167.480306pt;}
.y2ad{bottom:167.594971pt;}
.y26e{bottom:167.789591pt;}
.y18d{bottom:168.617594pt;}
.ye2{bottom:168.653564pt;}
.y172{bottom:168.653595pt;}
.y10f{bottom:168.653605pt;}
.y2c5{bottom:168.684938pt;}
.y1ac{bottom:168.777608pt;}
.y1f1{bottom:168.777730pt;}
.y244{bottom:168.777751pt;}
.y33a{bottom:170.297620pt;}
.y37b{bottom:170.637606pt;}
.y2f8{bottom:171.532267pt;}
.y101{bottom:180.389590pt;}
.y217{bottom:180.400257pt;}
.y2b7{bottom:180.410924pt;}
.y2c4{bottom:182.012938pt;}
.y28{bottom:182.854533pt;}
.y339{bottom:183.625620pt;}
.y37a{bottom:183.965606pt;}
.y63{bottom:184.146973pt;}
.y2ac{bottom:184.261637pt;}
.y26d{bottom:184.456258pt;}
.y2f7{bottom:184.860267pt;}
.y205{bottom:184.917603pt;}
.y18c{bottom:185.284261pt;}
.ye1{bottom:185.320231pt;}
.y10e{bottom:185.320272pt;}
.y1ab{bottom:185.444275pt;}
.y1f0{bottom:185.444397pt;}
.y243{bottom:185.444417pt;}
.y2d{bottom:187.182274pt;}
.y216{bottom:193.728257pt;}
.y2b6{bottom:193.738924pt;}
.y2c3{bottom:195.340938pt;}
.y338{bottom:196.953620pt;}
.y379{bottom:197.293606pt;}
.y2f6{bottom:198.188267pt;}
.y100{bottom:198.250936pt;}
.y2c{bottom:200.510274pt;}
.y62{bottom:200.813639pt;}
.y2ab{bottom:200.928304pt;}
.y26c{bottom:201.122925pt;}
.y18b{bottom:201.950928pt;}
.ye0{bottom:201.986898pt;}
.y10d{bottom:201.986938pt;}
.y171{bottom:201.992272pt;}
.y1aa{bottom:202.110942pt;}
.y1ef{bottom:202.111064pt;}
.y242{bottom:202.111084pt;}
.y215{bottom:207.056257pt;}
.y2b5{bottom:207.066924pt;}
.y6b{bottom:207.490662pt;}
.y76{bottom:207.497963pt;}
.y7c{bottom:207.497992pt;}
.y6d{bottom:207.498006pt;}
.y82{bottom:207.498020pt;}
.y8d{bottom:207.498033pt;}
.y98{bottom:207.498045pt;}
.y88{bottom:207.498052pt;}
.y93{bottom:207.498064pt;}
.y9e{bottom:207.498076pt;}
.yb0{bottom:207.509383pt;}
.yab{bottom:207.509402pt;}
.ya6{bottom:207.509441pt;}
.y2c2{bottom:208.668938pt;}
.y337{bottom:210.281620pt;}
.y378{bottom:210.621606pt;}
.y2f5{bottom:211.516267pt;}
.y83{bottom:215.499354pt;}
.y8e{bottom:215.499366pt;}
.y99{bottom:215.499378pt;}
.y89{bottom:215.499385pt;}
.y94{bottom:215.499397pt;}
.y9f{bottom:215.499410pt;}
.yb1{bottom:215.510716pt;}
.yac{bottom:215.510735pt;}
.ya7{bottom:215.510775pt;}
.y27{bottom:216.187866pt;}
.y61{bottom:217.480306pt;}
.y2aa{bottom:217.594971pt;}
.y26b{bottom:217.789591pt;}
.y18a{bottom:218.617594pt;}
.ydf{bottom:218.653564pt;}
.y10c{bottom:218.653605pt;}
.y1a9{bottom:218.777608pt;}
.y1ee{bottom:218.777730pt;}
.y241{bottom:218.777751pt;}
.y2b4{bottom:220.394924pt;}
.y2c1{bottom:221.996938pt;}
.y336{bottom:223.609620pt;}
.y377{bottom:223.949606pt;}
.y2f4{bottom:224.844267pt;}
.y214{bottom:224.917603pt;}
.y26{bottom:232.854533pt;}
.y2b3{bottom:233.722924pt;}
.y60{bottom:234.146973pt;}
.y2a9{bottom:234.261637pt;}
.y26a{bottom:234.456258pt;}
.y189{bottom:235.284261pt;}
.yde{bottom:235.320231pt;}
.y10b{bottom:235.320272pt;}
.y2c0{bottom:235.324938pt;}
.y1a8{bottom:235.444275pt;}
.y1ed{bottom:235.444397pt;}
.y240{bottom:235.444417pt;}
.y335{bottom:236.937620pt;}
.y376{bottom:237.277606pt;}
.y2f3{bottom:238.172267pt;}
.y24{bottom:249.521200pt;}
.y334{bottom:250.265620pt;}
.y375{bottom:250.605606pt;}
.y5f{bottom:250.813639pt;}
.y2a8{bottom:250.928304pt;}
.y269{bottom:251.122925pt;}
.y2f2{bottom:251.500267pt;}
.y249{bottom:251.527608pt;}
.y24a{bottom:251.531469pt;}
.y2b2{bottom:251.584269pt;}
.y188{bottom:251.950928pt;}
.ydd{bottom:251.986898pt;}
.yff{bottom:251.986938pt;}
.y1a7{bottom:252.110942pt;}
.y23f{bottom:252.111084pt;}
.y2bf{bottom:261.992272pt;}
.y333{bottom:263.593620pt;}
.y374{bottom:263.933606pt;}
.y2f1{bottom:264.828267pt;}
.y23{bottom:266.187866pt;}
.y5e{bottom:267.480306pt;}
.y2a7{bottom:267.594971pt;}
.y268{bottom:267.789591pt;}
.y187{bottom:268.617594pt;}
.ydc{bottom:268.653564pt;}
.yfe{bottom:268.653605pt;}
.y1a6{bottom:268.777608pt;}
.y1ec{bottom:268.777730pt;}
.y23e{bottom:268.777751pt;}
.y2be{bottom:275.320272pt;}
.y332{bottom:276.921620pt;}
.y373{bottom:277.261606pt;}
.y22{bottom:282.854533pt;}
.y5d{bottom:284.146973pt;}
.y2a6{bottom:284.261637pt;}
.y267{bottom:284.456258pt;}
.y170{bottom:285.151998pt;}
.y186{bottom:285.284261pt;}
.ydb{bottom:285.320231pt;}
.yfd{bottom:285.320272pt;}
.y1a5{bottom:285.444275pt;}
.y23d{bottom:285.444417pt;}
.y331{bottom:290.249620pt;}
.y372{bottom:290.589606pt;}
.y2f0{bottom:294.828267pt;}
.y21{bottom:299.521200pt;}
.y5c{bottom:300.813639pt;}
.y2a5{bottom:300.928304pt;}
.y266{bottom:301.122925pt;}
.y16e{bottom:301.818665pt;}
.yda{bottom:301.986898pt;}
.yfc{bottom:301.986938pt;}
.y1a4{bottom:302.110942pt;}
.y23c{bottom:302.111084pt;}
.y330{bottom:303.577620pt;}
.y371{bottom:303.917606pt;}
.y6e{bottom:314.382670pt;}
.y84{bottom:314.382687pt;}
.y8f{bottom:314.382699pt;}
.y9a{bottom:314.382712pt;}
.y8a{bottom:314.382718pt;}
.y95{bottom:314.382731pt;}
.ya0{bottom:314.382743pt;}
.yb2{bottom:314.394049pt;}
.yad{bottom:314.394068pt;}
.ya8{bottom:314.394108pt;}
.y20{bottom:316.187866pt;}
.y32f{bottom:316.905620pt;}
.y370{bottom:317.245606pt;}
.y5b{bottom:317.480306pt;}
.y2a4{bottom:317.594971pt;}
.y265{bottom:317.789591pt;}
.y185{bottom:318.617594pt;}
.yd9{bottom:318.653564pt;}
.yfb{bottom:318.653605pt;}
.y1a3{bottom:318.777608pt;}
.y1ff{bottom:318.777730pt;}
.y23b{bottom:318.777751pt;}
.y77{bottom:322.383960pt;}
.y7d{bottom:322.383989pt;}
.y32e{bottom:330.233620pt;}
.y36f{bottom:330.573606pt;}
.y1f{bottom:332.854533pt;}
.y5a{bottom:334.146973pt;}
.y2a3{bottom:334.261637pt;}
.y264{bottom:334.456258pt;}
.yd8{bottom:335.320231pt;}
.yfa{bottom:335.320272pt;}
.y1a2{bottom:335.444275pt;}
.y1fe{bottom:335.444397pt;}
.y23a{bottom:335.444417pt;}
.y32d{bottom:343.561620pt;}
.y36e{bottom:343.901606pt;}
.y1e{bottom:349.521200pt;}
.y59{bottom:350.813639pt;}
.y2a2{bottom:350.928304pt;}
.y263{bottom:351.122925pt;}
.y16c{bottom:351.818685pt;}
.y184{bottom:351.950928pt;}
.yd7{bottom:351.986898pt;}
.yf9{bottom:351.986938pt;}
.y1a1{bottom:352.110942pt;}
.y1fd{bottom:352.111064pt;}
.y239{bottom:352.111084pt;}
.y32c{bottom:356.889620pt;}
.y36d{bottom:357.229606pt;}
.y2ef{bottom:359.988301pt;}
.y1d{bottom:366.187866pt;}
.y58{bottom:367.480306pt;}
.y2a1{bottom:367.594971pt;}
.y262{bottom:367.789591pt;}
.y183{bottom:368.617594pt;}
.yd6{bottom:368.653564pt;}
.yf8{bottom:368.653605pt;}
.y1a0{bottom:368.777608pt;}
.y1fc{bottom:368.777730pt;}
.y238{bottom:368.777751pt;}
.y32b{bottom:370.217620pt;}
.y36c{bottom:370.557606pt;}
.y2ee{bottom:373.316301pt;}
.y1c{bottom:382.854533pt;}
.y32a{bottom:383.545620pt;}
.y36b{bottom:383.885606pt;}
.y57{bottom:384.146973pt;}
.y2a0{bottom:384.261637pt;}
.y148{bottom:385.032389pt;}
.y1e3{bottom:385.133586pt;}
.y182{bottom:385.284261pt;}
.yd5{bottom:385.320231pt;}
.yf7{bottom:385.320272pt;}
.y16a{bottom:385.325714pt;}
.y1eb{bottom:385.444255pt;}
.y19f{bottom:385.444275pt;}
.y1fb{bottom:385.444397pt;}
.y237{bottom:385.444417pt;}
.y2ed{bottom:386.644301pt;}
.y329{bottom:396.873620pt;}
.y36a{bottom:397.213606pt;}
.y1b{bottom:399.521200pt;}
.y2ec{bottom:399.972301pt;}
.y27a{bottom:400.559050pt;}
.y56{bottom:400.813639pt;}
.y29f{bottom:400.928304pt;}
.y147{bottom:401.699056pt;}
.y1e2{bottom:401.800252pt;}
.y1b4{bottom:401.947998pt;}
.y181{bottom:401.950928pt;}
.yd4{bottom:401.986898pt;}
.yf6{bottom:401.986938pt;}
.y169{bottom:401.992381pt;}
.y1ea{bottom:402.110921pt;}
.y19e{bottom:402.110942pt;}
.y1fa{bottom:402.111064pt;}
.y236{bottom:402.111084pt;}
.y328{bottom:410.201620pt;}
.y369{bottom:410.541606pt;}
.y2eb{bottom:413.300301pt;}
.y279{bottom:413.887050pt;}
.y1a{bottom:416.187866pt;}
.y55{bottom:417.480306pt;}
.y29e{bottom:417.594971pt;}
.y146{bottom:418.365723pt;}
.y1e1{bottom:418.466919pt;}
.y180{bottom:418.617594pt;}
.yd3{bottom:418.653564pt;}
.yf5{bottom:418.653605pt;}
.y168{bottom:418.659047pt;}
.y1e9{bottom:418.777588pt;}
.y19d{bottom:418.777608pt;}
.y1f9{bottom:418.777730pt;}
.y235{bottom:418.777751pt;}
.y78{bottom:419.975294pt;}
.y7e{bottom:419.975322pt;}
.y6f{bottom:419.975337pt;}
.y327{bottom:423.529620pt;}
.y368{bottom:423.869606pt;}
.y2ea{bottom:426.628301pt;}
.y278{bottom:427.215050pt;}
.ya1{bottom:427.976743pt;}
.y19{bottom:432.854533pt;}
.y54{bottom:434.146973pt;}
.y29d{bottom:434.261637pt;}
.y1e0{bottom:435.133586pt;}
.y17f{bottom:435.284261pt;}
.yd2{bottom:435.320231pt;}
.yf4{bottom:435.320272pt;}
.y167{bottom:435.325714pt;}
.y1e8{bottom:435.444255pt;}
.y19c{bottom:435.444275pt;}
.y1f8{bottom:435.444397pt;}
.y234{bottom:435.444417pt;}
.y326{bottom:436.857620pt;}
.y367{bottom:437.197606pt;}
.y2e9{bottom:439.956301pt;}
.y277{bottom:440.543050pt;}
.y18{bottom:449.521200pt;}
.y325{bottom:450.185620pt;}
.y366{bottom:450.525606pt;}
.y53{bottom:450.813639pt;}
.y29c{bottom:450.928304pt;}
.y145{bottom:451.699056pt;}
.y1df{bottom:451.800252pt;}
.y17e{bottom:451.950928pt;}
.yd1{bottom:451.986898pt;}
.yf3{bottom:451.986938pt;}
.y166{bottom:451.992381pt;}
.y1e7{bottom:452.110921pt;}
.y19b{bottom:452.110942pt;}
.y1f7{bottom:452.111064pt;}
.y233{bottom:452.111084pt;}
.y2e8{bottom:453.284301pt;}
.y324{bottom:463.513620pt;}
.y365{bottom:463.853606pt;}
.y25{bottom:466.187866pt;}
.y2e7{bottom:466.612301pt;}
.y52{bottom:467.480306pt;}
.y29b{bottom:467.594971pt;}
.y1de{bottom:468.466919pt;}
.y17d{bottom:468.617594pt;}
.yd0{bottom:468.653564pt;}
.yf2{bottom:468.653605pt;}
.y165{bottom:468.659047pt;}
.y1e6{bottom:468.777588pt;}
.y19a{bottom:468.777608pt;}
.y1f6{bottom:468.777730pt;}
.y232{bottom:468.777751pt;}
.y323{bottom:476.841620pt;}
.y364{bottom:477.181606pt;}
.y2e6{bottom:479.940301pt;}
.y17{bottom:482.854533pt;}
.y51{bottom:484.146973pt;}
.y29a{bottom:484.261637pt;}
.y144{bottom:485.032389pt;}
.y1dd{bottom:485.133586pt;}
.y17c{bottom:485.284261pt;}
.ycf{bottom:485.320231pt;}
.yf1{bottom:485.320272pt;}
.y164{bottom:485.325714pt;}
.y199{bottom:485.444275pt;}
.y231{bottom:485.444417pt;}
.y322{bottom:490.169620pt;}
.y363{bottom:490.509606pt;}
.y2e5{bottom:493.268301pt;}
.y50{bottom:500.813639pt;}
.y299{bottom:500.928304pt;}
.y143{bottom:501.699056pt;}
.y1dc{bottom:501.800252pt;}
.y17b{bottom:501.950928pt;}
.yce{bottom:501.986898pt;}
.yf0{bottom:501.986938pt;}
.y163{bottom:501.992381pt;}
.y198{bottom:502.110942pt;}
.y230{bottom:502.111084pt;}
.y321{bottom:503.497620pt;}
.y362{bottom:503.837606pt;}
.y202{bottom:505.406948pt;}
.y2e4{bottom:506.596301pt;}
.y320{bottom:516.825620pt;}
.y361{bottom:517.165606pt;}
.y4f{bottom:517.480306pt;}
.y298{bottom:517.594971pt;}
.y142{bottom:518.365723pt;}
.y1db{bottom:518.466919pt;}
.y17a{bottom:518.617594pt;}
.ycd{bottom:518.653564pt;}
.yef{bottom:518.653605pt;}
.y162{bottom:518.659047pt;}
.y201{bottom:518.734948pt;}
.y204{bottom:518.746281pt;}
.y197{bottom:518.777608pt;}
.y22f{bottom:518.777751pt;}
.y70{bottom:525.885337pt;}
.ya2{bottom:525.896743pt;}
.y31f{bottom:530.153620pt;}
.y3a0{bottom:530.266955pt;}
.y360{bottom:530.493606pt;}
.y200{bottom:532.062948pt;}
.y203{bottom:532.074281pt;}
.y16{bottom:532.854574pt;}
.y2e3{bottom:533.263634pt;}
.y4e{bottom:534.146973pt;}
.y297{bottom:534.261637pt;}
.y141{bottom:535.032389pt;}
.y1da{bottom:535.133586pt;}
.y179{bottom:535.284261pt;}
.ycc{bottom:535.320231pt;}
.yee{bottom:535.320272pt;}
.y213{bottom:535.325605pt;}
.y161{bottom:535.325714pt;}
.y196{bottom:535.444275pt;}
.y22e{bottom:535.444417pt;}
.y31e{bottom:543.481620pt;}
.y39f{bottom:543.594955pt;}
.y35f{bottom:543.821606pt;}
.y2e2{bottom:546.591634pt;}
.y4d{bottom:550.813639pt;}
.y296{bottom:550.928304pt;}
.y140{bottom:551.699056pt;}
.y178{bottom:551.950928pt;}
.ycb{bottom:551.986898pt;}
.yed{bottom:551.986938pt;}
.y160{bottom:551.992381pt;}
.y195{bottom:552.110942pt;}
.y22d{bottom:552.111084pt;}
.y31d{bottom:556.809620pt;}
.y35e{bottom:557.149606pt;}
.y15{bottom:566.187907pt;}
.y4c{bottom:567.480306pt;}
.y295{bottom:567.594971pt;}
.y13f{bottom:568.365723pt;}
.y1d9{bottom:568.466919pt;}
.y177{bottom:568.617594pt;}
.yca{bottom:568.653564pt;}
.yec{bottom:568.653605pt;}
.y15f{bottom:568.659047pt;}
.y194{bottom:568.777608pt;}
.y22c{bottom:568.777751pt;}
.y31c{bottom:570.137620pt;}
.y39e{bottom:570.341620pt;}
.y35d{bottom:570.477606pt;}
.y2e1{bottom:579.877634pt;}
.y14{bottom:582.854574pt;}
.y31b{bottom:583.465620pt;}
.y39d{bottom:583.669620pt;}
.y35c{bottom:583.805606pt;}
.y4b{bottom:584.146973pt;}
.y294{bottom:584.261637pt;}
.y13e{bottom:585.032389pt;}
.yc9{bottom:585.320231pt;}
.yeb{bottom:585.320272pt;}
.y15e{bottom:585.325714pt;}
.y193{bottom:585.444275pt;}
.y22b{bottom:585.444417pt;}
.y2e0{bottom:593.205634pt;}
.y71{bottom:595.132004pt;}
.y31a{bottom:596.793620pt;}
.y39c{bottom:596.997620pt;}
.y35b{bottom:597.133606pt;}
.y13{bottom:599.521240pt;}
.y4a{bottom:600.813639pt;}
.y293{bottom:600.928304pt;}
.y13d{bottom:601.699056pt;}
.y1d8{bottom:601.800293pt;}
.y176{bottom:601.950928pt;}
.yc8{bottom:601.986898pt;}
.yea{bottom:601.986938pt;}
.y15d{bottom:601.992381pt;}
.y192{bottom:602.110942pt;}
.y22a{bottom:602.111084pt;}
.y2df{bottom:606.533634pt;}
.y319{bottom:610.121620pt;}
.y39b{bottom:610.325620pt;}
.y35a{bottom:610.461606pt;}
.y12{bottom:616.187907pt;}
.y49{bottom:617.480306pt;}
.y292{bottom:617.594971pt;}
.y13c{bottom:618.365723pt;}
.y1d7{bottom:618.466960pt;}
.yc7{bottom:618.653564pt;}
.ye9{bottom:618.653605pt;}
.y229{bottom:618.777751pt;}
.y318{bottom:623.449620pt;}
.y39a{bottom:623.653620pt;}
.y359{bottom:623.789606pt;}
.y11{bottom:632.854574pt;}
.y2de{bottom:633.200967pt;}
.y48{bottom:634.146973pt;}
.y291{bottom:634.261637pt;}
.y13b{bottom:635.032389pt;}
.y1d6{bottom:635.133626pt;}
.yc6{bottom:635.320231pt;}
.y10a{bottom:635.320272pt;}
.y15c{bottom:635.325714pt;}
.y228{bottom:635.444417pt;}
.y317{bottom:636.777620pt;}
.y399{bottom:636.981620pt;}
.y358{bottom:637.117606pt;}
.y2dd{bottom:646.528967pt;}
.y10{bottom:649.521240pt;}
.y1b1{bottom:649.982951pt;}
.y316{bottom:650.105620pt;}
.y398{bottom:650.309620pt;}
.y357{bottom:650.445606pt;}
.y47{bottom:650.813639pt;}
.y290{bottom:650.928304pt;}
.y13a{bottom:651.699056pt;}
.y1d5{bottom:651.800293pt;}
.yc5{bottom:651.986898pt;}
.y109{bottom:651.986938pt;}
.y20c{bottom:651.992272pt;}
.y227{bottom:652.111084pt;}
.y2dc{bottom:659.856967pt;}
.y315{bottom:663.433620pt;}
.y397{bottom:663.637620pt;}
.y356{bottom:663.773606pt;}
.yf{bottom:666.187907pt;}
.y46{bottom:667.480306pt;}
.y28f{bottom:667.594971pt;}
.y139{bottom:668.365723pt;}
.y1d4{bottom:668.466960pt;}
.yc4{bottom:668.653564pt;}
.y126{bottom:668.653605pt;}
.y15b{bottom:668.659047pt;}
.y226{bottom:668.777751pt;}
.y314{bottom:676.761620pt;}
.y396{bottom:676.965620pt;}
.y355{bottom:677.101606pt;}
.ye{bottom:682.854574pt;}
.y45{bottom:684.146973pt;}
.y28e{bottom:684.261637pt;}
.y138{bottom:685.032389pt;}
.y1d3{bottom:685.133626pt;}
.yc3{bottom:685.320231pt;}
.y125{bottom:685.320272pt;}
.y108{bottom:685.325564pt;}
.y15a{bottom:685.325714pt;}
.y225{bottom:685.444417pt;}
.y2db{bottom:686.524301pt;}
.y313{bottom:690.089620pt;}
.y395{bottom:690.293620pt;}
.y354{bottom:690.429606pt;}
.yd{bottom:699.521240pt;}
.y2da{bottom:699.852301pt;}
.y44{bottom:700.813639pt;}
.y28d{bottom:700.928304pt;}
.y137{bottom:701.699056pt;}
.y1d2{bottom:701.800293pt;}
.ye8{bottom:701.986898pt;}
.y124{bottom:701.986938pt;}
.y159{bottom:701.992381pt;}
.y224{bottom:702.111084pt;}
.y312{bottom:703.417620pt;}
.y394{bottom:703.621620pt;}
.y353{bottom:703.757606pt;}
.y2d9{bottom:713.180301pt;}
.yc{bottom:716.187907pt;}
.y311{bottom:716.745620pt;}
.y393{bottom:716.949620pt;}
.y352{bottom:717.085606pt;}
.y43{bottom:717.480306pt;}
.y28c{bottom:717.594971pt;}
.y136{bottom:718.365723pt;}
.y1d1{bottom:718.466960pt;}
.yc2{bottom:718.653564pt;}
.y123{bottom:718.653605pt;}
.y158{bottom:718.659047pt;}
.y223{bottom:718.777751pt;}
.y2d8{bottom:726.508301pt;}
.y310{bottom:730.073620pt;}
.y392{bottom:730.277620pt;}
.y351{bottom:730.413606pt;}
.yb{bottom:732.854574pt;}
.y42{bottom:734.146973pt;}
.y28b{bottom:734.261637pt;}
.y135{bottom:735.032389pt;}
.y1d0{bottom:735.133626pt;}
.ye7{bottom:735.320231pt;}
.y122{bottom:735.320272pt;}
.y157{bottom:735.325714pt;}
.y222{bottom:735.444417pt;}
.y30f{bottom:743.401620pt;}
.y391{bottom:743.605620pt;}
.y350{bottom:743.741606pt;}
.ya{bottom:749.521240pt;}
.y41{bottom:750.813639pt;}
.y28a{bottom:750.928304pt;}
.y134{bottom:751.699056pt;}
.y1cf{bottom:751.800293pt;}
.yc1{bottom:751.986898pt;}
.y121{bottom:751.986938pt;}
.y156{bottom:751.992381pt;}
.y221{bottom:752.111084pt;}
.y2d7{bottom:753.174967pt;}
.y30e{bottom:756.729620pt;}
.y390{bottom:756.933620pt;}
.y34f{bottom:757.069606pt;}
.y72{bottom:765.007337pt;}
.y1cd{bottom:765.754639pt;}
.y9{bottom:766.187907pt;}
.y40{bottom:767.480306pt;}
.y289{bottom:767.594971pt;}
.y133{bottom:768.365723pt;}
.y1cc{bottom:768.466960pt;}
.yc0{bottom:768.653564pt;}
.y120{bottom:768.653605pt;}
.y155{bottom:768.659047pt;}
.y220{bottom:768.777751pt;}
.y30d{bottom:770.057620pt;}
.y38f{bottom:770.261620pt;}
.y34e{bottom:770.397606pt;}
.y2d6{bottom:783.280295pt;}
.y30c{bottom:783.385620pt;}
.y38e{bottom:783.589620pt;}
.y34d{bottom:783.725606pt;}
.y3f{bottom:784.146973pt;}
.y288{bottom:784.261637pt;}
.y1c9{bottom:784.965332pt;}
.y132{bottom:785.032389pt;}
.y1cb{bottom:785.133626pt;}
.ybf{bottom:785.320231pt;}
.y11f{bottom:785.320272pt;}
.y154{bottom:785.325714pt;}
.y21f{bottom:785.444417pt;}
.y2d5{bottom:796.608295pt;}
.y30b{bottom:796.713620pt;}
.y38d{bottom:796.917620pt;}
.y1c1{bottom:796.951986pt;}
.y34c{bottom:797.053606pt;}
.y3e{bottom:800.813639pt;}
.y287{bottom:800.928304pt;}
.y131{bottom:801.699056pt;}
.y1c6{bottom:801.792236pt;}
.y1c0{bottom:801.800272pt;}
.y1c8{bottom:801.800293pt;}
.ybe{bottom:801.986898pt;}
.y11e{bottom:801.986938pt;}
.y153{bottom:801.992381pt;}
.y21e{bottom:802.111084pt;}
.y8{bottom:805.461469pt;}
.y30a{bottom:810.041620pt;}
.y38c{bottom:810.245620pt;}
.y34b{bottom:810.381606pt;}
.y1c3{bottom:811.092285pt;}
.y3d{bottom:817.480306pt;}
.y286{bottom:817.594971pt;}
.y130{bottom:818.365723pt;}
.y1bf{bottom:818.466938pt;}
.ybd{bottom:818.653564pt;}
.y11d{bottom:818.653605pt;}
.y152{bottom:818.659047pt;}
.y7{bottom:818.789469pt;}
.y2d4{bottom:823.275629pt;}
.y309{bottom:823.369620pt;}
.y38b{bottom:823.573620pt;}
.y34a{bottom:823.709606pt;}
.y3c{bottom:834.146973pt;}
.y285{bottom:834.261637pt;}
.y12f{bottom:835.032389pt;}
.y1be{bottom:835.133605pt;}
.ybc{bottom:835.320231pt;}
.y11c{bottom:835.320272pt;}
.y151{bottom:835.325714pt;}
.y2d3{bottom:836.603629pt;}
.y308{bottom:836.697620pt;}
.y38a{bottom:836.901620pt;}
.y349{bottom:837.037606pt;}
.y2d2{bottom:849.931629pt;}
.y307{bottom:850.025620pt;}
.y389{bottom:850.229620pt;}
.y348{bottom:850.365606pt;}
.y3b{bottom:850.813639pt;}
.y284{bottom:850.928304pt;}
.y12e{bottom:851.699056pt;}
.y1bd{bottom:851.800272pt;}
.ybb{bottom:851.986898pt;}
.y11b{bottom:851.986938pt;}
.y150{bottom:851.992381pt;}
.y25d{bottom:854.041355pt;}
.y6{bottom:856.656169pt;}
.y306{bottom:863.353620pt;}
.y388{bottom:863.557620pt;}
.y347{bottom:863.693606pt;}
.y3a{bottom:867.480306pt;}
.y283{bottom:867.594971pt;}
.y12d{bottom:868.365723pt;}
.y1bc{bottom:868.466938pt;}
.yba{bottom:868.653564pt;}
.y11a{bottom:868.653605pt;}
.y14f{bottom:868.659047pt;}
.y25c{bottom:870.746688pt;}
.y73{bottom:871.302667pt;}
.y2d1{bottom:876.598962pt;}
.y305{bottom:876.681620pt;}
.y387{bottom:876.885620pt;}
.y346{bottom:877.021606pt;}
.y79{bottom:879.303957pt;}
.y7f{bottom:879.303986pt;}
.y85{bottom:879.304017pt;}
.y90{bottom:879.304029pt;}
.y9b{bottom:879.304042pt;}
.yb3{bottom:879.315379pt;}
.ya3{bottom:879.315407pt;}
.y39{bottom:884.146973pt;}
.y282{bottom:884.261637pt;}
.y12c{bottom:885.032389pt;}
.y1bb{bottom:885.133605pt;}
.y1b2{bottom:885.281331pt;}
.yb9{bottom:885.320231pt;}
.y119{bottom:885.320272pt;}
.y14e{bottom:885.325714pt;}
.y25b{bottom:887.384021pt;}
.y2d0{bottom:889.926962pt;}
.y304{bottom:890.009620pt;}
.y386{bottom:890.213620pt;}
.y345{bottom:890.349606pt;}
.y5{bottom:896.377441pt;}
.y38{bottom:900.813639pt;}
.y281{bottom:900.928304pt;}
.y12b{bottom:901.699056pt;}
.y1ba{bottom:901.800272pt;}
.yb8{bottom:901.986898pt;}
.y118{bottom:901.986938pt;}
.y14d{bottom:901.992381pt;}
.y2cf{bottom:903.254962pt;}
.y303{bottom:903.337620pt;}
.y385{bottom:903.541620pt;}
.y344{bottom:903.677606pt;}
.y25a{bottom:904.021355pt;}
.y2ce{bottom:916.582962pt;}
.y302{bottom:916.665620pt;}
.y384{bottom:916.869620pt;}
.y343{bottom:917.005606pt;}
.y37{bottom:917.480306pt;}
.y280{bottom:917.594971pt;}
.y12a{bottom:918.365723pt;}
.y1b9{bottom:918.466938pt;}
.yb7{bottom:918.653564pt;}
.y117{bottom:918.653605pt;}
.y14c{bottom:918.659047pt;}
.y259{bottom:928.988688pt;}
.y2cd{bottom:929.910962pt;}
.y301{bottom:929.993620pt;}
.y383{bottom:930.197620pt;}
.y342{bottom:930.333606pt;}
.y36{bottom:934.146973pt;}
.y27f{bottom:934.261637pt;}
.y129{bottom:935.032389pt;}
.y1b8{bottom:935.133605pt;}
.yb6{bottom:935.320231pt;}
.y116{bottom:935.320272pt;}
.y14b{bottom:935.325714pt;}
.y2cc{bottom:943.238962pt;}
.y300{bottom:943.321620pt;}
.y382{bottom:943.525620pt;}
.y341{bottom:943.661606pt;}
.y35{bottom:950.813639pt;}
.y258{bottom:951.652306pt;}
.y128{bottom:951.699056pt;}
.y1b7{bottom:951.800272pt;}
.yb5{bottom:951.986898pt;}
.y115{bottom:951.986938pt;}
.y14a{bottom:951.992381pt;}
.y4{bottom:956.561849pt;}
.y2cb{bottom:956.566962pt;}
.y2ff{bottom:956.649620pt;}
.y381{bottom:956.853620pt;}
.y340{bottom:956.989606pt;}
.y257{bottom:964.980306pt;}
.y34{bottom:967.480306pt;}
.y27e{bottom:967.594971pt;}
.y127{bottom:968.365723pt;}
.y1b6{bottom:968.466938pt;}
.yb4{bottom:968.653564pt;}
.y114{bottom:968.653605pt;}
.y149{bottom:968.659047pt;}
.y2ca{bottom:969.894962pt;}
.y2fe{bottom:969.977620pt;}
.y380{bottom:970.181620pt;}
.y33f{bottom:970.317606pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y33{bottom:1002.206543pt;}
.y69{bottom:1002.206706pt;}
.h1a{height:3.520880pt;}
.h16{height:6.000000pt;}
.h1e{height:8.934667pt;}
.h12{height:9.333333pt;}
.h20{height:11.733333pt;}
.h18{height:17.600000pt;}
.h17{height:23.525879pt;}
.h1b{height:24.421930pt;}
.h1c{height:25.504859pt;}
.hc{height:29.321599pt;}
.h2{height:30.080000pt;}
.h1f{height:34.835372pt;}
.h19{height:36.062345pt;}
.h1d{height:36.435772pt;}
.h13{height:36.489118pt;}
.h14{height:36.702505pt;}
.h7{height:38.453333pt;}
.h3{height:39.712000pt;}
.hb{height:41.888000pt;}
.h9{height:46.144000pt;}
.h23{height:46.376000pt;}
.h11{height:47.253333pt;}
.hd{height:47.826667pt;}
.h8{height:49.280000pt;}
.h4{height:49.298667pt;}
.he{height:52.083333pt;}
.ha{height:52.448000pt;}
.h10{height:54.560000pt;}
.h21{height:55.828845pt;}
.h22{height:55.829333pt;}
.hf{height:55.829496pt;}
.h15{height:56.266667pt;}
.h6{height:57.658667pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w5{width:6.653333pt;}
.w7{width:9.960000pt;}
.w8{width:19.666667pt;}
.w4{width:46.306666pt;}
.w3{width:46.785333pt;}
.w2{width:46.786667pt;}
.w6{width:113.986664pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:0.994914pt;}
.x33{left:22.697876pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x6{left:83.151469pt;}
.x5{left:86.929867pt;}
.x35{left:89.982259pt;}
.x4c{left:95.364797pt;}
.x3c{left:102.274272pt;}
.x37{left:110.177490pt;}
.x2d{left:115.151998pt;}
.x2e{left:121.871602pt;}
.x3d{left:124.932668pt;}
.x3e{left:146.636001pt;}
.x9{left:161.019735pt;}
.x3f{left:171.592001pt;}
.xa{left:183.677999pt;}
.x40{left:188.229335pt;}
.xb{left:205.381332pt;}
.x2f{left:207.750671pt;}
.x30{left:214.347860pt;}
.xc{left:218.709332pt;}
.x41{left:221.504001pt;}
.x42{left:238.141335pt;}
.xd{left:243.676666pt;}
.x43{left:254.778668pt;}
.xe{left:257.004666pt;}
.xf{left:270.332666pt;}
.x44{left:271.416001pt;}
.x10{left:286.958666pt;}
.x45{left:288.053335pt;}
.x11{left:300.286666pt;}
.x46{left:304.690668pt;}
.x12{left:313.614666pt;}
.x47{left:321.328001pt;}
.x13{left:330.240666pt;}
.x48{left:337.965335pt;}
.x14{left:343.568666pt;}
.x49{left:354.670668pt;}
.x15{left:360.205999pt;}
.x16{left:373.533999pt;}
.x17{left:390.171332pt;}
.x18{left:403.499332pt;}
.x4{left:408.191457pt;}
.x19{left:416.827332pt;}
.x39{left:418.586385pt;}
.x7{left:423.311461pt;}
.x1a{left:433.453332pt;}
.x4b{left:435.524924pt;}
.x1b{left:446.781332pt;}
.x2c{left:454.614014pt;}
.x1c{left:463.418666pt;}
.x1d{left:476.746666pt;}
.x1e{left:490.074666pt;}
.x1f{left:506.711999pt;}
.x20{left:520.039999pt;}
.x21{left:533.367999pt;}
.x3a{left:540.306681pt;}
.x22{left:549.993999pt;}
.x4a{left:550.887329pt;}
.x29{left:559.904012pt;}
.x23{left:563.321999pt;}
.x31{left:571.757324pt;}
.x24{left:579.959332pt;}
.x32{left:582.263468pt;}
.x25{left:593.287332pt;}
.x26{left:606.615332pt;}
.x34{left:611.003581pt;}
.x27{left:623.309332pt;}
.x28{left:636.637332pt;}
.x1{left:647.307210pt;}
.x2a{left:664.279989pt;}
.x36{left:667.067220pt;}
.x38{left:685.804769pt;}
.x8{left:704.136393pt;}
.x2b{left:711.319906pt;}
}




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