
    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_279d1097988d039e1fb55a7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_e35e1b46c8b2256d666d6037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_c59bed4573a72e1f13a4e0d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_74066eaf581d7718d83421f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_0f0a6f815e7b119f07579962.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_6785db2f3d0a460e1e5ec98e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.330566;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_808232309f124b13657e50cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719727;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_055f02e314a3b0e317d617d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_a2789c2329ff2d3783fbaa3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_808232309f124b13657e50cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.719727;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_808232309f124b13657e50cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719727;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_808232309f124b13657e50cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719727;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_16931dbaaa6f58a04ded9f37.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_808232309f124b13657e50cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.719727;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_244556b2bf574d9142ab259a.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_808232309f124b13657e50cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.719727;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_808232309f124b13657e50cf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.719727;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_fa7c41ffba4cda136a144237.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.330566;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_808232309f124b13657e50cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.719727;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;}
.m38{transform:matrix(0.000000,-0.249756,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249756,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249756,0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,-0.250189,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250189,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250189,0.250000,0.000000,0,0);}
.m41{transform:matrix(0.000000,-0.250268,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250268,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250268,0.250000,0.000000,0,0);}
.m3d{transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250364,0.250000,0.000000,0,0);}
.m3b{transform:matrix(0.000000,-0.250368,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250368,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250368,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189515,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.194729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194729,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m36{transform:matrix(0.239141,0.000000,-0.079706,0.236954,0,0);-ms-transform:matrix(0.239141,0.000000,-0.079706,0.236954,0,0);-webkit-transform:matrix(0.239141,0.000000,-0.079706,0.236954,0,0);}
.m28{transform:matrix(0.241900,0.000000,-0.080625,0.236642,0,0);-ms-transform:matrix(0.241900,0.000000,-0.080625,0.236642,0,0);-webkit-transform:matrix(0.241900,0.000000,-0.080625,0.236642,0,0);}
.m22{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,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);}
.m29{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250244,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250616,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251838,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252308,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252463,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252724,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253513,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253560,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253931,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254346,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254762,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.255181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255181,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255257,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255443,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255849,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256514,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256812,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257564,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.258512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258512,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258711,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.259141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259141,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259218,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259327,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260581,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.260719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260719,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.260810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260810,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.264354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264354,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265204,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.266043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266043,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267711,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268552,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.268902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268902,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.268982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268982,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269092,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-79.920000px;}
.v2{vertical-align:-75.600000px;}
.v13{vertical-align:-54.893323px;}
.v7{vertical-align:-50.697695px;}
.v6{vertical-align:-47.906199px;}
.v12{vertical-align:-44.994314px;}
.ve{vertical-align:-43.475976px;}
.v10{vertical-align:-33.240276px;}
.vb{vertical-align:-30.240000px;}
.v8{vertical-align:-16.610829px;}
.vf{vertical-align:-11.303040px;}
.v1{vertical-align:-9.360000px;}
.v9{vertical-align:-3.803823px;}
.v11{vertical-align:-1.146419px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.360000px;}
.v4{vertical-align:16.676787px;}
.v3{vertical-align:30.240000px;}
.va{vertical-align:39.600000px;}
.vd{vertical-align:41.760000px;}
.lsd1{letter-spacing:-1.022836px;}
.lsd4{letter-spacing:-1.022561px;}
.lsc4{letter-spacing:-1.020572px;}
.lsd8{letter-spacing:-1.020537px;}
.lsd3{letter-spacing:-0.909243px;}
.lsdb{letter-spacing:-0.908740px;}
.lsd7{letter-spacing:-0.907443px;}
.ls9{letter-spacing:-0.870000px;}
.ls35{letter-spacing:-0.828000px;}
.ls51{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.720000px;}
.lsd0{letter-spacing:-0.585634px;}
.lsd2{letter-spacing:-0.585477px;}
.lsda{letter-spacing:-0.585153px;}
.lsc3{letter-spacing:-0.584338px;}
.lsd6{letter-spacing:-0.584318px;}
.ls52{letter-spacing:-0.457800px;}
.lsc0{letter-spacing:-0.414600px;}
.ls2f{letter-spacing:-0.262200px;}
.lsc7{letter-spacing:-0.214647px;}
.ls16{letter-spacing:-0.152400px;}
.ls33{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.089400px;}
.ls9b{letter-spacing:-0.072684px;}
.lsba{letter-spacing:-0.072205px;}
.ls83{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.152640px;}
.ls27{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.262200px;}
.ls26{letter-spacing:0.270720px;}
.ls10{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls45{letter-spacing:0.332640px;}
.ls48{letter-spacing:0.404719px;}
.ls46{letter-spacing:0.406080px;}
.ls1c{letter-spacing:0.567600px;}
.ls15{letter-spacing:0.648000px;}
.lsce{letter-spacing:0.981815px;}
.lscf{letter-spacing:0.982909px;}
.lscd{letter-spacing:0.983076px;}
.lsd9{letter-spacing:1.378667px;}
.lsd5{letter-spacing:1.381402px;}
.ls3{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.880000px;}
.lsd{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.760000px;}
.ls44{letter-spacing:6.480000px;}
.lsb{letter-spacing:7.200000px;}
.lsc{letter-spacing:7.344000px;}
.ls2b{letter-spacing:12.220669px;}
.ls5f{letter-spacing:12.336469px;}
.lsa8{letter-spacing:13.680000px;}
.lse{letter-spacing:14.400000px;}
.ls96{letter-spacing:14.687327px;}
.lsb5{letter-spacing:14.736951px;}
.lsa0{letter-spacing:14.834693px;}
.ls81{letter-spacing:14.982581px;}
.ls77{letter-spacing:15.094254px;}
.lsa7{letter-spacing:15.120000px;}
.lsa9{letter-spacing:15.840000px;}
.lsdc{letter-spacing:32.849280px;}
.ls28{letter-spacing:40.223402px;}
.ls61{letter-spacing:44.640000px;}
.ls5b{letter-spacing:48.308640px;}
.ls5a{letter-spacing:49.367782px;}
.ls86{letter-spacing:58.731934px;}
.ls85{letter-spacing:59.848958px;}
.lsa3{letter-spacing:62.040978px;}
.ls63{letter-spacing:63.442104px;}
.ls29{letter-spacing:68.520000px;}
.lsf{letter-spacing:68.544000px;}
.lsc1{letter-spacing:68.887065px;}
.lsa2{letter-spacing:72.322722px;}
.ls24{letter-spacing:83.624376px;}
.ls25{letter-spacing:87.587064px;}
.ls73{letter-spacing:92.474676px;}
.ls22{letter-spacing:94.521768px;}
.ls21{letter-spacing:98.501549px;}
.ls23{letter-spacing:100.815449px;}
.lsbf{letter-spacing:106.650549px;}
.ls4a{letter-spacing:108.847276px;}
.ls5e{letter-spacing:110.335790px;}
.ls2e{letter-spacing:112.620805px;}
.lsc6{letter-spacing:113.305449px;}
.ls56{letter-spacing:114.200422px;}
.ls2d{letter-spacing:114.783391px;}
.ls2c{letter-spacing:115.980992px;}
.ls6d{letter-spacing:120.038095px;}
.ls72{letter-spacing:120.336400px;}
.ls1e{letter-spacing:121.750433px;}
.ls3c{letter-spacing:127.410923px;}
.ls93{letter-spacing:127.644081px;}
.lsb2{letter-spacing:128.075354px;}
.lsc9{letter-spacing:129.726529px;}
.lscc{letter-spacing:129.902469px;}
.ls4e{letter-spacing:133.779510px;}
.ls76{letter-spacing:135.132349px;}
.ls4c{letter-spacing:137.050974px;}
.ls8a{letter-spacing:138.746110px;}
.ls64{letter-spacing:139.132637px;}
.ls80{letter-spacing:139.403142px;}
.ls70{letter-spacing:150.584569px;}
.ls6c{letter-spacing:151.479485px;}
.ls71{letter-spacing:151.777790px;}
.lsae{letter-spacing:152.518570px;}
.ls43{letter-spacing:153.007200px;}
.lsc2{letter-spacing:154.251933px;}
.ls8f{letter-spacing:155.485119px;}
.ls5d{letter-spacing:157.353974px;}
.ls7d{letter-spacing:160.781449px;}
.ls7e{letter-spacing:162.498820px;}
.ls5c{letter-spacing:166.697169px;}
.ls7b{letter-spacing:166.821857px;}
.ls91{letter-spacing:167.105213px;}
.lsb0{letter-spacing:167.669814px;}
.ls7f{letter-spacing:168.716887px;}
.lsc8{letter-spacing:170.837874px;}
.ls1a{letter-spacing:171.570449px;}
.lsb4{letter-spacing:175.718912px;}
.ls82{letter-spacing:176.178567px;}
.ls95{letter-spacing:181.615585px;}
.ls74{letter-spacing:186.560200px;}
.ls7c{letter-spacing:188.081724px;}
.ls78{letter-spacing:188.851580px;}
.ls75{letter-spacing:188.946644px;}
.ls79{letter-spacing:189.384557px;}
.lsac{letter-spacing:195.131442px;}
.ls7a{letter-spacing:196.194821px;}
.ls8d{letter-spacing:197.954499px;}
.ls92{letter-spacing:199.252175px;}
.lsb1{letter-spacing:199.925390px;}
.ls9e{letter-spacing:201.668420px;}
.lsbe{letter-spacing:205.133630px;}
.lsa1{letter-spacing:209.175133px;}
.ls4b{letter-spacing:209.373696px;}
.ls94{letter-spacing:210.164446px;}
.ls9d{letter-spacing:210.843291px;}
.lsb3{letter-spacing:210.874531px;}
.ls9c{letter-spacing:211.260331px;}
.ls6e{letter-spacing:214.839553px;}
.ls6f{letter-spacing:216.032775px;}
.lsad{letter-spacing:223.776761px;}
.ls8e{letter-spacing:226.621331px;}
.ls8c{letter-spacing:228.108012px;}
.ls88{letter-spacing:228.989873px;}
.ls99{letter-spacing:229.133455px;}
.ls68{letter-spacing:231.114769px;}
.ls65{letter-spacing:232.125561px;}
.lsb9{letter-spacing:232.536074px;}
.lsaf{letter-spacing:234.134057px;}
.ls90{letter-spacing:236.825779px;}
.ls98{letter-spacing:237.891286px;}
.ls97{letter-spacing:239.321136px;}
.ls9f{letter-spacing:240.512677px;}
.lsbb{letter-spacing:240.525987px;}
.lsbc{letter-spacing:244.254614px;}
.ls31{letter-spacing:249.040549px;}
.ls30{letter-spacing:255.341715px;}
.lsa6{letter-spacing:255.604449px;}
.ls9a{letter-spacing:267.977712px;}
.lsb6{letter-spacing:268.993753px;}
.lsb7{letter-spacing:271.716242px;}
.ls14{letter-spacing:273.483759px;}
.ls54{letter-spacing:278.350820px;}
.ls50{letter-spacing:278.751742px;}
.ls19{letter-spacing:280.476738px;}
.ls13{letter-spacing:280.768113px;}
.ls47{letter-spacing:280.775576px;}
.ls18{letter-spacing:287.586267px;}
.ls12{letter-spacing:288.460390px;}
.ls53{letter-spacing:288.886011px;}
.ls4f{letter-spacing:289.342867px;}
.ls60{letter-spacing:294.448989px;}
.ls58{letter-spacing:294.936007px;}
.ls17{letter-spacing:295.278544px;}
.lsc5{letter-spacing:300.740343px;}
.ls39{letter-spacing:302.231154px;}
.ls20{letter-spacing:303.513013px;}
.ls38{letter-spacing:312.694780px;}
.ls34{letter-spacing:316.480320px;}
.ls32{letter-spacing:318.584880px;}
.ls37{letter-spacing:321.770964px;}
.lsbd{letter-spacing:343.980571px;}
.lsb8{letter-spacing:371.856491px;}
.ls49{letter-spacing:393.120000px;}
.ls8b{letter-spacing:410.418049px;}
.ls87{letter-spacing:436.697503px;}
.lsab{letter-spacing:448.751785px;}
.ls40{letter-spacing:462.702079px;}
.ls3b{letter-spacing:467.686980px;}
.ls42{letter-spacing:469.870378px;}
.lscb{letter-spacing:473.161678px;}
.ls6a{letter-spacing:473.774337px;}
.ls6b{letter-spacing:474.881559px;}
.ls89{letter-spacing:480.261430px;}
.ls67{letter-spacing:485.953436px;}
.ls3d{letter-spacing:486.866181px;}
.ls1f{letter-spacing:493.215839px;}
.ls57{letter-spacing:493.502784px;}
.ls59{letter-spacing:494.548182px;}
.ls1d{letter-spacing:495.114593px;}
.ls55{letter-spacing:495.407086px;}
.ls62{letter-spacing:522.858813px;}
.lsa4{letter-spacing:535.001202px;}
.ls3a{letter-spacing:537.081487px;}
.ls84{letter-spacing:537.217694px;}
.ls66{letter-spacing:550.822541px;}
.ls2a{letter-spacing:554.965590px;}
.lsca{letter-spacing:624.763431px;}
.ls41{letter-spacing:633.585056px;}
.ls3e{letter-spacing:673.357549px;}
.ls4d{letter-spacing:683.327043px;}
.ls69{letter-spacing:685.696802px;}
.lsaa{letter-spacing:733.453383px;}
.ls3f{letter-spacing:844.934232px;}
.lsa5{letter-spacing:864.834876px;}
.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;}
}
.ws43{word-spacing:-427.956454px;}
.ws2d{word-spacing:-318.650980px;}
.ws34{word-spacing:-316.546420px;}
.ws97{word-spacing:-56.985708px;}
.ws5{word-spacing:-48.000000px;}
.ws59{word-spacing:-44.842885px;}
.ws6b{word-spacing:-35.566636px;}
.ws12{word-spacing:-24.914224px;}
.ws9c{word-spacing:-21.735739px;}
.wsa7{word-spacing:-21.592528px;}
.ws99{word-spacing:-21.519819px;}
.ws80{word-spacing:-21.453880px;}
.ws83{word-spacing:-21.295156px;}
.ws16{word-spacing:-17.127600px;}
.ws17{word-spacing:-16.865400px;}
.ws3{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.712400px;}
.ws0{word-spacing:-16.560000px;}
.ws84{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.407600px;}
.ws28{word-spacing:-16.297800px;}
.wsae{word-spacing:-16.145400px;}
.ws29{word-spacing:-15.840000px;}
.wsb4{word-spacing:-15.768000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-10.350600px;}
.wsc0{word-spacing:-9.777385px;}
.wsc3{word-spacing:-9.774755px;}
.wsc8{word-spacing:-9.769347px;}
.wsb7{word-spacing:-9.755739px;}
.ws31{word-spacing:-0.066100px;}
.ws1c{word-spacing:-0.066097px;}
.ws21{word-spacing:-0.065049px;}
.ws24{word-spacing:-0.064844px;}
.ws58{word-spacing:-0.046862px;}
.ws6{word-spacing:0.000000px;}
.ws42{word-spacing:2.928460px;}
.ws22{word-spacing:12.944847px;}
.ws7a{word-spacing:13.532813px;}
.ws4c{word-spacing:16.034394px;}
.ws1e{word-spacing:16.606012px;}
.ws32{word-spacing:16.855563px;}
.wsd{word-spacing:17.449701px;}
.ws27{word-spacing:17.507961px;}
.ws37{word-spacing:17.516566px;}
.ws56{word-spacing:17.913251px;}
.ws95{word-spacing:17.981496px;}
.ws7b{word-spacing:18.219788px;}
.ws1f{word-spacing:19.583185px;}
.wsab{word-spacing:19.712667px;}
.ws1b{word-spacing:19.842355px;}
.ws51{word-spacing:19.972044px;}
.wsf{word-spacing:20.507741px;}
.ws19{word-spacing:20.681233px;}
.ws6f{word-spacing:21.388446px;}
.ws75{word-spacing:21.482185px;}
.ws10{word-spacing:21.783292px;}
.wsb1{word-spacing:21.808727px;}
.ws9{word-spacing:22.246625px;}
.ws77{word-spacing:22.463949px;}
.ws11{word-spacing:22.582679px;}
.ws6a{word-spacing:23.085529px;}
.ws55{word-spacing:23.368038px;}
.ws78{word-spacing:24.339134px;}
.ws14{word-spacing:24.512870px;}
.ws53{word-spacing:24.574862px;}
.ws62{word-spacing:26.594716px;}
.ws52{word-spacing:27.427880px;}
.ws1a{word-spacing:27.429138px;}
.wse{word-spacing:27.730593px;}
.wsc{word-spacing:27.893083px;}
.ws18{word-spacing:28.470269px;}
.ws74{word-spacing:28.536037px;}
.ws54{word-spacing:28.553452px;}
.ws49{word-spacing:28.555307px;}
.ws13{word-spacing:28.755482px;}
.ws8b{word-spacing:29.141213px;}
.ws7c{word-spacing:29.500018px;}
.ws8{word-spacing:29.508134px;}
.wsa3{word-spacing:29.518466px;}
.ws5c{word-spacing:29.678543px;}
.ws2e{word-spacing:30.736615px;}
.ws79{word-spacing:32.346724px;}
.ws4b{word-spacing:32.720625px;}
.wsa5{word-spacing:33.876898px;}
.ws30{word-spacing:34.914753px;}
.wsac{word-spacing:37.804226px;}
.ws8e{word-spacing:38.964094px;}
.wsb2{word-spacing:39.215693px;}
.ws5e{word-spacing:39.682546px;}
.ws2f{word-spacing:40.519452px;}
.ws88{word-spacing:40.532426px;}
.ws70{word-spacing:40.664453px;}
.ws9f{word-spacing:40.994522px;}
.ws36{word-spacing:41.851712px;}
.ws57{word-spacing:42.644287px;}
.ws4a{word-spacing:43.427863px;}
.ws8f{word-spacing:45.905596px;}
.ws35{word-spacing:46.402374px;}
.ws5f{word-spacing:46.752042px;}
.wsb3{word-spacing:48.752842px;}
.ws2b{word-spacing:49.900234px;}
.ws4e{word-spacing:50.584218px;}
.wsa9{word-spacing:53.023853px;}
.wsb8{word-spacing:53.719785px;}
.wsbc{word-spacing:54.766699px;}
.wsbb{word-spacing:55.944477px;}
.ws2a{word-spacing:56.514307px;}
.ws1d{word-spacing:56.975919px;}
.ws73{word-spacing:57.520955px;}
.ws3a{word-spacing:57.563311px;}
.ws44{word-spacing:57.758539px;}
.ws39{word-spacing:58.611107px;}
.ws40{word-spacing:59.767208px;}
.ws4d{word-spacing:59.829375px;}
.ws41{word-spacing:60.233099px;}
.wsb9{word-spacing:60.917320px;}
.ws94{word-spacing:62.202656px;}
.ws5d{word-spacing:62.291593px;}
.ws69{word-spacing:63.352530px;}
.ws6c{word-spacing:65.038092px;}
.ws96{word-spacing:70.066927px;}
.ws25{word-spacing:72.625614px;}
.ws7d{word-spacing:77.830180px;}
.ws7e{word-spacing:79.546536px;}
.ws8d{word-spacing:81.136995px;}
.wsb0{word-spacing:81.192448px;}
.ws8c{word-spacing:82.315740px;}
.wsbd{word-spacing:84.930914px;}
.ws15{word-spacing:88.556109px;}
.ws50{word-spacing:90.140283px;}
.ws87{word-spacing:91.891103px;}
.ws47{word-spacing:94.823542px;}
.ws5b{word-spacing:94.840512px;}
.ws5a{word-spacing:95.420458px;}
.ws64{word-spacing:96.097010px;}
.ws63{word-spacing:96.674053px;}
.ws3c{word-spacing:98.165419px;}
.wsc5{word-spacing:98.732299px;}
.wsb6{word-spacing:98.735647px;}
.wsc7{word-spacing:98.846414px;}
.wsc2{word-spacing:98.901124px;}
.wsbf{word-spacing:98.954731px;}
.ws2c{word-spacing:99.072048px;}
.ws76{word-spacing:99.459311px;}
.ws93{word-spacing:100.303243px;}
.ws66{word-spacing:101.752038px;}
.ws92{word-spacing:102.889971px;}
.ws65{word-spacing:104.367969px;}
.ws89{word-spacing:105.159861px;}
.ws26{word-spacing:105.263794px;}
.wsa0{word-spacing:105.423916px;}
.wsb5{word-spacing:105.701364px;}
.wsc4{word-spacing:105.703165px;}
.wsc6{word-spacing:105.870385px;}
.wsc1{word-spacing:105.928983px;}
.wsbe{word-spacing:105.935904px;}
.ws90{word-spacing:106.087112px;}
.ws23{word-spacing:107.408963px;}
.ws61{word-spacing:108.043235px;}
.ws46{word-spacing:117.678111px;}
.wsa8{word-spacing:125.197043px;}
.wsba{word-spacing:125.826000px;}
.wsa6{word-spacing:126.979913px;}
.ws9a{word-spacing:127.689158px;}
.ws33{word-spacing:130.882416px;}
.ws98{word-spacing:132.014546px;}
.ws9b{word-spacing:134.136762px;}
.ws7f{word-spacing:134.767563px;}
.wsaf{word-spacing:135.088768px;}
.ws71{word-spacing:135.592187px;}
.ws81{word-spacing:135.946169px;}
.ws20{word-spacing:135.988542px;}
.ws72{word-spacing:138.562805px;}
.ws8a{word-spacing:143.579848px;}
.ws4f{word-spacing:145.347080px;}
.ws60{word-spacing:145.724980px;}
.ws82{word-spacing:149.395741px;}
.wsa2{word-spacing:154.856384px;}
.wsa4{word-spacing:156.375231px;}
.ws3f{word-spacing:157.545088px;}
.ws68{word-spacing:162.792784px;}
.ws85{word-spacing:163.600310px;}
.ws9d{word-spacing:163.868194px;}
.ws67{word-spacing:164.451227px;}
.ws45{word-spacing:172.948187px;}
.wsad{word-spacing:174.042097px;}
.ws7{word-spacing:181.510239px;}
.wsa1{word-spacing:186.224713px;}
.ws6e{word-spacing:190.771356px;}
.ws6d{word-spacing:193.769234px;}
.ws91{word-spacing:194.558524px;}
.ws86{word-spacing:194.917248px;}
.wsaa{word-spacing:224.386075px;}
.ws9e{word-spacing:235.447390px;}
.ws3d{word-spacing:268.301348px;}
.ws3b{word-spacing:294.234307px;}
.wsb{word-spacing:302.457612px;}
.ws38{word-spacing:321.232943px;}
.ws48{word-spacing:340.798352px;}
.ws3e{word-spacing:566.559314px;}
._71{margin-left:-1007.671860px;}
._7c{margin-left:-1004.435388px;}
._9f{margin-left:-946.520079px;}
._e3{margin-left:-862.569699px;}
._e4{margin-left:-704.236712px;}
._74{margin-left:-604.236215px;}
._7d{margin-left:-590.573898px;}
._37{margin-left:-532.624168px;}
._9a{margin-left:-471.359022px;}
._46{margin-left:-449.722070px;}
._91{margin-left:-413.684531px;}
._67{margin-left:-391.538113px;}
._60{margin-left:-385.403196px;}
._92{margin-left:-333.233979px;}
._80{margin-left:-325.821085px;}
._59{margin-left:-311.702523px;}
._78{margin-left:-296.080949px;}
._38{margin-left:-259.180054px;}
._3b{margin-left:-241.884236px;}
._64{margin-left:-239.376281px;}
._68{margin-left:-237.641083px;}
._5a{margin-left:-212.202793px;}
._81{margin-left:-152.743078px;}
._79{margin-left:-148.434545px;}
._94{margin-left:-139.740966px;}
._57{margin-left:-86.568158px;}
._a1{margin-left:-29.957295px;}
._e8{margin-left:-5.952798px;}
._ef{margin-left:-4.843648px;}
._62{margin-left:-3.553453px;}
._b{margin-left:-2.157120px;}
._1{margin-left:-1.008000px;}
._0{width:1.244880px;}
._2{width:2.294400px;}
._5{width:3.388080px;}
._11{width:5.137200px;}
._7{width:6.491520px;}
._24{width:7.675680px;}
._6{width:8.887680px;}
._4{width:10.123200px;}
._3{width:11.422080px;}
._8{width:12.841920px;}
._22{width:14.175360px;}
._16{width:15.448320px;}
._10{width:17.686080px;}
._1d{width:18.826560px;}
._1a{width:20.733120px;}
._36{width:21.752640px;}
._1c{width:23.486400px;}
._c{width:24.575040px;}
._9{width:25.899840px;}
._a{width:27.323280px;}
._1e{width:28.782000px;}
._33{width:29.904217px;}
._1b{width:31.000320px;}
._20{width:32.192640px;}
._21{width:33.716160px;}
._14{width:35.703360px;}
._15{width:37.742400px;}
._6a{width:38.949120px;}
._32{width:40.004316px;}
._2c{width:41.123100px;}
._99{width:43.057563px;}
._13{width:44.130240px;}
._e{width:45.984240px;}
._f{width:47.096640px;}
._d{width:48.591360px;}
._3a{width:49.686066px;}
._52{width:50.872446px;}
._27{width:52.216855px;}
._23{width:53.646960px;}
._1f{width:54.884160px;}
._12{width:56.039040px;}
._51{width:58.158720px;}
._17{width:59.895360px;}
._98{width:61.731772px;}
._29{width:63.439188px;}
._25{width:65.378880px;}
._48{width:66.733058px;}
._5c{width:68.474990px;}
._4f{width:70.772790px;}
._4d{width:71.853101px;}
._19{width:74.520000px;}
._18{width:75.646080px;}
._a8{width:77.430985px;}
._53{width:78.581733px;}
._63{width:80.795996px;}
._34{width:82.121072px;}
._5d{width:83.228538px;}
._73{width:84.456687px;}
._2b{width:86.340342px;}
._47{width:87.882678px;}
._41{width:89.131635px;}
._72{width:90.397743px;}
._4e{width:91.401877px;}
._3f{width:92.595644px;}
._b5{width:93.749673px;}
._cb{width:95.033824px;}
._c8{width:96.055387px;}
._84{width:98.165419px;}
._70{width:100.221821px;}
._77{width:101.754850px;}
._28{width:103.839586px;}
._4c{width:105.151983px;}
._f3{width:107.110080px;}
._7f{width:108.538507px;}
._ae{width:109.792180px;}
._f1{width:111.265544px;}
._c0{width:114.125671px;}
._95{width:116.545276px;}
._cd{width:118.362606px;}
._44{width:119.668597px;}
._d0{width:120.960812px;}
._31{width:122.884479px;}
._d7{width:123.892651px;}
._40{width:125.104043px;}
._2a{width:127.076417px;}
._ea{width:128.117935px;}
._f2{width:129.119824px;}
._2f{width:130.145989px;}
._7b{width:132.837029px;}
._30{width:134.568908px;}
._3d{width:135.762535px;}
._3c{width:136.894999px;}
._9d{width:138.103231px;}
._a2{width:142.744056px;}
._3e{width:144.089481px;}
._5f{width:145.124918px;}
._e9{width:147.885868px;}
._b6{width:150.520304px;}
._6c{width:151.599793px;}
._6d{width:153.891798px;}
._54{width:155.681604px;}
._dc{width:157.734795px;}
._4a{width:159.064280px;}
._b1{width:160.979367px;}
._45{width:162.364089px;}
._42{width:164.340615px;}
._bf{width:166.609696px;}
._d9{width:168.967120px;}
._55{width:171.707702px;}
._db{width:172.881000px;}
._49{width:173.947094px;}
._66{width:176.618873px;}
._56{width:180.831068px;}
._75{width:183.546544px;}
._7e{width:184.670248px;}
._de{width:188.865356px;}
._b3{width:192.246735px;}
._be{width:194.075567px;}
._6f{width:196.472234px;}
._cf{width:197.826581px;}
._e1{width:199.219135px;}
._b9{width:200.936977px;}
._96{width:203.723644px;}
._bb{width:209.611636px;}
._ba{width:210.622285px;}
._e5{width:213.272897px;}
._8e{width:217.674946px;}
._88{width:218.858458px;}
._8b{width:220.965623px;}
._c1{width:224.908755px;}
._c2{width:227.153221px;}
._c9{width:228.587014px;}
._a4{width:231.604567px;}
._af{width:234.040122px;}
._eb{width:236.094476px;}
._e6{width:237.486158px;}
._86{width:241.018847px;}
._e2{width:242.145822px;}
._bc{width:245.165107px;}
._6b{width:247.994995px;}
._bd{width:256.994897px;}
._da{width:259.250133px;}
._ac{width:262.771818px;}
._a0{width:264.960000px;}
._ce{width:267.808320px;}
._85{width:278.255413px;}
._d8{width:287.770533px;}
._26{width:295.532040px;}
._9c{width:300.265920px;}
._8a{width:301.830830px;}
._87{width:305.501972px;}
._2e{width:306.901458px;}
._dd{width:309.605760px;}
._b0{width:314.748943px;}
._c7{width:317.570974px;}
._d3{width:319.188491px;}
._e7{width:329.354370px;}
._8d{width:341.181883px;}
._d6{width:346.683545px;}
._b4{width:348.631357px;}
._90{width:354.084605px;}
._ad{width:359.576610px;}
._a5{width:362.836460px;}
._ab{width:366.148449px;}
._b8{width:370.031643px;}
._c5{width:380.187579px;}
._aa{width:384.486390px;}
._a9{width:391.555885px;}
._cc{width:397.798700px;}
._a7{width:399.439239px;}
._50{width:401.040000px;}
._58{width:405.360000px;}
._a3{width:406.810836px;}
._d2{width:412.404109px;}
._c3{width:421.956135px;}
._ca{width:423.410342px;}
._9b{width:426.420000px;}
._d5{width:429.061858px;}
._d4{width:435.939770px;}
._a6{width:439.578350px;}
._89{width:462.669139px;}
._c4{width:467.286345px;}
._35{width:468.900000px;}
._b7{width:477.605642px;}
._d1{width:483.087008px;}
._83{width:486.804320px;}
._8c{width:489.780000px;}
._2d{width:491.220000px;}
._97{width:498.420000px;}
._ed{width:521.530183px;}
._76{width:525.780000px;}
._8f{width:531.352454px;}
._9e{width:552.420000px;}
._ec{width:584.100000px;}
._b2{width:594.378490px;}
._ee{width:611.814472px;}
._4b{width:614.340000px;}
._f0{width:617.423455px;}
._c6{width:632.155458px;}
._df{width:646.040205px;}
._39{width:711.540000px;}
._6e{width:741.780000px;}
._43{width:756.900000px;}
._e0{width:765.699329px;}
._93{width:795.780000px;}
._61{width:814.500000px;}
._69{width:822.420000px;}
._65{width:831.060000px;}
._82{width:908.100000px;}
._7a{width:939.780000px;}
._5b{width:954.900000px;}
._5e{width:959.220000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs29{font-size:34.763391px;}
.fs47{font-size:35.064816px;}
.fs46{font-size:35.091395px;}
.fs3e{font-size:35.092585px;}
.fs49{font-size:35.103907px;}
.fs45{font-size:35.109848px;}
.fs43{font-size:35.118769px;}
.fs3f{font-size:35.126827px;}
.fs48{font-size:35.141537px;}
.fs44{font-size:35.160988px;}
.fs42{font-size:35.170451px;}
.fs1f{font-size:35.259294px;}
.fs24{font-size:37.632809px;}
.fs11{font-size:37.634535px;}
.fs13{font-size:37.753621px;}
.fs40{font-size:37.944423px;}
.fs1d{font-size:37.963075px;}
.fs18{font-size:37.963886px;}
.fs36{font-size:38.163457px;}
.fs32{font-size:38.167088px;}
.fs21{font-size:38.223552px;}
.fs7{font-size:38.269078px;}
.fs3a{font-size:38.292400px;}
.fs16{font-size:38.325744px;}
.fs30{font-size:38.451567px;}
.fs2c{font-size:38.469579px;}
.fs1b{font-size:38.484025px;}
.fs38{font-size:38.546372px;}
.fs34{font-size:38.607869px;}
.fs27{font-size:38.663070px;}
.fse{font-size:38.912957px;}
.fsc{font-size:39.026653px;}
.fs4{font-size:41.760000px;}
.fs25{font-size:46.861854px;}
.fs6{font-size:48.000000px;}
.fs2b{font-size:59.496010px;}
.fs3d{font-size:59.760000px;}
.fs2a{font-size:60.047463px;}
.fs20{font-size:60.967277px;}
.fs2e{font-size:64.125926px;}
.fsa{font-size:64.489750px;}
.fs23{font-size:64.841325px;}
.fs10{font-size:64.844298px;}
.fs14{font-size:65.049483px;}
.fs41{font-size:65.432137px;}
.fs15{font-size:65.485872px;}
.fs19{font-size:65.487271px;}
.fs37{font-size:65.809843px;}
.fs33{font-size:65.929277px;}
.fs8{font-size:66.013723px;}
.fs3b{font-size:66.032196px;}
.fs22{font-size:66.036838px;}
.fs9{font-size:66.097354px;}
.fs17{font-size:66.100248px;}
.fs12{font-size:66.159410px;}
.fs2{font-size:66.240000px;}
.fs2d{font-size:66.337728px;}
.fs31{font-size:66.420682px;}
.fs39{font-size:66.470150px;}
.fs1c{font-size:66.555911px;}
.fs35{font-size:66.598133px;}
.fsb{font-size:66.615571px;}
.fs28{font-size:66.693355px;}
.fsf{font-size:67.146860px;}
.fsd{font-size:67.343048px;}
.fs2f{font-size:69.739994px;}
.fs5{font-size:69.822393px;}
.fs3c{font-size:70.365435px;}
.fs1{font-size:72.000000px;}
.fs26{font-size:80.943837px;}
.fs3{font-size:84.240000px;}
.fs1e{font-size:86.650992px;}
.fs1a{font-size:87.095737px;}
.fs0{font-size:95.760000px;}
.y34b{bottom:-2.219533px;}
.y39c{bottom:-2.156381px;}
.y374{bottom:-2.149011px;}
.y360{bottom:-2.119118px;}
.y38a{bottom:-2.096381px;}
.y2f9{bottom:-2.079689px;}
.y0{bottom:0.000000px;}
.y166{bottom:2.032082px;}
.y17d{bottom:2.032696px;}
.y2b5{bottom:2.032706px;}
.y26c{bottom:2.060945px;}
.y1fb{bottom:2.067154px;}
.y2a2{bottom:2.067449px;}
.y278{bottom:2.081027px;}
.y2c7{bottom:2.087126px;}
.y187{bottom:2.106144px;}
.y4f{bottom:2.526000px;}
.y19c{bottom:2.530551px;}
.yac{bottom:3.210608px;}
.y1d7{bottom:3.213615px;}
.yd8{bottom:3.220767px;}
.y1cf{bottom:3.243652px;}
.y112{bottom:3.257802px;}
.y101{bottom:3.293352px;}
.y9b{bottom:3.330012px;}
.y208{bottom:3.462166px;}
.y320{bottom:3.534931px;}
.y251{bottom:3.535445px;}
.y236{bottom:3.559399px;}
.y150{bottom:3.564508px;}
.y295{bottom:3.565166px;}
.y247{bottom:3.571576px;}
.y1f1{bottom:3.579692px;}
.y225{bottom:3.586228px;}
.y1c1{bottom:3.600502px;}
.y191{bottom:3.635933px;}
.y28f{bottom:3.636729px;}
.y147{bottom:3.646472px;}
.y214{bottom:3.700306px;}
.y250{bottom:3.711762px;}
.y1b6{bottom:3.744745px;}
.y258{bottom:3.775834px;}
.y1b5{bottom:3.780070px;}
.y31f{bottom:3.820833px;}
.y262{bottom:3.884597px;}
.yc7{bottom:4.118573px;}
.y5b{bottom:4.154995px;}
.yf8{bottom:4.472960px;}
.y122{bottom:4.473056px;}
.y1c8{bottom:4.498441px;}
.y1f0{bottom:4.630620px;}
.y140{bottom:4.748342px;}
.y1de{bottom:4.813454px;}
.y308{bottom:5.248881px;}
.y12b{bottom:5.740899px;}
.y165{bottom:6.188128px;}
.y17c{bottom:6.188551px;}
.y2b6{bottom:6.188752px;}
.y270{bottom:6.266593px;}
.y2a6{bottom:6.287307px;}
.y1fd{bottom:6.292079px;}
.y27c{bottom:6.328873px;}
.y2c9{bottom:6.357019px;}
.y2ca{bottom:6.357167px;}
.y2cc{bottom:6.357608px;}
.y186{bottom:6.396594px;}
.y79{bottom:6.709580px;}
.y205{bottom:7.222375px;}
.y83{bottom:7.330177px;}
.yab{bottom:7.366654px;}
.y14d{bottom:7.444990px;}
.y74{bottom:7.511447px;}
.y102{bottom:7.522380px;}
.y24b{bottom:7.551715px;}
.y9a{bottom:7.607964px;}
.y8d{bottom:7.630192px;}
.y24a{bottom:7.762718px;}
.y25a{bottom:7.788301px;}
.y13f{bottom:7.798390px;}
.y292{bottom:7.837055px;}
.y1b8{bottom:7.977842px;}
.y1e2{bottom:8.000424px;}
.y1c0{bottom:8.048492px;}
.y1ba{bottom:8.049964px;}
.y1d2{bottom:8.293076px;}
.yf5{bottom:8.312913px;}
.y11f{bottom:8.313091px;}
.yc9{bottom:8.344955px;}
.y1cb{bottom:8.370193px;}
.y5d{bottom:8.379920px;}
.y129{bottom:8.810910px;}
.y141{bottom:8.977370px;}
.y1e6{bottom:9.051351px;}
.y19d{bottom:9.164776px;}
.y343{bottom:9.269832px;}
.y36b{bottom:9.315201px;}
.y393{bottom:9.323539px;}
.y354{bottom:9.367155px;}
.y37f{bottom:9.383539px;}
.y2f2{bottom:9.384912px;}
.y310{bottom:9.430391px;}
.y30f{bottom:9.644452px;}
.y12e{bottom:9.966201px;}
.y190{bottom:11.160812px;}
.y230{bottom:12.257291px;}
.y220{bottom:12.348949px;}
.y1d6{bottom:12.521345px;}
.y1ce{bottom:12.637652px;}
.y26b{bottom:13.633851px;}
.y2a1{bottom:13.679457px;}
.y277{bottom:13.770051px;}
.y31e{bottom:13.790774px;}
.y2c6{bottom:13.817926px;}
.y185{bottom:13.921473px;}
.y31d{bottom:14.076677px;}
.y14b{bottom:14.849599px;}
.y99{bottom:15.110920px;}
.y8c{bottom:15.155071px;}
.y28e{bottom:15.241663px;}
.y1dd{bottom:15.465425px;}
.y207{bottom:15.467379px;}
.y24f{bottom:15.971575px;}
.yf7{bottom:15.992820px;}
.y34d{bottom:16.025543px;}
.y376{bottom:16.055996px;}
.y39e{bottom:16.073629px;}
.y362{bottom:16.121656px;}
.y2fb{bottom:16.125868px;}
.y38c{bottom:16.133629px;}
.y24e{bottom:16.146447px;}
.y25b{bottom:16.242407px;}
.y261{bottom:16.349701px;}
.y238{bottom:16.478174px;}
.y1bf{bottom:16.551483px;}
.y228{bottom:16.601292px;}
.y137{bottom:16.625827px;}
.y11c{bottom:16.626182px;}
.y260{bottom:16.636305px;}
.y1be{bottom:16.658929px;}
.y344{bottom:16.699563px;}
.y36c{bottom:16.728232px;}
.y139{bottom:16.732773px;}
.y121{bottom:16.733131px;}
.y394{bottom:16.747162px;}
.y307{bottom:16.755366px;}
.y355{bottom:16.794887px;}
.y2f3{bottom:16.798194px;}
.y380{bottom:16.807162px;}
.y1ef{bottom:17.601468px;}
.y14f{bottom:17.982318px;}
.y19b{bottom:18.308212px;}
.y294{bottom:18.374382px;}
.y204{bottom:19.468174px;}
.y24d{bottom:20.057216px;}
.y25d{bottom:20.506205px;}
.y1bd{bottom:20.534362px;}
.y138{bottom:20.818414px;}
.y11e{bottom:20.818859px;}
.y291{bottom:21.293872px;}
.y1ee{bottom:21.478155px;}
.y31c{bottom:22.403044px;}
.y31b{bottom:22.688947px;}
.y22f{bottom:23.840661px;}
.y21f{bottom:24.018656px;}
.y1d5{bottom:25.416034px;}
.y1cd{bottom:25.651858px;}
.y235{bottom:26.871229px;}
.y369{bottom:26.917971px;}
.y1c7{bottom:27.014032px;}
.y224{bottom:27.071812px;}
.y1fa{bottom:27.171949px;}
.y211{bottom:27.313265px;}
.y246{bottom:28.053626px;}
.y28d{bottom:28.305612px;}
.y1b4{bottom:28.641419px;}
.y257{bottom:28.673706px;}
.y1b3{bottom:28.713541px;}
.y213{bottom:28.947874px;}
.y5a{bottom:29.259790px;}
.y26a{bottom:29.269366px;}
.y2a0{bottom:29.367800px;}
.yc6{bottom:29.401107px;}
.y276{bottom:29.562446px;}
.y1dc{bottom:29.595712px;}
.y2c5{bottom:29.675849px;}
.y206{bottom:29.988833px;}
.y352{bottom:30.211660px;}
.y306{bottom:30.227982px;}
.y302{bottom:30.279703px;}
.y1d1{bottom:30.603351px;}
.y24c{bottom:30.800992px;}
.y1ca{bottom:30.887256px;}
.y203{bottom:31.196006px;}
.y25f{bottom:31.395717px;}
.y1fc{bottom:31.396874px;}
.y212{bottom:31.539647px;}
.yf6{bottom:31.562190px;}
.y120{bottom:31.562864px;}
.y1bc{bottom:31.619012px;}
.y25e{bottom:31.682322px;}
.y1bb{bottom:31.726458px;}
.y249{bottom:32.033766px;}
.y14c{bottom:32.113874px;}
.y248{bottom:32.244768px;}
.y82{bottom:32.250140px;}
.y290{bottom:32.542450px;}
.y1ed{bottom:32.637009px;}
.y259{bottom:32.686173px;}
.yf4{bottom:32.794964px;}
.y11d{bottom:32.795664px;}
.y1e1{bottom:32.818357px;}
.y25c{bottom:32.900759px;}
.y1b7{bottom:32.911313px;}
.y14e{bottom:32.933200px;}
.y1b9{bottom:32.946638px;}
.y293{bottom:33.325265px;}
.y26f{bottom:33.475014px;}
.y5c{bottom:33.484715px;}
.y131{bottom:33.546111px;}
.y2a5{bottom:33.587658px;}
.yc8{bottom:33.592524px;}
.y1ec{bottom:33.652261px;}
.y27b{bottom:33.810292px;}
.y1e5{bottom:33.833609px;}
.y2c8{bottom:33.908946px;}
.y2cb{bottom:33.909535px;}
.y30e{bottom:34.123590px;}
.y30d{bottom:34.409493px;}
.y313{bottom:34.410959px;}
.y12d{bottom:37.482516px;}
.y31a{bottom:37.984010px;}
.y319{bottom:38.234724px;}
.y14a{bottom:39.518482px;}
.y1d4{bottom:39.520465px;}
.y368{bottom:39.751920px;}
.y1cc{bottom:39.887020px;}
.y28c{bottom:39.910546px;}
.y1db{bottom:40.247683px;}
.y356{bottom:40.425758px;}
.y50{bottom:40.799927px;}
.y301{bottom:42.416831px;}
.y381{bottom:42.461536px;}
.y351{bottom:43.049064px;}
.y12a{bottom:45.896081px;}
.y234{bottom:47.944554px;}
.y223{bottom:48.302208px;}
.y36d{bottom:49.759030px;}
.y395{bottom:49.825158px;}
.y12f{bottom:50.156940px;}
.y367{bottom:52.586544px;}
.y1d3{bottom:52.913626px;}
.y1c9{bottom:53.404319px;}
.y318{bottom:53.529787px;}
.y317{bottom:53.815690px;}
.y269{bottom:54.429524px;}
.y2a9{bottom:54.503476px;}
.y29f{bottom:54.612967px;}
.y275{bottom:54.975050px;}
.y345{bottom:55.212448px;}
.y300{bottom:55.225812px;}
.y350{bottom:55.886468px;}
.y22e{bottom:56.605433px;}
.y21e{bottom:57.027641px;}
.y1eb{bottom:58.505868px;}
.y26e{bottom:58.633698px;}
.y30c{bottom:58.637916px;}
.y2aa{bottom:58.687823px;}
.y1da{bottom:58.688703px;}
.y2a4{bottom:58.831346px;}
.y30b{bottom:58.888630px;}
.y27a{bottom:59.221406px;}
.y237{bottom:60.827797px;}
.y130{bottom:61.026869px;}
.y227{bottom:61.281476px;}
.y12c{bottom:62.326164px;}
.y1e0{bottom:62.672415px;}
.y1e4{bottom:62.926600px;}
.y2f4{bottom:63.308928px;}
.y357{bottom:63.402352px;}
.y366{bottom:64.744632px;}
.y268{bottom:66.002430px;}
.y2a8{bottom:66.116963px;}
.y29e{bottom:66.260485px;}
.y274{bottom:66.664073px;}
.y2ff{bottom:68.021330px;}
.y34f{bottom:68.032985px;}
.y382{bottom:68.101753px;}
.y316{bottom:69.074098px;}
.y1ea{bottom:71.222532px;}
.y233{bottom:71.256384px;}
.y1e9{bottom:71.476716px;}
.y222{bottom:71.787792px;}
.y365{bottom:77.580605px;}
.y2fe{bottom:80.825600px;}
.y34e{bottom:80.872412px;}
.y267{bottom:81.636471px;}
.y29d{bottom:81.803826px;}
.y273{bottom:82.454978px;}
.y36e{bottom:82.789155px;}
.y396{bottom:82.899784px;}
.y30a{bottom:83.081866px;}
.y312{bottom:83.083332px;}
.y309{bottom:83.367768px;}
.y311{bottom:83.369234px;}
.y1d9{bottom:83.506636px;}
.y315{bottom:83.869198px;}
.y314{bottom:84.155100px;}
.y26d{bottom:85.842119px;}
.y2a3{bottom:86.023684px;}
.y1e8{bottom:86.222398px;}
.y358{bottom:86.356012px;}
.y1e7{bottom:86.512257px;}
.y279{bottom:86.702824px;}
.y1df{bottom:87.490348px;}
.y1e3{bottom:87.708857px;}
.y305{bottom:90.406840px;}
.y364{bottom:90.416577px;}
.y304{bottom:90.692743px;}
.y22d{bottom:92.221633px;}
.y21d{bottom:92.909307px;}
.y2fd{bottom:92.963401px;}
.y346{bottom:93.711840px;}
.y383{bottom:93.752756px;}
.y232{bottom:96.406985px;}
.y226{bottom:97.125854px;}
.y22c{bottom:103.767992px;}
.y21c{bottom:104.541726px;}
.y2f5{bottom:109.133672px;}
.y359{bottom:109.316418px;}
.y4d{bottom:110.520000px;}
.y183{bottom:110.602500px;}
.y36{bottom:111.600000px;}
.y36f{bottom:115.801778px;}
.y397{bottom:115.966321px;}
.y341{bottom:116.738100px;}
.y384{bottom:119.410500px;}
.y22b{bottom:119.430118px;}
.y21b{bottom:120.320590px;}
.y104{bottom:121.140000px;}
.y375{bottom:121.200930px;}
.y39d{bottom:121.366110px;}
.y38b{bottom:121.426110px;}
.y361{bottom:121.471065px;}
.y89{bottom:122.220000px;}
.y231{bottom:123.615470px;}
.y221{bottom:124.537137px;}
.y391{bottom:126.158636px;}
.ycb{bottom:126.180000px;}
.y2fa{bottom:126.670741px;}
.y34c{bottom:126.812330px;}
.y4c{bottom:129.420000px;}
.y182{bottom:129.681000px;}
.y35{bottom:130.680000px;}
.y2dd{bottom:131.497500px;}
.y347{bottom:132.223376px;}
.y35a{bottom:132.283568px;}
.y340{bottom:135.818100px;}
.y100{bottom:136.140000px;}
.y390{bottom:138.987508px;}
.y88{bottom:141.120000px;}
.y148{bottom:141.480000px;}
.yc5{bottom:142.140000px;}
.y1c5{bottom:142.821000px;}
.y103{bottom:143.640000px;}
.y3d8{bottom:144.360000px;}
.y385{bottom:145.061504px;}
.y4b{bottom:148.320000px;}
.y181{bottom:148.581000px;}
.y370{bottom:148.834596px;}
.y398{bottom:149.039598px;}
.y34{bottom:149.580000px;}
.y2dc{bottom:150.577500px;}
.y38f{bottom:151.122017px;}
.y33f{bottom:154.718100px;}
.y2f6{bottom:155.651812px;}
.y35b{bottom:155.918486px;}
.y240{bottom:156.240000px;}
.y146{bottom:157.440000px;}
.y87{bottom:160.020000px;}
.y1c4{bottom:161.721000px;}
.yca{bottom:163.080000px;}
.y3d7{bottom:163.440000px;}
.y23f{bottom:163.716000px;}
.y38e{bottom:163.950889px;}
.y145{bottom:164.880000px;}
.y4a{bottom:167.400000px;}
.y180{bottom:167.691000px;}
.y33{bottom:168.660000px;}
.y2db{bottom:169.507500px;}
.y386{bottom:170.699024px;}
.y348{bottom:170.721419px;}
.y37d{bottom:171.742825px;}
.y33e{bottom:173.828250px;}
.y29b{bottom:176.856000px;}
.y35c{bottom:178.872147px;}
.y86{bottom:180.390000px;}
.y1c3{bottom:180.831000px;}
.y371{bottom:181.867414px;}
.y399{bottom:182.119618px;}
.y3d6{bottom:182.370000px;}
.y23e{bottom:182.796000px;}
.y37c{bottom:184.553392px;}
.yff{bottom:185.250000px;}
.y49{bottom:186.330000px;}
.y17f{bottom:186.591000px;}
.y32{bottom:187.590000px;}
.y144{bottom:188.130000px;}
.y2da{bottom:188.587500px;}
.y33d{bottom:189.668250px;}
.y29a{bottom:195.936000px;}
.y387{bottom:196.356769px;}
.yc4{bottom:196.590000px;}
.y3a3{bottom:196.964167px;}
.y37b{bottom:197.363959px;}
.y392{bottom:200.700000px;}
.y3d5{bottom:201.450000px;}
.y2f7{bottom:201.490019px;}
.y23d{bottom:201.696000px;}
.y35d{bottom:201.846042px;}
.y17b{bottom:203.699245px;}
.yfe{bottom:204.150000px;}
.y48{bottom:205.410000px;}
.y31{bottom:206.490000px;}
.y2d9{bottom:207.487500px;}
.y143{bottom:208.110000px;}
.y349{bottom:209.232955px;}
.y37a{bottom:209.501348px;}
.y3a2{bottom:209.793039px;}
.y17e{bottom:209.991000px;}
.y299{bottom:214.836000px;}
.y372{bottom:214.893500px;}
.y39a{bottom:215.199637px;}
.yc3{bottom:216.390000px;}
.y1b2{bottom:217.071272px;}
.y85{bottom:218.370000px;}
.y3d4{bottom:220.350000px;}
.y3a1{bottom:221.947772px;}
.y388{bottom:222.007772px;}
.y379{bottom:222.305184px;}
.yfd{bottom:223.050000px;}
.y13e{bottom:224.040000px;}
.y47{bottom:224.310000px;}
.y35e{bottom:224.806448px;}
.y30{bottom:225.570000px;}
.y2d8{bottom:227.107500px;}
.y17a{bottom:230.151000px;}
.y142{bottom:232.950000px;}
.y298{bottom:233.736000px;}
.y81{bottom:234.465000px;}
.y3a0{bottom:234.776644px;}
.y378{bottom:235.115751px;}
.yc2{bottom:236.370000px;}
.y1c2{bottom:237.351000px;}
.y23c{bottom:238.595400px;}
.y3d3{bottom:239.430000px;}
.yfc{bottom:242.130000px;}
.y2f{bottom:244.470000px;}
.y373{bottom:247.239677px;}
.y377{bottom:247.239946px;}
.y2f8{bottom:247.314763px;}
.y2fc{bottom:247.314965px;}
.y39f{bottom:247.585225px;}
.y39b{bottom:247.585292px;}
.y38d{bottom:247.645225px;}
.y389{bottom:247.645292px;}
.y34a{bottom:247.730997px;}
.y363{bottom:247.760041px;}
.y35f{bottom:247.760108px;}
.y179{bottom:249.051000px;}
.y2d7{bottom:250.687500px;}
.y297{bottom:252.816000px;}
.y84{bottom:253.830000px;}
.y13d{bottom:255.990000px;}
.yc1{bottom:256.350000px;}
.y23b{bottom:257.675400px;}
.y3d2{bottom:258.330000px;}
.y334{bottom:260.228100px;}
.yfb{bottom:261.030000px;}
.y2e{bottom:263.550000px;}
.y178{bottom:268.131000px;}
.y2d6{bottom:269.587500px;}
.y1b1{bottom:271.551750px;}
.y13c{bottom:275.970000px;}
.yc0{bottom:276.150000px;}
.y23a{bottom:276.576000px;}
.y3d1{bottom:277.230000px;}
.y333{bottom:278.408100px;}
.yfa{bottom:280.110000px;}
.y2d{bottom:282.450000px;}
.y2f0{bottom:283.087500px;}
.y80{bottom:286.590000px;}
.y177{bottom:287.031000px;}
.y28b{bottom:287.924937px;}
.y2d5{bottom:288.487500px;}
.y1b0{bottom:290.632500px;}
.y239{bottom:295.656000px;}
.y13b{bottom:295.770000px;}
.ybf{bottom:296.130000px;}
.y3d0{bottom:296.310000px;}
.y332{bottom:296.948100px;}
.y2ef{bottom:300.547500px;}
.y2c{bottom:301.350000px;}
.y7f{bottom:305.490000px;}
.y176{bottom:305.931000px;}
.y2d4{bottom:307.567500px;}
.y296{bottom:309.156000px;}
.y1af{bottom:309.531000px;}
.y22a{bottom:311.742245px;}
.y21a{bottom:311.742830px;}
.y136{bottom:311.865000px;}
.yf3{bottom:314.040000px;}
.y3cf{bottom:315.210000px;}
.ybe{bottom:316.110000px;}
.y331{bottom:316.748100px;}
.y2ee{bottom:319.447500px;}
.y2b{bottom:320.430000px;}
.y7e{bottom:324.570000px;}
.y175{bottom:325.011000px;}
.y2d3{bottom:326.467500px;}
.y1ae{bottom:328.611000px;}
.y330{bottom:332.768100px;}
.y13a{bottom:332.850000px;}
.y3ce{bottom:334.290000px;}
.yf9{bottom:335.010000px;}
.y2ed{bottom:335.467500px;}
.ybd{bottom:335.910000px;}
.y2a{bottom:339.330000px;}
.y7d{bottom:343.470000px;}
.y353{bottom:343.620000px;}
.y174{bottom:343.911000px;}
.y28a{bottom:344.796000px;}
.y2d2{bottom:345.547500px;}
.y2f1{bottom:346.320000px;}
.y1ad{bottom:347.511000px;}
.ybb{bottom:351.990000px;}
.y3cd{bottom:353.190000px;}
.y29{bottom:358.410000px;}
.ybc{bottom:359.490000px;}
.y7c{bottom:362.550000px;}
.y173{bottom:362.991000px;}
.y289{bottom:363.696000px;}
.y2d1{bottom:364.447500px;}
.y1ac{bottom:367.131000px;}
.y135{bottom:367.410000px;}
.yf2{bottom:368.670000px;}
.y3cc{bottom:372.090000px;}
.y28{bottom:377.310000px;}
.y229{bottom:377.556000px;}
.yba{bottom:379.650000px;}
.y7b{bottom:381.450000px;}
.y172{bottom:381.891000px;}
.y288{bottom:382.596000px;}
.y2d0{bottom:383.347500px;}
.y134{bottom:387.210000px;}
.yf1{bottom:387.570000px;}
.y1ab{bottom:390.531000px;}
.y3cb{bottom:391.170000px;}
.y27{bottom:396.390000px;}
.yb9{bottom:399.630000px;}
.y7a{bottom:400.350000px;}
.y171{bottom:400.791000px;}
.y287{bottom:401.721000px;}
.y2cf{bottom:402.427500px;}
.yf0{bottom:406.650000px;}
.y133{bottom:407.190000px;}
.y1aa{bottom:409.656000px;}
.y3ca{bottom:410.070000px;}
.y26{bottom:415.290000px;}
.y78{bottom:415.515000px;}
.y46{bottom:416.010000px;}
.yb8{bottom:419.655000px;}
.y170{bottom:419.916000px;}
.y286{bottom:420.621000px;}
.y77{bottom:423.075000px;}
.y128{bottom:423.090000px;}
.yef{bottom:425.595000px;}
.y1a9{bottom:428.556000px;}
.y3c9{bottom:429.195000px;}
.y25{bottom:434.235000px;}
.y16f{bottom:438.816000px;}
.yb7{bottom:439.275000px;}
.y45{bottom:439.455000px;}
.y2ce{bottom:440.452500px;}
.y76{bottom:442.335000px;}
.yee{bottom:444.495000px;}
.y1a8{bottom:447.636000px;}
.y3c8{bottom:448.095000px;}
.y24{bottom:453.315000px;}
.y284{bottom:456.547830px;}
.y219{bottom:457.340400px;}
.y16e{bottom:457.896000px;}
.y73{bottom:458.340000px;}
.y44{bottom:458.355000px;}
.y2c4{bottom:458.998116px;}
.y132{bottom:459.075000px;}
.yb6{bottom:462.675000px;}
.yed{bottom:463.575000px;}
.y75{bottom:465.915000px;}
.y1a7{bottom:466.536000px;}
.y3c7{bottom:466.995000px;}
.y23{bottom:472.215000px;}
.y285{bottom:475.521000px;}
.y218{bottom:476.240400px;}
.y16d{bottom:476.796000px;}
.y43{bottom:477.435000px;}
.y33c{bottom:478.073250px;}
.y2cd{bottom:478.972500px;}
.yb5{bottom:481.755000px;}
.yec{bottom:482.475000px;}
.y72{bottom:485.175000px;}
.y1a6{bottom:485.616000px;}
.y3c6{bottom:486.075000px;}
.y22{bottom:491.295000px;}
.y217{bottom:495.140400px;}
.y16c{bottom:495.876000px;}
.y42{bottom:496.335000px;}
.y33b{bottom:498.053250px;}
.yb4{bottom:500.655000px;}
.yeb{bottom:501.555000px;}
.y71{bottom:504.075000px;}
.y1a5{bottom:504.516000px;}
.y3c5{bottom:504.975000px;}
.y127{bottom:508.035000px;}
.y283{bottom:508.101000px;}
.y21{bottom:510.195000px;}
.y2c3{bottom:513.172500px;}
.y216{bottom:514.221000px;}
.y16b{bottom:514.776000px;}
.y41{bottom:515.415000px;}
.y33a{bottom:518.033100px;}
.yb3{bottom:519.735000px;}
.yea{bottom:520.455000px;}
.y70{bottom:523.155000px;}
.y1a4{bottom:523.416000px;}
.y3c4{bottom:524.055000px;}
.y282{bottom:527.001000px;}
.y126{bottom:527.835000px;}
.y20{bottom:529.095000px;}
.y2c2{bottom:532.072500px;}
.y16a{bottom:533.676000px;}
.y339{bottom:533.873100px;}
.y40{bottom:534.315000px;}
.yb2{bottom:538.635000px;}
.y6f{bottom:542.055000px;}
.y1a3{bottom:542.496000px;}
.y3c3{bottom:542.955000px;}
.y37e{bottom:544.860000px;}
.y281{bottom:546.081000px;}
.y125{bottom:547.815000px;}
.y1f{bottom:548.175000px;}
.y210{bottom:550.147830px;}
.y2c1{bottom:551.152500px;}
.y169{bottom:552.756000px;}
.y3f{bottom:553.395000px;}
.ye9{bottom:557.355000px;}
.yb1{bottom:557.535000px;}
.y6e{bottom:561.135000px;}
.y1a2{bottom:561.396000px;}
.y3c2{bottom:561.855000px;}
.y280{bottom:564.981000px;}
.y1e{bottom:567.075000px;}
.y124{bottom:567.795000px;}
.y215{bottom:569.121000px;}
.y2c0{bottom:570.052500px;}
.y168{bottom:571.656000px;}
.y3e{bottom:572.295000px;}
.ye8{bottom:576.435000px;}
.yb0{bottom:576.615000px;}
.y1a1{bottom:580.476000px;}
.y6d{bottom:580.755000px;}
.y3c1{bottom:580.935000px;}
.y11b{bottom:583.665000px;}
.y1d{bottom:586.155000px;}
.y164{bottom:588.899555px;}
.y2bf{bottom:589.132500px;}
.y3d{bottom:591.195000px;}
.y167{bottom:595.236000px;}
.ye7{bottom:595.335000px;}
.yaf{bottom:595.515000px;}
.y1a0{bottom:599.376000px;}
.y3c0{bottom:599.835000px;}
.y20f{bottom:601.521000px;}
.y27f{bottom:602.961000px;}
.y303{bottom:603.041824px;}
.y6c{bottom:604.155000px;}
.y123{bottom:604.695000px;}
.y1c{bottom:605.055000px;}
.y32f{bottom:606.593100px;}
.y2ec{bottom:609.292500px;}
.y3c{bottom:610.275000px;}
.ye6{bottom:614.415000px;}
.yae{bottom:614.595000px;}
.y163{bottom:615.216000px;}
.y3bf{bottom:618.915000px;}
.y20e{bottom:620.601000px;}
.y27e{bottom:622.761000px;}
.y6b{bottom:623.235000px;}
.y1b{bottom:623.955000px;}
.y32e{bottom:625.673100px;}
.y2eb{bottom:629.092500px;}
.y3b{bottom:629.175000px;}
.yaa{bottom:630.465000px;}
.ye5{bottom:633.315000px;}
.y162{bottom:634.116000px;}
.y2be{bottom:635.572500px;}
.y19f{bottom:637.356000px;}
.y3be{bottom:637.815000px;}
.yad{bottom:637.995000px;}
.y11a{bottom:639.255000px;}
.y20d{bottom:639.531000px;}
.y6a{bottom:642.135000px;}
.y1a{bottom:643.035000px;}
.y32d{bottom:644.573100px;}
.y3a{bottom:648.255000px;}
.y1d0{bottom:648.527239px;}
.y1c6{bottom:648.546474px;}
.y2ea{bottom:649.102500px;}
.ye4{bottom:652.215000px;}
.y19e{bottom:652.506000px;}
.y161{bottom:653.226000px;}
.y19a{bottom:656.200933px;}
.y3bd{bottom:656.715000px;}
.y20c{bottom:658.611000px;}
.ya9{bottom:659.085000px;}
.y119{bottom:659.265000px;}
.y69{bottom:661.065000px;}
.y19{bottom:661.965000px;}
.y27d{bottom:662.751000px;}
.y32c{bottom:663.683100px;}
.y39{bottom:667.185000px;}
.y2e9{bottom:669.082500px;}
.ye3{bottom:671.325000px;}
.y160{bottom:672.126000px;}
.y2bd{bottom:673.402500px;}
.y3bc{bottom:675.825000px;}
.y20b{bottom:677.511000px;}
.ya8{bottom:678.885000px;}
.y118{bottom:679.065000px;}
.y68{bottom:680.145000px;}
.y266{bottom:680.345609px;}
.y272{bottom:680.363489px;}
.y18{bottom:681.045000px;}
.y32b{bottom:682.582500px;}
.y38{bottom:686.085000px;}
.y2e8{bottom:688.882500px;}
.y2bc{bottom:693.382500px;}
.y3bb{bottom:694.725000px;}
.y20a{bottom:696.591000px;}
.ya7{bottom:698.865000px;}
.y67{bottom:699.045000px;}
.y17{bottom:700.665000px;}
.y32a{bottom:702.562500px;}
.y37{bottom:705.165000px;}
.y2e7{bottom:708.862500px;}
.y15f{bottom:709.206000px;}
.ye2{bottom:712.725000px;}
.y2bb{bottom:713.362500px;}
.y3ba{bottom:713.805000px;}
.y66{bottom:718.125000px;}
.ya6{bottom:718.845000px;}
.y117{bottom:719.025000px;}
.y329{bottom:722.362500px;}
.y16{bottom:724.065000px;}
.y271{bottom:726.651000px;}
.y15e{bottom:728.106000px;}
.y202{bottom:731.303171px;}
.y3b9{bottom:732.705000px;}
.y2ba{bottom:733.162500px;}
.ye1{bottom:733.785000px;}
.y64{bottom:733.965000px;}
.ya5{bottom:738.825000px;}
.y328{bottom:742.342500px;}
.y15{bottom:743.145000px;}
.y199{bottom:746.106000px;}
.y2e6{bottom:748.642500px;}
.y209{bottom:751.491000px;}
.y3b8{bottom:751.785000px;}
.y2b9{bottom:753.142500px;}
.ye0{bottom:753.765000px;}
.y65{bottom:755.025000px;}
.ya4{bottom:758.625000px;}
.y116{bottom:758.805000px;}
.y15d{bottom:761.046000px;}
.y14{bottom:761.685000px;}
.y3d9{bottom:762.045000px;}
.y327{bottom:762.322500px;}
.y198{bottom:765.186000px;}
.y2e5{bottom:768.622500px;}
.y3b7{bottom:770.685000px;}
.ydf{bottom:773.565000px;}
.ya3{bottom:778.605000px;}
.y115{bottom:778.785000px;}
.y13{bottom:780.945000px;}
.y326{bottom:782.122500px;}
.y201{bottom:783.891000px;}
.y197{bottom:784.086000px;}
.y2e4{bottom:784.642500px;}
.y63{bottom:787.425000px;}
.y265{bottom:788.390400px;}
.y3b6{bottom:789.585000px;}
.y2b8{bottom:792.922500px;}
.ya2{bottom:798.585000px;}
.y12{bottom:800.025000px;}
.y325{bottom:802.102500px;}
.y200{bottom:802.971000px;}
.y196{bottom:803.166000px;}
.y62{bottom:806.505000px;}
.y264{bottom:807.291000px;}
.y3b5{bottom:809.205000px;}
.y2b4{bottom:810.135969px;}
.yde{bottom:813.525000px;}
.y2b7{bottom:816.502500px;}
.ya1{bottom:818.385000px;}
.y114{bottom:818.565000px;}
.y11{bottom:818.925000px;}
.y1ff{bottom:821.871000px;}
.y195{bottom:822.066000px;}
.y324{bottom:822.082500px;}
.y338{bottom:822.443100px;}
.y61{bottom:825.405000px;}
.ydc{bottom:829.365000px;}
.y3b4{bottom:832.785000px;}
.y111{bottom:834.390000px;}
.ydd{bottom:836.925000px;}
.y2b3{bottom:837.562500px;}
.y10{bottom:838.005000px;}
.ya0{bottom:838.365000px;}
.y194{bottom:840.966000px;}
.y323{bottom:840.982500px;}
.y113{bottom:841.965000px;}
.y337{bottom:842.243100px;}
.y256{bottom:843.481694px;}
.y60{bottom:844.485000px;}
.y3b3{bottom:851.685000px;}
.y2b2{bottom:856.462500px;}
.yf{bottom:856.905000px;}
.y1f9{bottom:857.797830px;}
.ydb{bottom:857.985000px;}
.y9f{bottom:858.345000px;}
.y193{bottom:860.046000px;}
.y322{bottom:860.062500px;}
.y336{bottom:862.223100px;}
.y263{bottom:863.811000px;}
.y110{bottom:866.445000px;}
.y3b2{bottom:870.765000px;}
.y2b1{bottom:875.362500px;}
.ye{bottom:875.805000px;}
.y321{bottom:875.902500px;}
.y1fe{bottom:876.816000px;}
.yda{bottom:877.965000px;}
.y335{bottom:878.063100px;}
.y9e{bottom:878.145000px;}
.y18f{bottom:879.865562px;}
.y15c{bottom:880.926000px;}
.y5f{bottom:882.285000px;}
.y192{bottom:883.446000px;}
.y10f{bottom:886.425000px;}
.y342{bottom:886.860000px;}
.y36a{bottom:889.020000px;}
.y3b1{bottom:889.665000px;}
.y2b0{bottom:894.487500px;}
.yd{bottom:894.885000px;}
.yd9{bottom:897.765000px;}
.y9d{bottom:898.125000px;}
.y255{bottom:898.236000px;}
.y59{bottom:898.290000px;}
.y15b{bottom:899.871000px;}
.y18e{bottom:905.811000px;}
.y10e{bottom:906.450000px;}
.y3b0{bottom:908.790000px;}
.y1f8{bottom:909.396000px;}
.yd7{bottom:913.740000px;}
.yc{bottom:913.830000px;}
.y98{bottom:913.965000px;}
.y254{bottom:917.136000px;}
.y15a{bottom:918.951000px;}
.y5e{bottom:919.410000px;}
.yd6{bottom:921.390000px;}
.y9c{bottom:921.570000px;}
.y18d{bottom:924.891000px;}
.y10d{bottom:926.250000px;}
.y3af{bottom:927.690000px;}
.y1f7{bottom:928.296000px;}
.y2af{bottom:931.387500px;}
.yb{bottom:932.910000px;}
.y253{bottom:936.036000px;}
.y159{bottom:937.851000px;}
.yd5{bottom:942.270000px;}
.y18c{bottom:943.791000px;}
.y97{bottom:943.890000px;}
.y10c{bottom:946.230000px;}
.y3ae{bottom:946.590000px;}
.y1f6{bottom:947.376000px;}
.y2ae{bottom:950.467500px;}
.ya{bottom:951.810000px;}
.y158{bottom:956.751000px;}
.y10a{bottom:962.040000px;}
.yd4{bottom:962.250000px;}
.y18b{bottom:962.871000px;}
.y96{bottom:962.970000px;}
.y3ad{bottom:965.670000px;}
.y1f5{bottom:966.276000px;}
.y2ad{bottom:969.367500px;}
.y10b{bottom:969.630000px;}
.y9{bottom:970.710000px;}
.y245{bottom:970.771141px;}
.y157{bottom:975.831000px;}
.y18a{bottom:981.771000px;}
.y95{bottom:981.870000px;}
.yd3{bottom:982.230000px;}
.y3ac{bottom:984.570000px;}
.y1f4{bottom:985.176000px;}
.y2ac{bottom:988.267500px;}
.y8{bottom:989.790000px;}
.y252{bottom:991.116000px;}
.y109{bottom:994.110000px;}
.y156{bottom:994.731000px;}
.y94{bottom:1000.950000px;}
.yd2{bottom:1002.030000px;}
.y3ab{bottom:1003.650000px;}
.y1f3{bottom:1004.256000px;}
.y2ab{bottom:1007.347500px;}
.y58{bottom:1008.690000px;}
.y7{bottom:1009.230000px;}
.y108{bottom:1014.090000px;}
.y155{bottom:1014.351000px;}
.y189{bottom:1014.711000px;}
.y2e3{bottom:1016.887500px;}
.y93{bottom:1019.850000px;}
.y1d8{bottom:1021.851956px;}
.yd1{bottom:1022.010000px;}
.y3aa{bottom:1022.550000px;}
.y244{bottom:1024.596000px;}
.y57{bottom:1027.770000px;}
.y6{bottom:1029.930000px;}
.y107{bottom:1033.890000px;}
.y154{bottom:1037.931000px;}
.y92{bottom:1038.750000px;}
.y3a9{bottom:1041.450000px;}
.yd0{bottom:1041.990000px;}
.y29c{bottom:1042.949220px;}
.y243{bottom:1043.676000px;}
.y56{bottom:1046.670000px;}
.y105{bottom:1049.640000px;}
.y5{bottom:1050.630000px;}
.y2e2{bottom:1053.967500px;}
.y153{bottom:1056.831000px;}
.y106{bottom:1057.290000px;}
.y91{bottom:1057.830000px;}
.y3a8{bottom:1060.530000px;}
.ycf{bottom:1061.790000px;}
.y55{bottom:1065.750000px;}
.y1f2{bottom:1069.596000px;}
.y4{bottom:1071.330000px;}
.y2e1{bottom:1072.867500px;}
.y90{bottom:1076.730000px;}
.y152{bottom:1076.811000px;}
.y3a7{bottom:1079.430000px;}
.y241{bottom:1079.572830px;}
.yce{bottom:1081.770000px;}
.y54{bottom:1084.650000px;}
.y2a7{bottom:1089.247500px;}
.y2e0{bottom:1091.767500px;}
.y3{bottom:1092.030000px;}
.y149{bottom:1094.074910px;}
.y8f{bottom:1095.810000px;}
.y3a6{bottom:1098.510000px;}
.y242{bottom:1098.576000px;}
.ycd{bottom:1101.750000px;}
.y53{bottom:1103.550000px;}
.y2df{bottom:1110.847500px;}
.y2{bottom:1112.370000px;}
.y8e{bottom:1114.710000px;}
.y151{bottom:1115.151000px;}
.y3a5{bottom:1117.410000px;}
.ycc{bottom:1121.550000px;}
.y184{bottom:1121.904901px;}
.y52{bottom:1122.630000px;}
.y188{bottom:1128.291000px;}
.y2de{bottom:1129.747500px;}
.y8b{bottom:1130.490000px;}
.y1{bottom:1134.150000px;}
.y3a4{bottom:1137.030000px;}
.y8a{bottom:1138.110000px;}
.y51{bottom:1141.530000px;}
.y4e{bottom:1208.879974px;}
.ha{height:13.200073px;}
.h4f{height:17.438055px;}
.h4e{height:17.438841px;}
.h98{height:17.438855px;}
.h57{height:17.922354px;}
.h54{height:20.683015px;}
.h13{height:21.449446px;}
.h11{height:22.499161px;}
.h27{height:23.550003px;}
.h2e{height:23.624521px;}
.h20{height:25.874844px;}
.h1a{height:25.950445px;}
.h58{height:26.439239px;}
.h35{height:26.999514px;}
.h64{height:34.101393px;}
.h62{height:34.118367px;}
.h46{height:34.605069px;}
.h25{height:36.043887px;}
.h1d{height:36.149199px;}
.haf{height:36.571507px;}
.hae{height:36.599228px;}
.h9e{height:36.600469px;}
.hb2{height:36.612278px;}
.hac{height:36.618475px;}
.ha9{height:36.627779px;}
.h9f{height:36.636183px;}
.hb1{height:36.651525px;}
.hab{height:36.671811px;}
.ha8{height:36.681682px;}
.h51{height:36.916169px;}
.h29{height:36.917862px;}
.h99{height:36.936238px;}
.ha1{height:37.240376px;}
.h44{height:37.258682px;}
.h3a{height:37.259478px;}
.h89{height:37.455346px;}
.h7d{height:37.458910px;}
.h49{height:37.514326px;}
.hd{height:37.559008px;}
.h94{height:37.581897px;}
.h36{height:37.614622px;}
.h78{height:37.738110px;}
.h6c{height:37.755788px;}
.h40{height:37.769966px;}
.h8e{height:37.831156px;}
.h85{height:37.872660px;}
.h83{height:37.891512px;}
.h5d{height:37.945689px;}
.h23{height:38.171939px;}
.h21{height:38.190940px;}
.h55{height:38.283469px;}
.h1b{height:38.302525px;}
.h71{height:42.321766px;}
.h70{height:42.850208px;}
.h75{height:42.992981px;}
.h81{height:43.606520px;}
.h82{height:44.455047px;}
.h5c{height:44.518624px;}
.h9a{height:45.480785px;}
.h59{height:45.969465px;}
.h48{height:46.141152px;}
.h92{height:46.532778px;}
.hb{height:48.281250px;}
.h15{height:48.375943px;}
.hc{height:49.500094px;}
.h31{height:50.548063px;}
.h39{height:50.549143px;}
.h6a{height:55.109341px;}
.h66{height:55.620135px;}
.h69{height:58.363029px;}
.h68{height:58.392080px;}
.h9c{height:58.651172px;}
.h65{height:58.903981px;}
.h63{height:58.933301px;}
.h1f{height:59.383125px;}
.h74{height:59.397891px;}
.h47{height:59.806280px;}
.ha4{height:60.607795px;}
.h34{height:60.657568px;}
.h3d{height:60.658863px;}
.h8c{height:60.957653px;}
.h80{height:61.068280px;}
.h10{height:61.146500px;}
.h97{height:61.163611px;}
.h4c{height:61.167911px;}
.h2d{height:61.281446px;}
.h6f{height:61.446616px;}
.h7b{height:61.523454px;}
.h91{height:61.569274px;}
.h43{height:61.648712px;}
.h87{height:61.687821px;}
.h18{height:61.703974px;}
.h60{height:61.776022px;}
.h26{height:62.196090px;}
.h1e{height:62.377814px;}
.h73{height:62.904778px;}
.h72{height:62.936089px;}
.h14{height:63.293163px;}
.h52{height:63.606553px;}
.h2a{height:63.609470px;}
.h50{height:63.638214px;}
.h28{height:63.641133px;}
.ha3{height:64.186115px;}
.ha2{height:64.218065px;}
.h33{height:64.238826px;}
.h3c{height:64.240199px;}
.h32{height:64.270802px;}
.h3b{height:64.272175px;}
.h8b{height:64.556629px;}
.h8a{height:64.588762px;}
.h76{height:64.598032px;}
.h7f{height:64.673788px;}
.h9{height:64.674355px;}
.h7e{height:64.705980px;}
.hf{height:64.756626px;}
.h96{height:64.774747px;}
.h4b{height:64.779300px;}
.he{height:64.788859px;}
.h95{height:64.806989px;}
.h4a{height:64.811545px;}
.h12{height:64.870938px;}
.h37{height:64.873779px;}
.h2c{height:64.899539px;}
.h2b{height:64.931843px;}
.h8{height:64.978594px;}
.h5{height:65.010937px;}
.ha6{height:65.011537px;}
.ha5{height:65.013338px;}
.h53{height:65.016937px;}
.h6e{height:65.074460px;}
.h6d{height:65.106852px;}
.h7a{height:65.155835px;}
.h9b{height:65.177358px;}
.h79{height:65.188267px;}
.h90{height:65.204361px;}
.h8f{height:65.236817px;}
.h42{height:65.288489px;}
.h41{height:65.320987px;}
.h86{height:65.329907px;}
.h17{height:65.347013px;}
.h84{height:65.362425px;}
.h16{height:65.379540px;}
.h5f{height:65.423315px;}
.h5e{height:65.455880px;}
.h24{height:65.868184px;}
.h22{height:65.900971px;}
.h56{height:66.060637px;}
.h1c{height:66.093519px;}
.hb4{height:66.628125px;}
.h6{height:66.757500px;}
.h67{height:67.320493px;}
.h61{height:67.944425px;}
.h4{height:70.664062px;}
.h4d{height:71.204766px;}
.h19{height:71.225156px;}
.h3{height:72.562500px;}
.h5a{height:74.975810px;}
.h3e{height:79.947391px;}
.h45{height:80.262174px;}
.h30{height:80.265316px;}
.h2f{height:80.519297px;}
.h3f{height:80.674127px;}
.h38{height:81.789891px;}
.h7{height:84.898125px;}
.h2{height:96.508125px;}
.h88{height:97.259894px;}
.h93{height:97.480480px;}
.h8d{height:98.235756px;}
.ha0{height:98.879824px;}
.h6b{height:99.219853px;}
.h5b{height:106.770937px;}
.h7c{height:135.054196px;}
.h77{height:136.060824px;}
.had{height:253.626784px;}
.h9d{height:253.702087px;}
.ha7{height:254.131820px;}
.haa{height:254.159208px;}
.hb3{height:254.342191px;}
.hb0{height:254.402191px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:20.022000px;}
.wa{width:68.551830px;}
.w1c{width:73.125139px;}
.w15{width:82.121986px;}
.w10{width:85.503081px;}
.wf{width:86.621762px;}
.w17{width:90.002080px;}
.w25{width:90.198753px;}
.w6{width:90.732000px;}
.w24{width:94.233846px;}
.w4{width:104.062500px;}
.w11{width:109.275064px;}
.w12{width:111.445928px;}
.w1b{width:118.120634px;}
.w13{width:131.554856px;}
.w22{width:134.934559px;}
.w33{width:135.336484px;}
.w2a{width:136.032191px;}
.wb{width:136.048408px;}
.w2f{width:138.064516px;}
.w3{width:140.724000px;}
.w2b{width:146.145506px;}
.w9{width:147.452229px;}
.w30{width:152.124224px;}
.wc{width:167.624564px;}
.w36{width:183.689619px;}
.w14{width:185.549134px;}
.w16{width:185.613932px;}
.w19{width:194.629311px;}
.w7{width:202.493800px;}
.w34{width:207.400215px;}
.w8{width:208.054463px;}
.we{width:223.953246px;}
.wd{width:224.997345px;}
.w35{width:231.864139px;}
.w31{width:231.944023px;}
.w1e{width:236.406056px;}
.w1f{width:267.791351px;}
.w27{width:274.867012px;}
.w2c{width:277.819260px;}
.w21{width:279.469631px;}
.w20{width:300.998383px;}
.w2{width:303.405000px;}
.w18{width:303.673793px;}
.w1a{width:310.490754px;}
.w3b{width:321.271781px;}
.w3d{width:321.627834px;}
.w37{width:326.558707px;}
.w3c{width:329.040141px;}
.w3a{width:329.094061px;}
.w39{width:329.179847px;}
.w29{width:339.439947px;}
.w1d{width:361.591730px;}
.w23{width:379.115013px;}
.w28{width:395.410589px;}
.w2d{width:402.425281px;}
.w2e{width:402.663889px;}
.w32{width:426.155666px;}
.w26{width:441.318387px;}
.w38{width:479.797995px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:2.253695px;}
.x15{left:4.031133px;}
.x7b{left:6.383425px;}
.x51{left:7.704108px;}
.x6c{left:8.788511px;}
.x19{left:10.729339px;}
.x3c{left:11.741393px;}
.x1a{left:12.795928px;}
.x14{left:13.836754px;}
.x29{left:14.869993px;}
.x4e{left:15.883834px;}
.x1b{left:17.508108px;}
.x84{left:18.543235px;}
.x1c{left:19.574697px;}
.x4a{left:21.343844px;}
.x3e{left:22.798278px;}
.xae{left:23.933958px;}
.x34{left:26.510456px;}
.x54{left:28.738425px;}
.x63{left:29.933568px;}
.x22{left:31.450788px;}
.x23{left:32.461279px;}
.x49{left:33.640241px;}
.x38{left:35.309030px;}
.x2b{left:37.157198px;}
.x4d{left:38.523532px;}
.x12{left:39.948384px;}
.x13{left:41.981801px;}
.x83{left:43.498247px;}
.x55{left:44.943339px;}
.x42{left:46.053615px;}
.x4f{left:47.068197px;}
.x9a{left:49.646838px;}
.x48{left:52.065410px;}
.x50{left:54.480652px;}
.x7d{left:55.666628px;}
.x96{left:58.023621px;}
.x5c{left:61.055797px;}
.x47{left:63.121407px;}
.x98{left:64.279984px;}
.x16{left:67.766180px;}
.x60{left:68.812918px;}
.x17{left:69.836784px;}
.x1d{left:71.441336px;}
.x7a{left:72.573000px;}
.x9c{left:73.743514px;}
.x39{left:74.752052px;}
.x8{left:76.500000px;}
.x3a{left:78.383838px;}
.x30{left:80.353005px;}
.x97{left:83.049072px;}
.x81{left:84.352432px;}
.x2d{left:85.586817px;}
.x79{left:87.873000px;}
.x11{left:91.800000px;}
.x5b{left:94.493389px;}
.x4b{left:95.775307px;}
.x10{left:97.776000px;}
.x62{left:99.729547px;}
.x7f{left:102.968074px;}
.x33{left:104.618905px;}
.x6e{left:105.836471px;}
.xc{left:108.000000px;}
.x80{left:110.239749px;}
.x8b{left:111.287882px;}
.x6d{left:113.362988px;}
.x5a{left:114.397073px;}
.x73{left:115.778237px;}
.x2a{left:118.058909px;}
.x6a{left:121.398553px;}
.x28{left:123.268001px;}
.x8a{left:124.433158px;}
.x20{left:126.090000px;}
.x6b{left:127.375797px;}
.x9f{left:132.081620px;}
.x99{left:137.890774px;}
.x72{left:138.954845px;}
.x75{left:140.235114px;}
.x59{left:143.396389px;}
.x8f{left:145.411265px;}
.x2e{left:148.422331px;}
.x76{left:151.050764px;}
.xb2{left:153.369244px;}
.x8c{left:155.376409px;}
.x6f{left:158.359789px;}
.x74{left:159.466098px;}
.x25{left:161.490000px;}
.xa7{left:165.448226px;}
.x26{left:171.390000px;}
.x77{left:175.622940px;}
.x85{left:177.183000px;}
.x3f{left:185.790000px;}
.xaa{left:186.853468px;}
.x40{left:187.950000px;}
.x3d{left:189.930000px;}
.x21{left:194.610000px;}
.xa8{left:198.294458px;}
.x41{left:208.110000px;}
.x24{left:212.610000px;}
.x9d{left:218.037665px;}
.x1f{left:223.950000px;}
.x1{left:225.750000px;}
.xa9{left:229.097122px;}
.xa0{left:249.493500px;}
.x43{left:262.110000px;}
.x5d{left:268.950000px;}
.xb0{left:271.768259px;}
.x18{left:279.030000px;}
.x1e{left:284.610000px;}
.x5f{left:286.950000px;}
.x7{left:293.115000px;}
.xb4{left:294.952316px;}
.xb6{left:300.019214px;}
.xb5{left:302.023978px;}
.xb1{left:304.781595px;}
.xb3{left:315.865417px;}
.x3{left:316.875000px;}
.x61{left:318.495000px;}
.xa6{left:321.149048px;}
.x86{left:322.668000px;}
.xaf{left:323.771564px;}
.x5{left:330.915000px;}
.x4{left:336.495000px;}
.x82{left:348.408000px;}
.x7e{left:350.568000px;}
.x9e{left:352.498500px;}
.x7c{left:355.068000px;}
.x6{left:371.235000px;}
.x78{left:379.908000px;}
.xab{left:414.811500px;}
.x5e{left:435.135000px;}
.xe{left:436.478989px;}
.x2{left:446.475000px;}
.x88{left:463.788000px;}
.x89{left:466.020748px;}
.x9{left:467.715000px;}
.x69{left:469.948462px;}
.x27{left:471.840000px;}
.x94{left:479.088000px;}
.xa5{left:480.763056px;}
.x32{left:483.015000px;}
.x8e{left:485.058000px;}
.xa3{left:487.708500px;}
.x36{left:488.985000px;}
.xa1{left:490.948500px;}
.xb7{left:499.785000px;}
.x57{left:522.240000px;}
.x67{left:548.014188px;}
.x44{left:549.825000px;}
.x3b{left:553.245000px;}
.x37{left:554.325000px;}
.x46{left:557.745000px;}
.x91{left:582.078000px;}
.x56{left:585.825000px;}
.x58{left:595.365000px;}
.x92{left:605.569943px;}
.xa{left:636.405000px;}
.x2c{left:639.465000px;}
.xd{left:644.256042px;}
.xb{left:645.585000px;}
.x64{left:646.665000px;}
.x45{left:653.325000px;}
.x52{left:662.325000px;}
.x68{left:686.490000px;}
.x35{left:691.710000px;}
.x31{left:692.790000px;}
.xf{left:694.248047px;}
.x95{left:703.443000px;}
.x71{left:712.247885px;}
.x66{left:718.530000px;}
.x93{left:729.903000px;}
.x87{left:748.443000px;}
.x90{left:749.703000px;}
.x70{left:755.790000px;}
.x9b{left:760.863000px;}
.x8d{left:762.123000px;}
.x4c{left:771.450000px;}
.x53{left:778.290000px;}
.xac{left:804.946350px;}
.xa4{left:809.413500px;}
.xa2{left:821.653500px;}
.x65{left:826.170000px;}
.xad{left:843.826350px;}
@media print{
.v5{vertical-align:-71.040000pt;}
.v2{vertical-align:-67.200000pt;}
.v13{vertical-align:-48.794065pt;}
.v7{vertical-align:-45.064618pt;}
.v6{vertical-align:-42.583288pt;}
.v12{vertical-align:-39.994946pt;}
.ve{vertical-align:-38.645312pt;}
.v10{vertical-align:-29.546912pt;}
.vb{vertical-align:-26.880000pt;}
.v8{vertical-align:-14.765181pt;}
.vf{vertical-align:-10.047147pt;}
.v1{vertical-align:-8.320000pt;}
.v9{vertical-align:-3.381176pt;}
.v11{vertical-align:-1.019039pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.320000pt;}
.v4{vertical-align:14.823811pt;}
.v3{vertical-align:26.880000pt;}
.va{vertical-align:35.200000pt;}
.vd{vertical-align:37.120000pt;}
.lsd1{letter-spacing:-0.909188pt;}
.lsd4{letter-spacing:-0.908943pt;}
.lsc4{letter-spacing:-0.907175pt;}
.lsd8{letter-spacing:-0.907144pt;}
.lsd3{letter-spacing:-0.808216pt;}
.lsdb{letter-spacing:-0.807769pt;}
.lsd7{letter-spacing:-0.806616pt;}
.ls9{letter-spacing:-0.773333pt;}
.ls35{letter-spacing:-0.736000pt;}
.ls51{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lsd0{letter-spacing:-0.520564pt;}
.lsd2{letter-spacing:-0.520424pt;}
.lsda{letter-spacing:-0.520136pt;}
.lsc3{letter-spacing:-0.519411pt;}
.lsd6{letter-spacing:-0.519394pt;}
.ls52{letter-spacing:-0.406933pt;}
.lsc0{letter-spacing:-0.368533pt;}
.ls2f{letter-spacing:-0.233067pt;}
.lsc7{letter-spacing:-0.190797pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls33{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls9b{letter-spacing:-0.064608pt;}
.lsba{letter-spacing:-0.064182pt;}
.ls83{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.135680pt;}
.ls27{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.233067pt;}
.ls26{letter-spacing:0.240640pt;}
.ls10{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls45{letter-spacing:0.295680pt;}
.ls48{letter-spacing:0.359750pt;}
.ls46{letter-spacing:0.360960pt;}
.ls1c{letter-spacing:0.504533pt;}
.ls15{letter-spacing:0.576000pt;}
.lsce{letter-spacing:0.872724pt;}
.lscf{letter-spacing:0.873697pt;}
.lscd{letter-spacing:0.873845pt;}
.lsd9{letter-spacing:1.225482pt;}
.lsd5{letter-spacing:1.227913pt;}
.ls3{letter-spacing:1.280000pt;}
.ls1{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls44{letter-spacing:5.760000pt;}
.lsb{letter-spacing:6.400000pt;}
.lsc{letter-spacing:6.528000pt;}
.ls2b{letter-spacing:10.862817pt;}
.ls5f{letter-spacing:10.965750pt;}
.lsa8{letter-spacing:12.160000pt;}
.lse{letter-spacing:12.800000pt;}
.ls96{letter-spacing:13.055402pt;}
.lsb5{letter-spacing:13.099512pt;}
.lsa0{letter-spacing:13.186394pt;}
.ls81{letter-spacing:13.317849pt;}
.ls77{letter-spacing:13.417114pt;}
.lsa7{letter-spacing:13.440000pt;}
.lsa9{letter-spacing:14.080000pt;}
.lsdc{letter-spacing:29.199360pt;}
.ls28{letter-spacing:35.754135pt;}
.ls61{letter-spacing:39.680000pt;}
.ls5b{letter-spacing:42.941013pt;}
.ls5a{letter-spacing:43.882473pt;}
.ls86{letter-spacing:52.206164pt;}
.ls85{letter-spacing:53.199074pt;}
.lsa3{letter-spacing:55.147536pt;}
.ls63{letter-spacing:56.392981pt;}
.ls29{letter-spacing:60.906667pt;}
.lsf{letter-spacing:60.928000pt;}
.lsc1{letter-spacing:61.232946pt;}
.lsa2{letter-spacing:64.286864pt;}
.ls24{letter-spacing:74.332778pt;}
.ls25{letter-spacing:77.855168pt;}
.ls73{letter-spacing:82.199712pt;}
.ls22{letter-spacing:84.019349pt;}
.ls21{letter-spacing:87.556932pt;}
.ls23{letter-spacing:89.613733pt;}
.lsbf{letter-spacing:94.800488pt;}
.ls4a{letter-spacing:96.753134pt;}
.ls5e{letter-spacing:98.076258pt;}
.ls2e{letter-spacing:100.107383pt;}
.lsc6{letter-spacing:100.715955pt;}
.ls56{letter-spacing:101.511486pt;}
.ls2d{letter-spacing:102.029681pt;}
.ls2c{letter-spacing:103.094215pt;}
.ls6d{letter-spacing:106.700529pt;}
.ls72{letter-spacing:106.965689pt;}
.ls1e{letter-spacing:108.222607pt;}
.ls3c{letter-spacing:113.254154pt;}
.ls93{letter-spacing:113.461405pt;}
.lsb2{letter-spacing:113.844759pt;}
.lsc9{letter-spacing:115.312470pt;}
.lscc{letter-spacing:115.468861pt;}
.ls4e{letter-spacing:118.915120pt;}
.ls76{letter-spacing:120.117643pt;}
.ls4c{letter-spacing:121.823088pt;}
.ls8a{letter-spacing:123.329876pt;}
.ls64{letter-spacing:123.673455pt;}
.ls80{letter-spacing:123.913904pt;}
.ls70{letter-spacing:133.852950pt;}
.ls6c{letter-spacing:134.648431pt;}
.ls71{letter-spacing:134.913591pt;}
.lsae{letter-spacing:135.572062pt;}
.ls43{letter-spacing:136.006400pt;}
.lsc2{letter-spacing:137.112829pt;}
.ls8f{letter-spacing:138.208995pt;}
.ls5d{letter-spacing:139.870199pt;}
.ls7d{letter-spacing:142.916843pt;}
.ls7e{letter-spacing:144.443395pt;}
.ls5c{letter-spacing:148.175262pt;}
.ls7b{letter-spacing:148.286095pt;}
.ls91{letter-spacing:148.537967pt;}
.lsb0{letter-spacing:149.039834pt;}
.ls7f{letter-spacing:149.970566pt;}
.lsc8{letter-spacing:151.855888pt;}
.ls1a{letter-spacing:152.507066pt;}
.lsb4{letter-spacing:156.194588pt;}
.ls82{letter-spacing:156.603171pt;}
.ls95{letter-spacing:161.436075pt;}
.ls74{letter-spacing:165.831289pt;}
.ls7c{letter-spacing:167.183755pt;}
.ls78{letter-spacing:167.868071pt;}
.ls75{letter-spacing:167.952572pt;}
.ls79{letter-spacing:168.341829pt;}
.lsac{letter-spacing:173.450171pt;}
.ls7a{letter-spacing:174.395397pt;}
.ls8d{letter-spacing:175.959555pt;}
.ls92{letter-spacing:177.113044pt;}
.lsb1{letter-spacing:177.711458pt;}
.ls9e{letter-spacing:179.260818pt;}
.lsbe{letter-spacing:182.341004pt;}
.lsa1{letter-spacing:185.933451pt;}
.ls4b{letter-spacing:186.109952pt;}
.ls94{letter-spacing:186.812841pt;}
.ls9d{letter-spacing:187.416259pt;}
.lsb3{letter-spacing:187.444027pt;}
.ls9c{letter-spacing:187.786960pt;}
.ls6e{letter-spacing:190.968491pt;}
.ls6f{letter-spacing:192.029133pt;}
.lsad{letter-spacing:198.912677pt;}
.ls8e{letter-spacing:201.441183pt;}
.ls8c{letter-spacing:202.762677pt;}
.ls88{letter-spacing:203.546554pt;}
.ls99{letter-spacing:203.674182pt;}
.ls68{letter-spacing:205.435350pt;}
.ls65{letter-spacing:206.333832pt;}
.lsb9{letter-spacing:206.698732pt;}
.lsaf{letter-spacing:208.119161pt;}
.ls90{letter-spacing:210.511803pt;}
.ls98{letter-spacing:211.458921pt;}
.ls97{letter-spacing:212.729899pt;}
.ls9f{letter-spacing:213.789047pt;}
.lsbb{letter-spacing:213.800878pt;}
.lsbc{letter-spacing:217.115212pt;}
.ls31{letter-spacing:221.369377pt;}
.ls30{letter-spacing:226.970413pt;}
.lsa6{letter-spacing:227.203954pt;}
.ls9a{letter-spacing:238.202411pt;}
.lsb6{letter-spacing:239.105558pt;}
.lsb7{letter-spacing:241.525549pt;}
.ls14{letter-spacing:243.096675pt;}
.ls54{letter-spacing:247.422951pt;}
.ls50{letter-spacing:247.779326pt;}
.ls19{letter-spacing:249.312656pt;}
.ls13{letter-spacing:249.571656pt;}
.ls47{letter-spacing:249.578289pt;}
.ls18{letter-spacing:255.632238pt;}
.ls12{letter-spacing:256.409235pt;}
.ls53{letter-spacing:256.787565pt;}
.ls4f{letter-spacing:257.193659pt;}
.ls60{letter-spacing:261.732435pt;}
.ls58{letter-spacing:262.165339pt;}
.ls17{letter-spacing:262.469817pt;}
.lsc5{letter-spacing:267.324749pt;}
.ls39{letter-spacing:268.649914pt;}
.ls20{letter-spacing:269.789345pt;}
.ls38{letter-spacing:277.950916pt;}
.ls34{letter-spacing:281.315840pt;}
.ls32{letter-spacing:283.186560pt;}
.ls37{letter-spacing:286.018635pt;}
.lsbd{letter-spacing:305.760507pt;}
.lsb8{letter-spacing:330.539103pt;}
.ls49{letter-spacing:349.440000pt;}
.ls8b{letter-spacing:364.816044pt;}
.ls87{letter-spacing:388.175558pt;}
.lsab{letter-spacing:398.890475pt;}
.ls40{letter-spacing:411.290737pt;}
.ls3b{letter-spacing:415.721760pt;}
.ls42{letter-spacing:417.662558pt;}
.lscb{letter-spacing:420.588158pt;}
.ls6a{letter-spacing:421.132744pt;}
.ls6b{letter-spacing:422.116941pt;}
.ls89{letter-spacing:426.899049pt;}
.ls67{letter-spacing:431.958610pt;}
.ls3d{letter-spacing:432.769939pt;}
.ls1f{letter-spacing:438.414079pt;}
.ls57{letter-spacing:438.669141pt;}
.ls59{letter-spacing:439.598384pt;}
.ls1d{letter-spacing:440.101860pt;}
.ls55{letter-spacing:440.361854pt;}
.ls62{letter-spacing:464.763389pt;}
.lsa4{letter-spacing:475.556624pt;}
.ls3a{letter-spacing:477.405767pt;}
.ls84{letter-spacing:477.526839pt;}
.ls66{letter-spacing:489.620037pt;}
.ls2a{letter-spacing:493.302746pt;}
.lsca{letter-spacing:555.345272pt;}
.ls41{letter-spacing:563.186717pt;}
.ls3e{letter-spacing:598.540043pt;}
.ls4d{letter-spacing:607.401816pt;}
.ls69{letter-spacing:609.508268pt;}
.lsaa{letter-spacing:651.958563pt;}
.ls3f{letter-spacing:751.052651pt;}
.lsa5{letter-spacing:768.742112pt;}
.ws43{word-spacing:-380.405737pt;}
.ws2d{word-spacing:-283.245316pt;}
.ws34{word-spacing:-281.374596pt;}
.ws97{word-spacing:-50.653963pt;}
.ws5{word-spacing:-42.666667pt;}
.ws59{word-spacing:-39.860343pt;}
.ws6b{word-spacing:-31.614788pt;}
.ws12{word-spacing:-22.145977pt;}
.ws9c{word-spacing:-19.320657pt;}
.wsa7{word-spacing:-19.193358pt;}
.ws99{word-spacing:-19.128728pt;}
.ws80{word-spacing:-19.070116pt;}
.ws83{word-spacing:-18.929028pt;}
.ws16{word-spacing:-15.224533pt;}
.ws17{word-spacing:-14.991467pt;}
.ws3{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.855467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws84{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.584533pt;}
.ws28{word-spacing:-14.486933pt;}
.wsae{word-spacing:-14.351467pt;}
.ws29{word-spacing:-14.080000pt;}
.wsb4{word-spacing:-14.016000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-9.200533pt;}
.wsc0{word-spacing:-8.691009pt;}
.wsc3{word-spacing:-8.688671pt;}
.wsc8{word-spacing:-8.683864pt;}
.wsb7{word-spacing:-8.671768pt;}
.ws31{word-spacing:-0.058756pt;}
.ws1c{word-spacing:-0.058753pt;}
.ws21{word-spacing:-0.057822pt;}
.ws24{word-spacing:-0.057639pt;}
.ws58{word-spacing:-0.041655pt;}
.ws6{word-spacing:0.000000pt;}
.ws42{word-spacing:2.603076pt;}
.ws22{word-spacing:11.506531pt;}
.ws7a{word-spacing:12.029167pt;}
.ws4c{word-spacing:14.252795pt;}
.ws1e{word-spacing:14.760900pt;}
.ws32{word-spacing:14.982723pt;}
.wsd{word-spacing:15.510846pt;}
.ws27{word-spacing:15.562632pt;}
.ws37{word-spacing:15.570281pt;}
.ws56{word-spacing:15.922890pt;}
.ws95{word-spacing:15.983552pt;}
.ws7b{word-spacing:16.195367pt;}
.ws1f{word-spacing:17.407276pt;}
.wsab{word-spacing:17.522370pt;}
.ws1b{word-spacing:17.637649pt;}
.ws51{word-spacing:17.752928pt;}
.wsf{word-spacing:18.229103pt;}
.ws19{word-spacing:18.383318pt;}
.ws6f{word-spacing:19.011952pt;}
.ws75{word-spacing:19.095276pt;}
.ws10{word-spacing:19.362926pt;}
.wsb1{word-spacing:19.385535pt;}
.ws9{word-spacing:19.774777pt;}
.ws77{word-spacing:19.967955pt;}
.ws11{word-spacing:20.073492pt;}
.ws6a{word-spacing:20.520470pt;}
.ws55{word-spacing:20.771589pt;}
.ws78{word-spacing:21.634786pt;}
.ws14{word-spacing:21.789217pt;}
.ws53{word-spacing:21.844322pt;}
.ws62{word-spacing:23.639748pt;}
.ws52{word-spacing:24.380338pt;}
.ws1a{word-spacing:24.381456pt;}
.wse{word-spacing:24.649416pt;}
.wsc{word-spacing:24.793852pt;}
.ws18{word-spacing:25.306905pt;}
.ws74{word-spacing:25.365366pt;}
.ws54{word-spacing:25.380847pt;}
.ws49{word-spacing:25.382495pt;}
.ws13{word-spacing:25.560428pt;}
.ws8b{word-spacing:25.903300pt;}
.ws7c{word-spacing:26.222238pt;}
.ws8{word-spacing:26.229453pt;}
.wsa3{word-spacing:26.238637pt;}
.ws5c{word-spacing:26.380927pt;}
.ws2e{word-spacing:27.321436pt;}
.ws79{word-spacing:28.752644pt;}
.ws4b{word-spacing:29.085000pt;}
.wsa5{word-spacing:30.112798pt;}
.ws30{word-spacing:31.035336pt;}
.wsac{word-spacing:33.603756pt;}
.ws8e{word-spacing:34.634750pt;}
.wsb2{word-spacing:34.858393pt;}
.ws5e{word-spacing:35.273374pt;}
.ws2f{word-spacing:36.017291pt;}
.ws88{word-spacing:36.028823pt;}
.ws70{word-spacing:36.146181pt;}
.ws9f{word-spacing:36.439575pt;}
.ws36{word-spacing:37.201522pt;}
.ws57{word-spacing:37.906033pt;}
.ws4a{word-spacing:38.602545pt;}
.ws8f{word-spacing:40.804974pt;}
.ws35{word-spacing:41.246555pt;}
.ws5f{word-spacing:41.557370pt;}
.wsb3{word-spacing:43.335860pt;}
.ws2b{word-spacing:44.355764pt;}
.ws4e{word-spacing:44.963749pt;}
.wsa9{word-spacing:47.132314pt;}
.wsb8{word-spacing:47.750920pt;}
.wsbc{word-spacing:48.681510pt;}
.wsbb{word-spacing:49.728424pt;}
.ws2a{word-spacing:50.234940pt;}
.ws1d{word-spacing:50.645261pt;}
.ws73{word-spacing:51.129738pt;}
.ws3a{word-spacing:51.167387pt;}
.ws44{word-spacing:51.340923pt;}
.ws39{word-spacing:52.098762pt;}
.ws40{word-spacing:53.126407pt;}
.ws4d{word-spacing:53.181667pt;}
.ws41{word-spacing:53.540533pt;}
.wsb9{word-spacing:54.148729pt;}
.ws94{word-spacing:55.291250pt;}
.ws5d{word-spacing:55.370305pt;}
.ws69{word-spacing:56.313360pt;}
.ws6c{word-spacing:57.811637pt;}
.ws96{word-spacing:62.281713pt;}
.ws25{word-spacing:64.556101pt;}
.ws7d{word-spacing:69.182382pt;}
.ws7e{word-spacing:70.708032pt;}
.ws8d{word-spacing:72.121773pt;}
.wsb0{word-spacing:72.171065pt;}
.ws8c{word-spacing:73.169547pt;}
.wsbd{word-spacing:75.494146pt;}
.ws15{word-spacing:78.716541pt;}
.ws50{word-spacing:80.124696pt;}
.ws87{word-spacing:81.680980pt;}
.ws47{word-spacing:84.287593pt;}
.ws5b{word-spacing:84.302677pt;}
.ws5a{word-spacing:84.818185pt;}
.ws64{word-spacing:85.419564pt;}
.ws63{word-spacing:85.932492pt;}
.ws3c{word-spacing:87.258150pt;}
.wsc5{word-spacing:87.762044pt;}
.wsb6{word-spacing:87.765020pt;}
.wsc7{word-spacing:87.863479pt;}
.wsc2{word-spacing:87.912110pt;}
.wsbf{word-spacing:87.959761pt;}
.ws2c{word-spacing:88.064043pt;}
.ws76{word-spacing:88.408276pt;}
.ws93{word-spacing:89.158439pt;}
.ws66{word-spacing:90.446256pt;}
.ws92{word-spacing:91.457752pt;}
.ws65{word-spacing:92.771528pt;}
.ws89{word-spacing:93.475432pt;}
.ws26{word-spacing:93.567817pt;}
.wsa0{word-spacing:93.710147pt;}
.wsb5{word-spacing:93.956768pt;}
.wsc4{word-spacing:93.958369pt;}
.wsc6{word-spacing:94.107009pt;}
.wsc1{word-spacing:94.159096pt;}
.wsbe{word-spacing:94.165248pt;}
.ws90{word-spacing:94.299655pt;}
.ws23{word-spacing:95.474634pt;}
.ws61{word-spacing:96.038431pt;}
.ws46{word-spacing:104.602765pt;}
.wsa8{word-spacing:111.286261pt;}
.wsba{word-spacing:111.845333pt;}
.wsa6{word-spacing:112.871034pt;}
.ws9a{word-spacing:113.501473pt;}
.ws33{word-spacing:116.339925pt;}
.ws98{word-spacing:117.346263pt;}
.ws9b{word-spacing:119.232677pt;}
.ws7f{word-spacing:119.793389pt;}
.wsaf{word-spacing:120.078905pt;}
.ws71{word-spacing:120.526389pt;}
.ws81{word-spacing:120.841039pt;}
.ws20{word-spacing:120.878704pt;}
.ws72{word-spacing:123.166938pt;}
.ws8a{word-spacing:127.626531pt;}
.ws4f{word-spacing:129.197404pt;}
.ws60{word-spacing:129.533316pt;}
.ws82{word-spacing:132.796215pt;}
.wsa2{word-spacing:137.650119pt;}
.wsa4{word-spacing:139.000206pt;}
.ws3f{word-spacing:140.040078pt;}
.ws68{word-spacing:144.704697pt;}
.ws85{word-spacing:145.422498pt;}
.ws9d{word-spacing:145.660616pt;}
.ws67{word-spacing:146.178868pt;}
.ws45{word-spacing:153.731721pt;}
.wsad{word-spacing:154.704086pt;}
.ws7{word-spacing:161.342434pt;}
.wsa1{word-spacing:165.533078pt;}
.ws6e{word-spacing:169.574538pt;}
.ws6d{word-spacing:172.239319pt;}
.ws91{word-spacing:172.940910pt;}
.ws86{word-spacing:173.259776pt;}
.wsaa{word-spacing:199.454289pt;}
.ws9e{word-spacing:209.286569pt;}
.ws3d{word-spacing:238.490087pt;}
.ws3b{word-spacing:261.541606pt;}
.wsb{word-spacing:268.851211pt;}
.ws38{word-spacing:285.540394pt;}
.ws48{word-spacing:302.931868pt;}
.ws3e{word-spacing:503.608279pt;}
._71{margin-left:-895.708320pt;}
._7c{margin-left:-892.831456pt;}
._9f{margin-left:-841.351181pt;}
._e3{margin-left:-766.728622pt;}
._e4{margin-left:-625.988188pt;}
._74{margin-left:-537.098858pt;}
._7d{margin-left:-524.954576pt;}
._37{margin-left:-473.443705pt;}
._9a{margin-left:-418.985798pt;}
._46{margin-left:-399.752951pt;}
._91{margin-left:-367.719583pt;}
._67{margin-left:-348.033878pt;}
._60{margin-left:-342.580619pt;}
._92{margin-left:-296.207981pt;}
._80{margin-left:-289.618743pt;}
._59{margin-left:-277.068909pt;}
._78{margin-left:-263.183066pt;}
._38{margin-left:-230.382270pt;}
._3b{margin-left:-215.008209pt;}
._64{margin-left:-212.778917pt;}
._68{margin-left:-211.236518pt;}
._5a{margin-left:-188.624705pt;}
._81{margin-left:-135.771625pt;}
._79{margin-left:-131.941818pt;}
._94{margin-left:-124.214192pt;}
._57{margin-left:-76.949474pt;}
._a1{margin-left:-26.628707pt;}
._e8{margin-left:-5.291376pt;}
._ef{margin-left:-4.305464pt;}
._62{margin-left:-3.158625pt;}
._b{margin-left:-1.917440pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.106560pt;}
._2{width:2.039467pt;}
._5{width:3.011627pt;}
._11{width:4.566400pt;}
._7{width:5.770240pt;}
._24{width:6.822827pt;}
._6{width:7.900160pt;}
._4{width:8.998400pt;}
._3{width:10.152960pt;}
._8{width:11.415040pt;}
._22{width:12.600320pt;}
._16{width:13.731840pt;}
._10{width:15.720960pt;}
._1d{width:16.734720pt;}
._1a{width:18.429440pt;}
._36{width:19.335680pt;}
._1c{width:20.876800pt;}
._c{width:21.844480pt;}
._9{width:23.022080pt;}
._a{width:24.287360pt;}
._1e{width:25.584000pt;}
._33{width:26.581526pt;}
._1b{width:27.555840pt;}
._20{width:28.615680pt;}
._21{width:29.969920pt;}
._14{width:31.736320pt;}
._15{width:33.548800pt;}
._6a{width:34.621440pt;}
._32{width:35.559392pt;}
._2c{width:36.553867pt;}
._99{width:38.273389pt;}
._13{width:39.226880pt;}
._e{width:40.874880pt;}
._f{width:41.863680pt;}
._d{width:43.192320pt;}
._3a{width:44.165392pt;}
._52{width:45.219952pt;}
._27{width:46.414982pt;}
._23{width:47.686187pt;}
._1f{width:48.785920pt;}
._12{width:49.812480pt;}
._51{width:51.696640pt;}
._17{width:53.240320pt;}
._98{width:54.872686pt;}
._29{width:56.390389pt;}
._25{width:58.114560pt;}
._48{width:59.318274pt;}
._5c{width:60.866657pt;}
._4f{width:62.909147pt;}
._4d{width:63.869423pt;}
._19{width:66.240000pt;}
._18{width:67.240960pt;}
._a8{width:68.827542pt;}
._53{width:69.850429pt;}
._63{width:71.818663pt;}
._34{width:72.996508pt;}
._5d{width:73.980923pt;}
._73{width:75.072610pt;}
._2b{width:76.746970pt;}
._47{width:78.117936pt;}
._41{width:79.228120pt;}
._72{width:80.353549pt;}
._4e{width:81.246113pt;}
._3f{width:82.307239pt;}
._b5{width:83.333042pt;}
._cb{width:84.474510pt;}
._c8{width:85.382566pt;}
._84{width:87.258150pt;}
._70{width:89.086063pt;}
._77{width:90.448756pt;}
._28{width:92.301855pt;}
._4c{width:93.468429pt;}
._f3{width:95.208960pt;}
._7f{width:96.478673pt;}
._ae{width:97.593049pt;}
._f1{width:98.902705pt;}
._c0{width:101.445041pt;}
._95{width:103.595800pt;}
._cd{width:105.211205pt;}
._44{width:106.372086pt;}
._d0{width:107.520722pt;}
._31{width:109.230648pt;}
._d7{width:110.126801pt;}
._40{width:111.203594pt;}
._2a{width:112.956815pt;}
._ea{width:113.882608pt;}
._f2{width:114.773177pt;}
._2f{width:115.685324pt;}
._7b{width:118.077359pt;}
._30{width:119.616807pt;}
._3d{width:120.677808pt;}
._3c{width:121.684444pt;}
._9d{width:122.758428pt;}
._a2{width:126.883605pt;}
._3e{width:128.079539pt;}
._5f{width:128.999927pt;}
._e9{width:131.454104pt;}
._b6{width:133.795826pt;}
._6c{width:134.755371pt;}
._6d{width:136.792709pt;}
._54{width:138.383648pt;}
._dc{width:140.208707pt;}
._4a{width:141.390471pt;}
._b1{width:143.092770pt;}
._45{width:144.323635pt;}
._42{width:146.080546pt;}
._bf{width:148.097508pt;}
._d9{width:150.192996pt;}
._55{width:152.629068pt;}
._db{width:153.672000pt;}
._49{width:154.619639pt;}
._66{width:156.994554pt;}
._56{width:160.738727pt;}
._75{width:163.152484pt;}
._7e{width:164.151332pt;}
._de{width:167.880316pt;}
._b3{width:170.885987pt;}
._be{width:172.511615pt;}
._6f{width:174.641986pt;}
._cf{width:175.845850pt;}
._e1{width:177.083676pt;}
._b9{width:178.610646pt;}
._96{width:181.087684pt;}
._bb{width:186.321454pt;}
._ba{width:187.219809pt;}
._e5{width:189.575908pt;}
._8e{width:193.488841pt;}
._88{width:194.540852pt;}
._8b{width:196.413888pt;}
._c1{width:199.918893pt;}
._c2{width:201.913974pt;}
._c9{width:203.188457pt;}
._a4{width:205.870726pt;}
._af{width:208.035664pt;}
._eb{width:209.861756pt;}
._e6{width:211.098807pt;}
._86{width:214.238975pt;}
._e2{width:215.240730pt;}
._bc{width:217.924540pt;}
._6b{width:220.439996pt;}
._bd{width:228.439909pt;}
._da{width:230.444563pt;}
._ac{width:233.574949pt;}
._a0{width:235.520000pt;}
._ce{width:238.051840pt;}
._85{width:247.338145pt;}
._d8{width:255.796029pt;}
._26{width:262.695146pt;}
._9c{width:266.903040pt;}
._8a{width:268.294071pt;}
._87{width:271.557309pt;}
._2e{width:272.801296pt;}
._dd{width:275.205120pt;}
._b0{width:279.776838pt;}
._c7{width:282.285311pt;}
._d3{width:283.723104pt;}
._e7{width:292.759440pt;}
._8d{width:303.272785pt;}
._d6{width:308.163151pt;}
._b4{width:309.894539pt;}
._90{width:314.741871pt;}
._ad{width:319.623653pt;}
._a5{width:322.521297pt;}
._ab{width:325.465288pt;}
._b8{width:328.917016pt;}
._c5{width:337.944515pt;}
._aa{width:341.765680pt;}
._a9{width:348.049676pt;}
._cc{width:353.598845pt;}
._a7{width:355.057102pt;}
._50{width:356.480000pt;}
._58{width:360.320000pt;}
._a3{width:361.609632pt;}
._d2{width:366.581430pt;}
._c3{width:375.072120pt;}
._ca{width:376.364748pt;}
._9b{width:379.040000pt;}
._d5{width:381.388318pt;}
._d4{width:387.502018pt;}
._a6{width:390.736312pt;}
._89{width:411.261457pt;}
._c4{width:415.365640pt;}
._35{width:416.800000pt;}
._b7{width:424.538348pt;}
._d1{width:429.410674pt;}
._83{width:432.714951pt;}
._8c{width:435.360000pt;}
._2d{width:436.640000pt;}
._97{width:443.040000pt;}
._ed{width:463.582385pt;}
._76{width:467.360000pt;}
._8f{width:472.313292pt;}
._9e{width:491.040000pt;}
._ec{width:519.200000pt;}
._b2{width:528.336435pt;}
._ee{width:543.835087pt;}
._4b{width:546.080000pt;}
._f0{width:548.820849pt;}
._c6{width:561.915963pt;}
._df{width:574.257960pt;}
._39{width:632.480000pt;}
._6e{width:659.360000pt;}
._43{width:672.800000pt;}
._e0{width:680.621625pt;}
._93{width:707.360000pt;}
._61{width:724.000000pt;}
._69{width:731.040000pt;}
._65{width:738.720000pt;}
._82{width:807.200000pt;}
._7a{width:835.360000pt;}
._5b{width:848.800000pt;}
._5e{width:852.640000pt;}
.fs29{font-size:30.900792pt;}
.fs47{font-size:31.168725pt;}
.fs46{font-size:31.192351pt;}
.fs3e{font-size:31.193409pt;}
.fs49{font-size:31.203473pt;}
.fs45{font-size:31.208754pt;}
.fs43{font-size:31.216683pt;}
.fs3f{font-size:31.223847pt;}
.fs48{font-size:31.236922pt;}
.fs44{font-size:31.254211pt;}
.fs42{font-size:31.262623pt;}
.fs1f{font-size:31.341594pt;}
.fs24{font-size:33.451386pt;}
.fs11{font-size:33.452920pt;}
.fs13{font-size:33.558774pt;}
.fs40{font-size:33.728376pt;}
.fs1d{font-size:33.744956pt;}
.fs18{font-size:33.745677pt;}
.fs36{font-size:33.923073pt;}
.fs32{font-size:33.926300pt;}
.fs21{font-size:33.976490pt;}
.fs7{font-size:34.016959pt;}
.fs3a{font-size:34.037689pt;}
.fs16{font-size:34.067328pt;}
.fs30{font-size:34.179170pt;}
.fs2c{font-size:34.195182pt;}
.fs1b{font-size:34.208022pt;}
.fs38{font-size:34.263441pt;}
.fs34{font-size:34.318106pt;}
.fs27{font-size:34.367174pt;}
.fse{font-size:34.589296pt;}
.fsc{font-size:34.690358pt;}
.fs4{font-size:37.120000pt;}
.fs25{font-size:41.654981pt;}
.fs6{font-size:42.666667pt;}
.fs2b{font-size:52.885342pt;}
.fs3d{font-size:53.120000pt;}
.fs2a{font-size:53.375522pt;}
.fs20{font-size:54.193136pt;}
.fs2e{font-size:57.000823pt;}
.fsa{font-size:57.324223pt;}
.fs23{font-size:57.636733pt;}
.fs10{font-size:57.639376pt;}
.fs14{font-size:57.821763pt;}
.fs41{font-size:58.161900pt;}
.fs15{font-size:58.209664pt;}
.fs19{font-size:58.210907pt;}
.fs37{font-size:58.497639pt;}
.fs33{font-size:58.603802pt;}
.fs8{font-size:58.678865pt;}
.fs3b{font-size:58.695285pt;}
.fs22{font-size:58.699411pt;}
.fs9{font-size:58.753203pt;}
.fs17{font-size:58.755776pt;}
.fs12{font-size:58.808365pt;}
.fs2{font-size:58.880000pt;}
.fs2d{font-size:58.966869pt;}
.fs31{font-size:59.040606pt;}
.fs39{font-size:59.084577pt;}
.fs1c{font-size:59.160809pt;}
.fs35{font-size:59.198340pt;}
.fsb{font-size:59.213841pt;}
.fs28{font-size:59.282982pt;}
.fsf{font-size:59.686098pt;}
.fsd{font-size:59.860487pt;}
.fs2f{font-size:61.991106pt;}
.fs5{font-size:62.064349pt;}
.fs3c{font-size:62.547053pt;}
.fs1{font-size:64.000000pt;}
.fs26{font-size:71.950077pt;}
.fs3{font-size:74.880000pt;}
.fs1e{font-size:77.023104pt;}
.fs1a{font-size:77.418433pt;}
.fs0{font-size:85.120000pt;}
.y34b{bottom:-1.972918pt;}
.y39c{bottom:-1.916783pt;}
.y374{bottom:-1.910232pt;}
.y360{bottom:-1.883660pt;}
.y38a{bottom:-1.863449pt;}
.y2f9{bottom:-1.848612pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:1.806295pt;}
.y17d{bottom:1.806841pt;}
.y2b5{bottom:1.806850pt;}
.y26c{bottom:1.831951pt;}
.y1fb{bottom:1.837470pt;}
.y2a2{bottom:1.837733pt;}
.y278{bottom:1.849802pt;}
.y2c7{bottom:1.855223pt;}
.y187{bottom:1.872128pt;}
.y4f{bottom:2.245333pt;}
.y19c{bottom:2.249378pt;}
.yac{bottom:2.853874pt;}
.y1d7{bottom:2.856547pt;}
.yd8{bottom:2.862904pt;}
.y1cf{bottom:2.883246pt;}
.y112{bottom:2.895824pt;}
.y101{bottom:2.927424pt;}
.y9b{bottom:2.960011pt;}
.y208{bottom:3.077481pt;}
.y320{bottom:3.142161pt;}
.y251{bottom:3.142618pt;}
.y236{bottom:3.163910pt;}
.y150{bottom:3.168452pt;}
.y295{bottom:3.169036pt;}
.y247{bottom:3.174734pt;}
.y1f1{bottom:3.181949pt;}
.y225{bottom:3.187758pt;}
.y1c1{bottom:3.200446pt;}
.y191{bottom:3.231941pt;}
.y28f{bottom:3.232648pt;}
.y147{bottom:3.241308pt;}
.y214{bottom:3.289161pt;}
.y250{bottom:3.299344pt;}
.y1b6{bottom:3.328663pt;}
.y258{bottom:3.356297pt;}
.y1b5{bottom:3.360062pt;}
.y31f{bottom:3.396296pt;}
.y262{bottom:3.452975pt;}
.yc7{bottom:3.660954pt;}
.y5b{bottom:3.693329pt;}
.yf8{bottom:3.975965pt;}
.y122{bottom:3.976050pt;}
.y1c8{bottom:3.998614pt;}
.y1f0{bottom:4.116106pt;}
.y140{bottom:4.220749pt;}
.y1de{bottom:4.278626pt;}
.y308{bottom:4.665672pt;}
.y12b{bottom:5.103021pt;}
.y165{bottom:5.500558pt;}
.y17c{bottom:5.500934pt;}
.y2b6{bottom:5.501113pt;}
.y270{bottom:5.570305pt;}
.y2a6{bottom:5.588718pt;}
.y1fd{bottom:5.592959pt;}
.y27c{bottom:5.625665pt;}
.y2c9{bottom:5.650684pt;}
.y2ca{bottom:5.650815pt;}
.y2cc{bottom:5.651207pt;}
.y186{bottom:5.685861pt;}
.y79{bottom:5.964072pt;}
.y205{bottom:6.419889pt;}
.y83{bottom:6.515713pt;}
.yab{bottom:6.548137pt;}
.y14d{bottom:6.617769pt;}
.y74{bottom:6.676842pt;}
.y102{bottom:6.686560pt;}
.y24b{bottom:6.712636pt;}
.y9a{bottom:6.762634pt;}
.y8d{bottom:6.782393pt;}
.y24a{bottom:6.900193pt;}
.y25a{bottom:6.922934pt;}
.y13f{bottom:6.931902pt;}
.y292{bottom:6.966271pt;}
.y1b8{bottom:7.091415pt;}
.y1e2{bottom:7.111488pt;}
.y1c0{bottom:7.154215pt;}
.y1ba{bottom:7.155523pt;}
.y1d2{bottom:7.371623pt;}
.yf5{bottom:7.389256pt;}
.y11f{bottom:7.389414pt;}
.yc9{bottom:7.417738pt;}
.y1cb{bottom:7.440171pt;}
.y5d{bottom:7.448818pt;}
.y129{bottom:7.831920pt;}
.y141{bottom:7.979885pt;}
.y1e6{bottom:8.045645pt;}
.y19d{bottom:8.146468pt;}
.y343{bottom:8.239851pt;}
.y36b{bottom:8.280179pt;}
.y393{bottom:8.287590pt;}
.y354{bottom:8.326360pt;}
.y37f{bottom:8.340923pt;}
.y2f2{bottom:8.342144pt;}
.y310{bottom:8.382570pt;}
.y30f{bottom:8.572846pt;}
.y12e{bottom:8.858845pt;}
.y190{bottom:9.920722pt;}
.y230{bottom:10.895370pt;}
.y220{bottom:10.976843pt;}
.y1d6{bottom:11.130084pt;}
.y1ce{bottom:11.233468pt;}
.y26b{bottom:12.118978pt;}
.y2a1{bottom:12.159517pt;}
.y277{bottom:12.240045pt;}
.y31e{bottom:12.258466pt;}
.y2c6{bottom:12.282601pt;}
.y185{bottom:12.374643pt;}
.y31d{bottom:12.512602pt;}
.y14b{bottom:13.199643pt;}
.y99{bottom:13.431929pt;}
.y8c{bottom:13.471174pt;}
.y28e{bottom:13.548145pt;}
.y1dd{bottom:13.747044pt;}
.y207{bottom:13.748782pt;}
.y24f{bottom:14.196956pt;}
.yf7{bottom:14.215840pt;}
.y34d{bottom:14.244928pt;}
.y376{bottom:14.271997pt;}
.y39e{bottom:14.287670pt;}
.y362{bottom:14.330361pt;}
.y2fb{bottom:14.334105pt;}
.y38c{bottom:14.341004pt;}
.y24e{bottom:14.352397pt;}
.y25b{bottom:14.437696pt;}
.y261{bottom:14.533067pt;}
.y238{bottom:14.647266pt;}
.y1bf{bottom:14.712429pt;}
.y228{bottom:14.756704pt;}
.y137{bottom:14.778513pt;}
.y11c{bottom:14.778828pt;}
.y260{bottom:14.787827pt;}
.y1be{bottom:14.807937pt;}
.y344{bottom:14.844056pt;}
.y36c{bottom:14.869539pt;}
.y139{bottom:14.873576pt;}
.y121{bottom:14.873894pt;}
.y394{bottom:14.886366pt;}
.y307{bottom:14.893659pt;}
.y355{bottom:14.928788pt;}
.y2f3{bottom:14.931728pt;}
.y380{bottom:14.939699pt;}
.y1ef{bottom:15.645749pt;}
.y14f{bottom:15.984282pt;}
.y19b{bottom:16.273966pt;}
.y294{bottom:16.332784pt;}
.y204{bottom:17.305043pt;}
.y24d{bottom:17.828636pt;}
.y25d{bottom:18.227738pt;}
.y1bd{bottom:18.252766pt;}
.y138{bottom:18.505257pt;}
.y11e{bottom:18.505652pt;}
.y291{bottom:18.927886pt;}
.y1ee{bottom:19.091693pt;}
.y31c{bottom:19.913817pt;}
.y31b{bottom:20.167953pt;}
.y22f{bottom:21.191699pt;}
.y21f{bottom:21.349917pt;}
.y1d5{bottom:22.592030pt;}
.y1cd{bottom:22.801652pt;}
.y235{bottom:23.885537pt;}
.y369{bottom:23.927085pt;}
.y1c7{bottom:24.012473pt;}
.y224{bottom:24.063833pt;}
.y1fa{bottom:24.152843pt;}
.y211{bottom:24.278458pt;}
.y246{bottom:24.936556pt;}
.y28d{bottom:25.160544pt;}
.y1b4{bottom:25.459039pt;}
.y257{bottom:25.487739pt;}
.y1b3{bottom:25.523148pt;}
.y213{bottom:25.731444pt;}
.y5a{bottom:26.008702pt;}
.y26a{bottom:26.017214pt;}
.y2a0{bottom:26.104711pt;}
.yc6{bottom:26.134317pt;}
.y276{bottom:26.277729pt;}
.y1dc{bottom:26.307299pt;}
.y2c5{bottom:26.378533pt;}
.y206{bottom:26.656741pt;}
.y352{bottom:26.854809pt;}
.y306{bottom:26.869317pt;}
.y302{bottom:26.915291pt;}
.y1d1{bottom:27.202979pt;}
.y24c{bottom:27.378659pt;}
.y1ca{bottom:27.455338pt;}
.y203{bottom:27.729783pt;}
.y25f{bottom:27.907304pt;}
.y1fc{bottom:27.908332pt;}
.y212{bottom:28.035242pt;}
.yf6{bottom:28.055280pt;}
.y120{bottom:28.055879pt;}
.y1bc{bottom:28.105788pt;}
.y25e{bottom:28.162064pt;}
.y1bb{bottom:28.201296pt;}
.y249{bottom:28.474458pt;}
.y14c{bottom:28.545665pt;}
.y248{bottom:28.662016pt;}
.y82{bottom:28.666791pt;}
.y290{bottom:28.926622pt;}
.y1ed{bottom:29.010674pt;}
.y259{bottom:29.054376pt;}
.yf4{bottom:29.151079pt;}
.y11d{bottom:29.151702pt;}
.y1e1{bottom:29.171873pt;}
.y25c{bottom:29.245119pt;}
.y1b7{bottom:29.254501pt;}
.y14e{bottom:29.273956pt;}
.y1b9{bottom:29.285900pt;}
.y293{bottom:29.622457pt;}
.y26f{bottom:29.755568pt;}
.y5c{bottom:29.764191pt;}
.y131{bottom:29.818765pt;}
.y2a5{bottom:29.855696pt;}
.yc8{bottom:29.860021pt;}
.y1ec{bottom:29.913121pt;}
.y27b{bottom:30.053592pt;}
.y1e5{bottom:30.074319pt;}
.y2c8{bottom:30.141286pt;}
.y2cb{bottom:30.141809pt;}
.y30e{bottom:30.332080pt;}
.y30d{bottom:30.586216pt;}
.y313{bottom:30.587519pt;}
.y12d{bottom:33.317792pt;}
.y31a{bottom:33.763564pt;}
.y319{bottom:33.986422pt;}
.y14a{bottom:35.127539pt;}
.y1d4{bottom:35.129302pt;}
.y368{bottom:35.335040pt;}
.y1cc{bottom:35.455129pt;}
.y28c{bottom:35.476041pt;}
.y1db{bottom:35.775718pt;}
.y356{bottom:35.934007pt;}
.y50{bottom:36.266602pt;}
.y301{bottom:37.703849pt;}
.y381{bottom:37.743587pt;}
.y351{bottom:38.265835pt;}
.y12a{bottom:40.796517pt;}
.y234{bottom:42.617382pt;}
.y223{bottom:42.935296pt;}
.y36d{bottom:44.230249pt;}
.y395{bottom:44.289030pt;}
.y12f{bottom:44.583946pt;}
.y367{bottom:46.743595pt;}
.y1d3{bottom:47.034334pt;}
.y1c9{bottom:47.470505pt;}
.y318{bottom:47.582033pt;}
.y317{bottom:47.836169pt;}
.y269{bottom:48.381799pt;}
.y2a9{bottom:48.447534pt;}
.y29f{bottom:48.544860pt;}
.y275{bottom:48.866711pt;}
.y345{bottom:49.077732pt;}
.y300{bottom:49.089611pt;}
.y350{bottom:49.676860pt;}
.y22e{bottom:50.315941pt;}
.y21e{bottom:50.691236pt;}
.y1eb{bottom:52.005216pt;}
.y26e{bottom:52.118843pt;}
.y30c{bottom:52.122592pt;}
.y2aa{bottom:52.166954pt;}
.y1da{bottom:52.167736pt;}
.y2a4{bottom:52.294529pt;}
.y30b{bottom:52.345449pt;}
.y27a{bottom:52.641250pt;}
.y237{bottom:54.069153pt;}
.y130{bottom:54.246106pt;}
.y227{bottom:54.472423pt;}
.y12c{bottom:55.401035pt;}
.y1e0{bottom:55.708813pt;}
.y1e4{bottom:55.934755pt;}
.y2f4{bottom:56.274603pt;}
.y357{bottom:56.357646pt;}
.y366{bottom:57.550784pt;}
.y268{bottom:58.668827pt;}
.y2a8{bottom:58.770634pt;}
.y29e{bottom:58.898209pt;}
.y274{bottom:59.256954pt;}
.y2ff{bottom:60.463405pt;}
.y34f{bottom:60.473764pt;}
.y382{bottom:60.534891pt;}
.y316{bottom:61.399198pt;}
.y1ea{bottom:63.308917pt;}
.y233{bottom:63.339008pt;}
.y1e9{bottom:63.534859pt;}
.y222{bottom:63.811371pt;}
.y365{bottom:68.960537pt;}
.y2fe{bottom:71.844978pt;}
.y34e{bottom:71.886589pt;}
.y267{bottom:72.565752pt;}
.y29d{bottom:72.714512pt;}
.y273{bottom:73.293314pt;}
.y36e{bottom:73.590360pt;}
.y396{bottom:73.688697pt;}
.y30a{bottom:73.850547pt;}
.y312{bottom:73.851850pt;}
.y309{bottom:74.104683pt;}
.y311{bottom:74.105986pt;}
.y1d9{bottom:74.228121pt;}
.y315{bottom:74.550398pt;}
.y314{bottom:74.804534pt;}
.y26d{bottom:76.304106pt;}
.y2a3{bottom:76.465497pt;}
.y1e8{bottom:76.642131pt;}
.y358{bottom:76.760900pt;}
.y1e7{bottom:76.899784pt;}
.y279{bottom:77.069177pt;}
.y1df{bottom:77.769198pt;}
.y1e3{bottom:77.963429pt;}
.y305{bottom:80.361636pt;}
.y364{bottom:80.370291pt;}
.y304{bottom:80.615771pt;}
.y22d{bottom:81.974785pt;}
.y21d{bottom:82.586050pt;}
.y2fd{bottom:82.634134pt;}
.y346{bottom:83.299414pt;}
.y383{bottom:83.335783pt;}
.y232{bottom:85.695097pt;}
.y226{bottom:86.334092pt;}
.y22c{bottom:92.238215pt;}
.y21c{bottom:92.925979pt;}
.y2f5{bottom:97.007708pt;}
.y359{bottom:97.170149pt;}
.y4d{bottom:98.240000pt;}
.y183{bottom:98.313333pt;}
.y36{bottom:99.200000pt;}
.y36f{bottom:102.934914pt;}
.y397{bottom:103.081174pt;}
.y341{bottom:103.767200pt;}
.y384{bottom:106.142667pt;}
.y22b{bottom:106.160105pt;}
.y21b{bottom:106.951636pt;}
.y104{bottom:107.680000pt;}
.y375{bottom:107.734160pt;}
.y39d{bottom:107.880986pt;}
.y38b{bottom:107.934320pt;}
.y361{bottom:107.974280pt;}
.y89{bottom:108.640000pt;}
.y231{bottom:109.880417pt;}
.y221{bottom:110.699678pt;}
.y391{bottom:112.141009pt;}
.ycb{bottom:112.160000pt;}
.y2fa{bottom:112.596215pt;}
.y34c{bottom:112.722071pt;}
.y4c{bottom:115.040000pt;}
.y182{bottom:115.272000pt;}
.y35{bottom:116.160000pt;}
.y2dd{bottom:116.886667pt;}
.y347{bottom:117.531890pt;}
.y35a{bottom:117.585394pt;}
.y340{bottom:120.727200pt;}
.y100{bottom:121.013333pt;}
.y390{bottom:123.544451pt;}
.y88{bottom:125.440000pt;}
.y148{bottom:125.760000pt;}
.yc5{bottom:126.346667pt;}
.y1c5{bottom:126.952000pt;}
.y103{bottom:127.680000pt;}
.y3d8{bottom:128.320000pt;}
.y385{bottom:128.943559pt;}
.y4b{bottom:131.840000pt;}
.y181{bottom:132.072000pt;}
.y370{bottom:132.297418pt;}
.y398{bottom:132.479643pt;}
.y34{bottom:132.960000pt;}
.y2dc{bottom:133.846667pt;}
.y38f{bottom:134.330681pt;}
.y33f{bottom:137.527200pt;}
.y2f6{bottom:138.357166pt;}
.y35b{bottom:138.594210pt;}
.y240{bottom:138.880000pt;}
.y146{bottom:139.946667pt;}
.y87{bottom:142.240000pt;}
.y1c4{bottom:143.752000pt;}
.yca{bottom:144.960000pt;}
.y3d7{bottom:145.280000pt;}
.y23f{bottom:145.525333pt;}
.y38e{bottom:145.734123pt;}
.y145{bottom:146.560000pt;}
.y4a{bottom:148.800000pt;}
.y180{bottom:149.058667pt;}
.y33{bottom:149.920000pt;}
.y2db{bottom:150.673333pt;}
.y386{bottom:151.732466pt;}
.y348{bottom:151.752372pt;}
.y37d{bottom:152.660289pt;}
.y33e{bottom:154.514000pt;}
.y29b{bottom:157.205333pt;}
.y35c{bottom:158.997464pt;}
.y86{bottom:160.346667pt;}
.y1c3{bottom:160.738667pt;}
.y371{bottom:161.659923pt;}
.y399{bottom:161.884105pt;}
.y3d6{bottom:162.106667pt;}
.y23e{bottom:162.485333pt;}
.y37c{bottom:164.047459pt;}
.yff{bottom:164.666667pt;}
.y49{bottom:165.626667pt;}
.y17f{bottom:165.858667pt;}
.y32{bottom:166.746667pt;}
.y144{bottom:167.226667pt;}
.y2da{bottom:167.633333pt;}
.y33d{bottom:168.594000pt;}
.y29a{bottom:174.165333pt;}
.y387{bottom:174.539350pt;}
.yc4{bottom:174.746667pt;}
.y3a3{bottom:175.079259pt;}
.y37b{bottom:175.434630pt;}
.y392{bottom:178.400000pt;}
.y3d5{bottom:179.066667pt;}
.y2f7{bottom:179.102239pt;}
.y23d{bottom:179.285333pt;}
.y35d{bottom:179.418704pt;}
.y17b{bottom:181.065995pt;}
.yfe{bottom:181.466667pt;}
.y48{bottom:182.586667pt;}
.y31{bottom:183.546667pt;}
.y2d9{bottom:184.433333pt;}
.y143{bottom:184.986667pt;}
.y349{bottom:185.984849pt;}
.y37a{bottom:186.223421pt;}
.y3a2{bottom:186.482701pt;}
.y17e{bottom:186.658667pt;}
.y299{bottom:190.965333pt;}
.y372{bottom:191.016444pt;}
.y39a{bottom:191.288566pt;}
.yc3{bottom:192.346667pt;}
.y1b2{bottom:192.952242pt;}
.y85{bottom:194.106667pt;}
.y3d4{bottom:195.866667pt;}
.y3a1{bottom:197.286908pt;}
.y388{bottom:197.340242pt;}
.y379{bottom:197.604608pt;}
.yfd{bottom:198.266667pt;}
.y13e{bottom:199.146667pt;}
.y47{bottom:199.386667pt;}
.y35e{bottom:199.827954pt;}
.y30{bottom:200.506667pt;}
.y2d8{bottom:201.873333pt;}
.y17a{bottom:204.578667pt;}
.y142{bottom:207.066667pt;}
.y298{bottom:207.765333pt;}
.y81{bottom:208.413333pt;}
.y3a0{bottom:208.690350pt;}
.y378{bottom:208.991778pt;}
.yc2{bottom:210.106667pt;}
.y1c2{bottom:210.978667pt;}
.y23c{bottom:212.084800pt;}
.y3d3{bottom:212.826667pt;}
.yfc{bottom:215.226667pt;}
.y2f{bottom:217.306667pt;}
.y373{bottom:219.768602pt;}
.y377{bottom:219.768841pt;}
.y2f8{bottom:219.835345pt;}
.y2fc{bottom:219.835524pt;}
.y39f{bottom:220.075755pt;}
.y39b{bottom:220.075815pt;}
.y38d{bottom:220.129089pt;}
.y389{bottom:220.129149pt;}
.y34a{bottom:220.205331pt;}
.y363{bottom:220.231147pt;}
.y35f{bottom:220.231207pt;}
.y179{bottom:221.378667pt;}
.y2d7{bottom:222.833333pt;}
.y297{bottom:224.725333pt;}
.y84{bottom:225.626667pt;}
.y13d{bottom:227.546667pt;}
.yc1{bottom:227.866667pt;}
.y23b{bottom:229.044800pt;}
.y3d2{bottom:229.626667pt;}
.y334{bottom:231.313867pt;}
.yfb{bottom:232.026667pt;}
.y2e{bottom:234.266667pt;}
.y178{bottom:238.338667pt;}
.y2d6{bottom:239.633333pt;}
.y1b1{bottom:241.379333pt;}
.y13c{bottom:245.306667pt;}
.yc0{bottom:245.466667pt;}
.y23a{bottom:245.845333pt;}
.y3d1{bottom:246.426667pt;}
.y333{bottom:247.473867pt;}
.yfa{bottom:248.986667pt;}
.y2d{bottom:251.066667pt;}
.y2f0{bottom:251.633333pt;}
.y80{bottom:254.746667pt;}
.y177{bottom:255.138667pt;}
.y28b{bottom:255.933278pt;}
.y2d5{bottom:256.433333pt;}
.y1b0{bottom:258.340000pt;}
.y239{bottom:262.805333pt;}
.y13b{bottom:262.906667pt;}
.ybf{bottom:263.226667pt;}
.y3d0{bottom:263.386667pt;}
.y332{bottom:263.953867pt;}
.y2ef{bottom:267.153333pt;}
.y2c{bottom:267.866667pt;}
.y7f{bottom:271.546667pt;}
.y176{bottom:271.938667pt;}
.y2d4{bottom:273.393333pt;}
.y296{bottom:274.805333pt;}
.y1af{bottom:275.138667pt;}
.y22a{bottom:277.104217pt;}
.y21a{bottom:277.104737pt;}
.y136{bottom:277.213333pt;}
.yf3{bottom:279.146667pt;}
.y3cf{bottom:280.186667pt;}
.ybe{bottom:280.986667pt;}
.y331{bottom:281.553867pt;}
.y2ee{bottom:283.953333pt;}
.y2b{bottom:284.826667pt;}
.y7e{bottom:288.506667pt;}
.y175{bottom:288.898667pt;}
.y2d3{bottom:290.193333pt;}
.y1ae{bottom:292.098667pt;}
.y330{bottom:295.793867pt;}
.y13a{bottom:295.866667pt;}
.y3ce{bottom:297.146667pt;}
.yf9{bottom:297.786667pt;}
.y2ed{bottom:298.193333pt;}
.ybd{bottom:298.586667pt;}
.y2a{bottom:301.626667pt;}
.y7d{bottom:305.306667pt;}
.y353{bottom:305.440000pt;}
.y174{bottom:305.698667pt;}
.y28a{bottom:306.485333pt;}
.y2d2{bottom:307.153333pt;}
.y2f1{bottom:307.840000pt;}
.y1ad{bottom:308.898667pt;}
.ybb{bottom:312.880000pt;}
.y3cd{bottom:313.946667pt;}
.y29{bottom:318.586667pt;}
.ybc{bottom:319.546667pt;}
.y7c{bottom:322.266667pt;}
.y173{bottom:322.658667pt;}
.y289{bottom:323.285333pt;}
.y2d1{bottom:323.953333pt;}
.y1ac{bottom:326.338667pt;}
.y135{bottom:326.586667pt;}
.yf2{bottom:327.706667pt;}
.y3cc{bottom:330.746667pt;}
.y28{bottom:335.386667pt;}
.y229{bottom:335.605333pt;}
.yba{bottom:337.466667pt;}
.y7b{bottom:339.066667pt;}
.y172{bottom:339.458667pt;}
.y288{bottom:340.085333pt;}
.y2d0{bottom:340.753333pt;}
.y134{bottom:344.186667pt;}
.yf1{bottom:344.506667pt;}
.y1ab{bottom:347.138667pt;}
.y3cb{bottom:347.706667pt;}
.y27{bottom:352.346667pt;}
.yb9{bottom:355.226667pt;}
.y7a{bottom:355.866667pt;}
.y171{bottom:356.258667pt;}
.y287{bottom:357.085333pt;}
.y2cf{bottom:357.713333pt;}
.yf0{bottom:361.466667pt;}
.y133{bottom:361.946667pt;}
.y1aa{bottom:364.138667pt;}
.y3ca{bottom:364.506667pt;}
.y26{bottom:369.146667pt;}
.y78{bottom:369.346667pt;}
.y46{bottom:369.786667pt;}
.yb8{bottom:373.026667pt;}
.y170{bottom:373.258667pt;}
.y286{bottom:373.885333pt;}
.y77{bottom:376.066667pt;}
.y128{bottom:376.080000pt;}
.yef{bottom:378.306667pt;}
.y1a9{bottom:380.938667pt;}
.y3c9{bottom:381.506667pt;}
.y25{bottom:385.986667pt;}
.y16f{bottom:390.058667pt;}
.yb7{bottom:390.466667pt;}
.y45{bottom:390.626667pt;}
.y2ce{bottom:391.513333pt;}
.y76{bottom:393.186667pt;}
.yee{bottom:395.106667pt;}
.y1a8{bottom:397.898667pt;}
.y3c8{bottom:398.306667pt;}
.y24{bottom:402.946667pt;}
.y284{bottom:405.820294pt;}
.y219{bottom:406.524800pt;}
.y16e{bottom:407.018667pt;}
.y73{bottom:407.413333pt;}
.y44{bottom:407.426667pt;}
.y2c4{bottom:407.998325pt;}
.y132{bottom:408.066667pt;}
.yb6{bottom:411.266667pt;}
.yed{bottom:412.066667pt;}
.y75{bottom:414.146667pt;}
.y1a7{bottom:414.698667pt;}
.y3c7{bottom:415.106667pt;}
.y23{bottom:419.746667pt;}
.y285{bottom:422.685333pt;}
.y218{bottom:423.324800pt;}
.y16d{bottom:423.818667pt;}
.y43{bottom:424.386667pt;}
.y33c{bottom:424.954000pt;}
.y2cd{bottom:425.753333pt;}
.yb5{bottom:428.226667pt;}
.yec{bottom:428.866667pt;}
.y72{bottom:431.266667pt;}
.y1a6{bottom:431.658667pt;}
.y3c6{bottom:432.066667pt;}
.y22{bottom:436.706667pt;}
.y217{bottom:440.124800pt;}
.y16c{bottom:440.778667pt;}
.y42{bottom:441.186667pt;}
.y33b{bottom:442.714000pt;}
.yb4{bottom:445.026667pt;}
.yeb{bottom:445.826667pt;}
.y71{bottom:448.066667pt;}
.y1a5{bottom:448.458667pt;}
.y3c5{bottom:448.866667pt;}
.y127{bottom:451.586667pt;}
.y283{bottom:451.645333pt;}
.y21{bottom:453.506667pt;}
.y2c3{bottom:456.153333pt;}
.y216{bottom:457.085333pt;}
.y16b{bottom:457.578667pt;}
.y41{bottom:458.146667pt;}
.y33a{bottom:460.473867pt;}
.yb3{bottom:461.986667pt;}
.yea{bottom:462.626667pt;}
.y70{bottom:465.026667pt;}
.y1a4{bottom:465.258667pt;}
.y3c4{bottom:465.826667pt;}
.y282{bottom:468.445333pt;}
.y126{bottom:469.186667pt;}
.y20{bottom:470.306667pt;}
.y2c2{bottom:472.953333pt;}
.y16a{bottom:474.378667pt;}
.y339{bottom:474.553867pt;}
.y40{bottom:474.946667pt;}
.yb2{bottom:478.786667pt;}
.y6f{bottom:481.826667pt;}
.y1a3{bottom:482.218667pt;}
.y3c3{bottom:482.626667pt;}
.y37e{bottom:484.320000pt;}
.y281{bottom:485.405333pt;}
.y125{bottom:486.946667pt;}
.y1f{bottom:487.266667pt;}
.y210{bottom:489.020294pt;}
.y2c1{bottom:489.913333pt;}
.y169{bottom:491.338667pt;}
.y3f{bottom:491.906667pt;}
.ye9{bottom:495.426667pt;}
.yb1{bottom:495.586667pt;}
.y6e{bottom:498.786667pt;}
.y1a2{bottom:499.018667pt;}
.y3c2{bottom:499.426667pt;}
.y280{bottom:502.205333pt;}
.y1e{bottom:504.066667pt;}
.y124{bottom:504.706667pt;}
.y215{bottom:505.885333pt;}
.y2c0{bottom:506.713333pt;}
.y168{bottom:508.138667pt;}
.y3e{bottom:508.706667pt;}
.ye8{bottom:512.386667pt;}
.yb0{bottom:512.546667pt;}
.y1a1{bottom:515.978667pt;}
.y6d{bottom:516.226667pt;}
.y3c1{bottom:516.386667pt;}
.y11b{bottom:518.813333pt;}
.y1d{bottom:521.026667pt;}
.y164{bottom:523.466272pt;}
.y2bf{bottom:523.673333pt;}
.y3d{bottom:525.506667pt;}
.y167{bottom:529.098667pt;}
.ye7{bottom:529.186667pt;}
.yaf{bottom:529.346667pt;}
.y1a0{bottom:532.778667pt;}
.y3c0{bottom:533.186667pt;}
.y20f{bottom:534.685333pt;}
.y27f{bottom:535.965333pt;}
.y303{bottom:536.037177pt;}
.y6c{bottom:537.026667pt;}
.y123{bottom:537.506667pt;}
.y1c{bottom:537.826667pt;}
.y32f{bottom:539.193867pt;}
.y2ec{bottom:541.593333pt;}
.y3c{bottom:542.466667pt;}
.ye6{bottom:546.146667pt;}
.yae{bottom:546.306667pt;}
.y163{bottom:546.858667pt;}
.y3bf{bottom:550.146667pt;}
.y20e{bottom:551.645333pt;}
.y27e{bottom:553.565333pt;}
.y6b{bottom:553.986667pt;}
.y1b{bottom:554.626667pt;}
.y32e{bottom:556.153867pt;}
.y2eb{bottom:559.193333pt;}
.y3b{bottom:559.266667pt;}
.yaa{bottom:560.413333pt;}
.ye5{bottom:562.946667pt;}
.y162{bottom:563.658667pt;}
.y2be{bottom:564.953333pt;}
.y19f{bottom:566.538667pt;}
.y3be{bottom:566.946667pt;}
.yad{bottom:567.106667pt;}
.y11a{bottom:568.226667pt;}
.y20d{bottom:568.472000pt;}
.y6a{bottom:570.786667pt;}
.y1a{bottom:571.586667pt;}
.y32d{bottom:572.953867pt;}
.y3a{bottom:576.226667pt;}
.y1d0{bottom:576.468657pt;}
.y1c6{bottom:576.485755pt;}
.y2ea{bottom:576.980000pt;}
.ye4{bottom:579.746667pt;}
.y19e{bottom:580.005333pt;}
.y161{bottom:580.645333pt;}
.y19a{bottom:583.289718pt;}
.y3bd{bottom:583.746667pt;}
.y20c{bottom:585.432000pt;}
.ya9{bottom:585.853333pt;}
.y119{bottom:586.013333pt;}
.y69{bottom:587.613333pt;}
.y19{bottom:588.413333pt;}
.y27d{bottom:589.112000pt;}
.y32c{bottom:589.940533pt;}
.y39{bottom:593.053333pt;}
.y2e9{bottom:594.740000pt;}
.ye3{bottom:596.733333pt;}
.y160{bottom:597.445333pt;}
.y2bd{bottom:598.580000pt;}
.y3bc{bottom:600.733333pt;}
.y20b{bottom:602.232000pt;}
.ya8{bottom:603.453333pt;}
.y118{bottom:603.613333pt;}
.y68{bottom:604.573333pt;}
.y266{bottom:604.751653pt;}
.y272{bottom:604.767546pt;}
.y18{bottom:605.373333pt;}
.y32b{bottom:606.740000pt;}
.y38{bottom:609.853333pt;}
.y2e8{bottom:612.340000pt;}
.y2bc{bottom:616.340000pt;}
.y3bb{bottom:617.533333pt;}
.y20a{bottom:619.192000pt;}
.ya7{bottom:621.213333pt;}
.y67{bottom:621.373333pt;}
.y17{bottom:622.813333pt;}
.y32a{bottom:624.500000pt;}
.y37{bottom:626.813333pt;}
.y2e7{bottom:630.100000pt;}
.y15f{bottom:630.405333pt;}
.ye2{bottom:633.533333pt;}
.y2bb{bottom:634.100000pt;}
.y3ba{bottom:634.493333pt;}
.y66{bottom:638.333333pt;}
.ya6{bottom:638.973333pt;}
.y117{bottom:639.133333pt;}
.y329{bottom:642.100000pt;}
.y16{bottom:643.613333pt;}
.y271{bottom:645.912000pt;}
.y15e{bottom:647.205333pt;}
.y202{bottom:650.047263pt;}
.y3b9{bottom:651.293333pt;}
.y2ba{bottom:651.700000pt;}
.ye1{bottom:652.253333pt;}
.y64{bottom:652.413333pt;}
.ya5{bottom:656.733333pt;}
.y328{bottom:659.860000pt;}
.y15{bottom:660.573333pt;}
.y199{bottom:663.205333pt;}
.y2e6{bottom:665.460000pt;}
.y209{bottom:667.992000pt;}
.y3b8{bottom:668.253333pt;}
.y2b9{bottom:669.460000pt;}
.ye0{bottom:670.013333pt;}
.y65{bottom:671.133333pt;}
.ya4{bottom:674.333333pt;}
.y116{bottom:674.493333pt;}
.y15d{bottom:676.485333pt;}
.y14{bottom:677.053333pt;}
.y3d9{bottom:677.373333pt;}
.y327{bottom:677.620000pt;}
.y198{bottom:680.165333pt;}
.y2e5{bottom:683.220000pt;}
.y3b7{bottom:685.053333pt;}
.ydf{bottom:687.613333pt;}
.ya3{bottom:692.093333pt;}
.y115{bottom:692.253333pt;}
.y13{bottom:694.173333pt;}
.y326{bottom:695.220000pt;}
.y201{bottom:696.792000pt;}
.y197{bottom:696.965333pt;}
.y2e4{bottom:697.460000pt;}
.y63{bottom:699.933333pt;}
.y265{bottom:700.791467pt;}
.y3b6{bottom:701.853333pt;}
.y2b8{bottom:704.820000pt;}
.ya2{bottom:709.853333pt;}
.y12{bottom:711.133333pt;}
.y325{bottom:712.980000pt;}
.y200{bottom:713.752000pt;}
.y196{bottom:713.925333pt;}
.y62{bottom:716.893333pt;}
.y264{bottom:717.592000pt;}
.y3b5{bottom:719.293333pt;}
.y2b4{bottom:720.120862pt;}
.yde{bottom:723.133333pt;}
.y2b7{bottom:725.780000pt;}
.ya1{bottom:727.453333pt;}
.y114{bottom:727.613333pt;}
.y11{bottom:727.933333pt;}
.y1ff{bottom:730.552000pt;}
.y195{bottom:730.725333pt;}
.y324{bottom:730.740000pt;}
.y338{bottom:731.060533pt;}
.y61{bottom:733.693333pt;}
.ydc{bottom:737.213333pt;}
.y3b4{bottom:740.253333pt;}
.y111{bottom:741.680000pt;}
.ydd{bottom:743.933333pt;}
.y2b3{bottom:744.500000pt;}
.y10{bottom:744.893333pt;}
.ya0{bottom:745.213333pt;}
.y194{bottom:747.525333pt;}
.y323{bottom:747.540000pt;}
.y113{bottom:748.413333pt;}
.y337{bottom:748.660533pt;}
.y256{bottom:749.761506pt;}
.y60{bottom:750.653333pt;}
.y3b3{bottom:757.053333pt;}
.y2b2{bottom:761.300000pt;}
.yf{bottom:761.693333pt;}
.y1f9{bottom:762.486960pt;}
.ydb{bottom:762.653333pt;}
.y9f{bottom:762.973333pt;}
.y193{bottom:764.485333pt;}
.y322{bottom:764.500000pt;}
.y336{bottom:766.420533pt;}
.y263{bottom:767.832000pt;}
.y110{bottom:770.173333pt;}
.y3b2{bottom:774.013333pt;}
.y2b1{bottom:778.100000pt;}
.ye{bottom:778.493333pt;}
.y321{bottom:778.580000pt;}
.y1fe{bottom:779.392000pt;}
.yda{bottom:780.413333pt;}
.y335{bottom:780.500533pt;}
.y9e{bottom:780.573333pt;}
.y18f{bottom:782.102722pt;}
.y15c{bottom:783.045333pt;}
.y5f{bottom:784.253333pt;}
.y192{bottom:785.285333pt;}
.y10f{bottom:787.933333pt;}
.y342{bottom:788.320000pt;}
.y36a{bottom:790.240000pt;}
.y3b1{bottom:790.813333pt;}
.y2b0{bottom:795.100000pt;}
.yd{bottom:795.453333pt;}
.yd9{bottom:798.013333pt;}
.y9d{bottom:798.333333pt;}
.y255{bottom:798.432000pt;}
.y59{bottom:798.480000pt;}
.y15b{bottom:799.885333pt;}
.y18e{bottom:805.165333pt;}
.y10e{bottom:805.733333pt;}
.y3b0{bottom:807.813333pt;}
.y1f8{bottom:808.352000pt;}
.yd7{bottom:812.213333pt;}
.yc{bottom:812.293333pt;}
.y98{bottom:812.413333pt;}
.y254{bottom:815.232000pt;}
.y15a{bottom:816.845333pt;}
.y5e{bottom:817.253333pt;}
.yd6{bottom:819.013333pt;}
.y9c{bottom:819.173333pt;}
.y18d{bottom:822.125333pt;}
.y10d{bottom:823.333333pt;}
.y3af{bottom:824.613333pt;}
.y1f7{bottom:825.152000pt;}
.y2af{bottom:827.900000pt;}
.yb{bottom:829.253333pt;}
.y253{bottom:832.032000pt;}
.y159{bottom:833.645333pt;}
.yd5{bottom:837.573333pt;}
.y18c{bottom:838.925333pt;}
.y97{bottom:839.013333pt;}
.y10c{bottom:841.093333pt;}
.y3ae{bottom:841.413333pt;}
.y1f6{bottom:842.112000pt;}
.y2ae{bottom:844.860000pt;}
.ya{bottom:846.053333pt;}
.y158{bottom:850.445333pt;}
.y10a{bottom:855.146667pt;}
.yd4{bottom:855.333333pt;}
.y18b{bottom:855.885333pt;}
.y96{bottom:855.973333pt;}
.y3ad{bottom:858.373333pt;}
.y1f5{bottom:858.912000pt;}
.y2ad{bottom:861.660000pt;}
.y10b{bottom:861.893333pt;}
.y9{bottom:862.853333pt;}
.y245{bottom:862.907681pt;}
.y157{bottom:867.405333pt;}
.y18a{bottom:872.685333pt;}
.y95{bottom:872.773333pt;}
.yd3{bottom:873.093333pt;}
.y3ac{bottom:875.173333pt;}
.y1f4{bottom:875.712000pt;}
.y2ac{bottom:878.460000pt;}
.y8{bottom:879.813333pt;}
.y252{bottom:880.992000pt;}
.y109{bottom:883.653333pt;}
.y156{bottom:884.205333pt;}
.y94{bottom:889.733333pt;}
.yd2{bottom:890.693333pt;}
.y3ab{bottom:892.133333pt;}
.y1f3{bottom:892.672000pt;}
.y2ab{bottom:895.420000pt;}
.y58{bottom:896.613333pt;}
.y7{bottom:897.093333pt;}
.y108{bottom:901.413333pt;}
.y155{bottom:901.645333pt;}
.y189{bottom:901.965333pt;}
.y2e3{bottom:903.900000pt;}
.y93{bottom:906.533333pt;}
.y1d8{bottom:908.312850pt;}
.yd1{bottom:908.453333pt;}
.y3aa{bottom:908.933333pt;}
.y244{bottom:910.752000pt;}
.y57{bottom:913.573333pt;}
.y6{bottom:915.493333pt;}
.y107{bottom:919.013333pt;}
.y154{bottom:922.605333pt;}
.y92{bottom:923.333333pt;}
.y3a9{bottom:925.733333pt;}
.yd0{bottom:926.213333pt;}
.y29c{bottom:927.065973pt;}
.y243{bottom:927.712000pt;}
.y56{bottom:930.373333pt;}
.y105{bottom:933.013333pt;}
.y5{bottom:933.893333pt;}
.y2e2{bottom:936.860000pt;}
.y153{bottom:939.405333pt;}
.y106{bottom:939.813333pt;}
.y91{bottom:940.293333pt;}
.y3a8{bottom:942.693333pt;}
.ycf{bottom:943.813333pt;}
.y55{bottom:947.333333pt;}
.y1f2{bottom:950.752000pt;}
.y4{bottom:952.293333pt;}
.y2e1{bottom:953.660000pt;}
.y90{bottom:957.093333pt;}
.y152{bottom:957.165333pt;}
.y3a7{bottom:959.493333pt;}
.y241{bottom:959.620294pt;}
.yce{bottom:961.573333pt;}
.y54{bottom:964.133333pt;}
.y2a7{bottom:968.220000pt;}
.y2e0{bottom:970.460000pt;}
.y3{bottom:970.693333pt;}
.y149{bottom:972.511031pt;}
.y8f{bottom:974.053333pt;}
.y3a6{bottom:976.453333pt;}
.y242{bottom:976.512000pt;}
.ycd{bottom:979.333333pt;}
.y53{bottom:980.933333pt;}
.y2df{bottom:987.420000pt;}
.y2{bottom:988.773333pt;}
.y8e{bottom:990.853333pt;}
.y151{bottom:991.245333pt;}
.y3a5{bottom:993.253333pt;}
.ycc{bottom:996.933333pt;}
.y184{bottom:997.248801pt;}
.y52{bottom:997.893333pt;}
.y188{bottom:1002.925333pt;}
.y2de{bottom:1004.220000pt;}
.y8b{bottom:1004.880000pt;}
.y1{bottom:1008.133333pt;}
.y3a4{bottom:1010.693333pt;}
.y8a{bottom:1011.653333pt;}
.y51{bottom:1014.693333pt;}
.y4e{bottom:1074.559977pt;}
.ha{height:11.733399pt;}
.h4f{height:15.500493pt;}
.h4e{height:15.501192pt;}
.h98{height:15.501204pt;}
.h57{height:15.930981pt;}
.h54{height:18.384902pt;}
.h13{height:19.066174pt;}
.h11{height:19.999254pt;}
.h27{height:20.933336pt;}
.h2e{height:20.999575pt;}
.h20{height:22.999861pt;}
.h1a{height:23.067062pt;}
.h58{height:23.501546pt;}
.h35{height:23.999568pt;}
.h64{height:30.312349pt;}
.h62{height:30.327438pt;}
.h46{height:30.760061pt;}
.h25{height:32.039011pt;}
.h1d{height:32.132622pt;}
.haf{height:32.508006pt;}
.hae{height:32.532647pt;}
.h9e{height:32.533750pt;}
.hb2{height:32.544248pt;}
.hac{height:32.549755pt;}
.ha9{height:32.558025pt;}
.h9f{height:32.565496pt;}
.hb1{height:32.579134pt;}
.hab{height:32.597166pt;}
.ha8{height:32.605939pt;}
.h51{height:32.814372pt;}
.h29{height:32.815877pt;}
.h99{height:32.832212pt;}
.ha1{height:33.102557pt;}
.h44{height:33.118829pt;}
.h3a{height:33.119536pt;}
.h89{height:33.293641pt;}
.h7d{height:33.296808pt;}
.h49{height:33.346067pt;}
.hd{height:33.385785pt;}
.h94{height:33.406130pt;}
.h36{height:33.435219pt;}
.h78{height:33.544987pt;}
.h6c{height:33.560701pt;}
.h40{height:33.573303pt;}
.h8e{height:33.627694pt;}
.h85{height:33.664587pt;}
.h83{height:33.681344pt;}
.h5d{height:33.729501pt;}
.h23{height:33.930613pt;}
.h21{height:33.947502pt;}
.h55{height:34.029750pt;}
.h1b{height:34.046689pt;}
.h71{height:37.619348pt;}
.h70{height:38.089074pt;}
.h75{height:38.215984pt;}
.h81{height:38.761351pt;}
.h82{height:39.515598pt;}
.h5c{height:39.572110pt;}
.h9a{height:40.427364pt;}
.h59{height:40.861747pt;}
.h48{height:41.014357pt;}
.h92{height:41.362469pt;}
.hb{height:42.916667pt;}
.h15{height:43.000838pt;}
.hc{height:44.000084pt;}
.h31{height:44.931612pt;}
.h39{height:44.932572pt;}
.h6a{height:48.986081pt;}
.h66{height:49.440120pt;}
.h69{height:51.878248pt;}
.h68{height:51.904071pt;}
.h9c{height:52.134375pt;}
.h65{height:52.359094pt;}
.h63{height:52.385156pt;}
.h1f{height:52.785000pt;}
.h74{height:52.798125pt;}
.h47{height:53.161137pt;}
.ha4{height:53.873596pt;}
.h34{height:53.917838pt;}
.h3d{height:53.918990pt;}
.h8c{height:54.184580pt;}
.h80{height:54.282916pt;}
.h10{height:54.352445pt;}
.h97{height:54.367654pt;}
.h4c{height:54.371476pt;}
.h2d{height:54.472396pt;}
.h6f{height:54.619214pt;}
.h7b{height:54.687514pt;}
.h91{height:54.728244pt;}
.h43{height:54.798855pt;}
.h87{height:54.833619pt;}
.h18{height:54.847977pt;}
.h60{height:54.912020pt;}
.h26{height:55.285414pt;}
.h1e{height:55.446946pt;}
.h73{height:55.915358pt;}
.h72{height:55.943190pt;}
.h14{height:56.260590pt;}
.h52{height:56.539158pt;}
.h2a{height:56.541751pt;}
.h50{height:56.567301pt;}
.h28{height:56.569896pt;}
.ha3{height:57.054325pt;}
.ha2{height:57.082724pt;}
.h33{height:57.101179pt;}
.h3c{height:57.102399pt;}
.h32{height:57.129601pt;}
.h3b{height:57.130822pt;}
.h8b{height:57.383670pt;}
.h8a{height:57.412233pt;}
.h76{height:57.420473pt;}
.h7f{height:57.487811pt;}
.h9{height:57.488315pt;}
.h7e{height:57.516426pt;}
.hf{height:57.561445pt;}
.h96{height:57.577553pt;}
.h4b{height:57.581600pt;}
.he{height:57.590097pt;}
.h95{height:57.606213pt;}
.h4a{height:57.610262pt;}
.h12{height:57.663056pt;}
.h37{height:57.665581pt;}
.h2c{height:57.688479pt;}
.h2b{height:57.717194pt;}
.h8{height:57.758750pt;}
.h5{height:57.787500pt;}
.ha6{height:57.788033pt;}
.ha5{height:57.789633pt;}
.h53{height:57.792833pt;}
.h6e{height:57.843965pt;}
.h6d{height:57.872757pt;}
.h7a{height:57.916297pt;}
.h9b{height:57.935429pt;}
.h79{height:57.945126pt;}
.h90{height:57.959432pt;}
.h8f{height:57.988282pt;}
.h42{height:58.034212pt;}
.h41{height:58.063099pt;}
.h86{height:58.071028pt;}
.h17{height:58.086234pt;}
.h84{height:58.099934pt;}
.h16{height:58.115147pt;}
.h5f{height:58.154058pt;}
.h5e{height:58.183005pt;}
.h24{height:58.549497pt;}
.h22{height:58.578641pt;}
.h56{height:58.720566pt;}
.h1c{height:58.749795pt;}
.hb4{height:59.225000pt;}
.h6{height:59.340000pt;}
.h67{height:59.840438pt;}
.h61{height:60.395044pt;}
.h4{height:62.812500pt;}
.h4d{height:63.293125pt;}
.h19{height:63.311250pt;}
.h3{height:64.500000pt;}
.h5a{height:66.645164pt;}
.h3e{height:71.064348pt;}
.h45{height:71.344154pt;}
.h30{height:71.346948pt;}
.h2f{height:71.572709pt;}
.h3f{height:71.710335pt;}
.h38{height:72.702125pt;}
.h7{height:75.465000pt;}
.h2{height:85.785000pt;}
.h88{height:86.453239pt;}
.h93{height:86.649316pt;}
.h8d{height:87.320672pt;}
.ha0{height:87.893177pt;}
.h6b{height:88.195425pt;}
.h5b{height:94.907500pt;}
.h7c{height:120.048174pt;}
.h77{height:120.942955pt;}
.had{height:225.446031pt;}
.h9d{height:225.512967pt;}
.ha7{height:225.894951pt;}
.haa{height:225.919296pt;}
.hb3{height:226.081948pt;}
.hb0{height:226.135281pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:17.797333pt;}
.wa{width:60.934960pt;}
.w1c{width:65.000124pt;}
.w15{width:72.997321pt;}
.w10{width:76.002739pt;}
.wf{width:76.997122pt;}
.w17{width:80.001849pt;}
.w25{width:80.176670pt;}
.w6{width:80.650667pt;}
.w24{width:83.763419pt;}
.w4{width:92.500000pt;}
.w11{width:97.133390pt;}
.w12{width:99.063047pt;}
.w1b{width:104.996119pt;}
.w13{width:116.937650pt;}
.w22{width:119.941830pt;}
.w33{width:120.299097pt;}
.w2a{width:120.917503pt;}
.wb{width:120.931918pt;}
.w2f{width:122.724015pt;}
.w3{width:125.088000pt;}
.w2b{width:129.907117pt;}
.w9{width:131.068648pt;}
.w30{width:135.221532pt;}
.wc{width:148.999612pt;}
.w36{width:163.279661pt;}
.w14{width:164.932564pt;}
.w16{width:164.990162pt;}
.w19{width:173.003832pt;}
.w7{width:179.994489pt;}
.w34{width:184.355747pt;}
.w8{width:184.937300pt;}
.we{width:199.069552pt;}
.wd{width:199.997640pt;}
.w35{width:206.101457pt;}
.w31{width:206.172465pt;}
.w1e{width:210.138716pt;}
.w1f{width:238.036757pt;}
.w27{width:244.326233pt;}
.w2c{width:246.950453pt;}
.w21{width:248.417450pt;}
.w20{width:267.554118pt;}
.w2{width:269.693333pt;}
.w18{width:269.932260pt;}
.w1a{width:275.991781pt;}
.w3b{width:285.574916pt;}
.w3d{width:285.891408pt;}
.w37{width:290.274406pt;}
.w3c{width:292.480125pt;}
.w3a{width:292.528054pt;}
.w39{width:292.604308pt;}
.w29{width:301.724398pt;}
.w1d{width:321.414871pt;}
.w23{width:336.991122pt;}
.w28{width:351.476079pt;}
.w2d{width:357.711361pt;}
.w2e{width:357.923457pt;}
.w32{width:378.805037pt;}
.w26{width:392.283011pt;}
.w38{width:426.487107pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:2.003284pt;}
.x15{left:3.583230pt;}
.x7b{left:5.674156pt;}
.x51{left:6.848096pt;}
.x6c{left:7.812010pt;}
.x19{left:9.537190pt;}
.x3c{left:10.436794pt;}
.x1a{left:11.374159pt;}
.x14{left:12.299337pt;}
.x29{left:13.217771pt;}
.x4e{left:14.118963pt;}
.x1b{left:15.562763pt;}
.x84{left:16.482876pt;}
.x1c{left:17.399731pt;}
.x4a{left:18.972306pt;}
.x3e{left:20.265136pt;}
.xae{left:21.274630pt;}
.x34{left:23.564850pt;}
.x54{left:25.545266pt;}
.x63{left:26.607616pt;}
.x22{left:27.956256pt;}
.x23{left:28.854470pt;}
.x49{left:29.902437pt;}
.x38{left:31.385805pt;}
.x2b{left:33.028621pt;}
.x4d{left:34.243139pt;}
.x12{left:35.509675pt;}
.x13{left:37.317156pt;}
.x83{left:38.665109pt;}
.x55{left:39.949634pt;}
.x42{left:40.936547pt;}
.x4f{left:41.838397pt;}
.x9a{left:44.130523pt;}
.x48{left:46.280364pt;}
.x50{left:48.427247pt;}
.x7d{left:49.481447pt;}
.x96{left:51.576552pt;}
.x5c{left:54.271820pt;}
.x47{left:56.107918pt;}
.x98{left:57.137763pt;}
.x16{left:60.236604pt;}
.x60{left:61.167039pt;}
.x17{left:62.077142pt;}
.x1d{left:63.503410pt;}
.x7a{left:64.509333pt;}
.x9c{left:65.549791pt;}
.x39{left:66.446268pt;}
.x8{left:68.000000pt;}
.x3a{left:69.674523pt;}
.x30{left:71.424893pt;}
.x97{left:73.821397pt;}
.x81{left:74.979939pt;}
.x2d{left:76.077171pt;}
.x79{left:78.109333pt;}
.x11{left:81.600000pt;}
.x5b{left:83.994124pt;}
.x4b{left:85.133606pt;}
.x10{left:86.912000pt;}
.x62{left:88.648487pt;}
.x7f{left:91.527177pt;}
.x33{left:92.994582pt;}
.x6e{left:94.076863pt;}
.xc{left:96.000000pt;}
.x80{left:97.990888pt;}
.x8b{left:98.922562pt;}
.x6d{left:100.767101pt;}
.x5a{left:101.686287pt;}
.x73{left:102.913989pt;}
.x2a{left:104.941253pt;}
.x6a{left:107.909825pt;}
.x28{left:109.571556pt;}
.x8a{left:110.607252pt;}
.x20{left:112.080000pt;}
.x6b{left:113.222930pt;}
.x9f{left:117.405884pt;}
.x99{left:122.569577pt;}
.x72{left:123.515418pt;}
.x75{left:124.653435pt;}
.x59{left:127.463457pt;}
.x8f{left:129.254457pt;}
.x2e{left:131.930961pt;}
.x76{left:134.267346pt;}
.xb2{left:136.328217pt;}
.x8c{left:138.112363pt;}
.x6f{left:140.764257pt;}
.x74{left:141.747643pt;}
.x25{left:143.546667pt;}
.xa7{left:147.065090pt;}
.x26{left:152.346667pt;}
.x77{left:156.109280pt;}
.x85{left:157.496000pt;}
.x3f{left:165.146667pt;}
.xaa{left:166.091972pt;}
.x40{left:167.066667pt;}
.x3d{left:168.826667pt;}
.x21{left:172.986667pt;}
.xa8{left:176.261740pt;}
.x41{left:184.986667pt;}
.x24{left:188.986667pt;}
.x9d{left:193.811258pt;}
.x1f{left:199.066667pt;}
.x1{left:200.666667pt;}
.xa9{left:203.641886pt;}
.xa0{left:221.772000pt;}
.x43{left:232.986667pt;}
.x5d{left:239.066667pt;}
.xb0{left:241.571786pt;}
.x18{left:248.026667pt;}
.x1e{left:252.986667pt;}
.x5f{left:255.066667pt;}
.x7{left:260.546667pt;}
.xb4{left:262.179837pt;}
.xb6{left:266.683746pt;}
.xb5{left:268.465758pt;}
.xb1{left:270.916974pt;}
.xb3{left:280.769259pt;}
.x3{left:281.666667pt;}
.x61{left:283.106667pt;}
.xa6{left:285.465821pt;}
.x86{left:286.816000pt;}
.xaf{left:287.796946pt;}
.x5{left:294.146667pt;}
.x4{left:299.106667pt;}
.x82{left:309.696000pt;}
.x7e{left:311.616000pt;}
.x9e{left:313.332000pt;}
.x7c{left:315.616000pt;}
.x6{left:329.986667pt;}
.x78{left:337.696000pt;}
.xab{left:368.721333pt;}
.x5e{left:386.786667pt;}
.xe{left:387.981323pt;}
.x2{left:396.866667pt;}
.x88{left:412.256000pt;}
.x89{left:414.240665pt;}
.x9{left:415.746667pt;}
.x69{left:417.731966pt;}
.x27{left:419.413333pt;}
.x94{left:425.856000pt;}
.xa5{left:427.344939pt;}
.x32{left:429.346667pt;}
.x8e{left:431.162667pt;}
.xa3{left:433.518667pt;}
.x36{left:434.653333pt;}
.xa1{left:436.398667pt;}
.xb7{left:444.253333pt;}
.x57{left:464.213333pt;}
.x67{left:487.123723pt;}
.x44{left:488.733333pt;}
.x3b{left:491.773333pt;}
.x37{left:492.733333pt;}
.x46{left:495.773333pt;}
.x91{left:517.402667pt;}
.x56{left:520.733333pt;}
.x58{left:529.213333pt;}
.x92{left:538.284394pt;}
.xa{left:565.693333pt;}
.x2c{left:568.413333pt;}
.xd{left:572.672038pt;}
.xb{left:573.853333pt;}
.x64{left:574.813333pt;}
.x45{left:580.733333pt;}
.x52{left:588.733333pt;}
.x68{left:610.213333pt;}
.x35{left:614.853333pt;}
.x31{left:615.813333pt;}
.xf{left:617.109375pt;}
.x95{left:625.282667pt;}
.x71{left:633.109231pt;}
.x66{left:638.693333pt;}
.x93{left:648.802667pt;}
.x87{left:665.282667pt;}
.x90{left:666.402667pt;}
.x70{left:671.813333pt;}
.x9b{left:676.322667pt;}
.x8d{left:677.442667pt;}
.x4c{left:685.733333pt;}
.x53{left:691.813333pt;}
.xac{left:715.507867pt;}
.xa4{left:719.478667pt;}
.xa2{left:730.358667pt;}
.x65{left:734.373333pt;}
.xad{left:750.067867pt;}
}




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