
    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_c116578713eb8409d068918e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_05bdbd7643b913d807ed0498.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ac8a2a3db7b2b0c5568a883e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_56380999405c5ae89a14029f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.364746;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_9b408b1b4506db0c79ac329f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9fafb721dd4750788c81d3d6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.364746;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_d59e9d1792064cdff3e3ecfc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4b8f48eef679e692adbc1657.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_640690d482553e7cc142c7a0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8330b4b33232f9678f934e81.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_99f6302e267e39eb1ff6abbd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_df09b58ecd0ade85eb7b1836.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_24328d369bf366a826487ffc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6e4cadfd94aa1bbec7e62335.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dca070a23a7d99836051f4fe.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cc8ebbe588b9f2f2088d10d2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b2c5059378cae5aedc880e0b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_72661a62691b9ea094916a3a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_61323185f37457bf4dced8c4.woff')format("woff");}.ff13{font-family:ff13;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_640690d482553e7cc142c7a0.woff')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8d6f96ec5c00d67828bfe3de.woff')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a121bc4708f08530aae0f557.woff')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5870e38ddccc47b85a8dd590.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_97ed68234ae77324d6750a79.woff')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9b7ee78e18bd8431a7fb5d0a.woff')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d2744e5b8e5045200cc590d0.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ad1fdfb1674d57f554c004ec.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7d2a2fe844fc1a9da9c25ca3.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e8d9f8598a6f1663860b27f3.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_bcdae5a7aae977d015519254.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_353b09674ec9dd88b5ba0f79.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_45ef2754df7118c5f3a64d2d.woff')format("woff");}.ff20{font-family:ff20;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_db5e79dd436e01f93cf81d9f.woff')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_b5aee5501979adf7ee449ac4.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_298fa518c29b1faf53fb4df2.woff')format("woff");}.ff23{font-family:ff23;line-height:1.364746;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:ff24;src:url('chunks/assets/font_16bed9f70cf7083ab5338161.woff')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_7f4dc0fe0aecfb2a40abc3a9.woff')format("woff");}.ff25{font-family:ff25;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_cdf11722339e763a9b67e59f.woff')format("woff");}.ff26{font-family:ff26;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8c{transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084746,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139286,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149194,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158854,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164286,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169492,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170290,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171642,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173529,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174157,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178161,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180328,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182836,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186567,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192623,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194444,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197059,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198413,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199519,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201149,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.201807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201807,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203571,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207317,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210366,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210714,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212121,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212766,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218354,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219512,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220833,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221154,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223837,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223881,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225610,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227941,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235955,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241012,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245262,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246377,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246951,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m5f{transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252874,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259740,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262931,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266854,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267045,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270492,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270497,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276923,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277027,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277344,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280702,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282051,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287975,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307692,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.310127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310127,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315789,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315972,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317308,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322785,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329114,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346774,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls64{letter-spacing:-21.766800px;}
.ls8e{letter-spacing:-11.695950px;}
.lsa1{letter-spacing:-11.118000px;}
.ls8d{letter-spacing:-10.913850px;}
.ls8b{letter-spacing:-10.882125px;}
.ls94{letter-spacing:-10.401600px;}
.ls66{letter-spacing:-10.378500px;}
.lsb1{letter-spacing:-9.538575px;}
.ls28{letter-spacing:-9.321000px;}
.ls68{letter-spacing:-8.893125px;}
.ls1e{letter-spacing:-8.248500px;}
.lsf{letter-spacing:-8.153625px;}
.ls87{letter-spacing:-7.771125px;}
.ls14{letter-spacing:-7.414125px;}
.ls15{letter-spacing:-6.668250px;}
.ls6b{letter-spacing:-6.661875px;}
.ls48{letter-spacing:-6.268650px;}
.ls8c{letter-spacing:-6.222000px;}
.ls3a{letter-spacing:-6.093450px;}
.ls12{letter-spacing:-5.928750px;}
.ls5a{letter-spacing:-5.832825px;}
.lsa8{letter-spacing:-5.832000px;}
.ls49{letter-spacing:-5.806500px;}
.ls5e{letter-spacing:-5.499450px;}
.ls72{letter-spacing:-5.497200px;}
.ls89{letter-spacing:-5.444250px;}
.ls16{letter-spacing:-5.317650px;}
.ls11{letter-spacing:-5.189250px;}
.lsb6{letter-spacing:-5.025000px;}
.lsaa{letter-spacing:-4.999500px;}
.ls6f{letter-spacing:-4.950600px;}
.ls1c{letter-spacing:-4.950000px;}
.lsac{letter-spacing:-4.738500px;}
.ls86{letter-spacing:-4.666500px;}
.ls98{letter-spacing:-4.568850px;}
.lsbf{letter-spacing:-4.567725px;}
.ls6a{letter-spacing:-4.450050px;}
.lsd{letter-spacing:-4.449750px;}
.ls25{letter-spacing:-4.406250px;}
.lsb2{letter-spacing:-4.398900px;}
.ls90{letter-spacing:-4.363200px;}
.ls79{letter-spacing:-4.331250px;}
.ls17{letter-spacing:-4.322250px;}
.ls5c{letter-spacing:-4.205400px;}
.lsbb{letter-spacing:-4.185825px;}
.ls57{letter-spacing:-4.050150px;}
.ls2e{letter-spacing:-3.904575px;}
.ls35{letter-spacing:-3.870750px;}
.ls1d{letter-spacing:-3.808950px;}
.ls3e{letter-spacing:-3.806550px;}
.ls58{letter-spacing:-3.771075px;}
.ls10{letter-spacing:-3.703875px;}
.ls29{letter-spacing:-3.691200px;}
.ls60{letter-spacing:-3.624150px;}
.ls4a{letter-spacing:-3.609375px;}
.ls6c{letter-spacing:-3.511200px;}
.lsb8{letter-spacing:-3.351675px;}
.ls53{letter-spacing:-3.241125px;}
.ls84{letter-spacing:-3.111000px;}
.ls3f{letter-spacing:-3.105000px;}
.ls76{letter-spacing:-3.096000px;}
.ls3b{letter-spacing:-3.044250px;}
.ls4c{letter-spacing:-3.021750px;}
.ls3d{letter-spacing:-3.000150px;}
.lsc{letter-spacing:-2.964375px;}
.ls22{letter-spacing:-2.952000px;}
.ls24{letter-spacing:-2.905875px;}
.ls50{letter-spacing:-2.488800px;}
.ls96{letter-spacing:-2.472300px;}
.ls2d{letter-spacing:-2.439450px;}
.ls52{letter-spacing:-2.432100px;}
.ls47{letter-spacing:-2.376900px;}
.ls8a{letter-spacing:-2.333250px;}
.ls38{letter-spacing:-2.286900px;}
.ls26{letter-spacing:-2.286375px;}
.ls36{letter-spacing:-2.284425px;}
.ls40{letter-spacing:-2.282175px;}
.lse{letter-spacing:-2.224875px;}
.ls41{letter-spacing:-2.218125px;}
.ls20{letter-spacing:-2.217600px;}
.ls91{letter-spacing:-2.118450px;}
.ls33{letter-spacing:-2.030400px;}
.ls19{letter-spacing:-1.748250px;}
.lsb4{letter-spacing:-1.673325px;}
.lsa7{letter-spacing:-1.665000px;}
.ls92{letter-spacing:-1.648200px;}
.ls69{letter-spacing:-1.630200px;}
.ls51{letter-spacing:-1.623075px;}
.ls5d{letter-spacing:-1.574100px;}
.lsbe{letter-spacing:-1.572825px;}
.ls85{letter-spacing:-1.555500px;}
.ls78{letter-spacing:-1.550400px;}
.ls34{letter-spacing:-1.550250px;}
.ls56{letter-spacing:-1.525875px;}
.ls39{letter-spacing:-1.524600px;}
.ls27{letter-spacing:-1.522575px;}
.lsa{letter-spacing:-1.485375px;}
.ls21{letter-spacing:-1.478400px;}
.ls7a{letter-spacing:-1.477125px;}
.ls13{letter-spacing:-1.447125px;}
.ls1b{letter-spacing:-1.430400px;}
.lsa5{letter-spacing:-1.417500px;}
.ls7b{letter-spacing:-1.395900px;}
.lsb5{letter-spacing:-0.839175px;}
.lsa9{letter-spacing:-0.832500px;}
.ls95{letter-spacing:-0.824100px;}
.ls75{letter-spacing:-0.821100px;}
.lsbc{letter-spacing:-0.810900px;}
.ls4f{letter-spacing:-0.809025px;}
.ls4e{letter-spacing:-0.787050px;}
.ls88{letter-spacing:-0.777750px;}
.ls32{letter-spacing:-0.775125px;}
.ls77{letter-spacing:-0.772800px;}
.lsa3{letter-spacing:-0.767550px;}
.ls1a{letter-spacing:-0.763800px;}
.ls6e{letter-spacing:-0.763200px;}
.ls37{letter-spacing:-0.762300px;}
.ls99{letter-spacing:-0.760500px;}
.lsa4{letter-spacing:-0.758625px;}
.ls30{letter-spacing:-0.750375px;}
.lsb{letter-spacing:-0.739500px;}
.ls1f{letter-spacing:-0.739200px;}
.ls65{letter-spacing:-0.666900px;}
.ls8{letter-spacing:0.000000px;}
.ls71{letter-spacing:0.115500px;}
.ls18{letter-spacing:0.739200px;}
.ls2{letter-spacing:0.739500px;}
.ls93{letter-spacing:0.761250px;}
.ls82{letter-spacing:0.762300px;}
.ls61{letter-spacing:0.763200px;}
.ls70{letter-spacing:0.772800px;}
.ls2c{letter-spacing:0.775125px;}
.ls7d{letter-spacing:0.777750px;}
.lsb3{letter-spacing:0.786600px;}
.ls44{letter-spacing:0.787050px;}
.ls31{letter-spacing:0.800100px;}
.ls42{letter-spacing:0.809025px;}
.lsb9{letter-spacing:0.810900px;}
.ls0{letter-spacing:0.818850px;}
.ls80{letter-spacing:0.824100px;}
.ls9d{letter-spacing:0.832500px;}
.lsba{letter-spacing:0.834750px;}
.ls4b{letter-spacing:0.837900px;}
.lsae{letter-spacing:0.839175px;}
.ls6d{letter-spacing:0.845250px;}
.ls6{letter-spacing:1.478400px;}
.ls3{letter-spacing:1.485375px;}
.ls3c{letter-spacing:1.524600px;}
.ls2b{letter-spacing:1.550250px;}
.ls62{letter-spacing:1.550400px;}
.ls7c{letter-spacing:1.555500px;}
.ls43{letter-spacing:1.574100px;}
.ls59{letter-spacing:1.623075px;}
.ls9{letter-spacing:1.645425px;}
.ls81{letter-spacing:1.648200px;}
.ls9f{letter-spacing:1.665000px;}
.lsaf{letter-spacing:1.673325px;}
.lsbd{letter-spacing:1.842750px;}
.lsa2{letter-spacing:2.107575px;}
.ls55{letter-spacing:2.185875px;}
.ls9b{letter-spacing:2.224875px;}
.ls63{letter-spacing:2.323200px;}
.ls7e{letter-spacing:2.333250px;}
.ls45{letter-spacing:2.430000px;}
.ls4d{letter-spacing:2.432100px;}
.ls1{letter-spacing:2.464275px;}
.ls8f{letter-spacing:2.472300px;}
.lsb0{letter-spacing:2.512500px;}
.lsa0{letter-spacing:2.559375px;}
.ls2a{letter-spacing:2.964375px;}
.ls7f{letter-spacing:3.111000px;}
.ls9c{letter-spacing:3.334500px;}
.ls67{letter-spacing:3.546900px;}
.ls7{letter-spacing:3.691200px;}
.ls4{letter-spacing:3.703875px;}
.ls74{letter-spacing:3.813000px;}
.ls5f{letter-spacing:4.050150px;}
.ls5b{letter-spacing:4.100250px;}
.lsad{letter-spacing:4.449750px;}
.ls2f{letter-spacing:4.643850px;}
.ls9e{letter-spacing:4.999500px;}
.ls23{letter-spacing:5.506200px;}
.lsb7{letter-spacing:5.706750px;}
.ls46{letter-spacing:5.904000px;}
.ls54{letter-spacing:5.959650px;}
.ls83{letter-spacing:6.855750px;}
.ls73{letter-spacing:8.105325px;}
.ls97{letter-spacing:8.235975px;}
.lsa6{letter-spacing:9.623250px;}
.lsab{letter-spacing:10.038000px;}
.ls9a{letter-spacing:10.378500px;}
.ls5{letter-spacing:11.421825px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._18{margin-left:-105.385975px;}
._15{margin-left:-52.022076px;}
._2a{margin-left:-44.966969px;}
._1b{margin-left:-43.346145px;}
._1a{margin-left:-38.918041px;}
._23{margin-left:-34.385853px;}
._20{margin-left:-31.138546px;}
._27{margin-left:-29.603073px;}
._28{margin-left:-27.204382px;}
._12{margin-left:-24.008360px;}
._19{margin-left:-21.336960px;}
._17{margin-left:-18.899967px;}
._26{margin-left:-16.714831px;}
._1d{margin-left:-15.598076px;}
._10{margin-left:-14.421952px;}
._f{margin-left:-12.438127px;}
._8{margin-left:-10.912795px;}
._a{margin-left:-9.284410px;}
._b{margin-left:-7.746328px;}
._7{margin-left:-6.179431px;}
._3{margin-left:-5.075325px;}
._c{margin-left:-4.035375px;}
._4{margin-left:-2.713694px;}
._11{margin-left:-1.230375px;}
._d{width:1.226520px;}
._2{width:2.271150px;}
._5{width:3.528469px;}
._1{width:4.557750px;}
._6{width:6.273000px;}
._14{width:7.761959px;}
._9{width:8.778375px;}
._13{width:10.209375px;}
._0{width:11.510250px;}
._1f{width:12.557244px;}
._16{width:14.361328px;}
._e{width:15.564166px;}
._1c{width:16.568625px;}
._1e{width:18.003448px;}
._2b{width:19.188926px;}
._21{width:20.540669px;}
._24{width:22.459125px;}
._22{width:23.724959px;}
._29{width:27.866631px;}
._25{width:32.881781px;}
.fc0{color:transparent;}
.fs16{font-size:35.250000px;}
.fs28{font-size:42.750000px;}
.fs27{font-size:43.500000px;}
.fs1e{font-size:44.250000px;}
.fs1f{font-size:45.000000px;}
.fs18{font-size:45.750000px;}
.fs13{font-size:46.500000px;}
.fs12{font-size:47.250000px;}
.fs10{font-size:48.000000px;}
.fs11{font-size:48.750000px;}
.fs14{font-size:49.500000px;}
.fsf{font-size:50.250000px;}
.fsd{font-size:51.000000px;}
.fs15{font-size:51.750000px;}
.fs17{font-size:52.500000px;}
.fs1d{font-size:53.250000px;}
.fs26{font-size:54.000000px;}
.fs24{font-size:55.500000px;}
.fs29{font-size:56.250000px;}
.fs22{font-size:56.862600px;}
.fs21{font-size:57.000000px;}
.fse{font-size:57.750000px;}
.fsa{font-size:58.500000px;}
.fsb{font-size:59.250000px;}
.fs19{font-size:60.000000px;}
.fs20{font-size:60.750000px;}
.fs7{font-size:61.500000px;}
.fs5{font-size:61.785600px;}
.fs6{font-size:62.250000px;}
.fs1c{font-size:63.000000px;}
.fs3{font-size:63.227400px;}
.fs1a{font-size:63.231000px;}
.fs2{font-size:63.750000px;}
.fs4{font-size:64.500000px;}
.fs1b{font-size:65.091600px;}
.fsc{font-size:65.250000px;}
.fs25{font-size:66.000000px;}
.fs9{font-size:66.750000px;}
.fs23{font-size:67.500000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:77.250000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:58.096350px;}
.yba{bottom:58.455600px;}
.yb9{bottom:58.455900px;}
.y8b{bottom:63.496650px;}
.yed{bottom:64.570950px;}
.y29{bottom:66.016350px;}
.y28{bottom:66.020400px;}
.y122{bottom:67.456650px;}
.y5a{bottom:71.416650px;}
.yb8{bottom:71.775900px;}
.yb7{bottom:71.776350px;}
.y8a{bottom:76.096800px;}
.yec{bottom:77.535450px;}
.y26{bottom:79.336200px;}
.y27{bottom:79.336650px;}
.y13f{bottom:80.416050px;}
.y13e{bottom:80.421150px;}
.y120{bottom:80.776650px;}
.y121{bottom:80.776950px;}
.y59{bottom:84.735450px;}
.yb6{bottom:85.816350px;}
.yb5{bottom:85.816800px;}
.y89{bottom:89.776500px;}
.yea{bottom:91.210725px;}
.yeb{bottom:91.216800px;}
.y25{bottom:92.296200px;}
.y11f{bottom:94.456650px;}
.y13d{bottom:94.815900px;}
.y58{bottom:98.416650px;}
.y57{bottom:98.419800px;}
.yb4{bottom:99.136800px;}
.y87{bottom:103.095937px;}
.y88{bottom:103.096800px;}
.ye9{bottom:105.255600px;}
.y24{bottom:105.616500px;}
.y13c{bottom:107.416050px;}
.y11d{bottom:107.776650px;}
.y11e{bottom:107.776950px;}
.y56{bottom:111.735300px;}
.y55{bottom:111.735900px;}
.yb3{bottom:112.455600px;}
.y86{bottom:116.776500px;}
.y22{bottom:118.571625px;}
.y23{bottom:118.576050px;}
.ye8{bottom:118.580850px;}
.y11c{bottom:121.456650px;}
.y54{bottom:125.775900px;}
.y85{bottom:130.456050px;}
.ye7{bottom:131.896350px;}
.y21{bottom:132.616500px;}
.y52{bottom:138.730275px;}
.y53{bottom:138.735300px;}
.y84{bottom:143.417250px;}
.y83{bottom:143.419650px;}
.ye5{bottom:145.575037px;}
.ye6{bottom:145.576050px;}
.y51{bottom:152.775900px;}
.y82{bottom:156.735900px;}
.y81{bottom:156.736687px;}
.ye4{bottom:159.255600px;}
.y11b{bottom:162.488062px;}
.y50{bottom:166.455600px;}
.yb2{bottom:170.058675px;}
.y80{bottom:170.417250px;}
.y7f{bottom:170.419650px;}
.y11a{bottom:178.697588px;}
.y4f{bottom:180.136800px;}
.y4e{bottom:180.142125px;}
.y7e{bottom:183.735900px;}
.yb1{bottom:186.251175px;}
.y20{bottom:190.215600px;}
.ye3{bottom:191.655900px;}
.y4d{bottom:193.816950px;}
.y119{bottom:195.254137px;}
.y7d{bottom:197.417250px;}
.yb0{bottom:203.183550px;}
.y1f{bottom:206.416650px;}
.y4c{bottom:207.856950px;}
.ye2{bottom:208.933275px;}
.y118{bottom:212.179762px;}
.yae{bottom:219.369975px;}
.yaf{bottom:219.376050px;}
.y1d{bottom:223.329975px;}
.y1e{bottom:223.336200px;}
.ye1{bottom:225.125775px;}
.y117{bottom:228.372262px;}
.yad{bottom:236.295600px;}
.y1c{bottom:240.255600px;}
.ye0{bottom:242.051400px;}
.y116{bottom:244.931325px;}
.yab{bottom:252.851325px;}
.yac{bottom:252.855900px;}
.y7c{bottom:255.736500px;}
.y1b{bottom:256.815900px;}
.y1a{bottom:256.816988px;}
.ydf{bottom:258.610463px;}
.y115{bottom:261.850875px;}
.yaa{bottom:269.778863px;}
.y7b{bottom:272.296650px;}
.y4b{bottom:273.371213px;}
.y18{bottom:273.375263px;}
.y19{bottom:273.376050px;}
.yde{bottom:275.169525px;}
.y114{bottom:278.776500px;}
.ya9{bottom:286.337925px;}
.y7a{bottom:289.216200px;}
.y79{bottom:289.221488px;}
.y4a{bottom:290.296837px;}
.ydd{bottom:292.111537px;}
.y113{bottom:296.056800px;}
.y112{bottom:296.058038px;}
.ya8{bottom:303.263550px;}
.y49{bottom:306.855900px;}
.y17{bottom:307.943700px;}
.ydc{bottom:309.387787px;}
.y111{bottom:312.613350px;}
.ya7{bottom:319.449975px;}
.y78{bottom:323.056800px;}
.y48{bottom:323.416050px;}
.y16{bottom:324.130125px;}
.y110{bottom:329.172413px;}
.ya6{bottom:336.375600px;}
.ya5{bottom:336.376688px;}
.y47{bottom:340.335600px;}
.y15{bottom:341.055750px;}
.ydb{bottom:343.223100px;}
.y10f{bottom:345.731475px;}
.ya4{bottom:352.935750px;}
.y77{bottom:356.536500px;}
.y46{bottom:356.896987px;}
.y14{bottom:357.616050px;}
.y13{bottom:357.622800px;}
.yda{bottom:359.416688px;}
.y10e{bottom:362.657100px;}
.y76{bottom:373.096800px;}
.y45{bottom:373.449975px;}
.y12{bottom:373.804650px;}
.yd9{bottom:375.966337px;}
.y10d{bottom:379.211175px;}
.ya3{bottom:386.776500px;}
.y74{bottom:389.650875px;}
.y75{bottom:389.657100px;}
.y44{bottom:390.371025px;}
.y11{bottom:390.730275px;}
.yd8{bottom:392.891962px;}
.y10c{bottom:396.136800px;}
.ya2{bottom:403.337888px;}
.y73{bottom:406.576500px;}
.y72{bottom:406.577737px;}
.y43{bottom:407.296650px;}
.y10{bottom:407.655900px;}
.yd7{bottom:410.168212px;}
.y10a{bottom:413.401988px;}
.y10b{bottom:413.415600px;}
.ya1{bottom:419.890725px;}
.y71{bottom:423.136800px;}
.y42{bottom:423.856950px;}
.yf{bottom:424.216200px;}
.yd6{bottom:426.364350px;}
.y109{bottom:429.610425px;}
.ya0{bottom:436.816350px;}
.y70{bottom:439.697100px;}
.y41{bottom:440.770275px;}
.ye{bottom:441.135750px;}
.yd{bottom:441.136838px;}
.yd5{bottom:443.289975px;}
.y108{bottom:446.536050px;}
.yc{bottom:457.689825px;}
.y40{bottom:457.697137px;}
.yd4{bottom:460.215600px;}
.y106{bottom:463.451025px;}
.y107{bottom:463.455600px;}
.y9f{bottom:470.657100px;}
.y9e{bottom:470.659500px;}
.y6f{bottom:473.903700px;}
.y3f{bottom:474.245550px;}
.yb{bottom:474.615450px;}
.ya{bottom:474.619500px;}
.yd3{bottom:477.136800px;}
.y105{bottom:480.376650px;}
.y9d{bottom:487.931325px;}
.y6d{bottom:490.090125px;}
.y6e{bottom:490.096200px;}
.y3e{bottom:491.171175px;}
.y9{bottom:491.895750px;}
.y13b{bottom:492.263550px;}
.yd2{bottom:493.695450px;}
.y104{bottom:496.936950px;}
.y9c{bottom:504.856950px;}
.y6c{bottom:507.015750px;}
.y3d{bottom:508.096800px;}
.y13a{bottom:508.456050px;}
.y139{bottom:508.457288px;}
.y7{bottom:508.810875px;}
.y8{bottom:508.815300px;}
.yd1{bottom:510.975750px;}
.y103{bottom:513.863250px;}
.y9b{bottom:521.415600px;}
.y138{bottom:525.010125px;}
.y6{bottom:525.736500px;}
.yd0{bottom:527.176388px;}
.y102{bottom:530.055750px;}
.y9a{bottom:538.336650px;}
.y6b{bottom:540.136200px;}
.y3c{bottom:541.576500px;}
.y137{bottom:541.935750px;}
.y5{bottom:542.662950px;}
.ycf{bottom:543.732112px;}
.y101{bottom:546.976950px;}
.y100{bottom:546.981675px;}
.y99{bottom:555.254175px;}
.y6a{bottom:556.696500px;}
.y3b{bottom:558.496050px;}
.y136{bottom:559.216200px;}
.y135{bottom:559.217437px;}
.yce{bottom:560.291175px;}
.yff{bottom:563.540737px;}
.y98{bottom:572.179800px;}
.y134{bottom:575.776500px;}
.ycd{bottom:577.210575px;}
.yfe{bottom:580.816987px;}
.y97{bottom:589.449975px;}
.y69{bottom:591.249300px;}
.y3a{bottom:592.337475px;}
.y133{bottom:592.697137px;}
.ycc{bottom:594.131362px;}
.yfd{bottom:597.376050px;}
.y96{bottom:606.375600px;}
.y68{bottom:607.457737px;}
.y132{bottom:609.256200px;}
.y131{bottom:609.257287px;}
.y39{bottom:609.263100px;}
.ycb{bottom:611.056987px;}
.y67{bottom:624.016800px;}
.y38{bottom:625.455600px;}
.y130{bottom:625.810275px;}
.yc9{bottom:627.609825px;}
.yca{bottom:627.616050px;}
.yfc{bottom:630.855900px;}
.y95{bottom:639.856537px;}
.y66{bottom:640.937587px;}
.y37{bottom:642.376650px;}
.y12f{bottom:642.735900px;}
.y4{bottom:644.535450px;}
.yc8{bottom:644.544937px;}
.yfa{bottom:647.770875px;}
.yfb{bottom:647.776950px;}
.y12e{bottom:655.336200px;}
.y94{bottom:656.415600px;}
.y65{bottom:657.496650px;}
.y36{bottom:658.936950px;}
.y12d{bottom:659.650875px;}
.y3{bottom:661.095750px;}
.yc7{bottom:662.187750px;}
.yf9{bottom:664.696500px;}
.y35{bottom:676.216837px;}
.y12c{bottom:676.570425px;}
.yc6{bottom:678.380250px;}
.yf8{bottom:681.616050px;}
.y93{bottom:690.249975px;}
.y64{bottom:691.697738px;}
.y34{bottom:692.775900px;}
.y12b{bottom:693.486638px;}
.yc5{bottom:695.656500px;}
.y2{bottom:697.105125px;}
.yf7{bottom:698.531025px;}
.y91{bottom:707.168212px;}
.y92{bottom:707.175600px;}
.y63{bottom:708.256800px;}
.y33{bottom:709.690875px;}
.y12a{bottom:711.129450px;}
.yc4{bottom:712.576050px;}
.yc3{bottom:712.577137px;}
.yf6{bottom:715.456650px;}
.y1{bottom:718.696500px;}
.y90{bottom:723.377887px;}
.y62{bottom:724.451625px;}
.y32{bottom:726.616500px;}
.y129{bottom:726.971325px;}
.yc2{bottom:729.136200px;}
.y8f{bottom:739.936950px;}
.y61{bottom:741.377250px;}
.y31{bottom:743.536050px;}
.y128{bottom:743.890725px;}
.yf5{bottom:748.936350px;}
.y2f{bottom:760.810275px;}
.y30{bottom:760.816350px;}
.yc1{bottom:763.337288px;}
.yf4{bottom:765.496650px;}
.y8e{bottom:773.780100px;}
.y60{bottom:775.216200px;}
.y2e{bottom:777.735900px;}
.y127{bottom:777.737138px;}
.yc0{bottom:779.890275px;}
.yf3{bottom:782.771962px;}
.y8d{bottom:791.056350px;}
.y8c{bottom:791.061637px;}
.y5f{bottom:791.776500px;}
.y126{bottom:794.282588px;}
.y2d{bottom:795.016350px;}
.ybf{bottom:796.815900px;}
.yf2{bottom:799.331025px;}
.y5e{bottom:808.336650px;}
.y125{bottom:811.208213px;}
.y2c{bottom:811.935750px;}
.ybe{bottom:813.376050px;}
.yf1{bottom:816.256650px;}
.y5d{bottom:824.896950px;}
.y124{bottom:827.410575px;}
.y2b{bottom:828.496050px;}
.ybc{bottom:830.291175px;}
.ybd{bottom:830.295600px;}
.yef{bottom:833.170125px;}
.yf0{bottom:833.176200px;}
.y5c{bottom:841.816350px;}
.y123{bottom:844.336200px;}
.y2a{bottom:845.415600px;}
.ybb{bottom:847.216800px;}
.yee{bottom:850.095750px;}
.h1f{height:34.836914px;}
.h5a{height:43.839844px;}
.h5c{height:44.586914px;}
.h22{height:44.901123px;}
.h59{height:45.369141px;}
.h24{height:45.614502px;}
.h64{height:46.107422px;}
.h34{height:46.151367px;}
.h41{height:46.350220px;}
.h1e{height:46.373291px;}
.h18{height:46.696289px;}
.h35{height:46.863281px;}
.h36{height:46.933594px;}
.h16{height:47.085938px;}
.h23{height:47.087738px;}
.h19{height:47.109375px;}
.h52{height:47.619141px;}
.h42{height:47.715820px;}
.h17{height:47.821655px;}
.h2f{height:47.845459px;}
.h20{height:48.178711px;}
.h4d{height:48.375000px;}
.h1a{height:48.498047px;}
.h31{height:48.557373px;}
.h33{height:48.577473px;}
.h39{height:49.130859px;}
.h50{height:49.293091px;}
.h15{height:49.317627px;}
.h45{height:49.886719px;}
.h13{height:50.053711px;}
.h30{height:50.062500px;}
.h38{height:50.642578px;}
.h5d{height:50.662978px;}
.h5b{height:50.666878px;}
.h1d{height:50.764526px;}
.h37{height:50.789795px;}
.h51{height:51.398438px;}
.h43{height:51.500244px;}
.h25{height:51.525879px;}
.h1b{height:51.626953px;}
.h21{height:51.884766px;}
.h68{height:52.154297px;}
.h32{height:52.261963px;}
.h4e{height:52.910156px;}
.h3e{height:55.807532px;}
.h4f{height:56.320312px;}
.h1c{height:57.814453px;}
.h46{height:57.884766px;}
.h60{height:58.666992px;}
.h26{height:58.886719px;}
.h3d{height:59.449219px;}
.h3c{height:59.622803px;}
.h14{height:60.231445px;}
.ha{height:60.358887px;}
.h7{height:60.639187px;}
.h10{height:61.013672px;}
.h8{height:61.094971px;}
.h11{height:61.795898px;}
.h2a{height:61.831055px;}
.h5{height:62.054235px;}
.h27{height:62.057769px;}
.h4{height:62.567139px;}
.h4a{height:62.568789px;}
.hc{height:62.570289px;}
.h4b{height:62.575239px;}
.h63{height:62.577189px;}
.h58{height:62.579439px;}
.h55{height:62.580489px;}
.h62{height:62.582139px;}
.h3f{height:62.584839px;}
.h28{height:62.585439px;}
.h2e{height:62.586489px;}
.h9{height:62.591439px;}
.h2d{height:62.592039px;}
.h57{height:62.604789px;}
.hb{height:62.609739px;}
.h56{height:62.616339px;}
.h65{height:62.621589px;}
.h6{height:63.303223px;}
.h2c{height:63.492188px;}
.h29{height:63.883846px;}
.h12{height:64.039307px;}
.hd{height:64.142578px;}
.h61{height:64.743164px;}
.h4c{height:64.775391px;}
.h2b{height:64.924805px;}
.h67{height:65.003906px;}
.h49{height:65.226562px;}
.hf{height:65.511475px;}
.h66{height:65.967773px;}
.h40{height:66.247559px;}
.h44{height:67.271484px;}
.he{height:71.156250px;}
.h2{height:77.853516px;}
.h3{height:78.609375px;}
.h48{height:913.500000px;}
.h47{height:913.592550px;}
.h3b{height:914.250000px;}
.h3a{height:914.312550px;}
.h54{height:915.750000px;}
.h53{height:916.112550px;}
.h1{height:916.500000px;}
.h0{height:916.832550px;}
.h5f{height:917.250000px;}
.h5e{height:917.552550px;}
.w7{width:636.750000px;}
.w6{width:636.751050px;}
.w2{width:639.632550px;}
.w3{width:639.750000px;}
.w4{width:642.512550px;}
.w5{width:642.750000px;}
.w0{width:645.392550px;}
.w1{width:645.750000px;}
.x0{left:0.000000px;}
.xd0{left:17.777550px;}
.xd2{left:19.575450px;}
.xf2{left:20.656500px;}
.x8b{left:22.815300px;}
.x9e{left:23.896350px;}
.xb5{left:24.975750px;}
.xaf{left:26.775300px;}
.xa2{left:27.856350px;}
.x8{left:28.935750px;}
.xb2{left:30.735450px;}
.x4e{left:33.617850px;}
.x32{left:34.695450px;}
.x33{left:40.095750px;}
.x55{left:41.176800px;}
.x61{left:42.273900px;}
.xe0{left:43.335600px;}
.xa5{left:44.775900px;}
.x6e{left:46.216200px;}
.x34{left:48.015750px;}
.x3f{left:49.456050px;}
.x4a{left:50.539012px;}
.x39{left:51.620850px;}
.xe4{left:52.695900px;}
.xee{left:53.775300px;}
.x8e{left:57.376050px;}
.x1{left:60.975300px;}
.x75{left:62.420888px;}
.x7{left:63.494700px;}
.xa6{left:64.935300px;}
.xe7{left:66.375600px;}
.xc6{left:67.456650px;}
.xcf{left:68.542350px;}
.x92{left:74.272500px;}
.x52{left:75.376650px;}
.x3a{left:76.456050px;}
.xb7{left:77.896350px;}
.xb8{left:78.980850px;}
.x13{left:80.411400px;}
.x40{left:82.215600px;}
.x8f{left:86.175750px;}
.xb0{left:89.415600px;}
.x31{left:91.935300px;}
.x3b{left:94.095750px;}
.xba{left:95.539500px;}
.xc4{left:96.615450px;}
.xb3{left:97.696500px;}
.x60{left:98.775900px;}
.xb1{left:100.575450px;}
.xb6{left:103.456050px;}
.x2b{left:105.255600px;}
.x90{left:106.336650px;}
.xbd{left:107.775300px;}
.xd4{left:108.856350px;}
.x12{left:111.016800px;}
.x6b{left:113.536500px;}
.x2c{left:114.975300px;}
.x74{left:117.855900px;}
.x79{left:120.375600px;}
.xe5{left:121.815900px;}
.x71{left:123.976350px;}
.x2d{left:125.055750px;}
.x62{left:126.136800px;}
.x6f{left:127.936350px;}
.x7a{left:129.376650px;}
.x20{left:131.176200px;}
.x72{left:132.616500px;}
.xf7{left:138.735300px;}
.x4f{left:140.175600px;}
.x21{left:141.616050px;}
.x41{left:143.056350px;}
.x50{left:147.016350px;}
.x3c{left:148.815900px;}
.xef{left:149.895300px;}
.x22{left:152.416650px;}
.xd3{left:153.496050px;}
.xa7{left:154.575450px;}
.x42{left:156.735900px;}
.x6c{left:161.416050px;}
.xf6{left:162.856350px;}
.x85{left:165.376050px;}
.x4b{left:168.616050px;}
.x35{left:170.056350px;}
.xe6{left:174.016350px;}
.x86{left:175.095750px;}
.x44{left:176.176800px;}
.x4c{left:178.335600px;}
.xc2{left:180.496050px;}
.x43{left:183.015750px;}
.x45{left:184.456050px;}
.x5d{left:186.616500px;}
.xe8{left:192.016800px;}
.x87{left:193.096200px;}
.x9f{left:194.175600px;}
.xc3{left:196.695450px;}
.x4{left:199.223100px;}
.xf9{left:202.456650px;}
.xa0{left:203.536050px;}
.xe9{left:205.696500px;}
.xdd{left:211.456050px;}
.xf0{left:212.535450px;}
.xbb{left:215.416050px;}
.x7b{left:216.856350px;}
.x51{left:218.655900px;}
.x3d{left:219.735300px;}
.xf3{left:220.816500px;}
.x6d{left:224.776500px;}
.x4d{left:228.375600px;}
.xc9{left:230.176800px;}
.x23{left:237.015750px;}
.x3e{left:242.416050px;}
.x28{left:244.576500px;}
.x24{left:247.455450px;}
.x70{left:248.895750px;}
.x56{left:250.695450px;}
.x29{left:254.296200px;}
.x25{left:258.615450px;}
.x94{left:259.696500px;}
.x9a{left:262.216200px;}
.x2a{left:264.376650px;}
.x98{left:266.535450px;}
.xc5{left:271.576500px;}
.x9b{left:273.735300px;}
.xe1{left:275.175600px;}
.x46{left:276.616050px;}
.x57{left:278.776500px;}
.x99{left:281.296200px;}
.xca{left:283.456650px;}
.x95{left:285.615450px;}
.x58{left:287.055750px;}
.x16{left:288.855300px;}
.x2e{left:291.015750px;}
.x53{left:298.215600px;}
.x17{left:300.016800px;}
.x2f{left:302.175600px;}
.xbe{left:303.616050px;}
.x54{left:304.695450px;}
.x47{left:306.855900px;}
.x36{left:309.375600px;}
.x18{left:310.815900px;}
.xcd{left:311.895300px;}
.x91{left:313.696500px;}
.x48{left:315.136800px;}
.xbf{left:316.575450px;}
.xd1{left:317.656500px;}
.x37{left:320.176200px;}
.xe{left:321.975750px;}
.xce{left:323.416050px;}
.x10{left:325.935750px;}
.xda{left:327.376050px;}
.xf{left:329.536500px;}
.x11{left:332.776500px;}
.x5e{left:339.256200px;}
.x8c{left:340.696500px;}
.x96{left:343.936350px;}
.xdb{left:346.096800px;}
.x67{left:347.176200px;}
.x8d{left:348.616500px;}
.xd5{left:350.056800px;}
.x63{left:351.136200px;}
.x59{left:352.576500px;}
.xd6{left:356.175600px;}
.x5a{left:357.975300px;}
.x76{left:359.776500px;}
.x30{left:360.855900px;}
.xf8{left:362.296200px;}
.x64{left:363.375600px;}
.xb4{left:365.536050px;}
.x80{left:366.976350px;}
.x97{left:369.136800px;}
.xa8{left:370.216200px;}
.x73{left:372.376650px;}
.x14{left:375.975750px;}
.x69{left:381.376050px;}
.x81{left:382.455600px;}
.x19{left:384.975300px;}
.x15{left:386.056350px;}
.x68{left:387.855900px;}
.x82{left:391.095750px;}
.x7c{left:394.335600px;}
.x1a{left:395.416650px;}
.xe3{left:396.496050px;}
.x9{left:400.815300px;}
.x1b{left:406.576500px;}
.xbc{left:410.175600px;}
.xde{left:411.616050px;}
.xd7{left:413.776500px;}
.x7d{left:415.576050px;}
.xa1{left:416.655450px;}
.x6a{left:418.456650px;}
.xd8{left:420.615450px;}
.x88{left:423.855300px;}
.x2{left:425.656500px;}
.x89{left:428.896350px;}
.x66{left:431.056800px;}
.x3{left:436.455600px;}
.xea{left:441.496650px;}
.x49{left:445.095750px;}
.xeb{left:455.176200px;}
.xac{left:456.255600px;}
.x93{left:458.056800px;}
.xa{left:460.576500px;}
.xa9{left:462.016800px;}
.x83{left:463.096200px;}
.x1c{left:464.895750px;}
.x5c{left:467.776500px;}
.xb{left:468.855900px;}
.x8a{left:473.176800px;}
.x5{left:476.055750px;}
.xaa{left:482.535450px;}
.x7e{left:485.056800px;}
.x6{left:486.136200px;}
.xc{left:492.616050px;}
.x9c{left:495.496650px;}
.xd9{left:497.296200px;}
.xad{left:504.136800px;}
.x5f{left:506.295600px;}
.xc7{left:507.376650px;}
.xf4{left:509.176200px;}
.xab{left:510.255600px;}
.x7f{left:511.695900px;}
.xec{left:514.935750px;}
.xae{left:516.016800px;}
.x77{left:519.616050px;}
.x9d{left:521.056350px;}
.xcb{left:524.655450px;}
.x78{left:527.176800px;}
.xdc{left:531.136800px;}
.xcc{left:536.535450px;}
.xb9{left:538.695900px;}
.xa3{left:540.856350px;}
.xf5{left:544.096200px;}
.xdf{left:546.256800px;}
.xa4{left:549.135750px;}
.x65{left:554.176800px;}
.xd{left:555.615450px;}
.x84{left:560.295600px;}
.xed{left:561.376650px;}
.xc8{left:563.535450px;}
.x1d{left:566.416050px;}
.x38{left:571.816350px;}
.x5b{left:573.256800px;}
.x1e{left:577.216800px;}
.x26{left:581.176800px;}
.xc0{left:582.976350px;}
.x1f{left:588.376650px;}
.x27{left:591.616500px;}
.xc1{left:598.816350px;}
.xe2{left:610.696500px;}
.xf1{left:642.376650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls64{letter-spacing:-19.348267pt;}
.ls8e{letter-spacing:-10.396400pt;}
.lsa1{letter-spacing:-9.882667pt;}
.ls8d{letter-spacing:-9.701200pt;}
.ls8b{letter-spacing:-9.673000pt;}
.ls94{letter-spacing:-9.245867pt;}
.ls66{letter-spacing:-9.225333pt;}
.lsb1{letter-spacing:-8.478733pt;}
.ls28{letter-spacing:-8.285333pt;}
.ls68{letter-spacing:-7.905000pt;}
.ls1e{letter-spacing:-7.332000pt;}
.lsf{letter-spacing:-7.247667pt;}
.ls87{letter-spacing:-6.907667pt;}
.ls14{letter-spacing:-6.590333pt;}
.ls15{letter-spacing:-5.927333pt;}
.ls6b{letter-spacing:-5.921667pt;}
.ls48{letter-spacing:-5.572133pt;}
.ls8c{letter-spacing:-5.530667pt;}
.ls3a{letter-spacing:-5.416400pt;}
.ls12{letter-spacing:-5.270000pt;}
.ls5a{letter-spacing:-5.184733pt;}
.lsa8{letter-spacing:-5.184000pt;}
.ls49{letter-spacing:-5.161333pt;}
.ls5e{letter-spacing:-4.888400pt;}
.ls72{letter-spacing:-4.886400pt;}
.ls89{letter-spacing:-4.839333pt;}
.ls16{letter-spacing:-4.726800pt;}
.ls11{letter-spacing:-4.612667pt;}
.lsb6{letter-spacing:-4.466667pt;}
.lsaa{letter-spacing:-4.444000pt;}
.ls6f{letter-spacing:-4.400533pt;}
.ls1c{letter-spacing:-4.400000pt;}
.lsac{letter-spacing:-4.212000pt;}
.ls86{letter-spacing:-4.148000pt;}
.ls98{letter-spacing:-4.061200pt;}
.lsbf{letter-spacing:-4.060200pt;}
.ls6a{letter-spacing:-3.955600pt;}
.lsd{letter-spacing:-3.955333pt;}
.ls25{letter-spacing:-3.916667pt;}
.lsb2{letter-spacing:-3.910133pt;}
.ls90{letter-spacing:-3.878400pt;}
.ls79{letter-spacing:-3.850000pt;}
.ls17{letter-spacing:-3.842000pt;}
.ls5c{letter-spacing:-3.738133pt;}
.lsbb{letter-spacing:-3.720733pt;}
.ls57{letter-spacing:-3.600133pt;}
.ls2e{letter-spacing:-3.470733pt;}
.ls35{letter-spacing:-3.440667pt;}
.ls1d{letter-spacing:-3.385733pt;}
.ls3e{letter-spacing:-3.383600pt;}
.ls58{letter-spacing:-3.352067pt;}
.ls10{letter-spacing:-3.292333pt;}
.ls29{letter-spacing:-3.281067pt;}
.ls60{letter-spacing:-3.221467pt;}
.ls4a{letter-spacing:-3.208333pt;}
.ls6c{letter-spacing:-3.121067pt;}
.lsb8{letter-spacing:-2.979267pt;}
.ls53{letter-spacing:-2.881000pt;}
.ls84{letter-spacing:-2.765333pt;}
.ls3f{letter-spacing:-2.760000pt;}
.ls76{letter-spacing:-2.752000pt;}
.ls3b{letter-spacing:-2.706000pt;}
.ls4c{letter-spacing:-2.686000pt;}
.ls3d{letter-spacing:-2.666800pt;}
.lsc{letter-spacing:-2.635000pt;}
.ls22{letter-spacing:-2.624000pt;}
.ls24{letter-spacing:-2.583000pt;}
.ls50{letter-spacing:-2.212267pt;}
.ls96{letter-spacing:-2.197600pt;}
.ls2d{letter-spacing:-2.168400pt;}
.ls52{letter-spacing:-2.161867pt;}
.ls47{letter-spacing:-2.112800pt;}
.ls8a{letter-spacing:-2.074000pt;}
.ls38{letter-spacing:-2.032800pt;}
.ls26{letter-spacing:-2.032333pt;}
.ls36{letter-spacing:-2.030600pt;}
.ls40{letter-spacing:-2.028600pt;}
.lse{letter-spacing:-1.977667pt;}
.ls41{letter-spacing:-1.971667pt;}
.ls20{letter-spacing:-1.971200pt;}
.ls91{letter-spacing:-1.883067pt;}
.ls33{letter-spacing:-1.804800pt;}
.ls19{letter-spacing:-1.554000pt;}
.lsb4{letter-spacing:-1.487400pt;}
.lsa7{letter-spacing:-1.480000pt;}
.ls92{letter-spacing:-1.465067pt;}
.ls69{letter-spacing:-1.449067pt;}
.ls51{letter-spacing:-1.442733pt;}
.ls5d{letter-spacing:-1.399200pt;}
.lsbe{letter-spacing:-1.398067pt;}
.ls85{letter-spacing:-1.382667pt;}
.ls78{letter-spacing:-1.378133pt;}
.ls34{letter-spacing:-1.378000pt;}
.ls56{letter-spacing:-1.356333pt;}
.ls39{letter-spacing:-1.355200pt;}
.ls27{letter-spacing:-1.353400pt;}
.lsa{letter-spacing:-1.320333pt;}
.ls21{letter-spacing:-1.314133pt;}
.ls7a{letter-spacing:-1.313000pt;}
.ls13{letter-spacing:-1.286333pt;}
.ls1b{letter-spacing:-1.271467pt;}
.lsa5{letter-spacing:-1.260000pt;}
.ls7b{letter-spacing:-1.240800pt;}
.lsb5{letter-spacing:-0.745933pt;}
.lsa9{letter-spacing:-0.740000pt;}
.ls95{letter-spacing:-0.732533pt;}
.ls75{letter-spacing:-0.729867pt;}
.lsbc{letter-spacing:-0.720800pt;}
.ls4f{letter-spacing:-0.719133pt;}
.ls4e{letter-spacing:-0.699600pt;}
.ls88{letter-spacing:-0.691333pt;}
.ls32{letter-spacing:-0.689000pt;}
.ls77{letter-spacing:-0.686933pt;}
.lsa3{letter-spacing:-0.682267pt;}
.ls1a{letter-spacing:-0.678933pt;}
.ls6e{letter-spacing:-0.678400pt;}
.ls37{letter-spacing:-0.677600pt;}
.ls99{letter-spacing:-0.676000pt;}
.lsa4{letter-spacing:-0.674333pt;}
.ls30{letter-spacing:-0.667000pt;}
.lsb{letter-spacing:-0.657333pt;}
.ls1f{letter-spacing:-0.657067pt;}
.ls65{letter-spacing:-0.592800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls71{letter-spacing:0.102667pt;}
.ls18{letter-spacing:0.657067pt;}
.ls2{letter-spacing:0.657333pt;}
.ls93{letter-spacing:0.676667pt;}
.ls82{letter-spacing:0.677600pt;}
.ls61{letter-spacing:0.678400pt;}
.ls70{letter-spacing:0.686933pt;}
.ls2c{letter-spacing:0.689000pt;}
.ls7d{letter-spacing:0.691333pt;}
.lsb3{letter-spacing:0.699200pt;}
.ls44{letter-spacing:0.699600pt;}
.ls31{letter-spacing:0.711200pt;}
.ls42{letter-spacing:0.719133pt;}
.lsb9{letter-spacing:0.720800pt;}
.ls0{letter-spacing:0.727867pt;}
.ls80{letter-spacing:0.732533pt;}
.ls9d{letter-spacing:0.740000pt;}
.lsba{letter-spacing:0.742000pt;}
.ls4b{letter-spacing:0.744800pt;}
.lsae{letter-spacing:0.745933pt;}
.ls6d{letter-spacing:0.751333pt;}
.ls6{letter-spacing:1.314133pt;}
.ls3{letter-spacing:1.320333pt;}
.ls3c{letter-spacing:1.355200pt;}
.ls2b{letter-spacing:1.378000pt;}
.ls62{letter-spacing:1.378133pt;}
.ls7c{letter-spacing:1.382667pt;}
.ls43{letter-spacing:1.399200pt;}
.ls59{letter-spacing:1.442733pt;}
.ls9{letter-spacing:1.462600pt;}
.ls81{letter-spacing:1.465067pt;}
.ls9f{letter-spacing:1.480000pt;}
.lsaf{letter-spacing:1.487400pt;}
.lsbd{letter-spacing:1.638000pt;}
.lsa2{letter-spacing:1.873400pt;}
.ls55{letter-spacing:1.943000pt;}
.ls9b{letter-spacing:1.977667pt;}
.ls63{letter-spacing:2.065067pt;}
.ls7e{letter-spacing:2.074000pt;}
.ls45{letter-spacing:2.160000pt;}
.ls4d{letter-spacing:2.161867pt;}
.ls1{letter-spacing:2.190467pt;}
.ls8f{letter-spacing:2.197600pt;}
.lsb0{letter-spacing:2.233333pt;}
.lsa0{letter-spacing:2.275000pt;}
.ls2a{letter-spacing:2.635000pt;}
.ls7f{letter-spacing:2.765333pt;}
.ls9c{letter-spacing:2.964000pt;}
.ls67{letter-spacing:3.152800pt;}
.ls7{letter-spacing:3.281067pt;}
.ls4{letter-spacing:3.292333pt;}
.ls74{letter-spacing:3.389333pt;}
.ls5f{letter-spacing:3.600133pt;}
.ls5b{letter-spacing:3.644667pt;}
.lsad{letter-spacing:3.955333pt;}
.ls2f{letter-spacing:4.127867pt;}
.ls9e{letter-spacing:4.444000pt;}
.ls23{letter-spacing:4.894400pt;}
.lsb7{letter-spacing:5.072667pt;}
.ls46{letter-spacing:5.248000pt;}
.ls54{letter-spacing:5.297467pt;}
.ls83{letter-spacing:6.094000pt;}
.ls73{letter-spacing:7.204733pt;}
.ls97{letter-spacing:7.320867pt;}
.lsa6{letter-spacing:8.554000pt;}
.lsab{letter-spacing:8.922667pt;}
.ls9a{letter-spacing:9.225333pt;}
.ls5{letter-spacing:10.152733pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-93.676422pt;}
._15{margin-left:-46.241845pt;}
._2a{margin-left:-39.970639pt;}
._1b{margin-left:-38.529907pt;}
._1a{margin-left:-34.593814pt;}
._23{margin-left:-30.565203pt;}
._20{margin-left:-27.678708pt;}
._27{margin-left:-26.313842pt;}
._28{margin-left:-24.181673pt;}
._12{margin-left:-21.340764pt;}
._19{margin-left:-18.966187pt;}
._17{margin-left:-16.799971pt;}
._26{margin-left:-14.857628pt;}
._1d{margin-left:-13.864957pt;}
._10{margin-left:-12.819513pt;}
._f{margin-left:-11.056113pt;}
._8{margin-left:-9.700262pt;}
._a{margin-left:-8.252809pt;}
._b{margin-left:-6.885625pt;}
._7{margin-left:-5.492828pt;}
._3{margin-left:-4.511400pt;}
._c{margin-left:-3.587000pt;}
._4{margin-left:-2.412172pt;}
._11{margin-left:-1.093667pt;}
._d{width:1.090240pt;}
._2{width:2.018800pt;}
._5{width:3.136417pt;}
._1{width:4.051333pt;}
._6{width:5.576000pt;}
._14{width:6.899519pt;}
._9{width:7.803000pt;}
._13{width:9.075000pt;}
._0{width:10.231333pt;}
._1f{width:11.161995pt;}
._16{width:12.765625pt;}
._e{width:13.834814pt;}
._1c{width:14.727667pt;}
._1e{width:16.003065pt;}
._2b{width:17.056823pt;}
._21{width:18.258372pt;}
._24{width:19.963667pt;}
._22{width:21.088853pt;}
._29{width:24.770338pt;}
._25{width:29.228250pt;}
.fs16{font-size:31.333333pt;}
.fs28{font-size:38.000000pt;}
.fs27{font-size:38.666667pt;}
.fs1e{font-size:39.333333pt;}
.fs1f{font-size:40.000000pt;}
.fs18{font-size:40.666667pt;}
.fs13{font-size:41.333333pt;}
.fs12{font-size:42.000000pt;}
.fs10{font-size:42.666667pt;}
.fs11{font-size:43.333333pt;}
.fs14{font-size:44.000000pt;}
.fsf{font-size:44.666667pt;}
.fsd{font-size:45.333333pt;}
.fs15{font-size:46.000000pt;}
.fs17{font-size:46.666667pt;}
.fs1d{font-size:47.333333pt;}
.fs26{font-size:48.000000pt;}
.fs24{font-size:49.333333pt;}
.fs29{font-size:50.000000pt;}
.fs22{font-size:50.544533pt;}
.fs21{font-size:50.666667pt;}
.fse{font-size:51.333333pt;}
.fsa{font-size:52.000000pt;}
.fsb{font-size:52.666667pt;}
.fs19{font-size:53.333333pt;}
.fs20{font-size:54.000000pt;}
.fs7{font-size:54.666667pt;}
.fs5{font-size:54.920533pt;}
.fs6{font-size:55.333333pt;}
.fs1c{font-size:56.000000pt;}
.fs3{font-size:56.202133pt;}
.fs1a{font-size:56.205333pt;}
.fs2{font-size:56.666667pt;}
.fs4{font-size:57.333333pt;}
.fs1b{font-size:57.859200pt;}
.fsc{font-size:58.000000pt;}
.fs25{font-size:58.666667pt;}
.fs9{font-size:59.333333pt;}
.fs23{font-size:60.000000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:68.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:51.641200pt;}
.yba{bottom:51.960533pt;}
.yb9{bottom:51.960800pt;}
.y8b{bottom:56.441467pt;}
.yed{bottom:57.396400pt;}
.y29{bottom:58.681200pt;}
.y28{bottom:58.684800pt;}
.y122{bottom:59.961467pt;}
.y5a{bottom:63.481467pt;}
.yb8{bottom:63.800800pt;}
.yb7{bottom:63.801200pt;}
.y8a{bottom:67.641600pt;}
.yec{bottom:68.920400pt;}
.y26{bottom:70.521067pt;}
.y27{bottom:70.521467pt;}
.y13f{bottom:71.480933pt;}
.y13e{bottom:71.485467pt;}
.y120{bottom:71.801467pt;}
.y121{bottom:71.801733pt;}
.y59{bottom:75.320400pt;}
.yb6{bottom:76.281200pt;}
.yb5{bottom:76.281600pt;}
.y89{bottom:79.801333pt;}
.yea{bottom:81.076200pt;}
.yeb{bottom:81.081600pt;}
.y25{bottom:82.041067pt;}
.y11f{bottom:83.961467pt;}
.y13d{bottom:84.280800pt;}
.y58{bottom:87.481467pt;}
.y57{bottom:87.484267pt;}
.yb4{bottom:88.121600pt;}
.y87{bottom:91.640833pt;}
.y88{bottom:91.641600pt;}
.ye9{bottom:93.560533pt;}
.y24{bottom:93.881333pt;}
.y13c{bottom:95.480933pt;}
.y11d{bottom:95.801467pt;}
.y11e{bottom:95.801733pt;}
.y56{bottom:99.320267pt;}
.y55{bottom:99.320800pt;}
.yb3{bottom:99.960533pt;}
.y86{bottom:103.801333pt;}
.y22{bottom:105.397000pt;}
.y23{bottom:105.400933pt;}
.ye8{bottom:105.405200pt;}
.y11c{bottom:107.961467pt;}
.y54{bottom:111.800800pt;}
.y85{bottom:115.960933pt;}
.ye7{bottom:117.241200pt;}
.y21{bottom:117.881333pt;}
.y52{bottom:123.315800pt;}
.y53{bottom:123.320267pt;}
.y84{bottom:127.482000pt;}
.y83{bottom:127.484133pt;}
.ye5{bottom:129.400033pt;}
.ye6{bottom:129.400933pt;}
.y51{bottom:135.800800pt;}
.y82{bottom:139.320800pt;}
.y81{bottom:139.321500pt;}
.ye4{bottom:141.560533pt;}
.y11b{bottom:144.433833pt;}
.y50{bottom:147.960533pt;}
.yb2{bottom:151.163267pt;}
.y80{bottom:151.482000pt;}
.y7f{bottom:151.484133pt;}
.y11a{bottom:158.842300pt;}
.y4f{bottom:160.121600pt;}
.y4e{bottom:160.126333pt;}
.y7e{bottom:163.320800pt;}
.yb1{bottom:165.556600pt;}
.y20{bottom:169.080533pt;}
.ye3{bottom:170.360800pt;}
.y4d{bottom:172.281733pt;}
.y119{bottom:173.559233pt;}
.y7d{bottom:175.482000pt;}
.yb0{bottom:180.607600pt;}
.y1f{bottom:183.481467pt;}
.y4c{bottom:184.761733pt;}
.ye2{bottom:185.718467pt;}
.y118{bottom:188.604233pt;}
.yae{bottom:194.995533pt;}
.yaf{bottom:195.000933pt;}
.y1d{bottom:198.515533pt;}
.y1e{bottom:198.521067pt;}
.ye1{bottom:200.111800pt;}
.y117{bottom:202.997567pt;}
.yad{bottom:210.040533pt;}
.y1c{bottom:213.560533pt;}
.ye0{bottom:215.156800pt;}
.y116{bottom:217.716733pt;}
.yab{bottom:224.756733pt;}
.yac{bottom:224.760800pt;}
.y7c{bottom:227.321333pt;}
.y1b{bottom:228.280800pt;}
.y1a{bottom:228.281767pt;}
.ydf{bottom:229.875967pt;}
.y115{bottom:232.756333pt;}
.yaa{bottom:239.803433pt;}
.y7b{bottom:242.041467pt;}
.y4b{bottom:242.996633pt;}
.y18{bottom:243.000233pt;}
.y19{bottom:243.000933pt;}
.yde{bottom:244.595133pt;}
.y114{bottom:247.801333pt;}
.ya9{bottom:254.522600pt;}
.y7a{bottom:257.081067pt;}
.y79{bottom:257.085767pt;}
.y4a{bottom:258.041633pt;}
.ydd{bottom:259.654700pt;}
.y113{bottom:263.161600pt;}
.y112{bottom:263.162700pt;}
.ya8{bottom:269.567600pt;}
.y49{bottom:272.760800pt;}
.y17{bottom:273.727733pt;}
.ydc{bottom:275.011367pt;}
.y111{bottom:277.878533pt;}
.ya7{bottom:283.955533pt;}
.y78{bottom:287.161600pt;}
.y48{bottom:287.480933pt;}
.y16{bottom:288.115667pt;}
.y110{bottom:292.597700pt;}
.ya6{bottom:299.000533pt;}
.ya5{bottom:299.001500pt;}
.y47{bottom:302.520533pt;}
.y15{bottom:303.160667pt;}
.ydb{bottom:305.087200pt;}
.y10f{bottom:307.316867pt;}
.ya4{bottom:313.720667pt;}
.y77{bottom:316.921333pt;}
.y46{bottom:317.241767pt;}
.y14{bottom:317.880933pt;}
.y13{bottom:317.886933pt;}
.yda{bottom:319.481500pt;}
.y10e{bottom:322.361867pt;}
.y76{bottom:331.641600pt;}
.y45{bottom:331.955533pt;}
.y12{bottom:332.270800pt;}
.yd9{bottom:334.192300pt;}
.y10d{bottom:337.076600pt;}
.ya3{bottom:343.801333pt;}
.y74{bottom:346.356333pt;}
.y75{bottom:346.361867pt;}
.y44{bottom:346.996467pt;}
.y11{bottom:347.315800pt;}
.yd8{bottom:349.237300pt;}
.y10c{bottom:352.121600pt;}
.ya2{bottom:358.522567pt;}
.y73{bottom:361.401333pt;}
.y72{bottom:361.402433pt;}
.y43{bottom:362.041467pt;}
.y10{bottom:362.360800pt;}
.yd7{bottom:364.593967pt;}
.y10a{bottom:367.468433pt;}
.y10b{bottom:367.480533pt;}
.ya1{bottom:373.236200pt;}
.y71{bottom:376.121600pt;}
.y42{bottom:376.761733pt;}
.yf{bottom:377.081067pt;}
.yd6{bottom:378.990533pt;}
.y109{bottom:381.875933pt;}
.ya0{bottom:388.281200pt;}
.y70{bottom:390.841867pt;}
.y41{bottom:391.795800pt;}
.ye{bottom:392.120667pt;}
.yd{bottom:392.121633pt;}
.yd5{bottom:394.035533pt;}
.y108{bottom:396.920933pt;}
.yc{bottom:406.835400pt;}
.y40{bottom:406.841900pt;}
.yd4{bottom:409.080533pt;}
.y106{bottom:411.956467pt;}
.y107{bottom:411.960533pt;}
.y9f{bottom:418.361867pt;}
.y9e{bottom:418.364000pt;}
.y6f{bottom:421.247733pt;}
.y3f{bottom:421.551600pt;}
.yb{bottom:421.880400pt;}
.ya{bottom:421.884000pt;}
.yd3{bottom:424.121600pt;}
.y105{bottom:427.001467pt;}
.y9d{bottom:433.716733pt;}
.y6d{bottom:435.635667pt;}
.y6e{bottom:435.641067pt;}
.y3e{bottom:436.596600pt;}
.y9{bottom:437.240667pt;}
.y13b{bottom:437.567600pt;}
.yd2{bottom:438.840400pt;}
.y104{bottom:441.721733pt;}
.y9c{bottom:448.761733pt;}
.y6c{bottom:450.680667pt;}
.y3d{bottom:451.641600pt;}
.y13a{bottom:451.960933pt;}
.y139{bottom:451.962033pt;}
.y7{bottom:452.276333pt;}
.y8{bottom:452.280267pt;}
.yd1{bottom:454.200667pt;}
.y103{bottom:456.767333pt;}
.y9b{bottom:463.480533pt;}
.y138{bottom:466.675667pt;}
.y6{bottom:467.321333pt;}
.yd0{bottom:468.601233pt;}
.y102{bottom:471.160667pt;}
.y9a{bottom:478.521467pt;}
.y6b{bottom:480.121067pt;}
.y3c{bottom:481.401333pt;}
.y137{bottom:481.720667pt;}
.y5{bottom:482.367067pt;}
.ycf{bottom:483.317433pt;}
.y101{bottom:486.201733pt;}
.y100{bottom:486.205933pt;}
.y99{bottom:493.559267pt;}
.y6a{bottom:494.841333pt;}
.y3b{bottom:496.440933pt;}
.y136{bottom:497.081067pt;}
.y135{bottom:497.082167pt;}
.yce{bottom:498.036600pt;}
.yff{bottom:500.925100pt;}
.y98{bottom:508.604267pt;}
.y134{bottom:511.801333pt;}
.ycd{bottom:513.076067pt;}
.yfe{bottom:516.281767pt;}
.y97{bottom:523.955533pt;}
.y69{bottom:525.554933pt;}
.y3a{bottom:526.522200pt;}
.y133{bottom:526.841900pt;}
.ycc{bottom:528.116767pt;}
.yfd{bottom:531.000933pt;}
.y96{bottom:539.000533pt;}
.y68{bottom:539.962433pt;}
.y132{bottom:541.561067pt;}
.y131{bottom:541.562033pt;}
.y39{bottom:541.567200pt;}
.ycb{bottom:543.161767pt;}
.y67{bottom:554.681600pt;}
.y38{bottom:555.960533pt;}
.y130{bottom:556.275800pt;}
.yc9{bottom:557.875400pt;}
.yca{bottom:557.880933pt;}
.yfc{bottom:560.760800pt;}
.y95{bottom:568.761367pt;}
.y66{bottom:569.722300pt;}
.y37{bottom:571.001467pt;}
.y12f{bottom:571.320800pt;}
.y4{bottom:572.920400pt;}
.yc8{bottom:572.928833pt;}
.yfa{bottom:575.796333pt;}
.yfb{bottom:575.801733pt;}
.y12e{bottom:582.521067pt;}
.y94{bottom:583.480533pt;}
.y65{bottom:584.441467pt;}
.y36{bottom:585.721733pt;}
.y12d{bottom:586.356333pt;}
.y3{bottom:587.640667pt;}
.yc7{bottom:588.611333pt;}
.yf9{bottom:590.841333pt;}
.y35{bottom:601.081633pt;}
.y12c{bottom:601.395933pt;}
.yc6{bottom:603.004667pt;}
.yf8{bottom:605.880933pt;}
.y93{bottom:613.555533pt;}
.y64{bottom:614.842433pt;}
.y34{bottom:615.800800pt;}
.y12b{bottom:616.432567pt;}
.yc5{bottom:618.361333pt;}
.y2{bottom:619.649000pt;}
.yf7{bottom:620.916467pt;}
.y91{bottom:628.593967pt;}
.y92{bottom:628.600533pt;}
.y63{bottom:629.561600pt;}
.y33{bottom:630.836333pt;}
.y12a{bottom:632.115067pt;}
.yc4{bottom:633.400933pt;}
.yc3{bottom:633.401900pt;}
.yf6{bottom:635.961467pt;}
.y1{bottom:638.841333pt;}
.y90{bottom:643.002567pt;}
.y62{bottom:643.957000pt;}
.y32{bottom:645.881333pt;}
.y129{bottom:646.196733pt;}
.yc2{bottom:648.121067pt;}
.y8f{bottom:657.721733pt;}
.y61{bottom:659.002000pt;}
.y31{bottom:660.920933pt;}
.y128{bottom:661.236200pt;}
.yf5{bottom:665.721200pt;}
.y2f{bottom:676.275800pt;}
.y30{bottom:676.281200pt;}
.yc1{bottom:678.522033pt;}
.yf4{bottom:680.441467pt;}
.y8e{bottom:687.804533pt;}
.y60{bottom:689.081067pt;}
.y2e{bottom:691.320800pt;}
.y127{bottom:691.321900pt;}
.yc0{bottom:693.235800pt;}
.yf3{bottom:695.797300pt;}
.y8d{bottom:703.161200pt;}
.y8c{bottom:703.165900pt;}
.y5f{bottom:703.801333pt;}
.y126{bottom:706.028967pt;}
.y2d{bottom:706.681200pt;}
.ybf{bottom:708.280800pt;}
.yf2{bottom:710.516467pt;}
.y5e{bottom:718.521467pt;}
.y125{bottom:721.073967pt;}
.y2c{bottom:721.720667pt;}
.ybe{bottom:723.000933pt;}
.yf1{bottom:725.561467pt;}
.y5d{bottom:733.241733pt;}
.y124{bottom:735.476067pt;}
.y2b{bottom:736.440933pt;}
.ybc{bottom:738.036600pt;}
.ybd{bottom:738.040533pt;}
.yef{bottom:740.595667pt;}
.yf0{bottom:740.601067pt;}
.y5c{bottom:748.281200pt;}
.y123{bottom:750.521067pt;}
.y2a{bottom:751.480533pt;}
.ybb{bottom:753.081600pt;}
.yee{bottom:755.640667pt;}
.h1f{height:30.966146pt;}
.h5a{height:38.968750pt;}
.h5c{height:39.632812pt;}
.h22{height:39.912109pt;}
.h59{height:40.328125pt;}
.h24{height:40.546224pt;}
.h64{height:40.984375pt;}
.h34{height:41.023438pt;}
.h41{height:41.200195pt;}
.h1e{height:41.220703pt;}
.h18{height:41.507812pt;}
.h35{height:41.656250pt;}
.h36{height:41.718750pt;}
.h16{height:41.854167pt;}
.h23{height:41.855767pt;}
.h19{height:41.875000pt;}
.h52{height:42.328125pt;}
.h42{height:42.414062pt;}
.h17{height:42.508138pt;}
.h2f{height:42.529297pt;}
.h20{height:42.825521pt;}
.h4d{height:43.000000pt;}
.h1a{height:43.109375pt;}
.h31{height:43.162109pt;}
.h33{height:43.179976pt;}
.h39{height:43.671875pt;}
.h50{height:43.816081pt;}
.h15{height:43.837891pt;}
.h45{height:44.343750pt;}
.h13{height:44.492188pt;}
.h30{height:44.500000pt;}
.h38{height:45.015625pt;}
.h5d{height:45.033758pt;}
.h5b{height:45.037225pt;}
.h1d{height:45.124023pt;}
.h37{height:45.146484pt;}
.h51{height:45.687500pt;}
.h43{height:45.777995pt;}
.h25{height:45.800781pt;}
.h1b{height:45.890625pt;}
.h21{height:46.119792pt;}
.h68{height:46.359375pt;}
.h32{height:46.455078pt;}
.h4e{height:47.031250pt;}
.h3e{height:49.606695pt;}
.h4f{height:50.062500pt;}
.h1c{height:51.390625pt;}
.h46{height:51.453125pt;}
.h60{height:52.148438pt;}
.h26{height:52.343750pt;}
.h3d{height:52.843750pt;}
.h3c{height:52.998047pt;}
.h14{height:53.539062pt;}
.ha{height:53.652344pt;}
.h7{height:53.901500pt;}
.h10{height:54.234375pt;}
.h8{height:54.306641pt;}
.h11{height:54.929688pt;}
.h2a{height:54.960938pt;}
.h5{height:55.159320pt;}
.h27{height:55.162461pt;}
.h4{height:55.615234pt;}
.h4a{height:55.616701pt;}
.hc{height:55.618034pt;}
.h4b{height:55.622434pt;}
.h63{height:55.624168pt;}
.h58{height:55.626168pt;}
.h55{height:55.627101pt;}
.h62{height:55.628568pt;}
.h3f{height:55.630968pt;}
.h28{height:55.631501pt;}
.h2e{height:55.632434pt;}
.h9{height:55.636834pt;}
.h2d{height:55.637368pt;}
.h57{height:55.648701pt;}
.hb{height:55.653101pt;}
.h56{height:55.658968pt;}
.h65{height:55.663634pt;}
.h6{height:56.269531pt;}
.h2c{height:56.437500pt;}
.h29{height:56.785641pt;}
.h12{height:56.923828pt;}
.hd{height:57.015625pt;}
.h61{height:57.549479pt;}
.h4c{height:57.578125pt;}
.h2b{height:57.710938pt;}
.h67{height:57.781250pt;}
.h49{height:57.979167pt;}
.hf{height:58.232422pt;}
.h66{height:58.638021pt;}
.h40{height:58.886719pt;}
.h44{height:59.796875pt;}
.he{height:63.250000pt;}
.h2{height:69.203125pt;}
.h3{height:69.875000pt;}
.h48{height:812.000000pt;}
.h47{height:812.082267pt;}
.h3b{height:812.666667pt;}
.h3a{height:812.722267pt;}
.h54{height:814.000000pt;}
.h53{height:814.322267pt;}
.h1{height:814.666667pt;}
.h0{height:814.962267pt;}
.h5f{height:815.333333pt;}
.h5e{height:815.602267pt;}
.w7{width:566.000000pt;}
.w6{width:566.000933pt;}
.w2{width:568.562267pt;}
.w3{width:568.666667pt;}
.w4{width:571.122267pt;}
.w5{width:571.333333pt;}
.w0{width:573.682267pt;}
.w1{width:574.000000pt;}
.x0{left:0.000000pt;}
.xd0{left:15.802267pt;}
.xd2{left:17.400400pt;}
.xf2{left:18.361333pt;}
.x8b{left:20.280267pt;}
.x9e{left:21.241200pt;}
.xb5{left:22.200667pt;}
.xaf{left:23.800267pt;}
.xa2{left:24.761200pt;}
.x8{left:25.720667pt;}
.xb2{left:27.320400pt;}
.x4e{left:29.882533pt;}
.x32{left:30.840400pt;}
.x33{left:35.640667pt;}
.x55{left:36.601600pt;}
.x61{left:37.576800pt;}
.xe0{left:38.520533pt;}
.xa5{left:39.800800pt;}
.x6e{left:41.081067pt;}
.x34{left:42.680667pt;}
.x3f{left:43.960933pt;}
.x4a{left:44.923567pt;}
.x39{left:45.885200pt;}
.xe4{left:46.840800pt;}
.xee{left:47.800267pt;}
.x8e{left:51.000933pt;}
.x1{left:54.200267pt;}
.x75{left:55.485233pt;}
.x7{left:56.439733pt;}
.xa6{left:57.720267pt;}
.xe7{left:59.000533pt;}
.xc6{left:59.961467pt;}
.xcf{left:60.926533pt;}
.x92{left:66.020000pt;}
.x52{left:67.001467pt;}
.x3a{left:67.960933pt;}
.xb7{left:69.241200pt;}
.xb8{left:70.205200pt;}
.x13{left:71.476800pt;}
.x40{left:73.080533pt;}
.x8f{left:76.600667pt;}
.xb0{left:79.480533pt;}
.x31{left:81.720267pt;}
.x3b{left:83.640667pt;}
.xba{left:84.924000pt;}
.xc4{left:85.880400pt;}
.xb3{left:86.841333pt;}
.x60{left:87.800800pt;}
.xb1{left:89.400400pt;}
.xb6{left:91.960933pt;}
.x2b{left:93.560533pt;}
.x90{left:94.521467pt;}
.xbd{left:95.800267pt;}
.xd4{left:96.761200pt;}
.x12{left:98.681600pt;}
.x6b{left:100.921333pt;}
.x2c{left:102.200267pt;}
.x74{left:104.760800pt;}
.x79{left:107.000533pt;}
.xe5{left:108.280800pt;}
.x71{left:110.201200pt;}
.x2d{left:111.160667pt;}
.x62{left:112.121600pt;}
.x6f{left:113.721200pt;}
.x7a{left:115.001467pt;}
.x20{left:116.601067pt;}
.x72{left:117.881333pt;}
.xf7{left:123.320267pt;}
.x4f{left:124.600533pt;}
.x21{left:125.880933pt;}
.x41{left:127.161200pt;}
.x50{left:130.681200pt;}
.x3c{left:132.280800pt;}
.xef{left:133.240267pt;}
.x22{left:135.481467pt;}
.xd3{left:136.440933pt;}
.xa7{left:137.400400pt;}
.x42{left:139.320800pt;}
.x6c{left:143.480933pt;}
.xf6{left:144.761200pt;}
.x85{left:147.000933pt;}
.x4b{left:149.880933pt;}
.x35{left:151.161200pt;}
.xe6{left:154.681200pt;}
.x86{left:155.640667pt;}
.x44{left:156.601600pt;}
.x4c{left:158.520533pt;}
.xc2{left:160.440933pt;}
.x43{left:162.680667pt;}
.x45{left:163.960933pt;}
.x5d{left:165.881333pt;}
.xe8{left:170.681600pt;}
.x87{left:171.641067pt;}
.x9f{left:172.600533pt;}
.xc3{left:174.840400pt;}
.x4{left:177.087200pt;}
.xf9{left:179.961467pt;}
.xa0{left:180.920933pt;}
.xe9{left:182.841333pt;}
.xdd{left:187.960933pt;}
.xf0{left:188.920400pt;}
.xbb{left:191.480933pt;}
.x7b{left:192.761200pt;}
.x51{left:194.360800pt;}
.x3d{left:195.320267pt;}
.xf3{left:196.281333pt;}
.x6d{left:199.801333pt;}
.x4d{left:203.000533pt;}
.xc9{left:204.601600pt;}
.x23{left:210.680667pt;}
.x3e{left:215.480933pt;}
.x28{left:217.401333pt;}
.x24{left:219.960400pt;}
.x70{left:221.240667pt;}
.x56{left:222.840400pt;}
.x29{left:226.041067pt;}
.x25{left:229.880400pt;}
.x94{left:230.841333pt;}
.x9a{left:233.081067pt;}
.x2a{left:235.001467pt;}
.x98{left:236.920400pt;}
.xc5{left:241.401333pt;}
.x9b{left:243.320267pt;}
.xe1{left:244.600533pt;}
.x46{left:245.880933pt;}
.x57{left:247.801333pt;}
.x99{left:250.041067pt;}
.xca{left:251.961467pt;}
.x95{left:253.880400pt;}
.x58{left:255.160667pt;}
.x16{left:256.760267pt;}
.x2e{left:258.680667pt;}
.x53{left:265.080533pt;}
.x17{left:266.681600pt;}
.x2f{left:268.600533pt;}
.xbe{left:269.880933pt;}
.x54{left:270.840400pt;}
.x47{left:272.760800pt;}
.x36{left:275.000533pt;}
.x18{left:276.280800pt;}
.xcd{left:277.240267pt;}
.x91{left:278.841333pt;}
.x48{left:280.121600pt;}
.xbf{left:281.400400pt;}
.xd1{left:282.361333pt;}
.x37{left:284.601067pt;}
.xe{left:286.200667pt;}
.xce{left:287.480933pt;}
.x10{left:289.720667pt;}
.xda{left:291.000933pt;}
.xf{left:292.921333pt;}
.x11{left:295.801333pt;}
.x5e{left:301.561067pt;}
.x8c{left:302.841333pt;}
.x96{left:305.721200pt;}
.xdb{left:307.641600pt;}
.x67{left:308.601067pt;}
.x8d{left:309.881333pt;}
.xd5{left:311.161600pt;}
.x63{left:312.121067pt;}
.x59{left:313.401333pt;}
.xd6{left:316.600533pt;}
.x5a{left:318.200267pt;}
.x76{left:319.801333pt;}
.x30{left:320.760800pt;}
.xf8{left:322.041067pt;}
.x64{left:323.000533pt;}
.xb4{left:324.920933pt;}
.x80{left:326.201200pt;}
.x97{left:328.121600pt;}
.xa8{left:329.081067pt;}
.x73{left:331.001467pt;}
.x14{left:334.200667pt;}
.x69{left:339.000933pt;}
.x81{left:339.960533pt;}
.x19{left:342.200267pt;}
.x15{left:343.161200pt;}
.x68{left:344.760800pt;}
.x82{left:347.640667pt;}
.x7c{left:350.520533pt;}
.x1a{left:351.481467pt;}
.xe3{left:352.440933pt;}
.x9{left:356.280267pt;}
.x1b{left:361.401333pt;}
.xbc{left:364.600533pt;}
.xde{left:365.880933pt;}
.xd7{left:367.801333pt;}
.x7d{left:369.400933pt;}
.xa1{left:370.360400pt;}
.x6a{left:371.961467pt;}
.xd8{left:373.880400pt;}
.x88{left:376.760267pt;}
.x2{left:378.361333pt;}
.x89{left:381.241200pt;}
.x66{left:383.161600pt;}
.x3{left:387.960533pt;}
.xea{left:392.441467pt;}
.x49{left:395.640667pt;}
.xeb{left:404.601067pt;}
.xac{left:405.560533pt;}
.x93{left:407.161600pt;}
.xa{left:409.401333pt;}
.xa9{left:410.681600pt;}
.x83{left:411.641067pt;}
.x1c{left:413.240667pt;}
.x5c{left:415.801333pt;}
.xb{left:416.760800pt;}
.x8a{left:420.601600pt;}
.x5{left:423.160667pt;}
.xaa{left:428.920400pt;}
.x7e{left:431.161600pt;}
.x6{left:432.121067pt;}
.xc{left:437.880933pt;}
.x9c{left:440.441467pt;}
.xd9{left:442.041067pt;}
.xad{left:448.121600pt;}
.x5f{left:450.040533pt;}
.xc7{left:451.001467pt;}
.xf4{left:452.601067pt;}
.xab{left:453.560533pt;}
.x7f{left:454.840800pt;}
.xec{left:457.720667pt;}
.xae{left:458.681600pt;}
.x77{left:461.880933pt;}
.x9d{left:463.161200pt;}
.xcb{left:466.360400pt;}
.x78{left:468.601600pt;}
.xdc{left:472.121600pt;}
.xcc{left:476.920400pt;}
.xb9{left:478.840800pt;}
.xa3{left:480.761200pt;}
.xf5{left:483.641067pt;}
.xdf{left:485.561600pt;}
.xa4{left:488.120667pt;}
.x65{left:492.601600pt;}
.xd{left:493.880400pt;}
.x84{left:498.040533pt;}
.xed{left:499.001467pt;}
.xc8{left:500.920400pt;}
.x1d{left:503.480933pt;}
.x38{left:508.281200pt;}
.x5b{left:509.561600pt;}
.x1e{left:513.081600pt;}
.x26{left:516.601600pt;}
.xc0{left:518.201200pt;}
.x1f{left:523.001467pt;}
.x27{left:525.881333pt;}
.xc1{left:532.281200pt;}
.xe2{left:542.841333pt;}
.xf1{left:571.001467pt;}
}

