
    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_eaf68b2e4c62f22fb9711547.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0640d5c0d55ddbb7fdf0bdb2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a619c70c8e8c72de69048046.woff')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_2ab0c7c868ced8b4e66e675c.woff')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_62a1099d158b82e0477fc0dc.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ef2d00f26f236ccd5a11f870.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_c6ac8957d4a237698d6b9ad4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d98caf4d4634aff83e4202d9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_d66c4523bcb81e5beed849b4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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_badc2267825d5c6dce84e837.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1d46e457a395876242e43ce8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_7e77eaf5e614c0be843c2efe.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc8{transform:matrix(0.078818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078818,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.099747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099747,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.128811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128811,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.134211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134211,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150463,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.152083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152083,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160714,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.164692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164692,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169444,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169811,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175824,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176020,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178977,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.180851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180851,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182796,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188235,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188830,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189560,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193069,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195055,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198020,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.200549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200549,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201613,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201835,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205056,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207865,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208791,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211111,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212366,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.215054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215054,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217033,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217742,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.219444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219444,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219780,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222527,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226316,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228022,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228495,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231013,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236559,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238739,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240826,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241071,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241758,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244505,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247340,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247706,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.ma5{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255495,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256818,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257143,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259009,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259036,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259174,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259868,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261236,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263514,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263761,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264563,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266187,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268072,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271084,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271978,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272222,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272277,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272936,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278409,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278947,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280556,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288978,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290123,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296703,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.310241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310241,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323529,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.326816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326816,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326923,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334270,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336310,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341463,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344828,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345455,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.348837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348837,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.359589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359589,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.361446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361446,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363636,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366667,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.373626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373626,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.382716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382716,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.384091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384091,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.386719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386719,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.411538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411538,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490385,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565789,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.585526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585526,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.642857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642857,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744118,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.868056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868056,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(1.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.043750,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(1.305046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.305046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.305046,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(1.414474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.414474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.414474,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(1.662037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.662037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.662037,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(3.420601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.420601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.420601,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(3.802632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.802632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.802632,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.397660px;}
.ls67{letter-spacing:-40.465686px;}
.ls52{letter-spacing:-38.220588px;}
.ls68{letter-spacing:-31.861770px;}
.ls31{letter-spacing:-22.620780px;}
.lsa2{letter-spacing:-20.274654px;}
.lsae{letter-spacing:-16.020000px;}
.ls48{letter-spacing:-14.544606px;}
.ls24{letter-spacing:-11.700780px;}
.ls50{letter-spacing:-10.920546px;}
.ls9d{letter-spacing:-10.146000px;}
.ls47{letter-spacing:-10.098594px;}
.lsaf{letter-spacing:-9.744000px;}
.lsb4{letter-spacing:-9.504528px;}
.lsa8{letter-spacing:-8.640480px;}
.ls44{letter-spacing:-7.980570px;}
.ls81{letter-spacing:-6.942000px;}
.lsa7{letter-spacing:-6.048504px;}
.ls38{letter-spacing:-5.874000px;}
.ls2d{letter-spacing:-5.544396px;}
.ls36{letter-spacing:-5.340534px;}
.ls29{letter-spacing:-5.220348px;}
.ls28{letter-spacing:-4.752396px;}
.lsb0{letter-spacing:-4.356726px;}
.ls39{letter-spacing:-4.272000px;}
.lsb3{letter-spacing:-4.266474px;}
.ls23{letter-spacing:-3.996666px;}
.ls26{letter-spacing:-3.906558px;}
.ls59{letter-spacing:-3.780540px;}
.ls2b{letter-spacing:-3.780270px;}
.ls1f{letter-spacing:-3.738534px;}
.ls66{letter-spacing:-3.648000px;}
.lsa6{letter-spacing:-3.276546px;}
.ls2c{letter-spacing:-3.168000px;}
.ls42{letter-spacing:-3.060510px;}
.ls96{letter-spacing:-2.850000px;}
.ls7b{letter-spacing:-2.700000px;}
.ls5f{letter-spacing:-2.688000px;}
.lsb1{letter-spacing:-2.670000px;}
.ls2a{letter-spacing:-2.640000px;}
.ls10{letter-spacing:-2.358786px;}
.lse{letter-spacing:-2.304768px;}
.ls84{letter-spacing:-2.280570px;}
.lsac{letter-spacing:-2.256564px;}
.ls1d{letter-spacing:-2.232558px;}
.lsc{letter-spacing:-2.220000px;}
.lsb7{letter-spacing:-2.184546px;}
.ls1a{letter-spacing:-2.160540px;}
.ls19{letter-spacing:-2.136534px;}
.ls57{letter-spacing:-2.112528px;}
.ls8f{letter-spacing:-1.998666px;}
.ls1e{letter-spacing:-1.962654px;}
.ls25{letter-spacing:-1.956000px;}
.ls30{letter-spacing:-1.674558px;}
.lsb8{letter-spacing:-1.638546px;}
.lsb9{letter-spacing:-1.620540px;}
.ls18{letter-spacing:-1.602534px;}
.lsf{letter-spacing:-1.536000px;}
.lsa0{letter-spacing:-1.356000px;}
.lsa{letter-spacing:-1.332444px;}
.lsa1{letter-spacing:-1.308000px;}
.lsb6{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.068000px;}
.ls6b{letter-spacing:-1.020000px;}
.ls3a{letter-spacing:-0.888000px;}
.lsb{letter-spacing:-0.876000px;}
.ls8a{letter-spacing:-0.852000px;}
.ls11{letter-spacing:-0.768768px;}
.lsd{letter-spacing:-0.750750px;}
.lsa3{letter-spacing:-0.678678px;}
.ls12{letter-spacing:-0.660660px;}
.ls14{letter-spacing:-0.636636px;}
.ls90{letter-spacing:-0.576576px;}
.ls32{letter-spacing:-0.558558px;}
.ls21{letter-spacing:-0.546546px;}
.ls3d{letter-spacing:-0.540540px;}
.ls16{letter-spacing:-0.534534px;}
.ls4c{letter-spacing:-0.516516px;}
.ls5c{letter-spacing:-0.510510px;}
.lsa4{letter-spacing:-0.504504px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.497502px;}
.ls80{letter-spacing:0.503496px;}
.ls4d{letter-spacing:0.509490px;}
.ls20{letter-spacing:0.527472px;}
.ls1{letter-spacing:0.533466px;}
.ls3c{letter-spacing:0.539460px;}
.ls6a{letter-spacing:0.557442px;}
.ls22{letter-spacing:0.563436px;}
.ls13{letter-spacing:0.647352px;}
.lsb2{letter-spacing:0.953046px;}
.ls27{letter-spacing:0.983754px;}
.ls77{letter-spacing:1.031484px;}
.lsa5{letter-spacing:1.055472px;}
.ls3{letter-spacing:1.067466px;}
.ls89{letter-spacing:1.091454px;}
.ls51{letter-spacing:1.319340px;}
.ls75{letter-spacing:1.404000px;}
.ls72{letter-spacing:1.440000px;}
.lsab{letter-spacing:1.530000px;}
.ls8e{letter-spacing:1.548000px;}
.ls0{letter-spacing:1.602000px;}
.ls35{letter-spacing:1.620000px;}
.ls58{letter-spacing:1.638000px;}
.ls85{letter-spacing:1.854000px;}
.ls37{letter-spacing:2.111472px;}
.ls2{letter-spacing:2.135466px;}
.ls5b{letter-spacing:2.159460px;}
.ls78{letter-spacing:2.219556px;}
.ls98{letter-spacing:2.249550px;}
.ls95{letter-spacing:2.255436px;}
.ls63{letter-spacing:2.399520px;}
.ls9b{letter-spacing:2.664000px;}
.ls6{letter-spacing:2.669466px;}
.ls3b{letter-spacing:2.700000px;}
.ls46{letter-spacing:2.729454px;}
.ls9c{letter-spacing:2.736000px;}
.ls5e{letter-spacing:2.789442px;}
.ls56{letter-spacing:2.808000px;}
.ls62{letter-spacing:2.916000px;}
.ls3e{letter-spacing:3.029394px;}
.ls55{letter-spacing:3.168000px;}
.ls6f{letter-spacing:3.204000px;}
.ls1c{letter-spacing:3.276000px;}
.ls4e{letter-spacing:3.348000px;}
.ls8d{letter-spacing:3.503562px;}
.ls76{letter-spacing:3.599550px;}
.ls8b{letter-spacing:3.599640px;}
.ls99{letter-spacing:3.695472px;}
.ls6c{letter-spacing:3.737466px;}
.ls7d{letter-spacing:3.743532px;}
.ls33{letter-spacing:3.779460px;}
.ls65{letter-spacing:3.791526px;}
.ls69{letter-spacing:3.839616px;}
.ls83{letter-spacing:3.905442px;}
.ls7e{letter-spacing:3.989430px;}
.ls86{letter-spacing:4.031496px;}
.ls82{letter-spacing:4.115412px;}
.ls43{letter-spacing:4.223472px;}
.ls6e{letter-spacing:4.271466px;}
.ls7a{letter-spacing:4.374000px;}
.ls9a{letter-spacing:4.499550px;}
.ls60{letter-spacing:4.590000px;}
.ls70{letter-spacing:4.806000px;}
.ls8c{letter-spacing:4.860000px;}
.ls3f{letter-spacing:5.076000px;}
.ls34{letter-spacing:5.279472px;}
.ls4f{letter-spacing:5.339466px;}
.ls7c{letter-spacing:5.345514px;}
.ls45{letter-spacing:5.459454px;}
.ls40{letter-spacing:5.543496px;}
.ls5d{letter-spacing:5.579442px;}
.lsa9{letter-spacing:5.639436px;}
.ls5{letter-spacing:5.873466px;}
.ls4a{letter-spacing:5.939460px;}
.ls92{letter-spacing:6.005454px;}
.ls7f{letter-spacing:6.120000px;}
.ls6d{letter-spacing:6.408000px;}
.ls5a{letter-spacing:6.804000px;}
.ls79{letter-spacing:6.941466px;}
.lsb5{letter-spacing:7.019460px;}
.ls97{letter-spacing:7.097454px;}
.ls1b{letter-spacing:7.253442px;}
.ls4{letter-spacing:7.476000px;}
.ls71{letter-spacing:7.649490px;}
.ls74{letter-spacing:7.679520px;}
.ls49{letter-spacing:7.812000px;}
.ls54{letter-spacing:8.009466px;}
.ls9e{letter-spacing:8.543466px;}
.ls53{letter-spacing:8.735454px;}
.ls4b{letter-spacing:8.927442px;}
.ls9f{letter-spacing:9.078000px;}
.ls94{letter-spacing:9.690000px;}
.ls88{letter-spacing:9.960000px;}
.ls7{letter-spacing:11.213466px;}
.ls93{letter-spacing:11.280000px;}
.ls41{letter-spacing:11.400000px;}
.ls61{letter-spacing:11.454000px;}
.lsad{letter-spacing:11.609226px;}
.ls87{letter-spacing:13.259490px;}
.ls64{letter-spacing:15.839280px;}
.ls91{letter-spacing:16.128000px;}
.ls8{letter-spacing:19.223466px;}
.ls73{letter-spacing:21.646032px;}
.lsaa{letter-spacing:24.570000px;}
.ls2e{letter-spacing:57.149550px;}
.ls2f{letter-spacing:101.278734px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._24{margin-left:-105.782304px;}
._2a{margin-left:-33.561900px;}
._29{margin-left:-23.001186px;}
._23{margin-left:-20.239668px;}
._22{margin-left:-18.962376px;}
._21{margin-left:-15.878844px;}
._b{margin-left:-12.753522px;}
._2e{margin-left:-11.534688px;}
._0{margin-left:-7.805160px;}
._a{margin-left:-6.436302px;}
._2{margin-left:-4.559580px;}
._3{margin-left:-3.140460px;}
._1{margin-left:-1.817700px;}
._6{width:1.169460px;}
._7{width:2.742912px;}
._5{width:3.881400px;}
._9{width:4.939218px;}
._8{width:6.151110px;}
._17{width:7.333956px;}
._27{width:8.438268px;}
._4{width:9.569280px;}
._11{width:10.570530px;}
._1b{width:11.774166px;}
._28{width:12.823476px;}
._18{width:14.467662px;}
._f{width:15.523380px;}
._c{width:17.004696px;}
._d{width:18.932436px;}
._e{width:20.542980px;}
._25{width:21.749820px;}
._10{width:22.853064px;}
._20{width:24.016650px;}
._1c{width:25.554036px;}
._2d{width:26.812674px;}
._1f{width:28.166364px;}
._1d{width:29.950992px;}
._14{width:31.656588px;}
._13{width:33.513840px;}
._16{width:34.904376px;}
._15{width:36.178500px;}
._1e{width:37.932156px;}
._32{width:39.650568px;}
._12{width:42.748302px;}
._26{width:46.582956px;}
._2f{width:49.472430px;}
._30{width:51.078702px;}
._33{width:68.072502px;}
._19{width:73.985700px;}
._1a{width:76.850076px;}
._31{width:78.465960px;}
._34{width:105.246060px;}
._35{width:164.103540px;}
._2b{width:200.415540px;}
._2c{width:417.732180px;}
.fc0{color:transparent;}
.fs1e{font-size:15.600000px;}
.fs32{font-size:21.000000px;}
.fs1f{font-size:22.800000px;}
.fs19{font-size:24.600000px;}
.fs1b{font-size:27.000000px;}
.fs1d{font-size:33.000000px;}
.fs2c{font-size:33.600000px;}
.fs1c{font-size:34.800000px;}
.fs36{font-size:36.000000px;}
.fs31{font-size:38.400000px;}
.fs1a{font-size:39.600000px;}
.fs3a{font-size:41.400000px;}
.fs35{font-size:42.600000px;}
.fs4{font-size:43.800000px;}
.fs1{font-size:44.400000px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:45.600000px;}
.fs2a{font-size:46.800000px;}
.fs2e{font-size:47.400000px;}
.fs12{font-size:48.000000px;}
.fs2b{font-size:48.600000px;}
.fsc{font-size:49.800000px;}
.fs26{font-size:50.400000px;}
.fs22{font-size:51.000000px;}
.fs14{font-size:51.600000px;}
.fs13{font-size:52.800000px;}
.fse{font-size:53.400000px;}
.fsf{font-size:54.000000px;}
.fs11{font-size:54.600000px;}
.fs10{font-size:55.800000px;}
.fs15{font-size:56.400000px;}
.fs27{font-size:57.000000px;}
.fs37{font-size:57.600000px;}
.fs29{font-size:58.800000px;}
.fs28{font-size:59.400000px;}
.fs25{font-size:60.600000px;}
.fs34{font-size:61.800000px;}
.fsd{font-size:63.000000px;}
.fsb{font-size:63.600000px;}
.fs2{font-size:64.800000px;}
.fs9{font-size:65.400000px;}
.fsa{font-size:66.000000px;}
.fs16{font-size:66.600000px;}
.fs38{font-size:67.800000px;}
.fs23{font-size:69.600000px;}
.fs2d{font-size:72.000000px;}
.fs3f{font-size:72.600000px;}
.fs5{font-size:75.000000px;}
.fs6{font-size:76.800000px;}
.fs39{font-size:77.400000px;}
.fs17{font-size:78.000000px;}
.fs8{font-size:78.600000px;}
.fs24{font-size:83.400000px;}
.fs41{font-size:95.400000px;}
.fs3e{font-size:96.000000px;}
.fs18{font-size:97.800000px;}
.fs7{font-size:107.400000px;}
.fs21{font-size:111.600000px;}
.fs40{font-size:118.800000px;}
.fs3d{font-size:119.400000px;}
.fs3b{font-size:121.800000px;}
.fs43{font-size:125.400000px;}
.fs20{font-size:126.600000px;}
.fs3c{font-size:130.800000px;}
.fs42{font-size:139.800000px;}
.fs2f{font-size:168.600000px;}
.fs30{font-size:177.000000px;}
.fs33{font-size:196.800000px;}
.y0{bottom:0.000000px;}
.y169{bottom:106.499310px;}
.y102{bottom:108.151230px;}
.yb2{bottom:113.250000px;}
.y62{bottom:115.950000px;}
.y61{bottom:139.350000px;}
.yff{bottom:174.449775px;}
.y100{bottom:174.450000px;}
.y147{bottom:176.249685px;}
.y148{bottom:176.250000px;}
.yb1{bottom:176.550000px;}
.yb0{bottom:176.550195px;}
.y3b{bottom:178.050000px;}
.y3a{bottom:178.050780px;}
.y8e{bottom:184.650000px;}
.y8d{bottom:184.650150px;}
.y168{bottom:185.550000px;}
.y146{bottom:188.250000px;}
.y145{bottom:188.250150px;}
.yfd{bottom:190.649820px;}
.yfe{bottom:190.650000px;}
.y60{bottom:191.401410px;}
.yaf{bottom:191.850630px;}
.yd7{bottom:194.099670px;}
.y39{bottom:194.100150px;}
.y8c{bottom:200.550000px;}
.y143{bottom:204.149685px;}
.y144{bottom:204.150000px;}
.yfc{bottom:206.400150px;}
.y5f{bottom:207.301260px;}
.yae{bottom:207.900000px;}
.yd6{bottom:209.850000px;}
.yd5{bottom:209.850705px;}
.y38{bottom:210.000000px;}
.y142{bottom:216.150000px;}
.y141{bottom:216.151020px;}
.y8b{bottom:216.600000px;}
.y8a{bottom:216.600780px;}
.yfa{bottom:222.299775px;}
.yfb{bottom:222.300000px;}
.y5e{bottom:223.350630px;}
.y167{bottom:225.600000px;}
.y37{bottom:226.050000px;}
.y36{bottom:226.050675px;}
.y140{bottom:228.300855px;}
.y89{bottom:232.500630px;}
.yd3{bottom:234.150000px;}
.yf8{bottom:238.499775px;}
.yf9{bottom:238.500000px;}
.y5d{bottom:239.400000px;}
.y5c{bottom:239.401080px;}
.y13f{bottom:240.150315px;}
.y35{bottom:241.950525px;}
.y88{bottom:248.550000px;}
.yf6{bottom:254.699775px;}
.yf7{bottom:254.700000px;}
.y5b{bottom:255.300930px;}
.y13e{bottom:256.199685px;}
.y34{bottom:257.550000px;}
.y33{bottom:257.551260px;}
.yd2{bottom:258.149775px;}
.y13d{bottom:268.200000px;}
.yf5{bottom:270.900000px;}
.yf4{bottom:270.900150px;}
.y5a{bottom:271.051260px;}
.y87{bottom:272.550000px;}
.y86{bottom:272.550525px;}
.y32{bottom:273.600630px;}
.yd4{bottom:273.900000px;}
.yd1{bottom:274.350000px;}
.y13c{bottom:279.600000px;}
.yf2{bottom:286.799775px;}
.yf3{bottom:286.800000px;}
.y59{bottom:287.251485px;}
.y85{bottom:288.150000px;}
.y84{bottom:288.150630px;}
.y166{bottom:289.200000px;}
.y31{bottom:289.650000px;}
.y30{bottom:289.650780px;}
.y13b{bottom:295.800000px;}
.yac{bottom:297.900000px;}
.yad{bottom:301.650000px;}
.yf1{bottom:303.000000px;}
.y58{bottom:303.300855px;}
.y83{bottom:304.200000px;}
.y82{bottom:304.200630px;}
.yd0{bottom:305.250000px;}
.y2f{bottom:305.700150px;}
.y13a{bottom:312.450000px;}
.y139{bottom:312.450060px;}
.yf0{bottom:319.200000px;}
.y81{bottom:320.250000px;}
.y80{bottom:320.250780px;}
.y165{bottom:320.550000px;}
.y2d{bottom:321.599670px;}
.y2e{bottom:321.600000px;}
.y138{bottom:324.150000px;}
.y137{bottom:324.150165px;}
.y57{bottom:326.700735px;}
.yef{bottom:335.400000px;}
.yee{bottom:335.400510px;}
.y135{bottom:336.299460px;}
.y136{bottom:336.300000px;}
.y7f{bottom:336.300150px;}
.y2c{bottom:337.350000px;}
.y2b{bottom:337.350510px;}
.y56{bottom:343.200000px;}
.y134{bottom:347.549505px;}
.y7e{bottom:352.200000px;}
.yed{bottom:352.200150px;}
.y7d{bottom:352.201965px;}
.y55{bottom:359.700000px;}
.y101{bottom:360.300690px;}
.y2a{bottom:361.950555px;}
.y133{bottom:364.500000px;}
.y132{bottom:364.500060px;}
.yab{bottom:364.800000px;}
.yec{bottom:368.100000px;}
.y7c{bottom:368.251335px;}
.ycf{bottom:368.850210px;}
.y54{bottom:375.600630px;}
.y131{bottom:376.200000px;}
.y29{bottom:377.700885px;}
.yeb{bottom:384.600000px;}
.y130{bottom:387.900000px;}
.y53{bottom:391.650000px;}
.y52{bottom:391.650885px;}
.y7b{bottom:391.800735px;}
.y28{bottom:394.050630px;}
.ya9{bottom:398.850255px;}
.y12f{bottom:400.500000px;}
.y12e{bottom:400.500420px;}
.y51{bottom:407.700255px;}
.y7a{bottom:408.300000px;}
.y79{bottom:408.300255px;}
.y27{bottom:410.100000px;}
.y26{bottom:410.100780px;}
.yea{bottom:411.600000px;}
.y12d{bottom:411.899985px;}
.ya8{bottom:415.200000px;}
.ya7{bottom:415.200735px;}
.y50{bottom:424.050000px;}
.y4f{bottom:424.050150px;}
.y78{bottom:424.650000px;}
.y25{bottom:426.000630px;}
.y12c{bottom:429.000000px;}
.ya5{bottom:431.699925px;}
.ya6{bottom:431.700000px;}
.y4e{bottom:439.950000px;}
.y4d{bottom:439.950570px;}
.y12b{bottom:440.400000px;}
.y77{bottom:440.700000px;}
.y76{bottom:440.700255px;}
.y24{bottom:442.050000px;}
.y23{bottom:442.051335px;}
.ya4{bottom:447.599775px;}
.yce{bottom:449.850000px;}
.y12a{bottom:452.550000px;}
.y129{bottom:452.550210px;}
.y75{bottom:457.050000px;}
.ye8{bottom:461.399445px;}
.ye9{bottom:461.400000px;}
.ya3{bottom:463.800000px;}
.ya2{bottom:463.800630px;}
.y128{bottom:464.550525px;}
.ycc{bottom:465.599880px;}
.ycd{bottom:465.600000px;}
.y22{bottom:466.050630px;}
.ye7{bottom:477.599670px;}
.ya1{bottom:479.850000px;}
.y125{bottom:480.300000px;}
.y21{bottom:482.100000px;}
.y20{bottom:482.100150px;}
.yca{bottom:482.249670px;}
.ycb{bottom:482.250000px;}
.yaa{bottom:487.200000px;}
.y124{bottom:492.149685px;}
.ye6{bottom:493.350000px;}
.y74{bottom:495.150000px;}
.ya0{bottom:495.900000px;}
.y9f{bottom:495.900225px;}
.y15e{bottom:497.550000px;}
.yc9{bottom:497.999775px;}
.y1f{bottom:498.000000px;}
.y123{bottom:504.150000px;}
.y4c{bottom:511.050000px;}
.y1d{bottom:514.049565px;}
.y1e{bottom:514.050000px;}
.yc8{bottom:514.200000px;}
.ye5{bottom:519.300000px;}
.y127{bottom:520.200000px;}
.y4b{bottom:526.350000px;}
.y4a{bottom:526.350780px;}
.yc7{bottom:529.200000px;}
.yc6{bottom:529.200240px;}
.y1c{bottom:529.350000px;}
.y1b{bottom:529.350405px;}
.y122{bottom:532.200000px;}
.y121{bottom:532.200210px;}
.y49{bottom:542.400150px;}
.y73{bottom:542.550195px;}
.y120{bottom:543.300735px;}
.y1a{bottom:545.399775px;}
.yc5{bottom:545.549985px;}
.y164{bottom:546.450000px;}
.y48{bottom:558.300000px;}
.y11f{bottom:559.800000px;}
.y19{bottom:561.600000px;}
.y163{bottom:565.500000px;}
.y11e{bottom:571.800000px;}
.y11d{bottom:571.800690px;}
.ye4{bottom:573.600000px;}
.ye3{bottom:573.600090px;}
.y161{bottom:575.400000px;}
.yc4{bottom:576.000000px;}
.y162{bottom:580.800000px;}
.y47{bottom:582.300000px;}
.y160{bottom:584.850000px;}
.y126{bottom:587.100000px;}
.y18{bottom:587.700000px;}
.y9e{bottom:597.600525px;}
.y11c{bottom:599.550000px;}
.y11b{bottom:599.550015px;}
.y46{bottom:608.400000px;}
.yc3{bottom:609.150000px;}
.y11a{bottom:611.399475px;}
.y9d{bottom:613.200000px;}
.y119{bottom:622.500000px;}
.y72{bottom:627.300000px;}
.y71{bottom:627.300630px;}
.y9c{bottom:629.250000px;}
.y9b{bottom:629.250360px;}
.y16{bottom:636.599670px;}
.y17{bottom:636.600000px;}
.yc2{bottom:642.300000px;}
.yc1{bottom:642.300585px;}
.y70{bottom:643.350000px;}
.y118{bottom:649.200000px;}
.y15{bottom:652.350000px;}
.ye2{bottom:655.049775px;}
.y9a{bottom:659.400000px;}
.y45{bottom:660.000000px;}
.y44{bottom:660.000255px;}
.y15f{bottom:663.450000px;}
.y14{bottom:668.400000px;}
.y13{bottom:668.400150px;}
.yc0{bottom:669.600000px;}
.y6f{bottom:669.900000px;}
.ye1{bottom:671.250000px;}
.ye0{bottom:671.250105px;}
.y12{bottom:684.300000px;}
.y11{bottom:684.303180px;}
.ybf{bottom:685.800000px;}
.ybe{bottom:685.800510px;}
.y6e{bottom:686.850000px;}
.y117{bottom:691.200000px;}
.y116{bottom:691.202190px;}
.y6d{bottom:693.600000px;}
.y43{bottom:698.999610px;}
.y10{bottom:700.802445px;}
.y42{bottom:703.050000px;}
.y115{bottom:707.251560px;}
.yf{bottom:716.552775px;}
.y40{bottom:718.350000px;}
.y41{bottom:721.950000px;}
.y6c{bottom:727.950000px;}
.ye{bottom:732.602145px;}
.y6b{bottom:744.000000px;}
.y6a{bottom:744.000780px;}
.y15d{bottom:745.950630px;}
.y114{bottom:747.152040px;}
.yd{bottom:748.951890px;}
.yde{bottom:751.799715px;}
.ydf{bottom:751.800000px;}
.y69{bottom:760.350525px;}
.y15c{bottom:762.000000px;}
.y15b{bottom:762.000285px;}
.y113{bottom:763.201410px;}
.yc{bottom:765.001260px;}
.ybd{bottom:771.900000px;}
.ybc{bottom:771.900465px;}
.y68{bottom:775.950000px;}
.y112{bottom:779.250780px;}
.yb{bottom:781.050630px;}
.ydd{bottom:782.699625px;}
.y15a{bottom:784.200000px;}
.y3f{bottom:789.000000px;}
.y111{bottom:795.600525px;}
.ya{bottom:797.100000px;}
.y158{bottom:798.450000px;}
.y67{bottom:800.250000px;}
.y159{bottom:803.550000px;}
.y99{bottom:807.600000px;}
.y157{bottom:808.500000px;}
.ydc{bottom:809.700000px;}
.y3e{bottom:810.300735px;}
.y110{bottom:811.200000px;}
.y10f{bottom:811.200405px;}
.y9{bottom:824.100000px;}
.y155{bottom:824.999970px;}
.y156{bottom:825.000000px;}
.y3c{bottom:826.799925px;}
.y3d{bottom:826.800000px;}
.y10e{bottom:827.400630px;}
.y66{bottom:843.000000px;}
.y10d{bottom:843.450000px;}
.y154{bottom:845.850000px;}
.ybb{bottom:862.950135px;}
.y151{bottom:866.850000px;}
.y10c{bottom:868.800000px;}
.y8{bottom:873.750225px;}
.y153{bottom:879.450000px;}
.yb9{bottom:882.599775px;}
.yba{bottom:882.600000px;}
.y152{bottom:888.150000px;}
.y7{bottom:889.349700px;}
.y10b{bottom:894.901035px;}
.y150{bottom:896.250000px;}
.yb8{bottom:898.800000px;}
.yb7{bottom:898.800105px;}
.y6{bottom:905.549925px;}
.y10a{bottom:911.101260px;}
.yb6{bottom:915.000330px;}
.y5{bottom:921.899670px;}
.y14f{bottom:926.250000px;}
.y109{bottom:927.150630px;}
.y98{bottom:932.550630px;}
.y4{bottom:937.650000px;}
.y108{bottom:943.200000px;}
.y107{bottom:943.200885px;}
.y97{bottom:948.600000px;}
.y96{bottom:948.600255px;}
.y14e{bottom:953.849850px;}
.y106{bottom:959.550630px;}
.y94{bottom:964.949775px;}
.y95{bottom:964.950000px;}
.y14d{bottom:965.850165px;}
.y3{bottom:972.000000px;}
.y105{bottom:975.600000px;}
.y14c{bottom:978.000000px;}
.yb5{bottom:979.350000px;}
.y93{bottom:981.150000px;}
.y92{bottom:981.151260px;}
.yb4{bottom:990.150000px;}
.y104{bottom:991.200630px;}
.y14b{bottom:993.600000px;}
.y14a{bottom:993.600540px;}
.y91{bottom:997.200630px;}
.y65{bottom:997.500000px;}
.y64{bottom:997.500630px;}
.yda{bottom:1003.349670px;}
.ydb{bottom:1003.350000px;}
.y149{bottom:1005.450000px;}
.y2{bottom:1006.050000px;}
.y103{bottom:1007.250000px;}
.yb3{bottom:1011.450000px;}
.y90{bottom:1013.250000px;}
.y8f{bottom:1013.251125px;}
.y63{bottom:1013.550000px;}
.yd9{bottom:1019.100000px;}
.yd8{bottom:1019.100300px;}
.y1{bottom:1074.600000px;}
.h27{height:16.270313px;}
.h51{height:21.902344px;}
.h28{height:23.779687px;}
.h22{height:25.657031px;}
.h24{height:28.160156px;}
.h26{height:34.417969px;}
.h46{height:35.043750px;}
.h25{height:36.295312px;}
.h5f{height:37.546875px;}
.h75{height:39.975000px;}
.h4d{height:40.050000px;}
.h70{height:40.631836px;}
.h23{height:41.301562px;}
.h5e{height:42.932812px;}
.h60{height:42.965918px;}
.he{height:42.987305px;}
.h56{height:43.554492px;}
.h55{height:44.143066px;}
.h34{height:44.165039px;}
.h66{height:44.731641px;}
.h33{height:44.746875px;}
.h37{height:45.351562px;}
.h6{height:45.682031px;}
.h54{height:45.908789px;}
.h3{height:46.307813px;}
.h4a{height:46.497363px;}
.h5{height:46.933594px;}
.h52{height:47.085938px;}
.h42{height:47.165625px;}
.h2{height:47.559375px;}
.h44{height:47.674512px;}
.h6c{height:47.698242px;}
.h6d{height:48.375000px;}
.h47{height:48.851660px;}
.h10{height:48.875977px;}
.h3b{height:49.440234px;}
.h6b{height:49.464844px;}
.h2d{height:50.028809px;}
.h19{height:50.062500px;}
.h3f{height:50.617383px;}
.h1b{height:50.642578px;}
.h48{height:50.688281px;}
.h31{height:51.794531px;}
.h1a{height:51.820313px;}
.h57{height:51.939844px;}
.h2b{height:52.383105px;}
.h12{height:52.409180px;}
.h5a{height:52.565625px;}
.h2f{height:52.971680px;}
.h14{height:52.998047px;}
.h45{height:53.191406px;}
.h1f{height:53.212500px;}
.h16{height:53.560254px;}
.h1c{height:53.586914px;}
.h61{height:53.817187px;}
.h38{height:54.421875px;}
.h15{height:54.737402px;}
.h17{height:54.764648px;}
.h7d{height:54.780765px;}
.h7b{height:54.965625px;}
.h39{height:55.026562px;}
.h6e{height:55.068750px;}
.h30{height:55.325977px;}
.h1d{height:55.353516px;}
.h43{height:55.694531px;}
.h58{height:55.914551px;}
.h65{height:55.942383px;}
.h2c{height:56.235938px;}
.h64{height:56.503125px;}
.h63{height:56.531250px;}
.h6a{height:56.840625px;}
.h7c{height:57.445312px;}
.h5b{height:59.259375px;}
.h3c{height:59.337891px;}
.h59{height:59.445996px;}
.h5c{height:60.623145px;}
.h3a{height:61.073437px;}
.h41{height:61.211719px;}
.h11{height:61.831055px;}
.h3e{height:61.836328px;}
.hf{height:62.419922px;}
.h5d{height:63.203906px;}
.hd{height:63.597656px;}
.hb{height:64.186523px;}
.h40{height:64.743164px;}
.hc{height:64.775391px;}
.h18{height:65.910938px;}
.h13{height:66.515625px;}
.h62{height:67.120312px;}
.h4{height:67.584375px;}
.h50{height:68.210156px;}
.h69{height:68.329688px;}
.h1e{height:69.461719px;}
.h49{height:72.562500px;}
.h2e{height:72.590625px;}
.h3d{height:73.608398px;}
.h7{height:75.585938px;}
.h76{height:75.719531px;}
.h6f{height:75.963867px;}
.h8{height:77.400000px;}
.ha{height:79.214062px;}
.h20{height:81.351562px;}
.h32{height:83.196387px;}
.h78{height:93.629883px;}
.h21{height:97.561230px;}
.h74{height:100.125000px;}
.h9{height:112.014844px;}
.h2a{height:114.707214px;}
.h73{height:122.724385px;}
.h71{height:122.751563px;}
.h77{height:123.904688px;}
.h7a{height:128.891439px;}
.h72{height:131.821875px;}
.h29{height:132.039844px;}
.h79{height:139.458691px;}
.h4b{height:173.294232px;}
.h4c{height:184.605469px;}
.h53{height:205.256250px;}
.h67{height:1188.538875px;}
.h68{height:1188.750000px;}
.h35{height:1191.599115px;}
.h36{height:1191.750000px;}
.h4e{height:1192.319280px;}
.h4f{height:1192.500000px;}
.h0{height:1194.659370px;}
.h1{height:1194.750000px;}
.w6{width:919.259040px;}
.w7{width:919.500000px;}
.w3{width:922.500000px;}
.w2{width:922.859805px;}
.w4{width:923.939205px;}
.w5{width:924.000000px;}
.w1{width:928.500000px;}
.w0{width:928.619385px;}
.x0{left:0.000000px;}
.xee{left:99.600000px;}
.xf4{left:100.650360px;}
.xf6{left:105.000000px;}
.x6b{left:106.950000px;}
.x73{left:108.151560px;}
.x6d{left:112.500000px;}
.xf3{left:117.599160px;}
.xca{left:124.349880px;}
.xc0{left:125.399880px;}
.xba{left:126.901320px;}
.x6f{left:127.950000px;}
.x70{left:133.200000px;}
.x2a{left:134.699040px;}
.x1d{left:135.900000px;}
.xf9{left:138.750000px;}
.x76{left:139.800000px;}
.x29{left:141.600000px;}
.xf8{left:142.950000px;}
.xcb{left:145.050000px;}
.x81{left:146.550000px;}
.x71{left:150.900000px;}
.x31{left:152.850000px;}
.x77{left:155.100000px;}
.xf5{left:157.800000px;}
.x82{left:159.900000px;}
.x3b{left:162.150000px;}
.x6e{left:164.550000px;}
.xef{left:165.900000px;}
.x78{left:171.000000px;}
.xc6{left:172.950000px;}
.xb8{left:174.600000px;}
.x32{left:177.450000px;}
.xc8{left:180.600000px;}
.xbc{left:182.100000px;}
.x3c{left:183.300000px;}
.x8a{left:185.700000px;}
.xc4{left:187.500000px;}
.x3e{left:191.100000px;}
.x84{left:193.500000px;}
.x74{left:195.750000px;}
.xff{left:198.600000px;}
.x85{left:201.900000px;}
.xb9{left:205.500000px;}
.x8f{left:207.600000px;}
.x33{left:208.650000px;}
.x9{left:210.600000px;}
.xf1{left:212.250000px;}
.xc9{left:215.850000px;}
.x1{left:217.200000px;}
.xb1{left:219.300000px;}
.x18{left:221.250000px;}
.x34{left:223.500000px;}
.xf2{left:224.700000px;}
.x1a{left:225.900360px;}
.x72{left:226.950000px;}
.xa{left:228.300000px;}
.x23{left:229.350000px;}
.xbf{left:232.350000px;}
.x90{left:234.000000px;}
.x20{left:235.800000px;}
.xbd{left:237.750240px;}
.x39{left:240.300000px;}
.x2f{left:242.700000px;}
.x8e{left:244.200000px;}
.xc2{left:245.550000px;}
.x27{left:246.600000px;}
.xf0{left:248.550000px;}
.x2{left:252.000000px;}
.xc7{left:253.500000px;}
.x79{left:254.850000px;}
.xb2{left:255.900000px;}
.xb5{left:257.700000px;}
.xcd{left:258.900000px;}
.x21{left:260.100000px;}
.x25{left:263.100000px;}
.x28{left:266.250000px;}
.xbb{left:269.700000px;}
.x1c{left:270.900000px;}
.xf{left:271.950000px;}
.x26{left:273.600000px;}
.x8b{left:275.400000px;}
.x30{left:276.900000px;}
.x3{left:279.000000px;}
.xb3{left:283.650000px;}
.x4{left:286.200000px;}
.xfe{left:287.700000px;}
.x91{left:288.900000px;}
.x3a{left:292.350000px;}
.xce{left:295.500000px;}
.x8c{left:297.300000px;}
.x19{left:300.600480px;}
.x86{left:301.800000px;}
.x7d{left:308.550000px;}
.x35{left:309.600000px;}
.xb4{left:311.850000px;}
.x5{left:313.200000px;}
.x100{left:315.000000px;}
.x10{left:317.100000px;}
.xbe{left:318.300000px;}
.x2b{left:321.900000px;}
.x37{left:324.600000px;}
.x36{left:327.300000px;}
.x7e{left:330.900000px;}
.xfd{left:334.950000px;}
.x11{left:336.900000px;}
.xf7{left:340.200000px;}
.xcc{left:341.550000px;}
.x101{left:346.500000px;}
.x38{left:349.200000px;}
.x83{left:353.100000px;}
.x87{left:354.300000px;}
.x1b{left:358.498320px;}
.xfb{left:361.200000px;}
.xc3{left:363.750000px;}
.xfa{left:367.500000px;}
.x6c{left:370.350000px;}
.xb{left:374.250000px;}
.x24{left:375.300000px;}
.x7f{left:377.700000px;}
.x1e{left:385.950000px;}
.xfc{left:389.100000px;}
.x88{left:390.900000px;}
.x7c{left:393.000000px;}
.x2c{left:394.200000px;}
.x8d{left:397.800000px;}
.x80{left:399.900000px;}
.x7a{left:403.200000px;}
.x89{left:405.900000px;}
.xc{left:408.300000px;}
.xb6{left:412.800000px;}
.xc5{left:414.900000px;}
.x12{left:416.550000px;}
.x2d{left:420.600000px;}
.x75{left:422.400000px;}
.x7b{left:425.100000px;}
.xc1{left:432.150000px;}
.xb0{left:433.200000px;}
.x2e{left:434.850000px;}
.x22{left:436.500000px;}
.xb7{left:440.250000px;}
.x1f{left:444.900000px;}
.x3d{left:450.000000px;}
.x105{left:453.300000px;}
.xed{left:455.999520px;}
.x92{left:459.599760px;}
.x6a{left:460.950000px;}
.x106{left:465.000000px;}
.x10f{left:466.500120px;}
.x114{left:467.700000px;}
.x13{left:469.650000px;}
.x9b{left:470.700000px;}
.x113{left:474.600000px;}
.x107{left:479.550000px;}
.x102{left:480.600000px;}
.x117{left:481.799640px;}
.xdf{left:483.450000px;}
.xcf{left:484.498920px;}
.x109{left:486.600000px;}
.x57{left:488.099880px;}
.x3f{left:489.301920px;}
.xa5{left:491.550000px;}
.x10a{left:494.250000px;}
.x103{left:496.650000px;}
.x9e{left:500.550000px;}
.x9f{left:501.750000px;}
.x9a{left:503.700000px;}
.xe0{left:506.250000px;}
.x52{left:507.749280px;}
.x9c{left:509.400000px;}
.xd9{left:510.900000px;}
.x63{left:512.250000px;}
.xe6{left:515.250000px;}
.x96{left:516.300000px;}
.xd4{left:518.250000px;}
.x14{left:520.500000px;}
.x53{left:521.700000px;}
.x5b{left:524.400000px;}
.xe7{left:527.700000px;}
.x64{left:531.000000px;}
.x15{left:533.250000px;}
.x5c{left:534.450000px;}
.xa0{left:535.500000px;}
.xda{left:536.550000px;}
.x42{left:538.950000px;}
.x54{left:541.650000px;}
.x66{left:543.900000px;}
.x9d{left:546.300000px;}
.x43{left:548.250000px;}
.xa1{left:550.350000px;}
.x10e{left:552.900000px;}
.x112{left:559.200000px;}
.x16{left:560.250000px;}
.x44{left:564.300000px;}
.xe9{left:565.500000px;}
.xd{left:567.000000px;}
.xe8{left:568.200000px;}
.xd5{left:569.850000px;}
.xac{left:572.250000px;}
.x51{left:574.199400px;}
.xdc{left:575.250000px;}
.x6{left:576.900000px;}
.xad{left:582.300000px;}
.x97{left:583.500000px;}
.xa2{left:584.850000px;}
.x45{left:586.950000px;}
.xe3{left:588.300000px;}
.x46{left:591.000000px;}
.x47{left:596.550000px;}
.x98{left:599.250000px;}
.xae{left:600.900000px;}
.x10c{left:602.850000px;}
.x93{left:605.550000px;}
.x5f{left:607.350000px;}
.x7{left:610.200000px;}
.xea{left:611.850000px;}
.xe{left:614.850000px;}
.xaa{left:616.800000px;}
.x94{left:618.300000px;}
.x48{left:622.200000px;}
.x60{left:623.850000px;}
.x104{left:625.800000px;}
.xd2{left:627.600000px;}
.x108{left:630.600000px;}
.x17{left:632.100000px;}
.x49{left:634.350000px;}
.xd7{left:636.150000px;}
.xdb{left:638.850000px;}
.x8{left:640.200000px;}
.xab{left:641.550000px;}
.xaf{left:642.900000px;}
.x111{left:645.000000px;}
.xd3{left:649.350000px;}
.x4a{left:650.550000px;}
.xd8{left:651.600000px;}
.x4e{left:657.900000px;}
.x4f{left:661.500000px;}
.x115{left:662.550000px;}
.x4b{left:668.100000px;}
.xa6{left:672.000000px;}
.xeb{left:673.200000px;}
.x4c{left:675.000000px;}
.xa3{left:676.950000px;}
.x58{left:679.500000px;}
.x116{left:682.950000px;}
.x55{left:684.900000px;}
.x4d{left:687.300000px;}
.x59{left:692.700000px;}
.xa7{left:696.300000px;}
.x99{left:697.350000px;}
.x10d{left:703.950000px;}
.xd0{left:707.400000px;}
.xe2{left:712.050000px;}
.xa8{left:715.350000px;}
.x56{left:716.550000px;}
.x10b{left:718.200000px;}
.x110{left:720.600000px;}
.x5d{left:723.900000px;}
.x50{left:726.600000px;}
.x67{left:729.600000px;}
.xa4{left:733.500000px;}
.xec{left:738.300000px;}
.x95{left:740.850000px;}
.xdd{left:742.050000px;}
.x5e{left:745.200000px;}
.xe5{left:747.000000px;}
.xd1{left:749.850000px;}
.xd6{left:754.050000px;}
.x68{left:756.000000px;}
.x40{left:762.300000px;}
.x61{left:769.800000px;}
.x41{left:771.600000px;}
.xa9{left:773.250000px;}
.xe4{left:775.050000px;}
.xde{left:780.300000px;}
.xe1{left:784.800000px;}
.x62{left:789.900000px;}
.x69{left:796.800000px;}
.x5a{left:798.900000px;}
.x65{left:803.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.131253pt;}
.ls67{letter-spacing:-35.969499pt;}
.ls52{letter-spacing:-33.973856pt;}
.ls68{letter-spacing:-28.321573pt;}
.ls31{letter-spacing:-20.107360pt;}
.lsa2{letter-spacing:-18.021915pt;}
.lsae{letter-spacing:-14.240000pt;}
.ls48{letter-spacing:-12.928539pt;}
.ls24{letter-spacing:-10.400693pt;}
.ls50{letter-spacing:-9.707152pt;}
.ls9d{letter-spacing:-9.018667pt;}
.ls47{letter-spacing:-8.976528pt;}
.lsaf{letter-spacing:-8.661333pt;}
.lsb4{letter-spacing:-8.448469pt;}
.lsa8{letter-spacing:-7.680427pt;}
.ls44{letter-spacing:-7.093840pt;}
.ls81{letter-spacing:-6.170667pt;}
.lsa7{letter-spacing:-5.376448pt;}
.ls38{letter-spacing:-5.221333pt;}
.ls2d{letter-spacing:-4.928352pt;}
.ls36{letter-spacing:-4.747141pt;}
.ls29{letter-spacing:-4.640309pt;}
.ls28{letter-spacing:-4.224352pt;}
.lsb0{letter-spacing:-3.872645pt;}
.ls39{letter-spacing:-3.797333pt;}
.lsb3{letter-spacing:-3.792421pt;}
.ls23{letter-spacing:-3.552592pt;}
.ls26{letter-spacing:-3.472496pt;}
.ls59{letter-spacing:-3.360480pt;}
.ls2b{letter-spacing:-3.360240pt;}
.ls1f{letter-spacing:-3.323141pt;}
.ls66{letter-spacing:-3.242667pt;}
.lsa6{letter-spacing:-2.912485pt;}
.ls2c{letter-spacing:-2.816000pt;}
.ls42{letter-spacing:-2.720453pt;}
.ls96{letter-spacing:-2.533333pt;}
.ls7b{letter-spacing:-2.400000pt;}
.ls5f{letter-spacing:-2.389333pt;}
.lsb1{letter-spacing:-2.373333pt;}
.ls2a{letter-spacing:-2.346667pt;}
.ls10{letter-spacing:-2.096699pt;}
.lse{letter-spacing:-2.048683pt;}
.ls84{letter-spacing:-2.027173pt;}
.lsac{letter-spacing:-2.005835pt;}
.ls1d{letter-spacing:-1.984496pt;}
.lsc{letter-spacing:-1.973333pt;}
.lsb7{letter-spacing:-1.941819pt;}
.ls1a{letter-spacing:-1.920480pt;}
.ls19{letter-spacing:-1.899141pt;}
.ls57{letter-spacing:-1.877803pt;}
.ls8f{letter-spacing:-1.776592pt;}
.ls1e{letter-spacing:-1.744581pt;}
.ls25{letter-spacing:-1.738667pt;}
.ls30{letter-spacing:-1.488496pt;}
.lsb8{letter-spacing:-1.456485pt;}
.lsb9{letter-spacing:-1.440480pt;}
.ls18{letter-spacing:-1.424475pt;}
.lsf{letter-spacing:-1.365333pt;}
.lsa0{letter-spacing:-1.205333pt;}
.lsa{letter-spacing:-1.184395pt;}
.lsa1{letter-spacing:-1.162667pt;}
.lsb6{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.949333pt;}
.ls6b{letter-spacing:-0.906667pt;}
.ls3a{letter-spacing:-0.789333pt;}
.lsb{letter-spacing:-0.778667pt;}
.ls8a{letter-spacing:-0.757333pt;}
.ls11{letter-spacing:-0.683349pt;}
.lsd{letter-spacing:-0.667333pt;}
.lsa3{letter-spacing:-0.603269pt;}
.ls12{letter-spacing:-0.587253pt;}
.ls14{letter-spacing:-0.565899pt;}
.ls90{letter-spacing:-0.512512pt;}
.ls32{letter-spacing:-0.496496pt;}
.ls21{letter-spacing:-0.485819pt;}
.ls3d{letter-spacing:-0.480480pt;}
.ls16{letter-spacing:-0.475141pt;}
.ls4c{letter-spacing:-0.459125pt;}
.ls5c{letter-spacing:-0.453787pt;}
.lsa4{letter-spacing:-0.448448pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.442224pt;}
.ls80{letter-spacing:0.447552pt;}
.ls4d{letter-spacing:0.452880pt;}
.ls20{letter-spacing:0.468864pt;}
.ls1{letter-spacing:0.474192pt;}
.ls3c{letter-spacing:0.479520pt;}
.ls6a{letter-spacing:0.495504pt;}
.ls22{letter-spacing:0.500832pt;}
.ls13{letter-spacing:0.575424pt;}
.lsb2{letter-spacing:0.847152pt;}
.ls27{letter-spacing:0.874448pt;}
.ls77{letter-spacing:0.916875pt;}
.lsa5{letter-spacing:0.938197pt;}
.ls3{letter-spacing:0.948859pt;}
.ls89{letter-spacing:0.970181pt;}
.ls51{letter-spacing:1.172747pt;}
.ls75{letter-spacing:1.248000pt;}
.ls72{letter-spacing:1.280000pt;}
.lsab{letter-spacing:1.360000pt;}
.ls8e{letter-spacing:1.376000pt;}
.ls0{letter-spacing:1.424000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls58{letter-spacing:1.456000pt;}
.ls85{letter-spacing:1.648000pt;}
.ls37{letter-spacing:1.876864pt;}
.ls2{letter-spacing:1.898192pt;}
.ls5b{letter-spacing:1.919520pt;}
.ls78{letter-spacing:1.972939pt;}
.ls98{letter-spacing:1.999600pt;}
.ls95{letter-spacing:2.004832pt;}
.ls63{letter-spacing:2.132907pt;}
.ls9b{letter-spacing:2.368000pt;}
.ls6{letter-spacing:2.372859pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls46{letter-spacing:2.426181pt;}
.ls9c{letter-spacing:2.432000pt;}
.ls5e{letter-spacing:2.479504pt;}
.ls56{letter-spacing:2.496000pt;}
.ls62{letter-spacing:2.592000pt;}
.ls3e{letter-spacing:2.692795pt;}
.ls55{letter-spacing:2.816000pt;}
.ls6f{letter-spacing:2.848000pt;}
.ls1c{letter-spacing:2.912000pt;}
.ls4e{letter-spacing:2.976000pt;}
.ls8d{letter-spacing:3.114277pt;}
.ls76{letter-spacing:3.199600pt;}
.ls8b{letter-spacing:3.199680pt;}
.ls99{letter-spacing:3.284864pt;}
.ls6c{letter-spacing:3.322192pt;}
.ls7d{letter-spacing:3.327584pt;}
.ls33{letter-spacing:3.359520pt;}
.ls65{letter-spacing:3.370245pt;}
.ls69{letter-spacing:3.412992pt;}
.ls83{letter-spacing:3.471504pt;}
.ls7e{letter-spacing:3.546160pt;}
.ls86{letter-spacing:3.583552pt;}
.ls82{letter-spacing:3.658144pt;}
.ls43{letter-spacing:3.754197pt;}
.ls6e{letter-spacing:3.796859pt;}
.ls7a{letter-spacing:3.888000pt;}
.ls9a{letter-spacing:3.999600pt;}
.ls60{letter-spacing:4.080000pt;}
.ls70{letter-spacing:4.272000pt;}
.ls8c{letter-spacing:4.320000pt;}
.ls3f{letter-spacing:4.512000pt;}
.ls34{letter-spacing:4.692864pt;}
.ls4f{letter-spacing:4.746192pt;}
.ls7c{letter-spacing:4.751568pt;}
.ls45{letter-spacing:4.852848pt;}
.ls40{letter-spacing:4.927552pt;}
.ls5d{letter-spacing:4.959504pt;}
.lsa9{letter-spacing:5.012832pt;}
.ls5{letter-spacing:5.220859pt;}
.ls4a{letter-spacing:5.279520pt;}
.ls92{letter-spacing:5.338181pt;}
.ls7f{letter-spacing:5.440000pt;}
.ls6d{letter-spacing:5.696000pt;}
.ls5a{letter-spacing:6.048000pt;}
.ls79{letter-spacing:6.170192pt;}
.lsb5{letter-spacing:6.239520pt;}
.ls97{letter-spacing:6.308848pt;}
.ls1b{letter-spacing:6.447504pt;}
.ls4{letter-spacing:6.645333pt;}
.ls71{letter-spacing:6.799547pt;}
.ls74{letter-spacing:6.826240pt;}
.ls49{letter-spacing:6.944000pt;}
.ls54{letter-spacing:7.119525pt;}
.ls9e{letter-spacing:7.594192pt;}
.ls53{letter-spacing:7.764848pt;}
.ls4b{letter-spacing:7.935504pt;}
.ls9f{letter-spacing:8.069333pt;}
.ls94{letter-spacing:8.613333pt;}
.ls88{letter-spacing:8.853333pt;}
.ls7{letter-spacing:9.967525pt;}
.ls93{letter-spacing:10.026667pt;}
.ls41{letter-spacing:10.133333pt;}
.ls61{letter-spacing:10.181333pt;}
.lsad{letter-spacing:10.319312pt;}
.ls87{letter-spacing:11.786213pt;}
.ls64{letter-spacing:14.079360pt;}
.ls91{letter-spacing:14.336000pt;}
.ls8{letter-spacing:17.087525pt;}
.ls73{letter-spacing:19.240917pt;}
.lsaa{letter-spacing:21.840000pt;}
.ls2e{letter-spacing:50.799600pt;}
.ls2f{letter-spacing:90.025541pt;}
.ws0{word-spacing:0.000000pt;}
._24{margin-left:-94.028715pt;}
._2a{margin-left:-29.832800pt;}
._29{margin-left:-20.445499pt;}
._23{margin-left:-17.990816pt;}
._22{margin-left:-16.855445pt;}
._21{margin-left:-14.114528pt;}
._b{margin-left:-11.336464pt;}
._2e{margin-left:-10.253056pt;}
._0{margin-left:-6.937920pt;}
._a{margin-left:-5.721157pt;}
._2{margin-left:-4.052960pt;}
._3{margin-left:-2.791520pt;}
._1{margin-left:-1.615733pt;}
._6{width:1.039520pt;}
._7{width:2.438144pt;}
._5{width:3.450133pt;}
._9{width:4.390416pt;}
._8{width:5.467653pt;}
._17{width:6.519072pt;}
._27{width:7.500683pt;}
._4{width:8.506027pt;}
._11{width:9.396027pt;}
._1b{width:10.465925pt;}
._28{width:11.398645pt;}
._18{width:12.860144pt;}
._f{width:13.798560pt;}
._c{width:15.115285pt;}
._d{width:16.828832pt;}
._e{width:18.260427pt;}
._25{width:19.333173pt;}
._10{width:20.313835pt;}
._20{width:21.348133pt;}
._1c{width:22.714699pt;}
._2d{width:23.833488pt;}
._1f{width:25.036768pt;}
._1d{width:26.623104pt;}
._14{width:28.139189pt;}
._13{width:29.790080pt;}
._16{width:31.026112pt;}
._15{width:32.158667pt;}
._1e{width:33.717472pt;}
._32{width:35.244949pt;}
._12{width:37.998491pt;}
._26{width:41.407072pt;}
._2f{width:43.975493pt;}
._30{width:45.403291pt;}
._33{width:60.508891pt;}
._19{width:65.765067pt;}
._1a{width:68.311179pt;}
._31{width:69.747520pt;}
._34{width:93.552053pt;}
._35{width:145.869813pt;}
._2b{width:178.147147pt;}
._2c{width:371.317493pt;}
.fs1e{font-size:13.866667pt;}
.fs32{font-size:18.666667pt;}
.fs1f{font-size:20.266667pt;}
.fs19{font-size:21.866667pt;}
.fs1b{font-size:24.000000pt;}
.fs1d{font-size:29.333333pt;}
.fs2c{font-size:29.866667pt;}
.fs1c{font-size:30.933333pt;}
.fs36{font-size:32.000000pt;}
.fs31{font-size:34.133333pt;}
.fs1a{font-size:35.200000pt;}
.fs3a{font-size:36.800000pt;}
.fs35{font-size:37.866667pt;}
.fs4{font-size:38.933333pt;}
.fs1{font-size:39.466667pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:40.533333pt;}
.fs2a{font-size:41.600000pt;}
.fs2e{font-size:42.133333pt;}
.fs12{font-size:42.666667pt;}
.fs2b{font-size:43.200000pt;}
.fsc{font-size:44.266667pt;}
.fs26{font-size:44.800000pt;}
.fs22{font-size:45.333333pt;}
.fs14{font-size:45.866667pt;}
.fs13{font-size:46.933333pt;}
.fse{font-size:47.466667pt;}
.fsf{font-size:48.000000pt;}
.fs11{font-size:48.533333pt;}
.fs10{font-size:49.600000pt;}
.fs15{font-size:50.133333pt;}
.fs27{font-size:50.666667pt;}
.fs37{font-size:51.200000pt;}
.fs29{font-size:52.266667pt;}
.fs28{font-size:52.800000pt;}
.fs25{font-size:53.866667pt;}
.fs34{font-size:54.933333pt;}
.fsd{font-size:56.000000pt;}
.fsb{font-size:56.533333pt;}
.fs2{font-size:57.600000pt;}
.fs9{font-size:58.133333pt;}
.fsa{font-size:58.666667pt;}
.fs16{font-size:59.200000pt;}
.fs38{font-size:60.266667pt;}
.fs23{font-size:61.866667pt;}
.fs2d{font-size:64.000000pt;}
.fs3f{font-size:64.533333pt;}
.fs5{font-size:66.666667pt;}
.fs6{font-size:68.266667pt;}
.fs39{font-size:68.800000pt;}
.fs17{font-size:69.333333pt;}
.fs8{font-size:69.866667pt;}
.fs24{font-size:74.133333pt;}
.fs41{font-size:84.800000pt;}
.fs3e{font-size:85.333333pt;}
.fs18{font-size:86.933333pt;}
.fs7{font-size:95.466667pt;}
.fs21{font-size:99.200000pt;}
.fs40{font-size:105.600000pt;}
.fs3d{font-size:106.133333pt;}
.fs3b{font-size:108.266667pt;}
.fs43{font-size:111.466667pt;}
.fs20{font-size:112.533333pt;}
.fs3c{font-size:116.266667pt;}
.fs42{font-size:124.266667pt;}
.fs2f{font-size:149.866667pt;}
.fs30{font-size:157.333333pt;}
.fs33{font-size:174.933333pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:94.666053pt;}
.y102{bottom:96.134427pt;}
.yb2{bottom:100.666667pt;}
.y62{bottom:103.066667pt;}
.y61{bottom:123.866667pt;}
.yff{bottom:155.066467pt;}
.y100{bottom:155.066667pt;}
.y147{bottom:156.666387pt;}
.y148{bottom:156.666667pt;}
.yb1{bottom:156.933333pt;}
.yb0{bottom:156.933507pt;}
.y3b{bottom:158.266667pt;}
.y3a{bottom:158.267360pt;}
.y8e{bottom:164.133333pt;}
.y8d{bottom:164.133467pt;}
.y168{bottom:164.933333pt;}
.y146{bottom:167.333333pt;}
.y145{bottom:167.333467pt;}
.yfd{bottom:169.466507pt;}
.yfe{bottom:169.466667pt;}
.y60{bottom:170.134587pt;}
.yaf{bottom:170.533893pt;}
.yd7{bottom:172.533040pt;}
.y39{bottom:172.533467pt;}
.y8c{bottom:178.266667pt;}
.y143{bottom:181.466387pt;}
.y144{bottom:181.466667pt;}
.yfc{bottom:183.466800pt;}
.y5f{bottom:184.267787pt;}
.yae{bottom:184.800000pt;}
.yd6{bottom:186.533333pt;}
.yd5{bottom:186.533960pt;}
.y38{bottom:186.666667pt;}
.y142{bottom:192.133333pt;}
.y141{bottom:192.134240pt;}
.y8b{bottom:192.533333pt;}
.y8a{bottom:192.534027pt;}
.yfa{bottom:197.599800pt;}
.yfb{bottom:197.600000pt;}
.y5e{bottom:198.533893pt;}
.y167{bottom:200.533333pt;}
.y37{bottom:200.933333pt;}
.y36{bottom:200.933933pt;}
.y140{bottom:202.934093pt;}
.y89{bottom:206.667227pt;}
.yd3{bottom:208.133333pt;}
.yf8{bottom:211.999800pt;}
.yf9{bottom:212.000000pt;}
.y5d{bottom:212.800000pt;}
.y5c{bottom:212.800960pt;}
.y13f{bottom:213.466947pt;}
.y35{bottom:215.067133pt;}
.y88{bottom:220.933333pt;}
.yf6{bottom:226.399800pt;}
.yf7{bottom:226.400000pt;}
.y5b{bottom:226.934160pt;}
.y13e{bottom:227.733053pt;}
.y34{bottom:228.933333pt;}
.y33{bottom:228.934453pt;}
.yd2{bottom:229.466467pt;}
.y13d{bottom:238.400000pt;}
.yf5{bottom:240.800000pt;}
.yf4{bottom:240.800133pt;}
.y5a{bottom:240.934453pt;}
.y87{bottom:242.266667pt;}
.y86{bottom:242.267133pt;}
.y32{bottom:243.200560pt;}
.yd4{bottom:243.466667pt;}
.yd1{bottom:243.866667pt;}
.y13c{bottom:248.533333pt;}
.yf2{bottom:254.933133pt;}
.yf3{bottom:254.933333pt;}
.y59{bottom:255.334653pt;}
.y85{bottom:256.133333pt;}
.y84{bottom:256.133893pt;}
.y166{bottom:257.066667pt;}
.y31{bottom:257.466667pt;}
.y30{bottom:257.467360pt;}
.y13b{bottom:262.933333pt;}
.yac{bottom:264.800000pt;}
.yad{bottom:268.133333pt;}
.yf1{bottom:269.333333pt;}
.y58{bottom:269.600760pt;}
.y83{bottom:270.400000pt;}
.y82{bottom:270.400560pt;}
.yd0{bottom:271.333333pt;}
.y2f{bottom:271.733467pt;}
.y13a{bottom:277.733333pt;}
.y139{bottom:277.733387pt;}
.yf0{bottom:283.733333pt;}
.y81{bottom:284.666667pt;}
.y80{bottom:284.667360pt;}
.y165{bottom:284.933333pt;}
.y2d{bottom:285.866373pt;}
.y2e{bottom:285.866667pt;}
.y138{bottom:288.133333pt;}
.y137{bottom:288.133480pt;}
.y57{bottom:290.400653pt;}
.yef{bottom:298.133333pt;}
.yee{bottom:298.133787pt;}
.y135{bottom:298.932853pt;}
.y136{bottom:298.933333pt;}
.y7f{bottom:298.933467pt;}
.y2c{bottom:299.866667pt;}
.y2b{bottom:299.867120pt;}
.y56{bottom:305.066667pt;}
.y134{bottom:308.932893pt;}
.y7e{bottom:313.066667pt;}
.yed{bottom:313.066800pt;}
.y7d{bottom:313.068413pt;}
.y55{bottom:319.733333pt;}
.y101{bottom:320.267280pt;}
.y2a{bottom:321.733827pt;}
.y133{bottom:324.000000pt;}
.y132{bottom:324.000053pt;}
.yab{bottom:324.266667pt;}
.yec{bottom:327.200000pt;}
.y7c{bottom:327.334520pt;}
.ycf{bottom:327.866853pt;}
.y54{bottom:333.867227pt;}
.y131{bottom:334.400000pt;}
.y29{bottom:335.734120pt;}
.yeb{bottom:341.866667pt;}
.y130{bottom:344.800000pt;}
.y53{bottom:348.133333pt;}
.y52{bottom:348.134120pt;}
.y7b{bottom:348.267320pt;}
.y28{bottom:350.267227pt;}
.ya9{bottom:354.533560pt;}
.y12f{bottom:356.000000pt;}
.y12e{bottom:356.000373pt;}
.y51{bottom:362.400227pt;}
.y7a{bottom:362.933333pt;}
.y79{bottom:362.933560pt;}
.y27{bottom:364.533333pt;}
.y26{bottom:364.534027pt;}
.yea{bottom:365.866667pt;}
.y12d{bottom:366.133320pt;}
.ya8{bottom:369.066667pt;}
.ya7{bottom:369.067320pt;}
.y50{bottom:376.933333pt;}
.y4f{bottom:376.933467pt;}
.y78{bottom:377.466667pt;}
.y25{bottom:378.667227pt;}
.y12c{bottom:381.333333pt;}
.ya5{bottom:383.733267pt;}
.ya6{bottom:383.733333pt;}
.y4e{bottom:391.066667pt;}
.y4d{bottom:391.067173pt;}
.y12b{bottom:391.466667pt;}
.y77{bottom:391.733333pt;}
.y76{bottom:391.733560pt;}
.y24{bottom:392.933333pt;}
.y23{bottom:392.934520pt;}
.ya4{bottom:397.866467pt;}
.yce{bottom:399.866667pt;}
.y12a{bottom:402.266667pt;}
.y129{bottom:402.266853pt;}
.y75{bottom:406.266667pt;}
.ye8{bottom:410.132840pt;}
.ye9{bottom:410.133333pt;}
.ya3{bottom:412.266667pt;}
.ya2{bottom:412.267227pt;}
.y128{bottom:412.933800pt;}
.ycc{bottom:413.866560pt;}
.ycd{bottom:413.866667pt;}
.y22{bottom:414.267227pt;}
.ye7{bottom:424.533040pt;}
.ya1{bottom:426.533333pt;}
.y125{bottom:426.933333pt;}
.y21{bottom:428.533333pt;}
.y20{bottom:428.533467pt;}
.yca{bottom:428.666373pt;}
.ycb{bottom:428.666667pt;}
.yaa{bottom:433.066667pt;}
.y124{bottom:437.466387pt;}
.ye6{bottom:438.533333pt;}
.y74{bottom:440.133333pt;}
.ya0{bottom:440.800000pt;}
.y9f{bottom:440.800200pt;}
.y15e{bottom:442.266667pt;}
.yc9{bottom:442.666467pt;}
.y1f{bottom:442.666667pt;}
.y123{bottom:448.133333pt;}
.y4c{bottom:454.266667pt;}
.y1d{bottom:456.932947pt;}
.y1e{bottom:456.933333pt;}
.yc8{bottom:457.066667pt;}
.ye5{bottom:461.600000pt;}
.y127{bottom:462.400000pt;}
.y4b{bottom:467.866667pt;}
.y4a{bottom:467.867360pt;}
.yc7{bottom:470.400000pt;}
.yc6{bottom:470.400213pt;}
.y1c{bottom:470.533333pt;}
.y1b{bottom:470.533693pt;}
.y122{bottom:473.066667pt;}
.y121{bottom:473.066853pt;}
.y49{bottom:482.133467pt;}
.y73{bottom:482.266840pt;}
.y120{bottom:482.933987pt;}
.y1a{bottom:484.799800pt;}
.yc5{bottom:484.933320pt;}
.y164{bottom:485.733333pt;}
.y48{bottom:496.266667pt;}
.y11f{bottom:497.600000pt;}
.y19{bottom:499.200000pt;}
.y163{bottom:502.666667pt;}
.y11e{bottom:508.266667pt;}
.y11d{bottom:508.267280pt;}
.ye4{bottom:509.866667pt;}
.ye3{bottom:509.866747pt;}
.y161{bottom:511.466667pt;}
.yc4{bottom:512.000000pt;}
.y162{bottom:516.266667pt;}
.y47{bottom:517.600000pt;}
.y160{bottom:519.866667pt;}
.y126{bottom:521.866667pt;}
.y18{bottom:522.400000pt;}
.y9e{bottom:531.200467pt;}
.y11c{bottom:532.933333pt;}
.y11b{bottom:532.933347pt;}
.y46{bottom:540.800000pt;}
.yc3{bottom:541.466667pt;}
.y11a{bottom:543.466200pt;}
.y9d{bottom:545.066667pt;}
.y119{bottom:553.333333pt;}
.y72{bottom:557.600000pt;}
.y71{bottom:557.600560pt;}
.y9c{bottom:559.333333pt;}
.y9b{bottom:559.333653pt;}
.y16{bottom:565.866373pt;}
.y17{bottom:565.866667pt;}
.yc2{bottom:570.933333pt;}
.yc1{bottom:570.933853pt;}
.y70{bottom:571.866667pt;}
.y118{bottom:577.066667pt;}
.y15{bottom:579.866667pt;}
.ye2{bottom:582.266467pt;}
.y9a{bottom:586.133333pt;}
.y45{bottom:586.666667pt;}
.y44{bottom:586.666893pt;}
.y15f{bottom:589.733333pt;}
.y14{bottom:594.133333pt;}
.y13{bottom:594.133467pt;}
.yc0{bottom:595.200000pt;}
.y6f{bottom:595.466667pt;}
.ye1{bottom:596.666667pt;}
.ye0{bottom:596.666760pt;}
.y12{bottom:608.266667pt;}
.y11{bottom:608.269493pt;}
.ybf{bottom:609.600000pt;}
.ybe{bottom:609.600453pt;}
.y6e{bottom:610.533333pt;}
.y117{bottom:614.400000pt;}
.y116{bottom:614.401947pt;}
.y6d{bottom:616.533333pt;}
.y43{bottom:621.332987pt;}
.y10{bottom:622.935507pt;}
.y42{bottom:624.933333pt;}
.y115{bottom:628.668053pt;}
.yf{bottom:636.935800pt;}
.y40{bottom:638.533333pt;}
.y41{bottom:641.733333pt;}
.y6c{bottom:647.066667pt;}
.ye{bottom:651.201907pt;}
.y6b{bottom:661.333333pt;}
.y6a{bottom:661.334027pt;}
.y15d{bottom:663.067227pt;}
.y114{bottom:664.135147pt;}
.yd{bottom:665.735013pt;}
.yde{bottom:668.266413pt;}
.ydf{bottom:668.266667pt;}
.y69{bottom:675.867133pt;}
.y15c{bottom:677.333333pt;}
.y15b{bottom:677.333587pt;}
.y113{bottom:678.401253pt;}
.yc{bottom:680.001120pt;}
.ybd{bottom:686.133333pt;}
.ybc{bottom:686.133747pt;}
.y68{bottom:689.733333pt;}
.y112{bottom:692.667360pt;}
.yb{bottom:694.267227pt;}
.ydd{bottom:695.733000pt;}
.y15a{bottom:697.066667pt;}
.y3f{bottom:701.333333pt;}
.y111{bottom:707.200467pt;}
.ya{bottom:708.533333pt;}
.y158{bottom:709.733333pt;}
.y67{bottom:711.333333pt;}
.y159{bottom:714.266667pt;}
.y99{bottom:717.866667pt;}
.y157{bottom:718.666667pt;}
.ydc{bottom:719.733333pt;}
.y3e{bottom:720.267320pt;}
.y110{bottom:721.066667pt;}
.y10f{bottom:721.067027pt;}
.y9{bottom:732.533333pt;}
.y155{bottom:733.333307pt;}
.y156{bottom:733.333333pt;}
.y3c{bottom:734.933267pt;}
.y3d{bottom:734.933333pt;}
.y10e{bottom:735.467227pt;}
.y66{bottom:749.333333pt;}
.y10d{bottom:749.733333pt;}
.y154{bottom:751.866667pt;}
.ybb{bottom:767.066787pt;}
.y151{bottom:770.533333pt;}
.y10c{bottom:772.266667pt;}
.y8{bottom:776.666867pt;}
.y153{bottom:781.733333pt;}
.yb9{bottom:784.533133pt;}
.yba{bottom:784.533333pt;}
.y152{bottom:789.466667pt;}
.y7{bottom:790.533067pt;}
.y10b{bottom:795.467587pt;}
.y150{bottom:796.666667pt;}
.yb8{bottom:798.933333pt;}
.yb7{bottom:798.933427pt;}
.y6{bottom:804.933267pt;}
.y10a{bottom:809.867787pt;}
.yb6{bottom:813.333627pt;}
.y5{bottom:819.466373pt;}
.y14f{bottom:823.333333pt;}
.y109{bottom:824.133893pt;}
.y98{bottom:828.933893pt;}
.y4{bottom:833.466667pt;}
.y108{bottom:838.400000pt;}
.y107{bottom:838.400787pt;}
.y97{bottom:843.200000pt;}
.y96{bottom:843.200227pt;}
.y14e{bottom:847.866533pt;}
.y106{bottom:852.933893pt;}
.y94{bottom:857.733133pt;}
.y95{bottom:857.733333pt;}
.y14d{bottom:858.533480pt;}
.y3{bottom:864.000000pt;}
.y105{bottom:867.200000pt;}
.y14c{bottom:869.333333pt;}
.yb5{bottom:870.533333pt;}
.y93{bottom:872.133333pt;}
.y92{bottom:872.134453pt;}
.yb4{bottom:880.133333pt;}
.y104{bottom:881.067227pt;}
.y14b{bottom:883.200000pt;}
.y14a{bottom:883.200480pt;}
.y91{bottom:886.400560pt;}
.y65{bottom:886.666667pt;}
.y64{bottom:886.667227pt;}
.yda{bottom:891.866373pt;}
.ydb{bottom:891.866667pt;}
.y149{bottom:893.733333pt;}
.y2{bottom:894.266667pt;}
.y103{bottom:895.333333pt;}
.yb3{bottom:899.066667pt;}
.y90{bottom:900.666667pt;}
.y8f{bottom:900.667667pt;}
.y63{bottom:900.933333pt;}
.yd9{bottom:905.866667pt;}
.yd8{bottom:905.866933pt;}
.y1{bottom:955.200000pt;}
.h27{height:14.462500pt;}
.h51{height:19.468750pt;}
.h28{height:21.137500pt;}
.h22{height:22.806250pt;}
.h24{height:25.031250pt;}
.h26{height:30.593750pt;}
.h46{height:31.150000pt;}
.h25{height:32.262500pt;}
.h5f{height:33.375000pt;}
.h75{height:35.533333pt;}
.h4d{height:35.600000pt;}
.h70{height:36.117188pt;}
.h23{height:36.712500pt;}
.h5e{height:38.162500pt;}
.h60{height:38.191927pt;}
.he{height:38.210938pt;}
.h56{height:38.715104pt;}
.h55{height:39.238281pt;}
.h34{height:39.257812pt;}
.h66{height:39.761458pt;}
.h33{height:39.775000pt;}
.h37{height:40.312500pt;}
.h6{height:40.606250pt;}
.h54{height:40.807812pt;}
.h3{height:41.162500pt;}
.h4a{height:41.330990pt;}
.h5{height:41.718750pt;}
.h52{height:41.854167pt;}
.h42{height:41.925000pt;}
.h2{height:42.275000pt;}
.h44{height:42.377344pt;}
.h6c{height:42.398437pt;}
.h6d{height:43.000000pt;}
.h47{height:43.423698pt;}
.h10{height:43.445313pt;}
.h3b{height:43.946875pt;}
.h6b{height:43.968750pt;}
.h2d{height:44.470052pt;}
.h19{height:44.500000pt;}
.h3f{height:44.993229pt;}
.h1b{height:45.015625pt;}
.h48{height:45.056250pt;}
.h31{height:46.039583pt;}
.h1a{height:46.062500pt;}
.h57{height:46.168750pt;}
.h2b{height:46.562760pt;}
.h12{height:46.585938pt;}
.h5a{height:46.725000pt;}
.h2f{height:47.085938pt;}
.h14{height:47.109375pt;}
.h45{height:47.281250pt;}
.h1f{height:47.300000pt;}
.h16{height:47.609115pt;}
.h1c{height:47.632812pt;}
.h61{height:47.837500pt;}
.h38{height:48.375000pt;}
.h15{height:48.655469pt;}
.h17{height:48.679688pt;}
.h7d{height:48.694014pt;}
.h7b{height:48.858333pt;}
.h39{height:48.912500pt;}
.h6e{height:48.950000pt;}
.h30{height:49.178646pt;}
.h1d{height:49.203125pt;}
.h43{height:49.506250pt;}
.h58{height:49.701823pt;}
.h65{height:49.726562pt;}
.h2c{height:49.987500pt;}
.h64{height:50.225000pt;}
.h63{height:50.250000pt;}
.h6a{height:50.525000pt;}
.h7c{height:51.062500pt;}
.h5b{height:52.675000pt;}
.h3c{height:52.744792pt;}
.h59{height:52.840885pt;}
.h5c{height:53.887240pt;}
.h3a{height:54.287500pt;}
.h41{height:54.410417pt;}
.h11{height:54.960938pt;}
.h3e{height:54.965625pt;}
.hf{height:55.484375pt;}
.h5d{height:56.181250pt;}
.hd{height:56.531250pt;}
.hb{height:57.054688pt;}
.h40{height:57.549479pt;}
.hc{height:57.578125pt;}
.h18{height:58.587500pt;}
.h13{height:59.125000pt;}
.h62{height:59.662500pt;}
.h4{height:60.075000pt;}
.h50{height:60.631250pt;}
.h69{height:60.737500pt;}
.h1e{height:61.743750pt;}
.h49{height:64.500000pt;}
.h2e{height:64.525000pt;}
.h3d{height:65.429688pt;}
.h7{height:67.187500pt;}
.h76{height:67.306250pt;}
.h6f{height:67.523438pt;}
.h8{height:68.800000pt;}
.ha{height:70.412500pt;}
.h20{height:72.312500pt;}
.h32{height:73.952344pt;}
.h78{height:83.226562pt;}
.h21{height:86.721094pt;}
.h74{height:89.000000pt;}
.h9{height:99.568750pt;}
.h2a{height:101.961968pt;}
.h73{height:109.088342pt;}
.h71{height:109.112500pt;}
.h77{height:110.137500pt;}
.h7a{height:114.570168pt;}
.h72{height:117.175000pt;}
.h29{height:117.368750pt;}
.h79{height:123.963281pt;}
.h4b{height:154.039317pt;}
.h4c{height:164.093750pt;}
.h53{height:182.450000pt;}
.h67{height:1056.479000pt;}
.h68{height:1056.666667pt;}
.h35{height:1059.199213pt;}
.h36{height:1059.333333pt;}
.h4e{height:1059.839360pt;}
.h4f{height:1060.000000pt;}
.h0{height:1061.919440pt;}
.h1{height:1062.000000pt;}
.w6{width:817.119147pt;}
.w7{width:817.333333pt;}
.w3{width:820.000000pt;}
.w2{width:820.319827pt;}
.w4{width:821.279293pt;}
.w5{width:821.333333pt;}
.w1{width:825.333333pt;}
.w0{width:825.439453pt;}
.x0{left:0.000000pt;}
.xee{left:88.533333pt;}
.xf4{left:89.466987pt;}
.xf6{left:93.333333pt;}
.x6b{left:95.066667pt;}
.x73{left:96.134720pt;}
.x6d{left:100.000000pt;}
.xf3{left:104.532587pt;}
.xca{left:110.533227pt;}
.xc0{left:111.466560pt;}
.xba{left:112.801173pt;}
.x6f{left:113.733333pt;}
.x70{left:118.400000pt;}
.x2a{left:119.732480pt;}
.x1d{left:120.800000pt;}
.xf9{left:123.333333pt;}
.x76{left:124.266667pt;}
.x29{left:125.866667pt;}
.xf8{left:127.066667pt;}
.xcb{left:128.933333pt;}
.x81{left:130.266667pt;}
.x71{left:134.133333pt;}
.x31{left:135.866667pt;}
.x77{left:137.866667pt;}
.xf5{left:140.266667pt;}
.x82{left:142.133333pt;}
.x3b{left:144.133333pt;}
.x6e{left:146.266667pt;}
.xef{left:147.466667pt;}
.x78{left:152.000000pt;}
.xc6{left:153.733333pt;}
.xb8{left:155.200000pt;}
.x32{left:157.733333pt;}
.xc8{left:160.533333pt;}
.xbc{left:161.866667pt;}
.x3c{left:162.933333pt;}
.x8a{left:165.066667pt;}
.xc4{left:166.666667pt;}
.x3e{left:169.866667pt;}
.x84{left:172.000000pt;}
.x74{left:174.000000pt;}
.xff{left:176.533333pt;}
.x85{left:179.466667pt;}
.xb9{left:182.666667pt;}
.x8f{left:184.533333pt;}
.x33{left:185.466667pt;}
.x9{left:187.200000pt;}
.xf1{left:188.666667pt;}
.xc9{left:191.866667pt;}
.x1{left:193.066667pt;}
.xb1{left:194.933333pt;}
.x18{left:196.666667pt;}
.x34{left:198.666667pt;}
.xf2{left:199.733333pt;}
.x1a{left:200.800320pt;}
.x72{left:201.733333pt;}
.xa{left:202.933333pt;}
.x23{left:203.866667pt;}
.xbf{left:206.533333pt;}
.x90{left:208.000000pt;}
.x20{left:209.600000pt;}
.xbd{left:211.333547pt;}
.x39{left:213.600000pt;}
.x2f{left:215.733333pt;}
.x8e{left:217.066667pt;}
.xc2{left:218.266667pt;}
.x27{left:219.200000pt;}
.xf0{left:220.933333pt;}
.x2{left:224.000000pt;}
.xc7{left:225.333333pt;}
.x79{left:226.533333pt;}
.xb2{left:227.466667pt;}
.xb5{left:229.066667pt;}
.xcd{left:230.133333pt;}
.x21{left:231.200000pt;}
.x25{left:233.866667pt;}
.x28{left:236.666667pt;}
.xbb{left:239.733333pt;}
.x1c{left:240.800000pt;}
.xf{left:241.733333pt;}
.x26{left:243.200000pt;}
.x8b{left:244.800000pt;}
.x30{left:246.133333pt;}
.x3{left:248.000000pt;}
.xb3{left:252.133333pt;}
.x4{left:254.400000pt;}
.xfe{left:255.733333pt;}
.x91{left:256.800000pt;}
.x3a{left:259.866667pt;}
.xce{left:262.666667pt;}
.x8c{left:264.266667pt;}
.x19{left:267.200427pt;}
.x86{left:268.266667pt;}
.x7d{left:274.266667pt;}
.x35{left:275.200000pt;}
.xb4{left:277.200000pt;}
.x5{left:278.400000pt;}
.x100{left:280.000000pt;}
.x10{left:281.866667pt;}
.xbe{left:282.933333pt;}
.x2b{left:286.133333pt;}
.x37{left:288.533333pt;}
.x36{left:290.933333pt;}
.x7e{left:294.133333pt;}
.xfd{left:297.733333pt;}
.x11{left:299.466667pt;}
.xf7{left:302.400000pt;}
.xcc{left:303.600000pt;}
.x101{left:308.000000pt;}
.x38{left:310.400000pt;}
.x83{left:313.866667pt;}
.x87{left:314.933333pt;}
.x1b{left:318.665173pt;}
.xfb{left:321.066667pt;}
.xc3{left:323.333333pt;}
.xfa{left:326.666667pt;}
.x6c{left:329.200000pt;}
.xb{left:332.666667pt;}
.x24{left:333.600000pt;}
.x7f{left:335.733333pt;}
.x1e{left:343.066667pt;}
.xfc{left:345.866667pt;}
.x88{left:347.466667pt;}
.x7c{left:349.333333pt;}
.x2c{left:350.400000pt;}
.x8d{left:353.600000pt;}
.x80{left:355.466667pt;}
.x7a{left:358.400000pt;}
.x89{left:360.800000pt;}
.xc{left:362.933333pt;}
.xb6{left:366.933333pt;}
.xc5{left:368.800000pt;}
.x12{left:370.266667pt;}
.x2d{left:373.866667pt;}
.x75{left:375.466667pt;}
.x7b{left:377.866667pt;}
.xc1{left:384.133333pt;}
.xb0{left:385.066667pt;}
.x2e{left:386.533333pt;}
.x22{left:388.000000pt;}
.xb7{left:391.333333pt;}
.x1f{left:395.466667pt;}
.x3d{left:400.000000pt;}
.x105{left:402.933333pt;}
.xed{left:405.332907pt;}
.x92{left:408.533120pt;}
.x6a{left:409.733333pt;}
.x106{left:413.333333pt;}
.x10f{left:414.666773pt;}
.x114{left:415.733333pt;}
.x13{left:417.466667pt;}
.x9b{left:418.400000pt;}
.x113{left:421.866667pt;}
.x107{left:426.266667pt;}
.x102{left:427.200000pt;}
.x117{left:428.266347pt;}
.xdf{left:429.733333pt;}
.xcf{left:430.665707pt;}
.x109{left:432.533333pt;}
.x57{left:433.866560pt;}
.x3f{left:434.935040pt;}
.xa5{left:436.933333pt;}
.x10a{left:439.333333pt;}
.x103{left:441.466667pt;}
.x9e{left:444.933333pt;}
.x9f{left:446.000000pt;}
.x9a{left:447.733333pt;}
.xe0{left:450.000000pt;}
.x52{left:451.332693pt;}
.x9c{left:452.800000pt;}
.xd9{left:454.133333pt;}
.x63{left:455.333333pt;}
.xe6{left:458.000000pt;}
.x96{left:458.933333pt;}
.xd4{left:460.666667pt;}
.x14{left:462.666667pt;}
.x53{left:463.733333pt;}
.x5b{left:466.133333pt;}
.xe7{left:469.066667pt;}
.x64{left:472.000000pt;}
.x15{left:474.000000pt;}
.x5c{left:475.066667pt;}
.xa0{left:476.000000pt;}
.xda{left:476.933333pt;}
.x42{left:479.066667pt;}
.x54{left:481.466667pt;}
.x66{left:483.466667pt;}
.x9d{left:485.600000pt;}
.x43{left:487.333333pt;}
.xa1{left:489.200000pt;}
.x10e{left:491.466667pt;}
.x112{left:497.066667pt;}
.x16{left:498.000000pt;}
.x44{left:501.600000pt;}
.xe9{left:502.666667pt;}
.xd{left:504.000000pt;}
.xe8{left:505.066667pt;}
.xd5{left:506.533333pt;}
.xac{left:508.666667pt;}
.x51{left:510.399467pt;}
.xdc{left:511.333333pt;}
.x6{left:512.800000pt;}
.xad{left:517.600000pt;}
.x97{left:518.666667pt;}
.xa2{left:519.866667pt;}
.x45{left:521.733333pt;}
.xe3{left:522.933333pt;}
.x46{left:525.333333pt;}
.x47{left:530.266667pt;}
.x98{left:532.666667pt;}
.xae{left:534.133333pt;}
.x10c{left:535.866667pt;}
.x93{left:538.266667pt;}
.x5f{left:539.866667pt;}
.x7{left:542.400000pt;}
.xea{left:543.866667pt;}
.xe{left:546.533333pt;}
.xaa{left:548.266667pt;}
.x94{left:549.600000pt;}
.x48{left:553.066667pt;}
.x60{left:554.533333pt;}
.x104{left:556.266667pt;}
.xd2{left:557.866667pt;}
.x108{left:560.533333pt;}
.x17{left:561.866667pt;}
.x49{left:563.866667pt;}
.xd7{left:565.466667pt;}
.xdb{left:567.866667pt;}
.x8{left:569.066667pt;}
.xab{left:570.266667pt;}
.xaf{left:571.466667pt;}
.x111{left:573.333333pt;}
.xd3{left:577.200000pt;}
.x4a{left:578.266667pt;}
.xd8{left:579.200000pt;}
.x4e{left:584.800000pt;}
.x4f{left:588.000000pt;}
.x115{left:588.933333pt;}
.x4b{left:593.866667pt;}
.xa6{left:597.333333pt;}
.xeb{left:598.400000pt;}
.x4c{left:600.000000pt;}
.xa3{left:601.733333pt;}
.x58{left:604.000000pt;}
.x116{left:607.066667pt;}
.x55{left:608.800000pt;}
.x4d{left:610.933333pt;}
.x59{left:615.733333pt;}
.xa7{left:618.933333pt;}
.x99{left:619.866667pt;}
.x10d{left:625.733333pt;}
.xd0{left:628.800000pt;}
.xe2{left:632.933333pt;}
.xa8{left:635.866667pt;}
.x56{left:636.933333pt;}
.x10b{left:638.400000pt;}
.x110{left:640.533333pt;}
.x5d{left:643.466667pt;}
.x50{left:645.866667pt;}
.x67{left:648.533333pt;}
.xa4{left:652.000000pt;}
.xec{left:656.266667pt;}
.x95{left:658.533333pt;}
.xdd{left:659.600000pt;}
.x5e{left:662.400000pt;}
.xe5{left:664.000000pt;}
.xd1{left:666.533333pt;}
.xd6{left:670.266667pt;}
.x68{left:672.000000pt;}
.x40{left:677.600000pt;}
.x61{left:684.266667pt;}
.x41{left:685.866667pt;}
.xa9{left:687.333333pt;}
.xe4{left:688.933333pt;}
.xde{left:693.600000pt;}
.xe1{left:697.600000pt;}
.x62{left:702.133333pt;}
.x69{left:708.266667pt;}
.x5a{left:710.133333pt;}
.x65{left:714.533333pt;}
}

