
    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_1e2ec600d46ea86c2e819a09.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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;}
.mab{transform:matrix(0.110022,0.001320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.110022,0.001320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.110022,0.001320,-0.003000,0.249982,0,0);}
.m4e{transform:matrix(0.112522,0.001350,-0.003000,0.249982,0,0);-ms-transform:matrix(0.112522,0.001350,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.112522,0.001350,-0.003000,0.249982,0,0);}
.mc{transform:matrix(0.116692,0.001400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.116692,0.001400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.116692,0.001400,-0.003000,0.249982,0,0);}
.m33{transform:matrix(0.129996,0.001560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.129996,0.001560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.129996,0.001560,-0.003000,0.249982,0,0);}
.md6{transform:matrix(0.141655,0.001700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141655,0.001700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141655,0.001700,-0.003000,0.249982,0,0);}
.med{transform:matrix(0.147239,0.001767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.147239,0.001767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.147239,0.001767,-0.003000,0.249982,0,0);}
.m9f{transform:matrix(0.153329,0.001840,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153329,0.001840,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153329,0.001840,-0.003000,0.249982,0,0);}
.m56{transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157509,0.001890,-0.003000,0.249982,0,0);}
.me0{transform:matrix(0.158349,0.001900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158349,0.001900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158349,0.001900,-0.003000,0.249982,0,0);}
.ma8{transform:matrix(0.158759,0.001905,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158759,0.001905,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158759,0.001905,-0.003000,0.249982,0,0);}
.m95{transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.163743,0.001965,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163743,0.001965,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163743,0.001965,-0.003000,0.249982,0,0);}
.m9a{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.163783,0.001965,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163783,0.001965,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163783,0.001965,-0.003000,0.249982,0,0);}
.m6b{transform:matrix(0.164643,0.001976,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164643,0.001976,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164643,0.001976,-0.003000,0.249982,0,0);}
.mc3{transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166243,0.001995,-0.003000,0.249982,0,0);}
.m4b{transform:matrix(0.168758,0.002025,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168758,0.002025,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168758,0.002025,-0.003000,0.249982,0,0);}
.mf5{transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);}
.m1d{transform:matrix(0.170838,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170838,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170838,0.002050,-0.003000,0.249982,0,0);}
.mad{transform:matrix(0.174847,0.002098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174847,0.002098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174847,0.002098,-0.003000,0.249982,0,0);}
.mf0{transform:matrix(0.175007,0.002100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175007,0.002100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175007,0.002100,-0.003000,0.249982,0,0);}
.m7d{transform:matrix(0.175627,0.002108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175627,0.002108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175627,0.002108,-0.003000,0.249982,0,0);}
.me9{transform:matrix(0.178877,0.002147,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178877,0.002147,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178877,0.002147,-0.003000,0.249982,0,0);}
.m55{transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180002,0.002160,-0.003000,0.249982,0,0);}
.m61{transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180617,0.002167,-0.003000,0.249982,0,0);}
.mb4{transform:matrix(0.180707,0.002168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180707,0.002168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180707,0.002168,-0.003000,0.249982,0,0);}
.m5b{transform:matrix(0.182502,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182502,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182502,0.002190,-0.003000,0.249982,0,0);}
.m63{transform:matrix(0.182517,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182517,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182517,0.002190,-0.003000,0.249982,0,0);}
.mdb{transform:matrix(0.183327,0.002200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183327,0.002200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183327,0.002200,-0.003000,0.249982,0,0);}
.m90{transform:matrix(0.186662,0.002240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186662,0.002240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186662,0.002240,-0.003000,0.249982,0,0);}
.ma9{transform:matrix(0.187502,0.002250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187502,0.002250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187502,0.002250,-0.003000,0.249982,0,0);}
.mf9{transform:matrix(0.189211,0.002271,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189211,0.002271,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189211,0.002271,-0.003000,0.249982,0,0);}
.m6d{transform:matrix(0.189446,0.002273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189446,0.002273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189446,0.002273,-0.003000,0.249982,0,0);}
.me4{transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190286,0.002283,-0.003000,0.249982,0,0);}
.m87{transform:matrix(0.191251,0.002295,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191251,0.002295,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191251,0.002295,-0.003000,0.249982,0,0);}
.mba{transform:matrix(0.192391,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192391,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192391,0.002309,-0.003000,0.249982,0,0);}
.m42{transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193336,0.002320,-0.003000,0.249982,0,0);}
.mb8{transform:matrix(0.193916,0.002327,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193916,0.002327,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193916,0.002327,-0.003000,0.249982,0,0);}
.mcc{transform:matrix(0.194286,0.002331,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194286,0.002331,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194286,0.002331,-0.003000,0.249982,0,0);}
.m9e{transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194446,0.002333,-0.003000,0.249982,0,0);}
.m1b{transform:matrix(0.194991,0.002340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194991,0.002340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194991,0.002340,-0.003000,0.249982,0,0);}
.m70{transform:matrix(0.195001,0.002340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195001,0.002340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195001,0.002340,-0.003000,0.249982,0,0);}
.m4a{transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195716,0.002349,-0.003000,0.249982,0,0);}
.m6a{transform:matrix(0.197496,0.002370,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197496,0.002370,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197496,0.002370,-0.003000,0.249982,0,0);}
.m30{transform:matrix(0.197861,0.002374,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197861,0.002374,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197861,0.002374,-0.003000,0.249982,0,0);}
.mb5{transform:matrix(0.198136,0.002378,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198136,0.002378,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198136,0.002378,-0.003000,0.249982,0,0);}
.mcb{transform:matrix(0.198441,0.002381,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198441,0.002381,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198441,0.002381,-0.003000,0.249982,0,0);}
.m8a{transform:matrix(0.199376,0.002393,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199376,0.002393,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199376,0.002393,-0.003000,0.249982,0,0);}
.mb3{transform:matrix(0.199996,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199996,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199996,0.002400,-0.003000,0.249982,0,0);}
.m8d{transform:matrix(0.200001,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200001,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200001,0.002400,-0.003000,0.249982,0,0);}
.mc9{transform:matrix(0.200411,0.002405,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200411,0.002405,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200411,0.002405,-0.003000,0.249982,0,0);}
.mbf{transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200496,0.002406,-0.003000,0.249982,0,0);}
.m32{transform:matrix(0.200501,0.002406,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200501,0.002406,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200501,0.002406,-0.003000,0.249982,0,0);}
.mae{transform:matrix(0.201091,0.002413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201091,0.002413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201091,0.002413,-0.003000,0.249982,0,0);}
.mb6{transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201361,0.002416,-0.003000,0.249982,0,0);}
.m3a{transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201665,0.002420,-0.003000,0.249982,0,0);}
.m2d{transform:matrix(0.202275,0.002427,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202275,0.002427,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202275,0.002427,-0.003000,0.249982,0,0);}
.m14{transform:matrix(0.203235,0.002439,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203235,0.002439,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203235,0.002439,-0.003000,0.249982,0,0);}
.m103{transform:matrix(0.203710,0.002445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203710,0.002445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203710,0.002445,-0.003000,0.249982,0,0);}
.m83{transform:matrix(0.203890,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203890,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203890,0.002447,-0.003000,0.249982,0,0);}
.m22{transform:matrix(0.203930,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203930,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203930,0.002447,-0.003000,0.249982,0,0);}
.m28{transform:matrix(0.203955,0.002447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203955,0.002447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203955,0.002447,-0.003000,0.249982,0,0);}
.m6f{transform:matrix(0.204060,0.002449,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204060,0.002449,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204060,0.002449,-0.003000,0.249982,0,0);}
.m49{transform:matrix(0.204165,0.002450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204165,0.002450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204165,0.002450,-0.003000,0.249982,0,0);}
.mec{transform:matrix(0.204410,0.002453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204410,0.002453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204410,0.002453,-0.003000,0.249982,0,0);}
.m38{transform:matrix(0.204720,0.002457,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204720,0.002457,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204720,0.002457,-0.003000,0.249982,0,0);}
.m4f{transform:matrix(0.205250,0.002463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205250,0.002463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205250,0.002463,-0.003000,0.249982,0,0);}
.m72{transform:matrix(0.205495,0.002466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205495,0.002466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205495,0.002466,-0.003000,0.249982,0,0);}
.ma2{transform:matrix(0.205625,0.002468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205625,0.002468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205625,0.002468,-0.003000,0.249982,0,0);}
.m7{transform:matrix(0.206115,0.002473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206115,0.002473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206115,0.002473,-0.003000,0.249982,0,0);}
.ma6{transform:matrix(0.206250,0.002475,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206250,0.002475,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206250,0.002475,-0.003000,0.249982,0,0);}
.ma0{transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);}
.mf4{transform:matrix(0.207405,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207405,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207405,0.002489,-0.003000,0.249982,0,0);}
.m5d{transform:matrix(0.208500,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208500,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208500,0.002502,-0.003000,0.249982,0,0);}
.m3f{transform:matrix(0.208750,0.002505,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208750,0.002505,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208750,0.002505,-0.003000,0.249982,0,0);}
.md1{transform:matrix(0.210000,0.002520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210000,0.002520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210000,0.002520,-0.003000,0.249982,0,0);}
.m105{transform:matrix(0.210075,0.002521,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210075,0.002521,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210075,0.002521,-0.003000,0.249982,0,0);}
.m1a{transform:matrix(0.210455,0.002525,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210455,0.002525,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210455,0.002525,-0.003000,0.249982,0,0);}
.mc4{transform:matrix(0.210500,0.002526,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210500,0.002526,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210500,0.002526,-0.003000,0.249982,0,0);}
.me1{transform:matrix(0.210885,0.002531,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210885,0.002531,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210885,0.002531,-0.003000,0.249982,0,0);}
.m77{transform:matrix(0.211925,0.002543,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211925,0.002543,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211925,0.002543,-0.003000,0.249982,0,0);}
.mcf{transform:matrix(0.212000,0.002544,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212000,0.002544,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212000,0.002544,-0.003000,0.249982,0,0);}
.m75{transform:matrix(0.213125,0.002557,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213125,0.002557,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213125,0.002557,-0.003000,0.249982,0,0);}
.m7c{transform:matrix(0.213340,0.002560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213340,0.002560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213340,0.002560,-0.003000,0.249982,0,0);}
.mbc{transform:matrix(0.213890,0.002567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213890,0.002567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213890,0.002567,-0.003000,0.249982,0,0);}
.ma1{transform:matrix(0.214585,0.002575,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214585,0.002575,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214585,0.002575,-0.003000,0.249982,0,0);}
.m1{transform:matrix(0.214810,0.002578,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214810,0.002578,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214810,0.002578,-0.003000,0.249982,0,0);}
.m6e{transform:matrix(0.214995,0.002580,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214995,0.002580,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214995,0.002580,-0.003000,0.249982,0,0);}
.mc1{transform:matrix(0.215000,0.002580,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215000,0.002580,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215000,0.002580,-0.003000,0.249982,0,0);}
.m6{transform:matrix(0.215010,0.002580,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215010,0.002580,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215010,0.002580,-0.003000,0.249982,0,0);}
.m7b{transform:matrix(0.215634,0.002588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215634,0.002588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215634,0.002588,-0.003000,0.249982,0,0);}
.m96{transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215635,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.215834,0.002590,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215834,0.002590,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215834,0.002590,-0.003000,0.249982,0,0);}
.m44{transform:matrix(0.215999,0.002592,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215999,0.002592,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215999,0.002592,-0.003000,0.249982,0,0);}
.mb1{transform:matrix(0.216669,0.002600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216669,0.002600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216669,0.002600,-0.003000,0.249982,0,0);}
.mc0{transform:matrix(0.216884,0.002603,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216884,0.002603,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216884,0.002603,-0.003000,0.249982,0,0);}
.md8{transform:matrix(0.216974,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216974,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216974,0.002604,-0.003000,0.249982,0,0);}
.m3{transform:matrix(0.217224,0.002607,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217224,0.002607,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217224,0.002607,-0.003000,0.249982,0,0);}
.md2{transform:matrix(0.217774,0.002613,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217774,0.002613,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217774,0.002613,-0.003000,0.249982,0,0);}
.m93{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.218754,0.002625,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218754,0.002625,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218754,0.002625,-0.003000,0.249982,0,0);}
.mdc{transform:matrix(0.219099,0.002629,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219099,0.002629,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219099,0.002629,-0.003000,0.249982,0,0);}
.m27{transform:matrix(0.219159,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219159,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219159,0.002630,-0.003000,0.249982,0,0);}
.m46{transform:matrix(0.219169,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219169,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219169,0.002630,-0.003000,0.249982,0,0);}
.m67{transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219279,0.002631,-0.003000,0.249982,0,0);}
.m9c{transform:matrix(0.219444,0.002633,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219444,0.002633,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219444,0.002633,-0.003000,0.249982,0,0);}
.mb7{transform:matrix(0.219559,0.002635,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219559,0.002635,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219559,0.002635,-0.003000,0.249982,0,0);}
.mff{transform:matrix(0.219784,0.002637,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219784,0.002637,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219784,0.002637,-0.003000,0.249982,0,0);}
.mca{transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219999,0.002640,-0.003000,0.249982,0,0);}
.m50{transform:matrix(0.220004,0.002640,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220004,0.002640,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220004,0.002640,-0.003000,0.249982,0,0);}
.me5{transform:matrix(0.220134,0.002642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220134,0.002642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220134,0.002642,-0.003000,0.249982,0,0);}
.m5{transform:matrix(0.220559,0.002647,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220559,0.002647,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220559,0.002647,-0.003000,0.249982,0,0);}
.m88{transform:matrix(0.220709,0.002649,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220709,0.002649,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220709,0.002649,-0.003000,0.249982,0,0);}
.m85{transform:matrix(0.220834,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220834,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220834,0.002650,-0.003000,0.249982,0,0);}
.m79{transform:matrix(0.221104,0.002653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221104,0.002653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221104,0.002653,-0.003000,0.249982,0,0);}
.mc7{transform:matrix(0.221389,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221389,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221389,0.002657,-0.003000,0.249982,0,0);}
.m26{transform:matrix(0.221684,0.002660,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221684,0.002660,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221684,0.002660,-0.003000,0.249982,0,0);}
.m9d{transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);}
.me3{transform:matrix(0.223714,0.002685,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223714,0.002685,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223714,0.002685,-0.003000,0.249982,0,0);}
.m65{transform:matrix(0.223749,0.002685,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223749,0.002685,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223749,0.002685,-0.003000,0.249982,0,0);}
.mb9{transform:matrix(0.223909,0.002687,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223909,0.002687,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223909,0.002687,-0.003000,0.249982,0,0);}
.mfb{transform:matrix(0.224079,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224079,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224079,0.002689,-0.003000,0.249982,0,0);}
.m1e{transform:matrix(0.224999,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224999,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224999,0.002700,-0.003000,0.249982,0,0);}
.m48{transform:matrix(0.225359,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225359,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225359,0.002704,-0.003000,0.249982,0,0);}
.me2{transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225699,0.002708,-0.003000,0.249982,0,0);}
.mdd{transform:matrix(0.225789,0.002709,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225789,0.002709,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225789,0.002709,-0.003000,0.249982,0,0);}
.m2a{transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);}
.m60{transform:matrix(0.225994,0.002712,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225994,0.002712,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225994,0.002712,-0.003000,0.249982,0,0);}
.m64{transform:matrix(0.226429,0.002717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226429,0.002717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226429,0.002717,-0.003000,0.249982,0,0);}
.m4{transform:matrix(0.226664,0.002720,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226664,0.002720,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226664,0.002720,-0.003000,0.249982,0,0);}
.m71{transform:matrix(0.226674,0.002720,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226674,0.002720,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226674,0.002720,-0.003000,0.249982,0,0);}
.m91{transform:matrix(0.226949,0.002723,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226949,0.002723,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226949,0.002723,-0.003000,0.249982,0,0);}
.m59{transform:matrix(0.227499,0.002730,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227499,0.002730,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227499,0.002730,-0.003000,0.249982,0,0);}
.mf8{transform:matrix(0.227784,0.002733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227784,0.002733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227784,0.002733,-0.003000,0.249982,0,0);}
.m2b{transform:matrix(0.228329,0.002740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228329,0.002740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228329,0.002740,-0.003000,0.249982,0,0);}
.m37{transform:matrix(0.228334,0.002740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228334,0.002740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228334,0.002740,-0.003000,0.249982,0,0);}
.m81{transform:matrix(0.228569,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228569,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228569,0.002743,-0.003000,0.249982,0,0);}
.m19{transform:matrix(0.229378,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229378,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229378,0.002753,-0.003000,0.249982,0,0);}
.m73{transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);}
.m3c{transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229748,0.002757,-0.003000,0.249982,0,0);}
.m4d{transform:matrix(0.229793,0.002758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229793,0.002758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229793,0.002758,-0.003000,0.249982,0,0);}
.maf{transform:matrix(0.229888,0.002759,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229888,0.002759,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229888,0.002759,-0.003000,0.249982,0,0);}
.m92{transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.230618,0.002767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230618,0.002767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230618,0.002767,-0.003000,0.249982,0,0);}
.m58{transform:matrix(0.230628,0.002768,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230628,0.002768,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230628,0.002768,-0.003000,0.249982,0,0);}
.m29{transform:matrix(0.231003,0.002772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231003,0.002772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231003,0.002772,-0.003000,0.249982,0,0);}
.m3e{transform:matrix(0.231253,0.002775,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231253,0.002775,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231253,0.002775,-0.003000,0.249982,0,0);}
.m47{transform:matrix(0.231498,0.002778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231498,0.002778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231498,0.002778,-0.003000,0.249982,0,0);}
.m17{transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231663,0.002780,-0.003000,0.249982,0,0);}
.m20{transform:matrix(0.231673,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231673,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231673,0.002780,-0.003000,0.249982,0,0);}
.mb0{transform:matrix(0.231678,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231678,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231678,0.002780,-0.003000,0.249982,0,0);}
.ma7{transform:matrix(0.231748,0.002781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231748,0.002781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231748,0.002781,-0.003000,0.249982,0,0);}
.mb2{transform:matrix(0.232248,0.002787,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232248,0.002787,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232248,0.002787,-0.003000,0.249982,0,0);}
.mf3{transform:matrix(0.232288,0.002787,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232288,0.002787,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232288,0.002787,-0.003000,0.249982,0,0);}
.m84{transform:matrix(0.232488,0.002790,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232488,0.002790,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232488,0.002790,-0.003000,0.249982,0,0);}
.m41{transform:matrix(0.232498,0.002790,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232498,0.002790,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232498,0.002790,-0.003000,0.249982,0,0);}
.m9{transform:matrix(0.232533,0.002790,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232533,0.002790,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232533,0.002790,-0.003000,0.249982,0,0);}
.ma3{transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);}
.m24{transform:matrix(0.233248,0.002799,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233248,0.002799,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233248,0.002799,-0.003000,0.249982,0,0);}
.m54{transform:matrix(0.233608,0.002803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233608,0.002803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233608,0.002803,-0.003000,0.249982,0,0);}
.mfe{transform:matrix(0.234028,0.002808,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234028,0.002808,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234028,0.002808,-0.003000,0.249982,0,0);}
.m15{transform:matrix(0.234548,0.002815,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234548,0.002815,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234548,0.002815,-0.003000,0.249982,0,0);}
.m10{transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234723,0.002817,-0.003000,0.249982,0,0);}
.m4c{transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);}
.md9{transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235858,0.002830,-0.003000,0.249982,0,0);}
.m16{transform:matrix(0.236253,0.002835,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236253,0.002835,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236253,0.002835,-0.003000,0.249982,0,0);}
.m18{transform:matrix(0.237048,0.002845,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237048,0.002845,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237048,0.002845,-0.003000,0.249982,0,0);}
.m2{transform:matrix(0.237228,0.002847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237228,0.002847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237228,0.002847,-0.003000,0.249982,0,0);}
.m2e{transform:matrix(0.237498,0.002850,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237498,0.002850,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237498,0.002850,-0.003000,0.249982,0,0);}
.m35{transform:matrix(0.237503,0.002850,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237503,0.002850,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237503,0.002850,-0.003000,0.249982,0,0);}
.mda{transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);}
.m12{transform:matrix(0.238333,0.002860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238333,0.002860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238333,0.002860,-0.003000,0.249982,0,0);}
.mf6{transform:matrix(0.238493,0.002862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238493,0.002862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238493,0.002862,-0.003000,0.249982,0,0);}
.m36{transform:matrix(0.238738,0.002865,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238738,0.002865,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238738,0.002865,-0.003000,0.249982,0,0);}
.m2f{transform:matrix(0.239173,0.002870,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239173,0.002870,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239173,0.002870,-0.003000,0.249982,0,0);}
.m31{transform:matrix(0.239998,0.002880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239998,0.002880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239998,0.002880,-0.003000,0.249982,0,0);}
.mea{transform:matrix(0.240078,0.002881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240078,0.002881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240078,0.002881,-0.003000,0.249982,0,0);}
.m7f{transform:matrix(0.240178,0.002882,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240178,0.002882,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240178,0.002882,-0.003000,0.249982,0,0);}
.m8c{transform:matrix(0.240308,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240308,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240308,0.002884,-0.003000,0.249982,0,0);}
.m80{transform:matrix(0.240313,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240313,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240313,0.002884,-0.003000,0.249982,0,0);}
.mc2{transform:matrix(0.240358,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240358,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240358,0.002884,-0.003000,0.249982,0,0);}
.mc8{transform:matrix(0.240833,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240833,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240833,0.002890,-0.003000,0.249982,0,0);}
.m74{transform:matrix(0.241253,0.002895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241253,0.002895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241253,0.002895,-0.003000,0.249982,0,0);}
.m7a{transform:matrix(0.241663,0.002900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241663,0.002900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241663,0.002900,-0.003000,0.249982,0,0);}
.m52{transform:matrix(0.243247,0.002919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243247,0.002919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243247,0.002919,-0.003000,0.249982,0,0);}
.ma4{transform:matrix(0.243332,0.002920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243332,0.002920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243332,0.002920,-0.003000,0.249982,0,0);}
.m1f{transform:matrix(0.243742,0.002925,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243742,0.002925,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243742,0.002925,-0.003000,0.249982,0,0);}
.mc6{transform:matrix(0.243747,0.002925,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243747,0.002925,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243747,0.002925,-0.003000,0.249982,0,0);}
.m69{transform:matrix(0.244167,0.002930,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244167,0.002930,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244167,0.002930,-0.003000,0.249982,0,0);}
.m5a{transform:matrix(0.245002,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245002,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245002,0.002940,-0.003000,0.249982,0,0);}
.mbe{transform:matrix(0.245357,0.002944,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245357,0.002944,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245357,0.002944,-0.003000,0.249982,0,0);}
.mbd{transform:matrix(0.245627,0.002948,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245627,0.002948,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245627,0.002948,-0.003000,0.249982,0,0);}
.m53{transform:matrix(0.246262,0.002955,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246262,0.002955,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246262,0.002955,-0.003000,0.249982,0,0);}
.m57{transform:matrix(0.246667,0.002960,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246667,0.002960,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246667,0.002960,-0.003000,0.249982,0,0);}
.mfc{transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);}
.md{transform:matrix(0.246992,0.002964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246992,0.002964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246992,0.002964,-0.003000,0.249982,0,0);}
.me6{transform:matrix(0.247222,0.002967,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247222,0.002967,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247222,0.002967,-0.003000,0.249982,0,0);}
.ma5{transform:matrix(0.247502,0.002970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247502,0.002970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247502,0.002970,-0.003000,0.249982,0,0);}
.m7e{transform:matrix(0.247512,0.002970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247512,0.002970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247512,0.002970,-0.003000,0.249982,0,0);}
.m82{transform:matrix(0.247812,0.002974,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247812,0.002974,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247812,0.002974,-0.003000,0.249982,0,0);}
.m100{transform:matrix(0.247912,0.002975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247912,0.002975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247912,0.002975,-0.003000,0.249982,0,0);}
.m34{transform:matrix(0.248752,0.002985,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248752,0.002985,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248752,0.002985,-0.003000,0.249982,0,0);}
.mac{transform:matrix(0.248927,0.002987,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248927,0.002987,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248927,0.002987,-0.003000,0.249982,0,0);}
.m76{transform:matrix(0.249162,0.002990,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249162,0.002990,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249162,0.002990,-0.003000,0.249982,0,0);}
.maa{transform:matrix(0.249317,0.002992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249317,0.002992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249317,0.002992,-0.003000,0.249982,0,0);}
.mde{transform:matrix(0.249477,0.002994,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249477,0.002994,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249477,0.002994,-0.003000,0.249982,0,0);}
.mf7{transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);}
.m13{transform:matrix(0.249752,0.002997,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249752,0.002997,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249752,0.002997,-0.003000,0.249982,0,0);}
.m86{transform:matrix(0.250002,0.003000,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250002,0.003000,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250002,0.003000,-0.003000,0.249982,0,0);}
.m89{transform:matrix(0.250422,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250422,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250422,0.003005,-0.003000,0.249982,0,0);}
.meb{transform:matrix(0.250617,0.003007,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250617,0.003007,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250617,0.003007,-0.003000,0.249982,0,0);}
.me7{transform:matrix(0.251102,0.003013,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251102,0.003013,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251102,0.003013,-0.003000,0.249982,0,0);}
.m101{transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);}
.mbb{transform:matrix(0.251242,0.003015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251242,0.003015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251242,0.003015,-0.003000,0.249982,0,0);}
.m5e{transform:matrix(0.251247,0.003015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251247,0.003015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251247,0.003015,-0.003000,0.249982,0,0);}
.m11{transform:matrix(0.251392,0.003017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251392,0.003017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251392,0.003017,-0.003000,0.249982,0,0);}
.mef{transform:matrix(0.251587,0.003019,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251587,0.003019,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251587,0.003019,-0.003000,0.249982,0,0);}
.m5c{transform:matrix(0.252492,0.003030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252492,0.003030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252492,0.003030,-0.003000,0.249982,0,0);}
.m1c{transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252502,0.003030,-0.003000,0.249982,0,0);}
.m8b{transform:matrix(0.252532,0.003030,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252532,0.003030,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252532,0.003030,-0.003000,0.249982,0,0);}
.m8e{transform:matrix(0.252557,0.003031,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252557,0.003031,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252557,0.003031,-0.003000,0.249982,0,0);}
.m98{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254282,0.003051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254282,0.003051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254282,0.003051,-0.003000,0.249982,0,0);}
.mf{transform:matrix(0.254362,0.003052,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254362,0.003052,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254362,0.003052,-0.003000,0.249982,0,0);}
.m21{transform:matrix(0.254377,0.003053,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254377,0.003053,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254377,0.003053,-0.003000,0.249982,0,0);}
.mfd{transform:matrix(0.254762,0.003057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254762,0.003057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254762,0.003057,-0.003000,0.249982,0,0);}
.m8f{transform:matrix(0.254992,0.003060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254992,0.003060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254992,0.003060,-0.003000,0.249982,0,0);}
.m40{transform:matrix(0.255032,0.003060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255032,0.003060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255032,0.003060,-0.003000,0.249982,0,0);}
.m68{transform:matrix(0.256672,0.003080,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256672,0.003080,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256672,0.003080,-0.003000,0.249982,0,0);}
.mcd{transform:matrix(0.256877,0.003083,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256877,0.003083,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256877,0.003083,-0.003000,0.249982,0,0);}
.m9b{transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.257491,0.003090,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257491,0.003090,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257491,0.003090,-0.003000,0.249982,0,0);}
.m78{transform:matrix(0.257501,0.003090,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257501,0.003090,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257501,0.003090,-0.003000,0.249982,0,0);}
.m2c{transform:matrix(0.258056,0.003097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258056,0.003097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258056,0.003097,-0.003000,0.249982,0,0);}
.m43{transform:matrix(0.259166,0.003110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259166,0.003110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259166,0.003110,-0.003000,0.249982,0,0);}
.m66{transform:matrix(0.259991,0.003120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259991,0.003120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259991,0.003120,-0.003000,0.249982,0,0);}
.md3{transform:matrix(0.259996,0.003120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259996,0.003120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259996,0.003120,-0.003000,0.249982,0,0);}
.m51{transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);}
.mce{transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);}
.ma{transform:matrix(0.261106,0.003133,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261106,0.003133,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261106,0.003133,-0.003000,0.249982,0,0);}
.m45{transform:matrix(0.261876,0.003143,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261876,0.003143,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261876,0.003143,-0.003000,0.249982,0,0);}
.m8{transform:matrix(0.266666,0.003200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266666,0.003200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266666,0.003200,-0.003000,0.249982,0,0);}
.m3b{transform:matrix(0.268011,0.003216,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268011,0.003216,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268011,0.003216,-0.003000,0.249982,0,0);}
.m39{transform:matrix(0.268336,0.003220,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268336,0.003220,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268336,0.003220,-0.003000,0.249982,0,0);}
.mf2{transform:matrix(0.270126,0.003242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270126,0.003242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270126,0.003242,-0.003000,0.249982,0,0);}
.mfa{transform:matrix(0.270586,0.003247,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270586,0.003247,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270586,0.003247,-0.003000,0.249982,0,0);}
.md5{transform:matrix(0.271875,0.003263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271875,0.003263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271875,0.003263,-0.003000,0.249982,0,0);}
.m97{transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272840,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.275035,0.003300,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275035,0.003300,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275035,0.003300,-0.003000,0.249982,0,0);}
.m104{transform:matrix(0.276390,0.003317,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276390,0.003317,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276390,0.003317,-0.003000,0.249982,0,0);}
.m102{transform:matrix(0.277075,0.003325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277075,0.003325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277075,0.003325,-0.003000,0.249982,0,0);}
.m106{transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.279995,0.003360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279995,0.003360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279995,0.003360,-0.003000,0.249982,0,0);}
.md7{transform:matrix(0.284265,0.003411,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284265,0.003411,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284265,0.003411,-0.003000,0.249982,0,0);}
.m0{transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300050,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.300928,0.003611,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300928,0.003611,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300928,0.003611,-0.003000,0.249982,0,0);}
.mc5{transform:matrix(0.312498,0.003750,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312498,0.003750,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312498,0.003750,-0.003000,0.249982,0,0);}
.mf1{transform:matrix(0.312517,0.003750,-0.003000,0.249982,0,0);-ms-transform:matrix(0.312517,0.003750,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.312517,0.003750,-0.003000,0.249982,0,0);}
.m5f{transform:matrix(0.319997,0.003840,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319997,0.003840,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319997,0.003840,-0.003000,0.249982,0,0);}
.m99{transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322360,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.368054,0.004417,-0.003000,0.249982,0,0);-ms-transform:matrix(0.368054,0.004417,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.368054,0.004417,-0.003000,0.249982,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;}
.fs0{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs8{font-size:102.007344px;}
.fs9{font-size:108.000000px;}
.fs2{font-size:108.007776px;}
.fs5{font-size:120.000000px;}
.fs3{font-size:120.008640px;}
.fs4{font-size:138.000000px;}
.fs7{font-size:138.009936px;}
.fs1{font-size:180.012960px;}
.y0{bottom:0.000000px;}
.y115{bottom:104.250000px;}
.y114{bottom:252.362736px;}
.y113{bottom:253.223208px;}
.y112{bottom:254.576934px;}
.y111{bottom:255.433788px;}
.y110{bottom:256.413042px;}
.y10f{bottom:257.863932px;}
.y10e{bottom:259.151004px;}
.y10d{bottom:259.907058px;}
.y10c{bottom:261.183330px;}
.y10b{bottom:262.744056px;}
.y10a{bottom:264.150000px;}
.y109{bottom:329.842968px;}
.y108{bottom:329.846832px;}
.y107{bottom:352.396572px;}
.y106{bottom:353.523480px;}
.y105{bottom:354.743970px;}
.y104{bottom:355.096788px;}
.y103{bottom:356.047242px;}
.y102{bottom:358.597968px;}
.y101{bottom:359.431386px;}
.y100{bottom:360.608694px;}
.yff{bottom:361.546584px;}
.yfe{bottom:361.895820px;}
.yfd{bottom:363.172092px;}
.yfc{bottom:363.870564px;}
.yfb{bottom:364.486182px;}
.yfa{bottom:364.650000px;}
.yf9{bottom:430.646886px;}
.yf8{bottom:453.783390px;}
.yf7{bottom:454.903062px;}
.yf6{bottom:455.615880px;}
.yf5{bottom:456.112752px;}
.yf4{bottom:457.070388px;}
.yf3{bottom:458.512296px;}
.yf2{bottom:459.808350px;}
.yf1{bottom:460.204386px;}
.yf0{bottom:462.218694px;}
.yef{bottom:463.511220px;}
.yee{bottom:465.277182px;}
.yed{bottom:465.450000px;}
.yec{bottom:531.450000px;}
.yeb{bottom:554.134572px;}
.yea{bottom:555.329790px;}
.ye9{bottom:556.616898px;}
.ye8{bottom:556.996716px;}
.ye7{bottom:558.222606px;}
.ye6{bottom:560.026332px;}
.ye5{bottom:563.941620px;}
.ye4{bottom:564.627474px;}
.ye3{bottom:565.936182px;}
.ye2{bottom:566.100000px;}
.ye1{bottom:652.480044px;}
.ye0{bottom:653.143980px;}
.ydf{bottom:654.359370px;}
.yde{bottom:655.142724px;}
.ydd{bottom:656.638632px;}
.ydc{bottom:657.819822px;}
.ydb{bottom:658.673694px;}
.yda{bottom:659.628666px;}
.yd9{bottom:659.959584px;}
.yd8{bottom:660.826056px;}
.yd7{bottom:662.582400px;}
.yd6{bottom:664.043808px;}
.yd5{bottom:701.487738px;}
.yd4{bottom:702.732828px;}
.yd3{bottom:703.788318px;}
.yd2{bottom:705.007872px;}
.yd1{bottom:705.359808px;}
.yd0{bottom:706.341462px;}
.ycf{bottom:707.492652px;}
.yce{bottom:709.033578px;}
.ycd{bottom:741.829266px;}
.ycc{bottom:742.593720px;}
.ycb{bottom:744.180546px;}
.yca{bottom:744.500064px;}
.yc9{bottom:745.772754px;}
.yc8{bottom:747.063726px;}
.yc7{bottom:747.771798px;}
.yc6{bottom:748.595952px;}
.yc5{bottom:749.442024px;}
.yc4{bottom:750.736614px;}
.yc3{bottom:751.524468px;}
.yc2{bottom:752.971476px;}
.yc1{bottom:753.439812px;}
.yc0{bottom:786.151800px;}
.ybf{bottom:786.411018px;}
.ybe{bottom:787.260690px;}
.ybd{bottom:787.508790px;}
.ybc{bottom:788.903898px;}
.ybb{bottom:790.103388px;}
.yba{bottom:791.367996px;}
.yb9{bottom:791.945814px;}
.yb8{bottom:793.145322px;}
.yb7{bottom:793.679676px;}
.yb6{bottom:794.994966px;}
.yb5{bottom:795.828438px;}
.yb4{bottom:796.902792px;}
.yb3{bottom:797.993382px;}
.yb2{bottom:831.129606px;}
.yb1{bottom:831.311106px;}
.yb0{bottom:833.300232px;}
.yaf{bottom:833.779986px;}
.yae{bottom:834.105204px;}
.yad{bottom:835.772712px;}
.yac{bottom:836.524866px;}
.yab{bottom:837.469638px;}
.yaa{bottom:838.743228px;}
.ya9{bottom:839.838600px;}
.ya8{bottom:841.360926px;}
.ya7{bottom:842.545416px;}
.ya6{bottom:889.433496px;}
.ya5{bottom:890.740404px;}
.ya4{bottom:891.237240px;}
.ya3{bottom:892.695348px;}
.ya2{bottom:895.042728px;}
.ya1{bottom:895.950000px;}
.ya0{bottom:1027.501500px;}
.y9f{bottom:1066.354500px;}
.y9e{bottom:1068.052500px;}
.y9d{bottom:1068.829500px;}
.y9c{bottom:1069.254000px;}
.y9b{bottom:1070.100000px;}
.y9a{bottom:1111.200000px;}
.y99{bottom:1219.355880px;}
.y98{bottom:1219.942080px;}
.y97{bottom:1220.272980px;}
.y96{bottom:1220.811906px;}
.y95{bottom:1252.624068px;}
.y94{bottom:1254.123558px;}
.y93{bottom:1254.442794px;}
.y92{bottom:1255.722102px;}
.y91{bottom:1256.927310px;}
.y90{bottom:1258.161564px;}
.y8f{bottom:1258.854318px;}
.y8e{bottom:1259.875590px;}
.y8d{bottom:1261.432716px;}
.y8c{bottom:1262.066034px;}
.y8b{bottom:1263.522042px;}
.y8a{bottom:1265.066568px;}
.y89{bottom:1297.733784px;}
.y88{bottom:1298.853474px;}
.y87{bottom:1300.325682px;}
.y86{bottom:1302.829062px;}
.y85{bottom:1303.308498px;}
.y84{bottom:1304.435388px;}
.y83{bottom:1305.464478px;}
.y82{bottom:1306.799304px;}
.y81{bottom:1307.940576px;}
.y80{bottom:1309.470666px;}
.y7f{bottom:1341.556464px;}
.y7e{bottom:1343.645226px;}
.y7d{bottom:1344.840498px;}
.y7c{bottom:1346.793660px;}
.y7b{bottom:1347.945750px;}
.y7a{bottom:1349.538876px;}
.y79{bottom:1350.392430px;}
.y78{bottom:1351.005384px;}
.y77{bottom:1351.690938px;}
.y76{bottom:1352.982210px;}
.y75{bottom:1353.873846px;}
.y74{bottom:1386.902652px;}
.y73{bottom:1387.640388px;}
.y72{bottom:1388.557578px;}
.y71{bottom:1389.500232px;}
.y70{bottom:1390.616922px;}
.y6f{bottom:1391.256876px;}
.y6e{bottom:1392.433248px;}
.y6d{bottom:1392.701466px;}
.y6c{bottom:1394.343810px;}
.y6b{bottom:1395.547500px;}
.y6a{bottom:1396.027872px;}
.y69{bottom:1396.346808px;}
.y68{bottom:1396.968408px;}
.y67{bottom:1397.881944px;}
.y66{bottom:1398.425862px;}
.y65{bottom:1431.190914px;}
.y64{bottom:1431.946968px;}
.y63{bottom:1432.240986px;}
.y62{bottom:1432.894140px;}
.y61{bottom:1434.613866px;}
.y60{bottom:1435.380720px;}
.y5f{bottom:1436.149392px;}
.y5e{bottom:1437.851100px;}
.y5d{bottom:1438.201236px;}
.y5c{bottom:1438.807572px;}
.y5b{bottom:1440.454962px;}
.y5a{bottom:1441.279752px;}
.y59{bottom:1443.129360px;}
.y58{bottom:1476.355848px;}
.y57{bottom:1477.416420px;}
.y56{bottom:1479.031446px;}
.y55{bottom:1479.216846px;}
.y54{bottom:1481.317890px;}
.y53{bottom:1482.428880px;}
.y52{bottom:1483.554252px;}
.y51{bottom:1484.803842px;}
.y50{bottom:1485.147678px;}
.y4f{bottom:1486.730286px;}
.y4e{bottom:1487.830476px;}
.y4d{bottom:1520.094474px;}
.y4c{bottom:1521.337764px;}
.y4b{bottom:1523.107890px;}
.y4a{bottom:1524.620016px;}
.y49{bottom:1526.218524px;}
.y48{bottom:1527.108096px;}
.y47{bottom:1529.204640px;}
.y46{bottom:1530.987366px;}
.y45{bottom:1531.279584px;}
.y44{bottom:1532.233974px;}
.y43{bottom:1563.971136px;}
.y42{bottom:1564.423872px;}
.y41{bottom:1564.723308px;}
.y40{bottom:1566.314634px;}
.y3f{bottom:1567.095906px;}
.y3e{bottom:1568.216178px;}
.y3d{bottom:1569.870804px;}
.y3c{bottom:1570.955112px;}
.y3b{bottom:1571.508912px;}
.y3a{bottom:1572.775620px;}
.y39{bottom:1574.226228px;}
.y38{bottom:1575.346518px;}
.y37{bottom:1576.488636px;}
.y36{bottom:1608.722052px;}
.y35{bottom:1610.322678px;}
.y34{bottom:1610.637096px;}
.y33{bottom:1611.495768px;}
.y32{bottom:1611.810186px;}
.y31{bottom:1612.976076px;}
.y30{bottom:1614.158184px;}
.y2f{bottom:1614.993438px;}
.y2e{bottom:1616.768364px;}
.y2d{bottom:1618.595190px;}
.y2c{bottom:1619.231226px;}
.y2b{bottom:1620.357498px;}
.y2a{bottom:1621.340088px;}
.y29{bottom:1654.560840px;}
.y28{bottom:1655.595594px;}
.y27{bottom:1656.641220px;}
.y26{bottom:1657.219356px;}
.y25{bottom:1658.954082px;}
.y24{bottom:1660.306872px;}
.y23{bottom:1661.425362px;}
.y22{bottom:1662.252834px;}
.y21{bottom:1662.863688px;}
.y20{bottom:1665.002196px;}
.y1f{bottom:1665.444132px;}
.y1e{bottom:1697.651466px;}
.y1d{bottom:1698.865974px;}
.y1c{bottom:1699.416474px;}
.y1b{bottom:1701.212100px;}
.y1a{bottom:1701.997272px;}
.y19{bottom:1703.984334px;}
.y18{bottom:1704.608670px;}
.y17{bottom:1705.747560px;}
.y16{bottom:1707.714804px;}
.y15{bottom:1710.297384px;}
.y14{bottom:1743.469572px;}
.y13{bottom:1745.165262px;}
.y12{bottom:1746.284952px;}
.y11{bottom:1747.033806px;}
.y10{bottom:1748.338878px;}
.yf{bottom:1749.064332px;}
.ye{bottom:1751.123712px;}
.yd{bottom:1751.345148px;}
.yc{bottom:1751.969784px;}
.yb{bottom:1752.281202px;}
.ya{bottom:1753.485474px;}
.y9{bottom:1754.850000px;}
.y8{bottom:1799.295696px;}
.y7{bottom:1799.707860px;}
.y6{bottom:1802.069658px;}
.y5{bottom:1802.741094px;}
.y4{bottom:1803.641166px;}
.y3{bottom:1805.369328px;}
.y2{bottom:1807.650000px;}
.y1{bottom:1982.700000px;}
.h1{height:90.000000px;}
.h7{height:102.000000px;}
.h9{height:102.007344px;}
.ha{height:108.000000px;}
.h3{height:108.007776px;}
.h6{height:120.000000px;}
.h4{height:120.008640px;}
.h5{height:138.000000px;}
.h8{height:138.009936px;}
.h2{height:180.012960px;}
.h0{height:2118.000000px;}
.w0{width:1488.000000px;}
.x0{left:0.000000px;}
.xc9{left:163.500000px;}
.xb8{left:165.450000px;}
.xb0{left:166.800000px;}
.x8d{left:168.015894px;}
.x88{left:170.100000px;}
.x83{left:171.750000px;}
.x81{left:173.041158px;}
.x1e{left:174.315660px;}
.x48{left:175.697802px;}
.x27{left:176.873856px;}
.x9{left:178.650000px;}
.x2{left:179.850000px;}
.xc8{left:204.899142px;}
.xa0{left:209.442126px;}
.x1f{left:213.018930px;}
.x5b{left:222.211272px;}
.xc0{left:229.803000px;}
.x82{left:237.400488px;}
.x85{left:242.998500px;}
.x8a{left:246.006000px;}
.x67{left:251.321244px;}
.x40{left:256.846800px;}
.x28{left:257.881230px;}
.x97{left:261.783762px;}
.x89{left:262.800000px;}
.x49{left:267.505320px;}
.x8e{left:271.224042px;}
.x34{left:273.633444px;}
.x84{left:278.250000px;}
.x41{left:281.448336px;}
.xc1{left:288.009000px;}
.xb1{left:289.510500px;}
.xa{left:292.360500px;}
.xa6{left:298.561290px;}
.x5c{left:300.964650px;}
.x70{left:304.883034px;}
.xb9{left:327.015000px;}
.x51{left:331.263672px;}
.xa1{left:335.151864px;}
.xaa{left:337.424040px;}
.x86{left:342.297000px;}
.xb2{left:346.665000px;}
.x29{left:350.737086px;}
.x5d{left:354.514902px;}
.x68{left:361.427604px;}
.x35{left:367.991088px;}
.x3{left:369.906000px;}
.x5e{left:381.968028px;}
.xb{left:392.716500px;}
.xc2{left:394.365000px;}
.x15{left:396.173778px;}
.x20{left:400.229226px;}
.x71{left:402.239358px;}
.x2a{left:403.240014px;}
.xca{left:410.722500px;}
.xc{left:418.668000px;}
.x69{left:419.932302px;}
.x5f{left:423.374226px;}
.x78{left:426.853680px;}
.x4a{left:428.167338px;}
.x42{left:431.759088px;}
.xba{left:434.725500px;}
.x8b{left:441.621000px;}
.x21{left:453.634086px;}
.xd{left:470.721000px;}
.x6a{left:472.136964px;}
.xa7{left:478.423596px;}
.x79{left:480.255270px;}
.x87{left:482.548500px;}
.xab{left:487.286544px;}
.xe{left:489.174000px;}
.x36{left:490.250286px;}
.x8f{left:499.241964px;}
.xc3{left:501.625500px;}
.xa8{left:508.126650px;}
.x4{left:513.919500px;}
.x72{left:516.100236px;}
.x22{left:526.090590px;}
.x60{left:527.182230px;}
.x4b{left:532.424856px;}
.x52{left:539.779032px;}
.x6b{left:544.891698px;}
.x2b{left:553.850280px;}
.x16{left:562.236084px;}
.xcb{left:580.083000px;}
.x98{left:584.907702px;}
.x5{left:588.925500px;}
.x53{left:590.932122px;}
.x37{left:597.059466px;}
.xc4{left:599.734500px;}
.xbb{left:602.584500px;}
.x73{left:603.858024px;}
.x43{left:608.471376px;}
.x90{left:610.250166px;}
.x7a{left:611.515986px;}
.x54{left:620.485176px;}
.x23{left:624.048774px;}
.x4c{left:626.330874px;}
.xbc{left:635.587500px;}
.x38{left:643.709538px;}
.x6{left:644.878500px;}
.x17{left:658.393764px;}
.xf{left:660.789000px;}
.x61{left:668.794914px;}
.xac{left:670.900656px;}
.xb3{left:672.939000px;}
.x6c{left:680.652630px;}
.x44{left:683.477502px;}
.x99{left:688.117170px;}
.x62{left:691.896522px;}
.x7b{left:697.622130px;}
.x2c{left:700.260564px;}
.x18{left:711.046854px;}
.x8c{left:713.442000px;}
.x4d{left:719.038392px;}
.x10{left:721.243500px;}
.xa2{left:722.632632px;}
.x39{left:735.068682px;}
.x9a{left:737.768886px;}
.x74{left:740.968992px;}
.x24{left:742.407084px;}
.xad{left:743.806908px;}
.x7c{left:755.976720px;}
.x91{left:758.161602px;}
.x55{left:764.044428px;}
.x2d{left:769.114956px;}
.x6d{left:778.910454px;}
.x63{left:793.303008px;}
.xa9{left:804.846636px;}
.xcc{left:808.246500px;}
.x45{left:818.186718px;}
.xb4{left:823.249500px;}
.x56{left:828.850536px;}
.x11{left:829.999500px;}
.xa3{left:834.839298px;}
.x7{left:841.695000px;}
.xae{left:844.614750px;}
.x9b{left:846.528372px;}
.x64{left:848.507778px;}
.x7d{left:860.081400px;}
.xbd{left:863.751000px;}
.x2e{left:866.623812px;}
.x3a{left:874.579416px;}
.x8{left:876.042000px;}
.x19{left:878.760660px;}
.xc5{left:881.746500px;}
.xcd{left:889.851000px;}
.x12{left:892.404000px;}
.x25{left:894.218628px;}
.x92{left:903.371502px;}
.x4e{left:909.700410px;}
.xb5{left:925.407000px;}
.x93{left:931.723182px;}
.xbe{left:943.554000px;}
.x1a{left:945.066786px;}
.x9c{left:949.736340px;}
.x75{left:954.584712px;}
.xb6{left:957.058500px;}
.x7e{left:961.640562px;}
.x2f{left:962.781168px;}
.x3b{left:968.935560px;}
.xaf{left:972.274182px;}
.x94{left:973.577952px;}
.x13{left:985.711500px;}
.x30{left:988.732632px;}
.xc6{left:990.352500px;}
.x65{left:1026.120642px;}
.x3c{left:1034.791668px;}
.x26{left:1036.283100px;}
.x57{left:1038.565896px;}
.x4f{left:1044.410928px;}
.x6e{left:1047.280818px;}
.x31{left:1059.538524px;}
.xb7{left:1064.317500px;}
.x7f{left:1069.499742px;}
.xce{left:1074.066000px;}
.x76{left:1080.144126px;}
.x32{left:1085.489988px;}
.x9d{left:1091.045970px;}
.xc7{left:1092.060000px;}
.x58{left:1093.620486px;}
.x46{left:1094.958186px;}
.x1b{left:1096.577556px;}
.x66{left:1105.178520px;}
.xa4{left:1111.010418px;}
.x59{left:1118.372022px;}
.x14{left:1127.019000px;}
.x50{left:1132.916946px;}
.xbf{left:1137.667500px;}
.x1c{left:1143.077646px;}
.xcf{left:1145.772000px;}
.x95{left:1146.839532px;}
.x96{left:1162.589622px;}
.x9e{left:1164.102294px;}
.x3d{left:1168.902384px;}
.x1{left:1170.450000px;}
.x77{left:1175.701950px;}
.xa5{left:1177.465314px;}
.x5a{left:1182.126630px;}
.x9f{left:1186.453902px;}
.x3e{left:1194.105420px;}
.x47{left:1199.815866px;}
.xd0{left:1214.700000px;}
.x33{left:1217.500290px;}
.x80{left:1222.810494px;}
.x6f{left:1225.344894px;}
.x3f{left:1232.208474px;}
.x1d{left:1245.536826px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs8{font-size:90.673194pt;}
.fs9{font-size:96.000000pt;}
.fs2{font-size:96.006912pt;}
.fs5{font-size:106.666667pt;}
.fs3{font-size:106.674346pt;}
.fs4{font-size:122.666667pt;}
.fs7{font-size:122.675498pt;}
.fs1{font-size:160.011520pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:92.666667pt;}
.y114{bottom:224.322432pt;}
.y113{bottom:225.087296pt;}
.y112{bottom:226.290608pt;}
.y111{bottom:227.052256pt;}
.y110{bottom:227.922704pt;}
.y10f{bottom:229.212384pt;}
.y10e{bottom:230.356448pt;}
.y10d{bottom:231.028496pt;}
.y10c{bottom:232.162960pt;}
.y10b{bottom:233.550272pt;}
.y10a{bottom:234.800000pt;}
.y109{bottom:293.193749pt;}
.y108{bottom:293.197184pt;}
.y107{bottom:313.241397pt;}
.y106{bottom:314.243093pt;}
.y105{bottom:315.327973pt;}
.y104{bottom:315.641589pt;}
.y103{bottom:316.486437pt;}
.y102{bottom:318.753749pt;}
.y101{bottom:319.494565pt;}
.y100{bottom:320.541061pt;}
.yff{bottom:321.374741pt;}
.yfe{bottom:321.685173pt;}
.yfd{bottom:322.819637pt;}
.yfc{bottom:323.440501pt;}
.yfb{bottom:323.987717pt;}
.yfa{bottom:324.133333pt;}
.yf9{bottom:382.797232pt;}
.yf8{bottom:403.363013pt;}
.yf7{bottom:404.358277pt;}
.yf6{bottom:404.991893pt;}
.yf5{bottom:405.433557pt;}
.yf4{bottom:406.284789pt;}
.yf3{bottom:407.566485pt;}
.yf2{bottom:408.718533pt;}
.yf1{bottom:409.070565pt;}
.yf0{bottom:410.861061pt;}
.yef{bottom:412.009973pt;}
.yee{bottom:413.579717pt;}
.yed{bottom:413.733333pt;}
.yec{bottom:472.400000pt;}
.yeb{bottom:492.564064pt;}
.yea{bottom:493.626480pt;}
.ye9{bottom:494.770576pt;}
.ye8{bottom:495.108192pt;}
.ye7{bottom:496.197872pt;}
.ye6{bottom:497.801184pt;}
.ye5{bottom:501.281440pt;}
.ye4{bottom:501.891088pt;}
.ye3{bottom:503.054384pt;}
.ye2{bottom:503.200000pt;}
.ye1{bottom:579.982261pt;}
.ye0{bottom:580.572427pt;}
.ydf{bottom:581.652773pt;}
.yde{bottom:582.349088pt;}
.ydd{bottom:583.678784pt;}
.ydc{bottom:584.728731pt;}
.ydb{bottom:585.487728pt;}
.yda{bottom:586.336592pt;}
.yd9{bottom:586.630741pt;}
.yd8{bottom:587.400939pt;}
.yd7{bottom:588.962133pt;}
.yd6{bottom:590.261163pt;}
.yd5{bottom:623.544656pt;}
.yd4{bottom:624.651403pt;}
.yd3{bottom:625.589616pt;}
.yd2{bottom:626.673664pt;}
.yd1{bottom:626.986496pt;}
.yd0{bottom:627.859077pt;}
.ycf{bottom:628.882357pt;}
.yce{bottom:630.252069pt;}
.ycd{bottom:659.403792pt;}
.ycc{bottom:660.083307pt;}
.ycb{bottom:661.493819pt;}
.yca{bottom:661.777835pt;}
.yc9{bottom:662.909115pt;}
.yc8{bottom:664.056645pt;}
.yc7{bottom:664.686043pt;}
.yc6{bottom:665.418624pt;}
.yc5{bottom:666.170688pt;}
.yc4{bottom:667.321435pt;}
.yc3{bottom:668.021749pt;}
.yc2{bottom:669.307979pt;}
.yc1{bottom:669.724277pt;}
.yc0{bottom:698.801600pt;}
.ybf{bottom:699.032016pt;}
.ybe{bottom:699.787280pt;}
.ybd{bottom:700.007813pt;}
.ybc{bottom:701.247909pt;}
.ybb{bottom:702.314123pt;}
.yba{bottom:703.438219pt;}
.yb9{bottom:703.951835pt;}
.yb8{bottom:705.018064pt;}
.yb7{bottom:705.493045pt;}
.yb6{bottom:706.662192pt;}
.yb5{bottom:707.403056pt;}
.yb4{bottom:708.358037pt;}
.yb3{bottom:709.327451pt;}
.yb2{bottom:738.781872pt;}
.yb1{bottom:738.943205pt;}
.yb0{bottom:740.711317pt;}
.yaf{bottom:741.137765pt;}
.yae{bottom:741.426848pt;}
.yad{bottom:742.909077pt;}
.yac{bottom:743.577659pt;}
.yab{bottom:744.417456pt;}
.yaa{bottom:745.549536pt;}
.ya9{bottom:746.523200pt;}
.ya8{bottom:747.876379pt;}
.ya7{bottom:748.929259pt;}
.ya6{bottom:790.607552pt;}
.ya5{bottom:791.769248pt;}
.ya4{bottom:792.210880pt;}
.ya3{bottom:793.506976pt;}
.ya2{bottom:795.593536pt;}
.ya1{bottom:796.400000pt;}
.ya0{bottom:913.334667pt;}
.y9f{bottom:947.870667pt;}
.y9e{bottom:949.380000pt;}
.y9d{bottom:950.070667pt;}
.y9c{bottom:950.448000pt;}
.y9b{bottom:951.200000pt;}
.y9a{bottom:987.733333pt;}
.y99{bottom:1083.871893pt;}
.y98{bottom:1084.392960pt;}
.y97{bottom:1084.687093pt;}
.y96{bottom:1085.166139pt;}
.y95{bottom:1113.443616pt;}
.y94{bottom:1114.776496pt;}
.y93{bottom:1115.060261pt;}
.y92{bottom:1116.197424pt;}
.y91{bottom:1117.268720pt;}
.y90{bottom:1118.365835pt;}
.y8f{bottom:1118.981616pt;}
.y8e{bottom:1119.889413pt;}
.y8d{bottom:1121.273525pt;}
.y8c{bottom:1121.836475pt;}
.y8b{bottom:1123.130704pt;}
.y8a{bottom:1124.503616pt;}
.y89{bottom:1153.541141pt;}
.y88{bottom:1154.536421pt;}
.y87{bottom:1155.845051pt;}
.y86{bottom:1158.070277pt;}
.y85{bottom:1158.496443pt;}
.y84{bottom:1159.498123pt;}
.y83{bottom:1160.412869pt;}
.y82{bottom:1161.599381pt;}
.y81{bottom:1162.613845pt;}
.y80{bottom:1163.973925pt;}
.y7f{bottom:1192.494635pt;}
.y7e{bottom:1194.351312pt;}
.y7d{bottom:1195.413776pt;}
.y7c{bottom:1197.149920pt;}
.y7b{bottom:1198.174000pt;}
.y7a{bottom:1199.590112pt;}
.y79{bottom:1200.348827pt;}
.y78{bottom:1200.893675pt;}
.y77{bottom:1201.503056pt;}
.y76{bottom:1202.650853pt;}
.y75{bottom:1203.443419pt;}
.y74{bottom:1232.802357pt;}
.y73{bottom:1233.458123pt;}
.y72{bottom:1234.273403pt;}
.y71{bottom:1235.111317pt;}
.y70{bottom:1236.103931pt;}
.y6f{bottom:1236.672779pt;}
.y6e{bottom:1237.718443pt;}
.y6d{bottom:1237.956859pt;}
.y6c{bottom:1239.416720pt;}
.y6b{bottom:1240.486667pt;}
.y6a{bottom:1240.913664pt;}
.y69{bottom:1241.197163pt;}
.y68{bottom:1241.749696pt;}
.y67{bottom:1242.561728pt;}
.y66{bottom:1243.045211pt;}
.y65{bottom:1272.169701pt;}
.y64{bottom:1272.841749pt;}
.y63{bottom:1273.103099pt;}
.y62{bottom:1273.683680pt;}
.y61{bottom:1275.212325pt;}
.y60{bottom:1275.893973pt;}
.y5f{bottom:1276.577237pt;}
.y5e{bottom:1278.089867pt;}
.y5d{bottom:1278.401099pt;}
.y5c{bottom:1278.940064pt;}
.y5b{bottom:1280.404411pt;}
.y5a{bottom:1281.137557pt;}
.y59{bottom:1282.781653pt;}
.y58{bottom:1312.316309pt;}
.y57{bottom:1313.259040pt;}
.y56{bottom:1314.694619pt;}
.y55{bottom:1314.859419pt;}
.y54{bottom:1316.727013pt;}
.y53{bottom:1317.714560pt;}
.y52{bottom:1318.714891pt;}
.y51{bottom:1319.825637pt;}
.y50{bottom:1320.131269pt;}
.y4f{bottom:1321.538032pt;}
.y4e{bottom:1322.515979pt;}
.y4d{bottom:1351.195088pt;}
.y4c{bottom:1352.300235pt;}
.y4b{bottom:1353.873680pt;}
.y4a{bottom:1355.217792pt;}
.y49{bottom:1356.638688pt;}
.y48{bottom:1357.429419pt;}
.y47{bottom:1359.293013pt;}
.y46{bottom:1360.877659pt;}
.y45{bottom:1361.137408pt;}
.y44{bottom:1361.985755pt;}
.y43{bottom:1390.196565pt;}
.y42{bottom:1390.598997pt;}
.y41{bottom:1390.865163pt;}
.y40{bottom:1392.279675pt;}
.y3f{bottom:1392.974139pt;}
.y3e{bottom:1393.969936pt;}
.y3d{bottom:1395.440715pt;}
.y3c{bottom:1396.404544pt;}
.y3b{bottom:1396.896811pt;}
.y3a{bottom:1398.022773pt;}
.y39{bottom:1399.312203pt;}
.y38{bottom:1400.308016pt;}
.y37{bottom:1401.323232pt;}
.y36{bottom:1429.975157pt;}
.y35{bottom:1431.397936pt;}
.y34{bottom:1431.677419pt;}
.y33{bottom:1432.440683pt;}
.y32{bottom:1432.720165pt;}
.y31{bottom:1433.756512pt;}
.y30{bottom:1434.807275pt;}
.y2f{bottom:1435.549723pt;}
.y2e{bottom:1437.127435pt;}
.y2d{bottom:1438.751280pt;}
.y2c{bottom:1439.316645pt;}
.y2b{bottom:1440.317776pt;}
.y2a{bottom:1441.191189pt;}
.y29{bottom:1470.720747pt;}
.y28{bottom:1471.640528pt;}
.y27{bottom:1472.569973pt;}
.y26{bottom:1473.083872pt;}
.y25{bottom:1474.625851pt;}
.y24{bottom:1475.828331pt;}
.y23{bottom:1476.822544pt;}
.y22{bottom:1477.558075pt;}
.y21{bottom:1478.101056pt;}
.y20{bottom:1480.001952pt;}
.y1f{bottom:1480.394784pt;}
.y1e{bottom:1509.023525pt;}
.y1d{bottom:1510.103088pt;}
.y1c{bottom:1510.592421pt;}
.y1b{bottom:1512.188533pt;}
.y1a{bottom:1512.886464pt;}
.y19{bottom:1514.652741pt;}
.y18{bottom:1515.207707pt;}
.y17{bottom:1516.220053pt;}
.y16{bottom:1517.968715pt;}
.y15{bottom:1520.264341pt;}
.y14{bottom:1549.750731pt;}
.y13{bottom:1551.258011pt;}
.y12{bottom:1552.253291pt;}
.y11{bottom:1552.918939pt;}
.y10{bottom:1554.079003pt;}
.yf{bottom:1554.723851pt;}
.ye{bottom:1556.554411pt;}
.yd{bottom:1556.751243pt;}
.yc{bottom:1557.306475pt;}
.yb{bottom:1557.583291pt;}
.ya{bottom:1558.653755pt;}
.y9{bottom:1559.866667pt;}
.y8{bottom:1599.373952pt;}
.y7{bottom:1599.740320pt;}
.y6{bottom:1601.839696pt;}
.y5{bottom:1602.436528pt;}
.y4{bottom:1603.236592pt;}
.y3{bottom:1604.772736pt;}
.y2{bottom:1606.800000pt;}
.y1{bottom:1762.400000pt;}
.h1{height:80.000000pt;}
.h7{height:90.666667pt;}
.h9{height:90.673194pt;}
.ha{height:96.000000pt;}
.h3{height:96.006912pt;}
.h6{height:106.666667pt;}
.h4{height:106.674346pt;}
.h5{height:122.666667pt;}
.h8{height:122.675498pt;}
.h2{height:160.011520pt;}
.h0{height:1882.666667pt;}
.w0{width:1322.666667pt;}
.x0{left:0.000000pt;}
.xc9{left:145.333333pt;}
.xb8{left:147.066667pt;}
.xb0{left:148.266667pt;}
.x8d{left:149.347461pt;}
.x88{left:151.200000pt;}
.x83{left:152.666667pt;}
.x81{left:153.814363pt;}
.x1e{left:154.947253pt;}
.x48{left:156.175824pt;}
.x27{left:157.221205pt;}
.x9{left:158.800000pt;}
.x2{left:159.866667pt;}
.xc8{left:182.132571pt;}
.xa0{left:186.170779pt;}
.x1f{left:189.350160pt;}
.x5b{left:197.521131pt;}
.xc0{left:204.269333pt;}
.x82{left:211.022656pt;}
.x85{left:215.998667pt;}
.x8a{left:218.672000pt;}
.x67{left:223.396661pt;}
.x40{left:228.308267pt;}
.x28{left:229.227760pt;}
.x97{left:232.696677pt;}
.x89{left:233.600000pt;}
.x49{left:237.782507pt;}
.x8e{left:241.088037pt;}
.x34{left:243.229728pt;}
.x84{left:247.333333pt;}
.x41{left:250.176299pt;}
.xc1{left:256.008000pt;}
.xb1{left:257.342667pt;}
.xa{left:259.876000pt;}
.xa6{left:265.387813pt;}
.x5c{left:267.524133pt;}
.x70{left:271.007141pt;}
.xb9{left:290.680000pt;}
.x51{left:294.456597pt;}
.xa1{left:297.912768pt;}
.xaa{left:299.932480pt;}
.x86{left:304.264000pt;}
.xb2{left:308.146667pt;}
.x29{left:311.766299pt;}
.x5d{left:315.124357pt;}
.x68{left:321.268981pt;}
.x35{left:327.103189pt;}
.x3{left:328.805333pt;}
.x5e{left:339.527136pt;}
.xb{left:349.081333pt;}
.xc2{left:350.546667pt;}
.x15{left:352.154469pt;}
.x20{left:355.759312pt;}
.x71{left:357.546096pt;}
.x2a{left:358.435568pt;}
.xca{left:365.086667pt;}
.xc{left:372.149333pt;}
.x69{left:373.273157pt;}
.x5f{left:376.332645pt;}
.x78{left:379.425493pt;}
.x4a{left:380.593189pt;}
.x42{left:383.785856pt;}
.xba{left:386.422667pt;}
.x8b{left:392.552000pt;}
.x21{left:403.230299pt;}
.xd{left:418.418667pt;}
.x6a{left:419.677301pt;}
.xa7{left:425.265419pt;}
.x79{left:426.893573pt;}
.x87{left:428.932000pt;}
.xab{left:433.143595pt;}
.xe{left:434.821333pt;}
.x36{left:435.778032pt;}
.x8f{left:443.770635pt;}
.xc3{left:445.889333pt;}
.xa8{left:451.668133pt;}
.x4{left:456.817333pt;}
.x72{left:458.755765pt;}
.x22{left:467.636080pt;}
.x60{left:468.606427pt;}
.x4b{left:473.266539pt;}
.x52{left:479.803584pt;}
.x6b{left:484.348176pt;}
.x2b{left:492.311360pt;}
.x16{left:499.765408pt;}
.xcb{left:515.629333pt;}
.x98{left:519.917957pt;}
.x5{left:523.489333pt;}
.x53{left:525.272997pt;}
.x37{left:530.719525pt;}
.xc4{left:533.097333pt;}
.xbb{left:535.630667pt;}
.x73{left:536.762688pt;}
.x43{left:540.863445pt;}
.x90{left:542.444592pt;}
.x7a{left:543.569765pt;}
.x54{left:551.542379pt;}
.x23{left:554.710021pt;}
.x4c{left:556.738555pt;}
.xbc{left:564.966667pt;}
.x38{left:572.186256pt;}
.x6{left:573.225333pt;}
.x17{left:585.238901pt;}
.xf{left:587.368000pt;}
.x61{left:594.484368pt;}
.xac{left:596.356139pt;}
.xb3{left:598.168000pt;}
.x6c{left:605.024560pt;}
.x44{left:607.535557pt;}
.x99{left:611.659707pt;}
.x62{left:615.019131pt;}
.x7b{left:620.108560pt;}
.x2c{left:622.453835pt;}
.x18{left:632.041648pt;}
.x8c{left:634.170667pt;}
.x4d{left:639.145237pt;}
.x10{left:641.105333pt;}
.xa2{left:642.340117pt;}
.x39{left:653.394384pt;}
.x9a{left:655.794565pt;}
.x74{left:658.639104pt;}
.x24{left:659.917408pt;}
.xad{left:661.161696pt;}
.x7c{left:671.979307pt;}
.x91{left:673.921424pt;}
.x55{left:679.150603pt;}
.x2d{left:683.657739pt;}
.x6d{left:692.364848pt;}
.x63{left:705.158229pt;}
.xa9{left:715.419232pt;}
.xcc{left:718.441333pt;}
.x45{left:727.277083pt;}
.xb4{left:731.777333pt;}
.x56{left:736.756032pt;}
.x11{left:737.777333pt;}
.xa3{left:742.079376pt;}
.x7{left:748.173333pt;}
.xae{left:750.768667pt;}
.x9b{left:752.469664pt;}
.x64{left:754.229136pt;}
.x7d{left:764.516800pt;}
.xbd{left:767.778667pt;}
.x2e{left:770.332277pt;}
.x3a{left:777.403925pt;}
.x8{left:778.704000pt;}
.x19{left:781.120587pt;}
.xc5{left:783.774667pt;}
.xcd{left:790.978667pt;}
.x12{left:793.248000pt;}
.x25{left:794.861003pt;}
.x92{left:802.996891pt;}
.x4e{left:808.622587pt;}
.xb5{left:822.584000pt;}
.x93{left:828.198384pt;}
.xbe{left:838.714667pt;}
.x1a{left:840.059365pt;}
.x9c{left:844.210080pt;}
.x75{left:848.519744pt;}
.xb6{left:850.718667pt;}
.x7e{left:854.791611pt;}
.x2f{left:855.805483pt;}
.x3b{left:861.276053pt;}
.xaf{left:864.243717pt;}
.x94{left:865.402624pt;}
.x13{left:876.188000pt;}
.x30{left:878.873451pt;}
.xc6{left:880.313333pt;}
.x65{left:912.107237pt;}
.x3c{left:919.814816pt;}
.x26{left:921.140533pt;}
.x57{left:923.169685pt;}
.x4f{left:928.365269pt;}
.x6e{left:930.916283pt;}
.x31{left:941.812021pt;}
.xb7{left:946.060000pt;}
.x7f{left:950.666437pt;}
.xce{left:954.725333pt;}
.x76{left:960.128112pt;}
.x32{left:964.879989pt;}
.x9d{left:969.818640pt;}
.xc7{left:970.720000pt;}
.x58{left:972.107099pt;}
.x46{left:973.296165pt;}
.x1b{left:974.735605pt;}
.x66{left:982.380907pt;}
.xa4{left:987.564816pt;}
.x59{left:994.108464pt;}
.x14{left:1001.794667pt;}
.x50{left:1007.037285pt;}
.xbf{left:1011.260000pt;}
.x1c{left:1016.069019pt;}
.xcf{left:1018.464000pt;}
.x95{left:1019.412917pt;}
.x96{left:1033.412997pt;}
.x9e{left:1034.757595pt;}
.x3d{left:1039.024341pt;}
.x1{left:1040.400000pt;}
.x77{left:1045.068400pt;}
.xa5{left:1046.635835pt;}
.x5a{left:1050.779227pt;}
.x9f{left:1054.625691pt;}
.x3e{left:1061.427040pt;}
.x47{left:1066.502992pt;}
.xd0{left:1079.733333pt;}
.x33{left:1082.222480pt;}
.x80{left:1086.942661pt;}
.x6f{left:1089.195461pt;}
.x3f{left:1095.296421pt;}
.x1d{left:1107.143845pt;}
}

