
    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_65d1f2c0ff5c425dff50a372.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_7cd58e126da2566cab20b206.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d122c7d7cc866a94e544e33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a83ac38a0c4c49fdfa5cb1c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_e24354b9686c7dc5dbf6c680.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.146000;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_88d1d67ad24f266368927b00.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b7e2ff302ee87ab0f7482b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e794626a381759cebbd6c320.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7879fdc311efb9dd82c9c952.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_23515de4125f688285b67e05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;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_0bb332c566dbe9d93fc58c96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916000;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_3a9d412550833ec1dc0e3de1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_39781aed97256288ae963538.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691000;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_65a380d3283829df6385abc8.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4406bd8127b16036870e71b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ee8e0705b8389a704f8f1cd3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_13789a199ba6bc5201bd56e5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_487d4d7c103ad7d2db67c2d2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.894000;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_c32e030909662f0e007fa71b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_faa92a039cfc06b61ee43224.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4f2e53c60da765b64ace678f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.925781;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;}
.mb{transform:matrix(0.000000,-0.249765,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249765,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249765,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249852,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249872,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249896,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250046,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250051,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,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);}
.m14{transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.519927px;}
.v2{vertical-align:-20.400009px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.435927px;}
.v1{vertical-align:24.000000px;}
.lsc0{letter-spacing:-3.783843px;}
.ls3c{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.900000px;}
.lsbf{letter-spacing:-0.756769px;}
.ls79{letter-spacing:-0.660307px;}
.ls3a{letter-spacing:-0.660000px;}
.ls6a{letter-spacing:-0.570305px;}
.ls38{letter-spacing:-0.540000px;}
.ls7b{letter-spacing:-0.504941px;}
.ls37{letter-spacing:-0.480000px;}
.ls7a{letter-spacing:-0.427258px;}
.ls65{letter-spacing:-0.423357px;}
.ls3f{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.360000px;}
.lsc5{letter-spacing:-0.357000px;}
.lsc3{letter-spacing:-0.306000px;}
.lsba{letter-spacing:-0.300538px;}
.ls32{letter-spacing:-0.300000px;}
.lsc7{letter-spacing:-0.255000px;}
.ls18{letter-spacing:-0.240000px;}
.ls6c{letter-spacing:-0.219348px;}
.lsc6{letter-spacing:-0.204000px;}
.ls63{letter-spacing:-0.192435px;}
.lsb1{letter-spacing:-0.191331px;}
.ls39{letter-spacing:-0.180000px;}
.ls60{letter-spacing:-0.125575px;}
.ls19{letter-spacing:-0.120000px;}
.lsb4{letter-spacing:-0.109332px;}
.lsd9{letter-spacing:-0.102000px;}
.lsc2{letter-spacing:-0.089032px;}
.ls6b{letter-spacing:-0.087739px;}
.lsb5{letter-spacing:-0.081999px;}
.ls94{letter-spacing:-0.077749px;}
.ls7c{letter-spacing:-0.077683px;}
.ls1a{letter-spacing:-0.060000px;}
.lsb2{letter-spacing:-0.054666px;}
.lsd7{letter-spacing:-0.051000px;}
.ls56{letter-spacing:-0.047284px;}
.ls8f{letter-spacing:-0.046837px;}
.ls68{letter-spacing:-0.039615px;}
.ls7d{letter-spacing:-0.038842px;}
.ls64{letter-spacing:-0.038487px;}
.ls77{letter-spacing:-0.035063px;}
.lsb9{letter-spacing:-0.030248px;}
.lsbc{letter-spacing:-0.027322px;}
.ls5d{letter-spacing:-0.026164px;}
.ls17{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls89{letter-spacing:0.025916px;}
.ls5b{letter-spacing:0.026164px;}
.ls99{letter-spacing:0.027333px;}
.ls9c{letter-spacing:0.030236px;}
.lsb7{letter-spacing:0.030248px;}
.ls75{letter-spacing:0.035063px;}
.ls4d{letter-spacing:0.038487px;}
.ls6e{letter-spacing:0.038842px;}
.ls66{letter-spacing:0.039615px;}
.lsa0{letter-spacing:0.044516px;}
.lsa5{letter-spacing:0.051000px;}
.ls8a{letter-spacing:0.051833px;}
.lsb6{letter-spacing:0.054666px;}
.ls95{letter-spacing:0.057425px;}
.ls5f{letter-spacing:0.058013px;}
.ls8{letter-spacing:0.060000px;}
.ls4b{letter-spacing:0.062788px;}
.ls93{letter-spacing:0.070256px;}
.lsd4{letter-spacing:0.076500px;}
.ls4e{letter-spacing:0.076974px;}
.ls6f{letter-spacing:0.077683px;}
.ls53{letter-spacing:0.079156px;}
.ls9b{letter-spacing:0.081999px;}
.ls48{letter-spacing:0.087019px;}
.ls69{letter-spacing:0.087739px;}
.lsbe{letter-spacing:0.089032px;}
.ls9d{letter-spacing:0.090707px;}
.ls8e{letter-spacing:0.093674px;}
.ls4a{letter-spacing:0.094181px;}
.ls58{letter-spacing:0.094567px;}
.lsa8{letter-spacing:0.102000px;}
.ls61{letter-spacing:0.104166px;}
.ls46{letter-spacing:0.104674px;}
.ls9f{letter-spacing:0.109286px;}
.ls98{letter-spacing:0.109332px;}
.ls8b{letter-spacing:0.114850px;}
.ls51{letter-spacing:0.115461px;}
.ls47{letter-spacing:0.116026px;}
.ls72{letter-spacing:0.116525px;}
.ls55{letter-spacing:0.118209px;}
.lsa{letter-spacing:0.120000px;}
.lsc1{letter-spacing:0.133547px;}
.ls97{letter-spacing:0.136665px;}
.ls78{letter-spacing:0.140167px;}
.ls92{letter-spacing:0.140512px;}
.ls5a{letter-spacing:0.141851px;}
.ls7f{letter-spacing:0.150000px;}
.lsad{letter-spacing:0.153000px;}
.ls4c{letter-spacing:0.153948px;}
.ls70{letter-spacing:0.155366px;}
.ls5c{letter-spacing:0.156982px;}
.ls5e{letter-spacing:0.157010px;}
.ls8c{letter-spacing:0.163846px;}
.ls8d{letter-spacing:0.163930px;}
.lsb3{letter-spacing:0.163998px;}
.ls54{letter-spacing:0.165493px;}
.ls45{letter-spacing:0.165526px;}
.lsbd{letter-spacing:0.178063px;}
.ls15{letter-spacing:0.178791px;}
.ls9{letter-spacing:0.180000px;}
.ls9e{letter-spacing:0.181415px;}
.lsb8{letter-spacing:0.181490px;}
.ls96{letter-spacing:0.191251px;}
.lsaf{letter-spacing:0.191331px;}
.ls50{letter-spacing:0.192435px;}
.ls71{letter-spacing:0.194208px;}
.lsa4{letter-spacing:0.204000px;}
.ls28{letter-spacing:0.210000px;}
.ls76{letter-spacing:0.210377px;}
.ls49{letter-spacing:0.219626px;}
.ls6d{letter-spacing:0.221651px;}
.lscd{letter-spacing:0.229500px;}
.ls67{letter-spacing:0.237690px;}
.ls2{letter-spacing:0.240000px;}
.ls9a{letter-spacing:0.245997px;}
.ls52{letter-spacing:0.250341px;}
.ls16{letter-spacing:0.255000px;}
.ls91{letter-spacing:0.257605px;}
.ls59{letter-spacing:0.260060px;}
.lsa3{letter-spacing:0.264000px;}
.ls4f{letter-spacing:0.269409px;}
.lsd6{letter-spacing:0.280500px;}
.ls90{letter-spacing:0.281023px;}
.ls57{letter-spacing:0.283702px;}
.lsa9{letter-spacing:0.288000px;}
.ls74{letter-spacing:0.292809px;}
.ls4{letter-spacing:0.300000px;}
.lsb0{letter-spacing:0.300663px;}
.lsa1{letter-spacing:0.306000px;}
.lsbb{letter-spacing:0.327859px;}
.ls87{letter-spacing:0.330000px;}
.ls62{letter-spacing:0.346383px;}
.ls7e{letter-spacing:0.349574px;}
.ls40{letter-spacing:0.356451px;}
.lsa6{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.390000px;}
.lsa7{letter-spacing:0.408000px;}
.ls2d{letter-spacing:0.420000px;}
.lsd3{letter-spacing:0.433500px;}
.ls44{letter-spacing:0.446411px;}
.ls2b{letter-spacing:0.450000px;}
.lsae{letter-spacing:0.459000px;}
.ls43{letter-spacing:0.472788px;}
.ls10{letter-spacing:0.480000px;}
.lsd1{letter-spacing:0.484500px;}
.ls2a{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.540000px;}
.lsab{letter-spacing:0.561000px;}
.ls80{letter-spacing:0.570000px;}
.ls6{letter-spacing:0.600000px;}
.lsaa{letter-spacing:0.612000px;}
.ls36{letter-spacing:0.630000px;}
.lscb{letter-spacing:0.637500px;}
.ls13{letter-spacing:0.660000px;}
.lsa2{letter-spacing:0.663000px;}
.ls2e{letter-spacing:0.690000px;}
.lsc4{letter-spacing:0.714000px;}
.ls30{letter-spacing:0.720000px;}
.ls84{letter-spacing:0.750000px;}
.lsc8{letter-spacing:0.765000px;}
.ls3{letter-spacing:0.780000px;}
.ls26{letter-spacing:0.810000px;}
.lsd0{letter-spacing:0.816000px;}
.lse{letter-spacing:0.840000px;}
.lsd5{letter-spacing:0.841500px;}
.lsc9{letter-spacing:0.867000px;}
.ls85{letter-spacing:0.870000px;}
.lsf{letter-spacing:0.900000px;}
.lscc{letter-spacing:0.918000px;}
.ls35{letter-spacing:0.930000px;}
.lsca{letter-spacing:0.943500px;}
.ls2c{letter-spacing:0.960000px;}
.lsac{letter-spacing:0.969000px;}
.ls27{letter-spacing:1.020000px;}
.lsd2{letter-spacing:1.071000px;}
.ls29{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.110000px;}
.lsb{letter-spacing:1.140000px;}
.ls81{letter-spacing:1.166968px;}
.ls33{letter-spacing:1.200000px;}
.lsce{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.230000px;}
.ls25{letter-spacing:1.260000px;}
.lsda{letter-spacing:1.275000px;}
.ls86{letter-spacing:1.290000px;}
.ls22{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.410000px;}
.lsd8{letter-spacing:1.428000px;}
.ls23{letter-spacing:1.440000px;}
.lscf{letter-spacing:1.479000px;}
.ls3d{letter-spacing:1.500000px;}
.lsdb{letter-spacing:1.530000px;}
.ls1f{letter-spacing:1.560000px;}
.ls11{letter-spacing:1.620000px;}
.ls12{letter-spacing:1.680000px;}
.ls83{letter-spacing:1.683000px;}
.ls2f{letter-spacing:1.740000px;}
.lsc{letter-spacing:1.800000px;}
.ls1d{letter-spacing:1.860000px;}
.ls1c{letter-spacing:1.920000px;}
.lsd{letter-spacing:2.040000px;}
.ls34{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.220000px;}
.ls20{letter-spacing:2.280000px;}
.ls31{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.990000px;}
.ls42{letter-spacing:12.750000px;}
.ls82{letter-spacing:14.433000px;}
.ls73{letter-spacing:640.605560px;}
.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;}
}
.ws6f{word-spacing:-16.560000px;}
.ws29{word-spacing:-16.260000px;}
.ws28{word-spacing:-16.140000px;}
.ws60{word-spacing:-16.110000px;}
.ws4c{word-spacing:-15.900000px;}
.wsc9{word-spacing:-15.840000px;}
.wsc1{word-spacing:-15.360000px;}
.ws6e{word-spacing:-15.300000px;}
.ws6d{word-spacing:-15.060000px;}
.ws61{word-spacing:-15.000000px;}
.ws6c{word-spacing:-14.940000px;}
.ws5f{word-spacing:-14.880000px;}
.wsf1{word-spacing:-14.832000px;}
.ws78{word-spacing:-14.700000px;}
.ws71{word-spacing:-14.544000px;}
.ws10f{word-spacing:-13.005000px;}
.ws77{word-spacing:-12.750000px;}
.ws5b{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.520000px;}
.ws94{word-spacing:-10.748052px;}
.ws70{word-spacing:-10.500000px;}
.ws93{word-spacing:-10.397095px;}
.wsee{word-spacing:-10.372181px;}
.wsf0{word-spacing:-10.302000px;}
.ws92{word-spacing:-10.141440px;}
.wsb1{word-spacing:-10.059974px;}
.ws1{word-spacing:-9.996000px;}
.ws89{word-spacing:-9.968133px;}
.ws91{word-spacing:-9.943365px;}
.wsad{word-spacing:-9.904608px;}
.wsab{word-spacing:-9.865766px;}
.wsae{word-spacing:-9.826925px;}
.ws8e{word-spacing:-9.814185px;}
.wsa7{word-spacing:-9.788083px;}
.wsac{word-spacing:-9.749242px;}
.wsa9{word-spacing:-9.710400px;}
.ws8a{word-spacing:-9.660237px;}
.wsb0{word-spacing:-9.632717px;}
.ws8c{word-spacing:-9.621750px;}
.ws8d{word-spacing:-9.429315px;}
.ws0{word-spacing:-9.408000px;}
.wsaa{word-spacing:-9.283142px;}
.wsaf{word-spacing:-9.205459px;}
.ws8f{word-spacing:-9.198393px;}
.ws90{word-spacing:-9.191091px;}
.wsa8{word-spacing:-9.050093px;}
.wsa6{word-spacing:-8.976077px;}
.ws6{word-spacing:-8.925000px;}
.wsa5{word-spacing:-8.800763px;}
.ws3{word-spacing:-8.694000px;}
.wsa4{word-spacing:-8.137751px;}
.ws87{word-spacing:-8.063426px;}
.wsea{word-spacing:-7.743590px;}
.wseb{word-spacing:-7.740365px;}
.ws88{word-spacing:-7.722875px;}
.wse9{word-spacing:-7.592348px;}
.wsef{word-spacing:-7.345107px;}
.wsd5{word-spacing:-7.292950px;}
.wsd6{word-spacing:-7.235525px;}
.wsdf{word-spacing:-7.133913px;}
.wse4{word-spacing:-7.079247px;}
.wsde{word-spacing:-7.024581px;}
.wsdd{word-spacing:-7.021651px;}
.wse6{word-spacing:-6.997248px;}
.wse1{word-spacing:-6.969915px;}
.wse2{word-spacing:-6.942582px;}
.wsec{word-spacing:-6.939686px;}
.wse5{word-spacing:-6.915249px;}
.wse3{word-spacing:-6.860583px;}
.wse0{word-spacing:-6.778584px;}
.wse8{word-spacing:-6.751251px;}
.wse7{word-spacing:-6.723918px;}
.wsd4{word-spacing:-6.530933px;}
.wsed{word-spacing:-6.529862px;}
.wsd3{word-spacing:-6.401351px;}
.wsd0{word-spacing:-6.135673px;}
.wsd1{word-spacing:-6.112255px;}
.wsce{word-spacing:-6.018580px;}
.wscd{word-spacing:-6.015496px;}
.wsd2{word-spacing:-5.995162px;}
.wscf{word-spacing:-5.948324px;}
.ws50{word-spacing:-2.160000px;}
.ws17{word-spacing:-2.040000px;}
.ws7{word-spacing:-1.890000px;}
.ws43{word-spacing:-1.740000px;}
.ws1e{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.500000px;}
.ws67{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.380000px;}
.ws4b{word-spacing:-1.320000px;}
.ws106{word-spacing:-1.275000px;}
.ws3e{word-spacing:-1.260000px;}
.ws34{word-spacing:-1.200000px;}
.ws115{word-spacing:-1.173000px;}
.ws24{word-spacing:-1.140000px;}
.ws5c{word-spacing:-1.080000px;}
.ws10c{word-spacing:-1.071000px;}
.ws96{word-spacing:-1.020000px;}
.ws10a{word-spacing:-0.969000px;}
.ws39{word-spacing:-0.900000px;}
.ws119{word-spacing:-0.867000px;}
.ws19{word-spacing:-0.840000px;}
.ws12b{word-spacing:-0.816000px;}
.ws5a{word-spacing:-0.780000px;}
.ws10d{word-spacing:-0.765000px;}
.wse{word-spacing:-0.720000px;}
.ws10e{word-spacing:-0.714000px;}
.ws12d{word-spacing:-0.663000px;}
.ws65{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.ws2a{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.ws131{word-spacing:-0.561000px;}
.ws41{word-spacing:-0.540000px;}
.ws109{word-spacing:-0.510000px;}
.ws4d{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.360000px;}
.ws11b{word-spacing:-0.357000px;}
.wsfc{word-spacing:-0.327859px;}
.ws7c{word-spacing:-0.307343px;}
.ws13{word-spacing:-0.300000px;}
.ws7d{word-spacing:-0.283702px;}
.ws108{word-spacing:-0.264000px;}
.ws11d{word-spacing:-0.255000px;}
.ws12{word-spacing:-0.240000px;}
.wsb8{word-spacing:-0.194208px;}
.wsa1{word-spacing:-0.192435px;}
.wsf7{word-spacing:-0.191331px;}
.ws79{word-spacing:-0.189173px;}
.ws7a{word-spacing:-0.189134px;}
.ws4a{word-spacing:-0.180000px;}
.wsfe{word-spacing:-0.178063px;}
.ws7f{word-spacing:-0.165493px;}
.wsf4{word-spacing:-0.163998px;}
.ws9c{word-spacing:-0.157010px;}
.wsb9{word-spacing:-0.155366px;}
.ws9e{word-spacing:-0.153948px;}
.ws7b{word-spacing:-0.141851px;}
.ws100{word-spacing:-0.133547px;}
.ws3c{word-spacing:-0.120000px;}
.ws7e{word-spacing:-0.118209px;}
.wsdc{word-spacing:-0.114850px;}
.wsf3{word-spacing:-0.109332px;}
.wsba{word-spacing:-0.102000px;}
.ws9a{word-spacing:-0.094567px;}
.wsd8{word-spacing:-0.093674px;}
.wsfb{word-spacing:-0.090707px;}
.wsff{word-spacing:-0.089032px;}
.ws86{word-spacing:-0.087019px;}
.wsb6{word-spacing:-0.077683px;}
.wsa0{word-spacing:-0.076974px;}
.wsd9{word-spacing:-0.070256px;}
.ws2c{word-spacing:-0.060000px;}
.ws9d{word-spacing:-0.058013px;}
.wsdb{word-spacing:-0.057425px;}
.wsf9{word-spacing:-0.054666px;}
.ws134{word-spacing:-0.051000px;}
.ws101{word-spacing:-0.044516px;}
.wsa2{word-spacing:-0.039615px;}
.wsb5{word-spacing:-0.038842px;}
.ws9f{word-spacing:-0.038487px;}
.wsb4{word-spacing:-0.035063px;}
.wsfa{word-spacing:-0.030248px;}
.wsf5{word-spacing:-0.027333px;}
.ws9b{word-spacing:-0.026164px;}
.wsda{word-spacing:-0.025916px;}
.ws8{word-spacing:0.000000px;}
.wsfd{word-spacing:0.027322px;}
.wsd7{word-spacing:0.046837px;}
.ws99{word-spacing:0.047284px;}
.ws123{word-spacing:0.051000px;}
.ws1d{word-spacing:0.060000px;}
.wsf8{word-spacing:0.081999px;}
.wsa3{word-spacing:0.087739px;}
.ws102{word-spacing:0.089032px;}
.ws12f{word-spacing:0.102000px;}
.wsf6{word-spacing:0.109332px;}
.ws51{word-spacing:0.120000px;}
.ws72{word-spacing:0.180000px;}
.wsf2{word-spacing:0.191331px;}
.ws121{word-spacing:0.204000px;}
.wsc{word-spacing:0.240000px;}
.ws2e{word-spacing:0.300000px;}
.ws11{word-spacing:0.360000px;}
.wsd{word-spacing:0.420000px;}
.wsb7{word-spacing:0.427258px;}
.ws1b{word-spacing:0.480000px;}
.ws56{word-spacing:0.540000px;}
.ws130{word-spacing:0.561000px;}
.ws46{word-spacing:0.600000px;}
.ws124{word-spacing:0.612000px;}
.wscc{word-spacing:0.660000px;}
.ws1c{word-spacing:0.720000px;}
.ws36{word-spacing:0.780000px;}
.ws129{word-spacing:0.816000px;}
.ws38{word-spacing:0.840000px;}
.ws52{word-spacing:0.900000px;}
.wsbc{word-spacing:0.960000px;}
.ws103{word-spacing:0.969000px;}
.ws37{word-spacing:1.020000px;}
.ws12a{word-spacing:1.071000px;}
.ws57{word-spacing:1.080000px;}
.ws12e{word-spacing:1.122000px;}
.ws40{word-spacing:1.140000px;}
.ws10b{word-spacing:1.173000px;}
.ws5e{word-spacing:1.200000px;}
.wsbb{word-spacing:1.224000px;}
.ws104{word-spacing:1.275000px;}
.wsbd{word-spacing:1.320000px;}
.ws105{word-spacing:1.377000px;}
.ws3b{word-spacing:1.380000px;}
.ws126{word-spacing:1.428000px;}
.wscb{word-spacing:1.440000px;}
.ws122{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws107{word-spacing:1.530000px;}
.wsa{word-spacing:1.560000px;}
.wsc2{word-spacing:1.620000px;}
.ws48{word-spacing:1.680000px;}
.wsc7{word-spacing:1.683000px;}
.ws21{word-spacing:1.740000px;}
.ws118{word-spacing:1.785000px;}
.ws30{word-spacing:1.800000px;}
.ws6a{word-spacing:1.860000px;}
.ws113{word-spacing:1.887000px;}
.ws20{word-spacing:1.920000px;}
.ws111{word-spacing:1.938000px;}
.ws49{word-spacing:1.980000px;}
.ws125{word-spacing:1.989000px;}
.ws18{word-spacing:2.040000px;}
.ws3a{word-spacing:2.100000px;}
.ws128{word-spacing:2.142000px;}
.ws3f{word-spacing:2.160000px;}
.ws11e{word-spacing:2.193000px;}
.ws4e{word-spacing:2.280000px;}
.wsc6{word-spacing:2.295000px;}
.ws44{word-spacing:2.340000px;}
.ws120{word-spacing:2.346000px;}
.ws132{word-spacing:2.397000px;}
.ws53{word-spacing:2.400000px;}
.ws74{word-spacing:2.460000px;}
.ws11c{word-spacing:2.499000px;}
.ws35{word-spacing:2.520000px;}
.wsc4{word-spacing:2.550000px;}
.ws47{word-spacing:2.580000px;}
.ws58{word-spacing:2.640000px;}
.ws114{word-spacing:2.652000px;}
.ws59{word-spacing:2.700000px;}
.ws127{word-spacing:2.703000px;}
.ws112{word-spacing:2.805000px;}
.ws42{word-spacing:2.820000px;}
.ws32{word-spacing:2.880000px;}
.ws110{word-spacing:2.907000px;}
.ws23{word-spacing:2.940000px;}
.ws2b{word-spacing:3.000000px;}
.ws3d{word-spacing:3.060000px;}
.ws75{word-spacing:3.120000px;}
.ws5d{word-spacing:3.180000px;}
.ws33{word-spacing:3.300000px;}
.ws55{word-spacing:3.360000px;}
.ws12c{word-spacing:3.417000px;}
.ws1a{word-spacing:3.420000px;}
.ws11f{word-spacing:3.468000px;}
.ws14{word-spacing:3.540000px;}
.ws63{word-spacing:3.600000px;}
.ws1f{word-spacing:3.720000px;}
.ws68{word-spacing:3.780000px;}
.wsca{word-spacing:3.840000px;}
.wsc3{word-spacing:3.900000px;}
.ws2f{word-spacing:4.020000px;}
.ws116{word-spacing:4.131000px;}
.wsc0{word-spacing:4.140000px;}
.ws95{word-spacing:4.200000px;}
.ws97{word-spacing:4.320000px;}
.ws4f{word-spacing:4.380000px;}
.ws31{word-spacing:4.440000px;}
.wsbe{word-spacing:4.500000px;}
.ws22{word-spacing:4.680000px;}
.ws66{word-spacing:4.740000px;}
.wsbf{word-spacing:4.800000px;}
.ws76{word-spacing:4.860000px;}
.ws2d{word-spacing:5.040000px;}
.ws11a{word-spacing:5.100000px;}
.ws98{word-spacing:5.220000px;}
.ws64{word-spacing:5.340000px;}
.ws73{word-spacing:5.400000px;}
.ws117{word-spacing:5.406000px;}
.ws45{word-spacing:5.640000px;}
.ws133{word-spacing:5.865000px;}
.wsc8{word-spacing:5.916000px;}
.ws81{word-spacing:6.069955px;}
.ws84{word-spacing:6.236376px;}
.ws85{word-spacing:6.410414px;}
.ws62{word-spacing:6.420000px;}
.wsc5{word-spacing:6.528000px;}
.ws15{word-spacing:6.600000px;}
.ws80{word-spacing:6.619391px;}
.ws82{word-spacing:6.699110px;}
.ws83{word-spacing:6.803784px;}
.ws69{word-spacing:7.200000px;}
.ws16{word-spacing:7.920000px;}
.ws135{word-spacing:13.515000px;}
.ws136{word-spacing:17.595000px;}
.ws10{word-spacing:21.456000px;}
.wsb3{word-spacing:32.538000px;}
.ws26{word-spacing:72.267000px;}
.wsb2{word-spacing:109.038000px;}
.ws8b{word-spacing:542.971363px;}
._4{margin-left:-16.575000px;}
._a{margin-left:-14.256000px;}
._10{margin-left:-11.400000px;}
._35{margin-left:-5.838069px;}
._3{margin-left:-4.830069px;}
._1{margin-left:-3.465600px;}
._0{margin-left:-1.632000px;}
._2{width:1.482069px;}
._9{width:3.042000px;}
._b{width:4.080000px;}
._3a{width:5.759993px;}
._12{width:10.740000px;}
._f{width:12.005400px;}
._14{width:14.536800px;}
._15{width:15.606000px;}
._5{width:18.360000px;}
._d{width:21.456000px;}
._11{width:29.994000px;}
._e{width:33.000000px;}
._13{width:36.000000px;}
._c{width:41.310000px;}
._26{width:45.288000px;}
._6{width:54.621000px;}
._1d{width:83.538000px;}
._3e{width:84.711000px;}
._39{width:85.731000px;}
._2c{width:96.288000px;}
._8{width:98.226000px;}
._19{width:107.610000px;}
._1c{width:121.788000px;}
._18{width:124.593000px;}
._32{width:147.288000px;}
._33{width:172.788000px;}
._24{width:187.527000px;}
._20{width:198.288000px;}
._21{width:223.788000px;}
._1b{width:225.777000px;}
._29{width:236.538000px;}
._34{width:239.292000px;}
._1a{width:249.186000px;}
._2b{width:264.027000px;}
._31{width:289.527000px;}
._17{width:290.955000px;}
._1f{width:340.527000px;}
._38{width:343.434000px;}
._2e{width:357.612000px;}
._3c{width:367.913988px;}
._28{width:378.777000px;}
._2f{width:383.316000px;}
._1e{width:389.688600px;}
._2d{width:391.629000px;}
._27{width:545.904000px;}
._30{width:549.015000px;}
._22{width:557.328000px;}
._16{width:588.468557px;}
._2a{width:590.781600px;}
._25{width:621.993600px;}
._23{width:779.637000px;}
._37{width:1039.329000px;}
._3b{width:1087.014000px;}
._3d{width:1099.610991px;}
._36{width:1135.158000px;}
._7{width:1696.412981px;}
.fc3{color:rgb(104,128,55);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:23.406600px;}
.fs1d{font-size:23.418600px;}
.fsc{font-size:23.641800px;}
.fsb{font-size:23.646599px;}
.fs1f{font-size:25.903200px;}
.fs1e{font-size:25.916399px;}
.fsd{font-size:26.163600px;}
.fse{font-size:26.168400px;}
.fs21{font-size:27.321599px;}
.fs22{font-size:27.333000px;}
.fs20{font-size:28.712400px;}
.fsf{font-size:29.006400px;}
.fs24{font-size:30.235800px;}
.fs23{font-size:30.248400px;}
.fs10{font-size:31.375199px;}
.fs11{font-size:31.393799px;}
.fs18{font-size:31.664400px;}
.fs12{font-size:34.722000px;}
.fs1a{font-size:35.041800px;}
.fs19{font-size:35.062800px;}
.fs8{font-size:35.699999px;}
.fs14{font-size:35.762999px;}
.fsa{font-size:35.823600px;}
.fs13{font-size:38.487000px;}
.fs1b{font-size:38.841600px;}
.fs16{font-size:39.577800px;}
.fs15{font-size:39.615000px;}
.fs6{font-size:42.000000px;}
.fs17{font-size:43.869600px;}
.fs25{font-size:44.515800px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y37a{bottom:1.985710px;}
.y166{bottom:2.006379px;}
.y3ae{bottom:2.319397px;}
.y174{bottom:2.659790px;}
.y198{bottom:2.685425px;}
.y189{bottom:3.032089px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y188{bottom:105.327896px;}
.y34{bottom:112.938300px;}
.y1eb{bottom:112.962300px;}
.y6a{bottom:113.415344px;}
.y142{bottom:114.253802px;}
.y102{bottom:114.735260px;}
.yd0{bottom:114.735294px;}
.y3d5{bottom:116.512641px;}
.y20b{bottom:116.973300px;}
.y470{bottom:116.993844px;}
.y1c6{bottom:117.797241px;}
.y130{bottom:118.032303px;}
.y3ed{bottom:120.126141px;}
.y360{bottom:123.924454px;}
.y1ea{bottom:127.956300px;}
.y9d{bottom:129.915344px;}
.y2e{bottom:130.711349px;}
.y1e4{bottom:131.424591px;}
.y3d4{bottom:131.506641px;}
.y42e{bottom:131.605361px;}
.y46f{bottom:131.987844px;}
.y69{bottom:132.165344px;}
.y141{bottom:133.003802px;}
.y33{bottom:133.032303px;}
.y113{bottom:133.314308px;}
.y101{bottom:133.485260px;}
.ycf{bottom:133.485294px;}
.y2ed{bottom:133.624809px;}
.y3ec{bottom:135.120141px;}
.y20a{bottom:135.723300px;}
.y1c5{bottom:136.547241px;}
.y1e9{bottom:142.950300px;}
.y3d3{bottom:146.500641px;}
.y42d{bottom:146.599361px;}
.y46e{bottom:146.981844px;}
.y9c{bottom:148.665344px;}
.y2d{bottom:149.461349px;}
.y3eb{bottom:150.114141px;}
.y233{bottom:150.172806px;}
.y1e3{bottom:150.174591px;}
.y32{bottom:150.485553px;}
.y68{bottom:150.915344px;}
.y140{bottom:151.753802px;}
.y112{bottom:152.064308px;}
.y100{bottom:152.235260px;}
.yce{bottom:152.235294px;}
.y2ec{bottom:152.374809px;}
.y23e{bottom:152.377806px;}
.y209{bottom:154.473300px;}
.y1c0{bottom:155.297241px;}
.y1e8{bottom:157.944300px;}
.y3d2{bottom:161.494641px;}
.y42c{bottom:161.593361px;}
.y46d{bottom:161.975844px;}
.y3ea{bottom:165.108141px;}
.y37d{bottom:166.374149px;}
.y9b{bottom:167.415344px;}
.y2c{bottom:168.211349px;}
.y232{bottom:168.922806px;}
.y1e2{bottom:168.924591px;}
.y67{bottom:169.665344px;}
.y13f{bottom:170.503802px;}
.y31{bottom:170.579556px;}
.y111{bottom:170.814308px;}
.yff{bottom:170.985260px;}
.y2a8{bottom:171.124809px;}
.y23d{bottom:171.127806px;}
.y1e7{bottom:172.938300px;}
.y228{bottom:173.223290px;}
.y1bf{bottom:174.047241px;}
.y1ed{bottom:174.120300px;}
.y3d1{bottom:176.488641px;}
.y42b{bottom:176.587361px;}
.y46c{bottom:176.969844px;}
.y3e9{bottom:180.102141px;}
.y9a{bottom:186.165344px;}
.y2b{bottom:186.961349px;}
.y231{bottom:187.672806px;}
.y1e1{bottom:187.674591px;}
.y66{bottom:188.415344px;}
.y13e{bottom:189.253802px;}
.y137{bottom:189.388802px;}
.y110{bottom:189.564308px;}
.yfe{bottom:189.735260px;}
.ycd{bottom:189.735294px;}
.y2a7{bottom:189.874809px;}
.y23c{bottom:189.877806px;}
.y3d0{bottom:191.482641px;}
.y42a{bottom:191.581361px;}
.y46b{bottom:191.963844px;}
.y227{bottom:191.973290px;}
.y208{bottom:191.973300px;}
.y1be{bottom:192.797241px;}
.y1e6{bottom:193.032303px;}
.y3e8{bottom:195.096141px;}
.y30{bottom:195.580059px;}
.y187{bottom:200.043274px;}
.y35f{bottom:201.448494px;}
.y99{bottom:204.915344px;}
.y2a{bottom:205.711349px;}
.y230{bottom:206.422806px;}
.y1e0{bottom:206.424591px;}
.y3cf{bottom:206.476641px;}
.y429{bottom:206.575361px;}
.y46a{bottom:206.957844px;}
.y65{bottom:207.165344px;}
.y13d{bottom:208.003802px;}
.y136{bottom:208.138802px;}
.y10f{bottom:208.314308px;}
.yfd{bottom:208.485260px;}
.y2a6{bottom:208.624809px;}
.y23b{bottom:208.627806px;}
.y3e7{bottom:210.090141px;}
.y2f{bottom:210.574059px;}
.y226{bottom:210.723300px;}
.y371{bottom:211.462177px;}
.y1bd{bottom:211.547241px;}
.y378{bottom:212.094155px;}
.y366{bottom:212.117562px;}
.y36e{bottom:212.445254px;}
.y368{bottom:212.772947px;}
.y370{bottom:213.088936px;}
.y36c{bottom:213.410776px;}
.y362{bottom:213.416628px;}
.y364{bottom:213.744320px;}
.y374{bottom:214.048606px;}
.y36a{bottom:214.388002px;}
.y377{bottom:215.019980px;}
.y365{bottom:215.043387px;}
.y376{bottom:215.347673px;}
.y36d{bottom:215.371079px;}
.y367{bottom:215.698772px;}
.y36f{bottom:216.014761px;}
.y36b{bottom:216.336601px;}
.y361{bottom:216.342453px;}
.y363{bottom:216.670145px;}
.y373{bottom:216.980283px;}
.y372{bottom:216.986135px;}
.y369{bottom:217.319679px;}
.y375{bottom:218.273498px;}
.y3ce{bottom:221.470641px;}
.y428{bottom:221.569361px;}
.y469{bottom:221.951844px;}
.y98{bottom:223.665344px;}
.y29{bottom:224.461349px;}
.y3e6{bottom:225.084141px;}
.y22f{bottom:225.172806px;}
.y1df{bottom:225.174591px;}
.y64{bottom:225.915344px;}
.y13c{bottom:226.753802px;}
.y135{bottom:226.888802px;}
.y10e{bottom:227.064308px;}
.yfc{bottom:227.235260px;}
.yfb{bottom:227.235306px;}
.y2a5{bottom:227.374809px;}
.y23a{bottom:227.377806px;}
.y225{bottom:229.473300px;}
.y207{bottom:229.473312px;}
.y1c4{bottom:230.297241px;}
.y359{bottom:231.639153px;}
.y3cd{bottom:236.464641px;}
.y427{bottom:236.563361px;}
.y468{bottom:236.945844px;}
.y3e5{bottom:240.078141px;}
.y97{bottom:242.415344px;}
.y28{bottom:243.211349px;}
.y22e{bottom:243.922806px;}
.y1dc{bottom:243.924591px;}
.y63{bottom:244.665344px;}
.y37b{bottom:245.332489px;}
.y13b{bottom:245.503802px;}
.y134{bottom:245.638802px;}
.y10d{bottom:245.814308px;}
.ycc{bottom:245.985260px;}
.y2a4{bottom:246.124809px;}
.y239{bottom:246.127806px;}
.y35a{bottom:247.263058px;}
.y224{bottom:248.223300px;}
.y206{bottom:248.223312px;}
.y1bc{bottom:249.047241px;}
.y3cc{bottom:251.458641px;}
.y426{bottom:251.557361px;}
.y467{bottom:251.939844px;}
.y3e4{bottom:255.072141px;}
.y379{bottom:259.426506px;}
.y96{bottom:261.165344px;}
.y26{bottom:261.961349px;}
.y22d{bottom:262.672806px;}
.y1db{bottom:262.674591px;}
.y35b{bottom:262.886964px;}
.y62{bottom:263.415344px;}
.y13a{bottom:264.253802px;}
.y133{bottom:264.388802px;}
.y10c{bottom:264.564308px;}
.ycb{bottom:264.735260px;}
.yfa{bottom:264.735306px;}
.y2a3{bottom:264.874809px;}
.y238{bottom:264.877806px;}
.y3cb{bottom:266.452641px;}
.y425{bottom:266.551361px;}
.y466{bottom:266.933844px;}
.y223{bottom:266.973300px;}
.y205{bottom:266.973312px;}
.y1c3{bottom:267.797241px;}
.y3e3{bottom:270.066141px;}
.y35c{bottom:278.510869px;}
.y95{bottom:279.915344px;}
.y25{bottom:280.711349px;}
.y22c{bottom:281.422806px;}
.y1da{bottom:281.424591px;}
.y3ca{bottom:281.446641px;}
.y424{bottom:281.545361px;}
.y465{bottom:281.927844px;}
.y61{bottom:282.165344px;}
.y139{bottom:283.003802px;}
.y132{bottom:283.138802px;}
.y10b{bottom:283.314308px;}
.yca{bottom:283.485260px;}
.yf9{bottom:283.485306px;}
.y2a2{bottom:283.624809px;}
.y237{bottom:283.627806px;}
.y3e2{bottom:285.060141px;}
.y222{bottom:285.723300px;}
.y204{bottom:285.723312px;}
.y1c2{bottom:286.547241px;}
.y1bb{bottom:286.553241px;}
.y35d{bottom:294.134775px;}
.y423{bottom:296.539361px;}
.y464{bottom:296.921844px;}
.y94{bottom:298.665344px;}
.y24{bottom:299.461349px;}
.y3e1{bottom:300.054141px;}
.y22b{bottom:300.172806px;}
.y1d9{bottom:300.174591px;}
.y60{bottom:300.915344px;}
.y138{bottom:301.753802px;}
.y131{bottom:301.888802px;}
.y10a{bottom:302.064308px;}
.yc9{bottom:302.235260px;}
.yf8{bottom:302.235306px;}
.y2a1{bottom:302.374809px;}
.y236{bottom:302.377806px;}
.y221{bottom:304.473300px;}
.y203{bottom:304.473312px;}
.y1ba{bottom:305.297241px;}
.y35e{bottom:309.758680px;}
.y422{bottom:311.533361px;}
.y463{bottom:311.915844px;}
.y37c{bottom:314.578491px;}
.y3e0{bottom:315.048141px;}
.y93{bottom:317.415344px;}
.y23{bottom:318.211349px;}
.y1d8{bottom:318.924591px;}
.y3c9{bottom:318.931641px;}
.y5f{bottom:319.665344px;}
.y109{bottom:320.814308px;}
.yc8{bottom:320.985260px;}
.yf7{bottom:320.985306px;}
.y2a0{bottom:321.124809px;}
.y235{bottom:321.127806px;}
.y220{bottom:323.223300px;}
.y202{bottom:323.223312px;}
.y1c1{bottom:324.047241px;}
.y421{bottom:326.527361px;}
.y462{bottom:326.909844px;}
.y3df{bottom:330.042141px;}
.y92{bottom:336.165344px;}
.y22{bottom:336.961349px;}
.y22a{bottom:337.672806px;}
.y1d7{bottom:337.674591px;}
.y5e{bottom:338.415344px;}
.y108{bottom:339.564308px;}
.yc7{bottom:339.735260px;}
.yf6{bottom:339.735306px;}
.y29f{bottom:339.874809px;}
.y234{bottom:339.877806px;}
.y420{bottom:341.521361px;}
.y461{bottom:341.903844px;}
.y21f{bottom:341.973300px;}
.y201{bottom:341.973312px;}
.y1b9{bottom:342.797241px;}
.y3de{bottom:345.036141px;}
.y186{bottom:347.820007px;}
.y3c8{bottom:348.931641px;}
.y91{bottom:354.915344px;}
.y21{bottom:355.711349px;}
.y1d6{bottom:356.424591px;}
.y41f{bottom:356.515361px;}
.y460{bottom:356.897844px;}
.y5d{bottom:357.165344px;}
.y11a{bottom:358.314308px;}
.yc6{bottom:358.485260px;}
.yf5{bottom:358.485306px;}
.y3dd{bottom:360.030141px;}
.y21e{bottom:360.723300px;}
.y200{bottom:360.723312px;}
.y1b8{bottom:361.547241px;}
.y41e{bottom:371.509361px;}
.y45f{bottom:371.891844px;}
.y90{bottom:373.665344px;}
.y20{bottom:374.461349px;}
.y3dc{bottom:375.024141px;}
.y1d5{bottom:375.174591px;}
.y5c{bottom:375.915344px;}
.y107{bottom:377.064308px;}
.yc5{bottom:377.235260px;}
.yf4{bottom:377.235306px;}
.y21d{bottom:379.473300px;}
.y1ff{bottom:379.473312px;}
.y1b7{bottom:380.297241px;}
.y3c7{bottom:382.705810px;}
.y41d{bottom:386.503361px;}
.y45e{bottom:386.885844px;}
.y3db{bottom:390.018141px;}
.y8f{bottom:392.415344px;}
.y1f{bottom:393.211349px;}
.y1de{bottom:393.924591px;}
.y5b{bottom:394.665344px;}
.y119{bottom:395.814308px;}
.yc4{bottom:395.985260px;}
.yf3{bottom:395.985306px;}
.y3c6{bottom:397.699810px;}
.y21c{bottom:398.223300px;}
.y1fe{bottom:398.223312px;}
.y1b6{bottom:399.047241px;}
.y2e5{bottom:401.395517px;}
.y352{bottom:401.421011px;}
.y2ea{bottom:401.421015px;}
.y322{bottom:401.433759px;}
.y17f{bottom:401.445465px;}
.y297{bottom:401.446503px;}
.y357{bottom:401.446509px;}
.y327{bottom:401.459257px;}
.y29c{bottom:401.472001px;}
.y41c{bottom:401.497361px;}
.y45d{bottom:401.879844px;}
.y3da{bottom:405.012141px;}
.y8e{bottom:411.165344px;}
.y1e{bottom:411.961349px;}
.y1d4{bottom:412.674591px;}
.y5a{bottom:413.415344px;}
.y118{bottom:414.564308px;}
.yc3{bottom:414.735260px;}
.yf2{bottom:414.735306px;}
.y2e4{bottom:416.389517px;}
.y351{bottom:416.415011px;}
.y2e9{bottom:416.415015px;}
.y321{bottom:416.427759px;}
.y296{bottom:416.440503px;}
.y356{bottom:416.440509px;}
.y326{bottom:416.453257px;}
.y29b{bottom:416.466001px;}
.y41b{bottom:416.491361px;}
.y45c{bottom:416.873844px;}
.y21b{bottom:416.973300px;}
.y1fd{bottom:416.973312px;}
.y1b5{bottom:417.797241px;}
.y3d9{bottom:420.006141px;}
.y180{bottom:422.366819px;}
.y3c5{bottom:427.700560px;}
.y8d{bottom:429.915344px;}
.y1d{bottom:430.711349px;}
.y2e3{bottom:431.383517px;}
.y350{bottom:431.409011px;}
.y2e8{bottom:431.409015px;}
.y320{bottom:431.421759px;}
.y1dd{bottom:431.424591px;}
.y295{bottom:431.434503px;}
.y355{bottom:431.434509px;}
.y325{bottom:431.447257px;}
.y29a{bottom:431.460001px;}
.y41a{bottom:431.485361px;}
.y45b{bottom:431.867844px;}
.y59{bottom:432.165344px;}
.y106{bottom:433.314285px;}
.y117{bottom:433.314308px;}
.yc2{bottom:433.485260px;}
.yf1{bottom:433.485306px;}
.y3d8{bottom:435.000141px;}
.y21a{bottom:435.723300px;}
.y1fc{bottom:435.723312px;}
.y3c4{bottom:442.694560px;}
.y181{bottom:443.279233px;}
.y2e2{bottom:446.377517px;}
.y34f{bottom:446.403011px;}
.y2e7{bottom:446.403015px;}
.y31f{bottom:446.415759px;}
.y294{bottom:446.428503px;}
.y354{bottom:446.428509px;}
.y324{bottom:446.441257px;}
.y299{bottom:446.454001px;}
.y329{bottom:446.466755px;}
.y419{bottom:446.479361px;}
.y29e{bottom:446.479499px;}
.y45a{bottom:446.861844px;}
.y8c{bottom:448.665344px;}
.y1c{bottom:449.461349px;}
.y3d7{bottom:449.994141px;}
.y1d3{bottom:450.174591px;}
.y58{bottom:450.915344px;}
.y105{bottom:452.064285px;}
.y116{bottom:452.064308px;}
.yc1{bottom:452.235260px;}
.yf0{bottom:452.235306px;}
.y219{bottom:454.473300px;}
.y1fb{bottom:454.473312px;}
.y3c3{bottom:457.688560px;}
.y2e1{bottom:461.371517px;}
.y34e{bottom:461.397011px;}
.y2e6{bottom:461.397015px;}
.y31e{bottom:461.409759px;}
.y293{bottom:461.422503px;}
.y353{bottom:461.422509px;}
.y2eb{bottom:461.422513px;}
.y323{bottom:461.435257px;}
.y298{bottom:461.448001px;}
.y358{bottom:461.448007px;}
.y328{bottom:461.460755px;}
.y418{bottom:461.473361px;}
.y29d{bottom:461.473499px;}
.y459{bottom:461.855844px;}
.y182{bottom:464.200587px;}
.y8b{bottom:467.415344px;}
.y1b{bottom:468.211349px;}
.y1d2{bottom:468.924591px;}
.y57{bottom:469.665344px;}
.y104{bottom:470.814285px;}
.y115{bottom:470.814308px;}
.yc0{bottom:470.985260px;}
.yef{bottom:470.985306px;}
.y3c2{bottom:472.682560px;}
.y218{bottom:473.223300px;}
.y1fa{bottom:473.223312px;}
.y1a5{bottom:476.190769px;}
.y417{bottom:476.467361px;}
.y458{bottom:476.849844px;}
.y2d9{bottom:480.126768px;}
.y346{bottom:480.152262px;}
.y2de{bottom:480.152266px;}
.y316{bottom:480.165010px;}
.y28c{bottom:480.177757px;}
.y34b{bottom:480.177760px;}
.y31b{bottom:480.190508px;}
.y291{bottom:480.203255px;}
.y3d6{bottom:483.744141px;}
.y183{bottom:485.113000px;}
.y8a{bottom:486.165344px;}
.y1a{bottom:486.961349px;}
.y1d1{bottom:487.674591px;}
.y3c1{bottom:487.676560px;}
.y56{bottom:488.415344px;}
.y103{bottom:489.564285px;}
.y114{bottom:489.564308px;}
.ybf{bottom:489.735260px;}
.yee{bottom:489.735306px;}
.y416{bottom:491.461361px;}
.y457{bottom:491.843844px;}
.y217{bottom:491.973300px;}
.y1f9{bottom:491.973312px;}
.y2d8{bottom:495.120768px;}
.y345{bottom:495.146262px;}
.y2dd{bottom:495.146266px;}
.y315{bottom:495.159010px;}
.y28b{bottom:495.171757px;}
.y34a{bottom:495.171760px;}
.y31a{bottom:495.184508px;}
.y290{bottom:495.197255px;}
.y1a4{bottom:496.284760px;}
.y17e{bottom:500.751441px;}
.y89{bottom:504.915344px;}
.y19{bottom:505.711349px;}
.y184{bottom:506.034354px;}
.y1d0{bottom:506.424591px;}
.y415{bottom:506.455361px;}
.y456{bottom:506.837844px;}
.y55{bottom:507.165344px;}
.ybe{bottom:508.485260px;}
.yed{bottom:508.485306px;}
.y2d7{bottom:510.114768px;}
.y344{bottom:510.140262px;}
.y2dc{bottom:510.140266px;}
.y314{bottom:510.153010px;}
.y28a{bottom:510.165757px;}
.y349{bottom:510.165760px;}
.y319{bottom:510.178508px;}
.y28f{bottom:510.191255px;}
.y216{bottom:510.723300px;}
.y1f8{bottom:510.723312px;}
.y17d{bottom:515.745441px;}
.y18b{bottom:519.442877px;}
.y1b4{bottom:519.916520px;}
.y414{bottom:521.449361px;}
.y497{bottom:521.449544px;}
.y455{bottom:521.831844px;}
.y88{bottom:523.665344px;}
.y27{bottom:524.461349px;}
.y2d6{bottom:525.108768px;}
.y343{bottom:525.134262px;}
.y2db{bottom:525.134266px;}
.y313{bottom:525.147010px;}
.y289{bottom:525.159757px;}
.y348{bottom:525.159760px;}
.y2e0{bottom:525.159764px;}
.y318{bottom:525.172508px;}
.y1cf{bottom:525.174591px;}
.y28e{bottom:525.185255px;}
.y34d{bottom:525.185258px;}
.y31d{bottom:525.198006px;}
.y54{bottom:525.915344px;}
.y185{bottom:526.946768px;}
.ybd{bottom:527.235260px;}
.yec{bottom:527.235306px;}
.y215{bottom:529.473300px;}
.y1f7{bottom:529.473312px;}
.y17c{bottom:530.739441px;}
.y18a{bottom:531.956680px;}
.y413{bottom:536.443361px;}
.y496{bottom:536.443544px;}
.y454{bottom:536.825844px;}
.y1b3{bottom:538.710020px;}
.y2d5{bottom:540.102768px;}
.y342{bottom:540.128262px;}
.y2da{bottom:540.128266px;}
.y312{bottom:540.141010px;}
.y288{bottom:540.153757px;}
.y347{bottom:540.153760px;}
.y2df{bottom:540.153764px;}
.y317{bottom:540.166508px;}
.y28d{bottom:540.179255px;}
.y34c{bottom:540.179258px;}
.y31c{bottom:540.192006px;}
.y292{bottom:540.204753px;}
.y87{bottom:542.415344px;}
.y18{bottom:543.211349px;}
.y1ce{bottom:543.924591px;}
.y53{bottom:544.665344px;}
.y17b{bottom:545.733441px;}
.ybc{bottom:545.985260px;}
.yeb{bottom:545.985306px;}
.y214{bottom:548.223300px;}
.y1f6{bottom:548.223312px;}
.y412{bottom:551.437361px;}
.y495{bottom:551.437544px;}
.y453{bottom:551.819844px;}
.y1b2{bottom:557.427020px;}
.y2ce{bottom:558.794269px;}
.y33a{bottom:558.807016px;}
.y30a{bottom:558.819763px;}
.y2d3{bottom:558.819767px;}
.y33f{bottom:558.832514px;}
.y281{bottom:558.845258px;}
.y30f{bottom:558.845261px;}
.y286{bottom:558.870756px;}
.y86{bottom:561.165344px;}
.y3c0{bottom:561.664810px;}
.y1cd{bottom:562.674591px;}
.y127{bottom:563.333916px;}
.y52{bottom:563.415344px;}
.ybb{bottom:564.735260px;}
.yea{bottom:564.735306px;}
.y411{bottom:566.431361px;}
.y494{bottom:566.431544px;}
.y452{bottom:566.813844px;}
.y213{bottom:566.973300px;}
.y1f5{bottom:566.973312px;}
.y2cd{bottom:573.788269px;}
.y339{bottom:573.801016px;}
.y309{bottom:573.813763px;}
.y2d2{bottom:573.813767px;}
.y33e{bottom:573.826514px;}
.y280{bottom:573.839258px;}
.y30e{bottom:573.839261px;}
.y285{bottom:573.864756px;}
.y126{bottom:574.098907px;}
.y1b1{bottom:576.144020px;}
.y85{bottom:579.915344px;}
.y1cc{bottom:581.424591px;}
.y410{bottom:581.425361px;}
.y493{bottom:581.425544px;}
.y451{bottom:581.807844px;}
.y51{bottom:582.165344px;}
.yba{bottom:583.485260px;}
.ye9{bottom:583.485306px;}
.y212{bottom:585.723300px;}
.y1f4{bottom:585.723312px;}
.y2cc{bottom:588.782269px;}
.y338{bottom:588.795016px;}
.y308{bottom:588.807763px;}
.y2d1{bottom:588.807767px;}
.y33d{bottom:588.820514px;}
.y27f{bottom:588.833258px;}
.y30d{bottom:588.833261px;}
.y284{bottom:588.858756px;}
.y1b0{bottom:594.861020px;}
.y12d{bottom:596.035981px;}
.y40f{bottom:596.419361px;}
.y492{bottom:596.419544px;}
.y450{bottom:596.801844px;}
.y17a{bottom:597.217941px;}
.y84{bottom:598.665344px;}
.y17{bottom:599.461395px;}
.y1cb{bottom:600.174591px;}
.y50{bottom:600.915344px;}
.yb9{bottom:602.235260px;}
.ye8{bottom:602.235306px;}
.y2cb{bottom:603.776269px;}
.y337{bottom:603.789016px;}
.y307{bottom:603.801763px;}
.y2d0{bottom:603.801767px;}
.y33c{bottom:603.814514px;}
.y27e{bottom:603.827258px;}
.y30c{bottom:603.827261px;}
.y341{bottom:603.840012px;}
.y283{bottom:603.852756px;}
.y311{bottom:603.852760px;}
.y211{bottom:604.473300px;}
.y1f3{bottom:604.473312px;}
.y12c{bottom:606.818885px;}
.y125{bottom:607.760612px;}
.y40e{bottom:611.413361px;}
.y491{bottom:611.413544px;}
.y44f{bottom:611.795844px;}
.y1af{bottom:613.578020px;}
.y83{bottom:617.415344px;}
.y12b{bottom:617.574921px;}
.y124{bottom:618.525604px;}
.y2ca{bottom:618.770269px;}
.y336{bottom:618.783016px;}
.y306{bottom:618.795763px;}
.y2cf{bottom:618.795767px;}
.y33b{bottom:618.808514px;}
.y27d{bottom:618.821258px;}
.y30b{bottom:618.821261px;}
.y2d4{bottom:618.821265px;}
.y340{bottom:618.834012px;}
.y282{bottom:618.846756px;}
.y310{bottom:618.846760px;}
.y287{bottom:618.872254px;}
.y1ca{bottom:618.924591px;}
.y4f{bottom:619.665344px;}
.yb8{bottom:620.985260px;}
.ye7{bottom:620.985306px;}
.y210{bottom:623.223300px;}
.y1f2{bottom:623.223312px;}
.y40d{bottom:626.407361px;}
.y490{bottom:626.407544px;}
.y44e{bottom:626.789844px;}
.y12f{bottom:632.201415px;}
.y173{bottom:632.293488px;}
.y1ae{bottom:632.295020px;}
.y82{bottom:636.165344px;}
.y16{bottom:636.961395px;}
.y2c3{bottom:637.461770px;}
.y32f{bottom:637.474517px;}
.y2ff{bottom:637.487264px;}
.y2c8{bottom:637.487268px;}
.y275{bottom:637.500012px;}
.y334{bottom:637.500015px;}
.y304{bottom:637.512763px;}
.y27a{bottom:637.525510px;}
.y1c9{bottom:637.674591px;}
.y4e{bottom:638.415344px;}
.yb7{bottom:639.735260px;}
.ye6{bottom:639.735306px;}
.y40c{bottom:641.401361px;}
.y48f{bottom:641.401544px;}
.y44d{bottom:641.783844px;}
.y20f{bottom:641.973300px;}
.y1f1{bottom:641.973312px;}
.y3bb{bottom:645.403327px;}
.y1ad{bottom:651.012020px;}
.y1ec{bottom:651.490814px;}
.y2c2{bottom:652.455770px;}
.y32e{bottom:652.468517px;}
.y2fe{bottom:652.481264px;}
.y2c7{bottom:652.481268px;}
.y274{bottom:652.494012px;}
.y333{bottom:652.494015px;}
.y303{bottom:652.506763px;}
.y279{bottom:652.519510px;}
.y3b3{bottom:652.815024px;}
.y12a{bottom:653.140292px;}
.y3b7{bottom:653.410355px;}
.y121{bottom:654.153449px;}
.y3b6{bottom:654.580627px;}
.y3be{bottom:654.632560px;}
.y81{bottom:654.915344px;}
.y15{bottom:655.711395px;}
.y40b{bottom:656.395361px;}
.y48e{bottom:656.395544px;}
.y1c8{bottom:656.424591px;}
.y4b4{bottom:656.523062px;}
.y44c{bottom:656.777844px;}
.y4d{bottom:657.165344px;}
.yb6{bottom:658.485260px;}
.y20e{bottom:660.723300px;}
.y1f0{bottom:660.723312px;}
.y3bd{bottom:662.189117px;}
.y3b8{bottom:663.404152px;}
.y129{bottom:663.905284px;}
.y3b2{bottom:663.999619px;}
.y120{bottom:664.936352px;}
.y2c1{bottom:667.449770px;}
.y32d{bottom:667.462517px;}
.y2fd{bottom:667.475264px;}
.y2c6{bottom:667.475268px;}
.y273{bottom:667.488012px;}
.y332{bottom:667.488015px;}
.y302{bottom:667.500763px;}
.y278{bottom:667.513510px;}
.y1ac{bottom:669.729020px;}
.y3b5{bottom:670.995758px;}
.y40a{bottom:671.389361px;}
.y48d{bottom:671.389544px;}
.y3ba{bottom:671.411682px;}
.y4b3{bottom:671.517062px;}
.y44b{bottom:671.771844px;}
.y80{bottom:673.665344px;}
.y14{bottom:674.461395px;}
.y128{bottom:674.697144px;}
.y1c7{bottom:675.174591px;}
.y11f{bottom:675.683432px;}
.y4c{bottom:675.915344px;}
.yb5{bottom:677.235260px;}
.ye5{bottom:677.235306px;}
.y16a{bottom:679.339966px;}
.y20d{bottom:679.473300px;}
.y1ef{bottom:679.473312px;}
.y2c0{bottom:682.443770px;}
.y32c{bottom:682.456517px;}
.y2fc{bottom:682.469264px;}
.y2c5{bottom:682.469268px;}
.y272{bottom:682.482012px;}
.y331{bottom:682.482015px;}
.y301{bottom:682.494763px;}
.y277{bottom:682.507510px;}
.y27c{bottom:682.533008px;}
.y409{bottom:686.383361px;}
.y48c{bottom:686.383544px;}
.y11e{bottom:686.439468px;}
.y44a{bottom:686.765844px;}
.y1ab{bottom:688.446020px;}
.y12e{bottom:689.322144px;}
.y7f{bottom:692.415344px;}
.y13{bottom:693.211395px;}
.y4b{bottom:694.665344px;}
.yb4{bottom:695.985260px;}
.ye4{bottom:695.985306px;}
.y2bf{bottom:697.437770px;}
.y32b{bottom:697.450517px;}
.y2fb{bottom:697.463264px;}
.y2c4{bottom:697.463268px;}
.y271{bottom:697.476012px;}
.y330{bottom:697.476015px;}
.y300{bottom:697.488763px;}
.y2c9{bottom:697.488766px;}
.y276{bottom:697.501510px;}
.y335{bottom:697.501513px;}
.y305{bottom:697.514261px;}
.y27b{bottom:697.527008px;}
.y16b{bottom:697.686614px;}
.y20c{bottom:698.223300px;}
.y1ee{bottom:698.223312px;}
.y408{bottom:701.377361px;}
.y48b{bottom:701.377544px;}
.y4b2{bottom:701.607060px;}
.y449{bottom:701.759844px;}
.y1aa{bottom:707.163020px;}
.y7e{bottom:711.165344px;}
.y12{bottom:711.961395px;}
.y4a{bottom:713.415344px;}
.yb3{bottom:714.735260px;}
.ye3{bottom:714.735306px;}
.y16c{bottom:716.041105px;}
.y2b8{bottom:716.129271px;}
.y2f2{bottom:716.142018px;}
.y269{bottom:716.154765px;}
.y2bd{bottom:716.154769px;}
.y2f7{bottom:716.167516px;}
.y26e{bottom:716.180264px;}
.y407{bottom:716.371361px;}
.y48a{bottom:716.371544px;}
.y4b1{bottom:716.601060px;}
.y448{bottom:716.753844px;}
.y11d{bottom:718.552068px;}
.y123{bottom:722.029013px;}
.y1e5{bottom:725.070602px;}
.y1a9{bottom:725.871029px;}
.y172{bottom:726.788086px;}
.y7d{bottom:729.915344px;}
.y11{bottom:730.711395px;}
.y2b7{bottom:731.123271px;}
.y2f1{bottom:731.136018px;}
.y268{bottom:731.148765px;}
.y2bc{bottom:731.148769px;}
.y2f6{bottom:731.161516px;}
.y26d{bottom:731.174264px;}
.y406{bottom:731.365361px;}
.y489{bottom:731.365544px;}
.y4b0{bottom:731.595060px;}
.y3b4{bottom:731.619117px;}
.y3bc{bottom:731.619303px;}
.y3b9{bottom:731.624615px;}
.y3bf{bottom:731.633765px;}
.y447{bottom:731.747844px;}
.y49{bottom:732.165344px;}
.y122{bottom:732.776093px;}
.yb2{bottom:733.485260px;}
.y11c{bottom:733.546068px;}
.y16d{bottom:734.387753px;}
.y1a8{bottom:744.588029px;}
.y2b6{bottom:746.117271px;}
.y2f0{bottom:746.130018px;}
.y267{bottom:746.142765px;}
.y2bb{bottom:746.142769px;}
.y2f5{bottom:746.155516px;}
.y26c{bottom:746.168264px;}
.y2fa{bottom:746.181014px;}
.y405{bottom:746.359361px;}
.y488{bottom:746.359544px;}
.y4af{bottom:746.589060px;}
.y446{bottom:746.741844px;}
.y7c{bottom:748.665344px;}
.y10{bottom:749.461395px;}
.y229{bottom:749.590805px;}
.y48{bottom:750.915344px;}
.yb1{bottom:752.235260px;}
.ye2{bottom:752.235306px;}
.y16e{bottom:752.742245px;}
.y2b5{bottom:761.111271px;}
.y2ef{bottom:761.124018px;}
.y266{bottom:761.136765px;}
.y2ba{bottom:761.136769px;}
.y2f4{bottom:761.149516px;}
.y26b{bottom:761.162264px;}
.y2f9{bottom:761.175014px;}
.y270{bottom:761.187762px;}
.y404{bottom:761.353361px;}
.y487{bottom:761.353544px;}
.y4ae{bottom:761.583060px;}
.y445{bottom:761.735844px;}
.y177{bottom:765.864113px;}
.y7b{bottom:767.415344px;}
.yf{bottom:768.211395px;}
.y47{bottom:769.665344px;}
.yb0{bottom:770.985260px;}
.y16f{bottom:771.088892px;}
.y1a7{bottom:772.676279px;}
.y1a3{bottom:772.936050px;}
.y2b4{bottom:776.105271px;}
.y2ee{bottom:776.118018px;}
.y265{bottom:776.130765px;}
.y2b9{bottom:776.130769px;}
.y2f3{bottom:776.143516px;}
.y26a{bottom:776.156264px;}
.y2be{bottom:776.156267px;}
.y2f8{bottom:776.169014px;}
.y26f{bottom:776.181762px;}
.y403{bottom:776.347361px;}
.y486{bottom:776.347544px;}
.y4ad{bottom:776.577060px;}
.y444{bottom:776.729844px;}
.y11b{bottom:784.150818px;}
.y176{bottom:785.472511px;}
.y7a{bottom:786.165344px;}
.ye{bottom:786.961395px;}
.y1a2{bottom:787.930050px;}
.y46{bottom:788.415344px;}
.y3b1{bottom:788.721405px;}
.y170{bottom:789.435540px;}
.yaf{bottom:789.735260px;}
.ye1{bottom:789.735294px;}
.y402{bottom:791.341361px;}
.y485{bottom:791.341544px;}
.y4ac{bottom:791.571060px;}
.y443{bottom:791.723844px;}
.y2ad{bottom:794.796772px;}
.y25d{bottom:794.809519px;}
.y2b2{bottom:794.822270px;}
.y262{bottom:794.835017px;}
.y175{bottom:796.450928px;}
.y1a6{bottom:797.092529px;}
.y1a1{bottom:802.924050px;}
.y79{bottom:804.915344px;}
.yd{bottom:805.711395px;}
.y401{bottom:806.335361px;}
.y484{bottom:806.335544px;}
.y4ab{bottom:806.565060px;}
.y442{bottom:806.717844px;}
.y45{bottom:807.165344px;}
.y171{bottom:807.782188px;}
.yae{bottom:808.485260px;}
.ye0{bottom:808.485294px;}
.y2ac{bottom:809.790772px;}
.y25c{bottom:809.803519px;}
.y2b1{bottom:809.816270px;}
.y261{bottom:809.829017px;}
.y179{bottom:813.579841px;}
.y400{bottom:821.329361px;}
.y483{bottom:821.329544px;}
.y4aa{bottom:821.559060px;}
.y441{bottom:821.711844px;}
.y78{bottom:823.665344px;}
.y3ad{bottom:823.795532px;}
.yc{bottom:824.461395px;}
.y178{bottom:824.558258px;}
.y2ab{bottom:824.784772px;}
.y25b{bottom:824.797519px;}
.y2b0{bottom:824.810270px;}
.y260{bottom:824.823017px;}
.y44{bottom:825.915344px;}
.yad{bottom:827.235260px;}
.ydf{bottom:827.235294px;}
.y39f{bottom:835.557186px;}
.y3a0{bottom:835.564017px;}
.y3a1{bottom:835.570847px;}
.y3a2{bottom:835.577678px;}
.y3a3{bottom:835.584508px;}
.y3a4{bottom:835.591338px;}
.y3ff{bottom:836.323361px;}
.y482{bottom:836.323544px;}
.y4a9{bottom:836.553060px;}
.y396{bottom:836.663708px;}
.y397{bottom:836.663710px;}
.y398{bottom:836.663711px;}
.y440{bottom:836.705844px;}
.y390{bottom:837.039380px;}
.y3ab{bottom:837.497021px;}
.y392{bottom:837.804385px;}
.y388{bottom:838.152732px;}
.y389{bottom:838.159563px;}
.y38a{bottom:838.166395px;}
.y38b{bottom:838.173226px;}
.y38c{bottom:838.180057px;}
.y394{bottom:838.562559px;}
.y39c{bottom:838.583054px;}
.y3a6{bottom:838.624037px;}
.y38e{bottom:838.938231px;}
.y39d{bottom:838.958726px;}
.y39e{bottom:838.965556px;}
.y2aa{bottom:839.778772px;}
.y25a{bottom:839.791519px;}
.y2af{bottom:839.804270px;}
.y25f{bottom:839.817017px;}
.y264{bottom:839.842515px;}
.y395{bottom:840.072078px;}
.y3a8{bottom:840.133555px;}
.y38f{bottom:840.454580px;}
.y3a9{bottom:840.898560px;}
.y3aa{bottom:840.905390px;}
.y391{bottom:841.219585px;}
.y387{bottom:841.567932px;}
.y393{bottom:841.977759px;}
.y399{bottom:841.977762px;}
.y39a{bottom:841.984593px;}
.y39b{bottom:841.991423px;}
.y3a5{bottom:842.039237px;}
.y38d{bottom:842.353431px;}
.y77{bottom:842.415344px;}
.yb{bottom:843.211395px;}
.y3a7{bottom:843.555585px;}
.y43{bottom:844.665344px;}
.yac{bottom:845.985260px;}
.yde{bottom:845.985294px;}
.y3fe{bottom:851.317361px;}
.y481{bottom:851.317544px;}
.y4a8{bottom:851.547060px;}
.y43f{bottom:851.699844px;}
.y1a0{bottom:852.204620px;}
.y2a9{bottom:854.772772px;}
.y259{bottom:854.785519px;}
.y2ae{bottom:854.798270px;}
.y25e{bottom:854.811017px;}
.y2b3{bottom:854.823768px;}
.y263{bottom:854.836515px;}
.y37e{bottom:859.986420px;}
.y76{bottom:861.165344px;}
.ya{bottom:861.961395px;}
.y42{bottom:863.415344px;}
.yab{bottom:864.735260px;}
.ydd{bottom:864.735294px;}
.y3fd{bottom:866.311361px;}
.y480{bottom:866.311544px;}
.y4a7{bottom:866.541060px;}
.y43e{bottom:866.693844px;}
.y251{bottom:873.464273px;}
.y256{bottom:873.489771px;}
.y169{bottom:877.883423px;}
.y75{bottom:879.915344px;}
.y3fc{bottom:881.305361px;}
.y47f{bottom:881.305544px;}
.y4a6{bottom:881.535060px;}
.y43d{bottom:881.687844px;}
.y41{bottom:882.165344px;}
.yaa{bottom:883.485260px;}
.ydc{bottom:883.485294px;}
.y37f{bottom:886.269798px;}
.y197{bottom:887.280029px;}
.y250{bottom:888.458273px;}
.y255{bottom:888.483771px;}
.y3fb{bottom:896.299361px;}
.y47e{bottom:896.299544px;}
.y4a5{bottom:896.529060px;}
.y43c{bottom:896.681844px;}
.y74{bottom:898.665344px;}
.y40{bottom:900.915344px;}
.ya9{bottom:902.235260px;}
.ydb{bottom:902.235294px;}
.y24f{bottom:903.452273px;}
.y254{bottom:903.477771px;}
.y9{bottom:906.144153px;}
.y3fa{bottom:911.293361px;}
.y47d{bottom:911.293544px;}
.y4a4{bottom:911.523060px;}
.y43b{bottom:911.675844px;}
.y380{bottom:912.553176px;}
.y165{bottom:912.957000px;}
.y73{bottom:917.415344px;}
.y24e{bottom:918.446273px;}
.y253{bottom:918.471771px;}
.y258{bottom:918.497269px;}
.y3f{bottom:919.665344px;}
.ya8{bottom:920.985260px;}
.yda{bottom:920.985294px;}
.y8{bottom:921.138153px;}
.y15d{bottom:923.103667px;}
.y14f{bottom:923.736214px;}
.y163{bottom:923.753949px;}
.y157{bottom:924.079090px;}
.y151{bottom:924.404230px;}
.y15b{bottom:924.747106px;}
.y14b{bottom:925.048600px;}
.y155{bottom:925.054512px;}
.y14d{bottom:925.379653px;}
.y15f{bottom:925.728440px;}
.y153{bottom:926.041757px;}
.y15c{bottom:926.059492px;}
.y3f9{bottom:926.287361px;}
.y47c{bottom:926.287544px;}
.y4a3{bottom:926.517060px;}
.y43a{bottom:926.669844px;}
.y14e{bottom:926.692039px;}
.y162{bottom:926.709774px;}
.y156{bottom:927.034914px;}
.y161{bottom:927.040826px;}
.y150{bottom:927.360055px;}
.y158{bottom:927.691108px;}
.y159{bottom:927.697019px;}
.y15a{bottom:927.702931px;}
.y14a{bottom:928.004425px;}
.y154{bottom:928.010337px;}
.y14c{bottom:928.335477px;}
.y15e{bottom:928.684265px;}
.y152{bottom:928.997582px;}
.y160{bottom:929.996651px;}
.y24d{bottom:933.440273px;}
.y252{bottom:933.465771px;}
.y257{bottom:933.491269px;}
.y18c{bottom:934.759918px;}
.y72{bottom:936.165344px;}
.y3e{bottom:938.415344px;}
.y381{bottom:938.836554px;}
.ya7{bottom:939.735260px;}
.yd9{bottom:939.735294px;}
.y3f8{bottom:941.281361px;}
.y47b{bottom:941.281544px;}
.y4a2{bottom:941.511060px;}
.y439{bottom:941.663844px;}
.y143{bottom:943.458710px;}
.y18d{bottom:949.167220px;}
.y246{bottom:952.131774px;}
.y24b{bottom:952.157272px;}
.y71{bottom:954.915344px;}
.y3f7{bottom:956.275361px;}
.y47a{bottom:956.275544px;}
.y4a1{bottom:956.505060px;}
.y438{bottom:956.657844px;}
.y3d{bottom:957.165344px;}
.ya6{bottom:958.485260px;}
.yd8{bottom:958.485294px;}
.y3b0{bottom:961.066223px;}
.y3ac{bottom:961.856506px;}
.y18e{bottom:963.566606px;}
.y7{bottom:963.738190px;}
.y144{bottom:964.545565px;}
.y382{bottom:965.119933px;}
.y245{bottom:967.125774px;}
.y24a{bottom:967.151272px;}
.y3f6{bottom:971.269361px;}
.y479{bottom:971.269544px;}
.y4a0{bottom:971.499060px;}
.y437{bottom:971.651844px;}
.y3af{bottom:973.107880px;}
.y70{bottom:973.665344px;}
.y167{bottom:974.534546px;}
.y3c{bottom:975.915344px;}
.ya5{bottom:977.235260px;}
.yd7{bottom:977.235294px;}
.y18f{bottom:977.973908px;}
.y196{bottom:980.537109px;}
.y244{bottom:982.119774px;}
.y249{bottom:982.145272px;}
.y145{bottom:985.632420px;}
.y3f5{bottom:986.263361px;}
.y478{bottom:986.263544px;}
.y49f{bottom:986.493060px;}
.y436{bottom:986.645844px;}
.y383{bottom:991.403311px;}
.y190{bottom:992.373294px;}
.y6f{bottom:992.415344px;}
.y3b{bottom:994.665344px;}
.ya4{bottom:995.985260px;}
.yd6{bottom:995.985294px;}
.y243{bottom:997.113774px;}
.y248{bottom:997.139272px;}
.y164{bottom:997.758179px;}
.y3f4{bottom:1001.257361px;}
.y477{bottom:1001.257544px;}
.y49e{bottom:1001.487060px;}
.y435{bottom:1001.639844px;}
.y146{bottom:1006.719274px;}
.y191{bottom:1006.780596px;}
.y6{bottom:1008.424622px;}
.y6e{bottom:1011.165344px;}
.y242{bottom:1012.107774px;}
.y247{bottom:1012.133272px;}
.y24c{bottom:1012.158770px;}
.y3a{bottom:1013.415344px;}
.ya3{bottom:1014.735260px;}
.yd5{bottom:1014.735294px;}
.y3f3{bottom:1016.251361px;}
.y476{bottom:1016.251544px;}
.y49d{bottom:1016.481060px;}
.y434{bottom:1016.633844px;}
.y384{bottom:1017.686689px;}
.y19c{bottom:1018.177924px;}
.y192{bottom:1021.179982px;}
.y147{bottom:1027.806129px;}
.y19b{bottom:1029.364305px;}
.y6d{bottom:1029.915344px;}
.y3f2{bottom:1031.245361px;}
.y475{bottom:1031.245544px;}
.y49c{bottom:1031.475060px;}
.y433{bottom:1031.627844px;}
.y39{bottom:1032.165344px;}
.ya2{bottom:1033.485260px;}
.yd4{bottom:1033.485294px;}
.y193{bottom:1035.587284px;}
.y241{bottom:1040.196024px;}
.y19a{bottom:1040.443871px;}
.y385{bottom:1043.970067px;}
.y3f1{bottom:1046.239361px;}
.y474{bottom:1046.239544px;}
.y49b{bottom:1046.469060px;}
.y432{bottom:1046.621844px;}
.y6c{bottom:1048.665344px;}
.y148{bottom:1048.892984px;}
.y194{bottom:1049.994586px;}
.y38{bottom:1050.915344px;}
.y199{bottom:1051.523437px;}
.ya1{bottom:1052.235260px;}
.yd3{bottom:1052.235294px;}
.y3f0{bottom:1061.233361px;}
.y473{bottom:1061.233544px;}
.y49a{bottom:1061.463060px;}
.y431{bottom:1061.615844px;}
.y195{bottom:1064.401888px;}
.y240{bottom:1064.612274px;}
.y19f{bottom:1065.042039px;}
.y37{bottom:1069.665344px;}
.y149{bottom:1069.979839px;}
.y386{bottom:1070.246614px;}
.ya0{bottom:1070.985260px;}
.yd2{bottom:1070.985294px;}
.y19e{bottom:1076.121605px;}
.y5{bottom:1076.132080px;}
.y3ef{bottom:1076.227361px;}
.y472{bottom:1076.227544px;}
.y499{bottom:1076.457060px;}
.y430{bottom:1076.609844px;}
.y6b{bottom:1086.165344px;}
.y19d{bottom:1087.201172px;}
.y36{bottom:1088.415344px;}
.y9f{bottom:1089.735260px;}
.yd1{bottom:1089.735294px;}
.y32a{bottom:1090.099361px;}
.y23f{bottom:1090.102844px;}
.y168{bottom:1090.302612px;}
.y3ee{bottom:1091.221361px;}
.y471{bottom:1091.221544px;}
.y498{bottom:1091.451060px;}
.y42f{bottom:1091.603844px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y35{bottom:1127.482361px;}
.y9e{bottom:1127.482544px;}
.h2b{height:16.267587px;}
.h2d{height:16.275927px;}
.h15{height:16.431051px;}
.h14{height:16.434387px;}
.h2f{height:18.002724px;}
.h2e{height:18.011897px;}
.h16{height:18.183702px;}
.h18{height:18.187038px;}
.h31{height:18.988511px;}
.h32{height:18.996435px;}
.h30{height:19.467007px;}
.h19{height:19.666339px;}
.h35{height:21.013881px;}
.h33{height:21.022638px;}
.h1a{height:21.805764px;}
.h1b{height:21.818690px;}
.h24{height:22.006758px;}
.h1d{height:24.131790px;}
.h12{height:24.288401px;}
.h27{height:24.354051px;}
.h25{height:24.368646px;}
.h1f{height:24.855284px;}
.h11{height:24.897402px;}
.h13{height:25.076520px;}
.h1e{height:26.748465px;}
.h28{height:26.994912px;}
.h22{height:27.506571px;}
.h21{height:27.532425px;}
.h23{height:30.489372px;}
.h36{height:30.938481px;}
.hc{height:33.129599px;}
.h2{height:42.048000px;}
.h4{height:44.676000px;}
.hb{height:47.328000px;}
.hf{height:53.160000px;}
.h29{height:53.565526px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h9{height:55.680000px;}
.hd{height:59.004000px;}
.h8{height:59.340000px;}
.he{height:61.380000px;}
.h2a{height:62.975958px;}
.h10{height:62.976000px;}
.h7{height:64.866000px;}
.ha{height:71.208000px;}
.h6{height:85.056000px;}
.h2c{height:128.787003px;}
.h17{height:186.708000px;}
.h1c{height:204.560989px;}
.h20{height:207.475502px;}
.h26{height:212.386505px;}
.h34{height:274.897499px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w3{width:539.998489px;}
.w2{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7e{left:8.229286px;}
.x7d{left:13.340080px;}
.x3{left:76.535402px;}
.x9{left:78.746400px;}
.x4{left:85.181849px;}
.x6e{left:86.223450px;}
.x75{left:87.309603px;}
.x13{left:89.596579px;}
.x74{left:91.622406px;}
.x5{left:93.545400px;}
.x73{left:95.546631px;}
.x82{left:96.554098px;}
.x8{left:97.796100px;}
.x103{left:102.048152px;}
.x12{left:104.372704px;}
.x88{left:105.971402px;}
.x72{left:107.319305px;}
.x81{left:108.435448px;}
.x90{left:112.524609px;}
.x14{left:115.318050px;}
.x91{left:120.276165px;}
.x15{left:122.954351px;}
.x92{left:128.027722px;}
.x16{left:130.590653px;}
.x93{left:135.779279px;}
.x17{left:138.226954px;}
.x94{left:143.530835px;}
.x18{left:145.863256px;}
.x95{left:151.288246px;}
.x19{left:153.499557px;}
.x96{left:159.039803px;}
.x1a{left:161.135858px;}
.x97{left:166.791360px;}
.x1b{left:168.772160px;}
.x98{left:174.542916px;}
.x1c{left:176.408461px;}
.xca{left:181.179896px;}
.x99{left:182.294473px;}
.x1d{left:184.044763px;}
.xcb{left:188.757970px;}
.x9a{left:190.046029px;}
.x1e{left:191.681064px;}
.xcc{left:196.336044px;}
.x9b{left:197.797586px;}
.x1f{left:199.317365px;}
.xcd{left:203.914118px;}
.x9c{left:205.549143px;}
.x20{left:206.953667px;}
.xce{left:211.492193px;}
.x9d{left:213.300699px;}
.x21{left:214.589968px;}
.xcf{left:219.070267px;}
.x9e{left:221.052256px;}
.x22{left:222.226270px;}
.xd0{left:226.648341px;}
.x9f{left:228.803812px;}
.x23{left:229.862571px;}
.xfd{left:231.252382px;}
.xd1{left:234.226415px;}
.x24{left:237.498872px;}
.xd2{left:241.804490px;}
.x25{left:245.135174px;}
.xd3{left:249.382564px;}
.x26{left:252.771475px;}
.x8d{left:254.283899px;}
.xd4{left:256.960638px;}
.xc8{left:259.184257px;}
.x27{left:260.407777px;}
.x6f{left:262.849800px;}
.xd5{left:264.538712px;}
.x8a{left:265.622401px;}
.x28{left:268.044078px;}
.xd6{left:272.116787px;}
.x29{left:275.680379px;}
.xb{left:279.641556px;}
.x2a{left:283.316681px;}
.xd7{left:287.272935px;}
.x7c{left:289.719227px;}
.x2b{left:290.952982px;}
.xd8{left:294.851009px;}
.x2c{left:298.589284px;}
.xd{left:300.812454px;}
.xd9{left:302.429084px;}
.x2d{left:306.225585px;}
.xda{left:310.007158px;}
.x7b{left:312.092102px;}
.x2e{left:313.861886px;}
.xdb{left:317.585232px;}
.x2f{left:321.498188px;}
.xc{left:325.088997px;}
.x30{left:329.134489px;}
.xdc{left:332.741381px;}
.x31{left:336.770791px;}
.xdd{left:340.319455px;}
.x32{left:344.407092px;}
.xde{left:347.897529px;}
.x33{left:352.043393px;}
.x76{left:354.915281px;}
.x78{left:358.508646px;}
.x34{left:359.679695px;}
.xdf{left:363.053678px;}
.x35{left:367.315996px;}
.xa0{left:368.343541px;}
.xe0{left:370.631752px;}
.xc7{left:372.860258px;}
.x77{left:373.893311px;}
.x36{left:374.952298px;}
.xa1{left:376.095097px;}
.xe1{left:378.209826px;}
.x37{left:382.588599px;}
.xa2{left:383.846654px;}
.xe2{left:385.787900px;}
.x38{left:390.224900px;}
.xa3{left:391.598210px;}
.xe3{left:393.365975px;}
.xfe{left:395.380440px;}
.x39{left:397.861202px;}
.xa4{left:399.355622px;}
.xe4{left:400.944049px;}
.x3a{left:405.497503px;}
.xa5{left:407.107178px;}
.xe5{left:408.522123px;}
.x3b{left:413.133805px;}
.xa6{left:414.858735px;}
.x8e{left:416.048097px;}
.x8f{left:419.345398px;}
.x3c{left:420.770106px;}
.xa7{left:422.610291px;}
.x80{left:424.370546px;}
.x3d{left:428.406407px;}
.x8b{left:430.887900px;}
.x3e{left:436.042709px;}
.x83{left:437.763485px;}
.xe6{left:438.834420px;}
.x8c{left:439.889407px;}
.x3f{left:443.684921px;}
.x7f{left:445.732956px;}
.xc9{left:449.030228px;}
.x40{left:451.321222px;}
.x70{left:453.522308px;}
.x6{left:459.215387px;}
.xa8{left:461.373929px;}
.x41{left:466.599735px;}
.xa9{left:469.125486px;}
.x42{left:474.236037px;}
.x7{left:476.210386px;}
.x43{left:481.872338px;}
.xaa{left:484.628599px;}
.xe{left:490.393066px;}
.x84{left:491.737255px;}
.x44{left:497.150851px;}
.xf{left:499.357816px;}
.x87{left:502.443283px;}
.x45{left:504.787153px;}
.xab{left:507.883269px;}
.x46{left:512.423454px;}
.xe7{left:514.615163px;}
.xac{left:515.634825px;}
.xff{left:518.052358px;}
.x47{left:520.059756px;}
.xe8{left:522.193237px;}
.xad{left:523.386382px;}
.x48{left:527.696057px;}
.xe9{left:529.771311px;}
.xae{left:531.137938px;}
.x49{left:535.332358px;}
.xea{left:537.349385px;}
.xaf{left:538.895350px;}
.x4a{left:542.968660px;}
.xeb{left:544.927460px;}
.xb0{left:546.646906px;}
.x4b{left:550.604961px;}
.xec{left:552.505534px;}
.xb1{left:554.398463px;}
.x4c{left:558.241263px;}
.xed{left:560.083608px;}
.xb2{left:562.150020px;}
.x4d{left:565.877564px;}
.xee{left:567.661682px;}
.xb3{left:569.901576px;}
.x4e{left:573.513865px;}
.xef{left:575.239757px;}
.xb4{left:577.653133px;}
.x4f{left:581.150167px;}
.xf0{left:582.817831px;}
.xb5{left:585.404689px;}
.x50{left:588.786468px;}
.xf1{left:590.395905px;}
.xb6{left:593.156246px;}
.x51{left:596.422770px;}
.xf2{left:597.973979px;}
.xb7{left:600.907803px;}
.x52{left:604.059071px;}
.xf3{left:605.552054px;}
.xb8{left:608.659359px;}
.x53{left:611.701283px;}
.xf4{left:613.130128px;}
.xb9{left:616.410916px;}
.x54{left:619.337584px;}
.xf5{left:620.708202px;}
.xba{left:624.162472px;}
.x55{left:626.979796px;}
.xf6{left:628.286276px;}
.xbb{left:631.914029px;}
.x79{left:633.294517px;}
.x56{left:634.616097px;}
.xf7{left:635.864351px;}
.x71{left:639.265778px;}
.x57{left:642.252399px;}
.xf8{left:643.442425px;}
.xbc{left:647.417142px;}
.x58{left:649.888700px;}
.xf9{left:651.020499px;}
.x85{left:653.602798px;}
.xbd{left:655.168699px;}
.x101{left:656.445443px;}
.x59{left:657.530912px;}
.xfa{left:658.598573px;}
.xbe{left:662.926110px;}
.x5a{left:665.167214px;}
.xfb{left:666.169814px;}
.xbf{left:670.677667px;}
.x5b{left:672.803515px;}
.x102{left:675.357772px;}
.xc0{left:678.429223px;}
.x5c{left:680.439816px;}
.xc1{left:686.180780px;}
.x5d{left:688.082028px;}
.x10{left:692.587189px;}
.xc2{left:693.932336px;}
.x5e{left:695.718330px;}
.x89{left:701.629669px;}
.x5f{left:703.354631px;}
.xa{left:707.685745px;}
.xc3{left:709.435450px;}
.x60{left:710.990932px;}
.x100{left:714.016800px;}
.x86{left:715.281558px;}
.xc4{left:717.187006px;}
.x61{left:718.627234px;}
.x11{left:721.077164px;}
.xc5{left:724.938563px;}
.x62{left:726.263535px;}
.x1{left:728.220612px;}
.xc6{left:732.690119px;}
.x63{left:733.899837px;}
.x7a{left:740.366409px;}
.x64{left:741.536138px;}
.xfc{left:744.159760px;}
.x65{left:749.172439px;}
.x2{left:755.489868px;}
.x66{left:756.808741px;}
.x67{left:764.445042px;}
.x68{left:772.081344px;}
.x69{left:779.717645px;}
.x6a{left:787.353946px;}
.x6b{left:794.990248px;}
.x6c{left:802.626549px;}
.x6d{left:810.262851px;}
@media print{
.v3{vertical-align:-30.684379pt;}
.v2{vertical-align:-18.133341pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.165268pt;}
.v1{vertical-align:21.333333pt;}
.lsc0{letter-spacing:-3.363416pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.800000pt;}
.lsbf{letter-spacing:-0.672683pt;}
.ls79{letter-spacing:-0.586940pt;}
.ls3a{letter-spacing:-0.586667pt;}
.ls6a{letter-spacing:-0.506938pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls7b{letter-spacing:-0.448836pt;}
.ls37{letter-spacing:-0.426667pt;}
.ls7a{letter-spacing:-0.379785pt;}
.ls65{letter-spacing:-0.376317pt;}
.ls3f{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.320000pt;}
.lsc5{letter-spacing:-0.317333pt;}
.lsc3{letter-spacing:-0.272000pt;}
.lsba{letter-spacing:-0.267145pt;}
.ls32{letter-spacing:-0.266667pt;}
.lsc7{letter-spacing:-0.226667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls6c{letter-spacing:-0.194976pt;}
.lsc6{letter-spacing:-0.181333pt;}
.ls63{letter-spacing:-0.171053pt;}
.lsb1{letter-spacing:-0.170072pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls60{letter-spacing:-0.111622pt;}
.ls19{letter-spacing:-0.106667pt;}
.lsb4{letter-spacing:-0.097184pt;}
.lsd9{letter-spacing:-0.090667pt;}
.lsc2{letter-spacing:-0.079139pt;}
.ls6b{letter-spacing:-0.077990pt;}
.lsb5{letter-spacing:-0.072888pt;}
.ls94{letter-spacing:-0.069110pt;}
.ls7c{letter-spacing:-0.069052pt;}
.ls1a{letter-spacing:-0.053333pt;}
.lsb2{letter-spacing:-0.048592pt;}
.lsd7{letter-spacing:-0.045333pt;}
.ls56{letter-spacing:-0.042030pt;}
.ls8f{letter-spacing:-0.041633pt;}
.ls68{letter-spacing:-0.035213pt;}
.ls7d{letter-spacing:-0.034526pt;}
.ls64{letter-spacing:-0.034211pt;}
.ls77{letter-spacing:-0.031167pt;}
.lsb9{letter-spacing:-0.026887pt;}
.lsbc{letter-spacing:-0.024286pt;}
.ls5d{letter-spacing:-0.023257pt;}
.ls17{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls89{letter-spacing:0.023037pt;}
.ls5b{letter-spacing:0.023257pt;}
.ls99{letter-spacing:0.024296pt;}
.ls9c{letter-spacing:0.026876pt;}
.lsb7{letter-spacing:0.026887pt;}
.ls75{letter-spacing:0.031167pt;}
.ls4d{letter-spacing:0.034211pt;}
.ls6e{letter-spacing:0.034526pt;}
.ls66{letter-spacing:0.035213pt;}
.lsa0{letter-spacing:0.039570pt;}
.lsa5{letter-spacing:0.045333pt;}
.ls8a{letter-spacing:0.046074pt;}
.lsb6{letter-spacing:0.048592pt;}
.ls95{letter-spacing:0.051044pt;}
.ls5f{letter-spacing:0.051567pt;}
.ls8{letter-spacing:0.053333pt;}
.ls4b{letter-spacing:0.055811pt;}
.ls93{letter-spacing:0.062450pt;}
.lsd4{letter-spacing:0.068000pt;}
.ls4e{letter-spacing:0.068421pt;}
.ls6f{letter-spacing:0.069052pt;}
.ls53{letter-spacing:0.070361pt;}
.ls9b{letter-spacing:0.072888pt;}
.ls48{letter-spacing:0.077350pt;}
.ls69{letter-spacing:0.077990pt;}
.lsbe{letter-spacing:0.079139pt;}
.ls9d{letter-spacing:0.080629pt;}
.ls8e{letter-spacing:0.083266pt;}
.ls4a{letter-spacing:0.083717pt;}
.ls58{letter-spacing:0.084060pt;}
.lsa8{letter-spacing:0.090667pt;}
.ls61{letter-spacing:0.092592pt;}
.ls46{letter-spacing:0.093043pt;}
.ls9f{letter-spacing:0.097143pt;}
.ls98{letter-spacing:0.097184pt;}
.ls8b{letter-spacing:0.102089pt;}
.ls51{letter-spacing:0.102632pt;}
.ls47{letter-spacing:0.103134pt;}
.ls72{letter-spacing:0.103578pt;}
.ls55{letter-spacing:0.105075pt;}
.lsa{letter-spacing:0.106667pt;}
.lsc1{letter-spacing:0.118709pt;}
.ls97{letter-spacing:0.121480pt;}
.ls78{letter-spacing:0.124593pt;}
.ls92{letter-spacing:0.124899pt;}
.ls5a{letter-spacing:0.126090pt;}
.ls7f{letter-spacing:0.133333pt;}
.lsad{letter-spacing:0.136000pt;}
.ls4c{letter-spacing:0.136843pt;}
.ls70{letter-spacing:0.138103pt;}
.ls5c{letter-spacing:0.139539pt;}
.ls5e{letter-spacing:0.139565pt;}
.ls8c{letter-spacing:0.145641pt;}
.ls8d{letter-spacing:0.145716pt;}
.lsb3{letter-spacing:0.145776pt;}
.ls54{letter-spacing:0.147105pt;}
.ls45{letter-spacing:0.147134pt;}
.lsbd{letter-spacing:0.158278pt;}
.ls15{letter-spacing:0.158926pt;}
.ls9{letter-spacing:0.160000pt;}
.ls9e{letter-spacing:0.161258pt;}
.lsb8{letter-spacing:0.161325pt;}
.ls96{letter-spacing:0.170001pt;}
.lsaf{letter-spacing:0.170072pt;}
.ls50{letter-spacing:0.171053pt;}
.ls71{letter-spacing:0.172629pt;}
.lsa4{letter-spacing:0.181333pt;}
.ls28{letter-spacing:0.186667pt;}
.ls76{letter-spacing:0.187002pt;}
.ls49{letter-spacing:0.195223pt;}
.ls6d{letter-spacing:0.197023pt;}
.lscd{letter-spacing:0.204000pt;}
.ls67{letter-spacing:0.211280pt;}
.ls2{letter-spacing:0.213333pt;}
.ls9a{letter-spacing:0.218664pt;}
.ls52{letter-spacing:0.222525pt;}
.ls16{letter-spacing:0.226667pt;}
.ls91{letter-spacing:0.228982pt;}
.ls59{letter-spacing:0.231164pt;}
.lsa3{letter-spacing:0.234667pt;}
.ls4f{letter-spacing:0.239475pt;}
.lsd6{letter-spacing:0.249333pt;}
.ls90{letter-spacing:0.249798pt;}
.ls57{letter-spacing:0.252179pt;}
.lsa9{letter-spacing:0.256000pt;}
.ls74{letter-spacing:0.260274pt;}
.ls4{letter-spacing:0.266667pt;}
.lsb0{letter-spacing:0.267256pt;}
.lsa1{letter-spacing:0.272000pt;}
.lsbb{letter-spacing:0.291430pt;}
.ls87{letter-spacing:0.293333pt;}
.ls62{letter-spacing:0.307896pt;}
.ls7e{letter-spacing:0.310733pt;}
.ls40{letter-spacing:0.316846pt;}
.lsa6{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.346667pt;}
.lsa7{letter-spacing:0.362667pt;}
.ls2d{letter-spacing:0.373333pt;}
.lsd3{letter-spacing:0.385333pt;}
.ls44{letter-spacing:0.396810pt;}
.ls2b{letter-spacing:0.400000pt;}
.lsae{letter-spacing:0.408000pt;}
.ls43{letter-spacing:0.420256pt;}
.ls10{letter-spacing:0.426667pt;}
.lsd1{letter-spacing:0.430667pt;}
.ls2a{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.480000pt;}
.lsab{letter-spacing:0.498667pt;}
.ls80{letter-spacing:0.506667pt;}
.ls6{letter-spacing:0.533333pt;}
.lsaa{letter-spacing:0.544000pt;}
.ls36{letter-spacing:0.560000pt;}
.lscb{letter-spacing:0.566667pt;}
.ls13{letter-spacing:0.586667pt;}
.lsa2{letter-spacing:0.589333pt;}
.ls2e{letter-spacing:0.613333pt;}
.lsc4{letter-spacing:0.634667pt;}
.ls30{letter-spacing:0.640000pt;}
.ls84{letter-spacing:0.666667pt;}
.lsc8{letter-spacing:0.680000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls26{letter-spacing:0.720000pt;}
.lsd0{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.746667pt;}
.lsd5{letter-spacing:0.748000pt;}
.lsc9{letter-spacing:0.770667pt;}
.ls85{letter-spacing:0.773333pt;}
.lsf{letter-spacing:0.800000pt;}
.lscc{letter-spacing:0.816000pt;}
.ls35{letter-spacing:0.826667pt;}
.lsca{letter-spacing:0.838667pt;}
.ls2c{letter-spacing:0.853333pt;}
.lsac{letter-spacing:0.861333pt;}
.ls27{letter-spacing:0.906667pt;}
.lsd2{letter-spacing:0.952000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.986667pt;}
.lsb{letter-spacing:1.013333pt;}
.ls81{letter-spacing:1.037305pt;}
.ls33{letter-spacing:1.066667pt;}
.lsce{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.093333pt;}
.ls25{letter-spacing:1.120000pt;}
.lsda{letter-spacing:1.133333pt;}
.ls86{letter-spacing:1.146667pt;}
.ls22{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.253333pt;}
.lsd8{letter-spacing:1.269333pt;}
.ls23{letter-spacing:1.280000pt;}
.lscf{letter-spacing:1.314667pt;}
.ls3d{letter-spacing:1.333333pt;}
.lsdb{letter-spacing:1.360000pt;}
.ls1f{letter-spacing:1.386667pt;}
.ls11{letter-spacing:1.440000pt;}
.ls12{letter-spacing:1.493333pt;}
.ls83{letter-spacing:1.496000pt;}
.ls2f{letter-spacing:1.546667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls1d{letter-spacing:1.653333pt;}
.ls1c{letter-spacing:1.706667pt;}
.lsd{letter-spacing:1.813333pt;}
.ls34{letter-spacing:1.920000pt;}
.ls14{letter-spacing:1.973333pt;}
.ls20{letter-spacing:2.026667pt;}
.ls31{letter-spacing:2.133333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls42{letter-spacing:11.333333pt;}
.ls82{letter-spacing:12.829333pt;}
.ls73{letter-spacing:569.427165pt;}
.ws6f{word-spacing:-14.720000pt;}
.ws29{word-spacing:-14.453333pt;}
.ws28{word-spacing:-14.346667pt;}
.ws60{word-spacing:-14.320000pt;}
.ws4c{word-spacing:-14.133333pt;}
.wsc9{word-spacing:-14.080000pt;}
.wsc1{word-spacing:-13.653333pt;}
.ws6e{word-spacing:-13.600000pt;}
.ws6d{word-spacing:-13.386667pt;}
.ws61{word-spacing:-13.333333pt;}
.ws6c{word-spacing:-13.280000pt;}
.ws5f{word-spacing:-13.226667pt;}
.wsf1{word-spacing:-13.184000pt;}
.ws78{word-spacing:-13.066667pt;}
.ws71{word-spacing:-12.928000pt;}
.ws10f{word-spacing:-11.560000pt;}
.ws77{word-spacing:-11.333333pt;}
.ws5b{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws94{word-spacing:-9.553824pt;}
.ws70{word-spacing:-9.333333pt;}
.ws93{word-spacing:-9.241862pt;}
.wsee{word-spacing:-9.219717pt;}
.wsf0{word-spacing:-9.157333pt;}
.ws92{word-spacing:-9.014613pt;}
.wsb1{word-spacing:-8.942199pt;}
.ws1{word-spacing:-8.885333pt;}
.ws89{word-spacing:-8.860563pt;}
.ws91{word-spacing:-8.838547pt;}
.wsad{word-spacing:-8.804096pt;}
.wsab{word-spacing:-8.769570pt;}
.wsae{word-spacing:-8.735044pt;}
.ws8e{word-spacing:-8.723720pt;}
.wsa7{word-spacing:-8.700518pt;}
.wsac{word-spacing:-8.665993pt;}
.wsa9{word-spacing:-8.631467pt;}
.ws8a{word-spacing:-8.586877pt;}
.wsb0{word-spacing:-8.562415pt;}
.ws8c{word-spacing:-8.552667pt;}
.ws8d{word-spacing:-8.381613pt;}
.ws0{word-spacing:-8.362667pt;}
.wsaa{word-spacing:-8.251682pt;}
.wsaf{word-spacing:-8.182630pt;}
.ws8f{word-spacing:-8.176349pt;}
.ws90{word-spacing:-8.169858pt;}
.wsa8{word-spacing:-8.044527pt;}
.wsa6{word-spacing:-7.978735pt;}
.ws6{word-spacing:-7.933333pt;}
.wsa5{word-spacing:-7.822900pt;}
.ws3{word-spacing:-7.728000pt;}
.wsa4{word-spacing:-7.233556pt;}
.ws87{word-spacing:-7.167490pt;}
.wsea{word-spacing:-6.883191pt;}
.wseb{word-spacing:-6.880324pt;}
.ws88{word-spacing:-6.864777pt;}
.wse9{word-spacing:-6.748754pt;}
.wsef{word-spacing:-6.528984pt;}
.wsd5{word-spacing:-6.482622pt;}
.wsd6{word-spacing:-6.431578pt;}
.wsdf{word-spacing:-6.341256pt;}
.wse4{word-spacing:-6.292664pt;}
.wsde{word-spacing:-6.244072pt;}
.wsdd{word-spacing:-6.241468pt;}
.wse6{word-spacing:-6.219776pt;}
.wse1{word-spacing:-6.195480pt;}
.wse2{word-spacing:-6.171184pt;}
.wsec{word-spacing:-6.168610pt;}
.wse5{word-spacing:-6.146888pt;}
.wse3{word-spacing:-6.098296pt;}
.wse0{word-spacing:-6.025408pt;}
.wse8{word-spacing:-6.001112pt;}
.wse7{word-spacing:-5.976816pt;}
.wsd4{word-spacing:-5.805273pt;}
.wsed{word-spacing:-5.804322pt;}
.wsd3{word-spacing:-5.690089pt;}
.wsd0{word-spacing:-5.453932pt;}
.wsd1{word-spacing:-5.433115pt;}
.wsce{word-spacing:-5.349849pt;}
.wscd{word-spacing:-5.347108pt;}
.wsd2{word-spacing:-5.329033pt;}
.wscf{word-spacing:-5.287399pt;}
.ws50{word-spacing:-1.920000pt;}
.ws17{word-spacing:-1.813333pt;}
.ws7{word-spacing:-1.680000pt;}
.ws43{word-spacing:-1.546667pt;}
.ws1e{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws67{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.226667pt;}
.ws4b{word-spacing:-1.173333pt;}
.ws106{word-spacing:-1.133333pt;}
.ws3e{word-spacing:-1.120000pt;}
.ws34{word-spacing:-1.066667pt;}
.ws115{word-spacing:-1.042667pt;}
.ws24{word-spacing:-1.013333pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws10c{word-spacing:-0.952000pt;}
.ws96{word-spacing:-0.906667pt;}
.ws10a{word-spacing:-0.861333pt;}
.ws39{word-spacing:-0.800000pt;}
.ws119{word-spacing:-0.770667pt;}
.ws19{word-spacing:-0.746667pt;}
.ws12b{word-spacing:-0.725333pt;}
.ws5a{word-spacing:-0.693333pt;}
.ws10d{word-spacing:-0.680000pt;}
.wse{word-spacing:-0.640000pt;}
.ws10e{word-spacing:-0.634667pt;}
.ws12d{word-spacing:-0.589333pt;}
.ws65{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.ws131{word-spacing:-0.498667pt;}
.ws41{word-spacing:-0.480000pt;}
.ws109{word-spacing:-0.453333pt;}
.ws4d{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws11b{word-spacing:-0.317333pt;}
.wsfc{word-spacing:-0.291430pt;}
.ws7c{word-spacing:-0.273194pt;}
.ws13{word-spacing:-0.266667pt;}
.ws7d{word-spacing:-0.252179pt;}
.ws108{word-spacing:-0.234667pt;}
.ws11d{word-spacing:-0.226667pt;}
.ws12{word-spacing:-0.213333pt;}
.wsb8{word-spacing:-0.172629pt;}
.wsa1{word-spacing:-0.171053pt;}
.wsf7{word-spacing:-0.170072pt;}
.ws79{word-spacing:-0.168154pt;}
.ws7a{word-spacing:-0.168119pt;}
.ws4a{word-spacing:-0.160000pt;}
.wsfe{word-spacing:-0.158278pt;}
.ws7f{word-spacing:-0.147105pt;}
.wsf4{word-spacing:-0.145776pt;}
.ws9c{word-spacing:-0.139565pt;}
.wsb9{word-spacing:-0.138103pt;}
.ws9e{word-spacing:-0.136843pt;}
.ws7b{word-spacing:-0.126090pt;}
.ws100{word-spacing:-0.118709pt;}
.ws3c{word-spacing:-0.106667pt;}
.ws7e{word-spacing:-0.105075pt;}
.wsdc{word-spacing:-0.102089pt;}
.wsf3{word-spacing:-0.097184pt;}
.wsba{word-spacing:-0.090667pt;}
.ws9a{word-spacing:-0.084060pt;}
.wsd8{word-spacing:-0.083266pt;}
.wsfb{word-spacing:-0.080629pt;}
.wsff{word-spacing:-0.079139pt;}
.ws86{word-spacing:-0.077350pt;}
.wsb6{word-spacing:-0.069052pt;}
.wsa0{word-spacing:-0.068421pt;}
.wsd9{word-spacing:-0.062450pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws9d{word-spacing:-0.051567pt;}
.wsdb{word-spacing:-0.051044pt;}
.wsf9{word-spacing:-0.048592pt;}
.ws134{word-spacing:-0.045333pt;}
.ws101{word-spacing:-0.039570pt;}
.wsa2{word-spacing:-0.035213pt;}
.wsb5{word-spacing:-0.034526pt;}
.ws9f{word-spacing:-0.034211pt;}
.wsb4{word-spacing:-0.031167pt;}
.wsfa{word-spacing:-0.026887pt;}
.wsf5{word-spacing:-0.024296pt;}
.ws9b{word-spacing:-0.023257pt;}
.wsda{word-spacing:-0.023037pt;}
.ws8{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.024286pt;}
.wsd7{word-spacing:0.041633pt;}
.ws99{word-spacing:0.042030pt;}
.ws123{word-spacing:0.045333pt;}
.ws1d{word-spacing:0.053333pt;}
.wsf8{word-spacing:0.072888pt;}
.wsa3{word-spacing:0.077990pt;}
.ws102{word-spacing:0.079139pt;}
.ws12f{word-spacing:0.090667pt;}
.wsf6{word-spacing:0.097184pt;}
.ws51{word-spacing:0.106667pt;}
.ws72{word-spacing:0.160000pt;}
.wsf2{word-spacing:0.170072pt;}
.ws121{word-spacing:0.181333pt;}
.wsc{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.266667pt;}
.ws11{word-spacing:0.320000pt;}
.wsd{word-spacing:0.373333pt;}
.wsb7{word-spacing:0.379785pt;}
.ws1b{word-spacing:0.426667pt;}
.ws56{word-spacing:0.480000pt;}
.ws130{word-spacing:0.498667pt;}
.ws46{word-spacing:0.533333pt;}
.ws124{word-spacing:0.544000pt;}
.wscc{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.640000pt;}
.ws36{word-spacing:0.693333pt;}
.ws129{word-spacing:0.725333pt;}
.ws38{word-spacing:0.746667pt;}
.ws52{word-spacing:0.800000pt;}
.wsbc{word-spacing:0.853333pt;}
.ws103{word-spacing:0.861333pt;}
.ws37{word-spacing:0.906667pt;}
.ws12a{word-spacing:0.952000pt;}
.ws57{word-spacing:0.960000pt;}
.ws12e{word-spacing:0.997333pt;}
.ws40{word-spacing:1.013333pt;}
.ws10b{word-spacing:1.042667pt;}
.ws5e{word-spacing:1.066667pt;}
.wsbb{word-spacing:1.088000pt;}
.ws104{word-spacing:1.133333pt;}
.wsbd{word-spacing:1.173333pt;}
.ws105{word-spacing:1.224000pt;}
.ws3b{word-spacing:1.226667pt;}
.ws126{word-spacing:1.269333pt;}
.wscb{word-spacing:1.280000pt;}
.ws122{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws107{word-spacing:1.360000pt;}
.wsa{word-spacing:1.386667pt;}
.wsc2{word-spacing:1.440000pt;}
.ws48{word-spacing:1.493333pt;}
.wsc7{word-spacing:1.496000pt;}
.ws21{word-spacing:1.546667pt;}
.ws118{word-spacing:1.586667pt;}
.ws30{word-spacing:1.600000pt;}
.ws6a{word-spacing:1.653333pt;}
.ws113{word-spacing:1.677333pt;}
.ws20{word-spacing:1.706667pt;}
.ws111{word-spacing:1.722667pt;}
.ws49{word-spacing:1.760000pt;}
.ws125{word-spacing:1.768000pt;}
.ws18{word-spacing:1.813333pt;}
.ws3a{word-spacing:1.866667pt;}
.ws128{word-spacing:1.904000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws11e{word-spacing:1.949333pt;}
.ws4e{word-spacing:2.026667pt;}
.wsc6{word-spacing:2.040000pt;}
.ws44{word-spacing:2.080000pt;}
.ws120{word-spacing:2.085333pt;}
.ws132{word-spacing:2.130667pt;}
.ws53{word-spacing:2.133333pt;}
.ws74{word-spacing:2.186667pt;}
.ws11c{word-spacing:2.221333pt;}
.ws35{word-spacing:2.240000pt;}
.wsc4{word-spacing:2.266667pt;}
.ws47{word-spacing:2.293333pt;}
.ws58{word-spacing:2.346667pt;}
.ws114{word-spacing:2.357333pt;}
.ws59{word-spacing:2.400000pt;}
.ws127{word-spacing:2.402667pt;}
.ws112{word-spacing:2.493333pt;}
.ws42{word-spacing:2.506667pt;}
.ws32{word-spacing:2.560000pt;}
.ws110{word-spacing:2.584000pt;}
.ws23{word-spacing:2.613333pt;}
.ws2b{word-spacing:2.666667pt;}
.ws3d{word-spacing:2.720000pt;}
.ws75{word-spacing:2.773333pt;}
.ws5d{word-spacing:2.826667pt;}
.ws33{word-spacing:2.933333pt;}
.ws55{word-spacing:2.986667pt;}
.ws12c{word-spacing:3.037333pt;}
.ws1a{word-spacing:3.040000pt;}
.ws11f{word-spacing:3.082667pt;}
.ws14{word-spacing:3.146667pt;}
.ws63{word-spacing:3.200000pt;}
.ws1f{word-spacing:3.306667pt;}
.ws68{word-spacing:3.360000pt;}
.wsca{word-spacing:3.413333pt;}
.wsc3{word-spacing:3.466667pt;}
.ws2f{word-spacing:3.573333pt;}
.ws116{word-spacing:3.672000pt;}
.wsc0{word-spacing:3.680000pt;}
.ws95{word-spacing:3.733333pt;}
.ws97{word-spacing:3.840000pt;}
.ws4f{word-spacing:3.893333pt;}
.ws31{word-spacing:3.946667pt;}
.wsbe{word-spacing:4.000000pt;}
.ws22{word-spacing:4.160000pt;}
.ws66{word-spacing:4.213333pt;}
.wsbf{word-spacing:4.266667pt;}
.ws76{word-spacing:4.320000pt;}
.ws2d{word-spacing:4.480000pt;}
.ws11a{word-spacing:4.533333pt;}
.ws98{word-spacing:4.640000pt;}
.ws64{word-spacing:4.746667pt;}
.ws73{word-spacing:4.800000pt;}
.ws117{word-spacing:4.805333pt;}
.ws45{word-spacing:5.013333pt;}
.ws133{word-spacing:5.213333pt;}
.wsc8{word-spacing:5.258667pt;}
.ws81{word-spacing:5.395516pt;}
.ws84{word-spacing:5.543445pt;}
.ws85{word-spacing:5.698146pt;}
.ws62{word-spacing:5.706667pt;}
.wsc5{word-spacing:5.802667pt;}
.ws15{word-spacing:5.866667pt;}
.ws80{word-spacing:5.883903pt;}
.ws82{word-spacing:5.954765pt;}
.ws83{word-spacing:6.047808pt;}
.ws69{word-spacing:6.400000pt;}
.ws16{word-spacing:7.040000pt;}
.ws135{word-spacing:12.013333pt;}
.ws136{word-spacing:15.640000pt;}
.ws10{word-spacing:19.072000pt;}
.wsb3{word-spacing:28.922667pt;}
.ws26{word-spacing:64.237333pt;}
.wsb2{word-spacing:96.922667pt;}
.ws8b{word-spacing:482.641212pt;}
._4{margin-left:-14.733333pt;}
._a{margin-left:-12.672000pt;}
._10{margin-left:-10.133333pt;}
._35{margin-left:-5.189395pt;}
._3{margin-left:-4.293395pt;}
._1{margin-left:-3.080533pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.317395pt;}
._9{width:2.704000pt;}
._b{width:3.626667pt;}
._3a{width:5.119993pt;}
._12{width:9.546667pt;}
._f{width:10.671467pt;}
._14{width:12.921600pt;}
._15{width:13.872000pt;}
._5{width:16.320000pt;}
._d{width:19.072000pt;}
._11{width:26.661333pt;}
._e{width:29.333333pt;}
._13{width:32.000000pt;}
._c{width:36.720000pt;}
._26{width:40.256000pt;}
._6{width:48.552000pt;}
._1d{width:74.256000pt;}
._3e{width:75.298667pt;}
._39{width:76.205333pt;}
._2c{width:85.589333pt;}
._8{width:87.312000pt;}
._19{width:95.653333pt;}
._1c{width:108.256000pt;}
._18{width:110.749333pt;}
._32{width:130.922667pt;}
._33{width:153.589333pt;}
._24{width:166.690667pt;}
._20{width:176.256000pt;}
._21{width:198.922667pt;}
._1b{width:200.690667pt;}
._29{width:210.256000pt;}
._34{width:212.704000pt;}
._1a{width:221.498667pt;}
._2b{width:234.690667pt;}
._31{width:257.357333pt;}
._17{width:258.626667pt;}
._1f{width:302.690667pt;}
._38{width:305.274667pt;}
._2e{width:317.877333pt;}
._3c{width:327.034656pt;}
._28{width:336.690667pt;}
._2f{width:340.725333pt;}
._1e{width:346.389867pt;}
._2d{width:348.114667pt;}
._27{width:485.248000pt;}
._30{width:488.013333pt;}
._22{width:495.402667pt;}
._16{width:523.083162pt;}
._2a{width:525.139200pt;}
._25{width:552.883200pt;}
._23{width:693.010667pt;}
._37{width:923.848000pt;}
._3b{width:966.234667pt;}
._3d{width:977.431992pt;}
._36{width:1009.029333pt;}
._7{width:1507.922650pt;}
.fs1c{font-size:20.805867pt;}
.fs1d{font-size:20.816533pt;}
.fsc{font-size:21.014933pt;}
.fsb{font-size:21.019199pt;}
.fs1f{font-size:23.025067pt;}
.fs1e{font-size:23.036799pt;}
.fsd{font-size:23.256533pt;}
.fse{font-size:23.260800pt;}
.fs21{font-size:24.285866pt;}
.fs22{font-size:24.296000pt;}
.fs20{font-size:25.522133pt;}
.fsf{font-size:25.783467pt;}
.fs24{font-size:26.876267pt;}
.fs23{font-size:26.887467pt;}
.fs10{font-size:27.889066pt;}
.fs11{font-size:27.905599pt;}
.fs18{font-size:28.146133pt;}
.fs12{font-size:30.864000pt;}
.fs1a{font-size:31.148267pt;}
.fs19{font-size:31.166933pt;}
.fs8{font-size:31.733332pt;}
.fs14{font-size:31.789332pt;}
.fsa{font-size:31.843200pt;}
.fs13{font-size:34.210667pt;}
.fs1b{font-size:34.525867pt;}
.fs16{font-size:35.180267pt;}
.fs15{font-size:35.213333pt;}
.fs6{font-size:37.333333pt;}
.fs17{font-size:38.995200pt;}
.fs25{font-size:39.569600pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y37a{bottom:1.765076pt;}
.y166{bottom:1.783448pt;}
.y3ae{bottom:2.061686pt;}
.y174{bottom:2.364258pt;}
.y198{bottom:2.387044pt;}
.y189{bottom:2.695190pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y188{bottom:93.624797pt;}
.y34{bottom:100.389600pt;}
.y1eb{bottom:100.410933pt;}
.y6a{bottom:100.813639pt;}
.y142{bottom:101.558935pt;}
.y102{bottom:101.986898pt;}
.yd0{bottom:101.986928pt;}
.y3d5{bottom:103.566792pt;}
.y20b{bottom:103.976267pt;}
.y470{bottom:103.994528pt;}
.y1c6{bottom:104.708659pt;}
.y130{bottom:104.917603pt;}
.y3ed{bottom:106.778792pt;}
.y360{bottom:110.155070pt;}
.y1ea{bottom:113.738933pt;}
.y9d{bottom:115.480306pt;}
.y2e{bottom:116.187866pt;}
.y1e4{bottom:116.821859pt;}
.y3d4{bottom:116.894792pt;}
.y42e{bottom:116.982543pt;}
.y46f{bottom:117.322528pt;}
.y69{bottom:117.480306pt;}
.y141{bottom:118.225601pt;}
.y33{bottom:118.250936pt;}
.y113{bottom:118.501607pt;}
.y101{bottom:118.653564pt;}
.ycf{bottom:118.653595pt;}
.y2ed{bottom:118.777608pt;}
.y3ec{bottom:120.106792pt;}
.y20a{bottom:120.642933pt;}
.y1c5{bottom:121.375326pt;}
.y1e9{bottom:127.066933pt;}
.y3d3{bottom:130.222792pt;}
.y42d{bottom:130.310543pt;}
.y46e{bottom:130.650528pt;}
.y9c{bottom:132.146973pt;}
.y2d{bottom:132.854533pt;}
.y3eb{bottom:133.434792pt;}
.y233{bottom:133.486938pt;}
.y1e3{bottom:133.488525pt;}
.y32{bottom:133.764936pt;}
.y68{bottom:134.146973pt;}
.y140{bottom:134.892268pt;}
.y112{bottom:135.168274pt;}
.y100{bottom:135.320231pt;}
.yce{bottom:135.320262pt;}
.y2ec{bottom:135.444275pt;}
.y23e{bottom:135.446938pt;}
.y209{bottom:137.309600pt;}
.y1c0{bottom:138.041992pt;}
.y1e8{bottom:140.394933pt;}
.y3d2{bottom:143.550792pt;}
.y42c{bottom:143.638543pt;}
.y46d{bottom:143.978528pt;}
.y3ea{bottom:146.762792pt;}
.y37d{bottom:147.888133pt;}
.y9b{bottom:148.813639pt;}
.y2c{bottom:149.521200pt;}
.y232{bottom:150.153605pt;}
.y1e2{bottom:150.155192pt;}
.y67{bottom:150.813639pt;}
.y13f{bottom:151.558935pt;}
.y31{bottom:151.626272pt;}
.y111{bottom:151.834941pt;}
.yff{bottom:151.986898pt;}
.y2a8{bottom:152.110942pt;}
.y23d{bottom:152.113605pt;}
.y1e7{bottom:153.722933pt;}
.y228{bottom:153.976257pt;}
.y1bf{bottom:154.708659pt;}
.y1ed{bottom:154.773600pt;}
.y3d1{bottom:156.878792pt;}
.y42b{bottom:156.966543pt;}
.y46c{bottom:157.306528pt;}
.y3e9{bottom:160.090792pt;}
.y9a{bottom:165.480306pt;}
.y2b{bottom:166.187866pt;}
.y231{bottom:166.820272pt;}
.y1e1{bottom:166.821859pt;}
.y66{bottom:167.480306pt;}
.y13e{bottom:168.225601pt;}
.y137{bottom:168.345601pt;}
.y110{bottom:168.501607pt;}
.yfe{bottom:168.653564pt;}
.ycd{bottom:168.653595pt;}
.y2a7{bottom:168.777608pt;}
.y23c{bottom:168.780272pt;}
.y3d0{bottom:170.206792pt;}
.y42a{bottom:170.294543pt;}
.y46b{bottom:170.634528pt;}
.y227{bottom:170.642924pt;}
.y208{bottom:170.642933pt;}
.y1be{bottom:171.375326pt;}
.y1e6{bottom:171.584269pt;}
.y3e8{bottom:173.418792pt;}
.y30{bottom:173.848941pt;}
.y187{bottom:177.816243pt;}
.y35f{bottom:179.065328pt;}
.y99{bottom:182.146973pt;}
.y2a{bottom:182.854533pt;}
.y230{bottom:183.486938pt;}
.y1e0{bottom:183.488525pt;}
.y3cf{bottom:183.534792pt;}
.y429{bottom:183.622543pt;}
.y46a{bottom:183.962528pt;}
.y65{bottom:184.146973pt;}
.y13d{bottom:184.892268pt;}
.y136{bottom:185.012268pt;}
.y10f{bottom:185.168274pt;}
.yfd{bottom:185.320231pt;}
.y2a6{bottom:185.444275pt;}
.y23b{bottom:185.446938pt;}
.y3e7{bottom:186.746792pt;}
.y2f{bottom:187.176941pt;}
.y226{bottom:187.309600pt;}
.y371{bottom:187.966379pt;}
.y1bd{bottom:188.041992pt;}
.y378{bottom:188.528138pt;}
.y366{bottom:188.548944pt;}
.y36e{bottom:188.840226pt;}
.y368{bottom:189.131508pt;}
.y370{bottom:189.412387pt;}
.y36c{bottom:189.698468pt;}
.y362{bottom:189.703669pt;}
.y364{bottom:189.994951pt;}
.y374{bottom:190.265428pt;}
.y36a{bottom:190.567113pt;}
.y377{bottom:191.128871pt;}
.y365{bottom:191.149677pt;}
.y376{bottom:191.420153pt;}
.y36d{bottom:191.440959pt;}
.y367{bottom:191.732241pt;}
.y36f{bottom:192.013121pt;}
.y36b{bottom:192.299201pt;}
.y361{bottom:192.304403pt;}
.y363{bottom:192.595685pt;}
.y373{bottom:192.871363pt;}
.y372{bottom:192.876564pt;}
.y369{bottom:193.173048pt;}
.y375{bottom:194.020887pt;}
.y3ce{bottom:196.862792pt;}
.y428{bottom:196.950543pt;}
.y469{bottom:197.290528pt;}
.y98{bottom:198.813639pt;}
.y29{bottom:199.521200pt;}
.y3e6{bottom:200.074792pt;}
.y22f{bottom:200.153605pt;}
.y1df{bottom:200.155192pt;}
.y64{bottom:200.813639pt;}
.y13c{bottom:201.558935pt;}
.y135{bottom:201.678935pt;}
.y10e{bottom:201.834941pt;}
.yfc{bottom:201.986898pt;}
.yfb{bottom:201.986938pt;}
.y2a5{bottom:202.110942pt;}
.y23a{bottom:202.113605pt;}
.y225{bottom:203.976267pt;}
.y207{bottom:203.976278pt;}
.y1c4{bottom:204.708659pt;}
.y359{bottom:205.901469pt;}
.y3cd{bottom:210.190792pt;}
.y427{bottom:210.278543pt;}
.y468{bottom:210.618528pt;}
.y3e5{bottom:213.402792pt;}
.y97{bottom:215.480306pt;}
.y28{bottom:216.187866pt;}
.y22e{bottom:216.820272pt;}
.y1dc{bottom:216.821859pt;}
.y63{bottom:217.480306pt;}
.y37b{bottom:218.073324pt;}
.y13b{bottom:218.225601pt;}
.y134{bottom:218.345601pt;}
.y10d{bottom:218.501607pt;}
.ycc{bottom:218.653564pt;}
.y2a4{bottom:218.777608pt;}
.y239{bottom:218.780272pt;}
.y35a{bottom:219.789385pt;}
.y224{bottom:220.642933pt;}
.y206{bottom:220.642944pt;}
.y1bc{bottom:221.375326pt;}
.y3cc{bottom:223.518792pt;}
.y426{bottom:223.606543pt;}
.y467{bottom:223.946528pt;}
.y3e4{bottom:226.730792pt;}
.y379{bottom:230.601339pt;}
.y96{bottom:232.146973pt;}
.y26{bottom:232.854533pt;}
.y22d{bottom:233.486938pt;}
.y1db{bottom:233.488525pt;}
.y35b{bottom:233.677301pt;}
.y62{bottom:234.146973pt;}
.y13a{bottom:234.892268pt;}
.y133{bottom:235.012268pt;}
.y10c{bottom:235.168274pt;}
.ycb{bottom:235.320231pt;}
.yfa{bottom:235.320272pt;}
.y2a3{bottom:235.444275pt;}
.y238{bottom:235.446938pt;}
.y3cb{bottom:236.846792pt;}
.y425{bottom:236.934543pt;}
.y466{bottom:237.274528pt;}
.y223{bottom:237.309600pt;}
.y205{bottom:237.309611pt;}
.y1c3{bottom:238.041992pt;}
.y3e3{bottom:240.058792pt;}
.y35c{bottom:247.565217pt;}
.y95{bottom:248.813639pt;}
.y25{bottom:249.521200pt;}
.y22c{bottom:250.153605pt;}
.y1da{bottom:250.155192pt;}
.y3ca{bottom:250.174792pt;}
.y424{bottom:250.262543pt;}
.y465{bottom:250.602528pt;}
.y61{bottom:250.813639pt;}
.y139{bottom:251.558935pt;}
.y132{bottom:251.678935pt;}
.y10b{bottom:251.834941pt;}
.yca{bottom:251.986898pt;}
.yf9{bottom:251.986938pt;}
.y2a2{bottom:252.110942pt;}
.y237{bottom:252.113605pt;}
.y3e2{bottom:253.386792pt;}
.y222{bottom:253.976267pt;}
.y204{bottom:253.976278pt;}
.y1c2{bottom:254.708659pt;}
.y1bb{bottom:254.713992pt;}
.y35d{bottom:261.453133pt;}
.y423{bottom:263.590543pt;}
.y464{bottom:263.930528pt;}
.y94{bottom:265.480306pt;}
.y24{bottom:266.187866pt;}
.y3e1{bottom:266.714792pt;}
.y22b{bottom:266.820272pt;}
.y1d9{bottom:266.821859pt;}
.y60{bottom:267.480306pt;}
.y138{bottom:268.225601pt;}
.y131{bottom:268.345601pt;}
.y10a{bottom:268.501607pt;}
.yc9{bottom:268.653564pt;}
.yf8{bottom:268.653605pt;}
.y2a1{bottom:268.777608pt;}
.y236{bottom:268.780272pt;}
.y221{bottom:270.642933pt;}
.y203{bottom:270.642944pt;}
.y1ba{bottom:271.375326pt;}
.y35e{bottom:275.341049pt;}
.y422{bottom:276.918543pt;}
.y463{bottom:277.258528pt;}
.y37c{bottom:279.625326pt;}
.y3e0{bottom:280.042792pt;}
.y93{bottom:282.146973pt;}
.y23{bottom:282.854533pt;}
.y1d8{bottom:283.488525pt;}
.y3c9{bottom:283.494792pt;}
.y5f{bottom:284.146973pt;}
.y109{bottom:285.168274pt;}
.yc8{bottom:285.320231pt;}
.yf7{bottom:285.320272pt;}
.y2a0{bottom:285.444275pt;}
.y235{bottom:285.446938pt;}
.y220{bottom:287.309600pt;}
.y202{bottom:287.309611pt;}
.y1c1{bottom:288.041992pt;}
.y421{bottom:290.246543pt;}
.y462{bottom:290.586528pt;}
.y3df{bottom:293.370792pt;}
.y92{bottom:298.813639pt;}
.y22{bottom:299.521200pt;}
.y22a{bottom:300.153605pt;}
.y1d7{bottom:300.155192pt;}
.y5e{bottom:300.813639pt;}
.y108{bottom:301.834941pt;}
.yc7{bottom:301.986898pt;}
.yf6{bottom:301.986938pt;}
.y29f{bottom:302.110942pt;}
.y234{bottom:302.113605pt;}
.y420{bottom:303.574543pt;}
.y461{bottom:303.914528pt;}
.y21f{bottom:303.976267pt;}
.y201{bottom:303.976278pt;}
.y1b9{bottom:304.708659pt;}
.y3de{bottom:306.698792pt;}
.y186{bottom:309.173340pt;}
.y3c8{bottom:310.161458pt;}
.y91{bottom:315.480306pt;}
.y21{bottom:316.187866pt;}
.y1d6{bottom:316.821859pt;}
.y41f{bottom:316.902543pt;}
.y460{bottom:317.242528pt;}
.y5d{bottom:317.480306pt;}
.y11a{bottom:318.501607pt;}
.yc6{bottom:318.653564pt;}
.yf5{bottom:318.653605pt;}
.y3dd{bottom:320.026792pt;}
.y21e{bottom:320.642933pt;}
.y200{bottom:320.642944pt;}
.y1b8{bottom:321.375326pt;}
.y41e{bottom:330.230543pt;}
.y45f{bottom:330.570528pt;}
.y90{bottom:332.146973pt;}
.y20{bottom:332.854533pt;}
.y3dc{bottom:333.354792pt;}
.y1d5{bottom:333.488525pt;}
.y5c{bottom:334.146973pt;}
.y107{bottom:335.168274pt;}
.yc5{bottom:335.320231pt;}
.yf4{bottom:335.320272pt;}
.y21d{bottom:337.309600pt;}
.y1ff{bottom:337.309611pt;}
.y1b7{bottom:338.041992pt;}
.y3c7{bottom:340.182942pt;}
.y41d{bottom:343.558543pt;}
.y45e{bottom:343.898528pt;}
.y3db{bottom:346.682792pt;}
.y8f{bottom:348.813639pt;}
.y1f{bottom:349.521200pt;}
.y1de{bottom:350.155192pt;}
.y5b{bottom:350.813639pt;}
.y119{bottom:351.834941pt;}
.yc4{bottom:351.986898pt;}
.yf3{bottom:351.986938pt;}
.y3c6{bottom:353.510942pt;}
.y21c{bottom:353.976267pt;}
.y1fe{bottom:353.976278pt;}
.y1b6{bottom:354.708659pt;}
.y2e5{bottom:356.796015pt;}
.y352{bottom:356.818677pt;}
.y2ea{bottom:356.818680pt;}
.y322{bottom:356.830008pt;}
.y17f{bottom:356.840413pt;}
.y297{bottom:356.841336pt;}
.y357{bottom:356.841342pt;}
.y327{bottom:356.852673pt;}
.y29c{bottom:356.864001pt;}
.y41c{bottom:356.886543pt;}
.y45d{bottom:357.226528pt;}
.y3da{bottom:360.010792pt;}
.y8e{bottom:365.480306pt;}
.y1e{bottom:366.187866pt;}
.y1d4{bottom:366.821859pt;}
.y5a{bottom:367.480306pt;}
.y118{bottom:368.501607pt;}
.yc3{bottom:368.653564pt;}
.yf2{bottom:368.653605pt;}
.y2e4{bottom:370.124015pt;}
.y351{bottom:370.146677pt;}
.y2e9{bottom:370.146680pt;}
.y321{bottom:370.158008pt;}
.y296{bottom:370.169336pt;}
.y356{bottom:370.169342pt;}
.y326{bottom:370.180673pt;}
.y29b{bottom:370.192001pt;}
.y41b{bottom:370.214543pt;}
.y45c{bottom:370.554528pt;}
.y21b{bottom:370.642933pt;}
.y1fd{bottom:370.642944pt;}
.y1b5{bottom:371.375326pt;}
.y3d9{bottom:373.338792pt;}
.y180{bottom:375.437173pt;}
.y3c5{bottom:380.178276pt;}
.y8d{bottom:382.146973pt;}
.y1d{bottom:382.854533pt;}
.y2e3{bottom:383.452015pt;}
.y350{bottom:383.474677pt;}
.y2e8{bottom:383.474680pt;}
.y320{bottom:383.486008pt;}
.y1dd{bottom:383.488525pt;}
.y295{bottom:383.497336pt;}
.y355{bottom:383.497342pt;}
.y325{bottom:383.508673pt;}
.y29a{bottom:383.520001pt;}
.y41a{bottom:383.542543pt;}
.y45b{bottom:383.882528pt;}
.y59{bottom:384.146973pt;}
.y106{bottom:385.168254pt;}
.y117{bottom:385.168274pt;}
.yc2{bottom:385.320231pt;}
.yf1{bottom:385.320272pt;}
.y3d8{bottom:386.666792pt;}
.y21a{bottom:387.309600pt;}
.y1fc{bottom:387.309611pt;}
.y3c4{bottom:393.506276pt;}
.y181{bottom:394.025985pt;}
.y2e2{bottom:396.780015pt;}
.y34f{bottom:396.802677pt;}
.y2e7{bottom:396.802680pt;}
.y31f{bottom:396.814008pt;}
.y294{bottom:396.825336pt;}
.y354{bottom:396.825342pt;}
.y324{bottom:396.836673pt;}
.y299{bottom:396.848001pt;}
.y329{bottom:396.859338pt;}
.y419{bottom:396.870543pt;}
.y29e{bottom:396.870666pt;}
.y45a{bottom:397.210528pt;}
.y8c{bottom:398.813639pt;}
.y1c{bottom:399.521200pt;}
.y3d7{bottom:399.994792pt;}
.y1d3{bottom:400.155192pt;}
.y58{bottom:400.813639pt;}
.y105{bottom:401.834920pt;}
.y116{bottom:401.834941pt;}
.yc1{bottom:401.986898pt;}
.yf0{bottom:401.986938pt;}
.y219{bottom:403.976267pt;}
.y1fb{bottom:403.976278pt;}
.y3c3{bottom:406.834276pt;}
.y2e1{bottom:410.108015pt;}
.y34e{bottom:410.130677pt;}
.y2e6{bottom:410.130680pt;}
.y31e{bottom:410.142008pt;}
.y293{bottom:410.153336pt;}
.y353{bottom:410.153342pt;}
.y2eb{bottom:410.153345pt;}
.y323{bottom:410.164673pt;}
.y298{bottom:410.176001pt;}
.y358{bottom:410.176007pt;}
.y328{bottom:410.187338pt;}
.y418{bottom:410.198543pt;}
.y29d{bottom:410.198666pt;}
.y459{bottom:410.538528pt;}
.y182{bottom:412.622744pt;}
.y8b{bottom:415.480306pt;}
.y1b{bottom:416.187866pt;}
.y1d2{bottom:416.821859pt;}
.y57{bottom:417.480306pt;}
.y104{bottom:418.501587pt;}
.y115{bottom:418.501607pt;}
.yc0{bottom:418.653564pt;}
.yef{bottom:418.653605pt;}
.y3c2{bottom:420.162276pt;}
.y218{bottom:420.642933pt;}
.y1fa{bottom:420.642944pt;}
.y1a5{bottom:423.280683pt;}
.y417{bottom:423.526543pt;}
.y458{bottom:423.866528pt;}
.y2d9{bottom:426.779349pt;}
.y346{bottom:426.802011pt;}
.y2de{bottom:426.802014pt;}
.y316{bottom:426.813342pt;}
.y28c{bottom:426.824673pt;}
.y34b{bottom:426.824676pt;}
.y31b{bottom:426.836007pt;}
.y291{bottom:426.847338pt;}
.y3d6{bottom:429.994792pt;}
.y183{bottom:431.211556pt;}
.y8a{bottom:432.146973pt;}
.y1a{bottom:432.854533pt;}
.y1d1{bottom:433.488525pt;}
.y3c1{bottom:433.490276pt;}
.y56{bottom:434.146973pt;}
.y103{bottom:435.168254pt;}
.y114{bottom:435.168274pt;}
.ybf{bottom:435.320231pt;}
.yee{bottom:435.320272pt;}
.y416{bottom:436.854543pt;}
.y457{bottom:437.194528pt;}
.y217{bottom:437.309600pt;}
.y1f9{bottom:437.309611pt;}
.y2d8{bottom:440.107349pt;}
.y345{bottom:440.130011pt;}
.y2dd{bottom:440.130014pt;}
.y315{bottom:440.141342pt;}
.y28b{bottom:440.152673pt;}
.y34a{bottom:440.152676pt;}
.y31a{bottom:440.164007pt;}
.y290{bottom:440.175338pt;}
.y1a4{bottom:441.142008pt;}
.y17e{bottom:445.112392pt;}
.y89{bottom:448.813639pt;}
.y19{bottom:449.521200pt;}
.y184{bottom:449.808315pt;}
.y1d0{bottom:450.155192pt;}
.y415{bottom:450.182543pt;}
.y456{bottom:450.522528pt;}
.y55{bottom:450.813639pt;}
.ybe{bottom:451.986898pt;}
.yed{bottom:451.986938pt;}
.y2d7{bottom:453.435349pt;}
.y344{bottom:453.458011pt;}
.y2dc{bottom:453.458014pt;}
.y314{bottom:453.469342pt;}
.y28a{bottom:453.480673pt;}
.y349{bottom:453.480676pt;}
.y319{bottom:453.492007pt;}
.y28f{bottom:453.503338pt;}
.y216{bottom:453.976267pt;}
.y1f8{bottom:453.976278pt;}
.y17d{bottom:458.440392pt;}
.y18b{bottom:461.727002pt;}
.y1b4{bottom:462.148018pt;}
.y414{bottom:463.510543pt;}
.y497{bottom:463.510706pt;}
.y455{bottom:463.850528pt;}
.y88{bottom:465.480306pt;}
.y27{bottom:466.187866pt;}
.y2d6{bottom:466.763349pt;}
.y343{bottom:466.786011pt;}
.y2db{bottom:466.786014pt;}
.y313{bottom:466.797342pt;}
.y289{bottom:466.808673pt;}
.y348{bottom:466.808676pt;}
.y2e0{bottom:466.808679pt;}
.y318{bottom:466.820007pt;}
.y1cf{bottom:466.821859pt;}
.y28e{bottom:466.831338pt;}
.y34d{bottom:466.831341pt;}
.y31d{bottom:466.842672pt;}
.y54{bottom:467.480306pt;}
.y185{bottom:468.397127pt;}
.ybd{bottom:468.653564pt;}
.yec{bottom:468.653605pt;}
.y215{bottom:470.642933pt;}
.y1f7{bottom:470.642944pt;}
.y17c{bottom:471.768392pt;}
.y18a{bottom:472.850382pt;}
.y413{bottom:476.838543pt;}
.y496{bottom:476.838706pt;}
.y454{bottom:477.178528pt;}
.y1b3{bottom:478.853351pt;}
.y2d5{bottom:480.091349pt;}
.y342{bottom:480.114011pt;}
.y2da{bottom:480.114014pt;}
.y312{bottom:480.125342pt;}
.y288{bottom:480.136673pt;}
.y347{bottom:480.136676pt;}
.y2df{bottom:480.136679pt;}
.y317{bottom:480.148007pt;}
.y28d{bottom:480.159338pt;}
.y34c{bottom:480.159341pt;}
.y31c{bottom:480.170672pt;}
.y292{bottom:480.182003pt;}
.y87{bottom:482.146973pt;}
.y18{bottom:482.854533pt;}
.y1ce{bottom:483.488525pt;}
.y53{bottom:484.146973pt;}
.y17b{bottom:485.096392pt;}
.ybc{bottom:485.320231pt;}
.yeb{bottom:485.320272pt;}
.y214{bottom:487.309600pt;}
.y1f6{bottom:487.309611pt;}
.y412{bottom:490.166543pt;}
.y495{bottom:490.166706pt;}
.y453{bottom:490.506528pt;}
.y1b2{bottom:495.490685pt;}
.y2ce{bottom:496.706017pt;}
.y33a{bottom:496.717348pt;}
.y30a{bottom:496.728679pt;}
.y2d3{bottom:496.728682pt;}
.y33f{bottom:496.740013pt;}
.y281{bottom:496.751340pt;}
.y30f{bottom:496.751344pt;}
.y286{bottom:496.774005pt;}
.y86{bottom:498.813639pt;}
.y3c0{bottom:499.257609pt;}
.y1cd{bottom:500.155192pt;}
.y127{bottom:500.741258pt;}
.y52{bottom:500.813639pt;}
.ybb{bottom:501.986898pt;}
.yea{bottom:501.986938pt;}
.y411{bottom:503.494543pt;}
.y494{bottom:503.494706pt;}
.y452{bottom:503.834528pt;}
.y213{bottom:503.976267pt;}
.y1f5{bottom:503.976278pt;}
.y2cd{bottom:510.034017pt;}
.y339{bottom:510.045348pt;}
.y309{bottom:510.056679pt;}
.y2d2{bottom:510.056682pt;}
.y33e{bottom:510.068013pt;}
.y280{bottom:510.079340pt;}
.y30e{bottom:510.079344pt;}
.y285{bottom:510.102005pt;}
.y126{bottom:510.310140pt;}
.y1b1{bottom:512.128018pt;}
.y85{bottom:515.480306pt;}
.y1cc{bottom:516.821859pt;}
.y410{bottom:516.822543pt;}
.y493{bottom:516.822706pt;}
.y451{bottom:517.162528pt;}
.y51{bottom:517.480306pt;}
.yba{bottom:518.653564pt;}
.ye9{bottom:518.653605pt;}
.y212{bottom:520.642933pt;}
.y1f4{bottom:520.642944pt;}
.y2cc{bottom:523.362017pt;}
.y338{bottom:523.373348pt;}
.y308{bottom:523.384679pt;}
.y2d1{bottom:523.384682pt;}
.y33d{bottom:523.396013pt;}
.y27f{bottom:523.407340pt;}
.y30d{bottom:523.407344pt;}
.y284{bottom:523.430005pt;}
.y1b0{bottom:528.765351pt;}
.y12d{bottom:529.809761pt;}
.y40f{bottom:530.150543pt;}
.y492{bottom:530.150706pt;}
.y450{bottom:530.490528pt;}
.y17a{bottom:530.860392pt;}
.y84{bottom:532.146973pt;}
.y17{bottom:532.854574pt;}
.y1cb{bottom:533.488525pt;}
.y50{bottom:534.146973pt;}
.yb9{bottom:535.320231pt;}
.ye8{bottom:535.320272pt;}
.y2cb{bottom:536.690017pt;}
.y337{bottom:536.701348pt;}
.y307{bottom:536.712679pt;}
.y2d0{bottom:536.712682pt;}
.y33c{bottom:536.724013pt;}
.y27e{bottom:536.735340pt;}
.y30c{bottom:536.735344pt;}
.y341{bottom:536.746678pt;}
.y283{bottom:536.758005pt;}
.y311{bottom:536.758008pt;}
.y211{bottom:537.309600pt;}
.y1f3{bottom:537.309611pt;}
.y12c{bottom:539.394564pt;}
.y125{bottom:540.231656pt;}
.y40e{bottom:543.478543pt;}
.y491{bottom:543.478706pt;}
.y44f{bottom:543.818528pt;}
.y1af{bottom:545.402685pt;}
.y83{bottom:548.813639pt;}
.y12b{bottom:548.955485pt;}
.y124{bottom:549.800537pt;}
.y2ca{bottom:550.018017pt;}
.y336{bottom:550.029348pt;}
.y306{bottom:550.040679pt;}
.y2cf{bottom:550.040682pt;}
.y33b{bottom:550.052013pt;}
.y27d{bottom:550.063340pt;}
.y30b{bottom:550.063344pt;}
.y2d4{bottom:550.063347pt;}
.y340{bottom:550.074678pt;}
.y282{bottom:550.086005pt;}
.y310{bottom:550.086008pt;}
.y287{bottom:550.108670pt;}
.y1ca{bottom:550.155192pt;}
.y4f{bottom:550.813639pt;}
.yb8{bottom:551.986898pt;}
.ye7{bottom:551.986938pt;}
.y210{bottom:553.976267pt;}
.y1f2{bottom:553.976278pt;}
.y40d{bottom:556.806543pt;}
.y490{bottom:556.806706pt;}
.y44e{bottom:557.146528pt;}
.y12f{bottom:561.956814pt;}
.y173{bottom:562.038656pt;}
.y1ae{bottom:562.040018pt;}
.y82{bottom:565.480306pt;}
.y16{bottom:566.187907pt;}
.y2c3{bottom:566.632684pt;}
.y32f{bottom:566.644015pt;}
.y2ff{bottom:566.655346pt;}
.y2c8{bottom:566.655349pt;}
.y275{bottom:566.666677pt;}
.y334{bottom:566.666680pt;}
.y304{bottom:566.678011pt;}
.y27a{bottom:566.689342pt;}
.y1c9{bottom:566.821859pt;}
.y4e{bottom:567.480306pt;}
.yb7{bottom:568.653564pt;}
.ye6{bottom:568.653605pt;}
.y40c{bottom:570.134543pt;}
.y48f{bottom:570.134706pt;}
.y44d{bottom:570.474528pt;}
.y20f{bottom:570.642933pt;}
.y1f1{bottom:570.642944pt;}
.y3bb{bottom:573.691846pt;}
.y1ad{bottom:578.677351pt;}
.y1ec{bottom:579.102946pt;}
.y2c2{bottom:579.960684pt;}
.y32e{bottom:579.972015pt;}
.y2fe{bottom:579.983346pt;}
.y2c7{bottom:579.983349pt;}
.y274{bottom:579.994677pt;}
.y333{bottom:579.994680pt;}
.y303{bottom:580.006011pt;}
.y279{bottom:580.017342pt;}
.y3b3{bottom:580.280021pt;}
.y12a{bottom:580.569149pt;}
.y3b7{bottom:580.809204pt;}
.y121{bottom:581.469732pt;}
.y3b6{bottom:581.849447pt;}
.y3be{bottom:581.895609pt;}
.y81{bottom:582.146973pt;}
.y15{bottom:582.854574pt;}
.y40b{bottom:583.462543pt;}
.y48e{bottom:583.462706pt;}
.y1c8{bottom:583.488525pt;}
.y4b4{bottom:583.576055pt;}
.y44c{bottom:583.802528pt;}
.y4d{bottom:584.146973pt;}
.yb6{bottom:585.320231pt;}
.y20e{bottom:587.309600pt;}
.y1f0{bottom:587.309611pt;}
.y3bd{bottom:588.612549pt;}
.y3b8{bottom:589.692579pt;}
.y129{bottom:590.138030pt;}
.y3b2{bottom:590.221883pt;}
.y120{bottom:591.054536pt;}
.y2c1{bottom:593.288684pt;}
.y32d{bottom:593.300015pt;}
.y2fd{bottom:593.311346pt;}
.y2c6{bottom:593.311349pt;}
.y273{bottom:593.322677pt;}
.y332{bottom:593.322680pt;}
.y302{bottom:593.334011pt;}
.y278{bottom:593.345342pt;}
.y1ac{bottom:595.314685pt;}
.y3b5{bottom:596.440674pt;}
.y40a{bottom:596.790543pt;}
.y48d{bottom:596.790706pt;}
.y3ba{bottom:596.810384pt;}
.y4b3{bottom:596.904055pt;}
.y44b{bottom:597.130528pt;}
.y80{bottom:598.813639pt;}
.y14{bottom:599.521240pt;}
.y128{bottom:599.730794pt;}
.y1c7{bottom:600.155192pt;}
.y11f{bottom:600.607496pt;}
.y4c{bottom:600.813639pt;}
.yb5{bottom:601.986898pt;}
.ye5{bottom:601.986938pt;}
.y16a{bottom:603.857747pt;}
.y20d{bottom:603.976267pt;}
.y1ef{bottom:603.976278pt;}
.y2c0{bottom:606.616684pt;}
.y32c{bottom:606.628015pt;}
.y2fc{bottom:606.639346pt;}
.y2c5{bottom:606.639349pt;}
.y272{bottom:606.650677pt;}
.y331{bottom:606.650680pt;}
.y301{bottom:606.662011pt;}
.y277{bottom:606.673342pt;}
.y27c{bottom:606.696007pt;}
.y409{bottom:610.118543pt;}
.y48c{bottom:610.118706pt;}
.y11e{bottom:610.168416pt;}
.y44a{bottom:610.458528pt;}
.y1ab{bottom:611.952018pt;}
.y12e{bottom:612.730794pt;}
.y7f{bottom:615.480306pt;}
.y13{bottom:616.187907pt;}
.y4b{bottom:617.480306pt;}
.yb4{bottom:618.653564pt;}
.ye4{bottom:618.653605pt;}
.y2bf{bottom:619.944684pt;}
.y32b{bottom:619.956015pt;}
.y2fb{bottom:619.967346pt;}
.y2c4{bottom:619.967349pt;}
.y271{bottom:619.978677pt;}
.y330{bottom:619.978680pt;}
.y300{bottom:619.990011pt;}
.y2c9{bottom:619.990014pt;}
.y276{bottom:620.001342pt;}
.y335{bottom:620.001345pt;}
.y305{bottom:620.012676pt;}
.y27b{bottom:620.024007pt;}
.y16b{bottom:620.165879pt;}
.y20c{bottom:620.642933pt;}
.y1ee{bottom:620.642944pt;}
.y408{bottom:623.446543pt;}
.y48b{bottom:623.446706pt;}
.y4b2{bottom:623.650720pt;}
.y449{bottom:623.786528pt;}
.y1aa{bottom:628.589351pt;}
.y7e{bottom:632.146973pt;}
.y12{bottom:632.854574pt;}
.y4a{bottom:634.146973pt;}
.yb3{bottom:635.320231pt;}
.ye3{bottom:635.320272pt;}
.y16c{bottom:636.480982pt;}
.y2b8{bottom:636.559352pt;}
.y2f2{bottom:636.570683pt;}
.y269{bottom:636.582014pt;}
.y2bd{bottom:636.582017pt;}
.y2f7{bottom:636.593348pt;}
.y26e{bottom:636.604679pt;}
.y407{bottom:636.774543pt;}
.y48a{bottom:636.774706pt;}
.y4b1{bottom:636.978720pt;}
.y448{bottom:637.114528pt;}
.y11d{bottom:638.712949pt;}
.y123{bottom:641.803567pt;}
.y1e5{bottom:644.507202pt;}
.y1a9{bottom:645.218693pt;}
.y172{bottom:646.033854pt;}
.y7d{bottom:648.813639pt;}
.y11{bottom:649.521240pt;}
.y2b7{bottom:649.887352pt;}
.y2f1{bottom:649.898683pt;}
.y268{bottom:649.910014pt;}
.y2bc{bottom:649.910017pt;}
.y2f6{bottom:649.921348pt;}
.y26d{bottom:649.932679pt;}
.y406{bottom:650.102543pt;}
.y489{bottom:650.102706pt;}
.y4b0{bottom:650.306720pt;}
.y3b4{bottom:650.328104pt;}
.y3bc{bottom:650.328269pt;}
.y3b9{bottom:650.332991pt;}
.y3bf{bottom:650.341125pt;}
.y447{bottom:650.442528pt;}
.y49{bottom:650.813639pt;}
.y122{bottom:651.356527pt;}
.yb2{bottom:651.986898pt;}
.y11c{bottom:652.040949pt;}
.y16d{bottom:652.789114pt;}
.y1a8{bottom:661.856026pt;}
.y2b6{bottom:663.215352pt;}
.y2f0{bottom:663.226683pt;}
.y267{bottom:663.238014pt;}
.y2bb{bottom:663.238017pt;}
.y2f5{bottom:663.249348pt;}
.y26c{bottom:663.260679pt;}
.y2fa{bottom:663.272013pt;}
.y405{bottom:663.430543pt;}
.y488{bottom:663.430706pt;}
.y4af{bottom:663.634720pt;}
.y446{bottom:663.770528pt;}
.y7c{bottom:665.480306pt;}
.y10{bottom:666.187907pt;}
.y229{bottom:666.302938pt;}
.y48{bottom:667.480306pt;}
.yb1{bottom:668.653564pt;}
.ye2{bottom:668.653605pt;}
.y16e{bottom:669.104217pt;}
.y2b5{bottom:676.543352pt;}
.y2ef{bottom:676.554683pt;}
.y266{bottom:676.566014pt;}
.y2ba{bottom:676.566017pt;}
.y2f4{bottom:676.577348pt;}
.y26b{bottom:676.588679pt;}
.y2f9{bottom:676.600013pt;}
.y270{bottom:676.611344pt;}
.y404{bottom:676.758543pt;}
.y487{bottom:676.758706pt;}
.y4ae{bottom:676.962720pt;}
.y445{bottom:677.098528pt;}
.y177{bottom:680.768100pt;}
.y7b{bottom:682.146973pt;}
.yf{bottom:682.854574pt;}
.y47{bottom:684.146973pt;}
.yb0{bottom:685.320231pt;}
.y16f{bottom:685.412349pt;}
.y1a7{bottom:686.823359pt;}
.y1a3{bottom:687.054267pt;}
.y2b4{bottom:689.871352pt;}
.y2ee{bottom:689.882683pt;}
.y265{bottom:689.894014pt;}
.y2b9{bottom:689.894017pt;}
.y2f3{bottom:689.905348pt;}
.y26a{bottom:689.916679pt;}
.y2be{bottom:689.916682pt;}
.y2f8{bottom:689.928013pt;}
.y26f{bottom:689.939344pt;}
.y403{bottom:690.086543pt;}
.y486{bottom:690.086706pt;}
.y4ad{bottom:690.290720pt;}
.y444{bottom:690.426528pt;}
.y11b{bottom:697.022949pt;}
.y176{bottom:698.197788pt;}
.y7a{bottom:698.813639pt;}
.ye{bottom:699.521240pt;}
.y1a2{bottom:700.382267pt;}
.y46{bottom:700.813639pt;}
.y3b1{bottom:701.085693pt;}
.y170{bottom:701.720480pt;}
.yaf{bottom:701.986898pt;}
.ye1{bottom:701.986928pt;}
.y402{bottom:703.414543pt;}
.y485{bottom:703.414706pt;}
.y4ac{bottom:703.618720pt;}
.y443{bottom:703.754528pt;}
.y2ad{bottom:706.486020pt;}
.y25d{bottom:706.497350pt;}
.y2b2{bottom:706.508685pt;}
.y262{bottom:706.520015pt;}
.y175{bottom:707.956380pt;}
.y1a6{bottom:708.526693pt;}
.y1a1{bottom:713.710267pt;}
.y79{bottom:715.480306pt;}
.yd{bottom:716.187907pt;}
.y401{bottom:716.742543pt;}
.y484{bottom:716.742706pt;}
.y4ab{bottom:716.946720pt;}
.y442{bottom:717.082528pt;}
.y45{bottom:717.480306pt;}
.y171{bottom:718.028612pt;}
.yae{bottom:718.653564pt;}
.ye0{bottom:718.653595pt;}
.y2ac{bottom:719.814020pt;}
.y25c{bottom:719.825350pt;}
.y2b1{bottom:719.836685pt;}
.y261{bottom:719.848015pt;}
.y179{bottom:723.182081pt;}
.y400{bottom:730.070543pt;}
.y483{bottom:730.070706pt;}
.y4aa{bottom:730.274720pt;}
.y441{bottom:730.410528pt;}
.y78{bottom:732.146973pt;}
.y3ad{bottom:732.262695pt;}
.yc{bottom:732.854574pt;}
.y178{bottom:732.940674pt;}
.y2ab{bottom:733.142020pt;}
.y25b{bottom:733.153350pt;}
.y2b0{bottom:733.164685pt;}
.y260{bottom:733.176015pt;}
.y44{bottom:734.146973pt;}
.yad{bottom:735.320231pt;}
.ydf{bottom:735.320262pt;}
.y39f{bottom:742.717499pt;}
.y3a0{bottom:742.723571pt;}
.y3a1{bottom:742.729642pt;}
.y3a2{bottom:742.735713pt;}
.y3a3{bottom:742.741785pt;}
.y3a4{bottom:742.747856pt;}
.y3ff{bottom:743.398543pt;}
.y482{bottom:743.398706pt;}
.y4a9{bottom:743.602720pt;}
.y396{bottom:743.701074pt;}
.y397{bottom:743.701075pt;}
.y398{bottom:743.701077pt;}
.y440{bottom:743.738528pt;}
.y390{bottom:744.035005pt;}
.y3ab{bottom:744.441796pt;}
.y392{bottom:744.715009pt;}
.y388{bottom:745.024651pt;}
.y389{bottom:745.030723pt;}
.y38a{bottom:745.036795pt;}
.y38b{bottom:745.042867pt;}
.y38c{bottom:745.048939pt;}
.y394{bottom:745.388942pt;}
.y39c{bottom:745.407159pt;}
.y3a6{bottom:745.443588pt;}
.y38e{bottom:745.722872pt;}
.y39d{bottom:745.741089pt;}
.y39e{bottom:745.747161pt;}
.y2aa{bottom:746.470020pt;}
.y25a{bottom:746.481350pt;}
.y2af{bottom:746.492685pt;}
.y25f{bottom:746.504015pt;}
.y264{bottom:746.526680pt;}
.y395{bottom:746.730736pt;}
.y3a8{bottom:746.785382pt;}
.y38f{bottom:747.070738pt;}
.y3a9{bottom:747.465386pt;}
.y3aa{bottom:747.471458pt;}
.y391{bottom:747.750742pt;}
.y387{bottom:748.060384pt;}
.y393{bottom:748.424675pt;}
.y399{bottom:748.424678pt;}
.y39a{bottom:748.430749pt;}
.y39b{bottom:748.436820pt;}
.y3a5{bottom:748.479321pt;}
.y38d{bottom:748.758605pt;}
.y77{bottom:748.813639pt;}
.yb{bottom:749.521240pt;}
.y3a7{bottom:749.827187pt;}
.y43{bottom:750.813639pt;}
.yac{bottom:751.986898pt;}
.yde{bottom:751.986928pt;}
.y3fe{bottom:756.726543pt;}
.y481{bottom:756.726706pt;}
.y4a8{bottom:756.930720pt;}
.y43f{bottom:757.066528pt;}
.y1a0{bottom:757.515218pt;}
.y2a9{bottom:759.798020pt;}
.y259{bottom:759.809350pt;}
.y2ae{bottom:759.820685pt;}
.y25e{bottom:759.832015pt;}
.y2b3{bottom:759.843350pt;}
.y263{bottom:759.854680pt;}
.y37e{bottom:764.432373pt;}
.y76{bottom:765.480306pt;}
.ya{bottom:766.187907pt;}
.y42{bottom:767.480306pt;}
.yab{bottom:768.653564pt;}
.ydd{bottom:768.653595pt;}
.y3fd{bottom:770.054543pt;}
.y480{bottom:770.054706pt;}
.y4a7{bottom:770.258720pt;}
.y43e{bottom:770.394528pt;}
.y251{bottom:776.412687pt;}
.y256{bottom:776.435352pt;}
.y169{bottom:780.340820pt;}
.y75{bottom:782.146973pt;}
.y3fc{bottom:783.382543pt;}
.y47f{bottom:783.382706pt;}
.y4a6{bottom:783.586720pt;}
.y43d{bottom:783.722528pt;}
.y41{bottom:784.146973pt;}
.yaa{bottom:785.320231pt;}
.ydc{bottom:785.320262pt;}
.y37f{bottom:787.795376pt;}
.y197{bottom:788.693359pt;}
.y250{bottom:789.740687pt;}
.y255{bottom:789.763352pt;}
.y3fb{bottom:796.710543pt;}
.y47e{bottom:796.710706pt;}
.y4a5{bottom:796.914720pt;}
.y43c{bottom:797.050528pt;}
.y74{bottom:798.813639pt;}
.y40{bottom:800.813639pt;}
.ya9{bottom:801.986898pt;}
.ydb{bottom:801.986928pt;}
.y24f{bottom:803.068687pt;}
.y254{bottom:803.091352pt;}
.y9{bottom:805.461469pt;}
.y3fa{bottom:810.038543pt;}
.y47d{bottom:810.038706pt;}
.y4a4{bottom:810.242720pt;}
.y43b{bottom:810.378528pt;}
.y380{bottom:811.158379pt;}
.y165{bottom:811.517333pt;}
.y73{bottom:815.480306pt;}
.y24e{bottom:816.396687pt;}
.y253{bottom:816.419352pt;}
.y258{bottom:816.442017pt;}
.y3f{bottom:817.480306pt;}
.ya8{bottom:818.653564pt;}
.yda{bottom:818.653595pt;}
.y8{bottom:818.789469pt;}
.y15d{bottom:820.536593pt;}
.y14f{bottom:821.098857pt;}
.y163{bottom:821.114621pt;}
.y157{bottom:821.403635pt;}
.y151{bottom:821.692649pt;}
.y15b{bottom:821.997428pt;}
.y14b{bottom:822.265422pt;}
.y155{bottom:822.270677pt;}
.y14d{bottom:822.559691pt;}
.y15f{bottom:822.869724pt;}
.y153{bottom:823.148229pt;}
.y15c{bottom:823.163993pt;}
.y3f9{bottom:823.366543pt;}
.y47c{bottom:823.366706pt;}
.y4a3{bottom:823.570720pt;}
.y43a{bottom:823.706528pt;}
.y14e{bottom:823.726257pt;}
.y162{bottom:823.742021pt;}
.y156{bottom:824.031035pt;}
.y161{bottom:824.036290pt;}
.y150{bottom:824.320049pt;}
.y158{bottom:824.614318pt;}
.y159{bottom:824.619573pt;}
.y15a{bottom:824.624827pt;}
.y14a{bottom:824.892822pt;}
.y154{bottom:824.898077pt;}
.y14c{bottom:825.187091pt;}
.y15e{bottom:825.497124pt;}
.y152{bottom:825.775629pt;}
.y160{bottom:826.663690pt;}
.y24d{bottom:829.724687pt;}
.y252{bottom:829.747352pt;}
.y257{bottom:829.770017pt;}
.y18c{bottom:830.897705pt;}
.y72{bottom:832.146973pt;}
.y3e{bottom:834.146973pt;}
.y381{bottom:834.521382pt;}
.ya7{bottom:835.320231pt;}
.yd9{bottom:835.320262pt;}
.y3f8{bottom:836.694543pt;}
.y47b{bottom:836.694706pt;}
.y4a2{bottom:836.898720pt;}
.y439{bottom:837.034528pt;}
.y143{bottom:838.629964pt;}
.y18d{bottom:843.704196pt;}
.y246{bottom:846.339355pt;}
.y24b{bottom:846.362020pt;}
.y71{bottom:848.813639pt;}
.y3f7{bottom:850.022543pt;}
.y47a{bottom:850.022706pt;}
.y4a1{bottom:850.226720pt;}
.y438{bottom:850.362528pt;}
.y3d{bottom:850.813639pt;}
.ya6{bottom:851.986898pt;}
.yd8{bottom:851.986928pt;}
.y3b0{bottom:854.281087pt;}
.y3ac{bottom:854.983561pt;}
.y18e{bottom:856.503650pt;}
.y7{bottom:856.656169pt;}
.y144{bottom:857.373835pt;}
.y382{bottom:857.884385pt;}
.y245{bottom:859.667355pt;}
.y24a{bottom:859.690020pt;}
.y3f6{bottom:863.350543pt;}
.y479{bottom:863.350706pt;}
.y4a0{bottom:863.554720pt;}
.y437{bottom:863.690528pt;}
.y3af{bottom:864.984782pt;}
.y70{bottom:865.480306pt;}
.y167{bottom:866.252930pt;}
.y3c{bottom:867.480306pt;}
.ya5{bottom:868.653564pt;}
.yd7{bottom:868.653595pt;}
.y18f{bottom:869.310141pt;}
.y196{bottom:871.588542pt;}
.y244{bottom:872.995355pt;}
.y249{bottom:873.018020pt;}
.y145{bottom:876.117706pt;}
.y3f5{bottom:876.678543pt;}
.y478{bottom:876.678706pt;}
.y49f{bottom:876.882720pt;}
.y436{bottom:877.018528pt;}
.y383{bottom:881.247387pt;}
.y190{bottom:882.109595pt;}
.y6f{bottom:882.146973pt;}
.y3b{bottom:884.146973pt;}
.ya4{bottom:885.320231pt;}
.yd6{bottom:885.320262pt;}
.y243{bottom:886.323355pt;}
.y248{bottom:886.346020pt;}
.y164{bottom:886.896159pt;}
.y3f4{bottom:890.006543pt;}
.y477{bottom:890.006706pt;}
.y49e{bottom:890.210720pt;}
.y435{bottom:890.346528pt;}
.y146{bottom:894.861577pt;}
.y191{bottom:894.916085pt;}
.y6{bottom:896.377441pt;}
.y6e{bottom:898.813639pt;}
.y242{bottom:899.651355pt;}
.y247{bottom:899.674020pt;}
.y24c{bottom:899.696685pt;}
.y3a{bottom:900.813639pt;}
.ya3{bottom:901.986898pt;}
.yd5{bottom:901.986928pt;}
.y3f3{bottom:903.334543pt;}
.y476{bottom:903.334706pt;}
.y49d{bottom:903.538720pt;}
.y434{bottom:903.674528pt;}
.y384{bottom:904.610390pt;}
.y19c{bottom:905.047043pt;}
.y192{bottom:907.715539pt;}
.y147{bottom:913.605448pt;}
.y19b{bottom:914.990493pt;}
.y6d{bottom:915.480306pt;}
.y3f2{bottom:916.662543pt;}
.y475{bottom:916.662706pt;}
.y49c{bottom:916.866720pt;}
.y433{bottom:917.002528pt;}
.y39{bottom:917.480306pt;}
.ya2{bottom:918.653564pt;}
.yd4{bottom:918.653595pt;}
.y193{bottom:920.522030pt;}
.y241{bottom:924.618688pt;}
.y19a{bottom:924.838997pt;}
.y385{bottom:927.973393pt;}
.y3f1{bottom:929.990543pt;}
.y474{bottom:929.990706pt;}
.y49b{bottom:930.194720pt;}
.y432{bottom:930.330528pt;}
.y6c{bottom:932.146973pt;}
.y148{bottom:932.349319pt;}
.y194{bottom:933.328521pt;}
.y38{bottom:934.146973pt;}
.y199{bottom:934.687500pt;}
.ya1{bottom:935.320231pt;}
.yd3{bottom:935.320262pt;}
.y3f0{bottom:943.318543pt;}
.y473{bottom:943.318706pt;}
.y49a{bottom:943.522720pt;}
.y431{bottom:943.658528pt;}
.y195{bottom:946.135011pt;}
.y240{bottom:946.322021pt;}
.y19f{bottom:946.704035pt;}
.y37{bottom:950.813639pt;}
.y149{bottom:951.093190pt;}
.y386{bottom:951.330324pt;}
.ya0{bottom:951.986898pt;}
.yd2{bottom:951.986928pt;}
.y19e{bottom:956.552538pt;}
.y5{bottom:956.561849pt;}
.y3ef{bottom:956.646543pt;}
.y472{bottom:956.646706pt;}
.y499{bottom:956.850720pt;}
.y430{bottom:956.986528pt;}
.y6b{bottom:965.480306pt;}
.y19d{bottom:966.401042pt;}
.y36{bottom:967.480306pt;}
.y9f{bottom:968.653564pt;}
.yd1{bottom:968.653595pt;}
.y32a{bottom:968.977210pt;}
.y23f{bottom:968.980306pt;}
.y168{bottom:969.157878pt;}
.y3ee{bottom:969.974543pt;}
.y471{bottom:969.974706pt;}
.y498{bottom:970.178720pt;}
.y42f{bottom:970.314528pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y35{bottom:1002.206543pt;}
.y9e{bottom:1002.206706pt;}
.h2b{height:14.460077pt;}
.h2d{height:14.467491pt;}
.h15{height:14.605379pt;}
.h14{height:14.608344pt;}
.h2f{height:16.002421pt;}
.h2e{height:16.010575pt;}
.h16{height:16.163291pt;}
.h18{height:16.166256pt;}
.h31{height:16.878677pt;}
.h32{height:16.885720pt;}
.h30{height:17.304006pt;}
.h19{height:17.481190pt;}
.h35{height:18.679005pt;}
.h33{height:18.686789pt;}
.h1a{height:19.382901pt;}
.h1b{height:19.394391pt;}
.h24{height:19.561563pt;}
.h1d{height:21.450480pt;}
.h12{height:21.589690pt;}
.h27{height:21.648045pt;}
.h25{height:21.661019pt;}
.h1f{height:22.093586pt;}
.h11{height:22.131024pt;}
.h13{height:22.290240pt;}
.h1e{height:23.776413pt;}
.h28{height:23.995477pt;}
.h22{height:24.450285pt;}
.h21{height:24.473267pt;}
.h23{height:27.101664pt;}
.h36{height:27.500872pt;}
.hc{height:29.448532pt;}
.h2{height:37.376000pt;}
.h4{height:39.712000pt;}
.hb{height:42.069333pt;}
.hf{height:47.253333pt;}
.h29{height:47.613801pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h9{height:49.493333pt;}
.hd{height:52.448000pt;}
.h8{height:52.746667pt;}
.he{height:54.560000pt;}
.h2a{height:55.978629pt;}
.h10{height:55.978667pt;}
.h7{height:57.658667pt;}
.ha{height:63.296000pt;}
.h6{height:75.605333pt;}
.h2c{height:114.477336pt;}
.h17{height:165.962667pt;}
.h1c{height:181.831991pt;}
.h20{height:184.422668pt;}
.h26{height:188.788005pt;}
.h34{height:244.353333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w3{width:479.998657pt;}
.w2{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7e{left:7.314921pt;}
.x7d{left:11.857849pt;}
.x3{left:68.031469pt;}
.x9{left:69.996800pt;}
.x4{left:75.717199pt;}
.x6e{left:76.643066pt;}
.x75{left:77.608536pt;}
.x13{left:79.641403pt;}
.x74{left:81.442139pt;}
.x5{left:83.151467pt;}
.x73{left:84.930339pt;}
.x82{left:85.825865pt;}
.x8{left:86.929867pt;}
.x103{left:90.709469pt;}
.x12{left:92.775736pt;}
.x88{left:94.196802pt;}
.x72{left:95.394938pt;}
.x81{left:96.387065pt;}
.x90{left:100.021875pt;}
.x14{left:102.504933pt;}
.x91{left:106.912147pt;}
.x15{left:109.292757pt;}
.x92{left:113.802420pt;}
.x16{left:116.080580pt;}
.x93{left:120.692692pt;}
.x17{left:122.868404pt;}
.x94{left:127.582965pt;}
.x18{left:129.656227pt;}
.x95{left:134.478441pt;}
.x19{left:136.444051pt;}
.x96{left:141.368714pt;}
.x1a{left:143.231874pt;}
.x97{left:148.258986pt;}
.x1b{left:150.019698pt;}
.x98{left:155.149259pt;}
.x1c{left:156.807521pt;}
.xca{left:161.048796pt;}
.x99{left:162.039531pt;}
.x1d{left:163.595345pt;}
.xcb{left:167.784862pt;}
.x9a{left:168.929804pt;}
.x1e{left:170.383168pt;}
.xcc{left:174.520928pt;}
.x9b{left:175.820077pt;}
.x1f{left:177.170991pt;}
.xcd{left:181.256994pt;}
.x9c{left:182.710349pt;}
.x20{left:183.958815pt;}
.xce{left:187.993060pt;}
.x9d{left:189.600622pt;}
.x21{left:190.746638pt;}
.xcf{left:194.729126pt;}
.x9e{left:196.490894pt;}
.x22{left:197.534462pt;}
.xd0{left:201.465192pt;}
.x9f{left:203.381167pt;}
.x23{left:204.322285pt;}
.xfd{left:205.557673pt;}
.xd1{left:208.201258pt;}
.x24{left:211.110109pt;}
.xd2{left:214.937324pt;}
.x25{left:217.897932pt;}
.xd3{left:221.673390pt;}
.x26{left:224.685756pt;}
.x8d{left:226.030132pt;}
.xd4{left:228.409456pt;}
.xc8{left:230.386007pt;}
.x27{left:231.473579pt;}
.x6f{left:233.644267pt;}
.xd5{left:235.145522pt;}
.x8a{left:236.108801pt;}
.x28{left:238.261403pt;}
.xd6{left:241.881588pt;}
.x29{left:245.049226pt;}
.xb{left:248.570272pt;}
.x2a{left:251.837050pt;}
.xd7{left:255.353720pt;}
.x7c{left:257.528202pt;}
.x2b{left:258.624873pt;}
.xd8{left:262.089786pt;}
.x2c{left:265.412697pt;}
.xd{left:267.388848pt;}
.xd9{left:268.825852pt;}
.x2d{left:272.200520pt;}
.xda{left:275.561918pt;}
.x7b{left:277.415202pt;}
.x2e{left:278.988343pt;}
.xdb{left:282.297984pt;}
.x2f{left:285.776167pt;}
.xc{left:288.967997pt;}
.x30{left:292.563990pt;}
.xdc{left:295.770116pt;}
.x31{left:299.351814pt;}
.xdd{left:302.506182pt;}
.x32{left:306.139637pt;}
.xde{left:309.242248pt;}
.x33{left:312.927461pt;}
.x76{left:315.480250pt;}
.x78{left:318.674352pt;}
.x34{left:319.715284pt;}
.xdf{left:322.714380pt;}
.x35{left:326.503108pt;}
.xa0{left:327.416481pt;}
.xe0{left:329.450446pt;}
.xc7{left:331.431341pt;}
.x77{left:332.349609pt;}
.x36{left:333.290931pt;}
.xa1{left:334.306753pt;}
.xe1{left:336.186512pt;}
.x37{left:340.078755pt;}
.xa2{left:341.197026pt;}
.xe2{left:342.922578pt;}
.x38{left:346.866578pt;}
.xa3{left:348.087298pt;}
.xe3{left:349.658644pt;}
.xfe{left:351.449280pt;}
.x39{left:353.654402pt;}
.xa4{left:354.982775pt;}
.xe4{left:356.394710pt;}
.x3a{left:360.442225pt;}
.xa5{left:361.873047pt;}
.xe5{left:363.130776pt;}
.x3b{left:367.230049pt;}
.xa6{left:368.763320pt;}
.x8e{left:369.820531pt;}
.x8f{left:372.751465pt;}
.x3c{left:374.017872pt;}
.xa7{left:375.653592pt;}
.x80{left:377.218263pt;}
.x3d{left:380.805695pt;}
.x8b{left:383.011467pt;}
.x3e{left:387.593519pt;}
.x83{left:389.123098pt;}
.xe6{left:390.075040pt;}
.x8c{left:391.012806pt;}
.x3f{left:394.386596pt;}
.x7f{left:396.207072pt;}
.xc9{left:399.137980pt;}
.x40{left:401.174420pt;}
.x70{left:403.130941pt;}
.x6{left:408.191455pt;}
.xa8{left:410.110159pt;}
.x41{left:414.755320pt;}
.xa9{left:417.000432pt;}
.x42{left:421.543144pt;}
.x7{left:423.298121pt;}
.x43{left:428.330967pt;}
.xaa{left:430.780977pt;}
.xe{left:435.904948pt;}
.x84{left:437.099782pt;}
.x44{left:441.911868pt;}
.xf{left:443.873615pt;}
.x87{left:446.616252pt;}
.x45{left:448.699691pt;}
.xab{left:451.451794pt;}
.x46{left:455.487515pt;}
.xe7{left:457.435700pt;}
.xac{left:458.342067pt;}
.xff{left:460.490984pt;}
.x47{left:462.275338pt;}
.xe8{left:464.171766pt;}
.xad{left:465.232339pt;}
.x48{left:469.063162pt;}
.xe9{left:470.907832pt;}
.xae{left:472.122612pt;}
.x49{left:475.850985pt;}
.xea{left:477.643898pt;}
.xaf{left:479.018089pt;}
.x4a{left:482.638809pt;}
.xeb{left:484.379964pt;}
.xb0{left:485.908361pt;}
.x4b{left:489.426632pt;}
.xec{left:491.116030pt;}
.xb1{left:492.798634pt;}
.x4c{left:496.214456pt;}
.xed{left:497.852096pt;}
.xb2{left:499.688906pt;}
.x4d{left:503.002279pt;}
.xee{left:504.588162pt;}
.xb3{left:506.579179pt;}
.x4e{left:509.790103pt;}
.xef{left:511.324228pt;}
.xb4{left:513.469451pt;}
.x4f{left:516.577926pt;}
.xf0{left:518.060294pt;}
.xb5{left:520.359724pt;}
.x50{left:523.365749pt;}
.xf1{left:524.796360pt;}
.xb6{left:527.249996pt;}
.x51{left:530.153573pt;}
.xf2{left:531.532426pt;}
.xb7{left:534.140269pt;}
.x52{left:536.941396pt;}
.xf3{left:538.268492pt;}
.xb8{left:541.030541pt;}
.x53{left:543.734474pt;}
.xf4{left:545.004558pt;}
.xb9{left:547.920814pt;}
.x54{left:550.522297pt;}
.xf5{left:551.740624pt;}
.xba{left:554.811087pt;}
.x55{left:557.315374pt;}
.xf6{left:558.476690pt;}
.xbb{left:561.701359pt;}
.x79{left:562.928459pt;}
.x56{left:564.103198pt;}
.xf7{left:565.212756pt;}
.x71{left:568.236247pt;}
.x57{left:570.891021pt;}
.xf8{left:571.948822pt;}
.xbc{left:575.481904pt;}
.x58{left:577.678845pt;}
.xf9{left:578.684888pt;}
.x85{left:580.980265pt;}
.xbd{left:582.372177pt;}
.x101{left:583.507060pt;}
.x59{left:584.471922pt;}
.xfa{left:585.420954pt;}
.xbe{left:589.267653pt;}
.x5a{left:591.259745pt;}
.xfb{left:592.150946pt;}
.xbf{left:596.157926pt;}
.x5b{left:598.047569pt;}
.x102{left:600.318020pt;}
.xc0{left:603.048198pt;}
.x5c{left:604.835392pt;}
.xc1{left:609.938471pt;}
.x5d{left:611.628469pt;}
.x10{left:615.633057pt;}
.xc2{left:616.828743pt;}
.x5e{left:618.416293pt;}
.x89{left:623.670817pt;}
.x5f{left:625.204116pt;}
.xa{left:629.053996pt;}
.xc3{left:630.609289pt;}
.x60{left:631.991940pt;}
.x100{left:634.681600pt;}
.x86{left:635.805829pt;}
.xc4{left:637.499561pt;}
.x61{left:638.779763pt;}
.x11{left:640.957479pt;}
.xc5{left:644.389834pt;}
.x62{left:645.567587pt;}
.x1{left:647.307210pt;}
.xc6{left:651.280106pt;}
.x63{left:652.355410pt;}
.x7a{left:658.103475pt;}
.x64{left:659.143234pt;}
.xfc{left:661.475342pt;}
.x65{left:665.931057pt;}
.x2{left:671.546549pt;}
.x66{left:672.718881pt;}
.x67{left:679.506704pt;}
.x68{left:686.294528pt;}
.x69{left:693.082351pt;}
.x6a{left:699.870175pt;}
.x6b{left:706.657998pt;}
.x6c{left:713.445821pt;}
.x6d{left:720.233645pt;}
}




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