
    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_e9e78ad78607266e3d480968.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fd69af84d9a0925bab807afe.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8803af912ce6db2e05e9d8b4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e0cdecd991ab831270266086.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_05fbf5cb875b406ae26c391c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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;}
.mdf{transform:matrix(0.232197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232197,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256098,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.256497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256497,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.256773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256773,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257197,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.257623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257623,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.257822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257822,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257972,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.258098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258098,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.258125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258125,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.258173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258173,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258225,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258275,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258523,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258598,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258873,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.258947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258947,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258997,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.259423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259423,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259525,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259675,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.259697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259697,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259773,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259972,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.260123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260123,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260472,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260798,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260873,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260898,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.261023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261023,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261400,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261675,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.261722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261722,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261773,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261923,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262123,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262225,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262273,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.262325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262325,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.262423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262423,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.263448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263448,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.263997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263997,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.264072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264072,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264147,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264298,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264423,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264572,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264697,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.265025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265025,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.265173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265173,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265225,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.265272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265272,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.265473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265473,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.265898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265898,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.266148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266148,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.266475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266475,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266522,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.266572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266572,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266625,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.267197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267197,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267348,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267623,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.267697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267697,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267925,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.268098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268098,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.268798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268798,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269273,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.269298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269298,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269572,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269675,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270123,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.270197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270197,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.270248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270248,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270473,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.270748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270748,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270975,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.271522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271522,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271722,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271975,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272025,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272300,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272398,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.272673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272673,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272850,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.273350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273350,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273373,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273575,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.273850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273850,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273975,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.274498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274498,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274600,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274622,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274647,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.274773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274773,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274875,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.274950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274950,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.275322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275322,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275450,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276350,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276448,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276675,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276773,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.277072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277072,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.277348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277348,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277850,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278275,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278425,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280673,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280897,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.281200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281200,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281798,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283873,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.283998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283998,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285822,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288722,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291400,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292473,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295873,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296723,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.305025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305025,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.314848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314848,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
.fc0{color:transparent;}
.fs2{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:45.150000px;}
.y118{bottom:49.050000px;}
.yc5{bottom:50.698500px;}
.y45{bottom:54.150000px;}
.y1b{bottom:55.800000px;}
.yef{bottom:56.250000px;}
.y9a{bottom:65.400000px;}
.y117{bottom:69.750000px;}
.yc4{bottom:71.400000px;}
.y44{bottom:74.848500px;}
.y1a{bottom:75.598500px;}
.yee{bottom:76.500000px;}
.y72{bottom:79.198500px;}
.y99{bottom:86.098500px;}
.y116{bottom:90.000000px;}
.yc3{bottom:91.650000px;}
.y43{bottom:95.098500px;}
.y19{bottom:95.848500px;}
.y71{bottom:99.000000px;}
.y98{bottom:106.348500px;}
.y115{bottom:110.250000px;}
.yc2{bottom:113.698500px;}
.y42{bottom:115.348500px;}
.y18{bottom:116.550000px;}
.yed{bottom:117.000000px;}
.y70{bottom:119.250000px;}
.y97{bottom:126.598500px;}
.y114{bottom:129.598500px;}
.yc1{bottom:132.150000px;}
.y41{bottom:135.598500px;}
.y17{bottom:136.800000px;}
.yec{bottom:137.250000px;}
.y6f{bottom:139.500000px;}
.y6e{bottom:139.948500px;}
.y96{bottom:146.848500px;}
.y113{bottom:150.750000px;}
.yc0{bottom:152.400000px;}
.y40{bottom:156.300000px;}
.y16{bottom:157.500000px;}
.y6d{bottom:159.750000px;}
.y95{bottom:167.550000px;}
.y112{bottom:171.000000px;}
.ybf{bottom:173.098500px;}
.y3f{bottom:176.550000px;}
.y15{bottom:177.750000px;}
.y6c{bottom:180.448500px;}
.y94{bottom:187.348500px;}
.y111{bottom:191.698500px;}
.ybe{bottom:193.348500px;}
.y3e{bottom:197.250000px;}
.yeb{bottom:198.000000px;}
.y14{bottom:198.448500px;}
.y6b{bottom:200.698500px;}
.y93{bottom:208.048500px;}
.y110{bottom:211.950000px;}
.ybd{bottom:214.050000px;}
.y3d{bottom:217.500000px;}
.yea{bottom:218.700000px;}
.y6a{bottom:221.400000px;}
.y10f{bottom:232.200000px;}
.ybc{bottom:234.298500px;}
.y13{bottom:237.150000px;}
.y3c{bottom:237.750000px;}
.ye9{bottom:238.950000px;}
.y69{bottom:241.650000px;}
.y92{bottom:248.098500px;}
.y10e{bottom:252.900000px;}
.ybb{bottom:254.548500px;}
.y3b{bottom:258.000000px;}
.ye8{bottom:259.200000px;}
.y68{bottom:262.798500px;}
.y91{bottom:268.798500px;}
.y10d{bottom:273.598500px;}
.y3a{bottom:278.250000px;}
.y12{bottom:278.548500px;}
.ye7{bottom:279.450000px;}
.y67{bottom:282.150000px;}
.y90{bottom:289.048500px;}
.y10c{bottom:293.400000px;}
.yba{bottom:295.950000px;}
.y39{bottom:298.500000px;}
.y11{bottom:299.250000px;}
.ye6{bottom:299.700000px;}
.y66{bottom:302.848500px;}
.y8f{bottom:309.298500px;}
.y10b{bottom:314.098500px;}
.y38{bottom:318.750000px;}
.y10{bottom:319.500000px;}
.ye5{bottom:320.400000px;}
.y65{bottom:322.650000px;}
.y8e{bottom:329.548500px;}
.y10a{bottom:333.900000px;}
.yb9{bottom:336.000000px;}
.y37{bottom:339.000000px;}
.yf{bottom:340.200000px;}
.ye4{bottom:340.650000px;}
.y8d{bottom:350.250000px;}
.y109{bottom:354.598500px;}
.yb8{bottom:355.798500px;}
.y36{bottom:359.250000px;}
.ye{bottom:360.450000px;}
.ye3{bottom:363.150000px;}
.y64{bottom:363.598500px;}
.y108{bottom:374.848500px;}
.yb7{bottom:376.048500px;}
.y35{bottom:379.950000px;}
.yd{bottom:381.150000px;}
.ye2{bottom:381.598500px;}
.y63{bottom:383.400000px;}
.y62{bottom:384.298500px;}
.y8c{bottom:390.298500px;}
.y107{bottom:395.098500px;}
.yb6{bottom:396.750000px;}
.ye1{bottom:398.700000px;}
.y34{bottom:399.750000px;}
.yc{bottom:401.400000px;}
.ye0{bottom:401.848500px;}
.y61{bottom:404.548500px;}
.y106{bottom:415.348500px;}
.yb5{bottom:417.000000px;}
.ydf{bottom:419.400000px;}
.y33{bottom:420.450000px;}
.yb{bottom:421.650000px;}
.yde{bottom:422.548500px;}
.y60{bottom:424.348500px;}
.y8b{bottom:430.798500px;}
.y105{bottom:435.598500px;}
.yb4{bottom:437.250000px;}
.ydd{bottom:440.098500px;}
.y32{bottom:441.150000px;}
.ya{bottom:441.900000px;}
.ydc{bottom:443.700000px;}
.y5f{bottom:444.598500px;}
.y8a{bottom:451.950000px;}
.y104{bottom:455.848500px;}
.yb3{bottom:457.500000px;}
.y31{bottom:461.400000px;}
.y9{bottom:462.150000px;}
.ydb{bottom:462.598500px;}
.y5e{bottom:464.848500px;}
.y89{bottom:472.200000px;}
.y103{bottom:476.548500px;}
.yb2{bottom:477.750000px;}
.y30{bottom:481.650000px;}
.y8{bottom:481.950000px;}
.yda{bottom:482.848500px;}
.y5d{bottom:485.098500px;}
.y88{bottom:492.450000px;}
.y102{bottom:496.798500px;}
.yb1{bottom:498.000000px;}
.y2f{bottom:501.900000px;}
.y7{bottom:502.650000px;}
.yd9{bottom:503.098500px;}
.y5c{bottom:505.348500px;}
.y5b{bottom:506.700000px;}
.y87{bottom:512.700000px;}
.y101{bottom:516.598500px;}
.yd8{bottom:519.750000px;}
.y2e{bottom:522.150000px;}
.yd7{bottom:523.348500px;}
.y5a{bottom:525.598500px;}
.y86{bottom:532.500000px;}
.y100{bottom:537.298500px;}
.yb0{bottom:539.400000px;}
.y6{bottom:541.348500px;}
.yd6{bottom:542.700000px;}
.y2d{bottom:542.848500px;}
.yd5{bottom:545.848500px;}
.y59{bottom:546.298500px;}
.y84{bottom:552.298500px;}
.y85{bottom:555.000000px;}
.yff{bottom:557.548500px;}
.y2c{bottom:563.098500px;}
.yd4{bottom:563.400000px;}
.y58{bottom:566.548500px;}
.y83{bottom:573.450000px;}
.yfe{bottom:577.798500px;}
.yaf{bottom:580.348500px;}
.y2b{bottom:583.348500px;}
.y57{bottom:586.798500px;}
.y82{bottom:593.700000px;}
.yae{bottom:599.250000px;}
.y2a{bottom:603.598500px;}
.yd3{bottom:605.700000px;}
.y56{bottom:607.048500px;}
.y5{bottom:611.098500px;}
.y81{bottom:613.950000px;}
.yfd{bottom:617.848500px;}
.yad{bottom:619.500000px;}
.yac{bottom:622.650000px;}
.y29{bottom:623.848500px;}
.y55{bottom:628.200000px;}
.y4{bottom:631.348500px;}
.y7f{bottom:631.950000px;}
.y80{bottom:634.200000px;}
.yab{bottom:640.200000px;}
.y28{bottom:643.650000px;}
.yd2{bottom:647.098500px;}
.y54{bottom:647.548500px;}
.y3{bottom:652.048500px;}
.y7e{bottom:654.000000px;}
.yfc{bottom:657.900000px;}
.yaa{bottom:662.250000px;}
.y27{bottom:663.900000px;}
.yd1{bottom:665.548500px;}
.y53{bottom:669.150000px;}
.y7d{bottom:674.700000px;}
.yfb{bottom:679.500000px;}
.ya9{bottom:680.700000px;}
.y26{bottom:684.150000px;}
.yd0{bottom:685.798500px;}
.y52{bottom:688.048500px;}
.y7c{bottom:694.950000px;}
.yfa{bottom:699.298500px;}
.ya8{bottom:700.950000px;}
.y25{bottom:704.400000px;}
.ycf{bottom:706.048500px;}
.y51{bottom:708.298500px;}
.y7b{bottom:715.200000px;}
.y2{bottom:715.500000px;}
.ya7{bottom:718.500000px;}
.ya6{bottom:719.400000px;}
.yf9{bottom:719.548500px;}
.ya5{bottom:721.650000px;}
.y24{bottom:724.650000px;}
.yce{bottom:725.848500px;}
.y50{bottom:728.548500px;}
.y7a{bottom:735.450000px;}
.y1{bottom:739.348500px;}
.yf8{bottom:739.798500px;}
.ya4{bottom:741.450000px;}
.y23{bottom:744.900000px;}
.ycd{bottom:746.098500px;}
.y4f{bottom:748.798500px;}
.y79{bottom:755.700000px;}
.yf7{bottom:760.048500px;}
.ya3{bottom:761.700000px;}
.y22{bottom:765.150000px;}
.ycc{bottom:766.348500px;}
.y4e{bottom:769.050000px;}
.y78{bottom:776.400000px;}
.yf6{bottom:780.300000px;}
.ya2{bottom:781.948500px;}
.y120{bottom:782.848500px;}
.y21{bottom:785.848500px;}
.ycb{bottom:786.598500px;}
.y4d{bottom:789.300000px;}
.y77{bottom:796.650000px;}
.yf5{bottom:800.550000px;}
.ya1{bottom:802.198500px;}
.y11f{bottom:803.098500px;}
.y20{bottom:806.098500px;}
.yca{bottom:806.848500px;}
.y4c{bottom:809.550000px;}
.y76{bottom:816.900000px;}
.yf4{bottom:820.800000px;}
.ya0{bottom:822.448500px;}
.y11e{bottom:823.348500px;}
.y1f{bottom:826.348500px;}
.yc9{bottom:827.098500px;}
.y4b{bottom:829.800000px;}
.y75{bottom:837.150000px;}
.yf3{bottom:841.050000px;}
.y9f{bottom:842.250000px;}
.y11d{bottom:843.150000px;}
.y1e{bottom:846.598500px;}
.yc8{bottom:847.800000px;}
.y4a{bottom:850.948500px;}
.y11c{bottom:863.848500px;}
.y49{bottom:870.300000px;}
.y73{bottom:879.448500px;}
.y9e{bottom:883.198500px;}
.y74{bottom:883.500000px;}
.yf0{bottom:887.848500px;}
.yf2{bottom:888.300000px;}
.yf1{bottom:888.750000px;}
.y9c{bottom:889.050000px;}
.y1c{bottom:892.050000px;}
.y9d{bottom:893.098500px;}
.y1d{bottom:893.400000px;}
.yc7{bottom:893.698500px;}
.yc6{bottom:895.500000px;}
.y119{bottom:906.598500px;}
.y11a{bottom:907.050000px;}
.y11b{bottom:910.650000px;}
.y48{bottom:914.400000px;}
.y47{bottom:915.750000px;}
.y46{bottom:916.650000px;}
.h4{height:47.109375px;}
.hf{height:50.053711px;}
.hc{height:55.284000px;}
.h5{height:55.942383px;}
.h2{height:56.320312px;}
.hb{height:58.886719px;}
.h7{height:61.800293px;}
.h1{height:61.831055px;}
.hd{height:64.743164px;}
.h9{height:67.221000px;}
.h8{height:955.500000px;}
.he{height:963.000000px;}
.h0{height:967.500000px;}
.ha{height:984.000000px;}
.h3{height:987.000000px;}
.h10{height:993.000000px;}
.h6{height:1003.500000px;}
.w4{width:603.000000px;}
.w5{width:612.000000px;}
.w2{width:616.500000px;}
.w3{width:633.000000px;}
.w1{width:637.500000px;}
.w6{width:640.500000px;}
.w0{width:645.000000px;}
.w7{width:657.000000px;}
.x0{left:0.000000px;}
.x2f{left:38.655000px;}
.x2d{left:40.393500px;}
.x2c{left:41.743500px;}
.x2b{left:43.215000px;}
.x2a{left:44.247000px;}
.x29{left:45.864000px;}
.x25{left:47.205000px;}
.x24{left:48.510000px;}
.x1a{left:51.450000px;}
.x18{left:52.563000px;}
.x15{left:54.364500px;}
.x14{left:55.792500px;}
.x1f{left:57.048000px;}
.x20{left:58.372500px;}
.x2e{left:60.493500px;}
.xb{left:62.046000px;}
.x10{left:63.133500px;}
.x33{left:64.686000px;}
.x1b{left:65.698500px;}
.x31{left:66.744000px;}
.x28{left:68.328000px;}
.x6{left:72.970500px;}
.x8{left:74.746500px;}
.xa{left:75.781500px;}
.x1e{left:77.085000px;}
.x3f{left:78.220500px;}
.x17{left:79.318500px;}
.xf{left:82.981500px;}
.xd{left:84.315000px;}
.x32{left:86.565000px;}
.x40{left:92.698500px;}
.x7{left:94.183500px;}
.x9{left:96.031500px;}
.x16{left:97.057500px;}
.x3e{left:99.135000px;}
.x42{left:100.485000px;}
.xe{left:111.064500px;}
.x34{left:129.142500px;}
.x21{left:141.510000px;}
.x1c{left:144.210000px;}
.x11{left:147.810000px;}
.x35{left:153.492000px;}
.xc{left:154.560000px;}
.x30{left:160.408500px;}
.x3b{left:166.243500px;}
.x3a{left:167.779500px;}
.x41{left:171.210000px;}
.x1{left:181.935000px;}
.x2{left:212.083500px;}
.x5{left:238.629000px;}
.x4{left:241.083000px;}
.x19{left:338.392500px;}
.x3{left:399.483000px;}
.x37{left:425.782500px;}
.x1d{left:443.584500px;}
.x26{left:465.672000px;}
.x22{left:468.000000px;}
.x12{left:473.848500px;}
.x27{left:484.110000px;}
.x38{left:490.753500px;}
.x3c{left:493.200000px;}
.x39{left:515.334000px;}
.x23{left:544.351500px;}
.x36{left:546.796500px;}
.x13{left:550.744500px;}
.x3d{left:569.938500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:40.133333pt;}
.y118{bottom:43.600000pt;}
.yc5{bottom:45.065333pt;}
.y45{bottom:48.133333pt;}
.y1b{bottom:49.600000pt;}
.yef{bottom:50.000000pt;}
.y9a{bottom:58.133333pt;}
.y117{bottom:62.000000pt;}
.yc4{bottom:63.466667pt;}
.y44{bottom:66.532000pt;}
.y1a{bottom:67.198667pt;}
.yee{bottom:68.000000pt;}
.y72{bottom:70.398667pt;}
.y99{bottom:76.532000pt;}
.y116{bottom:80.000000pt;}
.yc3{bottom:81.466667pt;}
.y43{bottom:84.532000pt;}
.y19{bottom:85.198667pt;}
.y71{bottom:88.000000pt;}
.y98{bottom:94.532000pt;}
.y115{bottom:98.000000pt;}
.yc2{bottom:101.065333pt;}
.y42{bottom:102.532000pt;}
.y18{bottom:103.600000pt;}
.yed{bottom:104.000000pt;}
.y70{bottom:106.000000pt;}
.y97{bottom:112.532000pt;}
.y114{bottom:115.198667pt;}
.yc1{bottom:117.466667pt;}
.y41{bottom:120.532000pt;}
.y17{bottom:121.600000pt;}
.yec{bottom:122.000000pt;}
.y6f{bottom:124.000000pt;}
.y6e{bottom:124.398667pt;}
.y96{bottom:130.532000pt;}
.y113{bottom:134.000000pt;}
.yc0{bottom:135.466667pt;}
.y40{bottom:138.933333pt;}
.y16{bottom:140.000000pt;}
.y6d{bottom:142.000000pt;}
.y95{bottom:148.933333pt;}
.y112{bottom:152.000000pt;}
.ybf{bottom:153.865333pt;}
.y3f{bottom:156.933333pt;}
.y15{bottom:158.000000pt;}
.y6c{bottom:160.398667pt;}
.y94{bottom:166.532000pt;}
.y111{bottom:170.398667pt;}
.ybe{bottom:171.865333pt;}
.y3e{bottom:175.333333pt;}
.yeb{bottom:176.000000pt;}
.y14{bottom:176.398667pt;}
.y6b{bottom:178.398667pt;}
.y93{bottom:184.932000pt;}
.y110{bottom:188.400000pt;}
.ybd{bottom:190.266667pt;}
.y3d{bottom:193.333333pt;}
.yea{bottom:194.400000pt;}
.y6a{bottom:196.800000pt;}
.y10f{bottom:206.400000pt;}
.ybc{bottom:208.265333pt;}
.y13{bottom:210.800000pt;}
.y3c{bottom:211.333333pt;}
.ye9{bottom:212.400000pt;}
.y69{bottom:214.800000pt;}
.y92{bottom:220.532000pt;}
.y10e{bottom:224.800000pt;}
.ybb{bottom:226.265333pt;}
.y3b{bottom:229.333333pt;}
.ye8{bottom:230.400000pt;}
.y68{bottom:233.598667pt;}
.y91{bottom:238.932000pt;}
.y10d{bottom:243.198667pt;}
.y3a{bottom:247.333333pt;}
.y12{bottom:247.598667pt;}
.ye7{bottom:248.400000pt;}
.y67{bottom:250.800000pt;}
.y90{bottom:256.932000pt;}
.y10c{bottom:260.800000pt;}
.yba{bottom:263.066667pt;}
.y39{bottom:265.333333pt;}
.y11{bottom:266.000000pt;}
.ye6{bottom:266.400000pt;}
.y66{bottom:269.198667pt;}
.y8f{bottom:274.932000pt;}
.y10b{bottom:279.198667pt;}
.y38{bottom:283.333333pt;}
.y10{bottom:284.000000pt;}
.ye5{bottom:284.800000pt;}
.y65{bottom:286.800000pt;}
.y8e{bottom:292.932000pt;}
.y10a{bottom:296.800000pt;}
.yb9{bottom:298.666667pt;}
.y37{bottom:301.333333pt;}
.yf{bottom:302.400000pt;}
.ye4{bottom:302.800000pt;}
.y8d{bottom:311.333333pt;}
.y109{bottom:315.198667pt;}
.yb8{bottom:316.265333pt;}
.y36{bottom:319.333333pt;}
.ye{bottom:320.400000pt;}
.ye3{bottom:322.800000pt;}
.y64{bottom:323.198667pt;}
.y108{bottom:333.198667pt;}
.yb7{bottom:334.265333pt;}
.y35{bottom:337.733333pt;}
.yd{bottom:338.800000pt;}
.ye2{bottom:339.198667pt;}
.y63{bottom:340.800000pt;}
.y62{bottom:341.598667pt;}
.y8c{bottom:346.932000pt;}
.y107{bottom:351.198667pt;}
.yb6{bottom:352.666667pt;}
.ye1{bottom:354.400000pt;}
.y34{bottom:355.333333pt;}
.yc{bottom:356.800000pt;}
.ye0{bottom:357.198667pt;}
.y61{bottom:359.598667pt;}
.y106{bottom:369.198667pt;}
.yb5{bottom:370.666667pt;}
.ydf{bottom:372.800000pt;}
.y33{bottom:373.733333pt;}
.yb{bottom:374.800000pt;}
.yde{bottom:375.598667pt;}
.y60{bottom:377.198667pt;}
.y8b{bottom:382.932000pt;}
.y105{bottom:387.198667pt;}
.yb4{bottom:388.666667pt;}
.ydd{bottom:391.198667pt;}
.y32{bottom:392.133333pt;}
.ya{bottom:392.800000pt;}
.ydc{bottom:394.400000pt;}
.y5f{bottom:395.198667pt;}
.y8a{bottom:401.733333pt;}
.y104{bottom:405.198667pt;}
.yb3{bottom:406.666667pt;}
.y31{bottom:410.133333pt;}
.y9{bottom:410.800000pt;}
.ydb{bottom:411.198667pt;}
.y5e{bottom:413.198667pt;}
.y89{bottom:419.733333pt;}
.y103{bottom:423.598667pt;}
.yb2{bottom:424.666667pt;}
.y30{bottom:428.133333pt;}
.y8{bottom:428.400000pt;}
.yda{bottom:429.198667pt;}
.y5d{bottom:431.198667pt;}
.y88{bottom:437.733333pt;}
.y102{bottom:441.598667pt;}
.yb1{bottom:442.666667pt;}
.y2f{bottom:446.133333pt;}
.y7{bottom:446.800000pt;}
.yd9{bottom:447.198667pt;}
.y5c{bottom:449.198667pt;}
.y5b{bottom:450.400000pt;}
.y87{bottom:455.733333pt;}
.y101{bottom:459.198667pt;}
.yd8{bottom:462.000000pt;}
.y2e{bottom:464.133333pt;}
.yd7{bottom:465.198667pt;}
.y5a{bottom:467.198667pt;}
.y86{bottom:473.333333pt;}
.y100{bottom:477.598667pt;}
.yb0{bottom:479.466667pt;}
.y6{bottom:481.198667pt;}
.yd6{bottom:482.400000pt;}
.y2d{bottom:482.532000pt;}
.yd5{bottom:485.198667pt;}
.y59{bottom:485.598667pt;}
.y84{bottom:490.932000pt;}
.y85{bottom:493.333333pt;}
.yff{bottom:495.598667pt;}
.y2c{bottom:500.532000pt;}
.yd4{bottom:500.800000pt;}
.y58{bottom:503.598667pt;}
.y83{bottom:509.733333pt;}
.yfe{bottom:513.598667pt;}
.yaf{bottom:515.865333pt;}
.y2b{bottom:518.532000pt;}
.y57{bottom:521.598667pt;}
.y82{bottom:527.733333pt;}
.yae{bottom:532.666667pt;}
.y2a{bottom:536.532000pt;}
.yd3{bottom:538.400000pt;}
.y56{bottom:539.598667pt;}
.y5{bottom:543.198667pt;}
.y81{bottom:545.733333pt;}
.yfd{bottom:549.198667pt;}
.yad{bottom:550.666667pt;}
.yac{bottom:553.466667pt;}
.y29{bottom:554.532000pt;}
.y55{bottom:558.400000pt;}
.y4{bottom:561.198667pt;}
.y7f{bottom:561.733333pt;}
.y80{bottom:563.733333pt;}
.yab{bottom:569.066667pt;}
.y28{bottom:572.133333pt;}
.yd2{bottom:575.198667pt;}
.y54{bottom:575.598667pt;}
.y3{bottom:579.598667pt;}
.y7e{bottom:581.333333pt;}
.yfc{bottom:584.800000pt;}
.yaa{bottom:588.666667pt;}
.y27{bottom:590.133333pt;}
.yd1{bottom:591.598667pt;}
.y53{bottom:594.800000pt;}
.y7d{bottom:599.733333pt;}
.yfb{bottom:604.000000pt;}
.ya9{bottom:605.066667pt;}
.y26{bottom:608.133333pt;}
.yd0{bottom:609.598667pt;}
.y52{bottom:611.598667pt;}
.y7c{bottom:617.733333pt;}
.yfa{bottom:621.598667pt;}
.ya8{bottom:623.066667pt;}
.y25{bottom:626.133333pt;}
.ycf{bottom:627.598667pt;}
.y51{bottom:629.598667pt;}
.y7b{bottom:635.733333pt;}
.y2{bottom:636.000000pt;}
.ya7{bottom:638.666667pt;}
.ya6{bottom:639.466667pt;}
.yf9{bottom:639.598667pt;}
.ya5{bottom:641.466667pt;}
.y24{bottom:644.133333pt;}
.yce{bottom:645.198667pt;}
.y50{bottom:647.598667pt;}
.y7a{bottom:653.733333pt;}
.y1{bottom:657.198667pt;}
.yf8{bottom:657.598667pt;}
.ya4{bottom:659.066667pt;}
.y23{bottom:662.133333pt;}
.ycd{bottom:663.198667pt;}
.y4f{bottom:665.598667pt;}
.y79{bottom:671.733333pt;}
.yf7{bottom:675.598667pt;}
.ya3{bottom:677.066667pt;}
.y22{bottom:680.133333pt;}
.ycc{bottom:681.198667pt;}
.y4e{bottom:683.600000pt;}
.y78{bottom:690.133333pt;}
.yf6{bottom:693.600000pt;}
.ya2{bottom:695.065333pt;}
.y120{bottom:695.865333pt;}
.y21{bottom:698.532000pt;}
.ycb{bottom:699.198667pt;}
.y4d{bottom:701.600000pt;}
.y77{bottom:708.133333pt;}
.yf5{bottom:711.600000pt;}
.ya1{bottom:713.065333pt;}
.y11f{bottom:713.865333pt;}
.y20{bottom:716.532000pt;}
.yca{bottom:717.198667pt;}
.y4c{bottom:719.600000pt;}
.y76{bottom:726.133333pt;}
.yf4{bottom:729.600000pt;}
.ya0{bottom:731.065333pt;}
.y11e{bottom:731.865333pt;}
.y1f{bottom:734.532000pt;}
.yc9{bottom:735.198667pt;}
.y4b{bottom:737.600000pt;}
.y75{bottom:744.133333pt;}
.yf3{bottom:747.600000pt;}
.y9f{bottom:748.666667pt;}
.y11d{bottom:749.466667pt;}
.y1e{bottom:752.532000pt;}
.yc8{bottom:753.600000pt;}
.y4a{bottom:756.398667pt;}
.y11c{bottom:767.865333pt;}
.y49{bottom:773.600000pt;}
.y73{bottom:781.732000pt;}
.y9e{bottom:785.065333pt;}
.y74{bottom:785.333333pt;}
.yf0{bottom:789.198667pt;}
.yf2{bottom:789.600000pt;}
.yf1{bottom:790.000000pt;}
.y9c{bottom:790.266667pt;}
.y1c{bottom:792.933333pt;}
.y9d{bottom:793.865333pt;}
.y1d{bottom:794.133333pt;}
.yc7{bottom:794.398667pt;}
.yc6{bottom:796.000000pt;}
.y119{bottom:805.865333pt;}
.y11a{bottom:806.266667pt;}
.y11b{bottom:809.466667pt;}
.y48{bottom:812.800000pt;}
.y47{bottom:814.000000pt;}
.y46{bottom:814.800000pt;}
.h4{height:41.875000pt;}
.hf{height:44.492188pt;}
.hc{height:49.141333pt;}
.h5{height:49.726562pt;}
.h2{height:50.062500pt;}
.hb{height:52.343750pt;}
.h7{height:54.933594pt;}
.h1{height:54.960938pt;}
.hd{height:57.549479pt;}
.h9{height:59.752000pt;}
.h8{height:849.333333pt;}
.he{height:856.000000pt;}
.h0{height:860.000000pt;}
.ha{height:874.666667pt;}
.h3{height:877.333333pt;}
.h10{height:882.666667pt;}
.h6{height:892.000000pt;}
.w4{width:536.000000pt;}
.w5{width:544.000000pt;}
.w2{width:548.000000pt;}
.w3{width:562.666667pt;}
.w1{width:566.666667pt;}
.w6{width:569.333333pt;}
.w0{width:573.333333pt;}
.w7{width:584.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:34.360000pt;}
.x2d{left:35.905333pt;}
.x2c{left:37.105333pt;}
.x2b{left:38.413333pt;}
.x2a{left:39.330667pt;}
.x29{left:40.768000pt;}
.x25{left:41.960000pt;}
.x24{left:43.120000pt;}
.x1a{left:45.733333pt;}
.x18{left:46.722667pt;}
.x15{left:48.324000pt;}
.x14{left:49.593333pt;}
.x1f{left:50.709333pt;}
.x20{left:51.886667pt;}
.x2e{left:53.772000pt;}
.xb{left:55.152000pt;}
.x10{left:56.118667pt;}
.x33{left:57.498667pt;}
.x1b{left:58.398667pt;}
.x31{left:59.328000pt;}
.x28{left:60.736000pt;}
.x6{left:64.862667pt;}
.x8{left:66.441333pt;}
.xa{left:67.361333pt;}
.x1e{left:68.520000pt;}
.x3f{left:69.529333pt;}
.x17{left:70.505333pt;}
.xf{left:73.761333pt;}
.xd{left:74.946667pt;}
.x32{left:76.946667pt;}
.x40{left:82.398667pt;}
.x7{left:83.718667pt;}
.x9{left:85.361333pt;}
.x16{left:86.273333pt;}
.x3e{left:88.120000pt;}
.x42{left:89.320000pt;}
.xe{left:98.724000pt;}
.x34{left:114.793333pt;}
.x21{left:125.786667pt;}
.x1c{left:128.186667pt;}
.x11{left:131.386667pt;}
.x35{left:136.437333pt;}
.xc{left:137.386667pt;}
.x30{left:142.585333pt;}
.x3b{left:147.772000pt;}
.x3a{left:149.137333pt;}
.x41{left:152.186667pt;}
.x1{left:161.720000pt;}
.x2{left:188.518667pt;}
.x5{left:212.114667pt;}
.x4{left:214.296000pt;}
.x19{left:300.793333pt;}
.x3{left:355.096000pt;}
.x37{left:378.473333pt;}
.x1d{left:394.297333pt;}
.x26{left:413.930667pt;}
.x22{left:416.000000pt;}
.x12{left:421.198667pt;}
.x27{left:430.320000pt;}
.x38{left:436.225333pt;}
.x3c{left:438.400000pt;}
.x39{left:458.074667pt;}
.x23{left:483.868000pt;}
.x36{left:486.041333pt;}
.x13{left:489.550667pt;}
.x3d{left:506.612000pt;}
}

