
    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_9c64b32592e77c1089ba21dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2983033fb9f829c28831701a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.096647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096647,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.133323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133323,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.179423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179423,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182548,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.205397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205397,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258850,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260300,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261098,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261522,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261848,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261975,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262348,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262398,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262472,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262650,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262697,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262725,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262748,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262772,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.262822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262822,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262898,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263048,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.263098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263098,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.263125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263125,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263225,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263398,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263850,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263873,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264175,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264325,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264623,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265075,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265197,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265350,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265398,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265522,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265822,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266050,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266075,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266223,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266875,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267398,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267650,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268298,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.268448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268448,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268673,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268975,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269600,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269647,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269725,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270673,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271075,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271572,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272525,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272600,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.272822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272822,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.273173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273173,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274100,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.274147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274147,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.274325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274325,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275048,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276998,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277197,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.278998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278998,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283598,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283673,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285172,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287147,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.297600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297600,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318723,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.328350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328350,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.330200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330200,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332447,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.348175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348175,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(2.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.142100,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(4.066650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.066650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.066650,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(4.091650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.091650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.091650,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(4.243475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.243475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.243475,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:transparent;}
.fs2{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:110.250000px;}
.yd8{bottom:110.473500px;}
.ya4{bottom:111.000000px;}
.y21{bottom:113.098500px;}
.y4d{bottom:113.400000px;}
.y79{bottom:128.848500px;}
.yd7{bottom:129.675000px;}
.ya3{bottom:131.473500px;}
.y4c{bottom:132.598500px;}
.yd4{bottom:146.698500px;}
.yd5{bottom:146.925000px;}
.y78{bottom:147.750000px;}
.yd6{bottom:148.050000px;}
.y77{bottom:148.275000px;}
.ya2{bottom:150.150000px;}
.y4b{bottom:152.025000px;}
.y4a{bottom:152.250000px;}
.yd3{bottom:173.925000px;}
.ya1{bottom:174.150000px;}
.y76{bottom:175.800000px;}
.y49{bottom:180.375000px;}
.y20{bottom:187.650000px;}
.yd1{bottom:191.473500px;}
.yd2{bottom:192.825000px;}
.y75{bottom:194.173500px;}
.y48{bottom:199.500000px;}
.y47{bottom:200.098500px;}
.y1e{bottom:205.500000px;}
.y1f{bottom:206.548500px;}
.y74{bottom:213.375000px;}
.y73{bottom:214.200000px;}
.ya0{bottom:217.650000px;}
.yd0{bottom:218.250000px;}
.y46{bottom:227.848500px;}
.y1b{bottom:233.025000px;}
.y9e{bottom:233.548500px;}
.y1c{bottom:234.075000px;}
.y1d{bottom:234.375000px;}
.y9f{bottom:237.075000px;}
.ycf{bottom:237.673500px;}
.y72{bottom:241.423500px;}
.y19{bottom:250.575000px;}
.y1a{bottom:251.625000px;}
.ycc{bottom:254.700000px;}
.ycd{bottom:254.923500px;}
.yce{bottom:256.048500px;}
.y71{bottom:260.098500px;}
.y9d{bottom:263.250000px;}
.y45{bottom:263.548500px;}
.y18{bottom:277.275000px;}
.y70{bottom:279.000000px;}
.y6f{bottom:279.750000px;}
.ycb{bottom:281.923500px;}
.y9c{bottom:282.150000px;}
.y44{bottom:282.673500px;}
.y43{bottom:283.200000px;}
.y17{bottom:296.473500px;}
.y9b{bottom:300.223500px;}
.y6e{bottom:306.750000px;}
.y42{bottom:311.025000px;}
.y15{bottom:313.500000px;}
.y16{bottom:314.548500px;}
.yca{bottom:316.798500px;}
.y9a{bottom:318.598500px;}
.y41{bottom:330.223500px;}
.y98{bottom:333.973500px;}
.yc7{bottom:334.048500px;}
.yc8{bottom:334.575000px;}
.yc9{bottom:335.400000px;}
.y99{bottom:337.200000px;}
.y14{bottom:340.500000px;}
.y6d{bottom:348.598500px;}
.y40{bottom:349.650000px;}
.y3f{bottom:349.950000px;}
.yc6{bottom:353.250000px;}
.y97{bottom:360.973500px;}
.y6c{bottom:367.500000px;}
.y6b{bottom:368.325000px;}
.yc4{bottom:370.200000px;}
.yc5{bottom:371.548500px;}
.y3e{bottom:378.000000px;}
.y96{bottom:382.348500px;}
.y13{bottom:387.750000px;}
.y6a{bottom:395.625000px;}
.y3d{bottom:396.900000px;}
.yc3{bottom:397.200000px;}
.y3c{bottom:397.423500px;}
.y94{bottom:397.723500px;}
.y95{bottom:400.950000px;}
.y12{bottom:406.650000px;}
.y69{bottom:414.223500px;}
.yc2{bottom:416.098500px;}
.y11{bottom:424.723500px;}
.y3b{bottom:425.250000px;}
.y93{bottom:425.775000px;}
.y68{bottom:433.125000px;}
.yc0{bottom:433.423500px;}
.yc1{bottom:434.473500px;}
.y10{bottom:443.098500px;}
.y67{bottom:452.025000px;}
.y66{bottom:452.848500px;}
.ybf{bottom:460.950000px;}
.y92{bottom:467.098500px;}
.yf{bottom:468.750000px;}
.y3a{bottom:473.548500px;}
.ybe{bottom:479.325000px;}
.y65{bottom:479.848500px;}
.y90{bottom:484.348500px;}
.y91{bottom:487.650000px;}
.y39{bottom:493.048500px;}
.y38{bottom:493.275000px;}
.ye{bottom:495.973500px;}
.y64{bottom:498.450000px;}
.y63{bottom:499.575000px;}
.ybc{bottom:504.973500px;}
.ybd{bottom:506.325000px;}
.y8f{bottom:513.525000px;}
.yf1{bottom:515.025000px;}
.y37{bottom:521.098500px;}
.yd{bottom:522.450000px;}
.y62{bottom:527.098500px;}
.ybb{bottom:532.200000px;}
.y8e{bottom:532.423500px;}
.yf0{bottom:534.223500px;}
.y36{bottom:540.298500px;}
.y35{bottom:540.825000px;}
.y61{bottom:545.173500px;}
.y60{bottom:546.000000px;}
.y8c{bottom:548.098500px;}
.yc{bottom:549.450000px;}
.yb9{bottom:549.750000px;}
.yee{bottom:550.423500px;}
.yba{bottom:551.098500px;}
.y8d{bottom:551.325000px;}
.yef{bottom:552.598500px;}
.y34{bottom:568.650000px;}
.y5f{bottom:573.298500px;}
.y8b{bottom:575.923500px;}
.yb{bottom:576.450000px;}
.yb8{bottom:576.750000px;}
.yed{bottom:577.950000px;}
.y33{bottom:587.775000px;}
.y32{bottom:588.298500px;}
.y5e{bottom:591.900000px;}
.yb6{bottom:594.598500px;}
.yeb{bottom:594.973500px;}
.yb7{bottom:595.950000px;}
.y8a{bottom:596.173500px;}
.yec{bottom:597.150000px;}
.ya{bottom:602.625000px;}
.y5d{bottom:610.500000px;}
.y5c{bottom:611.625000px;}
.y89{bottom:614.548500px;}
.y31{bottom:616.125000px;}
.yb5{bottom:622.423500px;}
.yea{bottom:623.325000px;}
.y9{bottom:629.098500px;}
.y87{bottom:630.150000px;}
.y88{bottom:633.150000px;}
.y5b{bottom:639.150000px;}
.yb3{bottom:639.673500px;}
.ye8{bottom:639.750000px;}
.yb4{bottom:640.798500px;}
.ye9{bottom:641.700000px;}
.y30{bottom:651.750000px;}
.y5a{bottom:657.525000px;}
.y86{bottom:658.275000px;}
.ye7{bottom:666.525000px;}
.yb2{bottom:667.200000px;}
.y2f{bottom:670.950000px;}
.y2e{bottom:671.473500px;}
.y59{bottom:676.423500px;}
.ye5{bottom:684.298500px;}
.yaf{bottom:684.525000px;}
.yb0{bottom:684.750000px;}
.yb1{bottom:685.875000px;}
.ye6{bottom:686.473500px;}
.y85{bottom:692.548500px;}
.y58{bottom:695.548500px;}
.y2d{bottom:699.298500px;}
.yae{bottom:711.525000px;}
.ye4{bottom:711.900000px;}
.y84{bottom:713.098500px;}
.y6{bottom:714.150000px;}
.y57{bottom:714.450000px;}
.y7{bottom:714.673500px;}
.y8{bottom:714.973500px;}
.y56{bottom:715.275000px;}
.y2c{bottom:718.500000px;}
.y2b{bottom:719.025000px;}
.yad{bottom:730.423500px;}
.ye3{bottom:730.798500px;}
.y83{bottom:731.400000px;}
.y55{bottom:742.575000px;}
.y2a{bottom:747.075000px;}
.yab{bottom:747.673500px;}
.yac{bottom:748.798500px;}
.ye2{bottom:748.875000px;}
.y82{bottom:749.775000px;}
.y54{bottom:761.173500px;}
.ye0{bottom:765.075000px;}
.y80{bottom:765.150000px;}
.y5{bottom:765.750000px;}
.y29{bottom:765.973500px;}
.y28{bottom:766.500000px;}
.ye1{bottom:767.250000px;}
.y81{bottom:768.448500px;}
.yaa{bottom:774.675000px;}
.y53{bottom:779.848500px;}
.y52{bottom:780.900000px;}
.ydf{bottom:792.073500px;}
.ya9{bottom:793.348500px;}
.y27{bottom:794.323500px;}
.y7f{bottom:794.625000px;}
.y4{bottom:798.900000px;}
.y51{bottom:807.900000px;}
.ydd{bottom:809.625000px;}
.y7e{bottom:810.525000px;}
.ya7{bottom:810.598500px;}
.ya8{bottom:811.650000px;}
.yde{bottom:811.800000px;}
.y26{bottom:813.525000px;}
.y25{bottom:814.050000px;}
.y50{bottom:863.550000px;}
.yd9{bottom:863.848500px;}
.y4f{bottom:864.073500px;}
.y7b{bottom:864.525000px;}
.y4e{bottom:864.598500px;}
.ya5{bottom:865.425000px;}
.ya6{bottom:865.650000px;}
.yda{bottom:865.800000px;}
.y1{bottom:866.175000px;}
.y2{bottom:867.000000px;}
.ydb{bottom:867.150000px;}
.y3{bottom:867.223500px;}
.ydc{bottom:867.375000px;}
.y24{bottom:867.525000px;}
.y23{bottom:867.750000px;}
.y22{bottom:868.348500px;}
.y7c{bottom:869.698500px;}
.y7d{bottom:870.223500px;}
.h3{height:44.165039px;}
.h6{height:47.109375px;}
.h1{height:55.942383px;}
.h8{height:60.468750px;}
.hb{height:63.492188px;}
.h7{height:67.719727px;}
.h4{height:69.539062px;}
.ha{height:70.664062px;}
.h5{height:72.562500px;}
.h2{height:120.937500px;}
.h9{height:951.000000px;}
.h0{height:958.500000px;}
.hc{height:960.000000px;}
.w3{width:696.000000px;}
.w2{width:700.500000px;}
.w0{width:702.000000px;}
.w1{width:708.000000px;}
.x0{left:0.000000px;}
.x34{left:58.585500px;}
.x38{left:59.628000px;}
.x27{left:61.215000px;}
.x24{left:62.565000px;}
.x21{left:63.790500px;}
.x1c{left:64.810500px;}
.xb{left:67.669500px;}
.x1b{left:75.639000px;}
.x18{left:77.004000px;}
.x11{left:78.156000px;}
.x28{left:82.117500px;}
.x2d{left:83.400000px;}
.x2e{left:84.636000px;}
.x30{left:85.759500px;}
.x33{left:86.979000px;}
.x10{left:89.085000px;}
.x3b{left:90.300000px;}
.x26{left:91.528500px;}
.x23{left:92.551500px;}
.x22{left:93.628500px;}
.x1f{left:94.707000px;}
.xc{left:97.681500px;}
.x12{left:104.475000px;}
.x1a{left:105.807000px;}
.x16{left:107.260500px;}
.x29{left:108.300000px;}
.x37{left:109.675500px;}
.x25{left:113.157000px;}
.x20{left:114.550500px;}
.x31{left:116.307000px;}
.xd{left:118.515000px;}
.x19{left:126.357000px;}
.x17{left:127.440000px;}
.x3c{left:130.125000px;}
.x2c{left:133.435500px;}
.x2f{left:135.025500px;}
.x32{left:136.662000px;}
.x5{left:154.875000px;}
.x1{left:166.147500px;}
.x13{left:177.247500px;}
.x2a{left:181.522500px;}
.x39{left:201.225000px;}
.x3a{left:219.279000px;}
.x4{left:264.703500px;}
.x6{left:392.097000px;}
.x7{left:404.728500px;}
.x8{left:409.348500px;}
.x35{left:470.325000px;}
.x1d{left:477.075000px;}
.x2{left:520.243500px;}
.x3{left:525.150000px;}
.x14{left:531.343500px;}
.x15{left:536.250000px;}
.x2b{left:540.525000px;}
.x36{left:575.256000px;}
.x1e{left:582.231000px;}
.xe{left:583.723500px;}
.x9{left:605.662500px;}
.xa{left:612.075000px;}
.xf{left:613.480500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs2{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:98.000000pt;}
.yd8{bottom:98.198667pt;}
.ya4{bottom:98.666667pt;}
.y21{bottom:100.532000pt;}
.y4d{bottom:100.800000pt;}
.y79{bottom:114.532000pt;}
.yd7{bottom:115.266667pt;}
.ya3{bottom:116.865333pt;}
.y4c{bottom:117.865333pt;}
.yd4{bottom:130.398667pt;}
.yd5{bottom:130.600000pt;}
.y78{bottom:131.333333pt;}
.yd6{bottom:131.600000pt;}
.y77{bottom:131.800000pt;}
.ya2{bottom:133.466667pt;}
.y4b{bottom:135.133333pt;}
.y4a{bottom:135.333333pt;}
.yd3{bottom:154.600000pt;}
.ya1{bottom:154.800000pt;}
.y76{bottom:156.266667pt;}
.y49{bottom:160.333333pt;}
.y20{bottom:166.800000pt;}
.yd1{bottom:170.198667pt;}
.yd2{bottom:171.400000pt;}
.y75{bottom:172.598667pt;}
.y48{bottom:177.333333pt;}
.y47{bottom:177.865333pt;}
.y1e{bottom:182.666667pt;}
.y1f{bottom:183.598667pt;}
.y74{bottom:189.666667pt;}
.y73{bottom:190.400000pt;}
.ya0{bottom:193.466667pt;}
.yd0{bottom:194.000000pt;}
.y46{bottom:202.532000pt;}
.y1b{bottom:207.133333pt;}
.y9e{bottom:207.598667pt;}
.y1c{bottom:208.066667pt;}
.y1d{bottom:208.333333pt;}
.y9f{bottom:210.733333pt;}
.ycf{bottom:211.265333pt;}
.y72{bottom:214.598667pt;}
.y19{bottom:222.733333pt;}
.y1a{bottom:223.666667pt;}
.ycc{bottom:226.400000pt;}
.ycd{bottom:226.598667pt;}
.yce{bottom:227.598667pt;}
.y71{bottom:231.198667pt;}
.y9d{bottom:234.000000pt;}
.y45{bottom:234.265333pt;}
.y18{bottom:246.466667pt;}
.y70{bottom:248.000000pt;}
.y6f{bottom:248.666667pt;}
.ycb{bottom:250.598667pt;}
.y9c{bottom:250.800000pt;}
.y44{bottom:251.265333pt;}
.y43{bottom:251.733333pt;}
.y17{bottom:263.532000pt;}
.y9b{bottom:266.865333pt;}
.y6e{bottom:272.666667pt;}
.y42{bottom:276.466667pt;}
.y15{bottom:278.666667pt;}
.y16{bottom:279.598667pt;}
.yca{bottom:281.598667pt;}
.y9a{bottom:283.198667pt;}
.y41{bottom:293.532000pt;}
.y98{bottom:296.865333pt;}
.yc7{bottom:296.932000pt;}
.yc8{bottom:297.400000pt;}
.yc9{bottom:298.133333pt;}
.y99{bottom:299.733333pt;}
.y14{bottom:302.666667pt;}
.y6d{bottom:309.865333pt;}
.y40{bottom:310.800000pt;}
.y3f{bottom:311.066667pt;}
.yc6{bottom:314.000000pt;}
.y97{bottom:320.865333pt;}
.y6c{bottom:326.666667pt;}
.y6b{bottom:327.400000pt;}
.yc4{bottom:329.066667pt;}
.yc5{bottom:330.265333pt;}
.y3e{bottom:336.000000pt;}
.y96{bottom:339.865333pt;}
.y13{bottom:344.666667pt;}
.y6a{bottom:351.666667pt;}
.y3d{bottom:352.800000pt;}
.yc3{bottom:353.066667pt;}
.y3c{bottom:353.265333pt;}
.y94{bottom:353.532000pt;}
.y95{bottom:356.400000pt;}
.y12{bottom:361.466667pt;}
.y69{bottom:368.198667pt;}
.yc2{bottom:369.865333pt;}
.y11{bottom:377.532000pt;}
.y3b{bottom:378.000000pt;}
.y93{bottom:378.466667pt;}
.y68{bottom:385.000000pt;}
.yc0{bottom:385.265333pt;}
.yc1{bottom:386.198667pt;}
.y10{bottom:393.865333pt;}
.y67{bottom:401.800000pt;}
.y66{bottom:402.532000pt;}
.ybf{bottom:409.733333pt;}
.y92{bottom:415.198667pt;}
.yf{bottom:416.666667pt;}
.y3a{bottom:420.932000pt;}
.ybe{bottom:426.066667pt;}
.y65{bottom:426.532000pt;}
.y90{bottom:430.532000pt;}
.y91{bottom:433.466667pt;}
.y39{bottom:438.265333pt;}
.y38{bottom:438.466667pt;}
.ye{bottom:440.865333pt;}
.y64{bottom:443.066667pt;}
.y63{bottom:444.066667pt;}
.ybc{bottom:448.865333pt;}
.ybd{bottom:450.066667pt;}
.y8f{bottom:456.466667pt;}
.yf1{bottom:457.800000pt;}
.y37{bottom:463.198667pt;}
.yd{bottom:464.400000pt;}
.y62{bottom:468.532000pt;}
.ybb{bottom:473.066667pt;}
.y8e{bottom:473.265333pt;}
.yf0{bottom:474.865333pt;}
.y36{bottom:480.265333pt;}
.y35{bottom:480.733333pt;}
.y61{bottom:484.598667pt;}
.y60{bottom:485.333333pt;}
.y8c{bottom:487.198667pt;}
.yc{bottom:488.400000pt;}
.yb9{bottom:488.666667pt;}
.yee{bottom:489.265333pt;}
.yba{bottom:489.865333pt;}
.y8d{bottom:490.066667pt;}
.yef{bottom:491.198667pt;}
.y34{bottom:505.466667pt;}
.y5f{bottom:509.598667pt;}
.y8b{bottom:511.932000pt;}
.yb{bottom:512.400000pt;}
.yb8{bottom:512.666667pt;}
.yed{bottom:513.733333pt;}
.y33{bottom:522.466667pt;}
.y32{bottom:522.932000pt;}
.y5e{bottom:526.133333pt;}
.yb6{bottom:528.532000pt;}
.yeb{bottom:528.865333pt;}
.yb7{bottom:529.733333pt;}
.y8a{bottom:529.932000pt;}
.yec{bottom:530.800000pt;}
.ya{bottom:535.666667pt;}
.y5d{bottom:542.666667pt;}
.y5c{bottom:543.666667pt;}
.y89{bottom:546.265333pt;}
.y31{bottom:547.666667pt;}
.yb5{bottom:553.265333pt;}
.yea{bottom:554.066667pt;}
.y9{bottom:559.198667pt;}
.y87{bottom:560.133333pt;}
.y88{bottom:562.800000pt;}
.y5b{bottom:568.133333pt;}
.yb3{bottom:568.598667pt;}
.ye8{bottom:568.666667pt;}
.yb4{bottom:569.598667pt;}
.ye9{bottom:570.400000pt;}
.y30{bottom:579.333333pt;}
.y5a{bottom:584.466667pt;}
.y86{bottom:585.133333pt;}
.ye7{bottom:592.466667pt;}
.yb2{bottom:593.066667pt;}
.y2f{bottom:596.400000pt;}
.y2e{bottom:596.865333pt;}
.y59{bottom:601.265333pt;}
.ye5{bottom:608.265333pt;}
.yaf{bottom:608.466667pt;}
.yb0{bottom:608.666667pt;}
.yb1{bottom:609.666667pt;}
.ye6{bottom:610.198667pt;}
.y85{bottom:615.598667pt;}
.y58{bottom:618.265333pt;}
.y2d{bottom:621.598667pt;}
.yae{bottom:632.466667pt;}
.ye4{bottom:632.800000pt;}
.y84{bottom:633.865333pt;}
.y6{bottom:634.800000pt;}
.y57{bottom:635.066667pt;}
.y7{bottom:635.265333pt;}
.y8{bottom:635.532000pt;}
.y56{bottom:635.800000pt;}
.y2c{bottom:638.666667pt;}
.y2b{bottom:639.133333pt;}
.yad{bottom:649.265333pt;}
.ye3{bottom:649.598667pt;}
.y83{bottom:650.133333pt;}
.y55{bottom:660.066667pt;}
.y2a{bottom:664.066667pt;}
.yab{bottom:664.598667pt;}
.yac{bottom:665.598667pt;}
.ye2{bottom:665.666667pt;}
.y82{bottom:666.466667pt;}
.y54{bottom:676.598667pt;}
.ye0{bottom:680.066667pt;}
.y80{bottom:680.133333pt;}
.y5{bottom:680.666667pt;}
.y29{bottom:680.865333pt;}
.y28{bottom:681.333333pt;}
.ye1{bottom:682.000000pt;}
.y81{bottom:683.065333pt;}
.yaa{bottom:688.600000pt;}
.y53{bottom:693.198667pt;}
.y52{bottom:694.133333pt;}
.ydf{bottom:704.065333pt;}
.ya9{bottom:705.198667pt;}
.y27{bottom:706.065333pt;}
.y7f{bottom:706.333333pt;}
.y4{bottom:710.133333pt;}
.y51{bottom:718.133333pt;}
.ydd{bottom:719.666667pt;}
.y7e{bottom:720.466667pt;}
.ya7{bottom:720.532000pt;}
.ya8{bottom:721.466667pt;}
.yde{bottom:721.600000pt;}
.y26{bottom:723.133333pt;}
.y25{bottom:723.600000pt;}
.y50{bottom:767.600000pt;}
.yd9{bottom:767.865333pt;}
.y4f{bottom:768.065333pt;}
.y7b{bottom:768.466667pt;}
.y4e{bottom:768.532000pt;}
.ya5{bottom:769.266667pt;}
.ya6{bottom:769.466667pt;}
.yda{bottom:769.600000pt;}
.y1{bottom:769.933333pt;}
.y2{bottom:770.666667pt;}
.ydb{bottom:770.800000pt;}
.y3{bottom:770.865333pt;}
.ydc{bottom:771.000000pt;}
.y24{bottom:771.133333pt;}
.y23{bottom:771.333333pt;}
.y22{bottom:771.865333pt;}
.y7c{bottom:773.065333pt;}
.y7d{bottom:773.532000pt;}
.h3{height:39.257812pt;}
.h6{height:41.875000pt;}
.h1{height:49.726562pt;}
.h8{height:53.750000pt;}
.hb{height:56.437500pt;}
.h7{height:60.195312pt;}
.h4{height:61.812500pt;}
.ha{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2{height:107.500000pt;}
.h9{height:845.333333pt;}
.h0{height:852.000000pt;}
.hc{height:853.333333pt;}
.w3{width:618.666667pt;}
.w2{width:622.666667pt;}
.w0{width:624.000000pt;}
.w1{width:629.333333pt;}
.x0{left:0.000000pt;}
.x34{left:52.076000pt;}
.x38{left:53.002667pt;}
.x27{left:54.413333pt;}
.x24{left:55.613333pt;}
.x21{left:56.702667pt;}
.x1c{left:57.609333pt;}
.xb{left:60.150667pt;}
.x1b{left:67.234667pt;}
.x18{left:68.448000pt;}
.x11{left:69.472000pt;}
.x28{left:72.993333pt;}
.x2d{left:74.133333pt;}
.x2e{left:75.232000pt;}
.x30{left:76.230667pt;}
.x33{left:77.314667pt;}
.x10{left:79.186667pt;}
.x3b{left:80.266667pt;}
.x26{left:81.358667pt;}
.x23{left:82.268000pt;}
.x22{left:83.225333pt;}
.x1f{left:84.184000pt;}
.xc{left:86.828000pt;}
.x12{left:92.866667pt;}
.x1a{left:94.050667pt;}
.x16{left:95.342667pt;}
.x29{left:96.266667pt;}
.x37{left:97.489333pt;}
.x25{left:100.584000pt;}
.x20{left:101.822667pt;}
.x31{left:103.384000pt;}
.xd{left:105.346667pt;}
.x19{left:112.317333pt;}
.x17{left:113.280000pt;}
.x3c{left:115.666667pt;}
.x2c{left:118.609333pt;}
.x2f{left:120.022667pt;}
.x32{left:121.477333pt;}
.x5{left:137.666667pt;}
.x1{left:147.686667pt;}
.x13{left:157.553333pt;}
.x2a{left:161.353333pt;}
.x39{left:178.866667pt;}
.x3a{left:194.914667pt;}
.x4{left:235.292000pt;}
.x6{left:348.530667pt;}
.x7{left:359.758667pt;}
.x8{left:363.865333pt;}
.x35{left:418.066667pt;}
.x1d{left:424.066667pt;}
.x2{left:462.438667pt;}
.x3{left:466.800000pt;}
.x14{left:472.305333pt;}
.x15{left:476.666667pt;}
.x2b{left:480.466667pt;}
.x36{left:511.338667pt;}
.x1e{left:517.538667pt;}
.xe{left:518.865333pt;}
.x9{left:538.366667pt;}
.xa{left:544.066667pt;}
.xf{left:545.316000pt;}
}

