
    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_a7bc31e6ef90cd155aeab8f1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a8e63fc6116be0493f8dfbb0.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_410f9fc02b4b09b112553929.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ca75e94c5a965e4a22d3909.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_29014ff0a8e8475c3cb4d348.woff')format("woff");}.ff5{font-family:ff5;line-height:1.364746;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_6321b619e76c8a1617feec50.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b333d78dffe56bdde6e1c24b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c8b523e221a1015c6b2ec812.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d0497bba4a535995f2bbf8e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_86063bd1c2844f4821908ca7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_da0ea3ca2bb613d489c85f4f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d191cac26779b003d27cceec.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5fac4ef583fad257ba6ae186.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_03cf0df94038acdfa88220ea.woff')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_823dd0b7091769cfaf6f7744.woff')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ce343fb1086ad5f5d1e8f098.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_543911d5c827e92678c7e4e6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_67f533536c70c9773d919139.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e972f2514706f164ca038a86.woff')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e1fad1ddadeab916ff5c4825.woff')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7b6e66743f53ad0590fc5939.woff')format("woff");}.ff15{font-family:ff15;line-height:1.364746;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_2e5d3ed87eaf2d8d7a30d15c.woff')format("woff");}.ff16{font-family:ff16;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2e95bc1903a79ba5a8635eb1.woff')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_22cf596e5b7c1d774bcc4158.woff')format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_91ef3deba2f4b2fcc12c9c23.woff')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3779d129bb5887017d62bca0.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_cb0df8e697bfccc4884a1e2d.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b169bbf10296e5dc099d4d58.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7d2a2fe844fc1a9da9c25ca3.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_b0bdb836ea808cae7420e899.woff')format("woff");}.ff1e{font-family:ff1e;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;}
.md{transform:matrix(0.096429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096429,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.116438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116438,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128676,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139706,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142308,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150735,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156627,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157143,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183735,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.184426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184426,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186813,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.196629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196629,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.197437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197437,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203488,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.208647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208647,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215517,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216418,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.218044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218044,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218391,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221014,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221311,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223077,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223529,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224638,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224719,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229651,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230392,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231618,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232759,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.235344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235344,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237676,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238330,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238462,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238506,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241176,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m26{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258197,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262048,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262712,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264368,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.264449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264449,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301887,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332192,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346591,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.364754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364754,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.381098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381098,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381579,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453125,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.852564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852564,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-71.973750px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-9.105600px;}
.ls2a{letter-spacing:-7.771125px;}
.ls66{letter-spacing:-7.414125px;}
.ls68{letter-spacing:-6.668250px;}
.ls12{letter-spacing:-6.222000px;}
.ls32{letter-spacing:-6.216900px;}
.ls6a{letter-spacing:-6.019650px;}
.ls67{letter-spacing:-5.928750px;}
.ls4d{letter-spacing:-5.444250px;}
.ls63{letter-spacing:-5.189250px;}
.ls3a{letter-spacing:-4.870800px;}
.ls2b{letter-spacing:-4.666500px;}
.ls42{letter-spacing:-4.516875px;}
.ls69{letter-spacing:-4.449750px;}
.ls4e{letter-spacing:-4.399200px;}
.ls45{letter-spacing:-4.137600px;}
.ls35{letter-spacing:-4.059000px;}
.ls37{letter-spacing:-3.924525px;}
.ls2c{letter-spacing:-3.888750px;}
.ls64{letter-spacing:-3.703875px;}
.ls6f{letter-spacing:-3.345600px;}
.ls39{letter-spacing:-3.247200px;}
.ls30{letter-spacing:-3.198000px;}
.ls48{letter-spacing:-3.143250px;}
.ls11{letter-spacing:-3.111000px;}
.ls76{letter-spacing:-3.083550px;}
.ls82{letter-spacing:-3.000375px;}
.ls61{letter-spacing:-2.964375px;}
.ls56{letter-spacing:-2.871000px;}
.lsf{letter-spacing:-2.333250px;}
.ls15{letter-spacing:-2.320500px;}
.ls65{letter-spacing:-2.224875px;}
.ls4f{letter-spacing:-2.199450px;}
.ls41{letter-spacing:-2.164800px;}
.ls7c{letter-spacing:-1.692750px;}
.ls6d{letter-spacing:-1.672800px;}
.ls3b{letter-spacing:-1.623600px;}
.ls36{letter-spacing:-1.597950px;}
.ls10{letter-spacing:-1.555500px;}
.ls1d{letter-spacing:-1.550250px;}
.ls7e{letter-spacing:-1.526250px;}
.ls62{letter-spacing:-1.485375px;}
.ls1c{letter-spacing:-1.417050px;}
.ls50{letter-spacing:-1.415925px;}
.ls33{letter-spacing:-1.316250px;}
.ls6e{letter-spacing:-0.836400px;}
.ls81{letter-spacing:-0.812700px;}
.ls31{letter-spacing:-0.811800px;}
.ls52{letter-spacing:-0.801600px;}
.ls2f{letter-spacing:-0.799500px;}
.ls6c{letter-spacing:-0.789525px;}
.ls47{letter-spacing:-0.787050px;}
.lse{letter-spacing:-0.777750px;}
.ls7d{letter-spacing:-0.776550px;}
.ls14{letter-spacing:-0.775125px;}
.ls70{letter-spacing:-0.773850px;}
.ls43{letter-spacing:-0.762300px;}
.ls7a{letter-spacing:-0.751275px;}
.ls2d{letter-spacing:-0.741000px;}
.ls60{letter-spacing:-0.739500px;}
.ls79{letter-spacing:-0.727425px;}
.lsd{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.273000px;}
.ls40{letter-spacing:0.721500px;}
.ls57{letter-spacing:0.739500px;}
.ls2e{letter-spacing:0.748800px;}
.ls7f{letter-spacing:0.763125px;}
.ls71{letter-spacing:0.773850px;}
.ls9{letter-spacing:0.775125px;}
.ls4{letter-spacing:0.777750px;}
.ls73{letter-spacing:0.784875px;}
.ls3e{letter-spacing:0.787050px;}
.ls80{letter-spacing:0.798975px;}
.ls1f{letter-spacing:0.799500px;}
.ls1{letter-spacing:0.810900px;}
.lsb{letter-spacing:0.811800px;}
.ls6b{letter-spacing:0.825600px;}
.ls7b{letter-spacing:0.836325px;}
.ls5c{letter-spacing:0.836400px;}
.ls78{letter-spacing:0.858000px;}
.ls1a{letter-spacing:0.955500px;}
.ls18{letter-spacing:1.429275px;}
.ls51{letter-spacing:1.454400px;}
.ls5a{letter-spacing:1.485375px;}
.ls49{letter-spacing:1.524600px;}
.ls8{letter-spacing:1.550250px;}
.ls3{letter-spacing:1.555500px;}
.ls1e{letter-spacing:1.599000px;}
.ls1b{letter-spacing:1.609650px;}
.ls44{letter-spacing:1.619775px;}
.ls22{letter-spacing:1.623600px;}
.ls0{letter-spacing:1.629450px;}
.ls5d{letter-spacing:1.672800px;}
.ls34{letter-spacing:1.697400px;}
.ls54{letter-spacing:1.698300px;}
.ls77{letter-spacing:1.716075px;}
.ls59{letter-spacing:2.224875px;}
.ls55{letter-spacing:2.250600px;}
.lsc{letter-spacing:2.320500px;}
.ls5{letter-spacing:2.333250px;}
.ls20{letter-spacing:2.398500px;}
.ls24{letter-spacing:2.435400px;}
.ls2{letter-spacing:2.440350px;}
.ls5e{letter-spacing:2.509200px;}
.ls38{letter-spacing:2.597925px;}
.lsa{letter-spacing:3.095625px;}
.ls6{letter-spacing:3.111000px;}
.ls21{letter-spacing:3.198000px;}
.ls29{letter-spacing:3.247200px;}
.ls13{letter-spacing:3.313800px;}
.ls5b{letter-spacing:3.345600px;}
.ls74{letter-spacing:3.888750px;}
.ls4c{letter-spacing:4.666500px;}
.ls26{letter-spacing:4.797000px;}
.ls28{letter-spacing:4.870800px;}
.ls4a{letter-spacing:5.054400px;}
.ls7{letter-spacing:5.444250px;}
.ls25{letter-spacing:5.596500px;}
.ls58{letter-spacing:5.928750px;}
.ls3d{letter-spacing:6.222000px;}
.ls27{letter-spacing:6.391125px;}
.ls4b{letter-spacing:6.999750px;}
.ls53{letter-spacing:7.114125px;}
.ls46{letter-spacing:7.287900px;}
.ls75{letter-spacing:7.771125px;}
.ls3f{letter-spacing:7.855650px;}
.ls5f{letter-spacing:8.358900px;}
.ls16{letter-spacing:9.544500px;}
.ls72{letter-spacing:10.735500px;}
.ls23{letter-spacing:13.795650px;}
.ls17{letter-spacing:27.221250px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._28{margin-left:-77.269665px;}
._2b{margin-left:-62.053572px;}
._2c{margin-left:-56.830368px;}
._2e{margin-left:-53.528802px;}
._2d{margin-left:-40.973973px;}
._25{margin-left:-39.678151px;}
._21{margin-left:-36.038841px;}
._17{margin-left:-32.108117px;}
._29{margin-left:-30.723768px;}
._19{margin-left:-24.444965px;}
._27{margin-left:-21.857518px;}
._2f{margin-left:-19.565854px;}
._26{margin-left:-15.726541px;}
._24{margin-left:-14.561164px;}
._22{margin-left:-12.596052px;}
._23{margin-left:-11.140091px;}
._20{margin-left:-9.273765px;}
._10{margin-left:-7.325093px;}
._16{margin-left:-6.195580px;}
._15{margin-left:-4.603864px;}
._14{margin-left:-3.205886px;}
._13{margin-left:-1.706250px;}
._11{width:1.861873px;}
._a{width:3.437898px;}
._18{width:4.822744px;}
._8{width:6.171000px;}
._9{width:7.864200px;}
._7{width:9.531900px;}
._6{width:10.847700px;}
._3{width:11.941650px;}
._b{width:13.387500px;}
._f{width:14.486550px;}
._5{width:16.401600px;}
._c{width:17.903550px;}
._1c{width:18.942271px;}
._d{width:19.992622px;}
._1{width:21.188547px;}
._1a{width:22.454491px;}
._0{width:23.944500px;}
._e{width:25.058415px;}
._1f{width:26.297652px;}
._2a{width:27.302601px;}
._1e{width:28.320922px;}
._4{width:30.141000px;}
._12{width:31.697023px;}
._1b{width:36.190875px;}
._30{width:38.855159px;}
._1d{width:41.182500px;}
._2{width:46.202419px;}
.fc0{color:transparent;}
.fs19{font-size:19.500000px;}
.fs1b{font-size:24.000000px;}
.fs18{font-size:28.500000px;}
.fs1e{font-size:29.250000px;}
.fs1a{font-size:33.000000px;}
.fs25{font-size:39.750000px;}
.fs26{font-size:41.250000px;}
.fsb{font-size:44.250000px;}
.fs20{font-size:45.750000px;}
.fs1c{font-size:46.500000px;}
.fs12{font-size:47.250000px;}
.fsc{font-size:48.000000px;}
.fs7{font-size:48.750000px;}
.fs15{font-size:48.816000px;}
.fs9{font-size:49.500000px;}
.fsa{font-size:50.250000px;}
.fs13{font-size:51.000000px;}
.fs23{font-size:51.663600px;}
.fs14{font-size:51.750000px;}
.fs1d{font-size:52.164000px;}
.fs8{font-size:52.500000px;}
.fsd{font-size:54.750000px;}
.fs1f{font-size:58.539000px;}
.fs11{font-size:60.000000px;}
.fs21{font-size:60.065400px;}
.fs16{font-size:61.500000px;}
.fse{font-size:61.650000px;}
.fs3{font-size:62.250000px;}
.fs5{font-size:63.000000px;}
.fs10{font-size:63.052200px;}
.fs2{font-size:63.750000px;}
.fs17{font-size:64.500000px;}
.fs4{font-size:65.091600px;}
.fsf{font-size:65.250000px;}
.fs24{font-size:66.000000px;}
.fs6{font-size:66.750000px;}
.fs22{font-size:68.250000px;}
.fs0{font-size:76.500000px;}
.fs1{font-size:99.750000px;}
.y0{bottom:0.000000px;}
.y131{bottom:55.218750px;}
.y99{bottom:55.935750px;}
.y61{bottom:57.009750px;}
.y62{bottom:57.015150px;}
.yfe{bottom:57.735900px;}
.yff{bottom:57.736950px;}
.ycb{bottom:58.455600px;}
.y15a{bottom:64.215150px;}
.y27{bottom:68.176800px;}
.y98{bottom:68.536050px;}
.y60{bottom:70.696500px;}
.yfd{bottom:71.416650px;}
.yfc{bottom:71.421150px;}
.y130{bottom:71.777812px;}
.y97{bottom:78.255600px;}
.y96{bottom:80.416050px;}
.y26{bottom:80.776463px;}
.y5f{bottom:84.375562px;}
.yca{bottom:86.528700px;}
.yfa{bottom:87.255600px;}
.yfb{bottom:87.256650px;}
.y12f{bottom:88.336875px;}
.y95{bottom:92.653575px;}
.y25{bottom:94.097400px;}
.y24{bottom:94.102575px;}
.y5e{bottom:97.696500px;}
.yf9{bottom:100.936350px;}
.yc9{bottom:103.087762px;}
.y12e{bottom:104.895937px;}
.y23{bottom:107.781187px;}
.y94{bottom:108.495450px;}
.y5d{bottom:111.015150px;}
.yf8{bottom:114.256800px;}
.yc8{bottom:119.295637px;}
.y22{bottom:120.736500px;}
.y12d{bottom:121.455000px;}
.y12c{bottom:121.456087px;}
.y5c{bottom:124.696500px;}
.y93{bottom:125.056988px;}
.y21{bottom:135.497100px;}
.yc7{bottom:135.854700px;}
.y12b{bottom:138.016388px;}
.y5b{bottom:138.381375px;}
.y92{bottom:141.609825px;}
.y5a{bottom:152.055750px;}
.yc6{bottom:152.777138px;}
.y129{bottom:154.570462px;}
.y12a{bottom:154.575450px;}
.y91{bottom:158.542350px;}
.y20{bottom:161.410275px;}
.y59{bottom:165.376050px;}
.yc5{bottom:169.329975px;}
.y128{bottom:171.496087px;}
.yf7{bottom:173.291212px;}
.y90{bottom:174.730275px;}
.y1f{bottom:175.815900px;}
.y58{bottom:179.780700px;}
.yc4{bottom:186.259800px;}
.y127{bottom:188.050725px;}
.yf6{bottom:190.216837px;}
.y8f{bottom:191.657138px;}
.y57{bottom:193.096200px;}
.y56{bottom:193.101525px;}
.yc3{bottom:203.536050px;}
.y126{bottom:204.983100px;}
.y55{bottom:206.775900px;}
.yf5{bottom:206.778225px;}
.y54{bottom:206.781075px;}
.y8e{bottom:208.215150px;}
.yc2{bottom:219.735300px;}
.y52{bottom:220.450237px;}
.y53{bottom:220.455450px;}
.y125{bottom:221.170762px;}
.yf4{bottom:223.337287px;}
.y1e{bottom:225.131175px;}
.y8d{bottom:225.140775px;}
.y51{bottom:234.135113px;}
.yc1{bottom:236.295600px;}
.y124{bottom:238.096387px;}
.yf3{bottom:239.896350px;}
.y8c{bottom:241.699837px;}
.y1d{bottom:242.058037px;}
.y50{bottom:247.456050px;}
.yc0{bottom:253.208925px;}
.y123{bottom:254.656537px;}
.yf2{bottom:256.468838px;}
.y8b{bottom:257.175150px;}
.y1c{bottom:258.617100px;}
.y4f{bottom:261.496050px;}
.ybf{bottom:270.134550px;}
.y122{bottom:271.215000px;}
.y8a{bottom:271.935750px;}
.yf1{bottom:273.027900px;}
.y4e{bottom:274.816500px;}
.y1b{bottom:275.895750px;}
.y1a{bottom:275.896987px;}
.ybe{bottom:287.049675px;}
.y121{bottom:288.140625px;}
.y4d{bottom:288.496050px;}
.y89{bottom:288.845888px;}
.y159{bottom:289.934700px;}
.y158{bottom:289.935938px;}
.yf0{bottom:290.304150px;}
.y19{bottom:292.457288px;}
.ybd{bottom:303.975300px;}
.y120{bottom:304.862025px;}
.y88{bottom:305.771513px;}
.y156{bottom:306.487462px;}
.y157{bottom:306.495000px;}
.yef{bottom:306.496650px;}
.y18{bottom:309.008813px;}
.y4c{bottom:309.017438px;}
.ybc{bottom:320.171213px;}
.y11f{bottom:321.596400px;}
.y87{bottom:321.979950px;}
.y155{bottom:322.697137px;}
.yee{bottom:323.417288px;}
.y17{bottom:325.221038px;}
.y4b{bottom:325.576500px;}
.ybb{bottom:337.096837px;}
.y11e{bottom:337.804838px;}
.y85{bottom:339.255637px;}
.y86{bottom:339.256200px;}
.y154{bottom:339.259838px;}
.yed{bottom:339.977438px;}
.y49{bottom:342.136387px;}
.y4a{bottom:342.136800px;}
.y16{bottom:342.497288px;}
.yba{bottom:353.649825px;}
.y11d{bottom:354.730462px;}
.y84{bottom:355.818900px;}
.yec{bottom:356.526000px;}
.y153{bottom:356.536088px;}
.y48{bottom:358.695450px;}
.y15{bottom:359.045700px;}
.yb9{bottom:370.579650px;}
.y11c{bottom:371.289525px;}
.y83{bottom:373.095150px;}
.y152{bottom:373.099350px;}
.yeb{bottom:373.451625px;}
.y47{bottom:375.604350px;}
.y14{bottom:375.971325px;}
.yb7{bottom:387.849675px;}
.yb8{bottom:387.855900px;}
.y11a{bottom:388.210162px;}
.y11b{bottom:388.215150px;}
.y82{bottom:389.298600px;}
.y151{bottom:390.361987px;}
.yea{bottom:390.377250px;}
.y46{bottom:392.529975px;}
.y13{bottom:392.896950px;}
.yb6{bottom:404.775300px;}
.y119{bottom:405.135787px;}
.y81{bottom:406.567462px;}
.y150{bottom:407.287612px;}
.ye9{bottom:407.296650px;}
.y45{bottom:409.456688px;}
.y12{bottom:409.457250px;}
.yb5{bottom:421.329525px;}
.y118{bottom:421.680450px;}
.y80{bottom:422.775900px;}
.ye8{bottom:423.136800px;}
.y14e{bottom:423.483750px;}
.y14f{bottom:423.496050px;}
.y11{bottom:425.836200px;}
.y44{bottom:426.019950px;}
.yb4{bottom:438.255150px;}
.y117{bottom:438.606075px;}
.y7f{bottom:440.055788px;}
.y14d{bottom:440.409375px;}
.ye6{bottom:440.411025px;}
.ye7{bottom:440.417250px;}
.y10{bottom:443.297288px;}
.y116{bottom:455.165138px;}
.yb3{bottom:455.174550px;}
.y7e{bottom:456.610425px;}
.ye5{bottom:457.336650px;}
.y14c{bottom:457.340288px;}
.yf{bottom:459.845850px;}
.y43{bottom:459.856350px;}
.y115{bottom:471.724200px;}
.yb2{bottom:471.738900px;}
.y7d{bottom:473.536050px;}
.ye4{bottom:473.896950px;}
.y14b{bottom:473.899350px;}
.ye{bottom:476.771475px;}
.y42{bottom:476.781187px;}
.y114{bottom:488.649825px;}
.yb1{bottom:489.015150px;}
.y7c{bottom:490.449375px;}
.ye3{bottom:490.802887px;}
.y14a{bottom:491.176838px;}
.yc{bottom:493.693200px;}
.yd{bottom:493.697100px;}
.y41{bottom:494.057437px;}
.y113{bottom:505.570463px;}
.yb0{bottom:505.934700px;}
.y7b{bottom:507.367613px;}
.ye2{bottom:507.728513px;}
.y149{bottom:507.735900px;}
.y148{bottom:507.746850px;}
.y40{bottom:510.616500px;}
.y3f{bottom:510.617738px;}
.yb{bottom:510.618825px;}
.y112{bottom:522.129525px;}
.yaf{bottom:522.504487px;}
.y7a{bottom:523.569825px;}
.ye1{bottom:523.936950px;}
.y147{bottom:525.023100px;}
.ya{bottom:526.811325px;}
.y3e{bottom:527.176800px;}
.y111{bottom:539.059350px;}
.yae{bottom:539.780737px;}
.y79{bottom:540.495450px;}
.y78{bottom:540.499650px;}
.ye0{bottom:540.850275px;}
.y146{bottom:541.209525px;}
.y9{bottom:543.730875px;}
.y3c{bottom:544.090125px;}
.y3d{bottom:544.096200px;}
.y110{bottom:556.335600px;}
.yad{bottom:556.339800px;}
.y77{bottom:557.763600px;}
.ydf{bottom:557.771475px;}
.y145{bottom:558.130725px;}
.y8{bottom:560.657737px;}
.y3b{bottom:561.019950px;}
.y10f{bottom:573.250575px;}
.yac{bottom:573.616050px;}
.y76{bottom:574.689225px;}
.yde{bottom:574.697100px;}
.y144{bottom:575.050125px;}
.y7{bottom:577.213050px;}
.y3a{bottom:578.301487px;}
.y10e{bottom:590.170125px;}
.yab{bottom:590.535450px;}
.ydd{bottom:591.610425px;}
.y75{bottom:591.614850px;}
.y143{bottom:591.978075px;}
.y39{bottom:595.577737px;}
.y10d{bottom:607.095750px;}
.yaa{bottom:607.455000px;}
.ydc{bottom:608.528513px;}
.y74{bottom:608.535262px;}
.y142{bottom:608.537137px;}
.y37{bottom:612.136387px;}
.y38{bottom:612.136800px;}
.y10c{bottom:623.657137px;}
.ya9{bottom:624.376050px;}
.ydb{bottom:624.736950px;}
.y73{bottom:625.094325px;}
.y141{bottom:625.098750px;}
.y6{bottom:627.256800px;}
.y36{bottom:628.687913px;}
.y10b{bottom:640.216200px;}
.ya8{bottom:641.296837px;}
.yda{bottom:641.651512px;}
.y72{bottom:642.370575px;}
.y13f{bottom:642.374212px;}
.y140{bottom:642.375000px;}
.y5{bottom:644.176200px;}
.y35{bottom:644.896350px;}
.y10a{bottom:657.125100px;}
.ya7{bottom:657.855900px;}
.yd9{bottom:658.577137px;}
.y13e{bottom:658.933275px;}
.y71{bottom:659.296200px;}
.y70{bottom:659.298600px;}
.y34{bottom:662.893575px;}
.y109{bottom:674.767912px;}
.ya6{bottom:674.775300px;}
.yd8{bottom:675.136200px;}
.y13d{bottom:675.858900px;}
.y6f{bottom:676.571663px;}
.y33{bottom:678.735450px;}
.y4{bottom:678.736950px;}
.y3{bottom:678.737100px;}
.y108{bottom:690.976350px;}
.ya5{bottom:691.335600px;}
.ya4{bottom:691.336687px;}
.yd7{bottom:692.410575px;}
.y13c{bottom:693.135150px;}
.y6e{bottom:693.497287px;}
.y32{bottom:696.015750px;}
.y2{bottom:700.329225px;}
.ya2{bottom:707.883600px;}
.ya3{bottom:707.895750px;}
.yd6{bottom:709.336200px;}
.yd5{bottom:709.337288px;}
.y13b{bottom:709.696537px;}
.y6d{bottom:710.055787px;}
.y31{bottom:712.936387px;}
.y1{bottom:721.577100px;}
.y107{bottom:724.100437px;}
.ya1{bottom:724.809225px;}
.yd4{bottom:725.890275px;}
.y13a{bottom:726.255600px;}
.y6c{bottom:726.614850px;}
.y6b{bottom:726.616088px;}
.y30{bottom:729.491025px;}
.y106{bottom:741.376688px;}
.ya0{bottom:741.734850px;}
.y9f{bottom:741.735000px;}
.yd3{bottom:742.816987px;}
.y6a{bottom:743.170575px;}
.y139{bottom:743.175150px;}
.y138{bottom:743.180438px;}
.y2f{bottom:746.416650px;}
.y105{bottom:757.929675px;}
.y9e{bottom:758.660625px;}
.yd1{bottom:759.371625px;}
.yd2{bottom:759.376050px;}
.y69{bottom:760.090125px;}
.y137{bottom:760.456688px;}
.y2e{bottom:762.979350px;}
.y104{bottom:774.856538px;}
.yd0{bottom:776.296838px;}
.y9d{bottom:776.303438px;}
.y136{bottom:777.015750px;}
.y68{bottom:777.016988px;}
.y2d{bottom:780.255600px;}
.y103{bottom:791.409375px;}
.ycf{bottom:792.856988px;}
.y9c{bottom:792.862500px;}
.y67{bottom:793.572788px;}
.y135{bottom:793.935300px;}
.y2c{bottom:796.815900px;}
.y2b{bottom:796.819950px;}
.y102{bottom:808.336238px;}
.yce{bottom:809.416050px;}
.y9b{bottom:810.138750px;}
.y134{bottom:810.855938px;}
.y66{bottom:811.215600px;}
.y2a{bottom:814.096200px;}
.y101{bottom:824.896387px;}
.ycd{bottom:825.610875px;}
.y64{bottom:827.049675px;}
.y65{bottom:827.055750px;}
.y133{bottom:827.410575px;}
.y9a{bottom:827.415000px;}
.y29{bottom:831.015750px;}
.y100{bottom:841.455450px;}
.ycc{bottom:842.536500px;}
.y63{bottom:843.975300px;}
.y132{bottom:844.336200px;}
.y28{bottom:847.935300px;}
.h3d{height:20.337891px;}
.h3f{height:25.031250px;}
.h3c{height:29.724609px;}
.h4b{height:30.506836px;}
.h3e{height:34.417969px;}
.h65{height:41.458008px;}
.h66{height:43.022461px;}
.h5f{height:44.901123px;}
.h16{height:46.151367px;}
.h63{height:46.350220px;}
.h45{height:46.373291px;}
.h44{height:46.863281px;}
.h47{height:47.085938px;}
.h1b{height:47.109375px;}
.h50{height:47.715820px;}
.h12{height:47.821655px;}
.hf{height:47.845459px;}
.h1c{height:47.847409px;}
.h25{height:47.852209px;}
.h26{height:47.866309px;}
.h10{height:47.868559px;}
.h2a{height:47.910234px;}
.h4f{height:48.375000px;}
.h64{height:48.498047px;}
.h13{height:48.557373px;}
.h2c{height:48.578973px;}
.h41{height:48.581543px;}
.h5a{height:49.130859px;}
.h24{height:49.280273px;}
.h14{height:49.293091px;}
.h1a{height:49.317627px;}
.h51{height:49.886719px;}
.h27{height:50.028809px;}
.h17{height:50.062500px;}
.h29{height:50.642578px;}
.h28{height:50.764526px;}
.h42{height:50.789795px;}
.h2b{height:50.844727px;}
.h46{height:51.196113px;}
.h43{height:51.398438px;}
.h59{height:51.402638px;}
.h15{height:51.500244px;}
.h18{height:51.525879px;}
.h58{height:52.067222px;}
.h11{height:52.910156px;}
.h19{height:54.108398px;}
.h40{height:57.102539px;}
.h4d{height:57.452827px;}
.h23{height:58.886719px;}
.h54{height:58.950905px;}
.h1f{height:60.506104px;}
.h5{height:61.094971px;}
.hb{height:61.831055px;}
.h22{height:61.882286px;}
.h4{height:62.567139px;}
.h55{height:62.568789px;}
.h33{height:62.569389px;}
.h5d{height:62.569539px;}
.h35{height:62.570289px;}
.h3a{height:62.571339px;}
.h3b{height:62.574639px;}
.h34{height:62.579889px;}
.h31{height:62.580189px;}
.h4c{height:62.580489px;}
.h6{height:62.582139px;}
.h8{height:62.582739px;}
.h21{height:62.584839px;}
.h32{height:62.585439px;}
.h5e{height:62.586489px;}
.h56{height:62.587089px;}
.h7{height:62.591439px;}
.h4e{height:62.591739px;}
.h37{height:62.592039px;}
.h38{height:62.596689px;}
.hd{height:62.597289px;}
.h39{height:62.604789px;}
.h9{height:62.609139px;}
.hc{height:62.609739px;}
.h36{height:62.616339px;}
.h5c{height:62.619039px;}
.h61{height:62.621589px;}
.h5b{height:62.624739px;}
.h30{height:63.303223px;}
.ha{height:63.883846px;}
.h20{height:64.039307px;}
.h2f{height:64.142578px;}
.h62{height:64.775391px;}
.h4a{height:65.511475px;}
.h60{height:65.759766px;}
.h57{height:67.450195px;}
.he{height:69.618164px;}
.h2{height:77.097656px;}
.h3{height:104.036133px;}
.h48{height:913.231050px;}
.h49{height:913.500000px;}
.h2d{height:913.951050px;}
.h2e{height:914.250000px;}
.h53{height:915.000000px;}
.h52{height:915.032550px;}
.h1e{height:915.750000px;}
.h1d{height:916.112550px;}
.h0{height:918.634050px;}
.h1{height:918.750000px;}
.w3{width:636.750000px;}
.w2{width:636.751050px;}
.w4{width:639.632550px;}
.w5{width:639.750000px;}
.w6{width:642.512550px;}
.w7{width:642.750000px;}
.w0{width:645.394050px;}
.w1{width:645.750000px;}
.x0{left:0.000000px;}
.x14{left:21.743175px;}
.xc{left:23.178000px;}
.x5e{left:24.255600px;}
.x61{left:25.333875px;}
.x8d{left:26.409975px;}
.x18{left:27.497100px;}
.x15{left:29.657550px;}
.x96{left:30.743775px;}
.x70{left:31.816500px;}
.x7f{left:32.909925px;}
.x83{left:35.415600px;}
.x99{left:36.496650px;}
.x16{left:37.936950px;}
.x19{left:41.536050px;}
.x17{left:42.962475px;}
.x1{left:45.496050px;}
.x91{left:46.575450px;}
.x3a{left:47.656500px;}
.x51{left:48.735900px;}
.x93{left:49.798538px;}
.x2{left:51.258150px;}
.xb{left:56.660325px;}
.x5c{left:57.751050px;}
.x62{left:58.807275px;}
.x3b{left:62.415600px;}
.x4b{left:63.496650px;}
.x3e{left:64.576050px;}
.x7d{left:65.655450px;}
.x89{left:68.536050px;}
.x9a{left:71.059950px;}
.x9d{left:72.123675px;}
.x3f{left:73.575450px;}
.x2d{left:75.375525px;}
.x33{left:76.447575px;}
.x52{left:80.056800px;}
.x67{left:82.215600px;}
.x7e{left:87.256650px;}
.x1a{left:89.776500px;}
.x68{left:91.576050px;}
.x8e{left:112.096350px;}
.x4f{left:119.655450px;}
.xa7{left:121.815900px;}
.x43{left:124.335600px;}
.x2b{left:126.496050px;}
.x50{left:127.936350px;}
.x69{left:134.416050px;}
.x2c{left:136.576500px;}
.xa8{left:138.016800px;}
.x84{left:141.975300px;}
.x4c{left:146.655450px;}
.x11{left:149.176800px;}
.x58{left:155.656500px;}
.x77{left:157.815300px;}
.xa9{left:163.576500px;}
.x59{left:165.735300px;}
.x12{left:167.177400px;}
.x78{left:168.975300px;}
.x1b{left:170.776500px;}
.x1c{left:182.656500px;}
.x90{left:186.255600px;}
.x3c{left:192.016800px;}
.x2f{left:193.455450px;}
.x38{left:198.135750px;}
.x26{left:207.136800px;}
.x31{left:208.936350px;}
.x32{left:220.096200px;}
.x27{left:222.976950px;}
.x6a{left:227.655450px;}
.x6b{left:235.936350px;}
.x28{left:238.815300px;}
.x97{left:239.896350px;}
.x22{left:242.056800px;}
.x3{left:244.939275px;}
.x44{left:249.975300px;}
.x23{left:256.456650px;}
.x8c{left:257.536050px;}
.xa6{left:264.015750px;}
.x85{left:265.456050px;}
.x24{left:269.056800px;}
.x1d{left:270.497100px;}
.x8f{left:273.016800px;}
.xa1{left:275.175600px;}
.x30{left:276.975300px;}
.xaa{left:278.056350px;}
.x6c{left:283.095750px;}
.x82{left:285.256200px;}
.x63{left:289.936350px;}
.x40{left:293.176200px;}
.x64{left:296.056800px;}
.x25{left:298.217250px;}
.x29{left:300.016800px;}
.x41{left:301.816500px;}
.x65{left:302.895750px;}
.x98{left:306.496650px;}
.x2a{left:309.736500px;}
.x36{left:314.055750px;}
.x3d{left:316.936350px;}
.x5d{left:318.015750px;}
.x4d{left:320.535450px;}
.xf{left:325.217250px;}
.x5f{left:326.655900px;}
.x66{left:328.816500px;}
.x71{left:330.616050px;}
.x4e{left:334.935300px;}
.x2e{left:338.176800px;}
.x6d{left:339.256200px;}
.xa2{left:348.975750px;}
.x34{left:350.775300px;}
.x92{left:355.816500px;}
.x60{left:356.895750px;}
.x35{left:360.496650px;}
.x72{left:363.375600px;}
.x9e{left:366.976350px;}
.x4{left:368.416650px;}
.x79{left:370.216200px;}
.x73{left:372.376650px;}
.x1e{left:373.816950px;}
.x5a{left:378.856350px;}
.x7a{left:380.655900px;}
.x1f{left:383.177250px;}
.x80{left:385.336200px;}
.xd{left:388.936950px;}
.x6e{left:390.736500px;}
.x5b{left:392.895300px;}
.x39{left:394.335600px;}
.x9b{left:395.416650px;}
.xe{left:399.017400px;}
.x6f{left:400.815300px;}
.x10{left:405.136200px;}
.x55{left:412.336200px;}
.x13{left:419.896950px;}
.x20{left:423.856950px;}
.x7b{left:429.616500px;}
.x56{left:433.935750px;}
.x9f{left:437.895750px;}
.x94{left:439.695450px;}
.x21{left:442.216800px;}
.x7c{left:444.016350px;}
.x87{left:448.696500px;}
.x5{left:451.936350px;}
.x42{left:453.376650px;}
.x8{left:462.016950px;}
.x45{left:465.975300px;}
.x86{left:474.976350px;}
.x46{left:483.975750px;}
.xa5{left:486.495450px;}
.x74{left:495.135750px;}
.x49{left:497.296200px;}
.x47{left:498.375600px;}
.x95{left:503.775900px;}
.x81{left:504.855300px;}
.xa3{left:506.656500px;}
.x75{left:509.176200px;}
.x4a{left:511.336650px;}
.x88{left:527.895300px;}
.x76{left:534.735900px;}
.xa4{left:536.535450px;}
.x48{left:540.136200px;}
.x9{left:544.457100px;}
.x6{left:546.256800px;}
.xa{left:555.256200px;}
.x7{left:556.337250px;}
.x57{left:566.056800px;}
.x9c{left:567.495450px;}
.x37{left:576.135750px;}
.x53{left:578.296200px;}
.x8a{left:579.736500px;}
.x54{left:584.416650px;}
.x8b{left:586.936350px;}
.xa0{left:596.296650px;}
@media print{
.v1{vertical-align:-63.976667pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-8.093867pt;}
.ls2a{letter-spacing:-6.907667pt;}
.ls66{letter-spacing:-6.590333pt;}
.ls68{letter-spacing:-5.927333pt;}
.ls12{letter-spacing:-5.530667pt;}
.ls32{letter-spacing:-5.526133pt;}
.ls6a{letter-spacing:-5.350800pt;}
.ls67{letter-spacing:-5.270000pt;}
.ls4d{letter-spacing:-4.839333pt;}
.ls63{letter-spacing:-4.612667pt;}
.ls3a{letter-spacing:-4.329600pt;}
.ls2b{letter-spacing:-4.148000pt;}
.ls42{letter-spacing:-4.015000pt;}
.ls69{letter-spacing:-3.955333pt;}
.ls4e{letter-spacing:-3.910400pt;}
.ls45{letter-spacing:-3.677867pt;}
.ls35{letter-spacing:-3.608000pt;}
.ls37{letter-spacing:-3.488467pt;}
.ls2c{letter-spacing:-3.456667pt;}
.ls64{letter-spacing:-3.292333pt;}
.ls6f{letter-spacing:-2.973867pt;}
.ls39{letter-spacing:-2.886400pt;}
.ls30{letter-spacing:-2.842667pt;}
.ls48{letter-spacing:-2.794000pt;}
.ls11{letter-spacing:-2.765333pt;}
.ls76{letter-spacing:-2.740933pt;}
.ls82{letter-spacing:-2.667000pt;}
.ls61{letter-spacing:-2.635000pt;}
.ls56{letter-spacing:-2.552000pt;}
.lsf{letter-spacing:-2.074000pt;}
.ls15{letter-spacing:-2.062667pt;}
.ls65{letter-spacing:-1.977667pt;}
.ls4f{letter-spacing:-1.955067pt;}
.ls41{letter-spacing:-1.924267pt;}
.ls7c{letter-spacing:-1.504667pt;}
.ls6d{letter-spacing:-1.486933pt;}
.ls3b{letter-spacing:-1.443200pt;}
.ls36{letter-spacing:-1.420400pt;}
.ls10{letter-spacing:-1.382667pt;}
.ls1d{letter-spacing:-1.378000pt;}
.ls7e{letter-spacing:-1.356667pt;}
.ls62{letter-spacing:-1.320333pt;}
.ls1c{letter-spacing:-1.259600pt;}
.ls50{letter-spacing:-1.258600pt;}
.ls33{letter-spacing:-1.170000pt;}
.ls6e{letter-spacing:-0.743467pt;}
.ls81{letter-spacing:-0.722400pt;}
.ls31{letter-spacing:-0.721600pt;}
.ls52{letter-spacing:-0.712533pt;}
.ls2f{letter-spacing:-0.710667pt;}
.ls6c{letter-spacing:-0.701800pt;}
.ls47{letter-spacing:-0.699600pt;}
.lse{letter-spacing:-0.691333pt;}
.ls7d{letter-spacing:-0.690267pt;}
.ls14{letter-spacing:-0.689000pt;}
.ls70{letter-spacing:-0.687867pt;}
.ls43{letter-spacing:-0.677600pt;}
.ls7a{letter-spacing:-0.667800pt;}
.ls2d{letter-spacing:-0.658667pt;}
.ls60{letter-spacing:-0.657333pt;}
.ls79{letter-spacing:-0.646600pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.242667pt;}
.ls40{letter-spacing:0.641333pt;}
.ls57{letter-spacing:0.657333pt;}
.ls2e{letter-spacing:0.665600pt;}
.ls7f{letter-spacing:0.678333pt;}
.ls71{letter-spacing:0.687867pt;}
.ls9{letter-spacing:0.689000pt;}
.ls4{letter-spacing:0.691333pt;}
.ls73{letter-spacing:0.697667pt;}
.ls3e{letter-spacing:0.699600pt;}
.ls80{letter-spacing:0.710200pt;}
.ls1f{letter-spacing:0.710667pt;}
.ls1{letter-spacing:0.720800pt;}
.lsb{letter-spacing:0.721600pt;}
.ls6b{letter-spacing:0.733867pt;}
.ls7b{letter-spacing:0.743400pt;}
.ls5c{letter-spacing:0.743467pt;}
.ls78{letter-spacing:0.762667pt;}
.ls1a{letter-spacing:0.849333pt;}
.ls18{letter-spacing:1.270467pt;}
.ls51{letter-spacing:1.292800pt;}
.ls5a{letter-spacing:1.320333pt;}
.ls49{letter-spacing:1.355200pt;}
.ls8{letter-spacing:1.378000pt;}
.ls3{letter-spacing:1.382667pt;}
.ls1e{letter-spacing:1.421333pt;}
.ls1b{letter-spacing:1.430800pt;}
.ls44{letter-spacing:1.439800pt;}
.ls22{letter-spacing:1.443200pt;}
.ls0{letter-spacing:1.448400pt;}
.ls5d{letter-spacing:1.486933pt;}
.ls34{letter-spacing:1.508800pt;}
.ls54{letter-spacing:1.509600pt;}
.ls77{letter-spacing:1.525400pt;}
.ls59{letter-spacing:1.977667pt;}
.ls55{letter-spacing:2.000533pt;}
.lsc{letter-spacing:2.062667pt;}
.ls5{letter-spacing:2.074000pt;}
.ls20{letter-spacing:2.132000pt;}
.ls24{letter-spacing:2.164800pt;}
.ls2{letter-spacing:2.169200pt;}
.ls5e{letter-spacing:2.230400pt;}
.ls38{letter-spacing:2.309267pt;}
.lsa{letter-spacing:2.751667pt;}
.ls6{letter-spacing:2.765333pt;}
.ls21{letter-spacing:2.842667pt;}
.ls29{letter-spacing:2.886400pt;}
.ls13{letter-spacing:2.945600pt;}
.ls5b{letter-spacing:2.973867pt;}
.ls74{letter-spacing:3.456667pt;}
.ls4c{letter-spacing:4.148000pt;}
.ls26{letter-spacing:4.264000pt;}
.ls28{letter-spacing:4.329600pt;}
.ls4a{letter-spacing:4.492800pt;}
.ls7{letter-spacing:4.839333pt;}
.ls25{letter-spacing:4.974667pt;}
.ls58{letter-spacing:5.270000pt;}
.ls3d{letter-spacing:5.530667pt;}
.ls27{letter-spacing:5.681000pt;}
.ls4b{letter-spacing:6.222000pt;}
.ls53{letter-spacing:6.323667pt;}
.ls46{letter-spacing:6.478133pt;}
.ls75{letter-spacing:6.907667pt;}
.ls3f{letter-spacing:6.982800pt;}
.ls5f{letter-spacing:7.430133pt;}
.ls16{letter-spacing:8.484000pt;}
.ls72{letter-spacing:9.542667pt;}
.ls23{letter-spacing:12.262800pt;}
.ls17{letter-spacing:24.196667pt;}
.ws0{word-spacing:0.000000pt;}
._28{margin-left:-68.684146pt;}
._2b{margin-left:-55.158730pt;}
._2c{margin-left:-50.515882pt;}
._2e{margin-left:-47.581157pt;}
._2d{margin-left:-36.421309pt;}
._25{margin-left:-35.269467pt;}
._21{margin-left:-32.034525pt;}
._17{margin-left:-28.540548pt;}
._29{margin-left:-27.310016pt;}
._19{margin-left:-21.728858pt;}
._27{margin-left:-19.428904pt;}
._2f{margin-left:-17.391870pt;}
._26{margin-left:-13.979148pt;}
._24{margin-left:-12.943257pt;}
._22{margin-left:-11.196491pt;}
._23{margin-left:-9.902303pt;}
._20{margin-left:-8.243346pt;}
._10{margin-left:-6.511193pt;}
._16{margin-left:-5.507182pt;}
._15{margin-left:-4.092323pt;}
._14{margin-left:-2.849677pt;}
._13{margin-left:-1.516667pt;}
._11{width:1.654998pt;}
._a{width:3.055909pt;}
._18{width:4.286884pt;}
._8{width:5.485333pt;}
._9{width:6.990400pt;}
._7{width:8.472800pt;}
._6{width:9.642400pt;}
._3{width:10.614800pt;}
._b{width:11.900000pt;}
._f{width:12.876933pt;}
._5{width:14.579200pt;}
._c{width:15.914267pt;}
._1c{width:16.837574pt;}
._d{width:17.771220pt;}
._1{width:18.834264pt;}
._1a{width:19.959548pt;}
._0{width:21.284000pt;}
._e{width:22.274146pt;}
._1f{width:23.375691pt;}
._2a{width:24.268979pt;}
._1e{width:25.174153pt;}
._4{width:26.792000pt;}
._12{width:28.175131pt;}
._1b{width:32.169667pt;}
._30{width:34.537919pt;}
._1d{width:36.606667pt;}
._2{width:41.068817pt;}
.fs19{font-size:17.333333pt;}
.fs1b{font-size:21.333333pt;}
.fs18{font-size:25.333333pt;}
.fs1e{font-size:26.000000pt;}
.fs1a{font-size:29.333333pt;}
.fs25{font-size:35.333333pt;}
.fs26{font-size:36.666667pt;}
.fsb{font-size:39.333333pt;}
.fs20{font-size:40.666667pt;}
.fs1c{font-size:41.333333pt;}
.fs12{font-size:42.000000pt;}
.fsc{font-size:42.666667pt;}
.fs7{font-size:43.333333pt;}
.fs15{font-size:43.392000pt;}
.fs9{font-size:44.000000pt;}
.fsa{font-size:44.666667pt;}
.fs13{font-size:45.333333pt;}
.fs23{font-size:45.923200pt;}
.fs14{font-size:46.000000pt;}
.fs1d{font-size:46.368000pt;}
.fs8{font-size:46.666667pt;}
.fsd{font-size:48.666667pt;}
.fs1f{font-size:52.034667pt;}
.fs11{font-size:53.333333pt;}
.fs21{font-size:53.391467pt;}
.fs16{font-size:54.666667pt;}
.fse{font-size:54.800000pt;}
.fs3{font-size:55.333333pt;}
.fs5{font-size:56.000000pt;}
.fs10{font-size:56.046400pt;}
.fs2{font-size:56.666667pt;}
.fs17{font-size:57.333333pt;}
.fs4{font-size:57.859200pt;}
.fsf{font-size:58.000000pt;}
.fs24{font-size:58.666667pt;}
.fs6{font-size:59.333333pt;}
.fs22{font-size:60.666667pt;}
.fs0{font-size:68.000000pt;}
.fs1{font-size:88.666667pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:49.083333pt;}
.y99{bottom:49.720667pt;}
.y61{bottom:50.675333pt;}
.y62{bottom:50.680133pt;}
.yfe{bottom:51.320800pt;}
.yff{bottom:51.321733pt;}
.ycb{bottom:51.960533pt;}
.y15a{bottom:57.080133pt;}
.y27{bottom:60.601600pt;}
.y98{bottom:60.920933pt;}
.y60{bottom:62.841333pt;}
.yfd{bottom:63.481467pt;}
.yfc{bottom:63.485467pt;}
.y130{bottom:63.802500pt;}
.y97{bottom:69.560533pt;}
.y96{bottom:71.480933pt;}
.y26{bottom:71.801300pt;}
.y5f{bottom:75.000500pt;}
.yca{bottom:76.914400pt;}
.yfa{bottom:77.560533pt;}
.yfb{bottom:77.561467pt;}
.y12f{bottom:78.521667pt;}
.y95{bottom:82.358733pt;}
.y25{bottom:83.642133pt;}
.y24{bottom:83.646733pt;}
.y5e{bottom:86.841333pt;}
.yf9{bottom:89.721200pt;}
.yc9{bottom:91.633567pt;}
.y12e{bottom:93.240833pt;}
.y23{bottom:95.805500pt;}
.y94{bottom:96.440400pt;}
.y5d{bottom:98.680133pt;}
.yf8{bottom:101.561600pt;}
.yc8{bottom:106.040567pt;}
.y22{bottom:107.321333pt;}
.y12d{bottom:107.960000pt;}
.y12c{bottom:107.960967pt;}
.y5c{bottom:110.841333pt;}
.y93{bottom:111.161767pt;}
.y21{bottom:120.441867pt;}
.yc7{bottom:120.759733pt;}
.y12b{bottom:122.681233pt;}
.y5b{bottom:123.005667pt;}
.y92{bottom:125.875400pt;}
.y5a{bottom:135.160667pt;}
.yc6{bottom:135.801900pt;}
.y129{bottom:137.395967pt;}
.y12a{bottom:137.400400pt;}
.y91{bottom:140.926533pt;}
.y20{bottom:143.475800pt;}
.y59{bottom:147.000933pt;}
.yc5{bottom:150.515533pt;}
.y128{bottom:152.440967pt;}
.yf7{bottom:154.036633pt;}
.y90{bottom:155.315800pt;}
.y1f{bottom:156.280800pt;}
.y58{bottom:159.805067pt;}
.yc4{bottom:165.564267pt;}
.y127{bottom:167.156200pt;}
.yf6{bottom:169.081633pt;}
.y8f{bottom:170.361900pt;}
.y57{bottom:171.641067pt;}
.y56{bottom:171.645800pt;}
.yc3{bottom:180.920933pt;}
.y126{bottom:182.207200pt;}
.y55{bottom:183.800800pt;}
.yf5{bottom:183.802867pt;}
.y54{bottom:183.805400pt;}
.y8e{bottom:185.080133pt;}
.yc2{bottom:195.320267pt;}
.y52{bottom:195.955767pt;}
.y53{bottom:195.960400pt;}
.y125{bottom:196.596233pt;}
.yf4{bottom:198.522033pt;}
.y1e{bottom:200.116600pt;}
.y8d{bottom:200.125133pt;}
.y51{bottom:208.120100pt;}
.yc1{bottom:210.040533pt;}
.y124{bottom:211.641233pt;}
.yf3{bottom:213.241200pt;}
.y8c{bottom:214.844300pt;}
.y1d{bottom:215.162700pt;}
.y50{bottom:219.960933pt;}
.yc0{bottom:225.074600pt;}
.y123{bottom:226.361367pt;}
.yf2{bottom:227.972300pt;}
.y8b{bottom:228.600133pt;}
.y1c{bottom:229.881867pt;}
.y4f{bottom:232.440933pt;}
.ybf{bottom:240.119600pt;}
.y122{bottom:241.080000pt;}
.y8a{bottom:241.720667pt;}
.yf1{bottom:242.691467pt;}
.y4e{bottom:244.281333pt;}
.y1b{bottom:245.240667pt;}
.y1a{bottom:245.241767pt;}
.ybe{bottom:255.155267pt;}
.y121{bottom:256.125000pt;}
.y4d{bottom:256.440933pt;}
.y89{bottom:256.751900pt;}
.y159{bottom:257.719733pt;}
.y158{bottom:257.720833pt;}
.yf0{bottom:258.048133pt;}
.y19{bottom:259.962033pt;}
.ybd{bottom:270.200267pt;}
.y120{bottom:270.988467pt;}
.y88{bottom:271.796900pt;}
.y156{bottom:272.433300pt;}
.y157{bottom:272.440000pt;}
.yef{bottom:272.441467pt;}
.y18{bottom:274.674500pt;}
.y4c{bottom:274.682167pt;}
.ybc{bottom:284.596633pt;}
.y11f{bottom:285.863467pt;}
.y87{bottom:286.204400pt;}
.y155{bottom:286.841900pt;}
.yee{bottom:287.482033pt;}
.y17{bottom:289.085367pt;}
.y4b{bottom:289.401333pt;}
.ybb{bottom:299.641633pt;}
.y11e{bottom:300.270967pt;}
.y85{bottom:301.560567pt;}
.y86{bottom:301.561067pt;}
.y154{bottom:301.564300pt;}
.yed{bottom:302.202167pt;}
.y49{bottom:304.121233pt;}
.y4a{bottom:304.121600pt;}
.y16{bottom:304.442033pt;}
.yba{bottom:314.355400pt;}
.y11d{bottom:315.315967pt;}
.y84{bottom:316.283467pt;}
.yec{bottom:316.912000pt;}
.y153{bottom:316.920967pt;}
.y48{bottom:318.840400pt;}
.y15{bottom:319.151733pt;}
.yb9{bottom:329.404133pt;}
.y11c{bottom:330.035133pt;}
.y83{bottom:331.640133pt;}
.y152{bottom:331.643867pt;}
.yeb{bottom:331.957000pt;}
.y47{bottom:333.870533pt;}
.y14{bottom:334.196733pt;}
.yb7{bottom:344.755267pt;}
.yb8{bottom:344.760800pt;}
.y11a{bottom:345.075700pt;}
.y11b{bottom:345.080133pt;}
.y82{bottom:346.043200pt;}
.y151{bottom:346.988433pt;}
.yea{bottom:347.002000pt;}
.y46{bottom:348.915533pt;}
.y13{bottom:349.241733pt;}
.yb6{bottom:359.800267pt;}
.y119{bottom:360.120700pt;}
.y81{bottom:361.393300pt;}
.y150{bottom:362.033433pt;}
.ye9{bottom:362.041467pt;}
.y45{bottom:363.961500pt;}
.y12{bottom:363.962000pt;}
.yb5{bottom:374.515133pt;}
.y118{bottom:374.827067pt;}
.y80{bottom:375.800800pt;}
.ye8{bottom:376.121600pt;}
.y14e{bottom:376.430000pt;}
.y14f{bottom:376.440933pt;}
.y11{bottom:378.521067pt;}
.y44{bottom:378.684400pt;}
.yb4{bottom:389.560133pt;}
.y117{bottom:389.872067pt;}
.y7f{bottom:391.160700pt;}
.y14d{bottom:391.475000pt;}
.ye6{bottom:391.476467pt;}
.ye7{bottom:391.482000pt;}
.y10{bottom:394.042033pt;}
.y116{bottom:404.591233pt;}
.yb3{bottom:404.599600pt;}
.y7e{bottom:405.875933pt;}
.ye5{bottom:406.521467pt;}
.y14c{bottom:406.524700pt;}
.yf{bottom:408.751867pt;}
.y43{bottom:408.761200pt;}
.y115{bottom:419.310400pt;}
.yb2{bottom:419.323467pt;}
.y7d{bottom:420.920933pt;}
.ye4{bottom:421.241733pt;}
.y14b{bottom:421.243867pt;}
.ye{bottom:423.796867pt;}
.y42{bottom:423.805500pt;}
.y114{bottom:434.355400pt;}
.yb1{bottom:434.680133pt;}
.y7c{bottom:435.955000pt;}
.ye3{bottom:436.269233pt;}
.y14a{bottom:436.601633pt;}
.yc{bottom:438.838400pt;}
.yd{bottom:438.841867pt;}
.y41{bottom:439.162167pt;}
.y113{bottom:449.395967pt;}
.yb0{bottom:449.719733pt;}
.y7b{bottom:450.993433pt;}
.ye2{bottom:451.314233pt;}
.y149{bottom:451.320800pt;}
.y148{bottom:451.330533pt;}
.y40{bottom:453.881333pt;}
.y3f{bottom:453.882433pt;}
.yb{bottom:453.883400pt;}
.y112{bottom:464.115133pt;}
.yaf{bottom:464.448433pt;}
.y7a{bottom:465.395400pt;}
.ye1{bottom:465.721733pt;}
.y147{bottom:466.687200pt;}
.ya{bottom:468.276733pt;}
.y3e{bottom:468.601600pt;}
.y111{bottom:479.163867pt;}
.yae{bottom:479.805100pt;}
.y79{bottom:480.440400pt;}
.y78{bottom:480.444133pt;}
.ye0{bottom:480.755800pt;}
.y146{bottom:481.075133pt;}
.y9{bottom:483.316333pt;}
.y3c{bottom:483.635667pt;}
.y3d{bottom:483.641067pt;}
.y110{bottom:494.520533pt;}
.yad{bottom:494.524267pt;}
.y77{bottom:495.789867pt;}
.ydf{bottom:495.796867pt;}
.y145{bottom:496.116200pt;}
.y8{bottom:498.362433pt;}
.y3b{bottom:498.684400pt;}
.y10f{bottom:509.556067pt;}
.yac{bottom:509.880933pt;}
.y76{bottom:510.834867pt;}
.yde{bottom:510.841867pt;}
.y144{bottom:511.155667pt;}
.y7{bottom:513.078267pt;}
.y3a{bottom:514.045767pt;}
.y10e{bottom:524.595667pt;}
.yab{bottom:524.920400pt;}
.ydd{bottom:525.875933pt;}
.y75{bottom:525.879867pt;}
.y143{bottom:526.202733pt;}
.y39{bottom:529.402433pt;}
.y10d{bottom:539.640667pt;}
.yaa{bottom:539.960000pt;}
.ydc{bottom:540.914233pt;}
.y74{bottom:540.920233pt;}
.y142{bottom:540.921900pt;}
.y37{bottom:544.121233pt;}
.y38{bottom:544.121600pt;}
.y10c{bottom:554.361900pt;}
.ya9{bottom:555.000933pt;}
.ydb{bottom:555.321733pt;}
.y73{bottom:555.639400pt;}
.y141{bottom:555.643333pt;}
.y6{bottom:557.561600pt;}
.y36{bottom:558.833700pt;}
.y10b{bottom:569.081067pt;}
.ya8{bottom:570.041633pt;}
.yda{bottom:570.356900pt;}
.y72{bottom:570.996067pt;}
.y13f{bottom:570.999300pt;}
.y140{bottom:571.000000pt;}
.y5{bottom:572.601067pt;}
.y35{bottom:573.241200pt;}
.y10a{bottom:584.111200pt;}
.ya7{bottom:584.760800pt;}
.yd9{bottom:585.401900pt;}
.y13e{bottom:585.718467pt;}
.y71{bottom:586.041067pt;}
.y70{bottom:586.043200pt;}
.y34{bottom:589.238733pt;}
.y109{bottom:599.793700pt;}
.ya6{bottom:599.800267pt;}
.yd8{bottom:600.121067pt;}
.y13d{bottom:600.763467pt;}
.y6f{bottom:601.397033pt;}
.y33{bottom:603.320400pt;}
.y4{bottom:603.321733pt;}
.y3{bottom:603.321867pt;}
.y108{bottom:614.201200pt;}
.ya5{bottom:614.520533pt;}
.ya4{bottom:614.521500pt;}
.yd7{bottom:615.476067pt;}
.y13c{bottom:616.120133pt;}
.y6e{bottom:616.442033pt;}
.y32{bottom:618.680667pt;}
.y2{bottom:622.514867pt;}
.ya2{bottom:629.229867pt;}
.ya3{bottom:629.240667pt;}
.yd6{bottom:630.521067pt;}
.yd5{bottom:630.522033pt;}
.y13b{bottom:630.841367pt;}
.y6d{bottom:631.160700pt;}
.y31{bottom:633.721233pt;}
.y1{bottom:641.401867pt;}
.y107{bottom:643.644833pt;}
.ya1{bottom:644.274867pt;}
.yd4{bottom:645.235800pt;}
.y13a{bottom:645.560533pt;}
.y6c{bottom:645.879867pt;}
.y6b{bottom:645.880967pt;}
.y30{bottom:648.436467pt;}
.y106{bottom:659.001500pt;}
.ya0{bottom:659.319867pt;}
.y9f{bottom:659.320000pt;}
.yd3{bottom:660.281767pt;}
.y6a{bottom:660.596067pt;}
.y139{bottom:660.600133pt;}
.y138{bottom:660.604833pt;}
.y2f{bottom:663.481467pt;}
.y105{bottom:673.715267pt;}
.y9e{bottom:674.365000pt;}
.yd1{bottom:674.997000pt;}
.yd2{bottom:675.000933pt;}
.y69{bottom:675.635667pt;}
.y137{bottom:675.961500pt;}
.y2e{bottom:678.203867pt;}
.y104{bottom:688.761367pt;}
.yd0{bottom:690.041633pt;}
.y9d{bottom:690.047500pt;}
.y136{bottom:690.680667pt;}
.y68{bottom:690.681767pt;}
.y2d{bottom:693.560533pt;}
.y103{bottom:703.475000pt;}
.ycf{bottom:704.761767pt;}
.y9c{bottom:704.766667pt;}
.y67{bottom:705.398033pt;}
.y135{bottom:705.720267pt;}
.y2c{bottom:708.280800pt;}
.y2b{bottom:708.284400pt;}
.y102{bottom:718.521100pt;}
.yce{bottom:719.480933pt;}
.y9b{bottom:720.123333pt;}
.y134{bottom:720.760833pt;}
.y66{bottom:721.080533pt;}
.y2a{bottom:723.641067pt;}
.y101{bottom:733.241233pt;}
.ycd{bottom:733.876333pt;}
.y64{bottom:735.155267pt;}
.y65{bottom:735.160667pt;}
.y133{bottom:735.476067pt;}
.y9a{bottom:735.480000pt;}
.y29{bottom:738.680667pt;}
.y100{bottom:747.960400pt;}
.ycc{bottom:748.921333pt;}
.y63{bottom:750.200267pt;}
.y132{bottom:750.521067pt;}
.y28{bottom:753.720267pt;}
.h3d{height:18.078125pt;}
.h3f{height:22.250000pt;}
.h3c{height:26.421875pt;}
.h4b{height:27.117188pt;}
.h3e{height:30.593750pt;}
.h65{height:36.851562pt;}
.h66{height:38.242188pt;}
.h5f{height:39.912109pt;}
.h16{height:41.023438pt;}
.h63{height:41.200195pt;}
.h45{height:41.220703pt;}
.h44{height:41.656250pt;}
.h47{height:41.854167pt;}
.h1b{height:41.875000pt;}
.h50{height:42.414062pt;}
.h12{height:42.508138pt;}
.hf{height:42.529297pt;}
.h1c{height:42.531030pt;}
.h25{height:42.535297pt;}
.h26{height:42.547830pt;}
.h10{height:42.549830pt;}
.h2a{height:42.586875pt;}
.h4f{height:43.000000pt;}
.h64{height:43.109375pt;}
.h13{height:43.162109pt;}
.h2c{height:43.181309pt;}
.h41{height:43.183594pt;}
.h5a{height:43.671875pt;}
.h24{height:43.804688pt;}
.h14{height:43.816081pt;}
.h1a{height:43.837891pt;}
.h51{height:44.343750pt;}
.h27{height:44.470052pt;}
.h17{height:44.500000pt;}
.h29{height:45.015625pt;}
.h28{height:45.124023pt;}
.h42{height:45.146484pt;}
.h2b{height:45.195312pt;}
.h46{height:45.507656pt;}
.h43{height:45.687500pt;}
.h59{height:45.691233pt;}
.h15{height:45.777995pt;}
.h18{height:45.800781pt;}
.h58{height:46.281975pt;}
.h11{height:47.031250pt;}
.h19{height:48.096354pt;}
.h40{height:50.757812pt;}
.h4d{height:51.069180pt;}
.h23{height:52.343750pt;}
.h54{height:52.400805pt;}
.h1f{height:53.783203pt;}
.h5{height:54.306641pt;}
.hb{height:54.960938pt;}
.h22{height:55.006477pt;}
.h4{height:55.615234pt;}
.h55{height:55.616701pt;}
.h33{height:55.617234pt;}
.h5d{height:55.617368pt;}
.h35{height:55.618034pt;}
.h3a{height:55.618968pt;}
.h3b{height:55.621901pt;}
.h34{height:55.626568pt;}
.h31{height:55.626834pt;}
.h4c{height:55.627101pt;}
.h6{height:55.628568pt;}
.h8{height:55.629101pt;}
.h21{height:55.630968pt;}
.h32{height:55.631501pt;}
.h5e{height:55.632434pt;}
.h56{height:55.632968pt;}
.h7{height:55.636834pt;}
.h4e{height:55.637101pt;}
.h37{height:55.637368pt;}
.h38{height:55.641501pt;}
.hd{height:55.642034pt;}
.h39{height:55.648701pt;}
.h9{height:55.652568pt;}
.hc{height:55.653101pt;}
.h36{height:55.658968pt;}
.h5c{height:55.661368pt;}
.h61{height:55.663634pt;}
.h5b{height:55.666434pt;}
.h30{height:56.269531pt;}
.ha{height:56.785641pt;}
.h20{height:56.923828pt;}
.h2f{height:57.015625pt;}
.h62{height:57.578125pt;}
.h4a{height:58.232422pt;}
.h60{height:58.453125pt;}
.h57{height:59.955729pt;}
.he{height:61.882812pt;}
.h2{height:68.531250pt;}
.h3{height:92.476562pt;}
.h48{height:811.760933pt;}
.h49{height:812.000000pt;}
.h2d{height:812.400933pt;}
.h2e{height:812.666667pt;}
.h53{height:813.333333pt;}
.h52{height:813.362267pt;}
.h1e{height:814.000000pt;}
.h1d{height:814.322267pt;}
.h0{height:816.563600pt;}
.h1{height:816.666667pt;}
.w3{width:566.000000pt;}
.w2{width:566.000933pt;}
.w4{width:568.562267pt;}
.w5{width:568.666667pt;}
.w6{width:571.122267pt;}
.w7{width:571.333333pt;}
.w0{width:573.683600pt;}
.w1{width:574.000000pt;}
.x0{left:0.000000pt;}
.x14{left:19.327267pt;}
.xc{left:20.602667pt;}
.x5e{left:21.560533pt;}
.x61{left:22.519000pt;}
.x8d{left:23.475533pt;}
.x18{left:24.441867pt;}
.x15{left:26.362267pt;}
.x96{left:27.327800pt;}
.x70{left:28.281333pt;}
.x7f{left:29.253267pt;}
.x83{left:31.480533pt;}
.x99{left:32.441467pt;}
.x16{left:33.721733pt;}
.x19{left:36.920933pt;}
.x17{left:38.188867pt;}
.x1{left:40.440933pt;}
.x91{left:41.400400pt;}
.x3a{left:42.361333pt;}
.x51{left:43.320800pt;}
.x93{left:44.265367pt;}
.x2{left:45.562800pt;}
.xb{left:50.364733pt;}
.x5c{left:51.334267pt;}
.x62{left:52.273133pt;}
.x3b{left:55.480533pt;}
.x4b{left:56.441467pt;}
.x3e{left:57.400933pt;}
.x7d{left:58.360400pt;}
.x89{left:60.920933pt;}
.x9a{left:63.164400pt;}
.x9d{left:64.109933pt;}
.x3f{left:65.400400pt;}
.x2d{left:67.000467pt;}
.x33{left:67.953400pt;}
.x52{left:71.161600pt;}
.x67{left:73.080533pt;}
.x7e{left:77.561467pt;}
.x1a{left:79.801333pt;}
.x68{left:81.400933pt;}
.x8e{left:99.641200pt;}
.x4f{left:106.360400pt;}
.xa7{left:108.280800pt;}
.x43{left:110.520533pt;}
.x2b{left:112.440933pt;}
.x50{left:113.721200pt;}
.x69{left:119.480933pt;}
.x2c{left:121.401333pt;}
.xa8{left:122.681600pt;}
.x84{left:126.200267pt;}
.x4c{left:130.360400pt;}
.x11{left:132.601600pt;}
.x58{left:138.361333pt;}
.x77{left:140.280267pt;}
.xa9{left:145.401333pt;}
.x59{left:147.320267pt;}
.x12{left:148.602133pt;}
.x78{left:150.200267pt;}
.x1b{left:151.801333pt;}
.x1c{left:162.361333pt;}
.x90{left:165.560533pt;}
.x3c{left:170.681600pt;}
.x2f{left:171.960400pt;}
.x38{left:176.120667pt;}
.x26{left:184.121600pt;}
.x31{left:185.721200pt;}
.x32{left:195.641067pt;}
.x27{left:198.201733pt;}
.x6a{left:202.360400pt;}
.x6b{left:209.721200pt;}
.x28{left:212.280267pt;}
.x97{left:213.241200pt;}
.x22{left:215.161600pt;}
.x3{left:217.723800pt;}
.x44{left:222.200267pt;}
.x23{left:227.961467pt;}
.x8c{left:228.920933pt;}
.xa6{left:234.680667pt;}
.x85{left:235.960933pt;}
.x24{left:239.161600pt;}
.x1d{left:240.441867pt;}
.x8f{left:242.681600pt;}
.xa1{left:244.600533pt;}
.x30{left:246.200267pt;}
.xaa{left:247.161200pt;}
.x6c{left:251.640667pt;}
.x82{left:253.561067pt;}
.x63{left:257.721200pt;}
.x40{left:260.601067pt;}
.x64{left:263.161600pt;}
.x25{left:265.082000pt;}
.x29{left:266.681600pt;}
.x41{left:268.281333pt;}
.x65{left:269.240667pt;}
.x98{left:272.441467pt;}
.x2a{left:275.321333pt;}
.x36{left:279.160667pt;}
.x3d{left:281.721200pt;}
.x5d{left:282.680667pt;}
.x4d{left:284.920400pt;}
.xf{left:289.082000pt;}
.x5f{left:290.360800pt;}
.x66{left:292.281333pt;}
.x71{left:293.880933pt;}
.x4e{left:297.720267pt;}
.x2e{left:300.601600pt;}
.x6d{left:301.561067pt;}
.xa2{left:310.200667pt;}
.x34{left:311.800267pt;}
.x92{left:316.281333pt;}
.x60{left:317.240667pt;}
.x35{left:320.441467pt;}
.x72{left:323.000533pt;}
.x9e{left:326.201200pt;}
.x4{left:327.481467pt;}
.x79{left:329.081067pt;}
.x73{left:331.001467pt;}
.x1e{left:332.281733pt;}
.x5a{left:336.761200pt;}
.x7a{left:338.360800pt;}
.x1f{left:340.602000pt;}
.x80{left:342.521067pt;}
.xd{left:345.721733pt;}
.x6e{left:347.321333pt;}
.x5b{left:349.240267pt;}
.x39{left:350.520533pt;}
.x9b{left:351.481467pt;}
.xe{left:354.682133pt;}
.x6f{left:356.280267pt;}
.x10{left:360.121067pt;}
.x55{left:366.521067pt;}
.x13{left:373.241733pt;}
.x20{left:376.761733pt;}
.x7b{left:381.881333pt;}
.x56{left:385.720667pt;}
.x9f{left:389.240667pt;}
.x94{left:390.840400pt;}
.x21{left:393.081600pt;}
.x7c{left:394.681200pt;}
.x87{left:398.841333pt;}
.x5{left:401.721200pt;}
.x42{left:403.001467pt;}
.x8{left:410.681733pt;}
.x45{left:414.200267pt;}
.x86{left:422.201200pt;}
.x46{left:430.200667pt;}
.xa5{left:432.440400pt;}
.x74{left:440.120667pt;}
.x49{left:442.041067pt;}
.x47{left:443.000533pt;}
.x95{left:447.800800pt;}
.x81{left:448.760267pt;}
.xa3{left:450.361333pt;}
.x75{left:452.601067pt;}
.x4a{left:454.521467pt;}
.x88{left:469.240267pt;}
.x76{left:475.320800pt;}
.xa4{left:476.920400pt;}
.x48{left:480.121067pt;}
.x9{left:483.961867pt;}
.x6{left:485.561600pt;}
.xa{left:493.561067pt;}
.x7{left:494.522000pt;}
.x57{left:503.161600pt;}
.x9c{left:504.440400pt;}
.x37{left:512.120667pt;}
.x53{left:514.041067pt;}
.x8a{left:515.321333pt;}
.x54{left:519.481467pt;}
.x8b{left:521.721200pt;}
.xa0{left:530.041467pt;}
}

