
    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_7378d399c6cf6cacc346fb16.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734863;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_396013a9e4b4523b6a60476a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_0b34ddab87579f81b083c2ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118000;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_050351ba47fe5e1085d7db87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_feb0767a7f71655898702f5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_65d63f7ddfb11344b919367e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_8c5b56884d1a5e2211cad834.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_d2080f21b36d1d9ecfe3e998.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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;}
.m11f{transform:matrix(0.242977,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.242977,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.242977,0.000000,-0.051979,0.244537,0,0);}
.m239{transform:matrix(0.243079,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243079,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243079,0.000000,-0.051979,0.244537,0,0);}
.m14d{transform:matrix(0.243128,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243128,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243128,0.000000,-0.051979,0.244537,0,0);}
.m15c{transform:matrix(0.243231,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243231,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243231,0.000000,-0.051979,0.244537,0,0);}
.m1e2{transform:matrix(0.243241,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243241,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243241,0.000000,-0.051979,0.244537,0,0);}
.m1cb{transform:matrix(0.243316,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243316,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243316,0.000000,-0.051979,0.244537,0,0);}
.m198{transform:matrix(0.243414,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243414,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243414,0.000000,-0.051979,0.244537,0,0);}
.m119{transform:matrix(0.243436,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243436,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243436,0.000000,-0.051979,0.244537,0,0);}
.m1d4{transform:matrix(0.243478,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243478,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243478,0.000000,-0.051979,0.244537,0,0);}
.m19b{transform:matrix(0.243698,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243698,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243698,0.000000,-0.051979,0.244537,0,0);}
.m13d{transform:matrix(0.243744,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243744,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243744,0.000000,-0.051979,0.244537,0,0);}
.m139{transform:matrix(0.243815,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243815,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243815,0.000000,-0.051979,0.244537,0,0);}
.m236{transform:matrix(0.243862,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243862,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243862,0.000000,-0.051979,0.244537,0,0);}
.m17f{transform:matrix(0.243925,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243925,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243925,0.000000,-0.051979,0.244537,0,0);}
.m240{transform:matrix(0.243952,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243952,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243952,0.000000,-0.051979,0.244537,0,0);}
.m23e{transform:matrix(0.243972,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243972,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243972,0.000000,-0.051979,0.244537,0,0);}
.m244{transform:matrix(0.243979,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243979,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243979,0.000000,-0.051979,0.244537,0,0);}
.m14c{transform:matrix(0.243984,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.243984,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.243984,0.000000,-0.051979,0.244537,0,0);}
.m118{transform:matrix(0.244214,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244214,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244214,0.000000,-0.051979,0.244537,0,0);}
.m209{transform:matrix(0.244312,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244312,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244312,0.000000,-0.051979,0.244537,0,0);}
.m19e{transform:matrix(0.244380,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244380,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244380,0.000000,-0.051979,0.244537,0,0);}
.md2{transform:matrix(0.244392,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244392,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244392,0.000000,-0.051979,0.244537,0,0);}
.m23c{transform:matrix(0.244410,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244410,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244410,0.000000,-0.051979,0.244537,0,0);}
.m1c3{transform:matrix(0.244424,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244424,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244424,0.000000,-0.051979,0.244537,0,0);}
.maf{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m23a{transform:matrix(0.244566,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244566,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244566,0.000000,-0.051979,0.244537,0,0);}
.m208{transform:matrix(0.244571,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244571,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244571,0.000000,-0.051979,0.244537,0,0);}
.m121{transform:matrix(0.244686,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244686,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244686,0.000000,-0.051979,0.244537,0,0);}
.m199{transform:matrix(0.244701,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244701,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244701,0.000000,-0.051979,0.244537,0,0);}
.m1fa{transform:matrix(0.244723,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244723,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244723,0.000000,-0.051979,0.244537,0,0);}
.mf8{transform:matrix(0.244833,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244833,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244833,0.000000,-0.051979,0.244537,0,0);}
.m237{transform:matrix(0.244850,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244850,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244850,0.000000,-0.051979,0.244537,0,0);}
.m242{transform:matrix(0.245028,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.245028,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.245028,0.000000,-0.051979,0.244537,0,0);}
.m1d3{transform:matrix(0.246231,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.246231,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.246231,0.000000,-0.051979,0.244537,0,0);}
.m5a{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m1bb{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);}
.m226{transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247970,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);}
.m1e0{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b9{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.mde{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m5f{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248140,0.000000,0.000000,0.250000,0,0);}
.m1f1{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248158,0.000000,0.000000,0.250000,0,0);}
.m1ab{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m22f{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);}
.m20b{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);}
.m213{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);}
.m20a{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m1bf{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m1c8{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.m1dd{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m22d{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m1e1{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m21f{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.m19f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m238{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m1b7{transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m1bc{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m196{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m1d0{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m222{transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m1ef{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.m210{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);}
.m229{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.m21d{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.m1e3{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.m1be{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248712,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m1fe{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m20c{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.m1df{transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);}
.mbd{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);}
.m1ed{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1ca{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m1f8{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m228{transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m227{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.m14e{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);}
.m182{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m1d5{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.m11c{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);}
.m231{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m232{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);}
.mf2{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.m21c{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m20e{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m22e{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m225{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m211{transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m1c1{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m1f6{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.m1a7{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);}
.m3c{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m235{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);}
.m102{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m205{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m1a8{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m1a5{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m212{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m23f{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m23d{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m243{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m1e7{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m1ee{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m206{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);}
.m17b{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m1f7{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m203{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m214{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m1c4{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m1ff{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m1e5{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m1ec{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);}
.m19c{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m1c6{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m1ae{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m202{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m1a9{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m1e8{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1e9{transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);}
.m183{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);}
.m110{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m21a{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m20f{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m1dc{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m19d{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m1cc{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m23b{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m190{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m18f{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m6e{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);}
.ma2{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m230{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.mf0{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);}
.m1d7{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);}
.m29{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m1c2{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m207{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m201{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);}
.m1f0{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m217{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.md7{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);}
.m233{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m1d8{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m223{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m188{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);}
.m1ea{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m5c{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);}
.m1c7{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);}
.m1b1{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m1c5{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);}
.m8c{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.m2f{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m19a{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);}
.me9{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m1b0{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m1da{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m204{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);}
.m1cd{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m194{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m1a2{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m1aa{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);}
.m153{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);}
.m169{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m1fc{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);}
.m17c{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m1f3{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m1ce{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.ma7{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);}
.m1a0{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m219{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m1a1{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m1c9{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m18e{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m193{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m1e4{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m22b{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.meb{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);}
.m12f{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m1f2{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m1eb{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.mf5{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);}
.m144{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m1cf{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m220{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m241{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m1b5{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.md5{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m1b6{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m234{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m1ad{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m1de{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m1b8{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m1a3{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m1f5{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);}
.m224{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m215{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m1ac{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m22a{transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);}
.m135{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);}
.m197{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m1e6{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m1c0{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);}
.m1fd{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m21b{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m216{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m1af{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.m17a{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m20d{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m1d6{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m1b2{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);}
.m195{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m1f9{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);}
.m55{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m1fb{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m218{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.m21e{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m1f4{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m1a6{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);}
.m221{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m1d9{transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);}
.m22c{transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251574,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);}
.m1d1{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.m1bd{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m1b4{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m1b3{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.m1ba{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m1d2{transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251760,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m200{transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m75{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);}
.m1db{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.m1a4{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v4{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980600px;}
.v1{vertical-align:31.956000px;}
.ls77{letter-spacing:-7.740000px;}
.ls75{letter-spacing:-4.860000px;}
.ls58{letter-spacing:-3.005683px;}
.ls6b{letter-spacing:-2.378640px;}
.ls87{letter-spacing:-2.063820px;}
.ls89{letter-spacing:-1.860000px;}
.ls85{letter-spacing:-1.790976px;}
.ls82{letter-spacing:-1.680000px;}
.ls74{letter-spacing:-1.644060px;}
.ls2f{letter-spacing:-1.620000px;}
.ls68{letter-spacing:-1.594852px;}
.lsa{letter-spacing:-1.587000px;}
.ls15{letter-spacing:-1.560000px;}
.ls7a{letter-spacing:-1.511136px;}
.ls6e{letter-spacing:-1.504140px;}
.ls56{letter-spacing:-1.500000px;}
.ls7d{letter-spacing:-1.469160px;}
.ls30{letter-spacing:-1.440000px;}
.ls73{letter-spacing:-1.434180px;}
.ls48{letter-spacing:-1.380000px;}
.ls6c{letter-spacing:-1.343232px;}
.ls55{letter-spacing:-1.320000px;}
.ls81{letter-spacing:-1.294260px;}
.ls46{letter-spacing:-1.260000px;}
.ls6d{letter-spacing:-1.224300px;}
.ls54{letter-spacing:-1.200000px;}
.ls7b{letter-spacing:-1.175328px;}
.ls69{letter-spacing:-1.154340px;}
.ls72{letter-spacing:-1.140000px;}
.ls79{letter-spacing:-1.119360px;}
.ls8a{letter-spacing:-1.091376px;}
.ls39{letter-spacing:-1.080000px;}
.ls8b{letter-spacing:-1.063392px;}
.ls93{letter-spacing:-1.042788px;}
.ls7{letter-spacing:-1.020000px;}
.ls84{letter-spacing:-1.007424px;}
.ls17{letter-spacing:-0.960000px;}
.ls6a{letter-spacing:-0.923472px;}
.ls88{letter-spacing:-0.920107px;}
.ls5{letter-spacing:-0.918000px;}
.ls36{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.897000px;}
.ls3d{letter-spacing:-0.840000px;}
.ls76{letter-spacing:-0.797426px;}
.ls27{letter-spacing:-0.780000px;}
.ls62{letter-spacing:-0.736086px;}
.ls16{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.714000px;}
.ls4e{letter-spacing:-0.660000px;}
.ls3e{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.480000px;}
.ls83{letter-spacing:-0.429383px;}
.ls14{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.408000px;}
.ls61{letter-spacing:-0.368043px;}
.ls1c{letter-spacing:-0.360000px;}
.ls94{letter-spacing:-0.306702px;}
.ls2b{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.240000px;}
.ls6f{letter-spacing:-0.184021px;}
.ls20{letter-spacing:-0.180000px;}
.ls67{letter-spacing:-0.122681px;}
.ls1a{letter-spacing:-0.120000px;}
.ls92{letter-spacing:-0.061340px;}
.ls10{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000096px;}
.ls1f{letter-spacing:0.060000px;}
.ls95{letter-spacing:0.061340px;}
.ls3f{letter-spacing:0.102000px;}
.ls33{letter-spacing:0.120000px;}
.ls8f{letter-spacing:0.122681px;}
.ls5b{letter-spacing:0.174720px;}
.ls2d{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.184021px;}
.ls3c{letter-spacing:0.240000px;}
.ls8d{letter-spacing:0.244860px;}
.ls5a{letter-spacing:0.245362px;}
.ls44{letter-spacing:0.265920px;}
.ls41{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.306702px;}
.ls4c{letter-spacing:0.346320px;}
.ls37{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.368043px;}
.ls5c{letter-spacing:0.415920px;}
.ls2e{letter-spacing:0.420000px;}
.ls59{letter-spacing:0.429383px;}
.ls18{letter-spacing:0.480000px;}
.ls8e{letter-spacing:0.490724px;}
.ls51{letter-spacing:0.510000px;}
.ls13{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.613405px;}
.ls4a{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.672000px;}
.ls8c{letter-spacing:0.674745px;}
.ls3{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.768000px;}
.ls3a{letter-spacing:0.780000px;}
.ls45{letter-spacing:0.840000px;}
.ls96{letter-spacing:0.858767px;}
.ls65{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.960000px;}
.ls40{letter-spacing:1.020000px;}
.ls53{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.140000px;}
.ls1b{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.260000px;}
.ls50{letter-spacing:1.320000px;}
.ls4{letter-spacing:1.344000px;}
.ls5f{letter-spacing:1.380000px;}
.ls47{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.500000px;}
.ls70{letter-spacing:1.530000px;}
.ls32{letter-spacing:1.560000px;}
.ls42{letter-spacing:1.610405px;}
.lsc{letter-spacing:1.620000px;}
.ls52{letter-spacing:1.632000px;}
.ls1e{letter-spacing:1.680000px;}
.ls71{letter-spacing:1.734000px;}
.ls2c{letter-spacing:1.740000px;}
.ls31{letter-spacing:1.800000px;}
.ls4b{letter-spacing:1.860000px;}
.ls22{letter-spacing:1.920000px;}
.ls3b{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.040000px;}
.ls23{letter-spacing:2.100000px;}
.ls28{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.220000px;}
.ls7e{letter-spacing:2.280000px;}
.ls91{letter-spacing:2.340000px;}
.ls21{letter-spacing:2.400000px;}
.ls90{letter-spacing:2.460000px;}
.ls66{letter-spacing:2.520000px;}
.ls5d{letter-spacing:2.580000px;}
.ls64{letter-spacing:2.700000px;}
.lsd{letter-spacing:2.760000px;}
.ls86{letter-spacing:2.760322px;}
.ls80{letter-spacing:2.880000px;}
.ls1d{letter-spacing:2.940000px;}
.ls7f{letter-spacing:3.000000px;}
.ls49{letter-spacing:3.060000px;}
.ls1{letter-spacing:3.180000px;}
.ls26{letter-spacing:3.240000px;}
.ls7c{letter-spacing:3.480000px;}
.ls25{letter-spacing:4.380000px;}
.lse{letter-spacing:4.500000px;}
.ls0{letter-spacing:4.620000px;}
.ls5e{letter-spacing:5.040000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-36.696000px;}
.ws4e{word-spacing:-29.988000px;}
.wsb3{word-spacing:-28.356000px;}
.ws5{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.900000px;}
.ws2{word-spacing:-18.285000px;}
.ws78{word-spacing:-17.482036px;}
.wsb2{word-spacing:-17.420696px;}
.wsa0{word-spacing:-17.340000px;}
.ws5b{word-spacing:-17.236674px;}
.ws93{word-spacing:-17.160000px;}
.wsa7{word-spacing:-17.100000px;}
.ws82{word-spacing:-17.052653px;}
.ws90{word-spacing:-17.040000px;}
.wsb5{word-spacing:-16.745951px;}
.ws77{word-spacing:-16.684610px;}
.ws9f{word-spacing:-16.255227px;}
.ws4{word-spacing:-16.140000px;}
.wsb4{word-spacing:-15.840000px;}
.ws81{word-spacing:-15.457801px;}
.ws6{word-spacing:-15.060000px;}
.ws0{word-spacing:-14.688000px;}
.ws39{word-spacing:-13.968000px;}
.wsa8{word-spacing:-9.969300px;}
.ws4f{word-spacing:-9.724440px;}
.ws83{word-spacing:-8.570100px;}
.ws9e{word-spacing:-8.430180px;}
.ws91{word-spacing:-8.290260px;}
.ws94{word-spacing:-8.255280px;}
.wsa1{word-spacing:-7.660620px;}
.wsb{word-spacing:-7.038000px;}
.ws84{word-spacing:-6.856080px;}
.ws35{word-spacing:-6.630000px;}
.ws92{word-spacing:-6.604224px;}
.ws86{word-spacing:-6.436320px;}
.ws85{word-spacing:-5.400912px;}
.wsc4{word-spacing:-2.820000px;}
.ws1a{word-spacing:-2.640000px;}
.ws79{word-spacing:-2.637641px;}
.ws23{word-spacing:-2.580000px;}
.ws67{word-spacing:-2.576300px;}
.ws18{word-spacing:-2.520000px;}
.ws88{word-spacing:-2.514960px;}
.ws37{word-spacing:-2.460000px;}
.ws75{word-spacing:-2.280000px;}
.ws24{word-spacing:-2.220000px;}
.ws98{word-spacing:-2.208257px;}
.ws19{word-spacing:-2.160000px;}
.ws6c{word-spacing:-2.100000px;}
.wsc2{word-spacing:-2.085576px;}
.ws2b{word-spacing:-2.040000px;}
.ws80{word-spacing:-1.980000px;}
.ws8b{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.872000px;}
.ws47{word-spacing:-1.860000px;}
.ws31{word-spacing:-1.800000px;}
.ws10{word-spacing:-1.794000px;}
.ws3c{word-spacing:-1.740000px;}
.ws41{word-spacing:-1.680000px;}
.ws60{word-spacing:-1.620000px;}
.ws9d{word-spacing:-1.560000px;}
.wsa9{word-spacing:-1.500000px;}
.ws4c{word-spacing:-1.440000px;}
.ws68{word-spacing:-1.380000px;}
.ws5c{word-spacing:-1.320000px;}
.ws42{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.260000px;}
.ws2c{word-spacing:-1.200000px;}
.ws40{word-spacing:-1.140000px;}
.ws5d{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.020000px;}
.ws38{word-spacing:-0.960000px;}
.ws62{word-spacing:-0.900000px;}
.wsa3{word-spacing:-0.840000px;}
.ws97{word-spacing:-0.797426px;}
.ws5f{word-spacing:-0.780000px;}
.ws30{word-spacing:-0.768000px;}
.ws49{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.672000px;}
.ws6b{word-spacing:-0.660000px;}
.ws43{word-spacing:-0.624000px;}
.wsc{word-spacing:-0.612000px;}
.ws46{word-spacing:-0.600000px;}
.ws54{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.510000px;}
.wsbd{word-spacing:-0.490724px;}
.ws22{word-spacing:-0.480000px;}
.wsb9{word-spacing:-0.429383px;}
.ws20{word-spacing:-0.420000px;}
.ws8c{word-spacing:-0.368043px;}
.ws56{word-spacing:-0.360000px;}
.wsc1{word-spacing:-0.306702px;}
.ws34{word-spacing:-0.300000px;}
.ws3a{word-spacing:-0.180000px;}
.wsbc{word-spacing:-0.122681px;}
.ws3d{word-spacing:-0.120000px;}
.ws4a{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws3b{word-spacing:0.060000px;}
.wsb7{word-spacing:0.061340px;}
.ws29{word-spacing:0.120000px;}
.ws7c{word-spacing:0.144000px;}
.ws8d{word-spacing:0.240000px;}
.ws57{word-spacing:0.300000px;}
.ws6a{word-spacing:0.360000px;}
.wse{word-spacing:0.408000px;}
.ws26{word-spacing:0.420000px;}
.ws7d{word-spacing:0.480000px;}
.ws61{word-spacing:0.540000px;}
.ws99{word-spacing:0.552064px;}
.ws45{word-spacing:0.600000px;}
.ws9{word-spacing:0.624000px;}
.ws64{word-spacing:0.660000px;}
.ws65{word-spacing:0.674745px;}
.wsf{word-spacing:0.714000px;}
.ws72{word-spacing:0.720000px;}
.ws7a{word-spacing:0.736086px;}
.wsa2{word-spacing:0.780000px;}
.wsa6{word-spacing:0.816000px;}
.ws4b{word-spacing:0.840000px;}
.wsb1{word-spacing:0.900000px;}
.ws55{word-spacing:0.960000px;}
.wsa4{word-spacing:1.007424px;}
.wsd{word-spacing:1.020000px;}
.ws44{word-spacing:1.056000px;}
.wsad{word-spacing:1.063392px;}
.ws66{word-spacing:1.080000px;}
.wsac{word-spacing:1.091376px;}
.ws71{word-spacing:1.104000px;}
.ws9b{word-spacing:1.119360px;}
.ws8e{word-spacing:1.140000px;}
.ws4d{word-spacing:1.200000px;}
.ws89{word-spacing:1.224300px;}
.ws1f{word-spacing:1.260000px;}
.ws3e{word-spacing:1.320000px;}
.ws74{word-spacing:1.380000px;}
.wsab{word-spacing:1.434180px;}
.ws69{word-spacing:1.440000px;}
.wsaa{word-spacing:1.469160px;}
.ws58{word-spacing:1.500000px;}
.ws8a{word-spacing:1.504140px;}
.ws9c{word-spacing:1.511136px;}
.ws50{word-spacing:1.536000px;}
.ws59{word-spacing:1.560000px;}
.ws5a{word-spacing:1.594852px;}
.ws2a{word-spacing:1.620000px;}
.ws95{word-spacing:1.644060px;}
.ws27{word-spacing:1.680000px;}
.ws7f{word-spacing:1.740000px;}
.wsa5{word-spacing:1.790976px;}
.ws6d{word-spacing:1.800000px;}
.wsaf{word-spacing:1.824000px;}
.ws6e{word-spacing:1.860000px;}
.ws32{word-spacing:1.920000px;}
.ws70{word-spacing:1.968000px;}
.ws16{word-spacing:1.980000px;}
.wsbb{word-spacing:2.024236px;}
.ws28{word-spacing:2.040000px;}
.ws5e{word-spacing:2.220000px;}
.ws8f{word-spacing:2.280000px;}
.wsbe{word-spacing:2.340000px;}
.wsbf{word-spacing:2.392279px;}
.ws6f{word-spacing:2.400000px;}
.ws21{word-spacing:2.460000px;}
.ws87{word-spacing:2.520000px;}
.wsc0{word-spacing:2.580000px;}
.ws25{word-spacing:2.640000px;}
.ws63{word-spacing:2.698981px;}
.wsb6{word-spacing:2.700000px;}
.ws7e{word-spacing:2.760000px;}
.wsba{word-spacing:2.760322px;}
.ws1c{word-spacing:2.820000px;}
.ws12{word-spacing:2.880000px;}
.ws13{word-spacing:2.940000px;}
.wsb0{word-spacing:2.944343px;}
.ws11{word-spacing:3.000000px;}
.ws7b{word-spacing:3.005683px;}
.ws33{word-spacing:3.060000px;}
.ws52{word-spacing:3.072000px;}
.ws3f{word-spacing:3.120000px;}
.ws48{word-spacing:3.180000px;}
.wsc3{word-spacing:3.251045px;}
.ws1e{word-spacing:3.300000px;}
.ws15{word-spacing:3.360000px;}
.ws73{word-spacing:3.373726px;}
.wsb8{word-spacing:3.435067px;}
.wsa{word-spacing:3.504000px;}
.ws1d{word-spacing:3.600000px;}
.ws14{word-spacing:4.140000px;}
.ws76{word-spacing:4.200000px;}
.ws2d{word-spacing:4.368000px;}
.ws51{word-spacing:4.608000px;}
.wsae{word-spacing:4.704000px;}
.ws2e{word-spacing:4.800000px;}
.ws8{word-spacing:5.712000px;}
.ws96{word-spacing:8.640000px;}
.ws9a{word-spacing:11.280000px;}
._b{margin-left:-20.294384px;}
._8{margin-left:-8.434200px;}
._7{margin-left:-7.399200px;}
._9{margin-left:-6.354000px;}
._6{margin-left:-5.223600px;}
._3{margin-left:-4.204800px;}
._1{margin-left:-2.376000px;}
._0{margin-left:-1.137600px;}
._2{width:1.593600px;}
._5{width:2.773800px;}
._4{width:4.730400px;}
._a{width:5.946000px;}
._d{width:7.782000px;}
._c{width:9.234000px;}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(29,29,27);}
.fs8{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:61.340479px;}
.fs6{font-size:69.000000px;}
.fs4{font-size:76.956000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:43.163400px;}
.y1{bottom:43.670700px;}
.y6{bottom:56.239350px;}
.y5{bottom:70.639350px;}
.y4{bottom:85.039350px;}
.yde{bottom:85.039500px;}
.y73{bottom:85.039650px;}
.y11d{bottom:85.383300px;}
.y133{bottom:89.035350px;}
.y1ce{bottom:96.160800px;}
.y3{bottom:99.439350px;}
.y72{bottom:99.439650px;}
.y111{bottom:102.391050px;}
.yba{bottom:103.435350px;}
.ydd{bottom:103.435500px;}
.y1b3{bottom:104.145000px;}
.y11c{bottom:106.383300px;}
.yb9{bottom:113.839350px;}
.y71{bottom:113.839650px;}
.y189{bottom:114.151350px;}
.y1cd{bottom:117.160800px;}
.y132{bottom:117.835350px;}
.y110{bottom:123.391050px;}
.y1b2{bottom:125.145000px;}
.y11b{bottom:127.383300px;}
.yb8{bottom:128.239350px;}
.y70{bottom:128.239650px;}
.y121{bottom:132.235350px;}
.ydc{bottom:132.235650px;}
.y188{bottom:135.151350px;}
.y1cc{bottom:138.160800px;}
.y1a5{bottom:142.639350px;}
.ydb{bottom:142.639800px;}
.y10f{bottom:144.391050px;}
.y1b1{bottom:146.145000px;}
.yb7{bottom:146.635350px;}
.y6f{bottom:146.635650px;}
.y11a{bottom:148.383300px;}
.y35{bottom:149.530350px;}
.y131{bottom:152.375400px;}
.y17b{bottom:156.151350px;}
.y1cb{bottom:159.160800px;}
.y1a4{bottom:161.035350px;}
.yda{bottom:161.035800px;}
.y191{bottom:161.398950px;}
.y15d{bottom:161.746050px;}
.y10e{bottom:165.391050px;}
.y1b0{bottom:167.145000px;}
.y12d{bottom:169.383300px;}
.y34{bottom:170.530350px;}
.y130{bottom:173.375400px;}
.y17a{bottom:177.151350px;}
.y1ca{bottom:180.160800px;}
.y190{bottom:182.398950px;}
.y15c{bottom:182.746050px;}
.y119{bottom:186.391050px;}
.y1af{bottom:188.145000px;}
.y91{bottom:188.159250px;}
.yd0{bottom:190.383300px;}
.y33{bottom:190.780350px;}
.yb6{bottom:194.375400px;}
.y179{bottom:198.151350px;}
.y1c9{bottom:201.160800px;}
.y10d{bottom:203.398950px;}
.y15b{bottom:203.746050px;}
.y118{bottom:207.391050px;}
.y1b5{bottom:209.145000px;}
.y90{bottom:209.159250px;}
.y32{bottom:211.030350px;}
.ycf{bottom:211.383300px;}
.yf2{bottom:213.151350px;}
.yb5{bottom:215.375400px;}
.yfb{bottom:217.143450px;}
.y178{bottom:219.151350px;}
.y1c8{bottom:222.160800px;}
.y10c{bottom:224.398950px;}
.y15a{bottom:224.746050px;}
.y1ae{bottom:226.152900px;}
.y50{bottom:227.028300px;}
.y117{bottom:228.391050px;}
.y1b4{bottom:230.145000px;}
.y8f{bottom:230.159250px;}
.yce{bottom:232.383300px;}
.yf1{bottom:234.151350px;}
.yb4{bottom:236.375400px;}
.yfa{bottom:238.143450px;}
.y177{bottom:240.151350px;}
.y1c7{bottom:243.160800px;}
.y31{bottom:244.036200px;}
.y10b{bottom:245.398950px;}
.y159{bottom:245.746050px;}
.y1ad{bottom:247.152900px;}
.y4f{bottom:248.028300px;}
.y116{bottom:249.391050px;}
.y8e{bottom:251.159250px;}
.ycd{bottom:253.383300px;}
.yf0{bottom:255.151350px;}
.y19f{bottom:257.375400px;}
.yf9{bottom:259.143450px;}
.y176{bottom:261.151350px;}
.y1c6{bottom:264.160800px;}
.y30{bottom:264.286200px;}
.y10a{bottom:266.398950px;}
.y158{bottom:266.746050px;}
.y1ac{bottom:268.152900px;}
.y4e{bottom:269.028300px;}
.y115{bottom:270.391050px;}
.y8d{bottom:272.159250px;}
.ycc{bottom:274.381050px;}
.yb3{bottom:274.383300px;}
.yef{bottom:276.151350px;}
.y19e{bottom:278.375400px;}
.yf8{bottom:280.143450px;}
.y187{bottom:282.149250px;}
.y175{bottom:282.151350px;}
.y2f{bottom:284.536200px;}
.y1c5{bottom:285.160800px;}
.y109{bottom:287.398950px;}
.y157{bottom:287.746200px;}
.y1ab{bottom:289.152900px;}
.y114{bottom:291.391050px;}
.ycb{bottom:295.381050px;}
.yb2{bottom:295.383150px;}
.yed{bottom:297.151350px;}
.y19d{bottom:299.375400px;}
.yf7{bottom:301.141350px;}
.yee{bottom:302.146350px;}
.y174{bottom:303.151350px;}
.y2e{bottom:304.786200px;}
.y1c4{bottom:306.160800px;}
.y4d{bottom:307.036200px;}
.y108{bottom:308.398950px;}
.y1aa{bottom:310.152900px;}
.y113{bottom:312.391050px;}
.yb1{bottom:316.383150px;}
.yec{bottom:318.151350px;}
.y186{bottom:320.159250px;}
.y19c{bottom:320.375400px;}
.y173{bottom:324.151350px;}
.y2d{bottom:325.036200px;}
.y156{bottom:325.754100px;}
.y1c3{bottom:327.160800px;}
.y4c{bottom:328.036200px;}
.y8c{bottom:328.828650px;}
.y107{bottom:329.398950px;}
.y1a9{bottom:331.152900px;}
.yca{bottom:333.391050px;}
.yb0{bottom:337.383150px;}
.yeb{bottom:339.151350px;}
.y185{bottom:341.159250px;}
.y19b{bottom:341.375400px;}
.y172{bottom:345.151350px;}
.y2c{bottom:345.286200px;}
.y155{bottom:346.754100px;}
.y1c2{bottom:348.160800px;}
.y4b{bottom:349.036200px;}
.y106{bottom:350.398950px;}
.y1a8{bottom:352.152900px;}
.yc9{bottom:354.391050px;}
.y8b{bottom:359.428500px;}
.yea{bottom:360.151350px;}
.y184{bottom:362.159250px;}
.y2b{bottom:365.536200px;}
.y171{bottom:366.151350px;}
.y154{bottom:367.754100px;}
.y1c1{bottom:369.160800px;}
.y4a{bottom:370.036200px;}
.y105{bottom:371.398950px;}
.yaf{bottom:375.391050px;}
.y19a{bottom:379.383150px;}
.ye9{bottom:381.151350px;}
.y183{bottom:383.159250px;}
.y2a{bottom:385.786200px;}
.y170{bottom:387.149250px;}
.y153{bottom:388.754100px;}
.y1c0{bottom:390.160800px;}
.y49{bottom:391.036200px;}
.y104{bottom:392.398950px;}
.yae{bottom:396.391050px;}
.y199{bottom:400.383150px;}
.ye8{bottom:402.151350px;}
.y182{bottom:404.159250px;}
.y1a7{bottom:405.420600px;}
.y29{bottom:406.036200px;}
.y152{bottom:409.754100px;}
.y1bf{bottom:411.160800px;}
.y48{bottom:412.036200px;}
.y103{bottom:413.398950px;}
.yad{bottom:417.391050px;}
.y198{bottom:421.383150px;}
.yf6{bottom:423.151350px;}
.y16f{bottom:425.159250px;}
.y28{bottom:426.286200px;}
.y6e{bottom:430.407000px;}
.y151{bottom:430.754100px;}
.y1be{bottom:432.160800px;}
.y47{bottom:433.036200px;}
.y102{bottom:434.398950px;}
.y8a{bottom:434.399100px;}
.yac{bottom:438.391050px;}
.ye7{bottom:440.159250px;}
.y197{bottom:442.383150px;}
.yf5{bottom:444.151350px;}
.y16e{bottom:446.159250px;}
.y27{bottom:446.536200px;}
.y12c{bottom:451.406850px;}
.y6d{bottom:451.407000px;}
.y150{bottom:451.754100px;}
.y1bd{bottom:453.160800px;}
.y46{bottom:454.036200px;}
.y101{bottom:455.398950px;}
.y89{bottom:455.399100px;}
.yab{bottom:459.391050px;}
.ye6{bottom:461.159250px;}
.y196{bottom:463.383150px;}
.yf4{bottom:465.151350px;}
.y26{bottom:466.786200px;}
.y181{bottom:467.159250px;}
.y12b{bottom:472.406850px;}
.y6c{bottom:472.407000px;}
.y14f{bottom:472.754100px;}
.y1bc{bottom:474.160800px;}
.y45{bottom:475.036200px;}
.yc8{bottom:476.398950px;}
.y88{bottom:476.399100px;}
.yaa{bottom:480.391050px;}
.ye5{bottom:482.159250px;}
.y16d{bottom:484.167000px;}
.y195{bottom:484.383150px;}
.yf3{bottom:486.149250px;}
.y25{bottom:487.036200px;}
.y180{bottom:488.159250px;}
.y12a{bottom:493.406850px;}
.y6b{bottom:493.407000px;}
.y14e{bottom:493.754100px;}
.y1bb{bottom:495.160800px;}
.y44{bottom:496.036200px;}
.yc7{bottom:497.398950px;}
.y87{bottom:497.399100px;}
.ya9{bottom:501.391050px;}
.ye4{bottom:503.159250px;}
.y16c{bottom:505.167000px;}
.y194{bottom:505.383150px;}
.y24{bottom:507.286200px;}
.y17f{bottom:509.159250px;}
.y129{bottom:514.406850px;}
.y6a{bottom:514.407000px;}
.y1ba{bottom:516.160800px;}
.y43{bottom:517.036200px;}
.yc6{bottom:518.398950px;}
.y86{bottom:518.399100px;}
.ya8{bottom:522.391050px;}
.ye3{bottom:524.159250px;}
.y16b{bottom:526.167000px;}
.y23{bottom:527.536200px;}
.y17e{bottom:530.159250px;}
.y14d{bottom:531.761850px;}
.y128{bottom:535.406850px;}
.y69{bottom:535.407000px;}
.y1b9{bottom:537.160800px;}
.y42{bottom:538.036200px;}
.y120{bottom:539.396850px;}
.yc5{bottom:539.398950px;}
.y85{bottom:539.399100px;}
.ya7{bottom:543.391050px;}
.ye2{bottom:545.159250px;}
.y16a{bottom:547.167000px;}
.y22{bottom:547.786200px;}
.y17d{bottom:551.159250px;}
.y14c{bottom:552.761850px;}
.y127{bottom:556.406850px;}
.y68{bottom:556.407000px;}
.y1b8{bottom:558.160800px;}
.y41{bottom:559.036200px;}
.yc4{bottom:560.398950px;}
.y84{bottom:560.399100px;}
.ya6{bottom:564.391050px;}
.ye1{bottom:566.159250px;}
.y21{bottom:568.036200px;}
.y169{bottom:568.167000px;}
.y14b{bottom:573.761850px;}
.y11f{bottom:577.406850px;}
.y67{bottom:577.407000px;}
.y1b7{bottom:579.160800px;}
.y40{bottom:580.036200px;}
.yc3{bottom:581.398950px;}
.y83{bottom:581.399100px;}
.y12f{bottom:585.388950px;}
.ya5{bottom:585.391050px;}
.y20{bottom:588.286200px;}
.y168{bottom:589.167000px;}
.y14a{bottom:594.761850px;}
.y11e{bottom:598.406850px;}
.y66{bottom:598.407000px;}
.y3f{bottom:601.036200px;}
.yc2{bottom:602.398950px;}
.y82{bottom:602.399100px;}
.ya4{bottom:606.391050px;}
.y1f{bottom:608.536200px;}
.y167{bottom:610.167000px;}
.y149{bottom:615.761850px;}
.y100{bottom:619.406850px;}
.y65{bottom:619.407000px;}
.y3e{bottom:622.036200px;}
.ye0{bottom:622.828500px;}
.yc1{bottom:623.398950px;}
.y81{bottom:623.399100px;}
.y18e{bottom:627.391050px;}
.y1e{bottom:628.786200px;}
.y166{bottom:631.167000px;}
.y1b6{bottom:632.428500px;}
.y148{bottom:636.761850px;}
.yff{bottom:640.406850px;}
.y64{bottom:640.407000px;}
.y3d{bottom:643.036200px;}
.ya3{bottom:644.398950px;}
.y80{bottom:644.399100px;}
.y1d{bottom:649.036200px;}
.y165{bottom:652.167000px;}
.ydf{bottom:653.428500px;}
.y18f{bottom:657.414750px;}
.y147{bottom:657.761850px;}
.yfe{bottom:661.406850px;}
.y63{bottom:661.407000px;}
.y3c{bottom:664.036200px;}
.yc0{bottom:665.396850px;}
.ya2{bottom:665.398950px;}
.y7f{bottom:665.399100px;}
.y1c{bottom:669.286200px;}
.y164{bottom:673.167000px;}
.y126{bottom:678.414750px;}
.y145{bottom:678.761850px;}
.yfd{bottom:682.406850px;}
.y146{bottom:683.756850px;}
.y3b{bottom:685.036200px;}
.ybf{bottom:686.396850px;}
.ya1{bottom:686.398950px;}
.y7e{bottom:686.399100px;}
.y1b{bottom:689.536200px;}
.y163{bottom:694.167000px;}
.y125{bottom:699.414750px;}
.y62{bottom:699.414900px;}
.y144{bottom:699.761850px;}
.yfc{bottom:703.406850px;}
.y3a{bottom:706.036200px;}
.y112{bottom:707.396850px;}
.ya0{bottom:707.398950px;}
.y7d{bottom:707.399100px;}
.y1a{bottom:709.786200px;}
.y1a3{bottom:712.393950px;}
.y162{bottom:715.167000px;}
.y124{bottom:720.414750px;}
.y61{bottom:720.414900px;}
.y143{bottom:720.761850px;}
.ybe{bottom:724.406850px;}
.y39{bottom:727.036200px;}
.y9f{bottom:728.398950px;}
.y19{bottom:730.036200px;}
.y161{bottom:736.167000px;}
.y123{bottom:741.414750px;}
.y60{bottom:741.414900px;}
.y142{bottom:741.761850px;}
.ybd{bottom:745.406850px;}
.y7c{bottom:745.407000px;}
.y38{bottom:748.036200px;}
.y18d{bottom:749.398950px;}
.y18{bottom:750.286200px;}
.y160{bottom:757.167000px;}
.y17c{bottom:757.171350px;}
.y122{bottom:762.414750px;}
.y5f{bottom:762.414900px;}
.y140{bottom:762.761850px;}
.y9e{bottom:766.406850px;}
.y7b{bottom:766.407000px;}
.y141{bottom:767.756850px;}
.y37{bottom:769.036200px;}
.y18c{bottom:770.396850px;}
.y193{bottom:770.398950px;}
.y17{bottom:770.536200px;}
.y14{bottom:782.783400px;}
.yd9{bottom:783.414750px;}
.y5e{bottom:783.414900px;}
.y13f{bottom:783.761850px;}
.y9d{bottom:787.406850px;}
.y7a{bottom:787.407000px;}
.y36{bottom:790.036200px;}
.y16{bottom:790.786200px;}
.y192{bottom:791.398950px;}
.y13{bottom:803.483400px;}
.yd8{bottom:804.414750px;}
.y5d{bottom:804.414900px;}
.y13e{bottom:804.761850px;}
.y9c{bottom:808.406850px;}
.y79{bottom:808.407000px;}
.y15{bottom:811.036200px;}
.y1a2{bottom:812.398950px;}
.y15f{bottom:813.836250px;}
.yd7{bottom:825.414750px;}
.y5c{bottom:825.414900px;}
.y13d{bottom:825.761850px;}
.y1a6{bottom:829.404750px;}
.y9b{bottom:829.406850px;}
.y78{bottom:829.407000px;}
.y1a1{bottom:833.398950px;}
.y12{bottom:836.085900px;}
.y15e{bottom:844.436250px;}
.yd6{bottom:846.414750px;}
.y5b{bottom:846.414900px;}
.y13c{bottom:846.761850px;}
.y9a{bottom:850.406850px;}
.y77{bottom:850.407000px;}
.y1a0{bottom:854.398950px;}
.yc{bottom:863.013750px;}
.y11{bottom:864.439500px;}
.yd5{bottom:867.414750px;}
.y5a{bottom:867.414900px;}
.y99{bottom:871.406850px;}
.y76{bottom:871.407000px;}
.y13b{bottom:884.769900px;}
.yd4{bottom:888.414750px;}
.y59{bottom:888.414900px;}
.y10{bottom:889.639500px;}
.y98{bottom:892.406850px;}
.y75{bottom:892.407000px;}
.yb{bottom:893.613900px;}
.y18b{bottom:897.401850px;}
.y13a{bottom:905.769900px;}
.yd3{bottom:909.414750px;}
.y58{bottom:909.414900px;}
.y97{bottom:913.406850px;}
.yf{bottom:923.343450px;}
.ya{bottom:924.210900px;}
.y139{bottom:926.769900px;}
.yd2{bottom:930.414750px;}
.y57{bottom:930.414900px;}
.y96{bottom:934.406850px;}
.y138{bottom:947.769900px;}
.yd1{bottom:951.414750px;}
.y56{bottom:951.414900px;}
.y95{bottom:955.406850px;}
.y74{bottom:956.409900px;}
.ye{bottom:962.943450px;}
.y9{bottom:966.719400px;}
.y137{bottom:968.769900px;}
.ybc{bottom:972.414750px;}
.y55{bottom:972.414900px;}
.y12e{bottom:976.404750px;}
.y94{bottom:976.406850px;}
.y136{bottom:989.769900px;}
.ybb{bottom:993.414750px;}
.y54{bottom:993.414900px;}
.y8{bottom:997.319250px;}
.y18a{bottom:998.409750px;}
.yd{bottom:1002.543450px;}
.y135{bottom:1010.769900px;}
.y93{bottom:1014.414750px;}
.y53{bottom:1014.414900px;}
.y7{bottom:1027.919250px;}
.y134{bottom:1031.769900px;}
.y92{bottom:1035.414750px;}
.y52{bottom:1035.414900px;}
.y2{bottom:1085.066400px;}
.ha{height:27.792000px;}
.hb{height:31.901760px;}
.h1{height:39.155273px;}
.h2{height:41.370117px;}
.hd{height:42.720000px;}
.h3{height:43.776000px;}
.h9{height:54.720000px;}
.hc{height:55.942516px;}
.h7{height:61.404000px;}
.h8{height:62.928000px;}
.h5{height:72.828000px;}
.h4{height:74.562000px;}
.h6{height:96.492000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.xc{left:97.795350px;}
.x7{left:102.047250px;}
.x2{left:103.423200px;}
.x34{left:105.087600px;}
.x4c{left:106.299300px;}
.x4a{left:118.505550px;}
.x2b{left:132.605550px;}
.x11{left:135.010650px;}
.x1c{left:137.097600px;}
.x37{left:139.728300px;}
.x2c{left:142.006800px;}
.x1a{left:148.868250px;}
.x64{left:162.328050px;}
.x35{left:167.735250px;}
.x59{left:176.035050px;}
.x36{left:180.907050px;}
.x55{left:184.891050px;}
.x53{left:188.373750px;}
.x51{left:189.465450px;}
.x1e{left:193.769400px;}
.x4e{left:195.770250px;}
.x61{left:197.845950px;}
.x12{left:199.259100px;}
.x3e{left:207.930300px;}
.x5f{left:213.443550px;}
.x46{left:215.080200px;}
.x3f{left:217.252500px;}
.x2a{left:221.219850px;}
.x66{left:222.399150px;}
.x58{left:224.821950px;}
.x47{left:233.464950px;}
.x5e{left:234.999300px;}
.x4d{left:240.944100px;}
.x40{left:254.874450px;}
.x29{left:259.434900px;}
.x41{left:264.208800px;}
.x2f{left:265.611750px;}
.x1d{left:266.829000px;}
.x38{left:268.739550px;}
.x5b{left:278.601150px;}
.x52{left:286.034850px;}
.x1f{left:290.126100px;}
.x4{left:304.133850px;}
.x62{left:305.200950px;}
.x32{left:307.492950px;}
.x20{left:313.371300px;}
.x21{left:316.850550px;}
.x48{left:341.659200px;}
.x19{left:342.963450px;}
.x1b{left:360.647100px;}
.x49{left:372.046800px;}
.x22{left:378.950550px;}
.x2d{left:385.130250px;}
.x31{left:387.940650px;}
.x33{left:392.730900px;}
.x2e{left:394.522800px;}
.x54{left:407.071200px;}
.x65{left:411.339300px;}
.x68{left:416.292900px;}
.x30{left:433.467300px;}
.x50{left:439.477950px;}
.xd{left:441.200550px;}
.xe{left:445.860300px;}
.x9{left:467.999250px;}
.x8{left:485.007150px;}
.x4f{left:507.118350px;}
.x23{left:519.392100px;}
.x57{left:551.190900px;}
.x3a{left:553.329900px;}
.x67{left:556.185000px;}
.x28{left:560.495250px;}
.xf{left:567.872250px;}
.x16{left:571.595850px;}
.x5{left:577.546500px;}
.x15{left:590.156550px;}
.x60{left:612.370650px;}
.x56{left:619.615500px;}
.x26{left:630.304050px;}
.x27{left:639.551700px;}
.x10{left:647.447700px;}
.x42{left:649.823550px;}
.x63{left:658.819200px;}
.x13{left:669.923700px;}
.x44{left:680.372250px;}
.x3b{left:685.454550px;}
.x17{left:694.460250px;}
.x5a{left:700.330800px;}
.x14{left:703.926900px;}
.x5c{left:716.040750px;}
.x43{left:722.681550px;}
.x18{left:725.889300px;}
.xa{left:731.635200px;}
.x39{left:733.574550px;}
.xb{left:736.368300px;}
.x69{left:768.716250px;}
.x4b{left:772.897500px;}
.x5d{left:785.823600px;}
.x45{left:791.350200px;}
.x24{left:819.295200px;}
.x3c{left:822.468900px;}
.x25{left:828.756900px;}
.x3d{left:832.960650px;}
.x6{left:852.732300px;}
.x1{left:856.771650px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760533pt;}
.v1{vertical-align:28.405333pt;}
.ls77{letter-spacing:-6.880000pt;}
.ls75{letter-spacing:-4.320000pt;}
.ls58{letter-spacing:-2.671719pt;}
.ls6b{letter-spacing:-2.114347pt;}
.ls87{letter-spacing:-1.834507pt;}
.ls89{letter-spacing:-1.653333pt;}
.ls85{letter-spacing:-1.591979pt;}
.ls82{letter-spacing:-1.493333pt;}
.ls74{letter-spacing:-1.461387pt;}
.ls2f{letter-spacing:-1.440000pt;}
.ls68{letter-spacing:-1.417647pt;}
.lsa{letter-spacing:-1.410667pt;}
.ls15{letter-spacing:-1.386667pt;}
.ls7a{letter-spacing:-1.343232pt;}
.ls6e{letter-spacing:-1.337013pt;}
.ls56{letter-spacing:-1.333333pt;}
.ls7d{letter-spacing:-1.305920pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls73{letter-spacing:-1.274827pt;}
.ls48{letter-spacing:-1.226667pt;}
.ls6c{letter-spacing:-1.193984pt;}
.ls55{letter-spacing:-1.173333pt;}
.ls81{letter-spacing:-1.150453pt;}
.ls46{letter-spacing:-1.120000pt;}
.ls6d{letter-spacing:-1.088267pt;}
.ls54{letter-spacing:-1.066667pt;}
.ls7b{letter-spacing:-1.044736pt;}
.ls69{letter-spacing:-1.026080pt;}
.ls72{letter-spacing:-1.013333pt;}
.ls79{letter-spacing:-0.994987pt;}
.ls8a{letter-spacing:-0.970112pt;}
.ls39{letter-spacing:-0.960000pt;}
.ls8b{letter-spacing:-0.945237pt;}
.ls93{letter-spacing:-0.926923pt;}
.ls7{letter-spacing:-0.906667pt;}
.ls84{letter-spacing:-0.895488pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls6a{letter-spacing:-0.820864pt;}
.ls88{letter-spacing:-0.817873pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls36{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.797333pt;}
.ls3d{letter-spacing:-0.746667pt;}
.ls76{letter-spacing:-0.708823pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls62{letter-spacing:-0.654298pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.634667pt;}
.ls4e{letter-spacing:-0.586667pt;}
.ls3e{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls83{letter-spacing:-0.381674pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls61{letter-spacing:-0.327149pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls94{letter-spacing:-0.272624pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls6f{letter-spacing:-0.163575pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls67{letter-spacing:-0.109050pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls92{letter-spacing:-0.054525pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000085pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls95{letter-spacing:0.054525pt;}
.ls3f{letter-spacing:0.090667pt;}
.ls33{letter-spacing:0.106667pt;}
.ls8f{letter-spacing:0.109050pt;}
.ls5b{letter-spacing:0.155307pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.163575pt;}
.ls3c{letter-spacing:0.213333pt;}
.ls8d{letter-spacing:0.217653pt;}
.ls5a{letter-spacing:0.218099pt;}
.ls44{letter-spacing:0.236373pt;}
.ls41{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.272624pt;}
.ls4c{letter-spacing:0.307840pt;}
.ls37{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.327149pt;}
.ls5c{letter-spacing:0.369707pt;}
.ls2e{letter-spacing:0.373333pt;}
.ls59{letter-spacing:0.381674pt;}
.ls18{letter-spacing:0.426667pt;}
.ls8e{letter-spacing:0.436199pt;}
.ls51{letter-spacing:0.453333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.545249pt;}
.ls4a{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.597333pt;}
.ls8c{letter-spacing:0.599774pt;}
.ls3{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.682667pt;}
.ls3a{letter-spacing:0.693333pt;}
.ls45{letter-spacing:0.746667pt;}
.ls96{letter-spacing:0.763348pt;}
.ls65{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls40{letter-spacing:0.906667pt;}
.ls53{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.013333pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.120000pt;}
.ls50{letter-spacing:1.173333pt;}
.ls4{letter-spacing:1.194667pt;}
.ls5f{letter-spacing:1.226667pt;}
.ls47{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.333333pt;}
.ls70{letter-spacing:1.360000pt;}
.ls32{letter-spacing:1.386667pt;}
.ls42{letter-spacing:1.431471pt;}
.lsc{letter-spacing:1.440000pt;}
.ls52{letter-spacing:1.450667pt;}
.ls1e{letter-spacing:1.493333pt;}
.ls71{letter-spacing:1.541333pt;}
.ls2c{letter-spacing:1.546667pt;}
.ls31{letter-spacing:1.600000pt;}
.ls4b{letter-spacing:1.653333pt;}
.ls22{letter-spacing:1.706667pt;}
.ls3b{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls23{letter-spacing:1.866667pt;}
.ls28{letter-spacing:1.920000pt;}
.lsb{letter-spacing:1.973333pt;}
.ls7e{letter-spacing:2.026667pt;}
.ls91{letter-spacing:2.080000pt;}
.ls21{letter-spacing:2.133333pt;}
.ls90{letter-spacing:2.186667pt;}
.ls66{letter-spacing:2.240000pt;}
.ls5d{letter-spacing:2.293333pt;}
.ls64{letter-spacing:2.400000pt;}
.lsd{letter-spacing:2.453333pt;}
.ls86{letter-spacing:2.453619pt;}
.ls80{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:2.613333pt;}
.ls7f{letter-spacing:2.666667pt;}
.ls49{letter-spacing:2.720000pt;}
.ls1{letter-spacing:2.826667pt;}
.ls26{letter-spacing:2.880000pt;}
.ls7c{letter-spacing:3.093333pt;}
.ls25{letter-spacing:3.893333pt;}
.lse{letter-spacing:4.000000pt;}
.ls0{letter-spacing:4.106667pt;}
.ls5e{letter-spacing:4.480000pt;}
.ws1{word-spacing:-32.618667pt;}
.ws4e{word-spacing:-26.656000pt;}
.wsb3{word-spacing:-25.205333pt;}
.ws5{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.800000pt;}
.ws2{word-spacing:-16.253333pt;}
.ws78{word-spacing:-15.539588pt;}
.wsb2{word-spacing:-15.485063pt;}
.wsa0{word-spacing:-15.413333pt;}
.ws5b{word-spacing:-15.321488pt;}
.ws93{word-spacing:-15.253333pt;}
.wsa7{word-spacing:-15.200000pt;}
.ws82{word-spacing:-15.157914pt;}
.ws90{word-spacing:-15.146667pt;}
.wsb5{word-spacing:-14.885289pt;}
.ws77{word-spacing:-14.830765pt;}
.ws9f{word-spacing:-14.449091pt;}
.ws4{word-spacing:-14.346667pt;}
.wsb4{word-spacing:-14.080000pt;}
.ws81{word-spacing:-13.740267pt;}
.ws6{word-spacing:-13.386667pt;}
.ws0{word-spacing:-13.056000pt;}
.ws39{word-spacing:-12.416000pt;}
.wsa8{word-spacing:-8.861600pt;}
.ws4f{word-spacing:-8.643947pt;}
.ws83{word-spacing:-7.617867pt;}
.ws9e{word-spacing:-7.493493pt;}
.ws91{word-spacing:-7.369120pt;}
.ws94{word-spacing:-7.338027pt;}
.wsa1{word-spacing:-6.809440pt;}
.wsb{word-spacing:-6.256000pt;}
.ws84{word-spacing:-6.094293pt;}
.ws35{word-spacing:-5.893333pt;}
.ws92{word-spacing:-5.870421pt;}
.ws86{word-spacing:-5.721173pt;}
.ws85{word-spacing:-4.800811pt;}
.wsc4{word-spacing:-2.506667pt;}
.ws1a{word-spacing:-2.346667pt;}
.ws79{word-spacing:-2.344569pt;}
.ws23{word-spacing:-2.293333pt;}
.ws67{word-spacing:-2.290045pt;}
.ws18{word-spacing:-2.240000pt;}
.ws88{word-spacing:-2.235520pt;}
.ws37{word-spacing:-2.186667pt;}
.ws75{word-spacing:-2.026667pt;}
.ws24{word-spacing:-1.973333pt;}
.ws98{word-spacing:-1.962895pt;}
.ws19{word-spacing:-1.920000pt;}
.ws6c{word-spacing:-1.866667pt;}
.wsc2{word-spacing:-1.853846pt;}
.ws2b{word-spacing:-1.813333pt;}
.ws80{word-spacing:-1.760000pt;}
.ws8b{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.664000pt;}
.ws47{word-spacing:-1.653333pt;}
.ws31{word-spacing:-1.600000pt;}
.ws10{word-spacing:-1.594667pt;}
.ws3c{word-spacing:-1.546667pt;}
.ws41{word-spacing:-1.493333pt;}
.ws60{word-spacing:-1.440000pt;}
.ws9d{word-spacing:-1.386667pt;}
.wsa9{word-spacing:-1.333333pt;}
.ws4c{word-spacing:-1.280000pt;}
.ws68{word-spacing:-1.226667pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws42{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.120000pt;}
.ws2c{word-spacing:-1.066667pt;}
.ws40{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.906667pt;}
.ws38{word-spacing:-0.853333pt;}
.ws62{word-spacing:-0.800000pt;}
.wsa3{word-spacing:-0.746667pt;}
.ws97{word-spacing:-0.708823pt;}
.ws5f{word-spacing:-0.693333pt;}
.ws30{word-spacing:-0.682667pt;}
.ws49{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.597333pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws43{word-spacing:-0.554667pt;}
.wsc{word-spacing:-0.544000pt;}
.ws46{word-spacing:-0.533333pt;}
.ws54{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.453333pt;}
.wsbd{word-spacing:-0.436199pt;}
.ws22{word-spacing:-0.426667pt;}
.wsb9{word-spacing:-0.381674pt;}
.ws20{word-spacing:-0.373333pt;}
.ws8c{word-spacing:-0.327149pt;}
.ws56{word-spacing:-0.320000pt;}
.wsc1{word-spacing:-0.272624pt;}
.ws34{word-spacing:-0.266667pt;}
.ws3a{word-spacing:-0.160000pt;}
.wsbc{word-spacing:-0.109050pt;}
.ws3d{word-spacing:-0.106667pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053333pt;}
.wsb7{word-spacing:0.054525pt;}
.ws29{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.128000pt;}
.ws8d{word-spacing:0.213333pt;}
.ws57{word-spacing:0.266667pt;}
.ws6a{word-spacing:0.320000pt;}
.wse{word-spacing:0.362667pt;}
.ws26{word-spacing:0.373333pt;}
.ws7d{word-spacing:0.426667pt;}
.ws61{word-spacing:0.480000pt;}
.ws99{word-spacing:0.490724pt;}
.ws45{word-spacing:0.533333pt;}
.ws9{word-spacing:0.554667pt;}
.ws64{word-spacing:0.586667pt;}
.ws65{word-spacing:0.599774pt;}
.wsf{word-spacing:0.634667pt;}
.ws72{word-spacing:0.640000pt;}
.ws7a{word-spacing:0.654298pt;}
.wsa2{word-spacing:0.693333pt;}
.wsa6{word-spacing:0.725333pt;}
.ws4b{word-spacing:0.746667pt;}
.wsb1{word-spacing:0.800000pt;}
.ws55{word-spacing:0.853333pt;}
.wsa4{word-spacing:0.895488pt;}
.wsd{word-spacing:0.906667pt;}
.ws44{word-spacing:0.938667pt;}
.wsad{word-spacing:0.945237pt;}
.ws66{word-spacing:0.960000pt;}
.wsac{word-spacing:0.970112pt;}
.ws71{word-spacing:0.981333pt;}
.ws9b{word-spacing:0.994987pt;}
.ws8e{word-spacing:1.013333pt;}
.ws4d{word-spacing:1.066667pt;}
.ws89{word-spacing:1.088267pt;}
.ws1f{word-spacing:1.120000pt;}
.ws3e{word-spacing:1.173333pt;}
.ws74{word-spacing:1.226667pt;}
.wsab{word-spacing:1.274827pt;}
.ws69{word-spacing:1.280000pt;}
.wsaa{word-spacing:1.305920pt;}
.ws58{word-spacing:1.333333pt;}
.ws8a{word-spacing:1.337013pt;}
.ws9c{word-spacing:1.343232pt;}
.ws50{word-spacing:1.365333pt;}
.ws59{word-spacing:1.386667pt;}
.ws5a{word-spacing:1.417647pt;}
.ws2a{word-spacing:1.440000pt;}
.ws95{word-spacing:1.461387pt;}
.ws27{word-spacing:1.493333pt;}
.ws7f{word-spacing:1.546667pt;}
.wsa5{word-spacing:1.591979pt;}
.ws6d{word-spacing:1.600000pt;}
.wsaf{word-spacing:1.621333pt;}
.ws6e{word-spacing:1.653333pt;}
.ws32{word-spacing:1.706667pt;}
.ws70{word-spacing:1.749333pt;}
.ws16{word-spacing:1.760000pt;}
.wsbb{word-spacing:1.799321pt;}
.ws28{word-spacing:1.813333pt;}
.ws5e{word-spacing:1.973333pt;}
.ws8f{word-spacing:2.026667pt;}
.wsbe{word-spacing:2.080000pt;}
.wsbf{word-spacing:2.126470pt;}
.ws6f{word-spacing:2.133333pt;}
.ws21{word-spacing:2.186667pt;}
.ws87{word-spacing:2.240000pt;}
.wsc0{word-spacing:2.293333pt;}
.ws25{word-spacing:2.346667pt;}
.ws63{word-spacing:2.399094pt;}
.wsb6{word-spacing:2.400000pt;}
.ws7e{word-spacing:2.453333pt;}
.wsba{word-spacing:2.453619pt;}
.ws1c{word-spacing:2.506667pt;}
.ws12{word-spacing:2.560000pt;}
.ws13{word-spacing:2.613333pt;}
.wsb0{word-spacing:2.617194pt;}
.ws11{word-spacing:2.666667pt;}
.ws7b{word-spacing:2.671719pt;}
.ws33{word-spacing:2.720000pt;}
.ws52{word-spacing:2.730667pt;}
.ws3f{word-spacing:2.773333pt;}
.ws48{word-spacing:2.826667pt;}
.wsc3{word-spacing:2.889818pt;}
.ws1e{word-spacing:2.933333pt;}
.ws15{word-spacing:2.986667pt;}
.ws73{word-spacing:2.998868pt;}
.wsb8{word-spacing:3.053393pt;}
.wsa{word-spacing:3.114667pt;}
.ws1d{word-spacing:3.200000pt;}
.ws14{word-spacing:3.680000pt;}
.ws76{word-spacing:3.733333pt;}
.ws2d{word-spacing:3.882667pt;}
.ws51{word-spacing:4.096000pt;}
.wsae{word-spacing:4.181333pt;}
.ws2e{word-spacing:4.266667pt;}
.ws8{word-spacing:5.077333pt;}
.ws96{word-spacing:7.680000pt;}
.ws9a{word-spacing:10.026667pt;}
._b{margin-left:-18.039452pt;}
._8{margin-left:-7.497067pt;}
._7{margin-left:-6.577067pt;}
._9{margin-left:-5.648000pt;}
._6{margin-left:-4.643200pt;}
._3{margin-left:-3.737600pt;}
._1{margin-left:-2.112000pt;}
._0{margin-left:-1.011200pt;}
._2{width:1.416533pt;}
._5{width:2.465600pt;}
._4{width:4.204800pt;}
._a{width:5.285333pt;}
._d{width:6.917333pt;}
._c{width:8.208000pt;}
.fs8{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:54.524870pt;}
.fs6{font-size:61.333333pt;}
.fs4{font-size:68.405333pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:38.367467pt;}
.y1{bottom:38.818400pt;}
.y6{bottom:49.990533pt;}
.y5{bottom:62.790533pt;}
.y4{bottom:75.590533pt;}
.yde{bottom:75.590667pt;}
.y73{bottom:75.590800pt;}
.y11d{bottom:75.896267pt;}
.y133{bottom:79.142533pt;}
.y1ce{bottom:85.476267pt;}
.y3{bottom:88.390533pt;}
.y72{bottom:88.390800pt;}
.y111{bottom:91.014267pt;}
.yba{bottom:91.942533pt;}
.ydd{bottom:91.942667pt;}
.y1b3{bottom:92.573333pt;}
.y11c{bottom:94.562933pt;}
.yb9{bottom:101.190533pt;}
.y71{bottom:101.190800pt;}
.y189{bottom:101.467867pt;}
.y1cd{bottom:104.142933pt;}
.y132{bottom:104.742533pt;}
.y110{bottom:109.680933pt;}
.y1b2{bottom:111.240000pt;}
.y11b{bottom:113.229600pt;}
.yb8{bottom:113.990533pt;}
.y70{bottom:113.990800pt;}
.y121{bottom:117.542533pt;}
.ydc{bottom:117.542800pt;}
.y188{bottom:120.134533pt;}
.y1cc{bottom:122.809600pt;}
.y1a5{bottom:126.790533pt;}
.ydb{bottom:126.790933pt;}
.y10f{bottom:128.347600pt;}
.y1b1{bottom:129.906667pt;}
.yb7{bottom:130.342533pt;}
.y6f{bottom:130.342800pt;}
.y11a{bottom:131.896267pt;}
.y35{bottom:132.915867pt;}
.y131{bottom:135.444800pt;}
.y17b{bottom:138.801200pt;}
.y1cb{bottom:141.476267pt;}
.y1a4{bottom:143.142533pt;}
.yda{bottom:143.142933pt;}
.y191{bottom:143.465733pt;}
.y15d{bottom:143.774267pt;}
.y10e{bottom:147.014267pt;}
.y1b0{bottom:148.573333pt;}
.y12d{bottom:150.562933pt;}
.y34{bottom:151.582533pt;}
.y130{bottom:154.111467pt;}
.y17a{bottom:157.467867pt;}
.y1ca{bottom:160.142933pt;}
.y190{bottom:162.132400pt;}
.y15c{bottom:162.440933pt;}
.y119{bottom:165.680933pt;}
.y1af{bottom:167.240000pt;}
.y91{bottom:167.252667pt;}
.yd0{bottom:169.229600pt;}
.y33{bottom:169.582533pt;}
.yb6{bottom:172.778133pt;}
.y179{bottom:176.134533pt;}
.y1c9{bottom:178.809600pt;}
.y10d{bottom:180.799067pt;}
.y15b{bottom:181.107600pt;}
.y118{bottom:184.347600pt;}
.y1b5{bottom:185.906667pt;}
.y90{bottom:185.919333pt;}
.y32{bottom:187.582533pt;}
.ycf{bottom:187.896267pt;}
.yf2{bottom:189.467867pt;}
.yb5{bottom:191.444800pt;}
.yfb{bottom:193.016400pt;}
.y178{bottom:194.801200pt;}
.y1c8{bottom:197.476267pt;}
.y10c{bottom:199.465733pt;}
.y15a{bottom:199.774267pt;}
.y1ae{bottom:201.024800pt;}
.y50{bottom:201.802933pt;}
.y117{bottom:203.014267pt;}
.y1b4{bottom:204.573333pt;}
.y8f{bottom:204.586000pt;}
.yce{bottom:206.562933pt;}
.yf1{bottom:208.134533pt;}
.yb4{bottom:210.111467pt;}
.yfa{bottom:211.683067pt;}
.y177{bottom:213.467867pt;}
.y1c7{bottom:216.142933pt;}
.y31{bottom:216.921067pt;}
.y10b{bottom:218.132400pt;}
.y159{bottom:218.440933pt;}
.y1ad{bottom:219.691467pt;}
.y4f{bottom:220.469600pt;}
.y116{bottom:221.680933pt;}
.y8e{bottom:223.252667pt;}
.ycd{bottom:225.229600pt;}
.yf0{bottom:226.801200pt;}
.y19f{bottom:228.778133pt;}
.yf9{bottom:230.349733pt;}
.y176{bottom:232.134533pt;}
.y1c6{bottom:234.809600pt;}
.y30{bottom:234.921067pt;}
.y10a{bottom:236.799067pt;}
.y158{bottom:237.107600pt;}
.y1ac{bottom:238.358133pt;}
.y4e{bottom:239.136267pt;}
.y115{bottom:240.347600pt;}
.y8d{bottom:241.919333pt;}
.ycc{bottom:243.894267pt;}
.yb3{bottom:243.896267pt;}
.yef{bottom:245.467867pt;}
.y19e{bottom:247.444800pt;}
.yf8{bottom:249.016400pt;}
.y187{bottom:250.799333pt;}
.y175{bottom:250.801200pt;}
.y2f{bottom:252.921067pt;}
.y1c5{bottom:253.476267pt;}
.y109{bottom:255.465733pt;}
.y157{bottom:255.774400pt;}
.y1ab{bottom:257.024800pt;}
.y114{bottom:259.014267pt;}
.ycb{bottom:262.560933pt;}
.yb2{bottom:262.562800pt;}
.yed{bottom:264.134533pt;}
.y19d{bottom:266.111467pt;}
.yf7{bottom:267.681200pt;}
.yee{bottom:268.574533pt;}
.y174{bottom:269.467867pt;}
.y2e{bottom:270.921067pt;}
.y1c4{bottom:272.142933pt;}
.y4d{bottom:272.921067pt;}
.y108{bottom:274.132400pt;}
.y1aa{bottom:275.691467pt;}
.y113{bottom:277.680933pt;}
.yb1{bottom:281.229467pt;}
.yec{bottom:282.801200pt;}
.y186{bottom:284.586000pt;}
.y19c{bottom:284.778133pt;}
.y173{bottom:288.134533pt;}
.y2d{bottom:288.921067pt;}
.y156{bottom:289.559200pt;}
.y1c3{bottom:290.809600pt;}
.y4c{bottom:291.587733pt;}
.y8c{bottom:292.292133pt;}
.y107{bottom:292.799067pt;}
.y1a9{bottom:294.358133pt;}
.yca{bottom:296.347600pt;}
.yb0{bottom:299.896133pt;}
.yeb{bottom:301.467867pt;}
.y185{bottom:303.252667pt;}
.y19b{bottom:303.444800pt;}
.y172{bottom:306.801200pt;}
.y2c{bottom:306.921067pt;}
.y155{bottom:308.225867pt;}
.y1c2{bottom:309.476267pt;}
.y4b{bottom:310.254400pt;}
.y106{bottom:311.465733pt;}
.y1a8{bottom:313.024800pt;}
.yc9{bottom:315.014267pt;}
.y8b{bottom:319.492000pt;}
.yea{bottom:320.134533pt;}
.y184{bottom:321.919333pt;}
.y2b{bottom:324.921067pt;}
.y171{bottom:325.467867pt;}
.y154{bottom:326.892533pt;}
.y1c1{bottom:328.142933pt;}
.y4a{bottom:328.921067pt;}
.y105{bottom:330.132400pt;}
.yaf{bottom:333.680933pt;}
.y19a{bottom:337.229467pt;}
.ye9{bottom:338.801200pt;}
.y183{bottom:340.586000pt;}
.y2a{bottom:342.921067pt;}
.y170{bottom:344.132667pt;}
.y153{bottom:345.559200pt;}
.y1c0{bottom:346.809600pt;}
.y49{bottom:347.587733pt;}
.y104{bottom:348.799067pt;}
.yae{bottom:352.347600pt;}
.y199{bottom:355.896133pt;}
.ye8{bottom:357.467867pt;}
.y182{bottom:359.252667pt;}
.y1a7{bottom:360.373867pt;}
.y29{bottom:360.921067pt;}
.y152{bottom:364.225867pt;}
.y1bf{bottom:365.476267pt;}
.y48{bottom:366.254400pt;}
.y103{bottom:367.465733pt;}
.yad{bottom:371.014267pt;}
.y198{bottom:374.562800pt;}
.yf6{bottom:376.134533pt;}
.y16f{bottom:377.919333pt;}
.y28{bottom:378.921067pt;}
.y6e{bottom:382.584000pt;}
.y151{bottom:382.892533pt;}
.y1be{bottom:384.142933pt;}
.y47{bottom:384.921067pt;}
.y102{bottom:386.132400pt;}
.y8a{bottom:386.132533pt;}
.yac{bottom:389.680933pt;}
.ye7{bottom:391.252667pt;}
.y197{bottom:393.229467pt;}
.yf5{bottom:394.801200pt;}
.y16e{bottom:396.586000pt;}
.y27{bottom:396.921067pt;}
.y12c{bottom:401.250533pt;}
.y6d{bottom:401.250667pt;}
.y150{bottom:401.559200pt;}
.y1bd{bottom:402.809600pt;}
.y46{bottom:403.587733pt;}
.y101{bottom:404.799067pt;}
.y89{bottom:404.799200pt;}
.yab{bottom:408.347600pt;}
.ye6{bottom:409.919333pt;}
.y196{bottom:411.896133pt;}
.yf4{bottom:413.467867pt;}
.y26{bottom:414.921067pt;}
.y181{bottom:415.252667pt;}
.y12b{bottom:419.917200pt;}
.y6c{bottom:419.917333pt;}
.y14f{bottom:420.225867pt;}
.y1bc{bottom:421.476267pt;}
.y45{bottom:422.254400pt;}
.yc8{bottom:423.465733pt;}
.y88{bottom:423.465867pt;}
.yaa{bottom:427.014267pt;}
.ye5{bottom:428.586000pt;}
.y16d{bottom:430.370667pt;}
.y195{bottom:430.562800pt;}
.yf3{bottom:432.132667pt;}
.y25{bottom:432.921067pt;}
.y180{bottom:433.919333pt;}
.y12a{bottom:438.583867pt;}
.y6b{bottom:438.584000pt;}
.y14e{bottom:438.892533pt;}
.y1bb{bottom:440.142933pt;}
.y44{bottom:440.921067pt;}
.yc7{bottom:442.132400pt;}
.y87{bottom:442.132533pt;}
.ya9{bottom:445.680933pt;}
.ye4{bottom:447.252667pt;}
.y16c{bottom:449.037333pt;}
.y194{bottom:449.229467pt;}
.y24{bottom:450.921067pt;}
.y17f{bottom:452.586000pt;}
.y129{bottom:457.250533pt;}
.y6a{bottom:457.250667pt;}
.y1ba{bottom:458.809600pt;}
.y43{bottom:459.587733pt;}
.yc6{bottom:460.799067pt;}
.y86{bottom:460.799200pt;}
.ya8{bottom:464.347600pt;}
.ye3{bottom:465.919333pt;}
.y16b{bottom:467.704000pt;}
.y23{bottom:468.921067pt;}
.y17e{bottom:471.252667pt;}
.y14d{bottom:472.677200pt;}
.y128{bottom:475.917200pt;}
.y69{bottom:475.917333pt;}
.y1b9{bottom:477.476267pt;}
.y42{bottom:478.254400pt;}
.y120{bottom:479.463867pt;}
.yc5{bottom:479.465733pt;}
.y85{bottom:479.465867pt;}
.ya7{bottom:483.014267pt;}
.ye2{bottom:484.586000pt;}
.y16a{bottom:486.370667pt;}
.y22{bottom:486.921067pt;}
.y17d{bottom:489.919333pt;}
.y14c{bottom:491.343867pt;}
.y127{bottom:494.583867pt;}
.y68{bottom:494.584000pt;}
.y1b8{bottom:496.142933pt;}
.y41{bottom:496.921067pt;}
.yc4{bottom:498.132400pt;}
.y84{bottom:498.132533pt;}
.ya6{bottom:501.680933pt;}
.ye1{bottom:503.252667pt;}
.y21{bottom:504.921067pt;}
.y169{bottom:505.037333pt;}
.y14b{bottom:510.010533pt;}
.y11f{bottom:513.250533pt;}
.y67{bottom:513.250667pt;}
.y1b7{bottom:514.809600pt;}
.y40{bottom:515.587733pt;}
.yc3{bottom:516.799067pt;}
.y83{bottom:516.799200pt;}
.y12f{bottom:520.345733pt;}
.ya5{bottom:520.347600pt;}
.y20{bottom:522.921067pt;}
.y168{bottom:523.704000pt;}
.y14a{bottom:528.677200pt;}
.y11e{bottom:531.917200pt;}
.y66{bottom:531.917333pt;}
.y3f{bottom:534.254400pt;}
.yc2{bottom:535.465733pt;}
.y82{bottom:535.465867pt;}
.ya4{bottom:539.014267pt;}
.y1f{bottom:540.921067pt;}
.y167{bottom:542.370667pt;}
.y149{bottom:547.343867pt;}
.y100{bottom:550.583867pt;}
.y65{bottom:550.584000pt;}
.y3e{bottom:552.921067pt;}
.ye0{bottom:553.625333pt;}
.yc1{bottom:554.132400pt;}
.y81{bottom:554.132533pt;}
.y18e{bottom:557.680933pt;}
.y1e{bottom:558.921067pt;}
.y166{bottom:561.037333pt;}
.y1b6{bottom:562.158667pt;}
.y148{bottom:566.010533pt;}
.yff{bottom:569.250533pt;}
.y64{bottom:569.250667pt;}
.y3d{bottom:571.587733pt;}
.ya3{bottom:572.799067pt;}
.y80{bottom:572.799200pt;}
.y1d{bottom:576.921067pt;}
.y165{bottom:579.704000pt;}
.ydf{bottom:580.825333pt;}
.y18f{bottom:584.368667pt;}
.y147{bottom:584.677200pt;}
.yfe{bottom:587.917200pt;}
.y63{bottom:587.917333pt;}
.y3c{bottom:590.254400pt;}
.yc0{bottom:591.463867pt;}
.ya2{bottom:591.465733pt;}
.y7f{bottom:591.465867pt;}
.y1c{bottom:594.921067pt;}
.y164{bottom:598.370667pt;}
.y126{bottom:603.035333pt;}
.y145{bottom:603.343867pt;}
.yfd{bottom:606.583867pt;}
.y146{bottom:607.783867pt;}
.y3b{bottom:608.921067pt;}
.ybf{bottom:610.130533pt;}
.ya1{bottom:610.132400pt;}
.y7e{bottom:610.132533pt;}
.y1b{bottom:612.921067pt;}
.y163{bottom:617.037333pt;}
.y125{bottom:621.702000pt;}
.y62{bottom:621.702133pt;}
.y144{bottom:622.010533pt;}
.yfc{bottom:625.250533pt;}
.y3a{bottom:627.587733pt;}
.y112{bottom:628.797200pt;}
.ya0{bottom:628.799067pt;}
.y7d{bottom:628.799200pt;}
.y1a{bottom:630.921067pt;}
.y1a3{bottom:633.239067pt;}
.y162{bottom:635.704000pt;}
.y124{bottom:640.368667pt;}
.y61{bottom:640.368800pt;}
.y143{bottom:640.677200pt;}
.ybe{bottom:643.917200pt;}
.y39{bottom:646.254400pt;}
.y9f{bottom:647.465733pt;}
.y19{bottom:648.921067pt;}
.y161{bottom:654.370667pt;}
.y123{bottom:659.035333pt;}
.y60{bottom:659.035467pt;}
.y142{bottom:659.343867pt;}
.ybd{bottom:662.583867pt;}
.y7c{bottom:662.584000pt;}
.y38{bottom:664.921067pt;}
.y18d{bottom:666.132400pt;}
.y18{bottom:666.921067pt;}
.y160{bottom:673.037333pt;}
.y17c{bottom:673.041200pt;}
.y122{bottom:677.702000pt;}
.y5f{bottom:677.702133pt;}
.y140{bottom:678.010533pt;}
.y9e{bottom:681.250533pt;}
.y7b{bottom:681.250667pt;}
.y141{bottom:682.450533pt;}
.y37{bottom:683.587733pt;}
.y18c{bottom:684.797200pt;}
.y193{bottom:684.799067pt;}
.y17{bottom:684.921067pt;}
.y14{bottom:695.807467pt;}
.yd9{bottom:696.368667pt;}
.y5e{bottom:696.368800pt;}
.y13f{bottom:696.677200pt;}
.y9d{bottom:699.917200pt;}
.y7a{bottom:699.917333pt;}
.y36{bottom:702.254400pt;}
.y16{bottom:702.921067pt;}
.y192{bottom:703.465733pt;}
.y13{bottom:714.207467pt;}
.yd8{bottom:715.035333pt;}
.y5d{bottom:715.035467pt;}
.y13e{bottom:715.343867pt;}
.y9c{bottom:718.583867pt;}
.y79{bottom:718.584000pt;}
.y15{bottom:720.921067pt;}
.y1a2{bottom:722.132400pt;}
.y15f{bottom:723.410000pt;}
.yd7{bottom:733.702000pt;}
.y5c{bottom:733.702133pt;}
.y13d{bottom:734.010533pt;}
.y1a6{bottom:737.248667pt;}
.y9b{bottom:737.250533pt;}
.y78{bottom:737.250667pt;}
.y1a1{bottom:740.799067pt;}
.y12{bottom:743.187467pt;}
.y15e{bottom:750.610000pt;}
.yd6{bottom:752.368667pt;}
.y5b{bottom:752.368800pt;}
.y13c{bottom:752.677200pt;}
.y9a{bottom:755.917200pt;}
.y77{bottom:755.917333pt;}
.y1a0{bottom:759.465733pt;}
.yc{bottom:767.123333pt;}
.y11{bottom:768.390667pt;}
.yd5{bottom:771.035333pt;}
.y5a{bottom:771.035467pt;}
.y99{bottom:774.583867pt;}
.y76{bottom:774.584000pt;}
.y13b{bottom:786.462133pt;}
.yd4{bottom:789.702000pt;}
.y59{bottom:789.702133pt;}
.y10{bottom:790.790667pt;}
.y98{bottom:793.250533pt;}
.y75{bottom:793.250667pt;}
.yb{bottom:794.323467pt;}
.y18b{bottom:797.690533pt;}
.y13a{bottom:805.128800pt;}
.yd3{bottom:808.368667pt;}
.y58{bottom:808.368800pt;}
.y97{bottom:811.917200pt;}
.yf{bottom:820.749733pt;}
.ya{bottom:821.520800pt;}
.y139{bottom:823.795467pt;}
.yd2{bottom:827.035333pt;}
.y57{bottom:827.035467pt;}
.y96{bottom:830.583867pt;}
.y138{bottom:842.462133pt;}
.yd1{bottom:845.702000pt;}
.y56{bottom:845.702133pt;}
.y95{bottom:849.250533pt;}
.y74{bottom:850.142133pt;}
.ye{bottom:855.949733pt;}
.y9{bottom:859.306133pt;}
.y137{bottom:861.128800pt;}
.ybc{bottom:864.368667pt;}
.y55{bottom:864.368800pt;}
.y12e{bottom:867.915333pt;}
.y94{bottom:867.917200pt;}
.y136{bottom:879.795467pt;}
.ybb{bottom:883.035333pt;}
.y54{bottom:883.035467pt;}
.y8{bottom:886.506000pt;}
.y18a{bottom:887.475333pt;}
.yd{bottom:891.149733pt;}
.y135{bottom:898.462133pt;}
.y93{bottom:901.702000pt;}
.y53{bottom:901.702133pt;}
.y7{bottom:913.706000pt;}
.y134{bottom:917.128800pt;}
.y92{bottom:920.368667pt;}
.y52{bottom:920.368800pt;}
.y2{bottom:964.503467pt;}
.ha{height:24.704000pt;}
.hb{height:28.357120pt;}
.h1{height:34.804688pt;}
.h2{height:36.773438pt;}
.hd{height:37.973333pt;}
.h3{height:38.912000pt;}
.h9{height:48.640000pt;}
.hc{height:49.726681pt;}
.h7{height:54.581333pt;}
.h8{height:55.936000pt;}
.h5{height:64.736000pt;}
.h4{height:66.277333pt;}
.h6{height:85.770667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.xc{left:86.929200pt;}
.x7{left:90.708667pt;}
.x2{left:91.931733pt;}
.x34{left:93.411200pt;}
.x4c{left:94.488267pt;}
.x4a{left:105.338267pt;}
.x2b{left:117.871600pt;}
.x11{left:120.009467pt;}
.x1c{left:121.864533pt;}
.x37{left:124.202933pt;}
.x2c{left:126.228267pt;}
.x1a{left:132.327333pt;}
.x64{left:144.291600pt;}
.x35{left:149.098000pt;}
.x59{left:156.475600pt;}
.x36{left:160.806267pt;}
.x55{left:164.347600pt;}
.x53{left:167.443333pt;}
.x51{left:168.413733pt;}
.x1e{left:172.239467pt;}
.x4e{left:174.018000pt;}
.x61{left:175.863067pt;}
.x12{left:177.119200pt;}
.x3e{left:184.826933pt;}
.x5f{left:189.727600pt;}
.x46{left:191.182400pt;}
.x3f{left:193.113333pt;}
.x2a{left:196.639867pt;}
.x66{left:197.688133pt;}
.x58{left:199.841733pt;}
.x47{left:207.524400pt;}
.x5e{left:208.888267pt;}
.x4d{left:214.172533pt;}
.x40{left:226.555067pt;}
.x29{left:230.608800pt;}
.x41{left:234.852267pt;}
.x2f{left:236.099333pt;}
.x1d{left:237.181333pt;}
.x38{left:238.879600pt;}
.x5b{left:247.645467pt;}
.x52{left:254.253200pt;}
.x1f{left:257.889867pt;}
.x4{left:270.341200pt;}
.x62{left:271.289733pt;}
.x32{left:273.327067pt;}
.x20{left:278.552267pt;}
.x21{left:281.644933pt;}
.x48{left:303.697067pt;}
.x19{left:304.856400pt;}
.x1b{left:320.575200pt;}
.x49{left:330.708267pt;}
.x22{left:336.844933pt;}
.x2d{left:342.338000pt;}
.x31{left:344.836133pt;}
.x33{left:349.094133pt;}
.x2e{left:350.686933pt;}
.x54{left:361.841067pt;}
.x65{left:365.634933pt;}
.x68{left:370.038133pt;}
.x30{left:385.304267pt;}
.x50{left:390.647067pt;}
.xd{left:392.178267pt;}
.xe{left:396.320267pt;}
.x9{left:415.999333pt;}
.x8{left:431.117467pt;}
.x4f{left:450.771867pt;}
.x23{left:461.681867pt;}
.x57{left:489.947467pt;}
.x3a{left:491.848800pt;}
.x67{left:494.386667pt;}
.x28{left:498.218000pt;}
.xf{left:504.775333pt;}
.x16{left:508.085200pt;}
.x5{left:513.374667pt;}
.x15{left:524.583600pt;}
.x60{left:544.329467pt;}
.x56{left:550.769333pt;}
.x26{left:560.270267pt;}
.x27{left:568.490400pt;}
.x10{left:575.509067pt;}
.x42{left:577.620933pt;}
.x63{left:585.617067pt;}
.x13{left:595.487733pt;}
.x44{left:604.775333pt;}
.x3b{left:609.292933pt;}
.x17{left:617.298000pt;}
.x5a{left:622.516267pt;}
.x14{left:625.712800pt;}
.x5c{left:636.480667pt;}
.x43{left:642.383600pt;}
.x18{left:645.234933pt;}
.xa{left:650.342400pt;}
.x39{left:652.066267pt;}
.xb{left:654.549600pt;}
.x69{left:683.303333pt;}
.x4b{left:687.020000pt;}
.x5d{left:698.509867pt;}
.x45{left:703.422400pt;}
.x24{left:728.262400pt;}
.x3c{left:731.083467pt;}
.x25{left:736.672800pt;}
.x3d{left:740.409467pt;}
.x6{left:757.984267pt;}
.x1{left:761.574800pt;}
}




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