
    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_c2eb66f7e4cc7d03c79570f1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_eecd0427daddef5b69a940d6.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_2e410585f01b2e6a7ca85426.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_9da5dcd370253eaf852d9ceb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_5c04ca4008a309c219e99de6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_42f542bb1714244389ab9bb3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f4f82ac3f77b6b88ee5799c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:ff8;src:url('chunks/assets/font_a2d1b22f3ab0d31564efd3b1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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:ff9;src:url('chunks/assets/font_297d4d1147b55a014a8c8a79.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:ffa;src:url('chunks/assets/font_08ecdebbaa0dae1dc2648645.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:ffb;src:url('chunks/assets/font_896fb596535666fe127fb2a5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_329da946566ef487cc425f2a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_fda30184c9ba16c02e5ce8b7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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:ffe;src:url('chunks/assets/font_5e0c46492d3e587d215303e5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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:fff;src:url('chunks/assets/font_476d323a61ff40d960817b38.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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:ff10;src:url('chunks/assets/font_7823ce2ecb77dd7b5f2a8d36.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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:ff11;src:url('chunks/assets/font_53bba984caa2b99c12922a37.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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:ff12;src:url('chunks/assets/font_990723393fcb8296c5635ed5.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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:ff13;src:url('chunks/assets/font_0c4719b1ef0b43f30633697b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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:ff14;src:url('chunks/assets/font_8815d1d7658dd1e90f375e03.woff')format("woff");}.ff14{font-family:ff14;line-height:1.402354;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:ff15;src:url('chunks/assets/font_5caadcbd8973c95e4ae09c45.woff')format("woff");}.ff15{font-family:ff15;line-height:1.402354;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:ff16;src:url('chunks/assets/font_3f0f3e6fe091d13cb7139dcf.woff')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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:ff17;src:url('chunks/assets/font_299516e21d5094aa52848846.woff')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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:ff18;src:url('chunks/assets/font_6f2456a62bd60a804b9eea2a.woff')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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:ff19;src:url('chunks/assets/font_ad214980afc11acd6b6bf48b.woff')format("woff");}.ff19{font-family:ff19;line-height:1.402354;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:ff1a;src:url('chunks/assets/font_6ed0d2c084da3c1dd059ba25.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.402354;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:ff1b;src:url('chunks/assets/font_291a4b39f1b775c57ddcb7bf.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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:ff1c;src:url('chunks/assets/font_9441e3474ce3f707e35b7dc6.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.402354;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:ff1d;src:url('chunks/assets/font_48edbe1e0967a06d1c4801ca.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.402354;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:ff1e;src:url('chunks/assets/font_b9a68b99dc1373579a6ec304.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.402354;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:ff1f;src:url('chunks/assets/font_165c46f5518b828fe3c94f50.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;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:ff20;src:url('chunks/assets/font_bf2029efad33aeacccd5ae48.woff')format("woff");}.ff20{font-family:ff20;line-height:1.402354;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:ff21;src:url('chunks/assets/font_389d376ed9353b284673579a.woff')format("woff");}.ff21{font-family:ff21;line-height:1.402354;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:ff22;src:url('chunks/assets/font_98ea39436dff50c50869b4b8.woff')format("woff");}.ff22{font-family:ff22;line-height:1.402354;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:ff23;src:url('chunks/assets/font_0726c96e6428fbb6537ef10f.woff')format("woff");}.ff23{font-family:ff23;line-height:1.402354;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;}
.m6b{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m47{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.me{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m0{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m1{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m4e{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);}
.m35{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);}
.m28{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m43{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);}
.m3c{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m3b{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);}
.m39{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);}
.m24{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);}
.m29{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m38{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);}
.m2d{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m25{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);}
.m2e{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);}
.md{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);}
.m8{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);}
.m1f{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);}
.mc{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);}
.m26{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);}
.m13{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);}
.m51{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);}
.ma{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);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.mb{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);}
.m14{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);}
.m11{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);}
.m42{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);}
.m1b{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);}
.m2a{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);}
.m1d{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);}
.m31{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);}
.m12{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);}
.m36{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);}
.m2f{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);}
.m22{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);}
.m2b{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);}
.m41{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);}
.m48{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);}
.m1e{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);}
.m30{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);}
.m3d{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);}
.m45{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);}
.m21{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);}
.m1c{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);}
.m60{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);}
.m20{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);}
.m67{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m4b{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);}
.m4c{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);}
.m34{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m63{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m23{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m3a{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m71{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.m69{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m3e{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m5e{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.m46{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:15.240000px;}
.ls2{letter-spacing:21.000000px;}
.ls1{letter-spacing:27.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;}
}
.ws15{word-spacing:-27.000000px;}
.ws30{word-spacing:-24.000000px;}
.ws10{word-spacing:-21.000000px;}
.ws5c{word-spacing:-15.600000px;}
.ws48{word-spacing:-15.272109px;}
.wsa{word-spacing:-13.689554px;}
.ws17{word-spacing:-13.256635px;}
.ws28{word-spacing:-12.823716px;}
.ws50{word-spacing:-12.725898px;}
.ws5e{word-spacing:-12.470035px;}
.ws5a{word-spacing:-12.399284px;}
.ws20{word-spacing:-12.221893px;}
.ws38{word-spacing:-12.000000px;}
.ws65{word-spacing:-10.818499px;}
.ws55{word-spacing:-9.000000px;}
.ws2f{word-spacing:-8.986395px;}
.ws41{word-spacing:-8.775510px;}
.ws52{word-spacing:-8.538462px;}
.ws8c{word-spacing:-8.386900px;}
.ws90{word-spacing:-8.047091px;}
.ws4c{word-spacing:-8.021585px;}
.ws36{word-spacing:-7.953981px;}
.ws24{word-spacing:-7.598338px;}
.ws53{word-spacing:-6.552480px;}
.ws4{word-spacing:-6.000000px;}
.ws4f{word-spacing:-5.577867px;}
.ws21{word-spacing:-4.387755px;}
.ws68{word-spacing:-3.187353px;}
.ws56{word-spacing:-3.084246px;}
.ws27{word-spacing:-3.000000px;}
.ws5f{word-spacing:-2.981533px;}
.ws62{word-spacing:-2.443213px;}
.ws57{word-spacing:-2.366010px;}
.ws54{word-spacing:-0.785467px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:3.000000px;}
.ws51{word-spacing:4.204986px;}
.ws63{word-spacing:4.227273px;}
.ws25{word-spacing:4.869927px;}
.ws3c{word-spacing:5.421550px;}
.ws2{word-spacing:6.000000px;}
.ws32{word-spacing:6.296296px;}
.ws61{word-spacing:6.312500px;}
.wse{word-spacing:7.270709px;}
.ws45{word-spacing:7.598461px;}
.ws3f{word-spacing:7.788354px;}
.ws0{word-spacing:9.000000px;}
.ws85{word-spacing:9.089914px;}
.ws23{word-spacing:10.582421px;}
.ws69{word-spacing:10.853186px;}
.ws3d{word-spacing:11.975207px;}
.ws13{word-spacing:12.000000px;}
.ws79{word-spacing:12.074928px;}
.ws7b{word-spacing:12.296296px;}
.ws44{word-spacing:12.510397px;}
.ws19{word-spacing:12.962963px;}
.ws4b{word-spacing:13.096419px;}
.ws8b{word-spacing:13.137544px;}
.ws7f{word-spacing:13.703704px;}
.ws3{word-spacing:13.974280px;}
.ws16{word-spacing:14.388864px;}
.ws80{word-spacing:15.000000px;}
.ws46{word-spacing:15.035310px;}
.ws3e{word-spacing:15.058172px;}
.ws7c{word-spacing:15.197780px;}
.wsc{word-spacing:15.466787px;}
.ws29{word-spacing:15.872576px;}
.ws7a{word-spacing:15.962963px;}
.ws43{word-spacing:16.576560px;}
.ws84{word-spacing:16.959294px;}
.ws6{word-spacing:17.223980px;}
.ws66{word-spacing:17.501385px;}
.ws5b{word-spacing:18.000000px;}
.ws59{word-spacing:18.451801px;}
.ws5d{word-spacing:19.135417px;}
.ws58{word-spacing:19.333333px;}
.ws35{word-spacing:19.723140px;}
.ws47{word-spacing:19.958678px;}
.ws6b{word-spacing:20.642722px;}
.ws74{word-spacing:21.000000px;}
.ws33{word-spacing:21.111111px;}
.ws75{word-spacing:21.179267px;}
.ws8d{word-spacing:21.825713px;}
.ws6e{word-spacing:22.113573px;}
.ws18{word-spacing:22.500000px;}
.ws1c{word-spacing:22.687277px;}
.ws2c{word-spacing:23.124851px;}
.ws6a{word-spacing:23.185185px;}
.ws8e{word-spacing:23.665406px;}
.wsd{word-spacing:24.000000px;}
.ws78{word-spacing:25.083565px;}
.ws1a{word-spacing:26.296296px;}
.ws70{word-spacing:26.666667px;}
.ws2b{word-spacing:26.688091px;}
.ws2e{word-spacing:27.132964px;}
.ws2d{word-spacing:27.471074px;}
.ws73{word-spacing:27.706612px;}
.ws4e{word-spacing:28.054422px;}
.ws3a{word-spacing:29.739199px;}
.wsb{word-spacing:30.317254px;}
.ws67{word-spacing:30.754253px;}
.ws77{word-spacing:31.797732px;}
.ws37{word-spacing:34.666667px;}
.ws4a{word-spacing:34.820416px;}
.ws89{word-spacing:35.690083px;}
.ws64{word-spacing:35.925620px;}
.ws2a{word-spacing:36.161157px;}
.ws88{word-spacing:37.333333px;}
.ws4d{word-spacing:37.843100px;}
.ws71{word-spacing:38.103845px;}
.ws76{word-spacing:38.886578px;}
.ws3b{word-spacing:40.437005px;}
.ws1f{word-spacing:41.250000px;}
.ws34{word-spacing:41.900826px;}
.ws6c{word-spacing:42.666667px;}
.ws26{word-spacing:43.438017px;}
.ws82{word-spacing:43.500000px;}
.ws81{word-spacing:43.673554px;}
.ws8a{word-spacing:45.155767px;}
.ws6d{word-spacing:45.333333px;}
.ws7{word-spacing:45.593341px;}
.ws83{word-spacing:47.111111px;}
.ws1e{word-spacing:47.777778px;}
.ws42{word-spacing:47.900276px;}
.ws31{word-spacing:48.837209px;}
.ws8f{word-spacing:48.998110px;}
.ws7d{word-spacing:49.591837px;}
.ws9{word-spacing:50.556755px;}
.ws39{word-spacing:52.869927px;}
.ws87{word-spacing:53.082838px;}
.ws22{word-spacing:56.119835px;}
.ws1d{word-spacing:57.134948px;}
.ws14{word-spacing:57.233260px;}
.ws7e{word-spacing:60.160619px;}
.ws6f{word-spacing:66.749594px;}
.ws11{word-spacing:68.192837px;}
.ws72{word-spacing:68.478668px;}
.ws40{word-spacing:80.874009px;}
.ws86{word-spacing:84.289256px;}
.wsf{word-spacing:123.289256px;}
.ws1b{word-spacing:144.000000px;}
.ws12{word-spacing:240.000000px;}
.ws49{word-spacing:336.000000px;}
.ws8{word-spacing:558.000000px;}
.ws60{word-spacing:564.000000px;}
._d{margin-left:-19.690675px;}
._13{margin-left:-16.156900px;}
._14{margin-left:-11.477378px;}
._7{margin-left:-5.771700px;}
._9{margin-left:-3.505102px;}
._c{margin-left:-1.731678px;}
._11{width:2.903038px;}
._2{width:4.168052px;}
._a{width:5.200378px;}
._4{width:6.467616px;}
._1{width:8.784857px;}
._f{width:10.122279px;}
._10{width:18.978415px;}
._8{width:24.000000px;}
._6{width:30.000000px;}
._e{width:33.000000px;}
._5{width:36.000000px;}
._3{width:42.000000px;}
._12{width:54.706612px;}
._b{width:62.690083px;}
._0{width:84.275257px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs5{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.993350px;}
.y3f{bottom:2.140350px;}
.y175{bottom:49.500000px;}
.yc2{bottom:51.000000px;}
.yc1{bottom:52.500000px;}
.yef{bottom:54.000000px;}
.y92{bottom:55.500000px;}
.y91{bottom:57.000000px;}
.y17f{bottom:58.500000px;}
.y144{bottom:60.000000px;}
.y143{bottom:61.500000px;}
.yee{bottom:63.000000px;}
.yc0{bottom:64.500000px;}
.y90{bottom:66.000000px;}
.y8f{bottom:67.500000px;}
.y8e{bottom:69.000000px;}
.y149{bottom:70.500000px;}
.y17e{bottom:72.000000px;}
.y142{bottom:73.500000px;}
.y141{bottom:75.000000px;}
.yed{bottom:76.500000px;}
.y8d{bottom:78.000000px;}
.y8c{bottom:79.500000px;}
.y3b{bottom:81.000000px;}
.y3a{bottom:82.500000px;}
.y17d{bottom:84.000000px;}
.y140{bottom:85.500000px;}
.y13f{bottom:87.000000px;}
.yec{bottom:88.500000px;}
.yeb{bottom:90.000000px;}
.ybf{bottom:91.500000px;}
.y8b{bottom:93.000000px;}
.y39{bottom:94.500000px;}
.y38{bottom:96.000000px;}
.y14a{bottom:97.500000px;}
.y13e{bottom:99.000000px;}
.y13d{bottom:100.500000px;}
.yea{bottom:102.000000px;}
.y8a{bottom:103.500000px;}
.y89{bottom:105.000000px;}
.y37{bottom:106.500000px;}
.y36{bottom:108.000000px;}
.y35{bottom:109.500000px;}
.y13c{bottom:111.000000px;}
.y13b{bottom:112.500000px;}
.ye9{bottom:114.000000px;}
.ye8{bottom:115.500000px;}
.ybe{bottom:117.000000px;}
.y88{bottom:118.500000px;}
.y34{bottom:120.000000px;}
.y33{bottom:121.500000px;}
.y172{bottom:123.000000px;}
.y13a{bottom:124.500000px;}
.y139{bottom:126.000000px;}
.yf7{bottom:127.500000px;}
.ybc{bottom:129.000000px;}
.ybd{bottom:130.500000px;}
.y32{bottom:132.000000px;}
.y31{bottom:133.500000px;}
.y30{bottom:135.000000px;}
.y1bb{bottom:136.500000px;}
.y138{bottom:138.000000px;}
.y137{bottom:139.500000px;}
.ybb{bottom:141.000000px;}
.y87{bottom:142.500000px;}
.y86{bottom:144.000000px;}
.y2f{bottom:145.500000px;}
.y2e{bottom:147.000000px;}
.y148{bottom:148.500000px;}
.y136{bottom:150.000000px;}
.y135{bottom:151.500000px;}
.y1ac{bottom:153.000000px;}
.yb9{bottom:154.500000px;}
.yba{bottom:156.000000px;}
.y192{bottom:157.500000px;}
.y2d{bottom:159.000000px;}
.y2c{bottom:160.500000px;}
.y147{bottom:162.000000px;}
.y101{bottom:163.500000px;}
.y100{bottom:165.000000px;}
.yf6{bottom:166.500000px;}
.yb8{bottom:168.000000px;}
.y85{bottom:169.500000px;}
.y2b{bottom:171.000000px;}
.y2a{bottom:172.500000px;}
.y1ab{bottom:174.000000px;}
.y134{bottom:175.500000px;}
.y133{bottom:177.000000px;}
.y146{bottom:178.500000px;}
.yb7{bottom:180.000000px;}
.yb6{bottom:181.500000px;}
.y173{bottom:183.000000px;}
.y29{bottom:184.500000px;}
.y28{bottom:186.000000px;}
.y171{bottom:187.500000px;}
.y132{bottom:189.000000px;}
.y131{bottom:190.500000px;}
.yf5{bottom:192.000000px;}
.yb5{bottom:193.500000px;}
.y84{bottom:195.000000px;}
.y27{bottom:196.500000px;}
.y26{bottom:198.000000px;}
.y110{bottom:199.500000px;}
.y1b6{bottom:201.000000px;}
.y130{bottom:202.500000px;}
.y170{bottom:204.000000px;}
.yf4{bottom:205.500000px;}
.y83{bottom:207.000000px;}
.y82{bottom:208.500000px;}
.y25{bottom:210.000000px;}
.y24{bottom:211.500000px;}
.ye7{bottom:213.000000px;}
.yff{bottom:214.500000px;}
.y10f{bottom:216.000000px;}
.yf3{bottom:217.500000px;}
.yf2{bottom:219.000000px;}
.y81{bottom:220.500000px;}
.y80{bottom:222.000000px;}
.y16f{bottom:223.500000px;}
.y1a9{bottom:225.000000px;}
.y1aa{bottom:226.500000px;}
.ye6{bottom:228.000000px;}
.ye5{bottom:229.500000px;}
.yf1{bottom:231.000000px;}
.y7f{bottom:232.500000px;}
.y7e{bottom:234.000000px;}
.y7d{bottom:235.500000px;}
.y17c{bottom:237.000000px;}
.y16e{bottom:238.500000px;}
.y16d{bottom:240.000000px;}
.y1a8{bottom:241.500000px;}
.yf0{bottom:243.000000px;}
.ye4{bottom:244.500000px;}
.yb4{bottom:246.000000px;}
.y7c{bottom:247.500000px;}
.y10e{bottom:249.000000px;}
.y1b5{bottom:250.500000px;}
.y191{bottom:252.000000px;}
.y17b{bottom:253.500000px;}
.y23{bottom:255.000000px;}
.y16c{bottom:256.500000px;}
.y7b{bottom:258.000000px;}
.y7a{bottom:259.500000px;}
.y79{bottom:261.000000px;}
.yb2{bottom:262.500000px;}
.yb3{bottom:264.000000px;}
.yfe{bottom:265.500000px;}
.y1b4{bottom:267.000000px;}
.y190{bottom:268.500000px;}
.y22{bottom:270.000000px;}
.y21{bottom:271.500000px;}
.y78{bottom:273.000000px;}
.y77{bottom:274.500000px;}
.y1a7{bottom:276.000000px;}
.ye3{bottom:277.500000px;}
.ye2{bottom:279.000000px;}
.yb1{bottom:280.500000px;}
.yfd{bottom:282.000000px;}
.y10d{bottom:283.500000px;}
.y76{bottom:285.000000px;}
.y75{bottom:286.500000px;}
.y1f{bottom:288.000000px;}
.y20{bottom:289.500000px;}
.y16b{bottom:291.000000px;}
.y1a6{bottom:292.500000px;}
.ye1{bottom:294.000000px;}
.ye0{bottom:295.500000px;}
.y74{bottom:297.000000px;}
.y73{bottom:298.500000px;}
.y72{bottom:300.000000px;}
.y1b3{bottom:301.500000px;}
.y12f{bottom:303.000000px;}
.y1e{bottom:304.500000px;}
.y1d{bottom:306.000000px;}
.y16a{bottom:307.500000px;}
.y195{bottom:309.000000px;}
.y71{bottom:310.500000px;}
.y70{bottom:312.000000px;}
.yb0{bottom:313.500000px;}
.yfc{bottom:315.000000px;}
.y10c{bottom:316.500000px;}
.y1b2{bottom:318.000000px;}
.y1c{bottom:321.000000px;}
.y1b{bottom:322.500000px;}
.y6f{bottom:324.000000px;}
.y6e{bottom:325.500000px;}
.y1a5{bottom:327.000000px;}
.ydf{bottom:328.500000px;}
.yaf{bottom:330.000000px;}
.yae{bottom:331.500000px;}
.yfb{bottom:333.000000px;}
.y18f{bottom:334.500000px;}
.y6d{bottom:336.000000px;}
.y6c{bottom:337.500000px;}
.y1a{bottom:339.000000px;}
.y169{bottom:340.500000px;}
.y168{bottom:342.000000px;}
.y1a4{bottom:343.500000px;}
.yde{bottom:345.000000px;}
.ydd{bottom:346.500000px;}
.yad{bottom:348.000000px;}
.y6b{bottom:349.500000px;}
.y6a{bottom:351.000000px;}
.y18e{bottom:352.500000px;}
.y17a{bottom:354.000000px;}
.y18{bottom:355.500000px;}
.y19{bottom:357.000000px;}
.y167{bottom:358.500000px;}
.y194{bottom:360.000000px;}
.y69{bottom:361.500000px;}
.y68{bottom:363.000000px;}
.yab{bottom:364.500000px;}
.yac{bottom:366.000000px;}
.y10b{bottom:367.500000px;}
.y18d{bottom:369.000000px;}
.y179{bottom:370.500000px;}
.y17{bottom:372.000000px;}
.y16{bottom:373.500000px;}
.y67{bottom:375.000000px;}
.y66{bottom:376.500000px;}
.y1a3{bottom:378.000000px;}
.ydc{bottom:379.500000px;}
.ya9{bottom:381.000000px;}
.yaa{bottom:382.500000px;}
.y10a{bottom:384.000000px;}
.y18c{bottom:385.500000px;}
.y193{bottom:387.000000px;}
.y12e{bottom:388.500000px;}
.y15{bottom:390.000000px;}
.y166{bottom:391.500000px;}
.y1a2{bottom:393.000000px;}
.y1a1{bottom:394.500000px;}
.ydb{bottom:396.000000px;}
.ya7{bottom:397.500000px;}
.ya8{bottom:399.000000px;}
.yfa{bottom:400.500000px;}
.y18a{bottom:402.000000px;}
.y18b{bottom:403.500000px;}
.y14{bottom:405.000000px;}
.y13{bottom:406.500000px;}
.y165{bottom:408.000000px;}
.y164{bottom:409.500000px;}
.y1a0{bottom:411.000000px;}
.yda{bottom:412.500000px;}
.ya6{bottom:414.000000px;}
.ya5{bottom:415.500000px;}
.yf9{bottom:417.000000px;}
.y1b1{bottom:418.500000px;}
.y189{bottom:420.000000px;}
.y12d{bottom:421.500000px;}
.y12{bottom:423.000000px;}
.y162{bottom:424.500000px;}
.y163{bottom:426.000000px;}
.y19f{bottom:427.500000px;}
.yd9{bottom:429.000000px;}
.y65{bottom:430.500000px;}
.y64{bottom:432.000000px;}
.yf8{bottom:433.500000px;}
.y109{bottom:435.000000px;}
.y188{bottom:436.500000px;}
.y12c{bottom:438.000000px;}
.y11{bottom:439.500000px;}
.y1ba{bottom:441.000000px;}
.y19e{bottom:444.000000px;}
.y19d{bottom:445.500000px;}
.yd8{bottom:447.000000px;}
.y63{bottom:448.500000px;}
.y62{bottom:450.000000px;}
.y108{bottom:451.500000px;}
.y186{bottom:453.000000px;}
.y187{bottom:454.500000px;}
.y10{bottom:456.000000px;}
.y19c{bottom:460.500000px;}
.y161{bottom:462.000000px;}
.yd7{bottom:463.500000px;}
.y61{bottom:465.000000px;}
.y60{bottom:466.500000px;}
.y107{bottom:468.000000px;}
.y185{bottom:469.500000px;}
.y178{bottom:471.000000px;}
.y12b{bottom:472.500000px;}
.yf{bottom:474.000000px;}
.y160{bottom:477.000000px;}
.y15f{bottom:478.500000px;}
.yd6{bottom:480.000000px;}
.y5f{bottom:481.500000px;}
.y5e{bottom:483.000000px;}
.y106{bottom:484.500000px;}
.y183{bottom:486.000000px;}
.y184{bottom:487.500000px;}
.y12a{bottom:489.000000px;}
.ye{bottom:490.500000px;}
.y15e{bottom:493.500000px;}
.y15d{bottom:495.000000px;}
.yd5{bottom:496.500000px;}
.y5d{bottom:498.000000px;}
.y5c{bottom:499.500000px;}
.y105{bottom:501.000000px;}
.y182{bottom:504.000000px;}
.y129{bottom:505.500000px;}
.yd{bottom:507.000000px;}
.y15c{bottom:511.500000px;}
.y15b{bottom:513.000000px;}
.yd4{bottom:514.500000px;}
.y5b{bottom:516.000000px;}
.ya4{bottom:517.500000px;}
.y1b0{bottom:519.000000px;}
.y181{bottom:520.500000px;}
.y128{bottom:522.000000px;}
.yc{bottom:523.500000px;}
.y15a{bottom:528.000000px;}
.y159{bottom:529.500000px;}
.yd3{bottom:531.000000px;}
.y5a{bottom:532.500000px;}
.y59{bottom:534.000000px;}
.y1af{bottom:535.500000px;}
.y177{bottom:538.500000px;}
.yb{bottom:540.000000px;}
.y158{bottom:544.500000px;}
.y157{bottom:546.000000px;}
.yd2{bottom:547.500000px;}
.y58{bottom:549.000000px;}
.y57{bottom:550.500000px;}
.y104{bottom:552.000000px;}
.ya{bottom:556.500000px;}
.y9{bottom:558.000000px;}
.y156{bottom:562.500000px;}
.yd1{bottom:564.000000px;}
.y56{bottom:565.500000px;}
.y55{bottom:567.000000px;}
.y103{bottom:568.500000px;}
.y8{bottom:573.000000px;}
.y7{bottom:574.500000px;}
.y155{bottom:579.000000px;}
.y154{bottom:580.500000px;}
.y54{bottom:582.000000px;}
.y53{bottom:583.500000px;}
.ya3{bottom:585.000000px;}
.y127{bottom:589.500000px;}
.y6{bottom:591.000000px;}
.y153{bottom:595.500000px;}
.y152{bottom:597.000000px;}
.yd0{bottom:598.500000px;}
.y52{bottom:600.000000px;}
.ya2{bottom:601.500000px;}
.y1ae{bottom:603.000000px;}
.y176{bottom:606.000000px;}
.y126{bottom:607.500000px;}
.y151{bottom:612.000000px;}
.y150{bottom:613.500000px;}
.ycf{bottom:615.000000px;}
.y51{bottom:616.500000px;}
.y50{bottom:618.000000px;}
.y1ad{bottom:619.500000px;}
.y5{bottom:624.000000px;}
.y14f{bottom:630.000000px;}
.yce{bottom:631.500000px;}
.y4f{bottom:633.000000px;}
.y4e{bottom:634.500000px;}
.y102{bottom:636.000000px;}
.y125{bottom:640.500000px;}
.y14e{bottom:646.500000px;}
.ycd{bottom:648.000000px;}
.y4d{bottom:649.500000px;}
.y4c{bottom:651.000000px;}
.ya1{bottom:652.500000px;}
.y123{bottom:657.000000px;}
.y124{bottom:658.500000px;}
.y4{bottom:663.000000px;}
.y19b{bottom:664.500000px;}
.ycc{bottom:666.000000px;}
.y4b{bottom:667.500000px;}
.ya0{bottom:669.000000px;}
.y1b9{bottom:670.500000px;}
.y122{bottom:673.500000px;}
.y3{bottom:675.000000px;}
.y14d{bottom:679.500000px;}
.y14c{bottom:681.000000px;}
.ycb{bottom:682.500000px;}
.y4a{bottom:684.000000px;}
.y9f{bottom:685.500000px;}
.y1b8{bottom:687.000000px;}
.y2{bottom:691.500000px;}
.y14b{bottom:697.500000px;}
.yca{bottom:699.000000px;}
.y49{bottom:700.500000px;}
.y9e{bottom:702.000000px;}
.y1b7{bottom:703.500000px;}
.y121{bottom:708.000000px;}
.yc9{bottom:715.500000px;}
.y1{bottom:717.000000px;}
.y48{bottom:718.500000px;}
.y9d{bottom:720.000000px;}
.y11f{bottom:724.500000px;}
.y120{bottom:726.000000px;}
.y19a{bottom:732.000000px;}
.yc8{bottom:733.500000px;}
.y47{bottom:735.000000px;}
.y9c{bottom:736.500000px;}
.y11d{bottom:741.000000px;}
.y11e{bottom:742.500000px;}
.y199{bottom:748.500000px;}
.yc7{bottom:750.000000px;}
.y46{bottom:751.500000px;}
.y9a{bottom:753.000000px;}
.y9b{bottom:754.500000px;}
.y11a{bottom:757.500000px;}
.y11b{bottom:759.000000px;}
.y11c{bottom:760.500000px;}
.y198{bottom:765.000000px;}
.yc6{bottom:766.500000px;}
.y45{bottom:768.000000px;}
.y44{bottom:769.500000px;}
.y180{bottom:771.000000px;}
.y118{bottom:775.500000px;}
.y119{bottom:777.000000px;}
.y197{bottom:781.500000px;}
.yc5{bottom:783.000000px;}
.y98{bottom:784.500000px;}
.y43{bottom:786.000000px;}
.y99{bottom:787.500000px;}
.y116{bottom:792.000000px;}
.y117{bottom:793.500000px;}
.y196{bottom:798.000000px;}
.yc4{bottom:799.500000px;}
.yc3{bottom:801.000000px;}
.y42{bottom:802.500000px;}
.y97{bottom:804.000000px;}
.y114{bottom:808.500000px;}
.y115{bottom:810.000000px;}
.y174{bottom:816.000000px;}
.y95{bottom:817.500000px;}
.y41{bottom:819.000000px;}
.y96{bottom:820.500000px;}
.y113{bottom:825.000000px;}
.y112{bottom:826.500000px;}
.y111{bottom:855.000000px;}
.y145{bottom:856.500000px;}
.y93{bottom:858.000000px;}
.y40{bottom:859.500000px;}
.y94{bottom:861.000000px;}
.y3e{bottom:909.969270px;}
.y3c{bottom:911.469270px;}
.h6{height:10.592850px;}
.h8{height:13.592850px;}
.hc{height:37.002327px;}
.h7{height:37.546875px;}
.h3{height:43.169382px;}
.hd{height:49.169382px;}
.h2{height:49.336436px;}
.h9{height:50.062500px;}
.he{height:55.336436px;}
.h5{height:55.503491px;}
.ha{height:61.503491px;}
.h4{height:61.670545px;}
.hb{height:67.670545px;}
.h1{height:98.672872px;}
.h0{height:939.000000px;}
.w2{width:77.627700px;}
.w3{width:80.627700px;}
.w4{width:95.547886px;}
.w1{width:101.521200px;}
.w6{width:123.423750px;}
.w5{width:137.361750px;}
.w0{width:640.500000px;}
.x0{left:0.000000px;}
.xd9{left:1.500000px;}
.xd6{left:2.759850px;}
.xda{left:4.777049px;}
.xd5{left:6.318555px;}
.xd7{left:17.565150px;}
.x13b{left:82.500000px;}
.x13a{left:84.000000px;}
.x12e{left:85.500000px;}
.xe3{left:87.000000px;}
.xdb{left:88.500000px;}
.x133{left:90.000000px;}
.x139{left:91.500000px;}
.x11{left:93.000000px;}
.x80{left:94.500000px;}
.x121{left:96.000000px;}
.x138{left:99.000000px;}
.x12{left:100.500000px;}
.x122{left:102.000000px;}
.x12c{left:103.500000px;}
.x100{left:105.000000px;}
.x10b{left:106.500000px;}
.xbb{left:108.000000px;}
.x1d{left:109.500000px;}
.xa5{left:111.000000px;}
.x44{left:112.500000px;}
.x129{left:114.000000px;}
.x14{left:115.500000px;}
.x95{left:117.000000px;}
.x7a{left:118.500000px;}
.x13{left:120.000000px;}
.x26{left:121.500000px;}
.x9c{left:123.000000px;}
.x126{left:124.500000px;}
.x81{left:126.000000px;}
.x131{left:127.500000px;}
.x34{left:129.000000px;}
.x124{left:130.500000px;}
.x102{left:132.000000px;}
.x96{left:133.500000px;}
.x15{left:135.000000px;}
.x64{left:136.500000px;}
.x3e{left:138.000000px;}
.xf0{left:139.500000px;}
.x53{left:141.000000px;}
.x5e{left:142.500000px;}
.xc7{left:144.000000px;}
.xdd{left:145.500000px;}
.x88{left:147.000000px;}
.xfe{left:148.500000px;}
.x8f{left:150.000000px;}
.x6b{left:151.500000px;}
.x35{left:153.000000px;}
.x10e{left:154.500000px;}
.x65{left:156.000000px;}
.x2b{left:157.500000px;}
.x82{left:159.000000px;}
.xad{left:160.500000px;}
.x54{left:162.000000px;}
.x127{left:163.500000px;}
.x114{left:165.000000px;}
.x5f{left:166.500000px;}
.x11a{left:168.000000px;}
.x45{left:169.500000px;}
.xa6{left:171.000000px;}
.x72{left:172.500000px;}
.xf6{left:174.000000px;}
.x7b{left:175.500000px;}
.x111{left:177.000000px;}
.x2c{left:178.500000px;}
.x90{left:180.000000px;}
.xa9{left:181.500000px;}
.xe6{left:183.000000px;}
.x7c{left:184.500000px;}
.x4d{left:186.000000px;}
.xa2{left:187.500000px;}
.x1{left:189.000000px;}
.xf7{left:190.500000px;}
.xb6{left:192.000000px;}
.xd8{left:193.312635px;}
.x6c{left:195.000000px;}
.x136{left:196.500000px;}
.x16{left:198.000000px;}
.xaa{left:199.500000px;}
.x11f{left:201.000000px;}
.x36{left:202.500000px;}
.x55{left:204.000000px;}
.x7{left:205.500000px;}
.xbc{left:207.000000px;}
.xf3{left:208.500000px;}
.xcd{left:210.000000px;}
.x4e{left:211.500000px;}
.x6d{left:213.000000px;}
.x106{left:214.500000px;}
.x2{left:216.000000px;}
.x130{left:217.500000px;}
.x17{left:219.000000px;}
.x123{left:220.500000px;}
.x10f{left:222.000000px;}
.x89{left:223.500000px;}
.x73{left:225.000000px;}
.xa{left:226.500000px;}
.xcb{left:228.000000px;}
.xfa{left:229.500000px;}
.x27{left:231.000000px;}
.x56{left:232.500000px;}
.xae{left:234.000000px;}
.x103{left:235.500000px;}
.xe0{left:237.000000px;}
.x1e{left:238.500000px;}
.xe7{left:240.000000px;}
.xeb{left:241.500000px;}
.x66{left:243.000000px;}
.x74{left:244.500000px;}
.x11c{left:246.000000px;}
.x57{left:247.500000px;}
.xff{left:249.000000px;}
.x97{left:250.500000px;}
.xf8{left:252.000000px;}
.x128{left:253.500000px;}
.xb7{left:255.000000px;}
.x37{left:256.500000px;}
.xbd{left:258.000000px;}
.xa7{left:259.500000px;}
.x3{left:261.000000px;}
.xf2{left:262.500000px;}
.xde{left:264.000000px;}
.x8{left:265.500000px;}
.xe8{left:267.000000px;}
.x3f{left:268.500000px;}
.xbe{left:270.000000px;}
.xec{left:271.500000px;}
.x2d{left:273.000000px;}
.xf1{left:274.500000px;}
.x67{left:276.000000px;}
.xce{left:277.500000px;}
.xb{left:279.000000px;}
.xc5{left:280.500000px;}
.x101{left:282.000000px;}
.x18{left:283.500000px;}
.x8a{left:285.000000px;}
.x46{left:286.500000px;}
.xfb{left:288.000000px;}
.xf4{left:289.500000px;}
.xa3{left:291.000000px;}
.x117{left:292.500000px;}
.xdf{left:294.000000px;}
.x1f{left:295.500000px;}
.x68{left:297.000000px;}
.xb8{left:298.500000px;}
.x38{left:300.000000px;}
.x10c{left:301.500000px;}
.x98{left:303.000000px;}
.x19{left:304.500000px;}
.x10{left:306.000000px;}
.x60{left:307.500000px;}
.x4f{left:309.000000px;}
.xef{left:310.500000px;}
.xb9{left:312.000000px;}
.x2e{left:313.500000px;}
.x58{left:315.000000px;}
.x119{left:316.500000px;}
.x7d{left:318.000000px;}
.x132{left:319.500000px;}
.xc{left:321.000000px;}
.xf9{left:322.500000px;}
.x12b{left:324.000000px;}
.x6e{left:325.500000px;}
.x20{left:327.000000px;}
.x2f{left:328.500000px;}
.x1a{left:330.000000px;}
.xdc{left:331.500000px;}
.x104{left:333.000000px;}
.x75{left:334.500000px;}
.x4{left:336.000000px;}
.x47{left:337.500000px;}
.xe4{left:339.000000px;}
.xd{left:340.500000px;}
.x59{left:342.000000px;}
.x21{left:343.500000px;}
.x9{left:345.000000px;}
.xaf{left:346.500000px;}
.x8b{left:348.000000px;}
.x107{left:349.500000px;}
.x30{left:351.000000px;}
.x7e{left:352.500000px;}
.x115{left:354.000000px;}
.x11d{left:355.500000px;}
.x12a{left:357.000000px;}
.x39{left:358.500000px;}
.x5a{left:360.000000px;}
.x28{left:361.500000px;}
.x113{left:363.000000px;}
.x5{left:364.500000px;}
.xb0{left:366.000000px;}
.x9d{left:367.500000px;}
.x50{left:369.000000px;}
.x31{left:370.500000px;}
.xc0{left:372.000000px;}
.xba{left:373.500000px;}
.xe9{left:375.000000px;}
.x10d{left:376.500000px;}
.x83{left:378.000000px;}
.x40{left:379.500000px;}
.x108{left:381.000000px;}
.xfc{left:382.500000px;}
.x9e{left:384.000000px;}
.x6f{left:385.500000px;}
.x6{left:387.000000px;}
.xc1{left:388.500000px;}
.xe{left:390.000000px;}
.x69{left:391.500000px;}
.xe1{left:393.000000px;}
.x48{left:394.500000px;}
.xd2{left:396.000000px;}
.x99{left:397.500000px;}
.xea{left:399.000000px;}
.x76{left:400.500000px;}
.x22{left:402.000000px;}
.x9b{left:403.500000px;}
.x125{left:405.000000px;}
.x12f{left:406.500000px;}
.x41{left:408.000000px;}
.xc8{left:409.500000px;}
.xcf{left:411.000000px;}
.x11b{left:412.500000px;}
.x91{left:414.000000px;}
.x70{left:415.500000px;}
.x49{left:417.000000px;}
.xf{left:418.500000px;}
.x9a{left:420.000000px;}
.x23{left:421.500000px;}
.x77{left:423.000000px;}
.x92{left:424.500000px;}
.xbf{left:426.000000px;}
.x84{left:427.500000px;}
.x3a{left:429.000000px;}
.x120{left:430.500000px;}
.x78{left:432.000000px;}
.x1b{left:433.500000px;}
.x4a{left:435.000000px;}
.x118{left:436.500000px;}
.x5b{left:438.000000px;}
.x9f{left:439.500000px;}
.x10a{left:441.000000px;}
.x93{left:442.500000px;}
.x32{left:444.000000px;}
.x116{left:445.500000px;}
.x79{left:447.000000px;}
.xc2{left:448.500000px;}
.xa4{left:450.000000px;}
.xd3{left:451.500000px;}
.x5c{left:453.000000px;}
.xe5{left:454.500000px;}
.xd0{left:456.000000px;}
.x24{left:457.500000px;}
.x8c{left:459.000000px;}
.x29{left:460.500000px;}
.x134{left:462.000000px;}
.x71{left:463.500000px;}
.x33{left:465.000000px;}
.xa0{left:466.500000px;}
.x61{left:468.000000px;}
.x11e{left:469.500000px;}
.xb1{left:471.000000px;}
.xab{left:472.500000px;}
.xc6{left:474.000000px;}
.x8d{left:475.500000px;}
.x7f{left:477.000000px;}
.xb2{left:478.500000px;}
.x62{left:480.000000px;}
.x42{left:481.500000px;}
.xc3{left:483.000000px;}
.x2a{left:484.500000px;}
.x51{left:486.000000px;}
.xa1{left:487.500000px;}
.x110{left:489.000000px;}
.x3b{left:490.500000px;}
.xed{left:492.000000px;}
.xc9{left:493.500000px;}
.xd4{left:495.000000px;}
.x85{left:496.500000px;}
.x94{left:498.000000px;}
.x5d{left:499.500000px;}
.xb3{left:501.000000px;}
.x4b{left:502.500000px;}
.xd1{left:504.000000px;}
.x63{left:505.500000px;}
.xe2{left:507.000000px;}
.xee{left:508.500000px;}
.xf5{left:510.000000px;}
.x8e{left:511.500000px;}
.x52{left:513.000000px;}
.x3c{left:514.500000px;}
.xb4{left:516.000000px;}
.xa8{left:517.500000px;}
.x86{left:519.000000px;}
.x4c{left:520.500000px;}
.xc4{left:522.000000px;}
.x105{left:523.500000px;}
.x3d{left:525.000000px;}
.x25{left:526.500000px;}
.xac{left:528.000000px;}
.xb5{left:529.500000px;}
.x12d{left:531.000000px;}
.x109{left:532.500000px;}
.x87{left:534.000000px;}
.x112{left:535.500000px;}
.xfd{left:537.000000px;}
.x1c{left:538.500000px;}
.xcc{left:540.000000px;}
.x135{left:541.500000px;}
.x6a{left:543.000000px;}
.xca{left:544.500000px;}
.x137{left:546.000000px;}
.x43{left:549.000000px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:13.546667pt;}
.ls2{letter-spacing:18.666667pt;}
.ls1{letter-spacing:24.000000pt;}
.ws15{word-spacing:-24.000000pt;}
.ws30{word-spacing:-21.333333pt;}
.ws10{word-spacing:-18.666667pt;}
.ws5c{word-spacing:-13.866667pt;}
.ws48{word-spacing:-13.575208pt;}
.wsa{word-spacing:-12.168493pt;}
.ws17{word-spacing:-11.783676pt;}
.ws28{word-spacing:-11.398858pt;}
.ws50{word-spacing:-11.311909pt;}
.ws5e{word-spacing:-11.084475pt;}
.ws5a{word-spacing:-11.021585pt;}
.ws20{word-spacing:-10.863905pt;}
.ws38{word-spacing:-10.666667pt;}
.ws65{word-spacing:-9.616444pt;}
.ws55{word-spacing:-8.000000pt;}
.ws2f{word-spacing:-7.987906pt;}
.ws41{word-spacing:-7.800454pt;}
.ws52{word-spacing:-7.589744pt;}
.ws8c{word-spacing:-7.455023pt;}
.ws90{word-spacing:-7.152970pt;}
.ws4c{word-spacing:-7.130298pt;}
.ws36{word-spacing:-7.070205pt;}
.ws24{word-spacing:-6.754078pt;}
.ws53{word-spacing:-5.824427pt;}
.ws4{word-spacing:-5.333333pt;}
.ws4f{word-spacing:-4.958104pt;}
.ws21{word-spacing:-3.900227pt;}
.ws68{word-spacing:-2.833202pt;}
.ws56{word-spacing:-2.741552pt;}
.ws27{word-spacing:-2.666667pt;}
.ws5f{word-spacing:-2.650251pt;}
.ws62{word-spacing:-2.171745pt;}
.ws57{word-spacing:-2.103120pt;}
.ws54{word-spacing:-0.698193pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:2.666667pt;}
.ws51{word-spacing:3.737765pt;}
.ws63{word-spacing:3.757576pt;}
.ws25{word-spacing:4.328824pt;}
.ws3c{word-spacing:4.819156pt;}
.ws2{word-spacing:5.333333pt;}
.ws32{word-spacing:5.596708pt;}
.ws61{word-spacing:5.611111pt;}
.wse{word-spacing:6.462853pt;}
.ws45{word-spacing:6.754187pt;}
.ws3f{word-spacing:6.922981pt;}
.ws0{word-spacing:8.000000pt;}
.ws85{word-spacing:8.079923pt;}
.ws23{word-spacing:9.406597pt;}
.ws69{word-spacing:9.647276pt;}
.ws3d{word-spacing:10.644628pt;}
.ws13{word-spacing:10.666667pt;}
.ws79{word-spacing:10.733270pt;}
.ws7b{word-spacing:10.930041pt;}
.ws44{word-spacing:11.120353pt;}
.ws19{word-spacing:11.522634pt;}
.ws4b{word-spacing:11.641261pt;}
.ws8b{word-spacing:11.677817pt;}
.ws7f{word-spacing:12.181070pt;}
.ws3{word-spacing:12.421582pt;}
.ws16{word-spacing:12.790101pt;}
.ws80{word-spacing:13.333333pt;}
.ws46{word-spacing:13.364720pt;}
.ws3e{word-spacing:13.385042pt;}
.ws7c{word-spacing:13.509138pt;}
.wsc{word-spacing:13.748255pt;}
.ws29{word-spacing:14.108957pt;}
.ws7a{word-spacing:14.189300pt;}
.ws43{word-spacing:14.734720pt;}
.ws84{word-spacing:15.074928pt;}
.ws6{word-spacing:15.310205pt;}
.ws66{word-spacing:15.556787pt;}
.ws5b{word-spacing:16.000000pt;}
.ws59{word-spacing:16.401601pt;}
.ws5d{word-spacing:17.009259pt;}
.ws58{word-spacing:17.185185pt;}
.ws35{word-spacing:17.531680pt;}
.ws47{word-spacing:17.741047pt;}
.ws6b{word-spacing:18.349086pt;}
.ws74{word-spacing:18.666667pt;}
.ws33{word-spacing:18.765432pt;}
.ws75{word-spacing:18.826015pt;}
.ws8d{word-spacing:19.400634pt;}
.ws6e{word-spacing:19.656510pt;}
.ws18{word-spacing:20.000000pt;}
.ws1c{word-spacing:20.166468pt;}
.ws2c{word-spacing:20.555423pt;}
.ws6a{word-spacing:20.609053pt;}
.ws8e{word-spacing:21.035917pt;}
.wsd{word-spacing:21.333333pt;}
.ws78{word-spacing:22.296502pt;}
.ws1a{word-spacing:23.374486pt;}
.ws70{word-spacing:23.703704pt;}
.ws2b{word-spacing:23.722747pt;}
.ws2e{word-spacing:24.118190pt;}
.ws2d{word-spacing:24.418733pt;}
.ws73{word-spacing:24.628099pt;}
.ws4e{word-spacing:24.937264pt;}
.ws3a{word-spacing:26.434844pt;}
.wsb{word-spacing:26.948670pt;}
.ws67{word-spacing:27.337114pt;}
.ws77{word-spacing:28.264650pt;}
.ws37{word-spacing:30.814815pt;}
.ws4a{word-spacing:30.951481pt;}
.ws89{word-spacing:31.724518pt;}
.ws64{word-spacing:31.933884pt;}
.ws2a{word-spacing:32.143251pt;}
.ws88{word-spacing:33.185185pt;}
.ws4d{word-spacing:33.638311pt;}
.ws71{word-spacing:33.870084pt;}
.ws76{word-spacing:34.565848pt;}
.ws3b{word-spacing:35.944004pt;}
.ws1f{word-spacing:36.666667pt;}
.ws34{word-spacing:37.245179pt;}
.ws6c{word-spacing:37.925926pt;}
.ws26{word-spacing:38.611570pt;}
.ws82{word-spacing:38.666667pt;}
.ws81{word-spacing:38.820937pt;}
.ws8a{word-spacing:40.138460pt;}
.ws6d{word-spacing:40.296296pt;}
.ws7{word-spacing:40.527414pt;}
.ws83{word-spacing:41.876543pt;}
.ws1e{word-spacing:42.469136pt;}
.ws42{word-spacing:42.578023pt;}
.ws31{word-spacing:43.410853pt;}
.ws8f{word-spacing:43.553875pt;}
.ws7d{word-spacing:44.081633pt;}
.ws9{word-spacing:44.939338pt;}
.ws39{word-spacing:46.995491pt;}
.ws87{word-spacing:47.184745pt;}
.ws22{word-spacing:49.884298pt;}
.ws1d{word-spacing:50.786621pt;}
.ws14{word-spacing:50.874009pt;}
.ws7e{word-spacing:53.476105pt;}
.ws6f{word-spacing:59.332973pt;}
.ws11{word-spacing:60.615856pt;}
.ws72{word-spacing:60.869927pt;}
.ws40{word-spacing:71.888008pt;}
.ws86{word-spacing:74.923783pt;}
.wsf{word-spacing:109.590450pt;}
.ws1b{word-spacing:128.000000pt;}
.ws12{word-spacing:213.333333pt;}
.ws49{word-spacing:298.666667pt;}
.ws8{word-spacing:496.000000pt;}
.ws60{word-spacing:501.333333pt;}
._d{margin-left:-17.502822pt;}
._13{margin-left:-14.361689pt;}
._14{margin-left:-10.202113pt;}
._7{margin-left:-5.130400pt;}
._9{margin-left:-3.115646pt;}
._c{margin-left:-1.539269pt;}
._11{width:2.580479pt;}
._2{width:3.704935pt;}
._a{width:4.622558pt;}
._4{width:5.748992pt;}
._1{width:7.808762pt;}
._f{width:8.997581pt;}
._10{width:16.869702pt;}
._8{width:21.333333pt;}
._6{width:26.666667pt;}
._e{width:29.333333pt;}
._5{width:32.000000pt;}
._3{width:37.333333pt;}
._12{width:48.628099pt;}
._b{width:55.724518pt;}
._0{width:74.911340pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.771867pt;}
.y3f{bottom:1.902533pt;}
.y175{bottom:44.000000pt;}
.yc2{bottom:45.333333pt;}
.yc1{bottom:46.666667pt;}
.yef{bottom:48.000000pt;}
.y92{bottom:49.333333pt;}
.y91{bottom:50.666667pt;}
.y17f{bottom:52.000000pt;}
.y144{bottom:53.333333pt;}
.y143{bottom:54.666667pt;}
.yee{bottom:56.000000pt;}
.yc0{bottom:57.333333pt;}
.y90{bottom:58.666667pt;}
.y8f{bottom:60.000000pt;}
.y8e{bottom:61.333333pt;}
.y149{bottom:62.666667pt;}
.y17e{bottom:64.000000pt;}
.y142{bottom:65.333333pt;}
.y141{bottom:66.666667pt;}
.yed{bottom:68.000000pt;}
.y8d{bottom:69.333333pt;}
.y8c{bottom:70.666667pt;}
.y3b{bottom:72.000000pt;}
.y3a{bottom:73.333333pt;}
.y17d{bottom:74.666667pt;}
.y140{bottom:76.000000pt;}
.y13f{bottom:77.333333pt;}
.yec{bottom:78.666667pt;}
.yeb{bottom:80.000000pt;}
.ybf{bottom:81.333333pt;}
.y8b{bottom:82.666667pt;}
.y39{bottom:84.000000pt;}
.y38{bottom:85.333333pt;}
.y14a{bottom:86.666667pt;}
.y13e{bottom:88.000000pt;}
.y13d{bottom:89.333333pt;}
.yea{bottom:90.666667pt;}
.y8a{bottom:92.000000pt;}
.y89{bottom:93.333333pt;}
.y37{bottom:94.666667pt;}
.y36{bottom:96.000000pt;}
.y35{bottom:97.333333pt;}
.y13c{bottom:98.666667pt;}
.y13b{bottom:100.000000pt;}
.ye9{bottom:101.333333pt;}
.ye8{bottom:102.666667pt;}
.ybe{bottom:104.000000pt;}
.y88{bottom:105.333333pt;}
.y34{bottom:106.666667pt;}
.y33{bottom:108.000000pt;}
.y172{bottom:109.333333pt;}
.y13a{bottom:110.666667pt;}
.y139{bottom:112.000000pt;}
.yf7{bottom:113.333333pt;}
.ybc{bottom:114.666667pt;}
.ybd{bottom:116.000000pt;}
.y32{bottom:117.333333pt;}
.y31{bottom:118.666667pt;}
.y30{bottom:120.000000pt;}
.y1bb{bottom:121.333333pt;}
.y138{bottom:122.666667pt;}
.y137{bottom:124.000000pt;}
.ybb{bottom:125.333333pt;}
.y87{bottom:126.666667pt;}
.y86{bottom:128.000000pt;}
.y2f{bottom:129.333333pt;}
.y2e{bottom:130.666667pt;}
.y148{bottom:132.000000pt;}
.y136{bottom:133.333333pt;}
.y135{bottom:134.666667pt;}
.y1ac{bottom:136.000000pt;}
.yb9{bottom:137.333333pt;}
.yba{bottom:138.666667pt;}
.y192{bottom:140.000000pt;}
.y2d{bottom:141.333333pt;}
.y2c{bottom:142.666667pt;}
.y147{bottom:144.000000pt;}
.y101{bottom:145.333333pt;}
.y100{bottom:146.666667pt;}
.yf6{bottom:148.000000pt;}
.yb8{bottom:149.333333pt;}
.y85{bottom:150.666667pt;}
.y2b{bottom:152.000000pt;}
.y2a{bottom:153.333333pt;}
.y1ab{bottom:154.666667pt;}
.y134{bottom:156.000000pt;}
.y133{bottom:157.333333pt;}
.y146{bottom:158.666667pt;}
.yb7{bottom:160.000000pt;}
.yb6{bottom:161.333333pt;}
.y173{bottom:162.666667pt;}
.y29{bottom:164.000000pt;}
.y28{bottom:165.333333pt;}
.y171{bottom:166.666667pt;}
.y132{bottom:168.000000pt;}
.y131{bottom:169.333333pt;}
.yf5{bottom:170.666667pt;}
.yb5{bottom:172.000000pt;}
.y84{bottom:173.333333pt;}
.y27{bottom:174.666667pt;}
.y26{bottom:176.000000pt;}
.y110{bottom:177.333333pt;}
.y1b6{bottom:178.666667pt;}
.y130{bottom:180.000000pt;}
.y170{bottom:181.333333pt;}
.yf4{bottom:182.666667pt;}
.y83{bottom:184.000000pt;}
.y82{bottom:185.333333pt;}
.y25{bottom:186.666667pt;}
.y24{bottom:188.000000pt;}
.ye7{bottom:189.333333pt;}
.yff{bottom:190.666667pt;}
.y10f{bottom:192.000000pt;}
.yf3{bottom:193.333333pt;}
.yf2{bottom:194.666667pt;}
.y81{bottom:196.000000pt;}
.y80{bottom:197.333333pt;}
.y16f{bottom:198.666667pt;}
.y1a9{bottom:200.000000pt;}
.y1aa{bottom:201.333333pt;}
.ye6{bottom:202.666667pt;}
.ye5{bottom:204.000000pt;}
.yf1{bottom:205.333333pt;}
.y7f{bottom:206.666667pt;}
.y7e{bottom:208.000000pt;}
.y7d{bottom:209.333333pt;}
.y17c{bottom:210.666667pt;}
.y16e{bottom:212.000000pt;}
.y16d{bottom:213.333333pt;}
.y1a8{bottom:214.666667pt;}
.yf0{bottom:216.000000pt;}
.ye4{bottom:217.333333pt;}
.yb4{bottom:218.666667pt;}
.y7c{bottom:220.000000pt;}
.y10e{bottom:221.333333pt;}
.y1b5{bottom:222.666667pt;}
.y191{bottom:224.000000pt;}
.y17b{bottom:225.333333pt;}
.y23{bottom:226.666667pt;}
.y16c{bottom:228.000000pt;}
.y7b{bottom:229.333333pt;}
.y7a{bottom:230.666667pt;}
.y79{bottom:232.000000pt;}
.yb2{bottom:233.333333pt;}
.yb3{bottom:234.666667pt;}
.yfe{bottom:236.000000pt;}
.y1b4{bottom:237.333333pt;}
.y190{bottom:238.666667pt;}
.y22{bottom:240.000000pt;}
.y21{bottom:241.333333pt;}
.y78{bottom:242.666667pt;}
.y77{bottom:244.000000pt;}
.y1a7{bottom:245.333333pt;}
.ye3{bottom:246.666667pt;}
.ye2{bottom:248.000000pt;}
.yb1{bottom:249.333333pt;}
.yfd{bottom:250.666667pt;}
.y10d{bottom:252.000000pt;}
.y76{bottom:253.333333pt;}
.y75{bottom:254.666667pt;}
.y1f{bottom:256.000000pt;}
.y20{bottom:257.333333pt;}
.y16b{bottom:258.666667pt;}
.y1a6{bottom:260.000000pt;}
.ye1{bottom:261.333333pt;}
.ye0{bottom:262.666667pt;}
.y74{bottom:264.000000pt;}
.y73{bottom:265.333333pt;}
.y72{bottom:266.666667pt;}
.y1b3{bottom:268.000000pt;}
.y12f{bottom:269.333333pt;}
.y1e{bottom:270.666667pt;}
.y1d{bottom:272.000000pt;}
.y16a{bottom:273.333333pt;}
.y195{bottom:274.666667pt;}
.y71{bottom:276.000000pt;}
.y70{bottom:277.333333pt;}
.yb0{bottom:278.666667pt;}
.yfc{bottom:280.000000pt;}
.y10c{bottom:281.333333pt;}
.y1b2{bottom:282.666667pt;}
.y1c{bottom:285.333333pt;}
.y1b{bottom:286.666667pt;}
.y6f{bottom:288.000000pt;}
.y6e{bottom:289.333333pt;}
.y1a5{bottom:290.666667pt;}
.ydf{bottom:292.000000pt;}
.yaf{bottom:293.333333pt;}
.yae{bottom:294.666667pt;}
.yfb{bottom:296.000000pt;}
.y18f{bottom:297.333333pt;}
.y6d{bottom:298.666667pt;}
.y6c{bottom:300.000000pt;}
.y1a{bottom:301.333333pt;}
.y169{bottom:302.666667pt;}
.y168{bottom:304.000000pt;}
.y1a4{bottom:305.333333pt;}
.yde{bottom:306.666667pt;}
.ydd{bottom:308.000000pt;}
.yad{bottom:309.333333pt;}
.y6b{bottom:310.666667pt;}
.y6a{bottom:312.000000pt;}
.y18e{bottom:313.333333pt;}
.y17a{bottom:314.666667pt;}
.y18{bottom:316.000000pt;}
.y19{bottom:317.333333pt;}
.y167{bottom:318.666667pt;}
.y194{bottom:320.000000pt;}
.y69{bottom:321.333333pt;}
.y68{bottom:322.666667pt;}
.yab{bottom:324.000000pt;}
.yac{bottom:325.333333pt;}
.y10b{bottom:326.666667pt;}
.y18d{bottom:328.000000pt;}
.y179{bottom:329.333333pt;}
.y17{bottom:330.666667pt;}
.y16{bottom:332.000000pt;}
.y67{bottom:333.333333pt;}
.y66{bottom:334.666667pt;}
.y1a3{bottom:336.000000pt;}
.ydc{bottom:337.333333pt;}
.ya9{bottom:338.666667pt;}
.yaa{bottom:340.000000pt;}
.y10a{bottom:341.333333pt;}
.y18c{bottom:342.666667pt;}
.y193{bottom:344.000000pt;}
.y12e{bottom:345.333333pt;}
.y15{bottom:346.666667pt;}
.y166{bottom:348.000000pt;}
.y1a2{bottom:349.333333pt;}
.y1a1{bottom:350.666667pt;}
.ydb{bottom:352.000000pt;}
.ya7{bottom:353.333333pt;}
.ya8{bottom:354.666667pt;}
.yfa{bottom:356.000000pt;}
.y18a{bottom:357.333333pt;}
.y18b{bottom:358.666667pt;}
.y14{bottom:360.000000pt;}
.y13{bottom:361.333333pt;}
.y165{bottom:362.666667pt;}
.y164{bottom:364.000000pt;}
.y1a0{bottom:365.333333pt;}
.yda{bottom:366.666667pt;}
.ya6{bottom:368.000000pt;}
.ya5{bottom:369.333333pt;}
.yf9{bottom:370.666667pt;}
.y1b1{bottom:372.000000pt;}
.y189{bottom:373.333333pt;}
.y12d{bottom:374.666667pt;}
.y12{bottom:376.000000pt;}
.y162{bottom:377.333333pt;}
.y163{bottom:378.666667pt;}
.y19f{bottom:380.000000pt;}
.yd9{bottom:381.333333pt;}
.y65{bottom:382.666667pt;}
.y64{bottom:384.000000pt;}
.yf8{bottom:385.333333pt;}
.y109{bottom:386.666667pt;}
.y188{bottom:388.000000pt;}
.y12c{bottom:389.333333pt;}
.y11{bottom:390.666667pt;}
.y1ba{bottom:392.000000pt;}
.y19e{bottom:394.666667pt;}
.y19d{bottom:396.000000pt;}
.yd8{bottom:397.333333pt;}
.y63{bottom:398.666667pt;}
.y62{bottom:400.000000pt;}
.y108{bottom:401.333333pt;}
.y186{bottom:402.666667pt;}
.y187{bottom:404.000000pt;}
.y10{bottom:405.333333pt;}
.y19c{bottom:409.333333pt;}
.y161{bottom:410.666667pt;}
.yd7{bottom:412.000000pt;}
.y61{bottom:413.333333pt;}
.y60{bottom:414.666667pt;}
.y107{bottom:416.000000pt;}
.y185{bottom:417.333333pt;}
.y178{bottom:418.666667pt;}
.y12b{bottom:420.000000pt;}
.yf{bottom:421.333333pt;}
.y160{bottom:424.000000pt;}
.y15f{bottom:425.333333pt;}
.yd6{bottom:426.666667pt;}
.y5f{bottom:428.000000pt;}
.y5e{bottom:429.333333pt;}
.y106{bottom:430.666667pt;}
.y183{bottom:432.000000pt;}
.y184{bottom:433.333333pt;}
.y12a{bottom:434.666667pt;}
.ye{bottom:436.000000pt;}
.y15e{bottom:438.666667pt;}
.y15d{bottom:440.000000pt;}
.yd5{bottom:441.333333pt;}
.y5d{bottom:442.666667pt;}
.y5c{bottom:444.000000pt;}
.y105{bottom:445.333333pt;}
.y182{bottom:448.000000pt;}
.y129{bottom:449.333333pt;}
.yd{bottom:450.666667pt;}
.y15c{bottom:454.666667pt;}
.y15b{bottom:456.000000pt;}
.yd4{bottom:457.333333pt;}
.y5b{bottom:458.666667pt;}
.ya4{bottom:460.000000pt;}
.y1b0{bottom:461.333333pt;}
.y181{bottom:462.666667pt;}
.y128{bottom:464.000000pt;}
.yc{bottom:465.333333pt;}
.y15a{bottom:469.333333pt;}
.y159{bottom:470.666667pt;}
.yd3{bottom:472.000000pt;}
.y5a{bottom:473.333333pt;}
.y59{bottom:474.666667pt;}
.y1af{bottom:476.000000pt;}
.y177{bottom:478.666667pt;}
.yb{bottom:480.000000pt;}
.y158{bottom:484.000000pt;}
.y157{bottom:485.333333pt;}
.yd2{bottom:486.666667pt;}
.y58{bottom:488.000000pt;}
.y57{bottom:489.333333pt;}
.y104{bottom:490.666667pt;}
.ya{bottom:494.666667pt;}
.y9{bottom:496.000000pt;}
.y156{bottom:500.000000pt;}
.yd1{bottom:501.333333pt;}
.y56{bottom:502.666667pt;}
.y55{bottom:504.000000pt;}
.y103{bottom:505.333333pt;}
.y8{bottom:509.333333pt;}
.y7{bottom:510.666667pt;}
.y155{bottom:514.666667pt;}
.y154{bottom:516.000000pt;}
.y54{bottom:517.333333pt;}
.y53{bottom:518.666667pt;}
.ya3{bottom:520.000000pt;}
.y127{bottom:524.000000pt;}
.y6{bottom:525.333333pt;}
.y153{bottom:529.333333pt;}
.y152{bottom:530.666667pt;}
.yd0{bottom:532.000000pt;}
.y52{bottom:533.333333pt;}
.ya2{bottom:534.666667pt;}
.y1ae{bottom:536.000000pt;}
.y176{bottom:538.666667pt;}
.y126{bottom:540.000000pt;}
.y151{bottom:544.000000pt;}
.y150{bottom:545.333333pt;}
.ycf{bottom:546.666667pt;}
.y51{bottom:548.000000pt;}
.y50{bottom:549.333333pt;}
.y1ad{bottom:550.666667pt;}
.y5{bottom:554.666667pt;}
.y14f{bottom:560.000000pt;}
.yce{bottom:561.333333pt;}
.y4f{bottom:562.666667pt;}
.y4e{bottom:564.000000pt;}
.y102{bottom:565.333333pt;}
.y125{bottom:569.333333pt;}
.y14e{bottom:574.666667pt;}
.ycd{bottom:576.000000pt;}
.y4d{bottom:577.333333pt;}
.y4c{bottom:578.666667pt;}
.ya1{bottom:580.000000pt;}
.y123{bottom:584.000000pt;}
.y124{bottom:585.333333pt;}
.y4{bottom:589.333333pt;}
.y19b{bottom:590.666667pt;}
.ycc{bottom:592.000000pt;}
.y4b{bottom:593.333333pt;}
.ya0{bottom:594.666667pt;}
.y1b9{bottom:596.000000pt;}
.y122{bottom:598.666667pt;}
.y3{bottom:600.000000pt;}
.y14d{bottom:604.000000pt;}
.y14c{bottom:605.333333pt;}
.ycb{bottom:606.666667pt;}
.y4a{bottom:608.000000pt;}
.y9f{bottom:609.333333pt;}
.y1b8{bottom:610.666667pt;}
.y2{bottom:614.666667pt;}
.y14b{bottom:620.000000pt;}
.yca{bottom:621.333333pt;}
.y49{bottom:622.666667pt;}
.y9e{bottom:624.000000pt;}
.y1b7{bottom:625.333333pt;}
.y121{bottom:629.333333pt;}
.yc9{bottom:636.000000pt;}
.y1{bottom:637.333333pt;}
.y48{bottom:638.666667pt;}
.y9d{bottom:640.000000pt;}
.y11f{bottom:644.000000pt;}
.y120{bottom:645.333333pt;}
.y19a{bottom:650.666667pt;}
.yc8{bottom:652.000000pt;}
.y47{bottom:653.333333pt;}
.y9c{bottom:654.666667pt;}
.y11d{bottom:658.666667pt;}
.y11e{bottom:660.000000pt;}
.y199{bottom:665.333333pt;}
.yc7{bottom:666.666667pt;}
.y46{bottom:668.000000pt;}
.y9a{bottom:669.333333pt;}
.y9b{bottom:670.666667pt;}
.y11a{bottom:673.333333pt;}
.y11b{bottom:674.666667pt;}
.y11c{bottom:676.000000pt;}
.y198{bottom:680.000000pt;}
.yc6{bottom:681.333333pt;}
.y45{bottom:682.666667pt;}
.y44{bottom:684.000000pt;}
.y180{bottom:685.333333pt;}
.y118{bottom:689.333333pt;}
.y119{bottom:690.666667pt;}
.y197{bottom:694.666667pt;}
.yc5{bottom:696.000000pt;}
.y98{bottom:697.333333pt;}
.y43{bottom:698.666667pt;}
.y99{bottom:700.000000pt;}
.y116{bottom:704.000000pt;}
.y117{bottom:705.333333pt;}
.y196{bottom:709.333333pt;}
.yc4{bottom:710.666667pt;}
.yc3{bottom:712.000000pt;}
.y42{bottom:713.333333pt;}
.y97{bottom:714.666667pt;}
.y114{bottom:718.666667pt;}
.y115{bottom:720.000000pt;}
.y174{bottom:725.333333pt;}
.y95{bottom:726.666667pt;}
.y41{bottom:728.000000pt;}
.y96{bottom:729.333333pt;}
.y113{bottom:733.333333pt;}
.y112{bottom:734.666667pt;}
.y111{bottom:760.000000pt;}
.y145{bottom:761.333333pt;}
.y93{bottom:762.666667pt;}
.y40{bottom:764.000000pt;}
.y94{bottom:765.333333pt;}
.y3e{bottom:808.861573pt;}
.y3c{bottom:810.194907pt;}
.h6{height:9.415867pt;}
.h8{height:12.082533pt;}
.hc{height:32.890957pt;}
.h7{height:33.375000pt;}
.h3{height:38.372784pt;}
.hd{height:43.706117pt;}
.h2{height:43.854610pt;}
.h9{height:44.500000pt;}
.he{height:49.187943pt;}
.h5{height:49.336436pt;}
.ha{height:54.669770pt;}
.h4{height:54.818262pt;}
.hb{height:60.151596pt;}
.h1{height:87.709220pt;}
.h0{height:834.666667pt;}
.w2{width:69.002400pt;}
.w3{width:71.669067pt;}
.w4{width:84.931454pt;}
.w1{width:90.241067pt;}
.w6{width:109.710000pt;}
.w5{width:122.099333pt;}
.w0{width:569.333333pt;}
.x0{left:0.000000pt;}
.xd9{left:1.333333pt;}
.xd6{left:2.453200pt;}
.xda{left:4.246266pt;}
.xd5{left:5.616493pt;}
.xd7{left:15.613467pt;}
.x13b{left:73.333333pt;}
.x13a{left:74.666667pt;}
.x12e{left:76.000000pt;}
.xe3{left:77.333333pt;}
.xdb{left:78.666667pt;}
.x133{left:80.000000pt;}
.x139{left:81.333333pt;}
.x11{left:82.666667pt;}
.x80{left:84.000000pt;}
.x121{left:85.333333pt;}
.x138{left:88.000000pt;}
.x12{left:89.333333pt;}
.x122{left:90.666667pt;}
.x12c{left:92.000000pt;}
.x100{left:93.333333pt;}
.x10b{left:94.666667pt;}
.xbb{left:96.000000pt;}
.x1d{left:97.333333pt;}
.xa5{left:98.666667pt;}
.x44{left:100.000000pt;}
.x129{left:101.333333pt;}
.x14{left:102.666667pt;}
.x95{left:104.000000pt;}
.x7a{left:105.333333pt;}
.x13{left:106.666667pt;}
.x26{left:108.000000pt;}
.x9c{left:109.333333pt;}
.x126{left:110.666667pt;}
.x81{left:112.000000pt;}
.x131{left:113.333333pt;}
.x34{left:114.666667pt;}
.x124{left:116.000000pt;}
.x102{left:117.333333pt;}
.x96{left:118.666667pt;}
.x15{left:120.000000pt;}
.x64{left:121.333333pt;}
.x3e{left:122.666667pt;}
.xf0{left:124.000000pt;}
.x53{left:125.333333pt;}
.x5e{left:126.666667pt;}
.xc7{left:128.000000pt;}
.xdd{left:129.333333pt;}
.x88{left:130.666667pt;}
.xfe{left:132.000000pt;}
.x8f{left:133.333333pt;}
.x6b{left:134.666667pt;}
.x35{left:136.000000pt;}
.x10e{left:137.333333pt;}
.x65{left:138.666667pt;}
.x2b{left:140.000000pt;}
.x82{left:141.333333pt;}
.xad{left:142.666667pt;}
.x54{left:144.000000pt;}
.x127{left:145.333333pt;}
.x114{left:146.666667pt;}
.x5f{left:148.000000pt;}
.x11a{left:149.333333pt;}
.x45{left:150.666667pt;}
.xa6{left:152.000000pt;}
.x72{left:153.333333pt;}
.xf6{left:154.666667pt;}
.x7b{left:156.000000pt;}
.x111{left:157.333333pt;}
.x2c{left:158.666667pt;}
.x90{left:160.000000pt;}
.xa9{left:161.333333pt;}
.xe6{left:162.666667pt;}
.x7c{left:164.000000pt;}
.x4d{left:165.333333pt;}
.xa2{left:166.666667pt;}
.x1{left:168.000000pt;}
.xf7{left:169.333333pt;}
.xb6{left:170.666667pt;}
.xd8{left:171.833453pt;}
.x6c{left:173.333333pt;}
.x136{left:174.666667pt;}
.x16{left:176.000000pt;}
.xaa{left:177.333333pt;}
.x11f{left:178.666667pt;}
.x36{left:180.000000pt;}
.x55{left:181.333333pt;}
.x7{left:182.666667pt;}
.xbc{left:184.000000pt;}
.xf3{left:185.333333pt;}
.xcd{left:186.666667pt;}
.x4e{left:188.000000pt;}
.x6d{left:189.333333pt;}
.x106{left:190.666667pt;}
.x2{left:192.000000pt;}
.x130{left:193.333333pt;}
.x17{left:194.666667pt;}
.x123{left:196.000000pt;}
.x10f{left:197.333333pt;}
.x89{left:198.666667pt;}
.x73{left:200.000000pt;}
.xa{left:201.333333pt;}
.xcb{left:202.666667pt;}
.xfa{left:204.000000pt;}
.x27{left:205.333333pt;}
.x56{left:206.666667pt;}
.xae{left:208.000000pt;}
.x103{left:209.333333pt;}
.xe0{left:210.666667pt;}
.x1e{left:212.000000pt;}
.xe7{left:213.333333pt;}
.xeb{left:214.666667pt;}
.x66{left:216.000000pt;}
.x74{left:217.333333pt;}
.x11c{left:218.666667pt;}
.x57{left:220.000000pt;}
.xff{left:221.333333pt;}
.x97{left:222.666667pt;}
.xf8{left:224.000000pt;}
.x128{left:225.333333pt;}
.xb7{left:226.666667pt;}
.x37{left:228.000000pt;}
.xbd{left:229.333333pt;}
.xa7{left:230.666667pt;}
.x3{left:232.000000pt;}
.xf2{left:233.333333pt;}
.xde{left:234.666667pt;}
.x8{left:236.000000pt;}
.xe8{left:237.333333pt;}
.x3f{left:238.666667pt;}
.xbe{left:240.000000pt;}
.xec{left:241.333333pt;}
.x2d{left:242.666667pt;}
.xf1{left:244.000000pt;}
.x67{left:245.333333pt;}
.xce{left:246.666667pt;}
.xb{left:248.000000pt;}
.xc5{left:249.333333pt;}
.x101{left:250.666667pt;}
.x18{left:252.000000pt;}
.x8a{left:253.333333pt;}
.x46{left:254.666667pt;}
.xfb{left:256.000000pt;}
.xf4{left:257.333333pt;}
.xa3{left:258.666667pt;}
.x117{left:260.000000pt;}
.xdf{left:261.333333pt;}
.x1f{left:262.666667pt;}
.x68{left:264.000000pt;}
.xb8{left:265.333333pt;}
.x38{left:266.666667pt;}
.x10c{left:268.000000pt;}
.x98{left:269.333333pt;}
.x19{left:270.666667pt;}
.x10{left:272.000000pt;}
.x60{left:273.333333pt;}
.x4f{left:274.666667pt;}
.xef{left:276.000000pt;}
.xb9{left:277.333333pt;}
.x2e{left:278.666667pt;}
.x58{left:280.000000pt;}
.x119{left:281.333333pt;}
.x7d{left:282.666667pt;}
.x132{left:284.000000pt;}
.xc{left:285.333333pt;}
.xf9{left:286.666667pt;}
.x12b{left:288.000000pt;}
.x6e{left:289.333333pt;}
.x20{left:290.666667pt;}
.x2f{left:292.000000pt;}
.x1a{left:293.333333pt;}
.xdc{left:294.666667pt;}
.x104{left:296.000000pt;}
.x75{left:297.333333pt;}
.x4{left:298.666667pt;}
.x47{left:300.000000pt;}
.xe4{left:301.333333pt;}
.xd{left:302.666667pt;}
.x59{left:304.000000pt;}
.x21{left:305.333333pt;}
.x9{left:306.666667pt;}
.xaf{left:308.000000pt;}
.x8b{left:309.333333pt;}
.x107{left:310.666667pt;}
.x30{left:312.000000pt;}
.x7e{left:313.333333pt;}
.x115{left:314.666667pt;}
.x11d{left:316.000000pt;}
.x12a{left:317.333333pt;}
.x39{left:318.666667pt;}
.x5a{left:320.000000pt;}
.x28{left:321.333333pt;}
.x113{left:322.666667pt;}
.x5{left:324.000000pt;}
.xb0{left:325.333333pt;}
.x9d{left:326.666667pt;}
.x50{left:328.000000pt;}
.x31{left:329.333333pt;}
.xc0{left:330.666667pt;}
.xba{left:332.000000pt;}
.xe9{left:333.333333pt;}
.x10d{left:334.666667pt;}
.x83{left:336.000000pt;}
.x40{left:337.333333pt;}
.x108{left:338.666667pt;}
.xfc{left:340.000000pt;}
.x9e{left:341.333333pt;}
.x6f{left:342.666667pt;}
.x6{left:344.000000pt;}
.xc1{left:345.333333pt;}
.xe{left:346.666667pt;}
.x69{left:348.000000pt;}
.xe1{left:349.333333pt;}
.x48{left:350.666667pt;}
.xd2{left:352.000000pt;}
.x99{left:353.333333pt;}
.xea{left:354.666667pt;}
.x76{left:356.000000pt;}
.x22{left:357.333333pt;}
.x9b{left:358.666667pt;}
.x125{left:360.000000pt;}
.x12f{left:361.333333pt;}
.x41{left:362.666667pt;}
.xc8{left:364.000000pt;}
.xcf{left:365.333333pt;}
.x11b{left:366.666667pt;}
.x91{left:368.000000pt;}
.x70{left:369.333333pt;}
.x49{left:370.666667pt;}
.xf{left:372.000000pt;}
.x9a{left:373.333333pt;}
.x23{left:374.666667pt;}
.x77{left:376.000000pt;}
.x92{left:377.333333pt;}
.xbf{left:378.666667pt;}
.x84{left:380.000000pt;}
.x3a{left:381.333333pt;}
.x120{left:382.666667pt;}
.x78{left:384.000000pt;}
.x1b{left:385.333333pt;}
.x4a{left:386.666667pt;}
.x118{left:388.000000pt;}
.x5b{left:389.333333pt;}
.x9f{left:390.666667pt;}
.x10a{left:392.000000pt;}
.x93{left:393.333333pt;}
.x32{left:394.666667pt;}
.x116{left:396.000000pt;}
.x79{left:397.333333pt;}
.xc2{left:398.666667pt;}
.xa4{left:400.000000pt;}
.xd3{left:401.333333pt;}
.x5c{left:402.666667pt;}
.xe5{left:404.000000pt;}
.xd0{left:405.333333pt;}
.x24{left:406.666667pt;}
.x8c{left:408.000000pt;}
.x29{left:409.333333pt;}
.x134{left:410.666667pt;}
.x71{left:412.000000pt;}
.x33{left:413.333333pt;}
.xa0{left:414.666667pt;}
.x61{left:416.000000pt;}
.x11e{left:417.333333pt;}
.xb1{left:418.666667pt;}
.xab{left:420.000000pt;}
.xc6{left:421.333333pt;}
.x8d{left:422.666667pt;}
.x7f{left:424.000000pt;}
.xb2{left:425.333333pt;}
.x62{left:426.666667pt;}
.x42{left:428.000000pt;}
.xc3{left:429.333333pt;}
.x2a{left:430.666667pt;}
.x51{left:432.000000pt;}
.xa1{left:433.333333pt;}
.x110{left:434.666667pt;}
.x3b{left:436.000000pt;}
.xed{left:437.333333pt;}
.xc9{left:438.666667pt;}
.xd4{left:440.000000pt;}
.x85{left:441.333333pt;}
.x94{left:442.666667pt;}
.x5d{left:444.000000pt;}
.xb3{left:445.333333pt;}
.x4b{left:446.666667pt;}
.xd1{left:448.000000pt;}
.x63{left:449.333333pt;}
.xe2{left:450.666667pt;}
.xee{left:452.000000pt;}
.xf5{left:453.333333pt;}
.x8e{left:454.666667pt;}
.x52{left:456.000000pt;}
.x3c{left:457.333333pt;}
.xb4{left:458.666667pt;}
.xa8{left:460.000000pt;}
.x86{left:461.333333pt;}
.x4c{left:462.666667pt;}
.xc4{left:464.000000pt;}
.x105{left:465.333333pt;}
.x3d{left:466.666667pt;}
.x25{left:468.000000pt;}
.xac{left:469.333333pt;}
.xb5{left:470.666667pt;}
.x12d{left:472.000000pt;}
.x109{left:473.333333pt;}
.x87{left:474.666667pt;}
.x112{left:476.000000pt;}
.xfd{left:477.333333pt;}
.x1c{left:478.666667pt;}
.xcc{left:480.000000pt;}
.x135{left:481.333333pt;}
.x6a{left:482.666667pt;}
.xca{left:484.000000pt;}
.x137{left:485.333333pt;}
.x43{left:488.000000pt;}
}

