
    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_59cb8efca83ae9d638502603.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ef973574b209f374df2894e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_04980c3c7006506dee2ccd2b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9bd553c4f05d9ba69b654c11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.782000;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_dfbaaff1bd4bb2c210d323b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_abb4ec3a0e3c9b346628b05d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f6ce5104ae512c6766fc2ad3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_3fbc677c7a68a67639d3bbfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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_dad54b9f969c8d33fd098f6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959961;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_29d3a3dabb999774cb593ccd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.009766;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_665f398cb1e2148689cf3bed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908691;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_01a65cc02c8401df813c4788.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.799805;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_cfd0a4fbfa8734ca52ae98fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4e79afca46af54d9b3e2feea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959961;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_3d229b50481fa1a583cfde86.woff2')format("woff");}.fff{font-family:fff;line-height:1.009766;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_cfd0a4fbfa8734ca52ae98fd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_01a65cc02c8401df813c4788.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.799805;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_88beebd24e37255dd0a71a34.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4d0c1f85be063a3ed4abf49d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.009766;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_a83913b62e6ed1d9acc954d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999023;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_3c58708b8ba18b2f87eaeee6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.998047;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_b9e05504c13485027a4bbbc4.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_6a0ccdced6e97598b542777a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.921000;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_aedb6b31fe2d4791682c2cf4.woff2')format("woff");}.ff18{font-family:ff18;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;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_25ef00b635f29805f8b5eb8e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999023;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_3f6a538dfa70f667793f7219.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.703450;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_cb378fe91fc8cfce43ef90e6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.454000;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_0ea3f506d97f79266e4d5a3b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.665000;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_d7a2e16d8768c380618cf15d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.686000;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_d490980df23ef365b8b94bd1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.844000;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_e24f34f10925c865536239dc.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.440000;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_0c617baabea72c0a345bb514.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.740234;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_06bfd5cc7abc1617a03c4f13.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a02538eacc059d6d26b00d45.woff2')format("woff");}.ff24{font-family:ff24;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;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff27;src:url('chunks/assets/font_169996447e0648ec337c7a11.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.122000;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:ff28;src:url('chunks/assets/font_77d7b46e60b4d7bccccf0ad9.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.056000;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:ff29;src:url('chunks/assets/font_91c746504f00563de08509c2.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.191511,-0.160697,0.160697,0.191511,0,0);-ms-transform:matrix(0.191511,-0.160697,0.160697,0.191511,0,0);-webkit-transform:matrix(0.191511,-0.160697,0.160697,0.191511,0,0);}
.m4{transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248049,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);}
.v17{vertical-align:-48.420000px;}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-10.735445px;}
.v11{vertical-align:-8.970000px;}
.v15{vertical-align:-5.976000px;}
.v10{vertical-align:-1.418798px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.710755px;}
.v5{vertical-align:4.025763px;}
.vf{vertical-align:7.697697px;}
.va{vertical-align:12.039380px;}
.vd{vertical-align:13.249774px;}
.v8{vertical-align:16.064955px;}
.vc{vertical-align:19.075967px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v6{vertical-align:25.496657px;}
.v12{vertical-align:26.904000px;}
.ve{vertical-align:32.325744px;}
.vb{vertical-align:33.510273px;}
.v9{vertical-align:37.535849px;}
.v14{vertical-align:40.440000px;}
.v13{vertical-align:43.776000px;}
.v16{vertical-align:44.952000px;}
.v18{vertical-align:48.420000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000001px;}
.lsd{letter-spacing:0.000003px;}
.ls2{letter-spacing:0.000141px;}
.ls43{letter-spacing:0.000421px;}
.ls1e{letter-spacing:0.000479px;}
.lsa{letter-spacing:0.000538px;}
.ls1f{letter-spacing:0.000648px;}
.ls31{letter-spacing:0.000843px;}
.ls3e{letter-spacing:0.000993px;}
.ls4d{letter-spacing:0.001641px;}
.ls26{letter-spacing:0.002685px;}
.ls42{letter-spacing:0.002915px;}
.ls1c{letter-spacing:0.003031px;}
.ls17{letter-spacing:0.003269px;}
.ls3a{letter-spacing:0.004528px;}
.ls46{letter-spacing:0.004546px;}
.ls37{letter-spacing:0.006141px;}
.ls45{letter-spacing:0.006421px;}
.ls32{letter-spacing:0.006843px;}
.ls25{letter-spacing:1.660645px;}
.ls19{letter-spacing:2.144023px;}
.ls29{letter-spacing:2.144222px;}
.ls10{letter-spacing:2.371909px;}
.lsf{letter-spacing:2.385746px;}
.ls41{letter-spacing:2.391487px;}
.ls27{letter-spacing:2.624368px;}
.ls3b{letter-spacing:2.668328px;}
.ls50{letter-spacing:2.668393px;}
.ls39{letter-spacing:2.674328px;}
.ls4{letter-spacing:2.964877px;}
.ls3{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.987468px;}
.ls4e{letter-spacing:2.987675px;}
.ls35{letter-spacing:2.988017px;}
.lse{letter-spacing:2.988564px;}
.ls34{letter-spacing:2.988780px;}
.ls0{letter-spacing:2.990915px;}
.ls18{letter-spacing:4.100338px;}
.ls21{letter-spacing:8.304065px;}
.ls7{letter-spacing:9.715139px;}
.ls3c{letter-spacing:11.056528px;}
.ls38{letter-spacing:11.295056px;}
.ls24{letter-spacing:11.676538px;}
.ls1b{letter-spacing:13.278538px;}
.ls2b{letter-spacing:13.280338px;}
.ls28{letter-spacing:13.281269px;}
.ls2c{letter-spacing:13.284538px;}
.ls2d{letter-spacing:13.286338px;}
.ls1a{letter-spacing:13.287269px;}
.ls23{letter-spacing:14.666525px;}
.ls33{letter-spacing:15.068800px;}
.ls22{letter-spacing:15.525269px;}
.ls30{letter-spacing:16.268525px;}
.ls1d{letter-spacing:16.274525px;}
.ls20{letter-spacing:16.608538px;}
.ls4f{letter-spacing:19.190400px;}
.ls36{letter-spacing:20.880144px;}
.ls15{letter-spacing:22.305411px;}
.ls8{letter-spacing:23.388017px;}
.ls16{letter-spacing:24.365602px;}
.ls3f{letter-spacing:24.789031px;}
.ls51{letter-spacing:28.808400px;}
.ls5{letter-spacing:29.887409px;}
.ls9{letter-spacing:29.893409px;}
.ls14{letter-spacing:30.372065px;}
.ls3d{letter-spacing:32.843602px;}
.ls47{letter-spacing:32.878363px;}
.ls40{letter-spacing:34.485031px;}
.ls4c{letter-spacing:51.556363px;}
.ls4a{letter-spacing:53.218363px;}
.ls4b{letter-spacing:71.896363px;}
.ls49{letter-spacing:71.902363px;}
.ls2a{letter-spacing:75.321269px;}
.ls12{letter-spacing:78.424472px;}
.ls48{letter-spacing:78.622363px;}
.lsb{letter-spacing:86.784153px;}
.ls44{letter-spacing:97.306363px;}
.ls2f{letter-spacing:107.112538px;}
.ls13{letter-spacing:181.134532px;}
.ls2e{letter-spacing:249.548338px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16e{word-spacing:-59.775600px;}
.ws10c{word-spacing:-53.677235px;}
.ws1ac{word-spacing:-50.809387px;}
.ws113{word-spacing:-47.689922px;}
.ws17e{word-spacing:-46.505417px;}
.ws178{word-spacing:-43.743993px;}
.ws12a{word-spacing:-38.937826px;}
.ws12b{word-spacing:-30.629017px;}
.ws181{word-spacing:-29.015076px;}
.ws16c{word-spacing:-28.955301px;}
.ws16a{word-spacing:-24.885386px;}
.ws171{word-spacing:-24.879386px;}
.ws172{word-spacing:-18.884959px;}
.ws16b{word-spacing:-16.605662px;}
.ws173{word-spacing:-15.613140px;}
.ws182{word-spacing:-15.316077px;}
.ws175{word-spacing:-15.310077px;}
.ws7c{word-spacing:-14.943900px;}
.ws19{word-spacing:-14.920027px;}
.ws10a{word-spacing:-14.755998px;}
.ws5f{word-spacing:-14.703256px;}
.ws2{word-spacing:-14.111859px;}
.ws14d{word-spacing:-13.517942px;}
.ws1d4{word-spacing:-13.449600px;}
.ws1e6{word-spacing:-13.428043px;}
.ws111{word-spacing:-13.110071px;}
.ws155{word-spacing:-11.955150px;}
.ws109{word-spacing:-11.804782px;}
.ws1ed{word-spacing:-10.759650px;}
.ws65{word-spacing:-10.556184px;}
.wsa4{word-spacing:-9.783071px;}
.ws66{word-spacing:-9.599940px;}
.ws10d{word-spacing:-9.591398px;}
.wsa2{word-spacing:-8.896860px;}
.ws115{word-spacing:-8.521546px;}
.wsa7{word-spacing:-8.294343px;}
.ws17f{word-spacing:-6.682912px;}
.ws10b{word-spacing:-6.640195px;}
.ws135{word-spacing:-6.623136px;}
.ws19e{word-spacing:-6.145501px;}
.ws114{word-spacing:-5.899528px;}
.ws117{word-spacing:-5.899525px;}
.ws1e7{word-spacing:-5.810227px;}
.ws1cf{word-spacing:-5.487437px;}
.wsca{word-spacing:-4.961375px;}
.ws20a{word-spacing:-4.841856px;}
.ws1c6{word-spacing:-3.969110px;}
.ws5e{word-spacing:-3.417579px;}
.ws62{word-spacing:-3.375429px;}
.ws174{word-spacing:-3.335478px;}
.ws180{word-spacing:-3.321123px;}
.ws5c{word-spacing:-2.419185px;}
.ws1e8{word-spacing:-2.259533px;}
.ws63{word-spacing:-2.188786px;}
.ws64{word-spacing:-1.881588px;}
.ws5d{word-spacing:-1.647440px;}
.ws188{word-spacing:-1.542210px;}
.wsc7{word-spacing:-1.075961px;}
.ws2b{word-spacing:-1.016185px;}
.ws105{word-spacing:-0.956410px;}
.ws1aa{word-spacing:-0.908591px;}
.wsf8{word-spacing:-0.836858px;}
.wsdf{word-spacing:-0.777083px;}
.ws19b{word-spacing:-0.765130px;}
.ws152{word-spacing:-0.717309px;}
.wsc6{word-spacing:-0.717307px;}
.ws9{word-spacing:-0.645581px;}
.wsd5{word-spacing:-0.597756px;}
.ws184{word-spacing:-0.478205px;}
.wseb{word-spacing:-0.239102px;}
.ws4e{word-spacing:-0.179327px;}
.wsd0{word-spacing:-0.119551px;}
.ws1c1{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws1ab{word-spacing:-0.047821px;}
.ws170{word-spacing:-0.041843px;}
.ws60{word-spacing:-0.034650px;}
.ws1c5{word-spacing:-0.029888px;}
.ws5b{word-spacing:0.000000px;}
.wsa6{word-spacing:0.002946px;}
.wsa5{word-spacing:0.003475px;}
.ws61{word-spacing:0.003750px;}
.ws16d{word-spacing:0.011955px;}
.ws196{word-spacing:0.059776px;}
.ws1c9{word-spacing:0.239102px;}
.ws25{word-spacing:0.298878px;}
.ws89{word-spacing:0.315216px;}
.ws1ff{word-spacing:0.322790px;}
.ws1fe{word-spacing:0.324499px;}
.ws4c{word-spacing:0.358654px;}
.ws200{word-spacing:0.376589px;}
.ws4f{word-spacing:0.418429px;}
.ws11c{word-spacing:0.430385px;}
.ws142{word-spacing:0.478205px;}
.ws53{word-spacing:0.537980px;}
.ws176{word-spacing:0.574309px;}
.ws177{word-spacing:0.597756px;}
.ws2e{word-spacing:0.657532px;}
.ws26{word-spacing:0.717307px;}
.ws1a2{word-spacing:0.777083px;}
.ws10{word-spacing:0.806976px;}
.wsfd{word-spacing:0.836858px;}
.ws1af{word-spacing:0.887772px;}
.ws1a3{word-spacing:0.896634px;}
.ws22b{word-spacing:0.914573px;}
.ws31{word-spacing:0.956410px;}
.wsd4{word-spacing:1.016185px;}
.ws179{word-spacing:1.075961px;}
.wsb{word-spacing:1.075968px;}
.ws1ce{word-spacing:1.129766px;}
.ws18a{word-spacing:1.135736px;}
.ws1a0{word-spacing:1.195512px;}
.wsc0{word-spacing:1.243336px;}
.ws106{word-spacing:1.255288px;}
.ws234{word-spacing:1.291162px;}
.ws235{word-spacing:1.344960px;}
.ws187{word-spacing:1.424986px;}
.ws186{word-spacing:1.434614px;}
.ws198{word-spacing:1.554166px;}
.ws1d{word-spacing:1.613941px;}
.ws6c{word-spacing:1.673717px;}
.ws144{word-spacing:1.793268px;}
.ws12f{word-spacing:1.853044px;}
.ws75{word-spacing:1.912819px;}
.wsea{word-spacing:1.924165px;}
.wsa8{word-spacing:1.960645px;}
.ws3c{word-spacing:1.972595px;}
.ws32{word-spacing:2.032370px;}
.ws1d7{word-spacing:2.044339px;}
.ws6d{word-spacing:2.092146px;}
.ws216{word-spacing:2.098138px;}
.ws79{word-spacing:2.151922px;}
.ws8b{word-spacing:2.211697px;}
.ws129{word-spacing:2.331248px;}
.ws13e{word-spacing:2.391030px;}
.ws165{word-spacing:2.450800px;}
.ws145{word-spacing:2.570351px;}
.ws18b{word-spacing:2.689902px;}
.ws1fc{word-spacing:2.742211px;}
.ws1fd{word-spacing:2.743718px;}
.ws194{word-spacing:2.749678px;}
.ws233{word-spacing:2.797517px;}
.wsc4{word-spacing:2.809453px;}
.ws13c{word-spacing:2.821415px;}
.ws15e{word-spacing:2.988780px;}
.ws9c{word-spacing:3.048556px;}
.ws20{word-spacing:3.168107px;}
.ws215{word-spacing:3.174106px;}
.ws15d{word-spacing:3.227882px;}
.wsce{word-spacing:3.287658px;}
.ws21e{word-spacing:3.335501px;}
.ws22{word-spacing:3.407209px;}
.ws1be{word-spacing:3.526760px;}
.ws190{word-spacing:3.586536px;}
.ws50{word-spacing:3.646312px;}
.ws1d3{word-spacing:3.658291px;}
.ws67{word-spacing:3.682186px;}
.ws130{word-spacing:3.706087px;}
.wsef{word-spacing:3.765863px;}
.ws1d6{word-spacing:3.765888px;}
.ws18e{word-spacing:3.825638px;}
.ws17a{word-spacing:3.945190px;}
.wsc2{word-spacing:3.969110px;}
.wsd3{word-spacing:4.004965px;}
.ws133{word-spacing:4.064741px;}
.ws8a{word-spacing:4.124516px;}
.ws1e{word-spacing:4.184292px;}
.ws20d{word-spacing:4.196275px;}
.ws17c{word-spacing:4.244068px;}
.ws1ef{word-spacing:4.357670px;}
.ws21{word-spacing:4.363619px;}
.wsf6{word-spacing:4.380900px;}
.wsf4{word-spacing:4.397473px;}
.wsfe{word-spacing:4.423394px;}
.ws1e0{word-spacing:4.465267px;}
.ws13{word-spacing:4.519066px;}
.wsaf{word-spacing:4.542946px;}
.ws59{word-spacing:4.602721px;}
.ws12{word-spacing:4.626662px;}
.ws3e{word-spacing:4.662497px;}
.ws3f{word-spacing:4.664110px;}
.ws6{word-spacing:4.680461px;}
.ws125{word-spacing:4.722272px;}
.ws19c{word-spacing:4.782013px;}
.ws104{word-spacing:4.782048px;}
.ws6a{word-spacing:4.782060px;}
.ws102{word-spacing:4.800743px;}
.ws41{word-spacing:4.841824px;}
.wse{word-spacing:4.841856px;}
.ws154{word-spacing:4.925522px;}
.ws68{word-spacing:4.978337px;}
.ws17b{word-spacing:5.080926px;}
.ws22e{word-spacing:5.110848px;}
.wsc5{word-spacing:5.140702px;}
.ws94{word-spacing:5.260253px;}
.ws103{word-spacing:5.287259px;}
.ws108{word-spacing:5.295000px;}
.wsbe{word-spacing:5.296106px;}
.wsbd{word-spacing:5.320028px;}
.ws23d{word-spacing:5.378400px;}
.ws1b9{word-spacing:5.379804px;}
.ws5a{word-spacing:5.379840px;}
.ws18d{word-spacing:5.439580px;}
.ws23b{word-spacing:5.466163px;}
.ws23a{word-spacing:5.470166px;}
.ws23c{word-spacing:5.487437px;}
.ws1a1{word-spacing:5.559131px;}
.ws231{word-spacing:5.595034px;}
.ws146{word-spacing:5.618906px;}
.ws19d{word-spacing:5.639971px;}
.ws13f{word-spacing:5.642831px;}
.ws1db{word-spacing:5.702630px;}
.ws1d9{word-spacing:5.725478px;}
.ws1da{word-spacing:5.756429px;}
.ws14a{word-spacing:5.798233px;}
.ws1c{word-spacing:5.858009px;}
.ws192{word-spacing:5.929754px;}
.ws84{word-spacing:5.975311px;}
.ws100{word-spacing:5.977276px;}
.ws3{word-spacing:5.977560px;}
.ws151{word-spacing:5.977575px;}
.ws83{word-spacing:5.979025px;}
.ws71{word-spacing:6.037336px;}
.ws8c{word-spacing:6.044281px;}
.ws1a{word-spacing:6.097111px;}
.ws189{word-spacing:6.216662px;}
.ws153{word-spacing:6.264499px;}
.ws42{word-spacing:6.276438px;}
.ws1bc{word-spacing:6.336214px;}
.ws24{word-spacing:6.395989px;}
.ws22f{word-spacing:6.402010px;}
.ws27{word-spacing:6.515540px;}
.ws91{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsa9{word-spacing:6.694867px;}
.ws21f{word-spacing:6.720000px;}
.ws15{word-spacing:6.724800px;}
.ws8f{word-spacing:6.754643px;}
.wsa{word-spacing:6.778598px;}
.ws69{word-spacing:6.790525px;}
.ws2f{word-spacing:6.814418px;}
.ws18c{word-spacing:6.874194px;}
.wsc1{word-spacing:6.886166px;}
.wsd8{word-spacing:6.933970px;}
.ws9f{word-spacing:6.993745px;}
.ws149{word-spacing:7.053521px;}
.ws1ad{word-spacing:7.077449px;}
.ws169{word-spacing:7.113296px;}
.ws15f{word-spacing:7.173072px;}
.ws167{word-spacing:7.232848px;}
.ws97{word-spacing:7.292623px;}
.wse7{word-spacing:7.352399px;}
.ws229{word-spacing:7.370381px;}
.ws23{word-spacing:7.412174px;}
.ws72{word-spacing:7.471950px;}
.ws46{word-spacing:7.531726px;}
.ws21b{word-spacing:7.549843px;}
.ws21c{word-spacing:7.585574px;}
.ws8d{word-spacing:7.591501px;}
.wse0{word-spacing:7.618973px;}
.ws4d{word-spacing:7.651277px;}
.ws35{word-spacing:7.711052px;}
.ws20c{word-spacing:7.746970px;}
.ws191{word-spacing:7.770828px;}
.ws1f6{word-spacing:7.800768px;}
.ws29{word-spacing:7.890379px;}
.ws2c{word-spacing:8.009930px;}
.wsbb{word-spacing:8.069706px;}
.ws38{word-spacing:8.129482px;}
.ws222{word-spacing:8.161843px;}
.ws199{word-spacing:8.177323px;}
.ws223{word-spacing:8.177357px;}
.ws1c7{word-spacing:8.189257px;}
.ws36{word-spacing:8.249033px;}
.ws22a{word-spacing:8.284954px;}
.ws136{word-spacing:8.368584px;}
.ws1f8{word-spacing:8.392550px;}
.ws70{word-spacing:8.428360px;}
.ws80{word-spacing:8.441750px;}
.ws13b{word-spacing:8.464246px;}
.ws11b{word-spacing:8.512067px;}
.ws43{word-spacing:8.547911px;}
.ws14{word-spacing:8.553946px;}
.ws58{word-spacing:8.607686px;}
.ws218{word-spacing:8.661542px;}
.ws30{word-spacing:8.667462px;}
.ws219{word-spacing:8.715341px;}
.ws4a{word-spacing:8.727238px;}
.ws1dd{word-spacing:8.769139px;}
.ws3b{word-spacing:8.787013px;}
.ws1dc{word-spacing:8.822938px;}
.ws34{word-spacing:8.846789px;}
.ws201{word-spacing:8.866262px;}
.ws1f7{word-spacing:8.876736px;}
.ws81{word-spacing:8.903083px;}
.ws82{word-spacing:8.906564px;}
.ws23e{word-spacing:8.907955px;}
.ws204{word-spacing:8.930534px;}
.ws205{word-spacing:8.984333px;}
.wsac{word-spacing:9.026116px;}
.ws96{word-spacing:9.085891px;}
.wsc3{word-spacing:9.133735px;}
.ws6b{word-spacing:9.145667px;}
.wsb6{word-spacing:9.160106px;}
.ws134{word-spacing:9.164717px;}
.ws1c8{word-spacing:9.172106px;}
.ws217{word-spacing:9.199526px;}
.ws90{word-spacing:9.205442px;}
.ws19a{word-spacing:9.277196px;}
.wsd2{word-spacing:9.324994px;}
.wsd1{word-spacing:9.352106px;}
.ws1fb{word-spacing:9.360922px;}
.ws4b{word-spacing:9.384769px;}
.ws7a{word-spacing:9.444545px;}
.ws141{word-spacing:9.504320px;}
.ws1e1{word-spacing:9.576115px;}
.wsa1{word-spacing:9.623872px;}
.ws1e2{word-spacing:9.629914px;}
.ws1ca{word-spacing:9.668813px;}
.ws131{word-spacing:9.683647px;}
.ws8{word-spacing:9.683712px;}
.ws1eb{word-spacing:9.737510px;}
.ws1a5{word-spacing:9.743423px;}
.ws8e{word-spacing:9.803198px;}
.ws1b5{word-spacing:9.862974px;}
.ws17{word-spacing:9.898906px;}
.ws19f{word-spacing:9.922750px;}
.ws3d{word-spacing:9.982525px;}
.ws13d{word-spacing:9.994505px;}
.ws93{word-spacing:10.042301px;}
.ws18f{word-spacing:10.102076px;}
.ws224{word-spacing:10.109990px;}
.ws225{word-spacing:10.114099px;}
.wsb9{word-spacing:10.132106px;}
.wsb8{word-spacing:10.161852px;}
.ws162{word-spacing:10.281403px;}
.ws7f{word-spacing:10.341179px;}
.ws1cc{word-spacing:10.598285px;}
.ws98{word-spacing:10.640057px;}
.ws1cd{word-spacing:10.652083px;}
.ws12c{word-spacing:10.699832px;}
.ws37{word-spacing:10.938935px;}
.ws203{word-spacing:11.028672px;}
.ws202{word-spacing:11.054198px;}
.ws164{word-spacing:11.058486px;}
.ws76{word-spacing:11.118262px;}
.wsa0{word-spacing:11.237813px;}
.ws47{word-spacing:11.297588px;}
.ws33{word-spacing:11.357364px;}
.ws1a4{word-spacing:11.417140px;}
.ws40{word-spacing:11.476915px;}
.wsae{word-spacing:11.536691px;}
.wsc8{word-spacing:11.596466px;}
.ws168{word-spacing:11.716018px;}
.ws1f4{word-spacing:11.728051px;}
.wsb1{word-spacing:11.775793px;}
.ws1f5{word-spacing:11.781850px;}
.wsdb{word-spacing:11.835569px;}
.ws1f9{word-spacing:11.835648px;}
.ws1fa{word-spacing:11.889446px;}
.wsee{word-spacing:11.895344px;}
.ws1a9{word-spacing:11.913150px;}
.ws1a8{word-spacing:11.917308px;}
.ws1b{word-spacing:11.955120px;}
.ws150{word-spacing:11.955150px;}
.ws48{word-spacing:12.014896px;}
.ws1e5{word-spacing:12.050842px;}
.ws45{word-spacing:12.074671px;}
.ws1ae{word-spacing:12.098612px;}
.ws7e{word-spacing:12.194222px;}
.ws1cb{word-spacing:12.266035px;}
.wsd6{word-spacing:12.313774px;}
.wsda{word-spacing:12.373549px;}
.wsc{word-spacing:12.427430px;}
.ws195{word-spacing:12.433325px;}
.wsfb{word-spacing:12.476216px;}
.wscd{word-spacing:12.493100px;}
.wsfa{word-spacing:12.501984px;}
.wsab{word-spacing:12.552876px;}
.ws148{word-spacing:12.612652px;}
.ws95{word-spacing:12.672427px;}
.ws7d{word-spacing:12.732203px;}
.ws44{word-spacing:12.791978px;}
.ws214{word-spacing:12.804019px;}
.ws208{word-spacing:12.911616px;}
.ws209{word-spacing:12.965414px;}
.ws1b2{word-spacing:12.971305px;}
.ws121{word-spacing:13.031081px;}
.ws1f2{word-spacing:13.073011px;}
.wsf7{word-spacing:13.150632px;}
.wse8{word-spacing:13.242206px;}
.wse9{word-spacing:13.270183px;}
.ws12d{word-spacing:13.329959px;}
.ws22c{word-spacing:13.342003px;}
.ws126{word-spacing:13.389734px;}
.ws22d{word-spacing:13.395802px;}
.ws1d0{word-spacing:13.423267px;}
.ws1d8{word-spacing:13.444800px;}
.ws230{word-spacing:13.465354px;}
.ws17d{word-spacing:13.509286px;}
.ws212{word-spacing:13.557197px;}
.ws107{word-spacing:13.569061px;}
.wsfc{word-spacing:13.577492px;}
.ws1e9{word-spacing:13.608432px;}
.ws7{word-spacing:13.610995px;}
.ws197{word-spacing:13.628837px;}
.wsb3{word-spacing:13.688612px;}
.ws87{word-spacing:13.748388px;}
.ws5{word-spacing:13.826189px;}
.wsed{word-spacing:13.867939px;}
.ws1a6{word-spacing:13.987490px;}
.ws28{word-spacing:14.047266px;}
.ws2a{word-spacing:14.107042px;}
.ws73{word-spacing:14.166817px;}
.wsde{word-spacing:14.226593px;}
.wsc9{word-spacing:14.286368px;}
.ws78{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws147{word-spacing:14.405920px;}
.ws1f1{word-spacing:14.417971px;}
.ws1f0{word-spacing:14.432074px;}
.ws1b0{word-spacing:14.465695px;}
.ws77{word-spacing:14.525471px;}
.wsdd{word-spacing:14.585246px;}
.ws239{word-spacing:14.633165px;}
.ws132{word-spacing:14.645022px;}
.wse1{word-spacing:14.704798px;}
.ws14b{word-spacing:14.764573px;}
.wsba{word-spacing:14.824349px;}
.ws9e{word-spacing:14.884124px;}
.wsbf{word-spacing:14.920027px;}
.ws9d{word-spacing:14.943900px;}
.ws21d{word-spacing:14.955955px;}
.ws122{word-spacing:15.003676px;}
.wse5{word-spacing:15.123227px;}
.ws221{word-spacing:15.224947px;}
.ws163{word-spacing:15.242778px;}
.ws1f3{word-spacing:15.278746px;}
.ws20b{word-spacing:15.332544px;}
.ws185{word-spacing:15.362329px;}
.ws92{word-spacing:15.422105px;}
.ws213{word-spacing:15.440141px;}
.wsb7{word-spacing:15.481880px;}
.ws11d{word-spacing:15.589516px;}
.ws74{word-spacing:15.601432px;}
.ws1b1{word-spacing:15.661207px;}
.wse2{word-spacing:15.720983px;}
.wsaa{word-spacing:15.840534px;}
.ws39{word-spacing:15.900310px;}
.ws9b{word-spacing:15.960085px;}
.ws128{word-spacing:16.019861px;}
.ws124{word-spacing:16.079636px;}
.ws237{word-spacing:16.193318px;}
.ws55{word-spacing:16.199188px;}
.ws56{word-spacing:16.201513px;}
.ws238{word-spacing:16.247117px;}
.ws1ba{word-spacing:16.258963px;}
.ws138{word-spacing:16.318739px;}
.wscb{word-spacing:16.378514px;}
.ws1b8{word-spacing:16.438290px;}
.ws88{word-spacing:16.557841px;}
.ws220{word-spacing:16.569907px;}
.ws49{word-spacing:16.677392px;}
.wsf9{word-spacing:16.737168px;}
.ws7b{word-spacing:16.796944px;}
.ws1b3{word-spacing:16.856719px;}
.wsd9{word-spacing:16.916495px;}
.wsf{word-spacing:16.946496px;}
.ws120{word-spacing:16.976270px;}
.wsd{word-spacing:17.000294px;}
.ws101{word-spacing:17.095822px;}
.ws143{word-spacing:17.155597px;}
.wsf0{word-spacing:17.275148px;}
.ws127{word-spacing:17.276334px;}
.wse6{word-spacing:17.394700px;}
.ws232{word-spacing:17.592077px;}
.ws6e{word-spacing:17.633802px;}
.wsf1{word-spacing:17.693578px;}
.wscc{word-spacing:17.753353px;}
.wsbc{word-spacing:17.813129px;}
.ws99{word-spacing:17.872904px;}
.ws18{word-spacing:17.932680px;}
.ws1bf{word-spacing:18.052231px;}
.wsdc{word-spacing:18.112007px;}
.ws51{word-spacing:18.136264px;}
.ws52{word-spacing:18.171782px;}
.ws1c0{word-spacing:18.231558px;}
.ws140{word-spacing:18.299731px;}
.wsd7{word-spacing:18.351109px;}
.ws2d{word-spacing:18.530436px;}
.wsec{word-spacing:18.590212px;}
.wsb4{word-spacing:18.769538px;}
.ws123{word-spacing:18.829314px;}
.ws1b4{word-spacing:18.889090px;}
.ws1de{word-spacing:18.984077px;}
.ws1df{word-spacing:18.990835px;}
.ws11{word-spacing:19.044634px;}
.ws14c{word-spacing:19.068416px;}
.wsf3{word-spacing:19.128192px;}
.ws1d5{word-spacing:19.152230px;}
.ws1b7{word-spacing:19.187968px;}
.ws1ea{word-spacing:19.206029px;}
.wscf{word-spacing:19.247743px;}
.ws183{word-spacing:19.367294px;}
.ws21a{word-spacing:19.367424px;}
.ws1f{word-spacing:19.546621px;}
.ws228{word-spacing:19.582618px;}
.wsb0{word-spacing:19.606397px;}
.ws227{word-spacing:19.636416px;}
.wsb5{word-spacing:19.666172px;}
.wsf2{word-spacing:19.845499px;}
.ws1e4{word-spacing:19.851610px;}
.ws1e3{word-spacing:19.905408px;}
.ws54{word-spacing:19.965050px;}
.ws20e{word-spacing:20.013005px;}
.ws1b6{word-spacing:20.144377px;}
.ws119{word-spacing:20.514786px;}
.ws11f{word-spacing:20.682358px;}
.ws11e{word-spacing:20.686784px;}
.ws1ec{word-spacing:21.035174px;}
.ws1ee{word-spacing:21.088973px;}
.wsf5{word-spacing:21.280114px;}
.ws160{word-spacing:21.399665px;}
.ws161{word-spacing:21.426900px;}
.ws137{word-spacing:21.459440px;}
.wsff{word-spacing:21.519216px;}
.wse3{word-spacing:21.619008px;}
.wse4{word-spacing:21.638767px;}
.wsad{word-spacing:21.698543px;}
.ws207{word-spacing:21.734554px;}
.ws206{word-spacing:21.777888px;}
.ws57{word-spacing:21.818094px;}
.ws85{word-spacing:21.877870px;}
.ws1bd{word-spacing:21.937645px;}
.wsb2{word-spacing:22.116972px;}
.ws226{word-spacing:22.164941px;}
.ws12e{word-spacing:22.176748px;}
.ws1bb{word-spacing:22.236523px;}
.ws3a{word-spacing:22.356074px;}
.ws166{word-spacing:22.595177px;}
.ws6f{word-spacing:22.654952px;}
.ws211{word-spacing:22.918118px;}
.ws193{word-spacing:22.953830px;}
.ws210{word-spacing:22.971917px;}
.ws9a{word-spacing:23.133157px;}
.ws16{word-spacing:23.240909px;}
.ws86{word-spacing:26.062162px;}
.ws1a7{word-spacing:28.672823px;}
.ws20f{word-spacing:31.256870px;}
.ws118{word-spacing:33.121365px;}
.ws16f{word-spacing:44.480007px;}
.ws1d1{word-spacing:46.320422px;}
.ws236{word-spacing:46.328266px;}
.ws1d2{word-spacing:52.776230px;}
.ws1c3{word-spacing:57.089936px;}
.ws110{word-spacing:58.117754px;}
.ws15b{word-spacing:81.399940px;}
.ws10e{word-spacing:85.924991px;}
.ws1c4{word-spacing:86.907004px;}
.wsa3{word-spacing:91.964025px;}
.ws139{word-spacing:114.684031px;}
.ws159{word-spacing:145.265750px;}
.ws158{word-spacing:145.271750px;}
.ws14e{word-spacing:148.939101px;}
.ws156{word-spacing:149.067671px;}
.ws1c2{word-spacing:159.287477px;}
.ws157{word-spacing:178.275197px;}
.ws15c{word-spacing:184.252772px;}
.ws13a{word-spacing:185.983979px;}
.ws11a{word-spacing:272.036100px;}
.ws15a{word-spacing:287.514847px;}
.ws112{word-spacing:435.793853px;}
.ws116{word-spacing:460.397657px;}
.ws10f{word-spacing:811.110450px;}
.ws14f{word-spacing:1198.393105px;}
._21{margin-left:-1076.498570px;}
._17{margin-left:-611.279756px;}
._3d{margin-left:-34.700246px;}
._3a{margin-left:-33.310545px;}
._1{margin-left:-18.506572px;}
._23{margin-left:-9.244640px;}
._f{margin-left:-7.523272px;}
._14{margin-left:-6.475441px;}
._6{margin-left:-5.359380px;}
._0{margin-left:-4.303854px;}
._7{margin-left:-3.128007px;}
._2{margin-left:-1.654041px;}
._b{width:1.179738px;}
._5{width:2.988780px;}
._1d{width:4.193507px;}
._d{width:5.282580px;}
._e{width:7.260406px;}
._4{width:8.984333px;}
._10{width:10.099137px;}
._49{width:11.300432px;}
._8{width:13.709036px;}
._3c{width:16.744072px;}
._c{width:17.856105px;}
._22{width:19.725948px;}
._12{width:21.618343px;}
._13{width:23.984276px;}
._3{width:26.038426px;}
._18{width:27.879410px;}
._15{width:29.887800px;}
._11{width:31.274672px;}
._1a{width:32.360840px;}
._a{width:33.892765px;}
._9{width:35.984911px;}
._3e{width:37.478466px;}
._1b{width:38.717129px;}
._16{width:39.813034px;}
._1c{width:40.886613px;}
._25{width:44.195513px;}
._3f{width:46.568035px;}
._24{width:47.820600px;}
._45{width:49.729728px;}
._19{width:53.798175px;}
._48{width:59.770022px;}
._46{width:67.331361px;}
._28{width:80.529898px;}
._38{width:84.339331px;}
._2e{width:89.396369px;}
._41{width:90.572216px;}
._44{width:94.562051px;}
._47{width:99.227701px;}
._2d{width:100.279798px;}
._27{width:102.968887px;}
._2b{width:104.153267px;}
._3b{width:106.526259px;}
._42{width:109.126609px;}
._2a{width:112.760975px;}
._2f{width:122.085992px;}
._20{width:124.475705px;}
._30{width:130.817482px;}
._1f{width:134.265454px;}
._36{width:136.747236px;}
._35{width:142.075003px;}
._1e{width:144.057127px;}
._34{width:176.964361px;}
._33{width:196.207922px;}
._32{width:201.229085px;}
._29{width:204.452733px;}
._26{width:215.655629px;}
._43{width:222.864721px;}
._2c{width:232.981963px;}
._37{width:242.064924px;}
._40{width:243.919928px;}
._39{width:371.996447px;}
._31{width:433.063354px;}
.fc8{color:rgb(0,128,0);}
.fc7{color:rgb(128,0,0);}
.fc6{color:rgb(0,0,128);}
.fc5{color:rgb(66,67,128);}
.fc4{color:transparent;}
.fc3{color:rgb(16,72,98);}
.fc2{color:rgb(39,83,23);}
.fcb{color:rgb(38,38,38);}
.fca{color:rgb(51,51,51);}
.fc9{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:21.460440px;}
.fs11{font-size:21.460451px;}
.fs18{font-size:21.470864px;}
.fse{font-size:24.154740px;}
.fs15{font-size:29.522492px;}
.fs20{font-size:29.887800px;}
.fsa{font-size:30.171960px;}
.fs19{font-size:30.788400px;}
.fs17{font-size:30.998446px;}
.fs10{font-size:30.998449px;}
.fs1b{font-size:32.019936px;}
.fsc{font-size:34.890201px;}
.fs9{font-size:35.587440px;}
.fs1f{font-size:35.865600px;}
.fs23{font-size:36.699000px;}
.fs8{font-size:37.028340px;}
.fs14{font-size:37.574048px;}
.fs1e{font-size:38.256600px;}
.fs6{font-size:38.399760px;}
.fs1d{font-size:38.821275px;}
.fs3{font-size:41.842800px;}
.fs13{font-size:42.920880px;}
.fsb{font-size:42.941728px;}
.fs25{font-size:43.038600px;}
.fs1a{font-size:43.103760px;}
.fs22{font-size:44.038800px;}
.fs21{font-size:47.181162px;}
.fs16{font-size:47.689919px;}
.fsf{font-size:47.689922px;}
.fs24{font-size:47.708700px;}
.fs2{font-size:47.820600px;}
.fs1c{font-size:49.173615px;}
.fs7{font-size:53.485380px;}
.fsd{font-size:53.677235px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2c4{bottom:2.293688px;}
.y190{bottom:4.385060px;}
.y192{bottom:4.648879px;}
.y18f{bottom:4.713800px;}
.y191{bottom:5.655346px;}
.y18e{bottom:5.720240px;}
.yd7{bottom:7.349580px;}
.y211{bottom:7.778882px;}
.y7d{bottom:7.885665px;}
.y2c5{bottom:10.393271px;}
.y23a{bottom:11.246821px;}
.y23f{bottom:11.467694px;}
.y247{bottom:11.876861px;}
.y23b{bottom:12.155392px;}
.y1c9{bottom:12.249488px;}
.y67{bottom:12.685643px;}
.y1c8{bottom:12.854338px;}
.yfb{bottom:14.699160px;}
.y1c7{bottom:14.742112px;}
.y23c{bottom:16.139603px;}
.y210{bottom:20.647471px;}
.y1ca{bottom:20.819035px;}
.y1bb{bottom:22.667469px;}
.y81{bottom:23.657007px;}
.y1ba{bottom:26.395785px;}
.y59{bottom:27.129000px;}
.y66{bottom:28.799825px;}
.yd6{bottom:33.459930px;}
.y194{bottom:33.546370px;}
.y80{bottom:34.971218px;}
.y234{bottom:35.825454px;}
.y236{bottom:35.889548px;}
.y212{bottom:36.054310px;}
.y193{bottom:37.274680px;}
.y18c{bottom:37.741877px;}
.y1c6{bottom:38.072072px;}
.y2c6{bottom:40.345851px;}
.y18b{bottom:41.470187px;}
.y2cd{bottom:41.489366px;}
.y65{bottom:44.571153px;}
.y1b6{bottom:45.783712px;}
.y7f{bottom:46.285429px;}
.y1b9{bottom:49.156006px;}
.y1b5{bottom:49.512023px;}
.y1c2{bottom:50.351795px;}
.yf6{bottom:52.414108px;}
.y58{bottom:52.762500px;}
.y1c3{bottom:54.305769px;}
.ye8{bottom:55.508670px;}
.yf3{bottom:55.702081px;}
.y89{bottom:55.885377px;}
.yef{bottom:56.282310px;}
.yf1{bottom:56.475720px;}
.yfa{bottom:57.055946px;}
.y245{bottom:57.461924px;}
.y7e{bottom:57.599640px;}
.y198{bottom:58.305023px;}
.y244{bottom:59.097564px;}
.yf4{bottom:60.343924px;}
.y64{bottom:60.685335px;}
.yf9{bottom:60.924150px;}
.yf0{bottom:62.471431px;}
.yf2{bottom:63.245071px;}
.y23e{bottom:64.910330px;}
.y23d{bottom:64.974423px;}
.yf5{bottom:65.759400px;}
.y88{bottom:67.199588px;}
.y18d{bottom:69.407908px;}
.y2c7{bottom:70.298431px;}
.y1c5{bottom:71.278774px;}
.y7c{bottom:71.313852px;}
.y215{bottom:73.096713px;}
.y199{bottom:73.214039px;}
.y196{bottom:74.126626px;}
.y197{bottom:74.414576px;}
.y195{bottom:77.854890px;}
.y87{bottom:78.513799px;}
.y1b8{bottom:81.415889px;}
.y70{bottom:81.599498px;}
.y7b{bottom:82.628063px;}
.y243{bottom:83.987899px;}
.y1bc{bottom:84.359707px;}
.y8e{bottom:86.742327px;}
.y1bd{bottom:88.411577px;}
.y1c0{bottom:89.822771px;}
.y1be{bottom:89.822773px;}
.y86{bottom:89.828010px;}
.y213{bottom:91.548788px;}
.y1c1{bottom:92.257533px;}
.y6f{bottom:92.913709px;}
.y1bf{bottom:93.874658px;}
.y7a{bottom:93.942274px;}
.y240{bottom:95.009771px;}
.y237{bottom:95.073865px;}
.y187{bottom:97.428938px;}
.y8d{bottom:98.056538px;}
.y2c8{bottom:100.251011px;}
.y186{bottom:101.157234px;}
.y94{bottom:101.827938px;}
.y185{bottom:103.026395px;}
.y6e{bottom:104.227920px;}
.y79{bottom:105.256485px;}
.y19b{bottom:105.764139px;}
.y184{bottom:106.754706px;}
.y8a{bottom:107.656470px;}
.y8c{bottom:109.370749px;}
.y19a{bottom:109.492566px;}
.y33{bottom:113.332500px;}
.y246{bottom:118.813194px;}
.y238{bottom:119.077468px;}
.y235{bottom:119.298302px;}
.y217{bottom:119.469589px;}
.y71{bottom:120.342105px;}
.y239{bottom:120.505425px;}
.y8b{bottom:120.684960px;}
.y1a1{bottom:121.333791px;}
.y34d{bottom:121.402500px;}
.y183{bottom:122.264359px;}
.y19f{bottom:128.389403px;}
.y2c9{bottom:130.203591px;}
.y32{bottom:131.265000px;}
.y12b{bottom:131.266500px;}
.y1a0{bottom:132.178620px;}
.ydf{bottom:132.292440px;}
.yd5{bottom:133.259490px;}
.yd4{bottom:133.452900px;}
.y1b7{bottom:133.836526px;}
.y84{bottom:135.427733px;}
.y19e{bottom:136.034952px;}
.y19d{bottom:136.753435px;}
.y1a3{bottom:137.236134px;}
.y38d{bottom:138.513000px;}
.y34c{bottom:139.335000px;}
.y1a2{bottom:140.466782px;}
.y19c{bottom:140.481760px;}
.y241{bottom:142.919198px;}
.y242{bottom:142.983292px;}
.y189{bottom:143.736699px;}
.y18a{bottom:143.736701px;}
.y83{bottom:146.741944px;}
.y214{bottom:147.043265px;}
.y188{bottom:147.465009px;}
.y204{bottom:148.675500px;}
.y31{bottom:149.197500px;}
.yb7{bottom:149.199000px;}
.yf8{bottom:151.053208px;}
.y160{bottom:151.077000px;}
.yf7{bottom:151.826847px;}
.y38c{bottom:153.457500px;}
.y1b4{bottom:154.320106px;}
.yed{bottom:156.081870px;}
.y34b{bottom:157.269000px;}
.y1b3{bottom:157.632543px;}
.y82{bottom:158.056155px;}
.yeb{bottom:159.756660px;}
.yea{bottom:159.756663px;}
.y93{bottom:159.770430px;}
.y2ca{bottom:160.156171px;}
.ye9{bottom:162.657810px;}
.y1d0{bottom:162.681958px;}
.y77{bottom:162.856125px;}
.y219{bottom:163.504204px;}
.y1aa{bottom:163.536631px;}
.yec{bottom:163.624860px;}
.y1cf{bottom:165.994378px;}
.yee{bottom:166.139190px;}
.y203{bottom:166.608000px;}
.y1a9{bottom:166.849075px;}
.y57{bottom:167.130000px;}
.y30{bottom:167.131500px;}
.y38b{bottom:168.402000px;}
.y1d6{bottom:168.550500px;}
.y15f{bottom:169.011000px;}
.y2b1{bottom:173.849325px;}
.ye2{bottom:173.875593px;}
.y96{bottom:174.513199px;}
.y1b2{bottom:174.729907px;}
.y218{bottom:174.951234px;}
.y34a{bottom:175.201500px;}
.y85{bottom:175.541760px;}
.y75{bottom:177.598902px;}
.y216{bottom:178.249307px;}
.y68{bottom:178.627455px;}
.y6d{bottom:179.998891px;}
.y1ac{bottom:181.064832px;}
.y1d5{bottom:181.999500px;}
.y1d2{bottom:182.837847px;}
.y38a{bottom:183.345000px;}
.y1ab{bottom:184.377276px;}
.ye1{bottom:184.513142px;}
.y202{bottom:184.542000px;}
.y2f{bottom:185.064000px;}
.y1d1{bottom:185.506726px;}
.y95{bottom:185.827410px;}
.y15e{bottom:186.943500px;}
.y2d1{bottom:188.603042px;}
.y74{bottom:188.913113px;}
.y2d5{bottom:189.448839px;}
.yd2{bottom:189.796500px;}
.y2cb{bottom:190.108751px;}
.y6c{bottom:191.313102px;}
.y2b0{bottom:191.627494px;}
.y349{bottom:193.134000px;}
.y5e{bottom:193.370232px;}
.y63{bottom:194.398793px;}
.ye0{bottom:195.150690px;}
.y1d4{bottom:195.448500px;}
.y1b1{bottom:195.658862px;}
.y389{bottom:198.289500px;}
.y92{bottom:200.227320px;}
.y73{bottom:200.227324px;}
.y1cb{bottom:200.799471px;}
.y1a8{bottom:201.669959px;}
.y2d0{bottom:202.064121px;}
.y201{bottom:202.474500px;}
.y6b{bottom:202.627313px;}
.y2d4{bottom:202.909918px;}
.y2e{bottom:202.996500px;}
.y1cd{bottom:203.370062px;}
.y1a7{bottom:204.384883px;}
.y5d{bottom:204.684443px;}
.y15d{bottom:204.876000px;}
.y207{bottom:206.048481px;}
.y1a6{bottom:207.697327px;}
.y1ce{bottom:207.917842px;}
.y1d3{bottom:208.899000px;}
.y17f{bottom:210.436516px;}
.y62{bottom:210.512975px;}
.y1b0{bottom:211.053770px;}
.y348{bottom:211.066500px;}
.y182{bottom:211.468950px;}
.y72{bottom:211.541535px;}
.y1cc{bottom:211.593201px;}
.y1ae{bottom:211.753262px;}
.y1a5{bottom:212.176132px;}
.y1a4{bottom:212.431345px;}
.y388{bottom:213.234000px;}
.y1c4{bottom:213.397926px;}
.y6a{bottom:213.941524px;}
.y1ad{bottom:214.282395px;}
.y1af{bottom:214.366207px;}
.y90{bottom:214.627234px;}
.y2cf{bottom:215.525199px;}
.y5c{bottom:215.998654px;}
.y2d3{bottom:216.370996px;}
.yd1{bottom:217.872000px;}
.y206{bottom:218.917070px;}
.y2cc{bottom:220.061331px;}
.y200{bottom:220.407000px;}
.y2e9{bottom:220.878000px;}
.y2d{bottom:220.929000px;}
.y15c{bottom:222.808500px;}
.y69{bottom:225.255735px;}
.y8f{bottom:225.941445px;}
.y61{bottom:226.284303px;}
.y78{bottom:226.627155px;}
.y5b{bottom:227.312865px;}
.y387{bottom:228.177000px;}
.y347{bottom:228.999000px;}
.y181{bottom:230.064084px;}
.y2ce{bottom:230.161792px;}
.y2d2{bottom:230.204799px;}
.y17e{bottom:230.418000px;}
.y12a{bottom:230.976000px;}
.y20e{bottom:235.652970px;}
.yd0{bottom:235.804500px;}
.y2b6{bottom:237.966000px;}
.y1ff{bottom:238.339500px;}
.y232{bottom:238.765500px;}
.y2e8{bottom:238.810500px;}
.y2c{bottom:238.861500px;}
.y273{bottom:238.863000px;}
.y208{bottom:239.415879px;}
.y56{bottom:240.006000px;}
.y15b{bottom:240.741000px;}
.y60{bottom:242.398485px;}
.y91{bottom:243.084195px;}
.y386{bottom:243.121500px;}
.y180{bottom:243.483374px;}
.y76{bottom:243.769905px;}
.yb6{bottom:244.071000px;}
.y5f{bottom:244.112760px;}
.y346{bottom:246.931500px;}
.y129{bottom:248.908500px;}
.y2b5{bottom:251.415000px;}
.ycf{bottom:253.737000px;}
.yde{bottom:254.720973px;}
.ye5{bottom:254.914383px;}
.y1fe{bottom:256.272000px;}
.y231{bottom:256.698000px;}
.y2e7{bottom:256.743000px;}
.y2b{bottom:256.795500px;}
.y55{bottom:257.938500px;}
.y385{bottom:258.064500px;}
.y15a{bottom:258.673500px;}
.yb5{bottom:262.003500px;}
.y2b4{bottom:264.864000px;}
.y345{bottom:264.865500px;}
.ydd{bottom:265.358522px;}
.ye4{bottom:265.551932px;}
.y209{bottom:266.020865px;}
.y128{bottom:266.842500px;}
.yce{bottom:271.669500px;}
.y384{bottom:273.009000px;}
.y1fd{bottom:274.204500px;}
.y230{bottom:274.630500px;}
.y2e6{bottom:274.675500px;}
.y2a{bottom:274.728000px;}
.y54{bottom:275.872500px;}
.ydc{bottom:275.996070px;}
.ye3{bottom:276.189480px;}
.y159{bottom:276.607500px;}
.y2b3{bottom:278.314500px;}
.yb4{bottom:279.936000px;}
.y344{bottom:282.798000px;}
.y127{bottom:284.775000px;}
.y383{bottom:287.953500px;}
.ycd{bottom:289.602000px;}
.y2b2{bottom:291.763500px;}
.y1fc{bottom:292.138500px;}
.y22f{bottom:292.563000px;}
.y2e5{bottom:292.608000px;}
.y20a{bottom:292.625851px;}
.y29{bottom:292.660500px;}
.y53{bottom:293.805000px;}
.y158{bottom:294.540000px;}
.y272{bottom:295.476000px;}
.yb3{bottom:297.868500px;}
.ydb{bottom:299.398680px;}
.y343{bottom:300.730500px;}
.y382{bottom:302.896500px;}
.ye7{bottom:306.554852px;}
.ycc{bottom:307.534500px;}
.y1fb{bottom:310.071000px;}
.y22e{bottom:310.495500px;}
.y2e4{bottom:310.542000px;}
.y28{bottom:310.593000px;}
.y52{bottom:311.737500px;}
.y157{bottom:312.472500px;}
.y126{bottom:312.754500px;}
.y2af{bottom:313.282500px;}
.y271{bottom:313.408500px;}
.ye6{bottom:315.645120px;}
.yb2{bottom:315.801000px;}
.y381{bottom:317.841000px;}
.y342{bottom:318.663000px;}
.y20b{bottom:319.230838px;}
.yda{bottom:322.607883px;}
.ycb{bottom:325.468500px;}
.y1fa{bottom:328.003500px;}
.y22d{bottom:328.428000px;}
.y2e3{bottom:328.474500px;}
.y27{bottom:328.525500px;}
.y51{bottom:329.670000px;}
.y111{bottom:329.833500px;}
.y156{bottom:330.405000px;}
.y125{bottom:330.687000px;}
.y270{bottom:331.341000px;}
.y380{bottom:332.785500px;}
.yd9{bottom:333.245432px;}
.yb1{bottom:333.733500px;}
.y341{bottom:336.595500px;}
.yca{bottom:343.401000px;}
.yd8{bottom:343.882980px;}
.y20c{bottom:345.835824px;}
.y1f9{bottom:345.936000px;}
.y22c{bottom:346.362000px;}
.y2e2{bottom:346.407000px;}
.y26{bottom:346.458000px;}
.y2a0{bottom:346.459500px;}
.y50{bottom:347.602500px;}
.y37f{bottom:347.728500px;}
.y110{bottom:347.766000px;}
.y155{bottom:348.337500px;}
.y124{bottom:348.619500px;}
.y26f{bottom:349.273500px;}
.yb0{bottom:353.094000px;}
.y340{bottom:354.529500px;}
.yc9{bottom:361.345500px;}
.y37e{bottom:362.673000px;}
.y1f8{bottom:362.824500px;}
.y22b{bottom:364.294500px;}
.y2e1{bottom:364.339500px;}
.y29f{bottom:364.392000px;}
.y4f{bottom:364.963500px;}
.y25{bottom:365.230500px;}
.y10f{bottom:365.698500px;}
.y123{bottom:366.552000px;}
.y26e{bottom:367.206000px;}
.yaf{bottom:371.026500px;}
.y154{bottom:372.183000px;}
.y20d{bottom:372.440810px;}
.y37d{bottom:377.617500px;}
.yc8{bottom:379.278000px;}
.y1f7{bottom:380.757000px;}
.y2e0{bottom:382.272000px;}
.y29e{bottom:382.324500px;}
.y4e{bottom:382.896000px;}
.y24{bottom:383.164500px;}
.y10e{bottom:383.632500px;}
.y122{bottom:384.484500px;}
.y26d{bottom:385.138500px;}
.y20f{bottom:385.886123px;}
.y22a{bottom:386.886000px;}
.yae{bottom:388.959000px;}
.y153{bottom:390.115500px;}
.y37c{bottom:392.560500px;}
.yc7{bottom:397.210500px;}
.y3b6{bottom:397.267500px;}
.y1f6{bottom:398.689500px;}
.y2df{bottom:400.204500px;}
.y305{bottom:400.257000px;}
.y4d{bottom:400.828500px;}
.y29d{bottom:400.836000px;}
.y23{bottom:401.097000px;}
.y10d{bottom:401.565000px;}
.y121{bottom:402.418500px;}
.y26c{bottom:403.072500px;}
.y33f{bottom:404.625000px;}
.yad{bottom:406.891500px;}
.y37b{bottom:407.505000px;}
.y33e{bottom:407.878500px;}
.y152{bottom:408.048000px;}
.y3b5{bottom:412.212000px;}
.y229{bottom:414.613500px;}
.yc6{bottom:415.143000px;}
.y1f5{bottom:416.622000px;}
.y2de{bottom:418.138500px;}
.y304{bottom:418.189500px;}
.y4c{bottom:418.761000px;}
.y29c{bottom:418.768500px;}
.y22{bottom:419.029500px;}
.y10c{bottom:419.497500px;}
.y120{bottom:420.351000px;}
.y37a{bottom:422.449500px;}
.y33c{bottom:423.570000px;}
.y26b{bottom:423.819000px;}
.yac{bottom:424.825500px;}
.y151{bottom:425.982000px;}
.y33d{bottom:427.041000px;}
.y3b4{bottom:427.156500px;}
.y228{bottom:432.546000px;}
.yc5{bottom:433.075500px;}
.y1f4{bottom:434.556000px;}
.y2dd{bottom:436.071000px;}
.y303{bottom:436.122000px;}
.y4b{bottom:436.695000px;}
.y29b{bottom:436.701000px;}
.y21{bottom:436.962000px;}
.y379{bottom:437.392500px;}
.y10b{bottom:437.430000px;}
.y11f{bottom:438.283500px;}
.y26a{bottom:441.751500px;}
.y3b3{bottom:442.099500px;}
.yab{bottom:442.758000px;}
.y150{bottom:443.914500px;}
.y227{bottom:450.478500px;}
.yc4{bottom:451.009500px;}
.y378{bottom:452.337000px;}
.y33b{bottom:452.445000px;}
.y1f3{bottom:452.488500px;}
.y2dc{bottom:454.003500px;}
.y302{bottom:454.054500px;}
.y4a{bottom:454.627500px;}
.y29a{bottom:454.635000px;}
.y20{bottom:454.894500px;}
.y10a{bottom:455.362500px;}
.y33a{bottom:455.700000px;}
.y11e{bottom:456.216000px;}
.y3b2{bottom:457.044000px;}
.y269{bottom:459.685500px;}
.yaa{bottom:460.690500px;}
.y14f{bottom:461.847000px;}
.y377{bottom:467.280000px;}
.y226{bottom:468.411000px;}
.yc3{bottom:468.942000px;}
.y1f2{bottom:470.421000px;}
.y338{bottom:471.390000px;}
.y2db{bottom:471.936000px;}
.y301{bottom:471.988500px;}
.y49{bottom:472.560000px;}
.y299{bottom:472.567500px;}
.y1f{bottom:472.828500px;}
.y109{bottom:474.603000px;}
.y339{bottom:474.861000px;}
.y268{bottom:477.618000px;}
.ya9{bottom:478.623000px;}
.y14e{bottom:479.779500px;}
.y376{bottom:482.224500px;}
.y11d{bottom:484.195500px;}
.y225{bottom:486.343500px;}
.yc2{bottom:486.874500px;}
.y3b1{bottom:486.931500px;}
.y1f1{bottom:488.353500px;}
.y331{bottom:488.575500px;}
.y2da{bottom:489.868500px;}
.y300{bottom:489.921000px;}
.y48{bottom:490.492500px;}
.y298{bottom:490.500000px;}
.y1e{bottom:490.761000px;}
.y108{bottom:492.535500px;}
.y267{bottom:495.550500px;}
.ya8{bottom:496.555500px;}
.y375{bottom:497.169000px;}
.y14d{bottom:497.712000px;}
.y337{bottom:500.265000px;}
.y3b0{bottom:501.876000px;}
.y11c{bottom:502.128000px;}
.y336{bottom:503.520000px;}
.y224{bottom:504.277500px;}
.yc1{bottom:504.807000px;}
.y1f0{bottom:506.286000px;}
.y2ff{bottom:507.853500px;}
.y47{bottom:508.425000px;}
.y297{bottom:508.432500px;}
.y1d{bottom:508.693500px;}
.y107{bottom:510.468000px;}
.y374{bottom:512.112000px;}
.y266{bottom:513.483000px;}
.ya7{bottom:514.488000px;}
.y14c{bottom:515.644500px;}
.y3af{bottom:516.820500px;}
.y334{bottom:519.211500px;}
.y17d{bottom:519.900000px;}
.y11b{bottom:520.060500px;}
.y2d9{bottom:522.120000px;}
.y223{bottom:522.210000px;}
.y335{bottom:522.681000px;}
.yc0{bottom:522.739500px;}
.y1ef{bottom:524.218500px;}
.y2fe{bottom:525.786000px;}
.y46{bottom:526.357500px;}
.y1c{bottom:526.626000px;}
.y373{bottom:527.056500px;}
.y106{bottom:528.402000px;}
.y3ae{bottom:531.763500px;}
.ya6{bottom:532.422000px;}
.y295{bottom:533.193000px;}
.y14b{bottom:533.578500px;}
.y2d8{bottom:535.569000px;}
.y17c{bottom:537.832500px;}
.y222{bottom:540.142500px;}
.ybf{bottom:540.672000px;}
.y292{bottom:540.799500px;}
.y372{bottom:542.001000px;}
.y1ee{bottom:542.152500px;}
.y2ae{bottom:544.024500px;}
.y45{bottom:544.291500px;}
.y1b{bottom:544.558500px;}
.y2fd{bottom:545.775000px;}
.y105{bottom:546.334500px;}
.y3ad{bottom:546.708000px;}
.y11a{bottom:548.040000px;}
.y333{bottom:548.086500px;}
.y2d7{bottom:549.019500px;}
.ya5{bottom:550.354500px;}
.y291{bottom:551.050500px;}
.y332{bottom:551.341500px;}
.y14a{bottom:551.511000px;}
.y17b{bottom:555.765000px;}
.y371{bottom:556.944000px;}
.y221{bottom:558.075000px;}
.ybe{bottom:558.606000px;}
.y1ed{bottom:559.563000px;}
.y3ac{bottom:561.652500px;}
.y2ad{bottom:561.957000px;}
.y44{bottom:562.224000px;}
.y2d6{bottom:562.468500px;}
.y1a{bottom:562.491000px;}
.y296{bottom:563.155500px;}
.y2fc{bottom:563.707500px;}
.y104{bottom:564.267000px;}
.y294{bottom:565.248000px;}
.y119{bottom:567.054000px;}
.y265{bottom:568.195500px;}
.y149{bottom:569.443500px;}
.y293{bottom:569.896500px;}
.y370{bottom:571.888500px;}
.ya4{bottom:573.495000px;}
.y17a{bottom:573.697500px;}
.y330{bottom:574.089000px;}
.y220{bottom:576.007500px;}
.y264{bottom:576.414000px;}
.ybd{bottom:576.538500px;}
.y3ab{bottom:576.595500px;}
.y32f{bottom:577.344000px;}
.y1ec{bottom:577.495500px;}
.y2ac{bottom:579.889500px;}
.y43{bottom:580.156500px;}
.y2fb{bottom:581.640000px;}
.y103{bottom:582.199500px;}
.y2c3{bottom:583.987500px;}
.y118{bottom:584.986500px;}
.y290{bottom:586.263000px;}
.y36f{bottom:586.833000px;}
.y19{bottom:588.070500px;}
.ya3{bottom:591.427500px;}
.y3aa{bottom:591.540000px;}
.y32d{bottom:593.034000px;}
.y148{bottom:593.289000px;}
.y179{bottom:593.895000px;}
.ybc{bottom:594.471000px;}
.y1eb{bottom:595.428000px;}
.y32e{bottom:596.505000px;}
.y42{bottom:597.517500px;}
.y2ab{bottom:597.822000px;}
.y2fa{bottom:599.572500px;}
.y102{bottom:600.132000px;}
.y36e{bottom:601.776000px;}
.y263{bottom:605.892000px;}
.y260{bottom:606.184500px;}
.y3a9{bottom:606.483000px;}
.y28f{bottom:609.037500px;}
.ya2{bottom:609.360000px;}
.y147{bottom:611.221500px;}
.y178{bottom:611.827500px;}
.ybb{bottom:612.403500px;}
.y1ea{bottom:613.360500px;}
.y41{bottom:615.450000px;}
.y2aa{bottom:615.754500px;}
.y36d{bottom:616.720500px;}
.y2f9{bottom:617.505000px;}
.y101{bottom:618.064500px;}
.y25f{bottom:619.633500px;}
.y262{bottom:620.835000px;}
.y3a8{bottom:621.427500px;}
.y32c{bottom:621.909000px;}
.y21f{bottom:623.805000px;}
.y18{bottom:624.234000px;}
.y32b{bottom:625.164000px;}
.ya1{bottom:627.294000px;}
.y146{bottom:629.154000px;}
.y177{bottom:629.760000px;}
.yba{bottom:630.336000px;}
.y28e{bottom:630.373500px;}
.y1e9{bottom:631.293000px;}
.y36c{bottom:631.665000px;}
.y25e{bottom:633.084000px;}
.y40{bottom:633.382500px;}
.y2a9{bottom:633.688500px;}
.y117{bottom:634.744500px;}
.y2f8{bottom:635.439000px;}
.y261{bottom:635.779500px;}
.y100{bottom:635.998500px;}
.y3a7{bottom:636.370500px;}
.y21e{bottom:637.254000px;}
.y17{bottom:639.178500px;}
.y28d{bottom:640.623000px;}
.y329{bottom:640.855500px;}
.y32a{bottom:644.325000px;}
.ya0{bottom:645.226500px;}
.y36b{bottom:646.608000px;}
.y145{bottom:647.086500px;}
.y176{bottom:647.692500px;}
.y116{bottom:648.193500px;}
.y1e8{bottom:649.225500px;}
.y21d{bottom:650.704500px;}
.y3f{bottom:651.315000px;}
.y2a8{bottom:651.621000px;}
.yb9{bottom:653.017500px;}
.y2f7{bottom:653.371500px;}
.yff{bottom:653.931000px;}
.y322{bottom:658.041000px;}
.y25d{bottom:658.531500px;}
.y36a{bottom:661.552500px;}
.y115{bottom:661.642500px;}
.y9f{bottom:663.159000px;}
.y16{bottom:663.270000px;}
.y21c{bottom:664.153500px;}
.y144{bottom:665.019000px;}
.y25a{bottom:665.548500px;}
.y175{bottom:665.625000px;}
.y3a6{bottom:666.259500px;}
.y1e7{bottom:667.159500px;}
.y3e{bottom:669.247500px;}
.y2a7{bottom:669.553500px;}
.y328{bottom:669.730500px;}
.y2f6{bottom:671.304000px;}
.yfe{bottom:671.863500px;}
.y327{bottom:672.984000px;}
.y25c{bottom:673.476000px;}
.y114{bottom:675.093000px;}
.y369{bottom:676.495500px;}
.y21b{bottom:677.602500px;}
.y15{bottom:678.214500px;}
.y259{bottom:678.999000px;}
.y9e{bottom:681.091500px;}
.y3a5{bottom:681.202500px;}
.y28c{bottom:681.366000px;}
.y174{bottom:683.557500px;}
.y143{bottom:684.831000px;}
.y1e6{bottom:685.092000px;}
.y3d{bottom:687.180000px;}
.y2a6{bottom:687.486000px;}
.y25b{bottom:688.419000px;}
.y113{bottom:688.542000px;}
.y325{bottom:688.675500px;}
.y2f5{bottom:689.236500px;}
.y21a{bottom:691.053000px;}
.y368{bottom:691.440000px;}
.y326{bottom:692.146500px;}
.y14{bottom:693.159000px;}
.y3a4{bottom:696.147000px;}
.y9d{bottom:699.024000px;}
.y28b{bottom:699.298500px;}
.y173{bottom:701.491500px;}
.y112{bottom:701.991000px;}
.y142{bottom:702.765000px;}
.y1e5{bottom:703.024500px;}
.y3c{bottom:705.114000px;}
.y2a5{bottom:705.418500px;}
.y367{bottom:706.384500px;}
.y2f4{bottom:707.169000px;}
.y13{bottom:708.102000px;}
.y3a3{bottom:711.091500px;}
.y258{bottom:711.171000px;}
.y205{bottom:712.572000px;}
.y9c{bottom:716.956500px;}
.y28a{bottom:717.232500px;}
.y324{bottom:717.550500px;}
.y172{bottom:719.424000px;}
.y141{bottom:720.697500px;}
.y323{bottom:720.805500px;}
.y366{bottom:721.327500px;}
.yfd{bottom:721.923000px;}
.y1e4{bottom:722.263500px;}
.y12{bottom:723.046500px;}
.y2f3{bottom:725.101500px;}
.y3a2{bottom:726.034500px;}
.y257{bottom:726.115500px;}
.y253{bottom:726.408000px;}
.y2a4{bottom:731.500500px;}
.yb8{bottom:734.889000px;}
.y9b{bottom:734.890500px;}
.yfc{bottom:735.373500px;}
.y289{bottom:735.628500px;}
.y365{bottom:736.272000px;}
.y171{bottom:737.356500px;}
.y11{bottom:737.991000px;}
.y140{bottom:738.630000px;}
.y252{bottom:739.858500px;}
.y1e3{bottom:740.196000px;}
.y3b{bottom:740.979000px;}
.y256{bottom:741.060000px;}
.y2f2{bottom:743.035500px;}
.y321{bottom:743.553000px;}
.y320{bottom:746.808000px;}
.y364{bottom:751.216500px;}
.y9a{bottom:752.823000px;}
.y10{bottom:752.934000px;}
.y251{bottom:753.307500px;}
.y288{bottom:753.561000px;}
.y3a1{bottom:755.923500px;}
.y255{bottom:756.003000px;}
.y13f{bottom:756.562500px;}
.yd3{bottom:756.892500px;}
.y170{bottom:757.101000px;}
.y1e2{bottom:758.128500px;}
.y3a{bottom:758.911500px;}
.y2a3{bottom:759.493500px;}
.y2f1{bottom:760.968000px;}
.y31e{bottom:762.499500px;}
.y31f{bottom:765.969000px;}
.y363{bottom:766.159500px;}
.yf{bottom:767.878500px;}
.y3a0{bottom:770.866500px;}
.y254{bottom:770.947500px;}
.y287{bottom:771.493500px;}
.y13e{bottom:774.495000px;}
.y16f{bottom:775.033500px;}
.y1e1{bottom:776.061000px;}
.y39{bottom:776.844000px;}
.y362{bottom:781.104000px;}
.ye{bottom:782.823000px;}
.y39f{bottom:785.811000px;}
.y250{bottom:786.489000px;}
.y286{bottom:789.426000px;}
.y2f0{bottom:790.803000px;}
.y31d{bottom:791.374500px;}
.y13d{bottom:792.429000px;}
.y16e{bottom:792.966000px;}
.y1e0{bottom:793.993500px;}
.y31c{bottom:794.628000px;}
.y38{bottom:794.776500px;}
.y2a2{bottom:794.778000px;}
.y361{bottom:796.048500px;}
.yd{bottom:797.766000px;}
.y39e{bottom:800.755500px;}
.y99{bottom:801.139500px;}
.y285{bottom:807.358500px;}
.y24f{bottom:809.055000px;}
.y31a{bottom:810.319500px;}
.y13c{bottom:810.361500px;}
.y16d{bottom:810.898500px;}
.y360{bottom:810.991500px;}
.y1df{bottom:811.927500px;}
.yc{bottom:812.710500px;}
.y31b{bottom:813.790500px;}
.y98{bottom:814.588500px;}
.y39d{bottom:815.698500px;}
.y24e{bottom:822.504000px;}
.y284{bottom:825.291000px;}
.y35f{bottom:825.936000px;}
.yb{bottom:827.655000px;}
.y97{bottom:828.039000px;}
.y13b{bottom:828.294000px;}
.y2ef{bottom:828.588000px;}
.y16c{bottom:828.831000px;}
.y1de{bottom:829.860000px;}
.y37{bottom:830.643000px;}
.y319{bottom:839.194500px;}
.y35e{bottom:840.880500px;}
.y318{bottom:842.449500px;}
.ya{bottom:842.598000px;}
.y283{bottom:843.225000px;}
.y39c{bottom:845.586000px;}
.y13a{bottom:846.226500px;}
.y2ee{bottom:846.520500px;}
.y16b{bottom:846.763500px;}
.y1dd{bottom:847.792500px;}
.y36{bottom:848.575500px;}
.y5a{bottom:849.558000px;}
.y2c2{bottom:852.078000px;}
.y35d{bottom:855.823500px;}
.y9{bottom:857.542500px;}
.y316{bottom:858.141000px;}
.y39b{bottom:860.530500px;}
.y282{bottom:861.157500px;}
.y317{bottom:861.610500px;}
.y24d{bottom:862.021500px;}
.y139{bottom:864.159000px;}
.y2ed{bottom:864.453000px;}
.y16a{bottom:864.697500px;}
.y35{bottom:866.508000px;}
.y1dc{bottom:867.031500px;}
.y2c1{bottom:870.012000px;}
.y35c{bottom:870.768000px;}
.y8{bottom:872.485500px;}
.y24c{bottom:875.470500px;}
.y39a{bottom:875.475000px;}
.y281{bottom:879.090000px;}
.y138{bottom:882.091500px;}
.y2ec{bottom:882.385500px;}
.y169{bottom:882.630000px;}
.y34{bottom:884.440500px;}
.y2a1{bottom:884.442000px;}
.y1db{bottom:884.964000px;}
.y35b{bottom:885.711000px;}
.y315{bottom:887.016000px;}
.y7{bottom:887.430000px;}
.y2c0{bottom:887.944500px;}
.y24b{bottom:888.919500px;}
.y309{bottom:889.522500px;}
.y314{bottom:890.269500px;}
.y399{bottom:890.418000px;}
.y280{bottom:897.022500px;}
.y137{bottom:900.025500px;}
.y2eb{bottom:900.318000px;}
.y168{bottom:900.562500px;}
.y35a{bottom:900.655500px;}
.y24a{bottom:902.370000px;}
.y6{bottom:902.374500px;}
.y398{bottom:905.362500px;}
.y2bf{bottom:905.877000px;}
.y312{bottom:905.961000px;}
.y313{bottom:909.432000px;}
.y359{bottom:915.600000px;}
.y249{bottom:915.819000px;}
.y136{bottom:917.958000px;}
.y2ea{bottom:918.250500px;}
.y167{bottom:918.495000px;}
.y1da{bottom:920.307000px;}
.y2be{bottom:923.809500px;}
.y27e{bottom:924.727500px;}
.y248{bottom:929.268000px;}
.y358{bottom:930.543000px;}
.y311{bottom:934.836000px;}
.y397{bottom:935.250000px;}
.y135{bottom:935.890500px;}
.y166{bottom:936.427500px;}
.y310{bottom:938.091000px;}
.y1d9{bottom:938.239500px;}
.y2bd{bottom:941.742000px;}
.y357{bottom:945.487500px;}
.y27d{bottom:946.354500px;}
.y396{bottom:950.194500px;}
.y233{bottom:950.788500px;}
.y30e{bottom:953.781000px;}
.y134{bottom:953.823000px;}
.y27a{bottom:953.961000px;}
.y165{bottom:954.360000px;}
.y5{bottom:955.027500px;}
.y1d8{bottom:956.172000px;}
.y30f{bottom:957.252000px;}
.y2bc{bottom:959.674500px;}
.y356{bottom:960.432000px;}
.y279{bottom:964.212000px;}
.y395{bottom:965.139000px;}
.y27f{bottom:971.682000px;}
.y133{bottom:971.755500px;}
.y164{bottom:972.294000px;}
.y1d7{bottom:974.104500px;}
.y355{bottom:975.375000px;}
.y2bb{bottom:977.608500px;}
.y27c{bottom:978.409500px;}
.y4{bottom:978.943500px;}
.y394{bottom:980.082000px;}
.y30d{bottom:982.656000px;}
.y27b{bottom:983.058000px;}
.y30c{bottom:985.911000px;}
.y354{bottom:990.319500px;}
.y163{bottom:992.037000px;}
.y132{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y393{bottom:995.026500px;}
.y2ba{bottom:995.541000px;}
.y278{bottom:999.919500px;}
.y30b{bottom:1005.072000px;}
.y353{bottom:1005.264000px;}
.y30a{bottom:1008.327000px;}
.y162{bottom:1009.969500px;}
.y131{bottom:1009.971000px;}
.y277{bottom:1010.170500px;}
.y2b9{bottom:1013.473500px;}
.y352{bottom:1020.207000px;}
.y392{bottom:1024.914000px;}
.y130{bottom:1027.903500px;}
.y2b8{bottom:1031.406000px;}
.y308{bottom:1034.329500px;}
.y351{bottom:1035.151500px;}
.y2{bottom:1039.309500px;}
.y391{bottom:1039.858500px;}
.y276{bottom:1045.257000px;}
.y12f{bottom:1045.836000px;}
.y350{bottom:1050.096000px;}
.y2b7{bottom:1053.994500px;}
.y390{bottom:1054.803000px;}
.y307{bottom:1056.745500px;}
.y275{bottom:1063.189500px;}
.y12e{bottom:1063.768500px;}
.y34f{bottom:1065.039000px;}
.y38f{bottom:1069.746000px;}
.y34e{bottom:1079.983500px;}
.y274{bottom:1081.122000px;}
.y1{bottom:1081.152000px;}
.y12d{bottom:1081.701000px;}
.y38e{bottom:1084.690500px;}
.y306{bottom:1086.184500px;}
.y161{bottom:1099.633500px;}
.y12c{bottom:1099.635000px;}
.h3e{height:2.391024px;}
.h43{height:11.519700px;}
.h26{height:17.164160px;}
.h23{height:17.164169px;}
.h2b{height:17.172498px;}
.h1a{height:19.319074px;}
.h4f{height:20.234041px;}
.h15{height:24.131675px;}
.h12{height:26.690580px;}
.h13{height:27.464220px;}
.h3{height:27.783619px;}
.h3d{height:28.285733px;}
.h14{height:28.463001px;}
.h2f{height:28.602424px;}
.ha{height:28.799820px;}
.he{height:29.615440px;}
.h31{height:29.746521px;}
.hb{height:30.712308px;}
.h34{height:31.049438px;}
.hf{height:32.900573px;}
.h37{height:33.091855px;}
.h38{height:33.985891px;}
.h4b{height:34.093371px;}
.h27{height:34.328321px;}
.h18{height:34.344995px;}
.h46{height:34.349176px;}
.h47{height:35.385871px;}
.h39{height:35.865450px;}
.h54{height:36.744307px;}
.h8{height:37.013299px;}
.h56{height:37.019299px;}
.h6{height:37.228493px;}
.h57{height:37.277299px;}
.h55{height:37.283299px;}
.h5{height:37.605082px;}
.h33{height:39.329288px;}
.h35{height:39.585664px;}
.h36{height:39.825297px;}
.h30{height:40.043393px;}
.hc{height:40.114035px;}
.h10{height:40.826735px;}
.h4a{height:40.912045px;}
.h4{height:41.125613px;}
.h7{height:41.364715px;}
.h48{height:41.547533px;}
.h52{height:41.684041px;}
.h4d{height:41.690041px;}
.hd{height:42.777858px;}
.h2d{height:42.799330px;}
.h28{height:42.931304px;}
.h21{height:43.868672px;}
.h24{height:43.868674px;}
.h4c{height:44.321382px;}
.h16{height:44.831700px;}
.h29{height:45.083124px;}
.h22{height:46.258743px;}
.h1b{height:49.376240px;}
.h19{height:49.376243px;}
.h40{height:49.473619px;}
.h44{height:50.811024px;}
.h2a{height:51.566367px;}
.h1d{height:52.086998px;}
.h1c{height:53.402003px;}
.h1e{height:53.402108px;}
.h51{height:54.704041px;}
.h4e{height:54.710041px;}
.h25{height:57.118448px;}
.h2{height:59.619450px;}
.h3f{height:59.939700px;}
.h20{height:61.415620px;}
.h1f{height:65.441195px;}
.h2c{height:67.400826px;}
.h3a{height:67.626624px;}
.h53{height:68.582041px;}
.h50{height:68.588041px;}
.h41{height:83.797330px;}
.h3c{height:83.803330px;}
.h3b{height:85.271700px;}
.h42{height:86.077613px;}
.h1{height:98.701718px;}
.h32{height:161.398686px;}
.h45{height:204.847046px;}
.h49{height:244.511675px;}
.h9{height:262.626930px;}
.h17{height:266.272725px;}
.h11{height:355.294170px;}
.h2e{height:399.618230px;}
.h0{height:1188.000000px;}
.w2{width:376.569270px;}
.w3{width:376.585711px;}
.w6{width:376.586198px;}
.w4{width:376.594778px;}
.w5{width:376.596935px;}
.w7{width:376.599977px;}
.w1{width:771.080895px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x70{left:3.919099px;}
.x18{left:6.772758px;}
.x2f{left:8.690105px;}
.x4e{left:10.261333px;}
.x8a{left:12.445573px;}
.x5d{left:13.507810px;}
.x7e{left:14.534725px;}
.x26{left:15.612249px;}
.x27{left:18.989577px;}
.x4f{left:20.665407px;}
.x28{left:22.704016px;}
.x83{left:25.497245px;}
.x5c{left:27.079262px;}
.x19{left:28.369880px;}
.x52{left:30.058229px;}
.x53{left:37.248346px;}
.x82{left:39.091662px;}
.xa4{left:41.786862px;}
.x5e{left:43.744411px;}
.x2b{left:46.817983px;}
.x84{left:49.233954px;}
.xa3{left:50.543887px;}
.x2a{left:53.076346px;}
.x4b{left:55.168171px;}
.x1f{left:57.271989px;}
.x30{left:59.769492px;}
.x81{left:61.646015px;}
.x7f{left:63.819720px;}
.x54{left:65.510419px;}
.x31{left:67.415187px;}
.x80{left:70.232002px;}
.x55{left:72.115734px;}
.x7{left:73.446000px;}
.x50{left:74.520401px;}
.xb9{left:75.936000px;}
.x8d{left:77.182500px;}
.x51{left:81.905127px;}
.x43{left:85.922588px;}
.x1c{left:87.040500px;}
.x6{left:88.390500px;}
.x35{left:89.460442px;}
.x36{left:91.618898px;}
.xa2{left:92.805369px;}
.x56{left:95.548962px;}
.x4a{left:97.140566px;}
.x1{left:101.799000px;}
.x89{left:103.048231px;}
.x4c{left:106.185517px;}
.x85{left:108.988947px;}
.x4d{left:112.563796px;}
.x37{left:116.657756px;}
.xb7{left:122.257500px;}
.x2d{left:127.228966px;}
.x2c{left:129.720087px;}
.x69{left:134.664890px;}
.x57{left:136.373563px;}
.x68{left:137.648413px;}
.x1e{left:139.042449px;}
.x6a{left:140.533429px;}
.x38{left:141.788871px;}
.x3{left:143.013000px;}
.x2e{left:145.956856px;}
.x4{left:147.711000px;}
.x16{left:150.676544px;}
.xa5{left:154.921500px;}
.x17{left:155.940397px;}
.xa1{left:160.846500px;}
.x71{left:162.844261px;}
.x72{left:164.610512px;}
.x3f{left:169.432962px;}
.x7a{left:171.648432px;}
.x64{left:175.623123px;}
.x23{left:176.792210px;}
.x7b{left:178.694571px;}
.x6d{left:181.316453px;}
.x40{left:183.745303px;}
.x6e{left:185.764953px;}
.x22{left:188.485780px;}
.x78{left:190.471102px;}
.x21{left:192.473896px;}
.x6b{left:194.114623px;}
.x46{left:197.077055px;}
.x6f{left:199.137550px;}
.x8{left:203.428500px;}
.x47{left:206.167323px;}
.x88{left:207.242948px;}
.x7c{left:211.190379px;}
.x77{left:212.507681px;}
.x6c{left:213.844944px;}
.x76{left:219.970869px;}
.x7d{left:225.916992px;}
.x20{left:226.924085px;}
.x3c{left:230.902528px;}
.x29{left:232.240926px;}
.x61{left:234.557977px;}
.x87{left:237.005924px;}
.x8c{left:238.953000px;}
.x41{left:240.954046px;}
.x3d{left:244.247820px;}
.xb3{left:250.092000px;}
.x42{left:254.299338px;}
.x63{left:257.643422px;}
.x3e{left:259.407294px;}
.x75{left:260.605703px;}
.x5f{left:261.668983px;}
.x62{left:264.248518px;}
.x73{left:266.031888px;}
.x60{left:268.274309px;}
.x25{left:270.244059px;}
.x86{left:271.667351px;}
.x74{left:274.105598px;}
.x24{left:276.502804px;}
.x39{left:279.951304px;}
.x65{left:294.965496px;}
.x59{left:297.301122px;}
.x5{left:301.596000px;}
.x5a{left:303.906421px;}
.x3a{left:306.214449px;}
.x66{left:308.988726px;}
.x33{left:312.747841px;}
.x44{left:315.271839px;}
.x34{left:316.457449px;}
.x32{left:319.006586px;}
.x13{left:322.708840px;}
.x67{left:324.067544px;}
.x45{left:329.584179px;}
.x5b{left:331.173733px;}
.x3b{left:332.582034px;}
.x15{left:340.119017px;}
.x79{left:341.760297px;}
.xb4{left:344.988000px;}
.x58{left:352.351006px;}
.x48{left:361.059722px;}
.xba{left:364.252500px;}
.x14{left:365.373716px;}
.x8b{left:367.029135px;}
.x49{left:370.149991px;}
.x2{left:395.232000px;}
.xb5{left:404.592000px;}
.xb6{left:438.829500px;}
.xb8{left:440.323500px;}
.xc{left:449.625000px;}
.xa{left:467.967000px;}
.xbb{left:470.455500px;}
.xb2{left:471.702000px;}
.xa9{left:474.901500px;}
.x9b{left:475.993500px;}
.xb{left:481.561500px;}
.x9{left:482.910000px;}
.xaa{left:492.879000px;}
.xbc{left:507.807000px;}
.xe{left:509.359102px;}
.x12{left:513.277935px;}
.xf{left:515.863060px;}
.x99{left:520.857000px;}
.x8e{left:525.333000px;}
.x9c{left:532.489500px;}
.xa8{left:546.385500px;}
.x1a{left:566.831886px;}
.x9e{left:585.912000px;}
.x9d{left:588.408000px;}
.x98{left:591.327000px;}
.x1d{left:593.062500px;}
.xbe{left:597.741000px;}
.x9f{left:610.000500px;}
.x90{left:617.778000px;}
.x9a{left:620.758500px;}
.xa6{left:631.483500px;}
.xd{left:636.463500px;}
.xbf{left:640.770000px;}
.xb1{left:643.615500px;}
.x1b{left:646.782241px;}
.x8f{left:654.088500px;}
.x95{left:657.321000px;}
.x11{left:659.121595px;}
.x10{left:666.324978px;}
.x93{left:671.200500px;}
.x92{left:673.698000px;}
.x91{left:678.045000px;}
.xa7{left:686.853000px;}
.xab{left:688.980000px;}
.xc0{left:690.403500px;}
.xbd{left:692.898000px;}
.xb0{left:695.331000px;}
.x94{left:700.270500px;}
.xc1{left:715.765500px;}
.xae{left:751.225500px;}
.xac{left:757.576500px;}
.x96{left:770.199000px;}
.xa0{left:780.919500px;}
.xaf{left:808.803000px;}
.xad{left:815.154000px;}
.x97{left:827.130000px;}
@media print{
.v17{vertical-align:-43.040000pt;}
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-9.542618pt;}
.v11{vertical-align:-7.973333pt;}
.v15{vertical-align:-5.312000pt;}
.v10{vertical-align:-1.261154pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.409560pt;}
.v5{vertical-align:3.578456pt;}
.vf{vertical-align:6.842397pt;}
.va{vertical-align:10.701671pt;}
.vd{vertical-align:11.777577pt;}
.v8{vertical-align:14.279960pt;}
.vc{vertical-align:16.956415pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v6{vertical-align:22.663695pt;}
.v12{vertical-align:23.914667pt;}
.ve{vertical-align:28.733994pt;}
.vb{vertical-align:29.786910pt;}
.v9{vertical-align:33.365199pt;}
.v14{vertical-align:35.946667pt;}
.v13{vertical-align:38.912000pt;}
.v16{vertical-align:39.957333pt;}
.v18{vertical-align:43.040000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000001pt;}
.lsd{letter-spacing:0.000002pt;}
.ls2{letter-spacing:0.000125pt;}
.ls43{letter-spacing:0.000374pt;}
.ls1e{letter-spacing:0.000425pt;}
.lsa{letter-spacing:0.000479pt;}
.ls1f{letter-spacing:0.000576pt;}
.ls31{letter-spacing:0.000749pt;}
.ls3e{letter-spacing:0.000882pt;}
.ls4d{letter-spacing:0.001458pt;}
.ls26{letter-spacing:0.002387pt;}
.ls42{letter-spacing:0.002591pt;}
.ls1c{letter-spacing:0.002694pt;}
.ls17{letter-spacing:0.002906pt;}
.ls3a{letter-spacing:0.004025pt;}
.ls46{letter-spacing:0.004041pt;}
.ls37{letter-spacing:0.005459pt;}
.ls45{letter-spacing:0.005708pt;}
.ls32{letter-spacing:0.006082pt;}
.ls25{letter-spacing:1.476129pt;}
.ls19{letter-spacing:1.905799pt;}
.ls29{letter-spacing:1.905975pt;}
.ls10{letter-spacing:2.108364pt;}
.lsf{letter-spacing:2.120663pt;}
.ls41{letter-spacing:2.125766pt;}
.ls27{letter-spacing:2.332772pt;}
.ls3b{letter-spacing:2.371847pt;}
.ls50{letter-spacing:2.371905pt;}
.ls39{letter-spacing:2.377181pt;}
.ls4{letter-spacing:2.635446pt;}
.ls3{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.655527pt;}
.ls4e{letter-spacing:2.655711pt;}
.ls35{letter-spacing:2.656015pt;}
.lse{letter-spacing:2.656501pt;}
.ls34{letter-spacing:2.656693pt;}
.ls0{letter-spacing:2.658591pt;}
.ls18{letter-spacing:3.644745pt;}
.ls21{letter-spacing:7.381391pt;}
.ls7{letter-spacing:8.635679pt;}
.ls3c{letter-spacing:9.828025pt;}
.ls38{letter-spacing:10.040050pt;}
.ls24{letter-spacing:10.379145pt;}
.ls1b{letter-spacing:11.803145pt;}
.ls2b{letter-spacing:11.804745pt;}
.ls28{letter-spacing:11.805573pt;}
.ls2c{letter-spacing:11.808479pt;}
.ls2d{letter-spacing:11.810079pt;}
.ls1a{letter-spacing:11.810906pt;}
.ls23{letter-spacing:13.036911pt;}
.ls33{letter-spacing:13.394489pt;}
.ls22{letter-spacing:13.800239pt;}
.ls30{letter-spacing:14.460911pt;}
.ls1d{letter-spacing:14.466245pt;}
.ls20{letter-spacing:14.763145pt;}
.ls4f{letter-spacing:17.058133pt;}
.ls36{letter-spacing:18.560128pt;}
.ls15{letter-spacing:19.827032pt;}
.ls8{letter-spacing:20.789348pt;}
.ls16{letter-spacing:21.658313pt;}
.ls3f{letter-spacing:22.034694pt;}
.ls51{letter-spacing:25.607467pt;}
.ls5{letter-spacing:26.566586pt;}
.ls9{letter-spacing:26.571919pt;}
.ls14{letter-spacing:26.997391pt;}
.ls3d{letter-spacing:29.194313pt;}
.ls47{letter-spacing:29.225212pt;}
.ls40{letter-spacing:30.653361pt;}
.ls4c{letter-spacing:45.827879pt;}
.ls4a{letter-spacing:47.305212pt;}
.ls4b{letter-spacing:63.907879pt;}
.ls49{letter-spacing:63.913212pt;}
.ls2a{letter-spacing:66.952239pt;}
.ls12{letter-spacing:69.710641pt;}
.ls48{letter-spacing:69.886545pt;}
.lsb{letter-spacing:77.141469pt;}
.ls44{letter-spacing:86.494545pt;}
.ls2f{letter-spacing:95.211145pt;}
.ls13{letter-spacing:161.008473pt;}
.ls2e{letter-spacing:221.820745pt;}
.ws16e{word-spacing:-53.133867pt;}
.ws10c{word-spacing:-47.713098pt;}
.ws1ac{word-spacing:-45.163900pt;}
.ws113{word-spacing:-42.391041pt;}
.ws17e{word-spacing:-41.338148pt;}
.ws178{word-spacing:-38.883549pt;}
.ws12a{word-spacing:-34.611401pt;}
.ws12b{word-spacing:-27.225793pt;}
.ws181{word-spacing:-25.791179pt;}
.ws16c{word-spacing:-25.738045pt;}
.ws16a{word-spacing:-22.120343pt;}
.ws171{word-spacing:-22.115010pt;}
.ws172{word-spacing:-16.786630pt;}
.ws16b{word-spacing:-14.760588pt;}
.ws173{word-spacing:-13.878346pt;}
.ws182{word-spacing:-13.614291pt;}
.ws175{word-spacing:-13.608957pt;}
.ws7c{word-spacing:-13.283467pt;}
.ws19{word-spacing:-13.262246pt;}
.ws10a{word-spacing:-13.116442pt;}
.ws5f{word-spacing:-13.069561pt;}
.ws2{word-spacing:-12.543875pt;}
.ws14d{word-spacing:-12.015948pt;}
.ws1d4{word-spacing:-11.955200pt;}
.ws1e6{word-spacing:-11.936038pt;}
.ws111{word-spacing:-11.653397pt;}
.ws155{word-spacing:-10.626800pt;}
.ws109{word-spacing:-10.493139pt;}
.ws1ed{word-spacing:-9.564133pt;}
.ws65{word-spacing:-9.383275pt;}
.wsa4{word-spacing:-8.696063pt;}
.ws66{word-spacing:-8.533280pt;}
.ws10d{word-spacing:-8.525687pt;}
.wsa2{word-spacing:-7.908320pt;}
.ws115{word-spacing:-7.574708pt;}
.wsa7{word-spacing:-7.372749pt;}
.ws17f{word-spacing:-5.940366pt;}
.ws10b{word-spacing:-5.902395pt;}
.ws135{word-spacing:-5.887232pt;}
.ws19e{word-spacing:-5.462667pt;}
.ws114{word-spacing:-5.244025pt;}
.ws117{word-spacing:-5.244022pt;}
.ws1e7{word-spacing:-5.164646pt;}
.ws1cf{word-spacing:-4.877722pt;}
.wsca{word-spacing:-4.410111pt;}
.ws20a{word-spacing:-4.303872pt;}
.ws1c6{word-spacing:-3.528098pt;}
.ws5e{word-spacing:-3.037848pt;}
.ws62{word-spacing:-3.000381pt;}
.ws174{word-spacing:-2.964870pt;}
.ws180{word-spacing:-2.952110pt;}
.ws5c{word-spacing:-2.150387pt;}
.ws1e8{word-spacing:-2.008474pt;}
.ws63{word-spacing:-1.945588pt;}
.ws64{word-spacing:-1.672523pt;}
.ws5d{word-spacing:-1.464391pt;}
.ws188{word-spacing:-1.370854pt;}
.wsc7{word-spacing:-0.956410pt;}
.ws2b{word-spacing:-0.903276pt;}
.ws105{word-spacing:-0.850142pt;}
.ws1aa{word-spacing:-0.807637pt;}
.wsf8{word-spacing:-0.743874pt;}
.wsdf{word-spacing:-0.690740pt;}
.ws19b{word-spacing:-0.680115pt;}
.ws152{word-spacing:-0.637608pt;}
.wsc6{word-spacing:-0.637606pt;}
.ws9{word-spacing:-0.573850pt;}
.wsd5{word-spacing:-0.531339pt;}
.ws184{word-spacing:-0.425071pt;}
.wseb{word-spacing:-0.212535pt;}
.ws4e{word-spacing:-0.159402pt;}
.wsd0{word-spacing:-0.106268pt;}
.ws1c1{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws1ab{word-spacing:-0.042507pt;}
.ws170{word-spacing:-0.037194pt;}
.ws60{word-spacing:-0.030800pt;}
.ws1c5{word-spacing:-0.026567pt;}
.ws5b{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.002619pt;}
.wsa5{word-spacing:0.003089pt;}
.ws61{word-spacing:0.003333pt;}
.ws16d{word-spacing:0.010627pt;}
.ws196{word-spacing:0.053134pt;}
.ws1c9{word-spacing:0.212535pt;}
.ws25{word-spacing:0.265669pt;}
.ws89{word-spacing:0.280192pt;}
.ws1ff{word-spacing:0.286925pt;}
.ws1fe{word-spacing:0.288444pt;}
.ws4c{word-spacing:0.318803pt;}
.ws200{word-spacing:0.334746pt;}
.ws4f{word-spacing:0.371937pt;}
.ws11c{word-spacing:0.382565pt;}
.ws142{word-spacing:0.425071pt;}
.ws53{word-spacing:0.478205pt;}
.ws176{word-spacing:0.510497pt;}
.ws177{word-spacing:0.531339pt;}
.ws2e{word-spacing:0.584473pt;}
.ws26{word-spacing:0.637606pt;}
.ws1a2{word-spacing:0.690740pt;}
.ws10{word-spacing:0.717312pt;}
.wsfd{word-spacing:0.743874pt;}
.ws1af{word-spacing:0.789131pt;}
.ws1a3{word-spacing:0.797008pt;}
.ws22b{word-spacing:0.812954pt;}
.ws31{word-spacing:0.850142pt;}
.wsd4{word-spacing:0.903276pt;}
.ws179{word-spacing:0.956410pt;}
.wsb{word-spacing:0.956416pt;}
.ws1ce{word-spacing:1.004237pt;}
.ws18a{word-spacing:1.009543pt;}
.ws1a0{word-spacing:1.062677pt;}
.wsc0{word-spacing:1.105187pt;}
.ws106{word-spacing:1.115811pt;}
.ws234{word-spacing:1.147699pt;}
.ws235{word-spacing:1.195520pt;}
.ws187{word-spacing:1.266654pt;}
.ws186{word-spacing:1.275213pt;}
.ws198{word-spacing:1.381481pt;}
.ws1d{word-spacing:1.434614pt;}
.ws6c{word-spacing:1.487748pt;}
.ws144{word-spacing:1.594016pt;}
.ws12f{word-spacing:1.647150pt;}
.ws75{word-spacing:1.700284pt;}
.wsea{word-spacing:1.710369pt;}
.wsa8{word-spacing:1.742795pt;}
.ws3c{word-spacing:1.753418pt;}
.ws32{word-spacing:1.806551pt;}
.ws1d7{word-spacing:1.817190pt;}
.ws6d{word-spacing:1.859685pt;}
.ws216{word-spacing:1.865011pt;}
.ws79{word-spacing:1.912819pt;}
.ws8b{word-spacing:1.965953pt;}
.ws129{word-spacing:2.072221pt;}
.ws13e{word-spacing:2.125360pt;}
.ws165{word-spacing:2.178489pt;}
.ws145{word-spacing:2.284756pt;}
.ws18b{word-spacing:2.391024pt;}
.ws1fc{word-spacing:2.437521pt;}
.ws1fd{word-spacing:2.438861pt;}
.ws194{word-spacing:2.444158pt;}
.ws233{word-spacing:2.486682pt;}
.wsc4{word-spacing:2.497292pt;}
.ws13c{word-spacing:2.507925pt;}
.ws15e{word-spacing:2.656693pt;}
.ws9c{word-spacing:2.709827pt;}
.ws20{word-spacing:2.816095pt;}
.ws215{word-spacing:2.821427pt;}
.ws15d{word-spacing:2.869229pt;}
.wsce{word-spacing:2.922363pt;}
.ws21e{word-spacing:2.964890pt;}
.ws22{word-spacing:3.028630pt;}
.ws1be{word-spacing:3.134898pt;}
.ws190{word-spacing:3.188032pt;}
.ws50{word-spacing:3.241166pt;}
.ws1d3{word-spacing:3.251814pt;}
.ws67{word-spacing:3.273054pt;}
.ws130{word-spacing:3.294300pt;}
.wsef{word-spacing:3.347434pt;}
.ws1d6{word-spacing:3.347456pt;}
.ws18e{word-spacing:3.400567pt;}
.ws17a{word-spacing:3.506835pt;}
.wsc2{word-spacing:3.528098pt;}
.wsd3{word-spacing:3.559969pt;}
.ws133{word-spacing:3.613103pt;}
.ws8a{word-spacing:3.666237pt;}
.ws1e{word-spacing:3.719371pt;}
.ws20d{word-spacing:3.730022pt;}
.ws17c{word-spacing:3.772505pt;}
.ws1ef{word-spacing:3.873485pt;}
.ws21{word-spacing:3.878772pt;}
.wsf6{word-spacing:3.894133pt;}
.wsf4{word-spacing:3.908865pt;}
.wsfe{word-spacing:3.931906pt;}
.ws1e0{word-spacing:3.969126pt;}
.ws13{word-spacing:4.016947pt;}
.wsaf{word-spacing:4.038174pt;}
.ws59{word-spacing:4.091308pt;}
.ws12{word-spacing:4.112589pt;}
.ws3e{word-spacing:4.144442pt;}
.ws3f{word-spacing:4.145875pt;}
.ws6{word-spacing:4.160410pt;}
.ws125{word-spacing:4.197575pt;}
.ws19c{word-spacing:4.250678pt;}
.ws104{word-spacing:4.250709pt;}
.ws6a{word-spacing:4.250720pt;}
.ws102{word-spacing:4.267327pt;}
.ws41{word-spacing:4.303843pt;}
.wse{word-spacing:4.303872pt;}
.ws154{word-spacing:4.378242pt;}
.ws68{word-spacing:4.425188pt;}
.ws17b{word-spacing:4.516379pt;}
.ws22e{word-spacing:4.542976pt;}
.wsc5{word-spacing:4.569513pt;}
.ws94{word-spacing:4.675780pt;}
.ws103{word-spacing:4.699786pt;}
.ws108{word-spacing:4.706667pt;}
.wsbe{word-spacing:4.707650pt;}
.wsbd{word-spacing:4.728914pt;}
.ws23d{word-spacing:4.780800pt;}
.ws1b9{word-spacing:4.782048pt;}
.ws5a{word-spacing:4.782080pt;}
.ws18d{word-spacing:4.835182pt;}
.ws23b{word-spacing:4.858812pt;}
.ws23a{word-spacing:4.862370pt;}
.ws23c{word-spacing:4.877722pt;}
.ws1a1{word-spacing:4.941450pt;}
.ws231{word-spacing:4.973363pt;}
.ws146{word-spacing:4.994583pt;}
.ws19d{word-spacing:5.013308pt;}
.ws13f{word-spacing:5.015850pt;}
.ws1db{word-spacing:5.069005pt;}
.ws1d9{word-spacing:5.089314pt;}
.ws1da{word-spacing:5.116826pt;}
.ws14a{word-spacing:5.153985pt;}
.ws1c{word-spacing:5.207119pt;}
.ws192{word-spacing:5.270893pt;}
.ws84{word-spacing:5.311388pt;}
.ws100{word-spacing:5.313134pt;}
.ws3{word-spacing:5.313387pt;}
.ws151{word-spacing:5.313400pt;}
.ws83{word-spacing:5.314689pt;}
.ws71{word-spacing:5.366521pt;}
.ws8c{word-spacing:5.372694pt;}
.ws1a{word-spacing:5.419654pt;}
.ws189{word-spacing:5.525922pt;}
.ws153{word-spacing:5.568443pt;}
.ws42{word-spacing:5.579056pt;}
.ws1bc{word-spacing:5.632190pt;}
.ws24{word-spacing:5.685324pt;}
.ws22f{word-spacing:5.690675pt;}
.ws27{word-spacing:5.791591pt;}
.ws91{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsa9{word-spacing:5.950993pt;}
.ws21f{word-spacing:5.973333pt;}
.ws15{word-spacing:5.977600pt;}
.ws8f{word-spacing:6.004127pt;}
.wsa{word-spacing:6.025421pt;}
.ws69{word-spacing:6.036022pt;}
.ws2f{word-spacing:6.057261pt;}
.ws18c{word-spacing:6.110395pt;}
.wsc1{word-spacing:6.121037pt;}
.wsd8{word-spacing:6.163529pt;}
.ws9f{word-spacing:6.216662pt;}
.ws149{word-spacing:6.269796pt;}
.ws1ad{word-spacing:6.291066pt;}
.ws169{word-spacing:6.322930pt;}
.ws15f{word-spacing:6.376064pt;}
.ws167{word-spacing:6.429198pt;}
.ws97{word-spacing:6.482332pt;}
.wse7{word-spacing:6.535466pt;}
.ws229{word-spacing:6.551450pt;}
.ws23{word-spacing:6.588599pt;}
.ws72{word-spacing:6.641733pt;}
.ws46{word-spacing:6.694867pt;}
.ws21b{word-spacing:6.710972pt;}
.ws21c{word-spacing:6.742733pt;}
.ws8d{word-spacing:6.748001pt;}
.wse0{word-spacing:6.772420pt;}
.ws4d{word-spacing:6.801135pt;}
.ws35{word-spacing:6.854269pt;}
.ws20c{word-spacing:6.886195pt;}
.ws191{word-spacing:6.907403pt;}
.ws1f6{word-spacing:6.934016pt;}
.ws29{word-spacing:7.013670pt;}
.ws2c{word-spacing:7.119938pt;}
.wsbb{word-spacing:7.173072pt;}
.ws38{word-spacing:7.226206pt;}
.ws222{word-spacing:7.254972pt;}
.ws199{word-spacing:7.268731pt;}
.ws223{word-spacing:7.268762pt;}
.ws1c7{word-spacing:7.279340pt;}
.ws36{word-spacing:7.332474pt;}
.ws22a{word-spacing:7.364403pt;}
.ws136{word-spacing:7.438741pt;}
.ws1f8{word-spacing:7.460045pt;}
.ws70{word-spacing:7.491875pt;}
.ws80{word-spacing:7.503778pt;}
.ws13b{word-spacing:7.523774pt;}
.ws11b{word-spacing:7.566282pt;}
.ws43{word-spacing:7.598143pt;}
.ws14{word-spacing:7.603507pt;}
.ws58{word-spacing:7.651277pt;}
.ws218{word-spacing:7.699149pt;}
.ws30{word-spacing:7.704411pt;}
.ws219{word-spacing:7.746970pt;}
.ws4a{word-spacing:7.757545pt;}
.ws1dd{word-spacing:7.794790pt;}
.ws3b{word-spacing:7.810678pt;}
.ws1dc{word-spacing:7.842611pt;}
.ws34{word-spacing:7.863812pt;}
.ws201{word-spacing:7.881122pt;}
.ws1f7{word-spacing:7.890432pt;}
.ws81{word-spacing:7.913852pt;}
.ws82{word-spacing:7.916946pt;}
.ws23e{word-spacing:7.918182pt;}
.ws204{word-spacing:7.938253pt;}
.ws205{word-spacing:7.986074pt;}
.wsac{word-spacing:8.023214pt;}
.ws96{word-spacing:8.076348pt;}
.wsc3{word-spacing:8.118875pt;}
.ws6b{word-spacing:8.129482pt;}
.wsb6{word-spacing:8.142317pt;}
.ws134{word-spacing:8.146415pt;}
.ws1c8{word-spacing:8.152983pt;}
.ws217{word-spacing:8.177357pt;}
.ws90{word-spacing:8.182615pt;}
.ws19a{word-spacing:8.246397pt;}
.wsd2{word-spacing:8.288883pt;}
.wsd1{word-spacing:8.312983pt;}
.ws1fb{word-spacing:8.320819pt;}
.ws4b{word-spacing:8.342017pt;}
.ws7a{word-spacing:8.395151pt;}
.ws141{word-spacing:8.448285pt;}
.ws1e1{word-spacing:8.512102pt;}
.wsa1{word-spacing:8.554553pt;}
.ws1e2{word-spacing:8.559923pt;}
.ws1ca{word-spacing:8.594500pt;}
.ws131{word-spacing:8.607686pt;}
.ws8{word-spacing:8.607744pt;}
.ws1eb{word-spacing:8.655565pt;}
.ws1a5{word-spacing:8.660820pt;}
.ws8e{word-spacing:8.713954pt;}
.ws1b5{word-spacing:8.767088pt;}
.ws17{word-spacing:8.799027pt;}
.ws19f{word-spacing:8.820222pt;}
.ws3d{word-spacing:8.873356pt;}
.ws13d{word-spacing:8.884005pt;}
.ws93{word-spacing:8.926490pt;}
.ws18f{word-spacing:8.979623pt;}
.ws224{word-spacing:8.986658pt;}
.ws225{word-spacing:8.990310pt;}
.wsb9{word-spacing:9.006317pt;}
.wsb8{word-spacing:9.032757pt;}
.ws162{word-spacing:9.139025pt;}
.ws7f{word-spacing:9.192159pt;}
.ws1cc{word-spacing:9.420698pt;}
.ws98{word-spacing:9.457828pt;}
.ws1cd{word-spacing:9.468518pt;}
.ws12c{word-spacing:9.510962pt;}
.ws37{word-spacing:9.723498pt;}
.ws203{word-spacing:9.803264pt;}
.ws202{word-spacing:9.825954pt;}
.ws164{word-spacing:9.829765pt;}
.ws76{word-spacing:9.882899pt;}
.wsa0{word-spacing:9.989167pt;}
.ws47{word-spacing:10.042301pt;}
.ws33{word-spacing:10.095435pt;}
.ws1a4{word-spacing:10.148569pt;}
.ws40{word-spacing:10.201702pt;}
.wsae{word-spacing:10.254836pt;}
.wsc8{word-spacing:10.307970pt;}
.ws168{word-spacing:10.414238pt;}
.ws1f4{word-spacing:10.424934pt;}
.wsb1{word-spacing:10.467372pt;}
.ws1f5{word-spacing:10.472755pt;}
.wsdb{word-spacing:10.520506pt;}
.ws1f9{word-spacing:10.520576pt;}
.ws1fa{word-spacing:10.568397pt;}
.wsee{word-spacing:10.573639pt;}
.ws1a9{word-spacing:10.589467pt;}
.ws1a8{word-spacing:10.593162pt;}
.ws1b{word-spacing:10.626773pt;}
.ws150{word-spacing:10.626800pt;}
.ws48{word-spacing:10.679907pt;}
.ws1e5{word-spacing:10.711859pt;}
.ws45{word-spacing:10.733041pt;}
.ws1ae{word-spacing:10.754322pt;}
.ws7e{word-spacing:10.839309pt;}
.ws1cb{word-spacing:10.903142pt;}
.wsd6{word-spacing:10.945577pt;}
.wsda{word-spacing:10.998710pt;}
.wsc{word-spacing:11.046605pt;}
.ws195{word-spacing:11.051844pt;}
.wsfb{word-spacing:11.089970pt;}
.wscd{word-spacing:11.104978pt;}
.wsfa{word-spacing:11.112875pt;}
.wsab{word-spacing:11.158112pt;}
.ws148{word-spacing:11.211246pt;}
.ws95{word-spacing:11.264380pt;}
.ws7d{word-spacing:11.317514pt;}
.ws44{word-spacing:11.370647pt;}
.ws214{word-spacing:11.381350pt;}
.ws208{word-spacing:11.476992pt;}
.ws209{word-spacing:11.524813pt;}
.ws1b2{word-spacing:11.530049pt;}
.ws121{word-spacing:11.583183pt;}
.ws1f2{word-spacing:11.620454pt;}
.wsf7{word-spacing:11.689451pt;}
.wse8{word-spacing:11.770850pt;}
.wse9{word-spacing:11.795718pt;}
.ws12d{word-spacing:11.848852pt;}
.ws22c{word-spacing:11.859558pt;}
.ws126{word-spacing:11.901986pt;}
.ws22d{word-spacing:11.907379pt;}
.ws1d0{word-spacing:11.931793pt;}
.ws1d8{word-spacing:11.950933pt;}
.ws230{word-spacing:11.969203pt;}
.ws17d{word-spacing:12.008254pt;}
.ws212{word-spacing:12.050842pt;}
.ws107{word-spacing:12.061388pt;}
.wsfc{word-spacing:12.068882pt;}
.ws1e9{word-spacing:12.096384pt;}
.ws7{word-spacing:12.098662pt;}
.ws197{word-spacing:12.114522pt;}
.wsb3{word-spacing:12.167655pt;}
.ws87{word-spacing:12.220789pt;}
.ws5{word-spacing:12.289946pt;}
.wsed{word-spacing:12.327057pt;}
.ws1a6{word-spacing:12.433325pt;}
.ws28{word-spacing:12.486459pt;}
.ws2a{word-spacing:12.539593pt;}
.ws73{word-spacing:12.592726pt;}
.wsde{word-spacing:12.645860pt;}
.wsc9{word-spacing:12.698994pt;}
.ws78{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws147{word-spacing:12.805262pt;}
.ws1f1{word-spacing:12.815974pt;}
.ws1f0{word-spacing:12.828510pt;}
.ws1b0{word-spacing:12.858396pt;}
.ws77{word-spacing:12.911530pt;}
.wsdd{word-spacing:12.964663pt;}
.ws239{word-spacing:13.007258pt;}
.ws132{word-spacing:13.017797pt;}
.wse1{word-spacing:13.070931pt;}
.ws14b{word-spacing:13.124065pt;}
.wsba{word-spacing:13.177199pt;}
.ws9e{word-spacing:13.230333pt;}
.wsbf{word-spacing:13.262246pt;}
.ws9d{word-spacing:13.283467pt;}
.ws21d{word-spacing:13.294182pt;}
.ws122{word-spacing:13.336601pt;}
.wse5{word-spacing:13.442868pt;}
.ws221{word-spacing:13.533286pt;}
.ws163{word-spacing:13.549136pt;}
.ws1f3{word-spacing:13.581107pt;}
.ws20b{word-spacing:13.628928pt;}
.ws185{word-spacing:13.655404pt;}
.ws92{word-spacing:13.708538pt;}
.ws213{word-spacing:13.724570pt;}
.wsb7{word-spacing:13.761671pt;}
.ws11d{word-spacing:13.857347pt;}
.ws74{word-spacing:13.867939pt;}
.ws1b1{word-spacing:13.921073pt;}
.wse2{word-spacing:13.974207pt;}
.wsaa{word-spacing:14.080475pt;}
.ws39{word-spacing:14.133609pt;}
.ws9b{word-spacing:14.186742pt;}
.ws128{word-spacing:14.239876pt;}
.ws124{word-spacing:14.293010pt;}
.ws237{word-spacing:14.394061pt;}
.ws55{word-spacing:14.399278pt;}
.ws56{word-spacing:14.401345pt;}
.ws238{word-spacing:14.441882pt;}
.ws1ba{word-spacing:14.452412pt;}
.ws138{word-spacing:14.505546pt;}
.wscb{word-spacing:14.558679pt;}
.ws1b8{word-spacing:14.611813pt;}
.ws88{word-spacing:14.718081pt;}
.ws220{word-spacing:14.728806pt;}
.ws49{word-spacing:14.824349pt;}
.wsf9{word-spacing:14.877483pt;}
.ws7b{word-spacing:14.930617pt;}
.ws1b3{word-spacing:14.983750pt;}
.wsd9{word-spacing:15.036884pt;}
.wsf{word-spacing:15.063552pt;}
.ws120{word-spacing:15.090018pt;}
.wsd{word-spacing:15.111373pt;}
.ws101{word-spacing:15.196286pt;}
.ws143{word-spacing:15.249420pt;}
.wsf0{word-spacing:15.355687pt;}
.ws127{word-spacing:15.356741pt;}
.wse6{word-spacing:15.461955pt;}
.ws232{word-spacing:15.637402pt;}
.ws6e{word-spacing:15.674491pt;}
.wsf1{word-spacing:15.727625pt;}
.wscc{word-spacing:15.780758pt;}
.wsbc{word-spacing:15.833892pt;}
.ws99{word-spacing:15.887026pt;}
.ws18{word-spacing:15.940160pt;}
.ws1bf{word-spacing:16.046428pt;}
.wsdc{word-spacing:16.099562pt;}
.ws51{word-spacing:16.121123pt;}
.ws52{word-spacing:16.152695pt;}
.ws1c0{word-spacing:16.205829pt;}
.ws140{word-spacing:16.266427pt;}
.wsd7{word-spacing:16.312097pt;}
.ws2d{word-spacing:16.471499pt;}
.wsec{word-spacing:16.524633pt;}
.wsb4{word-spacing:16.684034pt;}
.ws123{word-spacing:16.737168pt;}
.ws1b4{word-spacing:16.790302pt;}
.ws1de{word-spacing:16.874735pt;}
.ws1df{word-spacing:16.880742pt;}
.ws11{word-spacing:16.928563pt;}
.ws14c{word-spacing:16.949703pt;}
.wsf3{word-spacing:17.002837pt;}
.ws1d5{word-spacing:17.024205pt;}
.ws1b7{word-spacing:17.055971pt;}
.ws1ea{word-spacing:17.072026pt;}
.wscf{word-spacing:17.109105pt;}
.ws183{word-spacing:17.215373pt;}
.ws21a{word-spacing:17.215488pt;}
.ws1f{word-spacing:17.374774pt;}
.ws228{word-spacing:17.406771pt;}
.wsb0{word-spacing:17.427908pt;}
.ws227{word-spacing:17.454592pt;}
.wsb5{word-spacing:17.481042pt;}
.wsf2{word-spacing:17.640444pt;}
.ws1e4{word-spacing:17.645875pt;}
.ws1e3{word-spacing:17.693696pt;}
.ws54{word-spacing:17.746711pt;}
.ws20e{word-spacing:17.789338pt;}
.ws1b6{word-spacing:17.906113pt;}
.ws119{word-spacing:18.235365pt;}
.ws11f{word-spacing:18.384318pt;}
.ws11e{word-spacing:18.388253pt;}
.ws1ec{word-spacing:18.697933pt;}
.ws1ee{word-spacing:18.745754pt;}
.wsf5{word-spacing:18.915657pt;}
.ws160{word-spacing:19.021924pt;}
.ws161{word-spacing:19.046133pt;}
.ws137{word-spacing:19.075058pt;}
.wsff{word-spacing:19.128192pt;}
.wse3{word-spacing:19.216896pt;}
.wse4{word-spacing:19.234460pt;}
.wsad{word-spacing:19.287594pt;}
.ws207{word-spacing:19.319603pt;}
.ws206{word-spacing:19.358123pt;}
.ws57{word-spacing:19.393861pt;}
.ws85{word-spacing:19.446995pt;}
.ws1bd{word-spacing:19.500129pt;}
.wsb2{word-spacing:19.659531pt;}
.ws226{word-spacing:19.702170pt;}
.ws12e{word-spacing:19.712665pt;}
.ws1bb{word-spacing:19.765798pt;}
.ws3a{word-spacing:19.872066pt;}
.ws166{word-spacing:20.084602pt;}
.ws6f{word-spacing:20.137735pt;}
.ws211{word-spacing:20.371661pt;}
.ws193{word-spacing:20.403405pt;}
.ws210{word-spacing:20.419482pt;}
.ws9a{word-spacing:20.562806pt;}
.ws16{word-spacing:20.658586pt;}
.ws86{word-spacing:23.166366pt;}
.ws1a7{word-spacing:25.486954pt;}
.ws20f{word-spacing:27.783885pt;}
.ws118{word-spacing:29.441213pt;}
.ws16f{word-spacing:39.537784pt;}
.ws1d1{word-spacing:41.173709pt;}
.ws236{word-spacing:41.180681pt;}
.ws1d2{word-spacing:46.912205pt;}
.ws1c3{word-spacing:50.746610pt;}
.ws110{word-spacing:51.660225pt;}
.ws15b{word-spacing:72.355502pt;}
.ws10e{word-spacing:76.377770pt;}
.ws1c4{word-spacing:77.250670pt;}
.wsa3{word-spacing:81.745800pt;}
.ws139{word-spacing:101.941361pt;}
.ws159{word-spacing:129.125111pt;}
.ws158{word-spacing:129.130445pt;}
.ws14e{word-spacing:132.390312pt;}
.ws156{word-spacing:132.504596pt;}
.ws1c2{word-spacing:141.588868pt;}
.ws157{word-spacing:158.466842pt;}
.ws15c{word-spacing:163.780242pt;}
.ws13a{word-spacing:165.319092pt;}
.ws11a{word-spacing:241.809867pt;}
.ws15a{word-spacing:255.568753pt;}
.ws112{word-spacing:387.372314pt;}
.ws116{word-spacing:409.242362pt;}
.ws10f{word-spacing:720.987067pt;}
.ws14f{word-spacing:1065.238315pt;}
._21{margin-left:-956.887618pt;}
._17{margin-left:-543.359783pt;}
._3d{margin-left:-30.844663pt;}
._3a{margin-left:-29.609374pt;}
._1{margin-left:-16.450286pt;}
._23{margin-left:-8.217457pt;}
._f{margin-left:-6.687353pt;}
._14{margin-left:-5.755947pt;}
._6{margin-left:-4.763893pt;}
._0{margin-left:-3.825648pt;}
._7{margin-left:-2.780451pt;}
._2{margin-left:-1.470259pt;}
._b{width:1.048656pt;}
._5{width:2.656693pt;}
._1d{width:3.727562pt;}
._d{width:4.695627pt;}
._e{width:6.453694pt;}
._4{width:7.986074pt;}
._10{width:8.977011pt;}
._49{width:10.044829pt;}
._8{width:12.185810pt;}
._3c{width:14.883619pt;}
._c{width:15.872094pt;}
._22{width:17.534176pt;}
._12{width:19.216305pt;}
._13{width:21.319356pt;}
._3{width:23.145267pt;}
._18{width:24.781698pt;}
._15{width:26.566933pt;}
._11{width:27.799709pt;}
._1a{width:28.765191pt;}
._a{width:30.126902pt;}
._9{width:31.986588pt;}
._3e{width:33.314192pt;}
._1b{width:34.415226pt;}
._16{width:35.389363pt;}
._1c{width:36.343656pt;}
._25{width:39.284901pt;}
._3f{width:41.393809pt;}
._24{width:42.507200pt;}
._45{width:44.204203pt;}
._19{width:47.820600pt;}
._48{width:53.128909pt;}
._46{width:59.850099pt;}
._28{width:71.582132pt;}
._38{width:74.968294pt;}
._2e{width:79.463439pt;}
._41{width:80.508637pt;}
._44{width:84.055157pt;}
._47{width:88.202401pt;}
._2d{width:89.137598pt;}
._27{width:91.527899pt;}
._2b{width:92.580682pt;}
._3b{width:94.690008pt;}
._42{width:97.001430pt;}
._2a{width:100.231978pt;}
._2f{width:108.520882pt;}
._20{width:110.645071pt;}
._30{width:116.282206pt;}
._1f{width:119.347070pt;}
._36{width:121.553099pt;}
._35{width:126.288891pt;}
._1e{width:128.050780pt;}
._34{width:157.301654pt;}
._33{width:174.407042pt;}
._32{width:178.870298pt;}
._29{width:181.735763pt;}
._26{width:191.693893pt;}
._43{width:198.101974pt;}
._2c{width:207.095078pt;}
._37{width:215.168821pt;}
._40{width:216.817714pt;}
._39{width:330.663509pt;}
._31{width:384.945203pt;}
.fs12{font-size:19.075946pt;}
.fs11{font-size:19.075956pt;}
.fs18{font-size:19.085212pt;}
.fse{font-size:21.470880pt;}
.fs15{font-size:26.242215pt;}
.fs20{font-size:26.566933pt;}
.fsa{font-size:26.819520pt;}
.fs19{font-size:27.367467pt;}
.fs17{font-size:27.554174pt;}
.fs10{font-size:27.554177pt;}
.fs1b{font-size:28.462165pt;}
.fsc{font-size:31.013512pt;}
.fs9{font-size:31.633280pt;}
.fs1f{font-size:31.880533pt;}
.fs23{font-size:32.621333pt;}
.fs8{font-size:32.914080pt;}
.fs14{font-size:33.399154pt;}
.fs1e{font-size:34.005867pt;}
.fs6{font-size:34.133120pt;}
.fs1d{font-size:34.507800pt;}
.fs3{font-size:37.193600pt;}
.fs13{font-size:38.151893pt;}
.fsb{font-size:38.170425pt;}
.fs25{font-size:38.256533pt;}
.fs1a{font-size:38.314453pt;}
.fs22{font-size:39.145600pt;}
.fs21{font-size:41.938811pt;}
.fs16{font-size:42.391039pt;}
.fsf{font-size:42.391041pt;}
.fs24{font-size:42.407733pt;}
.fs2{font-size:42.507200pt;}
.fs1c{font-size:43.709880pt;}
.fs7{font-size:47.542560pt;}
.fsd{font-size:47.713098pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2c4{bottom:2.038833pt;}
.y190{bottom:3.897831pt;}
.y192{bottom:4.132337pt;}
.y18f{bottom:4.190044pt;}
.y191{bottom:5.026974pt;}
.y18e{bottom:5.084658pt;}
.yd7{bottom:6.532960pt;}
.y211{bottom:6.914561pt;}
.y7d{bottom:7.009480pt;}
.y2c5{bottom:9.238464pt;}
.y23a{bottom:9.997174pt;}
.y23f{bottom:10.193506pt;}
.y247{bottom:10.557210pt;}
.y23b{bottom:10.804792pt;}
.y1c9{bottom:10.888434pt;}
.y67{bottom:11.276127pt;}
.y1c8{bottom:11.426078pt;}
.yfb{bottom:13.065920pt;}
.y1c7{bottom:13.104099pt;}
.y23c{bottom:14.346314pt;}
.y210{bottom:18.353307pt;}
.y1ca{bottom:18.505809pt;}
.y1bb{bottom:20.148861pt;}
.y81{bottom:21.028451pt;}
.y1ba{bottom:23.462920pt;}
.y59{bottom:24.114667pt;}
.y66{bottom:25.599845pt;}
.yd6{bottom:29.742160pt;}
.y194{bottom:29.818996pt;}
.y80{bottom:31.085527pt;}
.y234{bottom:31.844848pt;}
.y236{bottom:31.901820pt;}
.y212{bottom:32.048275pt;}
.y193{bottom:33.133049pt;}
.y18c{bottom:33.548335pt;}
.y1c6{bottom:33.841842pt;}
.y2c6{bottom:35.862979pt;}
.y18b{bottom:36.862389pt;}
.y2cd{bottom:36.879437pt;}
.y65{bottom:39.618802pt;}
.y1b6{bottom:40.696633pt;}
.y7f{bottom:41.142604pt;}
.y1b9{bottom:43.694228pt;}
.y1b5{bottom:44.010687pt;}
.y1c2{bottom:44.757151pt;}
.yf6{bottom:46.590318pt;}
.y58{bottom:46.900000pt;}
.y1c3{bottom:48.271794pt;}
.ye8{bottom:49.341040pt;}
.yf3{bottom:49.512961pt;}
.y89{bottom:49.675891pt;}
.yef{bottom:50.028720pt;}
.yf1{bottom:50.200640pt;}
.yfa{bottom:50.716397pt;}
.y245{bottom:51.077266pt;}
.y7e{bottom:51.199680pt;}
.y198{bottom:51.826687pt;}
.y244{bottom:52.531168pt;}
.yf4{bottom:53.639043pt;}
.y64{bottom:53.942520pt;}
.yf9{bottom:54.154800pt;}
.yf0{bottom:55.530161pt;}
.yf2{bottom:56.217841pt;}
.y23e{bottom:57.698071pt;}
.y23d{bottom:57.755043pt;}
.yf5{bottom:58.452800pt;}
.y88{bottom:59.732967pt;}
.y18d{bottom:61.695918pt;}
.y2c7{bottom:62.487495pt;}
.y1c5{bottom:63.358910pt;}
.y7c{bottom:63.390091pt;}
.y215{bottom:64.974856pt;}
.y199{bottom:65.079146pt;}
.y196{bottom:65.890334pt;}
.y197{bottom:66.146290pt;}
.y195{bottom:69.204347pt;}
.y87{bottom:69.790044pt;}
.y1b8{bottom:72.369679pt;}
.y70{bottom:72.532887pt;}
.y7b{bottom:73.447167pt;}
.y243{bottom:74.655911pt;}
.y1bc{bottom:74.986407pt;}
.y8e{bottom:77.104291pt;}
.y1bd{bottom:78.588069pt;}
.y1c0{bottom:79.842463pt;}
.y1be{bottom:79.842465pt;}
.y86{bottom:79.847120pt;}
.y213{bottom:81.376700pt;}
.y1c1{bottom:82.006696pt;}
.y6f{bottom:82.589964pt;}
.y1bf{bottom:83.444141pt;}
.y7a{bottom:83.504244pt;}
.y240{bottom:84.453130pt;}
.y237{bottom:84.510102pt;}
.y187{bottom:86.603500pt;}
.y8d{bottom:87.161367pt;}
.y2c8{bottom:89.112010pt;}
.y186{bottom:89.917542pt;}
.y94{bottom:90.513722pt;}
.y185{bottom:91.579018pt;}
.y6e{bottom:92.647040pt;}
.y79{bottom:93.561320pt;}
.y19b{bottom:94.012568pt;}
.y184{bottom:94.893072pt;}
.y8a{bottom:95.694640pt;}
.y8c{bottom:97.218444pt;}
.y19a{bottom:97.326725pt;}
.y33{bottom:100.740000pt;}
.y246{bottom:105.611728pt;}
.y238{bottom:105.846638pt;}
.y235{bottom:106.042935pt;}
.y217{bottom:106.195190pt;}
.y71{bottom:106.970760pt;}
.y239{bottom:107.115933pt;}
.y8b{bottom:107.275520pt;}
.y1a1{bottom:107.852259pt;}
.y34d{bottom:107.913333pt;}
.y183{bottom:108.679431pt;}
.y19f{bottom:114.123914pt;}
.y2c9{bottom:115.736526pt;}
.y32{bottom:116.680000pt;}
.y12b{bottom:116.681333pt;}
.y1a0{bottom:117.492107pt;}
.ydf{bottom:117.593280pt;}
.yd5{bottom:118.452880pt;}
.yd4{bottom:118.624800pt;}
.y1b7{bottom:118.965801pt;}
.y84{bottom:120.380207pt;}
.y19e{bottom:120.919957pt;}
.y19d{bottom:121.558609pt;}
.y1a3{bottom:121.987675pt;}
.y38d{bottom:123.122667pt;}
.y34c{bottom:123.853333pt;}
.y1a2{bottom:124.859362pt;}
.y19c{bottom:124.872675pt;}
.y241{bottom:127.039287pt;}
.y242{bottom:127.096260pt;}
.y189{bottom:127.765954pt;}
.y18a{bottom:127.765957pt;}
.y83{bottom:130.437284pt;}
.y214{bottom:130.705125pt;}
.y188{bottom:131.080008pt;}
.y204{bottom:132.156000pt;}
.y31{bottom:132.620000pt;}
.yb7{bottom:132.621333pt;}
.yf8{bottom:134.269518pt;}
.y160{bottom:134.290667pt;}
.yf7{bottom:134.957197pt;}
.y38c{bottom:136.406667pt;}
.y1b4{bottom:137.173427pt;}
.yed{bottom:138.739440pt;}
.y34b{bottom:139.794667pt;}
.y1b3{bottom:140.117816pt;}
.y82{bottom:140.494360pt;}
.yeb{bottom:142.005920pt;}
.yea{bottom:142.005923pt;}
.y93{bottom:142.018160pt;}
.y2ca{bottom:142.361041pt;}
.ye9{bottom:144.584720pt;}
.y1d0{bottom:144.606185pt;}
.y77{bottom:144.761000pt;}
.y219{bottom:145.337070pt;}
.y1aa{bottom:145.365894pt;}
.yec{bottom:145.444320pt;}
.y1cf{bottom:147.550558pt;}
.yee{bottom:147.679280pt;}
.y203{bottom:148.096000pt;}
.y1a9{bottom:148.310288pt;}
.y57{bottom:148.560000pt;}
.y30{bottom:148.561333pt;}
.y38b{bottom:149.690667pt;}
.y1d6{bottom:149.822667pt;}
.y15f{bottom:150.232000pt;}
.y2b1{bottom:154.532733pt;}
.ye2{bottom:154.556083pt;}
.y96{bottom:155.122844pt;}
.y1b2{bottom:155.315473pt;}
.y218{bottom:155.512208pt;}
.y34a{bottom:155.734667pt;}
.y85{bottom:156.037120pt;}
.y75{bottom:157.865691pt;}
.y216{bottom:158.443829pt;}
.y68{bottom:158.779960pt;}
.y6d{bottom:159.999015pt;}
.y1ac{bottom:160.946517pt;}
.y1d5{bottom:161.777333pt;}
.y1d2{bottom:162.522531pt;}
.y38a{bottom:162.973333pt;}
.y1ab{bottom:163.890912pt;}
.ye1{bottom:164.011681pt;}
.y202{bottom:164.037333pt;}
.y2f{bottom:164.501333pt;}
.y1d1{bottom:164.894868pt;}
.y95{bottom:165.179920pt;}
.y15e{bottom:166.172000pt;}
.y2d1{bottom:167.647148pt;}
.y74{bottom:167.922767pt;}
.y2d5{bottom:168.398968pt;}
.yd2{bottom:168.708000pt;}
.y2cb{bottom:168.985557pt;}
.y6c{bottom:170.056091pt;}
.y2b0{bottom:170.335550pt;}
.y349{bottom:171.674667pt;}
.y5e{bottom:171.884651pt;}
.y63{bottom:172.798927pt;}
.ye0{bottom:173.467280pt;}
.y1d4{bottom:173.732000pt;}
.y1b1{bottom:173.918988pt;}
.y389{bottom:176.257333pt;}
.y92{bottom:177.979840pt;}
.y73{bottom:177.979844pt;}
.y1cb{bottom:178.488419pt;}
.y1a8{bottom:179.262186pt;}
.y2d0{bottom:179.612552pt;}
.y201{bottom:179.977333pt;}
.y6b{bottom:180.113167pt;}
.y2d4{bottom:180.364371pt;}
.y2e{bottom:180.441333pt;}
.y1cd{bottom:180.773388pt;}
.y1a7{bottom:181.675452pt;}
.y5d{bottom:181.941727pt;}
.y15d{bottom:182.112000pt;}
.y207{bottom:183.154205pt;}
.y1a6{bottom:184.619846pt;}
.y1ce{bottom:184.815860pt;}
.y1d3{bottom:185.688000pt;}
.y17f{bottom:187.054681pt;}
.y62{bottom:187.122645pt;}
.y1b0{bottom:187.603351pt;}
.y348{bottom:187.614667pt;}
.y182{bottom:187.972400pt;}
.y72{bottom:188.036920pt;}
.y1cc{bottom:188.082845pt;}
.y1ae{bottom:188.225121pt;}
.y1a5{bottom:188.601006pt;}
.y1a4{bottom:188.827862pt;}
.y388{bottom:189.541333pt;}
.y1c4{bottom:189.687046pt;}
.y6a{bottom:190.170244pt;}
.y1ad{bottom:190.473240pt;}
.y1af{bottom:190.547739pt;}
.y90{bottom:190.779764pt;}
.y2cf{bottom:191.577955pt;}
.y5c{bottom:191.998804pt;}
.y2d3{bottom:192.329775pt;}
.yd1{bottom:193.664000pt;}
.y206{bottom:194.592951pt;}
.y2cc{bottom:195.610072pt;}
.y200{bottom:195.917333pt;}
.y2e9{bottom:196.336000pt;}
.y2d{bottom:196.381333pt;}
.y15c{bottom:198.052000pt;}
.y69{bottom:200.227320pt;}
.y8f{bottom:200.836840pt;}
.y61{bottom:201.141602pt;}
.y78{bottom:201.446360pt;}
.y5b{bottom:202.055880pt;}
.y387{bottom:202.824000pt;}
.y347{bottom:203.554667pt;}
.y181{bottom:204.501408pt;}
.y2ce{bottom:204.588260pt;}
.y2d2{bottom:204.626488pt;}
.y17e{bottom:204.816000pt;}
.y12a{bottom:205.312000pt;}
.y20e{bottom:209.469307pt;}
.yd0{bottom:209.604000pt;}
.y2b6{bottom:211.525333pt;}
.y1ff{bottom:211.857333pt;}
.y232{bottom:212.236000pt;}
.y2e8{bottom:212.276000pt;}
.y2c{bottom:212.321333pt;}
.y273{bottom:212.322667pt;}
.y208{bottom:212.814114pt;}
.y56{bottom:213.338667pt;}
.y15b{bottom:213.992000pt;}
.y60{bottom:215.465320pt;}
.y91{bottom:216.074840pt;}
.y386{bottom:216.108000pt;}
.y180{bottom:216.429666pt;}
.y76{bottom:216.684360pt;}
.yb6{bottom:216.952000pt;}
.y5f{bottom:216.989120pt;}
.y346{bottom:219.494667pt;}
.y129{bottom:221.252000pt;}
.y2b5{bottom:223.480000pt;}
.ycf{bottom:225.544000pt;}
.yde{bottom:226.418643pt;}
.ye5{bottom:226.590563pt;}
.y1fe{bottom:227.797333pt;}
.y231{bottom:228.176000pt;}
.y2e7{bottom:228.216000pt;}
.y2b{bottom:228.262667pt;}
.y55{bottom:229.278667pt;}
.y385{bottom:229.390667pt;}
.y15a{bottom:229.932000pt;}
.yb5{bottom:232.892000pt;}
.y2b4{bottom:235.434667pt;}
.y345{bottom:235.436000pt;}
.ydd{bottom:235.874241pt;}
.ye4{bottom:236.046161pt;}
.y209{bottom:236.462991pt;}
.y128{bottom:237.193333pt;}
.yce{bottom:241.484000pt;}
.y384{bottom:242.674667pt;}
.y1fd{bottom:243.737333pt;}
.y230{bottom:244.116000pt;}
.y2e6{bottom:244.156000pt;}
.y2a{bottom:244.202667pt;}
.y54{bottom:245.220000pt;}
.ydc{bottom:245.329840pt;}
.ye3{bottom:245.501760pt;}
.y159{bottom:245.873333pt;}
.y2b3{bottom:247.390667pt;}
.yb4{bottom:248.832000pt;}
.y344{bottom:251.376000pt;}
.y127{bottom:253.133333pt;}
.y383{bottom:255.958667pt;}
.ycd{bottom:257.424000pt;}
.y2b2{bottom:259.345333pt;}
.y1fc{bottom:259.678667pt;}
.y22f{bottom:260.056000pt;}
.y2e5{bottom:260.096000pt;}
.y20a{bottom:260.111868pt;}
.y29{bottom:260.142667pt;}
.y53{bottom:261.160000pt;}
.y158{bottom:261.813333pt;}
.y272{bottom:262.645333pt;}
.yb3{bottom:264.772000pt;}
.ydb{bottom:266.132160pt;}
.y343{bottom:267.316000pt;}
.y382{bottom:269.241333pt;}
.ye7{bottom:272.493201pt;}
.ycc{bottom:273.364000pt;}
.y1fb{bottom:275.618667pt;}
.y22e{bottom:275.996000pt;}
.y2e4{bottom:276.037333pt;}
.y28{bottom:276.082667pt;}
.y52{bottom:277.100000pt;}
.y157{bottom:277.753333pt;}
.y126{bottom:278.004000pt;}
.y2af{bottom:278.473333pt;}
.y271{bottom:278.585333pt;}
.ye6{bottom:280.573440pt;}
.yb2{bottom:280.712000pt;}
.y381{bottom:282.525333pt;}
.y342{bottom:283.256000pt;}
.y20b{bottom:283.760744pt;}
.yda{bottom:286.762563pt;}
.ycb{bottom:289.305333pt;}
.y1fa{bottom:291.558667pt;}
.y22d{bottom:291.936000pt;}
.y2e3{bottom:291.977333pt;}
.y27{bottom:292.022667pt;}
.y51{bottom:293.040000pt;}
.y111{bottom:293.185333pt;}
.y156{bottom:293.693333pt;}
.y125{bottom:293.944000pt;}
.y270{bottom:294.525333pt;}
.y380{bottom:295.809333pt;}
.yd9{bottom:296.218161pt;}
.yb1{bottom:296.652000pt;}
.y341{bottom:299.196000pt;}
.yca{bottom:305.245333pt;}
.yd8{bottom:305.673760pt;}
.y20c{bottom:307.409621pt;}
.y1f9{bottom:307.498667pt;}
.y22c{bottom:307.877333pt;}
.y2e2{bottom:307.917333pt;}
.y26{bottom:307.962667pt;}
.y2a0{bottom:307.964000pt;}
.y50{bottom:308.980000pt;}
.y37f{bottom:309.092000pt;}
.y110{bottom:309.125333pt;}
.y155{bottom:309.633333pt;}
.y124{bottom:309.884000pt;}
.y26f{bottom:310.465333pt;}
.yb0{bottom:313.861333pt;}
.y340{bottom:315.137333pt;}
.yc9{bottom:321.196000pt;}
.y37e{bottom:322.376000pt;}
.y1f8{bottom:322.510667pt;}
.y22b{bottom:323.817333pt;}
.y2e1{bottom:323.857333pt;}
.y29f{bottom:323.904000pt;}
.y4f{bottom:324.412000pt;}
.y25{bottom:324.649333pt;}
.y10f{bottom:325.065333pt;}
.y123{bottom:325.824000pt;}
.y26e{bottom:326.405333pt;}
.yaf{bottom:329.801333pt;}
.y154{bottom:330.829333pt;}
.y20d{bottom:331.058498pt;}
.y37d{bottom:335.660000pt;}
.yc8{bottom:337.136000pt;}
.y1f7{bottom:338.450667pt;}
.y2e0{bottom:339.797333pt;}
.y29e{bottom:339.844000pt;}
.y4e{bottom:340.352000pt;}
.y24{bottom:340.590667pt;}
.y10e{bottom:341.006667pt;}
.y122{bottom:341.764000pt;}
.y26d{bottom:342.345333pt;}
.y20f{bottom:343.009887pt;}
.y22a{bottom:343.898667pt;}
.yae{bottom:345.741333pt;}
.y153{bottom:346.769333pt;}
.y37c{bottom:348.942667pt;}
.yc7{bottom:353.076000pt;}
.y3b6{bottom:353.126667pt;}
.y1f6{bottom:354.390667pt;}
.y2df{bottom:355.737333pt;}
.y305{bottom:355.784000pt;}
.y4d{bottom:356.292000pt;}
.y29d{bottom:356.298667pt;}
.y23{bottom:356.530667pt;}
.y10d{bottom:356.946667pt;}
.y121{bottom:357.705333pt;}
.y26c{bottom:358.286667pt;}
.y33f{bottom:359.666667pt;}
.yad{bottom:361.681333pt;}
.y37b{bottom:362.226667pt;}
.y33e{bottom:362.558667pt;}
.y152{bottom:362.709333pt;}
.y3b5{bottom:366.410667pt;}
.y229{bottom:368.545333pt;}
.yc6{bottom:369.016000pt;}
.y1f5{bottom:370.330667pt;}
.y2de{bottom:371.678667pt;}
.y304{bottom:371.724000pt;}
.y4c{bottom:372.232000pt;}
.y29c{bottom:372.238667pt;}
.y22{bottom:372.470667pt;}
.y10c{bottom:372.886667pt;}
.y120{bottom:373.645333pt;}
.y37a{bottom:375.510667pt;}
.y33c{bottom:376.506667pt;}
.y26b{bottom:376.728000pt;}
.yac{bottom:377.622667pt;}
.y151{bottom:378.650667pt;}
.y33d{bottom:379.592000pt;}
.y3b4{bottom:379.694667pt;}
.y228{bottom:384.485333pt;}
.yc5{bottom:384.956000pt;}
.y1f4{bottom:386.272000pt;}
.y2dd{bottom:387.618667pt;}
.y303{bottom:387.664000pt;}
.y4b{bottom:388.173333pt;}
.y29b{bottom:388.178667pt;}
.y21{bottom:388.410667pt;}
.y379{bottom:388.793333pt;}
.y10b{bottom:388.826667pt;}
.y11f{bottom:389.585333pt;}
.y26a{bottom:392.668000pt;}
.y3b3{bottom:392.977333pt;}
.yab{bottom:393.562667pt;}
.y150{bottom:394.590667pt;}
.y227{bottom:400.425333pt;}
.yc4{bottom:400.897333pt;}
.y378{bottom:402.077333pt;}
.y33b{bottom:402.173333pt;}
.y1f3{bottom:402.212000pt;}
.y2dc{bottom:403.558667pt;}
.y302{bottom:403.604000pt;}
.y4a{bottom:404.113333pt;}
.y29a{bottom:404.120000pt;}
.y20{bottom:404.350667pt;}
.y10a{bottom:404.766667pt;}
.y33a{bottom:405.066667pt;}
.y11e{bottom:405.525333pt;}
.y3b2{bottom:406.261333pt;}
.y269{bottom:408.609333pt;}
.yaa{bottom:409.502667pt;}
.y14f{bottom:410.530667pt;}
.y377{bottom:415.360000pt;}
.y226{bottom:416.365333pt;}
.yc3{bottom:416.837333pt;}
.y1f2{bottom:418.152000pt;}
.y338{bottom:419.013333pt;}
.y2db{bottom:419.498667pt;}
.y301{bottom:419.545333pt;}
.y49{bottom:420.053333pt;}
.y299{bottom:420.060000pt;}
.y1f{bottom:420.292000pt;}
.y109{bottom:421.869333pt;}
.y339{bottom:422.098667pt;}
.y268{bottom:424.549333pt;}
.ya9{bottom:425.442667pt;}
.y14e{bottom:426.470667pt;}
.y376{bottom:428.644000pt;}
.y11d{bottom:430.396000pt;}
.y225{bottom:432.305333pt;}
.yc2{bottom:432.777333pt;}
.y3b1{bottom:432.828000pt;}
.y1f1{bottom:434.092000pt;}
.y331{bottom:434.289333pt;}
.y2da{bottom:435.438667pt;}
.y300{bottom:435.485333pt;}
.y48{bottom:435.993333pt;}
.y298{bottom:436.000000pt;}
.y1e{bottom:436.232000pt;}
.y108{bottom:437.809333pt;}
.y267{bottom:440.489333pt;}
.ya8{bottom:441.382667pt;}
.y375{bottom:441.928000pt;}
.y14d{bottom:442.410667pt;}
.y337{bottom:444.680000pt;}
.y3b0{bottom:446.112000pt;}
.y11c{bottom:446.336000pt;}
.y336{bottom:447.573333pt;}
.y224{bottom:448.246667pt;}
.yc1{bottom:448.717333pt;}
.y1f0{bottom:450.032000pt;}
.y2ff{bottom:451.425333pt;}
.y47{bottom:451.933333pt;}
.y297{bottom:451.940000pt;}
.y1d{bottom:452.172000pt;}
.y107{bottom:453.749333pt;}
.y374{bottom:455.210667pt;}
.y266{bottom:456.429333pt;}
.ya7{bottom:457.322667pt;}
.y14c{bottom:458.350667pt;}
.y3af{bottom:459.396000pt;}
.y334{bottom:461.521333pt;}
.y17d{bottom:462.133333pt;}
.y11b{bottom:462.276000pt;}
.y2d9{bottom:464.106667pt;}
.y223{bottom:464.186667pt;}
.y335{bottom:464.605333pt;}
.yc0{bottom:464.657333pt;}
.y1ef{bottom:465.972000pt;}
.y2fe{bottom:467.365333pt;}
.y46{bottom:467.873333pt;}
.y1c{bottom:468.112000pt;}
.y373{bottom:468.494667pt;}
.y106{bottom:469.690667pt;}
.y3ae{bottom:472.678667pt;}
.ya6{bottom:473.264000pt;}
.y295{bottom:473.949333pt;}
.y14b{bottom:474.292000pt;}
.y2d8{bottom:476.061333pt;}
.y17c{bottom:478.073333pt;}
.y222{bottom:480.126667pt;}
.ybf{bottom:480.597333pt;}
.y292{bottom:480.710667pt;}
.y372{bottom:481.778667pt;}
.y1ee{bottom:481.913333pt;}
.y2ae{bottom:483.577333pt;}
.y45{bottom:483.814667pt;}
.y1b{bottom:484.052000pt;}
.y2fd{bottom:485.133333pt;}
.y105{bottom:485.630667pt;}
.y3ad{bottom:485.962667pt;}
.y11a{bottom:487.146667pt;}
.y333{bottom:487.188000pt;}
.y2d7{bottom:488.017333pt;}
.ya5{bottom:489.204000pt;}
.y291{bottom:489.822667pt;}
.y332{bottom:490.081333pt;}
.y14a{bottom:490.232000pt;}
.y17b{bottom:494.013333pt;}
.y371{bottom:495.061333pt;}
.y221{bottom:496.066667pt;}
.ybe{bottom:496.538667pt;}
.y1ed{bottom:497.389333pt;}
.y3ac{bottom:499.246667pt;}
.y2ad{bottom:499.517333pt;}
.y44{bottom:499.754667pt;}
.y2d6{bottom:499.972000pt;}
.y1a{bottom:499.992000pt;}
.y296{bottom:500.582667pt;}
.y2fc{bottom:501.073333pt;}
.y104{bottom:501.570667pt;}
.y294{bottom:502.442667pt;}
.y119{bottom:504.048000pt;}
.y265{bottom:505.062667pt;}
.y149{bottom:506.172000pt;}
.y293{bottom:506.574667pt;}
.y370{bottom:508.345333pt;}
.ya4{bottom:509.773333pt;}
.y17a{bottom:509.953333pt;}
.y330{bottom:510.301333pt;}
.y220{bottom:512.006667pt;}
.y264{bottom:512.368000pt;}
.ybd{bottom:512.478667pt;}
.y3ab{bottom:512.529333pt;}
.y32f{bottom:513.194667pt;}
.y1ec{bottom:513.329333pt;}
.y2ac{bottom:515.457333pt;}
.y43{bottom:515.694667pt;}
.y2fb{bottom:517.013333pt;}
.y103{bottom:517.510667pt;}
.y2c3{bottom:519.100000pt;}
.y118{bottom:519.988000pt;}
.y290{bottom:521.122667pt;}
.y36f{bottom:521.629333pt;}
.y19{bottom:522.729333pt;}
.ya3{bottom:525.713333pt;}
.y3aa{bottom:525.813333pt;}
.y32d{bottom:527.141333pt;}
.y148{bottom:527.368000pt;}
.y179{bottom:527.906667pt;}
.ybc{bottom:528.418667pt;}
.y1eb{bottom:529.269333pt;}
.y32e{bottom:530.226667pt;}
.y42{bottom:531.126667pt;}
.y2ab{bottom:531.397333pt;}
.y2fa{bottom:532.953333pt;}
.y102{bottom:533.450667pt;}
.y36e{bottom:534.912000pt;}
.y263{bottom:538.570667pt;}
.y260{bottom:538.830667pt;}
.y3a9{bottom:539.096000pt;}
.y28f{bottom:541.366667pt;}
.ya2{bottom:541.653333pt;}
.y147{bottom:543.308000pt;}
.y178{bottom:543.846667pt;}
.ybb{bottom:544.358667pt;}
.y1ea{bottom:545.209333pt;}
.y41{bottom:547.066667pt;}
.y2aa{bottom:547.337333pt;}
.y36d{bottom:548.196000pt;}
.y2f9{bottom:548.893333pt;}
.y101{bottom:549.390667pt;}
.y25f{bottom:550.785333pt;}
.y262{bottom:551.853333pt;}
.y3a8{bottom:552.380000pt;}
.y32c{bottom:552.808000pt;}
.y21f{bottom:554.493333pt;}
.y18{bottom:554.874667pt;}
.y32b{bottom:555.701333pt;}
.ya1{bottom:557.594667pt;}
.y146{bottom:559.248000pt;}
.y177{bottom:559.786667pt;}
.yba{bottom:560.298667pt;}
.y28e{bottom:560.332000pt;}
.y1e9{bottom:561.149333pt;}
.y36c{bottom:561.480000pt;}
.y25e{bottom:562.741333pt;}
.y40{bottom:563.006667pt;}
.y2a9{bottom:563.278667pt;}
.y117{bottom:564.217333pt;}
.y2f8{bottom:564.834667pt;}
.y261{bottom:565.137333pt;}
.y100{bottom:565.332000pt;}
.y3a7{bottom:565.662667pt;}
.y21e{bottom:566.448000pt;}
.y17{bottom:568.158667pt;}
.y28d{bottom:569.442667pt;}
.y329{bottom:569.649333pt;}
.y32a{bottom:572.733333pt;}
.ya0{bottom:573.534667pt;}
.y36b{bottom:574.762667pt;}
.y145{bottom:575.188000pt;}
.y176{bottom:575.726667pt;}
.y116{bottom:576.172000pt;}
.y1e8{bottom:577.089333pt;}
.y21d{bottom:578.404000pt;}
.y3f{bottom:578.946667pt;}
.y2a8{bottom:579.218667pt;}
.yb9{bottom:580.460000pt;}
.y2f7{bottom:580.774667pt;}
.yff{bottom:581.272000pt;}
.y322{bottom:584.925333pt;}
.y25d{bottom:585.361333pt;}
.y36a{bottom:588.046667pt;}
.y115{bottom:588.126667pt;}
.y9f{bottom:589.474667pt;}
.y16{bottom:589.573333pt;}
.y21c{bottom:590.358667pt;}
.y144{bottom:591.128000pt;}
.y25a{bottom:591.598667pt;}
.y175{bottom:591.666667pt;}
.y3a6{bottom:592.230667pt;}
.y1e7{bottom:593.030667pt;}
.y3e{bottom:594.886667pt;}
.y2a7{bottom:595.158667pt;}
.y328{bottom:595.316000pt;}
.y2f6{bottom:596.714667pt;}
.yfe{bottom:597.212000pt;}
.y327{bottom:598.208000pt;}
.y25c{bottom:598.645333pt;}
.y114{bottom:600.082667pt;}
.y369{bottom:601.329333pt;}
.y21b{bottom:602.313333pt;}
.y15{bottom:602.857333pt;}
.y259{bottom:603.554667pt;}
.y9e{bottom:605.414667pt;}
.y3a5{bottom:605.513333pt;}
.y28c{bottom:605.658667pt;}
.y174{bottom:607.606667pt;}
.y143{bottom:608.738667pt;}
.y1e6{bottom:608.970667pt;}
.y3d{bottom:610.826667pt;}
.y2a6{bottom:611.098667pt;}
.y25b{bottom:611.928000pt;}
.y113{bottom:612.037333pt;}
.y325{bottom:612.156000pt;}
.y2f5{bottom:612.654667pt;}
.y21a{bottom:614.269333pt;}
.y368{bottom:614.613333pt;}
.y326{bottom:615.241333pt;}
.y14{bottom:616.141333pt;}
.y3a4{bottom:618.797333pt;}
.y9d{bottom:621.354667pt;}
.y28b{bottom:621.598667pt;}
.y173{bottom:623.548000pt;}
.y112{bottom:623.992000pt;}
.y142{bottom:624.680000pt;}
.y1e5{bottom:624.910667pt;}
.y3c{bottom:626.768000pt;}
.y2a5{bottom:627.038667pt;}
.y367{bottom:627.897333pt;}
.y2f4{bottom:628.594667pt;}
.y13{bottom:629.424000pt;}
.y3a3{bottom:632.081333pt;}
.y258{bottom:632.152000pt;}
.y205{bottom:633.397333pt;}
.y9c{bottom:637.294667pt;}
.y28a{bottom:637.540000pt;}
.y324{bottom:637.822667pt;}
.y172{bottom:639.488000pt;}
.y141{bottom:640.620000pt;}
.y323{bottom:640.716000pt;}
.y366{bottom:641.180000pt;}
.yfd{bottom:641.709333pt;}
.y1e4{bottom:642.012000pt;}
.y12{bottom:642.708000pt;}
.y2f3{bottom:644.534667pt;}
.y3a2{bottom:645.364000pt;}
.y257{bottom:645.436000pt;}
.y253{bottom:645.696000pt;}
.y2a4{bottom:650.222667pt;}
.yb8{bottom:653.234667pt;}
.y9b{bottom:653.236000pt;}
.yfc{bottom:653.665333pt;}
.y289{bottom:653.892000pt;}
.y365{bottom:654.464000pt;}
.y171{bottom:655.428000pt;}
.y11{bottom:655.992000pt;}
.y140{bottom:656.560000pt;}
.y252{bottom:657.652000pt;}
.y1e3{bottom:657.952000pt;}
.y3b{bottom:658.648000pt;}
.y256{bottom:658.720000pt;}
.y2f2{bottom:660.476000pt;}
.y321{bottom:660.936000pt;}
.y320{bottom:663.829333pt;}
.y364{bottom:667.748000pt;}
.y9a{bottom:669.176000pt;}
.y10{bottom:669.274667pt;}
.y251{bottom:669.606667pt;}
.y288{bottom:669.832000pt;}
.y3a1{bottom:671.932000pt;}
.y255{bottom:672.002667pt;}
.y13f{bottom:672.500000pt;}
.yd3{bottom:672.793333pt;}
.y170{bottom:672.978667pt;}
.y1e2{bottom:673.892000pt;}
.y3a{bottom:674.588000pt;}
.y2a3{bottom:675.105333pt;}
.y2f1{bottom:676.416000pt;}
.y31e{bottom:677.777333pt;}
.y31f{bottom:680.861333pt;}
.y363{bottom:681.030667pt;}
.yf{bottom:682.558667pt;}
.y3a0{bottom:685.214667pt;}
.y254{bottom:685.286667pt;}
.y287{bottom:685.772000pt;}
.y13e{bottom:688.440000pt;}
.y16f{bottom:688.918667pt;}
.y1e1{bottom:689.832000pt;}
.y39{bottom:690.528000pt;}
.y362{bottom:694.314667pt;}
.ye{bottom:695.842667pt;}
.y39f{bottom:698.498667pt;}
.y250{bottom:699.101333pt;}
.y286{bottom:701.712000pt;}
.y2f0{bottom:702.936000pt;}
.y31d{bottom:703.444000pt;}
.y13d{bottom:704.381333pt;}
.y16e{bottom:704.858667pt;}
.y1e0{bottom:705.772000pt;}
.y31c{bottom:706.336000pt;}
.y38{bottom:706.468000pt;}
.y2a2{bottom:706.469333pt;}
.y361{bottom:707.598667pt;}
.yd{bottom:709.125333pt;}
.y39e{bottom:711.782667pt;}
.y99{bottom:712.124000pt;}
.y285{bottom:717.652000pt;}
.y24f{bottom:719.160000pt;}
.y31a{bottom:720.284000pt;}
.y13c{bottom:720.321333pt;}
.y16d{bottom:720.798667pt;}
.y360{bottom:720.881333pt;}
.y1df{bottom:721.713333pt;}
.yc{bottom:722.409333pt;}
.y31b{bottom:723.369333pt;}
.y98{bottom:724.078667pt;}
.y39d{bottom:725.065333pt;}
.y24e{bottom:731.114667pt;}
.y284{bottom:733.592000pt;}
.y35f{bottom:734.165333pt;}
.yb{bottom:735.693333pt;}
.y97{bottom:736.034667pt;}
.y13b{bottom:736.261333pt;}
.y2ef{bottom:736.522667pt;}
.y16c{bottom:736.738667pt;}
.y1de{bottom:737.653333pt;}
.y37{bottom:738.349333pt;}
.y319{bottom:745.950667pt;}
.y35e{bottom:747.449333pt;}
.y318{bottom:748.844000pt;}
.ya{bottom:748.976000pt;}
.y283{bottom:749.533333pt;}
.y39c{bottom:751.632000pt;}
.y13a{bottom:752.201333pt;}
.y2ee{bottom:752.462667pt;}
.y16b{bottom:752.678667pt;}
.y1dd{bottom:753.593333pt;}
.y36{bottom:754.289333pt;}
.y5a{bottom:755.162667pt;}
.y2c2{bottom:757.402667pt;}
.y35d{bottom:760.732000pt;}
.y9{bottom:762.260000pt;}
.y316{bottom:762.792000pt;}
.y39b{bottom:764.916000pt;}
.y282{bottom:765.473333pt;}
.y317{bottom:765.876000pt;}
.y24d{bottom:766.241333pt;}
.y139{bottom:768.141333pt;}
.y2ed{bottom:768.402667pt;}
.y16a{bottom:768.620000pt;}
.y35{bottom:770.229333pt;}
.y1dc{bottom:770.694667pt;}
.y2c1{bottom:773.344000pt;}
.y35c{bottom:774.016000pt;}
.y8{bottom:775.542667pt;}
.y24c{bottom:778.196000pt;}
.y39a{bottom:778.200000pt;}
.y281{bottom:781.413333pt;}
.y138{bottom:784.081333pt;}
.y2ec{bottom:784.342667pt;}
.y169{bottom:784.560000pt;}
.y34{bottom:786.169333pt;}
.y2a1{bottom:786.170667pt;}
.y1db{bottom:786.634667pt;}
.y35b{bottom:787.298667pt;}
.y315{bottom:788.458667pt;}
.y7{bottom:788.826667pt;}
.y2c0{bottom:789.284000pt;}
.y24b{bottom:790.150667pt;}
.y309{bottom:790.686667pt;}
.y314{bottom:791.350667pt;}
.y399{bottom:791.482667pt;}
.y280{bottom:797.353333pt;}
.y137{bottom:800.022667pt;}
.y2eb{bottom:800.282667pt;}
.y168{bottom:800.500000pt;}
.y35a{bottom:800.582667pt;}
.y24a{bottom:802.106667pt;}
.y6{bottom:802.110667pt;}
.y398{bottom:804.766667pt;}
.y2bf{bottom:805.224000pt;}
.y312{bottom:805.298667pt;}
.y313{bottom:808.384000pt;}
.y359{bottom:813.866667pt;}
.y249{bottom:814.061333pt;}
.y136{bottom:815.962667pt;}
.y2ea{bottom:816.222667pt;}
.y167{bottom:816.440000pt;}
.y1da{bottom:818.050667pt;}
.y2be{bottom:821.164000pt;}
.y27e{bottom:821.980000pt;}
.y248{bottom:826.016000pt;}
.y358{bottom:827.149333pt;}
.y311{bottom:830.965333pt;}
.y397{bottom:831.333333pt;}
.y135{bottom:831.902667pt;}
.y166{bottom:832.380000pt;}
.y310{bottom:833.858667pt;}
.y1d9{bottom:833.990667pt;}
.y2bd{bottom:837.104000pt;}
.y357{bottom:840.433333pt;}
.y27d{bottom:841.204000pt;}
.y396{bottom:844.617333pt;}
.y233{bottom:845.145333pt;}
.y30e{bottom:847.805333pt;}
.y134{bottom:847.842667pt;}
.y27a{bottom:847.965333pt;}
.y165{bottom:848.320000pt;}
.y5{bottom:848.913333pt;}
.y1d8{bottom:849.930667pt;}
.y30f{bottom:850.890667pt;}
.y2bc{bottom:853.044000pt;}
.y356{bottom:853.717333pt;}
.y279{bottom:857.077333pt;}
.y395{bottom:857.901333pt;}
.y27f{bottom:863.717333pt;}
.y133{bottom:863.782667pt;}
.y164{bottom:864.261333pt;}
.y1d7{bottom:865.870667pt;}
.y355{bottom:867.000000pt;}
.y2bb{bottom:868.985333pt;}
.y27c{bottom:869.697333pt;}
.y4{bottom:870.172000pt;}
.y394{bottom:871.184000pt;}
.y30d{bottom:873.472000pt;}
.y27b{bottom:873.829333pt;}
.y30c{bottom:876.365333pt;}
.y354{bottom:880.284000pt;}
.y163{bottom:881.810667pt;}
.y132{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y393{bottom:884.468000pt;}
.y2ba{bottom:884.925333pt;}
.y278{bottom:888.817333pt;}
.y30b{bottom:893.397333pt;}
.y353{bottom:893.568000pt;}
.y30a{bottom:896.290667pt;}
.y162{bottom:897.750667pt;}
.y131{bottom:897.752000pt;}
.y277{bottom:897.929333pt;}
.y2b9{bottom:900.865333pt;}
.y352{bottom:906.850667pt;}
.y392{bottom:911.034667pt;}
.y130{bottom:913.692000pt;}
.y2b8{bottom:916.805333pt;}
.y308{bottom:919.404000pt;}
.y351{bottom:920.134667pt;}
.y2{bottom:923.830667pt;}
.y391{bottom:924.318667pt;}
.y276{bottom:929.117333pt;}
.y12f{bottom:929.632000pt;}
.y350{bottom:933.418667pt;}
.y2b7{bottom:936.884000pt;}
.y390{bottom:937.602667pt;}
.y307{bottom:939.329333pt;}
.y275{bottom:945.057333pt;}
.y12e{bottom:945.572000pt;}
.y34f{bottom:946.701333pt;}
.y38f{bottom:950.885333pt;}
.y34e{bottom:959.985333pt;}
.y274{bottom:960.997333pt;}
.y1{bottom:961.024000pt;}
.y12d{bottom:961.512000pt;}
.y38e{bottom:964.169333pt;}
.y306{bottom:965.497333pt;}
.y161{bottom:977.452000pt;}
.y12c{bottom:977.453333pt;}
.h3e{height:2.125355pt;}
.h43{height:10.239733pt;}
.h26{height:15.257031pt;}
.h23{height:15.257039pt;}
.h2b{height:15.264442pt;}
.h1a{height:17.172510pt;}
.h4f{height:17.985814pt;}
.h15{height:21.450378pt;}
.h12{height:23.724960pt;}
.h13{height:24.412640pt;}
.h3{height:24.696550pt;}
.h3d{height:25.142874pt;}
.h14{height:25.300446pt;}
.h2f{height:25.424377pt;}
.ha{height:25.599840pt;}
.he{height:26.324835pt;}
.h31{height:26.441352pt;}
.hb{height:27.299829pt;}
.h34{height:27.599500pt;}
.hf{height:29.244954pt;}
.h37{height:29.414982pt;}
.h38{height:30.209681pt;}
.h4b{height:30.305219pt;}
.h27{height:30.514063pt;}
.h18{height:30.528885pt;}
.h46{height:30.532601pt;}
.h47{height:31.454108pt;}
.h39{height:31.880400pt;}
.h54{height:32.661606pt;}
.h8{height:32.900710pt;}
.h56{height:32.906044pt;}
.h6{height:33.091994pt;}
.h57{height:33.135377pt;}
.h55{height:33.140710pt;}
.h5{height:33.426739pt;}
.h33{height:34.959367pt;}
.h35{height:35.187257pt;}
.h36{height:35.400264pt;}
.h30{height:35.594127pt;}
.hc{height:35.656920pt;}
.h10{height:36.290431pt;}
.h4a{height:36.366262pt;}
.h4{height:36.556100pt;}
.h7{height:36.768636pt;}
.h48{height:36.931140pt;}
.h52{height:37.052481pt;}
.h4d{height:37.057814pt;}
.hd{height:38.024762pt;}
.h2d{height:38.043849pt;}
.h28{height:38.161159pt;}
.h21{height:38.994375pt;}
.h24{height:38.994377pt;}
.h4c{height:39.396784pt;}
.h16{height:39.850400pt;}
.h29{height:40.073888pt;}
.h22{height:41.118883pt;}
.h1b{height:43.889991pt;}
.h19{height:43.889994pt;}
.h40{height:43.976550pt;}
.h44{height:45.165355pt;}
.h2a{height:45.836770pt;}
.h1d{height:46.299554pt;}
.h1c{height:47.468447pt;}
.h1e{height:47.468540pt;}
.h51{height:48.625814pt;}
.h4e{height:48.631147pt;}
.h25{height:50.771954pt;}
.h2{height:52.995067pt;}
.h3f{height:53.279733pt;}
.h20{height:54.591662pt;}
.h1f{height:58.169951pt;}
.h2c{height:59.911845pt;}
.h3a{height:60.112555pt;}
.h53{height:60.961814pt;}
.h50{height:60.967147pt;}
.h41{height:74.486515pt;}
.h3c{height:74.491849pt;}
.h3b{height:75.797067pt;}
.h42{height:76.513434pt;}
.h1{height:87.734861pt;}
.h32{height:143.465499pt;}
.h45{height:182.086263pt;}
.h49{height:217.343711pt;}
.h9{height:233.446160pt;}
.h17{height:236.686866pt;}
.h11{height:315.817040pt;}
.h2e{height:355.216205pt;}
.h0{height:1056.000000pt;}
.w2{width:334.728240pt;}
.w3{width:334.742854pt;}
.w6{width:334.743287pt;}
.w4{width:334.750914pt;}
.w5{width:334.752831pt;}
.w7{width:334.755535pt;}
.w1{width:685.405240pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x70{left:3.483644pt;}
.x18{left:6.020229pt;}
.x2f{left:7.724538pt;}
.x4e{left:9.121185pt;}
.x8a{left:11.062731pt;}
.x5d{left:12.006942pt;}
.x7e{left:12.919756pt;}
.x26{left:13.877554pt;}
.x27{left:16.879624pt;}
.x4f{left:18.369250pt;}
.x28{left:20.181347pt;}
.x83{left:22.664218pt;}
.x5c{left:24.070455pt;}
.x19{left:25.217671pt;}
.x52{left:26.718426pt;}
.x53{left:33.109640pt;}
.x82{left:34.748144pt;}
.xa4{left:37.143877pt;}
.x5e{left:38.883921pt;}
.x2b{left:41.615985pt;}
.x84{left:43.763514pt;}
.xa3{left:44.927900pt;}
.x2a{left:47.178974pt;}
.x4b{left:49.038375pt;}
.x1f{left:50.908435pt;}
.x30{left:53.128438pt;}
.x81{left:54.796458pt;}
.x7f{left:56.728640pt;}
.x54{left:58.231483pt;}
.x31{left:59.924611pt;}
.x80{left:62.428446pt;}
.x55{left:64.102875pt;}
.x7{left:65.285333pt;}
.x50{left:66.240356pt;}
.xb9{left:67.498667pt;}
.x8d{left:68.606667pt;}
.x51{left:72.804557pt;}
.x43{left:76.375634pt;}
.x1c{left:77.369333pt;}
.x6{left:78.569333pt;}
.x35{left:79.520393pt;}
.x36{left:81.439021pt;}
.xa2{left:82.493662pt;}
.x56{left:84.932411pt;}
.x4a{left:86.347169pt;}
.x1{left:90.488000pt;}
.x89{left:91.598428pt;}
.x4c{left:94.387126pt;}
.x85{left:96.879064pt;}
.x4d{left:100.056707pt;}
.x37{left:103.695783pt;}
.xb7{left:108.673333pt;}
.x2d{left:113.092414pt;}
.x2c{left:115.306744pt;}
.x69{left:119.702125pt;}
.x57{left:121.220945pt;}
.x68{left:122.354145pt;}
.x1e{left:123.593288pt;}
.x6a{left:124.918604pt;}
.x38{left:126.034552pt;}
.x3{left:127.122667pt;}
.x2e{left:129.739428pt;}
.x4{left:131.298667pt;}
.x16{left:133.934706pt;}
.xa5{left:137.708000pt;}
.x17{left:138.613686pt;}
.xa1{left:142.974667pt;}
.x71{left:144.750454pt;}
.x72{left:146.320455pt;}
.x3f{left:150.607078pt;}
.x7a{left:152.576384pt;}
.x64{left:156.109443pt;}
.x23{left:157.148631pt;}
.x7b{left:158.839619pt;}
.x6d{left:161.170180pt;}
.x40{left:163.329158pt;}
.x6e{left:165.124402pt;}
.x22{left:167.542916pt;}
.x78{left:169.307646pt;}
.x21{left:171.087907pt;}
.x6b{left:172.546332pt;}
.x46{left:175.179604pt;}
.x6f{left:177.011155pt;}
.x8{left:180.825333pt;}
.x47{left:183.259843pt;}
.x88{left:184.215953pt;}
.x7c{left:187.724781pt;}
.x77{left:188.895717pt;}
.x6c{left:190.084395pt;}
.x76{left:195.529661pt;}
.x7d{left:200.815104pt;}
.x20{left:201.710298pt;}
.x3c{left:205.246692pt;}
.x29{left:206.436378pt;}
.x61{left:208.495980pt;}
.x87{left:210.671933pt;}
.x8c{left:212.402667pt;}
.x41{left:214.181374pt;}
.x3d{left:217.109174pt;}
.xb3{left:222.304000pt;}
.x42{left:226.043856pt;}
.x63{left:229.016375pt;}
.x3e{left:230.584262pt;}
.x75{left:231.649513pt;}
.x5f{left:232.594651pt;}
.x62{left:234.887572pt;}
.x73{left:236.472790pt;}
.x60{left:238.466053pt;}
.x25{left:240.216941pt;}
.x86{left:241.482090pt;}
.x74{left:243.649421pt;}
.x24{left:245.780270pt;}
.x39{left:248.845604pt;}
.x65{left:262.191552pt;}
.x59{left:264.267664pt;}
.x5{left:268.085333pt;}
.x5a{left:270.139041pt;}
.x3a{left:272.190622pt;}
.x66{left:274.656646pt;}
.x33{left:277.998080pt;}
.x44{left:280.241634pt;}
.x34{left:281.295510pt;}
.x32{left:283.561410pt;}
.x13{left:286.852302pt;}
.x67{left:288.060039pt;}
.x45{left:292.963715pt;}
.x5b{left:294.376651pt;}
.x3b{left:295.628475pt;}
.x15{left:302.328015pt;}
.x79{left:303.786931pt;}
.xb4{left:306.656000pt;}
.x58{left:313.200894pt;}
.x48{left:320.941975pt;}
.xba{left:323.780000pt;}
.x14{left:324.776637pt;}
.x8b{left:326.248120pt;}
.x49{left:329.022214pt;}
.x2{left:351.317333pt;}
.xb5{left:359.637333pt;}
.xb6{left:390.070667pt;}
.xb8{left:391.398667pt;}
.xc{left:399.666667pt;}
.xa{left:415.970667pt;}
.xbb{left:418.182667pt;}
.xb2{left:419.290667pt;}
.xa9{left:422.134667pt;}
.x9b{left:423.105333pt;}
.xb{left:428.054667pt;}
.x9{left:429.253333pt;}
.xaa{left:438.114667pt;}
.xbc{left:451.384000pt;}
.xe{left:452.763646pt;}
.x12{left:456.247053pt;}
.xf{left:458.544942pt;}
.x99{left:462.984000pt;}
.x8e{left:466.962667pt;}
.x9c{left:473.324000pt;}
.xa8{left:485.676000pt;}
.x1a{left:503.850565pt;}
.x9e{left:520.810667pt;}
.x9d{left:523.029333pt;}
.x98{left:525.624000pt;}
.x1d{left:527.166667pt;}
.xbe{left:531.325333pt;}
.x9f{left:542.222667pt;}
.x90{left:549.136000pt;}
.x9a{left:551.785333pt;}
.xa6{left:561.318667pt;}
.xd{left:565.745333pt;}
.xbf{left:569.573333pt;}
.xb1{left:572.102667pt;}
.x1b{left:574.917547pt;}
.x8f{left:581.412000pt;}
.x95{left:584.285333pt;}
.x11{left:585.885862pt;}
.x10{left:592.288870pt;}
.x93{left:596.622667pt;}
.x92{left:598.842667pt;}
.x91{left:602.706667pt;}
.xa7{left:610.536000pt;}
.xab{left:612.426667pt;}
.xc0{left:613.692000pt;}
.xbd{left:615.909333pt;}
.xb0{left:618.072000pt;}
.x94{left:622.462667pt;}
.xc1{left:636.236000pt;}
.xae{left:667.756000pt;}
.xac{left:673.401333pt;}
.x96{left:684.621333pt;}
.xa0{left:694.150667pt;}
.xaf{left:718.936000pt;}
.xad{left:724.581333pt;}
.x97{left:735.226667pt;}
}




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