
    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_4041f548700a8be2e2aa10ae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.677734;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_c8a7a003fbf67bf465cfc1dd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.857910;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_599c656d8dbf2565928f38a3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_48a25d917521ebf359af5c2f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_b452a5baa9ae17310fda7acb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_0fab598036f400eb761f955a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_ad0aa28685bc1ece878ce821.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_03eddb05588b33e4ab954a5e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_2e671a380257b7c81b57b8be.woff')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_e29fa0f43f6abd0807d79a58.woff')format("woff");}.ffa{font-family:ffa;line-height:0.669434;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_12ba13cee022f19598dd8e02.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_2e671a380257b7c81b57b8be.woff')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_e29fa0f43f6abd0807d79a58.woff')format("woff");}.ffd{font-family:ffd;line-height:0.669434;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_c4a76c083715bd1294149c58.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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;}
.m1{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245359,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247552,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m29{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250223,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251982,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252136,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252477,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252634,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253143,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253232,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253495,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253511,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253539,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253645,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254207,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254673,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254836,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:29.970000px;}
.v3{vertical-align:42.000000px;}
.ls33{letter-spacing:-4.440000px;}
.lsd{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.840000px;}
.ls29{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.726000px;}
.ls13{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.528000px;}
.ls14{letter-spacing:-0.462000px;}
.ls17{letter-spacing:-0.396000px;}
.ls2a{letter-spacing:-0.330000px;}
.ls2e{letter-spacing:-0.264000px;}
.ls18{letter-spacing:-0.198000px;}
.ls27{letter-spacing:-0.132000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.005232px;}
.ls10{letter-spacing:0.005832px;}
.ls31{letter-spacing:0.009000px;}
.ls32{letter-spacing:0.009600px;}
.ls16{letter-spacing:0.066000px;}
.ls2c{letter-spacing:0.105600px;}
.ls15{letter-spacing:0.132000px;}
.ls23{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.396000px;}
.ls28{letter-spacing:0.462000px;}
.ls20{letter-spacing:0.528000px;}
.ls26{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.726000px;}
.ls25{letter-spacing:0.792000px;}
.ls24{letter-spacing:0.858000px;}
.ls30{letter-spacing:0.924000px;}
.ls2b{letter-spacing:0.990000px;}
.ls2f{letter-spacing:1.122000px;}
.ls6{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.254000px;}
.ls2{letter-spacing:1.270728px;}
.ls3{letter-spacing:1.296000px;}
.ls4{letter-spacing:1.299888px;}
.ls5{letter-spacing:1.500000px;}
.ls9{letter-spacing:1.762560px;}
.ls8{letter-spacing:1.814400px;}
.lsa{letter-spacing:2.332800px;}
.ls0{letter-spacing:2.384640px;}
.lsf{letter-spacing:3.267600px;}
.lse{letter-spacing:3.300000px;}
.ls1{letter-spacing:3.317760px;}
.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;}
}
.ws4{word-spacing:-25.020000px;}
.ws87{word-spacing:-18.348000px;}
.ws1b{word-spacing:-18.216000px;}
.ws66{word-spacing:-16.680000px;}
.ws1{word-spacing:-13.530240px;}
.ws2{word-spacing:-13.478400px;}
.ws3{word-spacing:-13.011840px;}
.wsa6{word-spacing:-12.240000px;}
.wsd{word-spacing:-8.646000px;}
.wsaf{word-spacing:-6.720000px;}
.wsc{word-spacing:-6.660000px;}
.wsf{word-spacing:-6.204000px;}
.wsa4{word-spacing:-6.060000px;}
.ws74{word-spacing:-5.346000px;}
.ws1e{word-spacing:-3.762000px;}
.ws24{word-spacing:-3.696000px;}
.ws6f{word-spacing:-3.564000px;}
.ws90{word-spacing:-3.420000px;}
.ws8{word-spacing:-3.317760px;}
.wse{word-spacing:-3.300000px;}
.ws6e{word-spacing:-3.186000px;}
.ws16{word-spacing:-3.168000px;}
.ws91{word-spacing:-3.120000px;}
.ws55{word-spacing:-3.102000px;}
.ws47{word-spacing:-2.772000px;}
.ws37{word-spacing:-2.706000px;}
.ws82{word-spacing:-2.640000px;}
.ws80{word-spacing:-2.508000px;}
.ws1d{word-spacing:-2.376000px;}
.wsa{word-spacing:-2.332800px;}
.ws65{word-spacing:-2.220000px;}
.ws48{word-spacing:-2.178000px;}
.ws40{word-spacing:-2.112000px;}
.ws23{word-spacing:-1.980000px;}
.ws57{word-spacing:-1.914000px;}
.ws4f{word-spacing:-1.848000px;}
.ws46{word-spacing:-1.716000px;}
.ws1c{word-spacing:-1.650000px;}
.ws5d{word-spacing:-1.584000px;}
.ws8e{word-spacing:-1.560000px;}
.ws5{word-spacing:-1.500000px;}
.ws53{word-spacing:-1.452000px;}
.ws9b{word-spacing:-1.380000px;}
.ws83{word-spacing:-1.320000px;}
.ws7{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.200000px;}
.wsa3{word-spacing:-1.140000px;}
.ws62{word-spacing:-1.080000px;}
.ws27{word-spacing:-0.990000px;}
.ws1f{word-spacing:-0.924000px;}
.ws59{word-spacing:-0.858000px;}
.ws5a{word-spacing:-0.792000px;}
.wsa7{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.594000px;}
.ws4b{word-spacing:-0.528000px;}
.ws49{word-spacing:-0.462000px;}
.ws81{word-spacing:-0.396000px;}
.ws50{word-spacing:-0.330000px;}
.ws5c{word-spacing:-0.264000px;}
.ws21{word-spacing:-0.198000px;}
.ws6a{word-spacing:-0.132000px;}
.ws4e{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws99{word-spacing:0.060000px;}
.ws6b{word-spacing:0.066000px;}
.ws14{word-spacing:0.132000px;}
.ws78{word-spacing:0.264000px;}
.ws28{word-spacing:0.330000px;}
.ws8f{word-spacing:0.360000px;}
.ws29{word-spacing:0.396000px;}
.ws2f{word-spacing:0.462000px;}
.ws76{word-spacing:0.528000px;}
.ws22{word-spacing:0.594000px;}
.ws13{word-spacing:0.660000px;}
.ws88{word-spacing:0.780000px;}
.ws5f{word-spacing:0.792000px;}
.ws86{word-spacing:0.858000px;}
.ws77{word-spacing:0.924000px;}
.ws30{word-spacing:0.990000px;}
.wsa9{word-spacing:1.020000px;}
.ws5e{word-spacing:1.056000px;}
.ws8d{word-spacing:1.140000px;}
.wsa1{word-spacing:1.200000px;}
.ws45{word-spacing:1.254000px;}
.ws3d{word-spacing:1.386000px;}
.ws10{word-spacing:1.452000px;}
.ws34{word-spacing:1.518000px;}
.ws58{word-spacing:1.650000px;}
.ws20{word-spacing:1.716000px;}
.ws97{word-spacing:1.740000px;}
.ws31{word-spacing:1.782000px;}
.ws3c{word-spacing:1.914000px;}
.ws95{word-spacing:1.920000px;}
.ws43{word-spacing:2.046000px;}
.ws9{word-spacing:2.332800px;}
.ws67{word-spacing:2.376000px;}
.ws9a{word-spacing:2.400000px;}
.ws7e{word-spacing:2.442000px;}
.wsab{word-spacing:2.520000px;}
.ws9f{word-spacing:2.580000px;}
.ws39{word-spacing:2.640000px;}
.ws69{word-spacing:2.706000px;}
.ws8b{word-spacing:2.760000px;}
.ws25{word-spacing:2.772000px;}
.ws3a{word-spacing:2.838000px;}
.ws52{word-spacing:3.036000px;}
.ws96{word-spacing:3.240000px;}
.ws51{word-spacing:3.300000px;}
.ws93{word-spacing:3.480000px;}
.ws4a{word-spacing:3.498000px;}
.ws85{word-spacing:3.564000px;}
.ws7b{word-spacing:3.630000px;}
.ws56{word-spacing:3.696000px;}
.ws42{word-spacing:3.762000px;}
.ws84{word-spacing:3.828000px;}
.ws7c{word-spacing:3.894000px;}
.ws35{word-spacing:4.026000px;}
.wsa5{word-spacing:4.080000px;}
.ws54{word-spacing:4.092000px;}
.ws8a{word-spacing:4.140000px;}
.ws7f{word-spacing:4.224000px;}
.ws32{word-spacing:4.290000px;}
.wsaa{word-spacing:4.380000px;}
.wsa8{word-spacing:4.440000px;}
.ws64{word-spacing:4.488000px;}
.ws26{word-spacing:4.620000px;}
.ws4d{word-spacing:4.686000px;}
.ws15{word-spacing:4.752000px;}
.ws17{word-spacing:5.016000px;}
.wsa0{word-spacing:5.160000px;}
.wsad{word-spacing:5.220000px;}
.ws3b{word-spacing:5.280000px;}
.wsa2{word-spacing:5.340000px;}
.ws3f{word-spacing:5.346000px;}
.ws5b{word-spacing:5.412000px;}
.ws2a{word-spacing:5.478000px;}
.ws38{word-spacing:5.610000px;}
.ws68{word-spacing:5.676000px;}
.ws36{word-spacing:5.742000px;}
.ws41{word-spacing:5.808000px;}
.ws44{word-spacing:5.874000px;}
.ws4c{word-spacing:5.940000px;}
.ws2b{word-spacing:6.006000px;}
.ws33{word-spacing:6.072000px;}
.ws12{word-spacing:6.336000px;}
.ws92{word-spacing:6.600000px;}
.wsae{word-spacing:6.840000px;}
.ws61{word-spacing:7.458000px;}
.ws7d{word-spacing:7.524000px;}
.ws75{word-spacing:7.656000px;}
.ws9e{word-spacing:7.680000px;}
.ws98{word-spacing:8.100000px;}
.ws2e{word-spacing:8.118000px;}
.ws19{word-spacing:8.316000px;}
.ws7a{word-spacing:8.448000px;}
.ws72{word-spacing:8.646000px;}
.wsac{word-spacing:8.820000px;}
.ws9d{word-spacing:9.180000px;}
.ws94{word-spacing:9.420000px;}
.ws89{word-spacing:9.540000px;}
.ws18{word-spacing:9.834000px;}
.ws73{word-spacing:9.900000px;}
.ws8c{word-spacing:9.960000px;}
.ws11{word-spacing:10.032000px;}
.ws60{word-spacing:12.540000px;}
.ws1a{word-spacing:13.332000px;}
.ws9c{word-spacing:15.600000px;}
.ws2d{word-spacing:15.972000px;}
.wsb0{word-spacing:17.760000px;}
.ws2c{word-spacing:20.196000px;}
.ws63{word-spacing:101.706000px;}
.ws6c{word-spacing:177.310200px;}
.ws71{word-spacing:191.990400px;}
.ws70{word-spacing:212.044200px;}
.ws6d{word-spacing:580.803000px;}
._0{margin-left:-61.590000px;}
._5{margin-left:-12.039192px;}
._c{margin-left:-7.326000px;}
._2d{margin-left:-6.226200px;}
._a{margin-left:-4.705800px;}
._3{margin-left:-3.568536px;}
._6{margin-left:-2.369088px;}
._1{margin-left:-1.160568px;}
._2{width:1.296000px;}
._4{width:2.498688px;}
._8{width:4.078800px;}
._e{width:5.596800px;}
._f{width:6.956400px;}
._22{width:8.368800px;}
._2e{width:9.414000px;}
._30{width:10.878000px;}
._31{width:12.769800px;}
._2f{width:14.664000px;}
._32{width:17.975400px;}
._7{width:26.640000px;}
._b{width:28.608000px;}
._10{width:47.649600px;}
._12{width:120.449088px;}
._d{width:214.024176px;}
._27{width:225.355200px;}
._9{width:232.042176px;}
._25{width:242.031000px;}
._2b{width:258.715200px;}
._17{width:305.961000px;}
._1b{width:364.351800px;}
._18{width:393.145800px;}
._11{width:401.909088px;}
._13{width:457.821000px;}
._20{width:477.423600px;}
._14{width:537.600600px;}
._1f{width:563.681400px;}
._16{width:567.849600px;}
._1a{width:580.807800px;}
._15{width:585.850800px;}
._1d{width:597.483000px;}
._21{width:683.057400px;}
._23{width:728.585400px;}
._1c{width:807.751800px;}
._1e{width:947.851800px;}
._19{width:954.447000px;}
._26{width:1081.894200px;}
._29{width:1141.894200px;}
._24{width:1158.578400px;}
._28{width:1225.294200px;}
._2a{width:1241.978400px;}
._2c{width:1876.300200px;}
.fc4{color:rgb(32,93,158);}
.fc3{color:rgb(48,88,159);}
.fc2{color:rgb(94,96,103);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs1{font-size:51.840000px;}
.fs3{font-size:52.470000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:26.167350px;}
.y28{bottom:37.604550px;}
.y4e{bottom:38.313150px;}
.y8{bottom:65.834700px;}
.y4d{bottom:75.586800px;}
.y27{bottom:75.774600px;}
.y7{bottom:83.834700px;}
.y6{bottom:110.834700px;}
.y25{bottom:191.834700px;}
.y24{bottom:212.834700px;}
.y1b4{bottom:213.507600px;}
.ya8{bottom:214.793850px;}
.y1d2{bottom:217.793850px;}
.yea{bottom:218.834700px;}
.y13a{bottom:220.254000px;}
.y1e5{bottom:220.793550px;}
.y1fb{bottom:220.793850px;}
.y4b{bottom:223.604700px;}
.ycd{bottom:226.604700px;}
.y72{bottom:226.793850px;}
.y151{bottom:227.834550px;}
.y23{bottom:233.834700px;}
.y1b3{bottom:234.507600px;}
.ya7{bottom:235.793850px;}
.y1d1{bottom:238.793850px;}
.y139{bottom:241.254000px;}
.y97{bottom:241.793550px;}
.y1fa{bottom:241.793850px;}
.y4a{bottom:244.604700px;}
.ycc{bottom:247.604700px;}
.y71{bottom:247.793850px;}
.ye9{bottom:248.057250px;}
.y20d{bottom:253.604700px;}
.y22{bottom:254.834700px;}
.y1b2{bottom:255.507600px;}
.y1d0{bottom:259.793850px;}
.y138{bottom:262.254000px;}
.y96{bottom:262.793550px;}
.y1f9{bottom:262.793850px;}
.y49{bottom:265.604700px;}
.y150{bottom:267.177450px;}
.ycb{bottom:268.604700px;}
.y70{bottom:268.793850px;}
.ye8{bottom:269.057250px;}
.y228{bottom:274.604700px;}
.ya6{bottom:274.793850px;}
.y21{bottom:275.834700px;}
.y1b1{bottom:276.507600px;}
.y20c{bottom:280.604700px;}
.y1cf{bottom:280.793850px;}
.y137{bottom:283.254000px;}
.y196{bottom:283.334700px;}
.y95{bottom:283.793550px;}
.y1f8{bottom:283.793850px;}
.y48{bottom:286.604700px;}
.yca{bottom:289.604700px;}
.ye7{bottom:290.057250px;}
.y227{bottom:295.604700px;}
.y20{bottom:296.834700px;}
.y1b0{bottom:297.507600px;}
.y14f{bottom:299.097750px;}
.y1ce{bottom:301.793850px;}
.y136{bottom:304.254000px;}
.y195{bottom:304.334700px;}
.y94{bottom:304.793550px;}
.y1f7{bottom:304.793850px;}
.y47{bottom:307.604700px;}
.y6f{bottom:307.793850px;}
.ye6{bottom:312.977700px;}
.ya5{bottom:313.793850px;}
.y15c{bottom:316.604700px;}
.y1f{bottom:317.834700px;}
.y1af{bottom:318.507600px;}
.y177{bottom:319.334700px;}
.y14e{bottom:320.097750px;}
.y1e4{bottom:322.793550px;}
.y1cd{bottom:322.793850px;}
.y135{bottom:325.254000px;}
.y194{bottom:325.334700px;}
.y226{bottom:325.604700px;}
.y93{bottom:325.793550px;}
.y1f6{bottom:325.793850px;}
.y46{bottom:328.604700px;}
.y6e{bottom:328.793850px;}
.y20b{bottom:334.604700px;}
.ya4{bottom:334.793850px;}
.ye5{bottom:335.898150px;}
.y1e{bottom:338.834700px;}
.y176{bottom:340.334700px;}
.y14d{bottom:341.097750px;}
.y1e3{bottom:343.793550px;}
.y1cc{bottom:343.793850px;}
.y134{bottom:346.254000px;}
.y193{bottom:346.334700px;}
.y45{bottom:349.604700px;}
.y6d{bottom:349.793850px;}
.y225{bottom:355.604700px;}
.ya3{bottom:355.793850px;}
.y110{bottom:356.904300px;}
.y1ae{bottom:357.507450px;}
.ye4{bottom:358.410600px;}
.y1d{bottom:359.834700px;}
.y175{bottom:361.334700px;}
.y14c{bottom:362.097750px;}
.y92{bottom:364.793550px;}
.y1f5{bottom:364.793850px;}
.y133{bottom:367.254000px;}
.y192{bottom:367.334700px;}
.yc9{bottom:370.604700px;}
.y6c{bottom:370.793850px;}
.y224{bottom:376.604700px;}
.ya2{bottom:376.793850px;}
.y1ad{bottom:378.507450px;}
.y10f{bottom:378.732600px;}
.ye3{bottom:379.410600px;}
.y1c{bottom:380.834700px;}
.y174{bottom:382.334700px;}
.y1cb{bottom:382.793850px;}
.y14b{bottom:383.097750px;}
.y91{bottom:385.793550px;}
.y1f4{bottom:385.793850px;}
.y132{bottom:388.254000px;}
.y44{bottom:388.604700px;}
.yc8{bottom:391.604700px;}
.y20a{bottom:397.604700px;}
.ya0{bottom:397.793850px;}
.y1ac{bottom:399.507450px;}
.y10e{bottom:399.732600px;}
.ye2{bottom:400.410600px;}
.y1b{bottom:401.834700px;}
.ya1{bottom:403.288350px;}
.y1ca{bottom:403.793850px;}
.y14a{bottom:404.097750px;}
.y191{bottom:406.334700px;}
.y223{bottom:406.604700px;}
.y90{bottom:406.793550px;}
.y1f3{bottom:406.793850px;}
.y43{bottom:409.604700px;}
.y6b{bottom:409.793850px;}
.y103{bottom:411.192750px;}
.yc7{bottom:412.604700px;}
.y9f{bottom:418.793850px;}
.y1ab{bottom:420.507450px;}
.y10d{bottom:420.732600px;}
.ye1{bottom:421.410600px;}
.y10b{bottom:421.692750px;}
.y1a{bottom:422.834700px;}
.yff{bottom:423.192750px;}
.y1c9{bottom:424.793850px;}
.y173{bottom:425.834700px;}
.y190{bottom:427.334700px;}
.y222{bottom:427.604700px;}
.y8f{bottom:427.793550px;}
.y1f2{bottom:427.793850px;}
.y42{bottom:430.604700px;}
.y6a{bottom:430.793850px;}
.y102{bottom:432.192750px;}
.yc6{bottom:433.604700px;}
.y149{bottom:436.018200px;}
.y131{bottom:436.254000px;}
.y9e{bottom:439.793850px;}
.y1aa{bottom:441.507450px;}
.y10c{bottom:441.732600px;}
.ye0{bottom:442.410600px;}
.y10a{bottom:442.692750px;}
.y19{bottom:443.834700px;}
.y1c8{bottom:445.793850px;}
.y1e2{bottom:448.793550px;}
.y1f1{bottom:448.793850px;}
.y69{bottom:451.793850px;}
.yfe{bottom:453.192750px;}
.yc5{bottom:454.604700px;}
.y221{bottom:457.604700px;}
.y130{bottom:458.082300px;}
.y172{bottom:460.191600px;}
.y209{bottom:460.604700px;}
.y9d{bottom:460.793850px;}
.y1a9{bottom:462.507450px;}
.ydf{bottom:463.410600px;}
.y109{bottom:463.692750px;}
.y107{bottom:464.653050px;}
.y18{bottom:464.834700px;}
.y18f{bottom:466.334700px;}
.y8e{bottom:466.793550px;}
.y1c7{bottom:466.793850px;}
.y148{bottom:467.938650px;}
.y41{bottom:469.604700px;}
.y1e1{bottom:469.793550px;}
.y1f0{bottom:469.793850px;}
.y68{bottom:472.793850px;}
.y101{bottom:474.192750px;}
.yc4{bottom:475.604700px;}
.y220{bottom:478.604700px;}
.y12f{bottom:479.082300px;}
.y171{bottom:481.191600px;}
.y9c{bottom:481.793850px;}
.yfd{bottom:483.192750px;}
.yde{bottom:484.410600px;}
.y108{bottom:484.692750px;}
.y106{bottom:485.653050px;}
.y17{bottom:485.834700px;}
.y18e{bottom:487.334700px;}
.y1c6{bottom:487.793850px;}
.y40{bottom:490.604700px;}
.y1e0{bottom:490.793550px;}
.y1ef{bottom:490.793850px;}
.y67{bottom:493.793850px;}
.y100{bottom:495.192750px;}
.yc3{bottom:496.604700px;}
.y21f{bottom:499.604700px;}
.y12e{bottom:500.082300px;}
.y1a8{bottom:501.507450px;}
.y170{bottom:502.191600px;}
.y9b{bottom:502.793850px;}
.y241{bottom:503.867400px;}
.ydd{bottom:505.410600px;}
.y8d{bottom:505.793550px;}
.y105{bottom:506.653050px;}
.y16{bottom:506.834700px;}
.y18d{bottom:508.334700px;}
.y1c5{bottom:508.793850px;}
.y147{bottom:508.858950px;}
.y3f{bottom:511.604700px;}
.yc2{bottom:517.604700px;}
.y1a7{bottom:522.507450px;}
.y12d{bottom:523.002750px;}
.y16f{bottom:523.191600px;}
.y208{bottom:523.604700px;}
.y9a{bottom:523.793850px;}
.y240{bottom:524.867400px;}
.ydc{bottom:526.410600px;}
.y8c{bottom:526.793550px;}
.y104{bottom:527.653050px;}
.y15{bottom:527.834700px;}
.y18c{bottom:529.334700px;}
.y21e{bottom:529.604700px;}
.y1df{bottom:529.793550px;}
.y1c4{bottom:529.793850px;}
.y3e{bottom:532.604700px;}
.y66{bottom:532.793850px;}
.yc1{bottom:538.604700px;}
.y1a6{bottom:543.507450px;}
.y16e{bottom:544.191600px;}
.y99{bottom:544.793850px;}
.y23f{bottom:545.867400px;}
.y12c{bottom:545.923200px;}
.y146{bottom:546.779400px;}
.ydb{bottom:547.410600px;}
.y8b{bottom:547.793550px;}
.y14{bottom:548.834700px;}
.y18b{bottom:550.334700px;}
.yfc{bottom:550.573500px;}
.y207{bottom:550.604700px;}
.y1de{bottom:550.793550px;}
.y1c3{bottom:550.793850px;}
.y3d{bottom:553.604700px;}
.y65{bottom:553.793850px;}
.yc0{bottom:559.604700px;}
.y1a5{bottom:564.507450px;}
.y16d{bottom:565.191600px;}
.y98{bottom:565.793850px;}
.y12b{bottom:566.923200px;}
.y145{bottom:567.779400px;}
.y8a{bottom:568.793550px;}
.y1ee{bottom:568.793850px;}
.yda{bottom:568.830900px;}
.y1dd{bottom:571.793550px;}
.y1c2{bottom:571.793850px;}
.yfb{bottom:573.493800px;}
.y23e{bottom:575.867400px;}
.y13{bottom:578.834700px;}
.ybf{bottom:580.604700px;}
.y1a4{bottom:585.507450px;}
.y16c{bottom:586.191600px;}
.y206{bottom:586.604700px;}
.y12a{bottom:587.923200px;}
.y144{bottom:588.779400px;}
.y18a{bottom:589.334700px;}
.y89{bottom:589.793550px;}
.y1ed{bottom:589.793850px;}
.yd9{bottom:591.751350px;}
.y3c{bottom:592.604700px;}
.y1dc{bottom:592.793550px;}
.y64{bottom:592.793850px;}
.yfa{bottom:599.414250px;}
.ybe{bottom:601.604700px;}
.y23d{bottom:605.867400px;}
.y1a3{bottom:606.507450px;}
.y16b{bottom:607.191600px;}
.y129{bottom:608.923200px;}
.y143{bottom:609.779400px;}
.y88{bottom:610.793550px;}
.y1ec{bottom:610.793850px;}
.y205{bottom:613.604700px;}
.y1db{bottom:613.793550px;}
.y63{bottom:613.793850px;}
.yd8{bottom:615.763800px;}
.ybd{bottom:622.604700px;}
.y23c{bottom:626.867400px;}
.y1a2{bottom:627.507450px;}
.y16a{bottom:628.191600px;}
.y189{bottom:628.334700px;}
.y128{bottom:629.923200px;}
.y142{bottom:630.779400px;}
.y87{bottom:631.793550px;}
.y1eb{bottom:631.793850px;}
.y1da{bottom:634.793550px;}
.y62{bottom:634.793850px;}
.yd7{bottom:641.684250px;}
.ybc{bottom:643.604700px;}
.y169{bottom:649.191600px;}
.y188{bottom:649.334700px;}
.y204{bottom:649.604700px;}
.y127{bottom:650.923200px;}
.y141{bottom:651.779400px;}
.y21d{bottom:652.604700px;}
.y86{bottom:652.793550px;}
.y1ea{bottom:652.793850px;}
.y1d9{bottom:655.793550px;}
.y61{bottom:655.793850px;}
.yf9{bottom:656.834700px;}
.y23b{bottom:656.867400px;}
.y1a1{bottom:659.834700px;}
.ybb{bottom:664.604700px;}
.y3b{bottom:667.604700px;}
.y168{bottom:670.191600px;}
.y187{bottom:670.334700px;}
.y126{bottom:671.923200px;}
.y140{bottom:672.779400px;}
.y21c{bottom:673.604700px;}
.y85{bottom:673.793550px;}
.y1c1{bottom:673.793850px;}
.yd6{bottom:676.604700px;}
.y1d8{bottom:676.793550px;}
.yf8{bottom:677.834700px;}
.y23a{bottom:677.867400px;}
.y1a0{bottom:680.547300px;}
.yba{bottom:685.604700px;}
.y167{bottom:691.191600px;}
.y186{bottom:691.334700px;}
.y125{bottom:692.923200px;}
.y13f{bottom:693.779400px;}
.y60{bottom:694.793850px;}
.y12{bottom:695.834700px;}
.yd5{bottom:697.604700px;}
.yf7{bottom:698.834700px;}
.y19f{bottom:703.441650px;}
.y3a{bottom:703.604700px;}
.yb9{bottom:706.604700px;}
.y239{bottom:707.867400px;}
.y185{bottom:712.334700px;}
.y84{bottom:712.793550px;}
.y1e9{bottom:712.793850px;}
.y124{bottom:713.923200px;}
.y13e{bottom:714.779400px;}
.y1d7{bottom:715.793550px;}
.y5f{bottom:715.793850px;}
.y15b{bottom:716.834700px;}
.yd4{bottom:718.604700px;}
.yf6{bottom:719.834700px;}
.y11{bottom:722.834700px;}
.y166{bottom:722.901750px;}
.y21b{bottom:724.604700px;}
.yb8{bottom:727.604700px;}
.y19e{bottom:728.230200px;}
.y238{bottom:728.867400px;}
.y203{bottom:730.604700px;}
.y184{bottom:733.334700px;}
.y83{bottom:733.793550px;}
.y1e8{bottom:733.793850px;}
.y13d{bottom:735.779400px;}
.y39{bottom:736.604700px;}
.y1d6{bottom:736.793550px;}
.y5e{bottom:736.793850px;}
.y123{bottom:736.843650px;}
.y15a{bottom:737.834700px;}
.yd3{bottom:739.604700px;}
.y21a{bottom:745.604700px;}
.yb7{bottom:748.604700px;}
.y10{bottom:749.834700px;}
.y19d{bottom:753.018750px;}
.y183{bottom:754.334700px;}
.y165{bottom:754.611900px;}
.y82{bottom:754.793550px;}
.y1e7{bottom:754.793850px;}
.y113{bottom:755.923200px;}
.y13c{bottom:756.779400px;}
.y38{bottom:757.604700px;}
.y1d5{bottom:757.793550px;}
.y5d{bottom:757.793850px;}
.y11f{bottom:757.843650px;}
.y237{bottom:758.867400px;}
.yd2{bottom:760.604700px;}
.yf5{bottom:767.834700px;}
.yb6{bottom:769.604700px;}
.y182{bottom:775.334700px;}
.y219{bottom:775.604700px;}
.y164{bottom:775.611900px;}
.y81{bottom:775.793550px;}
.y1e6{bottom:775.793850px;}
.y19c{bottom:775.912950px;}
.y13b{bottom:777.779550px;}
.y37{bottom:778.604700px;}
.y1d4{bottom:778.793550px;}
.y5c{bottom:778.793850px;}
.y11e{bottom:778.843650px;}
.y236{bottom:779.867400px;}
.yd1{bottom:781.604700px;}
.y202{bottom:784.604700px;}
.yf{bottom:785.834700px;}
.y112{bottom:785.923200px;}
.yf4{bottom:789.771150px;}
.yb5{bottom:790.604700px;}
.y218{bottom:796.604700px;}
.y163{bottom:796.611900px;}
.y80{bottom:796.793550px;}
.y1c0{bottom:796.793850px;}
.y19b{bottom:798.225450px;}
.y36{bottom:799.604700px;}
.y1d3{bottom:799.793550px;}
.y11d{bottom:799.843650px;}
.y235{bottom:800.867400px;}
.yd0{bottom:802.604700px;}
.yf3{bottom:810.771150px;}
.yb4{bottom:811.604700px;}
.ye{bottom:812.834700px;}
.y153{bottom:814.593900px;}
.y217{bottom:817.604700px;}
.y162{bottom:817.611900px;}
.y7f{bottom:817.793550px;}
.y5b{bottom:817.793850px;}
.y35{bottom:820.604700px;}
.y11c{bottom:820.843650px;}
.y19a{bottom:821.498250px;}
.y234{bottom:821.867400px;}
.y159{bottom:822.763950px;}
.yb3{bottom:832.604700px;}
.yf2{bottom:833.691600px;}
.y152{bottom:835.593900px;}
.y201{bottom:838.604700px;}
.y161{bottom:838.611900px;}
.y7e{bottom:838.793550px;}
.y1bf{bottom:838.793850px;}
.yd{bottom:839.834700px;}
.y34{bottom:841.604700px;}
.y11b{bottom:841.843650px;}
.y181{bottom:843.413250px;}
.y158{bottom:843.763950px;}
.y199{bottom:844.770900px;}
.y216{bottom:847.604700px;}
.y233{bottom:851.867400px;}
.yb2{bottom:853.604700px;}
.yf1{bottom:854.691600px;}
.y5a{bottom:856.793850px;}
.y160{bottom:859.611900px;}
.y7d{bottom:859.793550px;}
.y1be{bottom:859.793850px;}
.y180{bottom:861.413250px;}
.y33{bottom:862.604700px;}
.y122{bottom:862.843650px;}
.y157{bottom:864.763950px;}
.y200{bottom:865.604700px;}
.y198{bottom:867.083400px;}
.y215{bottom:868.604700px;}
.y232{bottom:872.867400px;}
.yf0{bottom:877.611900px;}
.y59{bottom:877.793850px;}
.y7c{bottom:880.793550px;}
.y1bd{bottom:880.793850px;}
.y17f{bottom:883.241550px;}
.y32{bottom:883.604700px;}
.y121{bottom:883.843650px;}
.y15f{bottom:885.532350px;}
.y156{bottom:885.763950px;}
.y197{bottom:889.958400px;}
.yb1{bottom:892.604700px;}
.y231{bottom:893.867400px;}
.y214{bottom:898.604700px;}
.yef{bottom:898.611900px;}
.y58{bottom:898.793850px;}
.y1ff{bottom:901.604700px;}
.y7b{bottom:901.793550px;}
.y1bc{bottom:901.793850px;}
.y31{bottom:904.604700px;}
.y120{bottom:904.843650px;}
.y17e{bottom:906.162000px;}
.y155{bottom:906.763950px;}
.yaa{bottom:907.604700px;}
.y15e{bottom:914.452800px;}
.y213{bottom:919.604700px;}
.y57{bottom:919.793850px;}
.yee{bottom:921.532350px;}
.y7a{bottom:922.793550px;}
.y1bb{bottom:922.793850px;}
.y230{bottom:923.867400px;}
.y30{bottom:925.604700px;}
.y11a{bottom:927.763950px;}
.ya9{bottom:928.604700px;}
.y17d{bottom:929.082300px;}
.y212{bottom:940.604700px;}
.yb0{bottom:940.793550px;}
.y56{bottom:940.793850px;}
.yed{bottom:942.532350px;}
.ycf{bottom:943.604700px;}
.y79{bottom:943.793550px;}
.y1ba{bottom:943.793850px;}
.y22f{bottom:944.867400px;}
.y2f{bottom:946.604700px;}
.yc{bottom:947.834700px;}
.y119{bottom:948.763950px;}
.y17c{bottom:952.002750px;}
.y15d{bottom:955.373250px;}
.y1fe{bottom:955.604700px;}
.yaf{bottom:961.793550px;}
.y55{bottom:961.793850px;}
.y78{bottom:964.793550px;}
.y1b9{bottom:964.793850px;}
.y22e{bottom:965.867400px;}
.y2e{bottom:967.604700px;}
.y118{bottom:969.763950px;}
.y211{bottom:970.604700px;}
.yec{bottom:974.452800px;}
.y17b{bottom:974.923200px;}
.yce{bottom:982.604700px;}
.yae{bottom:982.793550px;}
.y54{bottom:982.793850px;}
.yb{bottom:983.834700px;}
.y77{bottom:985.793550px;}
.y1b8{bottom:985.793850px;}
.y22d{bottom:986.867400px;}
.y2d{bottom:988.604700px;}
.y117{bottom:990.763950px;}
.y210{bottom:991.604700px;}
.y17a{bottom:997.843650px;}
.y1fd{bottom:1000.604700px;}
.yad{bottom:1003.793550px;}
.y53{bottom:1003.793850px;}
.y76{bottom:1006.793550px;}
.y1b7{bottom:1006.793850px;}
.yeb{bottom:1009.373250px;}
.y2c{bottom:1009.604700px;}
.y116{bottom:1011.763950px;}
.y22c{bottom:1016.867400px;}
.y179{bottom:1020.763950px;}
.y20f{bottom:1021.604700px;}
.yac{bottom:1024.793550px;}
.y52{bottom:1024.793850px;}
.ya{bottom:1026.656400px;}
.y75{bottom:1027.793550px;}
.y1b6{bottom:1027.793850px;}
.y2b{bottom:1030.604700px;}
.y115{bottom:1032.763950px;}
.y22b{bottom:1037.867400px;}
.y178{bottom:1041.763950px;}
.y20e{bottom:1042.604700px;}
.yab{bottom:1045.793550px;}
.y51{bottom:1045.793850px;}
.y1b5{bottom:1048.793850px;}
.y2a{bottom:1051.604700px;}
.y114{bottom:1053.763950px;}
.y9{bottom:1056.656400px;}
.y1fc{bottom:1063.793550px;}
.y74{bottom:1066.793550px;}
.y50{bottom:1066.793850px;}
.y22a{bottom:1067.867400px;}
.y154{bottom:1073.684400px;}
.y111{bottom:1079.684400px;}
.y29{bottom:1081.604700px;}
.y73{bottom:1087.793550px;}
.y4f{bottom:1087.793850px;}
.y229{bottom:1088.867400px;}
.y2{bottom:1145.834700px;}
.y5{bottom:1163.834700px;}
.y26{bottom:1171.604700px;}
.y4c{bottom:1176.504300px;}
.y4{bottom:1181.834700px;}
.y3{bottom:1199.834700px;}
.he{height:34.494926px;}
.h10{height:39.313477px;}
.hc{height:39.990234px;}
.h2{height:40.810547px;}
.h3{height:42.752812px;}
.h13{height:43.681641px;}
.h11{height:43.710938px;}
.hd{height:48.049805px;}
.ha{height:48.082031px;}
.h12{height:48.410156px;}
.h4{height:49.482422px;}
.h9{height:53.789062px;}
.hf{height:54.169922px;}
.hb{height:54.430664px;}
.h15{height:56.472926px;}
.h8{height:59.167969px;}
.h7{height:59.586914px;}
.h6{height:61.154297px;}
.h5{height:81.254883px;}
.h14{height:96.169922px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:46.278450px;}
.x3{left:54.234300px;}
.xf{left:63.218100px;}
.x11{left:96.413400px;}
.x4{left:102.600000px;}
.x34{left:103.739100px;}
.x2f{left:106.086600px;}
.x17{left:110.456700px;}
.x20{left:112.966200px;}
.x21{left:114.087150px;}
.x6{left:115.954650px;}
.x25{left:118.890150px;}
.x2e{left:121.500000px;}
.x1d{left:124.144200px;}
.x26{left:125.972700px;}
.x28{left:128.306700px;}
.x35{left:130.610700px;}
.x39{left:134.578800px;}
.x12{left:138.933000px;}
.x16{left:141.750000px;}
.x22{left:143.274150px;}
.x31{left:145.128750px;}
.x3b{left:149.175000px;}
.xa{left:185.035050px;}
.x38{left:188.907750px;}
.x23{left:195.586950px;}
.x8{left:196.727850px;}
.x2a{left:199.036950px;}
.x29{left:200.948850px;}
.x9{left:205.062450px;}
.xc{left:221.546250px;}
.xb{left:241.325250px;}
.x30{left:261.391950px;}
.x3a{left:292.161000px;}
.x32{left:311.030250px;}
.x14{left:322.630650px;}
.x1b{left:325.057950px;}
.x15{left:328.148700px;}
.xd{left:332.258250px;}
.x1e{left:335.165250px;}
.x2b{left:338.456700px;}
.x5{left:347.829450px;}
.x7{left:357.695400px;}
.x1c{left:364.852200px;}
.x19{left:373.706700px;}
.x18{left:377.439000px;}
.x2d{left:381.432300px;}
.x10{left:428.790300px;}
.x13{left:429.854100px;}
.x1{left:439.290300px;}
.x27{left:460.460700px;}
.x36{left:485.773200px;}
.x37{left:515.773200px;}
.x33{left:541.955250px;}
.x2c{left:560.456700px;}
.x1a{left:575.756700px;}
.x1f{left:600.019200px;}
.x2{left:602.993250px;}
.x24{left:606.234750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:26.640000pt;}
.v3{vertical-align:37.333333pt;}
.ls33{letter-spacing:-3.946667pt;}
.lsd{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.645333pt;}
.ls13{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.469333pt;}
.ls14{letter-spacing:-0.410667pt;}
.ls17{letter-spacing:-0.352000pt;}
.ls2a{letter-spacing:-0.293333pt;}
.ls2e{letter-spacing:-0.234667pt;}
.ls18{letter-spacing:-0.176000pt;}
.ls27{letter-spacing:-0.117333pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.004651pt;}
.ls10{letter-spacing:0.005184pt;}
.ls31{letter-spacing:0.008000pt;}
.ls32{letter-spacing:0.008533pt;}
.ls16{letter-spacing:0.058667pt;}
.ls2c{letter-spacing:0.093867pt;}
.ls15{letter-spacing:0.117333pt;}
.ls23{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.352000pt;}
.ls28{letter-spacing:0.410667pt;}
.ls20{letter-spacing:0.469333pt;}
.ls26{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.645333pt;}
.ls25{letter-spacing:0.704000pt;}
.ls24{letter-spacing:0.762667pt;}
.ls30{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls2f{letter-spacing:0.997333pt;}
.ls6{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.114667pt;}
.ls2{letter-spacing:1.129536pt;}
.ls3{letter-spacing:1.152000pt;}
.ls4{letter-spacing:1.155456pt;}
.ls5{letter-spacing:1.333333pt;}
.ls9{letter-spacing:1.566720pt;}
.ls8{letter-spacing:1.612800pt;}
.lsa{letter-spacing:2.073600pt;}
.ls0{letter-spacing:2.119680pt;}
.lsf{letter-spacing:2.904533pt;}
.lse{letter-spacing:2.933333pt;}
.ls1{letter-spacing:2.949120pt;}
.ws4{word-spacing:-22.240000pt;}
.ws87{word-spacing:-16.309333pt;}
.ws1b{word-spacing:-16.192000pt;}
.ws66{word-spacing:-14.826667pt;}
.ws1{word-spacing:-12.026880pt;}
.ws2{word-spacing:-11.980800pt;}
.ws3{word-spacing:-11.566080pt;}
.wsa6{word-spacing:-10.880000pt;}
.wsd{word-spacing:-7.685333pt;}
.wsaf{word-spacing:-5.973333pt;}
.wsc{word-spacing:-5.920000pt;}
.wsf{word-spacing:-5.514667pt;}
.wsa4{word-spacing:-5.386667pt;}
.ws74{word-spacing:-4.752000pt;}
.ws1e{word-spacing:-3.344000pt;}
.ws24{word-spacing:-3.285333pt;}
.ws6f{word-spacing:-3.168000pt;}
.ws90{word-spacing:-3.040000pt;}
.ws8{word-spacing:-2.949120pt;}
.wse{word-spacing:-2.933333pt;}
.ws6e{word-spacing:-2.832000pt;}
.ws16{word-spacing:-2.816000pt;}
.ws91{word-spacing:-2.773333pt;}
.ws55{word-spacing:-2.757333pt;}
.ws47{word-spacing:-2.464000pt;}
.ws37{word-spacing:-2.405333pt;}
.ws82{word-spacing:-2.346667pt;}
.ws80{word-spacing:-2.229333pt;}
.ws1d{word-spacing:-2.112000pt;}
.wsa{word-spacing:-2.073600pt;}
.ws65{word-spacing:-1.973333pt;}
.ws48{word-spacing:-1.936000pt;}
.ws40{word-spacing:-1.877333pt;}
.ws23{word-spacing:-1.760000pt;}
.ws57{word-spacing:-1.701333pt;}
.ws4f{word-spacing:-1.642667pt;}
.ws46{word-spacing:-1.525333pt;}
.ws1c{word-spacing:-1.466667pt;}
.ws5d{word-spacing:-1.408000pt;}
.ws8e{word-spacing:-1.386667pt;}
.ws5{word-spacing:-1.333333pt;}
.ws53{word-spacing:-1.290667pt;}
.ws9b{word-spacing:-1.226667pt;}
.ws83{word-spacing:-1.173333pt;}
.ws7{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.066667pt;}
.wsa3{word-spacing:-1.013333pt;}
.ws62{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.880000pt;}
.ws1f{word-spacing:-0.821333pt;}
.ws59{word-spacing:-0.762667pt;}
.ws5a{word-spacing:-0.704000pt;}
.wsa7{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.528000pt;}
.ws4b{word-spacing:-0.469333pt;}
.ws49{word-spacing:-0.410667pt;}
.ws81{word-spacing:-0.352000pt;}
.ws50{word-spacing:-0.293333pt;}
.ws5c{word-spacing:-0.234667pt;}
.ws21{word-spacing:-0.176000pt;}
.ws6a{word-spacing:-0.117333pt;}
.ws4e{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws99{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.058667pt;}
.ws14{word-spacing:0.117333pt;}
.ws78{word-spacing:0.234667pt;}
.ws28{word-spacing:0.293333pt;}
.ws8f{word-spacing:0.320000pt;}
.ws29{word-spacing:0.352000pt;}
.ws2f{word-spacing:0.410667pt;}
.ws76{word-spacing:0.469333pt;}
.ws22{word-spacing:0.528000pt;}
.ws13{word-spacing:0.586667pt;}
.ws88{word-spacing:0.693333pt;}
.ws5f{word-spacing:0.704000pt;}
.ws86{word-spacing:0.762667pt;}
.ws77{word-spacing:0.821333pt;}
.ws30{word-spacing:0.880000pt;}
.wsa9{word-spacing:0.906667pt;}
.ws5e{word-spacing:0.938667pt;}
.ws8d{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.066667pt;}
.ws45{word-spacing:1.114667pt;}
.ws3d{word-spacing:1.232000pt;}
.ws10{word-spacing:1.290667pt;}
.ws34{word-spacing:1.349333pt;}
.ws58{word-spacing:1.466667pt;}
.ws20{word-spacing:1.525333pt;}
.ws97{word-spacing:1.546667pt;}
.ws31{word-spacing:1.584000pt;}
.ws3c{word-spacing:1.701333pt;}
.ws95{word-spacing:1.706667pt;}
.ws43{word-spacing:1.818667pt;}
.ws9{word-spacing:2.073600pt;}
.ws67{word-spacing:2.112000pt;}
.ws9a{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.170667pt;}
.wsab{word-spacing:2.240000pt;}
.ws9f{word-spacing:2.293333pt;}
.ws39{word-spacing:2.346667pt;}
.ws69{word-spacing:2.405333pt;}
.ws8b{word-spacing:2.453333pt;}
.ws25{word-spacing:2.464000pt;}
.ws3a{word-spacing:2.522667pt;}
.ws52{word-spacing:2.698667pt;}
.ws96{word-spacing:2.880000pt;}
.ws51{word-spacing:2.933333pt;}
.ws93{word-spacing:3.093333pt;}
.ws4a{word-spacing:3.109333pt;}
.ws85{word-spacing:3.168000pt;}
.ws7b{word-spacing:3.226667pt;}
.ws56{word-spacing:3.285333pt;}
.ws42{word-spacing:3.344000pt;}
.ws84{word-spacing:3.402667pt;}
.ws7c{word-spacing:3.461333pt;}
.ws35{word-spacing:3.578667pt;}
.wsa5{word-spacing:3.626667pt;}
.ws54{word-spacing:3.637333pt;}
.ws8a{word-spacing:3.680000pt;}
.ws7f{word-spacing:3.754667pt;}
.ws32{word-spacing:3.813333pt;}
.wsaa{word-spacing:3.893333pt;}
.wsa8{word-spacing:3.946667pt;}
.ws64{word-spacing:3.989333pt;}
.ws26{word-spacing:4.106667pt;}
.ws4d{word-spacing:4.165333pt;}
.ws15{word-spacing:4.224000pt;}
.ws17{word-spacing:4.458667pt;}
.wsa0{word-spacing:4.586667pt;}
.wsad{word-spacing:4.640000pt;}
.ws3b{word-spacing:4.693333pt;}
.wsa2{word-spacing:4.746667pt;}
.ws3f{word-spacing:4.752000pt;}
.ws5b{word-spacing:4.810667pt;}
.ws2a{word-spacing:4.869333pt;}
.ws38{word-spacing:4.986667pt;}
.ws68{word-spacing:5.045333pt;}
.ws36{word-spacing:5.104000pt;}
.ws41{word-spacing:5.162667pt;}
.ws44{word-spacing:5.221333pt;}
.ws4c{word-spacing:5.280000pt;}
.ws2b{word-spacing:5.338667pt;}
.ws33{word-spacing:5.397333pt;}
.ws12{word-spacing:5.632000pt;}
.ws92{word-spacing:5.866667pt;}
.wsae{word-spacing:6.080000pt;}
.ws61{word-spacing:6.629333pt;}
.ws7d{word-spacing:6.688000pt;}
.ws75{word-spacing:6.805333pt;}
.ws9e{word-spacing:6.826667pt;}
.ws98{word-spacing:7.200000pt;}
.ws2e{word-spacing:7.216000pt;}
.ws19{word-spacing:7.392000pt;}
.ws7a{word-spacing:7.509333pt;}
.ws72{word-spacing:7.685333pt;}
.wsac{word-spacing:7.840000pt;}
.ws9d{word-spacing:8.160000pt;}
.ws94{word-spacing:8.373333pt;}
.ws89{word-spacing:8.480000pt;}
.ws18{word-spacing:8.741333pt;}
.ws73{word-spacing:8.800000pt;}
.ws8c{word-spacing:8.853333pt;}
.ws11{word-spacing:8.917333pt;}
.ws60{word-spacing:11.146667pt;}
.ws1a{word-spacing:11.850667pt;}
.ws9c{word-spacing:13.866667pt;}
.ws2d{word-spacing:14.197333pt;}
.wsb0{word-spacing:15.786667pt;}
.ws2c{word-spacing:17.952000pt;}
.ws63{word-spacing:90.405333pt;}
.ws6c{word-spacing:157.609067pt;}
.ws71{word-spacing:170.658133pt;}
.ws70{word-spacing:188.483733pt;}
.ws6d{word-spacing:516.269333pt;}
._0{margin-left:-54.746667pt;}
._5{margin-left:-10.701504pt;}
._c{margin-left:-6.512000pt;}
._2d{margin-left:-5.534400pt;}
._a{margin-left:-4.182933pt;}
._3{margin-left:-3.172032pt;}
._6{margin-left:-2.105856pt;}
._1{margin-left:-1.031616pt;}
._2{width:1.152000pt;}
._4{width:2.221056pt;}
._8{width:3.625600pt;}
._e{width:4.974933pt;}
._f{width:6.183467pt;}
._22{width:7.438933pt;}
._2e{width:8.368000pt;}
._30{width:9.669333pt;}
._31{width:11.350933pt;}
._2f{width:13.034667pt;}
._32{width:15.978133pt;}
._7{width:23.680000pt;}
._b{width:25.429333pt;}
._10{width:42.355200pt;}
._12{width:107.065856pt;}
._d{width:190.243712pt;}
._27{width:200.315733pt;}
._9{width:206.259712pt;}
._25{width:215.138667pt;}
._2b{width:229.969067pt;}
._17{width:271.965333pt;}
._1b{width:323.868267pt;}
._18{width:349.462933pt;}
._11{width:357.252523pt;}
._13{width:406.952000pt;}
._20{width:424.376533pt;}
._14{width:477.867200pt;}
._1f{width:501.050133pt;}
._16{width:504.755200pt;}
._1a{width:516.273600pt;}
._15{width:520.756267pt;}
._1d{width:531.096000pt;}
._21{width:607.162133pt;}
._23{width:647.631467pt;}
._1c{width:718.001600pt;}
._1e{width:842.534933pt;}
._19{width:848.397333pt;}
._26{width:961.683733pt;}
._29{width:1015.017067pt;}
._24{width:1029.847467pt;}
._28{width:1089.150400pt;}
._2a{width:1103.980800pt;}
._2c{width:1667.822400pt;}
.fs6{font-size:34.202667pt;}
.fs1{font-size:46.080000pt;}
.fs3{font-size:46.640000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:23.259867pt;}
.y28{bottom:33.426267pt;}
.y4e{bottom:34.056133pt;}
.y8{bottom:58.519733pt;}
.y4d{bottom:67.188267pt;}
.y27{bottom:67.355200pt;}
.y7{bottom:74.519733pt;}
.y6{bottom:98.519733pt;}
.y25{bottom:170.519733pt;}
.y24{bottom:189.186400pt;}
.y1b4{bottom:189.784533pt;}
.ya8{bottom:190.927867pt;}
.y1d2{bottom:193.594533pt;}
.yea{bottom:194.519733pt;}
.y13a{bottom:195.781333pt;}
.y1e5{bottom:196.260933pt;}
.y1fb{bottom:196.261200pt;}
.y4b{bottom:198.759733pt;}
.ycd{bottom:201.426400pt;}
.y72{bottom:201.594533pt;}
.y151{bottom:202.519600pt;}
.y23{bottom:207.853067pt;}
.y1b3{bottom:208.451200pt;}
.ya7{bottom:209.594533pt;}
.y1d1{bottom:212.261200pt;}
.y139{bottom:214.448000pt;}
.y97{bottom:214.927600pt;}
.y1fa{bottom:214.927867pt;}
.y4a{bottom:217.426400pt;}
.ycc{bottom:220.093067pt;}
.y71{bottom:220.261200pt;}
.ye9{bottom:220.495333pt;}
.y20d{bottom:225.426400pt;}
.y22{bottom:226.519733pt;}
.y1b2{bottom:227.117867pt;}
.y1d0{bottom:230.927867pt;}
.y138{bottom:233.114667pt;}
.y96{bottom:233.594267pt;}
.y1f9{bottom:233.594533pt;}
.y49{bottom:236.093067pt;}
.y150{bottom:237.491067pt;}
.ycb{bottom:238.759733pt;}
.y70{bottom:238.927867pt;}
.ye8{bottom:239.162000pt;}
.y228{bottom:244.093067pt;}
.ya6{bottom:244.261200pt;}
.y21{bottom:245.186400pt;}
.y1b1{bottom:245.784533pt;}
.y20c{bottom:249.426400pt;}
.y1cf{bottom:249.594533pt;}
.y137{bottom:251.781333pt;}
.y196{bottom:251.853067pt;}
.y95{bottom:252.260933pt;}
.y1f8{bottom:252.261200pt;}
.y48{bottom:254.759733pt;}
.yca{bottom:257.426400pt;}
.ye7{bottom:257.828667pt;}
.y227{bottom:262.759733pt;}
.y20{bottom:263.853067pt;}
.y1b0{bottom:264.451200pt;}
.y14f{bottom:265.864667pt;}
.y1ce{bottom:268.261200pt;}
.y136{bottom:270.448000pt;}
.y195{bottom:270.519733pt;}
.y94{bottom:270.927600pt;}
.y1f7{bottom:270.927867pt;}
.y47{bottom:273.426400pt;}
.y6f{bottom:273.594533pt;}
.ye6{bottom:278.202400pt;}
.ya5{bottom:278.927867pt;}
.y15c{bottom:281.426400pt;}
.y1f{bottom:282.519733pt;}
.y1af{bottom:283.117867pt;}
.y177{bottom:283.853067pt;}
.y14e{bottom:284.531333pt;}
.y1e4{bottom:286.927600pt;}
.y1cd{bottom:286.927867pt;}
.y135{bottom:289.114667pt;}
.y194{bottom:289.186400pt;}
.y226{bottom:289.426400pt;}
.y93{bottom:289.594267pt;}
.y1f6{bottom:289.594533pt;}
.y46{bottom:292.093067pt;}
.y6e{bottom:292.261200pt;}
.y20b{bottom:297.426400pt;}
.ya4{bottom:297.594533pt;}
.ye5{bottom:298.576133pt;}
.y1e{bottom:301.186400pt;}
.y176{bottom:302.519733pt;}
.y14d{bottom:303.198000pt;}
.y1e3{bottom:305.594267pt;}
.y1cc{bottom:305.594533pt;}
.y134{bottom:307.781333pt;}
.y193{bottom:307.853067pt;}
.y45{bottom:310.759733pt;}
.y6d{bottom:310.927867pt;}
.y225{bottom:316.093067pt;}
.ya3{bottom:316.261200pt;}
.y110{bottom:317.248267pt;}
.y1ae{bottom:317.784400pt;}
.ye4{bottom:318.587200pt;}
.y1d{bottom:319.853067pt;}
.y175{bottom:321.186400pt;}
.y14c{bottom:321.864667pt;}
.y92{bottom:324.260933pt;}
.y1f5{bottom:324.261200pt;}
.y133{bottom:326.448000pt;}
.y192{bottom:326.519733pt;}
.yc9{bottom:329.426400pt;}
.y6c{bottom:329.594533pt;}
.y224{bottom:334.759733pt;}
.ya2{bottom:334.927867pt;}
.y1ad{bottom:336.451067pt;}
.y10f{bottom:336.651200pt;}
.ye3{bottom:337.253867pt;}
.y1c{bottom:338.519733pt;}
.y174{bottom:339.853067pt;}
.y1cb{bottom:340.261200pt;}
.y14b{bottom:340.531333pt;}
.y91{bottom:342.927600pt;}
.y1f4{bottom:342.927867pt;}
.y132{bottom:345.114667pt;}
.y44{bottom:345.426400pt;}
.yc8{bottom:348.093067pt;}
.y20a{bottom:353.426400pt;}
.ya0{bottom:353.594533pt;}
.y1ac{bottom:355.117733pt;}
.y10e{bottom:355.317867pt;}
.ye2{bottom:355.920533pt;}
.y1b{bottom:357.186400pt;}
.ya1{bottom:358.478533pt;}
.y1ca{bottom:358.927867pt;}
.y14a{bottom:359.198000pt;}
.y191{bottom:361.186400pt;}
.y223{bottom:361.426400pt;}
.y90{bottom:361.594267pt;}
.y1f3{bottom:361.594533pt;}
.y43{bottom:364.093067pt;}
.y6b{bottom:364.261200pt;}
.y103{bottom:365.504667pt;}
.yc7{bottom:366.759733pt;}
.y9f{bottom:372.261200pt;}
.y1ab{bottom:373.784400pt;}
.y10d{bottom:373.984533pt;}
.ye1{bottom:374.587200pt;}
.y10b{bottom:374.838000pt;}
.y1a{bottom:375.853067pt;}
.yff{bottom:376.171333pt;}
.y1c9{bottom:377.594533pt;}
.y173{bottom:378.519733pt;}
.y190{bottom:379.853067pt;}
.y222{bottom:380.093067pt;}
.y8f{bottom:380.260933pt;}
.y1f2{bottom:380.261200pt;}
.y42{bottom:382.759733pt;}
.y6a{bottom:382.927867pt;}
.y102{bottom:384.171333pt;}
.yc6{bottom:385.426400pt;}
.y149{bottom:387.571733pt;}
.y131{bottom:387.781333pt;}
.y9e{bottom:390.927867pt;}
.y1aa{bottom:392.451067pt;}
.y10c{bottom:392.651200pt;}
.ye0{bottom:393.253867pt;}
.y10a{bottom:393.504667pt;}
.y19{bottom:394.519733pt;}
.y1c8{bottom:396.261200pt;}
.y1e2{bottom:398.927600pt;}
.y1f1{bottom:398.927867pt;}
.y69{bottom:401.594533pt;}
.yfe{bottom:402.838000pt;}
.yc5{bottom:404.093067pt;}
.y221{bottom:406.759733pt;}
.y130{bottom:407.184267pt;}
.y172{bottom:409.059200pt;}
.y209{bottom:409.426400pt;}
.y9d{bottom:409.594533pt;}
.y1a9{bottom:411.117733pt;}
.ydf{bottom:411.920533pt;}
.y109{bottom:412.171333pt;}
.y107{bottom:413.024933pt;}
.y18{bottom:413.186400pt;}
.y18f{bottom:414.519733pt;}
.y8e{bottom:414.927600pt;}
.y1c7{bottom:414.927867pt;}
.y148{bottom:415.945467pt;}
.y41{bottom:417.426400pt;}
.y1e1{bottom:417.594267pt;}
.y1f0{bottom:417.594533pt;}
.y68{bottom:420.261200pt;}
.y101{bottom:421.504667pt;}
.yc4{bottom:422.759733pt;}
.y220{bottom:425.426400pt;}
.y12f{bottom:425.850933pt;}
.y171{bottom:427.725867pt;}
.y9c{bottom:428.261200pt;}
.yfd{bottom:429.504667pt;}
.yde{bottom:430.587200pt;}
.y108{bottom:430.838000pt;}
.y106{bottom:431.691600pt;}
.y17{bottom:431.853067pt;}
.y18e{bottom:433.186400pt;}
.y1c6{bottom:433.594533pt;}
.y40{bottom:436.093067pt;}
.y1e0{bottom:436.260933pt;}
.y1ef{bottom:436.261200pt;}
.y67{bottom:438.927867pt;}
.y100{bottom:440.171333pt;}
.yc3{bottom:441.426400pt;}
.y21f{bottom:444.093067pt;}
.y12e{bottom:444.517600pt;}
.y1a8{bottom:445.784400pt;}
.y170{bottom:446.392533pt;}
.y9b{bottom:446.927867pt;}
.y241{bottom:447.882133pt;}
.ydd{bottom:449.253867pt;}
.y8d{bottom:449.594267pt;}
.y105{bottom:450.358267pt;}
.y16{bottom:450.519733pt;}
.y18d{bottom:451.853067pt;}
.y1c5{bottom:452.261200pt;}
.y147{bottom:452.319067pt;}
.y3f{bottom:454.759733pt;}
.yc2{bottom:460.093067pt;}
.y1a7{bottom:464.451067pt;}
.y12d{bottom:464.891333pt;}
.y16f{bottom:465.059200pt;}
.y208{bottom:465.426400pt;}
.y9a{bottom:465.594533pt;}
.y240{bottom:466.548800pt;}
.ydc{bottom:467.920533pt;}
.y8c{bottom:468.260933pt;}
.y104{bottom:469.024933pt;}
.y15{bottom:469.186400pt;}
.y18c{bottom:470.519733pt;}
.y21e{bottom:470.759733pt;}
.y1df{bottom:470.927600pt;}
.y1c4{bottom:470.927867pt;}
.y3e{bottom:473.426400pt;}
.y66{bottom:473.594533pt;}
.yc1{bottom:478.759733pt;}
.y1a6{bottom:483.117733pt;}
.y16e{bottom:483.725867pt;}
.y99{bottom:484.261200pt;}
.y23f{bottom:485.215467pt;}
.y12c{bottom:485.265067pt;}
.y146{bottom:486.026133pt;}
.ydb{bottom:486.587200pt;}
.y8b{bottom:486.927600pt;}
.y14{bottom:487.853067pt;}
.y18b{bottom:489.186400pt;}
.yfc{bottom:489.398667pt;}
.y207{bottom:489.426400pt;}
.y1de{bottom:489.594267pt;}
.y1c3{bottom:489.594533pt;}
.y3d{bottom:492.093067pt;}
.y65{bottom:492.261200pt;}
.yc0{bottom:497.426400pt;}
.y1a5{bottom:501.784400pt;}
.y16d{bottom:502.392533pt;}
.y98{bottom:502.927867pt;}
.y12b{bottom:503.931733pt;}
.y145{bottom:504.692800pt;}
.y8a{bottom:505.594267pt;}
.y1ee{bottom:505.594533pt;}
.yda{bottom:505.627467pt;}
.y1dd{bottom:508.260933pt;}
.y1c2{bottom:508.261200pt;}
.yfb{bottom:509.772267pt;}
.y23e{bottom:511.882133pt;}
.y13{bottom:514.519733pt;}
.ybf{bottom:516.093067pt;}
.y1a4{bottom:520.451067pt;}
.y16c{bottom:521.059200pt;}
.y206{bottom:521.426400pt;}
.y12a{bottom:522.598400pt;}
.y144{bottom:523.359467pt;}
.y18a{bottom:523.853067pt;}
.y89{bottom:524.260933pt;}
.y1ed{bottom:524.261200pt;}
.yd9{bottom:526.001200pt;}
.y3c{bottom:526.759733pt;}
.y1dc{bottom:526.927600pt;}
.y64{bottom:526.927867pt;}
.yfa{bottom:532.812667pt;}
.ybe{bottom:534.759733pt;}
.y23d{bottom:538.548800pt;}
.y1a3{bottom:539.117733pt;}
.y16b{bottom:539.725867pt;}
.y129{bottom:541.265067pt;}
.y143{bottom:542.026133pt;}
.y88{bottom:542.927600pt;}
.y1ec{bottom:542.927867pt;}
.y205{bottom:545.426400pt;}
.y1db{bottom:545.594267pt;}
.y63{bottom:545.594533pt;}
.yd8{bottom:547.345600pt;}
.ybd{bottom:553.426400pt;}
.y23c{bottom:557.215467pt;}
.y1a2{bottom:557.784400pt;}
.y16a{bottom:558.392533pt;}
.y189{bottom:558.519733pt;}
.y128{bottom:559.931733pt;}
.y142{bottom:560.692800pt;}
.y87{bottom:561.594267pt;}
.y1eb{bottom:561.594533pt;}
.y1da{bottom:564.260933pt;}
.y62{bottom:564.261200pt;}
.yd7{bottom:570.386000pt;}
.ybc{bottom:572.093067pt;}
.y169{bottom:577.059200pt;}
.y188{bottom:577.186400pt;}
.y204{bottom:577.426400pt;}
.y127{bottom:578.598400pt;}
.y141{bottom:579.359467pt;}
.y21d{bottom:580.093067pt;}
.y86{bottom:580.260933pt;}
.y1ea{bottom:580.261200pt;}
.y1d9{bottom:582.927600pt;}
.y61{bottom:582.927867pt;}
.yf9{bottom:583.853067pt;}
.y23b{bottom:583.882133pt;}
.y1a1{bottom:586.519733pt;}
.ybb{bottom:590.759733pt;}
.y3b{bottom:593.426400pt;}
.y168{bottom:595.725867pt;}
.y187{bottom:595.853067pt;}
.y126{bottom:597.265067pt;}
.y140{bottom:598.026133pt;}
.y21c{bottom:598.759733pt;}
.y85{bottom:598.927600pt;}
.y1c1{bottom:598.927867pt;}
.yd6{bottom:601.426400pt;}
.y1d8{bottom:601.594267pt;}
.yf8{bottom:602.519733pt;}
.y23a{bottom:602.548800pt;}
.y1a0{bottom:604.930933pt;}
.yba{bottom:609.426400pt;}
.y167{bottom:614.392533pt;}
.y186{bottom:614.519733pt;}
.y125{bottom:615.931733pt;}
.y13f{bottom:616.692800pt;}
.y60{bottom:617.594533pt;}
.y12{bottom:618.519733pt;}
.yd5{bottom:620.093067pt;}
.yf7{bottom:621.186400pt;}
.y19f{bottom:625.281467pt;}
.y3a{bottom:625.426400pt;}
.yb9{bottom:628.093067pt;}
.y239{bottom:629.215467pt;}
.y185{bottom:633.186400pt;}
.y84{bottom:633.594267pt;}
.y1e9{bottom:633.594533pt;}
.y124{bottom:634.598400pt;}
.y13e{bottom:635.359467pt;}
.y1d7{bottom:636.260933pt;}
.y5f{bottom:636.261200pt;}
.y15b{bottom:637.186400pt;}
.yd4{bottom:638.759733pt;}
.yf6{bottom:639.853067pt;}
.y11{bottom:642.519733pt;}
.y166{bottom:642.579333pt;}
.y21b{bottom:644.093067pt;}
.yb8{bottom:646.759733pt;}
.y19e{bottom:647.315733pt;}
.y238{bottom:647.882133pt;}
.y203{bottom:649.426400pt;}
.y184{bottom:651.853067pt;}
.y83{bottom:652.260933pt;}
.y1e8{bottom:652.261200pt;}
.y13d{bottom:654.026133pt;}
.y39{bottom:654.759733pt;}
.y1d6{bottom:654.927600pt;}
.y5e{bottom:654.927867pt;}
.y123{bottom:654.972133pt;}
.y15a{bottom:655.853067pt;}
.yd3{bottom:657.426400pt;}
.y21a{bottom:662.759733pt;}
.yb7{bottom:665.426400pt;}
.y10{bottom:666.519733pt;}
.y19d{bottom:669.350000pt;}
.y183{bottom:670.519733pt;}
.y165{bottom:670.766133pt;}
.y82{bottom:670.927600pt;}
.y1e7{bottom:670.927867pt;}
.y113{bottom:671.931733pt;}
.y13c{bottom:672.692800pt;}
.y38{bottom:673.426400pt;}
.y1d5{bottom:673.594267pt;}
.y5d{bottom:673.594533pt;}
.y11f{bottom:673.638800pt;}
.y237{bottom:674.548800pt;}
.yd2{bottom:676.093067pt;}
.yf5{bottom:682.519733pt;}
.yb6{bottom:684.093067pt;}
.y182{bottom:689.186400pt;}
.y219{bottom:689.426400pt;}
.y164{bottom:689.432800pt;}
.y81{bottom:689.594267pt;}
.y1e6{bottom:689.594533pt;}
.y19c{bottom:689.700400pt;}
.y13b{bottom:691.359600pt;}
.y37{bottom:692.093067pt;}
.y1d4{bottom:692.260933pt;}
.y5c{bottom:692.261200pt;}
.y11e{bottom:692.305467pt;}
.y236{bottom:693.215467pt;}
.yd1{bottom:694.759733pt;}
.y202{bottom:697.426400pt;}
.yf{bottom:698.519733pt;}
.y112{bottom:698.598400pt;}
.yf4{bottom:702.018800pt;}
.yb5{bottom:702.759733pt;}
.y218{bottom:708.093067pt;}
.y163{bottom:708.099467pt;}
.y80{bottom:708.260933pt;}
.y1c0{bottom:708.261200pt;}
.y19b{bottom:709.533733pt;}
.y36{bottom:710.759733pt;}
.y1d3{bottom:710.927600pt;}
.y11d{bottom:710.972133pt;}
.y235{bottom:711.882133pt;}
.yd0{bottom:713.426400pt;}
.yf3{bottom:720.685467pt;}
.yb4{bottom:721.426400pt;}
.ye{bottom:722.519733pt;}
.y153{bottom:724.083467pt;}
.y217{bottom:726.759733pt;}
.y162{bottom:726.766133pt;}
.y7f{bottom:726.927600pt;}
.y5b{bottom:726.927867pt;}
.y35{bottom:729.426400pt;}
.y11c{bottom:729.638800pt;}
.y19a{bottom:730.220667pt;}
.y234{bottom:730.548800pt;}
.y159{bottom:731.345733pt;}
.yb3{bottom:740.093067pt;}
.yf2{bottom:741.059200pt;}
.y152{bottom:742.750133pt;}
.y201{bottom:745.426400pt;}
.y161{bottom:745.432800pt;}
.y7e{bottom:745.594267pt;}
.y1bf{bottom:745.594533pt;}
.yd{bottom:746.519733pt;}
.y34{bottom:748.093067pt;}
.y11b{bottom:748.305467pt;}
.y181{bottom:749.700667pt;}
.y158{bottom:750.012400pt;}
.y199{bottom:750.907467pt;}
.y216{bottom:753.426400pt;}
.y233{bottom:757.215467pt;}
.yb2{bottom:758.759733pt;}
.yf1{bottom:759.725867pt;}
.y5a{bottom:761.594533pt;}
.y160{bottom:764.099467pt;}
.y7d{bottom:764.260933pt;}
.y1be{bottom:764.261200pt;}
.y180{bottom:765.700667pt;}
.y33{bottom:766.759733pt;}
.y122{bottom:766.972133pt;}
.y157{bottom:768.679067pt;}
.y200{bottom:769.426400pt;}
.y198{bottom:770.740800pt;}
.y215{bottom:772.093067pt;}
.y232{bottom:775.882133pt;}
.yf0{bottom:780.099467pt;}
.y59{bottom:780.261200pt;}
.y7c{bottom:782.927600pt;}
.y1bd{bottom:782.927867pt;}
.y17f{bottom:785.103600pt;}
.y32{bottom:785.426400pt;}
.y121{bottom:785.638800pt;}
.y15f{bottom:787.139867pt;}
.y156{bottom:787.345733pt;}
.y197{bottom:791.074133pt;}
.yb1{bottom:793.426400pt;}
.y231{bottom:794.548800pt;}
.y214{bottom:798.759733pt;}
.yef{bottom:798.766133pt;}
.y58{bottom:798.927867pt;}
.y1ff{bottom:801.426400pt;}
.y7b{bottom:801.594267pt;}
.y1bc{bottom:801.594533pt;}
.y31{bottom:804.093067pt;}
.y120{bottom:804.305467pt;}
.y17e{bottom:805.477333pt;}
.y155{bottom:806.012400pt;}
.yaa{bottom:806.759733pt;}
.y15e{bottom:812.846933pt;}
.y213{bottom:817.426400pt;}
.y57{bottom:817.594533pt;}
.yee{bottom:819.139867pt;}
.y7a{bottom:820.260933pt;}
.y1bb{bottom:820.261200pt;}
.y230{bottom:821.215467pt;}
.y30{bottom:822.759733pt;}
.y11a{bottom:824.679067pt;}
.ya9{bottom:825.426400pt;}
.y17d{bottom:825.850933pt;}
.y212{bottom:836.093067pt;}
.yb0{bottom:836.260933pt;}
.y56{bottom:836.261200pt;}
.yed{bottom:837.806533pt;}
.ycf{bottom:838.759733pt;}
.y79{bottom:838.927600pt;}
.y1ba{bottom:838.927867pt;}
.y22f{bottom:839.882133pt;}
.y2f{bottom:841.426400pt;}
.yc{bottom:842.519733pt;}
.y119{bottom:843.345733pt;}
.y17c{bottom:846.224667pt;}
.y15d{bottom:849.220667pt;}
.y1fe{bottom:849.426400pt;}
.yaf{bottom:854.927600pt;}
.y55{bottom:854.927867pt;}
.y78{bottom:857.594267pt;}
.y1b9{bottom:857.594533pt;}
.y22e{bottom:858.548800pt;}
.y2e{bottom:860.093067pt;}
.y118{bottom:862.012400pt;}
.y211{bottom:862.759733pt;}
.yec{bottom:866.180267pt;}
.y17b{bottom:866.598400pt;}
.yce{bottom:873.426400pt;}
.yae{bottom:873.594267pt;}
.y54{bottom:873.594533pt;}
.yb{bottom:874.519733pt;}
.y77{bottom:876.260933pt;}
.y1b8{bottom:876.261200pt;}
.y22d{bottom:877.215467pt;}
.y2d{bottom:878.759733pt;}
.y117{bottom:880.679067pt;}
.y210{bottom:881.426400pt;}
.y17a{bottom:886.972133pt;}
.y1fd{bottom:889.426400pt;}
.yad{bottom:892.260933pt;}
.y53{bottom:892.261200pt;}
.y76{bottom:894.927600pt;}
.y1b7{bottom:894.927867pt;}
.yeb{bottom:897.220667pt;}
.y2c{bottom:897.426400pt;}
.y116{bottom:899.345733pt;}
.y22c{bottom:903.882133pt;}
.y179{bottom:907.345733pt;}
.y20f{bottom:908.093067pt;}
.yac{bottom:910.927600pt;}
.y52{bottom:910.927867pt;}
.ya{bottom:912.583467pt;}
.y75{bottom:913.594267pt;}
.y1b6{bottom:913.594533pt;}
.y2b{bottom:916.093067pt;}
.y115{bottom:918.012400pt;}
.y22b{bottom:922.548800pt;}
.y178{bottom:926.012400pt;}
.y20e{bottom:926.759733pt;}
.yab{bottom:929.594267pt;}
.y51{bottom:929.594533pt;}
.y1b5{bottom:932.261200pt;}
.y2a{bottom:934.759733pt;}
.y114{bottom:936.679067pt;}
.y9{bottom:939.250133pt;}
.y1fc{bottom:945.594267pt;}
.y74{bottom:948.260933pt;}
.y50{bottom:948.261200pt;}
.y22a{bottom:949.215467pt;}
.y154{bottom:954.386133pt;}
.y111{bottom:959.719467pt;}
.y29{bottom:961.426400pt;}
.y73{bottom:966.927600pt;}
.y4f{bottom:966.927867pt;}
.y229{bottom:967.882133pt;}
.y2{bottom:1018.519733pt;}
.y5{bottom:1034.519733pt;}
.y26{bottom:1041.426400pt;}
.y4c{bottom:1045.781600pt;}
.y4{bottom:1050.519733pt;}
.y3{bottom:1066.519733pt;}
.he{height:30.662156pt;}
.h10{height:34.945312pt;}
.hc{height:35.546875pt;}
.h2{height:36.276042pt;}
.h3{height:38.002500pt;}
.h13{height:38.828125pt;}
.h11{height:38.854167pt;}
.hd{height:42.710938pt;}
.ha{height:42.739583pt;}
.h12{height:43.031250pt;}
.h4{height:43.984375pt;}
.h9{height:47.812500pt;}
.hf{height:48.151042pt;}
.hb{height:48.382812pt;}
.h15{height:50.198156pt;}
.h8{height:52.593750pt;}
.h7{height:52.966146pt;}
.h6{height:54.359375pt;}
.h5{height:72.226562pt;}
.h14{height:85.484375pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:41.136400pt;}
.x3{left:48.208267pt;}
.xf{left:56.193867pt;}
.x11{left:85.700800pt;}
.x4{left:91.200000pt;}
.x34{left:92.212533pt;}
.x2f{left:94.299200pt;}
.x17{left:98.183733pt;}
.x20{left:100.414400pt;}
.x21{left:101.410800pt;}
.x6{left:103.070800pt;}
.x25{left:105.680133pt;}
.x2e{left:108.000000pt;}
.x1d{left:110.350400pt;}
.x26{left:111.975733pt;}
.x28{left:114.050400pt;}
.x35{left:116.098400pt;}
.x39{left:119.625600pt;}
.x12{left:123.496000pt;}
.x16{left:126.000000pt;}
.x22{left:127.354800pt;}
.x31{left:129.003333pt;}
.x3b{left:132.600000pt;}
.xa{left:164.475600pt;}
.x38{left:167.918000pt;}
.x23{left:173.855067pt;}
.x8{left:174.869200pt;}
.x2a{left:176.921733pt;}
.x29{left:178.621200pt;}
.x9{left:182.277733pt;}
.xc{left:196.930000pt;}
.xb{left:214.511333pt;}
.x30{left:232.348400pt;}
.x3a{left:259.698667pt;}
.x32{left:276.471333pt;}
.x14{left:286.782800pt;}
.x1b{left:288.940400pt;}
.x15{left:291.687733pt;}
.xd{left:295.340667pt;}
.x1e{left:297.924667pt;}
.x2b{left:300.850400pt;}
.x5{left:309.181733pt;}
.x7{left:317.951467pt;}
.x1c{left:324.313067pt;}
.x19{left:332.183733pt;}
.x18{left:335.501333pt;}
.x2d{left:339.050933pt;}
.x10{left:381.146933pt;}
.x13{left:382.092533pt;}
.x1{left:390.480267pt;}
.x27{left:409.298400pt;}
.x36{left:431.798400pt;}
.x37{left:458.465067pt;}
.x33{left:481.738000pt;}
.x2c{left:498.183733pt;}
.x1a{left:511.783733pt;}
.x1f{left:533.350400pt;}
.x2{left:535.994000pt;}
.x24{left:538.875333pt;}
}

