
    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_14803cfbcd475e0fee8e261a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8a826e59d0d8ce7bd98406e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.669000;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_14803cfbcd475e0fee8e261a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_331ff8ed515250f5517227a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977000;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_c0fc9b394ccc7bc42159e978.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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_250dbec5346de249d8635163.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_6f7ecbcb0de8ab62e6bd72ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994000;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_2cb7b30da044e126c6146a7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_fc17206be9029c3f1d237973.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.868000;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_f76ea823a25ed5c880ead3ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740053;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_eb2100be1814dd3e84c9cb42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1eb98867710dcbcad503566d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d2b511c6907aceaf9af4c477.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_30e5dbaa0986432c3f6b0564.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f2f519a5f1b96f5ccf74cc7e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e10091dc182364ba6eedf1fa.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7222b3a0db9bbba05ab7c1e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_efb806d7ba6dfffc957a7c2f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7222b3a0db9bbba05ab7c1e6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_efb806d7ba6dfffc957a7c2f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7222b3a0db9bbba05ab7c1e6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_44b52073ca0257170a3fb5f0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.731000;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:ff22;src:url('chunks/assets/font_dcf90322754ae5efedaee914.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.744000;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:ff23;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;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:ff24;src:url('chunks/assets/font_ac6eda09c36550e2d86e573e.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-29.700000px;}
.v7{vertical-align:-24.300000px;}
.v8{vertical-align:-20.250000px;}
.v3{vertical-align:-17.490600px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.755600px;}
.v5{vertical-align:21.600000px;}
.v4{vertical-align:24.466800px;}
.v1{vertical-align:29.700000px;}
.ls19{letter-spacing:-1.458000px;}
.lsc{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-1.073458px;}
.ls7{letter-spacing:-1.050000px;}
.lsa{letter-spacing:-0.875160px;}
.lsd{letter-spacing:-0.859248px;}
.ls2e{letter-spacing:-0.840000px;}
.ls23{letter-spacing:-0.810000px;}
.ls30{letter-spacing:-0.672000px;}
.ls2f{letter-spacing:-0.630000px;}
.ls29{letter-spacing:-0.596700px;}
.lse{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.537030px;}
.lsb{letter-spacing:-0.510000px;}
.ls9{letter-spacing:-0.437580px;}
.ls2c{letter-spacing:-0.435000px;}
.ls34{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.375000px;}
.ls2a{letter-spacing:-0.298350px;}
.lsf{letter-spacing:-0.270000px;}
.ls2d{letter-spacing:-0.247500px;}
.ls31{letter-spacing:-0.210000px;}
.ls2b{letter-spacing:-0.149175px;}
.ls20{letter-spacing:-0.123318px;}
.ls17{letter-spacing:-0.038520px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000060px;}
.ls26{letter-spacing:0.000090px;}
.ls27{letter-spacing:0.000180px;}
.ls22{letter-spacing:0.178260px;}
.ls12{letter-spacing:0.178860px;}
.ls25{letter-spacing:0.179010px;}
.ls14{letter-spacing:0.210000px;}
.ls1c{letter-spacing:0.217500px;}
.ls33{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.294600px;}
.ls1e{letter-spacing:0.318240px;}
.ls21{letter-spacing:0.358020px;}
.ls1d{letter-spacing:0.390000px;}
.ls13{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.435000px;}
.ls16{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.652500px;}
.ls15{letter-spacing:0.810000px;}
.ls2{letter-spacing:1.200000px;}
.ls0{letter-spacing:6.480000px;}
.ls32{letter-spacing:17.199600px;}
.ls1{letter-spacing:17.200200px;}
.ls3{letter-spacing:42.687000px;}
.ls1a{letter-spacing:247.242623px;}
.ls1b{letter-spacing:515.602748px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws135{word-spacing:-523.409588px;}
.ws140{word-spacing:-247.242623px;}
.ws81{word-spacing:-54.000000px;}
.ws10{word-spacing:-15.048000px;}
.ws155{word-spacing:-12.690000px;}
.ws6{word-spacing:-12.528000px;}
.wsd3{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.988000px;}
.ws7f{word-spacing:-11.880000px;}
.ws25{word-spacing:-11.610000px;}
.ws18c{word-spacing:-11.340000px;}
.ws5{word-spacing:-11.220000px;}
.ws80{word-spacing:-10.854000px;}
.ws1b7{word-spacing:-10.570500px;}
.ws136{word-spacing:-10.353000px;}
.ws1b3{word-spacing:-10.260000px;}
.ws143{word-spacing:-10.135500px;}
.ws1{word-spacing:-10.005000px;}
.ws10f{word-spacing:-9.996000px;}
.ws2{word-spacing:-9.976824px;}
.ws0{word-spacing:-9.918000px;}
.ws114{word-spacing:-9.870000px;}
.ws116{word-spacing:-9.786000px;}
.ws1bb{word-spacing:-9.576000px;}
.ws3{word-spacing:-9.539244px;}
.ws153{word-spacing:-9.282000px;}
.ws1c3{word-spacing:-9.156000px;}
.ws10e{word-spacing:-9.112500px;}
.ws4{word-spacing:-9.101664px;}
.wsb{word-spacing:-8.736000px;}
.ws152{word-spacing:-8.437500px;}
.ws156{word-spacing:-8.413470px;}
.ws18f{word-spacing:-8.234460px;}
.wsa{word-spacing:-8.055450px;}
.ws18d{word-spacing:-7.518420px;}
.ws7{word-spacing:-7.240860px;}
.ws24{word-spacing:-7.196202px;}
.ws118{word-spacing:-7.083450px;}
.ws1b2{word-spacing:-6.802380px;}
.ws1b6{word-spacing:-6.653205px;}
.ws1b5{word-spacing:-6.504030px;}
.ws1b4{word-spacing:-6.205680px;}
.wsd{word-spacing:-6.120000px;}
.ws17{word-spacing:-5.670000px;}
.ws142{word-spacing:-4.480500px;}
.ws117{word-spacing:-4.326000px;}
.ws18e{word-spacing:-3.677400px;}
.ws13d{word-spacing:-3.672000px;}
.ws74{word-spacing:-3.564000px;}
.ws7b{word-spacing:-3.402000px;}
.wsbb{word-spacing:-3.186000px;}
.wsf2{word-spacing:-2.970000px;}
.ws126{word-spacing:-2.862000px;}
.ws130{word-spacing:-2.808000px;}
.wsb3{word-spacing:-2.700000px;}
.wsb4{word-spacing:-2.430000px;}
.ws12f{word-spacing:-2.376000px;}
.ws42{word-spacing:-2.322000px;}
.ws5b{word-spacing:-2.214000px;}
.ws16b{word-spacing:-2.160000px;}
.wsb5{word-spacing:-2.106000px;}
.ws11d{word-spacing:-2.052000px;}
.ws28{word-spacing:-1.998000px;}
.ws3a{word-spacing:-1.836000px;}
.ws4a{word-spacing:-1.782000px;}
.wsc4{word-spacing:-1.674000px;}
.ws134{word-spacing:-1.620000px;}
.ws64{word-spacing:-1.512000px;}
.ws11e{word-spacing:-1.458000px;}
.ws67{word-spacing:-1.404000px;}
.wsf4{word-spacing:-1.350000px;}
.ws11{word-spacing:-1.320000px;}
.ws87{word-spacing:-1.242000px;}
.ws15b{word-spacing:-1.188000px;}
.wsbd{word-spacing:-1.026000px;}
.ws1af{word-spacing:-0.918000px;}
.ws1b8{word-spacing:-0.900000px;}
.ws71{word-spacing:-0.864000px;}
.ws1c1{word-spacing:-0.840000px;}
.ws9a{word-spacing:-0.702000px;}
.ws12{word-spacing:-0.660000px;}
.ws169{word-spacing:-0.648000px;}
.ws19a{word-spacing:-0.594000px;}
.ws16{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.510000px;}
.ws88{word-spacing:-0.486000px;}
.ws1bf{word-spacing:-0.480000px;}
.ws1be{word-spacing:-0.462000px;}
.wse{word-spacing:-0.435000px;}
.ws1c0{word-spacing:-0.420000px;}
.wsb2{word-spacing:-0.378000px;}
.ws3b{word-spacing:-0.324000px;}
.ws150{word-spacing:-0.318240px;}
.ws13{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.270000px;}
.ws1c4{word-spacing:-0.240000px;}
.wse8{word-spacing:-0.216000px;}
.ws19{word-spacing:-0.108000px;}
.ws115{word-spacing:-0.057000px;}
.ws68{word-spacing:-0.054000px;}
.ws1bc{word-spacing:-0.042000px;}
.wsc{word-spacing:0.000000px;}
.ws17c{word-spacing:0.108000px;}
.ws154{word-spacing:0.123318px;}
.wsd5{word-spacing:0.162000px;}
.ws1ba{word-spacing:0.198000px;}
.ws1c2{word-spacing:0.210000px;}
.ws5e{word-spacing:0.270000px;}
.ws8e{word-spacing:0.324000px;}
.ws151{word-spacing:0.375000px;}
.ws4b{word-spacing:0.378000px;}
.wsba{word-spacing:0.432000px;}
.ws1b9{word-spacing:0.435000px;}
.ws16f{word-spacing:0.486000px;}
.ws14{word-spacing:0.510000px;}
.ws197{word-spacing:0.537030px;}
.ws8f{word-spacing:0.540000px;}
.ws1bd{word-spacing:0.588000px;}
.ws12e{word-spacing:0.594000px;}
.ws50{word-spacing:0.648000px;}
.wscd{word-spacing:0.702000px;}
.ws1a7{word-spacing:0.810000px;}
.wsac{word-spacing:0.859248px;}
.ws6c{word-spacing:0.918000px;}
.wsf7{word-spacing:0.972000px;}
.wsf{word-spacing:1.050000px;}
.ws2a{word-spacing:1.134000px;}
.wsc9{word-spacing:1.188000px;}
.ws41{word-spacing:1.242000px;}
.ws2d{word-spacing:1.296000px;}
.ws14b{word-spacing:1.350000px;}
.ws4f{word-spacing:1.458000px;}
.ws3e{word-spacing:1.512000px;}
.ws70{word-spacing:1.566000px;}
.wsde{word-spacing:1.674000px;}
.ws14d{word-spacing:1.728000px;}
.ws167{word-spacing:1.782000px;}
.ws124{word-spacing:1.836000px;}
.ws1a0{word-spacing:1.890000px;}
.ws149{word-spacing:1.944000px;}
.ws19b{word-spacing:1.998000px;}
.ws4c{word-spacing:2.052000px;}
.wsf1{word-spacing:2.106000px;}
.ws51{word-spacing:2.160000px;}
.wsb0{word-spacing:2.214000px;}
.ws10a{word-spacing:2.268000px;}
.ws139{word-spacing:2.322000px;}
.ws9f{word-spacing:2.430000px;}
.ws165{word-spacing:2.484000px;}
.ws184{word-spacing:2.538000px;}
.ws182{word-spacing:2.649348px;}
.ws1e{word-spacing:2.700000px;}
.ws4e{word-spacing:2.754000px;}
.ws123{word-spacing:2.808000px;}
.ws16c{word-spacing:2.862000px;}
.ws21{word-spacing:2.916000px;}
.ws7c{word-spacing:2.970000px;}
.ws4d{word-spacing:3.024000px;}
.ws83{word-spacing:3.078000px;}
.ws5c{word-spacing:3.240000px;}
.ws95{word-spacing:3.294000px;}
.ws60{word-spacing:3.348000px;}
.ws37{word-spacing:3.402000px;}
.wsbc{word-spacing:3.456000px;}
.wsb6{word-spacing:3.510000px;}
.ws86{word-spacing:3.618000px;}
.ws129{word-spacing:3.726000px;}
.ws13e{word-spacing:3.780000px;}
.wsdb{word-spacing:3.834000px;}
.wsc2{word-spacing:3.888000px;}
.wse1{word-spacing:3.942000px;}
.ws15a{word-spacing:3.996000px;}
.ws16a{word-spacing:4.050000px;}
.ws72{word-spacing:4.104000px;}
.ws6d{word-spacing:4.158000px;}
.ws8b{word-spacing:4.266000px;}
.ws1b{word-spacing:4.320000px;}
.ws1a6{word-spacing:4.374000px;}
.ws40{word-spacing:4.428000px;}
.wsfc{word-spacing:4.482000px;}
.ws104{word-spacing:4.590000px;}
.ws103{word-spacing:4.644000px;}
.ws7a{word-spacing:4.698000px;}
.ws23{word-spacing:4.725864px;}
.ws65{word-spacing:4.752000px;}
.wsc3{word-spacing:4.806000px;}
.wsd9{word-spacing:4.860000px;}
.ws108{word-spacing:4.914000px;}
.ws106{word-spacing:4.968000px;}
.ws1a9{word-spacing:5.022000px;}
.ws1a1{word-spacing:5.076000px;}
.ws1d{word-spacing:5.130000px;}
.ws53{word-spacing:5.184000px;}
.ws3c{word-spacing:5.346000px;}
.wsa0{word-spacing:5.400000px;}
.wsa8{word-spacing:5.454000px;}
.ws48{word-spacing:5.508000px;}
.ws43{word-spacing:5.562000px;}
.wsbe{word-spacing:5.616000px;}
.wsf3{word-spacing:5.670000px;}
.ws166{word-spacing:5.778000px;}
.ws14e{word-spacing:5.832000px;}
.ws127{word-spacing:5.886000px;}
.wsab{word-spacing:5.940000px;}
.ws12d{word-spacing:5.994000px;}
.ws39{word-spacing:6.048000px;}
.ws20{word-spacing:6.102000px;}
.wsb8{word-spacing:6.156000px;}
.ws16e{word-spacing:6.210000px;}
.wsc7{word-spacing:6.264000px;}
.ws34{word-spacing:6.318000px;}
.ws6e{word-spacing:6.372000px;}
.ws3f{word-spacing:6.480000px;}
.ws175{word-spacing:6.534000px;}
.ws13c{word-spacing:6.642000px;}
.ws187{word-spacing:6.696000px;}
.ws181{word-spacing:6.750000px;}
.ws128{word-spacing:6.804000px;}
.ws58{word-spacing:6.912000px;}
.ws7d{word-spacing:6.966000px;}
.ws183{word-spacing:7.020000px;}
.wsce{word-spacing:7.074000px;}
.ws22{word-spacing:7.128000px;}
.wsea{word-spacing:7.182000px;}
.ws17b{word-spacing:7.196202px;}
.ws3d{word-spacing:7.236000px;}
.ws2c{word-spacing:7.290000px;}
.ws15f{word-spacing:7.344000px;}
.ws107{word-spacing:7.398000px;}
.ws31{word-spacing:7.452000px;}
.ws46{word-spacing:7.560000px;}
.ws158{word-spacing:7.668000px;}
.ws27{word-spacing:7.722000px;}
.ws1a{word-spacing:7.776000px;}
.ws94{word-spacing:7.830000px;}
.wse7{word-spacing:7.884000px;}
.ws100{word-spacing:7.938000px;}
.wsdd{word-spacing:7.992000px;}
.ws171{word-spacing:8.019648px;}
.ws172{word-spacing:8.046000px;}
.ws11b{word-spacing:8.100000px;}
.wsa6{word-spacing:8.154000px;}
.wsfb{word-spacing:8.208000px;}
.wsec{word-spacing:8.262000px;}
.wsfd{word-spacing:8.316000px;}
.ws47{word-spacing:8.370000px;}
.ws189{word-spacing:8.424000px;}
.ws18a{word-spacing:8.478000px;}
.wsa4{word-spacing:8.640000px;}
.ws157{word-spacing:8.694000px;}
.ws85{word-spacing:8.748000px;}
.ws198{word-spacing:8.910000px;}
.ws1b0{word-spacing:9.072000px;}
.ws10c{word-spacing:9.126000px;}
.ws19d{word-spacing:9.180000px;}
.ws164{word-spacing:9.234000px;}
.ws96{word-spacing:9.288000px;}
.ws194{word-spacing:9.342000px;}
.ws1ac{word-spacing:9.450000px;}
.wsee{word-spacing:9.558000px;}
.wsb1{word-spacing:9.612000px;}
.wsca{word-spacing:9.666000px;}
.ws168{word-spacing:9.720000px;}
.wsf9{word-spacing:9.774000px;}
.ws44{word-spacing:9.882000px;}
.wsa1{word-spacing:10.044000px;}
.ws192{word-spacing:10.098000px;}
.ws69{word-spacing:10.152000px;}
.ws188{word-spacing:10.206000px;}
.ws36{word-spacing:10.314000px;}
.wsad{word-spacing:10.368000px;}
.ws82{word-spacing:10.422000px;}
.ws132{word-spacing:10.476000px;}
.ws119{word-spacing:10.492200px;}
.ws79{word-spacing:10.530000px;}
.ws1f{word-spacing:10.584000px;}
.wsd1{word-spacing:10.638000px;}
.ws49{word-spacing:10.692000px;}
.ws98{word-spacing:10.746000px;}
.ws102{word-spacing:10.800000px;}
.ws66{word-spacing:10.854000px;}
.wsb9{word-spacing:10.908000px;}
.wsa2{word-spacing:10.962000px;}
.wsb7{word-spacing:11.124000px;}
.ws75{word-spacing:11.178000px;}
.ws17e{word-spacing:11.232000px;}
.ws2e{word-spacing:11.286000px;}
.ws29{word-spacing:11.340000px;}
.wsd2{word-spacing:11.394000px;}
.ws6b{word-spacing:11.448000px;}
.wsfa{word-spacing:11.502000px;}
.wsc6{word-spacing:11.556000px;}
.ws15e{word-spacing:11.664000px;}
.wsdf{word-spacing:11.718000px;}
.ws54{word-spacing:11.772000px;}
.ws196{word-spacing:11.826000px;}
.ws12a{word-spacing:11.880000px;}
.ws109{word-spacing:11.934000px;}
.ws13f{word-spacing:11.988000px;}
.wse2{word-spacing:12.042000px;}
.ws8a{word-spacing:12.096000px;}
.ws13a{word-spacing:12.150000px;}
.ws1c{word-spacing:12.204000px;}
.ws147{word-spacing:12.258000px;}
.wsc8{word-spacing:12.366000px;}
.wsa7{word-spacing:12.474000px;}
.ws52{word-spacing:12.582000px;}
.wscb{word-spacing:12.744000px;}
.wsef{word-spacing:12.798000px;}
.ws162{word-spacing:12.852000px;}
.wse5{word-spacing:12.960000px;}
.wsc5{word-spacing:13.014000px;}
.ws78{word-spacing:13.122000px;}
.ws122{word-spacing:13.176000px;}
.wse6{word-spacing:13.230000px;}
.ws1a8{word-spacing:13.284000px;}
.ws19e{word-spacing:13.338000px;}
.wsaa{word-spacing:13.392000px;}
.ws163{word-spacing:13.446000px;}
.ws2b{word-spacing:13.500000px;}
.ws7e{word-spacing:13.554000px;}
.wsf6{word-spacing:13.608000px;}
.ws73{word-spacing:13.662000px;}
.ws1ad{word-spacing:13.716000px;}
.ws185{word-spacing:13.770000px;}
.ws101{word-spacing:13.824000px;}
.wse3{word-spacing:13.878000px;}
.ws12c{word-spacing:13.986000px;}
.ws6a{word-spacing:14.040000px;}
.wsf0{word-spacing:14.094000px;}
.ws6f{word-spacing:14.148000px;}
.ws84{word-spacing:14.202000px;}
.wsd7{word-spacing:14.256000px;}
.ws89{word-spacing:14.364000px;}
.ws5a{word-spacing:14.418000px;}
.ws92{word-spacing:14.472000px;}
.wsd6{word-spacing:14.526000px;}
.ws90{word-spacing:14.634000px;}
.ws133{word-spacing:14.688000px;}
.wsa9{word-spacing:14.796000px;}
.ws15d{word-spacing:14.850000px;}
.wsd4{word-spacing:14.904000px;}
.ws35{word-spacing:14.958000px;}
.wsc0{word-spacing:15.012000px;}
.ws61{word-spacing:15.066000px;}
.ws146{word-spacing:15.228000px;}
.ws10d{word-spacing:15.444000px;}
.wsa5{word-spacing:15.498000px;}
.ws159{word-spacing:15.552000px;}
.ws125{word-spacing:15.606000px;}
.ws105{word-spacing:15.660000px;}
.ws2f{word-spacing:15.714000px;}
.wsae{word-spacing:15.930000px;}
.wsff{word-spacing:16.038000px;}
.ws19c{word-spacing:16.092000px;}
.ws38{word-spacing:16.200000px;}
.ws26{word-spacing:16.308000px;}
.wsdc{word-spacing:16.362000px;}
.ws5d{word-spacing:16.470000px;}
.ws9d{word-spacing:16.578000px;}
.ws14c{word-spacing:16.632000px;}
.ws173{word-spacing:16.740000px;}
.ws161{word-spacing:16.956000px;}
.ws176{word-spacing:17.010000px;}
.wseb{word-spacing:17.118000px;}
.wsd8{word-spacing:17.172000px;}
.ws13b{word-spacing:17.226000px;}
.ws99{word-spacing:17.388000px;}
.wse0{word-spacing:17.604000px;}
.ws30{word-spacing:17.658000px;}
.ws11f{word-spacing:17.712000px;}
.wsa3{word-spacing:17.766000px;}
.ws1b1{word-spacing:17.820000px;}
.ws1a4{word-spacing:17.874000px;}
.ws170{word-spacing:17.928000px;}
.ws93{word-spacing:18.144000px;}
.ws9e{word-spacing:18.360000px;}
.ws178{word-spacing:18.414000px;}
.ws17f{word-spacing:18.468000px;}
.wse9{word-spacing:18.522000px;}
.wsfe{word-spacing:18.576000px;}
.ws76{word-spacing:18.738000px;}
.ws1ab{word-spacing:18.846000px;}
.ws56{word-spacing:18.954000px;}
.ws195{word-spacing:19.008000px;}
.ws32{word-spacing:19.062000px;}
.wscf{word-spacing:19.224000px;}
.ws15c{word-spacing:19.386000px;}
.wse4{word-spacing:19.764000px;}
.ws10b{word-spacing:19.872000px;}
.ws148{word-spacing:19.980000px;}
.ws77{word-spacing:20.142000px;}
.wsd0{word-spacing:20.304000px;}
.ws18b{word-spacing:20.520000px;}
.wscc{word-spacing:20.574000px;}
.ws1a2{word-spacing:20.628000px;}
.wsed{word-spacing:20.790000px;}
.wsf5{word-spacing:20.844000px;}
.ws190{word-spacing:21.168000px;}
.wsc1{word-spacing:21.222000px;}
.ws33{word-spacing:21.762000px;}
.ws174{word-spacing:21.870000px;}
.ws97{word-spacing:22.194000px;}
.ws17d{word-spacing:22.410000px;}
.ws12b{word-spacing:22.626000px;}
.ws8c{word-spacing:22.896000px;}
.ws131{word-spacing:22.950000px;}
.ws14a{word-spacing:23.112000px;}
.ws8d{word-spacing:23.166000px;}
.ws186{word-spacing:23.490000px;}
.ws120{word-spacing:23.544000px;}
.ws193{word-spacing:24.300000px;}
.ws121{word-spacing:24.462000px;}
.ws180{word-spacing:24.786000px;}
.ws160{word-spacing:25.110000px;}
.ws1ae{word-spacing:25.218000px;}
.ws9c{word-spacing:25.326000px;}
.ws9b{word-spacing:25.650000px;}
.ws62{word-spacing:25.974000px;}
.ws5f{word-spacing:27.432000px;}
.ws191{word-spacing:27.864000px;}
.ws45{word-spacing:28.080000px;}
.wsaf{word-spacing:28.296000px;}
.ws199{word-spacing:28.404000px;}
.ws1a5{word-spacing:29.052000px;}
.wsda{word-spacing:29.106000px;}
.wsf8{word-spacing:29.214000px;}
.ws1a3{word-spacing:30.024000px;}
.ws11c{word-spacing:30.294000px;}
.ws57{word-spacing:30.780000px;}
.ws19f{word-spacing:31.374000px;}
.ws63{word-spacing:32.346000px;}
.ws55{word-spacing:32.994000px;}
.ws141{word-spacing:34.017000px;}
.ws59{word-spacing:34.074000px;}
.ws1aa{word-spacing:34.128000px;}
.wsbf{word-spacing:35.424000px;}
.ws17a{word-spacing:35.945208px;}
.ws16d{word-spacing:36.342000px;}
.ws91{word-spacing:36.774000px;}
.ws14f{word-spacing:44.604000px;}
.ws177{word-spacing:47.736000px;}
.ws179{word-spacing:54.216000px;}
.ws11a{word-spacing:165.222000px;}
.ws144{word-spacing:210.628543px;}
.ws113{word-spacing:241.416000px;}
.ws112{word-spacing:314.496000px;}
.ws110{word-spacing:338.856000px;}
.ws111{word-spacing:363.216000px;}
.ws145{word-spacing:378.183000px;}
.ws137{word-spacing:650.716500px;}
.ws138{word-spacing:675.946500px;}
._15{margin-left:-3162.960000px;}
._68{margin-left:-805.002307px;}
._6{margin-left:-744.528000px;}
._4{margin-left:-486.139200px;}
._76{margin-left:-318.245833px;}
._f{margin-left:-62.067000px;}
._82{margin-left:-60.315000px;}
._7{margin-left:-47.502000px;}
._5e{margin-left:-42.279000px;}
._25{margin-left:-41.226000px;}
._17{margin-left:-39.798000px;}
._83{margin-left:-38.577000px;}
._21{margin-left:-34.746000px;}
._26{margin-left:-31.911000px;}
._16{margin-left:-30.612000px;}
._24{margin-left:-28.584000px;}
._18{margin-left:-27.402000px;}
._1f{margin-left:-26.359500px;}
._1c{margin-left:-25.132500px;}
._1b{margin-left:-23.976000px;}
._23{margin-left:-22.026000px;}
._22{margin-left:-19.800000px;}
._1a{margin-left:-18.678000px;}
._61{margin-left:-17.407500px;}
._20{margin-left:-16.254000px;}
._e{margin-left:-15.048000px;}
._84{margin-left:-13.740000px;}
._13{margin-left:-12.690000px;}
._10{margin-left:-11.550000px;}
._9{margin-left:-9.821700px;}
._89{margin-left:-8.676000px;}
._1d{margin-left:-7.290000px;}
._14{margin-left:-6.155400px;}
._1{margin-left:-4.564800px;}
._2{margin-left:-3.120000px;}
._0{margin-left:-1.920000px;}
._8{width:1.024500px;}
._19{width:2.424000px;}
._60{width:3.649800px;}
._11{width:4.686600px;}
._67{width:6.573600px;}
._78{width:8.857500px;}
._a{width:10.315500px;}
._86{width:12.360000px;}
._12{width:13.950000px;}
._b{width:15.648000px;}
._c{width:17.493024px;}
._8e{width:20.363700px;}
._8c{width:22.662000px;}
._8d{width:24.059700px;}
._8a{width:26.495700px;}
._8b{width:28.343700px;}
._79{width:30.108000px;}
._3b{width:32.424000px;}
._5f{width:34.017600px;}
._64{width:37.438200px;}
._d{width:38.968800px;}
._29{width:42.420000px;}
._6c{width:43.935000px;}
._88{width:45.311700px;}
._87{width:49.595700px;}
._28{width:81.099000px;}
._80{width:154.469700px;}
._66{width:183.332400px;}
._65{width:193.731600px;}
._3a{width:200.640000px;}
._51{width:227.448000px;}
._7d{width:230.802000px;}
._74{width:232.839003px;}
._7e{width:266.799000px;}
._53{width:281.400000px;}
._52{width:288.876000px;}
._32{width:291.414000px;}
._2c{width:293.538000px;}
._2f{width:300.611400px;}
._63{width:301.648200px;}
._43{width:302.677200px;}
._47{width:311.952000px;}
._30{width:317.898000px;}
._77{width:319.063500px;}
._2d{width:323.526000px;}
._2b{width:331.002000px;}
._7a{width:336.026700px;}
._36{width:342.258000px;}
._31{width:347.886000px;}
._4f{width:354.288000px;}
._5c{width:355.362000px;}
._5b{width:358.997700px;}
._50{width:361.956000px;}
._4b{width:367.500000px;}
._34{width:378.840000px;}
._33{width:386.316000px;}
._40{width:390.978000px;}
._37{width:396.606000px;}
._3f{width:404.082000px;}
._44{width:410.676000px;}
._46{width:416.117700px;}
._41{width:420.966000px;}
._7b{width:423.822000px;}
._7f{width:482.747700px;}
._6a{width:485.562000px;}
._75{width:486.795508px;}
._3e{width:507.845700px;}
._55{width:525.970500px;}
._48{width:559.024500px;}
._3c{width:560.933700px;}
._49{width:564.946500px;}
._5a{width:586.434000px;}
._7c{width:595.415700px;}
._6b{width:598.479000px;}
._59{width:604.128000px;}
._6e{width:629.967000px;}
._4a{width:637.984500px;}
._27{width:641.820000px;}
._5d{width:668.950500px;}
._62{width:684.756000px;}
._69{width:686.689646px;}
._42{width:687.876000px;}
._4e{width:701.442000px;}
._72{width:718.837500px;}
._73{width:722.546400px;}
._71{width:724.884000px;}
._54{width:728.616000px;}
._2e{width:734.232000px;}
._4d{width:742.980000px;}
._3{width:750.877200px;}
._38{width:753.312000px;}
._56{width:758.772000px;}
._4c{width:763.602000px;}
._45{width:772.044000px;}
._70{width:773.299500px;}
._3d{width:784.098000px;}
._2a{width:789.054000px;}
._39{width:795.228000px;}
._35{width:801.066000px;}
._58{width:803.880000px;}
._6f{width:806.272500px;}
._57{width:814.968000px;}
._6d{width:817.756500px;}
._8f{width:1512.624000px;}
._85{width:1517.376000px;}
._81{width:1529.664000px;}
._1e{width:1533.168000px;}
._5{width:1904.146200px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(42,110,187);}
.fc1{color:transparent;}
.fc6{color:rgb(55,51,52);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs18{font-size:24.663600px;}
.fs19{font-size:29.835000px;}
.fse{font-size:31.482000px;}
.fs15{font-size:31.824000px;}
.fsf{font-size:35.802000px;}
.fs17{font-size:37.200000px;}
.fs16{font-size:37.500000px;}
.fs13{font-size:38.520000px;}
.fs3{font-size:39.000000px;}
.fs14{font-size:39.034200px;}
.fs10{font-size:40.500000px;}
.fs12{font-size:41.400000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:42.938310px;}
.fs4{font-size:43.500000px;}
.fsa{font-size:43.758000px;}
.fs5{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:49.072408px;}
.fs1a{font-size:49.500000px;}
.fsc{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs11{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25d{bottom:2.147250px;}
.y2f5{bottom:2.176350px;}
.y29c{bottom:2.177100px;}
.y76{bottom:21.599400px;}
.y1{bottom:21.599850px;}
.y20b{bottom:53.593800px;}
.y1cf{bottom:55.198350px;}
.y275{bottom:55.274700px;}
.y73{bottom:55.280550px;}
.y445{bottom:55.301850px;}
.y246{bottom:55.554000px;}
.y15b{bottom:55.611300px;}
.y35a{bottom:55.651500px;}
.y3be{bottom:55.669350px;}
.y3f8{bottom:55.749000px;}
.y4e4{bottom:55.754700px;}
.y121{bottom:56.083800px;}
.y539{bottom:56.132700px;}
.y196{bottom:56.171850px;}
.y389{bottom:56.185350px;}
.y48f{bottom:56.436225px;}
.y2cb{bottom:61.591275px;}
.y321{bottom:61.645800px;}
.y30{bottom:64.900800px;}
.y4e3{bottom:67.787700px;}
.y444{bottom:68.101725px;}
.y538{bottom:68.249700px;}
.y48e{bottom:69.497100px;}
.y274{bottom:70.274700px;}
.y1ce{bottom:72.451350px;}
.ye8{bottom:72.513300px;}
.y72{bottom:72.533550px;}
.yaf{bottom:72.745800px;}
.y320{bottom:72.805800px;}
.y245{bottom:72.874500px;}
.y15a{bottom:72.945300px;}
.y359{bottom:72.985500px;}
.y3bd{bottom:73.003350px;}
.y3f7{bottom:73.083000px;}
.y120{bottom:73.377300px;}
.y195{bottom:73.681350px;}
.y388{bottom:73.694850px;}
.y2ca{bottom:77.642775px;}
.y4e2{bottom:79.820700px;}
.y20a{bottom:79.959450px;}
.y537{bottom:80.366700px;}
.y443{bottom:80.901600px;}
.y2f{bottom:82.151550px;}
.y48d{bottom:82.562100px;}
.y273{bottom:85.274700px;}
.y31f{bottom:86.969700px;}
.y1cd{bottom:89.704350px;}
.ye7{bottom:89.766300px;}
.y71{bottom:89.786550px;}
.yae{bottom:90.120300px;}
.y244{bottom:90.195000px;}
.y159{bottom:90.279300px;}
.y358{bottom:90.319500px;}
.y3bc{bottom:90.337350px;}
.y3f6{bottom:90.417000px;}
.y11f{bottom:90.670800px;}
.y194{bottom:91.190850px;}
.y387{bottom:91.204350px;}
.y4e1{bottom:91.853700px;}
.y536{bottom:92.483700px;}
.y2c9{bottom:93.694275px;}
.y442{bottom:93.701475px;}
.y31e{bottom:98.129700px;}
.y2e{bottom:99.402300px;}
.y209{bottom:99.877950px;}
.y272{bottom:100.274700px;}
.y4e0{bottom:103.886700px;}
.y535{bottom:104.600700px;}
.y441{bottom:106.501350px;}
.y1cc{bottom:106.957350px;}
.ye6{bottom:107.019300px;}
.y70{bottom:107.033550px;}
.yad{bottom:107.494800px;}
.y243{bottom:107.515500px;}
.y158{bottom:107.613300px;}
.y357{bottom:107.653500px;}
.y3bb{bottom:107.671350px;}
.y3f5{bottom:107.751000px;}
.y11e{bottom:107.964300px;}
.y193{bottom:108.700350px;}
.y386{bottom:108.713850px;}
.y2c8{bottom:109.745775px;}
.y271{bottom:115.274700px;}
.y4df{bottom:115.919700px;}
.y534{bottom:116.717700px;}
.y208{bottom:116.793450px;}
.y31d{bottom:117.152100px;}
.y48c{bottom:117.463350px;}
.y2d{bottom:118.897050px;}
.y440{bottom:119.301225px;}
.y2c7{bottom:122.795775px;}
.y1cb{bottom:124.210350px;}
.ye5{bottom:124.272300px;}
.y6f{bottom:124.286550px;}
.y242{bottom:124.836000px;}
.yac{bottom:124.869300px;}
.y157{bottom:124.947300px;}
.y3ba{bottom:125.005350px;}
.y356{bottom:125.071350px;}
.y3f4{bottom:125.085000px;}
.y11d{bottom:125.257800px;}
.y192{bottom:126.209850px;}
.y385{bottom:126.223350px;}
.y4de{bottom:127.952700px;}
.y533{bottom:128.834700px;}
.y270{bottom:130.274700px;}
.y48b{bottom:130.524225px;}
.y43f{bottom:132.101100px;}
.y31c{bottom:133.502850px;}
.y207{bottom:133.708950px;}
.y2c6{bottom:135.845775px;}
.y2c{bottom:136.147800px;}
.y259{bottom:139.425300px;}
.y4dd{bottom:139.985700px;}
.y532{bottom:140.951700px;}
.y1ca{bottom:141.463350px;}
.ye4{bottom:141.525300px;}
.y6e{bottom:141.536550px;}
.y241{bottom:142.156500px;}
.yab{bottom:142.243800px;}
.y156{bottom:142.281300px;}
.y3b9{bottom:142.339350px;}
.y355{bottom:142.405350px;}
.y3f3{bottom:142.419000px;}
.y11c{bottom:142.551300px;}
.y48a{bottom:143.585100px;}
.y191{bottom:143.719350px;}
.y384{bottom:143.732850px;}
.y43e{bottom:144.900975px;}
.y31b{bottom:149.853600px;}
.y206{bottom:150.624450px;}
.y258{bottom:151.275000px;}
.y4dc{bottom:152.018700px;}
.y531{bottom:153.068700px;}
.y2c5{bottom:156.040650px;}
.y489{bottom:156.645975px;}
.y2b{bottom:157.147800px;}
.y43d{bottom:157.700850px;}
.y1c9{bottom:158.716350px;}
.y6d{bottom:158.747850px;}
.ye3{bottom:158.778300px;}
.y240{bottom:159.477000px;}
.y155{bottom:159.615300px;}
.yaa{bottom:159.618300px;}
.y3b8{bottom:159.673350px;}
.y354{bottom:159.739350px;}
.y3f2{bottom:159.753000px;}
.y11b{bottom:159.844800px;}
.y383{bottom:161.224500px;}
.y190{bottom:161.228850px;}
.y4db{bottom:164.051700px;}
.y261{bottom:165.061350px;}
.y530{bottom:165.185700px;}
.y31a{bottom:166.204350px;}
.y205{bottom:167.539950px;}
.y265{bottom:168.241950px;}
.y488{bottom:169.706850px;}
.y43c{bottom:170.500725px;}
.y2c4{bottom:173.244900px;}
.y1c8{bottom:175.969350px;}
.y6c{bottom:176.000850px;}
.y4da{bottom:176.084700px;}
.y23f{bottom:176.797500px;}
.y154{bottom:176.949300px;}
.y3b7{bottom:177.013350px;}
.y353{bottom:177.073350px;}
.y3f1{bottom:177.087000px;}
.y11a{bottom:177.138300px;}
.y52f{bottom:177.302700px;}
.y382{bottom:178.734000px;}
.y18f{bottom:178.738350px;}
.y264{bottom:182.308680px;}
.y25c{bottom:182.312250px;}
.y319{bottom:182.555100px;}
.y487{bottom:182.767725px;}
.y43b{bottom:183.300600px;}
.y2a{bottom:183.400800px;}
.y204{bottom:184.455450px;}
.y4d9{bottom:188.117700px;}
.y52e{bottom:189.419700px;}
.y2c3{bottom:190.449150px;}
.y1c7{bottom:193.222350px;}
.y6b{bottom:193.253850px;}
.y260{bottom:193.951350px;}
.y23e{bottom:194.118000px;}
.y153{bottom:194.283300px;}
.y352{bottom:194.407350px;}
.y3f0{bottom:194.421000px;}
.y119{bottom:194.431800px;}
.y3b6{bottom:194.485350px;}
.y486{bottom:195.828600px;}
.ye2{bottom:195.876300px;}
.y43a{bottom:196.100475px;}
.y381{bottom:196.243500px;}
.y18e{bottom:196.247850px;}
.y318{bottom:198.905850px;}
.y4d8{bottom:200.150700px;}
.y29{bottom:200.651550px;}
.y203{bottom:201.370950px;}
.y52d{bottom:201.536700px;}
.ya9{bottom:202.953300px;}
.y2c2{bottom:207.653400px;}
.y485{bottom:208.889475px;}
.y439{bottom:208.900350px;}
.y1c6{bottom:210.475350px;}
.y6a{bottom:210.506850px;}
.y263{bottom:211.198680px;}
.y25b{bottom:211.202250px;}
.y23d{bottom:211.438500px;}
.y152{bottom:211.617300px;}
.y118{bottom:211.725300px;}
.y351{bottom:211.741350px;}
.y3ef{bottom:211.755000px;}
.y3b5{bottom:211.819350px;}
.y4d7{bottom:212.183700px;}
.ye1{bottom:213.129300px;}
.y52c{bottom:213.653700px;}
.y18d{bottom:213.681000px;}
.y380{bottom:213.753000px;}
.y317{bottom:215.256600px;}
.y202{bottom:218.286450px;}
.y28{bottom:220.146300px;}
.ya8{bottom:220.327800px;}
.y438{bottom:221.700225px;}
.y25f{bottom:222.841350px;}
.y4d6{bottom:224.216700px;}
.y2c1{bottom:224.857650px;}
.y52b{bottom:225.770700px;}
.y1c5{bottom:227.728350px;}
.y484{bottom:227.953350px;}
.y23c{bottom:228.759000px;}
.y151{bottom:228.951300px;}
.y117{bottom:229.018800px;}
.y350{bottom:229.075350px;}
.y3b4{bottom:229.153350px;}
.ye0{bottom:230.382300px;}
.y18c{bottom:231.190500px;}
.y37f{bottom:231.253500px;}
.y316{bottom:231.607350px;}
.y437{bottom:234.500100px;}
.y201{bottom:235.201950px;}
.y4d5{bottom:236.249700px;}
.y27{bottom:237.397050px;}
.ya7{bottom:237.702300px;}
.y52a{bottom:237.887700px;}
.y262{bottom:240.088680px;}
.y25a{bottom:240.092250px;}
.y483{bottom:241.014225px;}
.y2c0{bottom:242.061900px;}
.y1c4{bottom:244.981350px;}
.y23b{bottom:246.079500px;}
.y150{bottom:246.285300px;}
.y116{bottom:246.312300px;}
.y34f{bottom:246.409350px;}
.y3b3{bottom:246.487350px;}
.y436{bottom:247.299975px;}
.ydf{bottom:247.635300px;}
.y315{bottom:247.958100px;}
.y4d4{bottom:248.282700px;}
.y18b{bottom:248.700000px;}
.y37e{bottom:248.763000px;}
.y529{bottom:250.004700px;}
.y25e{bottom:251.731350px;}
.y200{bottom:252.117450px;}
.y482{bottom:254.075100px;}
.y26{bottom:254.647800px;}
.ya6{bottom:255.076800px;}
.y3ee{bottom:256.588500px;}
.y2bf{bottom:259.266150px;}
.y435{bottom:260.099850px;}
.y4d3{bottom:260.315700px;}
.y528{bottom:262.121700px;}
.y1c3{bottom:262.234350px;}
.y23a{bottom:263.400000px;}
.y115{bottom:263.605800px;}
.y14f{bottom:263.709300px;}
.y34e{bottom:263.743350px;}
.y3b2{bottom:263.821350px;}
.y256{bottom:263.842350px;}
.y314{bottom:264.308850px;}
.y2f6{bottom:264.534967px;}
.y2f8{bottom:264.539250px;}
.yde{bottom:264.888300px;}
.y18a{bottom:266.209500px;}
.y37d{bottom:266.227500px;}
.y481{bottom:267.135975px;}
.y1ff{bottom:269.032950px;}
.y4d2{bottom:272.348700px;}
.ya5{bottom:272.451300px;}
.y3ed{bottom:273.922500px;}
.y527{bottom:274.238700px;}
.y25{bottom:275.647800px;}
.y69{bottom:275.792850px;}
.y255{bottom:276.265050px;}
.y2be{bottom:276.470400px;}
.y434{bottom:278.891850px;}
.y1c2{bottom:279.487350px;}
.y480{bottom:280.196850px;}
.y313{bottom:280.659600px;}
.y239{bottom:280.720500px;}
.y114{bottom:280.902300px;}
.y14e{bottom:281.043300px;}
.y34d{bottom:281.077350px;}
.y3b1{bottom:281.155350px;}
.ydd{bottom:282.141300px;}
.y189{bottom:283.719000px;}
.y37c{bottom:283.737000px;}
.y4d1{bottom:284.381700px;}
.y1fe{bottom:285.948450px;}
.y526{bottom:286.355700px;}
.ya4{bottom:289.825800px;}
.y257{bottom:290.700300px;}
.y3ec{bottom:291.256500px;}
.y433{bottom:291.691725px;}
.y68{bottom:293.045850px;}
.y47f{bottom:293.257725px;}
.y2bd{bottom:293.674650px;}
.y4d0{bottom:296.414700px;}
.y1c1{bottom:296.740350px;}
.y312{bottom:297.010350px;}
.y266{bottom:297.653250px;}
.y238{bottom:298.041000px;}
.y113{bottom:298.195800px;}
.y14d{bottom:298.377300px;}
.y34c{bottom:298.411350px;}
.y525{bottom:298.472700px;}
.y3b0{bottom:298.489350px;}
.ydc{bottom:299.316300px;}
.y188{bottom:301.228500px;}
.y37b{bottom:301.246500px;}
.y24{bottom:301.899300px;}
.y1fd{bottom:302.863950px;}
.y432{bottom:304.491600px;}
.y47e{bottom:306.318600px;}
.ya3{bottom:307.200300px;}
.y4cf{bottom:308.447700px;}
.y3eb{bottom:308.590500px;}
.y67{bottom:310.298850px;}
.y524{bottom:310.589700px;}
.y2bc{bottom:310.878900px;}
.y311{bottom:313.361100px;}
.y1c0{bottom:313.993350px;}
.y237{bottom:315.361500px;}
.y112{bottom:315.493800px;}
.y14c{bottom:315.711300px;}
.y34b{bottom:315.745350px;}
.y3af{bottom:315.823350px;}
.ydb{bottom:316.569300px;}
.y431{bottom:317.291475px;}
.y187{bottom:318.738000px;}
.y37a{bottom:318.756000px;}
.y23{bottom:319.150050px;}
.y47d{bottom:319.379475px;}
.y1fc{bottom:319.779450px;}
.y4ce{bottom:320.480700px;}
.y26c{bottom:322.297950px;}
.y523{bottom:322.706700px;}
.y26b{bottom:323.586840px;}
.ya2{bottom:324.574800px;}
.y3ea{bottom:325.924500px;}
.y66{bottom:327.551850px;}
.y2bb{bottom:328.083150px;}
.y310{bottom:329.711850px;}
.y430{bottom:330.091350px;}
.y1bf{bottom:331.246350px;}
.y47c{bottom:332.440350px;}
.y4cd{bottom:332.513700px;}
.y236{bottom:332.682000px;}
.y111{bottom:332.787300px;}
.y14b{bottom:333.045300px;}
.y34a{bottom:333.079350px;}
.y3ae{bottom:333.157350px;}
.yda{bottom:333.822300px;}
.y522{bottom:334.823700px;}
.y186{bottom:336.247500px;}
.y379{bottom:336.265500px;}
.y22{bottom:336.400800px;}
.y1fb{bottom:336.694950px;}
.y29f{bottom:337.723650px;}
.y29d{bottom:337.724842px;}
.ya1{bottom:341.949300px;}
.y42f{bottom:342.891225px;}
.y3e9{bottom:343.258500px;}
.y4cc{bottom:344.546700px;}
.y65{bottom:344.804850px;}
.y2ba{bottom:345.287400px;}
.y47b{bottom:345.501225px;}
.y30f{bottom:346.062600px;}
.y521{bottom:346.940700px;}
.y1be{bottom:348.499350px;}
.y267{bottom:349.520430px;}
.y235{bottom:350.002500px;}
.y110{bottom:350.080800px;}
.y14a{bottom:350.379300px;}
.y349{bottom:350.413350px;}
.y3ad{bottom:350.491350px;}
.yd9{bottom:351.075300px;}
.y1fa{bottom:353.610450px;}
.y21{bottom:353.651550px;}
.y185{bottom:353.757000px;}
.y378{bottom:353.775000px;}
.y42e{bottom:355.691100px;}
.y4cb{bottom:356.579700px;}
.y47a{bottom:358.562100px;}
.y520{bottom:359.057700px;}
.ya0{bottom:359.287800px;}
.y3e8{bottom:360.592500px;}
.y64{bottom:362.057850px;}
.y2b9{bottom:362.491650px;}
.y30d{bottom:365.226600px;}
.y1bd{bottom:365.752350px;}
.y234{bottom:367.323000px;}
.y10f{bottom:367.378800px;}
.y149{bottom:367.713300px;}
.y348{bottom:367.795500px;}
.y3ac{bottom:367.825350px;}
.yd8{bottom:368.328300px;}
.y42d{bottom:368.490975px;}
.y4ca{bottom:368.612700px;}
.y1f9{bottom:370.525950px;}
.y51f{bottom:371.174700px;}
.y184{bottom:371.266500px;}
.y377{bottom:371.284500px;}
.y479{bottom:371.622975px;}
.y20{bottom:373.146300px;}
.y268{bottom:375.454020px;}
.y9f{bottom:376.662300px;}
.y3e7{bottom:377.926500px;}
.y63{bottom:379.310850px;}
.y2b8{bottom:379.695900px;}
.y4c9{bottom:380.645700px;}
.y42c{bottom:381.290850px;}
.y1bc{bottom:383.005350px;}
.y51e{bottom:383.291700px;}
.y30e{bottom:384.295350px;}
.y233{bottom:384.643500px;}
.y10e{bottom:384.672300px;}
.y148{bottom:385.047300px;}
.y347{bottom:385.129500px;}
.y3ab{bottom:385.159350px;}
.yd7{bottom:385.581300px;}
.y1f8{bottom:387.441450px;}
.y183{bottom:388.776000px;}
.y376{bottom:388.794000px;}
.y1f{bottom:390.397050px;}
.y478{bottom:390.686850px;}
.y4c8{bottom:392.678700px;}
.y9e{bottom:394.036800px;}
.y42b{bottom:394.090725px;}
.y3e6{bottom:395.260500px;}
.y51d{bottom:395.408700px;}
.y62{bottom:396.563850px;}
.y2b7{bottom:399.708000px;}
.y1bb{bottom:400.258350px;}
.y26a{bottom:401.387610px;}
.y232{bottom:401.964000px;}
.y10d{bottom:401.965800px;}
.y147{bottom:402.381300px;}
.y346{bottom:402.463500px;}
.y3aa{bottom:402.493350px;}
.yd6{bottom:402.834300px;}
.y30c{bottom:403.363950px;}
.y477{bottom:403.747725px;}
.y1f7{bottom:404.356950px;}
.y4c7{bottom:404.711700px;}
.y182{bottom:406.285500px;}
.y375{bottom:406.303500px;}
.y42a{bottom:406.890600px;}
.y51c{bottom:407.525700px;}
.y1e{bottom:407.647800px;}
.y9d{bottom:411.411300px;}
.y3e5{bottom:412.594500px;}
.y61{bottom:413.816850px;}
.y4c6{bottom:416.744700px;}
.y476{bottom:416.808600px;}
.y30b{bottom:418.363950px;}
.y10c{bottom:419.259300px;}
.y231{bottom:419.284500px;}
.y2b6{bottom:419.625000px;}
.y51b{bottom:419.642700px;}
.y429{bottom:419.690475px;}
.y146{bottom:419.715300px;}
.y345{bottom:419.797500px;}
.y3a9{bottom:419.827350px;}
.yd5{bottom:420.087300px;}
.y1f6{bottom:421.272450px;}
.y181{bottom:423.795000px;}
.y374{bottom:423.813000px;}
.y269{bottom:427.321200px;}
.y1d{bottom:428.647800px;}
.y4c5{bottom:428.777700px;}
.y9c{bottom:428.785800px;}
.y475{bottom:429.869475px;}
.y3e4{bottom:429.928500px;}
.y60{bottom:431.066850px;}
.y51a{bottom:431.759700px;}
.y428{bottom:432.490350px;}
.y2b5{bottom:434.625000px;}
.y230{bottom:436.537500px;}
.y145{bottom:437.049300px;}
.y344{bottom:437.131500px;}
.y3a8{bottom:437.161350px;}
.yd4{bottom:437.340300px;}
.y26f{bottom:437.861790px;}
.y1f5{bottom:438.187950px;}
.y4c4{bottom:440.810700px;}
.y373{bottom:441.250500px;}
.y180{bottom:441.304500px;}
.y1ba{bottom:442.837350px;}
.y474{bottom:442.930350px;}
.y519{bottom:443.876700px;}
.y427{bottom:445.290225px;}
.y9b{bottom:446.160300px;}
.y3e3{bottom:447.280350px;}
.y5f{bottom:448.197000px;}
.y26e{bottom:449.774100px;}
.y4c3{bottom:452.843700px;}
.y144{bottom:454.383300px;}
.y343{bottom:454.465500px;}
.y3a7{bottom:454.495350px;}
.yd3{bottom:454.593300px;}
.y1f4{bottom:455.103450px;}
.y473{bottom:455.991225px;}
.y518{bottom:455.993700px;}
.y372{bottom:458.760000px;}
.y17f{bottom:458.814000px;}
.y1b9{bottom:460.090350px;}
.y26d{bottom:461.667150px;}
.y10b{bottom:463.350300px;}
.y9a{bottom:463.534800px;}
.y426{bottom:464.082225px;}
.y47{bottom:464.221500px;}
.y3e2{bottom:464.614350px;}
.y4c2{bottom:464.876700px;}
.y5e{bottom:465.450000px;}
.y2e4{bottom:465.666450px;}
.y2d8{bottom:465.733950px;}
.y517{bottom:468.110700px;}
.y472{bottom:469.052100px;}
.y143{bottom:471.717300px;}
.y342{bottom:471.799500px;}
.y3a6{bottom:471.829350px;}
.yd2{bottom:471.846300px;}
.y1f3{bottom:472.018950px;}
.y371{bottom:476.269500px;}
.y17e{bottom:476.323500px;}
.y425{bottom:476.882100px;}
.y4c1{bottom:476.909700px;}
.y1b8{bottom:477.343350px;}
.y286{bottom:479.431050px;}
.y27e{bottom:479.512050px;}
.y516{bottom:480.227700px;}
.y10a{bottom:480.643800px;}
.y99{bottom:480.895800px;}
.y22f{bottom:481.371000px;}
.y46{bottom:481.474500px;}
.y3e1{bottom:481.948350px;}
.y471{bottom:482.112975px;}
.y5d{bottom:482.703000px;}
.y2e3{bottom:482.919450px;}
.y2d7{bottom:482.986950px;}
.y1f2{bottom:488.934450px;}
.y4c0{bottom:488.942700px;}
.y142{bottom:489.051300px;}
.y341{bottom:489.133500px;}
.y3a5{bottom:489.163350px;}
.y424{bottom:489.681975px;}
.y515{bottom:492.344700px;}
.y370{bottom:493.779000px;}
.y17d{bottom:493.833000px;}
.y1b7{bottom:494.596350px;}
.y470{bottom:495.173850px;}
.y285{bottom:496.684050px;}
.y27d{bottom:496.765050px;}
.y109{bottom:497.937300px;}
.y98{bottom:498.270300px;}
.y22e{bottom:498.691500px;}
.y45{bottom:498.727500px;}
.y3e0{bottom:499.360350px;}
.y5c{bottom:499.956000px;}
.y2e2{bottom:500.172450px;}
.y2d6{bottom:500.239950px;}
.y4bf{bottom:500.975700px;}
.yd1{bottom:502.194300px;}
.y423{bottom:502.481850px;}
.y514{bottom:504.461700px;}
.y1f1{bottom:505.849950px;}
.y141{bottom:506.385300px;}
.y340{bottom:506.485500px;}
.y3a4{bottom:506.497350px;}
.y46f{bottom:508.234725px;}
.y17c{bottom:511.198500px;}
.y36f{bottom:511.288500px;}
.y1b6{bottom:511.849350px;}
.y4be{bottom:513.008700px;}
.y284{bottom:513.937050px;}
.y27c{bottom:514.018050px;}
.y108{bottom:515.230800px;}
.y422{bottom:515.281725px;}
.y97{bottom:515.644800px;}
.y44{bottom:515.980500px;}
.y22d{bottom:516.012000px;}
.y513{bottom:516.578700px;}
.y3df{bottom:516.694350px;}
.y21c{bottom:517.167000px;}
.y5b{bottom:517.209000px;}
.y2e1{bottom:517.425450px;}
.y2d5{bottom:517.492950px;}
.yd0{bottom:519.447300px;}
.y46e{bottom:521.295600px;}
.y1f0{bottom:522.765450px;}
.y140{bottom:523.797300px;}
.y33f{bottom:523.819500px;}
.y3a3{bottom:523.831350px;}
.y4bd{bottom:525.041700px;}
.y421{bottom:528.081600px;}
.y512{bottom:528.695700px;}
.y17b{bottom:528.708000px;}
.y36e{bottom:528.798000px;}
.y1b5{bottom:529.102350px;}
.y27b{bottom:531.271050px;}
.y107{bottom:532.540800px;}
.y96{bottom:533.005800px;}
.y43{bottom:533.233500px;}
.y22c{bottom:533.332500px;}
.y3de{bottom:534.028350px;}
.y21b{bottom:534.420000px;}
.y5a{bottom:534.462000px;}
.y2e0{bottom:534.678450px;}
.y2d4{bottom:534.745950px;}
.ycf{bottom:536.700300px;}
.y4bc{bottom:537.074700px;}
.y1ef{bottom:539.680950px;}
.y46d{bottom:540.359475px;}
.y511{bottom:540.812700px;}
.y420{bottom:540.881475px;}
.y13f{bottom:541.131300px;}
.y33e{bottom:541.153500px;}
.y3a2{bottom:541.165350px;}
.y17a{bottom:546.217500px;}
.y36d{bottom:546.307500px;}
.y1b4{bottom:546.355350px;}
.y283{bottom:548.051550px;}
.y27a{bottom:548.524050px;}
.y4bb{bottom:549.107700px;}
.y106{bottom:549.834300px;}
.y95{bottom:550.380300px;}
.y42{bottom:550.486500px;}
.y22b{bottom:550.653000px;}
.y3dd{bottom:551.362350px;}
.y21a{bottom:551.673000px;}
.y59{bottom:551.715000px;}
.y2df{bottom:551.931450px;}
.y2d3{bottom:551.998950px;}
.y510{bottom:552.929700px;}
.y46c{bottom:553.420350px;}
.y41f{bottom:553.681350px;}
.yce{bottom:553.953300px;}
.y1ee{bottom:556.596450px;}
.y13e{bottom:558.465300px;}
.y33d{bottom:558.499350px;}
.y4ba{bottom:561.140700px;}
.y1b3{bottom:563.608350px;}
.y179{bottom:563.727000px;}
.y36c{bottom:563.817000px;}
.y50f{bottom:565.046700px;}
.y282{bottom:565.304550px;}
.y279{bottom:565.777050px;}
.y41e{bottom:566.481225px;}
.y105{bottom:567.127800px;}
.y41{bottom:567.739500px;}
.y94{bottom:567.754800px;}
.y22a{bottom:567.973500px;}
.y3dc{bottom:568.696350px;}
.y219{bottom:568.926000px;}
.y58{bottom:568.968000px;}
.y2de{bottom:569.184450px;}
.y2d2{bottom:569.251950px;}
.ycd{bottom:571.206300px;}
.y46b{bottom:572.484225px;}
.y4b9{bottom:573.173700px;}
.y1ed{bottom:573.511950px;}
.y13d{bottom:575.799300px;}
.y33c{bottom:575.833350px;}
.y50e{bottom:577.163700px;}
.y41d{bottom:579.281100px;}
.y1b2{bottom:580.861350px;}
.y178{bottom:581.236500px;}
.y36b{bottom:581.326500px;}
.y281{bottom:582.557550px;}
.y278{bottom:583.030050px;}
.y104{bottom:584.421300px;}
.y40{bottom:584.992500px;}
.y93{bottom:585.111300px;}
.y4b8{bottom:585.206700px;}
.y229{bottom:585.298500px;}
.y46a{bottom:585.545100px;}
.y3db{bottom:586.030350px;}
.y218{bottom:586.179000px;}
.y57{bottom:586.221000px;}
.y2dd{bottom:586.437450px;}
.y2d1{bottom:586.504950px;}
.ycc{bottom:588.459300px;}
.y50d{bottom:589.280700px;}
.y1ec{bottom:590.427450px;}
.y41c{bottom:592.080975px;}
.y13c{bottom:593.133300px;}
.y3a1{bottom:593.167350px;}
.y33b{bottom:593.179500px;}
.y4b7{bottom:597.239700px;}
.y1b1{bottom:598.114350px;}
.y469{bottom:598.605975px;}
.y177{bottom:598.746000px;}
.y36a{bottom:598.836000px;}
.y280{bottom:599.810550px;}
.y277{bottom:600.283050px;}
.y50c{bottom:601.397700px;}
.y103{bottom:601.714800px;}
.y3f{bottom:602.245500px;}
.y92{bottom:602.485800px;}
.y228{bottom:602.635500px;}
.y3da{bottom:603.364350px;}
.y217{bottom:603.432000px;}
.y56{bottom:603.474000px;}
.y2dc{bottom:603.690450px;}
.y2d0{bottom:603.757950px;}
.y41b{bottom:604.880850px;}
.ycb{bottom:605.712300px;}
.y1eb{bottom:607.342950px;}
.y4b6{bottom:609.272700px;}
.y13{bottom:610.053450px;}
.y13b{bottom:610.467300px;}
.y33a{bottom:610.513500px;}
.y468{bottom:611.666850px;}
.y50b{bottom:613.514700px;}
.y1b0{bottom:615.367350px;}
.y176{bottom:616.255500px;}
.y369{bottom:616.345500px;}
.y27f{bottom:617.063550px;}
.y276{bottom:617.536050px;}
.y102{bottom:619.008300px;}
.y3e{bottom:619.498500px;}
.y91{bottom:619.860300px;}
.y227{bottom:619.956000px;}
.y216{bottom:620.685000px;}
.y3d9{bottom:620.698350px;}
.y55{bottom:620.727000px;}
.y2cf{bottom:621.010950px;}
.y4b5{bottom:621.305700px;}
.y12{bottom:622.798950px;}
.yca{bottom:622.965300px;}
.y41a{bottom:623.672850px;}
.y1ea{bottom:624.258450px;}
.y467{bottom:624.727725px;}
.y50a{bottom:625.631700px;}
.y13a{bottom:627.801300px;}
.y339{bottom:627.987000px;}
.y1af{bottom:632.620350px;}
.y4b4{bottom:633.338700px;}
.y175{bottom:633.765000px;}
.y368{bottom:633.855000px;}
.y101{bottom:636.301800px;}
.y3d{bottom:636.751500px;}
.y90{bottom:637.234800px;}
.y226{bottom:637.276500px;}
.y509{bottom:637.748700px;}
.y466{bottom:637.788600px;}
.y215{bottom:637.938000px;}
.y54{bottom:637.980000px;}
.y3a0{bottom:638.026500px;}
.y3d8{bottom:638.032350px;}
.y2db{bottom:638.223450px;}
.y2ce{bottom:638.263950px;}
.yc9{bottom:640.218300px;}
.y1e9{bottom:641.173950px;}
.y139{bottom:645.135300px;}
.y338{bottom:645.321000px;}
.y4b3{bottom:645.371700px;}
.y11{bottom:649.054950px;}
.y1ae{bottom:649.766850px;}
.y508{bottom:649.865700px;}
.y465{bottom:650.849475px;}
.y174{bottom:651.274500px;}
.y367{bottom:651.364500px;}
.y100{bottom:653.595300px;}
.y3c{bottom:654.004500px;}
.y8f{bottom:654.595800px;}
.y225{bottom:654.597000px;}
.y214{bottom:655.191000px;}
.y53{bottom:655.233000px;}
.y2b4{bottom:655.269900px;}
.y39f{bottom:655.360500px;}
.y3d7{bottom:655.366350px;}
.y2da{bottom:655.476450px;}
.y2cd{bottom:655.516950px;}
.y4b2{bottom:657.404700px;}
.yc8{bottom:657.471300px;}
.y1e8{bottom:658.089450px;}
.y419{bottom:659.530350px;}
.y10{bottom:661.801950px;}
.y507{bottom:661.982700px;}
.y138{bottom:662.469300px;}
.y337{bottom:662.655000px;}
.y464{bottom:663.910350px;}
.y1ad{bottom:667.019850px;}
.y173{bottom:668.784000px;}
.y366{bottom:668.874000px;}
.y4b1{bottom:669.437700px;}
.y2b3{bottom:670.269900px;}
.yff{bottom:670.888800px;}
.y3b{bottom:671.257500px;}
.y224{bottom:671.917500px;}
.y8e{bottom:671.970300px;}
.y418{bottom:672.325350px;}
.y213{bottom:672.423000px;}
.y52{bottom:672.486000px;}
.y39e{bottom:672.694500px;}
.y3d6{bottom:672.700350px;}
.y2d9{bottom:672.729450px;}
.y2cc{bottom:672.769950px;}
.y506{bottom:674.099700px;}
.yf{bottom:674.548950px;}
.yc7{bottom:674.724300px;}
.y1e7{bottom:675.004950px;}
.y463{bottom:676.971225px;}
.y137{bottom:679.803300px;}
.y336{bottom:679.989000px;}
.y4b0{bottom:681.470700px;}
.y1ac{bottom:684.272850px;}
.y417{bottom:685.120350px;}
.y2b2{bottom:685.269900px;}
.y505{bottom:686.216700px;}
.y172{bottom:686.293500px;}
.y365{bottom:686.383500px;}
.yfe{bottom:688.182300px;}
.y3a{bottom:688.510500px;}
.y223{bottom:689.238000px;}
.y8d{bottom:689.344800px;}
.y212{bottom:689.676000px;}
.y51{bottom:689.739000px;}
.y39d{bottom:690.028500px;}
.y462{bottom:690.032100px;}
.y3d5{bottom:690.034350px;}
.y1e6{bottom:691.920450px;}
.yc6{bottom:691.977300px;}
.ye{bottom:693.312450px;}
.y4af{bottom:693.503700px;}
.y136{bottom:697.137300px;}
.y416{bottom:697.915350px;}
.y504{bottom:698.333700px;}
.y2b1{bottom:700.269900px;}
.y1ab{bottom:701.525850px;}
.y461{bottom:703.092975px;}
.y171{bottom:703.803000px;}
.y364{bottom:703.893000px;}
.yfd{bottom:705.475800px;}
.y4ae{bottom:705.536700px;}
.y415{bottom:705.651600px;}
.y39{bottom:705.763500px;}
.yd{bottom:706.057950px;}
.y222{bottom:706.558500px;}
.y8c{bottom:706.719300px;}
.y211{bottom:706.929000px;}
.y50{bottom:706.992000px;}
.y3d4{bottom:707.368350px;}
.y39c{bottom:707.374350px;}
.y1e5{bottom:708.835950px;}
.yc5{bottom:709.230300px;}
.y503{bottom:710.450700px;}
.y30a{bottom:713.454150px;}
.y135{bottom:714.471300px;}
.y2b0{bottom:715.269900px;}
.y4ad{bottom:717.569700px;}
.y1aa{bottom:718.778850px;}
.yc{bottom:718.803450px;}
.y170{bottom:721.312500px;}
.y363{bottom:721.398000px;}
.y460{bottom:722.156850px;}
.y502{bottom:722.567700px;}
.yfc{bottom:722.769300px;}
.y38{bottom:723.016500px;}
.y414{bottom:723.505350px;}
.y221{bottom:723.879000px;}
.y8b{bottom:724.066800px;}
.y210{bottom:724.182000px;}
.y4f{bottom:724.245000px;}
.y39b{bottom:724.708350px;}
.y3d3{bottom:724.780500px;}
.y335{bottom:724.822500px;}
.y1e4{bottom:725.751450px;}
.yc4{bottom:726.483300px;}
.y309{bottom:728.454150px;}
.y4ac{bottom:729.602700px;}
.y413{bottom:731.241600px;}
.yb{bottom:731.548950px;}
.y134{bottom:731.805300px;}
.y501{bottom:734.684700px;}
.y1a9{bottom:736.031850px;}
.y29b{bottom:736.269000px;}
.y16f{bottom:738.822000px;}
.y362{bottom:738.903000px;}
.yfb{bottom:740.062800px;}
.y37{bottom:740.269500px;}
.y220{bottom:741.199500px;}
.y45f{bottom:741.220725px;}
.y20f{bottom:741.435000px;}
.y8a{bottom:741.441300px;}
.y4e{bottom:741.498000px;}
.y4ab{bottom:741.635700px;}
.y39a{bottom:742.048350px;}
.y3d2{bottom:742.114500px;}
.y334{bottom:742.156500px;}
.y1e3{bottom:742.666950px;}
.y308{bottom:743.454150px;}
.yc3{bottom:743.736300px;}
.ya{bottom:744.302700px;}
.y500{bottom:746.801700px;}
.y412{bottom:749.095350px;}
.y133{bottom:749.229300px;}
.y1a8{bottom:753.284850px;}
.y4aa{bottom:753.668700px;}
.y45e{bottom:754.281600px;}
.y16e{bottom:756.331500px;}
.y361{bottom:756.381000px;}
.y9{bottom:757.048950px;}
.yfa{bottom:757.356300px;}
.y36{bottom:757.522500px;}
.y307{bottom:758.454150px;}
.y21f{bottom:758.520000px;}
.y20e{bottom:758.688000px;}
.y4d{bottom:758.751000px;}
.y89{bottom:758.815800px;}
.y4ff{bottom:758.918700px;}
.y399{bottom:759.394350px;}
.y3d1{bottom:759.448500px;}
.y333{bottom:759.490500px;}
.y1e2{bottom:759.582450px;}
.yc2{bottom:760.989300px;}
.y411{bottom:761.890350px;}
.y4a9{bottom:765.701700px;}
.y132{bottom:766.563300px;}
.y45d{bottom:767.342475px;}
.y29a{bottom:767.443875px;}
.y2af{bottom:767.447169px;}
.y410{bottom:769.626600px;}
.y1a7{bottom:770.537850px;}
.y4fe{bottom:771.035700px;}
.y306{bottom:773.454150px;}
.y16d{bottom:773.841000px;}
.y360{bottom:773.890500px;}
.y35{bottom:774.775500px;}
.y21e{bottom:775.840500px;}
.y20d{bottom:775.941000px;}
.y4c{bottom:776.004000px;}
.y88{bottom:776.190300px;}
.y1e1{bottom:776.497950px;}
.y398{bottom:776.728350px;}
.y3d0{bottom:776.782500px;}
.y332{bottom:776.824500px;}
.y4a8{bottom:777.734700px;}
.yc1{bottom:778.206300px;}
.y45c{bottom:780.403350px;}
.y299{bottom:782.081700px;}
.y2ae{bottom:782.084994px;}
.y4fd{bottom:783.152700px;}
.y8{bottom:783.321450px;}
.y131{bottom:783.897300px;}
.y40f{bottom:787.480350px;}
.y1a6{bottom:787.790850px;}
.y305{bottom:788.454150px;}
.y4a7{bottom:789.767700px;}
.y16c{bottom:791.350500px;}
.y35f{bottom:791.400000px;}
.y34{bottom:792.028500px;}
.y21d{bottom:793.161000px;}
.y20c{bottom:793.194000px;}
.y4b{bottom:793.257000px;}
.y1e0{bottom:793.413450px;}
.y45b{bottom:793.464225px;}
.y87{bottom:793.564800px;}
.y397{bottom:794.074500px;}
.y3cf{bottom:794.116500px;}
.y331{bottom:794.158500px;}
.yf9{bottom:794.697300px;}
.y4fc{bottom:795.269700px;}
.yc0{bottom:795.459300px;}
.y7{bottom:796.066950px;}
.y298{bottom:796.719525px;}
.y2ad{bottom:796.722819px;}
.y40e{bottom:800.275350px;}
.y130{bottom:801.231300px;}
.y4a6{bottom:801.800700px;}
.y1a5{bottom:805.043850px;}
.y45a{bottom:806.525100px;}
.y4fb{bottom:807.386700px;}
.y6{bottom:808.812450px;}
.y16b{bottom:808.860000px;}
.y35e{bottom:808.909500px;}
.y33{bottom:809.281500px;}
.y2f4{bottom:809.454000px;}
.y1df{bottom:810.328950px;}
.y4a{bottom:810.510000px;}
.y86{bottom:810.903300px;}
.y297{bottom:811.357350px;}
.y2ac{bottom:811.360644px;}
.y396{bottom:811.408500px;}
.y3ce{bottom:811.450500px;}
.y330{bottom:811.492500px;}
.yf8{bottom:811.990800px;}
.ybf{bottom:812.712300px;}
.y40d{bottom:813.070350px;}
.y4a5{bottom:813.833700px;}
.y12f{bottom:818.565300px;}
.y4fa{bottom:819.503700px;}
.y459{bottom:819.585975px;}
.y40c{bottom:820.806600px;}
.y5{bottom:821.557950px;}
.y1a4{bottom:822.296850px;}
.y4a4{bottom:825.866700px;}
.y296{bottom:825.995175px;}
.y16a{bottom:826.369500px;}
.y35d{bottom:826.419000px;}
.y32{bottom:826.534500px;}
.y1de{bottom:827.244450px;}
.y49{bottom:827.763000px;}
.y85{bottom:828.277800px;}
.y395{bottom:828.766500px;}
.y3cd{bottom:828.784500px;}
.y32f{bottom:828.826500px;}
.yf7{bottom:829.290300px;}
.ybe{bottom:829.965300px;}
.y4f9{bottom:831.620700px;}
.y458{bottom:832.646850px;}
.y4{bottom:834.303450px;}
.y12e{bottom:835.899300px;}
.y4a3{bottom:837.899700px;}
.y40b{bottom:838.660350px;}
.y1a3{bottom:839.549850px;}
.y295{bottom:840.633000px;}
.y2f3{bottom:840.633600px;}
.y2ab{bottom:840.636294px;}
.y304{bottom:840.636894px;}
.y4f8{bottom:843.737700px;}
.y169{bottom:843.879000px;}
.y35c{bottom:843.928500px;}
.y1dd{bottom:844.159950px;}
.y31{bottom:844.530000px;}
.y48{bottom:845.016000px;}
.y253{bottom:845.365350px;}
.y84{bottom:845.652300px;}
.y457{bottom:845.707725px;}
.y394{bottom:846.100500px;}
.y3cc{bottom:846.118500px;}
.y32e{bottom:846.160500px;}
.y40a{bottom:846.396600px;}
.yf6{bottom:846.583800px;}
.y3{bottom:847.048950px;}
.ybd{bottom:847.218300px;}
.y4a2{bottom:849.932700px;}
.y12d{bottom:853.233300px;}
.y294{bottom:855.270825px;}
.y2f2{bottom:855.271425px;}
.y2aa{bottom:855.274119px;}
.y303{bottom:855.274719px;}
.y4f7{bottom:855.854700px;}
.y1a2{bottom:856.802850px;}
.y456{bottom:858.768600px;}
.y252{bottom:860.786850px;}
.y1dc{bottom:861.075450px;}
.y168{bottom:861.388500px;}
.y35b{bottom:861.438000px;}
.y4a1{bottom:861.965700px;}
.y83{bottom:863.026800px;}
.y393{bottom:863.434500px;}
.y3cb{bottom:863.452500px;}
.y32d{bottom:863.494500px;}
.yf5{bottom:863.877300px;}
.y409{bottom:864.250350px;}
.ybc{bottom:864.471300px;}
.y4f6{bottom:867.971700px;}
.y293{bottom:869.908650px;}
.y2f1{bottom:869.909250px;}
.y2a9{bottom:869.911944px;}
.y302{bottom:869.912544px;}
.y12c{bottom:870.567300px;}
.y75{bottom:870.957000px;}
.y455{bottom:871.829475px;}
.y251{bottom:873.206850px;}
.y4a0{bottom:873.998700px;}
.y1a1{bottom:874.055850px;}
.y408{bottom:877.045350px;}
.y1db{bottom:877.990950px;}
.y167{bottom:878.898000px;}
.y4f5{bottom:880.088700px;}
.y82{bottom:880.401300px;}
.y392{bottom:880.768500px;}
.y3ca{bottom:880.786500px;}
.y32c{bottom:880.828500px;}
.yf4{bottom:881.170800px;}
.y1c{bottom:881.277000px;}
.ybb{bottom:881.724300px;}
.y292{bottom:884.546475px;}
.y2f0{bottom:884.547075px;}
.y2a8{bottom:884.549769px;}
.y301{bottom:884.550369px;}
.y454{bottom:884.890350px;}
.y49f{bottom:886.031700px;}
.y12b{bottom:887.901300px;}
.y250{bottom:888.628350px;}
.y407{bottom:889.840350px;}
.y1a0{bottom:891.308850px;}
.y4f4{bottom:892.205700px;}
.y1da{bottom:894.906450px;}
.y166{bottom:896.407500px;}
.y81{bottom:897.775800px;}
.y49e{bottom:898.064700px;}
.y3c9{bottom:898.120500px;}
.y391{bottom:898.150500px;}
.y32b{bottom:898.162500px;}
.yf3{bottom:898.477800px;}
.yba{bottom:898.977300px;}
.y291{bottom:899.184300px;}
.y2ef{bottom:899.184900px;}
.y1b{bottom:900.780000px;}
.y406{bottom:902.635500px;}
.y453{bottom:903.954225px;}
.y4f3{bottom:904.322700px;}
.y12a{bottom:905.235300px;}
.y24f{bottom:908.440950px;}
.y49d{bottom:910.097700px;}
.y405{bottom:910.371600px;}
.y1d9{bottom:911.821950px;}
.y290{bottom:913.822125px;}
.y2ee{bottom:913.822725px;}
.y2a7{bottom:913.825419px;}
.y300{bottom:913.826019px;}
.y165{bottom:913.917000px;}
.y80{bottom:915.150300px;}
.y3c8{bottom:915.454500px;}
.y390{bottom:915.484500px;}
.y32a{bottom:915.496500px;}
.yf2{bottom:915.771300px;}
.yb9{bottom:916.230300px;}
.y4f2{bottom:916.439700px;}
.y452{bottom:917.015100px;}
.y1a{bottom:920.577000px;}
.y49c{bottom:922.130700px;}
.y129{bottom:922.569300px;}
.y24e{bottom:925.356450px;}
.y404{bottom:928.225350px;}
.y28f{bottom:928.459950px;}
.y2ed{bottom:928.460550px;}
.y2a6{bottom:928.463244px;}
.y2ff{bottom:928.463844px;}
.y4f1{bottom:928.556700px;}
.y1d8{bottom:928.737450px;}
.y451{bottom:930.075975px;}
.y164{bottom:931.426500px;}
.y7f{bottom:932.524800px;}
.y3c7{bottom:932.788500px;}
.y38f{bottom:932.818500px;}
.y329{bottom:932.830500px;}
.yf1{bottom:933.064800px;}
.yb8{bottom:933.483300px;}
.y19f{bottom:933.887850px;}
.y49b{bottom:934.163700px;}
.y128{bottom:939.903300px;}
.y19{bottom:940.077000px;}
.y4f0{bottom:940.673700px;}
.y403{bottom:941.020350px;}
.y24d{bottom:942.271950px;}
.y28e{bottom:943.097775px;}
.y2ec{bottom:943.098375px;}
.y2a5{bottom:943.101069px;}
.y2fe{bottom:943.101669px;}
.y450{bottom:943.136850px;}
.y1d7{bottom:945.652950px;}
.y49a{bottom:946.196700px;}
.y163{bottom:948.936000px;}
.y7e{bottom:949.890150px;}
.y3c6{bottom:950.122500px;}
.y38e{bottom:950.152500px;}
.y328{bottom:950.164500px;}
.yf0{bottom:950.358300px;}
.yb7{bottom:950.736300px;}
.y19e{bottom:951.140850px;}
.y4ef{bottom:952.790700px;}
.y402{bottom:953.815500px;}
.y44f{bottom:956.197725px;}
.y127{bottom:957.237300px;}
.y28d{bottom:957.735600px;}
.y2eb{bottom:957.736200px;}
.y2a4{bottom:957.738894px;}
.y2fd{bottom:957.739494px;}
.y499{bottom:958.229700px;}
.y24c{bottom:959.187450px;}
.y18{bottom:959.579850px;}
.y1d6{bottom:962.568450px;}
.y4ee{bottom:964.907700px;}
.y162{bottom:966.445500px;}
.y401{bottom:966.610350px;}
.y7d{bottom:967.264650px;}
.y38d{bottom:967.486500px;}
.y327{bottom:967.498500px;}
.y3c5{bottom:967.540350px;}
.yef{bottom:967.651800px;}
.yb6{bottom:967.917300px;}
.y19d{bottom:968.393850px;}
.y44e{bottom:969.258600px;}
.y498{bottom:970.262700px;}
.y28c{bottom:972.373425px;}
.y2ea{bottom:972.374025px;}
.y126{bottom:974.571300px;}
.y24b{bottom:976.102950px;}
.y4ed{bottom:977.024700px;}
.y17{bottom:979.376850px;}
.y400{bottom:979.405500px;}
.y1d5{bottom:979.483950px;}
.y497{bottom:982.295700px;}
.y44d{bottom:982.319475px;}
.y161{bottom:983.955000px;}
.y7c{bottom:984.630300px;}
.y38c{bottom:984.820500px;}
.y326{bottom:984.832500px;}
.y3c4{bottom:984.874350px;}
.yee{bottom:984.945300px;}
.yb5{bottom:985.170300px;}
.y19c{bottom:985.646850px;}
.y28b{bottom:987.011250px;}
.y2e9{bottom:987.011850px;}
.y2a3{bottom:987.014544px;}
.y2fc{bottom:987.015144px;}
.y4ec{bottom:989.141700px;}
.y125{bottom:991.905300px;}
.y3ff{bottom:992.200350px;}
.y24a{bottom:993.018450px;}
.y496{bottom:994.328700px;}
.y44c{bottom:995.380350px;}
.y1d4{bottom:996.399450px;}
.y16{bottom:998.879850px;}
.y546{bottom:999.968850px;}
.y540{bottom:1000.058850px;}
.y4eb{bottom:1001.258700px;}
.y160{bottom:1001.464500px;}
.y28a{bottom:1001.649075px;}
.y2e8{bottom:1001.649675px;}
.y2a2{bottom:1001.652369px;}
.y2fb{bottom:1001.652969px;}
.y7b{bottom:1002.004800px;}
.y38b{bottom:1002.154500px;}
.y325{bottom:1002.166500px;}
.y3c3{bottom:1002.208350px;}
.yed{bottom:1002.238800px;}
.yb4{bottom:1002.423300px;}
.y19b{bottom:1002.899850px;}
.y3fe{bottom:1004.995350px;}
.y495{bottom:1006.361700px;}
.y44b{bottom:1008.441225px;}
.y124{bottom:1009.239300px;}
.y249{bottom:1009.933950px;}
.y53f{bottom:1012.417350px;}
.y545{bottom:1012.714350px;}
.y3fd{bottom:1012.731600px;}
.y1d3{bottom:1013.314950px;}
.y4ea{bottom:1013.375700px;}
.y289{bottom:1016.286900px;}
.y2e7{bottom:1016.287500px;}
.y2a1{bottom:1016.290194px;}
.y2fa{bottom:1016.290794px;}
.y494{bottom:1018.394700px;}
.y15f{bottom:1018.974000px;}
.y7a{bottom:1019.379300px;}
.y38a{bottom:1019.488500px;}
.y324{bottom:1019.500500px;}
.yec{bottom:1019.532300px;}
.y3c2{bottom:1019.542350px;}
.yb3{bottom:1019.676300px;}
.y19a{bottom:1020.152850px;}
.y44a{bottom:1021.502100px;}
.y53e{bottom:1024.775850px;}
.y544{bottom:1025.459850px;}
.y4e9{bottom:1025.492700px;}
.y247{bottom:1029.663450px;}
.y493{bottom:1030.427700px;}
.y3fc{bottom:1030.585350px;}
.y288{bottom:1030.924725px;}
.y2e6{bottom:1030.925325px;}
.y2a0{bottom:1030.928019px;}
.y2f9{bottom:1030.928619px;}
.y15{bottom:1031.891850px;}
.y1d1{bottom:1033.044600px;}
.y449{bottom:1034.562975px;}
.y15e{bottom:1036.483500px;}
.y79{bottom:1036.740300px;}
.yeb{bottom:1036.825800px;}
.y323{bottom:1036.834500px;}
.y3c1{bottom:1036.876350px;}
.yb2{bottom:1036.929300px;}
.y53d{bottom:1037.134350px;}
.y199{bottom:1037.405850px;}
.y4e8{bottom:1037.609700px;}
.y3fb{bottom:1038.321600px;}
.y248{bottom:1041.813450px;}
.y492{bottom:1042.460700px;}
.y1d2{bottom:1045.194600px;}
.y287{bottom:1045.562550px;}
.y2e5{bottom:1045.563150px;}
.y448{bottom:1047.623850px;}
.y53c{bottom:1049.492850px;}
.y4e7{bottom:1049.726700px;}
.y543{bottom:1050.217350px;}
.y15d{bottom:1053.993000px;}
.y123{bottom:1054.098300px;}
.y78{bottom:1054.114800px;}
.yea{bottom:1054.120800px;}
.y322{bottom:1054.168500px;}
.yb1{bottom:1054.182300px;}
.y3c0{bottom:1054.210350px;}
.y491{bottom:1054.493700px;}
.y198{bottom:1054.658850px;}
.y3fa{bottom:1056.175350px;}
.y447{bottom:1060.684725px;}
.y4e6{bottom:1061.843700px;}
.y53b{bottom:1061.851350px;}
.y14{bottom:1061.879850px;}
.y542{bottom:1062.218850px;}
.y254{bottom:1063.697700px;}
.y29e{bottom:1064.233950px;}
.y2f7{bottom:1064.234550px;}
.y1d0{bottom:1064.828700px;}
.y3f9{bottom:1071.407850px;}
.ye9{bottom:1071.414300px;}
.y122{bottom:1071.432300px;}
.yb0{bottom:1071.435300px;}
.y77{bottom:1071.489300px;}
.y15c{bottom:1071.502500px;}
.y3bf{bottom:1071.544350px;}
.y197{bottom:1071.911850px;}
.y490{bottom:1072.523850px;}
.y446{bottom:1073.745600px;}
.y4e5{bottom:1073.960700px;}
.y53a{bottom:1074.209850px;}
.y541{bottom:1074.220350px;}
.y74{bottom:1082.775750px;}
.y2{bottom:1131.550200px;}
.h54{height:23.002785px;}
.h40{height:28.681200px;}
.h38{height:28.890000px;}
.h3e{height:29.175000px;}
.h3a{height:29.275650px;}
.h3f{height:30.069000px;}
.h33{height:31.509000px;}
.h37{height:31.919400px;}
.h2{height:32.304000px;}
.h34{height:32.382000px;}
.h8{height:32.676000px;}
.h3{height:33.025730px;}
.h9{height:33.406005px;}
.h5{height:33.538500px;}
.h7{height:33.582000px;}
.h6{height:34.695000px;}
.h55{height:35.442000px;}
.h41{height:35.771236px;}
.h32{height:37.344000px;}
.h53{height:38.934000px;}
.hf{height:39.372000px;}
.h10{height:39.636000px;}
.h12{height:41.688000px;}
.h14{height:41.700000px;}
.h15{height:41.850000px;}
.h4b{height:41.886000px;}
.h35{height:41.895000px;}
.h4c{height:41.921400px;}
.h36{height:41.934000px;}
.h11{height:42.012000px;}
.h13{height:42.179400px;}
.he{height:44.040000px;}
.h3d{height:46.359072px;}
.h4{height:48.456000px;}
.h1a{height:50.062500px;}
.h42{height:51.488550px;}
.h4f{height:51.494550px;}
.h2d{height:51.686550px;}
.h47{height:51.711150px;}
.h51{height:51.733950px;}
.h2e{height:51.734550px;}
.h50{height:51.735150px;}
.h46{height:51.854550px;}
.h4e{height:51.949950px;}
.h2c{height:51.950550px;}
.h45{height:51.973950px;}
.h52{height:51.974550px;}
.h29{height:51.980550px;}
.h27{height:51.992550px;}
.h43{height:51.997950px;}
.h44{height:51.998550px;}
.h28{height:52.022550px;}
.h2a{height:52.028550px;}
.h2b{height:52.034550px;}
.h26{height:52.039950px;}
.h17{height:52.058550px;}
.h49{height:52.064550px;}
.h18{height:52.070550px;}
.h1b{height:52.081950px;}
.h19{height:52.082550px;}
.h1c{height:52.083150px;}
.h1f{height:52.099950px;}
.h21{height:52.100550px;}
.h20{height:52.118550px;}
.h1e{height:52.136550px;}
.h4d{height:52.155150px;}
.h22{height:52.172550px;}
.h24{height:52.178550px;}
.h1d{height:52.189950px;}
.h16{height:52.213350px;}
.h4a{height:52.226550px;}
.h48{height:52.244550px;}
.h23{height:52.334550px;}
.h30{height:52.351950px;}
.h25{height:52.358550px;}
.h31{height:52.459950px;}
.h2f{height:52.621950px;}
.hb{height:63.437418px;}
.hd{height:63.438018px;}
.hc{height:63.449418px;}
.ha{height:73.542000px;}
.h3c{height:272.671500px;}
.h39{height:330.324000px;}
.h3b{height:345.856500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:305.658000px;}
.w3{width:629.316000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:5.738732px;}
.x35{left:8.026500px;}
.x26{left:24.492300px;}
.x8{left:50.997375px;}
.x38{left:53.497500px;}
.x6{left:55.341750px;}
.x7{left:60.649950px;}
.xc{left:72.809250px;}
.x29{left:78.125550px;}
.xd{left:83.481000px;}
.x9{left:101.304600px;}
.x18{left:131.711100px;}
.x2c{left:134.358900px;}
.xa{left:140.899650px;}
.x19{left:152.374500px;}
.x1a{left:156.754350px;}
.x41{left:172.881300px;}
.x2f{left:190.592100px;}
.x1b{left:201.394050px;}
.x22{left:211.500000px;}
.xb{left:212.622000px;}
.x3a{left:217.232250px;}
.x16{left:226.097400px;}
.x37{left:228.147570px;}
.x24{left:229.829100px;}
.x44{left:231.339900px;}
.x25{left:233.392200px;}
.x36{left:235.235250px;}
.x21{left:241.192500px;}
.x32{left:244.225200px;}
.x1{left:247.720350px;}
.x39{left:264.997500px;}
.x3c{left:268.155900px;}
.x43{left:269.185350px;}
.x27{left:283.459440px;}
.x28{left:289.622640px;}
.x23{left:295.258200px;}
.x34{left:297.858300px;}
.x20{left:325.340700px;}
.x2{left:328.431450px;}
.x2a{left:340.658700px;}
.x2b{left:343.258800px;}
.x3{left:349.094850px;}
.x4{left:353.474850px;}
.x40{left:384.379173px;}
.x2d{left:394.291800px;}
.x5{left:398.114400px;}
.x2e{left:399.492000px;}
.x11{left:440.313150px;}
.x3f{left:442.273958px;}
.x42{left:445.612500px;}
.x30{left:453.125100px;}
.x31{left:455.725200px;}
.x3e{left:480.685350px;}
.x33{left:509.358300px;}
.x12{left:521.024100px;}
.xe{left:536.284350px;}
.x1f{left:538.161450px;}
.x13{left:541.687650px;}
.x14{left:546.067500px;}
.x17{left:549.755400px;}
.x45{left:554.739900px;}
.x15{left:590.707050px;}
.x1d{left:681.929250px;}
.x1c{left:717.476850px;}
.x3b{left:762.071614px;}
.x1e{left:778.829250px;}
.x10{left:862.914000px;}
.xf{left:877.914000px;}
@media print{
.v2{vertical-align:-26.400000pt;}
.v7{vertical-align:-21.600000pt;}
.v8{vertical-align:-18.000000pt;}
.v3{vertical-align:-15.547200pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.893867pt;}
.v5{vertical-align:19.200000pt;}
.v4{vertical-align:21.748267pt;}
.v1{vertical-align:26.400000pt;}
.ls19{letter-spacing:-1.296000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.954185pt;}
.ls7{letter-spacing:-0.933333pt;}
.lsa{letter-spacing:-0.777920pt;}
.lsd{letter-spacing:-0.763776pt;}
.ls2e{letter-spacing:-0.746667pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls30{letter-spacing:-0.597333pt;}
.ls2f{letter-spacing:-0.560000pt;}
.ls29{letter-spacing:-0.530400pt;}
.lse{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.477360pt;}
.lsb{letter-spacing:-0.453333pt;}
.ls9{letter-spacing:-0.388960pt;}
.ls2c{letter-spacing:-0.386667pt;}
.ls34{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.333333pt;}
.ls2a{letter-spacing:-0.265200pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls2d{letter-spacing:-0.220000pt;}
.ls31{letter-spacing:-0.186667pt;}
.ls2b{letter-spacing:-0.132600pt;}
.ls20{letter-spacing:-0.109616pt;}
.ls17{letter-spacing:-0.034240pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000053pt;}
.ls26{letter-spacing:0.000080pt;}
.ls27{letter-spacing:0.000160pt;}
.ls22{letter-spacing:0.158453pt;}
.ls12{letter-spacing:0.158987pt;}
.ls25{letter-spacing:0.159120pt;}
.ls14{letter-spacing:0.186667pt;}
.ls1c{letter-spacing:0.193333pt;}
.ls33{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.261867pt;}
.ls1e{letter-spacing:0.282880pt;}
.ls21{letter-spacing:0.318240pt;}
.ls1d{letter-spacing:0.346667pt;}
.ls13{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.386667pt;}
.ls16{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.580000pt;}
.ls15{letter-spacing:0.720000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls0{letter-spacing:5.760000pt;}
.ls32{letter-spacing:15.288533pt;}
.ls1{letter-spacing:15.289067pt;}
.ls3{letter-spacing:37.944000pt;}
.ls1a{letter-spacing:219.771220pt;}
.ls1b{letter-spacing:458.313554pt;}
.ws135{word-spacing:-465.252967pt;}
.ws140{word-spacing:-219.771220pt;}
.ws81{word-spacing:-48.000000pt;}
.ws10{word-spacing:-13.376000pt;}
.ws155{word-spacing:-11.280000pt;}
.ws6{word-spacing:-11.136000pt;}
.wsd3{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.656000pt;}
.ws7f{word-spacing:-10.560000pt;}
.ws25{word-spacing:-10.320000pt;}
.ws18c{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.973333pt;}
.ws80{word-spacing:-9.648000pt;}
.ws1b7{word-spacing:-9.396000pt;}
.ws136{word-spacing:-9.202667pt;}
.ws1b3{word-spacing:-9.120000pt;}
.ws143{word-spacing:-9.009333pt;}
.ws1{word-spacing:-8.893333pt;}
.ws10f{word-spacing:-8.885333pt;}
.ws2{word-spacing:-8.868288pt;}
.ws0{word-spacing:-8.816000pt;}
.ws114{word-spacing:-8.773333pt;}
.ws116{word-spacing:-8.698667pt;}
.ws1bb{word-spacing:-8.512000pt;}
.ws3{word-spacing:-8.479328pt;}
.ws153{word-spacing:-8.250667pt;}
.ws1c3{word-spacing:-8.138667pt;}
.ws10e{word-spacing:-8.100000pt;}
.ws4{word-spacing:-8.090368pt;}
.wsb{word-spacing:-7.765333pt;}
.ws152{word-spacing:-7.500000pt;}
.ws156{word-spacing:-7.478640pt;}
.ws18f{word-spacing:-7.319520pt;}
.wsa{word-spacing:-7.160400pt;}
.ws18d{word-spacing:-6.683040pt;}
.ws7{word-spacing:-6.436320pt;}
.ws24{word-spacing:-6.396624pt;}
.ws118{word-spacing:-6.296400pt;}
.ws1b2{word-spacing:-6.046560pt;}
.ws1b6{word-spacing:-5.913960pt;}
.ws1b5{word-spacing:-5.781360pt;}
.ws1b4{word-spacing:-5.516160pt;}
.wsd{word-spacing:-5.440000pt;}
.ws17{word-spacing:-5.040000pt;}
.ws142{word-spacing:-3.982667pt;}
.ws117{word-spacing:-3.845333pt;}
.ws18e{word-spacing:-3.268800pt;}
.ws13d{word-spacing:-3.264000pt;}
.ws74{word-spacing:-3.168000pt;}
.ws7b{word-spacing:-3.024000pt;}
.wsbb{word-spacing:-2.832000pt;}
.wsf2{word-spacing:-2.640000pt;}
.ws126{word-spacing:-2.544000pt;}
.ws130{word-spacing:-2.496000pt;}
.wsb3{word-spacing:-2.400000pt;}
.wsb4{word-spacing:-2.160000pt;}
.ws12f{word-spacing:-2.112000pt;}
.ws42{word-spacing:-2.064000pt;}
.ws5b{word-spacing:-1.968000pt;}
.ws16b{word-spacing:-1.920000pt;}
.wsb5{word-spacing:-1.872000pt;}
.ws11d{word-spacing:-1.824000pt;}
.ws28{word-spacing:-1.776000pt;}
.ws3a{word-spacing:-1.632000pt;}
.ws4a{word-spacing:-1.584000pt;}
.wsc4{word-spacing:-1.488000pt;}
.ws134{word-spacing:-1.440000pt;}
.ws64{word-spacing:-1.344000pt;}
.ws11e{word-spacing:-1.296000pt;}
.ws67{word-spacing:-1.248000pt;}
.wsf4{word-spacing:-1.200000pt;}
.ws11{word-spacing:-1.173333pt;}
.ws87{word-spacing:-1.104000pt;}
.ws15b{word-spacing:-1.056000pt;}
.wsbd{word-spacing:-0.912000pt;}
.ws1af{word-spacing:-0.816000pt;}
.ws1b8{word-spacing:-0.800000pt;}
.ws71{word-spacing:-0.768000pt;}
.ws1c1{word-spacing:-0.746667pt;}
.ws9a{word-spacing:-0.624000pt;}
.ws12{word-spacing:-0.586667pt;}
.ws169{word-spacing:-0.576000pt;}
.ws19a{word-spacing:-0.528000pt;}
.ws16{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.453333pt;}
.ws88{word-spacing:-0.432000pt;}
.ws1bf{word-spacing:-0.426667pt;}
.ws1be{word-spacing:-0.410667pt;}
.wse{word-spacing:-0.386667pt;}
.ws1c0{word-spacing:-0.373333pt;}
.wsb2{word-spacing:-0.336000pt;}
.ws3b{word-spacing:-0.288000pt;}
.ws150{word-spacing:-0.282880pt;}
.ws13{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.240000pt;}
.ws1c4{word-spacing:-0.213333pt;}
.wse8{word-spacing:-0.192000pt;}
.ws19{word-spacing:-0.096000pt;}
.ws115{word-spacing:-0.050667pt;}
.ws68{word-spacing:-0.048000pt;}
.ws1bc{word-spacing:-0.037333pt;}
.wsc{word-spacing:0.000000pt;}
.ws17c{word-spacing:0.096000pt;}
.ws154{word-spacing:0.109616pt;}
.wsd5{word-spacing:0.144000pt;}
.ws1ba{word-spacing:0.176000pt;}
.ws1c2{word-spacing:0.186667pt;}
.ws5e{word-spacing:0.240000pt;}
.ws8e{word-spacing:0.288000pt;}
.ws151{word-spacing:0.333333pt;}
.ws4b{word-spacing:0.336000pt;}
.wsba{word-spacing:0.384000pt;}
.ws1b9{word-spacing:0.386667pt;}
.ws16f{word-spacing:0.432000pt;}
.ws14{word-spacing:0.453333pt;}
.ws197{word-spacing:0.477360pt;}
.ws8f{word-spacing:0.480000pt;}
.ws1bd{word-spacing:0.522667pt;}
.ws12e{word-spacing:0.528000pt;}
.ws50{word-spacing:0.576000pt;}
.wscd{word-spacing:0.624000pt;}
.ws1a7{word-spacing:0.720000pt;}
.wsac{word-spacing:0.763776pt;}
.ws6c{word-spacing:0.816000pt;}
.wsf7{word-spacing:0.864000pt;}
.wsf{word-spacing:0.933333pt;}
.ws2a{word-spacing:1.008000pt;}
.wsc9{word-spacing:1.056000pt;}
.ws41{word-spacing:1.104000pt;}
.ws2d{word-spacing:1.152000pt;}
.ws14b{word-spacing:1.200000pt;}
.ws4f{word-spacing:1.296000pt;}
.ws3e{word-spacing:1.344000pt;}
.ws70{word-spacing:1.392000pt;}
.wsde{word-spacing:1.488000pt;}
.ws14d{word-spacing:1.536000pt;}
.ws167{word-spacing:1.584000pt;}
.ws124{word-spacing:1.632000pt;}
.ws1a0{word-spacing:1.680000pt;}
.ws149{word-spacing:1.728000pt;}
.ws19b{word-spacing:1.776000pt;}
.ws4c{word-spacing:1.824000pt;}
.wsf1{word-spacing:1.872000pt;}
.ws51{word-spacing:1.920000pt;}
.wsb0{word-spacing:1.968000pt;}
.ws10a{word-spacing:2.016000pt;}
.ws139{word-spacing:2.064000pt;}
.ws9f{word-spacing:2.160000pt;}
.ws165{word-spacing:2.208000pt;}
.ws184{word-spacing:2.256000pt;}
.ws182{word-spacing:2.354976pt;}
.ws1e{word-spacing:2.400000pt;}
.ws4e{word-spacing:2.448000pt;}
.ws123{word-spacing:2.496000pt;}
.ws16c{word-spacing:2.544000pt;}
.ws21{word-spacing:2.592000pt;}
.ws7c{word-spacing:2.640000pt;}
.ws4d{word-spacing:2.688000pt;}
.ws83{word-spacing:2.736000pt;}
.ws5c{word-spacing:2.880000pt;}
.ws95{word-spacing:2.928000pt;}
.ws60{word-spacing:2.976000pt;}
.ws37{word-spacing:3.024000pt;}
.wsbc{word-spacing:3.072000pt;}
.wsb6{word-spacing:3.120000pt;}
.ws86{word-spacing:3.216000pt;}
.ws129{word-spacing:3.312000pt;}
.ws13e{word-spacing:3.360000pt;}
.wsdb{word-spacing:3.408000pt;}
.wsc2{word-spacing:3.456000pt;}
.wse1{word-spacing:3.504000pt;}
.ws15a{word-spacing:3.552000pt;}
.ws16a{word-spacing:3.600000pt;}
.ws72{word-spacing:3.648000pt;}
.ws6d{word-spacing:3.696000pt;}
.ws8b{word-spacing:3.792000pt;}
.ws1b{word-spacing:3.840000pt;}
.ws1a6{word-spacing:3.888000pt;}
.ws40{word-spacing:3.936000pt;}
.wsfc{word-spacing:3.984000pt;}
.ws104{word-spacing:4.080000pt;}
.ws103{word-spacing:4.128000pt;}
.ws7a{word-spacing:4.176000pt;}
.ws23{word-spacing:4.200768pt;}
.ws65{word-spacing:4.224000pt;}
.wsc3{word-spacing:4.272000pt;}
.wsd9{word-spacing:4.320000pt;}
.ws108{word-spacing:4.368000pt;}
.ws106{word-spacing:4.416000pt;}
.ws1a9{word-spacing:4.464000pt;}
.ws1a1{word-spacing:4.512000pt;}
.ws1d{word-spacing:4.560000pt;}
.ws53{word-spacing:4.608000pt;}
.ws3c{word-spacing:4.752000pt;}
.wsa0{word-spacing:4.800000pt;}
.wsa8{word-spacing:4.848000pt;}
.ws48{word-spacing:4.896000pt;}
.ws43{word-spacing:4.944000pt;}
.wsbe{word-spacing:4.992000pt;}
.wsf3{word-spacing:5.040000pt;}
.ws166{word-spacing:5.136000pt;}
.ws14e{word-spacing:5.184000pt;}
.ws127{word-spacing:5.232000pt;}
.wsab{word-spacing:5.280000pt;}
.ws12d{word-spacing:5.328000pt;}
.ws39{word-spacing:5.376000pt;}
.ws20{word-spacing:5.424000pt;}
.wsb8{word-spacing:5.472000pt;}
.ws16e{word-spacing:5.520000pt;}
.wsc7{word-spacing:5.568000pt;}
.ws34{word-spacing:5.616000pt;}
.ws6e{word-spacing:5.664000pt;}
.ws3f{word-spacing:5.760000pt;}
.ws175{word-spacing:5.808000pt;}
.ws13c{word-spacing:5.904000pt;}
.ws187{word-spacing:5.952000pt;}
.ws181{word-spacing:6.000000pt;}
.ws128{word-spacing:6.048000pt;}
.ws58{word-spacing:6.144000pt;}
.ws7d{word-spacing:6.192000pt;}
.ws183{word-spacing:6.240000pt;}
.wsce{word-spacing:6.288000pt;}
.ws22{word-spacing:6.336000pt;}
.wsea{word-spacing:6.384000pt;}
.ws17b{word-spacing:6.396624pt;}
.ws3d{word-spacing:6.432000pt;}
.ws2c{word-spacing:6.480000pt;}
.ws15f{word-spacing:6.528000pt;}
.ws107{word-spacing:6.576000pt;}
.ws31{word-spacing:6.624000pt;}
.ws46{word-spacing:6.720000pt;}
.ws158{word-spacing:6.816000pt;}
.ws27{word-spacing:6.864000pt;}
.ws1a{word-spacing:6.912000pt;}
.ws94{word-spacing:6.960000pt;}
.wse7{word-spacing:7.008000pt;}
.ws100{word-spacing:7.056000pt;}
.wsdd{word-spacing:7.104000pt;}
.ws171{word-spacing:7.128576pt;}
.ws172{word-spacing:7.152000pt;}
.ws11b{word-spacing:7.200000pt;}
.wsa6{word-spacing:7.248000pt;}
.wsfb{word-spacing:7.296000pt;}
.wsec{word-spacing:7.344000pt;}
.wsfd{word-spacing:7.392000pt;}
.ws47{word-spacing:7.440000pt;}
.ws189{word-spacing:7.488000pt;}
.ws18a{word-spacing:7.536000pt;}
.wsa4{word-spacing:7.680000pt;}
.ws157{word-spacing:7.728000pt;}
.ws85{word-spacing:7.776000pt;}
.ws198{word-spacing:7.920000pt;}
.ws1b0{word-spacing:8.064000pt;}
.ws10c{word-spacing:8.112000pt;}
.ws19d{word-spacing:8.160000pt;}
.ws164{word-spacing:8.208000pt;}
.ws96{word-spacing:8.256000pt;}
.ws194{word-spacing:8.304000pt;}
.ws1ac{word-spacing:8.400000pt;}
.wsee{word-spacing:8.496000pt;}
.wsb1{word-spacing:8.544000pt;}
.wsca{word-spacing:8.592000pt;}
.ws168{word-spacing:8.640000pt;}
.wsf9{word-spacing:8.688000pt;}
.ws44{word-spacing:8.784000pt;}
.wsa1{word-spacing:8.928000pt;}
.ws192{word-spacing:8.976000pt;}
.ws69{word-spacing:9.024000pt;}
.ws188{word-spacing:9.072000pt;}
.ws36{word-spacing:9.168000pt;}
.wsad{word-spacing:9.216000pt;}
.ws82{word-spacing:9.264000pt;}
.ws132{word-spacing:9.312000pt;}
.ws119{word-spacing:9.326400pt;}
.ws79{word-spacing:9.360000pt;}
.ws1f{word-spacing:9.408000pt;}
.wsd1{word-spacing:9.456000pt;}
.ws49{word-spacing:9.504000pt;}
.ws98{word-spacing:9.552000pt;}
.ws102{word-spacing:9.600000pt;}
.ws66{word-spacing:9.648000pt;}
.wsb9{word-spacing:9.696000pt;}
.wsa2{word-spacing:9.744000pt;}
.wsb7{word-spacing:9.888000pt;}
.ws75{word-spacing:9.936000pt;}
.ws17e{word-spacing:9.984000pt;}
.ws2e{word-spacing:10.032000pt;}
.ws29{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.128000pt;}
.ws6b{word-spacing:10.176000pt;}
.wsfa{word-spacing:10.224000pt;}
.wsc6{word-spacing:10.272000pt;}
.ws15e{word-spacing:10.368000pt;}
.wsdf{word-spacing:10.416000pt;}
.ws54{word-spacing:10.464000pt;}
.ws196{word-spacing:10.512000pt;}
.ws12a{word-spacing:10.560000pt;}
.ws109{word-spacing:10.608000pt;}
.ws13f{word-spacing:10.656000pt;}
.wse2{word-spacing:10.704000pt;}
.ws8a{word-spacing:10.752000pt;}
.ws13a{word-spacing:10.800000pt;}
.ws1c{word-spacing:10.848000pt;}
.ws147{word-spacing:10.896000pt;}
.wsc8{word-spacing:10.992000pt;}
.wsa7{word-spacing:11.088000pt;}
.ws52{word-spacing:11.184000pt;}
.wscb{word-spacing:11.328000pt;}
.wsef{word-spacing:11.376000pt;}
.ws162{word-spacing:11.424000pt;}
.wse5{word-spacing:11.520000pt;}
.wsc5{word-spacing:11.568000pt;}
.ws78{word-spacing:11.664000pt;}
.ws122{word-spacing:11.712000pt;}
.wse6{word-spacing:11.760000pt;}
.ws1a8{word-spacing:11.808000pt;}
.ws19e{word-spacing:11.856000pt;}
.wsaa{word-spacing:11.904000pt;}
.ws163{word-spacing:11.952000pt;}
.ws2b{word-spacing:12.000000pt;}
.ws7e{word-spacing:12.048000pt;}
.wsf6{word-spacing:12.096000pt;}
.ws73{word-spacing:12.144000pt;}
.ws1ad{word-spacing:12.192000pt;}
.ws185{word-spacing:12.240000pt;}
.ws101{word-spacing:12.288000pt;}
.wse3{word-spacing:12.336000pt;}
.ws12c{word-spacing:12.432000pt;}
.ws6a{word-spacing:12.480000pt;}
.wsf0{word-spacing:12.528000pt;}
.ws6f{word-spacing:12.576000pt;}
.ws84{word-spacing:12.624000pt;}
.wsd7{word-spacing:12.672000pt;}
.ws89{word-spacing:12.768000pt;}
.ws5a{word-spacing:12.816000pt;}
.ws92{word-spacing:12.864000pt;}
.wsd6{word-spacing:12.912000pt;}
.ws90{word-spacing:13.008000pt;}
.ws133{word-spacing:13.056000pt;}
.wsa9{word-spacing:13.152000pt;}
.ws15d{word-spacing:13.200000pt;}
.wsd4{word-spacing:13.248000pt;}
.ws35{word-spacing:13.296000pt;}
.wsc0{word-spacing:13.344000pt;}
.ws61{word-spacing:13.392000pt;}
.ws146{word-spacing:13.536000pt;}
.ws10d{word-spacing:13.728000pt;}
.wsa5{word-spacing:13.776000pt;}
.ws159{word-spacing:13.824000pt;}
.ws125{word-spacing:13.872000pt;}
.ws105{word-spacing:13.920000pt;}
.ws2f{word-spacing:13.968000pt;}
.wsae{word-spacing:14.160000pt;}
.wsff{word-spacing:14.256000pt;}
.ws19c{word-spacing:14.304000pt;}
.ws38{word-spacing:14.400000pt;}
.ws26{word-spacing:14.496000pt;}
.wsdc{word-spacing:14.544000pt;}
.ws5d{word-spacing:14.640000pt;}
.ws9d{word-spacing:14.736000pt;}
.ws14c{word-spacing:14.784000pt;}
.ws173{word-spacing:14.880000pt;}
.ws161{word-spacing:15.072000pt;}
.ws176{word-spacing:15.120000pt;}
.wseb{word-spacing:15.216000pt;}
.wsd8{word-spacing:15.264000pt;}
.ws13b{word-spacing:15.312000pt;}
.ws99{word-spacing:15.456000pt;}
.wse0{word-spacing:15.648000pt;}
.ws30{word-spacing:15.696000pt;}
.ws11f{word-spacing:15.744000pt;}
.wsa3{word-spacing:15.792000pt;}
.ws1b1{word-spacing:15.840000pt;}
.ws1a4{word-spacing:15.888000pt;}
.ws170{word-spacing:15.936000pt;}
.ws93{word-spacing:16.128000pt;}
.ws9e{word-spacing:16.320000pt;}
.ws178{word-spacing:16.368000pt;}
.ws17f{word-spacing:16.416000pt;}
.wse9{word-spacing:16.464000pt;}
.wsfe{word-spacing:16.512000pt;}
.ws76{word-spacing:16.656000pt;}
.ws1ab{word-spacing:16.752000pt;}
.ws56{word-spacing:16.848000pt;}
.ws195{word-spacing:16.896000pt;}
.ws32{word-spacing:16.944000pt;}
.wscf{word-spacing:17.088000pt;}
.ws15c{word-spacing:17.232000pt;}
.wse4{word-spacing:17.568000pt;}
.ws10b{word-spacing:17.664000pt;}
.ws148{word-spacing:17.760000pt;}
.ws77{word-spacing:17.904000pt;}
.wsd0{word-spacing:18.048000pt;}
.ws18b{word-spacing:18.240000pt;}
.wscc{word-spacing:18.288000pt;}
.ws1a2{word-spacing:18.336000pt;}
.wsed{word-spacing:18.480000pt;}
.wsf5{word-spacing:18.528000pt;}
.ws190{word-spacing:18.816000pt;}
.wsc1{word-spacing:18.864000pt;}
.ws33{word-spacing:19.344000pt;}
.ws174{word-spacing:19.440000pt;}
.ws97{word-spacing:19.728000pt;}
.ws17d{word-spacing:19.920000pt;}
.ws12b{word-spacing:20.112000pt;}
.ws8c{word-spacing:20.352000pt;}
.ws131{word-spacing:20.400000pt;}
.ws14a{word-spacing:20.544000pt;}
.ws8d{word-spacing:20.592000pt;}
.ws186{word-spacing:20.880000pt;}
.ws120{word-spacing:20.928000pt;}
.ws193{word-spacing:21.600000pt;}
.ws121{word-spacing:21.744000pt;}
.ws180{word-spacing:22.032000pt;}
.ws160{word-spacing:22.320000pt;}
.ws1ae{word-spacing:22.416000pt;}
.ws9c{word-spacing:22.512000pt;}
.ws9b{word-spacing:22.800000pt;}
.ws62{word-spacing:23.088000pt;}
.ws5f{word-spacing:24.384000pt;}
.ws191{word-spacing:24.768000pt;}
.ws45{word-spacing:24.960000pt;}
.wsaf{word-spacing:25.152000pt;}
.ws199{word-spacing:25.248000pt;}
.ws1a5{word-spacing:25.824000pt;}
.wsda{word-spacing:25.872000pt;}
.wsf8{word-spacing:25.968000pt;}
.ws1a3{word-spacing:26.688000pt;}
.ws11c{word-spacing:26.928000pt;}
.ws57{word-spacing:27.360000pt;}
.ws19f{word-spacing:27.888000pt;}
.ws63{word-spacing:28.752000pt;}
.ws55{word-spacing:29.328000pt;}
.ws141{word-spacing:30.237333pt;}
.ws59{word-spacing:30.288000pt;}
.ws1aa{word-spacing:30.336000pt;}
.wsbf{word-spacing:31.488000pt;}
.ws17a{word-spacing:31.951296pt;}
.ws16d{word-spacing:32.304000pt;}
.ws91{word-spacing:32.688000pt;}
.ws14f{word-spacing:39.648000pt;}
.ws177{word-spacing:42.432000pt;}
.ws179{word-spacing:48.192000pt;}
.ws11a{word-spacing:146.864000pt;}
.ws144{word-spacing:187.225372pt;}
.ws113{word-spacing:214.592000pt;}
.ws112{word-spacing:279.552000pt;}
.ws110{word-spacing:301.205333pt;}
.ws111{word-spacing:322.858667pt;}
.ws145{word-spacing:336.162667pt;}
.ws137{word-spacing:578.414667pt;}
.ws138{word-spacing:600.841333pt;}
._15{margin-left:-2811.520000pt;}
._68{margin-left:-715.557606pt;}
._6{margin-left:-661.802667pt;}
._4{margin-left:-432.123733pt;}
._76{margin-left:-282.885185pt;}
._f{margin-left:-55.170667pt;}
._82{margin-left:-53.613333pt;}
._7{margin-left:-42.224000pt;}
._5e{margin-left:-37.581333pt;}
._25{margin-left:-36.645333pt;}
._17{margin-left:-35.376000pt;}
._83{margin-left:-34.290667pt;}
._21{margin-left:-30.885333pt;}
._26{margin-left:-28.365333pt;}
._16{margin-left:-27.210667pt;}
._24{margin-left:-25.408000pt;}
._18{margin-left:-24.357333pt;}
._1f{margin-left:-23.430667pt;}
._1c{margin-left:-22.340000pt;}
._1b{margin-left:-21.312000pt;}
._23{margin-left:-19.578667pt;}
._22{margin-left:-17.600000pt;}
._1a{margin-left:-16.602667pt;}
._61{margin-left:-15.473333pt;}
._20{margin-left:-14.448000pt;}
._e{margin-left:-13.376000pt;}
._84{margin-left:-12.213333pt;}
._13{margin-left:-11.280000pt;}
._10{margin-left:-10.266667pt;}
._9{margin-left:-8.730400pt;}
._89{margin-left:-7.712000pt;}
._1d{margin-left:-6.480000pt;}
._14{margin-left:-5.471467pt;}
._1{margin-left:-4.057600pt;}
._2{margin-left:-2.773333pt;}
._0{margin-left:-1.706667pt;}
._8{width:0.910667pt;}
._19{width:2.154667pt;}
._60{width:3.244267pt;}
._11{width:4.165867pt;}
._67{width:5.843200pt;}
._78{width:7.873333pt;}
._a{width:9.169333pt;}
._86{width:10.986667pt;}
._12{width:12.400000pt;}
._b{width:13.909333pt;}
._c{width:15.549355pt;}
._8e{width:18.101067pt;}
._8c{width:20.144000pt;}
._8d{width:21.386400pt;}
._8a{width:23.551733pt;}
._8b{width:25.194400pt;}
._79{width:26.762667pt;}
._3b{width:28.821333pt;}
._5f{width:30.237867pt;}
._64{width:33.278400pt;}
._d{width:34.638933pt;}
._29{width:37.706667pt;}
._6c{width:39.053333pt;}
._88{width:40.277067pt;}
._87{width:44.085067pt;}
._28{width:72.088000pt;}
._80{width:137.306400pt;}
._66{width:162.962133pt;}
._65{width:172.205867pt;}
._3a{width:178.346667pt;}
._51{width:202.176000pt;}
._7d{width:205.157333pt;}
._74{width:206.968003pt;}
._7e{width:237.154667pt;}
._53{width:250.133333pt;}
._52{width:256.778667pt;}
._32{width:259.034667pt;}
._2c{width:260.922667pt;}
._2f{width:267.210133pt;}
._63{width:268.131733pt;}
._43{width:269.046400pt;}
._47{width:277.290667pt;}
._30{width:282.576000pt;}
._77{width:283.612000pt;}
._2d{width:287.578667pt;}
._2b{width:294.224000pt;}
._7a{width:298.690400pt;}
._36{width:304.229333pt;}
._31{width:309.232000pt;}
._4f{width:314.922667pt;}
._5c{width:315.877333pt;}
._5b{width:319.109067pt;}
._50{width:321.738667pt;}
._4b{width:326.666667pt;}
._34{width:336.746667pt;}
._33{width:343.392000pt;}
._40{width:347.536000pt;}
._37{width:352.538667pt;}
._3f{width:359.184000pt;}
._44{width:365.045333pt;}
._46{width:369.882400pt;}
._41{width:374.192000pt;}
._7b{width:376.730667pt;}
._7f{width:429.109067pt;}
._6a{width:431.610667pt;}
._75{width:432.707118pt;}
._3e{width:451.418400pt;}
._55{width:467.529333pt;}
._48{width:496.910667pt;}
._3c{width:498.607733pt;}
._49{width:502.174667pt;}
._5a{width:521.274667pt;}
._7c{width:529.258400pt;}
._6b{width:531.981333pt;}
._59{width:537.002667pt;}
._6e{width:559.970667pt;}
._4a{width:567.097333pt;}
._27{width:570.506667pt;}
._5d{width:594.622667pt;}
._62{width:608.672000pt;}
._69{width:610.390797pt;}
._42{width:611.445333pt;}
._4e{width:623.504000pt;}
._72{width:638.966667pt;}
._73{width:642.263467pt;}
._71{width:644.341333pt;}
._54{width:647.658667pt;}
._2e{width:652.650667pt;}
._4d{width:660.426667pt;}
._3{width:667.446400pt;}
._38{width:669.610667pt;}
._56{width:674.464000pt;}
._4c{width:678.757333pt;}
._45{width:686.261333pt;}
._70{width:687.377333pt;}
._3d{width:696.976000pt;}
._2a{width:701.381333pt;}
._39{width:706.869333pt;}
._35{width:712.058667pt;}
._58{width:714.560000pt;}
._6f{width:716.686667pt;}
._57{width:724.416000pt;}
._6d{width:726.894667pt;}
._8f{width:1344.554667pt;}
._85{width:1348.778667pt;}
._81{width:1359.701333pt;}
._1e{width:1362.816000pt;}
._5{width:1692.574400pt;}
.fs18{font-size:21.923200pt;}
.fs19{font-size:26.520000pt;}
.fse{font-size:27.984000pt;}
.fs15{font-size:28.288000pt;}
.fsf{font-size:31.824000pt;}
.fs17{font-size:33.066667pt;}
.fs16{font-size:33.333333pt;}
.fs13{font-size:34.240000pt;}
.fs3{font-size:34.666667pt;}
.fs14{font-size:34.697067pt;}
.fs10{font-size:36.000000pt;}
.fs12{font-size:36.800000pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:38.167387pt;}
.fs4{font-size:38.666667pt;}
.fsa{font-size:38.896000pt;}
.fs5{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:43.619918pt;}
.fs1a{font-size:44.000000pt;}
.fsc{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs11{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25d{bottom:1.908667pt;}
.y2f5{bottom:1.934533pt;}
.y29c{bottom:1.935200pt;}
.y76{bottom:19.199467pt;}
.y1{bottom:19.199867pt;}
.y20b{bottom:47.638933pt;}
.y1cf{bottom:49.065200pt;}
.y275{bottom:49.133067pt;}
.y73{bottom:49.138267pt;}
.y445{bottom:49.157200pt;}
.y246{bottom:49.381333pt;}
.y15b{bottom:49.432267pt;}
.y35a{bottom:49.468000pt;}
.y3be{bottom:49.483867pt;}
.y3f8{bottom:49.554667pt;}
.y4e4{bottom:49.559733pt;}
.y121{bottom:49.852267pt;}
.y539{bottom:49.895733pt;}
.y196{bottom:49.930533pt;}
.y389{bottom:49.942533pt;}
.y48f{bottom:50.165533pt;}
.y2cb{bottom:54.747800pt;}
.y321{bottom:54.796267pt;}
.y30{bottom:57.689600pt;}
.y4e3{bottom:60.255733pt;}
.y444{bottom:60.534867pt;}
.y538{bottom:60.666400pt;}
.y48e{bottom:61.775200pt;}
.y274{bottom:62.466400pt;}
.y1ce{bottom:64.401200pt;}
.ye8{bottom:64.456267pt;}
.y72{bottom:64.474267pt;}
.yaf{bottom:64.662933pt;}
.y320{bottom:64.716267pt;}
.y245{bottom:64.777333pt;}
.y15a{bottom:64.840267pt;}
.y359{bottom:64.876000pt;}
.y3bd{bottom:64.891867pt;}
.y3f7{bottom:64.962667pt;}
.y120{bottom:65.224267pt;}
.y195{bottom:65.494533pt;}
.y388{bottom:65.506533pt;}
.y2ca{bottom:69.015800pt;}
.y4e2{bottom:70.951733pt;}
.y20a{bottom:71.075067pt;}
.y537{bottom:71.437067pt;}
.y443{bottom:71.912533pt;}
.y2f{bottom:73.023600pt;}
.y48d{bottom:73.388533pt;}
.y273{bottom:75.799733pt;}
.y31f{bottom:77.306400pt;}
.y1cd{bottom:79.737200pt;}
.ye7{bottom:79.792267pt;}
.y71{bottom:79.810267pt;}
.yae{bottom:80.106933pt;}
.y244{bottom:80.173333pt;}
.y159{bottom:80.248267pt;}
.y358{bottom:80.284000pt;}
.y3bc{bottom:80.299867pt;}
.y3f6{bottom:80.370667pt;}
.y11f{bottom:80.596267pt;}
.y194{bottom:81.058533pt;}
.y387{bottom:81.070533pt;}
.y4e1{bottom:81.647733pt;}
.y536{bottom:82.207733pt;}
.y2c9{bottom:83.283800pt;}
.y442{bottom:83.290200pt;}
.y31e{bottom:87.226400pt;}
.y2e{bottom:88.357600pt;}
.y209{bottom:88.780400pt;}
.y272{bottom:89.133067pt;}
.y4e0{bottom:92.343733pt;}
.y535{bottom:92.978400pt;}
.y441{bottom:94.667867pt;}
.y1cc{bottom:95.073200pt;}
.ye6{bottom:95.128267pt;}
.y70{bottom:95.140933pt;}
.yad{bottom:95.550933pt;}
.y243{bottom:95.569333pt;}
.y158{bottom:95.656267pt;}
.y357{bottom:95.692000pt;}
.y3bb{bottom:95.707867pt;}
.y3f5{bottom:95.778667pt;}
.y11e{bottom:95.968267pt;}
.y193{bottom:96.622533pt;}
.y386{bottom:96.634533pt;}
.y2c8{bottom:97.551800pt;}
.y271{bottom:102.466400pt;}
.y4df{bottom:103.039733pt;}
.y534{bottom:103.749067pt;}
.y208{bottom:103.816400pt;}
.y31d{bottom:104.135200pt;}
.y48c{bottom:104.411867pt;}
.y2d{bottom:105.686267pt;}
.y440{bottom:106.045533pt;}
.y2c7{bottom:109.151800pt;}
.y1cb{bottom:110.409200pt;}
.ye5{bottom:110.464267pt;}
.y6f{bottom:110.476933pt;}
.y242{bottom:110.965333pt;}
.yac{bottom:110.994933pt;}
.y157{bottom:111.064267pt;}
.y3ba{bottom:111.115867pt;}
.y356{bottom:111.174533pt;}
.y3f4{bottom:111.186667pt;}
.y11d{bottom:111.340267pt;}
.y192{bottom:112.186533pt;}
.y385{bottom:112.198533pt;}
.y4de{bottom:113.735733pt;}
.y533{bottom:114.519733pt;}
.y270{bottom:115.799733pt;}
.y48b{bottom:116.021533pt;}
.y43f{bottom:117.423200pt;}
.y31c{bottom:118.669200pt;}
.y207{bottom:118.852400pt;}
.y2c6{bottom:120.751800pt;}
.y2c{bottom:121.020267pt;}
.y259{bottom:123.933600pt;}
.y4dd{bottom:124.431733pt;}
.y532{bottom:125.290400pt;}
.y1ca{bottom:125.745200pt;}
.ye4{bottom:125.800267pt;}
.y6e{bottom:125.810267pt;}
.y241{bottom:126.361333pt;}
.yab{bottom:126.438933pt;}
.y156{bottom:126.472267pt;}
.y3b9{bottom:126.523867pt;}
.y355{bottom:126.582533pt;}
.y3f3{bottom:126.594667pt;}
.y11c{bottom:126.712267pt;}
.y48a{bottom:127.631200pt;}
.y191{bottom:127.750533pt;}
.y384{bottom:127.762533pt;}
.y43e{bottom:128.800867pt;}
.y31b{bottom:133.203200pt;}
.y206{bottom:133.888400pt;}
.y258{bottom:134.466667pt;}
.y4dc{bottom:135.127733pt;}
.y531{bottom:136.061067pt;}
.y2c5{bottom:138.702800pt;}
.y489{bottom:139.240867pt;}
.y2b{bottom:139.686933pt;}
.y43d{bottom:140.178533pt;}
.y1c9{bottom:141.081200pt;}
.y6d{bottom:141.109200pt;}
.ye3{bottom:141.136267pt;}
.y240{bottom:141.757333pt;}
.y155{bottom:141.880267pt;}
.yaa{bottom:141.882933pt;}
.y3b8{bottom:141.931867pt;}
.y354{bottom:141.990533pt;}
.y3f2{bottom:142.002667pt;}
.y11b{bottom:142.084267pt;}
.y383{bottom:143.310667pt;}
.y190{bottom:143.314533pt;}
.y4db{bottom:145.823733pt;}
.y261{bottom:146.721200pt;}
.y530{bottom:146.831733pt;}
.y31a{bottom:147.737200pt;}
.y205{bottom:148.924400pt;}
.y265{bottom:149.548400pt;}
.y488{bottom:150.850533pt;}
.y43c{bottom:151.556200pt;}
.y2c4{bottom:153.995467pt;}
.y1c8{bottom:156.417200pt;}
.y6c{bottom:156.445200pt;}
.y4da{bottom:156.519733pt;}
.y23f{bottom:157.153333pt;}
.y154{bottom:157.288267pt;}
.y3b7{bottom:157.345200pt;}
.y353{bottom:157.398533pt;}
.y3f1{bottom:157.410667pt;}
.y11a{bottom:157.456267pt;}
.y52f{bottom:157.602400pt;}
.y382{bottom:158.874667pt;}
.y18f{bottom:158.878533pt;}
.y264{bottom:162.052160pt;}
.y25c{bottom:162.055333pt;}
.y319{bottom:162.271200pt;}
.y487{bottom:162.460200pt;}
.y43b{bottom:162.933867pt;}
.y2a{bottom:163.022933pt;}
.y204{bottom:163.960400pt;}
.y4d9{bottom:167.215733pt;}
.y52e{bottom:168.373067pt;}
.y2c3{bottom:169.288133pt;}
.y1c7{bottom:171.753200pt;}
.y6b{bottom:171.781200pt;}
.y260{bottom:172.401200pt;}
.y23e{bottom:172.549333pt;}
.y153{bottom:172.696267pt;}
.y352{bottom:172.806533pt;}
.y3f0{bottom:172.818667pt;}
.y119{bottom:172.828267pt;}
.y3b6{bottom:172.875867pt;}
.y486{bottom:174.069867pt;}
.ye2{bottom:174.112267pt;}
.y43a{bottom:174.311533pt;}
.y381{bottom:174.438667pt;}
.y18e{bottom:174.442533pt;}
.y318{bottom:176.805200pt;}
.y4d8{bottom:177.911733pt;}
.y29{bottom:178.356933pt;}
.y203{bottom:178.996400pt;}
.y52d{bottom:179.143733pt;}
.ya9{bottom:180.402933pt;}
.y2c2{bottom:184.580800pt;}
.y485{bottom:185.679533pt;}
.y439{bottom:185.689200pt;}
.y1c6{bottom:187.089200pt;}
.y6a{bottom:187.117200pt;}
.y263{bottom:187.732160pt;}
.y25b{bottom:187.735333pt;}
.y23d{bottom:187.945333pt;}
.y152{bottom:188.104267pt;}
.y118{bottom:188.200267pt;}
.y351{bottom:188.214533pt;}
.y3ef{bottom:188.226667pt;}
.y3b5{bottom:188.283867pt;}
.y4d7{bottom:188.607733pt;}
.ye1{bottom:189.448267pt;}
.y52c{bottom:189.914400pt;}
.y18d{bottom:189.938667pt;}
.y380{bottom:190.002667pt;}
.y317{bottom:191.339200pt;}
.y202{bottom:194.032400pt;}
.y28{bottom:195.685600pt;}
.ya8{bottom:195.846933pt;}
.y438{bottom:197.066867pt;}
.y25f{bottom:198.081200pt;}
.y4d6{bottom:199.303733pt;}
.y2c1{bottom:199.873467pt;}
.y52b{bottom:200.685067pt;}
.y1c5{bottom:202.425200pt;}
.y484{bottom:202.625200pt;}
.y23c{bottom:203.341333pt;}
.y151{bottom:203.512267pt;}
.y117{bottom:203.572267pt;}
.y350{bottom:203.622533pt;}
.y3b4{bottom:203.691867pt;}
.ye0{bottom:204.784267pt;}
.y18c{bottom:205.502667pt;}
.y37f{bottom:205.558667pt;}
.y316{bottom:205.873200pt;}
.y437{bottom:208.444533pt;}
.y201{bottom:209.068400pt;}
.y4d5{bottom:209.999733pt;}
.y27{bottom:211.019600pt;}
.ya7{bottom:211.290933pt;}
.y52a{bottom:211.455733pt;}
.y262{bottom:213.412160pt;}
.y25a{bottom:213.415333pt;}
.y483{bottom:214.234867pt;}
.y2c0{bottom:215.166133pt;}
.y1c4{bottom:217.761200pt;}
.y23b{bottom:218.737333pt;}
.y150{bottom:218.920267pt;}
.y116{bottom:218.944267pt;}
.y34f{bottom:219.030533pt;}
.y3b3{bottom:219.099867pt;}
.y436{bottom:219.822200pt;}
.ydf{bottom:220.120267pt;}
.y315{bottom:220.407200pt;}
.y4d4{bottom:220.695733pt;}
.y18b{bottom:221.066667pt;}
.y37e{bottom:221.122667pt;}
.y529{bottom:222.226400pt;}
.y25e{bottom:223.761200pt;}
.y200{bottom:224.104400pt;}
.y482{bottom:225.844533pt;}
.y26{bottom:226.353600pt;}
.ya6{bottom:226.734933pt;}
.y3ee{bottom:228.078667pt;}
.y2bf{bottom:230.458800pt;}
.y435{bottom:231.199867pt;}
.y4d3{bottom:231.391733pt;}
.y528{bottom:232.997067pt;}
.y1c3{bottom:233.097200pt;}
.y23a{bottom:234.133333pt;}
.y115{bottom:234.316267pt;}
.y14f{bottom:234.408267pt;}
.y34e{bottom:234.438533pt;}
.y3b2{bottom:234.507867pt;}
.y256{bottom:234.526533pt;}
.y314{bottom:234.941200pt;}
.y2f6{bottom:235.142193pt;}
.y2f8{bottom:235.146000pt;}
.yde{bottom:235.456267pt;}
.y18a{bottom:236.630667pt;}
.y37d{bottom:236.646667pt;}
.y481{bottom:237.454200pt;}
.y1ff{bottom:239.140400pt;}
.y4d2{bottom:242.087733pt;}
.ya5{bottom:242.178933pt;}
.y3ed{bottom:243.486667pt;}
.y527{bottom:243.767733pt;}
.y25{bottom:245.020267pt;}
.y69{bottom:245.149200pt;}
.y255{bottom:245.568933pt;}
.y2be{bottom:245.751467pt;}
.y434{bottom:247.903867pt;}
.y1c2{bottom:248.433200pt;}
.y480{bottom:249.063867pt;}
.y313{bottom:249.475200pt;}
.y239{bottom:249.529333pt;}
.y114{bottom:249.690933pt;}
.y14e{bottom:249.816267pt;}
.y34d{bottom:249.846533pt;}
.y3b1{bottom:249.915867pt;}
.ydd{bottom:250.792267pt;}
.y189{bottom:252.194667pt;}
.y37c{bottom:252.210667pt;}
.y4d1{bottom:252.783733pt;}
.y1fe{bottom:254.176400pt;}
.y526{bottom:254.538400pt;}
.ya4{bottom:257.622933pt;}
.y257{bottom:258.400267pt;}
.y3ec{bottom:258.894667pt;}
.y433{bottom:259.281533pt;}
.y68{bottom:260.485200pt;}
.y47f{bottom:260.673533pt;}
.y2bd{bottom:261.044133pt;}
.y4d0{bottom:263.479733pt;}
.y1c1{bottom:263.769200pt;}
.y312{bottom:264.009200pt;}
.y266{bottom:264.580667pt;}
.y238{bottom:264.925333pt;}
.y113{bottom:265.062933pt;}
.y14d{bottom:265.224267pt;}
.y34c{bottom:265.254533pt;}
.y525{bottom:265.309067pt;}
.y3b0{bottom:265.323867pt;}
.ydc{bottom:266.058933pt;}
.y188{bottom:267.758667pt;}
.y37b{bottom:267.774667pt;}
.y24{bottom:268.354933pt;}
.y1fd{bottom:269.212400pt;}
.y432{bottom:270.659200pt;}
.y47e{bottom:272.283200pt;}
.ya3{bottom:273.066933pt;}
.y4cf{bottom:274.175733pt;}
.y3eb{bottom:274.302667pt;}
.y67{bottom:275.821200pt;}
.y524{bottom:276.079733pt;}
.y2bc{bottom:276.336800pt;}
.y311{bottom:278.543200pt;}
.y1c0{bottom:279.105200pt;}
.y237{bottom:280.321333pt;}
.y112{bottom:280.438933pt;}
.y14c{bottom:280.632267pt;}
.y34b{bottom:280.662533pt;}
.y3af{bottom:280.731867pt;}
.ydb{bottom:281.394933pt;}
.y431{bottom:282.036867pt;}
.y187{bottom:283.322667pt;}
.y37a{bottom:283.338667pt;}
.y23{bottom:283.688933pt;}
.y47d{bottom:283.892867pt;}
.y1fc{bottom:284.248400pt;}
.y4ce{bottom:284.871733pt;}
.y26c{bottom:286.487067pt;}
.y523{bottom:286.850400pt;}
.y26b{bottom:287.632747pt;}
.ya2{bottom:288.510933pt;}
.y3ea{bottom:289.710667pt;}
.y66{bottom:291.157200pt;}
.y2bb{bottom:291.629467pt;}
.y310{bottom:293.077200pt;}
.y430{bottom:293.414533pt;}
.y1bf{bottom:294.441200pt;}
.y47c{bottom:295.502533pt;}
.y4cd{bottom:295.567733pt;}
.y236{bottom:295.717333pt;}
.y111{bottom:295.810933pt;}
.y14b{bottom:296.040267pt;}
.y34a{bottom:296.070533pt;}
.y3ae{bottom:296.139867pt;}
.yda{bottom:296.730933pt;}
.y522{bottom:297.621067pt;}
.y186{bottom:298.886667pt;}
.y379{bottom:298.902667pt;}
.y22{bottom:299.022933pt;}
.y1fb{bottom:299.284400pt;}
.y29f{bottom:300.198800pt;}
.y29d{bottom:300.199859pt;}
.ya1{bottom:303.954933pt;}
.y42f{bottom:304.792200pt;}
.y3e9{bottom:305.118667pt;}
.y4cc{bottom:306.263733pt;}
.y65{bottom:306.493200pt;}
.y2ba{bottom:306.922133pt;}
.y47b{bottom:307.112200pt;}
.y30f{bottom:307.611200pt;}
.y521{bottom:308.391733pt;}
.y1be{bottom:309.777200pt;}
.y267{bottom:310.684827pt;}
.y235{bottom:311.113333pt;}
.y110{bottom:311.182933pt;}
.y14a{bottom:311.448267pt;}
.y349{bottom:311.478533pt;}
.y3ad{bottom:311.547867pt;}
.yd9{bottom:312.066933pt;}
.y1fa{bottom:314.320400pt;}
.y21{bottom:314.356933pt;}
.y185{bottom:314.450667pt;}
.y378{bottom:314.466667pt;}
.y42e{bottom:316.169867pt;}
.y4cb{bottom:316.959733pt;}
.y47a{bottom:318.721867pt;}
.y520{bottom:319.162400pt;}
.ya0{bottom:319.366933pt;}
.y3e8{bottom:320.526667pt;}
.y64{bottom:321.829200pt;}
.y2b9{bottom:322.214800pt;}
.y30d{bottom:324.645867pt;}
.y1bd{bottom:325.113200pt;}
.y234{bottom:326.509333pt;}
.y10f{bottom:326.558933pt;}
.y149{bottom:326.856267pt;}
.y348{bottom:326.929333pt;}
.y3ac{bottom:326.955867pt;}
.yd8{bottom:327.402933pt;}
.y42d{bottom:327.547533pt;}
.y4ca{bottom:327.655733pt;}
.y1f9{bottom:329.356400pt;}
.y51f{bottom:329.933067pt;}
.y184{bottom:330.014667pt;}
.y377{bottom:330.030667pt;}
.y479{bottom:330.331533pt;}
.y20{bottom:331.685600pt;}
.y268{bottom:333.736907pt;}
.y9f{bottom:334.810933pt;}
.y3e7{bottom:335.934667pt;}
.y63{bottom:337.165200pt;}
.y2b8{bottom:337.507467pt;}
.y4c9{bottom:338.351733pt;}
.y42c{bottom:338.925200pt;}
.y1bc{bottom:340.449200pt;}
.y51e{bottom:340.703733pt;}
.y30e{bottom:341.595867pt;}
.y233{bottom:341.905333pt;}
.y10e{bottom:341.930933pt;}
.y148{bottom:342.264267pt;}
.y347{bottom:342.337333pt;}
.y3ab{bottom:342.363867pt;}
.yd7{bottom:342.738933pt;}
.y1f8{bottom:344.392400pt;}
.y183{bottom:345.578667pt;}
.y376{bottom:345.594667pt;}
.y1f{bottom:347.019600pt;}
.y478{bottom:347.277200pt;}
.y4c8{bottom:349.047733pt;}
.y9e{bottom:350.254933pt;}
.y42b{bottom:350.302867pt;}
.y3e6{bottom:351.342667pt;}
.y51d{bottom:351.474400pt;}
.y62{bottom:352.501200pt;}
.y2b7{bottom:355.296000pt;}
.y1bb{bottom:355.785200pt;}
.y26a{bottom:356.788987pt;}
.y232{bottom:357.301333pt;}
.y10d{bottom:357.302933pt;}
.y147{bottom:357.672267pt;}
.y346{bottom:357.745333pt;}
.y3aa{bottom:357.771867pt;}
.yd6{bottom:358.074933pt;}
.y30c{bottom:358.545733pt;}
.y477{bottom:358.886867pt;}
.y1f7{bottom:359.428400pt;}
.y4c7{bottom:359.743733pt;}
.y182{bottom:361.142667pt;}
.y375{bottom:361.158667pt;}
.y42a{bottom:361.680533pt;}
.y51c{bottom:362.245067pt;}
.y1e{bottom:362.353600pt;}
.y9d{bottom:365.698933pt;}
.y3e5{bottom:366.750667pt;}
.y61{bottom:367.837200pt;}
.y4c6{bottom:370.439733pt;}
.y476{bottom:370.496533pt;}
.y30b{bottom:371.879067pt;}
.y10c{bottom:372.674933pt;}
.y231{bottom:372.697333pt;}
.y2b6{bottom:373.000000pt;}
.y51b{bottom:373.015733pt;}
.y429{bottom:373.058200pt;}
.y146{bottom:373.080267pt;}
.y345{bottom:373.153333pt;}
.y3a9{bottom:373.179867pt;}
.yd5{bottom:373.410933pt;}
.y1f6{bottom:374.464400pt;}
.y181{bottom:376.706667pt;}
.y374{bottom:376.722667pt;}
.y269{bottom:379.841067pt;}
.y1d{bottom:381.020267pt;}
.y4c5{bottom:381.135733pt;}
.y9c{bottom:381.142933pt;}
.y475{bottom:382.106200pt;}
.y3e4{bottom:382.158667pt;}
.y60{bottom:383.170533pt;}
.y51a{bottom:383.786400pt;}
.y428{bottom:384.435867pt;}
.y2b5{bottom:386.333333pt;}
.y230{bottom:388.033333pt;}
.y145{bottom:388.488267pt;}
.y344{bottom:388.561333pt;}
.y3a8{bottom:388.587867pt;}
.yd4{bottom:388.746933pt;}
.y26f{bottom:389.210480pt;}
.y1f5{bottom:389.500400pt;}
.y4c4{bottom:391.831733pt;}
.y373{bottom:392.222667pt;}
.y180{bottom:392.270667pt;}
.y1ba{bottom:393.633200pt;}
.y474{bottom:393.715867pt;}
.y519{bottom:394.557067pt;}
.y427{bottom:395.813533pt;}
.y9b{bottom:396.586933pt;}
.y3e3{bottom:397.582533pt;}
.y5f{bottom:398.397333pt;}
.y26e{bottom:399.799200pt;}
.y4c3{bottom:402.527733pt;}
.y144{bottom:403.896267pt;}
.y343{bottom:403.969333pt;}
.y3a7{bottom:403.995867pt;}
.yd3{bottom:404.082933pt;}
.y1f4{bottom:404.536400pt;}
.y473{bottom:405.325533pt;}
.y518{bottom:405.327733pt;}
.y372{bottom:407.786667pt;}
.y17f{bottom:407.834667pt;}
.y1b9{bottom:408.969200pt;}
.y26d{bottom:410.370800pt;}
.y10b{bottom:411.866933pt;}
.y9a{bottom:412.030933pt;}
.y426{bottom:412.517533pt;}
.y47{bottom:412.641333pt;}
.y3e2{bottom:412.990533pt;}
.y4c2{bottom:413.223733pt;}
.y5e{bottom:413.733333pt;}
.y2e4{bottom:413.925733pt;}
.y2d8{bottom:413.985733pt;}
.y517{bottom:416.098400pt;}
.y472{bottom:416.935200pt;}
.y143{bottom:419.304267pt;}
.y342{bottom:419.377333pt;}
.y3a6{bottom:419.403867pt;}
.yd2{bottom:419.418933pt;}
.y1f3{bottom:419.572400pt;}
.y371{bottom:423.350667pt;}
.y17e{bottom:423.398667pt;}
.y425{bottom:423.895200pt;}
.y4c1{bottom:423.919733pt;}
.y1b8{bottom:424.305200pt;}
.y286{bottom:426.160933pt;}
.y27e{bottom:426.232933pt;}
.y516{bottom:426.869067pt;}
.y10a{bottom:427.238933pt;}
.y99{bottom:427.462933pt;}
.y22f{bottom:427.885333pt;}
.y46{bottom:427.977333pt;}
.y3e1{bottom:428.398533pt;}
.y471{bottom:428.544867pt;}
.y5d{bottom:429.069333pt;}
.y2e3{bottom:429.261733pt;}
.y2d7{bottom:429.321733pt;}
.y1f2{bottom:434.608400pt;}
.y4c0{bottom:434.615733pt;}
.y142{bottom:434.712267pt;}
.y341{bottom:434.785333pt;}
.y3a5{bottom:434.811867pt;}
.y424{bottom:435.272867pt;}
.y515{bottom:437.639733pt;}
.y370{bottom:438.914667pt;}
.y17d{bottom:438.962667pt;}
.y1b7{bottom:439.641200pt;}
.y470{bottom:440.154533pt;}
.y285{bottom:441.496933pt;}
.y27d{bottom:441.568933pt;}
.y109{bottom:442.610933pt;}
.y98{bottom:442.906933pt;}
.y22e{bottom:443.281333pt;}
.y45{bottom:443.313333pt;}
.y3e0{bottom:443.875867pt;}
.y5c{bottom:444.405333pt;}
.y2e2{bottom:444.597733pt;}
.y2d6{bottom:444.657733pt;}
.y4bf{bottom:445.311733pt;}
.yd1{bottom:446.394933pt;}
.y423{bottom:446.650533pt;}
.y514{bottom:448.410400pt;}
.y1f1{bottom:449.644400pt;}
.y141{bottom:450.120267pt;}
.y340{bottom:450.209333pt;}
.y3a4{bottom:450.219867pt;}
.y46f{bottom:451.764200pt;}
.y17c{bottom:454.398667pt;}
.y36f{bottom:454.478667pt;}
.y1b6{bottom:454.977200pt;}
.y4be{bottom:456.007733pt;}
.y284{bottom:456.832933pt;}
.y27c{bottom:456.904933pt;}
.y108{bottom:457.982933pt;}
.y422{bottom:458.028200pt;}
.y97{bottom:458.350933pt;}
.y44{bottom:458.649333pt;}
.y22d{bottom:458.677333pt;}
.y513{bottom:459.181067pt;}
.y3df{bottom:459.283867pt;}
.y21c{bottom:459.704000pt;}
.y5b{bottom:459.741333pt;}
.y2e1{bottom:459.933733pt;}
.y2d5{bottom:459.993733pt;}
.yd0{bottom:461.730933pt;}
.y46e{bottom:463.373867pt;}
.y1f0{bottom:464.680400pt;}
.y140{bottom:465.597600pt;}
.y33f{bottom:465.617333pt;}
.y3a3{bottom:465.627867pt;}
.y4bd{bottom:466.703733pt;}
.y421{bottom:469.405867pt;}
.y512{bottom:469.951733pt;}
.y17b{bottom:469.962667pt;}
.y36e{bottom:470.042667pt;}
.y1b5{bottom:470.313200pt;}
.y27b{bottom:472.240933pt;}
.y107{bottom:473.369600pt;}
.y96{bottom:473.782933pt;}
.y43{bottom:473.985333pt;}
.y22c{bottom:474.073333pt;}
.y3de{bottom:474.691867pt;}
.y21b{bottom:475.040000pt;}
.y5a{bottom:475.077333pt;}
.y2e0{bottom:475.269733pt;}
.y2d4{bottom:475.329733pt;}
.ycf{bottom:477.066933pt;}
.y4bc{bottom:477.399733pt;}
.y1ef{bottom:479.716400pt;}
.y46d{bottom:480.319533pt;}
.y511{bottom:480.722400pt;}
.y420{bottom:480.783533pt;}
.y13f{bottom:481.005600pt;}
.y33e{bottom:481.025333pt;}
.y3a2{bottom:481.035867pt;}
.y17a{bottom:485.526667pt;}
.y36d{bottom:485.606667pt;}
.y1b4{bottom:485.649200pt;}
.y283{bottom:487.156933pt;}
.y27a{bottom:487.576933pt;}
.y4bb{bottom:488.095733pt;}
.y106{bottom:488.741600pt;}
.y95{bottom:489.226933pt;}
.y42{bottom:489.321333pt;}
.y22b{bottom:489.469333pt;}
.y3dd{bottom:490.099867pt;}
.y21a{bottom:490.376000pt;}
.y59{bottom:490.413333pt;}
.y2df{bottom:490.605733pt;}
.y2d3{bottom:490.665733pt;}
.y510{bottom:491.493067pt;}
.y46c{bottom:491.929200pt;}
.y41f{bottom:492.161200pt;}
.yce{bottom:492.402933pt;}
.y1ee{bottom:494.752400pt;}
.y13e{bottom:496.413600pt;}
.y33d{bottom:496.443867pt;}
.y4ba{bottom:498.791733pt;}
.y1b3{bottom:500.985200pt;}
.y179{bottom:501.090667pt;}
.y36c{bottom:501.170667pt;}
.y50f{bottom:502.263733pt;}
.y282{bottom:502.492933pt;}
.y279{bottom:502.912933pt;}
.y41e{bottom:503.538867pt;}
.y105{bottom:504.113600pt;}
.y41{bottom:504.657333pt;}
.y94{bottom:504.670933pt;}
.y22a{bottom:504.865333pt;}
.y3dc{bottom:505.507867pt;}
.y219{bottom:505.712000pt;}
.y58{bottom:505.749333pt;}
.y2de{bottom:505.941733pt;}
.y2d2{bottom:506.001733pt;}
.ycd{bottom:507.738933pt;}
.y46b{bottom:508.874867pt;}
.y4b9{bottom:509.487733pt;}
.y1ed{bottom:509.788400pt;}
.y13d{bottom:511.821600pt;}
.y33c{bottom:511.851867pt;}
.y50e{bottom:513.034400pt;}
.y41d{bottom:514.916533pt;}
.y1b2{bottom:516.321200pt;}
.y178{bottom:516.654667pt;}
.y36b{bottom:516.734667pt;}
.y281{bottom:517.828933pt;}
.y278{bottom:518.248933pt;}
.y104{bottom:519.485600pt;}
.y40{bottom:519.993333pt;}
.y93{bottom:520.098933pt;}
.y4b8{bottom:520.183733pt;}
.y229{bottom:520.265333pt;}
.y46a{bottom:520.484533pt;}
.y3db{bottom:520.915867pt;}
.y218{bottom:521.048000pt;}
.y57{bottom:521.085333pt;}
.y2dd{bottom:521.277733pt;}
.y2d1{bottom:521.337733pt;}
.ycc{bottom:523.074933pt;}
.y50d{bottom:523.805067pt;}
.y1ec{bottom:524.824400pt;}
.y41c{bottom:526.294200pt;}
.y13c{bottom:527.229600pt;}
.y3a1{bottom:527.259867pt;}
.y33b{bottom:527.270667pt;}
.y4b7{bottom:530.879733pt;}
.y1b1{bottom:531.657200pt;}
.y469{bottom:532.094200pt;}
.y177{bottom:532.218667pt;}
.y36a{bottom:532.298667pt;}
.y280{bottom:533.164933pt;}
.y277{bottom:533.584933pt;}
.y50c{bottom:534.575733pt;}
.y103{bottom:534.857600pt;}
.y3f{bottom:535.329333pt;}
.y92{bottom:535.542933pt;}
.y228{bottom:535.676000pt;}
.y3da{bottom:536.323867pt;}
.y217{bottom:536.384000pt;}
.y56{bottom:536.421333pt;}
.y2dc{bottom:536.613733pt;}
.y2d0{bottom:536.673733pt;}
.y41b{bottom:537.671867pt;}
.ycb{bottom:538.410933pt;}
.y1eb{bottom:539.860400pt;}
.y4b6{bottom:541.575733pt;}
.y13{bottom:542.269733pt;}
.y13b{bottom:542.637600pt;}
.y33a{bottom:542.678667pt;}
.y468{bottom:543.703867pt;}
.y50b{bottom:545.346400pt;}
.y1b0{bottom:546.993200pt;}
.y176{bottom:547.782667pt;}
.y369{bottom:547.862667pt;}
.y27f{bottom:548.500933pt;}
.y276{bottom:548.920933pt;}
.y102{bottom:550.229600pt;}
.y3e{bottom:550.665333pt;}
.y91{bottom:550.986933pt;}
.y227{bottom:551.072000pt;}
.y216{bottom:551.720000pt;}
.y3d9{bottom:551.731867pt;}
.y55{bottom:551.757333pt;}
.y2cf{bottom:552.009733pt;}
.y4b5{bottom:552.271733pt;}
.y12{bottom:553.599067pt;}
.yca{bottom:553.746933pt;}
.y41a{bottom:554.375867pt;}
.y1ea{bottom:554.896400pt;}
.y467{bottom:555.313533pt;}
.y50a{bottom:556.117067pt;}
.y13a{bottom:558.045600pt;}
.y339{bottom:558.210667pt;}
.y1af{bottom:562.329200pt;}
.y4b4{bottom:562.967733pt;}
.y175{bottom:563.346667pt;}
.y368{bottom:563.426667pt;}
.y101{bottom:565.601600pt;}
.y3d{bottom:566.001333pt;}
.y90{bottom:566.430933pt;}
.y226{bottom:566.468000pt;}
.y509{bottom:566.887733pt;}
.y466{bottom:566.923200pt;}
.y215{bottom:567.056000pt;}
.y54{bottom:567.093333pt;}
.y3a0{bottom:567.134667pt;}
.y3d8{bottom:567.139867pt;}
.y2db{bottom:567.309733pt;}
.y2ce{bottom:567.345733pt;}
.yc9{bottom:569.082933pt;}
.y1e9{bottom:569.932400pt;}
.y139{bottom:573.453600pt;}
.y338{bottom:573.618667pt;}
.y4b3{bottom:573.663733pt;}
.y11{bottom:576.937733pt;}
.y1ae{bottom:577.570533pt;}
.y508{bottom:577.658400pt;}
.y465{bottom:578.532867pt;}
.y174{bottom:578.910667pt;}
.y367{bottom:578.990667pt;}
.y100{bottom:580.973600pt;}
.y3c{bottom:581.337333pt;}
.y8f{bottom:581.862933pt;}
.y225{bottom:581.864000pt;}
.y214{bottom:582.392000pt;}
.y53{bottom:582.429333pt;}
.y2b4{bottom:582.462133pt;}
.y39f{bottom:582.542667pt;}
.y3d7{bottom:582.547867pt;}
.y2da{bottom:582.645733pt;}
.y2cd{bottom:582.681733pt;}
.y4b2{bottom:584.359733pt;}
.yc8{bottom:584.418933pt;}
.y1e8{bottom:584.968400pt;}
.y419{bottom:586.249200pt;}
.y10{bottom:588.268400pt;}
.y507{bottom:588.429067pt;}
.y138{bottom:588.861600pt;}
.y337{bottom:589.026667pt;}
.y464{bottom:590.142533pt;}
.y1ad{bottom:592.906533pt;}
.y173{bottom:594.474667pt;}
.y366{bottom:594.554667pt;}
.y4b1{bottom:595.055733pt;}
.y2b3{bottom:595.795467pt;}
.yff{bottom:596.345600pt;}
.y3b{bottom:596.673333pt;}
.y224{bottom:597.260000pt;}
.y8e{bottom:597.306933pt;}
.y418{bottom:597.622533pt;}
.y213{bottom:597.709333pt;}
.y52{bottom:597.765333pt;}
.y39e{bottom:597.950667pt;}
.y3d6{bottom:597.955867pt;}
.y2d9{bottom:597.981733pt;}
.y2cc{bottom:598.017733pt;}
.y506{bottom:599.199733pt;}
.yf{bottom:599.599067pt;}
.yc7{bottom:599.754933pt;}
.y1e7{bottom:600.004400pt;}
.y463{bottom:601.752200pt;}
.y137{bottom:604.269600pt;}
.y336{bottom:604.434667pt;}
.y4b0{bottom:605.751733pt;}
.y1ac{bottom:608.242533pt;}
.y417{bottom:608.995867pt;}
.y2b2{bottom:609.128800pt;}
.y505{bottom:609.970400pt;}
.y172{bottom:610.038667pt;}
.y365{bottom:610.118667pt;}
.yfe{bottom:611.717600pt;}
.y3a{bottom:612.009333pt;}
.y223{bottom:612.656000pt;}
.y8d{bottom:612.750933pt;}
.y212{bottom:613.045333pt;}
.y51{bottom:613.101333pt;}
.y39d{bottom:613.358667pt;}
.y462{bottom:613.361867pt;}
.y3d5{bottom:613.363867pt;}
.y1e6{bottom:615.040400pt;}
.yc6{bottom:615.090933pt;}
.ye{bottom:616.277733pt;}
.y4af{bottom:616.447733pt;}
.y136{bottom:619.677600pt;}
.y416{bottom:620.369200pt;}
.y504{bottom:620.741067pt;}
.y2b1{bottom:622.462133pt;}
.y1ab{bottom:623.578533pt;}
.y461{bottom:624.971533pt;}
.y171{bottom:625.602667pt;}
.y364{bottom:625.682667pt;}
.yfd{bottom:627.089600pt;}
.y4ae{bottom:627.143733pt;}
.y415{bottom:627.245867pt;}
.y39{bottom:627.345333pt;}
.yd{bottom:627.607067pt;}
.y222{bottom:628.052000pt;}
.y8c{bottom:628.194933pt;}
.y211{bottom:628.381333pt;}
.y50{bottom:628.437333pt;}
.y3d4{bottom:628.771867pt;}
.y39c{bottom:628.777200pt;}
.y1e5{bottom:630.076400pt;}
.yc5{bottom:630.426933pt;}
.y503{bottom:631.511733pt;}
.y30a{bottom:634.181467pt;}
.y135{bottom:635.085600pt;}
.y2b0{bottom:635.795467pt;}
.y4ad{bottom:637.839733pt;}
.y1aa{bottom:638.914533pt;}
.yc{bottom:638.936400pt;}
.y170{bottom:641.166667pt;}
.y363{bottom:641.242667pt;}
.y460{bottom:641.917200pt;}
.y502{bottom:642.282400pt;}
.yfc{bottom:642.461600pt;}
.y38{bottom:642.681333pt;}
.y414{bottom:643.115867pt;}
.y221{bottom:643.448000pt;}
.y8b{bottom:643.614933pt;}
.y210{bottom:643.717333pt;}
.y4f{bottom:643.773333pt;}
.y39b{bottom:644.185200pt;}
.y3d3{bottom:644.249333pt;}
.y335{bottom:644.286667pt;}
.y1e4{bottom:645.112400pt;}
.yc4{bottom:645.762933pt;}
.y309{bottom:647.514800pt;}
.y4ac{bottom:648.535733pt;}
.y413{bottom:649.992533pt;}
.yb{bottom:650.265733pt;}
.y134{bottom:650.493600pt;}
.y501{bottom:653.053067pt;}
.y1a9{bottom:654.250533pt;}
.y29b{bottom:654.461333pt;}
.y16f{bottom:656.730667pt;}
.y362{bottom:656.802667pt;}
.yfb{bottom:657.833600pt;}
.y37{bottom:658.017333pt;}
.y220{bottom:658.844000pt;}
.y45f{bottom:658.862867pt;}
.y20f{bottom:659.053333pt;}
.y8a{bottom:659.058933pt;}
.y4e{bottom:659.109333pt;}
.y4ab{bottom:659.231733pt;}
.y39a{bottom:659.598533pt;}
.y3d2{bottom:659.657333pt;}
.y334{bottom:659.694667pt;}
.y1e3{bottom:660.148400pt;}
.y308{bottom:660.848133pt;}
.yc3{bottom:661.098933pt;}
.ya{bottom:661.602400pt;}
.y500{bottom:663.823733pt;}
.y412{bottom:665.862533pt;}
.y133{bottom:665.981600pt;}
.y1a8{bottom:669.586533pt;}
.y4aa{bottom:669.927733pt;}
.y45e{bottom:670.472533pt;}
.y16e{bottom:672.294667pt;}
.y361{bottom:672.338667pt;}
.y9{bottom:672.932400pt;}
.yfa{bottom:673.205600pt;}
.y36{bottom:673.353333pt;}
.y307{bottom:674.181467pt;}
.y21f{bottom:674.240000pt;}
.y20e{bottom:674.389333pt;}
.y4d{bottom:674.445333pt;}
.y89{bottom:674.502933pt;}
.y4ff{bottom:674.594400pt;}
.y399{bottom:675.017200pt;}
.y3d1{bottom:675.065333pt;}
.y333{bottom:675.102667pt;}
.y1e2{bottom:675.184400pt;}
.yc2{bottom:676.434933pt;}
.y411{bottom:677.235867pt;}
.y4a9{bottom:680.623733pt;}
.y132{bottom:681.389600pt;}
.y45d{bottom:682.082200pt;}
.y29a{bottom:682.172333pt;}
.y2af{bottom:682.175261pt;}
.y410{bottom:684.112533pt;}
.y1a7{bottom:684.922533pt;}
.y4fe{bottom:685.365067pt;}
.y306{bottom:687.514800pt;}
.y16d{bottom:687.858667pt;}
.y360{bottom:687.902667pt;}
.y35{bottom:688.689333pt;}
.y21e{bottom:689.636000pt;}
.y20d{bottom:689.725333pt;}
.y4c{bottom:689.781333pt;}
.y88{bottom:689.946933pt;}
.y1e1{bottom:690.220400pt;}
.y398{bottom:690.425200pt;}
.y3d0{bottom:690.473333pt;}
.y332{bottom:690.510667pt;}
.y4a8{bottom:691.319733pt;}
.yc1{bottom:691.738933pt;}
.y45c{bottom:693.691867pt;}
.y299{bottom:695.183733pt;}
.y2ae{bottom:695.186661pt;}
.y4fd{bottom:696.135733pt;}
.y8{bottom:696.285733pt;}
.y131{bottom:696.797600pt;}
.y40f{bottom:699.982533pt;}
.y1a6{bottom:700.258533pt;}
.y305{bottom:700.848133pt;}
.y4a7{bottom:702.015733pt;}
.y16c{bottom:703.422667pt;}
.y35f{bottom:703.466667pt;}
.y34{bottom:704.025333pt;}
.y21d{bottom:705.032000pt;}
.y20c{bottom:705.061333pt;}
.y4b{bottom:705.117333pt;}
.y1e0{bottom:705.256400pt;}
.y45b{bottom:705.301533pt;}
.y87{bottom:705.390933pt;}
.y397{bottom:705.844000pt;}
.y3cf{bottom:705.881333pt;}
.y331{bottom:705.918667pt;}
.yf9{bottom:706.397600pt;}
.y4fc{bottom:706.906400pt;}
.yc0{bottom:707.074933pt;}
.y7{bottom:707.615067pt;}
.y298{bottom:708.195133pt;}
.y2ad{bottom:708.198061pt;}
.y40e{bottom:711.355867pt;}
.y130{bottom:712.205600pt;}
.y4a6{bottom:712.711733pt;}
.y1a5{bottom:715.594533pt;}
.y45a{bottom:716.911200pt;}
.y4fb{bottom:717.677067pt;}
.y6{bottom:718.944400pt;}
.y16b{bottom:718.986667pt;}
.y35e{bottom:719.030667pt;}
.y33{bottom:719.361333pt;}
.y2f4{bottom:719.514667pt;}
.y1df{bottom:720.292400pt;}
.y4a{bottom:720.453333pt;}
.y86{bottom:720.802933pt;}
.y297{bottom:721.206533pt;}
.y2ac{bottom:721.209461pt;}
.y396{bottom:721.252000pt;}
.y3ce{bottom:721.289333pt;}
.y330{bottom:721.326667pt;}
.yf8{bottom:721.769600pt;}
.ybf{bottom:722.410933pt;}
.y40d{bottom:722.729200pt;}
.y4a5{bottom:723.407733pt;}
.y12f{bottom:727.613600pt;}
.y4fa{bottom:728.447733pt;}
.y459{bottom:728.520867pt;}
.y40c{bottom:729.605867pt;}
.y5{bottom:730.273733pt;}
.y1a4{bottom:730.930533pt;}
.y4a4{bottom:734.103733pt;}
.y296{bottom:734.217933pt;}
.y16a{bottom:734.550667pt;}
.y35d{bottom:734.594667pt;}
.y32{bottom:734.697333pt;}
.y1de{bottom:735.328400pt;}
.y49{bottom:735.789333pt;}
.y85{bottom:736.246933pt;}
.y395{bottom:736.681333pt;}
.y3cd{bottom:736.697333pt;}
.y32f{bottom:736.734667pt;}
.yf7{bottom:737.146933pt;}
.ybe{bottom:737.746933pt;}
.y4f9{bottom:739.218400pt;}
.y458{bottom:740.130533pt;}
.y4{bottom:741.603067pt;}
.y12e{bottom:743.021600pt;}
.y4a3{bottom:744.799733pt;}
.y40b{bottom:745.475867pt;}
.y1a3{bottom:746.266533pt;}
.y295{bottom:747.229333pt;}
.y2f3{bottom:747.229867pt;}
.y2ab{bottom:747.232261pt;}
.y304{bottom:747.232795pt;}
.y4f8{bottom:749.989067pt;}
.y169{bottom:750.114667pt;}
.y35c{bottom:750.158667pt;}
.y1dd{bottom:750.364400pt;}
.y31{bottom:750.693333pt;}
.y48{bottom:751.125333pt;}
.y253{bottom:751.435867pt;}
.y84{bottom:751.690933pt;}
.y457{bottom:751.740200pt;}
.y394{bottom:752.089333pt;}
.y3cc{bottom:752.105333pt;}
.y32e{bottom:752.142667pt;}
.y40a{bottom:752.352533pt;}
.yf6{bottom:752.518933pt;}
.y3{bottom:752.932400pt;}
.ybd{bottom:753.082933pt;}
.y4a2{bottom:755.495733pt;}
.y12d{bottom:758.429600pt;}
.y294{bottom:760.240733pt;}
.y2f2{bottom:760.241267pt;}
.y2aa{bottom:760.243661pt;}
.y303{bottom:760.244195pt;}
.y4f7{bottom:760.759733pt;}
.y1a2{bottom:761.602533pt;}
.y456{bottom:763.349867pt;}
.y252{bottom:765.143867pt;}
.y1dc{bottom:765.400400pt;}
.y168{bottom:765.678667pt;}
.y35b{bottom:765.722667pt;}
.y4a1{bottom:766.191733pt;}
.y83{bottom:767.134933pt;}
.y393{bottom:767.497333pt;}
.y3cb{bottom:767.513333pt;}
.y32d{bottom:767.550667pt;}
.yf5{bottom:767.890933pt;}
.y409{bottom:768.222533pt;}
.ybc{bottom:768.418933pt;}
.y4f6{bottom:771.530400pt;}
.y293{bottom:773.252133pt;}
.y2f1{bottom:773.252667pt;}
.y2a9{bottom:773.255061pt;}
.y302{bottom:773.255595pt;}
.y12c{bottom:773.837600pt;}
.y75{bottom:774.184000pt;}
.y455{bottom:774.959533pt;}
.y251{bottom:776.183867pt;}
.y4a0{bottom:776.887733pt;}
.y1a1{bottom:776.938533pt;}
.y408{bottom:779.595867pt;}
.y1db{bottom:780.436400pt;}
.y167{bottom:781.242667pt;}
.y4f5{bottom:782.301067pt;}
.y82{bottom:782.578933pt;}
.y392{bottom:782.905333pt;}
.y3ca{bottom:782.921333pt;}
.y32c{bottom:782.958667pt;}
.yf4{bottom:783.262933pt;}
.y1c{bottom:783.357333pt;}
.ybb{bottom:783.754933pt;}
.y292{bottom:786.263533pt;}
.y2f0{bottom:786.264067pt;}
.y2a8{bottom:786.266461pt;}
.y301{bottom:786.266995pt;}
.y454{bottom:786.569200pt;}
.y49f{bottom:787.583733pt;}
.y12b{bottom:789.245600pt;}
.y250{bottom:789.891867pt;}
.y407{bottom:790.969200pt;}
.y1a0{bottom:792.274533pt;}
.y4f4{bottom:793.071733pt;}
.y1da{bottom:795.472400pt;}
.y166{bottom:796.806667pt;}
.y81{bottom:798.022933pt;}
.y49e{bottom:798.279733pt;}
.y3c9{bottom:798.329333pt;}
.y391{bottom:798.356000pt;}
.y32b{bottom:798.366667pt;}
.yf3{bottom:798.646933pt;}
.yba{bottom:799.090933pt;}
.y291{bottom:799.274933pt;}
.y2ef{bottom:799.275467pt;}
.y1b{bottom:800.693333pt;}
.y406{bottom:802.342667pt;}
.y453{bottom:803.514867pt;}
.y4f3{bottom:803.842400pt;}
.y12a{bottom:804.653600pt;}
.y24f{bottom:807.503067pt;}
.y49d{bottom:808.975733pt;}
.y405{bottom:809.219200pt;}
.y1d9{bottom:810.508400pt;}
.y290{bottom:812.286333pt;}
.y2ee{bottom:812.286867pt;}
.y2a7{bottom:812.289261pt;}
.y300{bottom:812.289795pt;}
.y165{bottom:812.370667pt;}
.y80{bottom:813.466933pt;}
.y3c8{bottom:813.737333pt;}
.y390{bottom:813.764000pt;}
.y32a{bottom:813.774667pt;}
.yf2{bottom:814.018933pt;}
.yb9{bottom:814.426933pt;}
.y4f2{bottom:814.613067pt;}
.y452{bottom:815.124533pt;}
.y1a{bottom:818.290667pt;}
.y49c{bottom:819.671733pt;}
.y129{bottom:820.061600pt;}
.y24e{bottom:822.539067pt;}
.y404{bottom:825.089200pt;}
.y28f{bottom:825.297733pt;}
.y2ed{bottom:825.298267pt;}
.y2a6{bottom:825.300661pt;}
.y2ff{bottom:825.301195pt;}
.y4f1{bottom:825.383733pt;}
.y1d8{bottom:825.544400pt;}
.y451{bottom:826.734200pt;}
.y164{bottom:827.934667pt;}
.y7f{bottom:828.910933pt;}
.y3c7{bottom:829.145333pt;}
.y38f{bottom:829.172000pt;}
.y329{bottom:829.182667pt;}
.yf1{bottom:829.390933pt;}
.yb8{bottom:829.762933pt;}
.y19f{bottom:830.122533pt;}
.y49b{bottom:830.367733pt;}
.y128{bottom:835.469600pt;}
.y19{bottom:835.624000pt;}
.y4f0{bottom:836.154400pt;}
.y403{bottom:836.462533pt;}
.y24d{bottom:837.575067pt;}
.y28e{bottom:838.309133pt;}
.y2ec{bottom:838.309667pt;}
.y2a5{bottom:838.312061pt;}
.y2fe{bottom:838.312595pt;}
.y450{bottom:838.343867pt;}
.y1d7{bottom:840.580400pt;}
.y49a{bottom:841.063733pt;}
.y163{bottom:843.498667pt;}
.y7e{bottom:844.346800pt;}
.y3c6{bottom:844.553333pt;}
.y38e{bottom:844.580000pt;}
.y328{bottom:844.590667pt;}
.yf0{bottom:844.762933pt;}
.yb7{bottom:845.098933pt;}
.y19e{bottom:845.458533pt;}
.y4ef{bottom:846.925067pt;}
.y402{bottom:847.836000pt;}
.y44f{bottom:849.953533pt;}
.y127{bottom:850.877600pt;}
.y28d{bottom:851.320533pt;}
.y2eb{bottom:851.321067pt;}
.y2a4{bottom:851.323461pt;}
.y2fd{bottom:851.323995pt;}
.y499{bottom:851.759733pt;}
.y24c{bottom:852.611067pt;}
.y18{bottom:852.959867pt;}
.y1d6{bottom:855.616400pt;}
.y4ee{bottom:857.695733pt;}
.y162{bottom:859.062667pt;}
.y401{bottom:859.209200pt;}
.y7d{bottom:859.790800pt;}
.y38d{bottom:859.988000pt;}
.y327{bottom:859.998667pt;}
.y3c5{bottom:860.035867pt;}
.yef{bottom:860.134933pt;}
.yb6{bottom:860.370933pt;}
.y19d{bottom:860.794533pt;}
.y44e{bottom:861.563200pt;}
.y498{bottom:862.455733pt;}
.y28c{bottom:864.331933pt;}
.y2ea{bottom:864.332467pt;}
.y126{bottom:866.285600pt;}
.y24b{bottom:867.647067pt;}
.y4ed{bottom:868.466400pt;}
.y17{bottom:870.557200pt;}
.y400{bottom:870.582667pt;}
.y1d5{bottom:870.652400pt;}
.y497{bottom:873.151733pt;}
.y44d{bottom:873.172867pt;}
.y161{bottom:874.626667pt;}
.y7c{bottom:875.226933pt;}
.y38c{bottom:875.396000pt;}
.y326{bottom:875.406667pt;}
.y3c4{bottom:875.443867pt;}
.yee{bottom:875.506933pt;}
.yb5{bottom:875.706933pt;}
.y19c{bottom:876.130533pt;}
.y28b{bottom:877.343333pt;}
.y2e9{bottom:877.343867pt;}
.y2a3{bottom:877.346261pt;}
.y2fc{bottom:877.346795pt;}
.y4ec{bottom:879.237067pt;}
.y125{bottom:881.693600pt;}
.y3ff{bottom:881.955867pt;}
.y24a{bottom:882.683067pt;}
.y496{bottom:883.847733pt;}
.y44c{bottom:884.782533pt;}
.y1d4{bottom:885.688400pt;}
.y16{bottom:887.893200pt;}
.y546{bottom:888.861200pt;}
.y540{bottom:888.941200pt;}
.y4eb{bottom:890.007733pt;}
.y160{bottom:890.190667pt;}
.y28a{bottom:890.354733pt;}
.y2e8{bottom:890.355267pt;}
.y2a2{bottom:890.357661pt;}
.y2fb{bottom:890.358195pt;}
.y7b{bottom:890.670933pt;}
.y38b{bottom:890.804000pt;}
.y325{bottom:890.814667pt;}
.y3c3{bottom:890.851867pt;}
.yed{bottom:890.878933pt;}
.yb4{bottom:891.042933pt;}
.y19b{bottom:891.466533pt;}
.y3fe{bottom:893.329200pt;}
.y495{bottom:894.543733pt;}
.y44b{bottom:896.392200pt;}
.y124{bottom:897.101600pt;}
.y249{bottom:897.719067pt;}
.y53f{bottom:899.926533pt;}
.y545{bottom:900.190533pt;}
.y3fd{bottom:900.205867pt;}
.y1d3{bottom:900.724400pt;}
.y4ea{bottom:900.778400pt;}
.y289{bottom:903.366133pt;}
.y2e7{bottom:903.366667pt;}
.y2a1{bottom:903.369061pt;}
.y2fa{bottom:903.369595pt;}
.y494{bottom:905.239733pt;}
.y15f{bottom:905.754667pt;}
.y7a{bottom:906.114933pt;}
.y38a{bottom:906.212000pt;}
.y324{bottom:906.222667pt;}
.yec{bottom:906.250933pt;}
.y3c2{bottom:906.259867pt;}
.yb3{bottom:906.378933pt;}
.y19a{bottom:906.802533pt;}
.y44a{bottom:908.001867pt;}
.y53e{bottom:910.911867pt;}
.y544{bottom:911.519867pt;}
.y4e9{bottom:911.549067pt;}
.y247{bottom:915.256400pt;}
.y493{bottom:915.935733pt;}
.y3fc{bottom:916.075867pt;}
.y288{bottom:916.377533pt;}
.y2e6{bottom:916.378067pt;}
.y2a0{bottom:916.380461pt;}
.y2f9{bottom:916.380995pt;}
.y15{bottom:917.237200pt;}
.y1d1{bottom:918.261867pt;}
.y449{bottom:919.611533pt;}
.y15e{bottom:921.318667pt;}
.y79{bottom:921.546933pt;}
.yeb{bottom:921.622933pt;}
.y323{bottom:921.630667pt;}
.y3c1{bottom:921.667867pt;}
.yb2{bottom:921.714933pt;}
.y53d{bottom:921.897200pt;}
.y199{bottom:922.138533pt;}
.y4e8{bottom:922.319733pt;}
.y3fb{bottom:922.952533pt;}
.y248{bottom:926.056400pt;}
.y492{bottom:926.631733pt;}
.y1d2{bottom:929.061867pt;}
.y287{bottom:929.388933pt;}
.y2e5{bottom:929.389467pt;}
.y448{bottom:931.221200pt;}
.y53c{bottom:932.882533pt;}
.y4e7{bottom:933.090400pt;}
.y543{bottom:933.526533pt;}
.y15d{bottom:936.882667pt;}
.y123{bottom:936.976267pt;}
.y78{bottom:936.990933pt;}
.yea{bottom:936.996267pt;}
.y322{bottom:937.038667pt;}
.yb1{bottom:937.050933pt;}
.y3c0{bottom:937.075867pt;}
.y491{bottom:937.327733pt;}
.y198{bottom:937.474533pt;}
.y3fa{bottom:938.822533pt;}
.y447{bottom:942.830867pt;}
.y4e6{bottom:943.861067pt;}
.y53b{bottom:943.867867pt;}
.y14{bottom:943.893200pt;}
.y542{bottom:944.194533pt;}
.y254{bottom:945.509067pt;}
.y29e{bottom:945.985733pt;}
.y2f7{bottom:945.986267pt;}
.y1d0{bottom:946.514400pt;}
.y3f9{bottom:952.362533pt;}
.ye9{bottom:952.368267pt;}
.y122{bottom:952.384267pt;}
.yb0{bottom:952.386933pt;}
.y77{bottom:952.434933pt;}
.y15c{bottom:952.446667pt;}
.y3bf{bottom:952.483867pt;}
.y197{bottom:952.810533pt;}
.y490{bottom:953.354533pt;}
.y446{bottom:954.440533pt;}
.y4e5{bottom:954.631733pt;}
.y53a{bottom:954.853200pt;}
.y541{bottom:954.862533pt;}
.y74{bottom:962.467333pt;}
.y2{bottom:1005.822400pt;}
.h54{height:20.446920pt;}
.h40{height:25.494400pt;}
.h38{height:25.680000pt;}
.h3e{height:25.933333pt;}
.h3a{height:26.022800pt;}
.h3f{height:26.728000pt;}
.h33{height:28.008000pt;}
.h37{height:28.372800pt;}
.h2{height:28.714667pt;}
.h34{height:28.784000pt;}
.h8{height:29.045333pt;}
.h3{height:29.356205pt;}
.h9{height:29.694227pt;}
.h5{height:29.812000pt;}
.h7{height:29.850667pt;}
.h6{height:30.840000pt;}
.h55{height:31.504000pt;}
.h41{height:31.796654pt;}
.h32{height:33.194667pt;}
.h53{height:34.608000pt;}
.hf{height:34.997333pt;}
.h10{height:35.232000pt;}
.h12{height:37.056000pt;}
.h14{height:37.066667pt;}
.h15{height:37.200000pt;}
.h4b{height:37.232000pt;}
.h35{height:37.240000pt;}
.h4c{height:37.263467pt;}
.h36{height:37.274667pt;}
.h11{height:37.344000pt;}
.h13{height:37.492800pt;}
.he{height:39.146667pt;}
.h3d{height:41.208064pt;}
.h4{height:43.072000pt;}
.h1a{height:44.500000pt;}
.h42{height:45.767600pt;}
.h4f{height:45.772933pt;}
.h2d{height:45.943600pt;}
.h47{height:45.965467pt;}
.h51{height:45.985733pt;}
.h2e{height:45.986267pt;}
.h50{height:45.986800pt;}
.h46{height:46.092933pt;}
.h4e{height:46.177733pt;}
.h2c{height:46.178267pt;}
.h45{height:46.199067pt;}
.h52{height:46.199600pt;}
.h29{height:46.204933pt;}
.h27{height:46.215600pt;}
.h43{height:46.220400pt;}
.h44{height:46.220933pt;}
.h28{height:46.242267pt;}
.h2a{height:46.247600pt;}
.h2b{height:46.252933pt;}
.h26{height:46.257733pt;}
.h17{height:46.274267pt;}
.h49{height:46.279600pt;}
.h18{height:46.284933pt;}
.h1b{height:46.295067pt;}
.h19{height:46.295600pt;}
.h1c{height:46.296133pt;}
.h1f{height:46.311067pt;}
.h21{height:46.311600pt;}
.h20{height:46.327600pt;}
.h1e{height:46.343600pt;}
.h4d{height:46.360133pt;}
.h22{height:46.375600pt;}
.h24{height:46.380933pt;}
.h1d{height:46.391067pt;}
.h16{height:46.411867pt;}
.h4a{height:46.423600pt;}
.h48{height:46.439600pt;}
.h23{height:46.519600pt;}
.h30{height:46.535067pt;}
.h25{height:46.540933pt;}
.h31{height:46.631067pt;}
.h2f{height:46.775067pt;}
.hb{height:56.388816pt;}
.hd{height:56.389349pt;}
.hc{height:56.399483pt;}
.ha{height:65.370667pt;}
.h3c{height:242.374667pt;}
.h39{height:293.621333pt;}
.h3b{height:307.428000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:271.696000pt;}
.w3{width:559.392000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:5.101095pt;}
.x35{left:7.134667pt;}
.x26{left:21.770933pt;}
.x8{left:45.331000pt;}
.x38{left:47.553333pt;}
.x6{left:49.192667pt;}
.x7{left:53.911067pt;}
.xc{left:64.719333pt;}
.x29{left:69.444933pt;}
.xd{left:74.205333pt;}
.x9{left:90.048533pt;}
.x18{left:117.076533pt;}
.x2c{left:119.430133pt;}
.xa{left:125.244133pt;}
.x19{left:135.444000pt;}
.x1a{left:139.337200pt;}
.x41{left:153.672267pt;}
.x2f{left:169.415200pt;}
.x1b{left:179.016933pt;}
.x22{left:188.000000pt;}
.xb{left:188.997333pt;}
.x3a{left:193.095333pt;}
.x16{left:200.975467pt;}
.x37{left:202.797840pt;}
.x24{left:204.292533pt;}
.x44{left:205.635467pt;}
.x25{left:207.459733pt;}
.x36{left:209.098000pt;}
.x21{left:214.393333pt;}
.x32{left:217.089067pt;}
.x1{left:220.195867pt;}
.x39{left:235.553333pt;}
.x3c{left:238.360800pt;}
.x43{left:239.275867pt;}
.x27{left:251.963947pt;}
.x28{left:257.442347pt;}
.x23{left:262.451733pt;}
.x34{left:264.762933pt;}
.x20{left:289.191733pt;}
.x2{left:291.939067pt;}
.x2a{left:302.807733pt;}
.x2b{left:305.118933pt;}
.x3{left:310.306533pt;}
.x4{left:314.199867pt;}
.x40{left:341.670376pt;}
.x2d{left:350.481600pt;}
.x5{left:353.879467pt;}
.x2e{left:355.104000pt;}
.x11{left:391.389467pt;}
.x3f{left:393.132407pt;}
.x42{left:396.100000pt;}
.x30{left:402.777867pt;}
.x31{left:405.089067pt;}
.x3e{left:427.275867pt;}
.x33{left:452.762933pt;}
.x12{left:463.132533pt;}
.xe{left:476.697200pt;}
.x1f{left:478.365733pt;}
.x13{left:481.500133pt;}
.x14{left:485.393333pt;}
.x17{left:488.671467pt;}
.x45{left:493.102133pt;}
.x15{left:525.072933pt;}
.x1d{left:606.159333pt;}
.x1c{left:637.757200pt;}
.x3b{left:677.396990pt;}
.x1e{left:692.292667pt;}
.x10{left:767.034667pt;}
.xf{left:780.368000pt;}
}




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