
    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_1a2297d6847940f386701034.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_6e404ed52dce94d06b6c7beb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_4e10810ad28d4177b082e9a1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_eda580a73358820e6416456a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_dd26731278b66709e63bf90f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_3390269d0b30b2eb45ca2606.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_5e3c50ed314cf8ac9200e681.woff')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_178831e732062e5ceeda8068.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m44{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245117,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246217,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246604,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247321,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248631,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248654,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249267,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249304,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249546,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.m1c{transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250104,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250967,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.v1{vertical-align:23.976000px;}
.v2{vertical-align:36.000000px;}
.ls19{letter-spacing:-3.300000px;}
.ls14{letter-spacing:-2.220000px;}
.ls12{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.061267px;}
.ls15{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.173179px;}
.lsd{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.lse{letter-spacing:0.432000px;}
.ls17{letter-spacing:387.224400px;}
.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;}
}
.ws89{word-spacing:-402.224400px;}
.wsaa{word-spacing:-18.144000px;}
.wsa9{word-spacing:-18.000000px;}
.wsb0{word-spacing:-17.928000px;}
.wsaf{word-spacing:-17.856000px;}
.wsb6{word-spacing:-17.784000px;}
.wsa8{word-spacing:-17.712000px;}
.ws7f{word-spacing:-17.136000px;}
.ws3{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.760000px;}
.ws6f{word-spacing:-12.780000px;}
.ws7e{word-spacing:-10.494000px;}
.wsb7{word-spacing:-4.176000px;}
.ws50{word-spacing:-3.672000px;}
.ws1a{word-spacing:-3.600000px;}
.wsb3{word-spacing:-3.528000px;}
.wsb1{word-spacing:-3.456000px;}
.ws52{word-spacing:-3.384000px;}
.ws23{word-spacing:-3.312000px;}
.ws83{word-spacing:-3.240000px;}
.ws55{word-spacing:-3.168000px;}
.wsa5{word-spacing:-3.096000px;}
.ws28{word-spacing:-3.024000px;}
.wsd{word-spacing:-3.000000px;}
.ws47{word-spacing:-2.808000px;}
.ws9e{word-spacing:-2.736000px;}
.ws2e{word-spacing:-2.664000px;}
.ws16{word-spacing:-2.592000px;}
.ws38{word-spacing:-2.448000px;}
.ws9{word-spacing:-2.400000px;}
.ws48{word-spacing:-2.376000px;}
.ws15{word-spacing:-2.304000px;}
.ws67{word-spacing:-2.232000px;}
.ws4f{word-spacing:-2.160000px;}
.ws41{word-spacing:-2.088000px;}
.ws2a{word-spacing:-2.016000px;}
.ws1c{word-spacing:-1.944000px;}
.ws57{word-spacing:-1.872000px;}
.ws24{word-spacing:-1.800000px;}
.ws33{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.680000px;}
.wsa0{word-spacing:-1.656000px;}
.ws66{word-spacing:-1.584000px;}
.wsa{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.368000px;}
.ws35{word-spacing:-1.296000px;}
.ws3f{word-spacing:-1.224000px;}
.ws64{word-spacing:-1.152000px;}
.ws82{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.008000px;}
.ws61{word-spacing:-0.936000px;}
.ws56{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.780000px;}
.wsb5{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.576000px;}
.ws9d{word-spacing:-0.504000px;}
.ws44{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.420000px;}
.ws1e{word-spacing:-0.360000px;}
.ws5e{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.180000px;}
.ws3c{word-spacing:-0.144000px;}
.wsb9{word-spacing:-0.072000px;}
.ws34{word-spacing:-0.057600px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.072000px;}
.ws49{word-spacing:0.144000px;}
.ws62{word-spacing:0.216000px;}
.ws51{word-spacing:0.288000px;}
.ws22{word-spacing:0.360000px;}
.ws40{word-spacing:0.432000px;}
.wsa2{word-spacing:0.504000px;}
.wsa1{word-spacing:0.576000px;}
.ws29{word-spacing:0.648000px;}
.ws27{word-spacing:0.720000px;}
.ws46{word-spacing:0.792000px;}
.ws17{word-spacing:0.864000px;}
.ws7{word-spacing:0.900000px;}
.wsb2{word-spacing:0.936000px;}
.ws9a{word-spacing:0.960000px;}
.ws4d{word-spacing:1.008000px;}
.ws5{word-spacing:1.020000px;}
.ws60{word-spacing:1.080000px;}
.wsab{word-spacing:1.224000px;}
.ws5d{word-spacing:1.296000px;}
.ws65{word-spacing:1.368000px;}
.wsf{word-spacing:1.380000px;}
.ws4c{word-spacing:1.440000px;}
.ws42{word-spacing:1.512000px;}
.ws4{word-spacing:1.560000px;}
.ws81{word-spacing:1.584000px;}
.wsa6{word-spacing:1.656000px;}
.wsb{word-spacing:1.680000px;}
.ws4a{word-spacing:1.728000px;}
.ws12{word-spacing:1.800000px;}
.ws31{word-spacing:1.872000px;}
.ws26{word-spacing:1.944000px;}
.ws39{word-spacing:2.016000px;}
.ws58{word-spacing:2.160000px;}
.ws6{word-spacing:2.280000px;}
.ws53{word-spacing:2.304000px;}
.ws2c{word-spacing:2.376000px;}
.ws3d{word-spacing:2.448000px;}
.wsa3{word-spacing:2.520000px;}
.wsac{word-spacing:2.592000px;}
.ws4b{word-spacing:2.880000px;}
.ws80{word-spacing:2.952000px;}
.wsba{word-spacing:3.024000px;}
.ws3b{word-spacing:3.240000px;}
.ws54{word-spacing:3.312000px;}
.ws36{word-spacing:3.384000px;}
.ws4e{word-spacing:3.528000px;}
.ws2b{word-spacing:3.600000px;}
.ws9c{word-spacing:3.744000px;}
.wsa7{word-spacing:3.816000px;}
.ws18{word-spacing:3.888000px;}
.wse{word-spacing:4.020000px;}
.ws21{word-spacing:4.032000px;}
.ws43{word-spacing:4.104000px;}
.ws9f{word-spacing:4.176000px;}
.wsa4{word-spacing:4.248000px;}
.ws5f{word-spacing:4.320000px;}
.ws2f{word-spacing:4.392000px;}
.ws59{word-spacing:4.464000px;}
.wsad{word-spacing:4.680000px;}
.ws5a{word-spacing:4.752000px;}
.ws30{word-spacing:4.824000px;}
.wsb8{word-spacing:4.896000px;}
.ws8{word-spacing:4.920000px;}
.ws14{word-spacing:4.980000px;}
.ws3e{word-spacing:5.040000px;}
.ws5b{word-spacing:5.112000px;}
.wsae{word-spacing:5.256000px;}
.wsb4{word-spacing:5.328000px;}
.ws32{word-spacing:5.400000px;}
.ws9b{word-spacing:5.616000px;}
.ws45{word-spacing:5.688000px;}
.ws3a{word-spacing:5.832000px;}
.ws19{word-spacing:5.904000px;}
.ws20{word-spacing:5.976000px;}
.ws86{word-spacing:117.968400px;}
.ws85{word-spacing:147.195600px;}
.ws84{word-spacing:213.924000px;}
.ws99{word-spacing:322.113600px;}
.ws98{word-spacing:342.224400px;}
.ws96{word-spacing:343.337400px;}
.ws8e{word-spacing:357.224400px;}
.ws97{word-spacing:362.771400px;}
.ws88{word-spacing:372.224400px;}
.ws74{word-spacing:512.952600px;}
.ws7c{word-spacing:514.066200px;}
.ws7d{word-spacing:518.499600px;}
.ws69{word-spacing:527.952600px;}
.ws6e{word-spacing:529.066200px;}
.ws90{word-spacing:529.685400px;}
.ws6a{word-spacing:533.499000px;}
.ws71{word-spacing:542.952600px;}
.ws6b{word-spacing:542.953200px;}
.ws6d{word-spacing:557.952600px;}
.ws95{word-spacing:585.299400px;}
.ws76{word-spacing:600.049200px;}
.ws7b{word-spacing:625.663200px;}
.ws94{word-spacing:628.619400px;}
.ws8a{word-spacing:645.239400px;}
.ws87{word-spacing:651.839400px;}
.ws8b{word-spacing:661.979400px;}
.ws93{word-spacing:665.279400px;}
.ws91{word-spacing:675.239400px;}
.ws8c{word-spacing:689.723400px;}
.ws8f{word-spacing:691.919400px;}
.ws7a{word-spacing:698.983200px;}
.ws8d{word-spacing:700.259400px;}
.ws92{word-spacing:716.423400px;}
.ws68{word-spacing:722.203200px;}
.ws6c{word-spacing:730.603200px;}
.ws79{word-spacing:735.643200px;}
.ws77{word-spacing:745.603200px;}
.ws70{word-spacing:747.343200px;}
.ws75{word-spacing:762.283200px;}
.ws72{word-spacing:775.087200px;}
.ws73{word-spacing:785.623200px;}
.ws78{word-spacing:786.787200px;}
._1a{margin-left:-387.224400px;}
._8{margin-left:-18.787200px;}
._26{margin-left:-17.431200px;}
._5{margin-left:-15.900000px;}
._1c{margin-left:-14.779200px;}
._27{margin-left:-13.756800px;}
._24{margin-left:-9.340800px;}
._3{margin-left:-7.495200px;}
._10{margin-left:-6.160800px;}
._4{margin-left:-5.090400px;}
._2{margin-left:-3.943200px;}
._0{margin-left:-2.671200px;}
._1{margin-left:-1.324800px;}
._6{width:1.296000px;}
._9{width:3.160800px;}
._a{width:4.814400px;}
._7{width:6.206400px;}
._25{width:23.103000px;}
._23{width:41.839200px;}
._c{width:140.442000px;}
._d{width:185.794200px;}
._16{width:187.213800px;}
._1e{width:231.839400px;}
._1b{width:242.056200px;}
._15{width:247.200600px;}
._b{width:265.697400px;}
._13{width:302.203200px;}
._20{width:313.679400px;}
._11{width:327.420000px;}
._22{width:330.535200px;}
._1f{width:342.224400px;}
._18{width:357.224400px;}
._14{width:369.043200px;}
._17{width:372.224400px;}
._1d{width:387.224400px;}
._e{width:557.953200px;}
._12{width:572.953200px;}
._19{width:631.859400px;}
._f{width:703.336800px;}
._21{width:711.400200px;}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:79.319100px;}
.y135{bottom:125.053650px;}
.y1b{bottom:127.559100px;}
.yc7{bottom:129.045750px;}
.y19{bottom:129.685050px;}
.y13f{bottom:133.503750px;}
.y161{bottom:134.496000px;}
.y177{bottom:137.708550px;}
.ya7{bottom:142.999950px;}
.y134{bottom:143.053650px;}
.yd5{bottom:144.015600px;}
.y10f{bottom:145.321650px;}
.y7d{bottom:146.313750px;}
.y18{bottom:147.685050px;}
.yc6{bottom:150.045750px;}
.y118{bottom:151.912200px;}
.y13e{bottom:154.503750px;}
.y160{bottom:155.496000px;}
.y176{bottom:158.708550px;}
.y19d{bottom:160.267500px;}
.yb1{bottom:161.732100px;}
.ya6{bottom:163.999950px;}
.y6a{bottom:164.809500px;}
.yd4{bottom:165.015600px;}
.y10e{bottom:166.321650px;}
.y7c{bottom:167.313750px;}
.y13d{bottom:175.503750px;}
.y15f{bottom:176.496000px;}
.y175{bottom:179.708550px;}
.y19c{bottom:181.267500px;}
.yb0{bottom:182.732100px;}
.ya5{bottom:184.999950px;}
.y69{bottom:185.809500px;}
.yd3{bottom:186.015600px;}
.y10d{bottom:187.321650px;}
.y7b{bottom:188.313750px;}
.y13c{bottom:196.503750px;}
.yc5{bottom:196.557600px;}
.y15e{bottom:197.496000px;}
.y12e{bottom:200.285250px;}
.y174{bottom:200.708550px;}
.yaf{bottom:203.732100px;}
.y19b{bottom:206.519400px;}
.y68{bottom:206.809500px;}
.yd2{bottom:207.015600px;}
.y7a{bottom:209.313750px;}
.ya4{bottom:214.503750px;}
.y13b{bottom:217.503750px;}
.y15d{bottom:218.496000px;}
.y173{bottom:221.708550px;}
.yae{bottom:224.732100px;}
.y19a{bottom:227.519400px;}
.y12d{bottom:227.572650px;}
.y67{bottom:227.809500px;}
.yd1{bottom:228.015600px;}
.y10c{bottom:229.581450px;}
.y79{bottom:230.313750px;}
.ya3{bottom:235.503750px;}
.y15c{bottom:239.496000px;}
.yad{bottom:245.732100px;}
.y66{bottom:248.809500px;}
.yd0{bottom:249.015600px;}
.y172{bottom:251.212500px;}
.y78{bottom:251.313750px;}
.y199{bottom:252.771450px;}
.y12c{bottom:254.980950px;}
.y13a{bottom:255.511650px;}
.ya2{bottom:256.503750px;}
.y1b6{bottom:257.023350px;}
.y15b{bottom:260.496000px;}
.y65{bottom:269.809500px;}
.ycf{bottom:270.015600px;}
.y171{bottom:272.212500px;}
.y77{bottom:272.313750px;}
.y198{bottom:273.771450px;}
.ya1{bottom:277.503750px;}
.y1b5{bottom:278.023350px;}
.y15a{bottom:281.496000px;}
.y12b{bottom:282.389250px;}
.yac{bottom:287.991900px;}
.y10b{bottom:288.849150px;}
.y64{bottom:290.809500px;}
.yce{bottom:291.015600px;}
.y170{bottom:293.212500px;}
.y76{bottom:293.313750px;}
.y197{bottom:294.771450px;}
.ya0{bottom:298.503750px;}
.y1b4{bottom:299.023350px;}
.y139{bottom:302.023500px;}
.y12a{bottom:309.797550px;}
.y10a{bottom:309.849150px;}
.y159{bottom:310.999950px;}
.y63{bottom:311.809500px;}
.ycd{bottom:312.015600px;}
.y136{bottom:312.519750px;}
.y9f{bottom:319.503750px;}
.y196{bottom:320.023350px;}
.y16f{bottom:322.716450px;}
.y75{bottom:322.817700px;}
.y3e{bottom:323.053950px;}
.y1b3{bottom:324.275400px;}
.ye5{bottom:327.015600px;}
.y109{bottom:330.849150px;}
.y158{bottom:331.999950px;}
.ycc{bottom:333.015600px;}
.y129{bottom:337.205700px;}
.y9e{bottom:340.503750px;}
.y195{bottom:341.023350px;}
.y3d{bottom:341.053950px;}
.y62{bottom:341.313600px;}
.y16e{bottom:343.716450px;}
.y74{bottom:343.817700px;}
.y1b2{bottom:345.275400px;}
.ye4{bottom:348.015600px;}
.y108{bottom:351.849150px;}
.y157{bottom:352.999950px;}
.y3c{bottom:359.053950px;}
.y9d{bottom:361.503750px;}
.y194{bottom:362.023350px;}
.y61{bottom:362.313600px;}
.y128{bottom:364.614000px;}
.y16d{bottom:364.716450px;}
.y73{bottom:364.817700px;}
.y1b1{bottom:366.275400px;}
.ye3{bottom:369.015600px;}
.y107{bottom:372.849150px;}
.y156{bottom:373.999950px;}
.ycb{bottom:379.527450px;}
.y9c{bottom:382.503750px;}
.y60{bottom:383.313600px;}
.yab{bottom:385.527450px;}
.y3b{bottom:385.557900px;}
.y72{bottom:385.817700px;}
.y193{bottom:387.275400px;}
.ye2{bottom:390.015600px;}
.y1b0{bottom:391.527300px;}
.y127{bottom:392.022300px;}
.y106{bottom:393.849150px;}
.y155{bottom:394.999950px;}
.y9b{bottom:403.503750px;}
.y5f{bottom:404.313600px;}
.y71{bottom:406.817700px;}
.y16c{bottom:406.976250px;}
.y192{bottom:408.275400px;}
.ye1{bottom:411.015600px;}
.y1af{bottom:412.527300px;}
.y105{bottom:414.849150px;}
.y154{bottom:415.999950px;}
.y126{bottom:419.430600px;}
.y9a{bottom:424.503750px;}
.y5e{bottom:425.313600px;}
.y70{bottom:427.817700px;}
.ye0{bottom:432.015600px;}
.y191{bottom:433.527300px;}
.y104{bottom:435.849150px;}
.y153{bottom:436.999950px;}
.y3a{bottom:438.565800px;}
.y17{bottom:441.516300px;}
.y5d{bottom:446.313600px;}
.y125{bottom:446.838750px;}
.y6f{bottom:448.817700px;}
.ydf{bottom:453.015600px;}
.y190{bottom:454.527300px;}
.y103{bottom:456.849150px;}
.y152{bottom:457.999950px;}
.y1ae{bottom:458.779350px;}
.y16{bottom:462.516300px;}
.y39{bottom:465.069600px;}
.y99{bottom:466.763700px;}
.y5c{bottom:467.313600px;}
.y6e{bottom:469.817700px;}
.yde{bottom:474.015600px;}
.y124{bottom:474.247050px;}
.y18f{bottom:475.527300px;}
.y101{bottom:477.849150px;}
.y151{bottom:478.999950px;}
.y1ad{bottom:479.779350px;}
.y15{bottom:483.516300px;}
.y102{bottom:483.843150px;}
.yea{bottom:483.849150px;}
.y16b{bottom:487.503750px;}
.y5b{bottom:488.313600px;}
.y6d{bottom:490.817700px;}
.ydd{bottom:495.015600px;}
.y100{bottom:498.849150px;}
.y150{bottom:499.999950px;}
.y18e{bottom:500.779350px;}
.y123{bottom:501.655350px;}
.y14{bottom:504.516300px;}
.ye9{bottom:504.849150px;}
.y16a{bottom:508.503750px;}
.y5a{bottom:509.313600px;}
.ydc{bottom:516.015600px;}
.yff{bottom:519.849150px;}
.y14f{bottom:520.999950px;}
.y18d{bottom:521.779350px;}
.y13{bottom:525.516300px;}
.ye8{bottom:525.849150px;}
.y1ac{bottom:526.031250px;}
.y122{bottom:529.063650px;}
.y169{bottom:529.503750px;}
.y59{bottom:530.313600px;}
.y6c{bottom:533.077500px;}
.yc4{bottom:533.313600px;}
.ydb{bottom:537.015600px;}
.yfe{bottom:540.849150px;}
.y14e{bottom:541.999950px;}
.y18c{bottom:542.779350px;}
.y38{bottom:544.581450px;}
.y1ab{bottom:547.031250px;}
.y98{bottom:547.291200px;}
.y168{bottom:550.503750px;}
.y121{bottom:556.471950px;}
.yda{bottom:558.015600px;}
.y58{bottom:559.817400px;}
.yfd{bottom:561.849150px;}
.y18b{bottom:563.779350px;}
.y97{bottom:568.291200px;}
.y37{bottom:571.085400px;}
.y167{bottom:571.503750px;}
.y14d{bottom:571.503900px;}
.y1aa{bottom:572.283300px;}
.ye7{bottom:572.361000px;}
.yc3{bottom:576.825300px;}
.y12{bottom:576.880050px;}
.yd9{bottom:579.015600px;}
.y57{bottom:580.817400px;}
.y120{bottom:583.880100px;}
.y133{bottom:587.809500px;}
.y18a{bottom:589.031250px;}
.y36{bottom:589.085400px;}
.y96{bottom:589.291200px;}
.ye6{bottom:590.361000px;}
.y166{bottom:592.503750px;}
.y14c{bottom:592.503900px;}
.y1a9{bottom:593.283300px;}
.yc2{bottom:597.825300px;}
.y11{bottom:597.880050px;}
.yd8{bottom:600.015600px;}
.y56{bottom:601.817400px;}
.y35{bottom:607.085400px;}
.yfc{bottom:608.361000px;}
.y189{bottom:610.031250px;}
.y95{bottom:610.291200px;}
.y11f{bottom:611.288400px;}
.y165{bottom:613.503750px;}
.y14b{bottom:613.503900px;}
.y1a8{bottom:614.283300px;}
.yc1{bottom:618.825300px;}
.y10{bottom:618.880050px;}
.y55{bottom:622.817400px;}
.y34{bottom:625.085400px;}
.y6b{bottom:626.361000px;}
.yfb{bottom:629.041050px;}
.y188{bottom:631.031250px;}
.y94{bottom:631.291200px;}
.y132{bottom:631.321350px;}
.y164{bottom:634.503750px;}
.y14a{bottom:634.503900px;}
.y1a7{bottom:635.283300px;}
.y11e{bottom:638.696700px;}
.yc0{bottom:639.825300px;}
.yf{bottom:639.880050px;}
.y33{bottom:643.085400px;}
.y54{bottom:643.817400px;}
.yd7{bottom:646.527450px;}
.y187{bottom:652.031250px;}
.y93{bottom:652.291200px;}
.y131{bottom:652.321350px;}
.y163{bottom:655.503750px;}
.y149{bottom:655.503900px;}
.y1a6{bottom:656.283300px;}
.yfa{bottom:656.449200px;}
.ybf{bottom:660.825300px;}
.ye{bottom:660.880050px;}
.y32{bottom:661.085400px;}
.y53{bottom:664.817400px;}
.y11d{bottom:666.359100px;}
.y92{bottom:673.291200px;}
.y130{bottom:673.321350px;}
.y11b{bottom:675.359100px;}
.y148{bottom:676.503900px;}
.y186{bottom:677.283300px;}
.y31{bottom:679.085400px;}
.ybe{bottom:681.825300px;}
.yf9{bottom:683.857500px;}
.y119{bottom:684.359100px;}
.y52{bottom:685.817400px;}
.y138{bottom:692.779350px;}
.y11a{bottom:693.359100px;}
.y91{bottom:694.291200px;}
.y12f{bottom:694.321350px;}
.y30{bottom:697.085400px;}
.y147{bottom:697.503900px;}
.y162{bottom:697.763700px;}
.y185{bottom:698.283300px;}
.y11c{bottom:702.359100px;}
.y1a5{bottom:702.535200px;}
.ybd{bottom:702.825300px;}
.yf8{bottom:711.265800px;}
.yd{bottom:712.243950px;}
.y2f{bottom:715.085400px;}
.y90{bottom:715.291200px;}
.y51{bottom:715.321350px;}
.y146{bottom:718.503900px;}
.y184{bottom:719.283300px;}
.y1a4{bottom:723.535200px;}
.ybc{bottom:723.825300px;}
.y2e{bottom:733.085400px;}
.yc{bottom:733.243950px;}
.y8f{bottom:736.291200px;}
.y50{bottom:736.321350px;}
.yf7{bottom:738.673950px;}
.y145{bottom:739.503900px;}
.y183{bottom:740.283300px;}
.y117{bottom:740.668200px;}
.y1a3{bottom:744.535200px;}
.ybb{bottom:744.825300px;}
.y2d{bottom:751.085400px;}
.yb{bottom:754.243800px;}
.y8e{bottom:757.291200px;}
.y4f{bottom:757.321350px;}
.y144{bottom:760.503900px;}
.y182{bottom:765.535200px;}
.yba{bottom:765.825300px;}
.yf6{bottom:766.082400px;}
.ya{bottom:775.243800px;}
.y2c{bottom:777.589350px;}
.y8d{bottom:778.291200px;}
.y4e{bottom:778.321350px;}
.y143{bottom:781.503900px;}
.y181{bottom:786.535200px;}
.yb9{bottom:786.825300px;}
.yf5{bottom:793.490550px;}
.y2b{bottom:795.589350px;}
.y9{bottom:796.243800px;}
.y8c{bottom:799.291200px;}
.y4d{bottom:799.321350px;}
.y142{bottom:802.503900px;}
.yca{bottom:806.283300px;}
.y180{bottom:807.535200px;}
.yb8{bottom:807.825300px;}
.y8b{bottom:820.291200px;}
.y4c{bottom:820.321350px;}
.yf4{bottom:820.898850px;}
.y141{bottom:823.503900px;}
.y17f{bottom:828.535200px;}
.y137{bottom:828.795150px;}
.yb7{bottom:828.825300px;}
.y116{bottom:829.317600px;}
.y1a2{bottom:832.787250px;}
.y8a{bottom:841.291200px;}
.y4b{bottom:841.321350px;}
.yaa{bottom:848.283300px;}
.yf3{bottom:848.307150px;}
.yc9{bottom:849.795150px;}
.yb6{bottom:849.825300px;}
.y17e{bottom:853.787250px;}
.y2a{bottom:856.109100px;}
.y8{bottom:856.111650px;}
.y89{bottom:862.291200px;}
.y4a{bottom:862.321350px;}
.y140{bottom:865.763700px;}
.yc8{bottom:870.795150px;}
.yb5{bottom:870.825300px;}
.y17d{bottom:874.787250px;}
.yf2{bottom:875.715300px;}
.y29{bottom:882.612900px;}
.y88{bottom:883.291200px;}
.y49{bottom:883.321350px;}
.ya9{bottom:891.795150px;}
.yb4{bottom:891.825300px;}
.y7{bottom:892.111650px;}
.y17c{bottom:895.787250px;}
.y1a1{bottom:900.039150px;}
.y28{bottom:900.612900px;}
.yf1{bottom:903.123600px;}
.y87{bottom:904.291200px;}
.y48{bottom:904.321350px;}
.ya8{bottom:912.795150px;}
.yb3{bottom:912.825300px;}
.y27{bottom:918.612900px;}
.y17b{bottom:921.039150px;}
.y115{bottom:925.291200px;}
.y47{bottom:925.321350px;}
.y6{bottom:928.111650px;}
.yf0{bottom:930.531900px;}
.y86{bottom:933.795150px;}
.yb2{bottom:933.825300px;}
.y26{bottom:936.612900px;}
.y17a{bottom:942.039150px;}
.y114{bottom:946.291200px;}
.y25{bottom:954.612900px;}
.y85{bottom:954.795150px;}
.y46{bottom:954.825300px;}
.yef{bottom:957.940200px;}
.y1a0{bottom:963.039150px;}
.y113{bottom:967.291200px;}
.y24{bottom:972.612900px;}
.y84{bottom:975.795150px;}
.y45{bottom:975.825300px;}
.y19f{bottom:984.039150px;}
.yee{bottom:985.348350px;}
.y112{bottom:988.291200px;}
.y23{bottom:990.612900px;}
.y83{bottom:996.795150px;}
.y44{bottom:996.825300px;}
.y5{bottom:1002.379350px;}
.y22{bottom:1008.612900px;}
.y111{bottom:1009.291200px;}
.yed{bottom:1012.756650px;}
.y82{bottom:1017.795150px;}
.y43{bottom:1017.825300px;}
.y21{bottom:1026.612900px;}
.y110{bottom:1030.291200px;}
.y4{bottom:1032.483300px;}
.y179{bottom:1034.543100px;}
.yd6{bottom:1037.283300px;}
.y81{bottom:1038.795150px;}
.y42{bottom:1038.825300px;}
.yec{bottom:1040.164950px;}
.y20{bottom:1044.612900px;}
.y178{bottom:1055.543100px;}
.y80{bottom:1059.795150px;}
.y41{bottom:1059.825300px;}
.y3{bottom:1062.587250px;}
.y1f{bottom:1062.612900px;}
.yeb{bottom:1067.827350px;}
.y19e{bottom:1076.543100px;}
.y1e{bottom:1080.612900px;}
.y7f{bottom:1080.795150px;}
.y40{bottom:1080.825300px;}
.y2{bottom:1092.691200px;}
.y7e{bottom:1101.795150px;}
.y1d{bottom:1107.116850px;}
.y1{bottom:1122.795150px;}
.y3f{bottom:1123.085100px;}
.y1c{bottom:1125.116850px;}
.hd{height:36.831480px;}
.hb{height:38.390625px;}
.h12{height:41.074219px;}
.hc{height:41.689453px;}
.h10{height:42.117188px;}
.ha{height:49.289062px;}
.h9{height:50.027344px;}
.h5{height:52.646484px;}
.h8{height:52.792969px;}
.h7{height:53.291016px;}
.h6{height:57.911133px;}
.h2{height:63.175781px;}
.h13{height:63.351562px;}
.h4{height:63.949219px;}
.h11{height:89.291016px;}
.h3{height:106.582031px;}
.he{height:892.914000px;}
.hf{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x1b{left:-72.029550px;}
.x1c{left:-58.579350px;}
.x0{left:0.000000px;}
.x18{left:127.559100px;}
.x27{left:130.837800px;}
.x2d{left:134.466900px;}
.x2b{left:136.063050px;}
.x6{left:140.077350px;}
.x42{left:148.818900px;}
.x20{left:154.022550px;}
.x25{left:170.183550px;}
.x26{left:172.380750px;}
.x22{left:174.255750px;}
.x1e{left:177.932550px;}
.x2f{left:179.177550px;}
.x38{left:180.739050px;}
.x2a{left:181.802100px;}
.x30{left:184.193850px;}
.x29{left:185.278650px;}
.x7{left:197.997150px;}
.x2c{left:224.551200px;}
.x3f{left:239.009100px;}
.x13{left:241.111200px;}
.x21{left:244.568250px;}
.x1f{left:246.721500px;}
.x5{left:251.352750px;}
.x16{left:255.565500px;}
.x37{left:257.609550px;}
.x19{left:269.408400px;}
.x12{left:273.172950px;}
.x41{left:288.956700px;}
.x1a{left:293.951850px;}
.x17{left:295.977000px;}
.xe{left:298.760850px;}
.xa{left:300.747150px;}
.x1d{left:309.801450px;}
.x1{left:311.742300px;}
.x8{left:322.303800px;}
.x39{left:323.400900px;}
.xf{left:330.713550px;}
.xb{left:332.713050px;}
.x4{left:343.976250px;}
.x31{left:349.223550px;}
.x3{left:353.973750px;}
.xd{left:356.131500px;}
.x2e{left:362.114700px;}
.x10{left:363.694500px;}
.x9{left:369.811650px;}
.x2{left:376.210050px;}
.x11{left:382.428300px;}
.xc{left:397.426950px;}
.x28{left:401.255250px;}
.x40{left:414.585300px;}
.x32{left:487.518750px;}
.x33{left:492.535200px;}
.x23{left:620.218500px;}
.x36{left:625.417350px;}
.x24{left:641.195400px;}
.x34{left:754.460850px;}
.x35{left:759.477150px;}
.x14{left:820.883850px;}
.x15{left:834.334050px;}
.x3a{left:947.421150px;}
.x3c{left:949.237650px;}
.x3b{left:951.101550px;}
.x3d{left:1066.727250px;}
.x3e{left:1204.255350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v2{vertical-align:32.000000pt;}
.ls19{letter-spacing:-2.933333pt;}
.ls14{letter-spacing:-1.973333pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.054459pt;}
.ls15{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.153937pt;}
.lsd{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.384000pt;}
.ls17{letter-spacing:344.199467pt;}
.ws89{word-spacing:-357.532800pt;}
.wsaa{word-spacing:-16.128000pt;}
.wsa9{word-spacing:-16.000000pt;}
.wsb0{word-spacing:-15.936000pt;}
.wsaf{word-spacing:-15.872000pt;}
.wsb6{word-spacing:-15.808000pt;}
.wsa8{word-spacing:-15.744000pt;}
.ws7f{word-spacing:-15.232000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.120000pt;}
.ws6f{word-spacing:-11.360000pt;}
.ws7e{word-spacing:-9.328000pt;}
.wsb7{word-spacing:-3.712000pt;}
.ws50{word-spacing:-3.264000pt;}
.ws1a{word-spacing:-3.200000pt;}
.wsb3{word-spacing:-3.136000pt;}
.wsb1{word-spacing:-3.072000pt;}
.ws52{word-spacing:-3.008000pt;}
.ws23{word-spacing:-2.944000pt;}
.ws83{word-spacing:-2.880000pt;}
.ws55{word-spacing:-2.816000pt;}
.wsa5{word-spacing:-2.752000pt;}
.ws28{word-spacing:-2.688000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws47{word-spacing:-2.496000pt;}
.ws9e{word-spacing:-2.432000pt;}
.ws2e{word-spacing:-2.368000pt;}
.ws16{word-spacing:-2.304000pt;}
.ws38{word-spacing:-2.176000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws48{word-spacing:-2.112000pt;}
.ws15{word-spacing:-2.048000pt;}
.ws67{word-spacing:-1.984000pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws41{word-spacing:-1.856000pt;}
.ws2a{word-spacing:-1.792000pt;}
.ws1c{word-spacing:-1.728000pt;}
.ws57{word-spacing:-1.664000pt;}
.ws24{word-spacing:-1.600000pt;}
.ws33{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.493333pt;}
.wsa0{word-spacing:-1.472000pt;}
.ws66{word-spacing:-1.408000pt;}
.wsa{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.216000pt;}
.ws35{word-spacing:-1.152000pt;}
.ws3f{word-spacing:-1.088000pt;}
.ws64{word-spacing:-1.024000pt;}
.ws82{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.896000pt;}
.ws61{word-spacing:-0.832000pt;}
.ws56{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.693333pt;}
.wsb5{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.512000pt;}
.ws9d{word-spacing:-0.448000pt;}
.ws44{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws1e{word-spacing:-0.320000pt;}
.ws5e{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.160000pt;}
.ws3c{word-spacing:-0.128000pt;}
.wsb9{word-spacing:-0.064000pt;}
.ws34{word-spacing:-0.051200pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.064000pt;}
.ws49{word-spacing:0.128000pt;}
.ws62{word-spacing:0.192000pt;}
.ws51{word-spacing:0.256000pt;}
.ws22{word-spacing:0.320000pt;}
.ws40{word-spacing:0.384000pt;}
.wsa2{word-spacing:0.448000pt;}
.wsa1{word-spacing:0.512000pt;}
.ws29{word-spacing:0.576000pt;}
.ws27{word-spacing:0.640000pt;}
.ws46{word-spacing:0.704000pt;}
.ws17{word-spacing:0.768000pt;}
.ws7{word-spacing:0.800000pt;}
.wsb2{word-spacing:0.832000pt;}
.ws9a{word-spacing:0.853333pt;}
.ws4d{word-spacing:0.896000pt;}
.ws5{word-spacing:0.906667pt;}
.ws60{word-spacing:0.960000pt;}
.wsab{word-spacing:1.088000pt;}
.ws5d{word-spacing:1.152000pt;}
.ws65{word-spacing:1.216000pt;}
.wsf{word-spacing:1.226667pt;}
.ws4c{word-spacing:1.280000pt;}
.ws42{word-spacing:1.344000pt;}
.ws4{word-spacing:1.386667pt;}
.ws81{word-spacing:1.408000pt;}
.wsa6{word-spacing:1.472000pt;}
.wsb{word-spacing:1.493333pt;}
.ws4a{word-spacing:1.536000pt;}
.ws12{word-spacing:1.600000pt;}
.ws31{word-spacing:1.664000pt;}
.ws26{word-spacing:1.728000pt;}
.ws39{word-spacing:1.792000pt;}
.ws58{word-spacing:1.920000pt;}
.ws6{word-spacing:2.026667pt;}
.ws53{word-spacing:2.048000pt;}
.ws2c{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.176000pt;}
.wsa3{word-spacing:2.240000pt;}
.wsac{word-spacing:2.304000pt;}
.ws4b{word-spacing:2.560000pt;}
.ws80{word-spacing:2.624000pt;}
.wsba{word-spacing:2.688000pt;}
.ws3b{word-spacing:2.880000pt;}
.ws54{word-spacing:2.944000pt;}
.ws36{word-spacing:3.008000pt;}
.ws4e{word-spacing:3.136000pt;}
.ws2b{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.328000pt;}
.wsa7{word-spacing:3.392000pt;}
.ws18{word-spacing:3.456000pt;}
.wse{word-spacing:3.573333pt;}
.ws21{word-spacing:3.584000pt;}
.ws43{word-spacing:3.648000pt;}
.ws9f{word-spacing:3.712000pt;}
.wsa4{word-spacing:3.776000pt;}
.ws5f{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.904000pt;}
.ws59{word-spacing:3.968000pt;}
.wsad{word-spacing:4.160000pt;}
.ws5a{word-spacing:4.224000pt;}
.ws30{word-spacing:4.288000pt;}
.wsb8{word-spacing:4.352000pt;}
.ws8{word-spacing:4.373333pt;}
.ws14{word-spacing:4.426667pt;}
.ws3e{word-spacing:4.480000pt;}
.ws5b{word-spacing:4.544000pt;}
.wsae{word-spacing:4.672000pt;}
.wsb4{word-spacing:4.736000pt;}
.ws32{word-spacing:4.800000pt;}
.ws9b{word-spacing:4.992000pt;}
.ws45{word-spacing:5.056000pt;}
.ws3a{word-spacing:5.184000pt;}
.ws19{word-spacing:5.248000pt;}
.ws20{word-spacing:5.312000pt;}
.ws86{word-spacing:104.860800pt;}
.ws85{word-spacing:130.840533pt;}
.ws84{word-spacing:190.154667pt;}
.ws99{word-spacing:286.323200pt;}
.ws98{word-spacing:304.199467pt;}
.ws96{word-spacing:305.188800pt;}
.ws8e{word-spacing:317.532800pt;}
.ws97{word-spacing:322.463467pt;}
.ws88{word-spacing:330.866133pt;}
.ws74{word-spacing:455.957867pt;}
.ws7c{word-spacing:456.947733pt;}
.ws7d{word-spacing:460.888533pt;}
.ws69{word-spacing:469.291200pt;}
.ws6e{word-spacing:470.281067pt;}
.ws90{word-spacing:470.831467pt;}
.ws6a{word-spacing:474.221333pt;}
.ws71{word-spacing:482.624533pt;}
.ws6b{word-spacing:482.625067pt;}
.ws6d{word-spacing:495.957867pt;}
.ws95{word-spacing:520.266133pt;}
.ws76{word-spacing:533.377067pt;}
.ws7b{word-spacing:556.145067pt;}
.ws94{word-spacing:558.772800pt;}
.ws8a{word-spacing:573.546133pt;}
.ws87{word-spacing:579.412800pt;}
.ws8b{word-spacing:588.426133pt;}
.ws93{word-spacing:591.359467pt;}
.ws91{word-spacing:600.212800pt;}
.ws8c{word-spacing:613.087467pt;}
.ws8f{word-spacing:615.039467pt;}
.ws7a{word-spacing:621.318400pt;}
.ws8d{word-spacing:622.452800pt;}
.ws92{word-spacing:636.820800pt;}
.ws68{word-spacing:641.958400pt;}
.ws6c{word-spacing:649.425067pt;}
.ws79{word-spacing:653.905067pt;}
.ws77{word-spacing:662.758400pt;}
.ws70{word-spacing:664.305067pt;}
.ws75{word-spacing:677.585067pt;}
.ws72{word-spacing:688.966400pt;}
.ws73{word-spacing:698.331733pt;}
.ws78{word-spacing:699.366400pt;}
._1a{margin-left:-344.199467pt;}
._8{margin-left:-16.699733pt;}
._26{margin-left:-15.494400pt;}
._5{margin-left:-14.133333pt;}
._1c{margin-left:-13.137067pt;}
._27{margin-left:-12.228267pt;}
._24{margin-left:-8.302933pt;}
._3{margin-left:-6.662400pt;}
._10{margin-left:-5.476267pt;}
._4{margin-left:-4.524800pt;}
._2{margin-left:-3.505067pt;}
._0{margin-left:-2.374400pt;}
._1{margin-left:-1.177600pt;}
._6{width:1.152000pt;}
._9{width:2.809600pt;}
._a{width:4.279467pt;}
._7{width:5.516800pt;}
._25{width:20.536000pt;}
._23{width:37.190400pt;}
._c{width:124.837333pt;}
._d{width:165.150400pt;}
._16{width:166.412267pt;}
._1e{width:206.079467pt;}
._1b{width:215.161067pt;}
._15{width:219.733867pt;}
._b{width:236.175467pt;}
._13{width:268.625067pt;}
._20{width:278.826133pt;}
._11{width:291.040000pt;}
._22{width:293.809067pt;}
._1f{width:304.199467pt;}
._18{width:317.532800pt;}
._14{width:328.038400pt;}
._17{width:330.866133pt;}
._1d{width:344.199467pt;}
._e{width:495.958400pt;}
._12{width:509.291733pt;}
._19{width:561.652800pt;}
._f{width:625.188267pt;}
._21{width:632.355733pt;}
.fs5{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:70.505867pt;}
.y135{bottom:111.158800pt;}
.y1b{bottom:113.385867pt;}
.yc7{bottom:114.707333pt;}
.y19{bottom:115.275600pt;}
.y13f{bottom:118.670000pt;}
.y161{bottom:119.552000pt;}
.y177{bottom:122.407600pt;}
.ya7{bottom:127.111067pt;}
.y134{bottom:127.158800pt;}
.yd5{bottom:128.013867pt;}
.y10f{bottom:129.174800pt;}
.y7d{bottom:130.056667pt;}
.y18{bottom:131.275600pt;}
.yc6{bottom:133.374000pt;}
.y118{bottom:135.033067pt;}
.y13e{bottom:137.336667pt;}
.y160{bottom:138.218667pt;}
.y176{bottom:141.074267pt;}
.y19d{bottom:142.460000pt;}
.yb1{bottom:143.761867pt;}
.ya6{bottom:145.777733pt;}
.y6a{bottom:146.497333pt;}
.yd4{bottom:146.680533pt;}
.y10e{bottom:147.841467pt;}
.y7c{bottom:148.723333pt;}
.y13d{bottom:156.003333pt;}
.y15f{bottom:156.885333pt;}
.y175{bottom:159.740933pt;}
.y19c{bottom:161.126667pt;}
.yb0{bottom:162.428533pt;}
.ya5{bottom:164.444400pt;}
.y69{bottom:165.164000pt;}
.yd3{bottom:165.347200pt;}
.y10d{bottom:166.508133pt;}
.y7b{bottom:167.390000pt;}
.y13c{bottom:174.670000pt;}
.yc5{bottom:174.717867pt;}
.y15e{bottom:175.552000pt;}
.y12e{bottom:178.031333pt;}
.y174{bottom:178.407600pt;}
.yaf{bottom:181.095200pt;}
.y19b{bottom:183.572800pt;}
.y68{bottom:183.830667pt;}
.yd2{bottom:184.013867pt;}
.y7a{bottom:186.056667pt;}
.ya4{bottom:190.670000pt;}
.y13b{bottom:193.336667pt;}
.y15d{bottom:194.218667pt;}
.y173{bottom:197.074267pt;}
.yae{bottom:199.761867pt;}
.y19a{bottom:202.239467pt;}
.y12d{bottom:202.286800pt;}
.y67{bottom:202.497333pt;}
.yd1{bottom:202.680533pt;}
.y10c{bottom:204.072400pt;}
.y79{bottom:204.723333pt;}
.ya3{bottom:209.336667pt;}
.y15c{bottom:212.885333pt;}
.yad{bottom:218.428533pt;}
.y66{bottom:221.164000pt;}
.yd0{bottom:221.347200pt;}
.y172{bottom:223.300000pt;}
.y78{bottom:223.390000pt;}
.y199{bottom:224.685733pt;}
.y12c{bottom:226.649733pt;}
.y13a{bottom:227.121467pt;}
.ya2{bottom:228.003333pt;}
.y1b6{bottom:228.465200pt;}
.y15b{bottom:231.552000pt;}
.y65{bottom:239.830667pt;}
.ycf{bottom:240.013867pt;}
.y171{bottom:241.966667pt;}
.y77{bottom:242.056667pt;}
.y198{bottom:243.352400pt;}
.ya1{bottom:246.670000pt;}
.y1b5{bottom:247.131867pt;}
.y15a{bottom:250.218667pt;}
.y12b{bottom:251.012667pt;}
.yac{bottom:255.992800pt;}
.y10b{bottom:256.754800pt;}
.y64{bottom:258.497333pt;}
.yce{bottom:258.680533pt;}
.y170{bottom:260.633333pt;}
.y76{bottom:260.723333pt;}
.y197{bottom:262.019067pt;}
.ya0{bottom:265.336667pt;}
.y1b4{bottom:265.798533pt;}
.y139{bottom:268.465333pt;}
.y12a{bottom:275.375600pt;}
.y10a{bottom:275.421467pt;}
.y159{bottom:276.444400pt;}
.y63{bottom:277.164000pt;}
.ycd{bottom:277.347200pt;}
.y136{bottom:277.795333pt;}
.y9f{bottom:284.003333pt;}
.y196{bottom:284.465200pt;}
.y16f{bottom:286.859067pt;}
.y75{bottom:286.949067pt;}
.y3e{bottom:287.159067pt;}
.y1b3{bottom:288.244800pt;}
.ye5{bottom:290.680533pt;}
.y109{bottom:294.088133pt;}
.y158{bottom:295.111067pt;}
.ycc{bottom:296.013867pt;}
.y129{bottom:299.738400pt;}
.y9e{bottom:302.670000pt;}
.y195{bottom:303.131867pt;}
.y3d{bottom:303.159067pt;}
.y62{bottom:303.389867pt;}
.y16e{bottom:305.525733pt;}
.y74{bottom:305.615733pt;}
.y1b2{bottom:306.911467pt;}
.ye4{bottom:309.347200pt;}
.y108{bottom:312.754800pt;}
.y157{bottom:313.777733pt;}
.y3c{bottom:319.159067pt;}
.y9d{bottom:321.336667pt;}
.y194{bottom:321.798533pt;}
.y61{bottom:322.056533pt;}
.y128{bottom:324.101333pt;}
.y16d{bottom:324.192400pt;}
.y73{bottom:324.282400pt;}
.y1b1{bottom:325.578133pt;}
.ye3{bottom:328.013867pt;}
.y107{bottom:331.421467pt;}
.y156{bottom:332.444400pt;}
.ycb{bottom:337.357733pt;}
.y9c{bottom:340.003333pt;}
.y60{bottom:340.723200pt;}
.yab{bottom:342.691067pt;}
.y3b{bottom:342.718133pt;}
.y72{bottom:342.949067pt;}
.y193{bottom:344.244800pt;}
.ye2{bottom:346.680533pt;}
.y1b0{bottom:348.024267pt;}
.y127{bottom:348.464267pt;}
.y106{bottom:350.088133pt;}
.y155{bottom:351.111067pt;}
.y9b{bottom:358.670000pt;}
.y5f{bottom:359.389867pt;}
.y71{bottom:361.615733pt;}
.y16c{bottom:361.756667pt;}
.y192{bottom:362.911467pt;}
.ye1{bottom:365.347200pt;}
.y1af{bottom:366.690933pt;}
.y105{bottom:368.754800pt;}
.y154{bottom:369.777733pt;}
.y126{bottom:372.827200pt;}
.y9a{bottom:377.336667pt;}
.y5e{bottom:378.056533pt;}
.y70{bottom:380.282400pt;}
.ye0{bottom:384.013867pt;}
.y191{bottom:385.357600pt;}
.y104{bottom:387.421467pt;}
.y153{bottom:388.444400pt;}
.y3a{bottom:389.836267pt;}
.y17{bottom:392.458933pt;}
.y5d{bottom:396.723200pt;}
.y125{bottom:397.190000pt;}
.y6f{bottom:398.949067pt;}
.ydf{bottom:402.680533pt;}
.y190{bottom:404.024267pt;}
.y103{bottom:406.088133pt;}
.y152{bottom:407.111067pt;}
.y1ae{bottom:407.803867pt;}
.y16{bottom:411.125600pt;}
.y39{bottom:413.395200pt;}
.y99{bottom:414.901067pt;}
.y5c{bottom:415.389867pt;}
.y6e{bottom:417.615733pt;}
.yde{bottom:421.347200pt;}
.y124{bottom:421.552933pt;}
.y18f{bottom:422.690933pt;}
.y101{bottom:424.754800pt;}
.y151{bottom:425.777733pt;}
.y1ad{bottom:426.470533pt;}
.y15{bottom:429.792267pt;}
.y102{bottom:430.082800pt;}
.yea{bottom:430.088133pt;}
.y16b{bottom:433.336667pt;}
.y5b{bottom:434.056533pt;}
.y6d{bottom:436.282400pt;}
.ydd{bottom:440.013867pt;}
.y100{bottom:443.421467pt;}
.y150{bottom:444.444400pt;}
.y18e{bottom:445.137200pt;}
.y123{bottom:445.915867pt;}
.y14{bottom:448.458933pt;}
.ye9{bottom:448.754800pt;}
.y16a{bottom:452.003333pt;}
.y5a{bottom:452.723200pt;}
.ydc{bottom:458.680533pt;}
.yff{bottom:462.088133pt;}
.y14f{bottom:463.111067pt;}
.y18d{bottom:463.803867pt;}
.y13{bottom:467.125600pt;}
.ye8{bottom:467.421467pt;}
.y1ac{bottom:467.583333pt;}
.y122{bottom:470.278800pt;}
.y169{bottom:470.670000pt;}
.y59{bottom:471.389867pt;}
.y6c{bottom:473.846667pt;}
.yc4{bottom:474.056533pt;}
.ydb{bottom:477.347200pt;}
.yfe{bottom:480.754800pt;}
.y14e{bottom:481.777733pt;}
.y18c{bottom:482.470533pt;}
.y38{bottom:484.072400pt;}
.y1ab{bottom:486.250000pt;}
.y98{bottom:486.481067pt;}
.y168{bottom:489.336667pt;}
.y121{bottom:494.641733pt;}
.yda{bottom:496.013867pt;}
.y58{bottom:497.615467pt;}
.yfd{bottom:499.421467pt;}
.y18b{bottom:501.137200pt;}
.y97{bottom:505.147733pt;}
.y37{bottom:507.631467pt;}
.y167{bottom:508.003333pt;}
.y14d{bottom:508.003467pt;}
.y1aa{bottom:508.696267pt;}
.ye7{bottom:508.765333pt;}
.yc3{bottom:512.733600pt;}
.y12{bottom:512.782267pt;}
.yd9{bottom:514.680533pt;}
.y57{bottom:516.282133pt;}
.y120{bottom:519.004533pt;}
.y133{bottom:522.497333pt;}
.y18a{bottom:523.583333pt;}
.y36{bottom:523.631467pt;}
.y96{bottom:523.814400pt;}
.ye6{bottom:524.765333pt;}
.y166{bottom:526.670000pt;}
.y14c{bottom:526.670133pt;}
.y1a9{bottom:527.362933pt;}
.yc2{bottom:531.400267pt;}
.y11{bottom:531.448933pt;}
.yd8{bottom:533.347200pt;}
.y56{bottom:534.948800pt;}
.y35{bottom:539.631467pt;}
.yfc{bottom:540.765333pt;}
.y189{bottom:542.250000pt;}
.y95{bottom:542.481067pt;}
.y11f{bottom:543.367467pt;}
.y165{bottom:545.336667pt;}
.y14b{bottom:545.336800pt;}
.y1a8{bottom:546.029600pt;}
.yc1{bottom:550.066933pt;}
.y10{bottom:550.115600pt;}
.y55{bottom:553.615467pt;}
.y34{bottom:555.631467pt;}
.y6b{bottom:556.765333pt;}
.yfb{bottom:559.147600pt;}
.y188{bottom:560.916667pt;}
.y94{bottom:561.147733pt;}
.y132{bottom:561.174533pt;}
.y164{bottom:564.003333pt;}
.y14a{bottom:564.003467pt;}
.y1a7{bottom:564.696267pt;}
.y11e{bottom:567.730400pt;}
.yc0{bottom:568.733600pt;}
.yf{bottom:568.782267pt;}
.y33{bottom:571.631467pt;}
.y54{bottom:572.282133pt;}
.yd7{bottom:574.691067pt;}
.y187{bottom:579.583333pt;}
.y93{bottom:579.814400pt;}
.y131{bottom:579.841200pt;}
.y163{bottom:582.670000pt;}
.y149{bottom:582.670133pt;}
.y1a6{bottom:583.362933pt;}
.yfa{bottom:583.510400pt;}
.ybf{bottom:587.400267pt;}
.ye{bottom:587.448933pt;}
.y32{bottom:587.631467pt;}
.y53{bottom:590.948800pt;}
.y11d{bottom:592.319200pt;}
.y92{bottom:598.481067pt;}
.y130{bottom:598.507867pt;}
.y11b{bottom:600.319200pt;}
.y148{bottom:601.336800pt;}
.y186{bottom:602.029600pt;}
.y31{bottom:603.631467pt;}
.ybe{bottom:606.066933pt;}
.yf9{bottom:607.873333pt;}
.y119{bottom:608.319200pt;}
.y52{bottom:609.615467pt;}
.y138{bottom:615.803867pt;}
.y11a{bottom:616.319200pt;}
.y91{bottom:617.147733pt;}
.y12f{bottom:617.174533pt;}
.y30{bottom:619.631467pt;}
.y147{bottom:620.003467pt;}
.y162{bottom:620.234400pt;}
.y185{bottom:620.696267pt;}
.y11c{bottom:624.319200pt;}
.y1a5{bottom:624.475733pt;}
.ybd{bottom:624.733600pt;}
.yf8{bottom:632.236267pt;}
.yd{bottom:633.105733pt;}
.y2f{bottom:635.631467pt;}
.y90{bottom:635.814400pt;}
.y51{bottom:635.841200pt;}
.y146{bottom:638.670133pt;}
.y184{bottom:639.362933pt;}
.y1a4{bottom:643.142400pt;}
.ybc{bottom:643.400267pt;}
.y2e{bottom:651.631467pt;}
.yc{bottom:651.772400pt;}
.y8f{bottom:654.481067pt;}
.y50{bottom:654.507867pt;}
.yf7{bottom:656.599067pt;}
.y145{bottom:657.336800pt;}
.y183{bottom:658.029600pt;}
.y117{bottom:658.371733pt;}
.y1a3{bottom:661.809067pt;}
.ybb{bottom:662.066933pt;}
.y2d{bottom:667.631467pt;}
.yb{bottom:670.438933pt;}
.y8e{bottom:673.147733pt;}
.y4f{bottom:673.174533pt;}
.y144{bottom:676.003467pt;}
.y182{bottom:680.475733pt;}
.yba{bottom:680.733600pt;}
.yf6{bottom:680.962133pt;}
.ya{bottom:689.105600pt;}
.y2c{bottom:691.190533pt;}
.y8d{bottom:691.814400pt;}
.y4e{bottom:691.841200pt;}
.y143{bottom:694.670133pt;}
.y181{bottom:699.142400pt;}
.yb9{bottom:699.400267pt;}
.yf5{bottom:705.324933pt;}
.y2b{bottom:707.190533pt;}
.y9{bottom:707.772267pt;}
.y8c{bottom:710.481067pt;}
.y4d{bottom:710.507867pt;}
.y142{bottom:713.336800pt;}
.yca{bottom:716.696267pt;}
.y180{bottom:717.809067pt;}
.yb8{bottom:718.066933pt;}
.y8b{bottom:729.147733pt;}
.y4c{bottom:729.174533pt;}
.yf4{bottom:729.687867pt;}
.y141{bottom:732.003467pt;}
.y17f{bottom:736.475733pt;}
.y137{bottom:736.706800pt;}
.yb7{bottom:736.733600pt;}
.y116{bottom:737.171200pt;}
.y1a2{bottom:740.255333pt;}
.y8a{bottom:747.814400pt;}
.y4b{bottom:747.841200pt;}
.yaa{bottom:754.029600pt;}
.yf3{bottom:754.050800pt;}
.yc9{bottom:755.373467pt;}
.yb6{bottom:755.400267pt;}
.y17e{bottom:758.922000pt;}
.y2a{bottom:760.985867pt;}
.y8{bottom:760.988133pt;}
.y89{bottom:766.481067pt;}
.y4a{bottom:766.507867pt;}
.y140{bottom:769.567733pt;}
.yc8{bottom:774.040133pt;}
.yb5{bottom:774.066933pt;}
.y17d{bottom:777.588667pt;}
.yf2{bottom:778.413600pt;}
.y29{bottom:784.544800pt;}
.y88{bottom:785.147733pt;}
.y49{bottom:785.174533pt;}
.ya9{bottom:792.706800pt;}
.yb4{bottom:792.733600pt;}
.y7{bottom:792.988133pt;}
.y17c{bottom:796.255333pt;}
.y1a1{bottom:800.034800pt;}
.y28{bottom:800.544800pt;}
.yf1{bottom:802.776533pt;}
.y87{bottom:803.814400pt;}
.y48{bottom:803.841200pt;}
.ya8{bottom:811.373467pt;}
.yb3{bottom:811.400267pt;}
.y27{bottom:816.544800pt;}
.y17b{bottom:818.701467pt;}
.y115{bottom:822.481067pt;}
.y47{bottom:822.507867pt;}
.y6{bottom:824.988133pt;}
.yf0{bottom:827.139467pt;}
.y86{bottom:830.040133pt;}
.yb2{bottom:830.066933pt;}
.y26{bottom:832.544800pt;}
.y17a{bottom:837.368133pt;}
.y114{bottom:841.147733pt;}
.y25{bottom:848.544800pt;}
.y85{bottom:848.706800pt;}
.y46{bottom:848.733600pt;}
.yef{bottom:851.502400pt;}
.y1a0{bottom:856.034800pt;}
.y113{bottom:859.814400pt;}
.y24{bottom:864.544800pt;}
.y84{bottom:867.373467pt;}
.y45{bottom:867.400267pt;}
.y19f{bottom:874.701467pt;}
.yee{bottom:875.865200pt;}
.y112{bottom:878.481067pt;}
.y23{bottom:880.544800pt;}
.y83{bottom:886.040133pt;}
.y44{bottom:886.066933pt;}
.y5{bottom:891.003867pt;}
.y22{bottom:896.544800pt;}
.y111{bottom:897.147733pt;}
.yed{bottom:900.228133pt;}
.y82{bottom:904.706800pt;}
.y43{bottom:904.733600pt;}
.y21{bottom:912.544800pt;}
.y110{bottom:915.814400pt;}
.y4{bottom:917.762933pt;}
.y179{bottom:919.593867pt;}
.yd6{bottom:922.029600pt;}
.y81{bottom:923.373467pt;}
.y42{bottom:923.400267pt;}
.yec{bottom:924.591067pt;}
.y20{bottom:928.544800pt;}
.y178{bottom:938.260533pt;}
.y80{bottom:942.040133pt;}
.y41{bottom:942.066933pt;}
.y3{bottom:944.522000pt;}
.y1f{bottom:944.544800pt;}
.yeb{bottom:949.179867pt;}
.y19e{bottom:956.927200pt;}
.y1e{bottom:960.544800pt;}
.y7f{bottom:960.706800pt;}
.y40{bottom:960.733600pt;}
.y2{bottom:971.281067pt;}
.y7e{bottom:979.373467pt;}
.y1d{bottom:984.103867pt;}
.y1{bottom:998.040133pt;}
.y3f{bottom:998.297867pt;}
.y1c{bottom:1000.103867pt;}
.hd{height:32.739094pt;}
.hb{height:34.125000pt;}
.h12{height:36.510417pt;}
.hc{height:37.057292pt;}
.h10{height:37.437500pt;}
.ha{height:43.812500pt;}
.h9{height:44.468750pt;}
.h5{height:46.796875pt;}
.h8{height:46.927083pt;}
.h7{height:47.369792pt;}
.h6{height:51.476562pt;}
.h2{height:56.156250pt;}
.h13{height:56.312500pt;}
.h4{height:56.843750pt;}
.h11{height:79.369792pt;}
.h3{height:94.739583pt;}
.he{height:793.701333pt;}
.hf{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x1b{left:-64.026267pt;}
.x1c{left:-52.070533pt;}
.x0{left:0.000000pt;}
.x18{left:113.385867pt;}
.x27{left:116.300267pt;}
.x2d{left:119.526133pt;}
.x2b{left:120.944933pt;}
.x6{left:124.513200pt;}
.x42{left:132.283467pt;}
.x20{left:136.908933pt;}
.x25{left:151.274267pt;}
.x26{left:153.227333pt;}
.x22{left:154.894000pt;}
.x1e{left:158.162267pt;}
.x2f{left:159.268933pt;}
.x38{left:160.656933pt;}
.x2a{left:161.601867pt;}
.x30{left:163.727867pt;}
.x29{left:164.692133pt;}
.x7{left:175.997467pt;}
.x2c{left:199.601067pt;}
.x3f{left:212.452533pt;}
.x13{left:214.321067pt;}
.x21{left:217.394000pt;}
.x1f{left:219.308000pt;}
.x5{left:223.424667pt;}
.x16{left:227.169333pt;}
.x37{left:228.986267pt;}
.x19{left:239.474133pt;}
.x12{left:242.820400pt;}
.x41{left:256.850400pt;}
.x1a{left:261.290533pt;}
.x17{left:263.090667pt;}
.xe{left:265.565200pt;}
.xa{left:267.330800pt;}
.x1d{left:275.379067pt;}
.x1{left:277.104267pt;}
.x8{left:286.492267pt;}
.x39{left:287.467467pt;}
.xf{left:293.967600pt;}
.xb{left:295.744933pt;}
.x4{left:305.756667pt;}
.x31{left:310.420933pt;}
.x3{left:314.643333pt;}
.xd{left:316.561333pt;}
.x2e{left:321.879733pt;}
.x10{left:323.284000pt;}
.x9{left:328.721467pt;}
.x2{left:334.408933pt;}
.x11{left:339.936267pt;}
.xc{left:353.268400pt;}
.x28{left:356.671333pt;}
.x40{left:368.520267pt;}
.x32{left:433.350000pt;}
.x33{left:437.809067pt;}
.x23{left:551.305333pt;}
.x36{left:555.926533pt;}
.x24{left:569.951467pt;}
.x34{left:670.631867pt;}
.x35{left:675.090800pt;}
.x14{left:729.674533pt;}
.x15{left:741.630267pt;}
.x3a{left:842.152133pt;}
.x3c{left:843.766800pt;}
.x3b{left:845.423600pt;}
.x3d{left:948.202000pt;}
.x3e{left:1070.449200pt;}
}

