
    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_3fc7f34b80d2cff1077faaeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_505639f241a7e16649629cf7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0a5d046175ca6998cc23d073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991000;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_6c07d20ad2edb394a246cd0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_25d770183a5ffdccb3b3b5bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_232763966d9a78f4cb71a751.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_901cd28a26e260b10ee22e42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_62f1d501b2113535d480e604.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_735e89bb68e5f2099cd848e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_7057e16dfd61a84b4d256629.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_3b66b1a6cd5ba55c5b1c6864.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_e9dff7fc69c3f24dbd902ad4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.127000;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_84fe5141997b07fe18039a22.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_af4e4c9cba2888d5a49e5f95.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928000;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_a27663f0b54a770a34ec55ad.woff2')format("woff");}.fff{font-family:fff;line-height:1.127000;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_d7c74069ebeda17059562935.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ad91971782c7515ce553fff7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a27663f0b54a770a34ec55ad.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.127000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_af4e4c9cba2888d5a49e5f95.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_31abb8d72409e278ccefeee5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b66d312f225dcaa42b7879ee.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b66d312f225dcaa42b7879ee.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b66d312f225dcaa42b7879ee.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b66d312f225dcaa42b7879ee.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;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:ff19;src:url('chunks/assets/font_b66d312f225dcaa42b7879ee.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.940000;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:ff1a;src:url('chunks/assets/font_7f0c0fcc725fe999cc884253.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.940000;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:ff1b;src:url('chunks/assets/font_7f0c0fcc725fe999cc884253.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7f0c0fcc725fe999cc884253.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_c9894fe8e8494d170d7362b0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_989e6e913b84dd6d69ac1544.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.984048;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;}
.m6a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{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);}
.m135{transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245418,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245892,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.245931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245931,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246564,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246634,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.246824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246824,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246871,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247033,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.247295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247295,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247326,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247621,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247802,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.med{transform:matrix(0.248119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248119,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248221,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.248576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248576,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248587,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248831,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248902,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248931,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.mc9{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.249162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249162,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249312,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249317,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m21{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.mf7{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m30{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.md4{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);}
.ma3{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.m51{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250263,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.mcc{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);}
.m52{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250326,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250363,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m105{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250539,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250774,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m13d{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m4f{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.mda{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);}
.m12a{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251066,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251079,0.000000,0.000000,0.250000,0,0);}
.m106{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);}
.me{transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251084,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251212,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251386,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251708,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251731,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251981,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);}
.mc0{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);}
.m7b{transform:matrix(0.252229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252229,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252398,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252460,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252564,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252592,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252743,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252774,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252824,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252829,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.me0{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253526,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.253598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253598,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253743,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254055,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254114,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254148,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.254268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254268,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254419,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254638,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m59{transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.257382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257382,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257719,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258264,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.258812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258812,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.259479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259479,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259671,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.259679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259679,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259681,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.260376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260376,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260595,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-63.294000px;}
.v7{vertical-align:-38.976000px;}
.v4{vertical-align:-28.812000px;}
.v9{vertical-align:-23.898000px;}
.v6{vertical-align:-13.776000px;}
.va{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.400600px;}
.v2{vertical-align:9.600000px;}
.vb{vertical-align:11.400000px;}
.v3{vertical-align:12.600000px;}
.v1{vertical-align:18.000000px;}
.ls3b{letter-spacing:-6.426000px;}
.ls3{letter-spacing:-2.856000px;}
.ls59{letter-spacing:-2.352000px;}
.ls85{letter-spacing:-1.083000px;}
.ls4f{letter-spacing:-1.008000px;}
.ls89{letter-spacing:-0.969000px;}
.ls39{letter-spacing:-0.882000px;}
.ls4d{letter-spacing:-0.819000px;}
.ls73{letter-spacing:-0.798000px;}
.ls42{letter-spacing:-0.756000px;}
.ls84{letter-spacing:-0.741000px;}
.ls50{letter-spacing:-0.693000px;}
.ls3a{letter-spacing:-0.630000px;}
.ls87{letter-spacing:-0.627000px;}
.ls83{letter-spacing:-0.570000px;}
.ls47{letter-spacing:-0.567000px;}
.ls88{letter-spacing:-0.513000px;}
.ls25{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.480000px;}
.ls8a{letter-spacing:-0.456000px;}
.ls26{letter-spacing:-0.441000px;}
.ls4{letter-spacing:-0.420000px;}
.ls4e{letter-spacing:-0.378000px;}
.ls86{letter-spacing:-0.342000px;}
.ls29{letter-spacing:-0.315000px;}
.ls8b{letter-spacing:-0.285000px;}
.ls43{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.228000px;}
.ls28{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.171000px;}
.ls27{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.114000px;}
.ls31{letter-spacing:-0.063000px;}
.lsa{letter-spacing:-0.057000px;}
.ls2{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000150px;}
.ls68{letter-spacing:0.020384px;}
.ls69{letter-spacing:0.020984px;}
.ls63{letter-spacing:0.026913px;}
.lsd{letter-spacing:0.028500px;}
.ls4c{letter-spacing:0.040774px;}
.ls62{letter-spacing:0.042000px;}
.lsb{letter-spacing:0.057000px;}
.ls7f{letter-spacing:0.059997px;}
.ls1d{letter-spacing:0.063000px;}
.ls53{letter-spacing:0.094500px;}
.ls52{letter-spacing:0.096153px;}
.lsc{letter-spacing:0.114000px;}
.ls18{letter-spacing:0.126000px;}
.ls6b{letter-spacing:0.164208px;}
.ls11{letter-spacing:0.171000px;}
.ls7d{letter-spacing:0.174524px;}
.ls7e{letter-spacing:0.175275px;}
.ls82{letter-spacing:0.185635px;}
.ls1e{letter-spacing:0.189000px;}
.ls61{letter-spacing:0.220200px;}
.ls2a{letter-spacing:0.220500px;}
.ls8{letter-spacing:0.228000px;}
.ls44{letter-spacing:0.247138px;}
.ls19{letter-spacing:0.252000px;}
.ls60{letter-spacing:0.259521px;}
.ls22{letter-spacing:0.283500px;}
.ls77{letter-spacing:0.284400px;}
.ls5{letter-spacing:0.285000px;}
.ls1c{letter-spacing:0.314400px;}
.ls1b{letter-spacing:0.315000px;}
.ls46{letter-spacing:0.340800px;}
.ls7a{letter-spacing:0.342000px;}
.ls67{letter-spacing:0.346500px;}
.ls21{letter-spacing:0.378000px;}
.ls45{letter-spacing:0.385202px;}
.ls74{letter-spacing:0.386934px;}
.ls81{letter-spacing:0.399000px;}
.ls3f{letter-spacing:0.409500px;}
.ls5c{letter-spacing:0.427200px;}
.ls66{letter-spacing:0.440400px;}
.ls17{letter-spacing:0.441000px;}
.ls78{letter-spacing:0.456000px;}
.ls6e{letter-spacing:0.497057px;}
.ls70{letter-spacing:0.500175px;}
.ls36{letter-spacing:0.503086px;}
.ls1a{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.513000px;}
.ls80{letter-spacing:0.515177px;}
.ls34{letter-spacing:0.535500px;}
.ls23{letter-spacing:0.567000px;}
.ls71{letter-spacing:0.568575px;}
.ls72{letter-spacing:0.570000px;}
.ls40{letter-spacing:0.612835px;}
.ls6f{letter-spacing:0.627000px;}
.ls16{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.684000px;}
.ls1f{letter-spacing:0.693000px;}
.ls6d{letter-spacing:0.724500px;}
.ls4a{letter-spacing:0.756000px;}
.ls14{letter-spacing:0.819000px;}
.ls5d{letter-spacing:0.844200px;}
.ls5e{letter-spacing:0.847204px;}
.ls12{letter-spacing:0.882000px;}
.ls6a{letter-spacing:0.913500px;}
.ls35{letter-spacing:0.945000px;}
.ls7b{letter-spacing:0.969000px;}
.ls65{letter-spacing:0.976500px;}
.ls20{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.071000px;}
.ls33{letter-spacing:1.134000px;}
.ls76{letter-spacing:1.167075px;}
.ls75{letter-spacing:1.168000px;}
.ls37{letter-spacing:1.197000px;}
.ls79{letter-spacing:1.254000px;}
.ls2d{letter-spacing:1.260000px;}
.ls30{letter-spacing:1.323000px;}
.ls2b{letter-spacing:1.449000px;}
.ls13{letter-spacing:1.575000px;}
.ls6c{letter-spacing:1.638000px;}
.ls2c{letter-spacing:1.701000px;}
.ls24{letter-spacing:1.764000px;}
.ls41{letter-spacing:2.395200px;}
.ls38{letter-spacing:2.930244px;}
.ls7c{letter-spacing:3.725948px;}
.ls4b{letter-spacing:4.647138px;}
.ls5f{letter-spacing:4.731467px;}
.ls57{letter-spacing:6.384000px;}
.ls58{letter-spacing:10.122000px;}
.ls55{letter-spacing:14.826000px;}
.ls1{letter-spacing:15.498000px;}
.ls56{letter-spacing:18.186000px;}
.ls32{letter-spacing:48.678000px;}
.ls0{letter-spacing:50.652000px;}
.ls54{letter-spacing:69.384000px;}
.ls3d{letter-spacing:94.122000px;}
.ls2f{letter-spacing:97.734000px;}
.ls3e{letter-spacing:98.448000px;}
.ls3c{letter-spacing:101.514000px;}
.ls49{letter-spacing:261.996000px;}
.ls48{letter-spacing:274.764000px;}
.ls51{letter-spacing:287.910000px;}
.ls5a{letter-spacing:343.980000px;}
.ls5b{letter-spacing:1461.780000px;}
.ls64{letter-spacing:1474.020000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd8{word-spacing:-1474.020000px;}
.wsbe{word-spacing:-1461.780000px;}
.wsbd{word-spacing:-343.980000px;}
.wsb0{word-spacing:-299.586000px;}
.ws9b{word-spacing:-286.440000px;}
.wsab{word-spacing:-261.996000px;}
.ws0{word-spacing:-250.236000px;}
.ws72{word-spacing:-113.190000px;}
.ws75{word-spacing:-110.124000px;}
.ws74{word-spacing:-105.798000px;}
.ws65{word-spacing:-60.354000px;}
.ws2{word-spacing:-54.000000px;}
.ws63{word-spacing:-16.758000px;}
.ws37{word-spacing:-16.632000px;}
.wsc0{word-spacing:-16.594200px;}
.ws38{word-spacing:-16.380000px;}
.ws3b{word-spacing:-16.128000px;}
.ws39{word-spacing:-16.065000px;}
.ws99{word-spacing:-15.970500px;}
.ws3a{word-spacing:-15.813000px;}
.ws62{word-spacing:-15.750000px;}
.ws98{word-spacing:-15.687000px;}
.wscf{word-spacing:-15.561000px;}
.wsea{word-spacing:-15.504000px;}
.ws8e{word-spacing:-15.498000px;}
.wsac{word-spacing:-15.435000px;}
.wsed{word-spacing:-15.219000px;}
.wsce{word-spacing:-14.994000px;}
.wsdb{word-spacing:-14.763000px;}
.wsad{word-spacing:-14.742000px;}
.wsf3{word-spacing:-14.649000px;}
.wseb{word-spacing:-14.535000px;}
.wsee{word-spacing:-14.421000px;}
.wsd9{word-spacing:-14.250000px;}
.wsc{word-spacing:-14.178000px;}
.wse7{word-spacing:-14.136000px;}
.wsf2{word-spacing:-14.022000px;}
.wse9{word-spacing:-13.908000px;}
.wsf1{word-spacing:-13.737000px;}
.wse8{word-spacing:-11.854575px;}
.ws64{word-spacing:-11.812500px;}
.ws6{word-spacing:-11.676000px;}
.wsdd{word-spacing:-11.256075px;}
.wsdc{word-spacing:-11.187675px;}
.wsbf{word-spacing:-11.025000px;}
.wsef{word-spacing:-10.862775px;}
.wsf0{word-spacing:-10.858500px;}
.wsda{word-spacing:-10.687500px;}
.ws5{word-spacing:-10.584000px;}
.wsb{word-spacing:-10.008000px;}
.wsec{word-spacing:-9.975000px;}
.ws9{word-spacing:-9.340800px;}
.ws7{word-spacing:-8.757000px;}
.wsae{word-spacing:-8.173200px;}
.ws4b{word-spacing:-7.875000px;}
.wsd4{word-spacing:-7.560000px;}
.ws103{word-spacing:-7.125000px;}
.wsf5{word-spacing:-6.156000px;}
.ws77{word-spacing:-4.032000px;}
.ws43{word-spacing:-3.969000px;}
.ws44{word-spacing:-3.906000px;}
.wsd5{word-spacing:-3.780000px;}
.wsa1{word-spacing:-3.717000px;}
.wsbb{word-spacing:-3.654000px;}
.ws11{word-spacing:-3.591000px;}
.wsf4{word-spacing:-3.534000px;}
.ws29{word-spacing:-3.477000px;}
.wsa8{word-spacing:-3.465000px;}
.wscc{word-spacing:-3.339000px;}
.ws6f{word-spacing:-3.213000px;}
.wsb7{word-spacing:-3.150000px;}
.ws101{word-spacing:-3.135000px;}
.ws8f{word-spacing:-3.087000px;}
.ws6c{word-spacing:-3.024000px;}
.ws108{word-spacing:-3.021000px;}
.ws22{word-spacing:-2.964000px;}
.wsc7{word-spacing:-2.961000px;}
.ws46{word-spacing:-2.898000px;}
.ws8a{word-spacing:-2.835000px;}
.ws96{word-spacing:-2.772000px;}
.ws27{word-spacing:-2.736000px;}
.wsaa{word-spacing:-2.709000px;}
.wse5{word-spacing:-2.679000px;}
.ws82{word-spacing:-2.646000px;}
.ws6e{word-spacing:-2.583000px;}
.ws52{word-spacing:-2.520000px;}
.wsff{word-spacing:-2.508000px;}
.ws83{word-spacing:-2.457000px;}
.ws54{word-spacing:-2.394000px;}
.wsfb{word-spacing:-2.337000px;}
.ws69{word-spacing:-2.331000px;}
.wsd6{word-spacing:-2.268000px;}
.ws31{word-spacing:-2.223000px;}
.ws48{word-spacing:-2.205000px;}
.ws17{word-spacing:-2.166000px;}
.ws89{word-spacing:-2.142000px;}
.ws21{word-spacing:-2.109000px;}
.ws61{word-spacing:-2.079000px;}
.ws70{word-spacing:-2.016000px;}
.ws10c{word-spacing:-1.995000px;}
.wsc8{word-spacing:-1.953000px;}
.ws88{word-spacing:-1.890000px;}
.wsd1{word-spacing:-1.827000px;}
.ws3c{word-spacing:-1.824000px;}
.ws42{word-spacing:-1.764000px;}
.ws24{word-spacing:-1.710000px;}
.wsa0{word-spacing:-1.701000px;}
.ws32{word-spacing:-1.653000px;}
.ws67{word-spacing:-1.638000px;}
.wsb9{word-spacing:-1.575000px;}
.ws94{word-spacing:-1.512000px;}
.ws106{word-spacing:-1.482000px;}
.ws49{word-spacing:-1.449000px;}
.wsa5{word-spacing:-1.386000px;}
.ws51{word-spacing:-1.323000px;}
.ws34{word-spacing:-1.311000px;}
.ws68{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.197000px;}
.ws18{word-spacing:-1.140000px;}
.ws58{word-spacing:-1.134000px;}
.wsa2{word-spacing:-1.071000px;}
.ws56{word-spacing:-1.008000px;}
.ws1a{word-spacing:-0.969000px;}
.ws59{word-spacing:-0.945000px;}
.ws2a{word-spacing:-0.912000px;}
.wsb5{word-spacing:-0.882000px;}
.ws8b{word-spacing:-0.819000px;}
.ws2f{word-spacing:-0.798000px;}
.ws80{word-spacing:-0.756000px;}
.wsf7{word-spacing:-0.741000px;}
.ws84{word-spacing:-0.693000px;}
.ws53{word-spacing:-0.630000px;}
.ws23{word-spacing:-0.627000px;}
.ws13{word-spacing:-0.570000px;}
.wsfa{word-spacing:-0.513000px;}
.ws91{word-spacing:-0.504000px;}
.ws4a{word-spacing:-0.441000px;}
.ws10a{word-spacing:-0.399000px;}
.ws5a{word-spacing:-0.378000px;}
.ws2c{word-spacing:-0.342000px;}
.ws4c{word-spacing:-0.315000px;}
.wse3{word-spacing:-0.285000px;}
.ws9e{word-spacing:-0.252000px;}
.wsf6{word-spacing:-0.228000px;}
.wscb{word-spacing:-0.189000px;}
.ws102{word-spacing:-0.171000px;}
.wsb8{word-spacing:-0.126000px;}
.wse4{word-spacing:-0.114000px;}
.ws57{word-spacing:-0.063000px;}
.ws3f{word-spacing:-0.057000px;}
.ws8{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.wsf9{word-spacing:0.057000px;}
.ws9d{word-spacing:0.063000px;}
.ws19{word-spacing:0.114000px;}
.wsb3{word-spacing:0.126000px;}
.ws105{word-spacing:0.171000px;}
.ws93{word-spacing:0.189000px;}
.ws15{word-spacing:0.228000px;}
.ws5f{word-spacing:0.252000px;}
.ws100{word-spacing:0.285000px;}
.ws55{word-spacing:0.315000px;}
.wsfc{word-spacing:0.342000px;}
.ws5c{word-spacing:0.378000px;}
.ws2b{word-spacing:0.399000px;}
.wsa{word-spacing:0.420000px;}
.wsa7{word-spacing:0.441000px;}
.ws1b{word-spacing:0.456000px;}
.ws4e{word-spacing:0.504000px;}
.ws3e{word-spacing:0.513000px;}
.ws95{word-spacing:0.567000px;}
.ws104{word-spacing:0.570000px;}
.ws1f{word-spacing:0.627000px;}
.wsb2{word-spacing:0.630000px;}
.ws5d{word-spacing:0.693000px;}
.ws1c{word-spacing:0.741000px;}
.ws5e{word-spacing:0.756000px;}
.ws35{word-spacing:0.798000px;}
.ws79{word-spacing:0.819000px;}
.wsc6{word-spacing:0.882000px;}
.ws45{word-spacing:0.945000px;}
.wsfe{word-spacing:0.969000px;}
.wsa9{word-spacing:1.008000px;}
.ws20{word-spacing:1.026000px;}
.ws5b{word-spacing:1.071000px;}
.ws26{word-spacing:1.083000px;}
.ws90{word-spacing:1.134000px;}
.ws87{word-spacing:1.197000px;}
.ws1e{word-spacing:1.254000px;}
.wsa4{word-spacing:1.260000px;}
.ws7a{word-spacing:1.323000px;}
.ws8d{word-spacing:1.344000px;}
.ws12{word-spacing:1.368000px;}
.wsd3{word-spacing:1.386000px;}
.ws2e{word-spacing:1.425000px;}
.ws6a{word-spacing:1.449000px;}
.wsfd{word-spacing:1.539000px;}
.ws81{word-spacing:1.575000px;}
.ws7c{word-spacing:1.638000px;}
.ws33{word-spacing:1.653000px;}
.ws6d{word-spacing:1.764000px;}
.ws10b{word-spacing:1.767000px;}
.wsdf{word-spacing:1.827000px;}
.ws7f{word-spacing:1.890000px;}
.wsa6{word-spacing:1.953000px;}
.ws2d{word-spacing:1.995000px;}
.wsd{word-spacing:2.016000px;}
.ws28{word-spacing:2.052000px;}
.ws7b{word-spacing:2.079000px;}
.ws1d{word-spacing:2.109000px;}
.wse0{word-spacing:2.142000px;}
.ws9f{word-spacing:2.205000px;}
.ws25{word-spacing:2.223000px;}
.ws7d{word-spacing:2.268000px;}
.ws109{word-spacing:2.280000px;}
.wsbc{word-spacing:2.352000px;}
.ws47{word-spacing:2.394000px;}
.wse6{word-spacing:2.451000px;}
.ws4d{word-spacing:2.457000px;}
.ws30{word-spacing:2.508000px;}
.ws7e{word-spacing:2.520000px;}
.wsa3{word-spacing:2.583000px;}
.ws10{word-spacing:2.622000px;}
.wsca{word-spacing:2.646000px;}
.wsb6{word-spacing:2.709000px;}
.wscd{word-spacing:2.730000px;}
.ws66{word-spacing:2.772000px;}
.wsb4{word-spacing:2.835000px;}
.ws4{word-spacing:2.856000px;}
.ws78{word-spacing:2.898000px;}
.wsf8{word-spacing:2.907000px;}
.ws50{word-spacing:2.961000px;}
.ws16{word-spacing:2.964000px;}
.wsde{word-spacing:3.024000px;}
.wsd2{word-spacing:3.087000px;}
.ws86{word-spacing:3.150000px;}
.wsd0{word-spacing:3.213000px;}
.wse2{word-spacing:3.249000px;}
.ws97{word-spacing:3.276000px;}
.ws107{word-spacing:3.306000px;}
.ws85{word-spacing:3.402000px;}
.wsd7{word-spacing:3.465000px;}
.ws3d{word-spacing:3.477000px;}
.ws92{word-spacing:3.528000px;}
.wsf{word-spacing:3.534000px;}
.wse{word-spacing:3.591000px;}
.ws4f{word-spacing:3.654000px;}
.wse1{word-spacing:3.717000px;}
.wsc9{word-spacing:3.780000px;}
.ws6b{word-spacing:3.843000px;}
.ws40{word-spacing:3.906000px;}
.ws41{word-spacing:3.969000px;}
.ws60{word-spacing:4.473000px;}
.ws8c{word-spacing:6.426000px;}
.ws1{word-spacing:6.445200px;}
.wsba{word-spacing:34.566000px;}
.ws76{word-spacing:75.558000px;}
.ws71{word-spacing:80.640000px;}
.ws73{word-spacing:89.964000px;}
.wsc3{word-spacing:168.660000px;}
.ws9c{word-spacing:244.314000px;}
.ws9a{word-spacing:244.440000px;}
.wsaf{word-spacing:276.234000px;}
.wsb1{word-spacing:283.122000px;}
.wsc2{word-spacing:348.960000px;}
.wsc5{word-spacing:350.400000px;}
.wsc4{word-spacing:484.200000px;}
.wsc1{word-spacing:502.560000px;}
.ws14{word-spacing:2069.634600px;}
._27{margin-left:-287.910000px;}
._24{margin-left:-274.386000px;}
._20{margin-left:-101.514000px;}
._22{margin-left:-98.448000px;}
._21{margin-left:-94.122000px;}
._15{margin-left:-48.678000px;}
._26{margin-left:-21.735000px;}
._25{margin-left:-20.349000px;}
._8{margin-left:-18.411000px;}
._9{margin-left:-16.872000px;}
._29{margin-left:-15.823800px;}
._28{margin-left:-14.049000px;}
._e{margin-left:-12.426000px;}
._13{margin-left:-11.388000px;}
._c{margin-left:-10.260000px;}
._1{margin-left:-9.072000px;}
._b{margin-left:-7.743000px;}
._0{margin-left:-6.728400px;}
._d{margin-left:-5.691600px;}
._12{margin-left:-4.609191px;}
._a{margin-left:-3.542400px;}
._3{margin-left:-2.460000px;}
._2{margin-left:-1.205400px;}
._7{width:1.587600px;}
._4{width:2.826600px;}
._19{width:3.877036px;}
._f{width:5.089632px;}
._1a{width:6.907800px;}
._14{width:8.985000px;}
._11{width:10.317000px;}
._10{width:12.066696px;}
._18{width:24.318000px;}
._17{width:25.914000px;}
._16{width:33.138000px;}
._5{width:46.656000px;}
._1b{width:95.508000px;}
._1c{width:97.440000px;}
._1f{width:98.574000px;}
._1e{width:102.396000px;}
._1d{width:108.528000px;}
._6{width:115.320000px;}
._2b{width:241.080000px;}
._23{width:266.952000px;}
._2a{width:397.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(239,42,71);}
.fc5{color:rgb(75,180,57);}
.fc4{color:rgb(75,141,210);}
.fc2{color:rgb(35,80,169);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(91,93,180);}
.fs10{font-size:29.400000px;}
.fs5{font-size:31.500000px;}
.fs7{font-size:33.600000px;}
.fs9{font-size:36.000000px;}
.fs12{font-size:39.900000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:42.750000px;}
.fse{font-size:44.100000px;}
.fsf{font-size:47.250000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fsb{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:246.000000px;}
.fs0{font-size:756.000000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:2.241900px;}
.y133{bottom:2.246100px;}
.y113{bottom:2.247300px;}
.y12b{bottom:17.035200px;}
.y14b{bottom:22.427850px;}
.y69{bottom:53.145300px;}
.y11{bottom:53.149500px;}
.y46{bottom:53.318100px;}
.y45{bottom:53.318250px;}
.yfb{bottom:53.649900px;}
.y112{bottom:54.917400px;}
.y10{bottom:65.149500px;}
.yfa{bottom:66.249900px;}
.yf{bottom:86.253450px;}
.ye{bottom:111.009450px;}
.y139{bottom:120.009450px;}
.yd{bottom:123.009450px;}
.ya7{bottom:124.116750px;}
.y16d{bottom:125.730750px;}
.y146{bottom:125.749800px;}
.ydc{bottom:125.749950px;}
.y20f{bottom:134.304600px;}
.yc{bottom:135.009450px;}
.y16c{bottom:138.486600px;}
.ya6{bottom:140.616750px;}
.y1cd{bottom:140.886450px;}
.ydb{bottom:143.687550px;}
.yb{bottom:147.009450px;}
.y68{bottom:148.818900px;}
.y20e{bottom:149.186550px;}
.y16b{bottom:151.242600px;}
.y1cc{bottom:156.042000px;}
.ya5{bottom:157.116750px;}
.yda{bottom:161.625300px;}
.y20d{bottom:164.068500px;}
.y67{bottom:165.318900px;}
.y1cb{bottom:171.197550px;}
.ya{bottom:171.765300px;}
.ya4{bottom:173.616750px;}
.y111{bottom:178.460400px;}
.ye7{bottom:179.563050px;}
.yd9{bottom:179.563200px;}
.y66{bottom:181.818900px;}
.y9{bottom:184.365300px;}
.y1ca{bottom:186.353250px;}
.ya3{bottom:190.116750px;}
.y8{bottom:196.365300px;}
.ye6{bottom:197.500800px;}
.yd8{bottom:197.500950px;}
.y65{bottom:198.318900px;}
.y1c9{bottom:201.508800px;}
.ya2{bottom:206.616750px;}
.y16e{bottom:207.453000px;}
.y20c{bottom:208.714200px;}
.y7{bottom:213.217350px;}
.y64{bottom:214.818900px;}
.ye5{bottom:215.438550px;}
.yd7{bottom:215.438700px;}
.y1c8{bottom:216.664350px;}
.ya1{bottom:223.116750px;}
.y20b{bottom:223.596000px;}
.y6{bottom:225.817350px;}
.y63{bottom:231.318900px;}
.y1c7{bottom:231.820050px;}
.ye4{bottom:233.376300px;}
.yd6{bottom:233.376450px;}
.y20a{bottom:238.477950px;}
.ya0{bottom:239.616750px;}
.y5{bottom:246.921300px;}
.y1c6{bottom:246.975750px;}
.y62{bottom:247.818900px;}
.ye3{bottom:251.314050px;}
.yd5{bottom:251.314200px;}
.y209{bottom:253.359900px;}
.y9f{bottom:256.116750px;}
.y4{bottom:259.521300px;}
.yf0{bottom:262.038900px;}
.y1c5{bottom:262.131300px;}
.y61{bottom:264.318900px;}
.y208{bottom:268.241700px;}
.y145{bottom:269.251800px;}
.yd4{bottom:269.251950px;}
.y9e{bottom:272.616750px;}
.y1c4{bottom:277.286850px;}
.y60{bottom:280.818900px;}
.y44{bottom:282.220800px;}
.y207{bottom:283.123500px;}
.yd3{bottom:287.189550px;}
.ye2{bottom:287.189700px;}
.y9d{bottom:289.116750px;}
.y1c3{bottom:292.442550px;}
.y206{bottom:298.005450px;}
.y43{bottom:298.472700px;}
.y144{bottom:305.127300px;}
.yd2{bottom:305.127450px;}
.y9c{bottom:305.616750px;}
.y1c2{bottom:307.598100px;}
.y42{bottom:310.472700px;}
.y205{bottom:312.887400px;}
.y5f{bottom:314.949750px;}
.y9b{bottom:322.116750px;}
.y143{bottom:323.065050px;}
.yd1{bottom:323.065200px;}
.y5e{bottom:326.199750px;}
.y204{bottom:327.769200px;}
.y41{bottom:335.228550px;}
.y5d{bottom:337.449750px;}
.y9a{bottom:338.616750px;}
.y142{bottom:341.002800px;}
.yd0{bottom:341.002950px;}
.y203{bottom:342.651150px;}
.y1c1{bottom:348.265500px;}
.y40{bottom:349.628550px;}
.y99{bottom:355.116750px;}
.y202{bottom:357.532950px;}
.ycf{bottom:358.940700px;}
.y187{bottom:359.647050px;}
.y3f{bottom:364.028550px;}
.y98{bottom:371.616750px;}
.y201{bottom:372.414900px;}
.y5c{bottom:374.211600px;}
.yce{bottom:376.878450px;}
.y3e{bottom:378.428550px;}
.y148{bottom:384.660300px;}
.y200{bottom:387.296850px;}
.y97{bottom:388.116750px;}
.y3d{bottom:392.828550px;}
.ycd{bottom:394.816200px;}
.y147{bottom:397.416150px;}
.y1ff{bottom:402.178650px;}
.y1c0{bottom:402.352500px;}
.y96{bottom:404.616750px;}
.y3c{bottom:407.228550px;}
.ycc{bottom:412.753950px;}
.y1fe{bottom:417.060600px;}
.y1bf{bottom:420.564000px;}
.y95{bottom:421.116750px;}
.y3b{bottom:421.628550px;}
.y14a{bottom:428.529000px;}
.ycb{bottom:430.691550px;}
.y1fd{bottom:431.942400px;}
.y3a{bottom:436.028550px;}
.y94{bottom:437.616750px;}
.y1be{bottom:438.775350px;}
.y1fc{bottom:446.824350px;}
.ye1{bottom:448.629300px;}
.yca{bottom:448.629450px;}
.y149{bottom:450.956850px;}
.y93{bottom:454.116750px;}
.y1bd{bottom:456.986850px;}
.y39{bottom:459.799050px;}
.y150{bottom:461.550750px;}
.y1fb{bottom:461.706300px;}
.ye0{bottom:466.567050px;}
.yc9{bottom:466.567200px;}
.y92{bottom:470.616750px;}
.y175{bottom:474.536550px;}
.y38{bottom:474.799050px;}
.y1bc{bottom:475.198350px;}
.y1fa{bottom:476.588100px;}
.yc8{bottom:484.504950px;}
.y91{bottom:487.116750px;}
.y174{bottom:487.292550px;}
.y1f9{bottom:491.470050px;}
.y173{bottom:500.048400px;}
.yc7{bottom:502.442700px;}
.y90{bottom:503.616750px;}
.y1f8{bottom:506.352000px;}
.y37{bottom:506.806950px;}
.y172{bottom:512.804250px;}
.y8f{bottom:520.116750px;}
.yc6{bottom:520.380450px;}
.y1f7{bottom:521.233800px;}
.y171{bottom:525.560250px;}
.y59{bottom:525.800250px;}
.y14f{bottom:525.926250px;}
.y1bb{bottom:529.285350px;}
.y11f{bottom:535.093950px;}
.y1f6{bottom:536.115750px;}
.y36{bottom:536.414850px;}
.y8e{bottom:536.616750px;}
.yc5{bottom:538.318200px;}
.y1ba{bottom:547.496850px;}
.y11e{bottom:547.849800px;}
.y35{bottom:549.014850px;}
.y1f5{bottom:550.997550px;}
.y151{bottom:551.042250px;}
.y8d{bottom:553.116750px;}
.yc4{bottom:556.255800px;}
.y176{bottom:557.056500px;}
.y58{bottom:563.312100px;}
.y1b9{bottom:565.708350px;}
.y34{bottom:565.866900px;}
.y1f4{bottom:565.879500px;}
.y8c{bottom:569.616750px;}
.y177{bottom:572.166450px;}
.ydf{bottom:574.193550px;}
.yc3{bottom:574.193700px;}
.y33{bottom:578.466900px;}
.y57{bottom:579.812100px;}
.y1f3{bottom:580.761450px;}
.y1b8{bottom:583.919700px;}
.y8b{bottom:586.116750px;}
.yde{bottom:592.131300px;}
.yc2{bottom:592.131450px;}
.y32{bottom:595.318800px;}
.y1f2{bottom:595.643250px;}
.y56{bottom:596.312100px;}
.y1b7{bottom:602.131200px;}
.y8a{bottom:602.616750px;}
.y31{bottom:607.918800px;}
.yc1{bottom:610.069200px;}
.y1f1{bottom:610.525200px;}
.y55{bottom:612.812100px;}
.y17b{bottom:617.170950px;}
.y16a{bottom:618.376350px;}
.y89{bottom:619.116750px;}
.y1b6{bottom:620.342700px;}
.y30{bottom:624.770850px;}
.y1f0{bottom:625.407000px;}
.yc0{bottom:628.006950px;}
.y54{bottom:629.312100px;}
.y152{bottom:632.364750px;}
.y88{bottom:635.616750px;}
.y182{bottom:636.640950px;}
.y2f{bottom:637.370700px;}
.y1b5{bottom:638.554200px;}
.y1ef{bottom:640.288950px;}
.ybf{bottom:645.944700px;}
.y153{bottom:650.235750px;}
.y87{bottom:652.116750px;}
.y2e{bottom:654.222750px;}
.y1ee{bottom:655.170750px;}
.y1b4{bottom:656.765550px;}
.y53{bottom:661.201800px;}
.ybe{bottom:663.882450px;}
.yea{bottom:665.589450px;}
.y2d{bottom:666.822750px;}
.y86{bottom:668.616750px;}
.y1ed{bottom:670.052700px;}
.y1b3{bottom:674.977050px;}
.y155{bottom:675.099750px;}
.y52{bottom:677.701800px;}
.y185{bottom:678.040950px;}
.ye9{bottom:678.345450px;}
.y169{bottom:678.820350px;}
.y157{bottom:678.827250px;}
.ybd{bottom:681.820200px;}
.y2c{bottom:683.674650px;}
.y1ec{bottom:684.934650px;}
.y85{bottom:685.116750px;}
.ye8{bottom:691.101300px;}
.y1b2{bottom:693.188550px;}
.y18b{bottom:693.728550px;}
.y51{bottom:694.201800px;}
.y2b{bottom:696.274650px;}
.ybc{bottom:699.757800px;}
.y1eb{bottom:699.816450px;}
.y84{bottom:701.616750px;}
.y18a{bottom:706.484400px;}
.y50{bottom:710.701800px;}
.y1b1{bottom:711.400050px;}
.y2a{bottom:713.126700px;}
.y156{bottom:713.487750px;}
.y154{bottom:713.676750px;}
.y17a{bottom:713.680950px;}
.y1ea{bottom:714.698400px;}
.ybb{bottom:717.695550px;}
.y83{bottom:718.116750px;}
.y189{bottom:719.240400px;}
.yef{bottom:722.947500px;}
.y29{bottom:725.726700px;}
.y1e9{bottom:729.580200px;}
.y1b0{bottom:729.611550px;}
.y188{bottom:731.996250px;}
.y82{bottom:734.616750px;}
.yba{bottom:735.633300px;}
.y103{bottom:737.275050px;}
.y28{bottom:742.578600px;}
.y4f{bottom:742.591500px;}
.y181{bottom:742.600950px;}
.y1e8{bottom:744.462150px;}
.y1af{bottom:747.823050px;}
.y170{bottom:749.962200px;}
.y102{bottom:750.030900px;}
.y81{bottom:751.116750px;}
.yb9{bottom:753.571200px;}
.y27{bottom:755.178600px;}
.y4e{bottom:759.091500px;}
.y1e7{bottom:759.344100px;}
.y14e{bottom:762.564750px;}
.y101{bottom:762.786900px;}
.yfd{bottom:762.810900px;}
.y186{bottom:764.439000px;}
.y1ae{bottom:766.034400px;}
.y80{bottom:767.616750px;}
.yb8{bottom:771.508800px;}
.y26{bottom:772.030650px;}
.y1e6{bottom:774.225900px;}
.y100{bottom:775.542750px;}
.y4d{bottom:775.591500px;}
.y7f{bottom:784.116750px;}
.y1ad{bottom:784.245900px;}
.y25{bottom:784.630650px;}
.y184{bottom:787.285950px;}
.yff{bottom:788.298750px;}
.y179{bottom:788.815950px;}
.y1e5{bottom:789.107850px;}
.yb7{bottom:789.446550px;}
.y4c{bottom:792.091500px;}
.y7e{bottom:800.616750px;}
.yfe{bottom:801.054600px;}
.y24{bottom:801.482550px;}
.y1ac{bottom:802.457400px;}
.y1e4{bottom:803.989800px;}
.y130{bottom:805.960650px;}
.y121{bottom:807.342600px;}
.yb6{bottom:807.384300px;}
.yf3{bottom:810.938550px;}
.y23{bottom:814.082550px;}
.y7d{bottom:817.116750px;}
.yf9{bottom:817.632900px;}
.y12f{bottom:818.716500px;}
.y1e3{bottom:818.871600px;}
.yf4{bottom:819.373050px;}
.y120{bottom:820.098450px;}
.y1ab{bottom:820.668750px;}
.yf2{bottom:823.538550px;}
.y4b{bottom:823.981350px;}
.yb5{bottom:825.322050px;}
.yf8{bottom:830.232900px;}
.y22{bottom:830.934600px;}
.y110{bottom:832.563000px;}
.y7c{bottom:833.616750px;}
.y1e2{bottom:833.753550px;}
.yf1{bottom:836.138550px;}
.y1aa{bottom:838.880250px;}
.y4a{bottom:840.481350px;}
.yf7{bottom:842.832900px;}
.ydd{bottom:843.259800px;}
.y21{bottom:843.534600px;}
.y1e1{bottom:848.635500px;}
.y7b{bottom:850.116750px;}
.y132{bottom:850.180500px;}
.y12a{bottom:851.668500px;}
.y11a{bottom:852.966450px;}
.y180{bottom:853.090950px;}
.yf6{bottom:855.432900px;}
.y12d{bottom:856.544700px;}
.y49{bottom:856.981350px;}
.y1a9{bottom:857.091750px;}
.y20{bottom:860.386500px;}
.yb4{bottom:861.197550px;}
.y19a{bottom:861.197700px;}
.y1e0{bottom:863.517300px;}
.y7a{bottom:866.616750px;}
.y14d{bottom:866.861250px;}
.yf5{bottom:868.032900px;}
.y131{bottom:868.074600px;}
.y129{bottom:868.694550px;}
.y12c{bottom:868.703700px;}
.y1f{bottom:872.986500px;}
.y48{bottom:873.481350px;}
.y1a8{bottom:875.303250px;}
.y11d{bottom:876.685950px;}
.y1df{bottom:878.399100px;}
.y199{bottom:879.135450px;}
.y10c{bottom:882.414300px;}
.y79{bottom:883.116750px;}
.y168{bottom:884.512350px;}
.y138{bottom:886.154850px;}
.y128{bottom:888.613050px;}
.y1e{bottom:889.838400px;}
.y47{bottom:889.981350px;}
.y10b{bottom:892.945800px;}
.y1de{bottom:893.281050px;}
.y1a7{bottom:893.514750px;}
.y198{bottom:897.073200px;}
.y78{bottom:899.616750px;}
.y183{bottom:900.595950px;}
.y1d{bottom:902.438550px;}
.y10a{bottom:903.477300px;}
.y1dd{bottom:908.163000px;}
.y15b{bottom:910.142250px;}
.y1a6{bottom:911.726250px;}
.y197{bottom:915.010950px;}
.y1c{bottom:915.038400px;}
.y16f{bottom:916.137900px;}
.y108{bottom:917.536800px;}
.y1dc{bottom:923.044800px;}
.y17f{bottom:923.710950px;}
.y11c{bottom:926.214450px;}
.y127{bottom:927.074550px;}
.y107{bottom:928.068300px;}
.y15c{bottom:928.233750px;}
.y15a{bottom:928.244250px;}
.y1a5{bottom:929.937750px;}
.y1b{bottom:931.890450px;}
.y196{bottom:932.948700px;}
.y77{bottom:933.747600px;}
.yad{bottom:934.157550px;}
.y1db{bottom:937.926750px;}
.y159{bottom:938.366250px;}
.y109{bottom:938.589300px;}
.y119{bottom:942.552450px;}
.y167{bottom:942.676350px;}
.y1a{bottom:944.490450px;}
.y137{bottom:945.647850px;}
.yac{bottom:946.157550px;}
.y1a4{bottom:948.149100px;}
.y76{bottom:950.247750px;}
.y195{bottom:950.886450px;}
.y1da{bottom:952.808550px;}
.y106{bottom:953.215800px;}
.y12e{bottom:955.663200px;}
.y15d{bottom:956.730750px;}
.yab{bottom:958.157550px;}
.y19{bottom:961.342350px;}
.y105{bottom:963.747300px;}
.y158{bottom:964.007250px;}
.y1a3{bottom:966.360600px;}
.y75{bottom:966.747750px;}
.y126{bottom:967.636050px;}
.y1d9{bottom:967.690500px;}
.y194{bottom:968.824200px;}
.yaa{bottom:970.157550px;}
.y17e{bottom:970.720950px;}
.y164{bottom:972.554250px;}
.y104{bottom:974.278800px;}
.y118{bottom:977.275950px;}
.y11b{bottom:977.790450px;}
.ya9{bottom:982.157550px;}
.y1d8{bottom:982.572450px;}
.y74{bottom:983.247750px;}
.y163{bottom:983.400750px;}
.y1a2{bottom:984.572100px;}
.yee{bottom:984.989100px;}
.y193{bottom:986.761800px;}
.y5b{bottom:989.007900px;}
.y18{bottom:990.950250px;}
.y15e{bottom:991.916250px;}
.ya8{bottom:994.157550px;}
.y162{bottom:997.187250px;}
.y1d7{bottom:997.454250px;}
.yed{bottom:997.589100px;}
.y73{bottom:999.747750px;}
.y10d{bottom:1002.019800px;}
.y1a1{bottom:1002.783600px;}
.y192{bottom:1004.699550px;}
.y125{bottom:1005.551550px;}
.y17d{bottom:1005.775950px;}
.y136{bottom:1006.064850px;}
.yec{bottom:1010.189100px;}
.y117{bottom:1011.484950px;}
.y1d6{bottom:1012.336200px;}
.y72{bottom:1016.247750px;}
.y178{bottom:1016.755950px;}
.y10e{bottom:1017.853800px;}
.y5a{bottom:1019.007900px;}
.y17{bottom:1020.558150px;}
.y1a0{bottom:1020.995100px;}
.y191{bottom:1022.637300px;}
.y1d5{bottom:1027.218000px;}
.y165{bottom:1028.246250px;}
.yb3{bottom:1028.247750px;}
.y141{bottom:1031.736750px;}
.y71{bottom:1032.747750px;}
.y166{bottom:1035.984750px;}
.y3{bottom:1036.099200px;}
.y15f{bottom:1036.614750px;}
.y19f{bottom:1039.206450px;}
.yb2{bottom:1040.247750px;}
.y17c{bottom:1040.395950px;}
.y190{bottom:1040.575050px;}
.y160{bottom:1042.001250px;}
.y1d4{bottom:1042.099950px;}
.y124{bottom:1044.296550px;}
.y140{bottom:1044.336750px;}
.y10f{bottom:1045.678800px;}
.y116{bottom:1046.176950px;}
.y70{bottom:1049.247750px;}
.y16{bottom:1050.166050px;}
.yb1{bottom:1052.247750px;}
.y13f{bottom:1056.936750px;}
.y1d3{bottom:1056.981750px;}
.y19e{bottom:1057.417950px;}
.y18f{bottom:1058.512800px;}
.yb0{bottom:1064.247750px;}
.y6f{bottom:1065.747750px;}
.y135{bottom:1066.355850px;}
.y13e{bottom:1068.927750px;}
.y1d2{bottom:1071.863700px;}
.y19d{bottom:1075.629450px;}
.yaf{bottom:1076.247750px;}
.y18e{bottom:1076.450550px;}
.y15{bottom:1079.773800px;}
.y115{bottom:1079.881950px;}
.y6e{bottom:1082.247750px;}
.y13d{bottom:1082.630250px;}
.y1{bottom:1084.252050px;}
.y123{bottom:1084.826550px;}
.y1d1{bottom:1086.745650px;}
.y19c{bottom:1093.840950px;}
.y18d{bottom:1094.388450px;}
.y13c{bottom:1095.272250px;}
.y14c{bottom:1095.939750px;}
.y6d{bottom:1098.747750px;}
.y1d0{bottom:1101.627450px;}
.y161{bottom:1104.297750px;}
.y13b{bottom:1107.872250px;}
.y14{bottom:1109.381700px;}
.y19b{bottom:1112.052450px;}
.y114{bottom:1114.384950px;}
.y6c{bottom:1115.247750px;}
.y1cf{bottom:1116.509400px;}
.yeb{bottom:1118.370600px;}
.y13{bottom:1121.981700px;}
.y122{bottom:1122.364050px;}
.y13a{bottom:1122.855750px;}
.y134{bottom:1124.788350px;}
.y18c{bottom:1130.263950px;}
.y1ce{bottom:1131.391350px;}
.y6b{bottom:1131.747750px;}
.y12{bottom:1134.581700px;}
.y2{bottom:1193.103450px;}
.y6a{bottom:1202.244000px;}
.yae{bottom:1202.244150px;}
.h14{height:26.316000px;}
.h17{height:30.702000px;}
.h6{height:30.828000px;}
.h7{height:31.122000px;}
.ha{height:32.688000px;}
.h20{height:35.088000px;}
.h24{height:35.952750px;}
.h5{height:38.136000px;}
.h1f{height:38.472000px;}
.h26{height:40.755000px;}
.h11{height:40.757714px;}
.h10{height:41.184000px;}
.h8{height:43.584000px;}
.hb{height:43.860000px;}
.h1b{height:45.048000px;}
.hc{height:46.308000px;}
.h13{height:46.332000px;}
.h12{height:46.872000px;}
.h25{height:47.937000px;}
.hf{height:48.906000px;}
.he{height:49.476000px;}
.h9{height:51.480000px;}
.h16{height:52.983000px;}
.h15{height:54.054000px;}
.h1c{height:54.684000px;}
.hd{height:70.176000px;}
.h4{height:74.868000px;}
.h3{height:180.564000px;}
.h1a{height:290.409000px;}
.h1d{height:291.898500px;}
.h19{height:309.516000px;}
.h23{height:377.640000px;}
.h18{height:419.130000px;}
.h2{height:554.904000px;}
.h22{height:585.021000px;}
.h1e{height:713.548500px;}
.h21{height:934.624500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:519.525000px;}
.w5{width:545.232000px;}
.w4{width:580.320000px;}
.w3{width:610.998000px;}
.w6{width:635.788500px;}
.w7{width:744.120000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:2.999700px;}
.x60{left:6.437700px;}
.x3b{left:8.998200px;}
.x32{left:40.708500px;}
.x1{left:42.519750px;}
.x2{left:56.374050px;}
.x4{left:74.409450px;}
.x63{left:77.396700px;}
.x61{left:80.744550px;}
.x1c{left:83.475900px;}
.x71{left:85.561650px;}
.x1d{left:87.217650px;}
.x70{left:91.417350px;}
.x5{left:95.669250px;}
.x34{left:100.129050px;}
.x7{left:116.929200px;}
.x1f{left:123.180450px;}
.x26{left:127.437900px;}
.x4b{left:128.562000px;}
.x1a{left:129.685050px;}
.x72{left:131.152950px;}
.x78{left:132.898950px;}
.x3a{left:140.958000px;}
.x42{left:156.297000px;}
.x22{left:160.777350px;}
.x3e{left:162.146700px;}
.x79{left:164.152200px;}
.x28{left:166.546800px;}
.x29{left:168.004950px;}
.x25{left:170.825700px;}
.x44{left:172.052550px;}
.x46{left:173.841000px;}
.x1e{left:175.478100px;}
.x21{left:183.213750px;}
.x2a{left:184.312350px;}
.x3f{left:185.351700px;}
.x23{left:187.182750px;}
.x48{left:190.662000px;}
.x73{left:193.747650px;}
.x7a{left:205.612500px;}
.x41{left:207.801750px;}
.x20{left:220.688850px;}
.x27{left:223.744950px;}
.x74{left:233.600400px;}
.x7b{left:239.384250px;}
.x47{left:240.997650px;}
.x38{left:246.845550px;}
.x49{left:256.959300px;}
.x3d{left:265.400700px;}
.x75{left:267.226800px;}
.x1b{left:275.314950px;}
.x7c{left:276.715950px;}
.x45{left:279.192000px;}
.x4c{left:282.330750px;}
.x39{left:303.850050px;}
.x4f{left:310.428750px;}
.x7d{left:320.740800px;}
.x50{left:332.111250px;}
.x76{left:347.106000px;}
.x7e{left:350.649150px;}
.x51{left:357.017250px;}
.x5f{left:358.823700px;}
.x16{left:362.533200px;}
.x2d{left:366.742500px;}
.x4e{left:373.208250px;}
.xa{left:379.490700px;}
.x15{left:395.874450px;}
.x77{left:413.038950px;}
.xe{left:415.688400px;}
.x2c{left:430.693350px;}
.x19{left:433.369650px;}
.xf{left:446.808900px;}
.x9{left:449.665650px;}
.x5e{left:453.527700px;}
.x2b{left:457.086600px;}
.x64{left:459.191700px;}
.x7f{left:464.626800px;}
.x17{left:470.689050px;}
.x69{left:474.094500px;}
.x52{left:479.163750px;}
.x33{left:481.833000px;}
.x31{left:483.835350px;}
.x59{left:499.964250px;}
.xc{left:502.743000px;}
.x80{left:503.811150px;}
.x35{left:513.178050px;}
.x2f{left:517.193100px;}
.x24{left:518.820300px;}
.x5c{left:527.957250px;}
.x5a{left:529.763250px;}
.x5b{left:531.243750px;}
.x36{left:534.356550px;}
.x2e{left:535.666500px;}
.x84{left:537.998850px;}
.x57{left:540.410250px;}
.x12{left:541.986900px;}
.x58{left:549.114750px;}
.x5d{left:562.079700px;}
.x81{left:564.737550px;}
.x37{left:576.356550px;}
.x85{left:581.786400px;}
.x6a{left:589.495800px;}
.x13{left:592.935150px;}
.x10{left:601.248300px;}
.x67{left:603.371700px;}
.x3c{left:608.747700px;}
.x65{left:614.696700px;}
.x53{left:616.902750px;}
.x4a{left:628.778700px;}
.x6b{left:631.170750px;}
.x30{left:639.841350px;}
.xb{left:641.855250px;}
.x82{left:659.879700px;}
.x55{left:666.389250px;}
.x88{left:669.237000px;}
.x86{left:670.250550px;}
.x18{left:674.405850px;}
.x89{left:676.176750px;}
.x87{left:678.617400px;}
.x6c{left:680.293050px;}
.x3{left:681.510900px;}
.x68{left:682.676700px;}
.x54{left:684.564750px;}
.x11{left:688.500300px;}
.x14{left:691.335300px;}
.x8{left:699.090300px;}
.xd{left:701.565150px;}
.x83{left:711.450000px;}
.x43{left:714.509100px;}
.x40{left:718.982700px;}
.x56{left:724.265250px;}
.x6d{left:726.375450px;}
.x66{left:728.261700px;}
.x4d{left:741.044250px;}
.x6e{left:785.018400px;}
.x6{left:786.802350px;}
.x6f{left:813.767550px;}
@media print{
.v8{vertical-align:-56.261333pt;}
.v7{vertical-align:-34.645333pt;}
.v4{vertical-align:-25.610667pt;}
.v9{vertical-align:-21.242667pt;}
.v6{vertical-align:-12.245333pt;}
.va{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.467200pt;}
.v2{vertical-align:8.533333pt;}
.vb{vertical-align:10.133333pt;}
.v3{vertical-align:11.200000pt;}
.v1{vertical-align:16.000000pt;}
.ls3b{letter-spacing:-5.712000pt;}
.ls3{letter-spacing:-2.538667pt;}
.ls59{letter-spacing:-2.090667pt;}
.ls85{letter-spacing:-0.962667pt;}
.ls4f{letter-spacing:-0.896000pt;}
.ls89{letter-spacing:-0.861333pt;}
.ls39{letter-spacing:-0.784000pt;}
.ls4d{letter-spacing:-0.728000pt;}
.ls73{letter-spacing:-0.709333pt;}
.ls42{letter-spacing:-0.672000pt;}
.ls84{letter-spacing:-0.658667pt;}
.ls50{letter-spacing:-0.616000pt;}
.ls3a{letter-spacing:-0.560000pt;}
.ls87{letter-spacing:-0.557333pt;}
.ls83{letter-spacing:-0.506667pt;}
.ls47{letter-spacing:-0.504000pt;}
.ls88{letter-spacing:-0.456000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls8a{letter-spacing:-0.405333pt;}
.ls26{letter-spacing:-0.392000pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls4e{letter-spacing:-0.336000pt;}
.ls86{letter-spacing:-0.304000pt;}
.ls29{letter-spacing:-0.280000pt;}
.ls8b{letter-spacing:-0.253333pt;}
.ls43{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.202667pt;}
.ls28{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.152000pt;}
.ls27{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls31{letter-spacing:-0.056000pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000133pt;}
.ls68{letter-spacing:0.018119pt;}
.ls69{letter-spacing:0.018652pt;}
.ls63{letter-spacing:0.023922pt;}
.lsd{letter-spacing:0.025333pt;}
.ls4c{letter-spacing:0.036243pt;}
.ls62{letter-spacing:0.037333pt;}
.lsb{letter-spacing:0.050667pt;}
.ls7f{letter-spacing:0.053331pt;}
.ls1d{letter-spacing:0.056000pt;}
.ls53{letter-spacing:0.084000pt;}
.ls52{letter-spacing:0.085469pt;}
.lsc{letter-spacing:0.101333pt;}
.ls18{letter-spacing:0.112000pt;}
.ls6b{letter-spacing:0.145963pt;}
.ls11{letter-spacing:0.152000pt;}
.ls7d{letter-spacing:0.155133pt;}
.ls7e{letter-spacing:0.155800pt;}
.ls82{letter-spacing:0.165009pt;}
.ls1e{letter-spacing:0.168000pt;}
.ls61{letter-spacing:0.195733pt;}
.ls2a{letter-spacing:0.196000pt;}
.ls8{letter-spacing:0.202667pt;}
.ls44{letter-spacing:0.219678pt;}
.ls19{letter-spacing:0.224000pt;}
.ls60{letter-spacing:0.230686pt;}
.ls22{letter-spacing:0.252000pt;}
.ls77{letter-spacing:0.252800pt;}
.ls5{letter-spacing:0.253333pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls1b{letter-spacing:0.280000pt;}
.ls46{letter-spacing:0.302933pt;}
.ls7a{letter-spacing:0.304000pt;}
.ls67{letter-spacing:0.308000pt;}
.ls21{letter-spacing:0.336000pt;}
.ls45{letter-spacing:0.342402pt;}
.ls74{letter-spacing:0.343942pt;}
.ls81{letter-spacing:0.354667pt;}
.ls3f{letter-spacing:0.364000pt;}
.ls5c{letter-spacing:0.379733pt;}
.ls66{letter-spacing:0.391467pt;}
.ls17{letter-spacing:0.392000pt;}
.ls78{letter-spacing:0.405333pt;}
.ls6e{letter-spacing:0.441828pt;}
.ls70{letter-spacing:0.444600pt;}
.ls36{letter-spacing:0.447187pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.456000pt;}
.ls80{letter-spacing:0.457935pt;}
.ls34{letter-spacing:0.476000pt;}
.ls23{letter-spacing:0.504000pt;}
.ls71{letter-spacing:0.505400pt;}
.ls72{letter-spacing:0.506667pt;}
.ls40{letter-spacing:0.544742pt;}
.ls6f{letter-spacing:0.557333pt;}
.ls16{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.608000pt;}
.ls1f{letter-spacing:0.616000pt;}
.ls6d{letter-spacing:0.644000pt;}
.ls4a{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.728000pt;}
.ls5d{letter-spacing:0.750400pt;}
.ls5e{letter-spacing:0.753070pt;}
.ls12{letter-spacing:0.784000pt;}
.ls6a{letter-spacing:0.812000pt;}
.ls35{letter-spacing:0.840000pt;}
.ls7b{letter-spacing:0.861333pt;}
.ls65{letter-spacing:0.868000pt;}
.ls20{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.952000pt;}
.ls33{letter-spacing:1.008000pt;}
.ls76{letter-spacing:1.037400pt;}
.ls75{letter-spacing:1.038222pt;}
.ls37{letter-spacing:1.064000pt;}
.ls79{letter-spacing:1.114667pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls30{letter-spacing:1.176000pt;}
.ls2b{letter-spacing:1.288000pt;}
.ls13{letter-spacing:1.400000pt;}
.ls6c{letter-spacing:1.456000pt;}
.ls2c{letter-spacing:1.512000pt;}
.ls24{letter-spacing:1.568000pt;}
.ls41{letter-spacing:2.129067pt;}
.ls38{letter-spacing:2.604661pt;}
.ls7c{letter-spacing:3.311953pt;}
.ls4b{letter-spacing:4.130789pt;}
.ls5f{letter-spacing:4.205748pt;}
.ls57{letter-spacing:5.674667pt;}
.ls58{letter-spacing:8.997333pt;}
.ls55{letter-spacing:13.178667pt;}
.ls1{letter-spacing:13.776000pt;}
.ls56{letter-spacing:16.165333pt;}
.ls32{letter-spacing:43.269333pt;}
.ls0{letter-spacing:45.024000pt;}
.ls54{letter-spacing:61.674667pt;}
.ls3d{letter-spacing:83.664000pt;}
.ls2f{letter-spacing:86.874667pt;}
.ls3e{letter-spacing:87.509333pt;}
.ls3c{letter-spacing:90.234667pt;}
.ls49{letter-spacing:232.885333pt;}
.ls48{letter-spacing:244.234667pt;}
.ls51{letter-spacing:255.920000pt;}
.ls5a{letter-spacing:305.760000pt;}
.ls5b{letter-spacing:1299.360000pt;}
.ls64{letter-spacing:1310.240000pt;}
.wsd8{word-spacing:-1310.240000pt;}
.wsbe{word-spacing:-1299.360000pt;}
.wsbd{word-spacing:-305.760000pt;}
.wsb0{word-spacing:-266.298667pt;}
.ws9b{word-spacing:-254.613333pt;}
.wsab{word-spacing:-232.885333pt;}
.ws0{word-spacing:-222.432000pt;}
.ws72{word-spacing:-100.613333pt;}
.ws75{word-spacing:-97.888000pt;}
.ws74{word-spacing:-94.042667pt;}
.ws65{word-spacing:-53.648000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws63{word-spacing:-14.896000pt;}
.ws37{word-spacing:-14.784000pt;}
.wsc0{word-spacing:-14.750400pt;}
.ws38{word-spacing:-14.560000pt;}
.ws3b{word-spacing:-14.336000pt;}
.ws39{word-spacing:-14.280000pt;}
.ws99{word-spacing:-14.196000pt;}
.ws3a{word-spacing:-14.056000pt;}
.ws62{word-spacing:-14.000000pt;}
.ws98{word-spacing:-13.944000pt;}
.wscf{word-spacing:-13.832000pt;}
.wsea{word-spacing:-13.781333pt;}
.ws8e{word-spacing:-13.776000pt;}
.wsac{word-spacing:-13.720000pt;}
.wsed{word-spacing:-13.528000pt;}
.wsce{word-spacing:-13.328000pt;}
.wsdb{word-spacing:-13.122667pt;}
.wsad{word-spacing:-13.104000pt;}
.wsf3{word-spacing:-13.021333pt;}
.wseb{word-spacing:-12.920000pt;}
.wsee{word-spacing:-12.818667pt;}
.wsd9{word-spacing:-12.666667pt;}
.wsc{word-spacing:-12.602667pt;}
.wse7{word-spacing:-12.565333pt;}
.wsf2{word-spacing:-12.464000pt;}
.wse9{word-spacing:-12.362667pt;}
.wsf1{word-spacing:-12.210667pt;}
.wse8{word-spacing:-10.537400pt;}
.ws64{word-spacing:-10.500000pt;}
.ws6{word-spacing:-10.378667pt;}
.wsdd{word-spacing:-10.005400pt;}
.wsdc{word-spacing:-9.944600pt;}
.wsbf{word-spacing:-9.800000pt;}
.wsef{word-spacing:-9.655800pt;}
.wsf0{word-spacing:-9.652000pt;}
.wsda{word-spacing:-9.500000pt;}
.ws5{word-spacing:-9.408000pt;}
.wsb{word-spacing:-8.896000pt;}
.wsec{word-spacing:-8.866667pt;}
.ws9{word-spacing:-8.302933pt;}
.ws7{word-spacing:-7.784000pt;}
.wsae{word-spacing:-7.265067pt;}
.ws4b{word-spacing:-7.000000pt;}
.wsd4{word-spacing:-6.720000pt;}
.ws103{word-spacing:-6.333333pt;}
.wsf5{word-spacing:-5.472000pt;}
.ws77{word-spacing:-3.584000pt;}
.ws43{word-spacing:-3.528000pt;}
.ws44{word-spacing:-3.472000pt;}
.wsd5{word-spacing:-3.360000pt;}
.wsa1{word-spacing:-3.304000pt;}
.wsbb{word-spacing:-3.248000pt;}
.ws11{word-spacing:-3.192000pt;}
.wsf4{word-spacing:-3.141333pt;}
.ws29{word-spacing:-3.090667pt;}
.wsa8{word-spacing:-3.080000pt;}
.wscc{word-spacing:-2.968000pt;}
.ws6f{word-spacing:-2.856000pt;}
.wsb7{word-spacing:-2.800000pt;}
.ws101{word-spacing:-2.786667pt;}
.ws8f{word-spacing:-2.744000pt;}
.ws6c{word-spacing:-2.688000pt;}
.ws108{word-spacing:-2.685333pt;}
.ws22{word-spacing:-2.634667pt;}
.wsc7{word-spacing:-2.632000pt;}
.ws46{word-spacing:-2.576000pt;}
.ws8a{word-spacing:-2.520000pt;}
.ws96{word-spacing:-2.464000pt;}
.ws27{word-spacing:-2.432000pt;}
.wsaa{word-spacing:-2.408000pt;}
.wse5{word-spacing:-2.381333pt;}
.ws82{word-spacing:-2.352000pt;}
.ws6e{word-spacing:-2.296000pt;}
.ws52{word-spacing:-2.240000pt;}
.wsff{word-spacing:-2.229333pt;}
.ws83{word-spacing:-2.184000pt;}
.ws54{word-spacing:-2.128000pt;}
.wsfb{word-spacing:-2.077333pt;}
.ws69{word-spacing:-2.072000pt;}
.wsd6{word-spacing:-2.016000pt;}
.ws31{word-spacing:-1.976000pt;}
.ws48{word-spacing:-1.960000pt;}
.ws17{word-spacing:-1.925333pt;}
.ws89{word-spacing:-1.904000pt;}
.ws21{word-spacing:-1.874667pt;}
.ws61{word-spacing:-1.848000pt;}
.ws70{word-spacing:-1.792000pt;}
.ws10c{word-spacing:-1.773333pt;}
.wsc8{word-spacing:-1.736000pt;}
.ws88{word-spacing:-1.680000pt;}
.wsd1{word-spacing:-1.624000pt;}
.ws3c{word-spacing:-1.621333pt;}
.ws42{word-spacing:-1.568000pt;}
.ws24{word-spacing:-1.520000pt;}
.wsa0{word-spacing:-1.512000pt;}
.ws32{word-spacing:-1.469333pt;}
.ws67{word-spacing:-1.456000pt;}
.wsb9{word-spacing:-1.400000pt;}
.ws94{word-spacing:-1.344000pt;}
.ws106{word-spacing:-1.317333pt;}
.ws49{word-spacing:-1.288000pt;}
.wsa5{word-spacing:-1.232000pt;}
.ws51{word-spacing:-1.176000pt;}
.ws34{word-spacing:-1.165333pt;}
.ws68{word-spacing:-1.120000pt;}
.ws36{word-spacing:-1.064000pt;}
.ws18{word-spacing:-1.013333pt;}
.ws58{word-spacing:-1.008000pt;}
.wsa2{word-spacing:-0.952000pt;}
.ws56{word-spacing:-0.896000pt;}
.ws1a{word-spacing:-0.861333pt;}
.ws59{word-spacing:-0.840000pt;}
.ws2a{word-spacing:-0.810667pt;}
.wsb5{word-spacing:-0.784000pt;}
.ws8b{word-spacing:-0.728000pt;}
.ws2f{word-spacing:-0.709333pt;}
.ws80{word-spacing:-0.672000pt;}
.wsf7{word-spacing:-0.658667pt;}
.ws84{word-spacing:-0.616000pt;}
.ws53{word-spacing:-0.560000pt;}
.ws23{word-spacing:-0.557333pt;}
.ws13{word-spacing:-0.506667pt;}
.wsfa{word-spacing:-0.456000pt;}
.ws91{word-spacing:-0.448000pt;}
.ws4a{word-spacing:-0.392000pt;}
.ws10a{word-spacing:-0.354667pt;}
.ws5a{word-spacing:-0.336000pt;}
.ws2c{word-spacing:-0.304000pt;}
.ws4c{word-spacing:-0.280000pt;}
.wse3{word-spacing:-0.253333pt;}
.ws9e{word-spacing:-0.224000pt;}
.wsf6{word-spacing:-0.202667pt;}
.wscb{word-spacing:-0.168000pt;}
.ws102{word-spacing:-0.152000pt;}
.wsb8{word-spacing:-0.112000pt;}
.wse4{word-spacing:-0.101333pt;}
.ws57{word-spacing:-0.056000pt;}
.ws3f{word-spacing:-0.050667pt;}
.ws8{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.050667pt;}
.ws9d{word-spacing:0.056000pt;}
.ws19{word-spacing:0.101333pt;}
.wsb3{word-spacing:0.112000pt;}
.ws105{word-spacing:0.152000pt;}
.ws93{word-spacing:0.168000pt;}
.ws15{word-spacing:0.202667pt;}
.ws5f{word-spacing:0.224000pt;}
.ws100{word-spacing:0.253333pt;}
.ws55{word-spacing:0.280000pt;}
.wsfc{word-spacing:0.304000pt;}
.ws5c{word-spacing:0.336000pt;}
.ws2b{word-spacing:0.354667pt;}
.wsa{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.392000pt;}
.ws1b{word-spacing:0.405333pt;}
.ws4e{word-spacing:0.448000pt;}
.ws3e{word-spacing:0.456000pt;}
.ws95{word-spacing:0.504000pt;}
.ws104{word-spacing:0.506667pt;}
.ws1f{word-spacing:0.557333pt;}
.wsb2{word-spacing:0.560000pt;}
.ws5d{word-spacing:0.616000pt;}
.ws1c{word-spacing:0.658667pt;}
.ws5e{word-spacing:0.672000pt;}
.ws35{word-spacing:0.709333pt;}
.ws79{word-spacing:0.728000pt;}
.wsc6{word-spacing:0.784000pt;}
.ws45{word-spacing:0.840000pt;}
.wsfe{word-spacing:0.861333pt;}
.wsa9{word-spacing:0.896000pt;}
.ws20{word-spacing:0.912000pt;}
.ws5b{word-spacing:0.952000pt;}
.ws26{word-spacing:0.962667pt;}
.ws90{word-spacing:1.008000pt;}
.ws87{word-spacing:1.064000pt;}
.ws1e{word-spacing:1.114667pt;}
.wsa4{word-spacing:1.120000pt;}
.ws7a{word-spacing:1.176000pt;}
.ws8d{word-spacing:1.194667pt;}
.ws12{word-spacing:1.216000pt;}
.wsd3{word-spacing:1.232000pt;}
.ws2e{word-spacing:1.266667pt;}
.ws6a{word-spacing:1.288000pt;}
.wsfd{word-spacing:1.368000pt;}
.ws81{word-spacing:1.400000pt;}
.ws7c{word-spacing:1.456000pt;}
.ws33{word-spacing:1.469333pt;}
.ws6d{word-spacing:1.568000pt;}
.ws10b{word-spacing:1.570667pt;}
.wsdf{word-spacing:1.624000pt;}
.ws7f{word-spacing:1.680000pt;}
.wsa6{word-spacing:1.736000pt;}
.ws2d{word-spacing:1.773333pt;}
.wsd{word-spacing:1.792000pt;}
.ws28{word-spacing:1.824000pt;}
.ws7b{word-spacing:1.848000pt;}
.ws1d{word-spacing:1.874667pt;}
.wse0{word-spacing:1.904000pt;}
.ws9f{word-spacing:1.960000pt;}
.ws25{word-spacing:1.976000pt;}
.ws7d{word-spacing:2.016000pt;}
.ws109{word-spacing:2.026667pt;}
.wsbc{word-spacing:2.090667pt;}
.ws47{word-spacing:2.128000pt;}
.wse6{word-spacing:2.178667pt;}
.ws4d{word-spacing:2.184000pt;}
.ws30{word-spacing:2.229333pt;}
.ws7e{word-spacing:2.240000pt;}
.wsa3{word-spacing:2.296000pt;}
.ws10{word-spacing:2.330667pt;}
.wsca{word-spacing:2.352000pt;}
.wsb6{word-spacing:2.408000pt;}
.wscd{word-spacing:2.426667pt;}
.ws66{word-spacing:2.464000pt;}
.wsb4{word-spacing:2.520000pt;}
.ws4{word-spacing:2.538667pt;}
.ws78{word-spacing:2.576000pt;}
.wsf8{word-spacing:2.584000pt;}
.ws50{word-spacing:2.632000pt;}
.ws16{word-spacing:2.634667pt;}
.wsde{word-spacing:2.688000pt;}
.wsd2{word-spacing:2.744000pt;}
.ws86{word-spacing:2.800000pt;}
.wsd0{word-spacing:2.856000pt;}
.wse2{word-spacing:2.888000pt;}
.ws97{word-spacing:2.912000pt;}
.ws107{word-spacing:2.938667pt;}
.ws85{word-spacing:3.024000pt;}
.wsd7{word-spacing:3.080000pt;}
.ws3d{word-spacing:3.090667pt;}
.ws92{word-spacing:3.136000pt;}
.wsf{word-spacing:3.141333pt;}
.wse{word-spacing:3.192000pt;}
.ws4f{word-spacing:3.248000pt;}
.wse1{word-spacing:3.304000pt;}
.wsc9{word-spacing:3.360000pt;}
.ws6b{word-spacing:3.416000pt;}
.ws40{word-spacing:3.472000pt;}
.ws41{word-spacing:3.528000pt;}
.ws60{word-spacing:3.976000pt;}
.ws8c{word-spacing:5.712000pt;}
.ws1{word-spacing:5.729067pt;}
.wsba{word-spacing:30.725333pt;}
.ws76{word-spacing:67.162667pt;}
.ws71{word-spacing:71.680000pt;}
.ws73{word-spacing:79.968000pt;}
.wsc3{word-spacing:149.920000pt;}
.ws9c{word-spacing:217.168000pt;}
.ws9a{word-spacing:217.280000pt;}
.wsaf{word-spacing:245.541333pt;}
.wsb1{word-spacing:251.664000pt;}
.wsc2{word-spacing:310.186667pt;}
.wsc5{word-spacing:311.466667pt;}
.wsc4{word-spacing:430.400000pt;}
.wsc1{word-spacing:446.720000pt;}
.ws14{word-spacing:1839.675200pt;}
._27{margin-left:-255.920000pt;}
._24{margin-left:-243.898667pt;}
._20{margin-left:-90.234667pt;}
._22{margin-left:-87.509333pt;}
._21{margin-left:-83.664000pt;}
._15{margin-left:-43.269333pt;}
._26{margin-left:-19.320000pt;}
._25{margin-left:-18.088000pt;}
._8{margin-left:-16.365333pt;}
._9{margin-left:-14.997333pt;}
._29{margin-left:-14.065600pt;}
._28{margin-left:-12.488000pt;}
._e{margin-left:-11.045333pt;}
._13{margin-left:-10.122667pt;}
._c{margin-left:-9.120000pt;}
._1{margin-left:-8.064000pt;}
._b{margin-left:-6.882667pt;}
._0{margin-left:-5.980800pt;}
._d{margin-left:-5.059200pt;}
._12{margin-left:-4.097059pt;}
._a{margin-left:-3.148800pt;}
._3{margin-left:-2.186667pt;}
._2{margin-left:-1.071467pt;}
._7{width:1.411200pt;}
._4{width:2.512533pt;}
._19{width:3.446254pt;}
._f{width:4.524117pt;}
._1a{width:6.140267pt;}
._14{width:7.986667pt;}
._11{width:9.170667pt;}
._10{width:10.725952pt;}
._18{width:21.616000pt;}
._17{width:23.034667pt;}
._16{width:29.456000pt;}
._5{width:41.472000pt;}
._1b{width:84.896000pt;}
._1c{width:86.613333pt;}
._1f{width:87.621333pt;}
._1e{width:91.018667pt;}
._1d{width:96.469333pt;}
._6{width:102.506667pt;}
._2b{width:214.293333pt;}
._23{width:237.290667pt;}
._2a{width:353.493333pt;}
.fs10{font-size:26.133333pt;}
.fs5{font-size:28.000000pt;}
.fs7{font-size:29.866667pt;}
.fs9{font-size:32.000000pt;}
.fs12{font-size:35.466667pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:38.000000pt;}
.fse{font-size:39.200000pt;}
.fsf{font-size:42.000000pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fsb{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:218.666667pt;}
.fs0{font-size:672.000000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:1.992800pt;}
.y133{bottom:1.996533pt;}
.y113{bottom:1.997600pt;}
.y12b{bottom:15.142400pt;}
.y14b{bottom:19.935867pt;}
.y69{bottom:47.240267pt;}
.y11{bottom:47.244000pt;}
.y46{bottom:47.393867pt;}
.y45{bottom:47.394000pt;}
.yfb{bottom:47.688800pt;}
.y112{bottom:48.815467pt;}
.y10{bottom:57.910667pt;}
.yfa{bottom:58.888800pt;}
.yf{bottom:76.669733pt;}
.ye{bottom:98.675067pt;}
.y139{bottom:106.675067pt;}
.yd{bottom:109.341733pt;}
.ya7{bottom:110.326000pt;}
.y16d{bottom:111.760667pt;}
.y146{bottom:111.777600pt;}
.ydc{bottom:111.777733pt;}
.y20f{bottom:119.381867pt;}
.yc{bottom:120.008400pt;}
.y16c{bottom:123.099200pt;}
.ya6{bottom:124.992667pt;}
.y1cd{bottom:125.232400pt;}
.ydb{bottom:127.722267pt;}
.yb{bottom:130.675067pt;}
.y68{bottom:132.283467pt;}
.y20e{bottom:132.610267pt;}
.y16b{bottom:134.437867pt;}
.y1cc{bottom:138.704000pt;}
.ya5{bottom:139.659333pt;}
.yda{bottom:143.666933pt;}
.y20d{bottom:145.838667pt;}
.y67{bottom:146.950133pt;}
.y1cb{bottom:152.175600pt;}
.ya{bottom:152.680267pt;}
.ya4{bottom:154.326000pt;}
.y111{bottom:158.631467pt;}
.ye7{bottom:159.611600pt;}
.yd9{bottom:159.611733pt;}
.y66{bottom:161.616800pt;}
.y9{bottom:163.880267pt;}
.y1ca{bottom:165.647333pt;}
.ya3{bottom:168.992667pt;}
.y8{bottom:174.546933pt;}
.ye6{bottom:175.556267pt;}
.yd8{bottom:175.556400pt;}
.y65{bottom:176.283467pt;}
.y1c9{bottom:179.118933pt;}
.ya2{bottom:183.659333pt;}
.y16e{bottom:184.402667pt;}
.y20c{bottom:185.523733pt;}
.y7{bottom:189.526533pt;}
.y64{bottom:190.950133pt;}
.ye5{bottom:191.500933pt;}
.yd7{bottom:191.501067pt;}
.y1c8{bottom:192.590533pt;}
.ya1{bottom:198.326000pt;}
.y20b{bottom:198.752000pt;}
.y6{bottom:200.726533pt;}
.y63{bottom:205.616800pt;}
.y1c7{bottom:206.062267pt;}
.ye4{bottom:207.445600pt;}
.yd6{bottom:207.445733pt;}
.y20a{bottom:211.980400pt;}
.ya0{bottom:212.992667pt;}
.y5{bottom:219.485600pt;}
.y1c6{bottom:219.534000pt;}
.y62{bottom:220.283467pt;}
.ye3{bottom:223.390267pt;}
.yd5{bottom:223.390400pt;}
.y209{bottom:225.208800pt;}
.y9f{bottom:227.659333pt;}
.y4{bottom:230.685600pt;}
.yf0{bottom:232.923467pt;}
.y1c5{bottom:233.005600pt;}
.y61{bottom:234.950133pt;}
.y208{bottom:238.437067pt;}
.y145{bottom:239.334933pt;}
.yd4{bottom:239.335067pt;}
.y9e{bottom:242.326000pt;}
.y1c4{bottom:246.477200pt;}
.y60{bottom:249.616800pt;}
.y44{bottom:250.862933pt;}
.y207{bottom:251.665333pt;}
.yd3{bottom:255.279600pt;}
.ye2{bottom:255.279733pt;}
.y9d{bottom:256.992667pt;}
.y1c3{bottom:259.948933pt;}
.y206{bottom:264.893733pt;}
.y43{bottom:265.309067pt;}
.y144{bottom:271.224267pt;}
.yd2{bottom:271.224400pt;}
.y9c{bottom:271.659333pt;}
.y1c2{bottom:273.420533pt;}
.y42{bottom:275.975733pt;}
.y205{bottom:278.122133pt;}
.y5f{bottom:279.955333pt;}
.y9b{bottom:286.326000pt;}
.y143{bottom:287.168933pt;}
.yd1{bottom:287.169067pt;}
.y5e{bottom:289.955333pt;}
.y204{bottom:291.350400pt;}
.y41{bottom:297.980933pt;}
.y5d{bottom:299.955333pt;}
.y9a{bottom:300.992667pt;}
.y142{bottom:303.113600pt;}
.yd0{bottom:303.113733pt;}
.y203{bottom:304.578800pt;}
.y1c1{bottom:309.569333pt;}
.y40{bottom:310.780933pt;}
.y99{bottom:315.659333pt;}
.y202{bottom:317.807067pt;}
.ycf{bottom:319.058400pt;}
.y187{bottom:319.686267pt;}
.y3f{bottom:323.580933pt;}
.y98{bottom:330.326000pt;}
.y201{bottom:331.035467pt;}
.y5c{bottom:332.632533pt;}
.yce{bottom:335.003067pt;}
.y3e{bottom:336.380933pt;}
.y148{bottom:341.920267pt;}
.y200{bottom:344.263867pt;}
.y97{bottom:344.992667pt;}
.y3d{bottom:349.180933pt;}
.ycd{bottom:350.947733pt;}
.y147{bottom:353.258800pt;}
.y1ff{bottom:357.492133pt;}
.y1c0{bottom:357.646667pt;}
.y96{bottom:359.659333pt;}
.y3c{bottom:361.980933pt;}
.ycc{bottom:366.892400pt;}
.y1fe{bottom:370.720533pt;}
.y1bf{bottom:373.834667pt;}
.y95{bottom:374.326000pt;}
.y3b{bottom:374.780933pt;}
.y14a{bottom:380.914667pt;}
.ycb{bottom:382.836933pt;}
.y1fd{bottom:383.948800pt;}
.y3a{bottom:387.580933pt;}
.y94{bottom:388.992667pt;}
.y1be{bottom:390.022533pt;}
.y1fc{bottom:397.177200pt;}
.ye1{bottom:398.781600pt;}
.yca{bottom:398.781733pt;}
.y149{bottom:400.850533pt;}
.y93{bottom:403.659333pt;}
.y1bd{bottom:406.210533pt;}
.y39{bottom:408.710267pt;}
.y150{bottom:410.267333pt;}
.y1fb{bottom:410.405600pt;}
.ye0{bottom:414.726267pt;}
.yc9{bottom:414.726400pt;}
.y92{bottom:418.326000pt;}
.y175{bottom:421.810267pt;}
.y38{bottom:422.043600pt;}
.y1bc{bottom:422.398533pt;}
.y1fa{bottom:423.633867pt;}
.yc8{bottom:430.671067pt;}
.y91{bottom:432.992667pt;}
.y174{bottom:433.148933pt;}
.y1f9{bottom:436.862267pt;}
.y173{bottom:444.487467pt;}
.yc7{bottom:446.615733pt;}
.y90{bottom:447.659333pt;}
.y1f8{bottom:450.090667pt;}
.y37{bottom:450.495067pt;}
.y172{bottom:455.826000pt;}
.y8f{bottom:462.326000pt;}
.yc6{bottom:462.560400pt;}
.y1f7{bottom:463.318933pt;}
.y171{bottom:467.164667pt;}
.y59{bottom:467.378000pt;}
.y14f{bottom:467.490000pt;}
.y1bb{bottom:470.475867pt;}
.y11f{bottom:475.639067pt;}
.y1f6{bottom:476.547333pt;}
.y36{bottom:476.813200pt;}
.y8e{bottom:476.992667pt;}
.yc5{bottom:478.505067pt;}
.y1ba{bottom:486.663867pt;}
.y11e{bottom:486.977600pt;}
.y35{bottom:488.013200pt;}
.y1f5{bottom:489.775600pt;}
.y151{bottom:489.815333pt;}
.y8d{bottom:491.659333pt;}
.yc4{bottom:494.449600pt;}
.y176{bottom:495.161333pt;}
.y58{bottom:500.721867pt;}
.y1b9{bottom:502.851867pt;}
.y34{bottom:502.992800pt;}
.y1f4{bottom:503.004000pt;}
.y8c{bottom:506.326000pt;}
.y177{bottom:508.592400pt;}
.ydf{bottom:510.394267pt;}
.yc3{bottom:510.394400pt;}
.y33{bottom:514.192800pt;}
.y57{bottom:515.388533pt;}
.y1f3{bottom:516.232400pt;}
.y1b8{bottom:519.039733pt;}
.y8b{bottom:520.992667pt;}
.yde{bottom:526.338933pt;}
.yc2{bottom:526.339067pt;}
.y32{bottom:529.172267pt;}
.y1f2{bottom:529.460667pt;}
.y56{bottom:530.055200pt;}
.y1b7{bottom:535.227733pt;}
.y8a{bottom:535.659333pt;}
.y31{bottom:540.372267pt;}
.yc1{bottom:542.283733pt;}
.y1f1{bottom:542.689067pt;}
.y55{bottom:544.721867pt;}
.y17b{bottom:548.596400pt;}
.y16a{bottom:549.667867pt;}
.y89{bottom:550.326000pt;}
.y1b6{bottom:551.415733pt;}
.y30{bottom:555.351867pt;}
.y1f0{bottom:555.917333pt;}
.yc0{bottom:558.228400pt;}
.y54{bottom:559.388533pt;}
.y152{bottom:562.102000pt;}
.y88{bottom:564.992667pt;}
.y182{bottom:565.903067pt;}
.y2f{bottom:566.551733pt;}
.y1b5{bottom:567.603733pt;}
.y1ef{bottom:569.145733pt;}
.ybf{bottom:574.173067pt;}
.y153{bottom:577.987333pt;}
.y87{bottom:579.659333pt;}
.y2e{bottom:581.531333pt;}
.y1ee{bottom:582.374000pt;}
.y1b4{bottom:583.791600pt;}
.y53{bottom:587.734933pt;}
.ybe{bottom:590.117733pt;}
.yea{bottom:591.635067pt;}
.y2d{bottom:592.731333pt;}
.y86{bottom:594.326000pt;}
.y1ed{bottom:595.602400pt;}
.y1b3{bottom:599.979600pt;}
.y155{bottom:600.088667pt;}
.y52{bottom:602.401600pt;}
.y185{bottom:602.703067pt;}
.ye9{bottom:602.973733pt;}
.y169{bottom:603.395867pt;}
.y157{bottom:603.402000pt;}
.ybd{bottom:606.062400pt;}
.y2c{bottom:607.710800pt;}
.y1ec{bottom:608.830800pt;}
.y85{bottom:608.992667pt;}
.ye8{bottom:614.312267pt;}
.y1b2{bottom:616.167600pt;}
.y18b{bottom:616.647600pt;}
.y51{bottom:617.068267pt;}
.y2b{bottom:618.910800pt;}
.ybc{bottom:622.006933pt;}
.y1eb{bottom:622.059067pt;}
.y84{bottom:623.659333pt;}
.y18a{bottom:627.986133pt;}
.y50{bottom:631.734933pt;}
.y1b1{bottom:632.355600pt;}
.y2a{bottom:633.890400pt;}
.y156{bottom:634.211333pt;}
.y154{bottom:634.379333pt;}
.y17a{bottom:634.383067pt;}
.y1ea{bottom:635.287467pt;}
.ybb{bottom:637.951600pt;}
.y83{bottom:638.326000pt;}
.y189{bottom:639.324800pt;}
.yef{bottom:642.620000pt;}
.y29{bottom:645.090400pt;}
.y1e9{bottom:648.515733pt;}
.y1b0{bottom:648.543600pt;}
.y188{bottom:650.663333pt;}
.y82{bottom:652.992667pt;}
.yba{bottom:653.896267pt;}
.y103{bottom:655.355600pt;}
.y28{bottom:660.069867pt;}
.y4f{bottom:660.081333pt;}
.y181{bottom:660.089733pt;}
.y1e8{bottom:661.744133pt;}
.y1af{bottom:664.731600pt;}
.y170{bottom:666.633067pt;}
.y102{bottom:666.694133pt;}
.y81{bottom:667.659333pt;}
.yb9{bottom:669.841067pt;}
.y27{bottom:671.269867pt;}
.y4e{bottom:674.748000pt;}
.y1e7{bottom:674.972533pt;}
.y14e{bottom:677.835333pt;}
.y101{bottom:678.032800pt;}
.yfd{bottom:678.054133pt;}
.y186{bottom:679.501333pt;}
.y1ae{bottom:680.919467pt;}
.y80{bottom:682.326000pt;}
.yb8{bottom:685.785600pt;}
.y26{bottom:686.249467pt;}
.y1e6{bottom:688.200800pt;}
.y100{bottom:689.371333pt;}
.y4d{bottom:689.414667pt;}
.y7f{bottom:696.992667pt;}
.y1ad{bottom:697.107467pt;}
.y25{bottom:697.449467pt;}
.y184{bottom:699.809733pt;}
.yff{bottom:700.710000pt;}
.y179{bottom:701.169733pt;}
.y1e5{bottom:701.429200pt;}
.yb7{bottom:701.730267pt;}
.y4c{bottom:704.081333pt;}
.y7e{bottom:711.659333pt;}
.yfe{bottom:712.048533pt;}
.y24{bottom:712.428933pt;}
.y1ac{bottom:713.295467pt;}
.y1e4{bottom:714.657600pt;}
.y130{bottom:716.409467pt;}
.y121{bottom:717.637867pt;}
.yb6{bottom:717.674933pt;}
.yf3{bottom:720.834267pt;}
.y23{bottom:723.628933pt;}
.y7d{bottom:726.326000pt;}
.yf9{bottom:726.784800pt;}
.y12f{bottom:727.748000pt;}
.y1e3{bottom:727.885867pt;}
.yf4{bottom:728.331600pt;}
.y120{bottom:728.976400pt;}
.y1ab{bottom:729.483333pt;}
.yf2{bottom:732.034267pt;}
.y4b{bottom:732.427867pt;}
.yb5{bottom:733.619600pt;}
.yf8{bottom:737.984800pt;}
.y22{bottom:738.608533pt;}
.y110{bottom:740.056000pt;}
.y7c{bottom:740.992667pt;}
.y1e2{bottom:741.114267pt;}
.yf1{bottom:743.234267pt;}
.y1aa{bottom:745.671333pt;}
.y4a{bottom:747.094533pt;}
.yf7{bottom:749.184800pt;}
.ydd{bottom:749.564267pt;}
.y21{bottom:749.808533pt;}
.y1e1{bottom:754.342667pt;}
.y7b{bottom:755.659333pt;}
.y132{bottom:755.716000pt;}
.y12a{bottom:757.038667pt;}
.y11a{bottom:758.192400pt;}
.y180{bottom:758.303067pt;}
.yf6{bottom:760.384800pt;}
.y12d{bottom:761.373067pt;}
.y49{bottom:761.761200pt;}
.y1a9{bottom:761.859333pt;}
.y20{bottom:764.788000pt;}
.yb4{bottom:765.508933pt;}
.y19a{bottom:765.509067pt;}
.y1e0{bottom:767.570933pt;}
.y7a{bottom:770.326000pt;}
.y14d{bottom:770.543333pt;}
.yf5{bottom:771.584800pt;}
.y131{bottom:771.621867pt;}
.y129{bottom:772.172933pt;}
.y12c{bottom:772.181067pt;}
.y1f{bottom:775.988000pt;}
.y48{bottom:776.427867pt;}
.y1a8{bottom:778.047333pt;}
.y11d{bottom:779.276400pt;}
.y1df{bottom:780.799200pt;}
.y199{bottom:781.453733pt;}
.y10c{bottom:784.368267pt;}
.y79{bottom:784.992667pt;}
.y168{bottom:786.233200pt;}
.y138{bottom:787.693200pt;}
.y128{bottom:789.878267pt;}
.y1e{bottom:790.967467pt;}
.y47{bottom:791.094533pt;}
.y10b{bottom:793.729600pt;}
.y1de{bottom:794.027600pt;}
.y1a7{bottom:794.235333pt;}
.y198{bottom:797.398400pt;}
.y78{bottom:799.659333pt;}
.y183{bottom:800.529733pt;}
.y1d{bottom:802.167600pt;}
.y10a{bottom:803.090933pt;}
.y1dd{bottom:807.256000pt;}
.y15b{bottom:809.015333pt;}
.y1a6{bottom:810.423333pt;}
.y197{bottom:813.343067pt;}
.y1c{bottom:813.367467pt;}
.y16f{bottom:814.344800pt;}
.y108{bottom:815.588267pt;}
.y1dc{bottom:820.484267pt;}
.y17f{bottom:821.076400pt;}
.y11c{bottom:823.301733pt;}
.y127{bottom:824.066267pt;}
.y107{bottom:824.949600pt;}
.y15c{bottom:825.096667pt;}
.y15a{bottom:825.106000pt;}
.y1a5{bottom:826.611333pt;}
.y1b{bottom:828.347067pt;}
.y196{bottom:829.287733pt;}
.y77{bottom:829.997867pt;}
.yad{bottom:830.362267pt;}
.y1db{bottom:833.712667pt;}
.y159{bottom:834.103333pt;}
.y109{bottom:834.301600pt;}
.y119{bottom:837.824400pt;}
.y167{bottom:837.934533pt;}
.y1a{bottom:839.547067pt;}
.y137{bottom:840.575867pt;}
.yac{bottom:841.028933pt;}
.y1a4{bottom:842.799200pt;}
.y76{bottom:844.664667pt;}
.y195{bottom:845.232400pt;}
.y1da{bottom:846.940933pt;}
.y106{bottom:847.302933pt;}
.y12e{bottom:849.478400pt;}
.y15d{bottom:850.427333pt;}
.yab{bottom:851.695600pt;}
.y19{bottom:854.526533pt;}
.y105{bottom:856.664267pt;}
.y158{bottom:856.895333pt;}
.y1a3{bottom:858.987200pt;}
.y75{bottom:859.331333pt;}
.y126{bottom:860.120933pt;}
.y1d9{bottom:860.169333pt;}
.y194{bottom:861.177067pt;}
.yaa{bottom:862.362267pt;}
.y17e{bottom:862.863067pt;}
.y164{bottom:864.492667pt;}
.y104{bottom:866.025600pt;}
.y118{bottom:868.689733pt;}
.y11b{bottom:869.147067pt;}
.ya9{bottom:873.028933pt;}
.y1d8{bottom:873.397733pt;}
.y74{bottom:873.998000pt;}
.y163{bottom:874.134000pt;}
.y1a2{bottom:875.175200pt;}
.yee{bottom:875.545867pt;}
.y193{bottom:877.121600pt;}
.y5b{bottom:879.118133pt;}
.y18{bottom:880.844667pt;}
.y15e{bottom:881.703333pt;}
.ya8{bottom:883.695600pt;}
.y162{bottom:886.388667pt;}
.y1d7{bottom:886.626000pt;}
.yed{bottom:886.745867pt;}
.y73{bottom:888.664667pt;}
.y10d{bottom:890.684267pt;}
.y1a1{bottom:891.363200pt;}
.y192{bottom:893.066267pt;}
.y125{bottom:893.823600pt;}
.y17d{bottom:894.023067pt;}
.y136{bottom:894.279867pt;}
.yec{bottom:897.945867pt;}
.y117{bottom:899.097733pt;}
.y1d6{bottom:899.854400pt;}
.y72{bottom:903.331333pt;}
.y178{bottom:903.783067pt;}
.y10e{bottom:904.758933pt;}
.y5a{bottom:905.784800pt;}
.y17{bottom:907.162800pt;}
.y1a0{bottom:907.551200pt;}
.y191{bottom:909.010933pt;}
.y1d5{bottom:913.082667pt;}
.y165{bottom:913.996667pt;}
.yb3{bottom:913.998000pt;}
.y141{bottom:917.099333pt;}
.y71{bottom:917.998000pt;}
.y166{bottom:920.875333pt;}
.y3{bottom:920.977067pt;}
.y15f{bottom:921.435333pt;}
.y19f{bottom:923.739067pt;}
.yb2{bottom:924.664667pt;}
.y17c{bottom:924.796400pt;}
.y190{bottom:924.955600pt;}
.y160{bottom:926.223333pt;}
.y1d4{bottom:926.311067pt;}
.y124{bottom:928.263600pt;}
.y140{bottom:928.299333pt;}
.y10f{bottom:929.492267pt;}
.y116{bottom:929.935067pt;}
.y70{bottom:932.664667pt;}
.y16{bottom:933.480933pt;}
.yb1{bottom:935.331333pt;}
.y13f{bottom:939.499333pt;}
.y1d3{bottom:939.539333pt;}
.y19e{bottom:939.927067pt;}
.y18f{bottom:940.900267pt;}
.yb0{bottom:945.998000pt;}
.y6f{bottom:947.331333pt;}
.y135{bottom:947.871867pt;}
.y13e{bottom:950.158000pt;}
.y1d2{bottom:952.767733pt;}
.y19d{bottom:956.115067pt;}
.yaf{bottom:956.664667pt;}
.y18e{bottom:956.844933pt;}
.y15{bottom:959.798933pt;}
.y115{bottom:959.895067pt;}
.y6e{bottom:961.998000pt;}
.y13d{bottom:962.338000pt;}
.y1{bottom:963.779600pt;}
.y123{bottom:964.290267pt;}
.y1d1{bottom:965.996133pt;}
.y19c{bottom:972.303067pt;}
.y18d{bottom:972.789733pt;}
.y13c{bottom:973.575333pt;}
.y14c{bottom:974.168667pt;}
.y6d{bottom:976.664667pt;}
.y1d0{bottom:979.224400pt;}
.y161{bottom:981.598000pt;}
.y13b{bottom:984.775333pt;}
.y14{bottom:986.117067pt;}
.y19b{bottom:988.491067pt;}
.y114{bottom:990.564400pt;}
.y6c{bottom:991.331333pt;}
.y1cf{bottom:992.452800pt;}
.yeb{bottom:994.107200pt;}
.y13{bottom:997.317067pt;}
.y122{bottom:997.656933pt;}
.y13a{bottom:998.094000pt;}
.y134{bottom:999.811867pt;}
.y18c{bottom:1004.679067pt;}
.y1ce{bottom:1005.681200pt;}
.y6b{bottom:1005.998000pt;}
.y12{bottom:1008.517067pt;}
.y2{bottom:1060.536400pt;}
.y6a{bottom:1068.661333pt;}
.yae{bottom:1068.661467pt;}
.h14{height:23.392000pt;}
.h17{height:27.290667pt;}
.h6{height:27.402667pt;}
.h7{height:27.664000pt;}
.ha{height:29.056000pt;}
.h20{height:31.189333pt;}
.h24{height:31.958000pt;}
.h5{height:33.898667pt;}
.h1f{height:34.197333pt;}
.h26{height:36.226667pt;}
.h11{height:36.229079pt;}
.h10{height:36.608000pt;}
.h8{height:38.741333pt;}
.hb{height:38.986667pt;}
.h1b{height:40.042667pt;}
.hc{height:41.162667pt;}
.h13{height:41.184000pt;}
.h12{height:41.664000pt;}
.h25{height:42.610667pt;}
.hf{height:43.472000pt;}
.he{height:43.978667pt;}
.h9{height:45.760000pt;}
.h16{height:47.096000pt;}
.h15{height:48.048000pt;}
.h1c{height:48.608000pt;}
.hd{height:62.378667pt;}
.h4{height:66.549333pt;}
.h3{height:160.501333pt;}
.h1a{height:258.141333pt;}
.h1d{height:259.465333pt;}
.h19{height:275.125333pt;}
.h23{height:335.680000pt;}
.h18{height:372.560000pt;}
.h2{height:493.248000pt;}
.h22{height:520.018667pt;}
.h1e{height:634.265333pt;}
.h21{height:830.777333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:461.800000pt;}
.w5{width:484.650667pt;}
.w4{width:515.840000pt;}
.w3{width:543.109333pt;}
.w6{width:565.145333pt;}
.w7{width:661.440000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:2.666400pt;}
.x60{left:5.722400pt;}
.x3b{left:7.998400pt;}
.x32{left:36.185333pt;}
.x1{left:37.795333pt;}
.x2{left:50.110267pt;}
.x4{left:66.141733pt;}
.x63{left:68.797067pt;}
.x61{left:71.772933pt;}
.x1c{left:74.200800pt;}
.x71{left:76.054800pt;}
.x1d{left:77.526800pt;}
.x70{left:81.259867pt;}
.x5{left:85.039333pt;}
.x34{left:89.003600pt;}
.x7{left:103.937067pt;}
.x1f{left:109.493733pt;}
.x26{left:113.278133pt;}
.x4b{left:114.277333pt;}
.x1a{left:115.275600pt;}
.x72{left:116.580400pt;}
.x78{left:118.132400pt;}
.x3a{left:125.296000pt;}
.x42{left:138.930667pt;}
.x22{left:142.913200pt;}
.x3e{left:144.130400pt;}
.x79{left:145.913067pt;}
.x28{left:148.041600pt;}
.x29{left:149.337733pt;}
.x25{left:151.845067pt;}
.x44{left:152.935600pt;}
.x46{left:154.525333pt;}
.x1e{left:155.980533pt;}
.x21{left:162.856667pt;}
.x2a{left:163.833200pt;}
.x3f{left:164.757067pt;}
.x23{left:166.384667pt;}
.x48{left:169.477333pt;}
.x73{left:172.220133pt;}
.x7a{left:182.766667pt;}
.x41{left:184.712667pt;}
.x20{left:196.167867pt;}
.x27{left:198.884400pt;}
.x74{left:207.644800pt;}
.x7b{left:212.786000pt;}
.x47{left:214.220133pt;}
.x38{left:219.418267pt;}
.x49{left:228.408267pt;}
.x3d{left:235.911733pt;}
.x75{left:237.534933pt;}
.x1b{left:244.724400pt;}
.x7c{left:245.969733pt;}
.x45{left:248.170667pt;}
.x4c{left:250.960667pt;}
.x39{left:270.088933pt;}
.x4f{left:275.936667pt;}
.x7d{left:285.102933pt;}
.x50{left:295.210000pt;}
.x76{left:308.538667pt;}
.x7e{left:311.688133pt;}
.x51{left:317.348667pt;}
.x5f{left:318.954400pt;}
.x16{left:322.251733pt;}
.x2d{left:325.993333pt;}
.x4e{left:331.740667pt;}
.xa{left:337.325067pt;}
.x15{left:351.888400pt;}
.x77{left:367.145733pt;}
.xe{left:369.500800pt;}
.x2c{left:382.838533pt;}
.x19{left:385.217467pt;}
.xf{left:397.163467pt;}
.x9{left:399.702800pt;}
.x5e{left:403.135733pt;}
.x2b{left:406.299200pt;}
.x64{left:408.170400pt;}
.x7f{left:413.001600pt;}
.x17{left:418.390267pt;}
.x69{left:421.417333pt;}
.x52{left:425.923333pt;}
.x33{left:428.296000pt;}
.x31{left:430.075867pt;}
.x59{left:444.412667pt;}
.xc{left:446.882667pt;}
.x80{left:447.832133pt;}
.x35{left:456.158267pt;}
.x2f{left:459.727200pt;}
.x24{left:461.173600pt;}
.x5c{left:469.295333pt;}
.x5a{left:470.900667pt;}
.x5b{left:472.216667pt;}
.x36{left:474.983600pt;}
.x2e{left:476.148000pt;}
.x84{left:478.221200pt;}
.x57{left:480.364667pt;}
.x12{left:481.766133pt;}
.x58{left:488.102000pt;}
.x5d{left:499.626400pt;}
.x81{left:501.988933pt;}
.x37{left:512.316933pt;}
.x85{left:517.143467pt;}
.x6a{left:523.996267pt;}
.x13{left:527.053467pt;}
.x10{left:534.442933pt;}
.x67{left:536.330400pt;}
.x3c{left:541.109067pt;}
.x65{left:546.397067pt;}
.x53{left:548.358000pt;}
.x4a{left:558.914400pt;}
.x6b{left:561.040667pt;}
.x30{left:568.747867pt;}
.xb{left:570.538000pt;}
.x82{left:586.559733pt;}
.x55{left:592.346000pt;}
.x88{left:594.877333pt;}
.x86{left:595.778267pt;}
.x18{left:599.471867pt;}
.x89{left:601.046000pt;}
.x87{left:603.215467pt;}
.x6c{left:604.704933pt;}
.x3{left:605.787467pt;}
.x68{left:606.823733pt;}
.x54{left:608.502000pt;}
.x11{left:612.000267pt;}
.x14{left:614.520267pt;}
.x8{left:621.413600pt;}
.xd{left:623.613467pt;}
.x83{left:632.400000pt;}
.x43{left:635.119200pt;}
.x40{left:639.095733pt;}
.x56{left:643.791333pt;}
.x6d{left:645.667067pt;}
.x66{left:647.343733pt;}
.x4d{left:658.706000pt;}
.x6e{left:697.794133pt;}
.x6{left:699.379867pt;}
.x6f{left:723.348933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  