
    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_917fe07c5839225f993fa362.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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;}
.m28{transform:matrix(0.133312,-0.000933,0.001750,0.249994,0,0);-ms-transform:matrix(0.133312,-0.000933,0.001750,0.249994,0,0);-webkit-transform:matrix(0.133312,-0.000933,0.001750,0.249994,0,0);}
.m9c{transform:matrix(0.145438,-0.000727,0.001250,0.249997,0,0);-ms-transform:matrix(0.145438,-0.000727,0.001250,0.249997,0,0);-webkit-transform:matrix(0.145438,-0.000727,0.001250,0.249997,0,0);}
.m24{transform:matrix(0.201029,-0.001608,0.002000,0.249992,0,0);-ms-transform:matrix(0.201029,-0.001608,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201029,-0.001608,0.002000,0.249992,0,0);}
.m20{transform:matrix(0.203954,-0.001632,0.002000,0.249992,0,0);-ms-transform:matrix(0.203954,-0.001632,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203954,-0.001632,0.002000,0.249992,0,0);}
.m5{transform:matrix(0.204379,-0.001635,0.002000,0.249992,0,0);-ms-transform:matrix(0.204379,-0.001635,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204379,-0.001635,0.002000,0.249992,0,0);}
.mb{transform:matrix(0.205729,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205729,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205729,-0.001646,0.002000,0.249992,0,0);}
.m4{transform:matrix(0.207754,-0.001662,0.002000,0.249992,0,0);-ms-transform:matrix(0.207754,-0.001662,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207754,-0.001662,0.002000,0.249992,0,0);}
.m21{transform:matrix(0.207804,-0.001663,0.002000,0.249992,0,0);-ms-transform:matrix(0.207804,-0.001663,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207804,-0.001663,0.002000,0.249992,0,0);}
.md{transform:matrix(0.213053,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213053,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213053,-0.001705,0.002000,0.249992,0,0);}
.m10{transform:matrix(0.216903,-0.001735,0.002000,0.249992,0,0);-ms-transform:matrix(0.216903,-0.001735,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216903,-0.001735,0.002000,0.249992,0,0);}
.m7{transform:matrix(0.217003,-0.001736,0.002000,0.249992,0,0);-ms-transform:matrix(0.217003,-0.001736,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217003,-0.001736,0.002000,0.249992,0,0);}
.m3e{transform:matrix(0.218504,-0.001530,0.001750,0.249994,0,0);-ms-transform:matrix(0.218504,-0.001530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218504,-0.001530,0.001750,0.249994,0,0);}
.m41{transform:matrix(0.218804,-0.001532,0.001750,0.249994,0,0);-ms-transform:matrix(0.218804,-0.001532,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218804,-0.001532,0.001750,0.249994,0,0);}
.ma{transform:matrix(0.219303,-0.001755,0.002000,0.249992,0,0);-ms-transform:matrix(0.219303,-0.001755,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219303,-0.001755,0.002000,0.249992,0,0);}
.m1e{transform:matrix(0.219378,-0.001755,0.002000,0.249992,0,0);-ms-transform:matrix(0.219378,-0.001755,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219378,-0.001755,0.002000,0.249992,0,0);}
.m42{transform:matrix(0.219479,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219479,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219479,-0.001536,0.001750,0.249994,0,0);}
.m9{transform:matrix(0.220203,-0.001762,0.002000,0.249992,0,0);-ms-transform:matrix(0.220203,-0.001762,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220203,-0.001762,0.002000,0.249992,0,0);}
.mf{transform:matrix(0.221402,-0.001771,0.002000,0.249992,0,0);-ms-transform:matrix(0.221402,-0.001771,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221402,-0.001771,0.002000,0.249992,0,0);}
.m16{transform:matrix(0.222152,-0.001777,0.002000,0.249992,0,0);-ms-transform:matrix(0.222152,-0.001777,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222152,-0.001777,0.002000,0.249992,0,0);}
.m40{transform:matrix(0.222204,-0.001556,0.001750,0.249994,0,0);-ms-transform:matrix(0.222204,-0.001556,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222204,-0.001556,0.001750,0.249994,0,0);}
.m46{transform:matrix(0.222454,-0.001557,0.001750,0.249994,0,0);-ms-transform:matrix(0.222454,-0.001557,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222454,-0.001557,0.001750,0.249994,0,0);}
.m22{transform:matrix(0.223127,-0.001785,0.002000,0.249992,0,0);-ms-transform:matrix(0.223127,-0.001785,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223127,-0.001785,0.002000,0.249992,0,0);}
.m19{transform:matrix(0.223627,-0.001789,0.002000,0.249992,0,0);-ms-transform:matrix(0.223627,-0.001789,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223627,-0.001789,0.002000,0.249992,0,0);}
.m9e{transform:matrix(0.223732,-0.001119,0.001250,0.249997,0,0);-ms-transform:matrix(0.223732,-0.001119,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223732,-0.001119,0.001250,0.249997,0,0);}
.m26{transform:matrix(0.223877,-0.001791,0.002000,0.249992,0,0);-ms-transform:matrix(0.223877,-0.001791,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223877,-0.001791,0.002000,0.249992,0,0);}
.m35{transform:matrix(0.224079,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224079,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224079,-0.001569,0.001750,0.249994,0,0);}
.m1a{transform:matrix(0.224627,-0.001797,0.002000,0.249992,0,0);-ms-transform:matrix(0.224627,-0.001797,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224627,-0.001797,0.002000,0.249992,0,0);}
.me{transform:matrix(0.225277,-0.001802,0.002000,0.249992,0,0);-ms-transform:matrix(0.225277,-0.001802,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225277,-0.001802,0.002000,0.249992,0,0);}
.m31{transform:matrix(0.225404,-0.001578,0.001750,0.249994,0,0);-ms-transform:matrix(0.225404,-0.001578,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225404,-0.001578,0.001750,0.249994,0,0);}
.m3f{transform:matrix(0.225454,-0.001578,0.001750,0.249994,0,0);-ms-transform:matrix(0.225454,-0.001578,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225454,-0.001578,0.001750,0.249994,0,0);}
.m1b{transform:matrix(0.225677,-0.001806,0.002000,0.249992,0,0);-ms-transform:matrix(0.225677,-0.001806,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225677,-0.001806,0.002000,0.249992,0,0);}
.m11{transform:matrix(0.226477,-0.001812,0.002000,0.249992,0,0);-ms-transform:matrix(0.226477,-0.001812,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226477,-0.001812,0.002000,0.249992,0,0);}
.m13{transform:matrix(0.227452,-0.001820,0.002000,0.249992,0,0);-ms-transform:matrix(0.227452,-0.001820,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227452,-0.001820,0.002000,0.249992,0,0);}
.m5b{transform:matrix(0.227555,-0.001365,0.001500,0.249996,0,0);-ms-transform:matrix(0.227555,-0.001365,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227555,-0.001365,0.001500,0.249996,0,0);}
.m49{transform:matrix(0.227678,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227678,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227678,-0.001594,0.001750,0.249994,0,0);}
.m8e{transform:matrix(0.228305,-0.001370,0.001500,0.249996,0,0);-ms-transform:matrix(0.228305,-0.001370,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228305,-0.001370,0.001500,0.249996,0,0);}
.m15{transform:matrix(0.228877,-0.001831,0.002000,0.249992,0,0);-ms-transform:matrix(0.228877,-0.001831,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228877,-0.001831,0.002000,0.249992,0,0);}
.m33{transform:matrix(0.229703,-0.001608,0.001750,0.249994,0,0);-ms-transform:matrix(0.229703,-0.001608,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229703,-0.001608,0.001750,0.249994,0,0);}
.m1f{transform:matrix(0.229727,-0.001838,0.002000,0.249992,0,0);-ms-transform:matrix(0.229727,-0.001838,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229727,-0.001838,0.002000,0.249992,0,0);}
.m2c{transform:matrix(0.229728,-0.001608,0.001750,0.249994,0,0);-ms-transform:matrix(0.229728,-0.001608,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229728,-0.001608,0.001750,0.249994,0,0);}
.m14{transform:matrix(0.229827,-0.001839,0.002000,0.249992,0,0);-ms-transform:matrix(0.229827,-0.001839,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229827,-0.001839,0.002000,0.249992,0,0);}
.m91{transform:matrix(0.229855,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229855,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229855,-0.001379,0.001500,0.249996,0,0);}
.m27{transform:matrix(0.229978,-0.001610,0.001750,0.249994,0,0);-ms-transform:matrix(0.229978,-0.001610,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229978,-0.001610,0.001750,0.249994,0,0);}
.m96{transform:matrix(0.230431,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230431,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230431,-0.001152,0.001250,0.249997,0,0);}
.m30{transform:matrix(0.230903,-0.001616,0.001750,0.249994,0,0);-ms-transform:matrix(0.230903,-0.001616,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230903,-0.001616,0.001750,0.249994,0,0);}
.m6{transform:matrix(0.231026,-0.001848,0.002000,0.249992,0,0);-ms-transform:matrix(0.231026,-0.001848,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231026,-0.001848,0.002000,0.249992,0,0);}
.m5f{transform:matrix(0.231155,-0.001387,0.001500,0.249996,0,0);-ms-transform:matrix(0.231155,-0.001387,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231155,-0.001387,0.001500,0.249996,0,0);}
.m81{transform:matrix(0.231680,-0.001390,0.001500,0.249996,0,0);-ms-transform:matrix(0.231680,-0.001390,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231680,-0.001390,0.001500,0.249996,0,0);}
.m29{transform:matrix(0.231978,-0.001624,0.001750,0.249994,0,0);-ms-transform:matrix(0.231978,-0.001624,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231978,-0.001624,0.001750,0.249994,0,0);}
.m2e{transform:matrix(0.232128,-0.001625,0.001750,0.249994,0,0);-ms-transform:matrix(0.232128,-0.001625,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232128,-0.001625,0.001750,0.249994,0,0);}
.ma7{transform:matrix(0.232206,-0.001161,0.001250,0.249997,0,0);-ms-transform:matrix(0.232206,-0.001161,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232206,-0.001161,0.001250,0.249997,0,0);}
.m25{transform:matrix(0.232351,-0.001859,0.002000,0.249992,0,0);-ms-transform:matrix(0.232351,-0.001859,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232351,-0.001859,0.002000,0.249992,0,0);}
.m2d{transform:matrix(0.232753,-0.001629,0.001750,0.249994,0,0);-ms-transform:matrix(0.232753,-0.001629,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232753,-0.001629,0.001750,0.249994,0,0);}
.m12{transform:matrix(0.233276,-0.001866,0.002000,0.249992,0,0);-ms-transform:matrix(0.233276,-0.001866,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233276,-0.001866,0.002000,0.249992,0,0);}
.m97{transform:matrix(0.233331,-0.001167,0.001250,0.249997,0,0);-ms-transform:matrix(0.233331,-0.001167,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233331,-0.001167,0.001250,0.249997,0,0);}
.m2f{transform:matrix(0.233453,-0.001634,0.001750,0.249994,0,0);-ms-transform:matrix(0.233453,-0.001634,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233453,-0.001634,0.001750,0.249994,0,0);}
.m94{transform:matrix(0.233481,-0.001167,0.001250,0.249997,0,0);-ms-transform:matrix(0.233481,-0.001167,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233481,-0.001167,0.001250,0.249997,0,0);}
.m66{transform:matrix(0.233679,-0.001402,0.001500,0.249996,0,0);-ms-transform:matrix(0.233679,-0.001402,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233679,-0.001402,0.001500,0.249996,0,0);}
.mc{transform:matrix(0.233776,-0.001870,0.002000,0.249992,0,0);-ms-transform:matrix(0.233776,-0.001870,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233776,-0.001870,0.002000,0.249992,0,0);}
.m62{transform:matrix(0.234004,-0.001404,0.001500,0.249996,0,0);-ms-transform:matrix(0.234004,-0.001404,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234004,-0.001404,0.001500,0.249996,0,0);}
.m6a{transform:matrix(0.234106,-0.001171,0.001250,0.249997,0,0);-ms-transform:matrix(0.234106,-0.001171,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234106,-0.001171,0.001250,0.249997,0,0);}
.m5c{transform:matrix(0.234254,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234254,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234254,-0.001406,0.001500,0.249996,0,0);}
.m5e{transform:matrix(0.234454,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234454,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234454,-0.001407,0.001500,0.249996,0,0);}
.m61{transform:matrix(0.235179,-0.001411,0.001500,0.249996,0,0);-ms-transform:matrix(0.235179,-0.001411,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235179,-0.001411,0.001500,0.249996,0,0);}
.m8{transform:matrix(0.235326,-0.001883,0.002000,0.249992,0,0);-ms-transform:matrix(0.235326,-0.001883,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235326,-0.001883,0.002000,0.249992,0,0);}
.m56{transform:matrix(0.235579,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235579,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235579,-0.001414,0.001500,0.249996,0,0);}
.m3c{transform:matrix(0.235603,-0.001649,0.001750,0.249994,0,0);-ms-transform:matrix(0.235603,-0.001649,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235603,-0.001649,0.001750,0.249994,0,0);}
.ma6{transform:matrix(0.235681,-0.001178,0.001250,0.249997,0,0);-ms-transform:matrix(0.235681,-0.001178,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235681,-0.001178,0.001250,0.249997,0,0);}
.m48{transform:matrix(0.235853,-0.001651,0.001750,0.249994,0,0);-ms-transform:matrix(0.235853,-0.001651,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235853,-0.001651,0.001750,0.249994,0,0);}
.m34{transform:matrix(0.235928,-0.001652,0.001750,0.249994,0,0);-ms-transform:matrix(0.235928,-0.001652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235928,-0.001652,0.001750,0.249994,0,0);}
.m3b{transform:matrix(0.235953,-0.001652,0.001750,0.249994,0,0);-ms-transform:matrix(0.235953,-0.001652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235953,-0.001652,0.001750,0.249994,0,0);}
.m17{transform:matrix(0.236051,-0.001889,0.002000,0.249992,0,0);-ms-transform:matrix(0.236051,-0.001889,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236051,-0.001889,0.002000,0.249992,0,0);}
.m75{transform:matrix(0.236304,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236304,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236304,-0.001418,0.001500,0.249996,0,0);}
.m38{transform:matrix(0.236778,-0.001658,0.001750,0.249994,0,0);-ms-transform:matrix(0.236778,-0.001658,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236778,-0.001658,0.001750,0.249994,0,0);}
.m82{transform:matrix(0.236829,-0.001421,0.001500,0.249996,0,0);-ms-transform:matrix(0.236829,-0.001421,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236829,-0.001421,0.001500,0.249996,0,0);}
.m72{transform:matrix(0.236930,-0.001185,0.001250,0.249997,0,0);-ms-transform:matrix(0.236930,-0.001185,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236930,-0.001185,0.001250,0.249997,0,0);}
.m8b{transform:matrix(0.237104,-0.001423,0.001500,0.249996,0,0);-ms-transform:matrix(0.237104,-0.001423,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237104,-0.001423,0.001500,0.249996,0,0);}
.m5a{transform:matrix(0.237729,-0.001427,0.001500,0.249996,0,0);-ms-transform:matrix(0.237729,-0.001427,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237729,-0.001427,0.001500,0.249996,0,0);}
.m71{transform:matrix(0.237755,-0.001189,0.001250,0.249997,0,0);-ms-transform:matrix(0.237755,-0.001189,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237755,-0.001189,0.001250,0.249997,0,0);}
.m9d{transform:matrix(0.238380,-0.001192,0.001250,0.249997,0,0);-ms-transform:matrix(0.238380,-0.001192,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238380,-0.001192,0.001250,0.249997,0,0);}
.m2b{transform:matrix(0.238452,-0.001669,0.001750,0.249994,0,0);-ms-transform:matrix(0.238452,-0.001669,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238452,-0.001669,0.001750,0.249994,0,0);}
.m65{transform:matrix(0.238454,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238454,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238454,-0.001431,0.001500,0.249996,0,0);}
.m8a{transform:matrix(0.238629,-0.001432,0.001500,0.249996,0,0);-ms-transform:matrix(0.238629,-0.001432,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238629,-0.001432,0.001500,0.249996,0,0);}
.m43{transform:matrix(0.239177,-0.001674,0.001750,0.249994,0,0);-ms-transform:matrix(0.239177,-0.001674,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239177,-0.001674,0.001750,0.249994,0,0);}
.m4c{transform:matrix(0.239352,-0.001676,0.001750,0.249994,0,0);-ms-transform:matrix(0.239352,-0.001676,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239352,-0.001676,0.001750,0.249994,0,0);}
.m1d{transform:matrix(0.239526,-0.001916,0.002000,0.249992,0,0);-ms-transform:matrix(0.239526,-0.001916,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239526,-0.001916,0.002000,0.249992,0,0);}
.m44{transform:matrix(0.239602,-0.001677,0.001750,0.249994,0,0);-ms-transform:matrix(0.239602,-0.001677,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239602,-0.001677,0.001750,0.249994,0,0);}
.m6b{transform:matrix(0.239655,-0.001198,0.001250,0.249997,0,0);-ms-transform:matrix(0.239655,-0.001198,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239655,-0.001198,0.001250,0.249997,0,0);}
.m37{transform:matrix(0.239852,-0.001679,0.001750,0.249994,0,0);-ms-transform:matrix(0.239852,-0.001679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239852,-0.001679,0.001750,0.249994,0,0);}
.m3d{transform:matrix(0.240077,-0.001681,0.001750,0.249994,0,0);-ms-transform:matrix(0.240077,-0.001681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240077,-0.001681,0.001750,0.249994,0,0);}
.m93{transform:matrix(0.240229,-0.001442,0.001500,0.249996,0,0);-ms-transform:matrix(0.240229,-0.001442,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240229,-0.001442,0.001500,0.249996,0,0);}
.m59{transform:matrix(0.240354,-0.001442,0.001500,0.249996,0,0);-ms-transform:matrix(0.240354,-0.001442,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240354,-0.001442,0.001500,0.249996,0,0);}
.m4a{transform:matrix(0.240602,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240602,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240602,-0.001684,0.001750,0.249994,0,0);}
.m2a{transform:matrix(0.240877,-0.001686,0.001750,0.249994,0,0);-ms-transform:matrix(0.240877,-0.001686,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240877,-0.001686,0.001750,0.249994,0,0);}
.m6c{transform:matrix(0.240980,-0.001205,0.001250,0.249997,0,0);-ms-transform:matrix(0.240980,-0.001205,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240980,-0.001205,0.001250,0.249997,0,0);}
.m3a{transform:matrix(0.241652,-0.001692,0.001750,0.249994,0,0);-ms-transform:matrix(0.241652,-0.001692,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241652,-0.001692,0.001750,0.249994,0,0);}
.m36{transform:matrix(0.241777,-0.001693,0.001750,0.249994,0,0);-ms-transform:matrix(0.241777,-0.001693,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241777,-0.001693,0.001750,0.249994,0,0);}
.m95{transform:matrix(0.242155,-0.001211,0.001250,0.249997,0,0);-ms-transform:matrix(0.242155,-0.001211,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242155,-0.001211,0.001250,0.249997,0,0);}
.m98{transform:matrix(0.242255,-0.001211,0.001250,0.249997,0,0);-ms-transform:matrix(0.242255,-0.001211,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242255,-0.001211,0.001250,0.249997,0,0);}
.m18{transform:matrix(0.242550,-0.001941,0.002000,0.249992,0,0);-ms-transform:matrix(0.242550,-0.001941,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242550,-0.001941,0.002000,0.249992,0,0);}
.m57{transform:matrix(0.242754,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242754,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242754,-0.001457,0.001500,0.249996,0,0);}
.m79{transform:matrix(0.243379,-0.001460,0.001500,0.249996,0,0);-ms-transform:matrix(0.243379,-0.001460,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243379,-0.001460,0.001500,0.249996,0,0);}
.m5d{transform:matrix(0.243429,-0.001461,0.001500,0.249996,0,0);-ms-transform:matrix(0.243429,-0.001461,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243429,-0.001461,0.001500,0.249996,0,0);}
.ma4{transform:matrix(0.243655,-0.001218,0.001250,0.249997,0,0);-ms-transform:matrix(0.243655,-0.001218,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243655,-0.001218,0.001250,0.249997,0,0);}
.m74{transform:matrix(0.243729,-0.001463,0.001500,0.249996,0,0);-ms-transform:matrix(0.243729,-0.001463,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243729,-0.001463,0.001500,0.249996,0,0);}
.mb3{transform:matrix(0.243955,-0.001220,0.001250,0.249997,0,0);-ms-transform:matrix(0.243955,-0.001220,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243955,-0.001220,0.001250,0.249997,0,0);}
.m45{transform:matrix(0.244152,-0.001709,0.001750,0.249994,0,0);-ms-transform:matrix(0.244152,-0.001709,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244152,-0.001709,0.001750,0.249994,0,0);}
.m77{transform:matrix(0.244403,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244403,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244403,-0.001467,0.001500,0.249996,0,0);}
.m6e{transform:matrix(0.244680,-0.001223,0.001250,0.249997,0,0);-ms-transform:matrix(0.244680,-0.001223,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244680,-0.001223,0.001250,0.249997,0,0);}
.m4b{transform:matrix(0.244802,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244802,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244802,-0.001714,0.001750,0.249994,0,0);}
.m4e{transform:matrix(0.245078,-0.001471,0.001500,0.249996,0,0);-ms-transform:matrix(0.245078,-0.001471,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245078,-0.001471,0.001500,0.249996,0,0);}
.m89{transform:matrix(0.245278,-0.001472,0.001500,0.249996,0,0);-ms-transform:matrix(0.245278,-0.001472,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245278,-0.001472,0.001500,0.249996,0,0);}
.m7a{transform:matrix(0.245328,-0.001472,0.001500,0.249996,0,0);-ms-transform:matrix(0.245328,-0.001472,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245328,-0.001472,0.001500,0.249996,0,0);}
.maa{transform:matrix(0.245555,-0.001228,0.001250,0.249997,0,0);-ms-transform:matrix(0.245555,-0.001228,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245555,-0.001228,0.001250,0.249997,0,0);}
.m7b{transform:matrix(0.245728,-0.001475,0.001500,0.249996,0,0);-ms-transform:matrix(0.245728,-0.001475,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245728,-0.001475,0.001500,0.249996,0,0);}
.ma2{transform:matrix(0.245730,-0.001229,0.001250,0.249997,0,0);-ms-transform:matrix(0.245730,-0.001229,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245730,-0.001229,0.001250,0.249997,0,0);}
.maf{transform:matrix(0.246080,-0.001230,0.001250,0.249997,0,0);-ms-transform:matrix(0.246080,-0.001230,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246080,-0.001230,0.001250,0.249997,0,0);}
.m90{transform:matrix(0.246103,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246103,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246103,-0.001477,0.001500,0.249996,0,0);}
.m6d{transform:matrix(0.246180,-0.001231,0.001250,0.249997,0,0);-ms-transform:matrix(0.246180,-0.001231,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246180,-0.001231,0.001250,0.249997,0,0);}
.mac{transform:matrix(0.246305,-0.001232,0.001250,0.249997,0,0);-ms-transform:matrix(0.246305,-0.001232,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246305,-0.001232,0.001250,0.249997,0,0);}
.m2{transform:matrix(0.246325,-0.001971,0.002000,0.249992,0,0);-ms-transform:matrix(0.246325,-0.001971,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246325,-0.001971,0.002000,0.249992,0,0);}
.ma5{transform:matrix(0.246605,-0.001233,0.001250,0.249997,0,0);-ms-transform:matrix(0.246605,-0.001233,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246605,-0.001233,0.001250,0.249997,0,0);}
.m8f{transform:matrix(0.246703,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246703,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246703,-0.001480,0.001500,0.249996,0,0);}
.m7c{transform:matrix(0.246978,-0.001482,0.001500,0.249996,0,0);-ms-transform:matrix(0.246978,-0.001482,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246978,-0.001482,0.001500,0.249996,0,0);}
.mb0{transform:matrix(0.247355,-0.001237,0.001250,0.249997,0,0);-ms-transform:matrix(0.247355,-0.001237,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247355,-0.001237,0.001250,0.249997,0,0);}
.m58{transform:matrix(0.247578,-0.001486,0.001500,0.249996,0,0);-ms-transform:matrix(0.247578,-0.001486,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247578,-0.001486,0.001500,0.249996,0,0);}
.m7f{transform:matrix(0.247603,-0.001486,0.001500,0.249996,0,0);-ms-transform:matrix(0.247603,-0.001486,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247603,-0.001486,0.001500,0.249996,0,0);}
.m9f{transform:matrix(0.247705,-0.001239,0.001250,0.249997,0,0);-ms-transform:matrix(0.247705,-0.001239,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247705,-0.001239,0.001250,0.249997,0,0);}
.m4f{transform:matrix(0.248078,-0.001489,0.001500,0.249996,0,0);-ms-transform:matrix(0.248078,-0.001489,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248078,-0.001489,0.001500,0.249996,0,0);}
.m9b{transform:matrix(0.248130,-0.001241,0.001250,0.249997,0,0);-ms-transform:matrix(0.248130,-0.001241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248130,-0.001241,0.001250,0.249997,0,0);}
.mad{transform:matrix(0.248180,-0.001241,0.001250,0.249997,0,0);-ms-transform:matrix(0.248180,-0.001241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248180,-0.001241,0.001250,0.249997,0,0);}
.m76{transform:matrix(0.248278,-0.001490,0.001500,0.249996,0,0);-ms-transform:matrix(0.248278,-0.001490,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248278,-0.001490,0.001500,0.249996,0,0);}
.m60{transform:matrix(0.248353,-0.001490,0.001500,0.249996,0,0);-ms-transform:matrix(0.248353,-0.001490,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248353,-0.001490,0.001500,0.249996,0,0);}
.m85{transform:matrix(0.248378,-0.001490,0.001500,0.249996,0,0);-ms-transform:matrix(0.248378,-0.001490,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248378,-0.001490,0.001500,0.249996,0,0);}
.m32{transform:matrix(0.248402,-0.001739,0.001750,0.249994,0,0);-ms-transform:matrix(0.248402,-0.001739,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248402,-0.001739,0.001750,0.249994,0,0);}
.ma8{transform:matrix(0.248654,-0.001243,0.001250,0.249997,0,0);-ms-transform:matrix(0.248654,-0.001243,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248654,-0.001243,0.001250,0.249997,0,0);}
.m1c{transform:matrix(0.248675,-0.001990,0.002000,0.249992,0,0);-ms-transform:matrix(0.248675,-0.001990,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248675,-0.001990,0.002000,0.249992,0,0);}
.m99{transform:matrix(0.248854,-0.001244,0.001250,0.249997,0,0);-ms-transform:matrix(0.248854,-0.001244,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248854,-0.001244,0.001250,0.249997,0,0);}
.m84{transform:matrix(0.249378,-0.001496,0.001500,0.249996,0,0);-ms-transform:matrix(0.249378,-0.001496,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249378,-0.001496,0.001500,0.249996,0,0);}
.ma3{transform:matrix(0.249479,-0.001247,0.001250,0.249997,0,0);-ms-transform:matrix(0.249479,-0.001247,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249479,-0.001247,0.001250,0.249997,0,0);}
.m73{transform:matrix(0.249679,-0.001248,0.001250,0.249997,0,0);-ms-transform:matrix(0.249679,-0.001248,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249679,-0.001248,0.001250,0.249997,0,0);}
.m78{transform:matrix(0.249828,-0.001499,0.001500,0.249996,0,0);-ms-transform:matrix(0.249828,-0.001499,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249828,-0.001499,0.001500,0.249996,0,0);}
.m63{transform:matrix(0.250153,-0.001501,0.001500,0.249996,0,0);-ms-transform:matrix(0.250153,-0.001501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250153,-0.001501,0.001500,0.249996,0,0);}
.m83{transform:matrix(0.250628,-0.001504,0.001500,0.249996,0,0);-ms-transform:matrix(0.250628,-0.001504,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250628,-0.001504,0.001500,0.249996,0,0);}
.m67{transform:matrix(0.251028,-0.001506,0.001500,0.249996,0,0);-ms-transform:matrix(0.251028,-0.001506,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251028,-0.001506,0.001500,0.249996,0,0);}
.m87{transform:matrix(0.251278,-0.001508,0.001500,0.249996,0,0);-ms-transform:matrix(0.251278,-0.001508,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251278,-0.001508,0.001500,0.249996,0,0);}
.m39{transform:matrix(0.251351,-0.001760,0.001750,0.249994,0,0);-ms-transform:matrix(0.251351,-0.001760,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251351,-0.001760,0.001750,0.249994,0,0);}
.ma0{transform:matrix(0.252004,-0.001260,0.001250,0.249997,0,0);-ms-transform:matrix(0.252004,-0.001260,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252004,-0.001260,0.001250,0.249997,0,0);}
.m6f{transform:matrix(0.252104,-0.001261,0.001250,0.249997,0,0);-ms-transform:matrix(0.252104,-0.001261,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252104,-0.001261,0.001250,0.249997,0,0);}
.m69{transform:matrix(0.252279,-0.001261,0.001250,0.249997,0,0);-ms-transform:matrix(0.252279,-0.001261,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252279,-0.001261,0.001250,0.249997,0,0);}
.m55{transform:matrix(0.252578,-0.001516,0.001500,0.249996,0,0);-ms-transform:matrix(0.252578,-0.001516,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252578,-0.001516,0.001500,0.249996,0,0);}
.m47{transform:matrix(0.253326,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253326,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253326,-0.001773,0.001750,0.249994,0,0);}
.m80{transform:matrix(0.254603,-0.001528,0.001500,0.249996,0,0);-ms-transform:matrix(0.254603,-0.001528,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254603,-0.001528,0.001500,0.249996,0,0);}
.m68{transform:matrix(0.254604,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254604,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254604,-0.001273,0.001250,0.249997,0,0);}
.mae{transform:matrix(0.255029,-0.001275,0.001250,0.249997,0,0);-ms-transform:matrix(0.255029,-0.001275,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255029,-0.001275,0.001250,0.249997,0,0);}
.m51{transform:matrix(0.255178,-0.001531,0.001500,0.249996,0,0);-ms-transform:matrix(0.255178,-0.001531,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255178,-0.001531,0.001500,0.249996,0,0);}
.m88{transform:matrix(0.255278,-0.001532,0.001500,0.249996,0,0);-ms-transform:matrix(0.255278,-0.001532,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255278,-0.001532,0.001500,0.249996,0,0);}
.m8c{transform:matrix(0.255653,-0.001534,0.001500,0.249996,0,0);-ms-transform:matrix(0.255653,-0.001534,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255653,-0.001534,0.001500,0.249996,0,0);}
.m1{transform:matrix(0.255824,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255824,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255824,-0.002047,0.002000,0.249992,0,0);}
.m7d{transform:matrix(0.256027,-0.001536,0.001500,0.249996,0,0);-ms-transform:matrix(0.256027,-0.001536,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256027,-0.001536,0.001500,0.249996,0,0);}
.m0{transform:matrix(0.256474,-0.002052,0.002000,0.249992,0,0);-ms-transform:matrix(0.256474,-0.002052,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256474,-0.002052,0.002000,0.249992,0,0);}
.m7e{transform:matrix(0.256477,-0.001539,0.001500,0.249996,0,0);-ms-transform:matrix(0.256477,-0.001539,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256477,-0.001539,0.001500,0.249996,0,0);}
.mb2{transform:matrix(0.256954,-0.001285,0.001250,0.249997,0,0);-ms-transform:matrix(0.256954,-0.001285,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256954,-0.001285,0.001250,0.249997,0,0);}
.m52{transform:matrix(0.257052,-0.001542,0.001500,0.249996,0,0);-ms-transform:matrix(0.257052,-0.001542,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257052,-0.001542,0.001500,0.249996,0,0);}
.m8d{transform:matrix(0.257402,-0.001545,0.001500,0.249996,0,0);-ms-transform:matrix(0.257402,-0.001545,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257402,-0.001545,0.001500,0.249996,0,0);}
.mab{transform:matrix(0.257404,-0.001287,0.001250,0.249997,0,0);-ms-transform:matrix(0.257404,-0.001287,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257404,-0.001287,0.001250,0.249997,0,0);}
.m70{transform:matrix(0.257504,-0.001288,0.001250,0.249997,0,0);-ms-transform:matrix(0.257504,-0.001288,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257504,-0.001288,0.001250,0.249997,0,0);}
.ma9{transform:matrix(0.257604,-0.001288,0.001250,0.249997,0,0);-ms-transform:matrix(0.257604,-0.001288,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257604,-0.001288,0.001250,0.249997,0,0);}
.m53{transform:matrix(0.257927,-0.001548,0.001500,0.249996,0,0);-ms-transform:matrix(0.257927,-0.001548,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257927,-0.001548,0.001500,0.249996,0,0);}
.m9a{transform:matrix(0.258604,-0.001293,0.001250,0.249997,0,0);-ms-transform:matrix(0.258604,-0.001293,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258604,-0.001293,0.001250,0.249997,0,0);}
.m64{transform:matrix(0.258952,-0.001554,0.001500,0.249996,0,0);-ms-transform:matrix(0.258952,-0.001554,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258952,-0.001554,0.001500,0.249996,0,0);}
.m4d{transform:matrix(0.259252,-0.001556,0.001500,0.249996,0,0);-ms-transform:matrix(0.259252,-0.001556,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259252,-0.001556,0.001500,0.249996,0,0);}
.mb4{transform:matrix(0.260504,-0.001303,0.001250,0.249997,0,0);-ms-transform:matrix(0.260504,-0.001303,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260504,-0.001303,0.001250,0.249997,0,0);}
.m3{transform:matrix(0.260573,-0.002085,0.002000,0.249992,0,0);-ms-transform:matrix(0.260573,-0.002085,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260573,-0.002085,0.002000,0.249992,0,0);}
.mb1{transform:matrix(0.261453,-0.001307,0.001250,0.249997,0,0);-ms-transform:matrix(0.261453,-0.001307,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261453,-0.001307,0.001250,0.249997,0,0);}
.ma1{transform:matrix(0.262228,-0.001311,0.001250,0.249997,0,0);-ms-transform:matrix(0.262228,-0.001311,0.001250,0.249997,0,0);-webkit-transform:matrix(0.262228,-0.001311,0.001250,0.249997,0,0);}
.m86{transform:matrix(0.262327,-0.001574,0.001500,0.249996,0,0);-ms-transform:matrix(0.262327,-0.001574,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262327,-0.001574,0.001500,0.249996,0,0);}
.m50{transform:matrix(0.262352,-0.001574,0.001500,0.249996,0,0);-ms-transform:matrix(0.262352,-0.001574,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262352,-0.001574,0.001500,0.249996,0,0);}
.m54{transform:matrix(0.268251,-0.001610,0.001500,0.249996,0,0);-ms-transform:matrix(0.268251,-0.001610,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268251,-0.001610,0.001500,0.249996,0,0);}
.m92{transform:matrix(0.269801,-0.001619,0.001500,0.249996,0,0);-ms-transform:matrix(0.269801,-0.001619,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269801,-0.001619,0.001500,0.249996,0,0);}
.mb9{transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288130,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.290795,-0.002327,0.002000,0.249992,0,0);-ms-transform:matrix(0.290795,-0.002327,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290795,-0.002327,0.002000,0.249992,0,0);}
.mb5{transform:matrix(0.296245,-0.002370,0.002000,0.249992,0,0);-ms-transform:matrix(0.296245,-0.002370,0.002000,0.249992,0,0);-webkit-transform:matrix(0.296245,-0.002370,0.002000,0.249992,0,0);}
.mb7{transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300304,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.308444,-0.002468,0.002000,0.249992,0,0);-ms-transform:matrix(0.308444,-0.002468,0.002000,0.249992,0,0);-webkit-transform:matrix(0.308444,-0.002468,0.002000,0.249992,0,0);}
.mb8{transform:matrix(0.319953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319953,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;}
.fsc{font-size:48.606318px;}
.fsb{font-size:50.766599px;}
.fs7{font-size:58.327611px;}
.fs9{font-size:59.407722px;}
.fsa{font-size:59.407752px;}
.fs8{font-size:60.487862px;}
.fs6{font-size:61.568003px;}
.fs5{font-size:62.648143px;}
.fs4{font-size:63.728315px;}
.fs2{font-size:64.808424px;}
.fs3{font-size:64.808456px;}
.fs1{font-size:65.888564px;}
.fs0{font-size:69.128985px;}
.y0{bottom:0.000000px;}
.ybb{bottom:65.888564px;}
.yba{bottom:518.467392px;}
.yb8{bottom:555.191926px;}
.yb9{bottom:555.656626px;}
.yaf{bottom:574.904728px;}
.yb0{bottom:575.339484px;}
.yb1{bottom:575.830948px;}
.yb2{bottom:576.252128px;}
.yb3{bottom:576.611275px;}
.yb4{bottom:576.796324px;}
.yb5{bottom:577.040631px;}
.yb6{bottom:577.379525px;}
.yb7{bottom:577.534870px;}
.ya5{bottom:594.617290px;}
.ya6{bottom:594.875174px;}
.ya7{bottom:595.220819px;}
.ya8{bottom:595.432721px;}
.ya9{bottom:595.820222px;}
.yaa{bottom:596.086281px;}
.yab{bottom:596.269905px;}
.yac{bottom:596.610149px;}
.yad{bottom:596.939592px;}
.yae{bottom:597.328443px;}
.y97{bottom:614.059817px;}
.y98{bottom:614.198810px;}
.y99{bottom:614.323102px;}
.y9a{bottom:614.437867px;}
.y9b{bottom:614.540405px;}
.y9c{bottom:614.852295px;}
.y9d{bottom:615.346460px;}
.y9e{bottom:615.457249px;}
.y9f{bottom:615.624746px;}
.ya0{bottom:615.698930px;}
.ya1{bottom:615.855551px;}
.ya2{bottom:615.960865px;}
.ya3{bottom:616.232175px;}
.ya4{bottom:616.530564px;}
.y8b{bottom:633.502255px;}
.y8c{bottom:633.949433px;}
.y8d{bottom:634.270234px;}
.y8e{bottom:634.544140px;}
.y8f{bottom:634.884384px;}
.y90{bottom:635.162880px;}
.y91{bottom:635.310500px;}
.y92{bottom:635.477291px;}
.y93{bottom:635.966685px;}
.y94{bottom:636.326462px;}
.y95{bottom:636.481822px;}
.y96{bottom:636.591996px;}
.y80{bottom:653.214907px;}
.y81{bottom:653.499974px;}
.y82{bottom:653.901786px;}
.y83{bottom:654.186943px;}
.y84{bottom:654.593616px;}
.y85{bottom:654.711891px;}
.y86{bottom:655.029633px;}
.y87{bottom:655.131526px;}
.y88{bottom:655.517136px;}
.y89{bottom:655.700400px;}
.y8a{bottom:656.022822px;}
.y77{bottom:672.657344px;}
.y78{bottom:673.047815px;}
.y79{bottom:673.465919px;}
.y7a{bottom:673.966564px;}
.y7b{bottom:674.509245px;}
.y7c{bottom:674.776580px;}
.y7d{bottom:675.048865px;}
.y7e{bottom:675.455448px;}
.y7f{bottom:675.769769px;}
.y6b{bottom:692.369921px;}
.y6c{bottom:692.696664px;}
.y6d{bottom:693.200354px;}
.y6e{bottom:693.342123px;}
.y6f{bottom:693.482541px;}
.y70{bottom:693.684992px;}
.y71{bottom:694.021261px;}
.y72{bottom:694.211561px;}
.y73{bottom:694.405986px;}
.y74{bottom:694.677371px;}
.y75{bottom:694.846218px;}
.y76{bottom:695.013565px;}
.y61{bottom:711.812434px;}
.y62{bottom:712.295256px;}
.y63{bottom:712.739374px;}
.y64{bottom:712.836497px;}
.y65{bottom:713.410051px;}
.y66{bottom:714.028972px;}
.y67{bottom:714.461658px;}
.y68{bottom:714.602616px;}
.y69{bottom:714.779219px;}
.y6a{bottom:715.020631px;}
.y57{bottom:731.254961px;}
.y58{bottom:731.724822px;}
.y59{bottom:731.975955px;}
.y5a{bottom:732.355084px;}
.y5b{bottom:732.828365px;}
.y5c{bottom:733.200924px;}
.y5d{bottom:733.524966px;}
.y5e{bottom:733.662684px;}
.y5f{bottom:733.973764px;}
.y60{bottom:734.299517px;}
.y4f{bottom:751.237648px;}
.y50{bottom:751.526046px;}
.y51{bottom:752.415451px;}
.y52{bottom:752.705469px;}
.y53{bottom:753.045713px;}
.y54{bottom:753.418362px;}
.y55{bottom:753.951591px;}
.y56{bottom:754.308037px;}
.y45{bottom:770.680175px;}
.y46{bottom:771.029871px;}
.y47{bottom:771.891718px;}
.y48{bottom:772.218730px;}
.y49{bottom:772.538182px;}
.y4a{bottom:772.840831px;}
.y4b{bottom:773.192312px;}
.y4c{bottom:773.536337px;}
.y4d{bottom:773.918376px;}
.y4e{bottom:774.271852px;}
.y3b{bottom:790.392738px;}
.y3c{bottom:790.855848px;}
.y3d{bottom:790.957921px;}
.y3e{bottom:791.294385px;}
.y3f{bottom:792.144995px;}
.y40{bottom:792.233627px;}
.y41{bottom:792.504037px;}
.y42{bottom:792.912330px;}
.y43{bottom:793.276938px;}
.y44{bottom:793.628523px;}
.y32{bottom:810.105300px;}
.y33{bottom:810.454995px;}
.y34{bottom:810.891642px;}
.y35{bottom:811.500196px;}
.y36{bottom:812.112846px;}
.y37{bottom:812.471783px;}
.y38{bottom:812.793334px;}
.y39{bottom:813.216749px;}
.y3a{bottom:813.664738px;}
.y28{bottom:829.547617px;}
.y29{bottom:830.096208px;}
.y2a{bottom:830.203637px;}
.y2b{bottom:830.627052px;}
.y2c{bottom:831.039126px;}
.y2d{bottom:831.706593px;}
.y2e{bottom:831.827359px;}
.y2f{bottom:832.392542px;}
.y30{bottom:832.702542px;}
.y31{bottom:833.192326px;}
.y1c{bottom:849.260389px;}
.y1d{bottom:849.854467px;}
.y1e{bottom:850.254119px;}
.y1f{bottom:850.791789px;}
.y20{bottom:851.383946px;}
.y21{bottom:851.517883px;}
.y22{bottom:851.816002px;}
.y23{bottom:851.999626px;}
.y24{bottom:852.472727px;}
.y25{bottom:852.822693px;}
.y26{bottom:852.962871px;}
.y27{bottom:853.321717px;}
.y11{bottom:868.972712px;}
.y12{bottom:869.126092px;}
.y13{bottom:869.648880px;}
.y14{bottom:870.154625px;}
.y15{bottom:870.476267px;}
.y16{bottom:871.087867px;}
.y17{bottom:871.709788px;}
.y18{bottom:872.327628px;}
.y19{bottom:872.627907px;}
.y1a{bottom:872.792088px;}
.y1b{bottom:873.066444px;}
.y5{bottom:888.685514px;}
.y6{bottom:888.974992px;}
.y7{bottom:889.143494px;}
.y8{bottom:889.601233px;}
.y9{bottom:890.026808px;}
.ya{bottom:890.526073px;}
.yb{bottom:890.919244px;}
.yc{bottom:891.459315px;}
.yd{bottom:891.575970px;}
.ye{bottom:891.979702px;}
.yf{bottom:892.275661px;}
.y10{bottom:892.656110px;}
.y1{bottom:929.190779px;}
.y2{bottom:930.095937px;}
.y3{bottom:930.787227px;}
.y4{bottom:930.957889px;}
.he{height:45.884364px;}
.hd{height:47.923669px;}
.h9{height:55.061264px;}
.hb{height:56.080889px;}
.hc{height:56.080918px;}
.ha{height:57.100542px;}
.h8{height:58.120195px;}
.h7{height:59.139847px;}
.h6{height:60.159530px;}
.h4{height:61.179152px;}
.h5{height:61.179183px;}
.h3{height:62.198805px;}
.h2{height:65.257762px;}
.h0{height:1014.525000px;}
.h1{height:1014.750000px;}
.w0{width:719.865000px;}
.w1{width:720.000000px;}
.x0{left:0.000000px;}
.x11{left:66.664001px;}
.x7a{left:69.394163px;}
.x12{left:85.834537px;}
.x5{left:89.105346px;}
.x66{left:94.760352px;}
.x3f{left:115.026036px;}
.x2e{left:116.915816px;}
.x70{left:118.536493px;}
.x67{left:119.616545px;}
.x6{left:125.286359px;}
.x4e{left:132.022137px;}
.x33{left:133.116399px;}
.x1c{left:141.216096px;}
.x68{left:142.567646px;}
.x26{left:145.296837px;}
.x7{left:146.346949px;}
.x34{left:147.696924px;}
.x13{left:151.176367px;}
.x74{left:153.908191px;}
.x27{left:160.642390px;}
.x69{left:163.073631px;}
.x2f{left:179.288061px;}
.x5a{left:181.703841px;}
.x44{left:186.834047px;}
.x1d{left:191.167495px;}
.x1{left:192.791567px;}
.x60{left:194.664376px;}
.x35{left:195.758654px;}
.x55{left:201.429660px;}
.x8{left:203.558550px;}
.x14{left:214.388136px;}
.x28{left:221.124567px;}
.x6a{left:225.446624px;}
.x5b{left:229.225837px;}
.x4f{left:232.751972px;}
.x49{left:237.611184px;}
.x3a{left:240.025247px;}
.x45{left:250.016700px;}
.x75{left:252.192908px;}
.x15{left:254.589262px;}
.x9{left:256.750040px;}
.x1e{left:258.369376px;}
.x50{left:261.103332px;}
.x40{left:263.247261px;}
.x30{left:266.216190px;}
.x29{left:279.986686px;}
.x56{left:284.863164px;}
.x3b{left:286.736929px;}
.x51{left:289.184680px;}
.x5c{left:296.998683px;}
.x2{left:305.924734px;}
.x71{left:307.530564px;}
.x41{left:311.579291px;}
.x36{left:317.263028px;}
.xa{left:319.151787px;}
.x6b{left:324.271368px;}
.x46{left:328.890013px;}
.x37{left:329.923483px;}
.x16{left:331.031402px;}
.x1f{left:332.381449px;}
.x76{left:336.421951px;}
.x61{left:343.425623px;}
.x6c{left:346.427431px;}
.x20{left:349.121917px;}
.x31{left:353.729340px;}
.x72{left:360.738118px;}
.xb{left:368.293163px;}
.x5d{left:369.661735px;}
.x2a{left:375.330118px;}
.x6d{left:379.924039px;}
.x21{left:386.382960px;}
.x47{left:390.977620px;}
.x3{left:392.327153px;}
.x6e{left:394.759751px;}
.x62{left:395.822824px;}
.x52{left:396.919851px;}
.x32{left:405.001186px;}
.x17{left:408.763578px;}
.x4{left:413.657750px;}
.x57{left:419.853833px;}
.x3c{left:425.806935px;}
.x38{left:426.871973px;}
.x42{left:430.384280px;}
.xc{left:435.795052px;}
.x48{left:444.979888px;}
.x6f{left:447.142265px;}
.xd{left:450.375461px;}
.x58{left:465.230739px;}
.x22{left:468.465259px;}
.x2b{left:473.313645px;}
.x3d{left:474.948704px;}
.x63{left:477.381249px;}
.x39{left:478.953848px;}
.x5e{left:481.446430px;}
.x18{left:485.985740px;}
.x77{left:494.109519px;}
.xe{left:500.836873px;}
.x4a{left:508.447559px;}
.x23{left:512.206483px;}
.x2c{left:517.595239px;}
.x43{left:519.248012px;}
.x19{left:523.516791px;}
.x53{left:528.131149px;}
.x24{left:529.726974px;}
.x4b{left:531.938545px;}
.x59{left:532.988584px;}
.x5f{left:535.178686px;}
.xf{left:537.827909px;}
.x1a{left:544.037366px;}
.x79{left:548.672918px;}
.x4c{left:561.369781px;}
.x64{left:563.229854px;}
.x25{left:574.578229px;}
.x1b{left:578.328326px;}
.x3e{left:580.012486px;}
.x65{left:581.590626px;}
.x10{left:585.379240px;}
.x2d{left:587.557758px;}
.x78{left:592.949263px;}
.x54{left:595.364376px;}
.x4d{left:601.601471px;}
.x73{left:609.150041px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fsc{font-size:43.205616pt;}
.fsb{font-size:45.125865pt;}
.fs7{font-size:51.846765pt;}
.fs9{font-size:52.806864pt;}
.fsa{font-size:52.806890pt;}
.fs8{font-size:53.766989pt;}
.fs6{font-size:54.727113pt;}
.fs5{font-size:55.687238pt;}
.fs4{font-size:56.647391pt;}
.fs2{font-size:57.607488pt;}
.fs3{font-size:57.607517pt;}
.fs1{font-size:58.567613pt;}
.fs0{font-size:61.447987pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:58.567613pt;}
.yba{bottom:460.859904pt;}
.yb8{bottom:493.503934pt;}
.yb9{bottom:493.917001pt;}
.yaf{bottom:511.026425pt;}
.yb0{bottom:511.412875pt;}
.yb1{bottom:511.849732pt;}
.yb2{bottom:512.224114pt;}
.yb3{bottom:512.543355pt;}
.yb4{bottom:512.707843pt;}
.yb5{bottom:512.925005pt;}
.yb6{bottom:513.226244pt;}
.yb7{bottom:513.364329pt;}
.ya5{bottom:528.548702pt;}
.ya6{bottom:528.777932pt;}
.ya7{bottom:529.085172pt;}
.ya8{bottom:529.273530pt;}
.ya9{bottom:529.617975pt;}
.yaa{bottom:529.854472pt;}
.yab{bottom:530.017693pt;}
.yac{bottom:530.320133pt;}
.yad{bottom:530.612971pt;}
.yae{bottom:530.958616pt;}
.y97{bottom:545.830949pt;}
.y98{bottom:545.954498pt;}
.y99{bottom:546.064979pt;}
.y9a{bottom:546.166992pt;}
.y9b{bottom:546.258138pt;}
.y9c{bottom:546.535374pt;}
.y9d{bottom:546.974631pt;}
.y9e{bottom:547.073110pt;}
.y9f{bottom:547.221996pt;}
.ya0{bottom:547.287938pt;}
.ya1{bottom:547.427156pt;}
.ya2{bottom:547.520768pt;}
.ya3{bottom:547.761933pt;}
.ya4{bottom:548.027168pt;}
.y8b{bottom:563.113115pt;}
.y8c{bottom:563.510607pt;}
.y8d{bottom:563.795764pt;}
.y8e{bottom:564.039236pt;}
.y8f{bottom:564.341675pt;}
.y90{bottom:564.589227pt;}
.y91{bottom:564.720444pt;}
.y92{bottom:564.868703pt;}
.y93{bottom:565.303720pt;}
.y94{bottom:565.623521pt;}
.y95{bottom:565.761619pt;}
.y96{bottom:565.859552pt;}
.y80{bottom:580.635473pt;}
.y81{bottom:580.888866pt;}
.y82{bottom:581.246032pt;}
.y83{bottom:581.499505pt;}
.y84{bottom:581.860992pt;}
.y85{bottom:581.966126pt;}
.y86{bottom:582.248562pt;}
.y87{bottom:582.339134pt;}
.y88{bottom:582.681899pt;}
.y89{bottom:582.844800pt;}
.y8a{bottom:583.131397pt;}
.y77{bottom:597.917639pt;}
.y78{bottom:598.264724pt;}
.y79{bottom:598.636373pt;}
.y7a{bottom:599.081390pt;}
.y7b{bottom:599.563773pt;}
.y7c{bottom:599.801404pt;}
.y7d{bottom:600.043436pt;}
.y7e{bottom:600.404842pt;}
.y7f{bottom:600.684239pt;}
.y6b{bottom:615.439930pt;}
.y6c{bottom:615.730368pt;}
.y6d{bottom:616.178093pt;}
.y6e{bottom:616.304109pt;}
.y6f{bottom:616.428925pt;}
.y70{bottom:616.608882pt;}
.y71{bottom:616.907788pt;}
.y72{bottom:617.076943pt;}
.y73{bottom:617.249765pt;}
.y74{bottom:617.490997pt;}
.y75{bottom:617.641083pt;}
.y76{bottom:617.789836pt;}
.y61{bottom:632.722163pt;}
.y62{bottom:633.151339pt;}
.y63{bottom:633.546110pt;}
.y64{bottom:633.632442pt;}
.y65{bottom:634.142268pt;}
.y66{bottom:634.692419pt;}
.y67{bottom:635.077029pt;}
.y68{bottom:635.202326pt;}
.y69{bottom:635.359306pt;}
.y6a{bottom:635.573894pt;}
.y57{bottom:650.004410pt;}
.y58{bottom:650.422064pt;}
.y59{bottom:650.645293pt;}
.y5a{bottom:650.982297pt;}
.y5b{bottom:651.402991pt;}
.y5c{bottom:651.734154pt;}
.y5d{bottom:652.022192pt;}
.y5e{bottom:652.144608pt;}
.y5f{bottom:652.421124pt;}
.y60{bottom:652.710681pt;}
.y4f{bottom:667.766798pt;}
.y50{bottom:668.023152pt;}
.y51{bottom:668.813734pt;}
.y52{bottom:669.071528pt;}
.y53{bottom:669.373967pt;}
.y54{bottom:669.705210pt;}
.y55{bottom:670.179192pt;}
.y56{bottom:670.496033pt;}
.y45{bottom:685.049045pt;}
.y46{bottom:685.359885pt;}
.y47{bottom:686.125971pt;}
.y48{bottom:686.416649pt;}
.y49{bottom:686.700606pt;}
.y4a{bottom:686.969628pt;}
.y4b{bottom:687.282055pt;}
.y4c{bottom:687.587855pt;}
.y4d{bottom:687.927446pt;}
.y4e{bottom:688.241646pt;}
.y3b{bottom:702.571322pt;}
.y3c{bottom:702.982976pt;}
.y3d{bottom:703.073708pt;}
.y3e{bottom:703.372787pt;}
.y3f{bottom:704.128885pt;}
.y40{bottom:704.207668pt;}
.y41{bottom:704.448033pt;}
.y42{bottom:704.810960pt;}
.y43{bottom:705.135056pt;}
.y44{bottom:705.447576pt;}
.y32{bottom:720.093600pt;}
.y33{bottom:720.404440pt;}
.y34{bottom:720.792571pt;}
.y35{bottom:721.333508pt;}
.y36{bottom:721.878085pt;}
.y37{bottom:722.197140pt;}
.y38{bottom:722.482964pt;}
.y39{bottom:722.859333pt;}
.y3a{bottom:723.257545pt;}
.y28{bottom:737.375660pt;}
.y29{bottom:737.863296pt;}
.y2a{bottom:737.958789pt;}
.y2b{bottom:738.335158pt;}
.y2c{bottom:738.701445pt;}
.y2d{bottom:739.294749pt;}
.y2e{bottom:739.402096pt;}
.y2f{bottom:739.904482pt;}
.y30{bottom:740.180038pt;}
.y31{bottom:740.615401pt;}
.y1c{bottom:754.898124pt;}
.y1d{bottom:755.426193pt;}
.y1e{bottom:755.781439pt;}
.y1f{bottom:756.259368pt;}
.y20{bottom:756.785729pt;}
.y21{bottom:756.904785pt;}
.y22{bottom:757.169779pt;}
.y23{bottom:757.333000pt;}
.y24{bottom:757.753535pt;}
.y25{bottom:758.064616pt;}
.y26{bottom:758.189218pt;}
.y27{bottom:758.508193pt;}
.y11{bottom:772.420188pt;}
.y12{bottom:772.556526pt;}
.y13{bottom:773.021226pt;}
.y14{bottom:773.470778pt;}
.y15{bottom:773.756682pt;}
.y16{bottom:774.300326pt;}
.y17{bottom:774.853144pt;}
.y18{bottom:775.402336pt;}
.y19{bottom:775.669251pt;}
.y1a{bottom:775.815190pt;}
.y1b{bottom:776.059061pt;}
.y5{bottom:789.942679pt;}
.y6{bottom:790.199993pt;}
.y7{bottom:790.349772pt;}
.y8{bottom:790.756652pt;}
.y9{bottom:791.134941pt;}
.ya{bottom:791.578732pt;}
.yb{bottom:791.928217pt;}
.yc{bottom:792.408280pt;}
.yd{bottom:792.511973pt;}
.ye{bottom:792.870846pt;}
.yf{bottom:793.133921pt;}
.y10{bottom:793.472098pt;}
.y1{bottom:825.947359pt;}
.y2{bottom:826.751944pt;}
.y3{bottom:827.366424pt;}
.y4{bottom:827.518123pt;}
.he{height:40.786102pt;}
.hd{height:42.598817pt;}
.h9{height:48.943346pt;}
.hb{height:49.849679pt;}
.hc{height:49.849704pt;}
.ha{height:50.756037pt;}
.h8{height:51.662395pt;}
.h7{height:52.568753pt;}
.h6{height:53.475137pt;}
.h4{height:54.381468pt;}
.h5{height:54.381496pt;}
.h3{height:55.287826pt;}
.h2{height:58.006900pt;}
.h0{height:901.800000pt;}
.h1{height:902.000000pt;}
.w0{width:639.880000pt;}
.w1{width:640.000000pt;}
.x0{left:0.000000pt;}
.x11{left:59.256889pt;}
.x7a{left:61.683701pt;}
.x12{left:76.297366pt;}
.x5{left:79.204752pt;}
.x66{left:84.231424pt;}
.x3f{left:102.245365pt;}
.x2e{left:103.925170pt;}
.x70{left:105.365771pt;}
.x67{left:106.325818pt;}
.x6{left:111.365652pt;}
.x4e{left:117.353011pt;}
.x33{left:118.325688pt;}
.x1c{left:125.525419pt;}
.x68{left:126.726797pt;}
.x26{left:129.152744pt;}
.x7{left:130.086177pt;}
.x34{left:131.286154pt;}
.x13{left:134.378993pt;}
.x74{left:136.807281pt;}
.x27{left:142.793235pt;}
.x69{left:144.954338pt;}
.x2f{left:159.367165pt;}
.x5a{left:161.514526pt;}
.x44{left:166.074708pt;}
.x1d{left:169.926662pt;}
.x1{left:171.370282pt;}
.x60{left:173.035001pt;}
.x35{left:174.007692pt;}
.x55{left:179.048587pt;}
.x8{left:180.940934pt;}
.x14{left:190.567232pt;}
.x28{left:196.555171pt;}
.x6a{left:200.396999pt;}
.x5b{left:203.756300pt;}
.x4f{left:206.890641pt;}
.x49{left:211.209942pt;}
.x3a{left:213.355775pt;}
.x45{left:222.237067pt;}
.x75{left:224.171474pt;}
.x15{left:226.301566pt;}
.x9{left:228.222257pt;}
.x1e{left:229.661668pt;}
.x50{left:232.091851pt;}
.x40{left:233.997565pt;}
.x30{left:236.636613pt;}
.x29{left:248.877054pt;}
.x56{left:253.211701pt;}
.x3b{left:254.877270pt;}
.x51{left:257.053049pt;}
.x5c{left:263.998830pt;}
.x2{left:271.933097pt;}
.x71{left:273.360501pt;}
.x41{left:276.959370pt;}
.x36{left:282.011580pt;}
.xa{left:283.690477pt;}
.x6b{left:288.241216pt;}
.x46{left:292.346678pt;}
.x37{left:293.265319pt;}
.x16{left:294.250135pt;}
.x1f{left:295.450177pt;}
.x76{left:299.041734pt;}
.x61{left:305.267221pt;}
.x6c{left:307.935494pt;}
.x20{left:310.330593pt;}
.x31{left:314.426080pt;}
.x72{left:320.656105pt;}
.xb{left:327.371700pt;}
.x5d{left:328.588209pt;}
.x2a{left:333.626771pt;}
.x6d{left:337.710257pt;}
.x21{left:343.451520pt;}
.x47{left:347.535663pt;}
.x3{left:348.735247pt;}
.x6e{left:350.897556pt;}
.x62{left:351.842510pt;}
.x52{left:352.817646pt;}
.x32{left:360.001054pt;}
.x17{left:363.345403pt;}
.x4{left:367.695778pt;}
.x57{left:373.203407pt;}
.x3c{left:378.495053pt;}
.x38{left:379.441754pt;}
.x42{left:382.563805pt;}
.xc{left:387.373380pt;}
.x48{left:395.537679pt;}
.x6f{left:397.459791pt;}
.xd{left:400.333743pt;}
.x58{left:413.538434pt;}
.x22{left:416.413563pt;}
.x2b{left:420.723240pt;}
.x3d{left:422.176626pt;}
.x63{left:424.338888pt;}
.x39{left:425.736754pt;}
.x5e{left:427.952382pt;}
.x18{left:431.987325pt;}
.x77{left:439.208462pt;}
.xe{left:445.188332pt;}
.x4a{left:451.953385pt;}
.x23{left:455.294652pt;}
.x2c{left:460.084657pt;}
.x43{left:461.553789pt;}
.x19{left:465.348259pt;}
.x53{left:469.449910pt;}
.x24{left:470.868421pt;}
.x4b{left:472.834262pt;}
.x59{left:473.767631pt;}
.x5f{left:475.714388pt;}
.xf{left:478.069252pt;}
.x1a{left:483.588770pt;}
.x79{left:487.709261pt;}
.x4c{left:498.995361pt;}
.x64{left:500.648760pt;}
.x25{left:510.736204pt;}
.x1b{left:514.069623pt;}
.x3e{left:515.566654pt;}
.x65{left:516.969445pt;}
.x10{left:520.337103pt;}
.x2d{left:522.273562pt;}
.x78{left:527.066012pt;}
.x54{left:529.212779pt;}
.x4d{left:534.756863pt;}
.x73{left:541.466703pt;}
}

