
    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_3c20f5faaf6bc6682604adc5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_85b176df384e83709823b8a8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0e8a800c6400d79ad770d8d3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ab312c1f812a60f2dee9898.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cdd2afc0e91e0d0f58b94278.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d6423844adc4f0b94a21ff94.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_54e53d06b82ace9cea57bc0e.woff')format("woff");}.ff7{font-family:ff7;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;}
.me2{transform:matrix(0.065223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065223,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.184773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184773,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.208322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208322,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.232623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232623,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.240048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240048,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.246448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246448,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);}
.md2{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);}
.m9c{transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255425,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255748,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.256647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256647,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.256798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256798,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.256825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256825,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256900,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.257348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257348,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.257398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257398,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.258323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258323,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258575,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.258648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258648,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259072,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259100,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.259222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259222,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);}
.m97{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);}
.mb7{transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260375,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.260625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260625,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.261148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261148,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.ma1{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m88{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.ma2{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);}
.mac{transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.mbf{transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262673,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.mb2{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);}
.m89{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);}
.mdd{transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264222,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.md5{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);}
.me0{transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265598,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.mde{transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.ma0{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);}
.m7c{transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266423,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266675,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5{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);}
.maa{transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.267473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267473,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.268522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268522,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);}
.m93{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);}
.md9{transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270522,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270700,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.271498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271498,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.272147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272147,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.272197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272197,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274125,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274298,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275075,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.275272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275272,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275300,0.000000,0.000000,0.250000,0,0);}
.ma8{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);}
.mc1{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);}
.m2e{transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276050,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.276400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276400,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.276722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276722,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277548,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.277822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277822,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278125,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278200,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.278322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278322,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.278597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278597,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278775,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.279548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279548,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.280150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280150,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282273,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284050,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287348,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290375,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.295123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295123,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295747,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.296998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296998,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.297800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297800,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298098,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299298,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302175,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.303297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303297,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303825,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.305273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305273,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306098,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.306923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306923,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307048,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307972,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308048,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.308322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308322,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308397,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.308723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308723,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.308798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308798,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.309298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309298,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.310198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310198,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.310225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310225,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310425,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310523,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310925,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311223,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311325,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.311522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311522,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312197,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.312375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312375,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312473,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312600,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312748,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312950,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.313048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313048,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313523,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313700,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.313825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313825,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313975,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314050,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.314072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314072,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.314100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314100,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314298,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314697,0.000000,0.000000,0.250000,0,0);}
.me4{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);}
.m5{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315123,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315173,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315197,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315450,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.315548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315548,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315700,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.315873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315873,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316098,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316498,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316900,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.317048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317048,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317123,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.317300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317300,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317325,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.317472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317472,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.317800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317800,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.318323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318323,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318575,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319050,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319175,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.319848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319848,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320075,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.320300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320300,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320375,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320797,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320850,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321272,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321572,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322075,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.322348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322348,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.322423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322423,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.322847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322847,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.322972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322972,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.324525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324525,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.325200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325200,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325450,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.326022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326022,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.326722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326722,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327650,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327672,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.327898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327898,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327922,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.327997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327997,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328522,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.328800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328800,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.330422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330422,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331822,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.333772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333772,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353373,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.371850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371850,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(1.466647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.466647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.466647,0.000000,0.000000,0.250000,0,0);}
.m70{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;}
.fs5{font-size:30.000000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:69.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:18.000000px;}
.y103{bottom:36.900000px;}
.y6d{bottom:51.300000px;}
.y6c{bottom:54.900000px;}
.y6f{bottom:55.348500px;}
.y70{bottom:55.800000px;}
.y71{bottom:56.698500px;}
.y72{bottom:58.050000px;}
.y102{bottom:67.048500px;}
.y101{bottom:82.798500px;}
.y30{bottom:88.650000px;}
.y31{bottom:90.000000px;}
.y6b{bottom:90.900000px;}
.y6a{bottom:94.050000px;}
.ya7{bottom:95.848500px;}
.ye0{bottom:97.198500px;}
.y100{bottom:99.000000px;}
.ydf{bottom:99.448500px;}
.y69{bottom:107.550000px;}
.ya6{bottom:112.050000px;}
.yde{bottom:113.400000px;}
.yff{bottom:115.200000px;}
.y68{bottom:123.300000px;}
.y2f{bottom:123.750000px;}
.ydd{bottom:129.150000px;}
.yfe{bottom:130.950000px;}
.ya5{bottom:136.348500px;}
.y2e{bottom:140.400000px;}
.ydc{bottom:145.348500px;}
.y67{bottom:146.698500px;}
.yfd{bottom:147.150000px;}
.ya4{bottom:152.550000px;}
.y2d{bottom:161.550000px;}
.y66{bottom:162.000000px;}
.yfc{bottom:163.348500px;}
.ya3{bottom:168.750000px;}
.ydb{bottom:177.300000px;}
.y65{bottom:178.198500px;}
.yfb{bottom:179.098500px;}
.ya2{bottom:184.500000px;}
.yda{bottom:193.500000px;}
.y64{bottom:193.948500px;}
.yfa{bottom:195.298500px;}
.yd9{bottom:195.300000px;}
.y9f{bottom:198.448500px;}
.ya0{bottom:199.800000px;}
.ya1{bottom:202.050000px;}
.y2c{bottom:209.250000px;}
.y63{bottom:210.150000px;}
.yf9{bottom:211.048500px;}
.y9e{bottom:216.450000px;}
.y62{bottom:225.900000px;}
.yf8{bottom:227.250000px;}
.y2b{bottom:227.700000px;}
.yd8{bottom:231.750000px;}
.y9d{bottom:232.650000px;}
.yd7{bottom:234.450000px;}
.y61{bottom:242.098500px;}
.yf7{bottom:243.450000px;}
.y9c{bottom:248.400000px;}
.y2a{bottom:256.950000px;}
.y60{bottom:258.298500px;}
.yf6{bottom:259.200000px;}
.y9a{bottom:263.250000px;}
.y9b{bottom:266.848500px;}
.y27{bottom:274.048500px;}
.yd6{bottom:275.400000px;}
.y28{bottom:276.298500px;}
.y29{bottom:278.098500px;}
.y99{bottom:280.798500px;}
.yf5{bottom:281.700000px;}
.yd5{bottom:289.798500px;}
.y26{bottom:292.048500px;}
.y98{bottom:297.000000px;}
.yf4{bottom:297.900000px;}
.y5f{bottom:299.700000px;}
.yd4{bottom:304.650000px;}
.yd3{bottom:305.548500px;}
.yd2{bottom:306.900000px;}
.y5d{bottom:307.798500px;}
.y25{bottom:308.250000px;}
.y5e{bottom:310.048500px;}
.y5c{bottom:310.500000px;}
.y5b{bottom:310.950000px;}
.y97{bottom:312.750000px;}
.y5a{bottom:313.200000px;}
.yf3{bottom:313.650000px;}
.yd1{bottom:321.750000px;}
.y24{bottom:324.450000px;}
.y59{bottom:328.950000px;}
.yf2{bottom:329.848500px;}
.yd0{bottom:337.950000px;}
.y23{bottom:340.200000px;}
.y58{bottom:344.700000px;}
.yf1{bottom:345.598500px;}
.y96{bottom:349.650000px;}
.ycf{bottom:353.700000px;}
.y22{bottom:356.400000px;}
.y57{bottom:360.900000px;}
.yf0{bottom:361.798500px;}
.y95{bottom:369.000000px;}
.yce{bottom:369.900000px;}
.ycd{bottom:372.150000px;}
.y21{bottom:372.598500px;}
.y56{bottom:377.098500px;}
.yef{bottom:378.000000px;}
.y94{bottom:385.200000px;}
.ycc{bottom:386.098500px;}
.y20{bottom:388.798500px;}
.y55{bottom:392.848500px;}
.yee{bottom:393.750000px;}
.y93{bottom:400.950000px;}
.ycb{bottom:401.400000px;}
.yca{bottom:404.098500px;}
.y1f{bottom:406.798500px;}
.y54{bottom:416.250000px;}
.y92{bottom:417.150000px;}
.yc9{bottom:418.048500px;}
.y1e{bottom:426.598500px;}
.y90{bottom:430.200000px;}
.y53{bottom:432.000000px;}
.y91{bottom:433.348500px;}
.yc8{bottom:434.250000px;}
.yc7{bottom:436.500000px;}
.y1d{bottom:442.798500px;}
.y52{bottom:447.750000px;}
.yed{bottom:448.200000px;}
.yc6{bottom:450.000000px;}
.y8f{bottom:454.500000px;}
.y1c{bottom:458.548500px;}
.yec{bottom:464.400000px;}
.y51{bottom:472.500000px;}
.yc5{bottom:472.950000px;}
.y1b{bottom:474.750000px;}
.yeb{bottom:480.150000px;}
.y50{bottom:486.450000px;}
.yc4{bottom:488.700000px;}
.y1a{bottom:490.500000px;}
.yea{bottom:496.348500px;}
.y8e{bottom:497.250000px;}
.yc3{bottom:504.900000px;}
.y19{bottom:507.150000px;}
.y8c{bottom:516.150000px;}
.y4f{bottom:517.950000px;}
.ye9{bottom:518.848500px;}
.y8d{bottom:519.750000px;}
.yc2{bottom:520.650000px;}
.y18{bottom:526.950000px;}
.y8b{bottom:532.348500px;}
.ye8{bottom:534.598500px;}
.yc1{bottom:536.848500px;}
.y17{bottom:544.950000px;}
.y88{bottom:545.848500px;}
.y89{bottom:546.750000px;}
.y4e{bottom:549.000000px;}
.y8a{bottom:549.450000px;}
.ye7{bottom:550.348500px;}
.yc0{bottom:552.598500px;}
.y4d{bottom:563.400000px;}
.y87{bottom:564.750000px;}
.y4c{bottom:565.650000px;}
.y4b{bottom:566.548500px;}
.ybf{bottom:568.798500px;}
.ybe{bottom:571.048500px;}
.y4a{bottom:579.598500px;}
.y86{bottom:580.950000px;}
.y49{bottom:582.298500px;}
.y48{bottom:582.750000px;}
.y16{bottom:584.098500px;}
.ybd{bottom:585.000000px;}
.ybc{bottom:587.250000px;}
.y85{bottom:596.700000px;}
.ye6{bottom:598.500000px;}
.ybb{bottom:600.750000px;}
.y15{bottom:602.098500px;}
.y47{bottom:611.548500px;}
.y46{bottom:612.450000px;}
.y84{bottom:612.900000px;}
.y45{bottom:613.348500px;}
.ye5{bottom:614.700000px;}
.yba{bottom:616.950000px;}
.y14{bottom:617.848500px;}
.yb9{bottom:619.200000px;}
.y81{bottom:625.048500px;}
.y82{bottom:627.750000px;}
.y44{bottom:628.650000px;}
.y11{bottom:630.450000px;}
.y83{bottom:631.348500px;}
.y12{bottom:631.798500px;}
.yb8{bottom:632.700000px;}
.y13{bottom:635.400000px;}
.ye4{bottom:637.200000px;}
.y80{bottom:644.848500px;}
.y43{bottom:645.298500px;}
.y10{bottom:650.250000px;}
.ye3{bottom:652.950000px;}
.yb7{bottom:655.650000px;}
.y42{bottom:661.950000px;}
.yf{bottom:666.000000px;}
.yb6{bottom:671.400000px;}
.y41{bottom:678.598500px;}
.ye{bottom:682.650000px;}
.y7f{bottom:684.450000px;}
.yb5{bottom:687.598500px;}
.ye1{bottom:694.348500px;}
.ye2{bottom:694.798500px;}
.y40{bottom:695.700000px;}
.y7e{bottom:700.650000px;}
.yd{bottom:702.000000px;}
.yb4{bottom:703.798500px;}
.y3f{bottom:712.348500px;}
.y7d{bottom:716.400000px;}
.yb3{bottom:719.548500px;}
.yc{bottom:720.450000px;}
.y3e{bottom:729.000000px;}
.y7c{bottom:732.598500px;}
.yb2{bottom:735.298500px;}
.yb{bottom:736.200000px;}
.y3d{bottom:746.098500px;}
.y7b{bottom:748.798500px;}
.yb1{bottom:751.500000px;}
.ya{bottom:752.400000px;}
.y3c{bottom:762.750000px;}
.y3b{bottom:765.000000px;}
.yb0{bottom:767.700000px;}
.y9{bottom:768.598500px;}
.y7a{bottom:769.948500px;}
.y8{bottom:784.348500px;}
.y3a{bottom:787.948500px;}
.y79{bottom:788.400000px;}
.yaf{bottom:791.550000px;}
.y7{bottom:800.550000px;}
.y39{bottom:804.598500px;}
.yae{bottom:805.948500px;}
.y6{bottom:816.300000px;}
.y78{bottom:820.348500px;}
.y38{bottom:821.250000px;}
.yad{bottom:822.150000px;}
.y37{bottom:823.500000px;}
.y5{bottom:832.500000px;}
.y77{bottom:836.550000px;}
.yac{bottom:837.900000px;}
.y36{bottom:846.448500px;}
.y4{bottom:848.698500px;}
.y35{bottom:849.150000px;}
.yab{bottom:851.848500px;}
.yaa{bottom:852.300000px;}
.y76{bottom:852.750000px;}
.ya9{bottom:854.550000px;}
.y2{bottom:861.300000px;}
.y34{bottom:863.098500px;}
.y3{bottom:865.348500px;}
.y75{bottom:868.500000px;}
.ya8{bottom:869.848500px;}
.y33{bottom:902.250000px;}
.y32{bottom:903.150000px;}
.y1{bottom:904.500000px;}
.y6e{bottom:908.550000px;}
.y74{bottom:909.448500px;}
.y73{bottom:910.348500px;}
.h9{height:31.289062px;}
.hb{height:35.332031px;}
.h7{height:43.804688px;}
.hf{height:45.528000px;}
.ha{height:50.028809px;}
.h6{height:50.053711px;}
.h1{height:50.062500px;}
.h8{height:52.971680px;}
.h3{height:52.998047px;}
.h10{height:53.191406px;}
.hd{height:54.417000px;}
.h2{height:55.914551px;}
.h4{height:55.942383px;}
.h5{height:56.320312px;}
.he{height:58.886719px;}
.h14{height:59.449219px;}
.h11{height:60.819000px;}
.h12{height:73.623000px;}
.h13{height:742.500000px;}
.h0{height:976.500000px;}
.hc{height:981.000000px;}
.w2{width:618.000000px;}
.w1{width:1326.000000px;}
.w0{width:1330.500000px;}
.x0{left:0.000000px;}
.x5a{left:49.954500px;}
.x58{left:51.304500px;}
.x57{left:52.594500px;}
.x59{left:71.091000px;}
.x31{left:72.444000px;}
.x39{left:73.462500px;}
.x3a{left:74.499000px;}
.x41{left:75.849000px;}
.x43{left:77.085000px;}
.x1{left:78.118500px;}
.x4{left:79.257000px;}
.x5{left:80.427000px;}
.x7{left:81.489000px;}
.xc{left:82.600500px;}
.xd{left:84.177000px;}
.xe{left:85.827000px;}
.x15{left:87.757500px;}
.x3c{left:93.712500px;}
.x32{left:101.698500px;}
.x38{left:104.136000px;}
.x3b{left:105.412500px;}
.x2{left:107.388000px;}
.x45{left:108.520500px;}
.xa{left:110.019000px;}
.x6{left:111.328500px;}
.xb{left:114.028500px;}
.x11{left:116.890500px;}
.x12{left:124.554000px;}
.x14{left:126.586500px;}
.x13{left:128.014500px;}
.x44{left:131.649000px;}
.x3{left:141.640500px;}
.x16{left:175.632000px;}
.x8{left:180.471000px;}
.x3f{left:206.391000px;}
.x40{left:211.048500px;}
.x9{left:224.139000px;}
.x47{left:275.745000px;}
.x48{left:349.729500px;}
.xf{left:377.316000px;}
.x10{left:392.907000px;}
.x46{left:416.250000px;}
.x3d{left:488.709000px;}
.x3e{left:512.302500px;}
.x42{left:620.563500px;}
.x33{left:654.378000px;}
.x34{left:658.348500px;}
.x56{left:699.502500px;}
.x54{left:700.738500px;}
.x2e{left:702.003000px;}
.x29{left:703.749000px;}
.x27{left:704.920500px;}
.x20{left:706.185000px;}
.x4c{left:720.685500px;}
.x4f{left:723.849000px;}
.x51{left:726.099000px;}
.x4e{left:727.449000px;}
.x28{left:730.582500px;}
.x26{left:732.616500px;}
.x23{left:733.807500px;}
.x4b{left:735.412500px;}
.x50{left:740.049000px;}
.x1d{left:744.136500px;}
.x1a{left:745.753500px;}
.x55{left:752.916000px;}
.x19{left:759.594000px;}
.x2f{left:763.149000px;}
.x1c{left:773.160000px;}
.x1b{left:774.418500px;}
.x21{left:812.406000px;}
.x24{left:838.803000px;}
.x22{left:847.738500px;}
.x1e{left:873.346500px;}
.x1f{left:875.250000px;}
.x25{left:895.987500px;}
.x52{left:983.508000px;}
.x53{left:1002.387000px;}
.x35{left:1114.653000px;}
.x17{left:1119.631500px;}
.x2a{left:1168.588500px;}
.x18{left:1172.502000px;}
.x2b{left:1181.185500px;}
.x36{left:1189.348500px;}
.x37{left:1207.623000px;}
.x49{left:1214.559000px;}
.x4d{left:1221.999000px;}
.x4a{left:1227.865500px;}
.x30{left:1231.009500px;}
.x2c{left:1235.019000px;}
.x2d{left:1237.948500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs5{font-size:26.666667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:61.333333pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:16.000000pt;}
.y103{bottom:32.800000pt;}
.y6d{bottom:45.600000pt;}
.y6c{bottom:48.800000pt;}
.y6f{bottom:49.198667pt;}
.y70{bottom:49.600000pt;}
.y71{bottom:50.398667pt;}
.y72{bottom:51.600000pt;}
.y102{bottom:59.598667pt;}
.y101{bottom:73.598667pt;}
.y30{bottom:78.800000pt;}
.y31{bottom:80.000000pt;}
.y6b{bottom:80.800000pt;}
.y6a{bottom:83.600000pt;}
.ya7{bottom:85.198667pt;}
.ye0{bottom:86.398667pt;}
.y100{bottom:88.000000pt;}
.ydf{bottom:88.398667pt;}
.y69{bottom:95.600000pt;}
.ya6{bottom:99.600000pt;}
.yde{bottom:100.800000pt;}
.yff{bottom:102.400000pt;}
.y68{bottom:109.600000pt;}
.y2f{bottom:110.000000pt;}
.ydd{bottom:114.800000pt;}
.yfe{bottom:116.400000pt;}
.ya5{bottom:121.198667pt;}
.y2e{bottom:124.800000pt;}
.ydc{bottom:129.198667pt;}
.y67{bottom:130.398667pt;}
.yfd{bottom:130.800000pt;}
.ya4{bottom:135.600000pt;}
.y2d{bottom:143.600000pt;}
.y66{bottom:144.000000pt;}
.yfc{bottom:145.198667pt;}
.ya3{bottom:150.000000pt;}
.ydb{bottom:157.600000pt;}
.y65{bottom:158.398667pt;}
.yfb{bottom:159.198667pt;}
.ya2{bottom:164.000000pt;}
.yda{bottom:172.000000pt;}
.y64{bottom:172.398667pt;}
.yfa{bottom:173.598667pt;}
.yd9{bottom:173.600000pt;}
.y9f{bottom:176.398667pt;}
.ya0{bottom:177.600000pt;}
.ya1{bottom:179.600000pt;}
.y2c{bottom:186.000000pt;}
.y63{bottom:186.800000pt;}
.yf9{bottom:187.598667pt;}
.y9e{bottom:192.400000pt;}
.y62{bottom:200.800000pt;}
.yf8{bottom:202.000000pt;}
.y2b{bottom:202.400000pt;}
.yd8{bottom:206.000000pt;}
.y9d{bottom:206.800000pt;}
.yd7{bottom:208.400000pt;}
.y61{bottom:215.198667pt;}
.yf7{bottom:216.400000pt;}
.y9c{bottom:220.800000pt;}
.y2a{bottom:228.400000pt;}
.y60{bottom:229.598667pt;}
.yf6{bottom:230.400000pt;}
.y9a{bottom:234.000000pt;}
.y9b{bottom:237.198667pt;}
.y27{bottom:243.598667pt;}
.yd6{bottom:244.800000pt;}
.y28{bottom:245.598667pt;}
.y29{bottom:247.198667pt;}
.y99{bottom:249.598667pt;}
.yf5{bottom:250.400000pt;}
.yd5{bottom:257.598667pt;}
.y26{bottom:259.598667pt;}
.y98{bottom:264.000000pt;}
.yf4{bottom:264.800000pt;}
.y5f{bottom:266.400000pt;}
.yd4{bottom:270.800000pt;}
.yd3{bottom:271.598667pt;}
.yd2{bottom:272.800000pt;}
.y5d{bottom:273.598667pt;}
.y25{bottom:274.000000pt;}
.y5e{bottom:275.598667pt;}
.y5c{bottom:276.000000pt;}
.y5b{bottom:276.400000pt;}
.y97{bottom:278.000000pt;}
.y5a{bottom:278.400000pt;}
.yf3{bottom:278.800000pt;}
.yd1{bottom:286.000000pt;}
.y24{bottom:288.400000pt;}
.y59{bottom:292.400000pt;}
.yf2{bottom:293.198667pt;}
.yd0{bottom:300.400000pt;}
.y23{bottom:302.400000pt;}
.y58{bottom:306.400000pt;}
.yf1{bottom:307.198667pt;}
.y96{bottom:310.800000pt;}
.ycf{bottom:314.400000pt;}
.y22{bottom:316.800000pt;}
.y57{bottom:320.800000pt;}
.yf0{bottom:321.598667pt;}
.y95{bottom:328.000000pt;}
.yce{bottom:328.800000pt;}
.ycd{bottom:330.800000pt;}
.y21{bottom:331.198667pt;}
.y56{bottom:335.198667pt;}
.yef{bottom:336.000000pt;}
.y94{bottom:342.400000pt;}
.ycc{bottom:343.198667pt;}
.y20{bottom:345.598667pt;}
.y55{bottom:349.198667pt;}
.yee{bottom:350.000000pt;}
.y93{bottom:356.400000pt;}
.ycb{bottom:356.800000pt;}
.yca{bottom:359.198667pt;}
.y1f{bottom:361.598667pt;}
.y54{bottom:370.000000pt;}
.y92{bottom:370.800000pt;}
.yc9{bottom:371.598667pt;}
.y1e{bottom:379.198667pt;}
.y90{bottom:382.400000pt;}
.y53{bottom:384.000000pt;}
.y91{bottom:385.198667pt;}
.yc8{bottom:386.000000pt;}
.yc7{bottom:388.000000pt;}
.y1d{bottom:393.598667pt;}
.y52{bottom:398.000000pt;}
.yed{bottom:398.400000pt;}
.yc6{bottom:400.000000pt;}
.y8f{bottom:404.000000pt;}
.y1c{bottom:407.598667pt;}
.yec{bottom:412.800000pt;}
.y51{bottom:420.000000pt;}
.yc5{bottom:420.400000pt;}
.y1b{bottom:422.000000pt;}
.yeb{bottom:426.800000pt;}
.y50{bottom:432.400000pt;}
.yc4{bottom:434.400000pt;}
.y1a{bottom:436.000000pt;}
.yea{bottom:441.198667pt;}
.y8e{bottom:442.000000pt;}
.yc3{bottom:448.800000pt;}
.y19{bottom:450.800000pt;}
.y8c{bottom:458.800000pt;}
.y4f{bottom:460.400000pt;}
.ye9{bottom:461.198667pt;}
.y8d{bottom:462.000000pt;}
.yc2{bottom:462.800000pt;}
.y18{bottom:468.400000pt;}
.y8b{bottom:473.198667pt;}
.ye8{bottom:475.198667pt;}
.yc1{bottom:477.198667pt;}
.y17{bottom:484.400000pt;}
.y88{bottom:485.198667pt;}
.y89{bottom:486.000000pt;}
.y4e{bottom:488.000000pt;}
.y8a{bottom:488.400000pt;}
.ye7{bottom:489.198667pt;}
.yc0{bottom:491.198667pt;}
.y4d{bottom:500.800000pt;}
.y87{bottom:502.000000pt;}
.y4c{bottom:502.800000pt;}
.y4b{bottom:503.598667pt;}
.ybf{bottom:505.598667pt;}
.ybe{bottom:507.598667pt;}
.y4a{bottom:515.198667pt;}
.y86{bottom:516.400000pt;}
.y49{bottom:517.598667pt;}
.y48{bottom:518.000000pt;}
.y16{bottom:519.198667pt;}
.ybd{bottom:520.000000pt;}
.ybc{bottom:522.000000pt;}
.y85{bottom:530.400000pt;}
.ye6{bottom:532.000000pt;}
.ybb{bottom:534.000000pt;}
.y15{bottom:535.198667pt;}
.y47{bottom:543.598667pt;}
.y46{bottom:544.400000pt;}
.y84{bottom:544.800000pt;}
.y45{bottom:545.198667pt;}
.ye5{bottom:546.400000pt;}
.yba{bottom:548.400000pt;}
.y14{bottom:549.198667pt;}
.yb9{bottom:550.400000pt;}
.y81{bottom:555.598667pt;}
.y82{bottom:558.000000pt;}
.y44{bottom:558.800000pt;}
.y11{bottom:560.400000pt;}
.y83{bottom:561.198667pt;}
.y12{bottom:561.598667pt;}
.yb8{bottom:562.400000pt;}
.y13{bottom:564.800000pt;}
.ye4{bottom:566.400000pt;}
.y80{bottom:573.198667pt;}
.y43{bottom:573.598667pt;}
.y10{bottom:578.000000pt;}
.ye3{bottom:580.400000pt;}
.yb7{bottom:582.800000pt;}
.y42{bottom:588.400000pt;}
.yf{bottom:592.000000pt;}
.yb6{bottom:596.800000pt;}
.y41{bottom:603.198667pt;}
.ye{bottom:606.800000pt;}
.y7f{bottom:608.400000pt;}
.yb5{bottom:611.198667pt;}
.ye1{bottom:617.198667pt;}
.ye2{bottom:617.598667pt;}
.y40{bottom:618.400000pt;}
.y7e{bottom:622.800000pt;}
.yd{bottom:624.000000pt;}
.yb4{bottom:625.598667pt;}
.y3f{bottom:633.198667pt;}
.y7d{bottom:636.800000pt;}
.yb3{bottom:639.598667pt;}
.yc{bottom:640.400000pt;}
.y3e{bottom:648.000000pt;}
.y7c{bottom:651.198667pt;}
.yb2{bottom:653.598667pt;}
.yb{bottom:654.400000pt;}
.y3d{bottom:663.198667pt;}
.y7b{bottom:665.598667pt;}
.yb1{bottom:668.000000pt;}
.ya{bottom:668.800000pt;}
.y3c{bottom:678.000000pt;}
.y3b{bottom:680.000000pt;}
.yb0{bottom:682.400000pt;}
.y9{bottom:683.198667pt;}
.y7a{bottom:684.398667pt;}
.y8{bottom:697.198667pt;}
.y3a{bottom:700.398667pt;}
.y79{bottom:700.800000pt;}
.yaf{bottom:703.600000pt;}
.y7{bottom:711.600000pt;}
.y39{bottom:715.198667pt;}
.yae{bottom:716.398667pt;}
.y6{bottom:725.600000pt;}
.y78{bottom:729.198667pt;}
.y38{bottom:730.000000pt;}
.yad{bottom:730.800000pt;}
.y37{bottom:732.000000pt;}
.y5{bottom:740.000000pt;}
.y77{bottom:743.600000pt;}
.yac{bottom:744.800000pt;}
.y36{bottom:752.398667pt;}
.y4{bottom:754.398667pt;}
.y35{bottom:754.800000pt;}
.yab{bottom:757.198667pt;}
.yaa{bottom:757.600000pt;}
.y76{bottom:758.000000pt;}
.ya9{bottom:759.600000pt;}
.y2{bottom:765.600000pt;}
.y34{bottom:767.198667pt;}
.y3{bottom:769.198667pt;}
.y75{bottom:772.000000pt;}
.ya8{bottom:773.198667pt;}
.y33{bottom:802.000000pt;}
.y32{bottom:802.800000pt;}
.y1{bottom:804.000000pt;}
.y6e{bottom:807.600000pt;}
.y74{bottom:808.398667pt;}
.y73{bottom:809.198667pt;}
.h9{height:27.812500pt;}
.hb{height:31.406250pt;}
.h7{height:38.937500pt;}
.hf{height:40.469333pt;}
.ha{height:44.470052pt;}
.h6{height:44.492188pt;}
.h1{height:44.500000pt;}
.h8{height:47.085938pt;}
.h3{height:47.109375pt;}
.h10{height:47.281250pt;}
.hd{height:48.370667pt;}
.h2{height:49.701823pt;}
.h4{height:49.726562pt;}
.h5{height:50.062500pt;}
.he{height:52.343750pt;}
.h14{height:52.843750pt;}
.h11{height:54.061333pt;}
.h12{height:65.442667pt;}
.h13{height:660.000000pt;}
.h0{height:868.000000pt;}
.hc{height:872.000000pt;}
.w2{width:549.333333pt;}
.w1{width:1178.666667pt;}
.w0{width:1182.666667pt;}
.x0{left:0.000000pt;}
.x5a{left:44.404000pt;}
.x58{left:45.604000pt;}
.x57{left:46.750667pt;}
.x59{left:63.192000pt;}
.x31{left:64.394667pt;}
.x39{left:65.300000pt;}
.x3a{left:66.221333pt;}
.x41{left:67.421333pt;}
.x43{left:68.520000pt;}
.x1{left:69.438667pt;}
.x4{left:70.450667pt;}
.x5{left:71.490667pt;}
.x7{left:72.434667pt;}
.xc{left:73.422667pt;}
.xd{left:74.824000pt;}
.xe{left:76.290667pt;}
.x15{left:78.006667pt;}
.x3c{left:83.300000pt;}
.x32{left:90.398667pt;}
.x38{left:92.565333pt;}
.x3b{left:93.700000pt;}
.x2{left:95.456000pt;}
.x45{left:96.462667pt;}
.xa{left:97.794667pt;}
.x6{left:98.958667pt;}
.xb{left:101.358667pt;}
.x11{left:103.902667pt;}
.x12{left:110.714667pt;}
.x14{left:112.521333pt;}
.x13{left:113.790667pt;}
.x44{left:117.021333pt;}
.x3{left:125.902667pt;}
.x16{left:156.117333pt;}
.x8{left:160.418667pt;}
.x3f{left:183.458667pt;}
.x40{left:187.598667pt;}
.x9{left:199.234667pt;}
.x47{left:245.106667pt;}
.x48{left:310.870667pt;}
.xf{left:335.392000pt;}
.x10{left:349.250667pt;}
.x46{left:370.000000pt;}
.x3d{left:434.408000pt;}
.x3e{left:455.380000pt;}
.x42{left:551.612000pt;}
.x33{left:581.669333pt;}
.x34{left:585.198667pt;}
.x56{left:621.780000pt;}
.x54{left:622.878667pt;}
.x2e{left:624.002667pt;}
.x29{left:625.554667pt;}
.x27{left:626.596000pt;}
.x20{left:627.720000pt;}
.x4c{left:640.609333pt;}
.x4f{left:643.421333pt;}
.x51{left:645.421333pt;}
.x4e{left:646.621333pt;}
.x28{left:649.406667pt;}
.x26{left:651.214667pt;}
.x23{left:652.273333pt;}
.x4b{left:653.700000pt;}
.x50{left:657.821333pt;}
.x1d{left:661.454667pt;}
.x1a{left:662.892000pt;}
.x55{left:669.258667pt;}
.x19{left:675.194667pt;}
.x2f{left:678.354667pt;}
.x1c{left:687.253333pt;}
.x1b{left:688.372000pt;}
.x21{left:722.138667pt;}
.x24{left:745.602667pt;}
.x22{left:753.545333pt;}
.x1e{left:776.308000pt;}
.x1f{left:778.000000pt;}
.x25{left:796.433333pt;}
.x52{left:874.229333pt;}
.x53{left:891.010667pt;}
.x35{left:990.802667pt;}
.x17{left:995.228000pt;}
.x2a{left:1038.745333pt;}
.x18{left:1042.224000pt;}
.x2b{left:1049.942667pt;}
.x36{left:1057.198667pt;}
.x37{left:1073.442667pt;}
.x49{left:1079.608000pt;}
.x4d{left:1086.221333pt;}
.x4a{left:1091.436000pt;}
.x30{left:1094.230667pt;}
.x2c{left:1097.794667pt;}
.x2d{left:1100.398667pt;}
}

