
    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_484b9de9b8d3e681d231ed09.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_9cffcebeb93c571b918c29fc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.020000;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_9378418ed36bd8a5850a84dc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_edfd11a5424afaa290251a46.woff')format("woff");}.ff4{font-family:ff4;line-height:1.155000;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_8125c54539a2099e66056888.woff')format("woff");}.ff5{font-family:ff5;line-height:1.022000;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_e6535fcb06078f1d40c282a0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.108000;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_36be7befa3d325aecc52251a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066000;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_9a052d4f68f48036ab0704c2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.159000;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_3601ec9291aaf9a80b6e4d91.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f78aa659b4a4ea60abc8aef7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_022fe7ec68321946268e9040.woff')format("woff");}.ffb{font-family:ffb;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8f9e8ac36d95f31cd735ae9f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_614faaa39d466a7b2d915a96.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5f9f682352536be8d74ecbed.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b9ab38c6901b5e7b10c7fe22.woff')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1f7466014d9413bb7d537dcb.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245094,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245531,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245579,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245879,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.245996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245996,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246308,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246323,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.246831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246831,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246873,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246902,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247183,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247219,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247917,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248077,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248083,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248329,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249071,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249327,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250233,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250958,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251021,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251223,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251467,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251621,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252219,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252392,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252483,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252513,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252556,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252587,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252719,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252827,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252985,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.253023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253023,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253033,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253121,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253248,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253252,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253404,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253869,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253908,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253969,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253992,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254025,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.254152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254152,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.254163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254163,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254279,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254377,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254504,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254642,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.254663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254663,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254723,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254744,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254773,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255417,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255731,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256069,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256371,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-47.936592px;}
.v6{vertical-align:-23.960592px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.979400px;}
.v4{vertical-align:23.976000px;}
.v1{vertical-align:30.000000px;}
.v2{vertical-align:60.000000px;}
.ls4b{letter-spacing:-5.616000px;}
.ls70{letter-spacing:-5.400000px;}
.ls1a{letter-spacing:-5.184000px;}
.ls30{letter-spacing:-4.248000px;}
.ls5e{letter-spacing:-4.140000px;}
.ls2b{letter-spacing:-4.104000px;}
.ls5a{letter-spacing:-4.080000px;}
.ls8b{letter-spacing:-3.780000px;}
.ls4e{letter-spacing:-3.672000px;}
.ls53{letter-spacing:-3.660000px;}
.ls90{letter-spacing:-3.540000px;}
.ls48{letter-spacing:-3.240000px;}
.ls8d{letter-spacing:-3.180000px;}
.ls77{letter-spacing:-2.952000px;}
.ls6e{letter-spacing:-2.880000px;}
.ls74{letter-spacing:-2.772000px;}
.ls8f{letter-spacing:-2.700000px;}
.ls72{letter-spacing:-2.664000px;}
.ls63{letter-spacing:-2.460000px;}
.ls60{letter-spacing:-2.400000px;}
.ls4a{letter-spacing:-2.376000px;}
.ls66{letter-spacing:-2.340000px;}
.ls86{letter-spacing:-2.280000px;}
.ls89{letter-spacing:-2.100000px;}
.ls59{letter-spacing:-2.040000px;}
.ls16{letter-spacing:-2.016000px;}
.ls61{letter-spacing:-1.980000px;}
.ls1c{letter-spacing:-1.872000px;}
.ls5f{letter-spacing:-1.860000px;}
.ls6{letter-spacing:-1.848000px;}
.ls5{letter-spacing:-1.782000px;}
.ls5b{letter-spacing:-1.740000px;}
.ls46{letter-spacing:-1.728000px;}
.ls52{letter-spacing:-1.680000px;}
.ls49{letter-spacing:-1.656000px;}
.ls5c{letter-spacing:-1.620000px;}
.ls78{letter-spacing:-1.595088px;}
.ls57{letter-spacing:-1.560000px;}
.ls2e{letter-spacing:-1.440000px;}
.ls44{letter-spacing:-1.368000px;}
.ls6f{letter-spacing:-1.301256px;}
.lsb{letter-spacing:-1.296000px;}
.ls75{letter-spacing:-1.259280px;}
.ls7{letter-spacing:-1.254000px;}
.ls1d{letter-spacing:-1.224000px;}
.ls3e{letter-spacing:-1.200000px;}
.ls76{letter-spacing:-1.175328px;}
.ls5d{letter-spacing:-1.140000px;}
.ls6d{letter-spacing:-1.133352px;}
.ls8a{letter-spacing:-1.080000px;}
.ls87{letter-spacing:-1.020000px;}
.ls18{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.990000px;}
.ls83{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.936000px;}
.ls62{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.792000px;}
.ls64{letter-spacing:-0.780000px;}
.ls7c{letter-spacing:-0.726000px;}
.ls39{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.690000px;}
.ls54{letter-spacing:-0.660000px;}
.ls0{letter-spacing:-0.648000px;}
.ls65{letter-spacing:-0.600000px;}
.ls68{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.540000px;}
.ls7a{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.504000px;}
.ls6a{letter-spacing:-0.480000px;}
.ls71{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls69{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.360000px;}
.ls73{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.324000px;}
.ls58{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.252000px;}
.ls6c{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.168000px;}
.ls33{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.216000px;}
.ls3f{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.288000px;}
.ls6b{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.504000px;}
.ls55{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.648000px;}
.ls51{letter-spacing:0.660000px;}
.ls13{letter-spacing:0.702000px;}
.ls43{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.726000px;}
.ls80{letter-spacing:0.780000px;}
.ls29{letter-spacing:0.792000px;}
.ls7e{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.864000px;}
.ls40{letter-spacing:0.936000px;}
.ls3a{letter-spacing:0.960000px;}
.ls2d{letter-spacing:1.008000px;}
.ls85{letter-spacing:1.020000px;}
.ls27{letter-spacing:1.080000px;}
.ls8e{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.152000px;}
.ls14{letter-spacing:1.188000px;}
.ls79{letter-spacing:1.224000px;}
.ls81{letter-spacing:1.320000px;}
.ls84{letter-spacing:1.380000px;}
.ls4f{letter-spacing:1.440000px;}
.ls67{letter-spacing:1.452000px;}
.ls47{letter-spacing:1.512000px;}
.ls8c{letter-spacing:1.560000px;}
.ls45{letter-spacing:1.584000px;}
.ls7f{letter-spacing:1.620000px;}
.ls25{letter-spacing:1.656000px;}
.ls2c{letter-spacing:1.728000px;}
.ls7d{letter-spacing:1.800000px;}
.ls41{letter-spacing:1.872000px;}
.ls91{letter-spacing:1.980000px;}
.ls82{letter-spacing:2.100000px;}
.ls4d{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.760000px;}
.ls42{letter-spacing:3.096000px;}
.ls34{letter-spacing:516.300000px;}
.ls35{letter-spacing:517.140000px;}
.ls32{letter-spacing:519.840000px;}
.ls36{letter-spacing:521.340000px;}
.ls31{letter-spacing:526.680000px;}
.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;}
}
.ws39{word-spacing:-72.000000px;}
.ws34{word-spacing:-15.048000px;}
.wsae{word-spacing:-14.916000px;}
.ws119{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.544000px;}
.ws111{word-spacing:-14.520000px;}
.ws24{word-spacing:-14.400000px;}
.ws1a{word-spacing:-14.256000px;}
.ws108{word-spacing:-14.220000px;}
.ws0{word-spacing:-14.190000px;}
.wsdc{word-spacing:-14.184000px;}
.ws2d{word-spacing:-14.112000px;}
.wsf6{word-spacing:-13.920000px;}
.wsf9{word-spacing:-13.740000px;}
.wsf5{word-spacing:-13.620000px;}
.ws112{word-spacing:-13.500000px;}
.wsfb{word-spacing:-13.440000px;}
.wsa3{word-spacing:-13.380000px;}
.ws5d{word-spacing:-13.320000px;}
.wsf0{word-spacing:-13.200000px;}
.ws5c{word-spacing:-13.140000px;}
.ws46{word-spacing:-13.104000px;}
.ws109{word-spacing:-13.080000px;}
.ws62{word-spacing:-12.960000px;}
.ws1{word-spacing:-12.936000px;}
.ws68{word-spacing:-12.900000px;}
.wsf1{word-spacing:-12.888000px;}
.ws107{word-spacing:-12.840000px;}
.wsfa{word-spacing:-12.780000px;}
.ws3c{word-spacing:-12.720000px;}
.ws6d{word-spacing:-12.660000px;}
.wsbb{word-spacing:-12.600000px;}
.ws86{word-spacing:-12.540000px;}
.wsf8{word-spacing:-12.480000px;}
.wsab{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.366000px;}
.wsa7{word-spacing:-12.360000px;}
.wsea{word-spacing:-12.312000px;}
.ws2{word-spacing:-12.240000px;}
.ws19{word-spacing:-12.168000px;}
.wsf4{word-spacing:-11.940000px;}
.ws11a{word-spacing:-11.700000px;}
.wseb{word-spacing:-11.592000px;}
.wsf7{word-spacing:-11.400000px;}
.ws8b{word-spacing:-11.340000px;}
.ws88{word-spacing:-11.220000px;}
.wsad{word-spacing:-10.620000px;}
.ws8e{word-spacing:-10.500000px;}
.wsd9{word-spacing:-9.024840px;}
.ws84{word-spacing:-8.880000px;}
.ws5b{word-spacing:-8.580000px;}
.wsda{word-spacing:-7.891488px;}
.wse3{word-spacing:-7.849512px;}
.wse2{word-spacing:-7.765560px;}
.wsdb{word-spacing:-7.723584px;}
.wse4{word-spacing:-7.429752px;}
.wsd5{word-spacing:-5.016000px;}
.wse{word-spacing:-4.464000px;}
.ws21{word-spacing:-3.672000px;}
.ws49{word-spacing:-3.096000px;}
.ws10e{word-spacing:-2.760000px;}
.ws17{word-spacing:-2.592000px;}
.ws121{word-spacing:-2.340000px;}
.ws5{word-spacing:-2.160000px;}
.ws100{word-spacing:-2.100000px;}
.ws48{word-spacing:-1.872000px;}
.ws122{word-spacing:-1.860000px;}
.wsef{word-spacing:-1.800000px;}
.wsd8{word-spacing:-1.740000px;}
.ws33{word-spacing:-1.728000px;}
.wsd7{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.674000px;}
.ws2a{word-spacing:-1.656000px;}
.ws4c{word-spacing:-1.584000px;}
.wsd{word-spacing:-1.560000px;}
.ws6{word-spacing:-1.512000px;}
.ws45{word-spacing:-1.500000px;}
.wsd6{word-spacing:-1.452000px;}
.ws30{word-spacing:-1.440000px;}
.ws7{word-spacing:-1.428000px;}
.ws102{word-spacing:-1.380000px;}
.ws43{word-spacing:-1.320000px;}
.ws15{word-spacing:-1.296000px;}
.wse9{word-spacing:-1.224000px;}
.ws44{word-spacing:-1.200000px;}
.ws18{word-spacing:-1.188000px;}
.ws27{word-spacing:-1.152000px;}
.wsc{word-spacing:-1.104000px;}
.ws2c{word-spacing:-1.080000px;}
.ws117{word-spacing:-1.020000px;}
.ws35{word-spacing:-1.008000px;}
.ws8f{word-spacing:-0.960000px;}
.ws47{word-spacing:-0.936000px;}
.ws42{word-spacing:-0.864000px;}
.wsf2{word-spacing:-0.840000px;}
.ws2f{word-spacing:-0.792000px;}
.wsfd{word-spacing:-0.780000px;}
.wsed{word-spacing:-0.726000px;}
.ws4a{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.648000px;}
.wsfe{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.576000px;}
.wsff{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.360000px;}
.ws10d{word-spacing:-0.300000px;}
.ws31{word-spacing:-0.288000px;}
.ws103{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.216000px;}
.ws106{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.144000px;}
.ws11d{word-spacing:-0.120000px;}
.ws29{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
.ws10f{word-spacing:0.060000px;}
.ws1c{word-spacing:0.072000px;}
.ws2b{word-spacing:0.144000px;}
.ws13{word-spacing:0.216000px;}
.ws22{word-spacing:0.288000px;}
.wse5{word-spacing:0.330000px;}
.ws12{word-spacing:0.360000px;}
.wsdf{word-spacing:0.396000px;}
.ws10c{word-spacing:0.420000px;}
.ws10{word-spacing:0.432000px;}
.wse0{word-spacing:0.462000px;}
.wsf3{word-spacing:0.480000px;}
.ws11{word-spacing:0.504000px;}
.wsec{word-spacing:0.528000px;}
.wsf{word-spacing:0.576000px;}
.ws118{word-spacing:0.660000px;}
.ws51{word-spacing:0.720000px;}
.wsee{word-spacing:0.726000px;}
.ws53{word-spacing:0.792000px;}
.ws90{word-spacing:0.900000px;}
.wse8{word-spacing:0.936000px;}
.ws101{word-spacing:0.960000px;}
.ws8{word-spacing:0.990000px;}
.ws1d{word-spacing:1.008000px;}
.ws10b{word-spacing:1.020000px;}
.ws114{word-spacing:1.080000px;}
.ws105{word-spacing:1.140000px;}
.ws4f{word-spacing:1.224000px;}
.ws4b{word-spacing:1.368000px;}
.ws36{word-spacing:1.440000px;}
.ws50{word-spacing:1.656000px;}
.ws10a{word-spacing:1.680000px;}
.ws4d{word-spacing:1.728000px;}
.ws110{word-spacing:1.740000px;}
.ws9{word-spacing:1.782000px;}
.wsa{word-spacing:1.848000px;}
.ws20{word-spacing:1.872000px;}
.ws23{word-spacing:2.016000px;}
.ws113{word-spacing:2.100000px;}
.ws104{word-spacing:2.280000px;}
.wsfc{word-spacing:2.340000px;}
.wse1{word-spacing:2.664000px;}
.ws11b{word-spacing:2.700000px;}
.wse6{word-spacing:2.772000px;}
.wsdd{word-spacing:2.880000px;}
.ws11f{word-spacing:2.940000px;}
.wse7{word-spacing:2.952000px;}
.ws120{word-spacing:3.000000px;}
.ws116{word-spacing:3.180000px;}
.ws4e{word-spacing:3.240000px;}
.ws11c{word-spacing:3.540000px;}
.ws11e{word-spacing:3.660000px;}
.ws54{word-spacing:3.672000px;}
.ws115{word-spacing:3.780000px;}
.ws32{word-spacing:4.104000px;}
.ws38{word-spacing:4.248000px;}
.ws1b{word-spacing:4.896000px;}
.ws1f{word-spacing:5.184000px;}
.wsde{word-spacing:5.400000px;}
.ws52{word-spacing:5.616000px;}
.ws96{word-spacing:58.290000px;}
.ws97{word-spacing:64.026000px;}
.wsb5{word-spacing:66.336000px;}
.wsb6{word-spacing:66.426000px;}
.wsb3{word-spacing:73.038000px;}
.wsc3{word-spacing:75.834000px;}
.wsc4{word-spacing:82.392000px;}
.ws5a{word-spacing:86.970000px;}
.wsc7{word-spacing:87.618000px;}
.ws95{word-spacing:88.278000px;}
.wsb4{word-spacing:89.190000px;}
.ws98{word-spacing:94.200000px;}
.wsbd{word-spacing:94.314000px;}
.wsbe{word-spacing:95.736000px;}
.ws94{word-spacing:96.288000px;}
.ws9e{word-spacing:97.098000px;}
.ws99{word-spacing:97.422000px;}
.wsb9{word-spacing:99.018000px;}
.wsc1{word-spacing:100.548000px;}
.wsb2{word-spacing:101.328000px;}
.ws69{word-spacing:104.976000px;}
.wsd0{word-spacing:106.044000px;}
.ws74{word-spacing:106.326000px;}
.ws93{word-spacing:107.760000px;}
.wsca{word-spacing:108.330000px;}
.wscb{word-spacing:108.516000px;}
.wsc6{word-spacing:109.536000px;}
.wsb1{word-spacing:110.280000px;}
.wscf{word-spacing:110.580000px;}
.ws59{word-spacing:110.958000px;}
.wsbf{word-spacing:111.558000px;}
.wsb0{word-spacing:113.100000px;}
.ws9a{word-spacing:114.408000px;}
.ws9b{word-spacing:114.786000px;}
.wsaf{word-spacing:115.500000px;}
.ws9f{word-spacing:116.508000px;}
.wsa0{word-spacing:117.612000px;}
.wsc5{word-spacing:117.852000px;}
.wsc0{word-spacing:117.948000px;}
.ws5e{word-spacing:118.992000px;}
.wsb7{word-spacing:119.166000px;}
.wsa8{word-spacing:119.628000px;}
.ws58{word-spacing:120.528000px;}
.ws63{word-spacing:120.588000px;}
.wsb8{word-spacing:120.948000px;}
.wsd1{word-spacing:122.088000px;}
.wsd3{word-spacing:122.580000px;}
.wsa6{word-spacing:123.204000px;}
.wscd{word-spacing:124.476000px;}
.wsa9{word-spacing:125.808000px;}
.wsa1{word-spacing:127.554000px;}
.wsa5{word-spacing:127.740000px;}
.ws6e{word-spacing:128.208000px;}
.ws89{word-spacing:130.032000px;}
.ws92{word-spacing:130.260000px;}
.ws8d{word-spacing:130.380000px;}
.wsd2{word-spacing:130.848000px;}
.ws91{word-spacing:132.660000px;}
.wsac{word-spacing:134.280000px;}
.ws9c{word-spacing:134.358000px;}
.ws57{word-spacing:135.660000px;}
.wscc{word-spacing:137.088000px;}
.wsaa{word-spacing:137.760000px;}
.ws80{word-spacing:137.790000px;}
.ws7e{word-spacing:137.988000px;}
.ws7c{word-spacing:138.096000px;}
.ws7d{word-spacing:139.938000px;}
.ws7f{word-spacing:140.460000px;}
.ws61{word-spacing:140.718000px;}
.ws81{word-spacing:140.862000px;}
.ws72{word-spacing:140.934000px;}
.wsa2{word-spacing:141.696000px;}
.ws7a{word-spacing:142.008000px;}
.ws83{word-spacing:144.762000px;}
.ws7b{word-spacing:145.356000px;}
.ws87{word-spacing:147.360000px;}
.ws8a{word-spacing:147.432000px;}
.ws76{word-spacing:147.546000px;}
.ws82{word-spacing:147.564000px;}
.wsba{word-spacing:149.886000px;}
.wsc2{word-spacing:150.210000px;}
.ws6a{word-spacing:150.426000px;}
.ws60{word-spacing:152.436000px;}
.ws79{word-spacing:152.946000px;}
.wsc8{word-spacing:154.566000px;}
.ws6b{word-spacing:155.916000px;}
.ws73{word-spacing:156.078000px;}
.ws67{word-spacing:156.348000px;}
.ws75{word-spacing:157.242000px;}
.wsd4{word-spacing:158.940000px;}
.ws77{word-spacing:159.678000px;}
.ws64{word-spacing:160.728000px;}
.ws8c{word-spacing:161.118000px;}
.ws6c{word-spacing:161.232000px;}
.ws65{word-spacing:162.300000px;}
.ws5f{word-spacing:162.396000px;}
.ws78{word-spacing:164.676000px;}
.ws6f{word-spacing:167.898000px;}
.ws66{word-spacing:168.456000px;}
.ws56{word-spacing:169.020000px;}
.ws55{word-spacing:171.420000px;}
.ws70{word-spacing:173.508000px;}
.ws71{word-spacing:179.946000px;}
.wsc9{word-spacing:274.296000px;}
.ws85{word-spacing:277.836000px;}
.ws9d{word-spacing:278.352000px;}
.wsbc{word-spacing:314.688000px;}
.wsce{word-spacing:391.362000px;}
.wsa4{word-spacing:403.896000px;}
.ws3a{word-spacing:493.722000px;}
.ws40{word-spacing:545.430000px;}
.ws3d{word-spacing:554.046000px;}
.ws3f{word-spacing:615.450000px;}
.ws3e{word-spacing:615.846000px;}
.ws41{word-spacing:623.628000px;}
.ws3b{word-spacing:678.876000px;}
._b{margin-left:-7.840800px;}
._6{margin-left:-6.696000px;}
._5{margin-left:-5.522400px;}
._7{margin-left:-4.407600px;}
._4{margin-left:-3.368400px;}
._0{margin-left:-1.857600px;}
._1{width:1.684800px;}
._2{width:2.892000px;}
._3{width:4.009800px;}
._8{width:5.798400px;}
._9{width:7.217400px;}
._e{width:8.971200px;}
._f{width:10.296000px;}
._c{width:11.923200px;}
._12{width:13.530000px;}
._d{width:18.612000px;}
._14{width:21.427200px;}
._10{width:26.784000px;}
._13{width:29.796000px;}
._11{width:35.961600px;}
._1d{width:87.633600px;}
._1e{width:90.775200px;}
._1f{width:92.335200px;}
._1b{width:99.274200px;}
._21{width:101.692800px;}
._20{width:105.655200px;}
._1c{width:109.914000px;}
._19{width:113.833200px;}
._23{width:155.425200px;}
._1a{width:164.340000px;}
._18{width:166.857600px;}
._17{width:169.861200px;}
._15{width:177.828000px;}
._16{width:178.860000px;}
._24{width:192.264000px;}
._a{width:205.408200px;}
._22{width:237.890400px;}
.fc5{color:rgb(79,76,77);}
.fc3{color:rgb(90,87,88);}
.fc1{color:rgb(145,143,143);}
.fc4{color:rgb(46,42,43);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:34.980000px;}
.fs9{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:35.140800px;}
.y19{bottom:35.147550px;}
.yde{bottom:87.791250px;}
.y179{bottom:91.541400px;}
.y1a2{bottom:107.746050px;}
.y1e8{bottom:108.791400px;}
.y119{bottom:111.768900px;}
.yd0{bottom:111.791250px;}
.y5b{bottom:111.791400px;}
.y14b{bottom:111.797250px;}
.y178{bottom:112.541400px;}
.y101{bottom:113.291400px;}
.y14f{bottom:114.791400px;}
.yf2{bottom:118.145700px;}
.y146{bottom:123.791250px;}
.yb3{bottom:123.791400px;}
.y1a1{bottom:128.746050px;}
.y9{bottom:129.791400px;}
.y177{bottom:133.541400px;}
.y1e1{bottom:135.041400px;}
.y118{bottom:135.776400px;}
.ycf{bottom:135.791250px;}
.y5a{bottom:135.791400px;}
.ydd{bottom:135.797250px;}
.y7c{bottom:135.809250px;}
.y100{bottom:137.291400px;}
.y1e7{bottom:140.291400px;}
.yf1{bottom:143.645700px;}
.y95{bottom:147.791250px;}
.y8{bottom:147.791400px;}
.y1e0{bottom:156.041400px;}
.y14e{bottom:156.791400px;}
.y1a0{bottom:157.246050px;}
.y13d{bottom:159.753900px;}
.y117{bottom:159.783900px;}
.ydc{bottom:159.791250px;}
.y59{bottom:159.791400px;}
.y7b{bottom:159.803250px;}
.y176{bottom:162.041400px;}
.y1e6{bottom:164.291400px;}
.y1c3{bottom:165.041400px;}
.y94{bottom:171.791250px;}
.y7{bottom:171.791400px;}
.yf0{bottom:177.395700px;}
.y14d{bottom:177.791400px;}
.y19f{bottom:178.246050px;}
.y13c{bottom:183.761400px;}
.y58{bottom:183.791400px;}
.y7a{bottom:183.797250px;}
.y125{bottom:183.797400px;}
.y1df{bottom:184.541400px;}
.yef{bottom:184.895700px;}
.y10f{bottom:185.291400px;}
.y1c2{bottom:186.041400px;}
.y1e5{bottom:188.291400px;}
.y175{bottom:190.541400px;}
.yce{bottom:195.791250px;}
.yb2{bottom:195.791400px;}
.yb1{bottom:195.797400px;}
.y93{bottom:195.815250px;}
.y14c{bottom:198.791400px;}
.y19e{bottom:199.246050px;}
.y1de{bottom:205.541400px;}
.y1c1{bottom:207.041400px;}
.y13b{bottom:207.768900px;}
.y79{bottom:207.791250px;}
.ya9{bottom:207.791400px;}
.y10e{bottom:210.791400px;}
.y174{bottom:211.541400px;}
.y1e4{bottom:212.291400px;}
.ycd{bottom:219.791250px;}
.y57{bottom:219.791400px;}
.y17{bottom:219.803400px;}
.y92{bottom:219.809250px;}
.yee{bottom:221.645700px;}
.y19d{bottom:227.746050px;}
.y13a{bottom:231.776400px;}
.y78{bottom:231.791250px;}
.ya8{bottom:231.791400px;}
.y173{bottom:232.541400px;}
.y1dd{bottom:234.041400px;}
.y1c0{bottom:235.541400px;}
.y1e3{bottom:236.291400px;}
.ycc{bottom:243.791250px;}
.y56{bottom:243.791400px;}
.y16{bottom:243.797400px;}
.y91{bottom:243.803250px;}
.y10d{bottom:244.541400px;}
.y19c{bottom:248.746050px;}
.yed{bottom:250.895700px;}
.y10c{bottom:252.041400px;}
.y172{bottom:253.541400px;}
.y1dc{bottom:255.041400px;}
.y139{bottom:255.783900px;}
.y77{bottom:255.791250px;}
.ya7{bottom:255.791400px;}
.y1bf{bottom:256.541400px;}
.y1e2{bottom:260.291400px;}
.ycb{bottom:267.791250px;}
.y55{bottom:267.791400px;}
.y90{bottom:267.797250px;}
.y19b{bottom:269.746050px;}
.y171{bottom:274.541400px;}
.y1be{bottom:277.541400px;}
.y76{bottom:279.791250px;}
.ya6{bottom:279.791400px;}
.y15{bottom:279.797400px;}
.yec{bottom:280.145700px;}
.y1db{bottom:283.541400px;}
.y10b{bottom:288.791400px;}
.y19a{bottom:290.746050px;}
.y8f{bottom:291.791250px;}
.y54{bottom:291.791400px;}
.yeb{bottom:295.145700px;}
.y170{bottom:303.041400px;}
.y75{bottom:303.791250px;}
.y14{bottom:303.791400px;}
.ydb{bottom:303.797250px;}
.y1bd{bottom:306.041400px;}
.y1da{bottom:312.041400px;}
.y8e{bottom:315.791250px;}
.y12c{bottom:315.791400px;}
.yca{bottom:315.797250px;}
.y124{bottom:315.797400px;}
.y53{bottom:315.803400px;}
.y10a{bottom:318.041400px;}
.y199{bottom:319.246050px;}
.y16f{bottom:324.041400px;}
.yea{bottom:324.395700px;}
.y1bc{bottom:327.041400px;}
.y116{bottom:327.783900px;}
.y74{bottom:327.791250px;}
.y13{bottom:327.791400px;}
.y109{bottom:333.041400px;}
.ye9{bottom:339.395700px;}
.yc9{bottom:339.791250px;}
.y123{bottom:339.791400px;}
.y8d{bottom:339.797250px;}
.y52{bottom:339.797400px;}
.y198{bottom:340.246050px;}
.y1d9{bottom:340.541400px;}
.y16e{bottom:345.041400px;}
.y108{bottom:348.041400px;}
.y73{bottom:351.791250px;}
.y12{bottom:351.791400px;}
.yda{bottom:351.797250px;}
.y1bb{bottom:355.541400px;}
.y1d8{bottom:361.541400px;}
.y8c{bottom:363.791250px;}
.y51{bottom:363.791400px;}
.y16d{bottom:366.041400px;}
.ye4{bottom:368.645700px;}
.y197{bottom:368.746050px;}
.y145{bottom:375.791250px;}
.y11{bottom:375.791400px;}
.y1ba{bottom:376.541400px;}
.y107{bottom:377.291400px;}
.y1d7{bottom:382.541400px;}
.ye3{bottom:383.645700px;}
.y72{bottom:387.791250px;}
.y50{bottom:387.791400px;}
.yd9{bottom:387.797250px;}
.y106{bottom:392.291400px;}
.y16c{bottom:394.541400px;}
.y196{bottom:397.246050px;}
.y1b9{bottom:397.541400px;}
.y8b{bottom:399.791250px;}
.y10{bottom:399.791400px;}
.y105{bottom:407.291400px;}
.y1d6{bottom:411.041400px;}
.y71{bottom:411.791250px;}
.y4f{bottom:411.791400px;}
.y36{bottom:411.803250px;}
.ye8{bottom:412.895700px;}
.y16b{bottom:415.541400px;}
.y195{bottom:418.246050px;}
.y1b8{bottom:418.541400px;}
.y8a{bottom:423.791250px;}
.yf{bottom:423.791400px;}
.ya5{bottom:423.797400px;}
.ye7{bottom:427.895700px;}
.y1d5{bottom:432.041400px;}
.y70{bottom:435.791250px;}
.y122{bottom:435.791400px;}
.y35{bottom:435.797250px;}
.y104{bottom:436.541400px;}
.y194{bottom:439.246050px;}
.y1b7{bottom:447.041400px;}
.y115{bottom:447.783900px;}
.yd8{bottom:447.791250px;}
.ye{bottom:447.791400px;}
.y89{bottom:447.797250px;}
.y103{bottom:451.541400px;}
.ye6{bottom:457.145700px;}
.y6f{bottom:459.791250px;}
.y138{bottom:459.791400px;}
.y1d4{bottom:460.541400px;}
.y16a{bottom:465.041400px;}
.y193{bottom:467.746050px;}
.y1b6{bottom:468.041400px;}
.y88{bottom:471.791250px;}
.yd{bottom:471.791400px;}
.y34{bottom:471.797250px;}
.y144{bottom:471.803250px;}
.ye5{bottom:472.145700px;}
.y102{bottom:480.791400px;}
.y1d3{bottom:481.541400px;}
.y6e{bottom:483.791250px;}
.y137{bottom:483.791400px;}
.yb0{bottom:483.815400px;}
.y192{bottom:488.746050px;}
.y169{bottom:493.541400px;}
.y33{bottom:495.791250px;}
.y4e{bottom:495.791400px;}
.y143{bottom:495.797250px;}
.yc{bottom:495.797400px;}
.y1b5{bottom:496.541400px;}
.ye2{bottom:501.395700px;}
.y1d2{bottom:502.541400px;}
.y6d{bottom:507.791250px;}
.y136{bottom:507.791400px;}
.y114{bottom:507.797400px;}
.y14a{bottom:507.803250px;}
.yaf{bottom:507.809400px;}
.y191{bottom:509.746050px;}
.y168{bottom:514.541400px;}
.y1b4{bottom:517.541400px;}
.y32{bottom:519.791250px;}
.yb{bottom:519.791400px;}
.yff{bottom:522.088650px;}
.y1d1{bottom:523.541400px;}
.y190{bottom:530.746050px;}
.y6c{bottom:531.791250px;}
.y113{bottom:531.791400px;}
.yae{bottom:531.803400px;}
.y167{bottom:535.541400px;}
.y1b3{bottom:538.541400px;}
.y31{bottom:543.791250px;}
.ya{bottom:543.791400px;}
.y121{bottom:543.797400px;}
.y149{bottom:543.803250px;}
.yfe{bottom:547.588650px;}
.y18f{bottom:551.746050px;}
.y1d0{bottom:552.041400px;}
.y6b{bottom:555.791250px;}
.y112{bottom:555.791400px;}
.yd7{bottom:555.797250px;}
.yad{bottom:555.797400px;}
.y1b2{bottom:559.541400px;}
.y166{bottom:564.041400px;}
.y30{bottom:567.791250px;}
.y4d{bottom:567.791400px;}
.y148{bottom:567.797250px;}
.ya4{bottom:567.797400px;}
.yc8{bottom:567.803250px;}
.y1cf{bottom:573.041400px;}
.y6a{bottom:579.791250px;}
.yac{bottom:579.791400px;}
.y12b{bottom:579.803400px;}
.y18e{bottom:580.246050px;}
.y1b1{bottom:580.541400px;}
.yfd{bottom:581.338650px;}
.y165{bottom:585.041400px;}
.yfc{bottom:588.838650px;}
.y2f{bottom:591.791250px;}
.y4c{bottom:591.791400px;}
.yd6{bottom:591.797250px;}
.y120{bottom:597.785400px;}
.y18d{bottom:601.246050px;}
.y1ce{bottom:601.541400px;}
.y69{bottom:603.791250px;}
.yab{bottom:603.791400px;}
.y12a{bottom:603.797400px;}
.yc7{bottom:603.803250px;}
.y135{bottom:603.815400px;}
.y164{bottom:606.041400px;}
.y1b0{bottom:609.041400px;}
.y2e{bottom:615.791250px;}
.y4b{bottom:615.791400px;}
.y18c{bottom:622.246050px;}
.y1cd{bottom:622.541400px;}
.yfb{bottom:625.588650px;}
.y68{bottom:627.791250px;}
.ya3{bottom:627.791400px;}
.yc6{bottom:627.797250px;}
.y134{bottom:627.809400px;}
.y1af{bottom:630.041400px;}
.y163{bottom:634.541400px;}
.y2d{bottom:639.791250px;}
.y4a{bottom:639.791400px;}
.yfa{bottom:640.588650px;}
.y18b{bottom:643.246050px;}
.y1ae{bottom:651.041400px;}
.y67{bottom:651.791250px;}
.ya2{bottom:651.791400px;}
.y162{bottom:663.041400px;}
.y2c{bottom:663.791250px;}
.y49{bottom:663.791400px;}
.y142{bottom:663.803250px;}
.y111{bottom:663.803400px;}
.y133{bottom:663.809400px;}
.yf9{bottom:669.838650px;}
.y18a{bottom:671.746050px;}
.y1ad{bottom:672.041400px;}
.y66{bottom:675.791250px;}
.ya1{bottom:675.791400px;}
.yc5{bottom:675.797250px;}
.y87{bottom:687.791250px;}
.y48{bottom:687.791400px;}
.y110{bottom:687.797400px;}
.y132{bottom:687.803400px;}
.y2b{bottom:687.815250px;}
.y161{bottom:691.541400px;}
.y189{bottom:692.746050px;}
.y1cc{bottom:693.041400px;}
.yf8{bottom:699.088650px;}
.y65{bottom:699.791250px;}
.ya0{bottom:699.791400px;}
.y141{bottom:699.803250px;}
.y1ac{bottom:700.541400px;}
.y6{bottom:707.689050px;}
.y86{bottom:711.791250px;}
.y47{bottom:711.791400px;}
.y131{bottom:711.797400px;}
.y2a{bottom:711.809250px;}
.y188{bottom:713.746050px;}
.y160{bottom:720.041400px;}
.y1cb{bottom:721.541400px;}
.y64{bottom:723.791250px;}
.y9f{bottom:723.791400px;}
.y140{bottom:723.797250px;}
.y11f{bottom:723.797400px;}
.yf7{bottom:728.338650px;}
.y5{bottom:728.693550px;}
.y1ab{bottom:729.041400px;}
.y187{bottom:734.746050px;}
.yc4{bottom:735.791250px;}
.y46{bottom:735.791400px;}
.y1ca{bottom:742.541400px;}
.y63{bottom:747.791250px;}
.y9e{bottom:747.791400px;}
.y15f{bottom:748.541400px;}
.y1aa{bottom:757.541400px;}
.yc3{bottom:759.791250px;}
.y45{bottom:759.791400px;}
.y147{bottom:759.803250px;}
.y186{bottom:763.246050px;}
.y4{bottom:770.693550px;}
.y1c9{bottom:771.041400px;}
.y62{bottom:771.791250px;}
.yaa{bottom:771.791400px;}
.y129{bottom:771.797400px;}
.y29{bottom:771.803250px;}
.y152{bottom:771.803400px;}
.y15e{bottom:777.041400px;}
.y44{bottom:783.791400px;}
.yc2{bottom:783.797250px;}
.yf6{bottom:783.809400px;}
.y1a9{bottom:786.041400px;}
.y185{bottom:791.746050px;}
.y1c8{bottom:792.041400px;}
.y85{bottom:795.791250px;}
.y11e{bottom:795.791400px;}
.y61{bottom:795.797250px;}
.y151{bottom:795.797400px;}
.y15d{bottom:805.541400px;}
.y3{bottom:806.393550px;}
.y1a8{bottom:807.041400px;}
.yc1{bottom:807.791250px;}
.y43{bottom:807.791400px;}
.y9d{bottom:807.797400px;}
.y28{bottom:807.803250px;}
.yf5{bottom:807.803400px;}
.y130{bottom:807.809400px;}
.y184{bottom:812.746050px;}
.y1c7{bottom:813.041400px;}
.y60{bottom:819.791250px;}
.y11d{bottom:819.791400px;}
.y84{bottom:819.797250px;}
.y13f{bottom:831.791250px;}
.y42{bottom:831.791400px;}
.y27{bottom:831.797250px;}
.yf4{bottom:831.797400px;}
.y12f{bottom:831.803400px;}
.y183{bottom:833.746050px;}
.y15c{bottom:834.041400px;}
.y1a7{bottom:835.541400px;}
.y1c6{bottom:841.541400px;}
.y2{bottom:842.093550px;}
.y83{bottom:843.791250px;}
.y11c{bottom:843.791400px;}
.yd5{bottom:843.797250px;}
.y9c{bottom:843.797400px;}
.ybb{bottom:853.895700px;}
.y26{bottom:855.791250px;}
.y41{bottom:855.791400px;}
.y12e{bottom:855.797400px;}
.y1a6{bottom:856.541400px;}
.y182{bottom:862.246050px;}
.y15b{bottom:862.541400px;}
.y82{bottom:867.791250px;}
.y9b{bottom:867.791400px;}
.y1c5{bottom:870.041400px;}
.y1{bottom:874.493550px;}
.y1a5{bottom:877.541400px;}
.yba{bottom:879.395700px;}
.y25{bottom:879.791250px;}
.ye1{bottom:879.791400px;}
.y150{bottom:879.797400px;}
.y40{bottom:879.803400px;}
.y181{bottom:890.746050px;}
.y15a{bottom:891.041400px;}
.yc0{bottom:891.791250px;}
.y128{bottom:891.791400px;}
.y81{bottom:891.803250px;}
.y1c4{bottom:898.541400px;}
.y5f{bottom:903.791250px;}
.y9a{bottom:903.791400px;}
.y24{bottom:903.797250px;}
.y3f{bottom:903.797400px;}
.y1a4{bottom:906.041400px;}
.yb9{bottom:913.145700px;}
.ybf{bottom:915.791250px;}
.y80{bottom:915.797250px;}
.y180{bottom:919.246050px;}
.y159{bottom:919.541400px;}
.y1a3{bottom:927.041400px;}
.y23{bottom:927.791250px;}
.y3e{bottom:927.791400px;}
.ye0{bottom:927.797400px;}
.y7f{bottom:939.791250px;}
.y99{bottom:939.791400px;}
.y17f{bottom:940.246050px;}
.yb8{bottom:942.395700px;}
.y158{bottom:948.041400px;}
.y11b{bottom:951.776400px;}
.y22{bottom:951.791250px;}
.y3d{bottom:951.791400px;}
.y127{bottom:951.803400px;}
.y12d{bottom:951.815400px;}
.y17e{bottom:961.246050px;}
.y7e{bottom:963.791250px;}
.y98{bottom:963.791400px;}
.yb7{bottom:971.645700px;}
.y11a{bottom:975.783900px;}
.y13e{bottom:975.791250px;}
.ydf{bottom:975.791400px;}
.y5e{bottom:975.797250px;}
.y126{bottom:975.797400px;}
.y21{bottom:975.803250px;}
.ybe{bottom:975.809250px;}
.y3c{bottom:975.809400px;}
.y157{bottom:976.541400px;}
.y17d{bottom:982.246050px;}
.yd4{bottom:986.002050px;}
.y7d{bottom:987.791250px;}
.y97{bottom:987.791400px;}
.y1ea{bottom:990.041400px;}
.y156{bottom:997.541400px;}
.y5d{bottom:999.791250px;}
.yf3{bottom:999.791400px;}
.y20{bottom:999.797250px;}
.ybd{bottom:999.803250px;}
.y3b{bottom:999.803400px;}
.yb6{bottom:1000.895700px;}
.y17c{bottom:1003.246050px;}
.yd3{bottom:1009.996050px;}
.y1e9{bottom:1011.041400px;}
.y155{bottom:1018.541400px;}
.y1f{bottom:1023.791250px;}
.y96{bottom:1023.791400px;}
.ybc{bottom:1023.797250px;}
.y3a{bottom:1023.797400px;}
.yb5{bottom:1030.145700px;}
.y17b{bottom:1031.746050px;}
.yd2{bottom:1033.996050px;}
.y154{bottom:1039.541400px;}
.y1e{bottom:1047.791250px;}
.y39{bottom:1047.791400px;}
.y1d{bottom:1057.695000px;}
.y18{bottom:1057.718550px;}
.yd1{bottom:1057.996050px;}
.yb4{bottom:1059.395700px;}
.y17a{bottom:1060.246050px;}
.y153{bottom:1060.541400px;}
.y1c{bottom:1074.192000px;}
.y1b{bottom:1090.689000px;}
.y1a{bottom:1107.186000px;}
.y37{bottom:1117.944750px;}
.y5c{bottom:1117.944900px;}
.hc{height:36.048000px;}
.h14{height:37.400616px;}
.hf{height:45.660000px;}
.h9{height:46.116000px;}
.ha{height:46.980000px;}
.h7{height:51.240000px;}
.he{height:52.200000px;}
.h16{height:53.460000px;}
.h15{height:54.792000px;}
.h13{height:56.364000px;}
.h12{height:57.420000px;}
.h5{height:58.806000px;}
.h6{height:60.030000px;}
.h17{height:61.200000px;}
.hb{height:61.632000px;}
.hd{height:62.640000px;}
.h4{height:63.924000px;}
.h8{height:64.152000px;}
.h3{height:73.080000px;}
.h10{height:81.240000px;}
.h2{height:93.960000px;}
.h11{height:111.240000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w1{width:765.000000px;}
.w0{width:765.354000px;}
.x0{left:0.000000px;}
.x38{left:73.145400px;}
.x4{left:77.022600px;}
.x1{left:78.076950px;}
.x5{left:79.104300px;}
.x21{left:86.119350px;}
.x15{left:87.367800px;}
.x10{left:88.852800px;}
.x11{left:92.377800px;}
.x20{left:96.544350px;}
.x7{left:100.827600px;}
.x6{left:101.884200px;}
.x2e{left:102.940350px;}
.x22{left:104.284350px;}
.xe{left:124.828200px;}
.x8{left:126.405600px;}
.xa{left:132.154200px;}
.x2f{left:135.280350px;}
.x23{left:136.984350px;}
.x16{left:142.912800px;}
.x2d{left:149.260350px;}
.x39{left:151.284450px;}
.xb{left:152.854200px;}
.x14{left:155.197800px;}
.x13{left:156.307800px;}
.x12{left:159.382800px;}
.x9{left:163.916100px;}
.x24{left:165.994350px;}
.x2c{left:180.109350px;}
.x36{left:194.020350px;}
.x1d{left:223.327800px;}
.xf{left:263.362800px;}
.xc{left:279.559200px;}
.x30{left:297.670350px;}
.x25{left:301.084350px;}
.xd{left:303.454200px;}
.x1f{left:304.573950px;}
.x17{left:323.617800px;}
.x31{left:351.145350px;}
.x26{left:358.849350px;}
.x1e{left:375.880050px;}
.x3{left:379.770600px;}
.x18{left:384.937800px;}
.x37{left:390.517500px;}
.x32{left:397.255350px;}
.x27{left:409.249350px;}
.x3a{left:426.019050px;}
.x2{left:433.541100px;}
.x19{left:447.937800px;}
.x33{left:454.900350px;}
.x28{left:466.279350px;}
.x1a{left:515.317800px;}
.x29{left:524.644350px;}
.x34{left:572.170350px;}
.x1b{left:579.862800px;}
.x2a{left:586.084350px;}
.x35{left:636.130350px;}
.x1c{left:638.662800px;}
.x2b{left:643.879350px;}
@media print{
.v5{vertical-align:-42.610304pt;}
.v6{vertical-align:-21.298304pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.759467pt;}
.v4{vertical-align:21.312000pt;}
.v1{vertical-align:26.666667pt;}
.v2{vertical-align:53.333333pt;}
.ls4b{letter-spacing:-4.992000pt;}
.ls70{letter-spacing:-4.800000pt;}
.ls1a{letter-spacing:-4.608000pt;}
.ls30{letter-spacing:-3.776000pt;}
.ls5e{letter-spacing:-3.680000pt;}
.ls2b{letter-spacing:-3.648000pt;}
.ls5a{letter-spacing:-3.626667pt;}
.ls8b{letter-spacing:-3.360000pt;}
.ls4e{letter-spacing:-3.264000pt;}
.ls53{letter-spacing:-3.253333pt;}
.ls90{letter-spacing:-3.146667pt;}
.ls48{letter-spacing:-2.880000pt;}
.ls8d{letter-spacing:-2.826667pt;}
.ls77{letter-spacing:-2.624000pt;}
.ls6e{letter-spacing:-2.560000pt;}
.ls74{letter-spacing:-2.464000pt;}
.ls8f{letter-spacing:-2.400000pt;}
.ls72{letter-spacing:-2.368000pt;}
.ls63{letter-spacing:-2.186667pt;}
.ls60{letter-spacing:-2.133333pt;}
.ls4a{letter-spacing:-2.112000pt;}
.ls66{letter-spacing:-2.080000pt;}
.ls86{letter-spacing:-2.026667pt;}
.ls89{letter-spacing:-1.866667pt;}
.ls59{letter-spacing:-1.813333pt;}
.ls16{letter-spacing:-1.792000pt;}
.ls61{letter-spacing:-1.760000pt;}
.ls1c{letter-spacing:-1.664000pt;}
.ls5f{letter-spacing:-1.653333pt;}
.ls6{letter-spacing:-1.642667pt;}
.ls5{letter-spacing:-1.584000pt;}
.ls5b{letter-spacing:-1.546667pt;}
.ls46{letter-spacing:-1.536000pt;}
.ls52{letter-spacing:-1.493333pt;}
.ls49{letter-spacing:-1.472000pt;}
.ls5c{letter-spacing:-1.440000pt;}
.ls78{letter-spacing:-1.417856pt;}
.ls57{letter-spacing:-1.386667pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls44{letter-spacing:-1.216000pt;}
.ls6f{letter-spacing:-1.156672pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls75{letter-spacing:-1.119360pt;}
.ls7{letter-spacing:-1.114667pt;}
.ls1d{letter-spacing:-1.088000pt;}
.ls3e{letter-spacing:-1.066667pt;}
.ls76{letter-spacing:-1.044736pt;}
.ls5d{letter-spacing:-1.013333pt;}
.ls6d{letter-spacing:-1.007424pt;}
.ls8a{letter-spacing:-0.960000pt;}
.ls87{letter-spacing:-0.906667pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.880000pt;}
.ls83{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls62{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.704000pt;}
.ls64{letter-spacing:-0.693333pt;}
.ls7c{letter-spacing:-0.645333pt;}
.ls39{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.613333pt;}
.ls54{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:-0.576000pt;}
.ls65{letter-spacing:-0.533333pt;}
.ls68{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls7a{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.448000pt;}
.ls6a{letter-spacing:-0.426667pt;}
.ls71{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls69{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls73{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls58{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.224000pt;}
.ls6c{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.149333pt;}
.ls33{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls3f{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls6b{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.448000pt;}
.ls55{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.576000pt;}
.ls51{letter-spacing:0.586667pt;}
.ls13{letter-spacing:0.624000pt;}
.ls43{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.645333pt;}
.ls80{letter-spacing:0.693333pt;}
.ls29{letter-spacing:0.704000pt;}
.ls7e{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.768000pt;}
.ls40{letter-spacing:0.832000pt;}
.ls3a{letter-spacing:0.853333pt;}
.ls2d{letter-spacing:0.896000pt;}
.ls85{letter-spacing:0.906667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls8e{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.024000pt;}
.ls14{letter-spacing:1.056000pt;}
.ls79{letter-spacing:1.088000pt;}
.ls81{letter-spacing:1.173333pt;}
.ls84{letter-spacing:1.226667pt;}
.ls4f{letter-spacing:1.280000pt;}
.ls67{letter-spacing:1.290667pt;}
.ls47{letter-spacing:1.344000pt;}
.ls8c{letter-spacing:1.386667pt;}
.ls45{letter-spacing:1.408000pt;}
.ls7f{letter-spacing:1.440000pt;}
.ls25{letter-spacing:1.472000pt;}
.ls2c{letter-spacing:1.536000pt;}
.ls7d{letter-spacing:1.600000pt;}
.ls41{letter-spacing:1.664000pt;}
.ls91{letter-spacing:1.760000pt;}
.ls82{letter-spacing:1.866667pt;}
.ls4d{letter-spacing:1.920000pt;}
.ls88{letter-spacing:2.453333pt;}
.ls42{letter-spacing:2.752000pt;}
.ls34{letter-spacing:458.933333pt;}
.ls35{letter-spacing:459.680000pt;}
.ls32{letter-spacing:462.080000pt;}
.ls36{letter-spacing:463.413333pt;}
.ls31{letter-spacing:468.160000pt;}
.ws39{word-spacing:-64.000000pt;}
.ws34{word-spacing:-13.376000pt;}
.wsae{word-spacing:-13.258667pt;}
.ws119{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.928000pt;}
.ws111{word-spacing:-12.906667pt;}
.ws24{word-spacing:-12.800000pt;}
.ws1a{word-spacing:-12.672000pt;}
.ws108{word-spacing:-12.640000pt;}
.ws0{word-spacing:-12.613333pt;}
.wsdc{word-spacing:-12.608000pt;}
.ws2d{word-spacing:-12.544000pt;}
.wsf6{word-spacing:-12.373333pt;}
.wsf9{word-spacing:-12.213333pt;}
.wsf5{word-spacing:-12.106667pt;}
.ws112{word-spacing:-12.000000pt;}
.wsfb{word-spacing:-11.946667pt;}
.wsa3{word-spacing:-11.893333pt;}
.ws5d{word-spacing:-11.840000pt;}
.wsf0{word-spacing:-11.733333pt;}
.ws5c{word-spacing:-11.680000pt;}
.ws46{word-spacing:-11.648000pt;}
.ws109{word-spacing:-11.626667pt;}
.ws62{word-spacing:-11.520000pt;}
.ws1{word-spacing:-11.498667pt;}
.ws68{word-spacing:-11.466667pt;}
.wsf1{word-spacing:-11.456000pt;}
.ws107{word-spacing:-11.413333pt;}
.wsfa{word-spacing:-11.360000pt;}
.ws3c{word-spacing:-11.306667pt;}
.ws6d{word-spacing:-11.253333pt;}
.wsbb{word-spacing:-11.200000pt;}
.ws86{word-spacing:-11.146667pt;}
.wsf8{word-spacing:-11.093333pt;}
.wsab{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.992000pt;}
.wsa7{word-spacing:-10.986667pt;}
.wsea{word-spacing:-10.944000pt;}
.ws2{word-spacing:-10.880000pt;}
.ws19{word-spacing:-10.816000pt;}
.wsf4{word-spacing:-10.613333pt;}
.ws11a{word-spacing:-10.400000pt;}
.wseb{word-spacing:-10.304000pt;}
.wsf7{word-spacing:-10.133333pt;}
.ws8b{word-spacing:-10.080000pt;}
.ws88{word-spacing:-9.973333pt;}
.wsad{word-spacing:-9.440000pt;}
.ws8e{word-spacing:-9.333333pt;}
.wsd9{word-spacing:-8.022080pt;}
.ws84{word-spacing:-7.893333pt;}
.ws5b{word-spacing:-7.626667pt;}
.wsda{word-spacing:-7.014656pt;}
.wse3{word-spacing:-6.977344pt;}
.wse2{word-spacing:-6.902720pt;}
.wsdb{word-spacing:-6.865408pt;}
.wse4{word-spacing:-6.604224pt;}
.wsd5{word-spacing:-4.458667pt;}
.wse{word-spacing:-3.968000pt;}
.ws21{word-spacing:-3.264000pt;}
.ws49{word-spacing:-2.752000pt;}
.ws10e{word-spacing:-2.453333pt;}
.ws17{word-spacing:-2.304000pt;}
.ws121{word-spacing:-2.080000pt;}
.ws5{word-spacing:-1.920000pt;}
.ws100{word-spacing:-1.866667pt;}
.ws48{word-spacing:-1.664000pt;}
.ws122{word-spacing:-1.653333pt;}
.wsef{word-spacing:-1.600000pt;}
.wsd8{word-spacing:-1.546667pt;}
.ws33{word-spacing:-1.536000pt;}
.wsd7{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.488000pt;}
.ws2a{word-spacing:-1.472000pt;}
.ws4c{word-spacing:-1.408000pt;}
.wsd{word-spacing:-1.386667pt;}
.ws6{word-spacing:-1.344000pt;}
.ws45{word-spacing:-1.333333pt;}
.wsd6{word-spacing:-1.290667pt;}
.ws30{word-spacing:-1.280000pt;}
.ws7{word-spacing:-1.269333pt;}
.ws102{word-spacing:-1.226667pt;}
.ws43{word-spacing:-1.173333pt;}
.ws15{word-spacing:-1.152000pt;}
.wse9{word-spacing:-1.088000pt;}
.ws44{word-spacing:-1.066667pt;}
.ws18{word-spacing:-1.056000pt;}
.ws27{word-spacing:-1.024000pt;}
.wsc{word-spacing:-0.981333pt;}
.ws2c{word-spacing:-0.960000pt;}
.ws117{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.896000pt;}
.ws8f{word-spacing:-0.853333pt;}
.ws47{word-spacing:-0.832000pt;}
.ws42{word-spacing:-0.768000pt;}
.wsf2{word-spacing:-0.746667pt;}
.ws2f{word-spacing:-0.704000pt;}
.wsfd{word-spacing:-0.693333pt;}
.wsed{word-spacing:-0.645333pt;}
.ws4a{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.576000pt;}
.wsfe{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.512000pt;}
.wsff{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.320000pt;}
.ws10d{word-spacing:-0.266667pt;}
.ws31{word-spacing:-0.256000pt;}
.ws103{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.192000pt;}
.ws106{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws11d{word-spacing:-0.106667pt;}
.ws29{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
.ws10f{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.064000pt;}
.ws2b{word-spacing:0.128000pt;}
.ws13{word-spacing:0.192000pt;}
.ws22{word-spacing:0.256000pt;}
.wse5{word-spacing:0.293333pt;}
.ws12{word-spacing:0.320000pt;}
.wsdf{word-spacing:0.352000pt;}
.ws10c{word-spacing:0.373333pt;}
.ws10{word-spacing:0.384000pt;}
.wse0{word-spacing:0.410667pt;}
.wsf3{word-spacing:0.426667pt;}
.ws11{word-spacing:0.448000pt;}
.wsec{word-spacing:0.469333pt;}
.wsf{word-spacing:0.512000pt;}
.ws118{word-spacing:0.586667pt;}
.ws51{word-spacing:0.640000pt;}
.wsee{word-spacing:0.645333pt;}
.ws53{word-spacing:0.704000pt;}
.ws90{word-spacing:0.800000pt;}
.wse8{word-spacing:0.832000pt;}
.ws101{word-spacing:0.853333pt;}
.ws8{word-spacing:0.880000pt;}
.ws1d{word-spacing:0.896000pt;}
.ws10b{word-spacing:0.906667pt;}
.ws114{word-spacing:0.960000pt;}
.ws105{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.088000pt;}
.ws4b{word-spacing:1.216000pt;}
.ws36{word-spacing:1.280000pt;}
.ws50{word-spacing:1.472000pt;}
.ws10a{word-spacing:1.493333pt;}
.ws4d{word-spacing:1.536000pt;}
.ws110{word-spacing:1.546667pt;}
.ws9{word-spacing:1.584000pt;}
.wsa{word-spacing:1.642667pt;}
.ws20{word-spacing:1.664000pt;}
.ws23{word-spacing:1.792000pt;}
.ws113{word-spacing:1.866667pt;}
.ws104{word-spacing:2.026667pt;}
.wsfc{word-spacing:2.080000pt;}
.wse1{word-spacing:2.368000pt;}
.ws11b{word-spacing:2.400000pt;}
.wse6{word-spacing:2.464000pt;}
.wsdd{word-spacing:2.560000pt;}
.ws11f{word-spacing:2.613333pt;}
.wse7{word-spacing:2.624000pt;}
.ws120{word-spacing:2.666667pt;}
.ws116{word-spacing:2.826667pt;}
.ws4e{word-spacing:2.880000pt;}
.ws11c{word-spacing:3.146667pt;}
.ws11e{word-spacing:3.253333pt;}
.ws54{word-spacing:3.264000pt;}
.ws115{word-spacing:3.360000pt;}
.ws32{word-spacing:3.648000pt;}
.ws38{word-spacing:3.776000pt;}
.ws1b{word-spacing:4.352000pt;}
.ws1f{word-spacing:4.608000pt;}
.wsde{word-spacing:4.800000pt;}
.ws52{word-spacing:4.992000pt;}
.ws96{word-spacing:51.813333pt;}
.ws97{word-spacing:56.912000pt;}
.wsb5{word-spacing:58.965333pt;}
.wsb6{word-spacing:59.045333pt;}
.wsb3{word-spacing:64.922667pt;}
.wsc3{word-spacing:67.408000pt;}
.wsc4{word-spacing:73.237333pt;}
.ws5a{word-spacing:77.306667pt;}
.wsc7{word-spacing:77.882667pt;}
.ws95{word-spacing:78.469333pt;}
.wsb4{word-spacing:79.280000pt;}
.ws98{word-spacing:83.733333pt;}
.wsbd{word-spacing:83.834667pt;}
.wsbe{word-spacing:85.098667pt;}
.ws94{word-spacing:85.589333pt;}
.ws9e{word-spacing:86.309333pt;}
.ws99{word-spacing:86.597333pt;}
.wsb9{word-spacing:88.016000pt;}
.wsc1{word-spacing:89.376000pt;}
.wsb2{word-spacing:90.069333pt;}
.ws69{word-spacing:93.312000pt;}
.wsd0{word-spacing:94.261333pt;}
.ws74{word-spacing:94.512000pt;}
.ws93{word-spacing:95.786667pt;}
.wsca{word-spacing:96.293333pt;}
.wscb{word-spacing:96.458667pt;}
.wsc6{word-spacing:97.365333pt;}
.wsb1{word-spacing:98.026667pt;}
.wscf{word-spacing:98.293333pt;}
.ws59{word-spacing:98.629333pt;}
.wsbf{word-spacing:99.162667pt;}
.wsb0{word-spacing:100.533333pt;}
.ws9a{word-spacing:101.696000pt;}
.ws9b{word-spacing:102.032000pt;}
.wsaf{word-spacing:102.666667pt;}
.ws9f{word-spacing:103.562667pt;}
.wsa0{word-spacing:104.544000pt;}
.wsc5{word-spacing:104.757333pt;}
.wsc0{word-spacing:104.842667pt;}
.ws5e{word-spacing:105.770667pt;}
.wsb7{word-spacing:105.925333pt;}
.wsa8{word-spacing:106.336000pt;}
.ws58{word-spacing:107.136000pt;}
.ws63{word-spacing:107.189333pt;}
.wsb8{word-spacing:107.509333pt;}
.wsd1{word-spacing:108.522667pt;}
.wsd3{word-spacing:108.960000pt;}
.wsa6{word-spacing:109.514667pt;}
.wscd{word-spacing:110.645333pt;}
.wsa9{word-spacing:111.829333pt;}
.wsa1{word-spacing:113.381333pt;}
.wsa5{word-spacing:113.546667pt;}
.ws6e{word-spacing:113.962667pt;}
.ws89{word-spacing:115.584000pt;}
.ws92{word-spacing:115.786667pt;}
.ws8d{word-spacing:115.893333pt;}
.wsd2{word-spacing:116.309333pt;}
.ws91{word-spacing:117.920000pt;}
.wsac{word-spacing:119.360000pt;}
.ws9c{word-spacing:119.429333pt;}
.ws57{word-spacing:120.586667pt;}
.wscc{word-spacing:121.856000pt;}
.wsaa{word-spacing:122.453333pt;}
.ws80{word-spacing:122.480000pt;}
.ws7e{word-spacing:122.656000pt;}
.ws7c{word-spacing:122.752000pt;}
.ws7d{word-spacing:124.389333pt;}
.ws7f{word-spacing:124.853333pt;}
.ws61{word-spacing:125.082667pt;}
.ws81{word-spacing:125.210667pt;}
.ws72{word-spacing:125.274667pt;}
.wsa2{word-spacing:125.952000pt;}
.ws7a{word-spacing:126.229333pt;}
.ws83{word-spacing:128.677333pt;}
.ws7b{word-spacing:129.205333pt;}
.ws87{word-spacing:130.986667pt;}
.ws8a{word-spacing:131.050667pt;}
.ws76{word-spacing:131.152000pt;}
.ws82{word-spacing:131.168000pt;}
.wsba{word-spacing:133.232000pt;}
.wsc2{word-spacing:133.520000pt;}
.ws6a{word-spacing:133.712000pt;}
.ws60{word-spacing:135.498667pt;}
.ws79{word-spacing:135.952000pt;}
.wsc8{word-spacing:137.392000pt;}
.ws6b{word-spacing:138.592000pt;}
.ws73{word-spacing:138.736000pt;}
.ws67{word-spacing:138.976000pt;}
.ws75{word-spacing:139.770667pt;}
.wsd4{word-spacing:141.280000pt;}
.ws77{word-spacing:141.936000pt;}
.ws64{word-spacing:142.869333pt;}
.ws8c{word-spacing:143.216000pt;}
.ws6c{word-spacing:143.317333pt;}
.ws65{word-spacing:144.266667pt;}
.ws5f{word-spacing:144.352000pt;}
.ws78{word-spacing:146.378667pt;}
.ws6f{word-spacing:149.242667pt;}
.ws66{word-spacing:149.738667pt;}
.ws56{word-spacing:150.240000pt;}
.ws55{word-spacing:152.373333pt;}
.ws70{word-spacing:154.229333pt;}
.ws71{word-spacing:159.952000pt;}
.wsc9{word-spacing:243.818667pt;}
.ws85{word-spacing:246.965333pt;}
.ws9d{word-spacing:247.424000pt;}
.wsbc{word-spacing:279.722667pt;}
.wsce{word-spacing:347.877333pt;}
.wsa4{word-spacing:359.018667pt;}
.ws3a{word-spacing:438.864000pt;}
.ws40{word-spacing:484.826667pt;}
.ws3d{word-spacing:492.485333pt;}
.ws3f{word-spacing:547.066667pt;}
.ws3e{word-spacing:547.418667pt;}
.ws41{word-spacing:554.336000pt;}
.ws3b{word-spacing:603.445333pt;}
._b{margin-left:-6.969600pt;}
._6{margin-left:-5.952000pt;}
._5{margin-left:-4.908800pt;}
._7{margin-left:-3.917867pt;}
._4{margin-left:-2.994133pt;}
._0{margin-left:-1.651200pt;}
._1{width:1.497600pt;}
._2{width:2.570667pt;}
._3{width:3.564267pt;}
._8{width:5.154133pt;}
._9{width:6.415467pt;}
._e{width:7.974400pt;}
._f{width:9.152000pt;}
._c{width:10.598400pt;}
._12{width:12.026667pt;}
._d{width:16.544000pt;}
._14{width:19.046400pt;}
._10{width:23.808000pt;}
._13{width:26.485333pt;}
._11{width:31.965867pt;}
._1d{width:77.896533pt;}
._1e{width:80.689067pt;}
._1f{width:82.075733pt;}
._1b{width:88.243733pt;}
._21{width:90.393600pt;}
._20{width:93.915733pt;}
._1c{width:97.701333pt;}
._19{width:101.185067pt;}
._23{width:138.155733pt;}
._1a{width:146.080000pt;}
._18{width:148.317867pt;}
._17{width:150.987733pt;}
._15{width:158.069333pt;}
._16{width:158.986667pt;}
._24{width:170.901333pt;}
._a{width:182.585067pt;}
._22{width:211.458133pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:31.236267pt;}
.y19{bottom:31.242267pt;}
.yde{bottom:78.036667pt;}
.y179{bottom:81.370133pt;}
.y1a2{bottom:95.774267pt;}
.y1e8{bottom:96.703467pt;}
.y119{bottom:99.350133pt;}
.yd0{bottom:99.370000pt;}
.y5b{bottom:99.370133pt;}
.y14b{bottom:99.375333pt;}
.y178{bottom:100.036800pt;}
.y101{bottom:100.703467pt;}
.y14f{bottom:102.036800pt;}
.yf2{bottom:105.018400pt;}
.y146{bottom:110.036667pt;}
.yb3{bottom:110.036800pt;}
.y1a1{bottom:114.440933pt;}
.y9{bottom:115.370133pt;}
.y177{bottom:118.703467pt;}
.y1e1{bottom:120.036800pt;}
.y118{bottom:120.690133pt;}
.ycf{bottom:120.703333pt;}
.y5a{bottom:120.703467pt;}
.ydd{bottom:120.708667pt;}
.y7c{bottom:120.719333pt;}
.y100{bottom:122.036800pt;}
.y1e7{bottom:124.703467pt;}
.yf1{bottom:127.685067pt;}
.y95{bottom:131.370000pt;}
.y8{bottom:131.370133pt;}
.y1e0{bottom:138.703467pt;}
.y14e{bottom:139.370133pt;}
.y1a0{bottom:139.774267pt;}
.y13d{bottom:142.003467pt;}
.y117{bottom:142.030133pt;}
.ydc{bottom:142.036667pt;}
.y59{bottom:142.036800pt;}
.y7b{bottom:142.047333pt;}
.y176{bottom:144.036800pt;}
.y1e6{bottom:146.036800pt;}
.y1c3{bottom:146.703467pt;}
.y94{bottom:152.703333pt;}
.y7{bottom:152.703467pt;}
.yf0{bottom:157.685067pt;}
.y14d{bottom:158.036800pt;}
.y19f{bottom:158.440933pt;}
.y13c{bottom:163.343467pt;}
.y58{bottom:163.370133pt;}
.y7a{bottom:163.375333pt;}
.y125{bottom:163.375467pt;}
.y1df{bottom:164.036800pt;}
.yef{bottom:164.351733pt;}
.y10f{bottom:164.703467pt;}
.y1c2{bottom:165.370133pt;}
.y1e5{bottom:167.370133pt;}
.y175{bottom:169.370133pt;}
.yce{bottom:174.036667pt;}
.yb2{bottom:174.036800pt;}
.yb1{bottom:174.042133pt;}
.y93{bottom:174.058000pt;}
.y14c{bottom:176.703467pt;}
.y19e{bottom:177.107600pt;}
.y1de{bottom:182.703467pt;}
.y1c1{bottom:184.036800pt;}
.y13b{bottom:184.683467pt;}
.y79{bottom:184.703333pt;}
.ya9{bottom:184.703467pt;}
.y10e{bottom:187.370133pt;}
.y174{bottom:188.036800pt;}
.y1e4{bottom:188.703467pt;}
.ycd{bottom:195.370000pt;}
.y57{bottom:195.370133pt;}
.y17{bottom:195.380800pt;}
.y92{bottom:195.386000pt;}
.yee{bottom:197.018400pt;}
.y19d{bottom:202.440933pt;}
.y13a{bottom:206.023467pt;}
.y78{bottom:206.036667pt;}
.ya8{bottom:206.036800pt;}
.y173{bottom:206.703467pt;}
.y1dd{bottom:208.036800pt;}
.y1c0{bottom:209.370133pt;}
.y1e3{bottom:210.036800pt;}
.ycc{bottom:216.703333pt;}
.y56{bottom:216.703467pt;}
.y16{bottom:216.708800pt;}
.y91{bottom:216.714000pt;}
.y10d{bottom:217.370133pt;}
.y19c{bottom:221.107600pt;}
.yed{bottom:223.018400pt;}
.y10c{bottom:224.036800pt;}
.y172{bottom:225.370133pt;}
.y1dc{bottom:226.703467pt;}
.y139{bottom:227.363467pt;}
.y77{bottom:227.370000pt;}
.ya7{bottom:227.370133pt;}
.y1bf{bottom:228.036800pt;}
.y1e2{bottom:231.370133pt;}
.ycb{bottom:238.036667pt;}
.y55{bottom:238.036800pt;}
.y90{bottom:238.042000pt;}
.y19b{bottom:239.774267pt;}
.y171{bottom:244.036800pt;}
.y1be{bottom:246.703467pt;}
.y76{bottom:248.703333pt;}
.ya6{bottom:248.703467pt;}
.y15{bottom:248.708800pt;}
.yec{bottom:249.018400pt;}
.y1db{bottom:252.036800pt;}
.y10b{bottom:256.703467pt;}
.y19a{bottom:258.440933pt;}
.y8f{bottom:259.370000pt;}
.y54{bottom:259.370133pt;}
.yeb{bottom:262.351733pt;}
.y170{bottom:269.370133pt;}
.y75{bottom:270.036667pt;}
.y14{bottom:270.036800pt;}
.ydb{bottom:270.042000pt;}
.y1bd{bottom:272.036800pt;}
.y1da{bottom:277.370133pt;}
.y8e{bottom:280.703333pt;}
.y12c{bottom:280.703467pt;}
.yca{bottom:280.708667pt;}
.y124{bottom:280.708800pt;}
.y53{bottom:280.714133pt;}
.y10a{bottom:282.703467pt;}
.y199{bottom:283.774267pt;}
.y16f{bottom:288.036800pt;}
.yea{bottom:288.351733pt;}
.y1bc{bottom:290.703467pt;}
.y116{bottom:291.363467pt;}
.y74{bottom:291.370000pt;}
.y13{bottom:291.370133pt;}
.y109{bottom:296.036800pt;}
.ye9{bottom:301.685067pt;}
.yc9{bottom:302.036667pt;}
.y123{bottom:302.036800pt;}
.y8d{bottom:302.042000pt;}
.y52{bottom:302.042133pt;}
.y198{bottom:302.440933pt;}
.y1d9{bottom:302.703467pt;}
.y16e{bottom:306.703467pt;}
.y108{bottom:309.370133pt;}
.y73{bottom:312.703333pt;}
.y12{bottom:312.703467pt;}
.yda{bottom:312.708667pt;}
.y1bb{bottom:316.036800pt;}
.y1d8{bottom:321.370133pt;}
.y8c{bottom:323.370000pt;}
.y51{bottom:323.370133pt;}
.y16d{bottom:325.370133pt;}
.ye4{bottom:327.685067pt;}
.y197{bottom:327.774267pt;}
.y145{bottom:334.036667pt;}
.y11{bottom:334.036800pt;}
.y1ba{bottom:334.703467pt;}
.y107{bottom:335.370133pt;}
.y1d7{bottom:340.036800pt;}
.ye3{bottom:341.018400pt;}
.y72{bottom:344.703333pt;}
.y50{bottom:344.703467pt;}
.yd9{bottom:344.708667pt;}
.y106{bottom:348.703467pt;}
.y16c{bottom:350.703467pt;}
.y196{bottom:353.107600pt;}
.y1b9{bottom:353.370133pt;}
.y8b{bottom:355.370000pt;}
.y10{bottom:355.370133pt;}
.y105{bottom:362.036800pt;}
.y1d6{bottom:365.370133pt;}
.y71{bottom:366.036667pt;}
.y4f{bottom:366.036800pt;}
.y36{bottom:366.047333pt;}
.ye8{bottom:367.018400pt;}
.y16b{bottom:369.370133pt;}
.y195{bottom:371.774267pt;}
.y1b8{bottom:372.036800pt;}
.y8a{bottom:376.703333pt;}
.yf{bottom:376.703467pt;}
.ya5{bottom:376.708800pt;}
.ye7{bottom:380.351733pt;}
.y1d5{bottom:384.036800pt;}
.y70{bottom:387.370000pt;}
.y122{bottom:387.370133pt;}
.y35{bottom:387.375333pt;}
.y104{bottom:388.036800pt;}
.y194{bottom:390.440933pt;}
.y1b7{bottom:397.370133pt;}
.y115{bottom:398.030133pt;}
.yd8{bottom:398.036667pt;}
.ye{bottom:398.036800pt;}
.y89{bottom:398.042000pt;}
.y103{bottom:401.370133pt;}
.ye6{bottom:406.351733pt;}
.y6f{bottom:408.703333pt;}
.y138{bottom:408.703467pt;}
.y1d4{bottom:409.370133pt;}
.y16a{bottom:413.370133pt;}
.y193{bottom:415.774267pt;}
.y1b6{bottom:416.036800pt;}
.y88{bottom:419.370000pt;}
.yd{bottom:419.370133pt;}
.y34{bottom:419.375333pt;}
.y144{bottom:419.380667pt;}
.ye5{bottom:419.685067pt;}
.y102{bottom:427.370133pt;}
.y1d3{bottom:428.036800pt;}
.y6e{bottom:430.036667pt;}
.y137{bottom:430.036800pt;}
.yb0{bottom:430.058133pt;}
.y192{bottom:434.440933pt;}
.y169{bottom:438.703467pt;}
.y33{bottom:440.703333pt;}
.y4e{bottom:440.703467pt;}
.y143{bottom:440.708667pt;}
.yc{bottom:440.708800pt;}
.y1b5{bottom:441.370133pt;}
.ye2{bottom:445.685067pt;}
.y1d2{bottom:446.703467pt;}
.y6d{bottom:451.370000pt;}
.y136{bottom:451.370133pt;}
.y114{bottom:451.375467pt;}
.y14a{bottom:451.380667pt;}
.yaf{bottom:451.386133pt;}
.y191{bottom:453.107600pt;}
.y168{bottom:457.370133pt;}
.y1b4{bottom:460.036800pt;}
.y32{bottom:462.036667pt;}
.yb{bottom:462.036800pt;}
.yff{bottom:464.078800pt;}
.y1d1{bottom:465.370133pt;}
.y190{bottom:471.774267pt;}
.y6c{bottom:472.703333pt;}
.y113{bottom:472.703467pt;}
.yae{bottom:472.714133pt;}
.y167{bottom:476.036800pt;}
.y1b3{bottom:478.703467pt;}
.y31{bottom:483.370000pt;}
.ya{bottom:483.370133pt;}
.y121{bottom:483.375467pt;}
.y149{bottom:483.380667pt;}
.yfe{bottom:486.745467pt;}
.y18f{bottom:490.440933pt;}
.y1d0{bottom:490.703467pt;}
.y6b{bottom:494.036667pt;}
.y112{bottom:494.036800pt;}
.yd7{bottom:494.042000pt;}
.yad{bottom:494.042133pt;}
.y1b2{bottom:497.370133pt;}
.y166{bottom:501.370133pt;}
.y30{bottom:504.703333pt;}
.y4d{bottom:504.703467pt;}
.y148{bottom:504.708667pt;}
.ya4{bottom:504.708800pt;}
.yc8{bottom:504.714000pt;}
.y1cf{bottom:509.370133pt;}
.y6a{bottom:515.370000pt;}
.yac{bottom:515.370133pt;}
.y12b{bottom:515.380800pt;}
.y18e{bottom:515.774267pt;}
.y1b1{bottom:516.036800pt;}
.yfd{bottom:516.745467pt;}
.y165{bottom:520.036800pt;}
.yfc{bottom:523.412133pt;}
.y2f{bottom:526.036667pt;}
.y4c{bottom:526.036800pt;}
.yd6{bottom:526.042000pt;}
.y120{bottom:531.364800pt;}
.y18d{bottom:534.440933pt;}
.y1ce{bottom:534.703467pt;}
.y69{bottom:536.703333pt;}
.yab{bottom:536.703467pt;}
.y12a{bottom:536.708800pt;}
.yc7{bottom:536.714000pt;}
.y135{bottom:536.724800pt;}
.y164{bottom:538.703467pt;}
.y1b0{bottom:541.370133pt;}
.y2e{bottom:547.370000pt;}
.y4b{bottom:547.370133pt;}
.y18c{bottom:553.107600pt;}
.y1cd{bottom:553.370133pt;}
.yfb{bottom:556.078800pt;}
.y68{bottom:558.036667pt;}
.ya3{bottom:558.036800pt;}
.yc6{bottom:558.042000pt;}
.y134{bottom:558.052800pt;}
.y1af{bottom:560.036800pt;}
.y163{bottom:564.036800pt;}
.y2d{bottom:568.703333pt;}
.y4a{bottom:568.703467pt;}
.yfa{bottom:569.412133pt;}
.y18b{bottom:571.774267pt;}
.y1ae{bottom:578.703467pt;}
.y67{bottom:579.370000pt;}
.ya2{bottom:579.370133pt;}
.y162{bottom:589.370133pt;}
.y2c{bottom:590.036667pt;}
.y49{bottom:590.036800pt;}
.y142{bottom:590.047333pt;}
.y111{bottom:590.047467pt;}
.y133{bottom:590.052800pt;}
.yf9{bottom:595.412133pt;}
.y18a{bottom:597.107600pt;}
.y1ad{bottom:597.370133pt;}
.y66{bottom:600.703333pt;}
.ya1{bottom:600.703467pt;}
.yc5{bottom:600.708667pt;}
.y87{bottom:611.370000pt;}
.y48{bottom:611.370133pt;}
.y110{bottom:611.375467pt;}
.y132{bottom:611.380800pt;}
.y2b{bottom:611.391333pt;}
.y161{bottom:614.703467pt;}
.y189{bottom:615.774267pt;}
.y1cc{bottom:616.036800pt;}
.yf8{bottom:621.412133pt;}
.y65{bottom:622.036667pt;}
.ya0{bottom:622.036800pt;}
.y141{bottom:622.047333pt;}
.y1ac{bottom:622.703467pt;}
.y6{bottom:629.056933pt;}
.y86{bottom:632.703333pt;}
.y47{bottom:632.703467pt;}
.y131{bottom:632.708800pt;}
.y2a{bottom:632.719333pt;}
.y188{bottom:634.440933pt;}
.y160{bottom:640.036800pt;}
.y1cb{bottom:641.370133pt;}
.y64{bottom:643.370000pt;}
.y9f{bottom:643.370133pt;}
.y140{bottom:643.375333pt;}
.y11f{bottom:643.375467pt;}
.yf7{bottom:647.412133pt;}
.y5{bottom:647.727600pt;}
.y1ab{bottom:648.036800pt;}
.y187{bottom:653.107600pt;}
.yc4{bottom:654.036667pt;}
.y46{bottom:654.036800pt;}
.y1ca{bottom:660.036800pt;}
.y63{bottom:664.703333pt;}
.y9e{bottom:664.703467pt;}
.y15f{bottom:665.370133pt;}
.y1aa{bottom:673.370133pt;}
.yc3{bottom:675.370000pt;}
.y45{bottom:675.370133pt;}
.y147{bottom:675.380667pt;}
.y186{bottom:678.440933pt;}
.y4{bottom:685.060933pt;}
.y1c9{bottom:685.370133pt;}
.y62{bottom:686.036667pt;}
.yaa{bottom:686.036800pt;}
.y129{bottom:686.042133pt;}
.y29{bottom:686.047333pt;}
.y152{bottom:686.047467pt;}
.y15e{bottom:690.703467pt;}
.y44{bottom:696.703467pt;}
.yc2{bottom:696.708667pt;}
.yf6{bottom:696.719467pt;}
.y1a9{bottom:698.703467pt;}
.y185{bottom:703.774267pt;}
.y1c8{bottom:704.036800pt;}
.y85{bottom:707.370000pt;}
.y11e{bottom:707.370133pt;}
.y61{bottom:707.375333pt;}
.y151{bottom:707.375467pt;}
.y15d{bottom:716.036800pt;}
.y3{bottom:716.794267pt;}
.y1a8{bottom:717.370133pt;}
.yc1{bottom:718.036667pt;}
.y43{bottom:718.036800pt;}
.y9d{bottom:718.042133pt;}
.y28{bottom:718.047333pt;}
.yf5{bottom:718.047467pt;}
.y130{bottom:718.052800pt;}
.y184{bottom:722.440933pt;}
.y1c7{bottom:722.703467pt;}
.y60{bottom:728.703333pt;}
.y11d{bottom:728.703467pt;}
.y84{bottom:728.708667pt;}
.y13f{bottom:739.370000pt;}
.y42{bottom:739.370133pt;}
.y27{bottom:739.375333pt;}
.yf4{bottom:739.375467pt;}
.y12f{bottom:739.380800pt;}
.y183{bottom:741.107600pt;}
.y15c{bottom:741.370133pt;}
.y1a7{bottom:742.703467pt;}
.y1c6{bottom:748.036800pt;}
.y2{bottom:748.527600pt;}
.y83{bottom:750.036667pt;}
.y11c{bottom:750.036800pt;}
.yd5{bottom:750.042000pt;}
.y9c{bottom:750.042133pt;}
.ybb{bottom:759.018400pt;}
.y26{bottom:760.703333pt;}
.y41{bottom:760.703467pt;}
.y12e{bottom:760.708800pt;}
.y1a6{bottom:761.370133pt;}
.y182{bottom:766.440933pt;}
.y15b{bottom:766.703467pt;}
.y82{bottom:771.370000pt;}
.y9b{bottom:771.370133pt;}
.y1c5{bottom:773.370133pt;}
.y1{bottom:777.327600pt;}
.y1a5{bottom:780.036800pt;}
.yba{bottom:781.685067pt;}
.y25{bottom:782.036667pt;}
.ye1{bottom:782.036800pt;}
.y150{bottom:782.042133pt;}
.y40{bottom:782.047467pt;}
.y181{bottom:791.774267pt;}
.y15a{bottom:792.036800pt;}
.yc0{bottom:792.703333pt;}
.y128{bottom:792.703467pt;}
.y81{bottom:792.714000pt;}
.y1c4{bottom:798.703467pt;}
.y5f{bottom:803.370000pt;}
.y9a{bottom:803.370133pt;}
.y24{bottom:803.375333pt;}
.y3f{bottom:803.375467pt;}
.y1a4{bottom:805.370133pt;}
.yb9{bottom:811.685067pt;}
.ybf{bottom:814.036667pt;}
.y80{bottom:814.042000pt;}
.y180{bottom:817.107600pt;}
.y159{bottom:817.370133pt;}
.y1a3{bottom:824.036800pt;}
.y23{bottom:824.703333pt;}
.y3e{bottom:824.703467pt;}
.ye0{bottom:824.708800pt;}
.y7f{bottom:835.370000pt;}
.y99{bottom:835.370133pt;}
.y17f{bottom:835.774267pt;}
.yb8{bottom:837.685067pt;}
.y158{bottom:842.703467pt;}
.y11b{bottom:846.023467pt;}
.y22{bottom:846.036667pt;}
.y3d{bottom:846.036800pt;}
.y127{bottom:846.047467pt;}
.y12d{bottom:846.058133pt;}
.y17e{bottom:854.440933pt;}
.y7e{bottom:856.703333pt;}
.y98{bottom:856.703467pt;}
.yb7{bottom:863.685067pt;}
.y11a{bottom:867.363467pt;}
.y13e{bottom:867.370000pt;}
.ydf{bottom:867.370133pt;}
.y5e{bottom:867.375333pt;}
.y126{bottom:867.375467pt;}
.y21{bottom:867.380667pt;}
.ybe{bottom:867.386000pt;}
.y3c{bottom:867.386133pt;}
.y157{bottom:868.036800pt;}
.y17d{bottom:873.107600pt;}
.yd4{bottom:876.446267pt;}
.y7d{bottom:878.036667pt;}
.y97{bottom:878.036800pt;}
.y1ea{bottom:880.036800pt;}
.y156{bottom:886.703467pt;}
.y5d{bottom:888.703333pt;}
.yf3{bottom:888.703467pt;}
.y20{bottom:888.708667pt;}
.ybd{bottom:888.714000pt;}
.y3b{bottom:888.714133pt;}
.yb6{bottom:889.685067pt;}
.y17c{bottom:891.774267pt;}
.yd3{bottom:897.774267pt;}
.y1e9{bottom:898.703467pt;}
.y155{bottom:905.370133pt;}
.y1f{bottom:910.036667pt;}
.y96{bottom:910.036800pt;}
.ybc{bottom:910.042000pt;}
.y3a{bottom:910.042133pt;}
.yb5{bottom:915.685067pt;}
.y17b{bottom:917.107600pt;}
.yd2{bottom:919.107600pt;}
.y154{bottom:924.036800pt;}
.y1e{bottom:931.370000pt;}
.y39{bottom:931.370133pt;}
.y1d{bottom:940.173333pt;}
.y18{bottom:940.194267pt;}
.yd1{bottom:940.440933pt;}
.yb4{bottom:941.685067pt;}
.y17a{bottom:942.440933pt;}
.y153{bottom:942.703467pt;}
.y1c{bottom:954.837333pt;}
.y1b{bottom:969.501333pt;}
.y1a{bottom:984.165333pt;}
.y37{bottom:993.728667pt;}
.y5c{bottom:993.728800pt;}
.hc{height:32.042667pt;}
.h14{height:33.244992pt;}
.hf{height:40.586667pt;}
.h9{height:40.992000pt;}
.ha{height:41.760000pt;}
.h7{height:45.546667pt;}
.he{height:46.400000pt;}
.h16{height:47.520000pt;}
.h15{height:48.704000pt;}
.h13{height:50.101333pt;}
.h12{height:51.040000pt;}
.h5{height:52.272000pt;}
.h6{height:53.360000pt;}
.h17{height:54.400000pt;}
.hb{height:54.784000pt;}
.hd{height:55.680000pt;}
.h4{height:56.821333pt;}
.h8{height:57.024000pt;}
.h3{height:64.960000pt;}
.h10{height:72.213333pt;}
.h2{height:83.520000pt;}
.h11{height:98.880000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w1{width:680.000000pt;}
.w0{width:680.314667pt;}
.x0{left:0.000000pt;}
.x38{left:65.018133pt;}
.x4{left:68.464533pt;}
.x1{left:69.401733pt;}
.x5{left:70.314933pt;}
.x21{left:76.550533pt;}
.x15{left:77.660267pt;}
.x10{left:78.980267pt;}
.x11{left:82.113600pt;}
.x20{left:85.817200pt;}
.x7{left:89.624533pt;}
.x6{left:90.563733pt;}
.x2e{left:91.502533pt;}
.x22{left:92.697200pt;}
.xe{left:110.958400pt;}
.x8{left:112.360533pt;}
.xa{left:117.470400pt;}
.x2f{left:120.249200pt;}
.x23{left:121.763867pt;}
.x16{left:127.033600pt;}
.x2d{left:132.675867pt;}
.x39{left:134.475067pt;}
.xb{left:135.870400pt;}
.x14{left:137.953600pt;}
.x13{left:138.940267pt;}
.x12{left:141.673600pt;}
.x9{left:145.703200pt;}
.x24{left:147.550533pt;}
.x2c{left:160.097200pt;}
.x36{left:172.462533pt;}
.x1d{left:198.513600pt;}
.xf{left:234.100267pt;}
.xc{left:248.497067pt;}
.x30{left:264.595867pt;}
.x25{left:267.630533pt;}
.xd{left:269.737067pt;}
.x1f{left:270.732400pt;}
.x17{left:287.660267pt;}
.x31{left:312.129200pt;}
.x26{left:318.977200pt;}
.x1e{left:334.115600pt;}
.x3{left:337.573867pt;}
.x18{left:342.166933pt;}
.x37{left:347.126667pt;}
.x32{left:353.115867pt;}
.x27{left:363.777200pt;}
.x3a{left:378.683600pt;}
.x2{left:385.369867pt;}
.x19{left:398.166933pt;}
.x33{left:404.355867pt;}
.x28{left:414.470533pt;}
.x1a{left:458.060267pt;}
.x29{left:466.350533pt;}
.x34{left:508.595867pt;}
.x1b{left:515.433600pt;}
.x2a{left:520.963867pt;}
.x35{left:565.449200pt;}
.x1c{left:567.700267pt;}
.x2b{left:572.337200pt;}
}

