
    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_95e2fb4888ef5be51b38fd0a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_afe34c13d92f34d82b7a9b8c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ce043ba63abccf3dd685e4c6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_884e6b6233b2d7e494d8b892.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ce5dcefb79eeb9323fea15e4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5db6b84938dc2049796977ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m51{transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.482500,-0.250000,0.000000,0,0);}
.m50{transform:matrix(0.000000,0.457500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.457500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.457500,-0.250000,0.000000,0,0);}
.m4c{transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.450000,-0.250000,0.000000,0,0);}
.m57{transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.437500,-0.250000,0.000000,0,0);}
.m46{transform:matrix(0.000000,0.422500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.422500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.422500,-0.250000,0.000000,0,0);}
.m34{transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.417500,-0.250000,0.000000,0,0);}
.m38{transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.410000,-0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.000000,0.405000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.405000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.405000,-0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.400000,-0.250000,0.000000,0,0);}
.m42{transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.392500,-0.250000,0.000000,0,0);}
.m52{transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);}
.m4e{transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.387500,-0.250000,0.000000,0,0);}
.m5c{transform:matrix(0.000000,0.385000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.385000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.385000,-0.250000,0.000000,0,0);}
.m47{transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.382500,-0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.375000,-0.250000,0.000000,0,0);}
.m40{transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.370000,-0.250000,0.000000,0,0);}
.m4d{transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.365000,-0.250000,0.000000,0,0);}
.m59{transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.362500,-0.250000,0.000000,0,0);}
.m65{transform:matrix(0.000000,0.357500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.357500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.357500,-0.250000,0.000000,0,0);}
.m4b{transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.350000,-0.250000,0.000000,0,0);}
.m4a{transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.345000,-0.250000,0.000000,0,0);}
.m43{transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.332500,-0.250000,0.000000,0,0);}
.m48{transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.327500,-0.250000,0.000000,0,0);}
.m5a{transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.325000,-0.250000,0.000000,0,0);}
.m4f{transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.317500,-0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.312500,-0.250000,0.000000,0,0);}
.m58{transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.307500,-0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.300000,-0.250000,0.000000,0,0);}
.m3c{transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.295000,-0.250000,0.000000,0,0);}
.m36{transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.292500,-0.250000,0.000000,0,0);}
.m61{transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.287500,-0.250000,0.000000,0,0);}
.m55{transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.285000,-0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5d{transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.235000,-0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.230000,-0.250000,0.000000,0,0);}
.m5b{transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.227500,-0.250000,0.000000,0,0);}
.m31{transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.220000,-0.250000,0.000000,0,0);}
.m41{transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.207500,-0.250000,0.000000,0,0);}
.m44{transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.200000,-0.250000,0.000000,0,0);}
.m64{transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.195000,-0.250000,0.000000,0,0);}
.m3b{transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.187500,-0.250000,0.000000,0,0);}
.m49{transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.177500,-0.250000,0.000000,0,0);}
.m45{transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.167500,-0.250000,0.000000,0,0);}
.m62{transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.157500,-0.250000,0.000000,0,0);}
.m5f{transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.150000,-0.250000,0.000000,0,0);}
.m63{transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.145000,-0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.142500,-0.250000,0.000000,0,0);}
.m5e{transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.140000,-0.250000,0.000000,0,0);}
.m3d{transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.125000,-0.250000,0.000000,0,0);}
.m60{transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.112500,-0.250000,0.000000,0,0);}
.m54{transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.095000,-0.250000,0.000000,0,0);}
.m53{transform:matrix(0.000000,0.057500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.057500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.057500,-0.250000,0.000000,0,0);}
.m56{transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.042500,-0.250000,0.000000,0,0);}
.m28{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mf{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m19{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-30.000000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:332.400000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws25{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.000000px;}
.ws13{word-spacing:-7.500000px;}
.wsa{word-spacing:-2.608801px;}
.ws20{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.193571px;}
.ws1e{word-spacing:-0.396982px;}
.ws3{word-spacing:-0.163716px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:0.501122px;}
.ws9{word-spacing:0.751199px;}
.ws1f{word-spacing:1.020000px;}
.ws27{word-spacing:1.304527px;}
.ws1{word-spacing:1.334201px;}
.ws24{word-spacing:3.420000px;}
.wsf{word-spacing:3.589592px;}
.wsc{word-spacing:4.272593px;}
.ws21{word-spacing:4.320000px;}
.ws23{word-spacing:6.360000px;}
.ws22{word-spacing:7.020000px;}
.ws1d{word-spacing:7.680000px;}
.ws10{word-spacing:8.000000px;}
.ws7{word-spacing:9.000000px;}
.ws1c{word-spacing:9.360000px;}
.ws1b{word-spacing:11.952000px;}
.ws26{word-spacing:12.360000px;}
.wsb{word-spacing:13.680000px;}
.ws0{word-spacing:14.982000px;}
.ws5{word-spacing:15.000000px;}
.ws15{word-spacing:30.600000px;}
.wse{word-spacing:37.966545px;}
.ws1a{word-spacing:38.233333px;}
.ws12{word-spacing:85.524000px;}
.ws14{word-spacing:106.176667px;}
.ws11{word-spacing:131.028000px;}
.ws16{word-spacing:132.000000px;}
.ws17{word-spacing:146.490000px;}
.ws19{word-spacing:161.028887px;}
.ws18{word-spacing:200.088571px;}
._b{margin-left:-23.966939px;}
._9{margin-left:-22.210559px;}
._d{margin-left:-19.965936px;}
._c{margin-left:-16.486131px;}
._4{margin-left:-15.379772px;}
._0{margin-left:-13.726833px;}
._1{margin-left:-10.790028px;}
._e{margin-left:-7.364954px;}
._10{margin-left:-6.334875px;}
._2{margin-left:-3.959694px;}
._f{margin-left:-1.231791px;}
._7{width:2.414571px;}
._3{width:3.749322px;}
._a{width:6.086277px;}
._8{width:7.479603px;}
._5{width:9.229012px;}
._6{width:10.717959px;}
._11{width:15.501122px;}
._12{width:17.963018px;}
._13{width:22.020000px;}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:24.000000px;}
.fs7{font-size:30.000000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:26.481015px;}
.y5b{bottom:74.481015px;}
.ycd{bottom:80.481015px;}
.y1b{bottom:86.481015px;}
.y5a{bottom:92.481015px;}
.ycc{bottom:98.481015px;}
.y59{bottom:110.481015px;}
.ycb{bottom:113.481015px;}
.y3b{bottom:114.981015px;}
.y58{bottom:126.981015px;}
.yca{bottom:128.481015px;}
.y3a{bottom:131.481015px;}
.y1a{bottom:132.981015px;}
.y57{bottom:144.981015px;}
.yc9{bottom:146.481015px;}
.y39{bottom:149.481015px;}
.y19{bottom:150.981015px;}
.yc8{bottom:161.481015px;}
.y56{bottom:162.981015px;}
.y38{bottom:165.981015px;}
.y18{bottom:168.981015px;}
.yc7{bottom:176.481015px;}
.y55{bottom:177.981015px;}
.y89{bottom:178.960515px;}
.y85{bottom:180.460515px;}
.y8a{bottom:181.960515px;}
.ya1{bottom:184.960515px;}
.y17{bottom:185.481015px;}
.yc6{bottom:192.981015px;}
.y9e{bottom:193.205115px;}
.y54{bottom:197.481015px;}
.ya2{bottom:198.460515px;}
.y98{bottom:199.960515px;}
.y37{bottom:201.981015px;}
.y76{bottom:202.960515px;}
.y16{bottom:203.481015px;}
.y72{bottom:204.460515px;}
.y79{bottom:205.960515px;}
.yc5{bottom:209.481015px;}
.y53{bottom:213.981015px;}
.ya7{bottom:219.460515px;}
.y36{bottom:219.981015px;}
.ya9{bottom:220.960515px;}
.y15{bottom:221.481015px;}
.yc4{bottom:224.481015px;}
.y6d{bottom:229.960515px;}
.y71{bottom:231.460515px;}
.y52{bottom:231.981015px;}
.y78{bottom:234.460515px;}
.y7e{bottom:235.960515px;}
.y82{bottom:237.460515px;}
.y35{bottom:237.981015px;}
.y80{bottom:238.960515px;}
.y90{bottom:240.460515px;}
.y97{bottom:241.960515px;}
.yc3{bottom:242.481015px;}
.ya0{bottom:244.960515px;}
.ya6{bottom:247.960515px;}
.y51{bottom:248.481015px;}
.ya8{bottom:249.460515px;}
.y34{bottom:254.481015px;}
.y93{bottom:255.460515px;}
.y14{bottom:255.981015px;}
.yc2{bottom:257.481015px;}
.y6a{bottom:258.460515px;}
.y6b{bottom:259.960515px;}
.y94{bottom:261.460515px;}
.y7d{bottom:264.460515px;}
.y50{bottom:267.981015px;}
.y75{bottom:268.960515px;}
.y9c{bottom:270.460515px;}
.y77{bottom:271.960515px;}
.y33{bottom:272.481015px;}
.y6f{bottom:276.460515px;}
.y7f{bottom:279.460515px;}
.y8f{bottom:280.960515px;}
.y81{bottom:282.460515px;}
.y88{bottom:283.960515px;}
.y96{bottom:285.460515px;}
.y4f{bottom:285.981015px;}
.y9b{bottom:286.960515px;}
.yc1{bottom:290.481015px;}
.y4e{bottom:302.481015px;}
.yc0{bottom:305.481015px;}
.y32{bottom:306.981015px;}
.y7b{bottom:307.960515px;}
.y13{bottom:308.481015px;}
.y7c{bottom:309.460515px;}
.y84{bottom:310.960515px;}
.y8e{bottom:312.460515px;}
.ybf{bottom:321.981015px;}
.y60{bottom:325.960515px;}
.y12{bottom:326.481015px;}
.y95{bottom:327.460515px;}
.y9f{bottom:328.960515px;}
.y99{bottom:330.460515px;}
.y8c{bottom:333.460515px;}
.ybe{bottom:336.981015px;}
.y87{bottom:337.960515px;}
.y8d{bottom:339.460515px;}
.y8b{bottom:340.960515px;}
.y11{bottom:344.481015px;}
.y5f{bottom:348.460515px;}
.y10{bottom:360.981015px;}
.ya5{bottom:363.460515px;}
.y4d{bottom:369.981015px;}
.y70{bottom:375.460515px;}
.yf{bottom:378.981015px;}
.y83{bottom:379.960515px;}
.y5e{bottom:381.460515px;}
.y4c{bottom:384.981015px;}
.y73{bottom:388.960515px;}
.y74{bottom:390.460515px;}
.y6c{bottom:391.960515px;}
.y6e{bottom:393.460515px;}
.y86{bottom:394.960515px;}
.y31{bottom:395.481015px;}
.ye{bottom:396.981015px;}
.y5d{bottom:397.960515px;}
.y4b{bottom:399.981015px;}
.y9d{bottom:400.960515px;}
.y9a{bottom:403.960515px;}
.ya3{bottom:405.460515px;}
.ya4{bottom:406.960515px;}
.yd{bottom:414.981015px;}
.y67{bottom:418.960515px;}
.y62{bottom:420.460515px;}
.y69{bottom:421.960515px;}
.y4a{bottom:422.481015px;}
.ybd{bottom:429.981015px;}
.yc{bottom:431.481015px;}
.y64{bottom:435.460515px;}
.y7a{bottom:436.960515px;}
.y92{bottom:439.960515px;}
.y61{bottom:441.460515px;}
.y91{bottom:445.960515px;}
.y65{bottom:447.460515px;}
.ybc{bottom:447.981015px;}
.y66{bottom:448.960515px;}
.yb{bottom:449.481015px;}
.y63{bottom:450.460515px;}
.y49{bottom:450.981015px;}
.y68{bottom:451.960515px;}
.y30{bottom:465.981015px;}
.ya{bottom:467.481015px;}
.y48{bottom:477.981015px;}
.y9{bottom:483.981015px;}
.y47{bottom:494.481015px;}
.y2f{bottom:500.481015px;}
.y8{bottom:501.981015px;}
.y46{bottom:507.981015px;}
.yab{bottom:514.960515px;}
.yb5{bottom:515.260515px;}
.yac{bottom:516.460515px;}
.yae{bottom:517.960515px;}
.y7{bottom:518.481015px;}
.yad{bottom:519.460515px;}
.yb2{bottom:520.960515px;}
.yb3{bottom:522.460515px;}
.y45{bottom:522.981015px;}
.yb4{bottom:526.960515px;}
.y2e{bottom:536.481015px;}
.y6{bottom:537.981015px;}
.y44{bottom:552.981015px;}
.yaf{bottom:553.960515px;}
.yb1{bottom:555.460515px;}
.y5{bottom:555.981015px;}
.yb0{bottom:558.460515px;}
.y2d{bottom:572.481015px;}
.y43{bottom:579.981015px;}
.y2c{bottom:590.481015px;}
.yaa{bottom:603.460515px;}
.y2b{bottom:606.981015px;}
.y5c{bottom:612.981015px;}
.y42{bottom:621.981015px;}
.ybb{bottom:624.981015px;}
.y2a{bottom:641.481015px;}
.yba{bottom:657.981015px;}
.y29{bottom:677.481015px;}
.yd6{bottom:692.481015px;}
.yb9{bottom:693.981015px;}
.y28{bottom:695.481015px;}
.yd5{bottom:708.981015px;}
.y41{bottom:710.481015px;}
.y27{bottom:711.981015px;}
.y40{bottom:717.981015px;}
.yd4{bottom:723.981015px;}
.y3f{bottom:726.981015px;}
.y26{bottom:729.981015px;}
.y3e{bottom:734.481015px;}
.y4{bottom:738.981015px;}
.yd3{bottom:741.981015px;}
.yb8{bottom:746.481015px;}
.y25{bottom:747.981015px;}
.y3d{bottom:753.981015px;}
.yd2{bottom:756.981015px;}
.y24{bottom:764.481015px;}
.yd1{bottom:771.981015px;}
.y23{bottom:782.481015px;}
.yd0{bottom:789.981015px;}
.y3{bottom:791.481015px;}
.y22{bottom:800.481015px;}
.ycf{bottom:804.981015px;}
.yb7{bottom:816.981015px;}
.y21{bottom:818.481015px;}
.yce{bottom:819.981015px;}
.y2{bottom:827.481015px;}
.yb6{bottom:833.481015px;}
.y20{bottom:836.481015px;}
.y1{bottom:852.981015px;}
.y1f{bottom:854.481015px;}
.y3c{bottom:855.981015px;}
.y1d{bottom:887.481015px;}
.y1e{bottom:888.981015px;}
.h8{height:24.187500px;}
.h7{height:25.031250px;}
.h10{height:30.234375px;}
.h12{height:35.314453px;}
.hf{height:35.332031px;}
.h15{height:36.281250px;}
.h13{height:41.200195px;}
.ha{height:47.085938px;}
.h9{height:47.109375px;}
.h16{height:50.062500px;}
.hb{height:52.971680px;}
.h5{height:52.998047px;}
.h4{height:56.320312px;}
.h3{height:58.857422px;}
.h6{height:58.886719px;}
.h11{height:60.234375px;}
.hc{height:64.743164px;}
.h14{height:75.093750px;}
.h2{height:100.057617px;}
.he{height:719.250000px;}
.hd{height:719.421030px;}
.h0{height:972.721515px;}
.h1{height:972.750000px;}
.w1{width:719.250000px;}
.w0{width:719.421030px;}
.w2{width:972.721515px;}
.w3{width:972.750000px;}
.x0{left:0.000000px;}
.x14b{left:75.981015px;}
.x14a{left:78.981015px;}
.x16{left:82.960515px;}
.x66{left:84.460515px;}
.x5e{left:85.960515px;}
.x152{left:90.460515px;}
.x155{left:91.960515px;}
.x15f{left:93.460515px;}
.x149{left:95.481015px;}
.x17{left:97.960515px;}
.x91{left:103.960515px;}
.x20{left:105.460515px;}
.xf{left:106.960515px;}
.x71{left:108.460515px;}
.x11a{left:109.960515px;}
.x127{left:111.460515px;}
.x11e{left:112.960515px;}
.x7e{left:114.460515px;}
.x92{left:115.960515px;}
.x4f{left:117.460515px;}
.x1{left:120.460515px;}
.x5f{left:126.460515px;}
.x10{left:127.960515px;}
.x72{left:129.460515px;}
.x77{left:130.960515px;}
.xa1{left:132.460515px;}
.x8d{left:133.960515px;}
.x7f{left:135.460515px;}
.xd3{left:136.960515px;}
.x2a{left:138.460515px;}
.x60{left:139.960515px;}
.xb7{left:141.460515px;}
.x12e{left:142.960515px;}
.x7{left:144.460515px;}
.x162{left:145.960515px;}
.xf2{left:147.460515px;}
.xda{left:148.960515px;}
.x8e{left:150.460515px;}
.xa8{left:151.960515px;}
.x160{left:153.460515px;}
.x56{left:154.960515px;}
.x21{left:156.460515px;}
.x111{left:157.960515px;}
.x36{left:159.460515px;}
.xc8{left:160.960515px;}
.x49{left:162.460515px;}
.xed{left:163.960515px;}
.x78{left:165.460515px;}
.x102{left:166.960515px;}
.xf3{left:168.460515px;}
.xa2{left:169.960515px;}
.xb8{left:171.460515px;}
.x10f{left:172.960515px;}
.x50{left:174.460515px;}
.x57{left:175.960515px;}
.xe9{left:177.460515px;}
.x6d{left:178.960515px;}
.x32{left:180.460515px;}
.x85{left:181.960515px;}
.xbc{left:184.960515px;}
.xb3{left:186.460515px;}
.x122{left:187.960515px;}
.xa9{left:189.460515px;}
.xff{left:190.960515px;}
.x8{left:192.460515px;}
.x4a{left:193.960515px;}
.x161{left:195.460515px;}
.x3b{left:196.960515px;}
.x18{left:198.460515px;}
.x3c{left:199.960515px;}
.x61{left:201.460515px;}
.x96{left:202.960515px;}
.xf4{left:204.460515px;}
.xf8{left:205.960515px;}
.xc6{left:207.460515px;}
.xa3{left:208.960515px;}
.x2b{left:210.460515px;}
.x15d{left:211.960515px;}
.x11{left:213.460515px;}
.xe2{left:214.960515px;}
.x67{left:216.460515px;}
.xb4{left:217.960515px;}
.x97{left:219.460515px;}
.x134{left:220.960515px;}
.xf5{left:222.460515px;}
.x6e{left:223.960515px;}
.x80{left:225.460515px;}
.xaa{left:226.960515px;}
.xc7{left:228.460515px;}
.x3d{left:229.960515px;}
.x12c{left:231.460515px;}
.xa4{left:232.960515px;}
.x15a{left:234.460515px;}
.x88{left:235.960515px;}
.x112{left:237.460515px;}
.xe3{left:238.960515px;}
.xc9{left:240.460515px;}
.x93{left:241.960515px;}
.xde{left:243.460515px;}
.x19{left:244.960515px;}
.x2{left:246.460515px;}
.x22{left:247.960515px;}
.xab{left:249.460515px;}
.x62{left:250.960515px;}
.x58{left:252.460515px;}
.x15e{left:253.960515px;}
.xdc{left:255.460515px;}
.x9{left:256.960515px;}
.x2c{left:258.460515px;}
.x137{left:259.960515px;}
.x4b{left:261.460515px;}
.x11b{left:262.960515px;}
.xfd{left:264.460515px;}
.x105{left:265.960515px;}
.x3e{left:267.460515px;}
.x11c{left:268.960515px;}
.x23{left:270.460515px;}
.xb5{left:271.960515px;}
.x2d{left:273.460515px;}
.xc{left:274.960515px;}
.x68{left:276.460515px;}
.xf9{left:277.960515px;}
.xa{left:280.960515px;}
.x94{left:282.460515px;}
.x124{left:283.960515px;}
.xee{left:285.460515px;}
.x12{left:286.960515px;}
.x24{left:288.460515px;}
.x69{left:289.960515px;}
.x118{left:291.460515px;}
.x1a{left:292.960515px;}
.x3f{left:295.960515px;}
.x81{left:297.460515px;}
.xd4{left:298.960515px;}
.xfe{left:300.460515px;}
.xc2{left:301.960515px;}
.x10e{left:303.460515px;}
.x6{left:304.960515px;}
.x98{left:306.460515px;}
.x8f{left:307.960515px;}
.x44{left:309.460515px;}
.x82{left:310.960515px;}
.x1b{left:312.460515px;}
.x59{left:313.960515px;}
.x11f{left:315.460515px;}
.x12b{left:316.960515px;}
.xc3{left:318.460515px;}
.x12f{left:319.960515px;}
.xe4{left:321.460515px;}
.x9f{left:322.960515px;}
.x63{left:324.460515px;}
.x89{left:325.960515px;}
.x51{left:327.460515px;}
.x6f{left:328.960515px;}
.xd{left:330.460515px;}
.x6a{left:331.960515px;}
.xdb{left:333.460515px;}
.x106{left:334.960515px;}
.xd7{left:336.460515px;}
.x125{left:337.960515px;}
.xdd{left:339.460515px;}
.xa0{left:340.960515px;}
.x4c{left:342.460515px;}
.x158{left:343.960515px;}
.x1c{left:345.460515px;}
.x154{left:346.960515px;}
.x37{left:348.460515px;}
.xd0{left:349.960515px;}
.xac{left:351.460515px;}
.xdf{left:352.960515px;}
.x73{left:354.460515px;}
.x95{left:355.960515px;}
.x79{left:357.460515px;}
.xec{left:358.960515px;}
.xe{left:360.460515px;}
.x25{left:361.960515px;}
.x13{left:363.460515px;}
.xad{left:364.960515px;}
.x2e{left:366.460515px;}
.x1d{left:367.960515px;}
.x40{left:369.460515px;}
.x70{left:370.960515px;}
.xd1{left:372.460515px;}
.x64{left:373.960515px;}
.x113{left:375.460515px;}
.x74{left:376.960515px;}
.xef{left:378.460515px;}
.x107{left:379.960515px;}
.x131{left:381.460515px;}
.x7a{left:382.960515px;}
.x15b{left:384.460515px;}
.x99{left:385.960515px;}
.x128{left:387.460515px;}
.x41{left:388.960515px;}
.x116{left:390.460515px;}
.x1e{left:391.960515px;}
.x100{left:393.460515px;}
.x52{left:394.960515px;}
.x5a{left:396.460515px;}
.x159{left:397.960515px;}
.x138{left:399.460515px;}
.x151{left:400.960515px;}
.x8a{left:402.460515px;}
.x10a{left:403.960515px;}
.xf0{left:405.460515px;}
.x83{left:406.960515px;}
.x15c{left:408.460515px;}
.x2f{left:409.960515px;}
.x148{left:411.981015px;}
.x53{left:414.460515px;}
.x6b{left:415.960515px;}
.xe8{left:417.460515px;}
.x114{left:418.960515px;}
.x9a{left:420.460515px;}
.x26{left:421.960515px;}
.x8b{left:423.460515px;}
.x13a{left:424.960515px;}
.x38{left:426.460515px;}
.xb9{left:427.960515px;}
.x30{left:429.460515px;}
.x75{left:430.960515px;}
.x3{left:432.460515px;}
.x129{left:433.960515px;}
.x9b{left:435.460515px;}
.x5b{left:436.960515px;}
.xc4{left:438.460515px;}
.x6c{left:439.960515px;}
.x7b{left:441.460515px;}
.xca{left:442.960515px;}
.x115{left:444.460515px;}
.x65{left:445.960515px;}
.x132{left:447.460515px;}
.xae{left:448.960515px;}
.x27{left:450.460515px;}
.xe5{left:451.960515px;}
.x33{left:454.960515px;}
.xcc{left:456.460515px;}
.xb6{left:457.960515px;}
.x9c{left:459.460515px;}
.xc5{left:460.960515px;}
.xea{left:462.460515px;}
.xd2{left:463.960515px;}
.x120{left:465.460515px;}
.x4{left:466.960515px;}
.xe6{left:468.460515px;}
.x117{left:469.960515px;}
.xd8{left:471.460515px;}
.x14{left:472.960515px;}
.xd5{left:474.460515px;}
.xbd{left:475.960515px;}
.xcd{left:478.960515px;}
.x84{left:480.460515px;}
.xa5{left:481.960515px;}
.x119{left:483.460515px;}
.xb{left:484.960515px;}
.x31{left:486.460515px;}
.x8c{left:487.960515px;}
.x139{left:489.460515px;}
.xf1{left:490.960515px;}
.x4d{left:492.460515px;}
.x12a{left:493.960515px;}
.x9d{left:495.460515px;}
.x11d{left:496.960515px;}
.x126{left:498.460515px;}
.xf6{left:499.960515px;}
.xc0{left:501.460515px;}
.x135{left:502.960515px;}
.xe0{left:504.460515px;}
.x54{left:507.460515px;}
.xfb{left:508.960515px;}
.xaf{left:510.460515px;}
.x1f{left:511.960515px;}
.xba{left:513.460515px;}
.x45{left:514.960515px;}
.x15{left:516.460515px;}
.x28{left:517.960515px;}
.x12d{left:519.460515px;}
.xe7{left:520.960515px;}
.x86{left:523.960515px;}
.x55{left:525.460515px;}
.x5c{left:526.960515px;}
.xb0{left:528.460515px;}
.x108{left:529.960515px;}
.x103{left:531.460515px;}
.xa6{left:532.960515px;}
.x157{left:534.460515px;}
.x29{left:535.960515px;}
.x46{left:537.460515px;}
.x5{left:538.960515px;}
.x130{left:540.460515px;}
.xd9{left:541.960515px;}
.x109{left:543.460515px;}
.x164{left:544.960515px;}
.x136{left:546.460515px;}
.x10b{left:547.960515px;}
.x150{left:549.981015px;}
.x7c{left:552.460515px;}
.x87{left:553.960515px;}
.xa7{left:555.460515px;}
.xd6{left:556.960515px;}
.x166{left:558.460515px;}
.x34{left:561.460515px;}
.x47{left:562.960515px;}
.x90{left:564.460515px;}
.x5d{left:567.460515px;}
.xce{left:568.960515px;}
.x42{left:570.460515px;}
.xf7{left:571.960515px;}
.x156{left:574.960515px;}
.xb1{left:576.460515px;}
.x4e{left:577.960515px;}
.x9e{left:579.460515px;}
.x39{left:580.960515px;}
.x10c{left:582.460515px;}
.x163{left:583.960515px;}
.xeb{left:585.460515px;}
.x76{left:586.960515px;}
.x101{left:588.460515px;}
.x7d{left:589.960515px;}
.x121{left:591.460515px;}
.xc1{left:592.960515px;}
.x104{left:594.460515px;}
.x153{left:595.960515px;}
.x10d{left:597.460515px;}
.x35{left:598.493715px;}
.x3a{left:599.510115px;}
.x43{left:600.569115px;}
.x48{left:601.591815px;}
.x123{left:602.632155px;}
.x133{left:603.873015px;}
.xfa{left:607.960515px;}
.xe1{left:609.460515px;}
.xcb{left:610.960515px;}
.x110{left:612.460515px;}
.xbe{left:615.460515px;}
.xfc{left:618.460515px;}
.xb2{left:619.960515px;}
.xbb{left:621.460515px;}
.x165{left:626.885715px;}
.x14f{left:629.481015px;}
.xcf{left:631.978515px;}
.xbf{left:634.010115px;}
.x14e{left:638.481015px;}
.x14d{left:647.481015px;}
.x147{left:734.481015px;}
.x146{left:738.981015px;}
.x145{left:743.481015px;}
.x144{left:749.481015px;}
.x143{left:755.481015px;}
.x142{left:762.981015px;}
.x141{left:770.481015px;}
.x140{left:780.981015px;}
.x13f{left:789.981015px;}
.x13e{left:803.481015px;}
.x13d{left:819.981015px;}
.x13c{left:837.981015px;}
.x14c{left:879.981015px;}
.x13b{left:887.481015px;}
@media print{
.v1{vertical-align:-26.666667pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:295.466667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws25{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.666667pt;}
.ws13{word-spacing:-6.666667pt;}
.wsa{word-spacing:-2.318934pt;}
.ws20{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.060952pt;}
.ws1e{word-spacing:-0.352873pt;}
.ws3{word-spacing:-0.145525pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:0.445442pt;}
.ws9{word-spacing:0.667733pt;}
.ws1f{word-spacing:0.906667pt;}
.ws27{word-spacing:1.159579pt;}
.ws1{word-spacing:1.185957pt;}
.ws24{word-spacing:3.040000pt;}
.wsf{word-spacing:3.190748pt;}
.wsc{word-spacing:3.797860pt;}
.ws21{word-spacing:3.840000pt;}
.ws23{word-spacing:5.653333pt;}
.ws22{word-spacing:6.240000pt;}
.ws1d{word-spacing:6.826667pt;}
.ws10{word-spacing:7.111111pt;}
.ws7{word-spacing:8.000000pt;}
.ws1c{word-spacing:8.320000pt;}
.ws1b{word-spacing:10.624000pt;}
.ws26{word-spacing:10.986667pt;}
.wsb{word-spacing:12.160000pt;}
.ws0{word-spacing:13.317333pt;}
.ws5{word-spacing:13.333333pt;}
.ws15{word-spacing:27.200000pt;}
.wse{word-spacing:33.748040pt;}
.ws1a{word-spacing:33.985185pt;}
.ws12{word-spacing:76.021333pt;}
.ws14{word-spacing:94.379259pt;}
.ws11{word-spacing:116.469333pt;}
.ws16{word-spacing:117.333333pt;}
.ws17{word-spacing:130.213333pt;}
.ws19{word-spacing:143.136788pt;}
.ws18{word-spacing:177.856508pt;}
._b{margin-left:-21.303946pt;}
._9{margin-left:-19.742719pt;}
._d{margin-left:-17.747498pt;}
._c{margin-left:-14.654339pt;}
._4{margin-left:-13.670909pt;}
._0{margin-left:-12.201629pt;}
._1{margin-left:-9.591136pt;}
._e{margin-left:-6.546626pt;}
._10{margin-left:-5.631000pt;}
._2{margin-left:-3.519728pt;}
._f{margin-left:-1.094925pt;}
._7{width:2.146285pt;}
._3{width:3.332731pt;}
._a{width:5.410024pt;}
._8{width:6.648536pt;}
._5{width:8.203566pt;}
._6{width:9.527075pt;}
._11{width:13.778776pt;}
._12{width:15.967127pt;}
._13{width:19.573333pt;}
.fs3{font-size:21.333333pt;}
.fs7{font-size:26.666667pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:23.538680pt;}
.y5b{bottom:66.205347pt;}
.ycd{bottom:71.538680pt;}
.y1b{bottom:76.872013pt;}
.y5a{bottom:82.205347pt;}
.ycc{bottom:87.538680pt;}
.y59{bottom:98.205347pt;}
.ycb{bottom:100.872013pt;}
.y3b{bottom:102.205347pt;}
.y58{bottom:112.872013pt;}
.yca{bottom:114.205347pt;}
.y3a{bottom:116.872013pt;}
.y1a{bottom:118.205347pt;}
.y57{bottom:128.872013pt;}
.yc9{bottom:130.205347pt;}
.y39{bottom:132.872013pt;}
.y19{bottom:134.205347pt;}
.yc8{bottom:143.538680pt;}
.y56{bottom:144.872013pt;}
.y38{bottom:147.538680pt;}
.y18{bottom:150.205347pt;}
.yc7{bottom:156.872013pt;}
.y55{bottom:158.205347pt;}
.y89{bottom:159.076013pt;}
.y85{bottom:160.409347pt;}
.y8a{bottom:161.742680pt;}
.ya1{bottom:164.409347pt;}
.y17{bottom:164.872013pt;}
.yc6{bottom:171.538680pt;}
.y9e{bottom:171.737880pt;}
.y54{bottom:175.538680pt;}
.ya2{bottom:176.409347pt;}
.y98{bottom:177.742680pt;}
.y37{bottom:179.538680pt;}
.y76{bottom:180.409347pt;}
.y16{bottom:180.872013pt;}
.y72{bottom:181.742680pt;}
.y79{bottom:183.076013pt;}
.yc5{bottom:186.205347pt;}
.y53{bottom:190.205347pt;}
.ya7{bottom:195.076013pt;}
.y36{bottom:195.538680pt;}
.ya9{bottom:196.409347pt;}
.y15{bottom:196.872013pt;}
.yc4{bottom:199.538680pt;}
.y6d{bottom:204.409347pt;}
.y71{bottom:205.742680pt;}
.y52{bottom:206.205347pt;}
.y78{bottom:208.409347pt;}
.y7e{bottom:209.742680pt;}
.y82{bottom:211.076013pt;}
.y35{bottom:211.538680pt;}
.y80{bottom:212.409347pt;}
.y90{bottom:213.742680pt;}
.y97{bottom:215.076013pt;}
.yc3{bottom:215.538680pt;}
.ya0{bottom:217.742680pt;}
.ya6{bottom:220.409347pt;}
.y51{bottom:220.872013pt;}
.ya8{bottom:221.742680pt;}
.y34{bottom:226.205347pt;}
.y93{bottom:227.076013pt;}
.y14{bottom:227.538680pt;}
.yc2{bottom:228.872013pt;}
.y6a{bottom:229.742680pt;}
.y6b{bottom:231.076013pt;}
.y94{bottom:232.409347pt;}
.y7d{bottom:235.076013pt;}
.y50{bottom:238.205347pt;}
.y75{bottom:239.076013pt;}
.y9c{bottom:240.409347pt;}
.y77{bottom:241.742680pt;}
.y33{bottom:242.205347pt;}
.y6f{bottom:245.742680pt;}
.y7f{bottom:248.409347pt;}
.y8f{bottom:249.742680pt;}
.y81{bottom:251.076013pt;}
.y88{bottom:252.409347pt;}
.y96{bottom:253.742680pt;}
.y4f{bottom:254.205347pt;}
.y9b{bottom:255.076013pt;}
.yc1{bottom:258.205347pt;}
.y4e{bottom:268.872013pt;}
.yc0{bottom:271.538680pt;}
.y32{bottom:272.872013pt;}
.y7b{bottom:273.742680pt;}
.y13{bottom:274.205347pt;}
.y7c{bottom:275.076013pt;}
.y84{bottom:276.409347pt;}
.y8e{bottom:277.742680pt;}
.ybf{bottom:286.205347pt;}
.y60{bottom:289.742680pt;}
.y12{bottom:290.205347pt;}
.y95{bottom:291.076013pt;}
.y9f{bottom:292.409347pt;}
.y99{bottom:293.742680pt;}
.y8c{bottom:296.409347pt;}
.ybe{bottom:299.538680pt;}
.y87{bottom:300.409347pt;}
.y8d{bottom:301.742680pt;}
.y8b{bottom:303.076013pt;}
.y11{bottom:306.205347pt;}
.y5f{bottom:309.742680pt;}
.y10{bottom:320.872013pt;}
.ya5{bottom:323.076013pt;}
.y4d{bottom:328.872013pt;}
.y70{bottom:333.742680pt;}
.yf{bottom:336.872013pt;}
.y83{bottom:337.742680pt;}
.y5e{bottom:339.076013pt;}
.y4c{bottom:342.205347pt;}
.y73{bottom:345.742680pt;}
.y74{bottom:347.076013pt;}
.y6c{bottom:348.409347pt;}
.y6e{bottom:349.742680pt;}
.y86{bottom:351.076013pt;}
.y31{bottom:351.538680pt;}
.ye{bottom:352.872013pt;}
.y5d{bottom:353.742680pt;}
.y4b{bottom:355.538680pt;}
.y9d{bottom:356.409347pt;}
.y9a{bottom:359.076013pt;}
.ya3{bottom:360.409347pt;}
.ya4{bottom:361.742680pt;}
.yd{bottom:368.872013pt;}
.y67{bottom:372.409347pt;}
.y62{bottom:373.742680pt;}
.y69{bottom:375.076013pt;}
.y4a{bottom:375.538680pt;}
.ybd{bottom:382.205347pt;}
.yc{bottom:383.538680pt;}
.y64{bottom:387.076013pt;}
.y7a{bottom:388.409347pt;}
.y92{bottom:391.076013pt;}
.y61{bottom:392.409347pt;}
.y91{bottom:396.409347pt;}
.y65{bottom:397.742680pt;}
.ybc{bottom:398.205347pt;}
.y66{bottom:399.076013pt;}
.yb{bottom:399.538680pt;}
.y63{bottom:400.409347pt;}
.y49{bottom:400.872013pt;}
.y68{bottom:401.742680pt;}
.y30{bottom:414.205347pt;}
.ya{bottom:415.538680pt;}
.y48{bottom:424.872013pt;}
.y9{bottom:430.205347pt;}
.y47{bottom:439.538680pt;}
.y2f{bottom:444.872013pt;}
.y8{bottom:446.205347pt;}
.y46{bottom:451.538680pt;}
.yab{bottom:457.742680pt;}
.yb5{bottom:458.009347pt;}
.yac{bottom:459.076013pt;}
.yae{bottom:460.409347pt;}
.y7{bottom:460.872013pt;}
.yad{bottom:461.742680pt;}
.yb2{bottom:463.076013pt;}
.yb3{bottom:464.409347pt;}
.y45{bottom:464.872013pt;}
.yb4{bottom:468.409347pt;}
.y2e{bottom:476.872013pt;}
.y6{bottom:478.205347pt;}
.y44{bottom:491.538680pt;}
.yaf{bottom:492.409347pt;}
.yb1{bottom:493.742680pt;}
.y5{bottom:494.205347pt;}
.yb0{bottom:496.409347pt;}
.y2d{bottom:508.872013pt;}
.y43{bottom:515.538680pt;}
.y2c{bottom:524.872013pt;}
.yaa{bottom:536.409347pt;}
.y2b{bottom:539.538680pt;}
.y5c{bottom:544.872013pt;}
.y42{bottom:552.872013pt;}
.ybb{bottom:555.538680pt;}
.y2a{bottom:570.205347pt;}
.yba{bottom:584.872013pt;}
.y29{bottom:602.205347pt;}
.yd6{bottom:615.538680pt;}
.yb9{bottom:616.872013pt;}
.y28{bottom:618.205347pt;}
.yd5{bottom:630.205347pt;}
.y41{bottom:631.538680pt;}
.y27{bottom:632.872013pt;}
.y40{bottom:638.205347pt;}
.yd4{bottom:643.538680pt;}
.y3f{bottom:646.205347pt;}
.y26{bottom:648.872013pt;}
.y3e{bottom:652.872013pt;}
.y4{bottom:656.872013pt;}
.yd3{bottom:659.538680pt;}
.yb8{bottom:663.538680pt;}
.y25{bottom:664.872013pt;}
.y3d{bottom:670.205347pt;}
.yd2{bottom:672.872013pt;}
.y24{bottom:679.538680pt;}
.yd1{bottom:686.205347pt;}
.y23{bottom:695.538680pt;}
.yd0{bottom:702.205347pt;}
.y3{bottom:703.538680pt;}
.y22{bottom:711.538680pt;}
.ycf{bottom:715.538680pt;}
.yb7{bottom:726.205347pt;}
.y21{bottom:727.538680pt;}
.yce{bottom:728.872013pt;}
.y2{bottom:735.538680pt;}
.yb6{bottom:740.872013pt;}
.y20{bottom:743.538680pt;}
.y1{bottom:758.205347pt;}
.y1f{bottom:759.538680pt;}
.y3c{bottom:760.872013pt;}
.y1d{bottom:788.872013pt;}
.y1e{bottom:790.205347pt;}
.h8{height:21.500000pt;}
.h7{height:22.250000pt;}
.h10{height:26.875000pt;}
.h12{height:31.390625pt;}
.hf{height:31.406250pt;}
.h15{height:32.250000pt;}
.h13{height:36.622396pt;}
.ha{height:41.854167pt;}
.h9{height:41.875000pt;}
.h16{height:44.500000pt;}
.hb{height:47.085938pt;}
.h5{height:47.109375pt;}
.h4{height:50.062500pt;}
.h3{height:52.317708pt;}
.h6{height:52.343750pt;}
.h11{height:53.541667pt;}
.hc{height:57.549479pt;}
.h14{height:66.750000pt;}
.h2{height:88.940104pt;}
.he{height:639.333333pt;}
.hd{height:639.485360pt;}
.h0{height:864.641347pt;}
.h1{height:864.666667pt;}
.w1{width:639.333333pt;}
.w0{width:639.485360pt;}
.w2{width:864.641347pt;}
.w3{width:864.666667pt;}
.x0{left:0.000000pt;}
.x14b{left:67.538680pt;}
.x14a{left:70.205347pt;}
.x16{left:73.742680pt;}
.x66{left:75.076013pt;}
.x5e{left:76.409347pt;}
.x152{left:80.409347pt;}
.x155{left:81.742680pt;}
.x15f{left:83.076013pt;}
.x149{left:84.872013pt;}
.x17{left:87.076013pt;}
.x91{left:92.409347pt;}
.x20{left:93.742680pt;}
.xf{left:95.076013pt;}
.x71{left:96.409347pt;}
.x11a{left:97.742680pt;}
.x127{left:99.076013pt;}
.x11e{left:100.409347pt;}
.x7e{left:101.742680pt;}
.x92{left:103.076013pt;}
.x4f{left:104.409347pt;}
.x1{left:107.076013pt;}
.x5f{left:112.409347pt;}
.x10{left:113.742680pt;}
.x72{left:115.076013pt;}
.x77{left:116.409347pt;}
.xa1{left:117.742680pt;}
.x8d{left:119.076013pt;}
.x7f{left:120.409347pt;}
.xd3{left:121.742680pt;}
.x2a{left:123.076013pt;}
.x60{left:124.409347pt;}
.xb7{left:125.742680pt;}
.x12e{left:127.076013pt;}
.x7{left:128.409347pt;}
.x162{left:129.742680pt;}
.xf2{left:131.076013pt;}
.xda{left:132.409347pt;}
.x8e{left:133.742680pt;}
.xa8{left:135.076013pt;}
.x160{left:136.409347pt;}
.x56{left:137.742680pt;}
.x21{left:139.076013pt;}
.x111{left:140.409347pt;}
.x36{left:141.742680pt;}
.xc8{left:143.076013pt;}
.x49{left:144.409347pt;}
.xed{left:145.742680pt;}
.x78{left:147.076013pt;}
.x102{left:148.409347pt;}
.xf3{left:149.742680pt;}
.xa2{left:151.076013pt;}
.xb8{left:152.409347pt;}
.x10f{left:153.742680pt;}
.x50{left:155.076013pt;}
.x57{left:156.409347pt;}
.xe9{left:157.742680pt;}
.x6d{left:159.076013pt;}
.x32{left:160.409347pt;}
.x85{left:161.742680pt;}
.xbc{left:164.409347pt;}
.xb3{left:165.742680pt;}
.x122{left:167.076013pt;}
.xa9{left:168.409347pt;}
.xff{left:169.742680pt;}
.x8{left:171.076013pt;}
.x4a{left:172.409347pt;}
.x161{left:173.742680pt;}
.x3b{left:175.076013pt;}
.x18{left:176.409347pt;}
.x3c{left:177.742680pt;}
.x61{left:179.076013pt;}
.x96{left:180.409347pt;}
.xf4{left:181.742680pt;}
.xf8{left:183.076013pt;}
.xc6{left:184.409347pt;}
.xa3{left:185.742680pt;}
.x2b{left:187.076013pt;}
.x15d{left:188.409347pt;}
.x11{left:189.742680pt;}
.xe2{left:191.076013pt;}
.x67{left:192.409347pt;}
.xb4{left:193.742680pt;}
.x97{left:195.076013pt;}
.x134{left:196.409347pt;}
.xf5{left:197.742680pt;}
.x6e{left:199.076013pt;}
.x80{left:200.409347pt;}
.xaa{left:201.742680pt;}
.xc7{left:203.076013pt;}
.x3d{left:204.409347pt;}
.x12c{left:205.742680pt;}
.xa4{left:207.076013pt;}
.x15a{left:208.409347pt;}
.x88{left:209.742680pt;}
.x112{left:211.076013pt;}
.xe3{left:212.409347pt;}
.xc9{left:213.742680pt;}
.x93{left:215.076013pt;}
.xde{left:216.409347pt;}
.x19{left:217.742680pt;}
.x2{left:219.076013pt;}
.x22{left:220.409347pt;}
.xab{left:221.742680pt;}
.x62{left:223.076013pt;}
.x58{left:224.409347pt;}
.x15e{left:225.742680pt;}
.xdc{left:227.076013pt;}
.x9{left:228.409347pt;}
.x2c{left:229.742680pt;}
.x137{left:231.076013pt;}
.x4b{left:232.409347pt;}
.x11b{left:233.742680pt;}
.xfd{left:235.076013pt;}
.x105{left:236.409347pt;}
.x3e{left:237.742680pt;}
.x11c{left:239.076013pt;}
.x23{left:240.409347pt;}
.xb5{left:241.742680pt;}
.x2d{left:243.076013pt;}
.xc{left:244.409347pt;}
.x68{left:245.742680pt;}
.xf9{left:247.076013pt;}
.xa{left:249.742680pt;}
.x94{left:251.076013pt;}
.x124{left:252.409347pt;}
.xee{left:253.742680pt;}
.x12{left:255.076013pt;}
.x24{left:256.409347pt;}
.x69{left:257.742680pt;}
.x118{left:259.076013pt;}
.x1a{left:260.409347pt;}
.x3f{left:263.076013pt;}
.x81{left:264.409347pt;}
.xd4{left:265.742680pt;}
.xfe{left:267.076013pt;}
.xc2{left:268.409347pt;}
.x10e{left:269.742680pt;}
.x6{left:271.076013pt;}
.x98{left:272.409347pt;}
.x8f{left:273.742680pt;}
.x44{left:275.076013pt;}
.x82{left:276.409347pt;}
.x1b{left:277.742680pt;}
.x59{left:279.076013pt;}
.x11f{left:280.409347pt;}
.x12b{left:281.742680pt;}
.xc3{left:283.076013pt;}
.x12f{left:284.409347pt;}
.xe4{left:285.742680pt;}
.x9f{left:287.076013pt;}
.x63{left:288.409347pt;}
.x89{left:289.742680pt;}
.x51{left:291.076013pt;}
.x6f{left:292.409347pt;}
.xd{left:293.742680pt;}
.x6a{left:295.076013pt;}
.xdb{left:296.409347pt;}
.x106{left:297.742680pt;}
.xd7{left:299.076013pt;}
.x125{left:300.409347pt;}
.xdd{left:301.742680pt;}
.xa0{left:303.076013pt;}
.x4c{left:304.409347pt;}
.x158{left:305.742680pt;}
.x1c{left:307.076013pt;}
.x154{left:308.409347pt;}
.x37{left:309.742680pt;}
.xd0{left:311.076013pt;}
.xac{left:312.409347pt;}
.xdf{left:313.742680pt;}
.x73{left:315.076013pt;}
.x95{left:316.409347pt;}
.x79{left:317.742680pt;}
.xec{left:319.076013pt;}
.xe{left:320.409347pt;}
.x25{left:321.742680pt;}
.x13{left:323.076013pt;}
.xad{left:324.409347pt;}
.x2e{left:325.742680pt;}
.x1d{left:327.076013pt;}
.x40{left:328.409347pt;}
.x70{left:329.742680pt;}
.xd1{left:331.076013pt;}
.x64{left:332.409347pt;}
.x113{left:333.742680pt;}
.x74{left:335.076013pt;}
.xef{left:336.409347pt;}
.x107{left:337.742680pt;}
.x131{left:339.076013pt;}
.x7a{left:340.409347pt;}
.x15b{left:341.742680pt;}
.x99{left:343.076013pt;}
.x128{left:344.409347pt;}
.x41{left:345.742680pt;}
.x116{left:347.076013pt;}
.x1e{left:348.409347pt;}
.x100{left:349.742680pt;}
.x52{left:351.076013pt;}
.x5a{left:352.409347pt;}
.x159{left:353.742680pt;}
.x138{left:355.076013pt;}
.x151{left:356.409347pt;}
.x8a{left:357.742680pt;}
.x10a{left:359.076013pt;}
.xf0{left:360.409347pt;}
.x83{left:361.742680pt;}
.x15c{left:363.076013pt;}
.x2f{left:364.409347pt;}
.x148{left:366.205347pt;}
.x53{left:368.409347pt;}
.x6b{left:369.742680pt;}
.xe8{left:371.076013pt;}
.x114{left:372.409347pt;}
.x9a{left:373.742680pt;}
.x26{left:375.076013pt;}
.x8b{left:376.409347pt;}
.x13a{left:377.742680pt;}
.x38{left:379.076013pt;}
.xb9{left:380.409347pt;}
.x30{left:381.742680pt;}
.x75{left:383.076013pt;}
.x3{left:384.409347pt;}
.x129{left:385.742680pt;}
.x9b{left:387.076013pt;}
.x5b{left:388.409347pt;}
.xc4{left:389.742680pt;}
.x6c{left:391.076013pt;}
.x7b{left:392.409347pt;}
.xca{left:393.742680pt;}
.x115{left:395.076013pt;}
.x65{left:396.409347pt;}
.x132{left:397.742680pt;}
.xae{left:399.076013pt;}
.x27{left:400.409347pt;}
.xe5{left:401.742680pt;}
.x33{left:404.409347pt;}
.xcc{left:405.742680pt;}
.xb6{left:407.076013pt;}
.x9c{left:408.409347pt;}
.xc5{left:409.742680pt;}
.xea{left:411.076013pt;}
.xd2{left:412.409347pt;}
.x120{left:413.742680pt;}
.x4{left:415.076013pt;}
.xe6{left:416.409347pt;}
.x117{left:417.742680pt;}
.xd8{left:419.076013pt;}
.x14{left:420.409347pt;}
.xd5{left:421.742680pt;}
.xbd{left:423.076013pt;}
.xcd{left:425.742680pt;}
.x84{left:427.076013pt;}
.xa5{left:428.409347pt;}
.x119{left:429.742680pt;}
.xb{left:431.076013pt;}
.x31{left:432.409347pt;}
.x8c{left:433.742680pt;}
.x139{left:435.076013pt;}
.xf1{left:436.409347pt;}
.x4d{left:437.742680pt;}
.x12a{left:439.076013pt;}
.x9d{left:440.409347pt;}
.x11d{left:441.742680pt;}
.x126{left:443.076013pt;}
.xf6{left:444.409347pt;}
.xc0{left:445.742680pt;}
.x135{left:447.076013pt;}
.xe0{left:448.409347pt;}
.x54{left:451.076013pt;}
.xfb{left:452.409347pt;}
.xaf{left:453.742680pt;}
.x1f{left:455.076013pt;}
.xba{left:456.409347pt;}
.x45{left:457.742680pt;}
.x15{left:459.076013pt;}
.x28{left:460.409347pt;}
.x12d{left:461.742680pt;}
.xe7{left:463.076013pt;}
.x86{left:465.742680pt;}
.x55{left:467.076013pt;}
.x5c{left:468.409347pt;}
.xb0{left:469.742680pt;}
.x108{left:471.076013pt;}
.x103{left:472.409347pt;}
.xa6{left:473.742680pt;}
.x157{left:475.076013pt;}
.x29{left:476.409347pt;}
.x46{left:477.742680pt;}
.x5{left:479.076013pt;}
.x130{left:480.409347pt;}
.xd9{left:481.742680pt;}
.x109{left:483.076013pt;}
.x164{left:484.409347pt;}
.x136{left:485.742680pt;}
.x10b{left:487.076013pt;}
.x150{left:488.872013pt;}
.x7c{left:491.076013pt;}
.x87{left:492.409347pt;}
.xa7{left:493.742680pt;}
.xd6{left:495.076013pt;}
.x166{left:496.409347pt;}
.x34{left:499.076013pt;}
.x47{left:500.409347pt;}
.x90{left:501.742680pt;}
.x5d{left:504.409347pt;}
.xce{left:505.742680pt;}
.x42{left:507.076013pt;}
.xf7{left:508.409347pt;}
.x156{left:511.076013pt;}
.xb1{left:512.409347pt;}
.x4e{left:513.742680pt;}
.x9e{left:515.076013pt;}
.x39{left:516.409347pt;}
.x10c{left:517.742680pt;}
.x163{left:519.076013pt;}
.xeb{left:520.409347pt;}
.x76{left:521.742680pt;}
.x101{left:523.076013pt;}
.x7d{left:524.409347pt;}
.x121{left:525.742680pt;}
.xc1{left:527.076013pt;}
.x104{left:528.409347pt;}
.x153{left:529.742680pt;}
.x10d{left:531.076013pt;}
.x35{left:531.994413pt;}
.x3a{left:532.897880pt;}
.x43{left:533.839213pt;}
.x48{left:534.748280pt;}
.x123{left:535.673027pt;}
.x133{left:536.776013pt;}
.xfa{left:540.409347pt;}
.xe1{left:541.742680pt;}
.xcb{left:543.076013pt;}
.x110{left:544.409347pt;}
.xbe{left:547.076013pt;}
.xfc{left:549.742680pt;}
.xb2{left:551.076013pt;}
.xbb{left:552.409347pt;}
.x165{left:557.231747pt;}
.x14f{left:559.538680pt;}
.xcf{left:561.758680pt;}
.xbf{left:563.564547pt;}
.x14e{left:567.538680pt;}
.x14d{left:575.538680pt;}
.x147{left:652.872013pt;}
.x146{left:656.872013pt;}
.x145{left:660.872013pt;}
.x144{left:666.205347pt;}
.x143{left:671.538680pt;}
.x142{left:678.205347pt;}
.x141{left:684.872013pt;}
.x140{left:694.205347pt;}
.x13f{left:702.205347pt;}
.x13e{left:714.205347pt;}
.x13d{left:728.872013pt;}
.x13c{left:744.872013pt;}
.x14c{left:782.205347pt;}
.x13b{left:788.872013pt;}
}

