
    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_413d5bba1549b94684814bdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_141ca1565b7fba6357a10195.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957000;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_3efb71b8e2e59a5068ed2b58.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c6cf32eaf1b8ec6030a61d09.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fe8a3c263e79ec8382608d37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b801aa8bcb7819947e0badba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041000;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_cd2d7f335dc4a25f3e963381.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_25f14b04f83e34e5c094b733.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_14dc7f4d51074784814139b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_fc37ba14cbb77d5fcf71cfed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c2580b4eeb5ebf96f21f0ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_120931a6ab454570b0272c6c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d667da96964f450743cb9a1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.696000;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_05e15a46923ed97e7700e317.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.806000;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_d02ad5d11a77226cdda68d2c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.806000;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_be144b4c7d1b08368672a611.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918000;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_5330d72c85d75d66fb606549.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.866000;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_8599835f41388eeed752cfe3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909000;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_adfdf2f7c139f8c6ea8e8bd3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;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_4127958a8f7cf46a6c01767d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938965;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_bc8d26bb7e44b8e4de9a58a2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938965;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_616ea30786fc98efb5059aec.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.172852;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_9d2e6094d1be68d2d7ca4325.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.202148;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_b214751d02ef14de271accb8.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_b33d26749ffa635cf7b341ae.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_73774a0971c9f87e9e4d07d3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.172852;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_de0b4ac1ab6d348d59a3517d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.055176;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_1ec7764a44c3ee817b98f5e4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.942383;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_4bf9d8cdd247e71ca107203f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.752441;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_90fa97326a1b9a0bfcf55b93.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.942383;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_699f3019f508dde769c0775f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.766602;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_0107cfc66d727cd81d5c3643.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;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;}
.m6{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);}
.m5{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.626000px;}
.v5{vertical-align:18.384000px;}
.v1{vertical-align:24.120000px;}
.v2{vertical-align:26.034000px;}
.v4{vertical-align:34.008000px;}
.ls29{letter-spacing:-31.560000px;}
.ls28{letter-spacing:-28.218000px;}
.ls2a{letter-spacing:-4.962000px;}
.ls5b{letter-spacing:-1.356637px;}
.ls4e{letter-spacing:-0.834392px;}
.ls4c{letter-spacing:-0.768361px;}
.ls57{letter-spacing:-0.660310px;}
.ls4d{letter-spacing:-0.590677px;}
.ls64{letter-spacing:-0.472422px;}
.ls55{letter-spacing:-0.464018px;}
.ls4b{letter-spacing:-0.406391px;}
.ls63{letter-spacing:-0.328354px;}
.ls5a{letter-spacing:-0.322952px;}
.ls53{letter-spacing:-0.291137px;}
.ls62{letter-spacing:-0.216102px;}
.ls60{letter-spacing:-0.207698px;}
.ls4a{letter-spacing:-0.164477px;}
.ls41{letter-spacing:-0.132662px;}
.ls69{letter-spacing:-0.115254px;}
.ls67{letter-spacing:-0.109251px;}
.ls4{letter-spacing:-0.079200px;}
.ls50{letter-spacing:-0.078037px;}
.lsa{letter-spacing:-0.076896px;}
.ls52{letter-spacing:-0.048983px;}
.ls2{letter-spacing:-0.048060px;}
.ls3{letter-spacing:-0.038448px;}
.ls9{letter-spacing:-0.036000px;}
.ls25{letter-spacing:-0.032400px;}
.ls23{letter-spacing:-0.027000px;}
.ls6{letter-spacing:-0.021600px;}
.lsb{letter-spacing:-0.019224px;}
.ls7{letter-spacing:-0.014400px;}
.ls24{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.002394px;}
.ls30{letter-spacing:0.003056px;}
.ls8{letter-spacing:0.007200px;}
.ls1f{letter-spacing:0.010800px;}
.ls12{letter-spacing:0.014400px;}
.ls68{letter-spacing:0.020169px;}
.ls17{letter-spacing:0.021600px;}
.ls16{letter-spacing:0.027000px;}
.ls5{letter-spacing:0.028800px;}
.ls14{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.039636px;}
.ls10{letter-spacing:0.043200px;}
.ls19{letter-spacing:0.048600px;}
.lsd{letter-spacing:0.050400px;}
.lsc{letter-spacing:0.057600px;}
.ls26{letter-spacing:0.059400px;}
.lse{letter-spacing:0.064800px;}
.ls15{letter-spacing:0.071820px;}
.ls22{letter-spacing:0.072000px;}
.ls65{letter-spacing:0.077797px;}
.ls66{letter-spacing:0.078037px;}
.ls13{letter-spacing:0.079200px;}
.ls18{letter-spacing:0.081000px;}
.lsf{letter-spacing:0.086400px;}
.ls11{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.113400px;}
.ls21{letter-spacing:0.115200px;}
.ls20{letter-spacing:0.118800px;}
.ls1e{letter-spacing:0.124200px;}
.ls1b{letter-spacing:0.129600px;}
.ls58{letter-spacing:0.129661px;}
.ls56{letter-spacing:0.132662px;}
.ls51{letter-spacing:0.147069px;}
.ls3f{letter-spacing:0.149830px;}
.ls1c{letter-spacing:0.151200px;}
.ls61{letter-spacing:0.247916px;}
.ls43{letter-spacing:0.256320px;}
.ls54{letter-spacing:0.256440px;}
.ls5c{letter-spacing:0.265325px;}
.ls3e{letter-spacing:0.313947px;}
.ls44{letter-spacing:0.371575px;}
.ls5e{letter-spacing:0.391864px;}
.ls5d{letter-spacing:0.567627px;}
.ls40{letter-spacing:0.870169px;}
.ls48{letter-spacing:1.746100px;}
.ls31{letter-spacing:2.577525px;}
.ls2e{letter-spacing:2.984915px;}
.ls36{letter-spacing:2.989289px;}
.ls2c{letter-spacing:2.990525px;}
.ls49{letter-spacing:3.186777px;}
.ls5f{letter-spacing:3.751522px;}
.ls47{letter-spacing:5.347792px;}
.ls46{letter-spacing:6.788469px;}
.ls59{letter-spacing:7.353214px;}
.ls3d{letter-spacing:15.435848px;}
.ls35{letter-spacing:15.941518px;}
.ls34{letter-spacing:16.393809px;}
.ls33{letter-spacing:19.919518px;}
.ls45{letter-spacing:22.635914px;}
.ls3c{letter-spacing:24.315848px;}
.ls3a{letter-spacing:25.596993px;}
.ls32{letter-spacing:31.495289px;}
.ls2b{letter-spacing:32.708915px;}
.ls2f{letter-spacing:34.202915px;}
.ls3b{letter-spacing:35.480915px;}
.ls38{letter-spacing:36.963525px;}
.ls42{letter-spacing:39.179686px;}
.ls39{letter-spacing:40.097464px;}
.ls2d{letter-spacing:52.400915px;}
.ls4f{letter-spacing:59.349161px;}
.ls37{letter-spacing:1039.225114px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(67,65,66),0 0.015em rgb(67,65,66),0.015em 0 rgb(67,65,66),0 -0.015em  rgb(67,65,66);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(67,65,66);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18e{word-spacing:-66.271133px;}
.ws19f{word-spacing:-65.942779px;}
.ws126{word-spacing:-45.664082px;}
.ws1ae{word-spacing:-36.531266px;}
.ws125{word-spacing:-19.944841px;}
.ws91{word-spacing:-19.510886px;}
.wsee{word-spacing:-19.092327px;}
.wsd{word-spacing:-18.900000px;}
.ws175{word-spacing:-17.932800px;}
.ws3f{word-spacing:-16.606328px;}
.wse2{word-spacing:-16.605662px;}
.ws190{word-spacing:-15.348851px;}
.ws18c{word-spacing:-15.291223px;}
.ws19c{word-spacing:-15.242601px;}
.ws18f{word-spacing:-15.233596px;}
.ws196{word-spacing:-15.124345px;}
.ws199{word-spacing:-15.109938px;}
.ws1a0{word-spacing:-15.106937px;}
.ws1a1{word-spacing:-14.997445px;}
.ws18d{word-spacing:-14.977276px;}
.ws197{word-spacing:-14.928293px;}
.ws195{word-spacing:-14.899239px;}
.ws1a2{word-spacing:-14.862022px;}
.ws18b{word-spacing:-14.844614px;}
.ws191{word-spacing:-14.812799px;}
.ws19d{word-spacing:-14.769578px;}
.ws19e{word-spacing:-14.761174px;}
.ws198{word-spacing:-14.513258px;}
.ws193{word-spacing:-14.386599px;}
.ws19a{word-spacing:-14.316966px;}
.ws192{word-spacing:-14.208915px;}
.ws10{word-spacing:-14.196600px;}
.wsf{word-spacing:-14.169600px;}
.ws194{word-spacing:-14.142884px;}
.ws19b{word-spacing:-13.620639px;}
.wse{word-spacing:-12.616380px;}
.ws43{word-spacing:-11.644328px;}
.ws1{word-spacing:-11.330280px;}
.ws8f{word-spacing:-3.945216px;}
.ws18a{word-spacing:-3.873485px;}
.ws107{word-spacing:-3.490895px;}
.ws97{word-spacing:-3.371366px;}
.ws10d{word-spacing:-3.227904px;}
.ws154{word-spacing:-3.036600px;}
.wsdd{word-spacing:-2.175832px;}
.ws16b{word-spacing:-2.151936px;}
.wsd3{word-spacing:-2.080191px;}
.ws12d{word-spacing:-1.936742px;}
.wsdc{word-spacing:-1.900864px;}
.ws96{word-spacing:-1.721549px;}
.ws60{word-spacing:-1.649818px;}
.ws123{word-spacing:-1.578086px;}
.wsb2{word-spacing:-1.434624px;}
.ws189{word-spacing:-1.362893px;}
.ws5e{word-spacing:-1.291162px;}
.ws143{word-spacing:-1.219430px;}
.ws155{word-spacing:-1.183557px;}
.ws124{word-spacing:-1.147699px;}
.ws42{word-spacing:-1.129924px;}
.wsd5{word-spacing:-1.123781px;}
.ws40{word-spacing:-1.068711px;}
.ws41{word-spacing:-1.063331px;}
.wse7{word-spacing:-1.004230px;}
.ws15f{word-spacing:-0.932506px;}
.wsc3{word-spacing:-0.860774px;}
.ws7e{word-spacing:-0.789043px;}
.ws36{word-spacing:-0.772357px;}
.ws38{word-spacing:-0.707100px;}
.ws92{word-spacing:-0.573850px;}
.ws157{word-spacing:-0.502118px;}
.wsa0{word-spacing:-0.358656px;}
.wsb1{word-spacing:-0.286925px;}
.wsc{word-spacing:-0.278748px;}
.ws5{word-spacing:-0.259524px;}
.ws29{word-spacing:-0.232200px;}
.ws13{word-spacing:-0.223200px;}
.ws28{word-spacing:-0.210600px;}
.ws1b{word-spacing:-0.208800px;}
.ws2a{word-spacing:-0.205200px;}
.ws2c{word-spacing:-0.199800px;}
.ws17{word-spacing:-0.194400px;}
.ws27{word-spacing:-0.189000px;}
.ws1a{word-spacing:-0.180000px;}
.ws16{word-spacing:-0.172800px;}
.ws101{word-spacing:-0.167372px;}
.ws18{word-spacing:-0.165600px;}
.ws21{word-spacing:-0.162000px;}
.ws14{word-spacing:-0.151200px;}
.ws25{word-spacing:-0.145800px;}
.ws16e{word-spacing:-0.143462px;}
.ws26{word-spacing:-0.140400px;}
.ws1d{word-spacing:-0.115200px;}
.ws1f{word-spacing:-0.108000px;}
.ws20{word-spacing:-0.102600px;}
.ws2b{word-spacing:-0.091800px;}
.ws1c{word-spacing:-0.079200px;}
.ws23{word-spacing:-0.070200px;}
.wsc7{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.057600px;}
.ws22{word-spacing:-0.054000px;}
.ws1e{word-spacing:-0.050400px;}
.ws24{word-spacing:-0.048600px;}
.ws11f{word-spacing:-0.047821px;}
.ws19{word-spacing:-0.028800px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.032400px;}
.ws7{word-spacing:0.043200px;}
.ws9{word-spacing:0.064800px;}
.ws2{word-spacing:0.066060px;}
.ws8{word-spacing:0.086400px;}
.wsa{word-spacing:0.108000px;}
.ws12{word-spacing:0.115200px;}
.ws4{word-spacing:0.115344px;}
.ws11{word-spacing:0.122400px;}
.wsb{word-spacing:0.144180px;}
.ws6{word-spacing:0.331200px;}
.ws98{word-spacing:0.358656px;}
.ws105{word-spacing:0.370609px;}
.ws147{word-spacing:0.430387px;}
.wsdb{word-spacing:0.502118px;}
.wsb4{word-spacing:0.573850px;}
.ws6f{word-spacing:0.645581px;}
.ws5c{word-spacing:0.717312px;}
.wsb7{word-spacing:0.848814px;}
.wsa9{word-spacing:0.860774px;}
.wsa2{word-spacing:1.004237px;}
.ws9d{word-spacing:1.075968px;}
.wsda{word-spacing:1.147699px;}
.ws156{word-spacing:1.291162px;}
.wsb0{word-spacing:1.362893px;}
.wsd4{word-spacing:1.386794px;}
.ws120{word-spacing:1.434624px;}
.wscd{word-spacing:1.506355px;}
.ws8a{word-spacing:1.578086px;}
.ws148{word-spacing:1.649818px;}
.ws152{word-spacing:1.721549px;}
.ws95{word-spacing:1.793280px;}
.wsaf{word-spacing:1.865011px;}
.wsb8{word-spacing:1.924774px;}
.ws6a{word-spacing:1.936742px;}
.ws77{word-spacing:2.008474px;}
.ws12b{word-spacing:2.080205px;}
.ws74{word-spacing:2.151936px;}
.ws87{word-spacing:2.295398px;}
.wsac{word-spacing:2.367130px;}
.ws99{word-spacing:2.438861px;}
.ws14a{word-spacing:2.468456px;}
.ws151{word-spacing:2.481889px;}
.wsc0{word-spacing:2.510592px;}
.ws149{word-spacing:2.514168px;}
.wsf5{word-spacing:2.522530px;}
.ws150{word-spacing:2.529710px;}
.wsa4{word-spacing:2.582323px;}
.ws134{word-spacing:2.640981px;}
.ws163{word-spacing:2.686843px;}
.ws164{word-spacing:2.736599px;}
.ws11e{word-spacing:2.816633px;}
.ws7d{word-spacing:2.869248px;}
.wsd0{word-spacing:2.940979px;}
.ws153{word-spacing:3.012710px;}
.ws158{word-spacing:3.031660px;}
.ws106{word-spacing:3.084421px;}
.ws130{word-spacing:3.084442px;}
.ws1ad{word-spacing:3.098788px;}
.ws16f{word-spacing:3.156173px;}
.wsb6{word-spacing:3.180062px;}
.wsa7{word-spacing:3.299613px;}
.ws34{word-spacing:3.351245px;}
.wsba{word-spacing:3.359389px;}
.ws159{word-spacing:3.508866px;}
.ws16d{word-spacing:3.514829px;}
.wse1{word-spacing:3.538716px;}
.ws112{word-spacing:3.550694px;}
.ws78{word-spacing:3.586560px;}
.ws3a{word-spacing:3.613061px;}
.ws3e{word-spacing:3.613454px;}
.ws1b0{word-spacing:3.629464px;}
.wsa8{word-spacing:3.658267px;}
.wsae{word-spacing:3.658291px;}
.ws3c{word-spacing:3.678515px;}
.ws182{word-spacing:3.730022px;}
.wsf4{word-spacing:3.777818px;}
.wsd9{word-spacing:3.801728px;}
.ws108{word-spacing:3.801754px;}
.wsbb{word-spacing:3.837259px;}
.wsbd{word-spacing:3.837594px;}
.wscb{word-spacing:3.861504px;}
.ws63{word-spacing:3.873485px;}
.wsa1{word-spacing:3.945216px;}
.wsf8{word-spacing:4.016947px;}
.ws114{word-spacing:4.034880px;}
.ws35{word-spacing:4.071239px;}
.ws5f{word-spacing:4.088678px;}
.wsff{word-spacing:4.136472px;}
.ws171{word-spacing:4.160410px;}
.ws3b{word-spacing:4.162874px;}
.wse8{word-spacing:4.196247px;}
.wsb3{word-spacing:4.232141px;}
.ws9f{word-spacing:4.303872px;}
.wsf1{word-spacing:4.315798px;}
.wsf3{word-spacing:4.375574px;}
.ws32{word-spacing:4.398509px;}
.ws69{word-spacing:4.447334px;}
.wsb5{word-spacing:4.483200px;}
.ws94{word-spacing:4.519066px;}
.ws104{word-spacing:4.554901px;}
.wseb{word-spacing:4.578811px;}
.ws73{word-spacing:4.662528px;}
.wse9{word-spacing:4.674452px;}
.ws10f{word-spacing:4.734259px;}
.wsfe{word-spacing:4.794003px;}
.ws121{word-spacing:4.805990px;}
.ws184{word-spacing:4.877722px;}
.ws90{word-spacing:4.949453px;}
.wsf2{word-spacing:4.997240px;}
.ws170{word-spacing:5.021184px;}
.ws2e{word-spacing:5.118241px;}
.wsaa{word-spacing:5.164646px;}
.ws9b{word-spacing:5.236378px;}
.ws12f{word-spacing:5.308109px;}
.ws8e{word-spacing:5.379825px;}
.ws45{word-spacing:5.442000px;}
.ws5d{word-spacing:5.451571px;}
.ws44{word-spacing:5.502000px;}
.ws93{word-spacing:5.523302px;}
.ws72{word-spacing:5.595034px;}
.ws8c{word-spacing:5.666765px;}
.wsf0{word-spacing:5.738496px;}
.ws67{word-spacing:5.810227px;}
.ws6b{word-spacing:6.025421px;}
.ws53{word-spacing:6.036000px;}
.wsde{word-spacing:6.049291px;}
.wsd1{word-spacing:6.228618px;}
.ws132{word-spacing:6.240614px;}
.wse0{word-spacing:6.288393px;}
.ws71{word-spacing:6.312346px;}
.ws59{word-spacing:6.336000px;}
.ws8d{word-spacing:6.455775px;}
.ws118{word-spacing:6.455808px;}
.ws146{word-spacing:6.527539px;}
.ws2d{word-spacing:6.558229px;}
.wsfb{word-spacing:6.599270px;}
.wsdf{word-spacing:6.611181px;}
.ws16c{word-spacing:6.671002px;}
.wse3{word-spacing:6.742733px;}
.ws31{word-spacing:6.951215px;}
.ws6e{word-spacing:6.957926px;}
.wsc6{word-spacing:7.005700px;}
.ws85{word-spacing:7.029658px;}
.ws100{word-spacing:7.065476px;}
.ws12e{word-spacing:7.101389px;}
.wsd2{word-spacing:7.149162px;}
.wsf9{word-spacing:7.173120px;}
.wsc8{word-spacing:7.185027px;}
.ws6d{word-spacing:7.244851px;}
.ws109{word-spacing:7.316582px;}
.wsc1{word-spacing:7.388314px;}
.wsb9{word-spacing:7.424130px;}
.wsad{word-spacing:7.460045px;}
.wsfc{word-spacing:7.483905px;}
.ws65{word-spacing:7.531776px;}
.wsc4{word-spacing:7.543681px;}
.wsc2{word-spacing:7.603507px;}
.ws161{word-spacing:7.663232px;}
.ws15e{word-spacing:7.675238px;}
.ws64{word-spacing:7.746970px;}
.wsed{word-spacing:7.806693px;}
.ws111{word-spacing:7.818701px;}
.ws56{word-spacing:7.890000px;}
.ws7c{word-spacing:7.890432px;}
.ws57{word-spacing:7.950000px;}
.wsd6{word-spacing:7.962110px;}
.ws5b{word-spacing:7.962163px;}
.ws37{word-spacing:7.998217px;}
.ws144{word-spacing:8.033894px;}
.ws39{word-spacing:8.129060px;}
.ws102{word-spacing:8.141437px;}
.ws187{word-spacing:8.177357px;}
.ws3d{word-spacing:8.189789px;}
.wsa5{word-spacing:8.201212px;}
.ws9e{word-spacing:8.249088px;}
.ws58{word-spacing:8.250000px;}
.ws55{word-spacing:8.310000px;}
.ws160{word-spacing:8.320819px;}
.ws52{word-spacing:8.370000px;}
.wsfa{word-spacing:8.392550px;}
.ws4a{word-spacing:8.430000px;}
.ws13b{word-spacing:8.459464px;}
.ws89{word-spacing:8.464282px;}
.wsbc{word-spacing:8.521434px;}
.ws86{word-spacing:8.536013px;}
.ws9c{word-spacing:8.607744px;}
.wsf6{word-spacing:8.619642px;}
.wsc5{word-spacing:8.643552px;}
.wscc{word-spacing:8.679475px;}
.ws70{word-spacing:8.751206px;}
.wsd8{word-spacing:8.763103px;}
.ws17b{word-spacing:8.822938px;}
.ws83{word-spacing:8.894669px;}
.ws4c{word-spacing:8.904000px;}
.ws181{word-spacing:8.966400px;}
.wsc9{word-spacing:8.978295px;}
.ws2f{word-spacing:8.980420px;}
.ws88{word-spacing:9.038131px;}
.ws82{word-spacing:9.109862px;}
.ws66{word-spacing:9.181594px;}
.wsfd{word-spacing:9.277173px;}
.ws84{word-spacing:9.325056px;}
.wsca{word-spacing:9.360859px;}
.wsec{word-spacing:9.420635px;}
.wsef{word-spacing:9.468518px;}
.ws173{word-spacing:9.540250px;}
.wse4{word-spacing:9.570801px;}
.wse6{word-spacing:9.576051px;}
.ws79{word-spacing:9.611981px;}
.ws62{word-spacing:9.683712px;}
.ws33{word-spacing:9.700414px;}
.ws4d{word-spacing:9.744000px;}
.ws80{word-spacing:9.755443px;}
.wscf{word-spacing:9.827174px;}
.wsa6{word-spacing:9.934705px;}
.wsab{word-spacing:9.970637px;}
.ws6c{word-spacing:10.042368px;}
.ws133{word-spacing:10.114099px;}
.ws8b{word-spacing:10.257562px;}
.ws61{word-spacing:10.329293px;}
.ws10b{word-spacing:10.401024px;}
.ws68{word-spacing:10.472755px;}
.ws176{word-spacing:10.544486px;}
.ws110{word-spacing:10.687949px;}
.ws17f{word-spacing:10.759680px;}
.ws30{word-spacing:10.812804px;}
.ws12a{word-spacing:10.831411px;}
.ws1b3{word-spacing:10.888393px;}
.ws122{word-spacing:10.974874px;}
.wse5{word-spacing:11.034576px;}
.ws141{word-spacing:11.118336px;}
.ws7f{word-spacing:11.190067px;}
.ws48{word-spacing:11.238000px;}
.ws47{word-spacing:11.298000px;}
.wsce{word-spacing:11.333530px;}
.ws17c{word-spacing:11.405261px;}
.ws7b{word-spacing:11.476992px;}
.ws188{word-spacing:11.602460px;}
.ws103{word-spacing:11.608422px;}
.ws17e{word-spacing:11.609868px;}
.ws172{word-spacing:11.611995px;}
.ws17a{word-spacing:11.616275px;}
.ws186{word-spacing:11.624763px;}
.ws177{word-spacing:11.624794px;}
.ws183{word-spacing:11.656072px;}
.ws9a{word-spacing:11.692186px;}
.ws75{word-spacing:11.763917px;}
.ws128{word-spacing:11.835648px;}
.ws145{word-spacing:12.122573px;}
.wsd7{word-spacing:12.289863px;}
.ws174{word-spacing:12.337766px;}
.wsa3{word-spacing:12.409498px;}
.ws49{word-spacing:12.492000px;}
.ws131{word-spacing:12.624691px;}
.ws10c{word-spacing:12.768154px;}
.ws142{word-spacing:12.911616px;}
.ws54{word-spacing:12.912000px;}
.ws50{word-spacing:13.092000px;}
.ws4e{word-spacing:13.152000px;}
.ws185{word-spacing:13.198541px;}
.ws178{word-spacing:13.413734px;}
.ws180{word-spacing:13.485466px;}
.ws76{word-spacing:13.557197px;}
.ws81{word-spacing:13.915853px;}
.ws10a{word-spacing:14.131046px;}
.ws12c{word-spacing:14.489702px;}
.ws7a{word-spacing:14.633165px;}
.ws51{word-spacing:14.826000px;}
.ws127{word-spacing:14.864959px;}
.ws10e{word-spacing:14.920090px;}
.ws17d{word-spacing:14.991821px;}
.ws162{word-spacing:15.493939px;}
.ws46{word-spacing:15.540000px;}
.ws179{word-spacing:15.924326px;}
.wsbe{word-spacing:18.482616px;}
.wsbf{word-spacing:18.505553px;}
.wsea{word-spacing:18.510600px;}
.wsf7{word-spacing:18.511077px;}
.ws4b{word-spacing:19.188000px;}
.ws129{word-spacing:32.484267px;}
.ws4f{word-spacing:33.354000px;}
.ws1a3{word-spacing:41.776251px;}
.ws1af{word-spacing:42.275999px;}
.ws166{word-spacing:44.780712px;}
.ws1aa{word-spacing:45.161964px;}
.ws1a4{word-spacing:45.219348px;}
.ws14d{word-spacing:48.592007px;}
.ws138{word-spacing:51.988194px;}
.ws168{word-spacing:64.932033px;}
.ws167{word-spacing:71.848165px;}
.ws136{word-spacing:71.991177px;}
.ws1b1{word-spacing:74.157213px;}
.ws1a6{word-spacing:80.970179px;}
.ws5a{word-spacing:83.925075px;}
.ws1a5{word-spacing:85.790515px;}
.ws1b8{word-spacing:88.384713px;}
.ws14c{word-spacing:88.407282px;}
.ws1a9{word-spacing:93.422715px;}
.ws137{word-spacing:94.586234px;}
.ws169{word-spacing:98.865861px;}
.ws1b6{word-spacing:102.612213px;}
.ws1a7{word-spacing:110.752973px;}
.ws1b2{word-spacing:115.213712px;}
.ws13f{word-spacing:117.271007px;}
.ws139{word-spacing:121.142762px;}
.ws13d{word-spacing:125.648520px;}
.ws1a8{word-spacing:127.738921px;}
.ws15a{word-spacing:129.743835px;}
.ws117{word-spacing:133.893458px;}
.ws14e{word-spacing:135.627925px;}
.ws1b5{word-spacing:135.770998px;}
.ws16a{word-spacing:147.676838px;}
.ws11c{word-spacing:149.710188px;}
.ws1b4{word-spacing:149.998497px;}
.ws14f{word-spacing:158.026874px;}
.ws165{word-spacing:158.473965px;}
.ws1ab{word-spacing:159.128494px;}
.ws1b7{word-spacing:159.464140px;}
.ws11d{word-spacing:167.269985px;}
.ws14b{word-spacing:167.992121px;}
.ws13a{word-spacing:169.071670px;}
.ws15b{word-spacing:169.436128px;}
.ws11b{word-spacing:172.563748px;}
.ws135{word-spacing:179.733407px;}
.ws119{word-spacing:183.086715px;}
.ws116{word-spacing:198.903444px;}
.ws1ac{word-spacing:201.306440px;}
.ws1b9{word-spacing:203.714568px;}
.ws13c{word-spacing:205.652722px;}
.ws113{word-spacing:214.655616px;}
.ws1ba{word-spacing:246.338996px;}
.ws15c{word-spacing:254.940179px;}
.ws140{word-spacing:276.582951px;}
.ws15d{word-spacing:282.449689px;}
.ws13e{word-spacing:296.341264px;}
.ws11a{word-spacing:522.225362px;}
.ws115{word-spacing:538.031162px;}
._a6{margin-left:-32.492704px;}
._f{margin-left:-15.320534px;}
._a8{margin-left:-14.286377px;}
._a9{margin-left:-12.879003px;}
._aa{margin-left:-11.686123px;}
._ab{margin-left:-7.842397px;}
._1c{margin-left:-6.518779px;}
._e{margin-left:-5.426558px;}
._a{margin-left:-3.665359px;}
._3{margin-left:-2.423359px;}
._1{margin-left:-1.177200px;}
._0{width:1.044000px;}
._8{width:2.423359px;}
._10{width:3.665359px;}
._b1{width:5.344779px;}
._ad{width:6.696914px;}
._62{width:7.703806px;}
._63{width:8.757275px;}
._ae{width:10.491389px;}
._af{width:12.392702px;}
._b0{width:13.448692px;}
._8b{width:14.704798px;}
._b{width:16.362986px;}
._28{width:17.729152px;}
._13{width:19.756545px;}
._11{width:21.406901px;}
._20{width:22.497833px;}
._2{width:24.487119px;}
._c2{width:25.552566px;}
._7{width:26.575558px;}
._c{width:27.886405px;}
._d{width:29.103131px;}
._5{width:30.634894px;}
._12{width:32.597933px;}
._19{width:33.641933px;}
._24{width:35.148053px;}
._1b{width:36.327955px;}
._27{width:37.819242px;}
._6{width:39.014054px;}
._18{width:40.311432px;}
._26{width:41.581421px;}
._15{width:42.765794px;}
._25{width:44.146354px;}
._4{width:45.162802px;}
._16{width:46.226861px;}
._9{width:47.849680px;}
._17{width:49.566259px;}
._14{width:50.985381px;}
._67{width:52.555441px;}
._1e{width:53.639436px;}
._1a{width:54.762234px;}
._68{width:55.878605px;}
._23{width:57.098035px;}
._bf{width:58.424660px;}
._33{width:59.880592px;}
._1f{width:61.473638px;}
._1d{width:62.590334px;}
._29{width:64.757772px;}
._b9{width:66.052890px;}
._71{width:69.175992px;}
._66{width:70.836256px;}
._7c{width:72.088048px;}
._6a{width:73.650648px;}
._bb{width:75.454452px;}
._3a{width:76.686254px;}
._35{width:78.542051px;}
._94{width:79.842326px;}
._4a{width:83.631055px;}
._93{width:84.768204px;}
._9b{width:87.179247px;}
._be{width:88.946688px;}
._c5{width:90.741149px;}
._5b{width:92.825580px;}
._22{width:96.836850px;}
._99{width:98.148912px;}
._69{width:100.529387px;}
._6c{width:103.698797px;}
._74{width:105.686472px;}
._34{width:107.299396px;}
._ba{width:109.956354px;}
._2a{width:111.022865px;}
._38{width:112.368929px;}
._95{width:113.581767px;}
._21{width:116.203950px;}
._46{width:118.208339px;}
._2f{width:120.419247px;}
._bc{width:122.306744px;}
._37{width:123.685928px;}
._39{width:124.716407px;}
._6b{width:127.445451px;}
._41{width:129.041040px;}
._8d{width:131.259665px;}
._c6{width:132.629342px;}
._65{width:133.873794px;}
._36{width:136.352854px;}
._9d{width:137.758713px;}
._89{width:139.239184px;}
._64{width:142.097859px;}
._61{width:143.437364px;}
._5c{width:145.107216px;}
._8c{width:146.286480px;}
._5e{width:148.266703px;}
._8e{width:150.027183px;}
._60{width:152.248933px;}
._45{width:153.274693px;}
._c3{width:154.321698px;}
._5d{width:155.475510px;}
._75{width:157.066919px;}
._4d{width:159.385404px;}
._b4{width:160.606157px;}
._7b{width:161.866694px;}
._49{width:163.793139px;}
._c4{width:165.738778px;}
._44{width:168.748791px;}
._86{width:170.148979px;}
._72{width:171.346671px;}
._4c{width:173.179862px;}
._50{width:174.255817px;}
._78{width:175.693814px;}
._9c{width:177.113293px;}
._7a{width:178.588746px;}
._82{width:180.105839px;}
._58{width:182.224996px;}
._c0{width:183.350096px;}
._6e{width:184.968790px;}
._59{width:186.463709px;}
._48{width:187.705256px;}
._a4{width:188.808725px;}
._6d{width:190.025374px;}
._4b{width:191.471099px;}
._54{width:192.693775px;}
._77{width:194.185178px;}
._73{width:195.419406px;}
._3e{width:196.850874px;}
._56{width:198.220272px;}
._98{width:200.269296px;}
._a1{width:201.662474px;}
._3b{width:203.306605px;}
._c7{width:205.600732px;}
._96{width:206.886890px;}
._42{width:207.948911px;}
._43{width:209.077636px;}
._76{width:210.744901px;}
._9a{width:211.893520px;}
._80{width:222.800979px;}
._8a{width:224.218056px;}
._47{width:226.048383px;}
._88{width:229.287120px;}
._c1{width:231.679334px;}
._c8{width:233.621353px;}
._7f{width:237.116638px;}
._52{width:238.372959px;}
._5f{width:239.889078px;}
._9e{width:243.114605px;}
._87{width:245.135420px;}
._53{width:246.149180px;}
._ca{width:247.964996px;}
._a5{width:249.572150px;}
._51{width:253.191795px;}
._70{width:255.119464px;}
._8f{width:256.512151px;}
._7e{width:259.187844px;}
._5a{width:261.715752px;}
._57{width:262.845954px;}
._31{width:266.826829px;}
._6f{width:269.015955px;}
._4f{width:270.309262px;}
._c9{width:271.425853px;}
._40{width:272.950243px;}
._84{width:275.004245px;}
._4e{width:276.598801px;}
._90{width:277.677631px;}
._83{width:280.901112px;}
._2d{width:282.627229px;}
._91{width:283.965519px;}
._2c{width:285.414951px;}
._a3{width:286.530191px;}
._3f{width:287.817986px;}
._30{width:290.708713px;}
._3d{width:292.904319px;}
._55{width:294.111650px;}
._97{width:298.126689px;}
._a0{width:299.334183px;}
._2e{width:300.646979px;}
._a2{width:304.866911px;}
._9f{width:306.368053px;}
._7d{width:308.968982px;}
._3c{width:311.195556px;}
._92{width:312.198703px;}
._32{width:316.463708px;}
._79{width:336.567185px;}
._2b{width:339.317268px;}
._b8{width:353.563085px;}
._85{width:363.914361px;}
._b6{width:371.137229px;}
._b3{width:388.711373px;}
._b2{width:406.213786px;}
._81{width:413.466323px;}
._b5{width:423.787930px;}
._b7{width:497.016725px;}
._a7{width:615.294813px;}
._bd{width:681.249232px;}
._ac{width:849.584877px;}
.fcb{color:rgb(84,141,212);}
.fc9{color:rgb(54,95,145);}
.fc8{color:transparent;}
.fc7{color:rgb(255,102,0);}
.fc6{color:rgb(30,45,83);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(35,81,163);}
.fc3{color:rgb(52,49,51);}
.fc2{color:rgb(67,65,66);}
.fca{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:6.120000px;}
.fs1b{font-size:29.804144px;}
.fs18{font-size:31.933269px;}
.fs1c{font-size:37.239817px;}
.fs19{font-size:39.900126px;}
.fs12{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.120000px;}
.fs16{font-size:42.560434px;}
.fs17{font-size:45.369704px;}
.fs1e{font-size:45.712142px;}
.fs21{font-size:46.389793px;}
.fs11{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs15{font-size:48.907049px;}
.fs1d{font-size:49.653090px;}
.fs20{font-size:49.756347px;}
.fs1a{font-size:53.200168px;}
.fsb{font-size:54.000000px;}
.fs1f{font-size:56.141858px;}
.fs27{font-size:57.384960px;}
.fs28{font-size:58.071428px;}
.fs22{font-size:58.995715px;}
.fs13{font-size:59.775600px;}
.fsd{font-size:59.778000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs14{font-size:64.558080px;}
.fsc{font-size:65.454000px;}
.fs24{font-size:66.271133px;}
.fs23{font-size:67.063505px;}
.fsf{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs26{font-size:72.033840px;}
.fs10{font-size:86.077200px;}
.fs7{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fse{font-size:103.292400px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs25{font-size:156.313433px;}
.y0{bottom:0.000000px;}
.y30c{bottom:4.502115px;}
.y395{bottom:4.547136px;}
.y2f{bottom:4.860000px;}
.y35f{bottom:5.222453px;}
.y364{bottom:5.762707px;}
.y38f{bottom:5.942792px;}
.y27{bottom:6.480000px;}
.y370{bottom:6.483046px;}
.y37d{bottom:6.663130px;}
.y34e{bottom:7.383469px;}
.y39d{bottom:7.743638px;}
.y374{bottom:7.923722px;}
.y368{bottom:8.644061px;}
.y39e{bottom:9.904653px;}
.y36d{bottom:10.129759px;}
.y388{bottom:10.444907px;}
.y392{bottom:10.624991px;}
.y389{bottom:12.605922px;}
.y347{bottom:13.326260px;}
.y352{bottom:13.866514px;}
.y342{bottom:14.046599px;}
.y355{bottom:14.586853px;}
.y398{bottom:14.766937px;}
.y35b{bottom:15.307191px;}
.y358{bottom:15.847445px;}
.y353{bottom:16.027529px;}
.y356{bottom:16.747868px;}
.y383{bottom:17.288122px;}
.y35c{bottom:17.468206px;}
.y34a{bottom:17.513227px;}
.y359{bottom:18.008460px;}
.y1d6{bottom:19.372694px;}
.y1cf{bottom:20.756625px;}
.y30b{bottom:24.671590px;}
.y394{bottom:24.716611px;}
.y1c6{bottom:25.037615px;}
.y35e{bottom:25.421943px;}
.y363{bottom:25.932182px;}
.y38e{bottom:26.112267px;}
.y36f{bottom:26.652521px;}
.y396{bottom:26.697542px;}
.y362{bottom:26.832605px;}
.y360{bottom:27.402873px;}
.y34d{bottom:27.552944px;}
.y365{bottom:28.093198px;}
.y390{bottom:28.273282px;}
.y367{bottom:28.813536px;}
.y350{bottom:29.533874px;}
.y375{bottom:30.254213px;}
.y36c{bottom:30.299234px;}
.y380{bottom:30.794467px;}
.y369{bottom:30.974551px;}
.y341{bottom:34.216074px;}
.y346{bottom:35.476666px;}
.y378{bottom:36.197005px;}
.y1c5{bottom:36.748758px;}
.y37b{bottom:36.917343px;}
.y379{bottom:38.358020px;}
.y34c{bottom:47.722419px;}
.y34f{bottom:49.703350px;}
.y1d4{bottom:53.632097px;}
.y28f{bottom:56.987903px;}
.y1cd{bottom:57.463424px;}
.y345{bottom:57.807157px;}
.y348{bottom:59.968172px;}
.y2df{bottom:63.494829px;}
.y1d3{bottom:63.863829px;}
.y1c4{bottom:63.955340px;}
.y5{bottom:66.525004px;}
.y1cc{bottom:68.426082px;}
.y28e{bottom:76.076870px;}
.y1d1{bottom:76.485844px;}
.y68{bottom:81.900000px;}
.y1ca{bottom:81.949779px;}
.y288{bottom:84.837855px;}
.y4{bottom:97.125005px;}
.y287{bottom:100.973435px;}
.ya7{bottom:108.000000px;}
.y286{bottom:117.256084px;}
.y67{bottom:120.956400px;}
.y377{bottom:121.818359px;}
.y285{bottom:133.517724px;}
.y21{bottom:139.264499px;}
.y33f{bottom:142.167919px;}
.y1c7{bottom:148.868021px;}
.y284{bottom:149.653304px;}
.y17d{bottom:152.832000px;}
.y15c{bottom:156.271500px;}
.y251{bottom:156.637500px;}
.ya6{bottom:156.910500px;}
.y11f{bottom:157.845000px;}
.y1f8{bottom:158.821500px;}
.y231{bottom:164.310000px;}
.y33e{bottom:165.428846px;}
.y283{bottom:165.914943px;}
.y3d7{bottom:169.365900px;}
.ye7{bottom:169.381500px;}
.y13e{bottom:172.548000px;}
.y211{bottom:174.042000px;}
.y376{bottom:176.594091px;}
.y1f7{bottom:176.755500px;}
.y26f{bottom:178.006500px;}
.y250{bottom:178.306500px;}
.y15b{bottom:178.525500px;}
.y17c{bottom:179.722500px;}
.y39f{bottom:179.835614px;}
.y11e{bottom:180.099000px;}
.y66{bottom:181.256850px;}
.y282{bottom:182.176583px;}
.ya5{bottom:183.801000px;}
.y3d6{bottom:186.701100px;}
.y1d2{bottom:186.759340px;}
.y325{bottom:187.219083px;}
.y33d{bottom:188.479675px;}
.y230{bottom:191.200500px;}
.ye6{bottom:192.738000px;}
.y13d{bottom:194.802000px;}
.y18{bottom:196.933500px;}
.y1c3{bottom:197.179500px;}
.y210{bottom:197.397000px;}
.y281{bottom:198.312163px;}
.y65{bottom:199.346850px;}
.y1cb{bottom:200.100906px;}
.y1f6{bottom:200.110500px;}
.y15a{bottom:200.779500px;}
.y11d{bottom:202.354500px;}
.y3d5{bottom:204.036300px;}
.ye5{bottom:205.248000px;}
.yff{bottom:205.858500px;}
.y39c{bottom:206.127966px;}
.y1d0{bottom:206.395500px;}
.y17b{bottom:206.613000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y324{bottom:210.449996px;}
.ya4{bottom:210.693000px;}
.y373{bottom:210.990250px;}
.y33c{bottom:211.710588px;}
.y280{bottom:214.573802px;}
.y24f{bottom:214.918500px;}
.y3f2{bottom:216.304500px;}
.y64{bottom:216.447300px;}
.y13c{bottom:217.057500px;}
.y22f{bottom:218.091000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y159{bottom:223.035000px;}
.ye4{bottom:223.180500px;}
.y304{bottom:223.596172px;}
.y20f{bottom:224.154000px;}
.y3d4{bottom:224.240700px;}
.y11c{bottom:224.608500px;}
.y1f5{bottom:226.867500px;}
.yc6{bottom:228.451500px;}
.yfe{bottom:229.213500px;}
.y2c3{bottom:230.439387px;}
.y3f1{bottom:230.500500px;}
.y27f{bottom:230.835442px;}
.y84{bottom:231.177000px;}
.y39b{bottom:232.420317px;}
.y17a{bottom:233.505000px;}
.y323{bottom:233.680910px;}
.y63{bottom:234.537300px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y33b{bottom:234.941502px;}
.y24e{bottom:236.587500px;}
.ya3{bottom:237.583500px;}
.y13b{bottom:239.311500px;}
.y3d3{bottom:241.575900px;}
.y303{bottom:243.765647px;}
.y27e{bottom:243.819541px;}
.y22e{bottom:244.983000px;}
.ye3{bottom:246.537000px;}
.y11b{bottom:246.862500px;}
.yfd{bottom:247.146000px;}
.y83{bottom:249.109500px;}
.y2c2{bottom:250.608862px;}
.y20e{bottom:251.044500px;}
.y62{bottom:252.627300px;}
.y1f4{bottom:253.758000px;}
.y26e{bottom:254.346000px;}
.yc5{bottom:255.342000px;}
.y322{bottom:256.731738px;}
.y372{bottom:257.632161px;}
.y33a{bottom:257.992330px;}
.y24d{bottom:258.256500px;}
.y3f0{bottom:259.463964px;}
.yfc{bottom:259.656000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y179{bottom:260.395500px;}
.y302{bottom:263.935122px;}
.ya2{bottom:264.474000px;}
.y39a{bottom:266.816476px;}
.y82{bottom:267.042000px;}
.y32{bottom:268.830000px;}
.y2c1{bottom:270.778337px;}
.y61{bottom:270.807750px;}
.y22d{bottom:271.873500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ye2{bottom:273.292500px;}
.y26d{bottom:276.015000px;}
.y3d2{bottom:276.245100px;}
.y3ef{bottom:277.006536px;}
.y20d{bottom:277.935000px;}
.y321{bottom:279.962652px;}
.y1f3{bottom:280.648500px;}
.y45{bottom:280.710000px;}
.y339{bottom:281.223244px;}
.yc4{bottom:282.232500px;}
.yfb{bottom:283.012500px;}
.y301{bottom:284.104598px;}
.y158{bottom:284.134500px;}
.y81{bottom:284.974500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y178{bottom:287.286000px;}
.y60{bottom:288.897750px;}
.y2c0{bottom:290.947812px;}
.ya1{bottom:291.364500px;}
.y31{bottom:291.780000px;}
.y3d1{bottom:293.580300px;}
.y24c{bottom:294.868500px;}
.yfa{bottom:295.522500px;}
.y26c{bottom:297.684000px;}
.y22c{bottom:298.764000px;}
.y19a{bottom:300.072000px;}
.ye1{bottom:300.183000px;}
.y13a{bottom:300.412500px;}
.y80{bottom:302.907000px;}
.y320{bottom:303.193565px;}
.y44{bottom:303.660000px;}
.y300{bottom:304.274073px;}
.y338{bottom:304.454157px;}
.y20c{bottom:304.825500px;}
.y371{bottom:304.994411px;}
.y5f{bottom:305.998200px;}
.y1f2{bottom:307.539000px;}
.y11a{bottom:307.963500px;}
.yc3{bottom:309.123000px;}
.y399{bottom:310.036780px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y157{bottom:311.026500px;}
.y2bf{bottom:311.117287px;}
.y3ee{bottom:312.091681px;}
.y2dd{bottom:312.557964px;}
.y177{bottom:314.176500px;}
.y30{bottom:314.730000px;}
.y24b{bottom:316.537500px;}
.y3d0{bottom:317.822700px;}
.ya0{bottom:318.256500px;}
.yf9{bottom:318.877500px;}
.y7f{bottom:320.839500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y5e{bottom:323.098650px;}
.y2ff{bottom:324.443548px;}
.y22b{bottom:325.654500px;}
.y31f{bottom:326.244394px;}
.y43{bottom:326.520000px;}
.y199{bottom:326.964000px;}
.ye0{bottom:327.073500px;}
.y139{bottom:327.303000px;}
.y337{bottom:327.685071px;}
.y3ed{bottom:329.634253px;}
.y2be{bottom:331.286763px;}
.y20b{bottom:331.717500px;}
.y2dc{bottom:332.727440px;}
.y2e{bottom:332.730000px;}
.y1d5{bottom:333.468431px;}
.y26b{bottom:334.296000px;}
.y119{bottom:334.854000px;}
.yc2{bottom:336.013500px;}
.y2d{bottom:337.590000px;}
.y156{bottom:337.917000px;}
.y7e{bottom:338.772000px;}
.y36e{bottom:339.390570px;}
.y5d{bottom:340.199100px;}
.y176{bottom:341.068500px;}
.y42{bottom:344.610000px;}
.y2fe{bottom:344.613023px;}
.y9f{bottom:345.147000px;}
.yf8{bottom:346.630500px;}
.yf{bottom:348.133500px;}
.y41{bottom:349.470000px;}
.y31e{bottom:349.475307px;}
.y336{bottom:350.735900px;}
.y2bd{bottom:351.456238px;}
.y22a{bottom:352.545000px;}
.y2db{bottom:352.716830px;}
.y24a{bottom:353.151000px;}
.y198{bottom:353.854500px;}
.ydf{bottom:353.965500px;}
.y3ec{bottom:354.165438px;}
.y138{bottom:354.193500px;}
.y26a{bottom:355.965000px;}
.y7d{bottom:356.704500px;}
.y5c{bottom:357.209100px;}
.y397{bottom:357.218945px;}
.y1ce{bottom:357.290484px;}
.y1f1{bottom:357.676500px;}
.y20a{bottom:358.608000px;}
.y118{bottom:361.744500px;}
.yc1{bottom:362.905500px;}
.y2fd{bottom:364.602414px;}
.y155{bottom:364.807500px;}
.y175{bottom:367.959000px;}
.y3cf{bottom:369.827100px;}
.y2bc{bottom:371.445628px;}
.y1f0{bottom:371.874000px;}
.y9e{bottom:372.037500px;}
.y31d{bottom:372.706221px;}
.y2da{bottom:372.886305px;}
.yf7{bottom:373.521000px;}
.y335{bottom:373.966813px;}
.y5b{bottom:374.309550px;}
.y7c{bottom:374.637000px;}
.y249{bottom:374.820000px;}
.y229{bottom:379.437000px;}
.y197{bottom:380.745000px;}
.yde{bottom:380.856000px;}
.y1b1{bottom:381.310500px;}
.y36b{bottom:384.591804px;}
.y2fc{bottom:384.771889px;}
.y1ef{bottom:386.070000px;}
.ye{bottom:386.785499px;}
.y3ce{bottom:387.162300px;}
.y393{bottom:388.373581px;}
.y117{bottom:388.636500px;}
.yc0{bottom:389.796000px;}
.y2a3{bottom:389.994342px;}
.y2bb{bottom:391.615104px;}
.y154{bottom:391.698000px;}
.y5a{bottom:392.399550px;}
.y7b{bottom:392.569500px;}
.y269{bottom:392.578500px;}
.y2d9{bottom:393.100802px;}
.y174{bottom:394.849500px;}
.y31c{bottom:395.802071px;}
.y334{bottom:397.242747px;}
.y9d{bottom:398.928000px;}
.y1ee{bottom:400.267500px;}
.yf6{bottom:400.411500px;}
.y2fb{bottom:404.986385px;}
.y209{bottom:405.258000px;}
.y137{bottom:405.795000px;}
.y228{bottom:406.327500px;}
.y3eb{bottom:406.793155px;}
.y196{bottom:407.635500px;}
.ydd{bottom:407.746500px;}
.yd{bottom:408.044999px;}
.y1b0{bottom:408.201000px;}
.y59{bottom:410.580000px;}
.y3cd{bottom:411.404700px;}
.y248{bottom:411.432000px;}
.y2ba{bottom:411.829600px;}
.y2a2{bottom:413.090192px;}
.y2d8{bottom:413.270277px;}
.y268{bottom:414.246000px;}
.y116{bottom:415.527000px;}
.ybf{bottom:416.686500px;}
.y31b{bottom:419.032984px;}
.y208{bottom:419.454000px;}
.y333{bottom:420.293576px;}
.y36{bottom:420.930000px;}
.y173{bottom:421.740000px;}
.y3ea{bottom:424.335728px;}
.y2fa{bottom:425.155860px;}
.y9c{bottom:425.818500px;}
.yf5{bottom:427.302000px;}
.y1ed{bottom:427.492527px;}
.y58{bottom:427.590000px;}
.y136{bottom:428.050500px;}
.y36a{bottom:431.278737px;}
.y391{bottom:431.458821px;}
.y2b9{bottom:431.999075px;}
.y2d7{bottom:433.439752px;}
.y195{bottom:434.527500px;}
.ydc{bottom:434.637000px;}
.y1af{bottom:435.091500px;}
.y1ec{bottom:441.300575px;}
.y31a{bottom:442.263897px;}
.y115{bottom:442.417500px;}
.y153{bottom:443.301000px;}
.y332{bottom:443.524490px;}
.ybe{bottom:443.577000px;}
.y35{bottom:443.790000px;}
.y2a1{bottom:443.884659px;}
.y57{bottom:444.690000px;}
.y2f9{bottom:445.325336px;}
.y247{bottom:448.045500px;}
.y207{bottom:448.147032px;}
.y172{bottom:448.630500px;}
.y3e9{bottom:448.866913px;}
.y267{bottom:450.859500px;}
.y227{bottom:450.976500px;}
.y2b8{bottom:452.168550px;}
.y9b{bottom:452.710500px;}
.y27d{bottom:453.886727px;}
.y135{bottom:454.041000px;}
.yf4{bottom:454.194000px;}
.y1eb{bottom:455.109578px;}
.y38d{bottom:458.471511px;}
.y2d6{bottom:459.371934px;}
.y194{bottom:461.418000px;}
.ydb{bottom:461.529000px;}
.y56{bottom:461.700000px;}
.y1ae{bottom:461.982000px;}
.y3cc{bottom:463.409100px;}
.y206{bottom:465.105534px;}
.y319{bottom:465.314726px;}
.y2f8{bottom:465.494811px;}
.y366{bottom:465.674895px;}
.y331{bottom:466.755403px;}
.y1ea{bottom:468.918582px;}
.y152{bottom:469.291500px;}
.y246{bottom:469.713000px;}
.y27c{bottom:470.148366px;}
.ybd{bottom:470.469000px;}
.y2b7{bottom:472.338026px;}
.y266{bottom:472.528500px;}
.y2a0{bottom:474.499041px;}
.y171{bottom:475.522500px;}
.y134{bottom:476.295000px;}
.y7a{bottom:477.231000px;}
.y2d5{bottom:479.541410px;}
.y9a{bottom:479.601000px;}
.y3cb{bottom:480.744300px;}
.yf3{bottom:481.084500px;}
.y2f7{bottom:485.664286px;}
.y27b{bottom:486.410005px;}
.y193{bottom:488.308500px;}
.yda{bottom:488.419500px;}
.y318{bottom:488.545640px;}
.y1ad{bottom:488.874000px;}
.y330{bottom:489.806232px;}
.y2b6{bottom:492.507501px;}
.y114{bottom:494.019000px;}
.y1e9{bottom:496.536589px;}
.y151{bottom:496.776000px;}
.ybc{bottom:497.359500px;}
.y79{bottom:497.554500px;}
.y205{bottom:499.024887px;}
.y2d4{bottom:499.710885px;}
.y55{bottom:500.670000px;}
.y3e8{bottom:501.494630px;}
.y133{bottom:502.285500px;}
.y170{bottom:502.413000px;}
.y27a{bottom:502.545585px;}
.yc{bottom:502.864502px;}
.y38c{bottom:503.132492px;}
.y3ca{bottom:504.986700px;}
.y29f{bottom:505.113423px;}
.y2f6{bottom:505.833761px;}
.y245{bottom:506.326500px;}
.y99{bottom:506.491500px;}
.yf2{bottom:507.975000px;}
.y265{bottom:509.140500px;}
.y1e8{bottom:510.344637px;}
.y317{bottom:511.776553px;}
.y2b5{bottom:512.676976px;}
.y32f{bottom:513.037145px;}
.y192{bottom:515.199000px;}
.yd9{bottom:515.310000px;}
.y1ac{bottom:515.764500px;}
.y204{bottom:515.984563px;}
.y113{bottom:516.274500px;}
.y78{bottom:517.878000px;}
.y226{bottom:518.800500px;}
.y150{bottom:519.030000px;}
.y3e7{bottom:519.035988px;}
.y2d3{bottom:519.880360px;}
.yb{bottom:520.864502px;}
.y279{bottom:521.202350px;}
.y1e7{bottom:524.153641px;}
.ybb{bottom:524.250000px;}
.y132{bottom:524.539500px;}
.y2f5{bottom:526.003236px;}
.y244{bottom:527.995500px;}
.y16f{bottom:529.303500px;}
.y2b{bottom:530.192511px;}
.y264{bottom:530.809500px;}
.y2b4{bottom:532.846451px;}
.y98{bottom:533.382000px;}
.y316{bottom:534.827382px;}
.yf1{bottom:534.865500px;}
.y29e{bottom:535.907889px;}
.y1e6{bottom:537.962644px;}
.ya{bottom:538.864499px;}
.y203{bottom:539.700638px;}
.y14f{bottom:541.285500px;}
.yd8{bottom:542.200500px;}
.y112{bottom:542.265000px;}
.y278{bottom:542.380299px;}
.y1ab{bottom:542.655000px;}
.y3e6{bottom:543.568388px;}
.y3b8{bottom:545.629500px;}
.y225{bottom:545.691000px;}
.y2d2{bottom:545.812542px;}
.y2f4{bottom:546.172712px;}
.y38b{bottom:546.352796px;}
.y131{bottom:550.530000px;}
.yba{bottom:551.140500px;}
.y32e{bottom:554.276519px;}
.y1e5{bottom:556.691691px;}
.y9{bottom:556.864499px;}
.y3c9{bottom:556.991100px;}
.y361{bottom:557.518041px;}
.y315{bottom:558.058295px;}
.y277{bottom:558.641938px;}
.y97{bottom:560.274000px;}
.y2a{bottom:561.241674px;}
.yf0{bottom:561.757500px;}
.y191{bottom:562.513500px;}
.y14e{bottom:563.539500px;}
.y243{bottom:564.607500px;}
.y2d1{bottom:565.801933px;}
.y2f3{bottom:566.162102px;}
.y29d{bottom:566.522271px;}
.y263{bottom:567.421500px;}
.y3b7{bottom:567.895500px;}
.y111{bottom:568.255500px;}
.yd7{bottom:569.092500px;}
.y1aa{bottom:569.545500px;}
.y1e4{bottom:570.500694px;}
.y77{bottom:571.975500px;}
.y40{bottom:572.401674px;}
.y224{bottom:572.581500px;}
.y2b3{bottom:574.085825px;}
.y3c8{bottom:574.326300px;}
.y130{bottom:576.520500px;}
.y190{bottom:576.711000px;}
.yb9{bottom:578.032500px;}
.y276{bottom:579.315650px;}
.y202{bottom:579.662594px;}
.y314{bottom:581.289209px;}
.y16e{bottom:583.086000px;}
.y1e3{bottom:584.309698px;}
.y14d{bottom:585.793500px;}
.y242{bottom:586.276500px;}
.y2f2{bottom:586.331577px;}
.y96{bottom:587.164500px;}
.yef{bottom:588.648000px;}
.y262{bottom:589.090500px;}
.y3b6{bottom:589.564500px;}
.y110{bottom:590.509500px;}
.y38a{bottom:590.833692px;}
.y18f{bottom:590.907000px;}
.y2d0{bottom:591.734115px;}
.y29{bottom:592.290837px;}
.y76{bottom:592.299000px;}
.yd6{bottom:595.983000px;}
.y3e5{bottom:596.196105px;}
.y1a9{bottom:596.437500px;}
.y201{bottom:596.622270px;}
.y29c{bottom:597.136653px;}
.y3c7{bottom:598.567500px;}
.y12f{bottom:598.776000px;}
.y223{bottom:599.473500px;}
.y35d{bottom:600.738345px;}
.y275{bottom:603.046299px;}
.y3f{bottom:603.450837px;}
.y313{bottom:604.340037px;}
.yb8{bottom:604.923000px;}
.y2f1{bottom:606.501053px;}
.y1c9{bottom:606.901500px;}
.y14c{bottom:608.049000px;}
.y16d{bottom:609.976500px;}
.y3b5{bottom:611.233500px;}
.y2cf{bottom:611.903591px;}
.y75{bottom:612.622500px;}
.y10f{bottom:612.763500px;}
.y32d{bottom:613.344267px;}
.y3e4{bottom:613.737463px;}
.y95{bottom:614.055000px;}
.yee{bottom:615.538500px;}
.y26{bottom:616.860000px;}
.y1e2{bottom:617.706000px;}
.y12e{bottom:621.030000px;}
.yd5{bottom:622.873500px;}
.y241{bottom:622.888500px;}
.y1a8{bottom:623.328000px;}
.y28{bottom:623.340000px;}
.y261{bottom:625.704000px;}
.y222{bottom:626.364000px;}
.y2f0{bottom:626.700542px;}
.y274{bottom:626.871491px;}
.y1c2{bottom:627.078000px;}
.y312{bottom:627.600965px;}
.y29b{bottom:627.961134px;}
.y3d{bottom:628.020000px;}
.y18e{bottom:629.947650px;}
.y2b2{bottom:630.122149px;}
.y14b{bottom:630.303000px;}
.yb7{bottom:631.813500px;}
.y2ce{bottom:632.103080px;}
.y3b4{bottom:632.902500px;}
.y74{bottom:632.946000px;}
.y387{bottom:634.084011px;}
.y3e{bottom:634.500000px;}
.y10e{bottom:635.019000px;}
.y32c{bottom:636.605195px;}
.y16c{bottom:636.867000px;}
.y3e3{bottom:638.269862px;}
.y94{bottom:640.945500px;}
.yed{bottom:642.429000px;}
.y35a{bottom:644.528917px;}
.y240{bottom:644.557500px;}
.y8{bottom:645.510000px;}
.y2ef{bottom:646.870017px;}
.y260{bottom:647.373000px;}
.y273{bottom:649.436092px;}
.y18d{bottom:649.449750px;}
.yd4{bottom:649.764000px;}
.y1a7{bottom:650.218500px;}
.y2b1{bottom:650.291625px;}
.y3c6{bottom:650.573100px;}
.y14a{bottom:652.557000px;}
.y221{bottom:653.254500px;}
.y73{bottom:653.271000px;}
.y1e1{bottom:653.794500px;}
.y3b3{bottom:654.571500px;}
.y10d{bottom:657.273000px;}
.y2cd{bottom:658.035262px;}
.y29a{bottom:658.575516px;}
.yb6{bottom:658.704000px;}
.y32b{bottom:659.836108px;}
.y386{bottom:663.077631px;}
.y16b{bottom:663.757500px;}
.y23f{bottom:666.226500px;}
.y7{bottom:666.771000px;}
.y2ee{bottom:667.039492px;}
.y93{bottom:667.837500px;}
.y3c5{bottom:667.908300px;}
.y311{bottom:668.840338px;}
.y272{bottom:668.849211px;}
.y18c{bottom:668.950500px;}
.y25f{bottom:669.040500px;}
.yec{bottom:669.321000px;}
.y2b0{bottom:670.461100px;}
.y200{bottom:673.310625px;}
.y72{bottom:673.594500px;}
.y3b2{bottom:676.239000px;}
.yd3{bottom:676.656000px;}
.y1a6{bottom:677.109000px;}
.y2cc{bottom:678.204738px;}
.y357{bottom:678.384822px;}
.y10c{bottom:679.527000px;}
.y220{bottom:680.145000px;}
.y1e0{bottom:680.686500px;}
.y12d{bottom:682.131000px;}
.yb5{bottom:685.596000px;}
.y2ed{bottom:687.208968px;}
.y23e{bottom:687.895500px;}
.y271{bottom:688.136272px;}
.y18b{bottom:688.452600px;}
.y299{bottom:689.189898px;}
.y1ff{bottom:690.270301px;}
.y2af{bottom:690.630575px;}
.y16a{bottom:690.649500px;}
.y3e2{bottom:690.896365px;}
.y3c4{bottom:692.149500px;}
.y71{bottom:693.918000px;}
.y92{bottom:694.728000px;}
.yeb{bottom:696.211500px;}
.y3b1{bottom:697.908000px;}
.y2cb{bottom:698.374213px;}
.y32a{bottom:700.895397px;}
.yd2{bottom:703.546500px;}
.y1a5{bottom:704.001000px;}
.y25e{bottom:705.654000px;}
.y385{bottom:706.117851px;}
.y2ec{bottom:707.378443px;}
.y270{bottom:707.549392px;}
.y1df{bottom:707.577000px;}
.y18a{bottom:707.954700px;}
.y3e1{bottom:708.438937px;}
.y12c{bottom:709.021500px;}
.y3c{bottom:709.200900px;}
.y2ae{bottom:710.800050px;}
.yb4{bottom:712.486500px;}
.y354{bottom:712.780981px;}
.y149{bottom:713.658000px;}
.y70{bottom:714.241500px;}
.y3b0{bottom:719.577000px;}
.y298{bottom:719.984365px;}
.y310{bottom:721.244957px;}
.y91{bottom:721.618500px;}
.yea{bottom:723.102000px;}
.y1fe{bottom:724.188480px;}
.y2ca{bottom:724.306395px;}
.y23d{bottom:724.507500px;}
.y6{bottom:726.298500px;}
.y21f{bottom:726.795000px;}
.y25d{bottom:727.323000px;}
.y189{bottom:727.456800px;}
.y2eb{bottom:727.547918px;}
.yd1{bottom:730.437000px;}
.y1a4{bottom:730.891500px;}
.y2ad{bottom:730.969525px;}
.y3e0{bottom:732.971337px;}
.y1de{bottom:734.467500px;}
.y6f{bottom:734.565000px;}
.y12b{bottom:735.912000px;}
.yb3{bottom:739.377000px;}
.y169{bottom:739.383000px;}
.y148{bottom:740.548500px;}
.y10b{bottom:740.628000px;}
.y21e{bottom:740.992500px;}
.y1fd{bottom:741.148156px;}
.y3af{bottom:741.246000px;}
.y30f{bottom:742.134771px;}
.y3b{bottom:742.680900px;}
.y3c3{bottom:744.155100px;}
.y2c9{bottom:744.475870px;}
.y351{bottom:745.916547px;}
.y23c{bottom:746.176500px;}
.y2ea{bottom:747.717393px;}
.y1c1{bottom:748.210500px;}
.y90{bottom:748.509000px;}
.y384{bottom:749.338155px;}
.ye9{bottom:749.992500px;}
.y297{bottom:750.598747px;}
.y2ac{bottom:751.139001px;}
.y3{bottom:752.599495px;}
.y188{bottom:754.728150px;}
.y6e{bottom:754.890000px;}
.yd0{bottom:757.327500px;}
.y1a3{bottom:757.782000px;}
.y329{bottom:760.143231px;}
.y1dd{bottom:761.358000px;}
.y3c2{bottom:761.489100px;}
.y168{bottom:761.638500px;}
.y1c0{bottom:762.406500px;}
.y12a{bottom:762.804000px;}
.y3ae{bottom:762.915000px;}
.y30e{bottom:763.024584px;}
.y25c{bottom:763.935000px;}
.y2c8{bottom:764.465261px;}
.y1fc{bottom:764.865405px;}
.y25{bottom:765.090000px;}
.yb2{bottom:766.267500px;}
.y147{bottom:767.439000px;}
.y10a{bottom:767.518500px;}
.y2e9{bottom:767.706784px;}
.y21d{bottom:768.786045px;}
.y296{bottom:772.388983px;}
.y6d{bottom:775.213500px;}
.y8f{bottom:775.401000px;}
.y3a{bottom:776.250000px;}
.y1bf{bottom:776.604000px;}
.y34b{bottom:778.331775px;}
.y187{bottom:782.000850px;}
.y382{bottom:782.473721px;}
.y23b{bottom:782.790000px;}
.y328{bottom:783.374144px;}
.y21c{bottom:783.816747px;}
.y167{bottom:783.892500px;}
.y30d{bottom:783.914398px;}
.ycf{bottom:784.218000px;}
.y3ad{bottom:784.582500px;}
.y1a2{bottom:784.672500px;}
.y3df{bottom:785.597840px;}
.y25b{bottom:785.604000px;}
.y3c1{bottom:785.731500px;}
.y54{bottom:787.859850px;}
.y2e8{bottom:787.876259px;}
.y1dc{bottom:788.250000px;}
.ye8{bottom:788.466000px;}
.y129{bottom:789.694500px;}
.y1be{bottom:790.800000px;}
.y2ab{bottom:792.198289px;}
.yb1{bottom:793.158000px;}
.y146{bottom:794.331000px;}
.y109{bottom:794.410500px;}
.y6c{bottom:795.537000px;}
.y21b{bottom:798.847449px;}
.y186{bottom:801.502950px;}
.y8e{bottom:802.291500px;}
.y3de{bottom:803.140412px;}
.y3a3{bottom:804.444042px;}
.y23a{bottom:804.459000px;}
.y30a{bottom:804.804211px;}
.y1fb{bottom:804.827361px;}
.y2c7{bottom:805.884719px;}
.y3ac{bottom:806.251500px;}
.y327{bottom:806.424973px;}
.y25a{bottom:807.273000px;}
.y2e7{bottom:808.045734px;}
.y166{bottom:808.927500px;}
.y53{bottom:810.089850px;}
.yce{bottom:811.110000px;}
.y1a1{bottom:811.564500px;}
.y2aa{bottom:812.367765px;}
.y295{bottom:813.628357px;}
.y21a{bottom:813.878151px;}
.y1db{bottom:815.140500px;}
.y6b{bottom:815.860500px;}
.y381{bottom:816.149541px;}
.y128{bottom:816.585000px;}
.y1bd{bottom:818.475051px;}
.yb0{bottom:820.050000px;}
.y185{bottom:821.005050px;}
.y145{bottom:821.221500px;}
.y108{bottom:821.301000px;}
.y1fa{bottom:821.787037px;}
.y239{bottom:826.126500px;}
.y3a2{bottom:827.494871px;}
.y3dd{bottom:827.672812px;}
.y3ab{bottom:827.920500px;}
.y2e6{bottom:828.215209px;}
.y8d{bottom:829.182000px;}
.y24{bottom:830.069685px;}
.y165{bottom:831.181500px;}
.y52{bottom:832.049850px;}
.y1bc{bottom:833.249192px;}
.y6a{bottom:836.184000px;}
.y3c0{bottom:837.737100px;}
.ycd{bottom:838.000500px;}
.y1a0{bottom:838.455000px;}
.y184{bottom:840.505800px;}
.y39{bottom:841.229685px;}
.y1da{bottom:842.031000px;}
.y127{bottom:843.475500px;}
.y259{bottom:843.885000px;}
.y219{bottom:843.938514px;}
.y349{bottom:844.422823px;}
.yaf{bottom:846.940500px;}
.y326{bottom:847.709367px;}
.y1bb{bottom:848.022310px;}
.y2e5{bottom:848.429706px;}
.y3aa{bottom:849.589500px;}
.y3a1{bottom:851.671229px;}
.y2c6{bottom:853.111905px;}
.y164{bottom:853.435500px;}
.y309{bottom:853.472074px;}
.y2a9{bottom:853.652159px;}
.y51{bottom:854.009850px;}
.y3bf{bottom:855.071100px;}
.y8c{bottom:856.072500px;}
.y218{bottom:858.969216px;}
.y37f{bottom:859.414866px;}
.y183{bottom:860.007900px;}
.y1f9{bottom:861.145500px;}
.y238{bottom:862.740000px;}
.y1ba{bottom:862.796451px;}
.y107{bottom:863.695500px;}
.y294{bottom:863.736897px;}
.ycc{bottom:864.891000px;}
.y19f{bottom:865.345500px;}
.y258{bottom:865.554000px;}
.y69{bottom:866.526000px;}
.y2e4{bottom:868.599181px;}
.y1d9{bottom:868.921500px;}
.y23{bottom:870.749433px;}
.y3a9{bottom:871.258500px;}
.y144{bottom:872.823000px;}
.y2c5{bottom:873.281381px;}
.yae{bottom:873.831000px;}
.y217{bottom:873.999918px;}
.y3a0{bottom:875.802565px;}
.y50{bottom:875.879850px;}
.y308{bottom:876.702988px;}
.y344{bottom:878.323749px;}
.y163{bottom:878.470500px;}
.y3be{bottom:879.313500px;}
.y2{bottom:879.369000px;}
.y182{bottom:879.510000px;}
.y3dc{bottom:880.299314px;}
.y38{bottom:881.909433px;}
.y8b{bottom:882.963000px;}
.y237{bottom:884.409000px;}
.y257{bottom:887.223000px;}
.y2c4{bottom:888.768656px;}
.y2de{bottom:888.798670px;}
.y216{bottom:889.030619px;}
.ycb{bottom:891.781500px;}
.y19e{bottom:892.236000px;}
.y1b9{bottom:892.344733px;}
.y3a8{bottom:892.926000px;}
.y106{bottom:893.422500px;}
.y126{bottom:895.078500px;}
.y1d8{bottom:895.812000px;}
.y4f{bottom:897.839850px;}
.y3db{bottom:897.841887px;}
.y143{bottom:898.813500px;}
.y307{bottom:899.753817px;}
.yad{bottom:900.721500px;}
.y162{bottom:900.726000px;}
.y37e{bottom:906.597031px;}
.y181{bottom:906.782700px;}
.y1b8{bottom:907.118874px;}
.y2e3{bottom:908.938131px;}
.y215{bottom:909.416646px;}
.y2a8{bottom:909.838554px;}
.y8a{bottom:909.855000px;}
.y22{bottom:911.340000px;}
.y293{bottom:913.980500px;}
.y3a7{bottom:915.193500px;}
.y125{bottom:917.332500px;}
.yca{bottom:918.673500px;}
.y19d{bottom:919.126500px;}
.y4e{bottom:920.069850px;}
.y236{bottom:921.021000px;}
.y142{bottom:921.069000px;}
.y1b7{bottom:921.891992px;}
.y3da{bottom:922.374286px;}
.y37{bottom:922.500000px;}
.y161{bottom:922.980000px;}
.y306{bottom:922.984730px;}
.y105{bottom:923.148000px;}
.y256{bottom:923.835000px;}
.y214{bottom:924.447348px;}
.yac{bottom:927.613500px;}
.y2e2{bottom:929.107606px;}
.y2a7{bottom:930.008029px;}
.y3bd{bottom:931.317900px;}
.y1b6{bottom:936.666133px;}
.y89{bottom:936.745500px;}
.y3a6{bottom:937.459500px;}
.y180{bottom:937.776000px;}
.y213{bottom:939.477009px;}
.y124{bottom:939.586500px;}
.y1d7{bottom:940.462500px;}
.y4d{bottom:942.389850px;}
.y235{bottom:942.690000px;}
.y141{bottom:943.323000px;}
.y255{bottom:945.504000px;}
.yc9{bottom:945.564000px;}
.y305{bottom:946.215644px;}
.y160{bottom:948.015000px;}
.y3bc{bottom:948.653100px;}
.y2e1{bottom:949.277082px;}
.y37c{bottom:949.817336px;}
.y2a6{bottom:949.997420px;}
.y104{bottom:952.875000px;}
.yab{bottom:954.504000px;}
.y343{bottom:954.679620px;}
.y1b5{bottom:956.705210px;}
.y17f{bottom:957.278100px;}
.y28b{bottom:962.490000px;}
.y88{bottom:963.636000px;}
.y19c{bottom:963.676500px;}
.y3d9{bottom:963.709716px;}
.y292{bottom:964.224104px;}
.y4c{bottom:964.619850px;}
.y123{bottom:965.577000px;}
.y1{bottom:966.726000px;}
.y19b{bottom:968.272500px;}
.y2e0{bottom:969.266472px;}
.y2a5{bottom:970.166895px;}
.y15f{bottom:970.269000px;}
.y1b4{bottom:971.478328px;}
.yc8{bottom:972.454500px;}
.y37a{bottom:972.868164px;}
.y3bb{bottom:972.895500px;}
.y212{bottom:973.930500px;}
.y340{bottom:975.569433px;}
.y3a5{bottom:977.659500px;}
.y234{bottom:979.302000px;}
.yaa{bottom:981.394500px;}
.y254{bottom:982.117500px;}
.y103{bottom:982.602000px;}
.y28a{bottom:984.159000px;}
.y1b3{bottom:986.252469px;}
.y4b{bottom:986.579850px;}
.y291{bottom:987.274932px;}
.y122{bottom:987.832500px;}
.y2a4{bottom:990.336371px;}
.y87{bottom:990.526500px;}
.y140{bottom:991.567500px;}
.y15e{bottom:992.523000px;}
.y17e{bottom:995.599500px;}
.y233{bottom:1000.971000px;}
.y3d8{bottom:1003.684500px;}
.y253{bottom:1003.786500px;}
.ya9{bottom:1008.285000px;}
.y4a{bottom:1008.809850px;}
.y290{bottom:1010.505846px;}
.yc7{bottom:1010.926500px;}
.y1c8{bottom:1011.268500px;}
.y102{bottom:1012.327500px;}
.y3ba{bottom:1013.742300px;}
.y121{bottom:1013.823000px;}
.y289{bottom:1017.409500px;}
.y86{bottom:1017.418500px;}
.y15d{bottom:1017.558000px;}
.y1b2{bottom:1020.484500px;}
.y232{bottom:1022.640000px;}
.y3a4{bottom:1028.817000px;}
.y49{bottom:1031.039850px;}
.ya8{bottom:1035.177000px;}
.y120{bottom:1036.077000px;}
.y13f{bottom:1039.813500px;}
.y252{bottom:1040.398500px;}
.y2c{bottom:1045.890000px;}
.y101{bottom:1046.538000px;}
.y48{bottom:1053.269850px;}
.y3b9{bottom:1053.499500px;}
.y85{bottom:1062.067500px;}
.y100{bottom:1068.792000px;}
.y47{bottom:1075.499850px;}
.y28d{bottom:1092.474353px;}
.y46{bottom:1097.729850px;}
.y28c{bottom:1118.766704px;}
.y34{bottom:1148.310000px;}
.y33{bottom:1186.560000px;}
.h12{height:4.079004px;}
.h46{height:20.169475px;}
.h32{height:21.712785px;}
.h58{height:22.330490px;}
.h14{height:23.220000px;}
.h2e{height:23.263886px;}
.h11{height:23.310000px;}
.h61{height:25.572013px;}
.h5f{height:26.292352px;}
.h33{height:27.129789px;}
.h5c{height:28.273282px;}
.h20{height:28.285733px;}
.h2f{height:29.067865px;}
.hd{height:30.420000px;}
.h60{height:30.434297px;}
.h2b{height:31.005941px;}
.h4b{height:31.694890px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h4c{height:32.415228px;}
.h5a{height:32.955482px;}
.h2c{height:33.052538px;}
.h4e{height:33.135566px;}
.h49{height:33.171583px;}
.h4d{height:33.675820px;}
.h35{height:34.284106px;}
.h26{height:35.865450px;}
.h34{height:36.173052px;}
.h29{height:36.680287px;}
.h38{height:37.317260px;}
.h30{height:38.757154px;}
.h37{height:39.299301px;}
.h63{height:40.169472px;}
.h17{height:40.314960px;}
.h45{height:40.338950px;}
.h65{height:40.649999px;}
.h36{height:42.106394px;}
.h5b{height:42.319881px;}
.h5d{height:42.355898px;}
.h50{height:42.499966px;}
.h59{height:42.535983px;}
.h62{height:43.038720px;}
.h4f{height:43.076236px;}
.h64{height:43.553571px;}
.h51{height:43.760558px;}
.h5e{height:43.940642px;}
.h54{height:44.480896px;}
.h21{height:44.831700px;}
.h1a{height:44.833500px;}
.h22{height:44.891476px;}
.h25{height:45.190656px;}
.h18{height:45.468000px;}
.h55{height:45.921573px;}
.h53{height:45.957590px;}
.h7{height:45.960000px;}
.h3a{height:46.140629px;}
.h52{height:46.461827px;}
.h3d{height:47.499705px;}
.h13{height:47.988281px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h24{height:48.418560px;}
.h19{height:49.090500px;}
.h47{height:49.883434px;}
.h23{height:50.211840px;}
.h57{height:52.584703px;}
.h1c{height:53.798400px;}
.h56{height:54.061397px;}
.h10{height:54.504000px;}
.h2{height:55.152000px;}
.hf{height:56.004840px;}
.h15{height:56.664000px;}
.h3b{height:58.678843px;}
.h1d{height:60.254040px;}
.h3c{height:60.407234px;}
.h16{height:60.624000px;}
.h44{height:60.708207px;}
.h1f{height:61.893450px;}
.h1e{height:61.899450px;}
.h4a{height:65.370710px;}
.h27{height:65.665237px;}
.h41{height:65.915184px;}
.h42{height:67.856721px;}
.h3e{height:68.668052px;}
.h3f{height:69.118721px;}
.h28{height:72.182400px;}
.h1b{height:72.304680px;}
.he{height:72.762840px;}
.h48{height:75.635532px;}
.h5{height:78.132000px;}
.hc{height:81.756000px;}
.hb{height:100.014840px;}
.h4{height:119.055004px;}
.h43{height:137.404550px;}
.h40{height:163.030026px;}
.h31{height:357.393600px;}
.h2d{height:382.924800px;}
.h2a{height:408.456000px;}
.h39{height:831.990852px;}
.ha{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w12{width:158.684547px;}
.wf{width:169.489623px;}
.wc{width:169.849792px;}
.w4{width:230.040000px;}
.we{width:243.864562px;}
.wb{width:244.584901px;}
.w5{width:271.800000px;}
.wd{width:286.184443px;}
.wa{width:286.544613px;}
.w8{width:491.416200px;}
.w7{width:526.521600px;}
.w11{width:541.409343px;}
.w6{width:561.627000px;}
.w2{width:637.794021px;}
.w9{width:642.902012px;}
.w10{width:700.994313px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x74{left:7.563553px;}
.x31{left:19.383960px;}
.xa{left:22.500000px;}
.x45{left:25.625419px;}
.x35{left:27.456027px;}
.x44{left:34.551299px;}
.x34{left:36.723259px;}
.x36{left:43.388688px;}
.x2c{left:46.598759px;}
.x69{left:51.864365px;}
.x6{left:56.880711px;}
.x5{left:58.410000px;}
.x72{left:60.148256px;}
.x6f{left:61.763015px;}
.x47{left:66.024590px;}
.xc{left:68.670711px;}
.xb{left:70.200000px;}
.xe{left:71.280000px;}
.x11{left:74.160000px;}
.x7{left:75.960000px;}
.x71{left:79.102161px;}
.x37{left:84.097562px;}
.xd{left:87.750000px;}
.x6a{left:89.682131px;}
.x46{left:98.462275px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x61{left:107.870777px;}
.x8{left:108.990000px;}
.x56{left:115.018202px;}
.x66{left:117.048987px;}
.x29{left:118.104424px;}
.x83{left:119.997827px;}
.x9{left:122.130000px;}
.x62{left:124.438560px;}
.x58{left:125.559000px;}
.x15{left:128.194500px;}
.x65{left:129.841098px;}
.xf{left:135.000000px;}
.x59{left:137.550010px;}
.x7a{left:146.658000px;}
.x2e{left:150.115681px;}
.x14{left:151.897500px;}
.x39{left:154.925737px;}
.x19{left:159.063000px;}
.x63{left:161.890154px;}
.x38{left:164.489257px;}
.x2d{left:165.783240px;}
.x16{left:170.124000px;}
.x13{left:176.443500px;}
.x2b{left:178.198500px;}
.x1a{left:179.464500px;}
.x1b{left:181.440000px;}
.x49{left:184.247991px;}
.x51{left:186.967235px;}
.x17{left:190.527000px;}
.x48{left:193.173872px;}
.x33{left:195.750000px;}
.x18{left:201.282000px;}
.x4{left:203.484001px;}
.x32{left:205.782000px;}
.x1c{left:209.314500px;}
.x43{left:210.375000px;}
.x3a{left:211.715424px;}
.x27{left:213.661800px;}
.x82{left:214.831667px;}
.x57{left:216.004426px;}
.x26{left:220.146836px;}
.x4b{left:222.173411px;}
.x28{left:223.672135px;}
.x10{left:228.150330px;}
.x5a{left:232.631776px;}
.x79{left:235.972500px;}
.x6b{left:239.551536px;}
.x20{left:242.289000px;}
.x6d{left:245.674413px;}
.x73{left:250.896866px;}
.x53{left:252.608352px;}
.x77{left:255.810000px;}
.x4a{left:257.084840px;}
.x52{left:258.669746px;}
.x54{left:261.964751px;}
.x70{left:266.564226px;}
.x5c{left:268.936831px;}
.x25{left:277.779000px;}
.x3c{left:282.395446px;}
.x5f{left:287.409120px;}
.x3b{left:290.823195px;}
.x75{left:293.396832px;}
.x2a{left:297.415500px;}
.x3e{left:300.525022px;}
.x5e{left:306.318003px;}
.x2f{left:310.406733px;}
.x5b{left:321.503526px;}
.x6c{left:324.911637px;}
.x78{left:330.091500px;}
.x3d{left:338.609001px;}
.x84{left:340.825855px;}
.x4d{left:342.870564px;}
.x4c{left:351.796444px;}
.x4e{left:364.592800px;}
.x1d{left:369.865500px;}
.x7e{left:378.699600px;}
.x50{left:380.795983px;}
.x7f{left:386.239200px;}
.x23{left:390.243000px;}
.x67{left:395.144732px;}
.x24{left:398.805000px;}
.x80{left:403.622400px;}
.x30{left:406.819789px;}
.x3f{left:409.848695px;}
.x1e{left:413.443350px;}
.x4f{left:415.707412px;}
.x21{left:419.369850px;}
.x7c{left:421.012800px;}
.x12{left:422.998500px;}
.x40{left:425.978873px;}
.x1f{left:429.466500px;}
.x42{left:430.736842px;}
.x7b{left:434.146800px;}
.x81{left:439.659600px;}
.x22{left:450.220500px;}
.x3{left:454.959000px;}
.x55{left:464.055758px;}
.x41{left:466.605445px;}
.x7d{left:481.687200px;}
.x5d{left:567.371530px;}
.x68{left:639.729633px;}
.x6e{left:650.894878px;}
.x76{left:762.592351px;}
.x60{left:771.776666px;}
.x64{left:839.488476px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.778667pt;}
.v5{vertical-align:16.341333pt;}
.v1{vertical-align:21.440000pt;}
.v2{vertical-align:23.141333pt;}
.v4{vertical-align:30.229333pt;}
.ls29{letter-spacing:-28.053333pt;}
.ls28{letter-spacing:-25.082667pt;}
.ls2a{letter-spacing:-4.410667pt;}
.ls5b{letter-spacing:-1.205900pt;}
.ls4e{letter-spacing:-0.741682pt;}
.ls4c{letter-spacing:-0.682988pt;}
.ls57{letter-spacing:-0.586942pt;}
.ls4d{letter-spacing:-0.525047pt;}
.ls64{letter-spacing:-0.419931pt;}
.ls55{letter-spacing:-0.412460pt;}
.ls4b{letter-spacing:-0.361236pt;}
.ls63{letter-spacing:-0.291870pt;}
.ls5a{letter-spacing:-0.287068pt;}
.ls53{letter-spacing:-0.258788pt;}
.ls62{letter-spacing:-0.192090pt;}
.ls60{letter-spacing:-0.184620pt;}
.ls4a{letter-spacing:-0.146202pt;}
.ls41{letter-spacing:-0.117922pt;}
.ls69{letter-spacing:-0.102448pt;}
.ls67{letter-spacing:-0.097112pt;}
.ls4{letter-spacing:-0.070400pt;}
.ls50{letter-spacing:-0.069366pt;}
.lsa{letter-spacing:-0.068352pt;}
.ls52{letter-spacing:-0.043540pt;}
.ls2{letter-spacing:-0.042720pt;}
.ls3{letter-spacing:-0.034176pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls25{letter-spacing:-0.028800pt;}
.ls23{letter-spacing:-0.024000pt;}
.ls6{letter-spacing:-0.019200pt;}
.lsb{letter-spacing:-0.017088pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls24{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.002128pt;}
.ls30{letter-spacing:0.002717pt;}
.ls8{letter-spacing:0.006400pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls12{letter-spacing:0.012800pt;}
.ls68{letter-spacing:0.017928pt;}
.ls17{letter-spacing:0.019200pt;}
.ls16{letter-spacing:0.024000pt;}
.ls5{letter-spacing:0.025600pt;}
.ls14{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.035232pt;}
.ls10{letter-spacing:0.038400pt;}
.ls19{letter-spacing:0.043200pt;}
.lsd{letter-spacing:0.044800pt;}
.lsc{letter-spacing:0.051200pt;}
.ls26{letter-spacing:0.052800pt;}
.lse{letter-spacing:0.057600pt;}
.ls15{letter-spacing:0.063840pt;}
.ls22{letter-spacing:0.064000pt;}
.ls65{letter-spacing:0.069152pt;}
.ls66{letter-spacing:0.069366pt;}
.ls13{letter-spacing:0.070400pt;}
.ls18{letter-spacing:0.072000pt;}
.lsf{letter-spacing:0.076800pt;}
.ls11{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.100800pt;}
.ls21{letter-spacing:0.102400pt;}
.ls20{letter-spacing:0.105600pt;}
.ls1e{letter-spacing:0.110400pt;}
.ls1b{letter-spacing:0.115200pt;}
.ls58{letter-spacing:0.115254pt;}
.ls56{letter-spacing:0.117922pt;}
.ls51{letter-spacing:0.130728pt;}
.ls3f{letter-spacing:0.133183pt;}
.ls1c{letter-spacing:0.134400pt;}
.ls61{letter-spacing:0.220370pt;}
.ls43{letter-spacing:0.227840pt;}
.ls54{letter-spacing:0.227947pt;}
.ls5c{letter-spacing:0.235844pt;}
.ls3e{letter-spacing:0.279064pt;}
.ls44{letter-spacing:0.330288pt;}
.ls5e{letter-spacing:0.348324pt;}
.ls5d{letter-spacing:0.504557pt;}
.ls40{letter-spacing:0.773483pt;}
.ls48{letter-spacing:1.552089pt;}
.ls31{letter-spacing:2.291133pt;}
.ls2e{letter-spacing:2.653258pt;}
.ls36{letter-spacing:2.657146pt;}
.ls2c{letter-spacing:2.658245pt;}
.ls49{letter-spacing:2.832691pt;}
.ls5f{letter-spacing:3.334687pt;}
.ls47{letter-spacing:4.753593pt;}
.ls46{letter-spacing:6.034195pt;}
.ls59{letter-spacing:6.536191pt;}
.ls3d{letter-spacing:13.720753pt;}
.ls35{letter-spacing:14.170238pt;}
.ls34{letter-spacing:14.572274pt;}
.ls33{letter-spacing:17.706238pt;}
.ls45{letter-spacing:20.120812pt;}
.ls3c{letter-spacing:21.614087pt;}
.ls3a{letter-spacing:22.752882pt;}
.ls32{letter-spacing:27.995812pt;}
.ls2b{letter-spacing:29.074591pt;}
.ls2f{letter-spacing:30.402591pt;}
.ls3b{letter-spacing:31.538591pt;}
.ls38{letter-spacing:32.856467pt;}
.ls42{letter-spacing:34.826387pt;}
.ls39{letter-spacing:35.642191pt;}
.ls2d{letter-spacing:46.578591pt;}
.ls4f{letter-spacing:52.754810pt;}
.ls37{letter-spacing:923.755657pt;}
.ws18e{word-spacing:-58.907674pt;}
.ws19f{word-spacing:-58.615803pt;}
.ws126{word-spacing:-40.590295pt;}
.ws1ae{word-spacing:-32.472236pt;}
.ws125{word-spacing:-17.728748pt;}
.ws91{word-spacing:-17.343010pt;}
.wsee{word-spacing:-16.970957pt;}
.wsd{word-spacing:-16.800000pt;}
.ws175{word-spacing:-15.940267pt;}
.ws3f{word-spacing:-14.761181pt;}
.wse2{word-spacing:-14.760588pt;}
.ws190{word-spacing:-13.643423pt;}
.ws18c{word-spacing:-13.592199pt;}
.ws19c{word-spacing:-13.548978pt;}
.ws18f{word-spacing:-13.540975pt;}
.ws196{word-spacing:-13.443862pt;}
.ws199{word-spacing:-13.431056pt;}
.ws1a0{word-spacing:-13.428388pt;}
.ws1a1{word-spacing:-13.331063pt;}
.ws18d{word-spacing:-13.313134pt;}
.ws197{word-spacing:-13.269594pt;}
.ws195{word-spacing:-13.243768pt;}
.ws1a2{word-spacing:-13.210686pt;}
.ws18b{word-spacing:-13.195212pt;}
.ws191{word-spacing:-13.166932pt;}
.ws19d{word-spacing:-13.128514pt;}
.ws19e{word-spacing:-13.121044pt;}
.ws198{word-spacing:-12.900674pt;}
.ws193{word-spacing:-12.788088pt;}
.ws19a{word-spacing:-12.726192pt;}
.ws192{word-spacing:-12.630147pt;}
.ws10{word-spacing:-12.619200pt;}
.wsf{word-spacing:-12.595200pt;}
.ws194{word-spacing:-12.571452pt;}
.ws19b{word-spacing:-12.107234pt;}
.wse{word-spacing:-11.214560pt;}
.ws43{word-spacing:-10.350514pt;}
.ws1{word-spacing:-10.071360pt;}
.ws8f{word-spacing:-3.506859pt;}
.ws18a{word-spacing:-3.443098pt;}
.ws107{word-spacing:-3.103018pt;}
.ws97{word-spacing:-2.996770pt;}
.ws10d{word-spacing:-2.869248pt;}
.ws154{word-spacing:-2.699200pt;}
.wsdd{word-spacing:-1.934073pt;}
.ws16b{word-spacing:-1.912832pt;}
.wsd3{word-spacing:-1.849059pt;}
.ws12d{word-spacing:-1.721549pt;}
.wsdc{word-spacing:-1.689657pt;}
.ws96{word-spacing:-1.530266pt;}
.ws60{word-spacing:-1.466505pt;}
.ws123{word-spacing:-1.402743pt;}
.wsb2{word-spacing:-1.275221pt;}
.ws189{word-spacing:-1.211460pt;}
.ws5e{word-spacing:-1.147699pt;}
.ws143{word-spacing:-1.083938pt;}
.ws155{word-spacing:-1.052051pt;}
.ws124{word-spacing:-1.020177pt;}
.ws42{word-spacing:-1.004377pt;}
.wsd5{word-spacing:-0.998917pt;}
.ws40{word-spacing:-0.949965pt;}
.ws41{word-spacing:-0.945183pt;}
.wse7{word-spacing:-0.892649pt;}
.ws15f{word-spacing:-0.828894pt;}
.wsc3{word-spacing:-0.765133pt;}
.ws7e{word-spacing:-0.701372pt;}
.ws36{word-spacing:-0.686540pt;}
.ws38{word-spacing:-0.628533pt;}
.ws92{word-spacing:-0.510089pt;}
.ws157{word-spacing:-0.446327pt;}
.wsa0{word-spacing:-0.318805pt;}
.wsb1{word-spacing:-0.255044pt;}
.wsc{word-spacing:-0.247776pt;}
.ws5{word-spacing:-0.230688pt;}
.ws29{word-spacing:-0.206400pt;}
.ws13{word-spacing:-0.198400pt;}
.ws28{word-spacing:-0.187200pt;}
.ws1b{word-spacing:-0.185600pt;}
.ws2a{word-spacing:-0.182400pt;}
.ws2c{word-spacing:-0.177600pt;}
.ws17{word-spacing:-0.172800pt;}
.ws27{word-spacing:-0.168000pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws16{word-spacing:-0.153600pt;}
.ws101{word-spacing:-0.148775pt;}
.ws18{word-spacing:-0.147200pt;}
.ws21{word-spacing:-0.144000pt;}
.ws14{word-spacing:-0.134400pt;}
.ws25{word-spacing:-0.129600pt;}
.ws16e{word-spacing:-0.127522pt;}
.ws26{word-spacing:-0.124800pt;}
.ws1d{word-spacing:-0.102400pt;}
.ws1f{word-spacing:-0.096000pt;}
.ws20{word-spacing:-0.091200pt;}
.ws2b{word-spacing:-0.081600pt;}
.ws1c{word-spacing:-0.070400pt;}
.ws23{word-spacing:-0.062400pt;}
.wsc7{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.051200pt;}
.ws22{word-spacing:-0.048000pt;}
.ws1e{word-spacing:-0.044800pt;}
.ws24{word-spacing:-0.043200pt;}
.ws11f{word-spacing:-0.042507pt;}
.ws19{word-spacing:-0.025600pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.028800pt;}
.ws7{word-spacing:0.038400pt;}
.ws9{word-spacing:0.057600pt;}
.ws2{word-spacing:0.058720pt;}
.ws8{word-spacing:0.076800pt;}
.wsa{word-spacing:0.096000pt;}
.ws12{word-spacing:0.102400pt;}
.ws4{word-spacing:0.102528pt;}
.ws11{word-spacing:0.108800pt;}
.wsb{word-spacing:0.128160pt;}
.ws6{word-spacing:0.294400pt;}
.ws98{word-spacing:0.318805pt;}
.ws105{word-spacing:0.329430pt;}
.ws147{word-spacing:0.382566pt;}
.wsdb{word-spacing:0.446327pt;}
.wsb4{word-spacing:0.510089pt;}
.ws6f{word-spacing:0.573850pt;}
.ws5c{word-spacing:0.637611pt;}
.wsb7{word-spacing:0.754501pt;}
.wsa9{word-spacing:0.765133pt;}
.wsa2{word-spacing:0.892655pt;}
.ws9d{word-spacing:0.956416pt;}
.wsda{word-spacing:1.020177pt;}
.ws156{word-spacing:1.147699pt;}
.wsb0{word-spacing:1.211460pt;}
.wsd4{word-spacing:1.232706pt;}
.ws120{word-spacing:1.275221pt;}
.wscd{word-spacing:1.338982pt;}
.ws8a{word-spacing:1.402743pt;}
.ws148{word-spacing:1.466505pt;}
.ws152{word-spacing:1.530266pt;}
.ws95{word-spacing:1.594027pt;}
.wsaf{word-spacing:1.657788pt;}
.wsb8{word-spacing:1.710911pt;}
.ws6a{word-spacing:1.721549pt;}
.ws77{word-spacing:1.785310pt;}
.ws12b{word-spacing:1.849071pt;}
.ws74{word-spacing:1.912832pt;}
.ws87{word-spacing:2.040354pt;}
.wsac{word-spacing:2.104115pt;}
.ws99{word-spacing:2.167876pt;}
.ws14a{word-spacing:2.194183pt;}
.ws151{word-spacing:2.206124pt;}
.wsc0{word-spacing:2.231637pt;}
.ws149{word-spacing:2.234816pt;}
.wsf5{word-spacing:2.242249pt;}
.ws150{word-spacing:2.248631pt;}
.wsa4{word-spacing:2.295398pt;}
.ws134{word-spacing:2.347538pt;}
.ws163{word-spacing:2.388305pt;}
.ws164{word-spacing:2.432533pt;}
.ws11e{word-spacing:2.503674pt;}
.ws7d{word-spacing:2.550443pt;}
.wsd0{word-spacing:2.614204pt;}
.ws153{word-spacing:2.677965pt;}
.ws158{word-spacing:2.694809pt;}
.ws106{word-spacing:2.741708pt;}
.ws130{word-spacing:2.741726pt;}
.ws1ad{word-spacing:2.754478pt;}
.ws16f{word-spacing:2.805487pt;}
.wsb6{word-spacing:2.826722pt;}
.wsa7{word-spacing:2.932989pt;}
.ws34{word-spacing:2.978884pt;}
.wsba{word-spacing:2.986123pt;}
.ws159{word-spacing:3.118992pt;}
.ws16d{word-spacing:3.124292pt;}
.wse1{word-spacing:3.145525pt;}
.ws112{word-spacing:3.156173pt;}
.ws78{word-spacing:3.188053pt;}
.ws3a{word-spacing:3.211610pt;}
.ws3e{word-spacing:3.211959pt;}
.ws1b0{word-spacing:3.226190pt;}
.wsa8{word-spacing:3.251793pt;}
.wsae{word-spacing:3.251814pt;}
.ws3c{word-spacing:3.269791pt;}
.ws182{word-spacing:3.315575pt;}
.wsf4{word-spacing:3.358060pt;}
.wsd9{word-spacing:3.379314pt;}
.ws108{word-spacing:3.379337pt;}
.wsbb{word-spacing:3.410897pt;}
.wsbd{word-spacing:3.411194pt;}
.wscb{word-spacing:3.432448pt;}
.ws63{word-spacing:3.443098pt;}
.wsa1{word-spacing:3.506859pt;}
.wsf8{word-spacing:3.570620pt;}
.ws114{word-spacing:3.586560pt;}
.ws35{word-spacing:3.618879pt;}
.ws5f{word-spacing:3.634381pt;}
.wsff{word-spacing:3.676864pt;}
.ws171{word-spacing:3.698142pt;}
.ws3b{word-spacing:3.700333pt;}
.wse8{word-spacing:3.729997pt;}
.wsb3{word-spacing:3.761903pt;}
.ws9f{word-spacing:3.825664pt;}
.wsf1{word-spacing:3.836265pt;}
.wsf3{word-spacing:3.889399pt;}
.ws32{word-spacing:3.909786pt;}
.ws69{word-spacing:3.953186pt;}
.wsb5{word-spacing:3.985067pt;}
.ws94{word-spacing:4.016947pt;}
.ws104{word-spacing:4.048801pt;}
.wseb{word-spacing:4.070054pt;}
.ws73{word-spacing:4.144469pt;}
.wse9{word-spacing:4.155068pt;}
.ws10f{word-spacing:4.208230pt;}
.wsfe{word-spacing:4.261336pt;}
.ws121{word-spacing:4.271991pt;}
.ws184{word-spacing:4.335753pt;}
.ws90{word-spacing:4.399514pt;}
.wsf2{word-spacing:4.441991pt;}
.ws170{word-spacing:4.463275pt;}
.ws2e{word-spacing:4.549548pt;}
.wsaa{word-spacing:4.590797pt;}
.ws9b{word-spacing:4.654558pt;}
.ws12f{word-spacing:4.718319pt;}
.ws8e{word-spacing:4.782067pt;}
.ws45{word-spacing:4.837333pt;}
.ws5d{word-spacing:4.845841pt;}
.ws44{word-spacing:4.890667pt;}
.ws93{word-spacing:4.909602pt;}
.ws72{word-spacing:4.973363pt;}
.ws8c{word-spacing:5.037124pt;}
.wsf0{word-spacing:5.100885pt;}
.ws67{word-spacing:5.164646pt;}
.ws6b{word-spacing:5.355930pt;}
.ws53{word-spacing:5.365333pt;}
.wsde{word-spacing:5.377147pt;}
.wsd1{word-spacing:5.536549pt;}
.ws132{word-spacing:5.547213pt;}
.wse0{word-spacing:5.589683pt;}
.ws71{word-spacing:5.610974pt;}
.ws59{word-spacing:5.632000pt;}
.ws8d{word-spacing:5.738467pt;}
.ws118{word-spacing:5.738496pt;}
.ws146{word-spacing:5.802257pt;}
.ws2d{word-spacing:5.829537pt;}
.wsfb{word-spacing:5.866018pt;}
.wsdf{word-spacing:5.876606pt;}
.ws16c{word-spacing:5.929779pt;}
.wse3{word-spacing:5.993540pt;}
.ws31{word-spacing:6.178858pt;}
.ws6e{word-spacing:6.184823pt;}
.wsc6{word-spacing:6.227289pt;}
.ws85{word-spacing:6.248585pt;}
.ws100{word-spacing:6.280423pt;}
.ws12e{word-spacing:6.312346pt;}
.wsd2{word-spacing:6.354810pt;}
.wsf9{word-spacing:6.376107pt;}
.wsc8{word-spacing:6.386691pt;}
.ws6d{word-spacing:6.439868pt;}
.ws109{word-spacing:6.503629pt;}
.wsc1{word-spacing:6.567390pt;}
.wsb9{word-spacing:6.599226pt;}
.wsad{word-spacing:6.631151pt;}
.wsfc{word-spacing:6.652360pt;}
.ws65{word-spacing:6.694912pt;}
.wsc4{word-spacing:6.705494pt;}
.wsc2{word-spacing:6.758673pt;}
.ws161{word-spacing:6.811762pt;}
.ws15e{word-spacing:6.822434pt;}
.ws64{word-spacing:6.886195pt;}
.wsed{word-spacing:6.939283pt;}
.ws111{word-spacing:6.949956pt;}
.ws56{word-spacing:7.013333pt;}
.ws7c{word-spacing:7.013717pt;}
.ws57{word-spacing:7.066667pt;}
.wsd6{word-spacing:7.077431pt;}
.ws5b{word-spacing:7.077478pt;}
.ws37{word-spacing:7.109526pt;}
.ws144{word-spacing:7.141239pt;}
.ws39{word-spacing:7.225831pt;}
.ws102{word-spacing:7.236833pt;}
.ws187{word-spacing:7.268762pt;}
.ws3d{word-spacing:7.279813pt;}
.wsa5{word-spacing:7.289967pt;}
.ws9e{word-spacing:7.332523pt;}
.ws58{word-spacing:7.333333pt;}
.ws55{word-spacing:7.386667pt;}
.ws160{word-spacing:7.396284pt;}
.ws52{word-spacing:7.440000pt;}
.wsfa{word-spacing:7.460045pt;}
.ws4a{word-spacing:7.493333pt;}
.ws13b{word-spacing:7.519524pt;}
.ws89{word-spacing:7.523806pt;}
.wsbc{word-spacing:7.574608pt;}
.ws86{word-spacing:7.587567pt;}
.ws9c{word-spacing:7.651328pt;}
.wsf6{word-spacing:7.661904pt;}
.wsc5{word-spacing:7.683157pt;}
.wscc{word-spacing:7.715089pt;}
.ws70{word-spacing:7.778850pt;}
.wsd8{word-spacing:7.789425pt;}
.ws17b{word-spacing:7.842611pt;}
.ws83{word-spacing:7.906372pt;}
.ws4c{word-spacing:7.914667pt;}
.ws181{word-spacing:7.970133pt;}
.wsc9{word-spacing:7.980707pt;}
.ws2f{word-spacing:7.982595pt;}
.ws88{word-spacing:8.033894pt;}
.ws82{word-spacing:8.097655pt;}
.ws66{word-spacing:8.161417pt;}
.wsfd{word-spacing:8.246376pt;}
.ws84{word-spacing:8.288939pt;}
.wsca{word-spacing:8.320764pt;}
.wsec{word-spacing:8.373897pt;}
.wsef{word-spacing:8.416461pt;}
.ws173{word-spacing:8.480222pt;}
.wse4{word-spacing:8.507379pt;}
.wse6{word-spacing:8.512045pt;}
.ws79{word-spacing:8.543983pt;}
.ws62{word-spacing:8.607744pt;}
.ws33{word-spacing:8.622590pt;}
.ws4d{word-spacing:8.661333pt;}
.ws80{word-spacing:8.671505pt;}
.wscf{word-spacing:8.735266pt;}
.wsa6{word-spacing:8.830849pt;}
.wsab{word-spacing:8.862788pt;}
.ws6c{word-spacing:8.926549pt;}
.ws133{word-spacing:8.990310pt;}
.ws8b{word-spacing:9.117833pt;}
.ws61{word-spacing:9.181594pt;}
.ws10b{word-spacing:9.245355pt;}
.ws68{word-spacing:9.309116pt;}
.ws176{word-spacing:9.372877pt;}
.ws110{word-spacing:9.500399pt;}
.ws17f{word-spacing:9.564160pt;}
.ws30{word-spacing:9.611382pt;}
.ws12a{word-spacing:9.627921pt;}
.ws1b3{word-spacing:9.678571pt;}
.ws122{word-spacing:9.755443pt;}
.wse5{word-spacing:9.808512pt;}
.ws141{word-spacing:9.882965pt;}
.ws7f{word-spacing:9.946726pt;}
.ws48{word-spacing:9.989333pt;}
.ws47{word-spacing:10.042667pt;}
.wsce{word-spacing:10.074249pt;}
.ws17c{word-spacing:10.138010pt;}
.ws7b{word-spacing:10.201771pt;}
.ws188{word-spacing:10.313298pt;}
.ws103{word-spacing:10.318597pt;}
.ws17e{word-spacing:10.319882pt;}
.ws172{word-spacing:10.321773pt;}
.ws17a{word-spacing:10.325577pt;}
.ws186{word-spacing:10.333123pt;}
.ws177{word-spacing:10.333150pt;}
.ws183{word-spacing:10.360953pt;}
.ws9a{word-spacing:10.393054pt;}
.ws75{word-spacing:10.456815pt;}
.ws128{word-spacing:10.520576pt;}
.ws145{word-spacing:10.775620pt;}
.wsd7{word-spacing:10.924323pt;}
.ws174{word-spacing:10.966903pt;}
.wsa3{word-spacing:11.030665pt;}
.ws49{word-spacing:11.104000pt;}
.ws131{word-spacing:11.221948pt;}
.ws10c{word-spacing:11.349470pt;}
.ws142{word-spacing:11.476992pt;}
.ws54{word-spacing:11.477333pt;}
.ws50{word-spacing:11.637333pt;}
.ws4e{word-spacing:11.690667pt;}
.ws185{word-spacing:11.732036pt;}
.ws178{word-spacing:11.923319pt;}
.ws180{word-spacing:11.987081pt;}
.ws76{word-spacing:12.050842pt;}
.ws81{word-spacing:12.369647pt;}
.ws10a{word-spacing:12.560930pt;}
.ws12c{word-spacing:12.879735pt;}
.ws7a{word-spacing:13.007258pt;}
.ws51{word-spacing:13.178667pt;}
.ws127{word-spacing:13.213297pt;}
.ws10e{word-spacing:13.262302pt;}
.ws17d{word-spacing:13.326063pt;}
.ws162{word-spacing:13.772390pt;}
.ws46{word-spacing:13.813333pt;}
.ws179{word-spacing:14.154957pt;}
.wsbe{word-spacing:16.428992pt;}
.wsbf{word-spacing:16.449381pt;}
.wsea{word-spacing:16.453867pt;}
.wsf7{word-spacing:16.454290pt;}
.ws4b{word-spacing:17.056000pt;}
.ws129{word-spacing:28.874904pt;}
.ws4f{word-spacing:29.648000pt;}
.ws1a3{word-spacing:37.134445pt;}
.ws1af{word-spacing:37.578666pt;}
.ws166{word-spacing:39.805078pt;}
.ws1aa{word-spacing:40.143968pt;}
.ws1a4{word-spacing:40.194976pt;}
.ws14d{word-spacing:43.192895pt;}
.ws138{word-spacing:46.211728pt;}
.ws168{word-spacing:57.717362pt;}
.ws167{word-spacing:63.865035pt;}
.ws136{word-spacing:63.992157pt;}
.ws1b1{word-spacing:65.917523pt;}
.ws1a6{word-spacing:71.973492pt;}
.ws5a{word-spacing:74.600067pt;}
.ws1a5{word-spacing:76.258236pt;}
.ws1b8{word-spacing:78.564189pt;}
.ws14c{word-spacing:78.584251pt;}
.ws1a9{word-spacing:83.042413pt;}
.ws137{word-spacing:84.076652pt;}
.ws169{word-spacing:87.880766pt;}
.ws1b6{word-spacing:91.210856pt;}
.ws1a7{word-spacing:98.447087pt;}
.ws1b2{word-spacing:102.412189pt;}
.ws13f{word-spacing:104.240895pt;}
.ws139{word-spacing:107.682455pt;}
.ws13d{word-spacing:111.687573pt;}
.ws1a8{word-spacing:113.545708pt;}
.ws15a{word-spacing:115.327853pt;}
.ws117{word-spacing:119.016407pt;}
.ws14e{word-spacing:120.558155pt;}
.ws1b5{word-spacing:120.685331pt;}
.ws16a{word-spacing:131.268300pt;}
.ws11c{word-spacing:133.075722pt;}
.ws1b4{word-spacing:133.331998pt;}
.ws14f{word-spacing:140.468333pt;}
.ws165{word-spacing:140.865747pt;}
.ws1ab{word-spacing:141.447550pt;}
.ws1b7{word-spacing:141.745902pt;}
.ws11d{word-spacing:148.684431pt;}
.ws14b{word-spacing:149.326330pt;}
.ws13a{word-spacing:150.285929pt;}
.ws15b{word-spacing:150.609892pt;}
.ws11b{word-spacing:153.389998pt;}
.ws135{word-spacing:159.763028pt;}
.ws119{word-spacing:162.743747pt;}
.ws116{word-spacing:176.803062pt;}
.ws1ac{word-spacing:178.939057pt;}
.ws1b9{word-spacing:181.079616pt;}
.ws13c{word-spacing:182.802419pt;}
.ws113{word-spacing:190.804992pt;}
.ws1ba{word-spacing:218.967996pt;}
.ws15c{word-spacing:226.613492pt;}
.ws140{word-spacing:245.851512pt;}
.ws15d{word-spacing:251.066390pt;}
.ws13e{word-spacing:263.414457pt;}
.ws11a{word-spacing:464.200322pt;}
.ws115{word-spacing:478.249922pt;}
._a6{margin-left:-28.882403pt;}
._f{margin-left:-13.618253pt;}
._a8{margin-left:-12.699002pt;}
._a9{margin-left:-11.448003pt;}
._aa{margin-left:-10.387665pt;}
._ab{margin-left:-6.971020pt;}
._1c{margin-left:-5.794471pt;}
._e{margin-left:-4.823607pt;}
._a{margin-left:-3.258096pt;}
._3{margin-left:-2.154097pt;}
._1{margin-left:-1.046400pt;}
._0{width:0.928000pt;}
._8{width:2.154097pt;}
._10{width:3.258096pt;}
._b1{width:4.750915pt;}
._ad{width:5.952813pt;}
._62{width:6.847828pt;}
._63{width:7.784244pt;}
._ae{width:9.325679pt;}
._af{width:11.015735pt;}
._b0{width:11.954393pt;}
._8b{width:13.070931pt;}
._b{width:14.544877pt;}
._28{width:15.759246pt;}
._13{width:17.561374pt;}
._11{width:19.028356pt;}
._20{width:19.998073pt;}
._2{width:21.766328pt;}
._c2{width:22.713392pt;}
._7{width:23.622718pt;}
._c{width:24.787916pt;}
._d{width:25.869450pt;}
._5{width:27.231017pt;}
._12{width:28.975940pt;}
._19{width:29.903940pt;}
._24{width:31.242714pt;}
._1b{width:32.291516pt;}
._27{width:33.617104pt;}
._6{width:34.679159pt;}
._18{width:35.832384pt;}
._26{width:36.961263pt;}
._15{width:38.014039pt;}
._25{width:39.241203pt;}
._4{width:40.144713pt;}
._16{width:41.090543pt;}
._9{width:42.533049pt;}
._17{width:44.058897pt;}
._14{width:45.320339pt;}
._67{width:46.715948pt;}
._1e{width:47.679499pt;}
._1a{width:48.677542pt;}
._68{width:49.669871pt;}
._23{width:50.753809pt;}
._bf{width:51.933031pt;}
._33{width:53.227193pt;}
._1f{width:54.643234pt;}
._1d{width:55.635853pt;}
._29{width:57.562464pt;}
._b9{width:58.713680pt;}
._71{width:61.489771pt;}
._66{width:62.965561pt;}
._7c{width:64.078265pt;}
._6a{width:65.467242pt;}
._bb{width:67.070624pt;}
._3a{width:68.165559pt;}
._35{width:69.815157pt;}
._94{width:70.970956pt;}
._4a{width:74.338715pt;}
._93{width:75.349515pt;}
._9b{width:77.492664pt;}
._be{width:79.063723pt;}
._c5{width:80.658799pt;}
._5b{width:82.511627pt;}
._22{width:86.077200pt;}
._99{width:87.243477pt;}
._69{width:89.359455pt;}
._6c{width:92.176708pt;}
._74{width:93.943531pt;}
._34{width:95.377241pt;}
._ba{width:97.738981pt;}
._2a{width:98.686992pt;}
._38{width:99.883493pt;}
._95{width:100.961571pt;}
._21{width:103.292400pt;}
._46{width:105.074079pt;}
._2f{width:107.039331pt;}
._bc{width:108.717106pt;}
._37{width:109.943047pt;}
._39{width:110.859028pt;}
._6b{width:113.284846pt;}
._41{width:114.703147pt;}
._8d{width:116.675258pt;}
._c6{width:117.892748pt;}
._65{width:118.998928pt;}
._36{width:121.202537pt;}
._9d{width:122.452190pt;}
._89{width:123.768164pt;}
._64{width:126.309208pt;}
._61{width:127.499879pt;}
._5c{width:128.984192pt;}
._8c{width:130.032427pt;}
._5e{width:131.792625pt;}
._8e{width:133.357496pt;}
._60{width:135.332385pt;}
._45{width:136.244172pt;}
._c3{width:137.174843pt;}
._5d{width:138.200454pt;}
._75{width:139.615039pt;}
._4d{width:141.675915pt;}
._b4{width:142.761028pt;}
._7b{width:143.881506pt;}
._49{width:145.593902pt;}
._c4{width:147.323359pt;}
._44{width:149.998926pt;}
._86{width:151.243537pt;}
._72{width:152.308152pt;}
._4c{width:153.937655pt;}
._50{width:154.894060pt;}
._78{width:156.172279pt;}
._9c{width:157.434038pt;}
._7a{width:158.745552pt;}
._82{width:160.094079pt;}
._58{width:161.977774pt;}
._c0{width:162.977864pt;}
._6e{width:164.416703pt;}
._59{width:165.745519pt;}
._48{width:166.849116pt;}
._a4{width:167.829978pt;}
._6d{width:168.911443pt;}
._4b{width:170.196532pt;}
._54{width:171.283355pt;}
._77{width:172.609048pt;}
._73{width:173.706139pt;}
._3e{width:174.978555pt;}
._56{width:176.195797pt;}
._98{width:178.017152pt;}
._a1{width:179.255532pt;}
._3b{width:180.716982pt;}
._c7{width:182.756206pt;}
._96{width:183.899458pt;}
._42{width:184.843477pt;}
._43{width:185.846788pt;}
._76{width:187.328801pt;}
._9a{width:188.349796pt;}
._80{width:198.045315pt;}
._8a{width:199.304938pt;}
._47{width:200.931896pt;}
._88{width:203.810773pt;}
._c1{width:205.937185pt;}
._c8{width:207.663425pt;}
._7f{width:210.770345pt;}
._52{width:211.887075pt;}
._5f{width:213.234736pt;}
._9e{width:216.101871pt;}
._87{width:217.898151pt;}
._53{width:218.799271pt;}
._ca{width:220.413330pt;}
._a5{width:221.841911pt;}
._51{width:225.059373pt;}
._70{width:226.772856pt;}
._8f{width:228.010801pt;}
._7e{width:230.389195pt;}
._5a{width:232.636224pt;}
._57{width:233.640848pt;}
._31{width:237.179403pt;}
._6f{width:239.125293pt;}
._4f{width:240.274900pt;}
._c9{width:241.267424pt;}
._40{width:242.622438pt;}
._84{width:244.448218pt;}
._4e{width:245.865601pt;}
._90{width:246.824561pt;}
._83{width:249.689877pt;}
._2d{width:251.224203pt;}
._91{width:252.413795pt;}
._2c{width:253.702178pt;}
._a3{width:254.693503pt;}
._3f{width:255.838210pt;}
._30{width:258.407745pt;}
._3d{width:260.359395pt;}
._55{width:261.432578pt;}
._97{width:265.001501pt;}
._a0{width:266.074829pt;}
._2e{width:267.241759pt;}
._a2{width:270.992810pt;}
._9f{width:272.327158pt;}
._7d{width:274.639095pt;}
._3c{width:276.618272pt;}
._92{width:277.509958pt;}
._32{width:281.301074pt;}
._79{width:299.170831pt;}
._2b{width:301.615350pt;}
._b8{width:314.278298pt;}
._85{width:323.479432pt;}
._b6{width:329.899759pt;}
._b3{width:345.521220pt;}
._b2{width:361.078921pt;}
._81{width:367.525620pt;}
._b5{width:376.700382pt;}
._b7{width:441.792644pt;}
._a7{width:546.928722pt;}
._bd{width:605.554873pt;}
._ac{width:755.186558pt;}
.fs9{font-size:5.440000pt;}
.fs1b{font-size:26.492573pt;}
.fs18{font-size:28.385128pt;}
.fs1c{font-size:33.102060pt;}
.fs19{font-size:35.466779pt;}
.fs12{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.440000pt;}
.fs16{font-size:37.831497pt;}
.fs17{font-size:40.328626pt;}
.fs1e{font-size:40.633015pt;}
.fs21{font-size:41.235372pt;}
.fs11{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs15{font-size:43.472933pt;}
.fs1d{font-size:44.136080pt;}
.fs20{font-size:44.227864pt;}
.fs1a{font-size:47.289038pt;}
.fsb{font-size:48.000000pt;}
.fs1f{font-size:49.903874pt;}
.fs27{font-size:51.008853pt;}
.fs28{font-size:51.619047pt;}
.fs22{font-size:52.440636pt;}
.fs13{font-size:53.133867pt;}
.fsd{font-size:53.136000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs14{font-size:57.384960pt;}
.fsc{font-size:58.181333pt;}
.fs24{font-size:58.907674pt;}
.fs23{font-size:59.612004pt;}
.fsf{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs26{font-size:64.030080pt;}
.fs10{font-size:76.513067pt;}
.fs7{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fse{font-size:91.815467pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs25{font-size:138.945274pt;}
.y0{bottom:0.000000pt;}
.y30c{bottom:4.001880pt;}
.y395{bottom:4.041899pt;}
.y2f{bottom:4.320000pt;}
.y35f{bottom:4.642181pt;}
.y364{bottom:5.122406pt;}
.y38f{bottom:5.282482pt;}
.y27{bottom:5.760000pt;}
.y370{bottom:5.762707pt;}
.y37d{bottom:5.922782pt;}
.y34e{bottom:6.563083pt;}
.y39d{bottom:6.883234pt;}
.y374{bottom:7.043309pt;}
.y368{bottom:7.683610pt;}
.y39e{bottom:8.804136pt;}
.y36d{bottom:9.004230pt;}
.y388{bottom:9.284362pt;}
.y392{bottom:9.444437pt;}
.y389{bottom:11.205264pt;}
.y347{bottom:11.845565pt;}
.y352{bottom:12.325790pt;}
.y342{bottom:12.485866pt;}
.y355{bottom:12.966091pt;}
.y398{bottom:13.126166pt;}
.y35b{bottom:13.606392pt;}
.y358{bottom:14.086618pt;}
.y353{bottom:14.246693pt;}
.y356{bottom:14.886994pt;}
.y383{bottom:15.367219pt;}
.y35c{bottom:15.527294pt;}
.y34a{bottom:15.567313pt;}
.y359{bottom:16.007520pt;}
.y1d6{bottom:17.220172pt;}
.y1cf{bottom:18.450333pt;}
.y30b{bottom:21.930302pt;}
.y394{bottom:21.970321pt;}
.y1c6{bottom:22.255658pt;}
.y35e{bottom:22.597282pt;}
.y363{bottom:23.050829pt;}
.y38e{bottom:23.210904pt;}
.y36f{bottom:23.691130pt;}
.y396{bottom:23.731148pt;}
.y362{bottom:23.851205pt;}
.y360{bottom:24.358110pt;}
.y34d{bottom:24.491506pt;}
.y365{bottom:24.971731pt;}
.y390{bottom:25.131806pt;}
.y367{bottom:25.612032pt;}
.y350{bottom:26.252333pt;}
.y375{bottom:26.892634pt;}
.y36c{bottom:26.932652pt;}
.y380{bottom:27.372859pt;}
.y369{bottom:27.532934pt;}
.y341{bottom:30.414288pt;}
.y346{bottom:31.534814pt;}
.y378{bottom:32.175115pt;}
.y1c5{bottom:32.665563pt;}
.y37b{bottom:32.815416pt;}
.y379{bottom:34.096018pt;}
.y34c{bottom:42.419928pt;}
.y34f{bottom:44.180755pt;}
.y1d4{bottom:47.672975pt;}
.y28f{bottom:50.655914pt;}
.y1cd{bottom:51.078599pt;}
.y345{bottom:51.384139pt;}
.y348{bottom:53.305042pt;}
.y2df{bottom:56.439848pt;}
.y1d3{bottom:56.767848pt;}
.y1c4{bottom:56.849191pt;}
.y5{bottom:59.133337pt;}
.y1cc{bottom:60.823184pt;}
.y28e{bottom:67.623885pt;}
.y1d1{bottom:67.987417pt;}
.y68{bottom:72.800000pt;}
.y1ca{bottom:72.844248pt;}
.y288{bottom:75.411427pt;}
.y4{bottom:86.333337pt;}
.y287{bottom:89.754165pt;}
.ya7{bottom:96.000000pt;}
.y286{bottom:104.227631pt;}
.y67{bottom:107.516800pt;}
.y377{bottom:108.282986pt;}
.y285{bottom:118.682421pt;}
.y21{bottom:123.790666pt;}
.y33f{bottom:126.371483pt;}
.y1c7{bottom:132.327130pt;}
.y284{bottom:133.025159pt;}
.y17d{bottom:135.850667pt;}
.y15c{bottom:138.908000pt;}
.y251{bottom:139.233333pt;}
.ya6{bottom:139.476000pt;}
.y11f{bottom:140.306667pt;}
.y1f8{bottom:141.174667pt;}
.y231{bottom:146.053333pt;}
.y33e{bottom:147.047863pt;}
.y283{bottom:147.479950pt;}
.y3d7{bottom:150.547467pt;}
.ye7{bottom:150.561333pt;}
.y13e{bottom:153.376000pt;}
.y211{bottom:154.704000pt;}
.y376{bottom:156.972526pt;}
.y1f7{bottom:157.116000pt;}
.y26f{bottom:158.228000pt;}
.y250{bottom:158.494667pt;}
.y15b{bottom:158.689333pt;}
.y17c{bottom:159.753333pt;}
.y39f{bottom:159.853879pt;}
.y11e{bottom:160.088000pt;}
.y66{bottom:161.117200pt;}
.y282{bottom:161.934740pt;}
.ya5{bottom:163.378667pt;}
.y3d6{bottom:165.956533pt;}
.y1d2{bottom:166.008302pt;}
.y325{bottom:166.416962pt;}
.y33d{bottom:167.537489pt;}
.y230{bottom:169.956000pt;}
.ye6{bottom:171.322667pt;}
.y13d{bottom:173.157333pt;}
.y18{bottom:175.052000pt;}
.y1c3{bottom:175.270667pt;}
.y210{bottom:175.464000pt;}
.y281{bottom:176.277478pt;}
.y65{bottom:177.197200pt;}
.y1cb{bottom:177.867472pt;}
.y1f6{bottom:177.876000pt;}
.y15a{bottom:178.470667pt;}
.y11d{bottom:179.870667pt;}
.y3d5{bottom:181.365600pt;}
.ye5{bottom:182.442667pt;}
.yff{bottom:182.985333pt;}
.y39c{bottom:183.224858pt;}
.y1d0{bottom:183.462667pt;}
.y17b{bottom:183.656000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y324{bottom:187.066663pt;}
.ya4{bottom:187.282667pt;}
.y373{bottom:187.546889pt;}
.y33c{bottom:188.187190pt;}
.y280{bottom:190.732269pt;}
.y24f{bottom:191.038667pt;}
.y3f2{bottom:192.270667pt;}
.y64{bottom:192.397600pt;}
.y13c{bottom:192.940000pt;}
.y22f{bottom:193.858667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y159{bottom:198.253333pt;}
.ye4{bottom:198.382667pt;}
.y304{bottom:198.752153pt;}
.y20f{bottom:199.248000pt;}
.y3d4{bottom:199.325067pt;}
.y11c{bottom:199.652000pt;}
.y1f5{bottom:201.660000pt;}
.yc6{bottom:203.068000pt;}
.yfe{bottom:203.745333pt;}
.y2c3{bottom:204.835010pt;}
.y3f1{bottom:204.889333pt;}
.y27f{bottom:205.187059pt;}
.y84{bottom:205.490667pt;}
.y39b{bottom:206.595838pt;}
.y17a{bottom:207.560000pt;}
.y323{bottom:207.716364pt;}
.y63{bottom:208.477600pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y33b{bottom:208.836890pt;}
.y24e{bottom:210.300000pt;}
.ya3{bottom:211.185333pt;}
.y13b{bottom:212.721333pt;}
.y3d3{bottom:214.734133pt;}
.y303{bottom:216.680575pt;}
.y27e{bottom:216.728481pt;}
.y22e{bottom:217.762667pt;}
.ye3{bottom:219.144000pt;}
.y11b{bottom:219.433333pt;}
.yfd{bottom:219.685333pt;}
.y83{bottom:221.430667pt;}
.y2c2{bottom:222.763433pt;}
.y20e{bottom:223.150667pt;}
.y62{bottom:224.557600pt;}
.y1f4{bottom:225.562667pt;}
.y26e{bottom:226.085333pt;}
.yc5{bottom:226.970667pt;}
.y322{bottom:228.205990pt;}
.y372{bottom:229.006366pt;}
.y33a{bottom:229.326516pt;}
.y24d{bottom:229.561333pt;}
.y3f0{bottom:230.634634pt;}
.yfc{bottom:230.805333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y179{bottom:231.462667pt;}
.y302{bottom:234.608998pt;}
.ya2{bottom:235.088000pt;}
.y39a{bottom:237.170201pt;}
.y82{bottom:237.370667pt;}
.y32{bottom:238.960000pt;}
.y2c1{bottom:240.691855pt;}
.y61{bottom:240.718000pt;}
.y22d{bottom:241.665333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ye2{bottom:242.926667pt;}
.y26d{bottom:245.346667pt;}
.y3d2{bottom:245.551200pt;}
.y3ef{bottom:246.228032pt;}
.y20d{bottom:247.053333pt;}
.y321{bottom:248.855690pt;}
.y1f3{bottom:249.465333pt;}
.y45{bottom:249.520000pt;}
.y339{bottom:249.976217pt;}
.yc4{bottom:250.873333pt;}
.yfb{bottom:251.566667pt;}
.y301{bottom:252.537420pt;}
.y158{bottom:252.564000pt;}
.y81{bottom:253.310667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y178{bottom:255.365333pt;}
.y60{bottom:256.798000pt;}
.y2c0{bottom:258.620278pt;}
.ya1{bottom:258.990667pt;}
.y31{bottom:259.360000pt;}
.y3d1{bottom:260.960267pt;}
.y24c{bottom:262.105333pt;}
.yfa{bottom:262.686667pt;}
.y26c{bottom:264.608000pt;}
.y22c{bottom:265.568000pt;}
.y19a{bottom:266.730667pt;}
.ye1{bottom:266.829333pt;}
.y13a{bottom:267.033333pt;}
.y80{bottom:269.250667pt;}
.y320{bottom:269.505391pt;}
.y44{bottom:269.920000pt;}
.y300{bottom:270.465842pt;}
.y338{bottom:270.625918pt;}
.y20c{bottom:270.956000pt;}
.y371{bottom:271.106143pt;}
.y5f{bottom:271.998400pt;}
.y1f2{bottom:273.368000pt;}
.y11a{bottom:273.745333pt;}
.yc3{bottom:274.776000pt;}
.y399{bottom:275.588249pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y157{bottom:276.468000pt;}
.y2bf{bottom:276.548700pt;}
.y3ee{bottom:277.414827pt;}
.y2dd{bottom:277.829302pt;}
.y177{bottom:279.268000pt;}
.y30{bottom:279.760000pt;}
.y24b{bottom:281.366667pt;}
.y3d0{bottom:282.509067pt;}
.ya0{bottom:282.894667pt;}
.yf9{bottom:283.446667pt;}
.y7f{bottom:285.190667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y5e{bottom:287.198800pt;}
.y2ff{bottom:288.394265pt;}
.y22b{bottom:289.470667pt;}
.y31f{bottom:289.995017pt;}
.y43{bottom:290.240000pt;}
.y199{bottom:290.634667pt;}
.ye0{bottom:290.732000pt;}
.y139{bottom:290.936000pt;}
.y337{bottom:291.275618pt;}
.y3ed{bottom:293.008225pt;}
.y2be{bottom:294.477122pt;}
.y20b{bottom:294.860000pt;}
.y2dc{bottom:295.757724pt;}
.y2e{bottom:295.760000pt;}
.y1d5{bottom:296.416384pt;}
.y26b{bottom:297.152000pt;}
.y119{bottom:297.648000pt;}
.yc2{bottom:298.678667pt;}
.y2d{bottom:300.080000pt;}
.y156{bottom:300.370667pt;}
.y7e{bottom:301.130667pt;}
.y36e{bottom:301.680506pt;}
.y5d{bottom:302.399200pt;}
.y176{bottom:303.172000pt;}
.y42{bottom:306.320000pt;}
.y2fe{bottom:306.322687pt;}
.y9f{bottom:306.797333pt;}
.yf8{bottom:308.116000pt;}
.yf{bottom:309.452000pt;}
.y41{bottom:310.640000pt;}
.y31e{bottom:310.644718pt;}
.y336{bottom:311.765244pt;}
.y2bd{bottom:312.405545pt;}
.y22a{bottom:313.373333pt;}
.y2db{bottom:313.526071pt;}
.y24a{bottom:313.912000pt;}
.y198{bottom:314.537333pt;}
.ydf{bottom:314.636000pt;}
.y3ec{bottom:314.813723pt;}
.y138{bottom:314.838667pt;}
.y26a{bottom:316.413333pt;}
.y7d{bottom:317.070667pt;}
.y5c{bottom:317.519200pt;}
.y397{bottom:317.527951pt;}
.y1ce{bottom:317.591542pt;}
.y1f1{bottom:317.934667pt;}
.y20a{bottom:318.762667pt;}
.y118{bottom:321.550667pt;}
.yc1{bottom:322.582667pt;}
.y2fd{bottom:324.091034pt;}
.y155{bottom:324.273333pt;}
.y175{bottom:327.074667pt;}
.y3cf{bottom:328.735200pt;}
.y2bc{bottom:330.173892pt;}
.y1f0{bottom:330.554667pt;}
.y9e{bottom:330.700000pt;}
.y31d{bottom:331.294418pt;}
.y2da{bottom:331.454494pt;}
.yf7{bottom:332.018667pt;}
.y335{bottom:332.414945pt;}
.y5b{bottom:332.719600pt;}
.y7c{bottom:333.010667pt;}
.y249{bottom:333.173333pt;}
.y229{bottom:337.277333pt;}
.y197{bottom:338.440000pt;}
.yde{bottom:338.538667pt;}
.y1b1{bottom:338.942667pt;}
.y36b{bottom:341.859382pt;}
.y2fc{bottom:342.019457pt;}
.y1ef{bottom:343.173333pt;}
.ye{bottom:343.809333pt;}
.y3ce{bottom:344.144267pt;}
.y393{bottom:345.220961pt;}
.y117{bottom:345.454667pt;}
.yc0{bottom:346.485333pt;}
.y2a3{bottom:346.661638pt;}
.y2bb{bottom:348.102314pt;}
.y154{bottom:348.176000pt;}
.y5a{bottom:348.799600pt;}
.y7b{bottom:348.950667pt;}
.y269{bottom:348.958667pt;}
.y2d9{bottom:349.422935pt;}
.y174{bottom:350.977333pt;}
.y31c{bottom:351.824063pt;}
.y334{bottom:353.104664pt;}
.y9d{bottom:354.602667pt;}
.y1ee{bottom:355.793333pt;}
.yf6{bottom:355.921333pt;}
.y2fb{bottom:359.987898pt;}
.y209{bottom:360.229333pt;}
.y137{bottom:360.706667pt;}
.y228{bottom:361.180000pt;}
.y3eb{bottom:361.593916pt;}
.y196{bottom:362.342667pt;}
.ydd{bottom:362.441333pt;}
.yd{bottom:362.706666pt;}
.y1b0{bottom:362.845333pt;}
.y59{bottom:364.960000pt;}
.y3cd{bottom:365.693067pt;}
.y248{bottom:365.717333pt;}
.y2ba{bottom:366.070756pt;}
.y2a2{bottom:367.191282pt;}
.y2d8{bottom:367.351357pt;}
.y268{bottom:368.218667pt;}
.y116{bottom:369.357333pt;}
.ybf{bottom:370.388000pt;}
.y31b{bottom:372.473764pt;}
.y208{bottom:372.848000pt;}
.y333{bottom:373.594290pt;}
.y36{bottom:374.160000pt;}
.y173{bottom:374.880000pt;}
.y3ea{bottom:377.187313pt;}
.y2fa{bottom:377.916320pt;}
.y9c{bottom:378.505333pt;}
.yf5{bottom:379.824000pt;}
.y1ed{bottom:379.993357pt;}
.y58{bottom:380.080000pt;}
.y136{bottom:380.489333pt;}
.y36a{bottom:383.358877pt;}
.y391{bottom:383.518952pt;}
.y2b9{bottom:383.999178pt;}
.y2d7{bottom:385.279780pt;}
.y195{bottom:386.246667pt;}
.ydc{bottom:386.344000pt;}
.y1af{bottom:386.748000pt;}
.y1ec{bottom:392.267178pt;}
.y31a{bottom:393.123464pt;}
.y115{bottom:393.260000pt;}
.y153{bottom:394.045333pt;}
.y332{bottom:394.243991pt;}
.ybe{bottom:394.290667pt;}
.y35{bottom:394.480000pt;}
.y2a1{bottom:394.564141pt;}
.y57{bottom:395.280000pt;}
.y2f9{bottom:395.844743pt;}
.y247{bottom:398.262667pt;}
.y207{bottom:398.352917pt;}
.y172{bottom:398.782667pt;}
.y3e9{bottom:398.992812pt;}
.y267{bottom:400.764000pt;}
.y227{bottom:400.868000pt;}
.y2b8{bottom:401.927600pt;}
.y9b{bottom:402.409333pt;}
.y27d{bottom:403.454868pt;}
.y135{bottom:403.592000pt;}
.yf4{bottom:403.728000pt;}
.y1eb{bottom:404.541847pt;}
.y38d{bottom:407.530232pt;}
.y2d6{bottom:408.330608pt;}
.y194{bottom:410.149333pt;}
.ydb{bottom:410.248000pt;}
.y56{bottom:410.400000pt;}
.y1ae{bottom:410.650667pt;}
.y3cc{bottom:411.919200pt;}
.y206{bottom:413.427141pt;}
.y319{bottom:413.613090pt;}
.y2f8{bottom:413.773165pt;}
.y366{bottom:413.933240pt;}
.y331{bottom:414.893692pt;}
.y1ea{bottom:416.816517pt;}
.y152{bottom:417.148000pt;}
.y246{bottom:417.522667pt;}
.y27c{bottom:417.909659pt;}
.ybd{bottom:418.194667pt;}
.y2b7{bottom:419.856023pt;}
.y266{bottom:420.025333pt;}
.y2a0{bottom:421.776925pt;}
.y171{bottom:422.686667pt;}
.y134{bottom:423.373333pt;}
.y7a{bottom:424.205333pt;}
.y2d5{bottom:426.259031pt;}
.y9a{bottom:426.312000pt;}
.y3cb{bottom:427.328267pt;}
.yf3{bottom:427.630667pt;}
.y2f7{bottom:431.701588pt;}
.y27b{bottom:432.364449pt;}
.y193{bottom:434.052000pt;}
.yda{bottom:434.150667pt;}
.y318{bottom:434.262791pt;}
.y1ad{bottom:434.554667pt;}
.y330{bottom:435.383317pt;}
.y2b6{bottom:437.784445pt;}
.y114{bottom:439.128000pt;}
.y1e9{bottom:441.365857pt;}
.y151{bottom:441.578667pt;}
.ybc{bottom:442.097333pt;}
.y79{bottom:442.270667pt;}
.y205{bottom:443.577677pt;}
.y2d4{bottom:444.187453pt;}
.y55{bottom:445.040000pt;}
.y3e8{bottom:445.773004pt;}
.y133{bottom:446.476000pt;}
.y170{bottom:446.589333pt;}
.y27a{bottom:446.707187pt;}
.yc{bottom:446.990669pt;}
.y38c{bottom:447.228882pt;}
.y3ca{bottom:448.877067pt;}
.y29f{bottom:448.989709pt;}
.y2f6{bottom:449.630010pt;}
.y245{bottom:450.068000pt;}
.y99{bottom:450.214667pt;}
.yf2{bottom:451.533333pt;}
.y265{bottom:452.569333pt;}
.y1e8{bottom:453.639677pt;}
.y317{bottom:454.912492pt;}
.y2b5{bottom:455.712868pt;}
.y32f{bottom:456.033018pt;}
.y192{bottom:457.954667pt;}
.yd9{bottom:458.053333pt;}
.y1ac{bottom:458.457333pt;}
.y204{bottom:458.652945pt;}
.y113{bottom:458.910667pt;}
.y78{bottom:460.336000pt;}
.y226{bottom:461.156000pt;}
.y150{bottom:461.360000pt;}
.y3e7{bottom:461.365323pt;}
.y2d3{bottom:462.115876pt;}
.yb{bottom:462.990669pt;}
.y279{bottom:463.290978pt;}
.y1e7{bottom:465.914347pt;}
.ybb{bottom:466.000000pt;}
.y132{bottom:466.257333pt;}
.y2f5{bottom:467.558432pt;}
.y244{bottom:469.329333pt;}
.y16f{bottom:470.492000pt;}
.y2b{bottom:471.282232pt;}
.y264{bottom:471.830667pt;}
.y2b4{bottom:473.641290pt;}
.y98{bottom:474.117333pt;}
.y316{bottom:475.402117pt;}
.yf1{bottom:475.436000pt;}
.y29e{bottom:476.362568pt;}
.y1e6{bottom:478.189017pt;}
.ya{bottom:478.990666pt;}
.y203{bottom:479.733900pt;}
.y14f{bottom:481.142667pt;}
.yd8{bottom:481.956000pt;}
.y112{bottom:482.013333pt;}
.y278{bottom:482.115821pt;}
.y1ab{bottom:482.360000pt;}
.y3e6{bottom:483.171900pt;}
.y3b8{bottom:485.004000pt;}
.y225{bottom:485.058667pt;}
.y2d2{bottom:485.166704pt;}
.y2f4{bottom:485.486855pt;}
.y38b{bottom:485.646930pt;}
.y131{bottom:489.360000pt;}
.yba{bottom:489.902667pt;}
.y32e{bottom:492.690239pt;}
.y1e5{bottom:494.837059pt;}
.y9{bottom:494.990666pt;}
.y3c9{bottom:495.103200pt;}
.y361{bottom:495.571592pt;}
.y315{bottom:496.051818pt;}
.y277{bottom:496.570612pt;}
.y97{bottom:498.021333pt;}
.y2a{bottom:498.881488pt;}
.yf0{bottom:499.340000pt;}
.y191{bottom:500.012000pt;}
.y14e{bottom:500.924000pt;}
.y243{bottom:501.873333pt;}
.y2d1{bottom:502.935052pt;}
.y2f3{bottom:503.255202pt;}
.y29d{bottom:503.575352pt;}
.y263{bottom:504.374667pt;}
.y3b7{bottom:504.796000pt;}
.y111{bottom:505.116000pt;}
.yd7{bottom:505.860000pt;}
.y1aa{bottom:506.262667pt;}
.y1e4{bottom:507.111728pt;}
.y77{bottom:508.422667pt;}
.y40{bottom:508.801488pt;}
.y224{bottom:508.961333pt;}
.y2b3{bottom:510.298511pt;}
.y3c8{bottom:510.512267pt;}
.y130{bottom:512.462667pt;}
.y190{bottom:512.632000pt;}
.yb9{bottom:513.806667pt;}
.y276{bottom:514.947245pt;}
.y202{bottom:515.255639pt;}
.y314{bottom:516.701519pt;}
.y16e{bottom:518.298667pt;}
.y1e3{bottom:519.386398pt;}
.y14d{bottom:520.705333pt;}
.y242{bottom:521.134667pt;}
.y2f2{bottom:521.183624pt;}
.y96{bottom:521.924000pt;}
.yef{bottom:523.242667pt;}
.y262{bottom:523.636000pt;}
.y3b6{bottom:524.057333pt;}
.y110{bottom:524.897333pt;}
.y38a{bottom:525.185504pt;}
.y18f{bottom:525.250667pt;}
.y2d0{bottom:525.985880pt;}
.y29{bottom:526.480744pt;}
.y76{bottom:526.488000pt;}
.yd6{bottom:529.762667pt;}
.y3e5{bottom:529.952093pt;}
.y1a9{bottom:530.166667pt;}
.y201{bottom:530.330907pt;}
.y29c{bottom:530.788136pt;}
.y3c7{bottom:532.060000pt;}
.y12f{bottom:532.245333pt;}
.y223{bottom:532.865333pt;}
.y35d{bottom:533.989640pt;}
.y275{bottom:536.041154pt;}
.y3f{bottom:536.400744pt;}
.y313{bottom:537.191144pt;}
.yb8{bottom:537.709333pt;}
.y2f1{bottom:539.112047pt;}
.y1c9{bottom:539.468000pt;}
.y14c{bottom:540.488000pt;}
.y16d{bottom:542.201333pt;}
.y3b5{bottom:543.318667pt;}
.y2cf{bottom:543.914303pt;}
.y75{bottom:544.553333pt;}
.y10f{bottom:544.678667pt;}
.y32d{bottom:545.194904pt;}
.y3e4{bottom:545.544411pt;}
.y95{bottom:545.826667pt;}
.yee{bottom:547.145333pt;}
.y26{bottom:548.320000pt;}
.y1e2{bottom:549.072000pt;}
.y12e{bottom:552.026667pt;}
.yd5{bottom:553.665333pt;}
.y241{bottom:553.678667pt;}
.y1a8{bottom:554.069333pt;}
.y28{bottom:554.080000pt;}
.y261{bottom:556.181333pt;}
.y222{bottom:556.768000pt;}
.y2f0{bottom:557.067148pt;}
.y274{bottom:557.219103pt;}
.y1c2{bottom:557.402667pt;}
.y312{bottom:557.867524pt;}
.y29b{bottom:558.187675pt;}
.y3d{bottom:558.240000pt;}
.y18e{bottom:559.953467pt;}
.y2b2{bottom:560.108577pt;}
.y14b{bottom:560.269333pt;}
.yb7{bottom:561.612000pt;}
.y2ce{bottom:561.869404pt;}
.y3b4{bottom:562.580000pt;}
.y74{bottom:562.618667pt;}
.y387{bottom:563.630232pt;}
.y3e{bottom:564.000000pt;}
.y10e{bottom:564.461333pt;}
.y32c{bottom:565.871284pt;}
.y16c{bottom:566.104000pt;}
.y3e3{bottom:567.350989pt;}
.y94{bottom:569.729333pt;}
.yed{bottom:571.048000pt;}
.y35a{bottom:572.914593pt;}
.y240{bottom:572.940000pt;}
.y8{bottom:573.786667pt;}
.y2ef{bottom:574.995571pt;}
.y260{bottom:575.442667pt;}
.y273{bottom:577.276526pt;}
.y18d{bottom:577.288667pt;}
.yd4{bottom:577.568000pt;}
.y1a7{bottom:577.972000pt;}
.y2b1{bottom:578.037000pt;}
.y3c6{bottom:578.287200pt;}
.y14a{bottom:580.050667pt;}
.y221{bottom:580.670667pt;}
.y73{bottom:580.685333pt;}
.y1e1{bottom:581.150667pt;}
.y3b3{bottom:581.841333pt;}
.y10d{bottom:584.242667pt;}
.y2cd{bottom:584.920233pt;}
.y29a{bottom:585.400459pt;}
.yb6{bottom:585.514667pt;}
.y32b{bottom:586.520985pt;}
.y386{bottom:589.402339pt;}
.y16b{bottom:590.006667pt;}
.y23f{bottom:592.201333pt;}
.y7{bottom:592.685334pt;}
.y2ee{bottom:592.923993pt;}
.y93{bottom:593.633333pt;}
.y3c5{bottom:593.696267pt;}
.y311{bottom:594.524745pt;}
.y272{bottom:594.532632pt;}
.y18c{bottom:594.622667pt;}
.y25f{bottom:594.702667pt;}
.yec{bottom:594.952000pt;}
.y2b0{bottom:595.965422pt;}
.y200{bottom:598.498333pt;}
.y72{bottom:598.750667pt;}
.y3b2{bottom:601.101333pt;}
.yd3{bottom:601.472000pt;}
.y1a6{bottom:601.874667pt;}
.y2cc{bottom:602.848656pt;}
.y357{bottom:603.008731pt;}
.y10c{bottom:604.024000pt;}
.y220{bottom:604.573333pt;}
.y1e0{bottom:605.054667pt;}
.y12d{bottom:606.338667pt;}
.yb5{bottom:609.418667pt;}
.y2ed{bottom:610.852416pt;}
.y23e{bottom:611.462667pt;}
.y271{bottom:611.676686pt;}
.y18b{bottom:611.957867pt;}
.y299{bottom:612.613243pt;}
.y1ff{bottom:613.573601pt;}
.y2af{bottom:613.893844pt;}
.y16a{bottom:613.910667pt;}
.y3e2{bottom:614.130102pt;}
.y3c4{bottom:615.244000pt;}
.y71{bottom:616.816000pt;}
.y92{bottom:617.536000pt;}
.yeb{bottom:618.854667pt;}
.y3b1{bottom:620.362667pt;}
.y2cb{bottom:620.777078pt;}
.y32a{bottom:623.018131pt;}
.yd2{bottom:625.374667pt;}
.y1a5{bottom:625.778667pt;}
.y25e{bottom:627.248000pt;}
.y385{bottom:627.660312pt;}
.y2ec{bottom:628.780838pt;}
.y270{bottom:628.932793pt;}
.y1df{bottom:628.957333pt;}
.y18a{bottom:629.293067pt;}
.y3e1{bottom:629.723500pt;}
.y12c{bottom:630.241333pt;}
.y3c{bottom:630.400800pt;}
.y2ae{bottom:631.822267pt;}
.yb4{bottom:633.321333pt;}
.y354{bottom:633.583094pt;}
.y149{bottom:634.362667pt;}
.y70{bottom:634.881333pt;}
.y3b0{bottom:639.624000pt;}
.y298{bottom:639.986102pt;}
.y310{bottom:641.106628pt;}
.y91{bottom:641.438667pt;}
.yea{bottom:642.757333pt;}
.y1fe{bottom:643.723093pt;}
.y2ca{bottom:643.827907pt;}
.y23d{bottom:644.006667pt;}
.y6{bottom:645.598667pt;}
.y21f{bottom:646.040000pt;}
.y25d{bottom:646.509333pt;}
.y189{bottom:646.628267pt;}
.y2eb{bottom:646.709260pt;}
.yd1{bottom:649.277333pt;}
.y1a4{bottom:649.681333pt;}
.y2ad{bottom:649.750689pt;}
.y3e0{bottom:651.530077pt;}
.y1de{bottom:652.860000pt;}
.y6f{bottom:652.946667pt;}
.y12b{bottom:654.144000pt;}
.yb3{bottom:657.224000pt;}
.y169{bottom:657.229333pt;}
.y148{bottom:658.265333pt;}
.y10b{bottom:658.336000pt;}
.y21e{bottom:658.660000pt;}
.y1fd{bottom:658.798361pt;}
.y3af{bottom:658.885333pt;}
.y30f{bottom:659.675352pt;}
.y3b{bottom:660.160800pt;}
.y3c3{bottom:661.471200pt;}
.y2c9{bottom:661.756329pt;}
.y351{bottom:663.036931pt;}
.y23c{bottom:663.268000pt;}
.y2ea{bottom:664.637683pt;}
.y1c1{bottom:665.076000pt;}
.y90{bottom:665.341333pt;}
.y384{bottom:666.078360pt;}
.ye9{bottom:666.660000pt;}
.y297{bottom:667.198886pt;}
.y2ac{bottom:667.679112pt;}
.y3{bottom:668.977329pt;}
.y188{bottom:670.869467pt;}
.y6e{bottom:671.013333pt;}
.yd0{bottom:673.180000pt;}
.y1a3{bottom:673.584000pt;}
.y329{bottom:675.682872pt;}
.y1dd{bottom:676.762667pt;}
.y3c2{bottom:676.879200pt;}
.y168{bottom:677.012000pt;}
.y1c0{bottom:677.694667pt;}
.y12a{bottom:678.048000pt;}
.y3ae{bottom:678.146667pt;}
.y30e{bottom:678.244075pt;}
.y25c{bottom:679.053333pt;}
.y2c8{bottom:679.524676pt;}
.y1fc{bottom:679.880360pt;}
.y25{bottom:680.080000pt;}
.yb2{bottom:681.126667pt;}
.y147{bottom:682.168000pt;}
.y10a{bottom:682.238667pt;}
.y2e9{bottom:682.406030pt;}
.y21d{bottom:683.365373pt;}
.y296{bottom:686.567985pt;}
.y6d{bottom:689.078667pt;}
.y8f{bottom:689.245333pt;}
.y3a{bottom:690.000000pt;}
.y1bf{bottom:690.314667pt;}
.y34b{bottom:691.850467pt;}
.y187{bottom:695.111867pt;}
.y382{bottom:695.532196pt;}
.y23b{bottom:695.813333pt;}
.y328{bottom:696.332572pt;}
.y21c{bottom:696.725997pt;}
.y167{bottom:696.793333pt;}
.y30d{bottom:696.812798pt;}
.ycf{bottom:697.082667pt;}
.y3ad{bottom:697.406667pt;}
.y1a2{bottom:697.486667pt;}
.y3df{bottom:698.309191pt;}
.y25b{bottom:698.314667pt;}
.y3c1{bottom:698.428000pt;}
.y54{bottom:700.319867pt;}
.y2e8{bottom:700.334452pt;}
.y1dc{bottom:700.666667pt;}
.ye8{bottom:700.858667pt;}
.y129{bottom:701.950667pt;}
.y1be{bottom:702.933333pt;}
.y2ab{bottom:704.176257pt;}
.yb1{bottom:705.029333pt;}
.y146{bottom:706.072000pt;}
.y109{bottom:706.142667pt;}
.y6c{bottom:707.144000pt;}
.y21b{bottom:710.086621pt;}
.y186{bottom:712.447067pt;}
.y8e{bottom:713.148000pt;}
.y3de{bottom:713.902588pt;}
.y3a3{bottom:715.061371pt;}
.y23a{bottom:715.074667pt;}
.y30a{bottom:715.381521pt;}
.y1fb{bottom:715.402099pt;}
.y2c7{bottom:716.341972pt;}
.y3ac{bottom:716.668000pt;}
.y327{bottom:716.822198pt;}
.y25a{bottom:717.576000pt;}
.y2e7{bottom:718.262875pt;}
.y166{bottom:719.046667pt;}
.y53{bottom:720.079867pt;}
.yce{bottom:720.986667pt;}
.y1a1{bottom:721.390667pt;}
.y2aa{bottom:722.104680pt;}
.y295{bottom:723.225206pt;}
.y21a{bottom:723.447245pt;}
.y1db{bottom:724.569333pt;}
.y6b{bottom:725.209333pt;}
.y381{bottom:725.466259pt;}
.y128{bottom:725.853333pt;}
.y1bd{bottom:727.533379pt;}
.yb0{bottom:728.933333pt;}
.y185{bottom:729.782267pt;}
.y145{bottom:729.974667pt;}
.y108{bottom:730.045333pt;}
.y1fa{bottom:730.477366pt;}
.y239{bottom:734.334667pt;}
.y3a2{bottom:735.550996pt;}
.y3dd{bottom:735.709166pt;}
.y3ab{bottom:735.929333pt;}
.y2e6{bottom:736.191297pt;}
.y8d{bottom:737.050667pt;}
.y24{bottom:737.839720pt;}
.y165{bottom:738.828000pt;}
.y52{bottom:739.599867pt;}
.y1bc{bottom:740.665948pt;}
.y6a{bottom:743.274667pt;}
.y3c0{bottom:744.655200pt;}
.ycd{bottom:744.889333pt;}
.y1a0{bottom:745.293333pt;}
.y184{bottom:747.116267pt;}
.y39{bottom:747.759720pt;}
.y1da{bottom:748.472000pt;}
.y127{bottom:749.756000pt;}
.y259{bottom:750.120000pt;}
.y219{bottom:750.167568pt;}
.y349{bottom:750.598065pt;}
.yaf{bottom:752.836000pt;}
.y326{bottom:753.519438pt;}
.y1bb{bottom:753.797609pt;}
.y2e5{bottom:754.159738pt;}
.y3aa{bottom:755.190667pt;}
.y3a1{bottom:757.041092pt;}
.y2c6{bottom:758.321694pt;}
.y164{bottom:758.609333pt;}
.y309{bottom:758.641844pt;}
.y2a9{bottom:758.801919pt;}
.y51{bottom:759.119867pt;}
.y3bf{bottom:760.063200pt;}
.y8c{bottom:760.953333pt;}
.y218{bottom:763.528192pt;}
.y37f{bottom:763.924326pt;}
.y183{bottom:764.451467pt;}
.y1f9{bottom:765.462667pt;}
.y238{bottom:766.880000pt;}
.y1ba{bottom:766.930179pt;}
.y107{bottom:767.729333pt;}
.y294{bottom:767.766130pt;}
.ycc{bottom:768.792000pt;}
.y19f{bottom:769.196000pt;}
.y258{bottom:769.381333pt;}
.y69{bottom:770.245333pt;}
.y2e4{bottom:772.088161pt;}
.y1d9{bottom:772.374667pt;}
.y23{bottom:773.999496pt;}
.y3a9{bottom:774.452000pt;}
.y144{bottom:775.842667pt;}
.y2c5{bottom:776.250116pt;}
.yae{bottom:776.738667pt;}
.y217{bottom:776.888816pt;}
.y3a0{bottom:778.491169pt;}
.y50{bottom:778.559867pt;}
.y308{bottom:779.291545pt;}
.y344{bottom:780.732222pt;}
.y163{bottom:780.862667pt;}
.y3be{bottom:781.612000pt;}
.y2{bottom:781.661334pt;}
.y182{bottom:781.786667pt;}
.y3dc{bottom:782.488279pt;}
.y38{bottom:783.919496pt;}
.y8b{bottom:784.856000pt;}
.y237{bottom:786.141333pt;}
.y257{bottom:788.642667pt;}
.y2c4{bottom:790.016583pt;}
.y2de{bottom:790.043262pt;}
.y216{bottom:790.249440pt;}
.ycb{bottom:792.694667pt;}
.y19e{bottom:793.098667pt;}
.y1b9{bottom:793.195318pt;}
.y3a8{bottom:793.712000pt;}
.y106{bottom:794.153333pt;}
.y126{bottom:795.625333pt;}
.y1d8{bottom:796.277333pt;}
.y4f{bottom:798.079867pt;}
.y3db{bottom:798.081677pt;}
.y143{bottom:798.945333pt;}
.y307{bottom:799.781170pt;}
.yad{bottom:800.641333pt;}
.y162{bottom:800.645333pt;}
.y37e{bottom:805.864028pt;}
.y181{bottom:806.029067pt;}
.y1b8{bottom:806.327888pt;}
.y2e3{bottom:807.945006pt;}
.y215{bottom:808.370352pt;}
.y2a8{bottom:808.745382pt;}
.y8a{bottom:808.760000pt;}
.y22{bottom:810.080000pt;}
.y293{bottom:812.427111pt;}
.y3a7{bottom:813.505333pt;}
.y125{bottom:815.406667pt;}
.yca{bottom:816.598667pt;}
.y19d{bottom:817.001333pt;}
.y4e{bottom:817.839867pt;}
.y236{bottom:818.685333pt;}
.y142{bottom:818.728000pt;}
.y1b7{bottom:819.459548pt;}
.y3da{bottom:819.888255pt;}
.y37{bottom:820.000000pt;}
.y161{bottom:820.426667pt;}
.y306{bottom:820.430871pt;}
.y105{bottom:820.576000pt;}
.y256{bottom:821.186667pt;}
.y214{bottom:821.730976pt;}
.yac{bottom:824.545333pt;}
.y2e2{bottom:825.873428pt;}
.y2a7{bottom:826.673804pt;}
.y3bd{bottom:827.838133pt;}
.y1b6{bottom:832.592118pt;}
.y89{bottom:832.662667pt;}
.y3a6{bottom:833.297333pt;}
.y180{bottom:833.578667pt;}
.y213{bottom:835.090675pt;}
.y124{bottom:835.188000pt;}
.y1d7{bottom:835.966667pt;}
.y4d{bottom:837.679867pt;}
.y235{bottom:837.946667pt;}
.y141{bottom:838.509333pt;}
.y255{bottom:840.448000pt;}
.yc9{bottom:840.501333pt;}
.y305{bottom:841.080572pt;}
.y160{bottom:842.680000pt;}
.y3bc{bottom:843.247200pt;}
.y2e1{bottom:843.801850pt;}
.y37c{bottom:844.282076pt;}
.y2a6{bottom:844.442151pt;}
.y104{bottom:847.000000pt;}
.yab{bottom:848.448000pt;}
.y343{bottom:848.604106pt;}
.y1b5{bottom:850.404631pt;}
.y17f{bottom:850.913867pt;}
.y28b{bottom:855.546667pt;}
.y88{bottom:856.565333pt;}
.y19c{bottom:856.601333pt;}
.y3d9{bottom:856.630859pt;}
.y292{bottom:857.088092pt;}
.y4c{bottom:857.439867pt;}
.y123{bottom:858.290667pt;}
.y1{bottom:859.312000pt;}
.y19b{bottom:860.686667pt;}
.y2e0{bottom:861.570198pt;}
.y2a5{bottom:862.370574pt;}
.y15f{bottom:862.461333pt;}
.y1b4{bottom:863.536292pt;}
.yc8{bottom:864.404000pt;}
.y37a{bottom:864.771702pt;}
.y3bb{bottom:864.796000pt;}
.y212{bottom:865.716000pt;}
.y340{bottom:867.172830pt;}
.y3a5{bottom:869.030667pt;}
.y234{bottom:870.490667pt;}
.yaa{bottom:872.350667pt;}
.y254{bottom:872.993333pt;}
.y103{bottom:873.424000pt;}
.y28a{bottom:874.808000pt;}
.y1b3{bottom:876.668862pt;}
.y4b{bottom:876.959867pt;}
.y291{bottom:877.577718pt;}
.y122{bottom:878.073333pt;}
.y2a4{bottom:880.298996pt;}
.y87{bottom:880.468000pt;}
.y140{bottom:881.393333pt;}
.y15e{bottom:882.242667pt;}
.y17e{bottom:884.977333pt;}
.y233{bottom:889.752000pt;}
.y3d8{bottom:892.164000pt;}
.y253{bottom:892.254667pt;}
.ya9{bottom:896.253333pt;}
.y4a{bottom:896.719867pt;}
.y290{bottom:898.227418pt;}
.yc7{bottom:898.601333pt;}
.y1c8{bottom:898.905333pt;}
.y102{bottom:899.846667pt;}
.y3ba{bottom:901.104267pt;}
.y121{bottom:901.176000pt;}
.y289{bottom:904.364000pt;}
.y86{bottom:904.372000pt;}
.y15d{bottom:904.496000pt;}
.y1b2{bottom:907.097333pt;}
.y232{bottom:909.013333pt;}
.y3a4{bottom:914.504000pt;}
.y49{bottom:916.479867pt;}
.ya8{bottom:920.157333pt;}
.y120{bottom:920.957333pt;}
.y13f{bottom:924.278667pt;}
.y252{bottom:924.798667pt;}
.y2c{bottom:929.680000pt;}
.y101{bottom:930.256000pt;}
.y48{bottom:936.239867pt;}
.y3b9{bottom:936.444000pt;}
.y85{bottom:944.060000pt;}
.y100{bottom:950.037333pt;}
.y47{bottom:955.999867pt;}
.y28d{bottom:971.088314pt;}
.y46{bottom:975.759867pt;}
.y28c{bottom:994.459293pt;}
.y34{bottom:1020.720000pt;}
.y33{bottom:1054.720000pt;}
.h12{height:3.625781pt;}
.h46{height:17.928422pt;}
.h32{height:19.300253pt;}
.h58{height:19.849325pt;}
.h14{height:20.640000pt;}
.h2e{height:20.679009pt;}
.h11{height:20.720000pt;}
.h61{height:22.730678pt;}
.h5f{height:23.370979pt;}
.h33{height:24.115368pt;}
.h5c{height:25.131806pt;}
.h20{height:25.142874pt;}
.h2f{height:25.838102pt;}
.hd{height:27.040000pt;}
.h60{height:27.052709pt;}
.h2b{height:27.560837pt;}
.h4b{height:28.173235pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h4c{height:28.813536pt;}
.h5a{height:29.293762pt;}
.h2c{height:29.380034pt;}
.h4e{height:29.453837pt;}
.h49{height:29.485852pt;}
.h4d{height:29.934062pt;}
.h35{height:30.474761pt;}
.h26{height:31.880400pt;}
.h34{height:32.153824pt;}
.h29{height:32.604700pt;}
.h38{height:33.170898pt;}
.h30{height:34.450803pt;}
.h37{height:34.932712pt;}
.h63{height:35.706197pt;}
.h17{height:35.835520pt;}
.h45{height:35.856845pt;}
.h65{height:36.133333pt;}
.h36{height:37.427906pt;}
.h5b{height:37.617672pt;}
.h5d{height:37.649687pt;}
.h50{height:37.777747pt;}
.h59{height:37.809762pt;}
.h62{height:38.256640pt;}
.h4f{height:38.289988pt;}
.h64{height:38.714285pt;}
.h51{height:38.898274pt;}
.h5e{height:39.058349pt;}
.h54{height:39.538574pt;}
.h21{height:39.850400pt;}
.h1a{height:39.852000pt;}
.h22{height:39.903534pt;}
.h25{height:40.169472pt;}
.h18{height:40.416000pt;}
.h55{height:40.819176pt;}
.h53{height:40.851191pt;}
.h7{height:40.853333pt;}
.h3a{height:41.013892pt;}
.h52{height:41.299402pt;}
.h3d{height:42.221960pt;}
.h13{height:42.656250pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h24{height:43.038720pt;}
.h19{height:43.636000pt;}
.h47{height:44.340830pt;}
.h23{height:44.632747pt;}
.h57{height:46.741958pt;}
.h1c{height:47.820800pt;}
.h56{height:48.054575pt;}
.h10{height:48.448000pt;}
.h2{height:49.024000pt;}
.hf{height:49.782080pt;}
.h15{height:50.368000pt;}
.h3b{height:52.158972pt;}
.h1d{height:53.559147pt;}
.h3c{height:53.695319pt;}
.h16{height:53.888000pt;}
.h44{height:53.962851pt;}
.h1f{height:55.016400pt;}
.h1e{height:55.021733pt;}
.h4a{height:58.107298pt;}
.h27{height:58.369100pt;}
.h41{height:58.591275pt;}
.h42{height:60.317086pt;}
.h3e{height:61.038268pt;}
.h3f{height:61.438863pt;}
.h28{height:64.162133pt;}
.h1b{height:64.270827pt;}
.he{height:64.678080pt;}
.h48{height:67.231584pt;}
.h5{height:69.450667pt;}
.hc{height:72.672000pt;}
.hb{height:88.902080pt;}
.h4{height:105.826671pt;}
.h43{height:122.137378pt;}
.h40{height:144.915578pt;}
.h31{height:317.683200pt;}
.h2d{height:340.377600pt;}
.h2a{height:363.072000pt;}
.h39{height:739.547424pt;}
.ha{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w12{width:141.052930pt;}
.wf{width:150.657442pt;}
.wc{width:150.977593pt;}
.w4{width:204.480000pt;}
.we{width:216.768500pt;}
.wb{width:217.408801pt;}
.w5{width:241.600000pt;}
.wd{width:254.386172pt;}
.wa{width:254.706322pt;}
.w8{width:436.814400pt;}
.w7{width:468.019200pt;}
.w11{width:481.252749pt;}
.w6{width:499.224000pt;}
.w2{width:566.928019pt;}
.w9{width:571.468455pt;}
.w10{width:623.106056pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x74{left:6.723158pt;}
.x31{left:17.230187pt;}
.xa{left:20.000000pt;}
.x45{left:22.778150pt;}
.x35{left:24.405358pt;}
.x44{left:30.712266pt;}
.x34{left:32.642897pt;}
.x36{left:38.567723pt;}
.x2c{left:41.421120pt;}
.x69{left:46.101658pt;}
.x6{left:50.560632pt;}
.x5{left:51.920000pt;}
.x72{left:53.465117pt;}
.x6f{left:54.900458pt;}
.x47{left:58.688525pt;}
.xc{left:61.040632pt;}
.xb{left:62.400000pt;}
.xe{left:63.360000pt;}
.x11{left:65.920000pt;}
.x7{left:67.520000pt;}
.x71{left:70.313032pt;}
.x37{left:74.753389pt;}
.xd{left:78.000000pt;}
.x6a{left:79.717450pt;}
.x46{left:87.522022pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x61{left:95.885135pt;}
.x8{left:96.880000pt;}
.x56{left:102.238402pt;}
.x66{left:104.043544pt;}
.x29{left:104.981710pt;}
.x83{left:106.664735pt;}
.x9{left:108.560000pt;}
.x62{left:110.612053pt;}
.x58{left:111.608000pt;}
.x15{left:113.950667pt;}
.x65{left:115.414309pt;}
.xf{left:120.000000pt;}
.x59{left:122.266675pt;}
.x7a{left:130.362667pt;}
.x2e{left:133.436160pt;}
.x14{left:135.020000pt;}
.x39{left:137.711766pt;}
.x19{left:141.389333pt;}
.x63{left:143.902359pt;}
.x38{left:146.212673pt;}
.x2d{left:147.362880pt;}
.x16{left:151.221333pt;}
.x13{left:156.838667pt;}
.x2b{left:158.398667pt;}
.x1a{left:159.524000pt;}
.x1b{left:161.280000pt;}
.x49{left:163.775992pt;}
.x51{left:166.193098pt;}
.x17{left:169.357333pt;}
.x48{left:171.710108pt;}
.x33{left:174.000000pt;}
.x18{left:178.917333pt;}
.x4{left:180.874667pt;}
.x32{left:182.917333pt;}
.x1c{left:186.057333pt;}
.x43{left:187.000000pt;}
.x3a{left:188.191488pt;}
.x27{left:189.921600pt;}
.x82{left:190.961482pt;}
.x57{left:192.003935pt;}
.x26{left:195.686076pt;}
.x4b{left:197.487476pt;}
.x28{left:198.819675pt;}
.x10{left:202.800293pt;}
.x5a{left:206.783801pt;}
.x79{left:209.753333pt;}
.x6b{left:212.934699pt;}
.x20{left:215.368000pt;}
.x6d{left:218.377256pt;}
.x73{left:223.019437pt;}
.x53{left:224.540758pt;}
.x77{left:227.386667pt;}
.x4a{left:228.519857pt;}
.x52{left:229.928663pt;}
.x54{left:232.857556pt;}
.x70{left:236.945979pt;}
.x5c{left:239.054961pt;}
.x25{left:246.914667pt;}
.x3c{left:251.018174pt;}
.x5f{left:255.474774pt;}
.x3b{left:258.509507pt;}
.x75{left:260.797184pt;}
.x2a{left:264.369333pt;}
.x3e{left:267.133353pt;}
.x5e{left:272.282670pt;}
.x2f{left:275.917096pt;}
.x5b{left:285.780912pt;}
.x6c{left:288.810344pt;}
.x78{left:293.414667pt;}
.x3d{left:300.985779pt;}
.x84{left:302.956316pt;}
.x4d{left:304.773834pt;}
.x4c{left:312.707950pt;}
.x4e{left:324.082489pt;}
.x1d{left:328.769333pt;}
.x7e{left:336.621867pt;}
.x50{left:338.485318pt;}
.x7f{left:343.323733pt;}
.x23{left:346.882667pt;}
.x67{left:351.239762pt;}
.x24{left:354.493333pt;}
.x80{left:358.775467pt;}
.x30{left:361.617590pt;}
.x3f{left:364.309951pt;}
.x1e{left:367.505200pt;}
.x4f{left:369.517699pt;}
.x21{left:372.773200pt;}
.x7c{left:374.233600pt;}
.x12{left:375.998667pt;}
.x40{left:378.647887pt;}
.x1f{left:381.748000pt;}
.x42{left:382.877193pt;}
.x7b{left:385.908267pt;}
.x81{left:390.808533pt;}
.x22{left:400.196000pt;}
.x3{left:404.408000pt;}
.x55{left:412.494007pt;}
.x41{left:414.760395pt;}
.x7d{left:428.166400pt;}
.x5d{left:504.330249pt;}
.x68{left:568.648563pt;}
.x6e{left:578.573225pt;}
.x76{left:677.859868pt;}
.x60{left:686.023703pt;}
.x64{left:746.211978pt;}
}




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