
    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_416ea51918aafee040a8c182.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_cd20a25e0ea4b80126c7fd31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_529b41537d760db37fd0cd21.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710000;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_8300f1f76b581fd11a91c727.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_71bc709a067b344543dad240.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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_09fb9e6b22e60e346efbd40e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_b6b863fdef196f7bce873e88.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fe071ea81e2932f06e0c17eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_337899969a51c32270dd4f0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.454102;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_53fd678c0ad6281cbb706dea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.699000;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_10c0f902e909f5acb7857968.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.108000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.v7{vertical-align:-27.056367px;}
.v3{vertical-align:-26.029301px;}
.v4{vertical-align:-22.855143px;}
.v6{vertical-align:-10.116506px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.755188px;}
.v2{vertical-align:26.029301px;}
.v1{vertical-align:31.237562px;}
.lsa{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000541px;}
.ls69{letter-spacing:0.001064px;}
.ls59{letter-spacing:0.001639px;}
.ls66{letter-spacing:0.001816px;}
.ls64{letter-spacing:0.002142px;}
.ls5c{letter-spacing:0.002730px;}
.ls62{letter-spacing:0.003342px;}
.ls3e{letter-spacing:0.005679px;}
.ls5a{letter-spacing:0.007639px;}
.ls5f{letter-spacing:1.765183px;}
.ls1{letter-spacing:2.987819px;}
.ls1f{letter-spacing:2.989409px;}
.ls2{letter-spacing:2.993820px;}
.ls65{letter-spacing:11.051997px;}
.ls3f{letter-spacing:11.310400px;}
.ls6b{letter-spacing:11.530598px;}
.ls40{letter-spacing:11.751238px;}
.ls26{letter-spacing:12.265550px;}
.ls2a{letter-spacing:13.410505px;}
.ls2b{letter-spacing:13.414513px;}
.ls34{letter-spacing:14.063525px;}
.ls33{letter-spacing:14.065640px;}
.ls44{letter-spacing:14.161489px;}
.ls43{letter-spacing:14.163604px;}
.ls45{letter-spacing:14.167612px;}
.ls19{letter-spacing:14.286059px;}
.ls13{letter-spacing:14.394153px;}
.ls12{letter-spacing:14.396268px;}
.ls14{letter-spacing:14.400276px;}
.ls4a{letter-spacing:14.426882px;}
.ls3d{letter-spacing:14.457496px;}
.ls2d{letter-spacing:14.608450px;}
.ls2c{letter-spacing:14.610565px;}
.ls67{letter-spacing:14.942787px;}
.ls8{letter-spacing:14.971807px;}
.ls23{letter-spacing:15.539109px;}
.ls22{letter-spacing:15.541224px;}
.ls20{letter-spacing:15.804502px;}
.ls21{letter-spacing:15.890221px;}
.ls52{letter-spacing:15.986526px;}
.ls49{letter-spacing:16.025402px;}
.ls61{letter-spacing:16.059565px;}
.ls39{letter-spacing:16.097347px;}
.ls1d{letter-spacing:16.102195px;}
.lsf{letter-spacing:16.122091px;}
.ls54{letter-spacing:16.123818px;}
.lse{letter-spacing:16.125407px;}
.lsb{letter-spacing:16.141254px;}
.lsc{letter-spacing:16.145261px;}
.ls29{letter-spacing:16.160371px;}
.ls53{letter-spacing:16.178350px;}
.ls68{letter-spacing:16.201834px;}
.ls1a{letter-spacing:16.203512px;}
.ls38{letter-spacing:16.239232px;}
.ls37{letter-spacing:16.245873px;}
.ls2e{letter-spacing:16.271470px;}
.ls4c{letter-spacing:16.331059px;}
.ls31{letter-spacing:16.341190px;}
.ls30{letter-spacing:16.343305px;}
.ls4{letter-spacing:16.360630px;}
.ls32{letter-spacing:16.361183px;}
.ls4e{letter-spacing:16.363362px;}
.ls46{letter-spacing:16.367183px;}
.ls35{letter-spacing:16.464635px;}
.ls36{letter-spacing:16.466419px;}
.ls3{letter-spacing:16.477068px;}
.ls4f{letter-spacing:16.615919px;}
.ls57{letter-spacing:16.637197px;}
.ls28{letter-spacing:16.640249px;}
.ls6a{letter-spacing:16.662845px;}
.ls2f{letter-spacing:16.670701px;}
.ls6e{letter-spacing:16.734961px;}
.ls41{letter-spacing:16.972508px;}
.ls56{letter-spacing:17.031334px;}
.ls6c{letter-spacing:17.092728px;}
.ls6d{letter-spacing:17.096043px;}
.ls1b{letter-spacing:17.501946px;}
.ls1c{letter-spacing:17.504513px;}
.ls25{letter-spacing:17.807844px;}
.ls1e{letter-spacing:17.866670px;}
.ls60{letter-spacing:18.177638px;}
.ls5e{letter-spacing:18.180368px;}
.ls5d{letter-spacing:18.183639px;}
.ls5b{letter-spacing:18.425288px;}
.ls4b{letter-spacing:19.219679px;}
.ls17{letter-spacing:19.331449px;}
.ls18{letter-spacing:19.334016px;}
.ls4d{letter-spacing:19.502046px;}
.ls0{letter-spacing:20.922716px;}
.ls81{letter-spacing:21.121802px;}
.ls82{letter-spacing:21.264203px;}
.ls27{letter-spacing:21.378610px;}
.ls42{letter-spacing:21.413906px;}
.ls7c{letter-spacing:21.424337px;}
.ls72{letter-spacing:21.467317px;}
.ls70{letter-spacing:21.519116px;}
.ls76{letter-spacing:21.525116px;}
.ls71{letter-spacing:21.546913px;}
.ls50{letter-spacing:21.578620px;}
.ls7e{letter-spacing:21.593264px;}
.ls80{letter-spacing:21.660745px;}
.ls75{letter-spacing:21.681614px;}
.ls74{letter-spacing:21.691566px;}
.ls79{letter-spacing:21.754802px;}
.ls7f{letter-spacing:21.771843px;}
.ls7d{letter-spacing:21.785701px;}
.ls7a{letter-spacing:21.883265px;}
.ls83{letter-spacing:21.930658px;}
.lsd{letter-spacing:22.419839px;}
.ls55{letter-spacing:22.731619px;}
.ls24{letter-spacing:22.966925px;}
.ls3a{letter-spacing:23.213996px;}
.ls3b{letter-spacing:23.216563px;}
.ls3c{letter-spacing:23.219879px;}
.ls48{letter-spacing:23.902266px;}
.ls47{letter-spacing:23.908149px;}
.ls9{letter-spacing:24.690541px;}
.ls10{letter-spacing:25.549407px;}
.ls11{letter-spacing:25.551974px;}
.ls16{letter-spacing:26.402391px;}
.ls15{letter-spacing:26.404958px;}
.ls7{letter-spacing:26.414156px;}
.ls6{letter-spacing:26.416723px;}
.ls5{letter-spacing:26.420039px;}
.ls78{letter-spacing:27.422117px;}
.ls51{letter-spacing:28.173068px;}
.ls58{letter-spacing:29.892406px;}
.ls6f{letter-spacing:33.357708px;}
.ls77{letter-spacing:36.610812px;}
.ls73{letter-spacing:60.370823px;}
.ls84{letter-spacing:78.367805px;}
.ls7b{letter-spacing:91.231190px;}
.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;}
}
.ws3{word-spacing:-71.734607px;}
.ws86{word-spacing:-65.457813px;}
.ws0{word-spacing:-64.561128px;}
.ws150{word-spacing:-59.778829px;}
.ws210{word-spacing:-59.775840px;}
.ws1{word-spacing:-53.800955px;}
.wsce{word-spacing:-53.282660px;}
.wsc3{word-spacing:-49.617022px;}
.wsd4{word-spacing:-49.158817px;}
.ws53{word-spacing:-49.093360px;}
.wsf2{word-spacing:-49.027902px;}
.ws1ec{word-spacing:-48.899082px;}
.ws8b{word-spacing:-48.896986px;}
.ws20f{word-spacing:-48.836861px;}
.ws156{word-spacing:-48.719745px;}
.wsdd{word-spacing:-48.307866px;}
.wsc0{word-spacing:-47.915119px;}
.ws18f{word-spacing:-47.165496px;}
.ws15e{word-spacing:-47.105717px;}
.ws1ad{word-spacing:-47.045938px;}
.ws1f2{word-spacing:-46.866602px;}
.ws16b{word-spacing:-46.806823px;}
.ws1db{word-spacing:-46.567708px;}
.wsa2{word-spacing:-46.475047px;}
.ws1f1{word-spacing:-46.448150px;}
.ws192{word-spacing:-46.328592px;}
.ws1cf{word-spacing:-45.910141px;}
.ws188{word-spacing:-45.133016px;}
.ws16f{word-spacing:-45.073237px;}
.ws202{word-spacing:-45.070983px;}
.ws1f6{word-spacing:-45.013458px;}
.ws17d{word-spacing:-44.953679px;}
.ws1a1{word-spacing:-44.893900px;}
.ws147{word-spacing:-44.834122px;}
.ws1fc{word-spacing:-44.831880px;}
.ws1c4{word-spacing:-44.774343px;}
.ws1a9{word-spacing:-44.714564px;}
.ws174{word-spacing:-44.654785px;}
.ws1a2{word-spacing:-44.595006px;}
.ws209{word-spacing:-44.592777px;}
.ws179{word-spacing:-44.475449px;}
.ws203{word-spacing:-44.473225px;}
.ws6c{word-spacing:-44.428084px;}
.ws1bc{word-spacing:-43.399430px;}
.ws197{word-spacing:-43.339651px;}
.ws161{word-spacing:-43.160314px;}
.ws1c7{word-spacing:-42.383190px;}
.ws132{word-spacing:-41.845012px;}
.ws14f{word-spacing:-41.785401px;}
.ws16e{word-spacing:-41.486507px;}
.ws178{word-spacing:-41.426728px;}
.ws19e{word-spacing:-40.948498px;}
.ws6d{word-spacing:-40.615382px;}
.ws1b1{word-spacing:-40.410488px;}
.ws1c0{word-spacing:-40.171373px;}
.ws1c8{word-spacing:-39.932258px;}
.ws16a{word-spacing:-39.752921px;}
.ws189{word-spacing:-39.633363px;}
.ws11c{word-spacing:-39.633160px;}
.ws17c{word-spacing:-39.573585px;}
.ws1b4{word-spacing:-39.513806px;}
.ws1e5{word-spacing:-39.454027px;}
.ws1a7{word-spacing:-39.334469px;}
.ws1d6{word-spacing:-39.214912px;}
.ws12d{word-spacing:-38.020286px;}
.ws1fb{word-spacing:-36.403486px;}
.ws182{word-spacing:-34.372827px;}
.ws117{word-spacing:-32.672022px;}
.wsf9{word-spacing:-31.837464px;}
.ws1d5{word-spacing:-31.623000px;}
.ws108{word-spacing:-31.082375px;}
.ws219{word-spacing:-29.409713px;}
.ws2c{word-spacing:-29.063269px;}
.ws110{word-spacing:-28.672207px;}
.ws12b{word-spacing:-26.541800px;}
.ws1f9{word-spacing:-26.540473px;}
.ws95{word-spacing:-25.986752px;}
.ws74{word-spacing:-23.887631px;}
.wsdb{word-spacing:-21.233435px;}
.ws9d{word-spacing:-17.869983px;}
.ws3b{word-spacing:-17.804525px;}
.ws9e{word-spacing:-17.739067px;}
.ws125{word-spacing:-17.542694px;}
.wsc4{word-spacing:-17.411778px;}
.ws100{word-spacing:-17.403080px;}
.ws9f{word-spacing:-17.346320px;}
.wsf4{word-spacing:-17.215405px;}
.wsd2{word-spacing:-17.084489px;}
.wscf{word-spacing:-16.888116px;}
.ws3a{word-spacing:-16.822658px;}
.ws91{word-spacing:-16.691742px;}
.wsed{word-spacing:-16.626284px;}
.wsc2{word-spacing:-16.560827px;}
.wsd5{word-spacing:-16.429911px;}
.ws15{word-spacing:-16.319620px;}
.ws129{word-spacing:-16.298995px;}
.ws8e{word-spacing:-16.168080px;}
.wse{word-spacing:-16.140284px;}
.ws85{word-spacing:-16.037164px;}
.wsc1{word-spacing:-15.906248px;}
.ws141{word-spacing:-15.775333px;}
.ws83{word-spacing:-15.709875px;}
.ws1ea{word-spacing:-15.662053px;}
.ws82{word-spacing:-15.644417px;}
.wsd6{word-spacing:-15.578959px;}
.ws1eb{word-spacing:-15.574420px;}
.wsc5{word-spacing:-15.513502px;}
.ws142{word-spacing:-15.448044px;}
.ws66{word-spacing:-15.186213px;}
.ws4f{word-spacing:-15.120755px;}
.ws81{word-spacing:-15.055297px;}
.ws8f{word-spacing:-14.989839px;}
.wsa4{word-spacing:-14.924381px;}
.ws1dd{word-spacing:-14.884928px;}
.wsef{word-spacing:-14.858923px;}
.ws65{word-spacing:-14.793466px;}
.ws5c{word-spacing:-14.728008px;}
.ws1a4{word-spacing:-14.705592px;}
.ws20e{word-spacing:-14.704857px;}
.ws5d{word-spacing:-14.662550px;}
.ws151{word-spacing:-14.645813px;}
.ws23{word-spacing:-14.633864px;}
.ws9b{word-spacing:-14.597092px;}
.ws84{word-spacing:-14.531634px;}
.ws14a{word-spacing:-14.526255px;}
.ws37{word-spacing:-14.466177px;}
.ws1ff{word-spacing:-14.465753px;}
.ws166{word-spacing:-14.406698px;}
.wsda{word-spacing:-14.400719px;}
.ws88{word-spacing:-14.335261px;}
.ws10{word-spacing:-14.287140px;}
.wsd3{word-spacing:-14.269803px;}
.wsa3{word-spacing:-14.204345px;}
.wscd{word-spacing:-14.138888px;}
.ws38{word-spacing:-14.073430px;}
.ws4{word-spacing:-14.048025px;}
.wsd1{word-spacing:-13.942514px;}
.ws190{word-spacing:-13.928467px;}
.ws2{word-spacing:-13.916514px;}
.ws126{word-spacing:-13.877056px;}
.ws15d{word-spacing:-13.868688px;}
.ws1ae{word-spacing:-13.808909px;}
.ws198{word-spacing:-13.749131px;}
.wscb{word-spacing:-13.746141px;}
.ws1df{word-spacing:-13.689352px;}
.ws99{word-spacing:-13.680683px;}
.ws1a3{word-spacing:-13.629573px;}
.wsdc{word-spacing:-13.615225px;}
.ws78{word-spacing:-13.549767px;}
.ws1de{word-spacing:-13.510015px;}
.wsca{word-spacing:-13.484309px;}
.ws87{word-spacing:-13.353394px;}
.ws18d{word-spacing:-13.330679px;}
.ws77{word-spacing:-13.287936px;}
.ws18e{word-spacing:-13.274368px;}
.ws1dc{word-spacing:-13.270900px;}
.ws1da{word-spacing:-13.249877px;}
.ws72{word-spacing:-13.222478px;}
.ws19a{word-spacing:-13.211121px;}
.ws5b{word-spacing:-13.157020px;}
.ws1f0{word-spacing:-13.145790px;}
.ws48{word-spacing:-13.091563px;}
.ws191{word-spacing:-13.031785px;}
.ws31{word-spacing:-13.026105px;}
.ws94{word-spacing:-12.965594px;}
.ws39{word-spacing:-12.960647px;}
.ws1ab{word-spacing:-12.912227px;}
.ws44{word-spacing:-12.895189px;}
.ws1e0{word-spacing:-12.852448px;}
.ws19{word-spacing:-12.829731px;}
.ws5{word-spacing:-12.792669px;}
.ws2e{word-spacing:-12.764273px;}
.wsee{word-spacing:-12.702613px;}
.wse2{word-spacing:-12.700436px;}
.ws1b{word-spacing:-12.698816px;}
.wsd9{word-spacing:-12.698253px;}
.ws35{word-spacing:-12.633358px;}
.ws17{word-spacing:-12.567900px;}
.ws152{word-spacing:-12.553554px;}
.ws1a{word-spacing:-12.502442px;}
.ws3f{word-spacing:-12.436984px;}
.ws1ce{word-spacing:-12.374218px;}
.ws41{word-spacing:-12.371527px;}
.ws14b{word-spacing:-12.314439px;}
.ws46{word-spacing:-12.306069px;}
.ws103{word-spacing:-12.175153px;}
.ws19f{word-spacing:-12.135102px;}
.ws55{word-spacing:-12.109695px;}
.ws1d8{word-spacing:-12.075323px;}
.wsc8{word-spacing:-12.044238px;}
.ws183{word-spacing:-12.015545px;}
.ws216{word-spacing:-12.014944px;}
.wsde{word-spacing:-11.978780px;}
.ws184{word-spacing:-11.955766px;}
.wsdf{word-spacing:-11.913322px;}
.ws11{word-spacing:-11.895987px;}
.ws217{word-spacing:-11.895392px;}
.ws43{word-spacing:-11.847864px;}
.ws12a{word-spacing:-11.836208px;}
.ws200{word-spacing:-11.835616px;}
.ws187{word-spacing:-11.829439px;}
.ws1ee{word-spacing:-11.800081px;}
.ws201{word-spacing:-11.783488px;}
.ws2a{word-spacing:-11.782406px;}
.ws1b3{word-spacing:-11.782331px;}
.ws144{word-spacing:-11.776429px;}
.ws205{word-spacing:-11.775840px;}
.ws1f5{word-spacing:-11.740732px;}
.wsf3{word-spacing:-11.716948px;}
.ws9{word-spacing:-11.716650px;}
.ws206{word-spacing:-11.716065px;}
.ws208{word-spacing:-11.688425px;}
.ws153{word-spacing:-11.656872px;}
.ws213{word-spacing:-11.656289px;}
.ws6f{word-spacing:-11.651491px;}
.ws1b0{word-spacing:-11.624928px;}
.ws1b9{word-spacing:-11.601590px;}
.ws1b6{word-spacing:-11.600328px;}
.ws6{word-spacing:-11.597093px;}
.ws1fe{word-spacing:-11.596513px;}
.ws70{word-spacing:-11.586033px;}
.ws154{word-spacing:-11.537314px;}
.ws20c{word-spacing:-11.536737px;}
.ws1a0{word-spacing:-11.523745px;}
.wsb7{word-spacing:-11.520575px;}
.ws155{word-spacing:-11.504550px;}
.ws1e4{word-spacing:-11.487245px;}
.ws15b{word-spacing:-11.477535px;}
.wsff{word-spacing:-11.455117px;}
.ws1a8{word-spacing:-11.420052px;}
.ws13{word-spacing:-11.417756px;}
.ws207{word-spacing:-11.417185px;}
.ws1a5{word-spacing:-11.392360px;}
.wsae{word-spacing:-11.389659px;}
.wsf{word-spacing:-11.357977px;}
.ws98{word-spacing:-11.324202px;}
.ws149{word-spacing:-11.298199px;}
.ws45{word-spacing:-11.258744px;}
.ws1b5{word-spacing:-11.238420px;}
.ws42{word-spacing:-11.193286px;}
.ws51{word-spacing:-11.127828px;}
.ws1ed{word-spacing:-11.118862px;}
.wsb{word-spacing:-11.059083px;}
.ws92{word-spacing:-10.931455px;}
.ws140{word-spacing:-10.867796px;}
.wse1{word-spacing:-10.865997px;}
.ws112{word-spacing:-10.819968px;}
.wscc{word-spacing:-10.800539px;}
.ws214{word-spacing:-10.759651px;}
.ws13d{word-spacing:-10.735081px;}
.ws1e{word-spacing:-10.706393px;}
.ws176{word-spacing:-10.700410px;}
.ws9c{word-spacing:-10.669623px;}
.ws22{word-spacing:-10.652592px;}
.ws90{word-spacing:-10.604166px;}
.ws164{word-spacing:-10.580853px;}
.ws13f{word-spacing:-10.544990px;}
.ws163{word-spacing:-10.521074px;}
.ws32{word-spacing:-10.473250px;}
.ws138{word-spacing:-10.437388px;}
.wsad{word-spacing:-10.407792px;}
.ws14d{word-spacing:-10.401516px;}
.wsc7{word-spacing:-10.359216px;}
.wsa9{word-spacing:-10.342334px;}
.ws146{word-spacing:-10.281959px;}
.ws34{word-spacing:-10.276877px;}
.ws25{word-spacing:-10.222184px;}
.ws1bb{word-spacing:-10.222180px;}
.ws143{word-spacing:-10.211419px;}
.ws93{word-spacing:-10.145961px;}
.ws12{word-spacing:-10.102622px;}
.ws50{word-spacing:-10.080503px;}
.wsa1{word-spacing:-10.071386px;}
.ws1c5{word-spacing:-10.042843px;}
.wse8{word-spacing:-10.015045px;}
.ws196{word-spacing:-10.003385px;}
.ws4a{word-spacing:-9.949588px;}
.ws15c{word-spacing:-9.923286px;}
.ws160{word-spacing:-9.887468px;}
.ws54{word-spacing:-9.884130px;}
.ws1e6{word-spacing:-9.863507px;}
.wsec{word-spacing:-9.818672px;}
.ws145{word-spacing:-9.803728px;}
.ws64{word-spacing:-9.753214px;}
.ws5e{word-spacing:-9.687756px;}
.ws15f{word-spacing:-9.684170px;}
.wsaf{word-spacing:-9.622298px;}
.wsb0{word-spacing:-9.556841px;}
.ws4e{word-spacing:-9.491383px;}
.ws162{word-spacing:-9.445055px;}
.ws80{word-spacing:-9.425925px;}
.ws1e7{word-spacing:-9.385276px;}
.ws157{word-spacing:-9.325497px;}
.wse3{word-spacing:-9.295009px;}
.ws13b{word-spacing:-9.265718px;}
.ws33{word-spacing:-9.229552px;}
.ws52{word-spacing:-9.164094px;}
.ws8a{word-spacing:-9.098636px;}
.ws1c6{word-spacing:-9.086382px;}
.ws8c{word-spacing:-9.033178px;}
.ws194{word-spacing:-9.026603px;}
.wsb9{word-spacing:-8.967720px;}
.ws170{word-spacing:-8.966824px;}
.ws7f{word-spacing:-8.902263px;}
.ws14{word-spacing:-8.847267px;}
.ws6b{word-spacing:-8.836805px;}
.ws148{word-spacing:-8.727709px;}
.ws24{word-spacing:-8.661956px;}
.ws19c{word-spacing:-8.608151px;}
.ws14e{word-spacing:-8.548373px;}
.wsd7{word-spacing:-8.509516px;}
.ws115{word-spacing:-8.451824px;}
.wsa0{word-spacing:-8.444058px;}
.wsf1{word-spacing:-8.313142px;}
.wsf0{word-spacing:-8.247684px;}
.wsf8{word-spacing:-8.234928px;}
.ws7{word-spacing:-8.189700px;}
.ws18{word-spacing:-8.182227px;}
.ws177{word-spacing:-8.134432px;}
.ws76{word-spacing:-8.116769px;}
.ws26{word-spacing:-8.051311px;}
.ws107{word-spacing:-8.039620px;}
.ws63{word-spacing:-7.985853px;}
.ws171{word-spacing:-7.950584px;}
.ws7e{word-spacing:-7.789480px;}
.ws7b{word-spacing:-7.724022px;}
.ws7a{word-spacing:-7.658564px;}
.ws19d{word-spacing:-7.651690px;}
.ws69{word-spacing:-7.593106px;}
.ws21{word-spacing:-7.585937px;}
.ws9a{word-spacing:-7.540557px;}
.ws1f{word-spacing:-7.532136px;}
.wsb8{word-spacing:-7.527648px;}
.ws10c{word-spacing:-7.417124px;}
.ws186{word-spacing:-7.412575px;}
.ws3c{word-spacing:-7.396733px;}
.ws131{word-spacing:-7.352796px;}
.wsb3{word-spacing:-7.331275px;}
.ws1e8{word-spacing:-7.293017px;}
.ws13e{word-spacing:-7.265817px;}
.wsc9{word-spacing:-7.200359px;}
.ws199{word-spacing:-7.173459px;}
.ws89{word-spacing:-7.134902px;}
.ws1b2{word-spacing:-7.113681px;}
.wsa6{word-spacing:-7.069444px;}
.ws13c{word-spacing:-7.053902px;}
.wsfd{word-spacing:-7.003986px;}
.ws2d{word-spacing:-6.938528px;}
.ws1be{word-spacing:-6.934344px;}
.ws1bf{word-spacing:-6.879238px;}
.ws195{word-spacing:-6.874565px;}
.wsd0{word-spacing:-6.873070px;}
.wsaa{word-spacing:-6.807613px;}
.ws1af{word-spacing:-6.755008px;}
.ws47{word-spacing:-6.676697px;}
.wsd{word-spacing:-6.635450px;}
.ws6e{word-spacing:-6.611239px;}
.ws1c9{word-spacing:-6.575671px;}
.wsb2{word-spacing:-6.545781px;}
.ws71{word-spacing:-6.480323px;}
.ws169{word-spacing:-6.449131px;}
.ws73{word-spacing:-6.414866px;}
.ws57{word-spacing:-6.349408px;}
.ws17a{word-spacing:-6.336556px;}
.ws21a{word-spacing:-6.276463px;}
.ws17b{word-spacing:-6.249736px;}
.wsfe{word-spacing:-6.218492px;}
.ws1c3{word-spacing:-6.216998px;}
.ws79{word-spacing:-6.153034px;}
.ws17e{word-spacing:-6.097441px;}
.ws19b{word-spacing:-5.977883px;}
.ws8d{word-spacing:-5.956661px;}
.ws97{word-spacing:-5.891203px;}
.ws16c{word-spacing:-5.858325px;}
.wsc6{word-spacing:-5.810505px;}
.ws2f{word-spacing:-5.760288px;}
.ws14c{word-spacing:-5.738768px;}
.ws180{word-spacing:-5.678989px;}
.ws29{word-spacing:-5.629372px;}
.ws165{word-spacing:-5.559431px;}
.ws40{word-spacing:-5.498456px;}
.ws7d{word-spacing:-5.432998px;}
.ws1b8{word-spacing:-5.320316px;}
.wsbe{word-spacing:-5.302083px;}
.ws18b{word-spacing:-5.291318px;}
.wsac{word-spacing:-5.236625px;}
.wsa7{word-spacing:-5.171167px;}
.ws75{word-spacing:-5.105709px;}
.ws1ac{word-spacing:-5.081200px;}
.ws1d9{word-spacing:-5.054733px;}
.ws211{word-spacing:-5.021171px;}
.ws185{word-spacing:-5.018364px;}
.ws6a{word-spacing:-4.974794px;}
.ws16d{word-spacing:-4.961643px;}
.ws1e3{word-spacing:-4.877173px;}
.ws1c2{word-spacing:-4.842085px;}
.ws1f4{word-spacing:-4.782306px;}
.ws15a{word-spacing:-4.722527px;}
.ws1aa{word-spacing:-4.662749px;}
.ws212{word-spacing:-4.638154px;}
.ws172{word-spacing:-4.602970px;}
.wsab{word-spacing:-4.582047px;}
.ws173{word-spacing:-4.568244px;}
.ws158{word-spacing:-4.483412px;}
.ws20{word-spacing:-4.465481px;}
.ws1d1{word-spacing:-4.423633px;}
.ws3d{word-spacing:-4.385673px;}
.ws1d0{word-spacing:-4.363855px;}
.ws30{word-spacing:-4.189300px;}
.ws4b{word-spacing:-3.992927px;}
.ws8{word-spacing:-3.945403px;}
.ws49{word-spacing:-3.862011px;}
.wsb1{word-spacing:-3.796553px;}
.ws1d2{word-spacing:-3.766066px;}
.wsba{word-spacing:-3.665638px;}
.ws5a{word-spacing:-3.534722px;}
.ws1cc{word-spacing:-3.347614px;}
.wsfc{word-spacing:-3.228057px;}
.ws2b{word-spacing:-3.207433px;}
.ws1fa{word-spacing:-3.065488px;}
.ws127{word-spacing:-2.945602px;}
.wseb{word-spacing:-2.880144px;}
.wsa{word-spacing:-2.809605px;}
.wsa8{word-spacing:-2.749228px;}
.ws20b{word-spacing:-2.689913px;}
.ws36{word-spacing:-2.683770px;}
.ws3e{word-spacing:-2.618313px;}
.ws1e2{word-spacing:-2.570490px;}
.ws28{word-spacing:-2.487397px;}
.wsea{word-spacing:-2.160108px;}
.ws1d{word-spacing:-2.029192px;}
.ws1ba{word-spacing:-1.972701px;}
.wsbb{word-spacing:-1.963734px;}
.ws67{word-spacing:-1.767361px;}
.ws215{word-spacing:-1.673724px;}
.ws68{word-spacing:-1.636445px;}
.wsb6{word-spacing:-1.570988px;}
.wsb4{word-spacing:-1.505530px;}
.ws18c{word-spacing:-1.489129px;}
.ws101{word-spacing:-1.374614px;}
.wsbf{word-spacing:-1.284838px;}
.wse9{word-spacing:-1.284616px;}
.ws1b7{word-spacing:-1.195577px;}
.ws4d{word-spacing:-1.178241px;}
.ws181{word-spacing:-1.135798px;}
.ws1e9{word-spacing:-1.076019px;}
.wsd8{word-spacing:-0.979579px;}
.wsbc{word-spacing:-0.916409px;}
.ws61{word-spacing:-0.850952px;}
.ws167{word-spacing:-0.777125px;}
.ws1c{word-spacing:-0.720036px;}
.ws168{word-spacing:-0.717346px;}
.ws27{word-spacing:-0.392747px;}
.ws1a6{word-spacing:-0.358673px;}
.wse5{word-spacing:-0.065458px;}
.wsc{word-spacing:-0.059779px;}
.ws13a{word-spacing:-0.053801px;}
.ws11a{word-spacing:-0.043566px;}
.ws16{word-spacing:0.000000px;}
.ws130{word-spacing:0.119558px;}
.ws56{word-spacing:0.458205px;}
.wse7{word-spacing:0.824232px;}
.wse0{word-spacing:0.825321px;}
.wsa5{word-spacing:0.850952px;}
.ws1ca{word-spacing:0.956461px;}
.ws159{word-spacing:1.076019px;}
.ws1ef{word-spacing:1.374913px;}
.ws1d3{word-spacing:1.673807px;}
.ws1d4{word-spacing:1.689743px;}
.wsb5{word-spacing:1.832819px;}
.wsbd{word-spacing:2.094650px;}
.ws1c1{word-spacing:2.450932px;}
.ws1cd{word-spacing:2.988941px;}
.ws1fd{word-spacing:3.108344px;}
.ws124{word-spacing:3.467172px;}
.ws218{word-spacing:3.825654px;}
.ws175{word-spacing:4.005182px;}
.ws135{word-spacing:4.254758px;}
.ws204{word-spacing:4.782067px;}
.ws193{word-spacing:4.901864px;}
.ws1d7{word-spacing:5.439873px;}
.ws60{word-spacing:6.545781px;}
.ws18a{word-spacing:6.934344px;}
.ws1cb{word-spacing:7.352796px;}
.ws5f{word-spacing:7.920395px;}
.ws20d{word-spacing:8.189290px;}
.ws102{word-spacing:10.342334px;}
.ws96{word-spacing:10.473250px;}
.wse4{word-spacing:10.800539px;}
.ws4c{word-spacing:11.455117px;}
.ws7c{word-spacing:12.044238px;}
.ws1bd{word-spacing:12.699816px;}
.ws62{word-spacing:14.466177px;}
.ws20a{word-spacing:15.900373px;}
.ws17f{word-spacing:17.247102px;}
.ws1f3{word-spacing:17.335860px;}
.wse6{word-spacing:18.066356px;}
.ws1e1{word-spacing:18.172764px;}
.ws1f8{word-spacing:22.118167px;}
.ws128{word-spacing:22.582945px;}
.ws1f7{word-spacing:24.389762px;}
.ws10d{word-spacing:24.920982px;}
.ws104{word-spacing:27.014937px;}
.wsf5{word-spacing:27.670152px;}
.ws113{word-spacing:28.398943px;}
.ws134{word-spacing:30.176052px;}
.ws59{word-spacing:31.485208px;}
.ws58{word-spacing:34.430809px;}
.ws136{word-spacing:47.842123px;}
.ws109{word-spacing:60.231549px;}
.wsfa{word-spacing:61.694053px;}
.ws118{word-spacing:63.318983px;}
.ws10b{word-spacing:75.771705px;}
.ws105{word-spacing:76.993883px;}
.wsf6{word-spacing:78.565056px;}
.ws133{word-spacing:83.800419px;}
.ws119{word-spacing:86.266706px;}
.ws10f{word-spacing:88.675747px;}
.wsfb{word-spacing:105.586084px;}
.ws137{word-spacing:112.730615px;}
.ws114{word-spacing:139.114210px;}
.ws139{word-spacing:149.658056px;}
.ws106{word-spacing:173.054229px;}
.wsf7{word-spacing:177.258263px;}
.ws116{word-spacing:178.548431px;}
.ws10e{word-spacing:179.438674px;}
.ws111{word-spacing:246.895648px;}
.ws10a{word-spacing:288.050515px;}
.ws11d{word-spacing:368.382417px;}
.ws11e{word-spacing:439.360266px;}
.ws11f{word-spacing:458.511270px;}
.ws122{word-spacing:943.484746px;}
.ws12e{word-spacing:954.335576px;}
.ws11b{word-spacing:960.703067px;}
.ws120{word-spacing:964.838144px;}
.ws121{word-spacing:969.256318px;}
.ws123{word-spacing:973.391395px;}
.ws12c{word-spacing:979.740478px;}
.ws12f{word-spacing:983.453356px;}
._4c{margin-left:-68.334519px;}
._4f{margin-left:-65.823726px;}
._5b{margin-left:-64.429794px;}
._51{margin-left:-63.396715px;}
._56{margin-left:-62.234407px;}
._48{margin-left:-60.599101px;}
._59{margin-left:-58.285099px;}
._5f{margin-left:-56.895511px;}
._60{margin-left:-55.683458px;}
._4b{margin-left:-54.621446px;}
._46{margin-left:-52.791369px;}
._4d{margin-left:-51.285309px;}
._47{margin-left:-50.135947px;}
._50{margin-left:-48.750866px;}
._53{margin-left:-47.387225px;}
._5d{margin-left:-44.469556px;}
._49{margin-left:-41.099587px;}
._45{margin-left:-39.490968px;}
._55{margin-left:-38.438509px;}
._4a{margin-left:-37.047616px;}
._54{margin-left:-35.358866px;}
._58{margin-left:-32.317243px;}
._5a{margin-left:-30.798941px;}
._4e{margin-left:-27.911133px;}
._52{margin-left:-26.640435px;}
._5c{margin-left:-25.221227px;}
._57{margin-left:-19.504958px;}
._1{margin-left:-7.316928px;}
._4{margin-left:-6.097442px;}
._2{margin-left:-4.662749px;}
._5{margin-left:-3.587249px;}
._0{margin-left:-2.152038px;}
._3{margin-left:-1.076407px;}
._7{width:1.255355px;}
._13{width:2.391007px;}
._f{width:8.213614px;}
._24{width:10.276877px;}
._c{width:11.836208px;}
._21{width:13.827428px;}
._16{width:15.022639px;}
._6d{width:16.059119px;}
._14{width:17.603366px;}
._b{width:18.710773px;}
._8{width:20.743641px;}
._9{width:22.715956px;}
._10{width:24.031613px;}
._e{width:26.093470px;}
._1d{width:27.492281px;}
._d{width:29.411183px;}
._1c{width:31.137293px;}
._19{width:32.139786px;}
._1f{width:33.948394px;}
._69{width:35.291633px;}
._1b{width:36.513803px;}
._12{width:38.224165px;}
._6a{width:39.272036px;}
._22{width:40.564117px;}
._1e{width:42.259896px;}
._5e{width:43.758103px;}
._23{width:46.626975px;}
._68{width:48.476976px;}
._1a{width:49.895592px;}
._3e{width:51.450502px;}
._11{width:53.020828px;}
._a{width:55.594311px;}
._15{width:57.341044px;}
._25{width:58.517427px;}
._40{width:60.421215px;}
._67{width:61.840267px;}
._20{width:63.444732px;}
._18{width:65.457813px;}
._26{width:66.839046px;}
._6b{width:68.054933px;}
._6c{width:70.717446px;}
._17{width:71.734607px;}
._61{width:73.497467px;}
._3a{width:75.679536px;}
._28{width:80.098055px;}
._3f{width:81.317891px;}
._38{width:84.912075px;}
._3d{width:88.372440px;}
._3c{width:90.548835px;}
._31{width:93.815788px;}
._2d{width:95.334519px;}
._43{width:99.880588px;}
._34{width:101.984302px;}
._2c{width:105.664253px;}
._39{width:107.581774px;}
._2a{width:110.256438px;}
._2b{width:112.516436px;}
._3b{width:113.583335px;}
._42{width:115.874594px;}
._33{width:119.693666px;}
._35{width:120.739537px;}
._36{width:125.147687px;}
._2e{width:128.187920px;}
._37{width:130.519739px;}
._32{width:135.610248px;}
._29{width:138.908540px;}
._30{width:141.473851px;}
._6{width:143.467246px;}
._27{width:144.914589px;}
._41{width:148.727430px;}
._62{width:158.459473px;}
._66{width:173.545687px;}
._63{width:221.867393px;}
._65{width:379.493697px;}
._64{width:399.669060px;}
._44{width:574.121778px;}
._2f{width:576.579088px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.867273px;}
.fsf{font-size:38.020286px;}
.fsa{font-size:38.232599px;}
.fsd{font-size:39.633160px;}
.fs9{font-size:41.441341px;}
.fs10{font-size:41.845012px;}
.fs8{font-size:42.448082px;}
.fsb{font-size:43.566102px;}
.fs3{font-size:47.823051px;}
.fs6{font-size:53.800970px;}
.fse{font-size:54.314929px;}
.fsc{font-size:56.619044px;}
.fs11{font-size:59.775840px;}
.fs1{font-size:59.778829px;}
.fs7{font-size:65.454600px;}
.fs4{font-size:65.457813px;}
.fs2{font-size:71.734607px;}
.fs0{font-size:86.081504px;}
.y0{bottom:0.000000px;}
.y57{bottom:75.867000px;}
.y2f{bottom:103.562179px;}
.yae{bottom:109.275965px;}
.y2e{bottom:118.505926px;}
.y2c2{bottom:120.001501px;}
.y56{bottom:123.886695px;}
.y232{bottom:124.152209px;}
.y166{bottom:124.219712px;}
.y2d{bottom:133.451174px;}
.y28e{bottom:134.198211px;}
.y1b7{bottom:135.902296px;}
.y2c1{bottom:136.440823px;}
.y55{bottom:144.211212px;}
.y231{bottom:144.476725px;}
.yad{bottom:145.124757px;}
.y165{bottom:148.373920px;}
.y2c{bottom:148.396421px;}
.y28d{bottom:150.637533px;}
.y2f1{bottom:151.467074px;}
.y2c0{bottom:152.878645px;}
.y26b{bottom:154.110206px;}
.y1b6{bottom:159.051454px;}
.y2b{bottom:163.340168px;}
.y54{bottom:164.535728px;}
.y230{bottom:164.801241px;}
.yac{bottom:165.449273px;}
.y28c{bottom:167.076855px;}
.y2f0{bottom:167.904896px;}
.y164{bottom:168.699936px;}
.y2bf{bottom:169.317967px;}
.y18a{bottom:170.428022px;}
.ydc{bottom:173.713187px;}
.y2a{bottom:178.285415px;}
.y1b5{bottom:179.375970px;}
.y26a{bottom:182.416622px;}
.y31d{bottom:183.093156px;}
.y28b{bottom:183.516177px;}
.y2ef{bottom:184.344218px;}
.y53{bottom:184.860244px;}
.y22f{bottom:185.125757px;}
.yab{bottom:185.775290px;}
.y163{bottom:189.024452px;}
.y29{bottom:193.230662px;}
.y2be{bottom:199.530977px;}
.y1b4{bottom:199.700486px;}
.y2ee{bottom:200.783540px;}
.y269{bottom:202.741138px;}
.y189{bottom:203.810691px;}
.y52{bottom:205.186260px;}
.y22e{bottom:205.450273px;}
.yaa{bottom:206.099806px;}
.y28{bottom:208.174410px;}
.y162{bottom:209.348968px;}
.y28a{bottom:210.481525px;}
.ydb{bottom:213.024152px;}
.y2bd{bottom:215.970299px;}
.y2ed{bottom:217.222862px;}
.y1b3{bottom:220.025002px;}
.y27{bottom:223.119657px;}
.y188{bottom:224.135208px;}
.y51{bottom:225.510776px;}
.y22d{bottom:225.776290px;}
.ya9{bottom:226.424322px;}
.y26{bottom:228.833442px;}
.y161{bottom:229.673484px;}
.y2bc{bottom:232.409621px;}
.y24c{bottom:232.586630px;}
.yda{bottom:233.348668px;}
.y307{bottom:233.662184px;}
.y268{bottom:237.350868px;}
.y1b2{bottom:240.351018px;}
.y187{bottom:244.461224px;}
.y50{bottom:245.835293px;}
.y22c{bottom:246.100806px;}
.y82{bottom:246.679835px;}
.ya8{bottom:246.748838px;}
.y2ec{bottom:248.688435px;}
.y2bb{bottom:248.848943px;}
.y160{bottom:249.998001px;}
.y306{bottom:250.101506px;}
.y25{bottom:253.406171px;}
.yd9{bottom:253.674684px;}
.y1b1{bottom:260.675534px;}
.y1e0{bottom:262.270114px;}
.y31c{bottom:262.622632px;}
.y186{bottom:264.785740px;}
.y2eb{bottom:265.127757px;}
.y2ba{bottom:265.288265px;}
.y289{bottom:265.786290px;}
.y4f{bottom:266.159809px;}
.y22b{bottom:266.425322px;}
.y81{bottom:267.004351px;}
.ya7{bottom:267.073354px;}
.y24b{bottom:268.232912px;}
.y15f{bottom:270.324017px;}
.y24{bottom:273.730687px;}
.yd8{bottom:273.999201px;}
.y267{bottom:277.527377px;}
.y31b{bottom:279.061954px;}
.y1b0{bottom:281.000051px;}
.y2ea{bottom:281.567079px;}
.y2b9{bottom:281.727587px;}
.y1df{bottom:282.594630px;}
.y185{bottom:285.110256px;}
.y288{bottom:286.110806px;}
.y4e{bottom:286.484325px;}
.y22a{bottom:286.749838px;}
.y80{bottom:287.330367px;}
.ya6{bottom:287.399371px;}
.y24a{bottom:288.557429px;}
.yd7{bottom:294.323717px;}
.y23{bottom:294.830742px;}
.y31a{bottom:295.501276px;}
.y266{bottom:297.851893px;}
.y2e9{bottom:298.006401px;}
.y1af{bottom:301.324567px;}
.y15e{bottom:302.625132px;}
.y1de{bottom:302.920647px;}
.y184{bottom:305.434772px;}
.y287{bottom:306.436822px;}
.y4d{bottom:306.810341px;}
.y229{bottom:307.074354px;}
.y7f{bottom:307.654883px;}
.ya5{bottom:307.723887px;}
.y249{bottom:308.881945px;}
.y2b8{bottom:311.940598px;}
.y13a{bottom:313.044653px;}
.y305{bottom:314.445723px;}
.yd6{bottom:314.648233px;}
.y22{bottom:315.155258px;}
.y265{bottom:318.177909px;}
.y1ae{bottom:321.649083px;}
.y15d{bottom:322.949648px;}
.y1dd{bottom:323.245163px;}
.y183{bottom:325.759289px;}
.y286{bottom:326.761339px;}
.y4c{bottom:327.134857px;}
.y228{bottom:327.664384px;}
.y7e{bottom:327.979400px;}
.ya4{bottom:328.048403px;}
.y2b7{bottom:328.379920px;}
.y248{bottom:329.206461px;}
.y2e8{bottom:329.471974px;}
.y304{bottom:330.885045px;}
.yd5{bottom:334.972749px;}
.y21{bottom:335.479775px;}
.y264{bottom:338.502426px;}
.y1ad{bottom:341.975099px;}
.y15c{bottom:343.275664px;}
.y1dc{bottom:343.569679px;}
.y2b6{bottom:344.819241px;}
.y139{bottom:344.844743px;}
.y2e7{bottom:345.911296px;}
.y182{bottom:346.085305px;}
.y285{bottom:347.085855px;}
.y4b{bottom:347.459373px;}
.y227{bottom:347.990400px;}
.y7d{bottom:348.303916px;}
.ya3{bottom:348.372919px;}
.y247{bottom:349.532477px;}
.yd4{bottom:355.298765px;}
.y20{bottom:355.805791px;}
.y263{bottom:358.826942px;}
.y2b5{bottom:361.258563px;}
.y1ac{bottom:362.299615px;}
.y2e6{bottom:362.349118px;}
.y15b{bottom:363.600180px;}
.y1db{bottom:363.894195px;}
.y181{bottom:366.409821px;}
.yfd{bottom:366.613831px;}
.y284{bottom:367.410371px;}
.y4a{bottom:367.783890px;}
.y226{bottom:368.314916px;}
.y7c{bottom:368.628432px;}
.ya2{bottom:368.697435px;}
.y246{bottom:369.856993px;}
.y319{bottom:375.032252px;}
.yd3{bottom:375.623282px;}
.y1f{bottom:376.130307px;}
.y2b4{bottom:377.697885px;}
.y2e5{bottom:378.788440px;}
.y262{bottom:379.151458px;}
.y138{bottom:381.095555px;}
.y1ab{bottom:382.624132px;}
.y15a{bottom:383.924697px;}
.y1da{bottom:384.218711px;}
.y180{bottom:386.734337px;}
.yfc{bottom:386.938347px;}
.y283{bottom:387.734887px;}
.y49{bottom:388.108406px;}
.y225{bottom:388.639432px;}
.y7b{bottom:388.954448px;}
.ya1{bottom:389.023452px;}
.y245{bottom:390.181509px;}
.y318{bottom:391.471574px;}
.y303{bottom:395.227762px;}
.yd2{bottom:395.947798px;}
.y201{bottom:396.211811px;}
.y1e{bottom:396.454823px;}
.y261{bottom:399.475974px;}
.y137{bottom:401.420071px;}
.y1aa{bottom:402.948648px;}
.y159{bottom:404.249213px;}
.y1d9{bottom:404.544728px;}
.y17f{bottom:407.058853px;}
.yfb{bottom:407.262863px;}
.y2b3{bottom:407.910896px;}
.y282{bottom:408.060903px;}
.y48{bottom:408.434422px;}
.y224{bottom:408.963949px;}
.y7a{bottom:409.278964px;}
.ya0{bottom:409.347968px;}
.y2e4{bottom:410.254013px;}
.y244{bottom:410.506026px;}
.y302{bottom:411.667084px;}
.yd1{bottom:416.272314px;}
.y260{bottom:419.801990px;}
.y136{bottom:421.744588px;}
.y1a9{bottom:423.273164px;}
.y2b2{bottom:424.350218px;}
.y158{bottom:424.573729px;}
.y1d8{bottom:424.869244px;}
.y2e3{bottom:426.693335px;}
.yfa{bottom:427.588880px;}
.y281{bottom:428.385420px;}
.y47{bottom:428.758938px;}
.y223{bottom:429.288465px;}
.y9f{bottom:429.672484px;}
.y1d{bottom:429.745988px;}
.y243{bottom:430.830542px;}
.y200{bottom:433.649183px;}
.yd0{bottom:436.596830px;}
.y79{bottom:437.171359px;}
.y317{bottom:438.123906px;}
.y17e{bottom:438.233412px;}
.y25f{bottom:440.126507px;}
.y2b1{bottom:440.789540px;}
.y135{bottom:442.069104px;}
.y2e2{bottom:443.132657px;}
.y1a8{bottom:443.599180px;}
.y1d7{bottom:446.749338px;}
.yf9{bottom:447.913396px;}
.y280{bottom:448.709936px;}
.y46{bottom:449.083454px;}
.y222{bottom:449.614481px;}
.y9e{bottom:449.997000px;}
.y242{bottom:451.156558px;}
.y1ff{bottom:453.973699px;}
.y316{bottom:454.563228px;}
.y157{bottom:456.876344px;}
.ycf{bottom:456.922846px;}
.y2b0{bottom:457.228862px;}
.y17d{bottom:458.557928px;}
.y2e1{bottom:459.571979px;}
.y25e{bottom:460.451023px;}
.y134{bottom:462.393620px;}
.y1a7{bottom:463.923696px;}
.y1d6{bottom:467.073854px;}
.yf8{bottom:468.237912px;}
.y27f{bottom:469.034452px;}
.y1c{bottom:469.098955px;}
.y45{bottom:469.407971px;}
.y221{bottom:469.938997px;}
.y9d{bottom:470.321516px;}
.y78{bottom:470.636532px;}
.y315{bottom:471.002550px;}
.y241{bottom:471.481074px;}
.y1fe{bottom:474.298215px;}
.y2e0{bottom:476.011301px;}
.y156{bottom:477.200860px;}
.y17c{bottom:478.883944px;}
.yce{bottom:478.901945px;}
.y25d{bottom:480.775539px;}
.y133{bottom:482.719636px;}
.y1a6{bottom:484.248213px;}
.y1b{bottom:487.033852px;}
.y2af{bottom:487.441872px;}
.yf7{bottom:488.562428px;}
.y1d5{bottom:488.955448px;}
.y27e{bottom:489.358968px;}
.y44{bottom:489.732487px;}
.y220{bottom:490.263513px;}
.y9c{bottom:490.647533px;}
.y240{bottom:491.805590px;}
.y301{bottom:492.450623px;}
.y1fd{bottom:494.622731px;}
.y155{bottom:497.525376px;}
.y17b{bottom:499.208461px;}
.ycd{bottom:499.226461px;}
.y34f{bottom:500.468999px;}
.y25c{bottom:501.100055px;}
.y132{bottom:503.044152px;}
.y2ae{bottom:503.881194px;}
.y1a5{bottom:504.572729px;}
.y1a{bottom:504.967248px;}
.y2df{bottom:507.476874px;}
.yf6{bottom:508.886944px;}
.y300{bottom:508.889945px;}
.y77{bottom:509.212461px;}
.y1d4{bottom:509.279964px;}
.y27d{bottom:509.684984px;}
.y43{bottom:510.058503px;}
.y21f{bottom:510.588029px;}
.y9b{bottom:510.972049px;}
.y23f{bottom:512.130107px;}
.y1fc{bottom:514.948748px;}
.y34e{bottom:516.907499px;}
.y154{bottom:517.849893px;}
.y17a{bottom:519.532977px;}
.ycc{bottom:519.550978px;}
.y2ad{bottom:520.320516px;}
.y25b{bottom:521.424571px;}
.y19{bottom:522.900645px;}
.y131{bottom:523.368668px;}
.y2de{bottom:523.916196px;}
.y1a4{bottom:524.897245px;}
.yf5{bottom:529.212961px;}
.y76{bottom:529.538477px;}
.y1d3{bottom:529.604480px;}
.y27c{bottom:530.009501px;}
.y42{bottom:530.383019px;}
.y21e{bottom:530.912546px;}
.y23e{bottom:532.454623px;}
.y34d{bottom:533.345999px;}
.y1fb{bottom:535.273264px;}
.y2ac{bottom:536.759838px;}
.y153{bottom:538.175909px;}
.y179{bottom:539.857493px;}
.ycb{bottom:539.875494px;}
.y2dd{bottom:540.355518px;}
.y18{bottom:540.834042px;}
.y25a{bottom:541.750588px;}
.y9a{bottom:543.526676px;}
.y130{bottom:543.693185px;}
.y1a3{bottom:545.223261px;}
.yf4{bottom:549.537477px;}
.y34c{bottom:549.782999px;}
.y75{bottom:549.862993px;}
.y1d2{bottom:549.928996px;}
.y27b{bottom:550.334017px;}
.y314{bottom:550.533527px;}
.y41{bottom:550.707535px;}
.y21d{bottom:551.238562px;}
.y23d{bottom:552.780639px;}
.y1fa{bottom:555.597780px;}
.y2dc{bottom:556.794840px;}
.y152{bottom:558.500425px;}
.y17{bottom:558.767438px;}
.y178{bottom:560.182009px;}
.yca{bottom:560.201510px;}
.y259{bottom:562.075104px;}
.y12f{bottom:564.017701px;}
.y1a2{bottom:565.547777px;}
.y2ab{bottom:566.972849px;}
.yf3{bottom:569.861993px;}
.y74{bottom:570.187509px;}
.y1d1{bottom:570.255013px;}
.y27a{bottom:570.846042px;}
.y40{bottom:571.032052px;}
.y21c{bottom:571.563078px;}
.y2db{bottom:573.232662px;}
.y16{bottom:576.700835px;}
.y151{bottom:578.824941px;}
.y34b{bottom:579.671999px;}
.y177{bottom:580.508025px;}
.yc9{bottom:580.526026px;}
.y2aa{bottom:583.412171px;}
.y1f9{bottom:584.024201px;}
.y12e{bottom:584.343717px;}
.y1a1{bottom:585.872294px;}
.y99{bottom:588.164408px;}
.y2da{bottom:589.671983px;}
.yf2{bottom:590.186509px;}
.y73{bottom:590.512025px;}
.y1d0{bottom:590.579529px;}
.y258{bottom:590.885544px;}
.y279{bottom:591.170558px;}
.y3f{bottom:591.356568px;}
.y15{bottom:594.635732px;}
.y34a{bottom:596.110499px;}
.y313{bottom:597.185859px;}
.y150{bottom:599.149457px;}
.y2a9{bottom:599.849992px;}
.y176{bottom:600.832541px;}
.yc8{bottom:600.850542px;}
.y12d{bottom:604.668233px;}
.y23c{bottom:605.682284px;}
.y2d9{bottom:606.111305px;}
.y1a0{bottom:606.196810px;}
.y98{bottom:608.488924px;}
.yf1{bottom:610.511025px;}
.y72{bottom:610.836542px;}
.y1cf{bottom:610.904045px;}
.y278{bottom:611.495075px;}
.y3e{bottom:611.682584px;}
.y349{bottom:612.548998px;}
.y312{bottom:613.625181px;}
.y14f{bottom:619.473974px;}
.y14{bottom:620.843542px;}
.y175{bottom:621.157058px;}
.yc7{bottom:621.175059px;}
.y1f8{bottom:621.463073px;}
.y2ff{bottom:622.550627px;}
.y23b{bottom:623.615681px;}
.y21b{bottom:623.801690px;}
.y12c{bottom:624.992749px;}
.y19f{bottom:626.521326px;}
.y97{bottom:628.814941px;}
.y348{bottom:628.985998px;}
.y257{bottom:628.991949px;}
.y2a8{bottom:630.064503px;}
.yf0{bottom:630.837042px;}
.y71{bottom:631.162558px;}
.y1ce{bottom:631.228561px;}
.y277{bottom:631.819591px;}
.y3d{bottom:632.007100px;}
.y115{bottom:636.841842px;}
.y2d8{bottom:637.576879px;}
.y13{bottom:638.776939px;}
.y14e{bottom:639.799990px;}
.y174{bottom:641.481574px;}
.yc6{bottom:641.499575px;}
.y23a{bottom:641.549077px;}
.y21a{bottom:641.735087px;}
.y1f7{bottom:641.787589px;}
.y12b{bottom:645.317266px;}
.y347{bottom:645.424498px;}
.y2a7{bottom:646.503825px;}
.y19e{bottom:646.847342px;}
.y96{bottom:649.139457px;}
.yef{bottom:651.161558px;}
.y70{bottom:651.487074px;}
.y1cd{bottom:651.553077px;}
.y276{bottom:652.144107px;}
.y3c{bottom:652.331616px;}
.y2d7{bottom:654.016201px;}
.y12{bottom:656.710335px;}
.y114{bottom:657.166358px;}
.y14d{bottom:660.124506px;}
.y173{bottom:661.806090px;}
.yc5{bottom:661.825591px;}
.y1f6{bottom:662.112105px;}
.y311{bottom:662.941647px;}
.y12a{bottom:665.641782px;}
.y19d{bottom:667.171858px;}
.y95{bottom:669.463973px;}
.y2d6{bottom:670.455522px;}
.yee{bottom:671.486074px;}
.y6f{bottom:671.811590px;}
.y1cc{bottom:671.879094px;}
.y275{bottom:672.470123px;}
.y3b{bottom:672.656132px;}
.y219{bottom:674.507831px;}
.y11{bottom:674.645232px;}
.y346{bottom:675.313498px;}
.y2a6{bottom:676.716836px;}
.y113{bottom:677.490874px;}
.y310{bottom:679.380969px;}
.y14c{bottom:680.449022px;}
.y172{bottom:682.132106px;}
.yc4{bottom:682.150107px;}
.y1f5{bottom:682.436621px;}
.y256{bottom:683.314165px;}
.y129{bottom:685.967798px;}
.y2d5{bottom:686.894844px;}
.y19c{bottom:687.496374px;}
.y94{bottom:689.788489px;}
.y345{bottom:691.751998px;}
.y218{bottom:692.089225px;}
.y6e{bottom:692.136106px;}
.y1cb{bottom:692.203610px;}
.y10{bottom:692.578629px;}
.y274{bottom:692.794639px;}
.y3a{bottom:692.980649px;}
.y2a5{bottom:693.156157px;}
.yed{bottom:694.152207px;}
.y112{bottom:697.815390px;}
.y255{bottom:701.247562px;}
.y171{bottom:702.456622px;}
.yc3{bottom:702.474623px;}
.y1f4{bottom:702.761138px;}
.y2d4{bottom:703.334166px;}
.y128{bottom:706.292314px;}
.y19b{bottom:707.820891px;}
.y344{bottom:708.188998px;}
.y30f{bottom:709.595479px;}
.y217{bottom:709.669322px;}
.y93{bottom:710.113005px;}
.yf{bottom:710.512025px;}
.y6d{bottom:712.460623px;}
.y1ca{bottom:712.528126px;}
.y14b{bottom:712.750137px;}
.y273{bottom:713.119156px;}
.y39{bottom:713.306665px;}
.yec{bottom:714.476723px;}
.y111{bottom:718.141407px;}
.y2fe{bottom:718.360418px;}
.y254{bottom:719.182459px;}
.y2d3{bottom:719.773488px;}
.y170{bottom:722.781139px;}
.yc2{bottom:722.799140px;}
.y1f3{bottom:723.087154px;}
.y2a4{bottom:723.369168px;}
.y343{bottom:724.627498px;}
.y30e{bottom:726.033301px;}
.y127{bottom:726.616830px;}
.y19a{bottom:728.145407px;}
.ye{bottom:728.445422px;}
.y92{bottom:730.439021px;}
.y6c{bottom:732.786639px;}
.y14a{bottom:733.076153px;}
.y272{bottom:733.443672px;}
.y38{bottom:733.631181px;}
.y1c9{bottom:734.408220px;}
.y2fd{bottom:734.799740px;}
.yeb{bottom:734.801240px;}
.y110{bottom:738.465923px;}
.y2a3{bottom:739.808490px;}
.y239{bottom:742.115605px;}
.y30d{bottom:742.472623px;}
.y16f{bottom:743.105655px;}
.yc1{bottom:743.123656px;}
.y1f2{bottom:743.411670px;}
.y216{bottom:744.829515px;}
.yd{bottom:746.378818px;}
.y126{bottom:746.941347px;}
.y91{bottom:750.763538px;}
.y2d2{bottom:751.239061px;}
.y199{bottom:751.296064px;}
.y253{bottom:751.761088px;}
.y6b{bottom:753.111155px;}
.y149{bottom:753.400670px;}
.y271{bottom:753.768188px;}
.y37{bottom:753.955697px;}
.y342{bottom:754.516498px;}
.y1c8{bottom:754.734236px;}
.yea{bottom:755.125756px;}
.y2a2{bottom:756.247812px;}
.y10f{bottom:758.790439px;}
.y32c{bottom:758.911945px;}
.y238{bottom:760.049002px;}
.y215{bottom:762.409612px;}
.y16e{bottom:763.430171px;}
.y1f1{bottom:763.736186px;}
.yc0{bottom:765.104255px;}
.y252{bottom:766.706335px;}
.y125{bottom:767.265863px;}
.y2d1{bottom:767.678383px;}
.y341{bottom:770.954998px;}
.y90{bottom:771.088054px;}
.y198{bottom:772.507125px;}
.yc{bottom:772.588129px;}
.y2a1{bottom:772.687134px;}
.y6a{bottom:773.435671px;}
.y148{bottom:773.725186px;}
.y270{bottom:774.094204px;}
.y250{bottom:774.178208px;}
.y36{bottom:774.280213px;}
.y1c7{bottom:775.058752px;}
.ye9{bottom:775.450272px;}
.y10e{bottom:779.114955px;}
.y214{bottom:779.991007px;}
.y251{bottom:781.650082px;}
.y16d{bottom:783.756187px;}
.ybf{bottom:785.428771px;}
.y340{bottom:787.391998px;}
.y124{bottom:787.591879px;}
.y30c{bottom:789.124956px;}
.yb{bottom:790.521525px;}
.y8f{bottom:791.412570px;}
.y237{bottom:792.605958px;}
.y197{bottom:792.831641px;}
.y69{bottom:793.760187px;}
.y147{bottom:794.318215px;}
.y26f{bottom:794.418720px;}
.y35{bottom:794.604730px;}
.y1c6{bottom:795.383269px;}
.ye8{bottom:795.776288px;}
.y24f{bottom:796.595329px;}
.y1f0{bottom:797.867393px;}
.y2d0{bottom:799.142456px;}
.y10d{bottom:799.439471px;}
.y2a0{bottom:802.900144px;}
.y33f{bottom:803.830498px;}
.y16c{bottom:804.080703px;}
.y30b{bottom:805.564278px;}
.ybe{bottom:805.753287px;}
.y123{bottom:807.916395px;}
.ya{bottom:808.454922px;}
.y236{bottom:809.471877px;}
.y8e{bottom:811.737086px;}
.y24e{bottom:812.137606px;}
.y196{bottom:813.156157px;}
.y68{bottom:814.084704px;}
.y146{bottom:814.644232px;}
.y26e{bottom:814.743236px;}
.y34{bottom:814.930746px;}
.y2cf{bottom:815.581778px;}
.y1c5{bottom:815.707785px;}
.ye7{bottom:816.100804px;}
.y213{bottom:816.141306px;}
.y29f{bottom:819.339466px;}
.y10c{bottom:819.763988px;}
.y33e{bottom:820.268998px;}
.y32b{bottom:822.003599px;}
.y16b{bottom:824.405220px;}
.ybd{bottom:826.077803px;}
.y235{bottom:826.336550px;}
.y9{bottom:826.388319px;}
.y24d{bottom:827.082853px;}
.y122{bottom:828.240911px;}
.y2ce{bottom:832.021100px;}
.y8d{bottom:832.063102px;}
.y195{bottom:833.480673px;}
.y212{bottom:834.074703px;}
.y67{bottom:834.410720px;}
.y145{bottom:834.968748px;}
.y26d{bottom:835.067753px;}
.y33{bottom:835.255262px;}
.y29e{bottom:835.777288px;}
.ye6{bottom:836.425321px;}
.y33d{bottom:836.707498px;}
.y1ef{bottom:837.374868px;}
.y1c4{bottom:837.589379px;}
.y32a{bottom:838.442921px;}
.y10b{bottom:840.090004px;}
.y8{bottom:844.321715px;}
.y16a{bottom:844.729736px;}
.ybc{bottom:846.402319px;}
.y2fc{bottom:848.460422px;}
.y121{bottom:848.565428px;}
.y29d{bottom:852.216610px;}
.y8c{bottom:852.387619px;}
.y33c{bottom:853.145998px;}
.y194{bottom:853.806690px;}
.y66{bottom:854.735236px;}
.y329{bottom:854.882243px;}
.y144{bottom:855.293264px;}
.y26c{bottom:855.392269px;}
.y32{bottom:855.579778px;}
.ye5{bottom:856.749837px;}
.y1ee{bottom:857.699384px;}
.y1c3{bottom:857.913895px;}
.y10a{bottom:860.414520px;}
.y7{bottom:862.255112px;}
.y2cd{bottom:863.486674px;}
.y2fb{bottom:864.899744px;}
.y169{bottom:865.054252px;}
.y211{bottom:866.028839px;}
.ybb{bottom:866.728336px;}
.y30a{bottom:868.655932px;}
.y120{bottom:868.889944px;}
.y8b{bottom:872.712135px;}
.y234{bottom:873.411170px;}
.y193{bottom:874.131206px;}
.y65{bottom:875.059752px;}
.y143{bottom:875.617780px;}
.y31{bottom:875.904294px;}
.ye4{bottom:877.074353px;}
.y1c2{bottom:878.238411px;}
.y1ed{bottom:879.138456px;}
.y210{bottom:879.556024px;}
.y2cc{bottom:879.925995px;}
.y6{bottom:880.190009px;}
.y109{bottom:880.739036px;}
.y2fa{bottom:881.339066px;}
.y29c{bottom:882.431121px;}
.y33b{bottom:883.033498px;}
.y309{bottom:885.095254px;}
.y168{bottom:885.380268px;}
.yba{bottom:887.052852px;}
.y11f{bottom:889.388469px;}
.y233{bottom:891.344566px;}
.y8a{bottom:893.036651px;}
.y20f{bottom:893.481566px;}
.y192{bottom:894.455722px;}
.y64{bottom:895.384268px;}
.y142{bottom:895.942296px;}
.y30{bottom:896.228811px;}
.y2cb{bottom:896.365317px;}
.ye3{bottom:897.400369px;}
.y1c1{bottom:898.562927px;}
.y29b{bottom:898.868943px;}
.y1ec{bottom:899.462972px;}
.y33a{bottom:899.471998px;}
.y108{bottom:901.063552px;}
.y328{bottom:901.534576px;}
.y20e{bottom:907.008751px;}
.yb9{bottom:907.377368px;}
.y11e{bottom:909.712985px;}
.y2ca{bottom:912.804639px;}
.y89{bottom:913.361167px;}
.y191{bottom:914.780238px;}
.y29a{bottom:915.308264px;}
.y63{bottom:915.708784px;}
.y339{bottom:915.910498px;}
.y141{bottom:916.268312px;}
.y5{bottom:916.554827px;}
.ye2{bottom:917.724885px;}
.y327{bottom:917.973898px;}
.y1c0{bottom:918.887443px;}
.y1eb{bottom:919.787488px;}
.y107{bottom:921.388068px;}
.yb8{bottom:927.701884px;}
.y2f9{bottom:929.243961px;}
.y11d{bottom:930.037501px;}
.y299{bottom:931.747586px;}
.y338{bottom:932.348998px;}
.y88{bottom:933.685683px;}
.y326{bottom:934.413220px;}
.y190{bottom:935.104754px;}
.y62{bottom:936.034801px;}
.y140{bottom:936.592829px;}
.y167{bottom:936.879343px;}
.ye1{bottom:938.049401px;}
.y1bf{bottom:939.213460px;}
.y1ea{bottom:940.112005px;}
.y20d{bottom:940.719535px;}
.y106{bottom:941.714085px;}
.y2c9{bottom:944.270213px;}
.y2f8{bottom:945.683283px;}
.yb7{bottom:948.026400px;}
.y298{bottom:948.186908px;}
.y337{bottom:948.787498px;}
.y325{bottom:950.852542px;}
.y18f{bottom:955.430770px;}
.y61{bottom:956.359317px;}
.y13f{bottom:956.917345px;}
.y87{bottom:957.203859px;}
.ye0{bottom:958.373918px;}
.y20c{bottom:958.652932px;}
.y1be{bottom:959.537976px;}
.y2c8{bottom:960.709534px;}
.y1e9{bottom:961.551077px;}
.y11c{bottom:961.837591px;}
.y105{bottom:962.038601px;}
.y2f7{bottom:962.122605px;}
.y297{bottom:964.626230px;}
.y336{bottom:965.225998px;}
.yb6{bottom:968.352417px;}
.y18e{bottom:975.755287px;}
.y60{bottom:976.683833px;}
.y2c7{bottom:977.148856px;}
.y13e{bottom:977.241861px;}
.y86{bottom:977.528375px;}
.y2f6{bottom:978.560427px;}
.ydf{bottom:978.698434px;}
.y1bd{bottom:979.862492px;}
.y324{bottom:981.065552px;}
.y104{bottom:982.363117px;}
.y1e8{bottom:982.990148px;}
.yb5{bottom:988.676933px;}
.y20b{bottom:990.062161px;}
.y2c6{bottom:993.586678px;}
.y296{bottom:994.839241px;}
.y2f5{bottom:994.999749px;}
.y335{bottom:995.113498px;}
.y18d{bottom:996.079803px;}
.y5f{bottom:997.008349px;}
.y323{bottom:997.504874px;}
.y13d{bottom:997.566377px;}
.y85{bottom:997.852892px;}
.y11b{bottom:998.088403px;}
.yde{bottom:999.024450px;}
.y1bc{bottom:1000.187008px;}
.y20a{bottom:1001.933305px;}
.y103{bottom:1002.687633px;}
.y1e7{bottom:1003.314665px;}
.yb4{bottom:1009.001449px;}
.y2c5{bottom:1010.026000px;}
.y295{bottom:1011.278563px;}
.y334{bottom:1011.551997px;}
.y322{bottom:1013.944196px;}
.y209{bottom:1014.154038px;}
.y18c{bottom:1016.404319px;}
.y5e{bottom:1017.332865px;}
.y13c{bottom:1017.892393px;}
.y84{bottom:1018.178908px;}
.y11a{bottom:1018.412919px;}
.ydd{bottom:1019.348966px;}
.y1bb{bottom:1022.068602px;}
.y102{bottom:1023.012149px;}
.y208{bottom:1026.025181px;}
.y4{bottom:1026.378318px;}
.y2f4{bottom:1026.465322px;}
.y294{bottom:1027.717885px;}
.y333{bottom:1027.990497px;}
.yb3{bottom:1029.325965px;}
.y321{bottom:1030.383518px;}
.y18b{bottom:1037.616880px;}
.y5d{bottom:1038.503424px;}
.y119{bottom:1038.737436px;}
.y3{bottom:1040.794038px;}
.y2c4{bottom:1041.491573px;}
.y1ba{bottom:1042.393118px;}
.y2f3{bottom:1042.904644px;}
.y101{bottom:1043.338166px;}
.y293{bottom:1044.157207px;}
.y332{bottom:1044.428997px;}
.y13b{bottom:1044.641731px;}
.y320{bottom:1046.822840px;}
.yb2{bottom:1049.650481px;}
.y1e6{bottom:1057.249861px;}
.y2c3{bottom:1057.930895px;}
.y207{bottom:1058.527925px;}
.y5c{bottom:1058.827940px;}
.y118{bottom:1059.063452px;}
.y2f2{bottom:1059.343966px;}
.y308{bottom:1060.596529px;}
.y331{bottom:1060.867497px;}
.y2{bottom:1061.804089px;}
.y1b9{bottom:1062.717635px;}
.y31f{bottom:1063.260662px;}
.y100{bottom:1063.662682px;}
.yb1{bottom:1069.976498px;}
.y292{bottom:1074.370217px;}
.y1e5{bottom:1075.183258px;}
.y206{bottom:1076.461322px;}
.y330{bottom:1077.305997px;}
.y5b{bottom:1079.152456px;}
.y117{bottom:1079.387968px;}
.y1b8{bottom:1083.042151px;}
.yff{bottom:1083.987198px;}
.yb0{bottom:1090.301014px;}
.y291{bottom:1090.809539px;}
.y31e{bottom:1093.475172px;}
.y32f{bottom:1093.744497px;}
.y5a{bottom:1099.476972px;}
.yfe{bottom:1104.311714px;}
.y116{bottom:1105.946796px;}
.y1e4{bottom:1107.024253px;}
.y290{bottom:1107.248861px;}
.y205{bottom:1108.199386px;}
.yaf{bottom:1110.625530px;}
.y59{bottom:1119.802989px;}
.y1e3{bottom:1120.204296px;}
.y204{bottom:1121.066837px;}
.y32e{bottom:1123.631997px;}
.y28f{bottom:1123.688183px;}
.y1{bottom:1127.828390px;}
.y1e2{bottom:1133.772473px;}
.y203{bottom:1134.313217px;}
.y32d{bottom:1140.070497px;}
.y58{bottom:1140.127505px;}
.y83{bottom:1146.066302px;}
.y1e1{bottom:1146.952515px;}
.y202{bottom:1147.180669px;}
.h8{height:24.676684px;}
.h12{height:26.304028px;}
.h11{height:28.511643px;}
.h10{height:29.204281px;}
.h13{height:29.973478px;}
.h14{height:30.714102px;}
.h15{height:32.674576px;}
.h4{height:32.902259px;}
.h9{height:37.015067px;}
.h17{height:40.340860px;}
.h1c{height:41.006226px;}
.h19{height:41.008277px;}
.h1b{height:41.125778px;}
.h6{height:41.127834px;}
.h16{height:42.052176px;}
.h18{height:44.399029px;}
.hc{height:44.707686px;}
.ha{height:45.032765px;}
.h7{height:45.034975px;}
.hb{height:45.296806px;}
.he{height:46.147758px;}
.hf{height:49.093360px;}
.h5{height:49.640348px;}
.hd{height:56.657447px;}
.h3{height:59.122853px;}
.h2{height:72.365396px;}
.h1a{height:1262.807997px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:104.108206px;}
.x7{left:105.836293px;}
.x26{left:113.366669px;}
.x31{left:114.752766px;}
.x1d{left:119.485475px;}
.x8{left:122.649133px;}
.x9{left:125.121257px;}
.x18{left:128.518927px;}
.xa{left:130.496025px;}
.x6{left:131.798091px;}
.x20{left:132.837643px;}
.x38{left:134.758508px;}
.x12{left:135.785290px;}
.x27{left:137.624382px;}
.x19{left:145.606281px;}
.x1c{left:158.055403px;}
.x15{left:166.287815px;}
.x10{left:167.796890px;}
.x1a{left:174.788740px;}
.x2c{left:176.266314px;}
.x3{left:196.832342px;}
.x1b{left:199.155958px;}
.x11{left:227.477374px;}
.x1{left:228.521426px;}
.x13{left:233.177659px;}
.x5{left:236.807841px;}
.x28{left:248.668934px;}
.x16{left:251.682584px;}
.x2b{left:256.236812px;}
.x39{left:260.170009px;}
.x17{left:261.505076px;}
.x3a{left:267.029852px;}
.x2{left:268.853943px;}
.x29{left:275.632782px;}
.x24{left:287.991900px;}
.x4{left:292.427622px;}
.x14{left:294.224711px;}
.x25{left:305.200760px;}
.x3d{left:309.651483px;}
.x3e{left:316.511326px;}
.x21{left:345.837792px;}
.x32{left:355.139757px;}
.x22{left:359.524476px;}
.x1e{left:385.930297px;}
.x1f{left:395.943297px;}
.x2a{left:406.232312px;}
.x33{left:415.375269px;}
.x3b{left:423.655683px;}
.x3c{left:430.706035px;}
.xd{left:435.885000px;}
.xb{left:459.216461px;}
.x34{left:467.483577px;}
.xc{left:475.580779px;}
.xf{left:478.195410px;}
.x42{left:483.426171px;}
.x36{left:486.878689px;}
.x35{left:491.740496px;}
.x37{left:492.773322px;}
.x3f{left:495.659283px;}
.x40{left:587.898894px;}
.x2f{left:601.122056px;}
.x30{left:612.728136px;}
.x2d{left:635.262263px;}
.x41{left:654.058202px;}
.x2e{left:691.408570px;}
.xe{left:780.208509px;}
@media print{
.v7{vertical-align:-24.050104pt;}
.v3{vertical-align:-23.137157pt;}
.v4{vertical-align:-20.315682pt;}
.v6{vertical-align:-8.992450pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.115722pt;}
.v2{vertical-align:23.137157pt;}
.v1{vertical-align:27.766722pt;}
.lsa{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000481pt;}
.ls69{letter-spacing:0.000946pt;}
.ls59{letter-spacing:0.001457pt;}
.ls66{letter-spacing:0.001614pt;}
.ls64{letter-spacing:0.001904pt;}
.ls5c{letter-spacing:0.002426pt;}
.ls62{letter-spacing:0.002971pt;}
.ls3e{letter-spacing:0.005048pt;}
.ls5a{letter-spacing:0.006790pt;}
.ls5f{letter-spacing:1.569052pt;}
.ls1{letter-spacing:2.655839pt;}
.ls1f{letter-spacing:2.657253pt;}
.ls2{letter-spacing:2.661173pt;}
.ls65{letter-spacing:9.823997pt;}
.ls3f{letter-spacing:10.053689pt;}
.ls6b{letter-spacing:10.249421pt;}
.ls40{letter-spacing:10.445545pt;}
.ls26{letter-spacing:10.902711pt;}
.ls2a{letter-spacing:11.920449pt;}
.ls2b{letter-spacing:11.924011pt;}
.ls34{letter-spacing:12.500911pt;}
.ls33{letter-spacing:12.502791pt;}
.ls44{letter-spacing:12.587990pt;}
.ls43{letter-spacing:12.589870pt;}
.ls45{letter-spacing:12.593432pt;}
.ls19{letter-spacing:12.698719pt;}
.ls13{letter-spacing:12.794803pt;}
.ls12{letter-spacing:12.796683pt;}
.ls14{letter-spacing:12.800246pt;}
.ls4a{letter-spacing:12.823895pt;}
.ls3d{letter-spacing:12.851108pt;}
.ls2d{letter-spacing:12.985289pt;}
.ls2c{letter-spacing:12.987169pt;}
.ls67{letter-spacing:13.282477pt;}
.ls8{letter-spacing:13.308273pt;}
.ls23{letter-spacing:13.812541pt;}
.ls22{letter-spacing:13.814421pt;}
.ls20{letter-spacing:14.048446pt;}
.ls21{letter-spacing:14.124641pt;}
.ls52{letter-spacing:14.210246pt;}
.ls49{letter-spacing:14.244801pt;}
.ls61{letter-spacing:14.275169pt;}
.ls39{letter-spacing:14.308753pt;}
.ls1d{letter-spacing:14.313062pt;}
.lsf{letter-spacing:14.330748pt;}
.ls54{letter-spacing:14.332283pt;}
.lse{letter-spacing:14.333695pt;}
.lsb{letter-spacing:14.347781pt;}
.lsc{letter-spacing:14.351343pt;}
.ls29{letter-spacing:14.364775pt;}
.ls53{letter-spacing:14.380756pt;}
.ls68{letter-spacing:14.401631pt;}
.ls1a{letter-spacing:14.403122pt;}
.ls38{letter-spacing:14.434873pt;}
.ls37{letter-spacing:14.440776pt;}
.ls2e{letter-spacing:14.463529pt;}
.ls4c{letter-spacing:14.516497pt;}
.ls31{letter-spacing:14.525502pt;}
.ls30{letter-spacing:14.527382pt;}
.ls4{letter-spacing:14.542782pt;}
.ls32{letter-spacing:14.543274pt;}
.ls4e{letter-spacing:14.545210pt;}
.ls46{letter-spacing:14.548607pt;}
.ls35{letter-spacing:14.635231pt;}
.ls36{letter-spacing:14.636817pt;}
.ls3{letter-spacing:14.646283pt;}
.ls4f{letter-spacing:14.769706pt;}
.ls57{letter-spacing:14.788619pt;}
.ls28{letter-spacing:14.791332pt;}
.ls6a{letter-spacing:14.811418pt;}
.ls2f{letter-spacing:14.818401pt;}
.ls6e{letter-spacing:14.875521pt;}
.ls41{letter-spacing:15.086674pt;}
.ls56{letter-spacing:15.138964pt;}
.ls6c{letter-spacing:15.193536pt;}
.ls6d{letter-spacing:15.196483pt;}
.ls1b{letter-spacing:15.557285pt;}
.ls1c{letter-spacing:15.559567pt;}
.ls25{letter-spacing:15.829194pt;}
.ls1e{letter-spacing:15.881484pt;}
.ls60{letter-spacing:16.157900pt;}
.ls5e{letter-spacing:16.160327pt;}
.ls5d{letter-spacing:16.163234pt;}
.ls5b{letter-spacing:16.378034pt;}
.ls4b{letter-spacing:17.084159pt;}
.ls17{letter-spacing:17.183510pt;}
.ls18{letter-spacing:17.185792pt;}
.ls4d{letter-spacing:17.335152pt;}
.ls0{letter-spacing:18.597970pt;}
.ls81{letter-spacing:18.774935pt;}
.ls82{letter-spacing:18.901514pt;}
.ls27{letter-spacing:19.003209pt;}
.ls42{letter-spacing:19.034583pt;}
.ls7c{letter-spacing:19.043855pt;}
.ls72{letter-spacing:19.082060pt;}
.ls70{letter-spacing:19.128103pt;}
.ls76{letter-spacing:19.133437pt;}
.ls71{letter-spacing:19.152812pt;}
.ls50{letter-spacing:19.180996pt;}
.ls7e{letter-spacing:19.194013pt;}
.ls80{letter-spacing:19.253995pt;}
.ls75{letter-spacing:19.272546pt;}
.ls74{letter-spacing:19.281392pt;}
.ls79{letter-spacing:19.337602pt;}
.ls7f{letter-spacing:19.352750pt;}
.ls7d{letter-spacing:19.365067pt;}
.ls7a{letter-spacing:19.451791pt;}
.ls83{letter-spacing:19.493918pt;}
.lsd{letter-spacing:19.928746pt;}
.ls55{letter-spacing:20.205884pt;}
.ls24{letter-spacing:20.415044pt;}
.ls3a{letter-spacing:20.634663pt;}
.ls3b{letter-spacing:20.636945pt;}
.ls3c{letter-spacing:20.639892pt;}
.ls48{letter-spacing:21.246459pt;}
.ls47{letter-spacing:21.251688pt;}
.ls9{letter-spacing:21.947147pt;}
.ls10{letter-spacing:22.710584pt;}
.ls11{letter-spacing:22.712866pt;}
.ls16{letter-spacing:23.468792pt;}
.ls15{letter-spacing:23.471074pt;}
.ls7{letter-spacing:23.479250pt;}
.ls6{letter-spacing:23.481532pt;}
.ls5{letter-spacing:23.484479pt;}
.ls78{letter-spacing:24.375215pt;}
.ls51{letter-spacing:25.042727pt;}
.ls58{letter-spacing:26.571027pt;}
.ls6f{letter-spacing:29.651296pt;}
.ls77{letter-spacing:32.542944pt;}
.ls73{letter-spacing:53.662954pt;}
.ls84{letter-spacing:69.660271pt;}
.ls7b{letter-spacing:81.094391pt;}
.ws3{word-spacing:-63.764095pt;}
.ws86{word-spacing:-58.184722pt;}
.ws0{word-spacing:-57.387669pt;}
.ws150{word-spacing:-53.136737pt;}
.ws210{word-spacing:-53.134080pt;}
.ws1{word-spacing:-47.823071pt;}
.wsce{word-spacing:-47.362364pt;}
.wsc3{word-spacing:-44.104020pt;}
.wsd4{word-spacing:-43.696727pt;}
.ws53{word-spacing:-43.638542pt;}
.wsf2{word-spacing:-43.580357pt;}
.ws1ec{word-spacing:-43.465851pt;}
.ws8b{word-spacing:-43.463988pt;}
.ws20f{word-spacing:-43.410543pt;}
.ws156{word-spacing:-43.306440pt;}
.wsdd{word-spacing:-42.940325pt;}
.wsc0{word-spacing:-42.591217pt;}
.ws18f{word-spacing:-41.924885pt;}
.ws15e{word-spacing:-41.871749pt;}
.ws1ad{word-spacing:-41.818612pt;}
.ws1f2{word-spacing:-41.659202pt;}
.ws16b{word-spacing:-41.606065pt;}
.ws1db{word-spacing:-41.393518pt;}
.wsa2{word-spacing:-41.311153pt;}
.ws1f1{word-spacing:-41.287244pt;}
.ws192{word-spacing:-41.180971pt;}
.ws1cf{word-spacing:-40.809014pt;}
.ws188{word-spacing:-40.118236pt;}
.ws16f{word-spacing:-40.065099pt;}
.ws202{word-spacing:-40.063096pt;}
.ws1f6{word-spacing:-40.011963pt;}
.ws17d{word-spacing:-39.958826pt;}
.ws1a1{word-spacing:-39.905689pt;}
.ws147{word-spacing:-39.852553pt;}
.ws1fc{word-spacing:-39.850560pt;}
.ws1c4{word-spacing:-39.799416pt;}
.ws1a9{word-spacing:-39.746279pt;}
.ws174{word-spacing:-39.693142pt;}
.ws1a2{word-spacing:-39.640006pt;}
.ws209{word-spacing:-39.638024pt;}
.ws179{word-spacing:-39.533732pt;}
.ws203{word-spacing:-39.531755pt;}
.ws6c{word-spacing:-39.491630pt;}
.ws1bc{word-spacing:-38.577271pt;}
.ws197{word-spacing:-38.524134pt;}
.ws161{word-spacing:-38.364724pt;}
.ws1c7{word-spacing:-37.673946pt;}
.ws132{word-spacing:-37.195566pt;}
.ws14f{word-spacing:-37.142579pt;}
.ws16e{word-spacing:-36.876895pt;}
.ws178{word-spacing:-36.823759pt;}
.ws19e{word-spacing:-36.398665pt;}
.ws6d{word-spacing:-36.102561pt;}
.ws1b1{word-spacing:-35.920434pt;}
.ws1c0{word-spacing:-35.707887pt;}
.ws1c8{word-spacing:-35.495340pt;}
.ws16a{word-spacing:-35.335930pt;}
.ws189{word-spacing:-35.229656pt;}
.ws11c{word-spacing:-35.229475pt;}
.ws17c{word-spacing:-35.176520pt;}
.ws1b4{word-spacing:-35.123383pt;}
.ws1e5{word-spacing:-35.070246pt;}
.ws1a7{word-spacing:-34.963973pt;}
.ws1d6{word-spacing:-34.857699pt;}
.ws12d{word-spacing:-33.795810pt;}
.ws1fb{word-spacing:-32.358655pt;}
.ws182{word-spacing:-30.553624pt;}
.ws117{word-spacing:-29.041797pt;}
.wsf9{word-spacing:-28.299968pt;}
.ws1d5{word-spacing:-28.109334pt;}
.ws108{word-spacing:-27.628777pt;}
.ws219{word-spacing:-26.141967pt;}
.ws2c{word-spacing:-25.834017pt;}
.ws110{word-spacing:-25.486407pt;}
.ws12b{word-spacing:-23.592711pt;}
.ws1f9{word-spacing:-23.591531pt;}
.ws95{word-spacing:-23.099335pt;}
.ws74{word-spacing:-21.233449pt;}
.wsdb{word-spacing:-18.874164pt;}
.ws9d{word-spacing:-15.884429pt;}
.ws3b{word-spacing:-15.826244pt;}
.ws9e{word-spacing:-15.768060pt;}
.ws125{word-spacing:-15.593506pt;}
.wsc4{word-spacing:-15.477136pt;}
.ws100{word-spacing:-15.469404pt;}
.ws9f{word-spacing:-15.418951pt;}
.wsf4{word-spacing:-15.302582pt;}
.wsd2{word-spacing:-15.186213pt;}
.wscf{word-spacing:-15.011658pt;}
.ws3a{word-spacing:-14.953474pt;}
.ws91{word-spacing:-14.837104pt;}
.wsed{word-spacing:-14.778919pt;}
.wsc2{word-spacing:-14.720735pt;}
.wsd5{word-spacing:-14.604365pt;}
.ws15{word-spacing:-14.506329pt;}
.ws129{word-spacing:-14.487996pt;}
.ws8e{word-spacing:-14.371626pt;}
.wse{word-spacing:-14.346919pt;}
.ws85{word-spacing:-14.255257pt;}
.wsc1{word-spacing:-14.138888pt;}
.ws141{word-spacing:-14.022518pt;}
.ws83{word-spacing:-13.964333pt;}
.ws1ea{word-spacing:-13.921825pt;}
.ws82{word-spacing:-13.906149pt;}
.wsd6{word-spacing:-13.847964pt;}
.ws1eb{word-spacing:-13.843929pt;}
.wsc5{word-spacing:-13.789779pt;}
.ws142{word-spacing:-13.731594pt;}
.ws66{word-spacing:-13.498856pt;}
.ws4f{word-spacing:-13.440671pt;}
.ws81{word-spacing:-13.382486pt;}
.ws8f{word-spacing:-13.324301pt;}
.wsa4{word-spacing:-13.266117pt;}
.ws1dd{word-spacing:-13.231047pt;}
.wsef{word-spacing:-13.207932pt;}
.ws65{word-spacing:-13.149747pt;}
.ws5c{word-spacing:-13.091563pt;}
.ws1a4{word-spacing:-13.071637pt;}
.ws20e{word-spacing:-13.070984pt;}
.ws5d{word-spacing:-13.033378pt;}
.ws151{word-spacing:-13.018500pt;}
.ws23{word-spacing:-13.007879pt;}
.ws9b{word-spacing:-12.975193pt;}
.ws84{word-spacing:-12.917008pt;}
.ws14a{word-spacing:-12.912227pt;}
.ws37{word-spacing:-12.858824pt;}
.ws1ff{word-spacing:-12.858447pt;}
.ws166{word-spacing:-12.805954pt;}
.wsda{word-spacing:-12.800639pt;}
.ws88{word-spacing:-12.742454pt;}
.ws10{word-spacing:-12.699680pt;}
.wsd3{word-spacing:-12.684269pt;}
.wsa3{word-spacing:-12.626085pt;}
.wscd{word-spacing:-12.567900pt;}
.ws38{word-spacing:-12.509715pt;}
.ws4{word-spacing:-12.487133pt;}
.wsd1{word-spacing:-12.393346pt;}
.ws190{word-spacing:-12.380860pt;}
.ws2{word-spacing:-12.370234pt;}
.ws126{word-spacing:-12.335161pt;}
.ws15d{word-spacing:-12.327723pt;}
.ws1ae{word-spacing:-12.274586pt;}
.ws198{word-spacing:-12.221449pt;}
.wscb{word-spacing:-12.218792pt;}
.ws1df{word-spacing:-12.168313pt;}
.ws99{word-spacing:-12.160607pt;}
.ws1a3{word-spacing:-12.115176pt;}
.wsdc{word-spacing:-12.102422pt;}
.ws78{word-spacing:-12.044238pt;}
.ws1de{word-spacing:-12.008902pt;}
.wsca{word-spacing:-11.986053pt;}
.ws87{word-spacing:-11.869683pt;}
.ws18d{word-spacing:-11.849492pt;}
.ws77{word-spacing:-11.811499pt;}
.ws18e{word-spacing:-11.799438pt;}
.ws1dc{word-spacing:-11.796356pt;}
.ws1da{word-spacing:-11.777669pt;}
.ws72{word-spacing:-11.753314pt;}
.ws19a{word-spacing:-11.743219pt;}
.ws5b{word-spacing:-11.695129pt;}
.ws1f0{word-spacing:-11.685147pt;}
.ws48{word-spacing:-11.636944pt;}
.ws191{word-spacing:-11.583809pt;}
.ws31{word-spacing:-11.578760pt;}
.ws94{word-spacing:-11.524973pt;}
.ws39{word-spacing:-11.520575pt;}
.ws1ab{word-spacing:-11.477535pt;}
.ws44{word-spacing:-11.462390pt;}
.ws1e0{word-spacing:-11.424398pt;}
.ws19{word-spacing:-11.404206pt;}
.ws5{word-spacing:-11.371262pt;}
.ws2e{word-spacing:-11.346021pt;}
.wsee{word-spacing:-11.291212pt;}
.wse2{word-spacing:-11.289276pt;}
.ws1b{word-spacing:-11.287836pt;}
.wsd9{word-spacing:-11.287336pt;}
.ws35{word-spacing:-11.229651pt;}
.ws17{word-spacing:-11.171467pt;}
.ws152{word-spacing:-11.158715pt;}
.ws1a{word-spacing:-11.113282pt;}
.ws3f{word-spacing:-11.055097pt;}
.ws1ce{word-spacing:-10.999304pt;}
.ws41{word-spacing:-10.996913pt;}
.ws14b{word-spacing:-10.946168pt;}
.ws46{word-spacing:-10.938728pt;}
.ws103{word-spacing:-10.822358pt;}
.ws19f{word-spacing:-10.786758pt;}
.ws55{word-spacing:-10.764174pt;}
.ws1d8{word-spacing:-10.733621pt;}
.wsc8{word-spacing:-10.705989pt;}
.ws183{word-spacing:-10.680484pt;}
.ws216{word-spacing:-10.679950pt;}
.wsde{word-spacing:-10.647804pt;}
.ws184{word-spacing:-10.627347pt;}
.wsdf{word-spacing:-10.589619pt;}
.ws11{word-spacing:-10.574211pt;}
.ws217{word-spacing:-10.573682pt;}
.ws43{word-spacing:-10.531435pt;}
.ws12a{word-spacing:-10.521074pt;}
.ws200{word-spacing:-10.520548pt;}
.ws187{word-spacing:-10.515057pt;}
.ws1ee{word-spacing:-10.488961pt;}
.ws201{word-spacing:-10.474211pt;}
.ws2a{word-spacing:-10.473250pt;}
.ws1b3{word-spacing:-10.473183pt;}
.ws144{word-spacing:-10.467937pt;}
.ws205{word-spacing:-10.467414pt;}
.ws1f5{word-spacing:-10.436206pt;}
.wsf3{word-spacing:-10.415065pt;}
.ws9{word-spacing:-10.414800pt;}
.ws206{word-spacing:-10.414280pt;}
.ws208{word-spacing:-10.389712pt;}
.ws153{word-spacing:-10.361664pt;}
.ws213{word-spacing:-10.361146pt;}
.ws6f{word-spacing:-10.356881pt;}
.ws1b0{word-spacing:-10.333270pt;}
.ws1b9{word-spacing:-10.312525pt;}
.ws1b6{word-spacing:-10.311402pt;}
.ws6{word-spacing:-10.308527pt;}
.ws1fe{word-spacing:-10.308011pt;}
.ws70{word-spacing:-10.298696pt;}
.ws154{word-spacing:-10.255390pt;}
.ws20c{word-spacing:-10.254877pt;}
.ws1a0{word-spacing:-10.243328pt;}
.wsb7{word-spacing:-10.240511pt;}
.ws155{word-spacing:-10.226266pt;}
.ws1e4{word-spacing:-10.210885pt;}
.ws15b{word-spacing:-10.202253pt;}
.wsff{word-spacing:-10.182326pt;}
.ws1a8{word-spacing:-10.151157pt;}
.ws13{word-spacing:-10.149117pt;}
.ws207{word-spacing:-10.148609pt;}
.ws1a5{word-spacing:-10.126542pt;}
.wsae{word-spacing:-10.124142pt;}
.wsf{word-spacing:-10.095980pt;}
.ws98{word-spacing:-10.065957pt;}
.ws149{word-spacing:-10.042843pt;}
.ws45{word-spacing:-10.007772pt;}
.ws1b5{word-spacing:-9.989707pt;}
.ws42{word-spacing:-9.949588pt;}
.ws51{word-spacing:-9.891403pt;}
.ws1ed{word-spacing:-9.883433pt;}
.wsb{word-spacing:-9.830296pt;}
.ws92{word-spacing:-9.716849pt;}
.ws140{word-spacing:-9.660263pt;}
.wse1{word-spacing:-9.658664pt;}
.ws112{word-spacing:-9.617749pt;}
.wscc{word-spacing:-9.600479pt;}
.ws214{word-spacing:-9.564134pt;}
.ws13d{word-spacing:-9.542294pt;}
.ws1e{word-spacing:-9.516794pt;}
.ws176{word-spacing:-9.511476pt;}
.ws9c{word-spacing:-9.484110pt;}
.ws22{word-spacing:-9.468971pt;}
.ws90{word-spacing:-9.425925pt;}
.ws164{word-spacing:-9.405202pt;}
.ws13f{word-spacing:-9.373325pt;}
.ws163{word-spacing:-9.352066pt;}
.ws32{word-spacing:-9.309556pt;}
.ws138{word-spacing:-9.277678pt;}
.wsad{word-spacing:-9.251371pt;}
.ws14d{word-spacing:-9.245792pt;}
.wsc7{word-spacing:-9.208192pt;}
.wsa9{word-spacing:-9.193186pt;}
.ws146{word-spacing:-9.139519pt;}
.ws34{word-spacing:-9.135001pt;}
.ws25{word-spacing:-9.086386pt;}
.ws1bb{word-spacing:-9.086382pt;}
.ws143{word-spacing:-9.076817pt;}
.ws93{word-spacing:-9.018632pt;}
.ws12{word-spacing:-8.980109pt;}
.ws50{word-spacing:-8.960447pt;}
.wsa1{word-spacing:-8.952343pt;}
.ws1c5{word-spacing:-8.926972pt;}
.wse8{word-spacing:-8.902263pt;}
.ws196{word-spacing:-8.891898pt;}
.ws4a{word-spacing:-8.844078pt;}
.ws15c{word-spacing:-8.820698pt;}
.ws160{word-spacing:-8.788861pt;}
.ws54{word-spacing:-8.785893pt;}
.ws1e6{word-spacing:-8.767562pt;}
.wsec{word-spacing:-8.727708pt;}
.ws145{word-spacing:-8.714425pt;}
.ws64{word-spacing:-8.669524pt;}
.ws5e{word-spacing:-8.611339pt;}
.ws15f{word-spacing:-8.608151pt;}
.wsaf{word-spacing:-8.553154pt;}
.wsb0{word-spacing:-8.494969pt;}
.ws4e{word-spacing:-8.436785pt;}
.ws162{word-spacing:-8.395604pt;}
.ws80{word-spacing:-8.378600pt;}
.ws1e7{word-spacing:-8.342468pt;}
.ws157{word-spacing:-8.289331pt;}
.wse3{word-spacing:-8.262231pt;}
.ws13b{word-spacing:-8.236194pt;}
.ws33{word-spacing:-8.204046pt;}
.ws52{word-spacing:-8.145861pt;}
.ws8a{word-spacing:-8.087676pt;}
.ws1c6{word-spacing:-8.076784pt;}
.ws8c{word-spacing:-8.029492pt;}
.ws194{word-spacing:-8.023647pt;}
.wsb9{word-spacing:-7.971307pt;}
.ws170{word-spacing:-7.970511pt;}
.ws7f{word-spacing:-7.913122pt;}
.ws14{word-spacing:-7.864237pt;}
.ws6b{word-spacing:-7.854938pt;}
.ws148{word-spacing:-7.757964pt;}
.ws24{word-spacing:-7.699517pt;}
.ws19c{word-spacing:-7.651690pt;}
.ws14e{word-spacing:-7.598553pt;}
.wsd7{word-spacing:-7.564014pt;}
.ws115{word-spacing:-7.512732pt;}
.wsa0{word-spacing:-7.505829pt;}
.wsf1{word-spacing:-7.389460pt;}
.wsf0{word-spacing:-7.331275pt;}
.wsf8{word-spacing:-7.319936pt;}
.ws7{word-spacing:-7.279733pt;}
.ws18{word-spacing:-7.273090pt;}
.ws177{word-spacing:-7.230606pt;}
.ws76{word-spacing:-7.214906pt;}
.ws26{word-spacing:-7.156721pt;}
.ws107{word-spacing:-7.146329pt;}
.ws63{word-spacing:-7.098536pt;}
.ws171{word-spacing:-7.067186pt;}
.ws7e{word-spacing:-6.923982pt;}
.ws7b{word-spacing:-6.865797pt;}
.ws7a{word-spacing:-6.807613pt;}
.ws19d{word-spacing:-6.801502pt;}
.ws69{word-spacing:-6.749428pt;}
.ws21{word-spacing:-6.743055pt;}
.ws9a{word-spacing:-6.702717pt;}
.ws1f{word-spacing:-6.695232pt;}
.wsb8{word-spacing:-6.691243pt;}
.ws10c{word-spacing:-6.592999pt;}
.ws186{word-spacing:-6.588955pt;}
.ws3c{word-spacing:-6.574874pt;}
.ws131{word-spacing:-6.535819pt;}
.wsb3{word-spacing:-6.516689pt;}
.ws1e8{word-spacing:-6.482682pt;}
.ws13e{word-spacing:-6.458504pt;}
.wsc9{word-spacing:-6.400319pt;}
.ws199{word-spacing:-6.376408pt;}
.ws89{word-spacing:-6.342135pt;}
.ws1b2{word-spacing:-6.323272pt;}
.wsa6{word-spacing:-6.283950pt;}
.ws13c{word-spacing:-6.270135pt;}
.wsfd{word-spacing:-6.225765pt;}
.ws2d{word-spacing:-6.167581pt;}
.ws1be{word-spacing:-6.163861pt;}
.ws1bf{word-spacing:-6.114878pt;}
.ws195{word-spacing:-6.110725pt;}
.wsd0{word-spacing:-6.109396pt;}
.wsaa{word-spacing:-6.051211pt;}
.ws1af{word-spacing:-6.004451pt;}
.ws47{word-spacing:-5.934842pt;}
.wsd{word-spacing:-5.898178pt;}
.ws6e{word-spacing:-5.876657pt;}
.ws1c9{word-spacing:-5.845041pt;}
.wsb2{word-spacing:-5.818472pt;}
.ws71{word-spacing:-5.760288pt;}
.ws169{word-spacing:-5.732561pt;}
.ws73{word-spacing:-5.702103pt;}
.ws57{word-spacing:-5.643918pt;}
.ws17a{word-spacing:-5.632494pt;}
.ws21a{word-spacing:-5.579078pt;}
.ws17b{word-spacing:-5.555321pt;}
.wsfe{word-spacing:-5.527549pt;}
.ws1c3{word-spacing:-5.526221pt;}
.ws79{word-spacing:-5.469364pt;}
.ws17e{word-spacing:-5.419947pt;}
.ws19b{word-spacing:-5.313674pt;}
.ws8d{word-spacing:-5.294810pt;}
.ws97{word-spacing:-5.236625pt;}
.ws16c{word-spacing:-5.207400pt;}
.wsc6{word-spacing:-5.164893pt;}
.ws2f{word-spacing:-5.120256pt;}
.ws14c{word-spacing:-5.101127pt;}
.ws180{word-spacing:-5.047990pt;}
.ws29{word-spacing:-5.003886pt;}
.ws165{word-spacing:-4.941717pt;}
.ws40{word-spacing:-4.887517pt;}
.ws7d{word-spacing:-4.829332pt;}
.ws1b8{word-spacing:-4.729170pt;}
.wsbe{word-spacing:-4.712963pt;}
.ws18b{word-spacing:-4.703394pt;}
.wsac{word-spacing:-4.654778pt;}
.wsa7{word-spacing:-4.596593pt;}
.ws75{word-spacing:-4.538408pt;}
.ws1ac{word-spacing:-4.516623pt;}
.ws1d9{word-spacing:-4.493096pt;}
.ws211{word-spacing:-4.463263pt;}
.ws185{word-spacing:-4.460768pt;}
.ws6a{word-spacing:-4.422039pt;}
.ws16d{word-spacing:-4.410349pt;}
.ws1e3{word-spacing:-4.335265pt;}
.ws1c2{word-spacing:-4.304076pt;}
.ws1f4{word-spacing:-4.250939pt;}
.ws15a{word-spacing:-4.197802pt;}
.ws1aa{word-spacing:-4.144665pt;}
.ws212{word-spacing:-4.122803pt;}
.ws172{word-spacing:-4.091529pt;}
.wsab{word-spacing:-4.072931pt;}
.ws173{word-spacing:-4.060661pt;}
.ws158{word-spacing:-3.985255pt;}
.ws20{word-spacing:-3.969316pt;}
.ws1d1{word-spacing:-3.932119pt;}
.ws3d{word-spacing:-3.898376pt;}
.ws1d0{word-spacing:-3.878982pt;}
.ws30{word-spacing:-3.723822pt;}
.ws4b{word-spacing:-3.549268pt;}
.ws8{word-spacing:-3.507025pt;}
.ws49{word-spacing:-3.432899pt;}
.wsb1{word-spacing:-3.374714pt;}
.ws1d2{word-spacing:-3.347614pt;}
.wsba{word-spacing:-3.258344pt;}
.ws5a{word-spacing:-3.141975pt;}
.ws1cc{word-spacing:-2.975657pt;}
.wsfc{word-spacing:-2.869384pt;}
.ws2b{word-spacing:-2.851051pt;}
.ws1fa{word-spacing:-2.724878pt;}
.ws127{word-spacing:-2.618313pt;}
.wseb{word-spacing:-2.560128pt;}
.wsa{word-spacing:-2.497427pt;}
.wsa8{word-spacing:-2.443758pt;}
.ws20b{word-spacing:-2.391034pt;}
.ws36{word-spacing:-2.385574pt;}
.ws3e{word-spacing:-2.327389pt;}
.ws1e2{word-spacing:-2.284880pt;}
.ws28{word-spacing:-2.211019pt;}
.wsea{word-spacing:-1.920096pt;}
.ws1d{word-spacing:-1.803726pt;}
.ws1ba{word-spacing:-1.753512pt;}
.wsbb{word-spacing:-1.745542pt;}
.ws67{word-spacing:-1.570988pt;}
.ws215{word-spacing:-1.487754pt;}
.ws68{word-spacing:-1.454618pt;}
.wsb6{word-spacing:-1.396433pt;}
.wsb4{word-spacing:-1.338249pt;}
.ws18c{word-spacing:-1.323670pt;}
.ws101{word-spacing:-1.221879pt;}
.wsbf{word-spacing:-1.142078pt;}
.wse9{word-spacing:-1.141881pt;}
.ws1b7{word-spacing:-1.062735pt;}
.ws4d{word-spacing:-1.047325pt;}
.ws181{word-spacing:-1.009598pt;}
.ws1e9{word-spacing:-0.956461pt;}
.wsd8{word-spacing:-0.870737pt;}
.wsbc{word-spacing:-0.814586pt;}
.ws61{word-spacing:-0.756401pt;}
.ws167{word-spacing:-0.690778pt;}
.ws1c{word-spacing:-0.640032pt;}
.ws168{word-spacing:-0.637641pt;}
.ws27{word-spacing:-0.349108pt;}
.ws1a6{word-spacing:-0.318820pt;}
.wse5{word-spacing:-0.058185pt;}
.wsc{word-spacing:-0.053137pt;}
.ws13a{word-spacing:-0.047823pt;}
.ws11a{word-spacing:-0.038725pt;}
.ws16{word-spacing:0.000000pt;}
.ws130{word-spacing:0.106273pt;}
.ws56{word-spacing:0.407293pt;}
.wse7{word-spacing:0.732650pt;}
.wse0{word-spacing:0.733618pt;}
.wsa5{word-spacing:0.756401pt;}
.ws1ca{word-spacing:0.850188pt;}
.ws159{word-spacing:0.956461pt;}
.ws1ef{word-spacing:1.222145pt;}
.ws1d3{word-spacing:1.487829pt;}
.ws1d4{word-spacing:1.501993pt;}
.wsb5{word-spacing:1.629172pt;}
.wsbd{word-spacing:1.861911pt;}
.ws1c1{word-spacing:2.178606pt;}
.ws1cd{word-spacing:2.656837pt;}
.ws1fd{word-spacing:2.762972pt;}
.ws124{word-spacing:3.081931pt;}
.ws218{word-spacing:3.400581pt;}
.ws175{word-spacing:3.560161pt;}
.ws135{word-spacing:3.782007pt;}
.ws204{word-spacing:4.250726pt;}
.ws193{word-spacing:4.357212pt;}
.ws1d7{word-spacing:4.835443pt;}
.ws60{word-spacing:5.818472pt;}
.ws18a{word-spacing:6.163861pt;}
.ws1cb{word-spacing:6.535819pt;}
.ws5f{word-spacing:7.040351pt;}
.ws20d{word-spacing:7.279369pt;}
.ws102{word-spacing:9.193186pt;}
.ws96{word-spacing:9.309556pt;}
.wse4{word-spacing:9.600479pt;}
.ws4c{word-spacing:10.182326pt;}
.ws7c{word-spacing:10.705989pt;}
.ws1bd{word-spacing:11.288725pt;}
.ws62{word-spacing:12.858824pt;}
.ws20a{word-spacing:14.133665pt;}
.ws17f{word-spacing:15.330758pt;}
.ws1f3{word-spacing:15.409654pt;}
.wse6{word-spacing:16.058983pt;}
.ws1e1{word-spacing:16.153568pt;}
.ws1f8{word-spacing:19.660593pt;}
.ws128{word-spacing:20.073729pt;}
.ws1f7{word-spacing:21.679789pt;}
.ws10d{word-spacing:22.151984pt;}
.ws104{word-spacing:24.013277pt;}
.wsf5{word-spacing:24.595691pt;}
.ws113{word-spacing:25.243505pt;}
.ws134{word-spacing:26.823157pt;}
.ws59{word-spacing:27.986851pt;}
.ws58{word-spacing:30.605164pt;}
.ws136{word-spacing:42.526331pt;}
.ws109{word-spacing:53.539154pt;}
.wsfa{word-spacing:54.839158pt;}
.ws118{word-spacing:56.283540pt;}
.ws10b{word-spacing:67.352627pt;}
.ws105{word-spacing:68.439008pt;}
.wsf6{word-spacing:69.835605pt;}
.ws133{word-spacing:74.489261pt;}
.ws119{word-spacing:76.681516pt;}
.ws10f{word-spacing:78.822886pt;}
.wsfb{word-spacing:93.854297pt;}
.ws137{word-spacing:100.204991pt;}
.ws114{word-spacing:123.657075pt;}
.ws139{word-spacing:133.029383pt;}
.ws106{word-spacing:153.825981pt;}
.wsf7{word-spacing:157.562900pt;}
.ws116{word-spacing:158.709716pt;}
.ws10e{word-spacing:159.501043pt;}
.ws111{word-spacing:219.462798pt;}
.ws10a{word-spacing:256.044902pt;}
.ws11d{word-spacing:327.451038pt;}
.ws11e{word-spacing:390.542458pt;}
.ws11f{word-spacing:407.565573pt;}
.ws122{word-spacing:838.653107pt;}
.ws12e{word-spacing:848.298290pt;}
.ws11b{word-spacing:853.958282pt;}
.ws120{word-spacing:857.633906pt;}
.ws121{word-spacing:861.561171pt;}
.ws123{word-spacing:865.236796pt;}
.ws12c{word-spacing:870.880425pt;}
.ws12f{word-spacing:874.180761pt;}
._4c{margin-left:-60.741795pt;}
._4f{margin-left:-58.509979pt;}
._5b{margin-left:-57.270928pt;}
._51{margin-left:-56.352636pt;}
._56{margin-left:-55.319473pt;}
._48{margin-left:-53.865868pt;}
._59{margin-left:-51.808977pt;}
._5f{margin-left:-50.573788pt;}
._60{margin-left:-49.496407pt;}
._4b{margin-left:-48.552397pt;}
._46{margin-left:-46.925661pt;}
._4d{margin-left:-45.586941pt;}
._47{margin-left:-44.565286pt;}
._50{margin-left:-43.334103pt;}
._53{margin-left:-42.121978pt;}
._5d{margin-left:-39.528494pt;}
._49{margin-left:-36.532966pt;}
._45{margin-left:-35.103082pt;}
._55{margin-left:-34.167564pt;}
._4a{margin-left:-32.931214pt;}
._54{margin-left:-31.430103pt;}
._58{margin-left:-28.726438pt;}
._5a{margin-left:-27.376836pt;}
._4e{margin-left:-24.809896pt;}
._52{margin-left:-23.680387pt;}
._5c{margin-left:-22.418868pt;}
._57{margin-left:-17.337740pt;}
._1{margin-left:-6.503936pt;}
._4{margin-left:-5.419948pt;}
._2{margin-left:-4.144666pt;}
._5{margin-left:-3.188666pt;}
._0{margin-left:-1.912922pt;}
._3{margin-left:-0.956806pt;}
._7{width:1.115871pt;}
._13{width:2.125339pt;}
._f{width:7.300990pt;}
._24{width:9.135001pt;}
._c{width:10.521074pt;}
._21{width:12.291047pt;}
._16{width:13.353457pt;}
._6d{width:14.274772pt;}
._14{width:15.647437pt;}
._b{width:16.631799pt;}
._8{width:18.438792pt;}
._9{width:20.191961pt;}
._10{width:21.361433pt;}
._e{width:23.194196pt;}
._1d{width:24.437583pt;}
._d{width:26.143274pt;}
._1c{width:27.677594pt;}
._19{width:28.568699pt;}
._1f{width:30.176350pt;}
._69{width:31.370341pt;}
._1b{width:32.456713pt;}
._12{width:33.977035pt;}
._6a{width:34.908476pt;}
._22{width:36.056993pt;}
._1e{width:37.564352pt;}
._5e{width:38.896092pt;}
._23{width:41.446200pt;}
._68{width:43.090646pt;}
._1a{width:44.351638pt;}
._3e{width:45.733780pt;}
._11{width:47.129625pt;}
._a{width:49.417165pt;}
._15{width:50.969817pt;}
._25{width:52.015491pt;}
._40{width:53.707747pt;}
._67{width:54.969126pt;}
._20{width:56.395318pt;}
._18{width:58.184722pt;}
._26{width:59.412485pt;}
._6b{width:60.493274pt;}
._6c{width:62.859952pt;}
._17{width:63.764095pt;}
._61{width:65.331082pt;}
._3a{width:67.270698pt;}
._28{width:71.198271pt;}
._3f{width:72.282570pt;}
._38{width:75.477400pt;}
._3d{width:78.553280pt;}
._3c{width:80.487853pt;}
._31{width:83.391811pt;}
._2d{width:84.741795pt;}
._43{width:88.782745pt;}
._34{width:90.652713pt;}
._2c{width:93.923781pt;}
._39{width:95.628244pt;}
._2a{width:98.005722pt;}
._2b{width:100.014609pt;}
._3b{width:100.962964pt;}
._42{width:102.999639pt;}
._33{width:106.394369pt;}
._35{width:107.324033pt;}
._36{width:111.242388pt;}
._2e{width:113.944818pt;}
._37{width:116.017546pt;}
._32{width:120.542442pt;}
._29{width:123.474258pt;}
._30{width:125.754534pt;}
._6{width:127.526441pt;}
._27{width:128.812968pt;}
._41{width:132.202160pt;}
._62{width:140.852865pt;}
._66{width:154.262833pt;}
._63{width:197.215460pt;}
._65{width:337.327731pt;}
._64{width:355.261387pt;}
._44{width:510.330469pt;}
._2f{width:512.514744pt;}
.fs5{font-size:31.882021pt;}
.fsf{font-size:33.795810pt;}
.fsa{font-size:33.984533pt;}
.fsd{font-size:35.229475pt;}
.fs9{font-size:36.836748pt;}
.fs10{font-size:37.195566pt;}
.fs8{font-size:37.731629pt;}
.fsb{font-size:38.725424pt;}
.fs3{font-size:42.509379pt;}
.fs6{font-size:47.823084pt;}
.fse{font-size:48.279937pt;}
.fsc{font-size:50.328039pt;}
.fs11{font-size:53.134080pt;}
.fs1{font-size:53.136737pt;}
.fs7{font-size:58.181867pt;}
.fs4{font-size:58.184722pt;}
.fs2{font-size:63.764095pt;}
.fs0{font-size:76.516892pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:67.437333pt;}
.y2f{bottom:92.055270pt;}
.yae{bottom:97.134191pt;}
.y2e{bottom:105.338601pt;}
.y2c2{bottom:106.668001pt;}
.y56{bottom:110.121507pt;}
.y232{bottom:110.357519pt;}
.y166{bottom:110.417522pt;}
.y2d{bottom:118.623265pt;}
.y28e{bottom:119.287299pt;}
.y1b7{bottom:120.802041pt;}
.y2c1{bottom:121.280732pt;}
.y55{bottom:128.187744pt;}
.y231{bottom:128.423755pt;}
.yad{bottom:128.999784pt;}
.y165{bottom:131.887929pt;}
.y2c{bottom:131.907930pt;}
.y28d{bottom:133.900029pt;}
.y2f1{bottom:134.637399pt;}
.y2c0{bottom:135.892129pt;}
.y26b{bottom:136.986850pt;}
.y1b6{bottom:141.379070pt;}
.y2b{bottom:145.191260pt;}
.y54{bottom:146.253980pt;}
.y230{bottom:146.489992pt;}
.yac{bottom:147.066021pt;}
.y28c{bottom:148.512760pt;}
.y2f0{bottom:149.248797pt;}
.y164{bottom:149.955499pt;}
.y2bf{bottom:150.504859pt;}
.y18a{bottom:151.491575pt;}
.ydc{bottom:154.411721pt;}
.y2a{bottom:158.475925pt;}
.y1b5{bottom:159.445306pt;}
.y26a{bottom:162.148108pt;}
.y31d{bottom:162.749472pt;}
.y28b{bottom:163.125490pt;}
.y2ef{bottom:163.861527pt;}
.y53{bottom:164.320217pt;}
.y22f{bottom:164.556229pt;}
.yab{bottom:165.133591pt;}
.y163{bottom:168.021735pt;}
.y29{bottom:171.760589pt;}
.y2be{bottom:177.360869pt;}
.y1b4{bottom:177.511543pt;}
.y2ee{bottom:178.474258pt;}
.y269{bottom:180.214345pt;}
.y189{bottom:181.165059pt;}
.y52{bottom:182.387787pt;}
.y22e{bottom:182.622465pt;}
.yaa{bottom:183.199827pt;}
.y28{bottom:185.043920pt;}
.y162{bottom:186.087972pt;}
.y28a{bottom:187.094689pt;}
.ydb{bottom:189.354802pt;}
.y2bd{bottom:191.973599pt;}
.y2ed{bottom:193.086988pt;}
.y1b3{bottom:195.577780pt;}
.y27{bottom:198.328584pt;}
.y188{bottom:199.231296pt;}
.y51{bottom:200.454023pt;}
.y22d{bottom:200.690035pt;}
.ya9{bottom:201.266064pt;}
.y26{bottom:203.407504pt;}
.y161{bottom:204.154208pt;}
.y2bc{bottom:206.586330pt;}
.y24c{bottom:206.743671pt;}
.yda{bottom:207.421038pt;}
.y307{bottom:207.699719pt;}
.y268{bottom:210.978550pt;}
.y1b2{bottom:213.645350pt;}
.y187{bottom:217.298866pt;}
.y50{bottom:218.520260pt;}
.y22c{bottom:218.756272pt;}
.y82{bottom:219.270964pt;}
.ya8{bottom:219.332301pt;}
.y2ec{bottom:221.056387pt;}
.y2bb{bottom:221.199061pt;}
.y160{bottom:222.220445pt;}
.y306{bottom:222.312450pt;}
.y25{bottom:225.249930pt;}
.yd9{bottom:225.488608pt;}
.y1b1{bottom:231.711586pt;}
.y1e0{bottom:233.128990pt;}
.y31c{bottom:233.442339pt;}
.y186{bottom:235.365102pt;}
.y2eb{bottom:235.669117pt;}
.y2ba{bottom:235.811791pt;}
.y289{bottom:236.254480pt;}
.y4f{bottom:236.586497pt;}
.y22b{bottom:236.822508pt;}
.y81{bottom:237.337201pt;}
.ya7{bottom:237.398537pt;}
.y24b{bottom:238.429255pt;}
.y15f{bottom:240.288015pt;}
.y24{bottom:243.316166pt;}
.yd8{bottom:243.554845pt;}
.y267{bottom:246.691002pt;}
.y31b{bottom:248.055070pt;}
.y1b0{bottom:249.777823pt;}
.y2ea{bottom:250.281848pt;}
.y2b9{bottom:250.424522pt;}
.y1df{bottom:251.195227pt;}
.y185{bottom:253.431339pt;}
.y288{bottom:254.320717pt;}
.y4e{bottom:254.652733pt;}
.y22a{bottom:254.888745pt;}
.y80{bottom:255.404771pt;}
.ya6{bottom:255.466107pt;}
.y24a{bottom:256.495492pt;}
.yd7{bottom:261.621082pt;}
.y23{bottom:262.071771pt;}
.y31a{bottom:262.667801pt;}
.y266{bottom:264.757238pt;}
.y2e9{bottom:264.894579pt;}
.y1af{bottom:267.844059pt;}
.y15e{bottom:269.000117pt;}
.y1de{bottom:269.262797pt;}
.y184{bottom:271.497575pt;}
.y287{bottom:272.388287pt;}
.y4d{bottom:272.720303pt;}
.y229{bottom:272.954982pt;}
.y7f{bottom:273.471007pt;}
.ya5{bottom:273.532344pt;}
.y249{bottom:274.561729pt;}
.y2b8{bottom:277.280531pt;}
.y13a{bottom:278.261914pt;}
.y305{bottom:279.507309pt;}
.yd6{bottom:279.687318pt;}
.y22{bottom:280.138007pt;}
.y265{bottom:282.824808pt;}
.y1ae{bottom:285.910296pt;}
.y15d{bottom:287.066354pt;}
.y1dd{bottom:287.329034pt;}
.y183{bottom:289.563812pt;}
.y286{bottom:290.454523pt;}
.y4c{bottom:290.786540pt;}
.y228{bottom:291.257230pt;}
.y7e{bottom:291.537244pt;}
.ya4{bottom:291.598580pt;}
.y2b7{bottom:291.893262pt;}
.y248{bottom:292.627965pt;}
.y2e8{bottom:292.863977pt;}
.y304{bottom:294.120040pt;}
.yd5{bottom:297.753555pt;}
.y21{bottom:298.204244pt;}
.y264{bottom:300.891045pt;}
.y1ad{bottom:303.977866pt;}
.y15c{bottom:305.133924pt;}
.y1dc{bottom:305.395270pt;}
.y2b6{bottom:306.505992pt;}
.y139{bottom:306.528660pt;}
.y2e7{bottom:307.476708pt;}
.y182{bottom:307.631382pt;}
.y285{bottom:308.520760pt;}
.y4b{bottom:308.852776pt;}
.y227{bottom:309.324800pt;}
.y7d{bottom:309.603481pt;}
.ya3{bottom:309.664817pt;}
.y247{bottom:310.695535pt;}
.yd4{bottom:315.821125pt;}
.y20{bottom:316.271814pt;}
.y263{bottom:318.957282pt;}
.y2b5{bottom:321.118723pt;}
.y1ac{bottom:322.044103pt;}
.y2e6{bottom:322.088105pt;}
.y15b{bottom:323.200160pt;}
.y1db{bottom:323.461507pt;}
.y181{bottom:325.697619pt;}
.yfd{bottom:325.878961pt;}
.y284{bottom:326.586996pt;}
.y4a{bottom:326.919013pt;}
.y226{bottom:327.391037pt;}
.y7c{bottom:327.669717pt;}
.ya2{bottom:327.731054pt;}
.y246{bottom:328.761772pt;}
.y319{bottom:333.362002pt;}
.yd3{bottom:333.887361pt;}
.y1f{bottom:334.338051pt;}
.y2b4{bottom:335.731454pt;}
.y2e5{bottom:336.700835pt;}
.y262{bottom:337.023518pt;}
.y138{bottom:338.751605pt;}
.y1ab{bottom:340.110339pt;}
.y15a{bottom:341.266397pt;}
.y1da{bottom:341.527743pt;}
.y180{bottom:343.763855pt;}
.yfc{bottom:343.945198pt;}
.y283{bottom:344.653233pt;}
.y49{bottom:344.985250pt;}
.y225{bottom:345.457273pt;}
.y7b{bottom:345.737287pt;}
.ya1{bottom:345.798624pt;}
.y245{bottom:346.828008pt;}
.y318{bottom:347.974732pt;}
.y303{bottom:351.313566pt;}
.yd2{bottom:351.953598pt;}
.y201{bottom:352.188276pt;}
.y1e{bottom:352.404287pt;}
.y261{bottom:355.089755pt;}
.y137{bottom:356.817841pt;}
.y1aa{bottom:358.176576pt;}
.y159{bottom:359.332634pt;}
.y1d9{bottom:359.595313pt;}
.y17f{bottom:361.830092pt;}
.yfb{bottom:362.011434pt;}
.y2b3{bottom:362.587463pt;}
.y282{bottom:362.720803pt;}
.y48{bottom:363.052820pt;}
.y224{bottom:363.523510pt;}
.y7a{bottom:363.803524pt;}
.ya0{bottom:363.864860pt;}
.y2e4{bottom:364.670234pt;}
.y244{bottom:364.894245pt;}
.y302{bottom:365.926297pt;}
.yd1{bottom:370.019835pt;}
.y260{bottom:373.157325pt;}
.y136{bottom:374.884078pt;}
.y1a9{bottom:376.242812pt;}
.y2b2{bottom:377.200194pt;}
.y158{bottom:377.398870pt;}
.y1d8{bottom:377.661550pt;}
.y2e3{bottom:379.282964pt;}
.yfa{bottom:380.079004pt;}
.y281{bottom:380.787040pt;}
.y47{bottom:381.119056pt;}
.y223{bottom:381.589746pt;}
.y9f{bottom:381.931097pt;}
.y1d{bottom:381.996433pt;}
.y243{bottom:382.960482pt;}
.y200{bottom:385.465940pt;}
.yd0{bottom:388.086071pt;}
.y79{bottom:388.596763pt;}
.y317{bottom:389.443472pt;}
.y17e{bottom:389.540811pt;}
.y25f{bottom:391.223561pt;}
.y2b1{bottom:391.812924pt;}
.y135{bottom:392.950314pt;}
.y2e2{bottom:393.895695pt;}
.y1a8{bottom:394.310382pt;}
.y1d7{bottom:397.110522pt;}
.yf9{bottom:398.145241pt;}
.y280{bottom:398.853276pt;}
.y46{bottom:399.185293pt;}
.y222{bottom:399.657316pt;}
.y9e{bottom:399.997333pt;}
.y242{bottom:401.028052pt;}
.y1ff{bottom:403.532177pt;}
.y316{bottom:404.056203pt;}
.y157{bottom:406.112306pt;}
.ycf{bottom:406.153641pt;}
.y2b0{bottom:406.425655pt;}
.y17d{bottom:407.607047pt;}
.y2e1{bottom:408.508426pt;}
.y25e{bottom:409.289798pt;}
.y134{bottom:411.016551pt;}
.y1a7{bottom:412.376619pt;}
.y1d6{bottom:415.176759pt;}
.yf8{bottom:416.211477pt;}
.y27f{bottom:416.919513pt;}
.y1c{bottom:416.976849pt;}
.y45{bottom:417.251529pt;}
.y221{bottom:417.723553pt;}
.y9d{bottom:418.063570pt;}
.y78{bottom:418.343584pt;}
.y315{bottom:418.668934pt;}
.y241{bottom:419.094288pt;}
.y1fe{bottom:421.598413pt;}
.y2e0{bottom:423.121156pt;}
.y156{bottom:424.178542pt;}
.y17c{bottom:425.674617pt;}
.yce{bottom:425.690618pt;}
.y25d{bottom:427.356035pt;}
.y133{bottom:429.084121pt;}
.y1a6{bottom:430.442856pt;}
.y1b{bottom:432.918979pt;}
.y2af{bottom:433.281664pt;}
.yf7{bottom:434.277714pt;}
.y1d5{bottom:434.627065pt;}
.y27e{bottom:434.985749pt;}
.y44{bottom:435.317766pt;}
.y220{bottom:435.789790pt;}
.y9c{bottom:436.131140pt;}
.y240{bottom:437.160525pt;}
.y301{bottom:437.733887pt;}
.y1fd{bottom:439.664650pt;}
.y155{bottom:442.244779pt;}
.y17b{bottom:443.740854pt;}
.ycd{bottom:443.756855pt;}
.y34f{bottom:444.861332pt;}
.y25c{bottom:445.422271pt;}
.y132{bottom:447.150358pt;}
.y2ae{bottom:447.894395pt;}
.y1a5{bottom:448.509092pt;}
.y1a{bottom:448.859776pt;}
.y2df{bottom:451.090555pt;}
.yf6{bottom:452.343951pt;}
.y300{bottom:452.346617pt;}
.y77{bottom:452.633298pt;}
.y1d4{bottom:452.693301pt;}
.y27d{bottom:453.053319pt;}
.y43{bottom:453.385336pt;}
.y21f{bottom:453.856026pt;}
.y9b{bottom:454.197377pt;}
.y23f{bottom:455.226761pt;}
.y1fc{bottom:457.732220pt;}
.y34e{bottom:459.473332pt;}
.y154{bottom:460.311016pt;}
.y17a{bottom:461.807090pt;}
.ycc{bottom:461.823091pt;}
.y2ad{bottom:462.507125pt;}
.y25b{bottom:463.488508pt;}
.y19{bottom:464.800573pt;}
.y131{bottom:465.216594pt;}
.y2de{bottom:465.703285pt;}
.y1a4{bottom:466.575329pt;}
.yf5{bottom:470.411521pt;}
.y76{bottom:470.700868pt;}
.y1d3{bottom:470.759538pt;}
.y27c{bottom:471.119556pt;}
.y42{bottom:471.451573pt;}
.y21e{bottom:471.922263pt;}
.y23e{bottom:473.292998pt;}
.y34d{bottom:474.085332pt;}
.y1fb{bottom:475.798457pt;}
.y2ac{bottom:477.119856pt;}
.y153{bottom:478.378586pt;}
.y179{bottom:479.873327pt;}
.ycb{bottom:479.889328pt;}
.y2dd{bottom:480.316016pt;}
.y18{bottom:480.741370pt;}
.y25a{bottom:481.556078pt;}
.y9a{bottom:483.134823pt;}
.y130{bottom:483.282831pt;}
.y1a3{bottom:484.642899pt;}
.yf4{bottom:488.477757pt;}
.y34c{bottom:488.695999pt;}
.y75{bottom:488.767105pt;}
.y1d2{bottom:488.825775pt;}
.y27b{bottom:489.185793pt;}
.y314{bottom:489.363135pt;}
.y41{bottom:489.517809pt;}
.y21d{bottom:489.989833pt;}
.y23d{bottom:491.360568pt;}
.y1fa{bottom:493.864693pt;}
.y2dc{bottom:494.928746pt;}
.y152{bottom:496.444822pt;}
.y17{bottom:496.682167pt;}
.y178{bottom:497.939564pt;}
.yca{bottom:497.956898pt;}
.y259{bottom:499.622314pt;}
.y12f{bottom:501.349067pt;}
.y1a2{bottom:502.709135pt;}
.y2ab{bottom:503.975865pt;}
.yf3{bottom:506.543994pt;}
.y74{bottom:506.833342pt;}
.y1d1{bottom:506.893345pt;}
.y27a{bottom:507.418704pt;}
.y40{bottom:507.584046pt;}
.y21c{bottom:508.056069pt;}
.y2db{bottom:509.540144pt;}
.y16{bottom:512.622964pt;}
.y151{bottom:514.511059pt;}
.y34b{bottom:515.263999pt;}
.y177{bottom:516.007134pt;}
.yc9{bottom:516.023134pt;}
.y2aa{bottom:518.588596pt;}
.y1f9{bottom:519.132623pt;}
.y12e{bottom:519.416637pt;}
.y1a1{bottom:520.775372pt;}
.y99{bottom:522.812807pt;}
.y2da{bottom:524.152874pt;}
.yf2{bottom:524.610230pt;}
.y73{bottom:524.899578pt;}
.y1d0{bottom:524.959581pt;}
.y258{bottom:525.231595pt;}
.y279{bottom:525.484941pt;}
.y3f{bottom:525.650282pt;}
.y15{bottom:528.565095pt;}
.y34a{bottom:529.875999pt;}
.y313{bottom:530.831875pt;}
.y150{bottom:532.577295pt;}
.y2a9{bottom:533.199993pt;}
.y176{bottom:534.073370pt;}
.yc8{bottom:534.089371pt;}
.y12d{bottom:537.482874pt;}
.y23c{bottom:538.384252pt;}
.y2d9{bottom:538.765605pt;}
.y1a0{bottom:538.841609pt;}
.y98{bottom:540.879044pt;}
.yf1{bottom:542.676467pt;}
.y72{bottom:542.965815pt;}
.y1cf{bottom:543.025818pt;}
.y278{bottom:543.551177pt;}
.y3e{bottom:543.717852pt;}
.y349{bottom:544.487999pt;}
.y312{bottom:545.444605pt;}
.y14f{bottom:550.643532pt;}
.y14{bottom:551.860926pt;}
.y175{bottom:552.139607pt;}
.yc7{bottom:552.155608pt;}
.y1f8{bottom:552.411620pt;}
.y2ff{bottom:553.378335pt;}
.y23b{bottom:554.325049pt;}
.y21b{bottom:554.490391pt;}
.y12c{bottom:555.549111pt;}
.y19f{bottom:556.907845pt;}
.y97{bottom:558.946614pt;}
.y348{bottom:559.098665pt;}
.y257{bottom:559.103955pt;}
.y2a8{bottom:560.057336pt;}
.yf0{bottom:560.744037pt;}
.y71{bottom:561.033385pt;}
.y1ce{bottom:561.092054pt;}
.y277{bottom:561.617414pt;}
.y3d{bottom:561.784089pt;}
.y115{bottom:566.081637pt;}
.y2d8{bottom:566.735003pt;}
.y13{bottom:567.801723pt;}
.y14e{bottom:568.711102pt;}
.y174{bottom:570.205843pt;}
.yc6{bottom:570.221844pt;}
.y23a{bottom:570.265846pt;}
.y21a{bottom:570.431188pt;}
.y1f7{bottom:570.477857pt;}
.y12b{bottom:573.615347pt;}
.y347{bottom:573.710665pt;}
.y2a7{bottom:574.670067pt;}
.y19e{bottom:574.975415pt;}
.y96{bottom:577.012850pt;}
.yef{bottom:578.810274pt;}
.y70{bottom:579.099621pt;}
.y1cd{bottom:579.158291pt;}
.y276{bottom:579.683651pt;}
.y3c{bottom:579.850326pt;}
.y2d7{bottom:581.347734pt;}
.y12{bottom:583.742520pt;}
.y114{bottom:584.147874pt;}
.y14d{bottom:586.777339pt;}
.y173{bottom:588.272080pt;}
.yc5{bottom:588.289414pt;}
.y1f6{bottom:588.544094pt;}
.y311{bottom:589.281464pt;}
.y12a{bottom:591.681584pt;}
.y19d{bottom:593.041652pt;}
.y95{bottom:595.079087pt;}
.y2d6{bottom:595.960464pt;}
.yee{bottom:596.876510pt;}
.y6f{bottom:597.165858pt;}
.y1cc{bottom:597.225861pt;}
.y275{bottom:597.751221pt;}
.y3b{bottom:597.916562pt;}
.y219{bottom:599.562516pt;}
.y11{bottom:599.684651pt;}
.y346{bottom:600.278665pt;}
.y2a6{bottom:601.526076pt;}
.y113{bottom:602.214110pt;}
.y310{bottom:603.894194pt;}
.y14c{bottom:604.843575pt;}
.y172{bottom:606.339650pt;}
.yc4{bottom:606.355651pt;}
.y1f5{bottom:606.610330pt;}
.y256{bottom:607.390369pt;}
.y129{bottom:609.749154pt;}
.y2d5{bottom:610.573195pt;}
.y19c{bottom:611.107888pt;}
.y94{bottom:613.145324pt;}
.y345{bottom:614.890665pt;}
.y218{bottom:615.190422pt;}
.y6e{bottom:615.232095pt;}
.y1cb{bottom:615.292098pt;}
.y10{bottom:615.625448pt;}
.y274{bottom:615.817457pt;}
.y3a{bottom:615.982799pt;}
.y2a5{bottom:616.138807pt;}
.yed{bottom:617.024184pt;}
.y112{bottom:620.280347pt;}
.y255{bottom:623.331166pt;}
.y171{bottom:624.405887pt;}
.yc3{bottom:624.421887pt;}
.y1f4{bottom:624.676567pt;}
.y2d4{bottom:625.185926pt;}
.y128{bottom:627.815390pt;}
.y19b{bottom:629.174125pt;}
.y344{bottom:629.501332pt;}
.y30f{bottom:630.751537pt;}
.y217{bottom:630.817175pt;}
.y93{bottom:631.211560pt;}
.yf{bottom:631.566245pt;}
.y6d{bottom:633.298331pt;}
.y1ca{bottom:633.358334pt;}
.y14b{bottom:633.555677pt;}
.y273{bottom:633.883694pt;}
.y39{bottom:634.050369pt;}
.yec{bottom:635.090421pt;}
.y111{bottom:638.347917pt;}
.y2fe{bottom:638.542593pt;}
.y254{bottom:639.273297pt;}
.y2d3{bottom:639.798656pt;}
.y170{bottom:642.472123pt;}
.yc2{bottom:642.488124pt;}
.y1f3{bottom:642.744137pt;}
.y2a4{bottom:642.994816pt;}
.y343{bottom:644.113332pt;}
.y30e{bottom:645.362934pt;}
.y127{bottom:645.881627pt;}
.y19a{bottom:647.240362pt;}
.ye{bottom:647.507042pt;}
.y92{bottom:649.279130pt;}
.y6c{bottom:651.365901pt;}
.y14a{bottom:651.623247pt;}
.y272{bottom:651.949930pt;}
.y38{bottom:652.116605pt;}
.y1c9{bottom:652.807307pt;}
.y2fd{bottom:653.155324pt;}
.yeb{bottom:653.156657pt;}
.y110{bottom:656.414154pt;}
.y2a3{bottom:657.607547pt;}
.y239{bottom:659.658316pt;}
.y30d{bottom:659.975665pt;}
.y16f{bottom:660.538360pt;}
.yc1{bottom:660.554361pt;}
.y1f2{bottom:660.810373pt;}
.y216{bottom:662.070680pt;}
.yd{bottom:663.447839pt;}
.y126{bottom:663.947864pt;}
.y91{bottom:667.345367pt;}
.y2d2{bottom:667.768055pt;}
.y199{bottom:667.818724pt;}
.y253{bottom:668.232078pt;}
.y6b{bottom:669.432138pt;}
.y149{bottom:669.689484pt;}
.y271{bottom:670.016167pt;}
.y37{bottom:670.182842pt;}
.y342{bottom:670.681332pt;}
.y1c8{bottom:670.874877pt;}
.yea{bottom:671.222894pt;}
.y2a2{bottom:672.220277pt;}
.y10f{bottom:674.480390pt;}
.y32c{bottom:674.588396pt;}
.y238{bottom:675.599113pt;}
.y215{bottom:677.697433pt;}
.y16e{bottom:678.604596pt;}
.y1f1{bottom:678.876610pt;}
.yc0{bottom:680.092671pt;}
.y252{bottom:681.516742pt;}
.y125{bottom:682.014100pt;}
.y2d1{bottom:682.380785pt;}
.y341{bottom:685.293332pt;}
.y90{bottom:685.411603pt;}
.y198{bottom:686.673000pt;}
.yc{bottom:686.745003pt;}
.y2a1{bottom:686.833008pt;}
.y6a{bottom:687.498374pt;}
.y148{bottom:687.755721pt;}
.y270{bottom:688.083737pt;}
.y250{bottom:688.158407pt;}
.y36{bottom:688.249079pt;}
.y1c7{bottom:688.941113pt;}
.ye9{bottom:689.289131pt;}
.y10e{bottom:692.546627pt;}
.y214{bottom:693.325339pt;}
.y251{bottom:694.800073pt;}
.y16d{bottom:696.672166pt;}
.ybf{bottom:698.158907pt;}
.y340{bottom:699.903998pt;}
.y124{bottom:700.081670pt;}
.y30c{bottom:701.444405pt;}
.yb{bottom:702.685800pt;}
.y8f{bottom:703.477840pt;}
.y237{bottom:704.538630pt;}
.y197{bottom:704.739236pt;}
.y69{bottom:705.564611pt;}
.y147{bottom:706.060636pt;}
.y26f{bottom:706.149974pt;}
.y35{bottom:706.315315pt;}
.y1c6{bottom:707.007350pt;}
.ye8{bottom:707.356701pt;}
.y24f{bottom:708.084737pt;}
.y1f0{bottom:709.215460pt;}
.y2d0{bottom:710.348850pt;}
.y10d{bottom:710.612863pt;}
.y2a0{bottom:713.689017pt;}
.y33f{bottom:714.515998pt;}
.y16c{bottom:714.738403pt;}
.y30b{bottom:716.057136pt;}
.ybe{bottom:716.225144pt;}
.y123{bottom:718.147907pt;}
.ya{bottom:718.626597pt;}
.y236{bottom:719.530557pt;}
.y8e{bottom:721.544077pt;}
.y24e{bottom:721.900094pt;}
.y196{bottom:722.805473pt;}
.y68{bottom:723.630848pt;}
.y146{bottom:724.128206pt;}
.y26e{bottom:724.216210pt;}
.y34{bottom:724.382885pt;}
.y2cf{bottom:724.961581pt;}
.y1c5{bottom:725.073586pt;}
.ye7{bottom:725.422937pt;}
.y213{bottom:725.458939pt;}
.y29f{bottom:728.301748pt;}
.y10c{bottom:728.679100pt;}
.y33e{bottom:729.127998pt;}
.y32b{bottom:730.669866pt;}
.y16b{bottom:732.804640pt;}
.ybd{bottom:734.291381pt;}
.y235{bottom:734.521378pt;}
.y9{bottom:734.567394pt;}
.y24d{bottom:735.184759pt;}
.y122{bottom:736.214143pt;}
.y2ce{bottom:739.574311pt;}
.y8d{bottom:739.611647pt;}
.y195{bottom:740.871710pt;}
.y212{bottom:741.399736pt;}
.y67{bottom:741.698418pt;}
.y145{bottom:742.194442pt;}
.y26d{bottom:742.282447pt;}
.y33{bottom:742.449122pt;}
.y29e{bottom:742.913145pt;}
.ye6{bottom:743.489174pt;}
.y33d{bottom:743.739998pt;}
.y1ef{bottom:744.333216pt;}
.y1c4{bottom:744.523892pt;}
.y32a{bottom:745.282597pt;}
.y10b{bottom:746.746670pt;}
.y8{bottom:750.508191pt;}
.y16a{bottom:750.870876pt;}
.ybc{bottom:752.357617pt;}
.y2fc{bottom:754.187042pt;}
.y121{bottom:754.280380pt;}
.y29d{bottom:757.525876pt;}
.y8c{bottom:757.677883pt;}
.y33c{bottom:758.351998pt;}
.y194{bottom:758.939280pt;}
.y66{bottom:759.764654pt;}
.y329{bottom:759.895327pt;}
.y144{bottom:760.260679pt;}
.y26c{bottom:760.348683pt;}
.y32{bottom:760.515358pt;}
.ye5{bottom:761.555410pt;}
.y1ee{bottom:762.399453pt;}
.y1c3{bottom:762.590129pt;}
.y10a{bottom:764.812907pt;}
.y7{bottom:766.448988pt;}
.y2cd{bottom:767.543710pt;}
.y2fb{bottom:768.799773pt;}
.y169{bottom:768.937113pt;}
.y211{bottom:769.803412pt;}
.ybb{bottom:770.425187pt;}
.y30a{bottom:772.138606pt;}
.y120{bottom:772.346617pt;}
.y8b{bottom:775.744120pt;}
.y234{bottom:776.365484pt;}
.y193{bottom:777.005516pt;}
.y65{bottom:777.830891pt;}
.y143{bottom:778.326916pt;}
.y31{bottom:778.581595pt;}
.ye4{bottom:779.621647pt;}
.y1c2{bottom:780.656365pt;}
.y1ed{bottom:781.456405pt;}
.y210{bottom:781.827577pt;}
.y2cc{bottom:782.156440pt;}
.y6{bottom:782.391119pt;}
.y109{bottom:782.879143pt;}
.y2fa{bottom:783.412503pt;}
.y29c{bottom:784.383218pt;}
.y33b{bottom:784.918665pt;}
.y309{bottom:786.751337pt;}
.y168{bottom:787.004683pt;}
.yba{bottom:788.491424pt;}
.y11f{bottom:790.567528pt;}
.y233{bottom:792.306281pt;}
.y8a{bottom:793.810356pt;}
.y20f{bottom:794.205837pt;}
.y192{bottom:795.071753pt;}
.y64{bottom:795.897127pt;}
.y142{bottom:796.393152pt;}
.y30{bottom:796.647832pt;}
.y2cb{bottom:796.769171pt;}
.ye3{bottom:797.689217pt;}
.y1c1{bottom:798.722602pt;}
.y29b{bottom:798.994616pt;}
.y1ec{bottom:799.522642pt;}
.y33a{bottom:799.530665pt;}
.y108{bottom:800.945380pt;}
.y328{bottom:801.364067pt;}
.y20e{bottom:806.230001pt;}
.yb9{bottom:806.557660pt;}
.y11e{bottom:808.633764pt;}
.y2ca{bottom:811.381902pt;}
.y89{bottom:811.876593pt;}
.y191{bottom:813.137989pt;}
.y29a{bottom:813.607346pt;}
.y63{bottom:813.963364pt;}
.y339{bottom:814.142665pt;}
.y141{bottom:814.460722pt;}
.y5{bottom:814.715402pt;}
.ye2{bottom:815.755454pt;}
.y327{bottom:815.976798pt;}
.y1c0{bottom:816.788839pt;}
.y1eb{bottom:817.588879pt;}
.y107{bottom:819.011616pt;}
.yb8{bottom:824.623897pt;}
.y2f9{bottom:825.994632pt;}
.y11d{bottom:826.700001pt;}
.y299{bottom:828.220077pt;}
.y338{bottom:828.754665pt;}
.y88{bottom:829.942830pt;}
.y326{bottom:830.589529pt;}
.y190{bottom:831.204226pt;}
.y62{bottom:832.030934pt;}
.y140{bottom:832.526959pt;}
.y167{bottom:832.781638pt;}
.ye1{bottom:833.821690pt;}
.y1bf{bottom:834.856409pt;}
.y1ea{bottom:835.655115pt;}
.y20d{bottom:836.195142pt;}
.y106{bottom:837.079186pt;}
.y2c9{bottom:839.351300pt;}
.y2f8{bottom:840.607363pt;}
.yb7{bottom:842.690134pt;}
.y298{bottom:842.832807pt;}
.y337{bottom:843.366665pt;}
.y325{bottom:845.202259pt;}
.y18f{bottom:849.271796pt;}
.y61{bottom:850.097171pt;}
.y13f{bottom:850.593195pt;}
.y87{bottom:850.847875pt;}
.ye0{bottom:851.887927pt;}
.y20c{bottom:852.135939pt;}
.y1be{bottom:852.922645pt;}
.y2c8{bottom:853.964031pt;}
.y1e9{bottom:854.712068pt;}
.y11c{bottom:854.966747pt;}
.y105{bottom:855.145423pt;}
.y2f7{bottom:855.220093pt;}
.y297{bottom:857.445538pt;}
.y336{bottom:857.978665pt;}
.yb6{bottom:860.757704pt;}
.y18e{bottom:867.338033pt;}
.y60{bottom:868.163407pt;}
.y2c7{bottom:868.576761pt;}
.y13e{bottom:868.659432pt;}
.y86{bottom:868.914111pt;}
.y2f6{bottom:869.831491pt;}
.ydf{bottom:869.954163pt;}
.y1bd{bottom:870.988882pt;}
.y324{bottom:872.058269pt;}
.y104{bottom:873.211660pt;}
.y1e8{bottom:873.769021pt;}
.yb5{bottom:878.823940pt;}
.y20b{bottom:880.055255pt;}
.y2c6{bottom:883.188158pt;}
.y296{bottom:884.301547pt;}
.y2f5{bottom:884.444221pt;}
.y335{bottom:884.545331pt;}
.y18d{bottom:885.404269pt;}
.y5f{bottom:886.229644pt;}
.y323{bottom:886.670999pt;}
.y13d{bottom:886.725669pt;}
.y85{bottom:886.980348pt;}
.y11b{bottom:887.189692pt;}
.yde{bottom:888.021733pt;}
.y1bc{bottom:889.055118pt;}
.y20a{bottom:890.607382pt;}
.y103{bottom:891.277896pt;}
.y1e7{bottom:891.835257pt;}
.yb4{bottom:896.890177pt;}
.y2c5{bottom:897.800889pt;}
.y295{bottom:898.914278pt;}
.y334{bottom:899.157331pt;}
.y322{bottom:901.283730pt;}
.y209{bottom:901.470256pt;}
.y18c{bottom:903.470506pt;}
.y5e{bottom:904.295880pt;}
.y13c{bottom:904.793239pt;}
.y84{bottom:905.047918pt;}
.y11a{bottom:905.255928pt;}
.ydd{bottom:906.087970pt;}
.y1bb{bottom:908.505424pt;}
.y102{bottom:909.344133pt;}
.y208{bottom:912.022383pt;}
.y4{bottom:912.336282pt;}
.y2f4{bottom:912.413620pt;}
.y294{bottom:913.527009pt;}
.y333{bottom:913.769331pt;}
.yb3{bottom:914.956413pt;}
.y321{bottom:915.896460pt;}
.y18b{bottom:922.326115pt;}
.y5d{bottom:923.114155pt;}
.y119{bottom:923.322165pt;}
.y3{bottom:925.150256pt;}
.y2c4{bottom:925.770287pt;}
.y1ba{bottom:926.571661pt;}
.y2f3{bottom:927.026350pt;}
.y101{bottom:927.411703pt;}
.y293{bottom:928.139739pt;}
.y332{bottom:928.381331pt;}
.y13b{bottom:928.570427pt;}
.y320{bottom:930.509191pt;}
.yb2{bottom:933.022650pt;}
.y1e6{bottom:939.777654pt;}
.y2c3{bottom:940.383018pt;}
.y207{bottom:940.913711pt;}
.y5c{bottom:941.180391pt;}
.y118{bottom:941.389735pt;}
.y2f2{bottom:941.639081pt;}
.y308{bottom:942.752470pt;}
.y331{bottom:942.993331pt;}
.y2{bottom:943.825857pt;}
.y1b9{bottom:944.637897pt;}
.y31f{bottom:945.120588pt;}
.y100{bottom:945.477939pt;}
.yb1{bottom:951.090220pt;}
.y292{bottom:954.995749pt;}
.y1e5{bottom:955.718451pt;}
.y206{bottom:956.854508pt;}
.y330{bottom:957.605331pt;}
.y5b{bottom:959.246628pt;}
.y117{bottom:959.455972pt;}
.y1b8{bottom:962.704134pt;}
.yff{bottom:963.544176pt;}
.yb0{bottom:969.156457pt;}
.y291{bottom:969.608479pt;}
.y31e{bottom:971.977931pt;}
.y32f{bottom:972.217331pt;}
.y5a{bottom:977.312864pt;}
.yfe{bottom:981.610413pt;}
.y116{bottom:983.063819pt;}
.y1e4{bottom:984.021559pt;}
.y290{bottom:984.221210pt;}
.y205{bottom:985.066121pt;}
.yaf{bottom:987.222693pt;}
.y59{bottom:995.380434pt;}
.y1e3{bottom:995.737152pt;}
.y204{bottom:996.503855pt;}
.y32e{bottom:998.783998pt;}
.y28f{bottom:998.833940pt;}
.y1{bottom:1002.514124pt;}
.y1e2{bottom:1007.797753pt;}
.y203{bottom:1008.278415pt;}
.y32d{bottom:1013.395997pt;}
.y58{bottom:1013.446671pt;}
.y83{bottom:1018.725602pt;}
.y1e1{bottom:1019.513347pt;}
.y202{bottom:1019.716150pt;}
.h8{height:21.934830pt;}
.h12{height:23.381358pt;}
.h11{height:25.343682pt;}
.h10{height:25.959361pt;}
.h13{height:26.643092pt;}
.h14{height:27.301424pt;}
.h15{height:29.044068pt;}
.h4{height:29.246453pt;}
.h9{height:32.902282pt;}
.h17{height:35.858542pt;}
.h1c{height:36.449979pt;}
.h19{height:36.451801pt;}
.h1b{height:36.556247pt;}
.h6{height:36.558075pt;}
.h16{height:37.379712pt;}
.h18{height:39.465804pt;}
.hc{height:39.740165pt;}
.ha{height:40.029124pt;}
.h7{height:40.031089pt;}
.hb{height:40.263828pt;}
.he{height:41.020229pt;}
.hf{height:43.638542pt;}
.h5{height:44.124754pt;}
.hd{height:50.362175pt;}
.h3{height:52.553647pt;}
.h2{height:64.324796pt;}
.h1a{height:1122.495997pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:92.540628pt;}
.x7{left:94.076704pt;}
.x26{left:100.770372pt;}
.x31{left:102.002459pt;}
.x1d{left:106.209311pt;}
.x8{left:109.021452pt;}
.x9{left:111.218895pt;}
.x18{left:114.239046pt;}
.xa{left:115.996467pt;}
.x6{left:117.153858pt;}
.x20{left:118.077904pt;}
.x38{left:119.785341pt;}
.x12{left:120.698035pt;}
.x27{left:122.332784pt;}
.x19{left:129.427805pt;}
.x1c{left:140.493692pt;}
.x15{left:147.811391pt;}
.x10{left:149.152791pt;}
.x1a{left:155.367769pt;}
.x2c{left:156.681168pt;}
.x3{left:174.962082pt;}
.x1b{left:177.027518pt;}
.x11{left:202.202110pt;}
.x1{left:203.130157pt;}
.x13{left:207.269030pt;}
.x5{left:210.495858pt;}
.x28{left:221.039052pt;}
.x16{left:223.717853pt;}
.x2b{left:227.766055pt;}
.x39{left:231.262230pt;}
.x17{left:232.448956pt;}
.x3a{left:237.359868pt;}
.x2{left:238.981283pt;}
.x29{left:245.006917pt;}
.x24{left:255.992800pt;}
.x4{left:259.935664pt;}
.x14{left:261.533077pt;}
.x25{left:271.289565pt;}
.x3d{left:275.245762pt;}
.x3e{left:281.343401pt;}
.x21{left:307.411371pt;}
.x32{left:315.679784pt;}
.x22{left:319.577312pt;}
.x1e{left:343.049152pt;}
.x1f{left:351.949597pt;}
.x2a{left:361.095388pt;}
.x33{left:369.222461pt;}
.x3b{left:376.582829pt;}
.x3c{left:382.849809pt;}
.xd{left:387.453333pt;}
.xb{left:408.192409pt;}
.x34{left:415.540958pt;}
.xc{left:422.738470pt;}
.xf{left:425.062586pt;}
.x42{left:429.712152pt;}
.x36{left:432.781057pt;}
.x35{left:437.102663pt;}
.x37{left:438.020731pt;}
.x3f{left:440.586029pt;}
.x40{left:522.576795pt;}
.x2f{left:534.330716pt;}
.x30{left:544.647232pt;}
.x2d{left:564.677567pt;}
.x41{left:581.385069pt;}
.x2e{left:614.585395pt;}
.xe{left:693.518675pt;}
}




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