
    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_6e569714b9f1fd1490c7702c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_ab4e86f2c963d6c615451f72.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_1d5b5fbbeaa906e5e35812b2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_3f3ca4d9032b6b6b664eded7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_58570eddf2f05c65737004f7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_96678957076c7c58ababee0a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_47c7c2d3b3c484ae0072cfcd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_3b2fe77f3a6d34c26a25a9a0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719238;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_fc2342235fd4517b8bfbd6e0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_c29a1b07886f45323da3ccf0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.970000;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_4e8872c6a48c25e97179d6a7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_b580eab2d6c6376598c17244.woff')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_955876ae4e7cac380d75ae14.woff')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_6c1e91a9a327cad884760901.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b695fd1ad82a155626e4349a.woff')format("woff");}.fff{font-family:fff;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1fcfce51c189366cf7b7febd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.800500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_760ff8920d441daf37f1e9ba.woff')format("woff");}.ff11{font-family:ff11;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1170b81f357a5e026e1d0f0a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b580eab2d6c6376598c17244.woff')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_955876ae4e7cac380d75ae14.woff')format("woff");}.ff14{font-family:ff14;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6c1e91a9a327cad884760901.woff')format("woff");}.ff15{font-family:ff15;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b695fd1ad82a155626e4349a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_955876ae4e7cac380d75ae14.woff')format("woff");}.ff17{font-family:ff17;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6c1e91a9a327cad884760901.woff')format("woff");}.ff18{font-family:ff18;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b695fd1ad82a155626e4349a.woff')format("woff");}.ff19{font-family:ff19;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_efaf358ebdf92482a8479f85.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ff23f706b0a8e2542fdd6a56.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_cfb6d07f231eb46e07043159.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.946289;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;}
.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);}
.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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v5{vertical-align:-10.848000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.252000px;}
.v1{vertical-align:20.400600px;}
.ls6e{letter-spacing:-3.150000px;}
.ls6f{letter-spacing:-2.925000px;}
.ls6a{letter-spacing:-1.260000px;}
.ls6b{letter-spacing:-1.125000px;}
.ls3f{letter-spacing:-0.972000px;}
.ls70{letter-spacing:-0.945000px;}
.ls2c{letter-spacing:-0.918000px;}
.ls58{letter-spacing:-0.855000px;}
.ls1d{letter-spacing:-0.810000px;}
.ls6d{letter-spacing:-0.765000px;}
.ls3e{letter-spacing:-0.756000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls68{letter-spacing:-0.450000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.324000px;}
.ls67{letter-spacing:-0.315000px;}
.ls16{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.140400px;}
.ls57{letter-spacing:-0.135000px;}
.ls2a{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.105300px;}
.ls1f{letter-spacing:-0.102000px;}
.ls2b{letter-spacing:-0.070200px;}
.ls39{letter-spacing:-0.060000px;}
.ls15{letter-spacing:-0.054000px;}
.ls69{letter-spacing:-0.045000px;}
.ls11{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls2e{letter-spacing:0.035100px;}
.ls8{letter-spacing:0.052650px;}
.ls5{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.058200px;}
.ls3d{letter-spacing:0.070200px;}
.ls42{letter-spacing:0.081000px;}
.ls3b{letter-spacing:0.087750px;}
.ls63{letter-spacing:0.090000px;}
.ls41{letter-spacing:0.094800px;}
.ls27{letter-spacing:0.105300px;}
.ls17{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.108600px;}
.ls5b{letter-spacing:0.135000px;}
.ls1c{letter-spacing:0.140400px;}
.ls9{letter-spacing:0.162000px;}
.ls64{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.203400px;}
.ls18{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.225000px;}
.ls40{letter-spacing:0.245700px;}
.ls53{letter-spacing:0.259200px;}
.ls12{letter-spacing:0.270000px;}
.ls4e{letter-spacing:0.279600px;}
.ls4d{letter-spacing:0.281400px;}
.ls35{letter-spacing:0.304200px;}
.ls4c{letter-spacing:0.315000px;}
.ls21{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.351000px;}
.ls4b{letter-spacing:0.351600px;}
.ls52{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.369000px;}
.ls4{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.405000px;}
.ls32{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.421200px;}
.ls26{letter-spacing:0.432000px;}
.ls45{letter-spacing:0.438750px;}
.ls54{letter-spacing:0.441000px;}
.ls4f{letter-spacing:0.450600px;}
.ls51{letter-spacing:0.451200px;}
.ls1e{letter-spacing:0.456300px;}
.ls37{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.486000px;}
.ls59{letter-spacing:0.495000px;}
.ls30{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.562500px;}
.ls5c{letter-spacing:0.585000px;}
.ls31{letter-spacing:0.594000px;}
.ls56{letter-spacing:0.596700px;}
.lsd{letter-spacing:0.608250px;}
.ls5a{letter-spacing:0.630000px;}
.ls7{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.657450px;}
.ls6c{letter-spacing:0.675000px;}
.ls6{letter-spacing:0.702000px;}
.ls23{letter-spacing:0.720000px;}
.ls49{letter-spacing:0.777600px;}
.lsf{letter-spacing:0.795450px;}
.ls34{letter-spacing:0.810000px;}
.ls38{letter-spacing:0.864000px;}
.ls5f{letter-spacing:0.877500px;}
.ls24{letter-spacing:0.918000px;}
.ls65{letter-spacing:0.945000px;}
.ls10{letter-spacing:0.960000px;}
.lsc{letter-spacing:0.969000px;}
.ls25{letter-spacing:0.972000px;}
.ls5d{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.020000px;}
.ls61{letter-spacing:1.035000px;}
.ls5e{letter-spacing:1.044000px;}
.ls62{letter-spacing:1.080000px;}
.ls47{letter-spacing:1.188000px;}
.lse{letter-spacing:1.224000px;}
.ls22{letter-spacing:1.296000px;}
.ls71{letter-spacing:1.512000px;}
.ls48{letter-spacing:1.560000px;}
.ls55{letter-spacing:1.566000px;}
.ls0{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls3c{letter-spacing:14.202000px;}
.ls29{letter-spacing:14.742000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.067500px;}
.ws25{word-spacing:-13.596000px;}
.ws5e{word-spacing:-12.906000px;}
.ws4{word-spacing:-12.360000px;}
.ws56{word-spacing:-12.339000px;}
.ws36{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws8{word-spacing:-12.042000px;}
.ws27{word-spacing:-11.718000px;}
.ws70{word-spacing:-10.305000px;}
.ws6e{word-spacing:-10.125000px;}
.ws6d{word-spacing:-9.990000px;}
.ws60{word-spacing:-9.630000px;}
.ws71{word-spacing:-9.540000px;}
.ws74{word-spacing:-9.450000px;}
.ws73{word-spacing:-9.360000px;}
.ws6f{word-spacing:-9.180000px;}
.ws5d{word-spacing:-8.564400px;}
.wsb{word-spacing:-8.424000px;}
.ws57{word-spacing:-8.406450px;}
.ws5f{word-spacing:-8.388900px;}
.ws4f{word-spacing:-8.318700px;}
.ws4e{word-spacing:-8.213400px;}
.wsa{word-spacing:-8.108100px;}
.ws28{word-spacing:-8.073000px;}
.ws50{word-spacing:-8.055450px;}
.ws4d{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.wsc{word-spacing:-8.020350px;}
.ws26{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws24{word-spacing:-7.897500px;}
.ws7{word-spacing:-7.862400px;}
.ws9{word-spacing:-7.827300px;}
.ws72{word-spacing:-7.155000px;}
.wsd{word-spacing:-6.630000px;}
.ws23{word-spacing:-2.760000px;}
.ws20{word-spacing:-2.754000px;}
.ws1{word-spacing:-2.640000px;}
.ws3f{word-spacing:-1.890000px;}
.ws11{word-spacing:-1.836000px;}
.ws48{word-spacing:-1.728000px;}
.ws7f{word-spacing:-1.710000px;}
.ws59{word-spacing:-1.674000px;}
.ws18{word-spacing:-1.620000px;}
.ws7a{word-spacing:-1.575000px;}
.ws67{word-spacing:-1.566000px;}
.ws62{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.530000px;}
.ws58{word-spacing:-1.512000px;}
.ws4b{word-spacing:-1.458000px;}
.ws61{word-spacing:-1.404000px;}
.ws1a{word-spacing:-1.350000px;}
.ws47{word-spacing:-1.296000px;}
.ws8d{word-spacing:-1.260000px;}
.ws12{word-spacing:-1.242000px;}
.ws37{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.134000px;}
.ws29{word-spacing:-1.080000px;}
.ws6b{word-spacing:-1.035000px;}
.ws19{word-spacing:-1.026000px;}
.ws22{word-spacing:-1.020000px;}
.ws8f{word-spacing:-0.990000px;}
.ws42{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.918000px;}
.ws46{word-spacing:-0.864000px;}
.ws85{word-spacing:-0.855000px;}
.ws38{word-spacing:-0.810000px;}
.ws1b{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.648000px;}
.ws15{word-spacing:-0.594000px;}
.ws79{word-spacing:-0.585000px;}
.ws2c{word-spacing:-0.540000px;}
.ws83{word-spacing:-0.495000px;}
.ws10{word-spacing:-0.486000px;}
.ws3b{word-spacing:-0.480000px;}
.ws91{word-spacing:-0.450000px;}
.ws2a{word-spacing:-0.432000px;}
.ws41{word-spacing:-0.420000px;}
.ws8c{word-spacing:-0.405000px;}
.ws16{word-spacing:-0.378000px;}
.ws6a{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.324000px;}
.ws7d{word-spacing:-0.315000px;}
.ws34{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.225000px;}
.ws2b{word-spacing:-0.216000px;}
.ws6c{word-spacing:-0.180000px;}
.ws35{word-spacing:-0.162000px;}
.ws3c{word-spacing:-0.108000px;}
.ws87{word-spacing:-0.090000px;}
.ws3a{word-spacing:-0.060000px;}
.ws39{word-spacing:-0.054000px;}
.ws86{word-spacing:-0.045000px;}
.ws5{word-spacing:-0.035100px;}
.wse{word-spacing:0.000000px;}
.ws7b{word-spacing:0.045000px;}
.ws49{word-spacing:0.054000px;}
.ws44{word-spacing:0.060000px;}
.ws65{word-spacing:0.108000px;}
.ws7e{word-spacing:0.135000px;}
.ws4a{word-spacing:0.162000px;}
.ws5a{word-spacing:0.180000px;}
.ws4c{word-spacing:0.216000px;}
.ws45{word-spacing:0.270000px;}
.ws92{word-spacing:0.315000px;}
.ws40{word-spacing:0.324000px;}
.ws84{word-spacing:0.360000px;}
.ws51{word-spacing:0.378000px;}
.ws8b{word-spacing:0.405000px;}
.ws17{word-spacing:0.432000px;}
.ws80{word-spacing:0.450000px;}
.ws2d{word-spacing:0.486000px;}
.ws93{word-spacing:0.495000px;}
.ws55{word-spacing:0.540000px;}
.ws77{word-spacing:0.585000px;}
.ws32{word-spacing:0.594000px;}
.ws1e{word-spacing:0.612000px;}
.ws8a{word-spacing:0.630000px;}
.ws52{word-spacing:0.702000px;}
.ws43{word-spacing:0.756000px;}
.ws90{word-spacing:0.810000px;}
.ws68{word-spacing:0.864000px;}
.ws3d{word-spacing:0.918000px;}
.ws69{word-spacing:0.972000px;}
.ws33{word-spacing:1.026000px;}
.ws75{word-spacing:1.035000px;}
.ws76{word-spacing:1.080000px;}
.ws64{word-spacing:1.134000px;}
.ws53{word-spacing:1.188000px;}
.ws78{word-spacing:1.215000px;}
.ws89{word-spacing:1.260000px;}
.ws1d{word-spacing:1.326000px;}
.ws2e{word-spacing:1.350000px;}
.ws81{word-spacing:1.440000px;}
.ws82{word-spacing:1.485000px;}
.ws2f{word-spacing:1.566000px;}
.ws1c{word-spacing:1.581000px;}
.ws88{word-spacing:1.620000px;}
.ws66{word-spacing:1.674000px;}
.ws3e{word-spacing:1.728000px;}
.ws5b{word-spacing:1.782000px;}
.ws1f{word-spacing:2.091000px;}
.ws30{word-spacing:2.106000px;}
.ws94{word-spacing:2.484000px;}
.ws63{word-spacing:2.592000px;}
.ws8e{word-spacing:2.655000px;}
.ws5c{word-spacing:14.742000px;}
._2{margin-left:-14.055600px;}
._12{margin-left:-13.009200px;}
._9{margin-left:-11.834400px;}
._a{margin-left:-10.753200px;}
._6{margin-left:-9.421200px;}
._8{margin-left:-7.112400px;}
._4{margin-left:-5.403600px;}
._3{margin-left:-4.394400px;}
._1{margin-left:-3.307200px;}
._0{margin-left:-1.776000px;}
._5{width:1.279200px;}
._d{width:2.435400px;}
._11{width:4.164000px;}
._b{width:6.086400px;}
._e{width:7.652400px;}
._f{width:11.032200px;}
._c{width:12.079800px;}
._10{width:47.324400px;}
._7{width:48.361800px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y31{bottom:68.307900px;}
.y8c{bottom:68.553000px;}
.yd4{bottom:68.554500px;}
.y122{bottom:68.561250px;}
.y173{bottom:71.343300px;}
.yb1{bottom:73.299300px;}
.y121{bottom:81.307500px;}
.y4d{bottom:82.373400px;}
.y30{bottom:83.307900px;}
.y8b{bottom:83.551500px;}
.yd3{bottom:83.553000px;}
.y172{bottom:84.089550px;}
.yb0{bottom:88.297800px;}
.y120{bottom:94.053750px;}
.y171{bottom:96.835800px;}
.y4c{bottom:97.371900px;}
.y2f{bottom:98.307900px;}
.y8a{bottom:98.550000px;}
.yd2{bottom:98.551500px;}
.yaf{bottom:103.296300px;}
.y11f{bottom:106.800000px;}
.y170{bottom:109.582050px;}
.y4b{bottom:112.370400px;}
.y2e{bottom:113.307900px;}
.y89{bottom:113.550000px;}
.yae{bottom:118.294800px;}
.y11e{bottom:119.550000px;}
.y16f{bottom:122.328300px;}
.y4a{bottom:127.370400px;}
.yd1{bottom:128.550000px;}
.y2d{bottom:132.636900px;}
.yad{bottom:133.300800px;}
.y16e{bottom:135.074550px;}
.y49{bottom:142.373400px;}
.y88{bottom:144.003750px;}
.y16d{bottom:147.820800px;}
.yac{bottom:148.299300px;}
.y11d{bottom:148.730550px;}
.y48{bottom:157.371900px;}
.y87{bottom:159.002250px;}
.yd0{bottom:159.552300px;}
.y16c{bottom:160.567050px;}
.yab{bottom:163.297800px;}
.y11c{bottom:163.729050px;}
.y2c{bottom:167.187300px;}
.y47{bottom:172.370400px;}
.y16b{bottom:173.313300px;}
.y86{bottom:174.000750px;}
.ycf{bottom:174.550800px;}
.yaa{bottom:178.296300px;}
.y11b{bottom:178.729050px;}
.y2b{bottom:182.185800px;}
.y16a{bottom:186.059550px;}
.y46{bottom:187.368900px;}
.y85{bottom:188.999250px;}
.yce{bottom:189.549300px;}
.ya9{bottom:193.294800px;}
.y11a{bottom:193.727550px;}
.y2a{bottom:197.185800px;}
.y169{bottom:198.805800px;}
.y45{bottom:202.368900px;}
.y84{bottom:203.997750px;}
.ycd{bottom:204.547800px;}
.ya8{bottom:208.302300px;}
.y168{bottom:211.552050px;}
.y29{bottom:212.187300px;}
.y83{bottom:218.996250px;}
.ycc{bottom:219.546300px;}
.y119{bottom:222.908250px;}
.ya7{bottom:223.300800px;}
.y167{bottom:224.298300px;}
.y28{bottom:227.185800px;}
.y44{bottom:230.354700px;}
.y82{bottom:233.994750px;}
.ycb{bottom:234.544800px;}
.y166{bottom:237.044550px;}
.y118{bottom:237.906750px;}
.ya6{bottom:238.299300px;}
.y27{bottom:242.187300px;}
.y43{bottom:245.353200px;}
.y81{bottom:248.993250px;}
.yca{bottom:249.544800px;}
.y165{bottom:249.790800px;}
.y117{bottom:252.905250px;}
.ya5{bottom:253.297800px;}
.y26{bottom:257.185800px;}
.y42{bottom:260.351700px;}
.y164{bottom:262.537050px;}
.y80{bottom:263.991750px;}
.yc9{bottom:264.544800px;}
.ya4{bottom:268.296300px;}
.y25{bottom:272.185800px;}
.y163{bottom:275.283300px;}
.y41{bottom:275.350200px;}
.y7f{bottom:278.990250px;}
.yc8{bottom:279.547800px;}
.y116{bottom:282.084300px;}
.ya3{bottom:283.294800px;}
.y24{bottom:287.187300px;}
.y162{bottom:288.029550px;}
.y40{bottom:290.348700px;}
.y7e{bottom:293.988750px;}
.yc7{bottom:294.546300px;}
.y115{bottom:297.084300px;}
.ya2{bottom:298.296300px;}
.y161{bottom:300.775800px;}
.y23{bottom:302.185800px;}
.y3f{bottom:305.353200px;}
.y7d{bottom:308.987250px;}
.yc6{bottom:309.544800px;}
.y114{bottom:312.084300px;}
.ya1{bottom:313.294800px;}
.y160{bottom:313.522050px;}
.y22{bottom:317.188800px;}
.y3e{bottom:320.351700px;}
.y7c{bottom:323.987250px;}
.yc5{bottom:324.549300px;}
.y15f{bottom:326.268300px;}
.y113{bottom:327.084300px;}
.ya0{bottom:328.297800px;}
.y21{bottom:332.187300px;}
.y3d{bottom:335.350200px;}
.y7b{bottom:338.988750px;}
.y15e{bottom:339.014550px;}
.yc4{bottom:339.547800px;}
.y112{bottom:342.085800px;}
.y9f{bottom:343.296300px;}
.y20{bottom:347.185800px;}
.y3c{bottom:350.348700px;}
.y15d{bottom:351.760800px;}
.y7a{bottom:353.987250px;}
.yc3{bottom:354.546300px;}
.y111{bottom:357.084300px;}
.y9e{bottom:358.294800px;}
.y1f{bottom:362.187300px;}
.y15c{bottom:364.507050px;}
.y3b{bottom:365.350200px;}
.y79{bottom:368.987250px;}
.yc2{bottom:369.544800px;}
.y110{bottom:372.088800px;}
.y9d{bottom:373.294800px;}
.y1e{bottom:377.185800px;}
.y15b{bottom:377.253300px;}
.y3a{bottom:380.348700px;}
.y78{bottom:383.991750px;}
.yc1{bottom:384.550800px;}
.y10f{bottom:387.087300px;}
.y9c{bottom:388.296300px;}
.y15a{bottom:389.999550px;}
.y1d{bottom:392.187300px;}
.y39{bottom:395.350200px;}
.y77{bottom:398.990250px;}
.yc0{bottom:399.549300px;}
.y10e{bottom:402.085800px;}
.y159{bottom:402.745800px;}
.y9b{bottom:403.294800px;}
.y1c{bottom:407.185800px;}
.y38{bottom:410.348700px;}
.y76{bottom:413.988750px;}
.ybf{bottom:414.547800px;}
.y158{bottom:415.492050px;}
.y10d{bottom:417.084300px;}
.y9a{bottom:418.296300px;}
.y1b{bottom:422.187300px;}
.y37{bottom:425.347200px;}
.y157{bottom:428.238300px;}
.y75{bottom:428.987250px;}
.ybe{bottom:429.546300px;}
.y10c{bottom:432.085800px;}
.y99{bottom:433.294800px;}
.y1a{bottom:437.185800px;}
.y156{bottom:440.984550px;}
.y74{bottom:443.985750px;}
.ybd{bottom:444.544800px;}
.y10b{bottom:447.084300px;}
.y98{bottom:448.300800px;}
.y19{bottom:452.185800px;}
.y155{bottom:453.730800px;}
.ybc{bottom:459.544800px;}
.y10a{bottom:462.084300px;}
.y97{bottom:463.299300px;}
.y154{bottom:466.477050px;}
.y18{bottom:467.194800px;}
.y73{bottom:474.432150px;}
.ybb{bottom:474.543300px;}
.y109{bottom:477.082800px;}
.y96{bottom:478.297800px;}
.y153{bottom:479.223300px;}
.y17{bottom:482.193300px;}
.y5e{bottom:484.429350px;}
.y72{bottom:489.430650px;}
.y152{bottom:491.969550px;}
.y95{bottom:493.296300px;}
.y5d{bottom:499.427850px;}
.y71{bottom:504.429150px;}
.y151{bottom:504.715800px;}
.y108{bottom:506.271000px;}
.y94{bottom:508.294800px;}
.y5c{bottom:514.426350px;}
.y150{bottom:517.462050px;}
.y70{bottom:519.427650px;}
.y107{bottom:521.269500px;}
.y93{bottom:523.296300px;}
.y5b{bottom:529.424850px;}
.y16{bottom:529.443300px;}
.y14f{bottom:530.208300px;}
.ye3{bottom:531.969150px;}
.y6f{bottom:534.426150px;}
.y106{bottom:536.268000px;}
.y92{bottom:538.294800px;}
.y14e{bottom:542.954550px;}
.y5a{bottom:544.423350px;}
.y15{bottom:545.940300px;}
.ye2{bottom:546.967650px;}
.y6e{bottom:549.424650px;}
.y18f{bottom:551.052300px;}
.y105{bottom:551.266500px;}
.y91{bottom:553.293300px;}
.y14d{bottom:555.700800px;}
.y59{bottom:559.421850px;}
.ye1{bottom:561.966150px;}
.y14{bottom:562.437300px;}
.y6d{bottom:564.423150px;}
.y18e{bottom:566.050800px;}
.y104{bottom:566.265000px;}
.y14c{bottom:568.447050px;}
.y58{bottom:574.420350px;}
.ye0{bottom:576.964650px;}
.y13{bottom:578.961300px;}
.y6c{bottom:579.421650px;}
.y18d{bottom:581.049300px;}
.y14b{bottom:581.193300px;}
.y103{bottom:581.263500px;}
.y57{bottom:589.418850px;}
.ydf{bottom:591.963150px;}
.y14a{bottom:593.939550px;}
.y12{bottom:595.458300px;}
.y18c{bottom:596.047800px;}
.y102{bottom:596.262000px;}
.y56{bottom:604.417350px;}
.y149{bottom:606.685800px;}
.yde{bottom:606.961650px;}
.y6b{bottom:609.870900px;}
.y18b{bottom:611.046300px;}
.y101{bottom:611.263500px;}
.y11{bottom:611.955300px;}
.yba{bottom:613.810950px;}
.y55{bottom:619.415850px;}
.y148{bottom:619.432050px;}
.ydd{bottom:621.960150px;}
.y6a{bottom:624.869400px;}
.y18a{bottom:626.044800px;}
.y100{bottom:626.262000px;}
.y10{bottom:628.452300px;}
.yb9{bottom:628.809450px;}
.y147{bottom:632.178300px;}
.y54{bottom:634.414350px;}
.ydc{bottom:636.958650px;}
.y69{bottom:639.867900px;}
.y189{bottom:641.043300px;}
.yff{bottom:641.262000px;}
.yb8{bottom:643.807950px;}
.y146{bottom:644.924550px;}
.yf{bottom:644.949300px;}
.y53{bottom:649.412850px;}
.ydb{bottom:651.957150px;}
.y68{bottom:654.866400px;}
.yfe{bottom:656.260500px;}
.y145{bottom:657.670800px;}
.yb7{bottom:658.806450px;}
.ye{bottom:661.446300px;}
.y188{bottom:662.799300px;}
.yda{bottom:666.955650px;}
.y67{bottom:669.864900px;}
.y144{bottom:670.417050px;}
.yb6{bottom:673.804950px;}
.y187{bottom:677.797800px;}
.yd{bottom:677.943300px;}
.yd9{bottom:681.954150px;}
.y143{bottom:683.163300px;}
.y66{bottom:684.863400px;}
.yfd{bottom:685.439550px;}
.yb5{bottom:688.803450px;}
.yc{bottom:694.440300px;}
.y142{bottom:695.909550px;}
.yd8{bottom:696.954150px;}
.y186{bottom:699.546300px;}
.y65{bottom:699.861900px;}
.yfc{bottom:700.450050px;}
.yb4{bottom:703.801950px;}
.y141{bottom:708.655800px;}
.yb{bottom:710.937300px;}
.yd7{bottom:711.955650px;}
.y185{bottom:714.544800px;}
.y64{bottom:714.860400px;}
.yfb{bottom:715.448550px;}
.yb3{bottom:718.800450px;}
.y140{bottom:721.402050px;}
.yd6{bottom:726.954150px;}
.ya{bottom:727.434300px;}
.y63{bottom:729.858900px;}
.yfa{bottom:730.447050px;}
.yb2{bottom:733.798950px;}
.y13f{bottom:734.148300px;}
.y184{bottom:736.293300px;}
.yd5{bottom:741.952650px;}
.y62{bottom:744.857400px;}
.yf9{bottom:745.445550px;}
.y13e{bottom:746.894550px;}
.y183{bottom:751.293300px;}
.y34{bottom:757.050000px;}
.y9{bottom:757.434300px;}
.y13d{bottom:759.640800px;}
.yf8{bottom:760.444050px;}
.y13c{bottom:772.387050px;}
.y61{bottom:775.296300px;}
.y8{bottom:775.434300px;}
.yf7{bottom:775.442550px;}
.y33{bottom:778.050000px;}
.y182{bottom:778.299300px;}
.y13b{bottom:785.133300px;}
.y60{bottom:790.294800px;}
.yf6{bottom:790.441050px;}
.y181{bottom:793.297800px;}
.y7{bottom:793.434300px;}
.y13a{bottom:797.879550px;}
.y32{bottom:799.050000px;}
.y5f{bottom:805.293300px;}
.yf5{bottom:805.439550px;}
.y180{bottom:808.296300px;}
.y139{bottom:810.625800px;}
.yf4{bottom:820.438050px;}
.y17f{bottom:823.294800px;}
.y138{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y137{bottom:836.118300px;}
.y17e{bottom:838.293300px;}
.y136{bottom:848.864550px;}
.yf3{bottom:849.624750px;}
.y17d{bottom:853.293300px;}
.y135{bottom:861.610800px;}
.yf2{bottom:864.623250px;}
.y90{bottom:868.803450px;}
.y5{bottom:871.428300px;}
.y134{bottom:874.357050px;}
.yf1{bottom:879.621750px;}
.y17c{bottom:880.303800px;}
.y8f{bottom:883.801950px;}
.y133{bottom:887.103300px;}
.yf0{bottom:894.620250px;}
.y17b{bottom:895.302300px;}
.y8e{bottom:898.800450px;}
.y132{bottom:899.849550px;}
.y52{bottom:902.336850px;}
.yef{bottom:909.618750px;}
.y17a{bottom:910.300800px;}
.y131{bottom:912.595800px;}
.y8d{bottom:913.798950px;}
.y4{bottom:916.434300px;}
.y51{bottom:917.335350px;}
.yee{bottom:924.617250px;}
.y179{bottom:925.299300px;}
.y130{bottom:925.342050px;}
.y35{bottom:926.409600px;}
.y50{bottom:932.333850px;}
.y12f{bottom:938.088300px;}
.yed{bottom:939.620250px;}
.y178{bottom:940.297800px;}
.y4f{bottom:947.332350px;}
.y12e{bottom:950.834550px;}
.yec{bottom:954.618750px;}
.y177{bottom:955.296300px;}
.y4e{bottom:962.330850px;}
.y12d{bottom:963.580800px;}
.yeb{bottom:969.617250px;}
.y176{bottom:970.294800px;}
.y12c{bottom:976.327050px;}
.yea{bottom:984.615750px;}
.y175{bottom:985.293300px;}
.y12b{bottom:989.073300px;}
.y174{bottom:1000.293300px;}
.y12a{bottom:1001.819550px;}
.ye9{bottom:1013.794800px;}
.y129{bottom:1014.565800px;}
.y128{bottom:1027.312050px;}
.ye8{bottom:1028.799300px;}
.y127{bottom:1040.058300px;}
.ye7{bottom:1043.797800px;}
.y126{bottom:1052.804550px;}
.ye6{bottom:1058.796300px;}
.y125{bottom:1065.550800px;}
.ye5{bottom:1073.794800px;}
.y124{bottom:1078.297050px;}
.ye4{bottom:1088.793300px;}
.y123{bottom:1091.043300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.he{height:23.842749px;}
.h1f{height:32.220000px;}
.h3{height:34.523438px;}
.h10{height:36.681152px;}
.h9{height:38.664000px;}
.h1a{height:38.793300px;}
.h15{height:38.799300px;}
.h17{height:38.811300px;}
.h16{height:38.817300px;}
.h1c{height:38.823300px;}
.h8{height:38.838867px;}
.hf{height:41.158749px;}
.h2{height:43.154297px;}
.ha{height:43.449600px;}
.h19{height:43.455600px;}
.h18{height:43.461600px;}
.h13{height:43.467600px;}
.hd{height:43.473600px;}
.hc{height:43.479600px;}
.hb{height:43.485600px;}
.h1b{height:43.491000px;}
.h12{height:43.491600px;}
.h4{height:44.233154px;}
.h14{height:47.469727px;}
.h7{height:48.450293px;}
.h6{height:48.450893px;}
.h1e{height:50.724000px;}
.h1d{height:50.730000px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:65.663850px;}
.x8{left:77.147850px;}
.x6{left:96.587850px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xb{left:238.992150px;}
.x5{left:251.449950px;}
.xc{left:300.348600px;}
.x3{left:584.586600px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.642667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.224000pt;}
.v1{vertical-align:18.133867pt;}
.ls6e{letter-spacing:-2.800000pt;}
.ls6f{letter-spacing:-2.600000pt;}
.ls6a{letter-spacing:-1.120000pt;}
.ls6b{letter-spacing:-1.000000pt;}
.ls3f{letter-spacing:-0.864000pt;}
.ls70{letter-spacing:-0.840000pt;}
.ls2c{letter-spacing:-0.816000pt;}
.ls58{letter-spacing:-0.760000pt;}
.ls1d{letter-spacing:-0.720000pt;}
.ls6d{letter-spacing:-0.680000pt;}
.ls3e{letter-spacing:-0.672000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls68{letter-spacing:-0.400000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.288000pt;}
.ls67{letter-spacing:-0.280000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.124800pt;}
.ls57{letter-spacing:-0.120000pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.093600pt;}
.ls1f{letter-spacing:-0.090667pt;}
.ls2b{letter-spacing:-0.062400pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls69{letter-spacing:-0.040000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls2e{letter-spacing:0.031200pt;}
.ls8{letter-spacing:0.046800pt;}
.ls5{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.051733pt;}
.ls3d{letter-spacing:0.062400pt;}
.ls42{letter-spacing:0.072000pt;}
.ls3b{letter-spacing:0.078000pt;}
.ls63{letter-spacing:0.080000pt;}
.ls41{letter-spacing:0.084267pt;}
.ls27{letter-spacing:0.093600pt;}
.ls17{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.096533pt;}
.ls5b{letter-spacing:0.120000pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls9{letter-spacing:0.144000pt;}
.ls64{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.180800pt;}
.ls18{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.200000pt;}
.ls40{letter-spacing:0.218400pt;}
.ls53{letter-spacing:0.230400pt;}
.ls12{letter-spacing:0.240000pt;}
.ls4e{letter-spacing:0.248533pt;}
.ls4d{letter-spacing:0.250133pt;}
.ls35{letter-spacing:0.270400pt;}
.ls4c{letter-spacing:0.280000pt;}
.ls21{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.312000pt;}
.ls4b{letter-spacing:0.312533pt;}
.ls52{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.328000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.360000pt;}
.ls32{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.374400pt;}
.ls26{letter-spacing:0.384000pt;}
.ls45{letter-spacing:0.390000pt;}
.ls54{letter-spacing:0.392000pt;}
.ls4f{letter-spacing:0.400533pt;}
.ls51{letter-spacing:0.401067pt;}
.ls1e{letter-spacing:0.405600pt;}
.ls37{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.432000pt;}
.ls59{letter-spacing:0.440000pt;}
.ls30{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.500000pt;}
.ls5c{letter-spacing:0.520000pt;}
.ls31{letter-spacing:0.528000pt;}
.ls56{letter-spacing:0.530400pt;}
.lsd{letter-spacing:0.540667pt;}
.ls5a{letter-spacing:0.560000pt;}
.ls7{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.584400pt;}
.ls6c{letter-spacing:0.600000pt;}
.ls6{letter-spacing:0.624000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls49{letter-spacing:0.691200pt;}
.lsf{letter-spacing:0.707067pt;}
.ls34{letter-spacing:0.720000pt;}
.ls38{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.780000pt;}
.ls24{letter-spacing:0.816000pt;}
.ls65{letter-spacing:0.840000pt;}
.ls10{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.861333pt;}
.ls25{letter-spacing:0.864000pt;}
.ls5d{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.906667pt;}
.ls61{letter-spacing:0.920000pt;}
.ls5e{letter-spacing:0.928000pt;}
.ls62{letter-spacing:0.960000pt;}
.ls47{letter-spacing:1.056000pt;}
.lse{letter-spacing:1.088000pt;}
.ls22{letter-spacing:1.152000pt;}
.ls71{letter-spacing:1.344000pt;}
.ls48{letter-spacing:1.386667pt;}
.ls55{letter-spacing:1.392000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls3c{letter-spacing:12.624000pt;}
.ls29{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws25{word-spacing:-12.085333pt;}
.ws5e{word-spacing:-11.472000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws56{word-spacing:-10.968000pt;}
.ws36{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws8{word-spacing:-10.704000pt;}
.ws27{word-spacing:-10.416000pt;}
.ws70{word-spacing:-9.160000pt;}
.ws6e{word-spacing:-9.000000pt;}
.ws6d{word-spacing:-8.880000pt;}
.ws60{word-spacing:-8.560000pt;}
.ws71{word-spacing:-8.480000pt;}
.ws74{word-spacing:-8.400000pt;}
.ws73{word-spacing:-8.320000pt;}
.ws6f{word-spacing:-8.160000pt;}
.ws5d{word-spacing:-7.612800pt;}
.wsb{word-spacing:-7.488000pt;}
.ws57{word-spacing:-7.472400pt;}
.ws5f{word-spacing:-7.456800pt;}
.ws4f{word-spacing:-7.394400pt;}
.ws4e{word-spacing:-7.300800pt;}
.wsa{word-spacing:-7.207200pt;}
.ws28{word-spacing:-7.176000pt;}
.ws50{word-spacing:-7.160400pt;}
.ws4d{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.wsc{word-spacing:-7.129200pt;}
.ws26{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws24{word-spacing:-7.020000pt;}
.ws7{word-spacing:-6.988800pt;}
.ws9{word-spacing:-6.957600pt;}
.ws72{word-spacing:-6.360000pt;}
.wsd{word-spacing:-5.893333pt;}
.ws23{word-spacing:-2.453333pt;}
.ws20{word-spacing:-2.448000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws3f{word-spacing:-1.680000pt;}
.ws11{word-spacing:-1.632000pt;}
.ws48{word-spacing:-1.536000pt;}
.ws7f{word-spacing:-1.520000pt;}
.ws59{word-spacing:-1.488000pt;}
.ws18{word-spacing:-1.440000pt;}
.ws7a{word-spacing:-1.400000pt;}
.ws67{word-spacing:-1.392000pt;}
.ws62{word-spacing:-1.386667pt;}
.ws21{word-spacing:-1.360000pt;}
.ws58{word-spacing:-1.344000pt;}
.ws4b{word-spacing:-1.296000pt;}
.ws61{word-spacing:-1.248000pt;}
.ws1a{word-spacing:-1.200000pt;}
.ws47{word-spacing:-1.152000pt;}
.ws8d{word-spacing:-1.120000pt;}
.ws12{word-spacing:-1.104000pt;}
.ws37{word-spacing:-1.056000pt;}
.wsf{word-spacing:-1.008000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws6b{word-spacing:-0.920000pt;}
.ws19{word-spacing:-0.912000pt;}
.ws22{word-spacing:-0.906667pt;}
.ws8f{word-spacing:-0.880000pt;}
.ws42{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.816000pt;}
.ws46{word-spacing:-0.768000pt;}
.ws85{word-spacing:-0.760000pt;}
.ws38{word-spacing:-0.720000pt;}
.ws1b{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.576000pt;}
.ws15{word-spacing:-0.528000pt;}
.ws79{word-spacing:-0.520000pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws83{word-spacing:-0.440000pt;}
.ws10{word-spacing:-0.432000pt;}
.ws3b{word-spacing:-0.426667pt;}
.ws91{word-spacing:-0.400000pt;}
.ws2a{word-spacing:-0.384000pt;}
.ws41{word-spacing:-0.373333pt;}
.ws8c{word-spacing:-0.360000pt;}
.ws16{word-spacing:-0.336000pt;}
.ws6a{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.288000pt;}
.ws7d{word-spacing:-0.280000pt;}
.ws34{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.200000pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws6c{word-spacing:-0.160000pt;}
.ws35{word-spacing:-0.144000pt;}
.ws3c{word-spacing:-0.096000pt;}
.ws87{word-spacing:-0.080000pt;}
.ws3a{word-spacing:-0.053333pt;}
.ws39{word-spacing:-0.048000pt;}
.ws86{word-spacing:-0.040000pt;}
.ws5{word-spacing:-0.031200pt;}
.wse{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.040000pt;}
.ws49{word-spacing:0.048000pt;}
.ws44{word-spacing:0.053333pt;}
.ws65{word-spacing:0.096000pt;}
.ws7e{word-spacing:0.120000pt;}
.ws4a{word-spacing:0.144000pt;}
.ws5a{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.192000pt;}
.ws45{word-spacing:0.240000pt;}
.ws92{word-spacing:0.280000pt;}
.ws40{word-spacing:0.288000pt;}
.ws84{word-spacing:0.320000pt;}
.ws51{word-spacing:0.336000pt;}
.ws8b{word-spacing:0.360000pt;}
.ws17{word-spacing:0.384000pt;}
.ws80{word-spacing:0.400000pt;}
.ws2d{word-spacing:0.432000pt;}
.ws93{word-spacing:0.440000pt;}
.ws55{word-spacing:0.480000pt;}
.ws77{word-spacing:0.520000pt;}
.ws32{word-spacing:0.528000pt;}
.ws1e{word-spacing:0.544000pt;}
.ws8a{word-spacing:0.560000pt;}
.ws52{word-spacing:0.624000pt;}
.ws43{word-spacing:0.672000pt;}
.ws90{word-spacing:0.720000pt;}
.ws68{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.816000pt;}
.ws69{word-spacing:0.864000pt;}
.ws33{word-spacing:0.912000pt;}
.ws75{word-spacing:0.920000pt;}
.ws76{word-spacing:0.960000pt;}
.ws64{word-spacing:1.008000pt;}
.ws53{word-spacing:1.056000pt;}
.ws78{word-spacing:1.080000pt;}
.ws89{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.178667pt;}
.ws2e{word-spacing:1.200000pt;}
.ws81{word-spacing:1.280000pt;}
.ws82{word-spacing:1.320000pt;}
.ws2f{word-spacing:1.392000pt;}
.ws1c{word-spacing:1.405333pt;}
.ws88{word-spacing:1.440000pt;}
.ws66{word-spacing:1.488000pt;}
.ws3e{word-spacing:1.536000pt;}
.ws5b{word-spacing:1.584000pt;}
.ws1f{word-spacing:1.858667pt;}
.ws30{word-spacing:1.872000pt;}
.ws94{word-spacing:2.208000pt;}
.ws63{word-spacing:2.304000pt;}
.ws8e{word-spacing:2.360000pt;}
.ws5c{word-spacing:13.104000pt;}
._2{margin-left:-12.493867pt;}
._12{margin-left:-11.563733pt;}
._9{margin-left:-10.519467pt;}
._a{margin-left:-9.558400pt;}
._6{margin-left:-8.374400pt;}
._8{margin-left:-6.322133pt;}
._4{margin-left:-4.803200pt;}
._3{margin-left:-3.906133pt;}
._1{margin-left:-2.939733pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.137067pt;}
._d{width:2.164800pt;}
._11{width:3.701333pt;}
._b{width:5.410133pt;}
._e{width:6.802133pt;}
._f{width:9.806400pt;}
._c{width:10.737600pt;}
._10{width:42.066133pt;}
._7{width:42.988267pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y31{bottom:60.718133pt;}
.y8c{bottom:60.936000pt;}
.yd4{bottom:60.937333pt;}
.y122{bottom:60.943333pt;}
.y173{bottom:63.416267pt;}
.yb1{bottom:65.154933pt;}
.y121{bottom:72.273333pt;}
.y4d{bottom:73.220800pt;}
.y30{bottom:74.051467pt;}
.y8b{bottom:74.268000pt;}
.yd3{bottom:74.269333pt;}
.y172{bottom:74.746267pt;}
.yb0{bottom:78.486933pt;}
.y120{bottom:83.603333pt;}
.y171{bottom:86.076267pt;}
.y4c{bottom:86.552800pt;}
.y2f{bottom:87.384800pt;}
.y8a{bottom:87.600000pt;}
.yd2{bottom:87.601333pt;}
.yaf{bottom:91.818933pt;}
.y11f{bottom:94.933333pt;}
.y170{bottom:97.406267pt;}
.y4b{bottom:99.884800pt;}
.y2e{bottom:100.718133pt;}
.y89{bottom:100.933333pt;}
.yae{bottom:105.150933pt;}
.y11e{bottom:106.266667pt;}
.y16f{bottom:108.736267pt;}
.y4a{bottom:113.218133pt;}
.yd1{bottom:114.266667pt;}
.y2d{bottom:117.899467pt;}
.yad{bottom:118.489600pt;}
.y16e{bottom:120.066267pt;}
.y49{bottom:126.554133pt;}
.y88{bottom:128.003333pt;}
.y16d{bottom:131.396267pt;}
.yac{bottom:131.821600pt;}
.y11d{bottom:132.204933pt;}
.y48{bottom:139.886133pt;}
.y87{bottom:141.335333pt;}
.yd0{bottom:141.824267pt;}
.y16c{bottom:142.726267pt;}
.yab{bottom:145.153600pt;}
.y11c{bottom:145.536933pt;}
.y2c{bottom:148.610933pt;}
.y47{bottom:153.218133pt;}
.y16b{bottom:154.056267pt;}
.y86{bottom:154.667333pt;}
.ycf{bottom:155.156267pt;}
.yaa{bottom:158.485600pt;}
.y11b{bottom:158.870267pt;}
.y2b{bottom:161.942933pt;}
.y16a{bottom:165.386267pt;}
.y46{bottom:166.550133pt;}
.y85{bottom:167.999333pt;}
.yce{bottom:168.488267pt;}
.ya9{bottom:171.817600pt;}
.y11a{bottom:172.202267pt;}
.y2a{bottom:175.276267pt;}
.y169{bottom:176.716267pt;}
.y45{bottom:179.883467pt;}
.y84{bottom:181.331333pt;}
.ycd{bottom:181.820267pt;}
.ya8{bottom:185.157600pt;}
.y168{bottom:188.046267pt;}
.y29{bottom:188.610933pt;}
.y83{bottom:194.663333pt;}
.ycc{bottom:195.152267pt;}
.y119{bottom:198.140667pt;}
.ya7{bottom:198.489600pt;}
.y167{bottom:199.376267pt;}
.y28{bottom:201.942933pt;}
.y44{bottom:204.759733pt;}
.y82{bottom:207.995333pt;}
.ycb{bottom:208.484267pt;}
.y166{bottom:210.706267pt;}
.y118{bottom:211.472667pt;}
.ya6{bottom:211.821600pt;}
.y27{bottom:215.277600pt;}
.y43{bottom:218.091733pt;}
.y81{bottom:221.327333pt;}
.yca{bottom:221.817600pt;}
.y165{bottom:222.036267pt;}
.y117{bottom:224.804667pt;}
.ya5{bottom:225.153600pt;}
.y26{bottom:228.609600pt;}
.y42{bottom:231.423733pt;}
.y164{bottom:233.366267pt;}
.y80{bottom:234.659333pt;}
.yc9{bottom:235.150933pt;}
.ya4{bottom:238.485600pt;}
.y25{bottom:241.942933pt;}
.y163{bottom:244.696267pt;}
.y41{bottom:244.755733pt;}
.y7f{bottom:247.991333pt;}
.yc8{bottom:248.486933pt;}
.y116{bottom:250.741600pt;}
.ya3{bottom:251.817600pt;}
.y24{bottom:255.277600pt;}
.y162{bottom:256.026267pt;}
.y40{bottom:258.087733pt;}
.y7e{bottom:261.323333pt;}
.yc7{bottom:261.818933pt;}
.y115{bottom:264.074933pt;}
.ya2{bottom:265.152267pt;}
.y161{bottom:267.356267pt;}
.y23{bottom:268.609600pt;}
.y3f{bottom:271.425067pt;}
.y7d{bottom:274.655333pt;}
.yc6{bottom:275.150933pt;}
.y114{bottom:277.408267pt;}
.ya1{bottom:278.484267pt;}
.y160{bottom:278.686267pt;}
.y22{bottom:281.945600pt;}
.y3e{bottom:284.757067pt;}
.y7c{bottom:287.988667pt;}
.yc5{bottom:288.488267pt;}
.y15f{bottom:290.016267pt;}
.y113{bottom:290.741600pt;}
.ya0{bottom:291.820267pt;}
.y21{bottom:295.277600pt;}
.y3d{bottom:298.089067pt;}
.y7b{bottom:301.323333pt;}
.y15e{bottom:301.346267pt;}
.yc4{bottom:301.820267pt;}
.y112{bottom:304.076267pt;}
.y9f{bottom:305.152267pt;}
.y20{bottom:308.609600pt;}
.y3c{bottom:311.421067pt;}
.y15d{bottom:312.676267pt;}
.y7a{bottom:314.655333pt;}
.yc3{bottom:315.152267pt;}
.y111{bottom:317.408267pt;}
.y9e{bottom:318.484267pt;}
.y1f{bottom:321.944267pt;}
.y15c{bottom:324.006267pt;}
.y3b{bottom:324.755733pt;}
.y79{bottom:327.988667pt;}
.yc2{bottom:328.484267pt;}
.y110{bottom:330.745600pt;}
.y9d{bottom:331.817600pt;}
.y1e{bottom:335.276267pt;}
.y15b{bottom:335.336267pt;}
.y3a{bottom:338.087733pt;}
.y78{bottom:341.326000pt;}
.yc1{bottom:341.822933pt;}
.y10f{bottom:344.077600pt;}
.y9c{bottom:345.152267pt;}
.y15a{bottom:346.666267pt;}
.y1d{bottom:348.610933pt;}
.y39{bottom:351.422400pt;}
.y77{bottom:354.658000pt;}
.yc0{bottom:355.154933pt;}
.y10e{bottom:357.409600pt;}
.y159{bottom:357.996267pt;}
.y9b{bottom:358.484267pt;}
.y1c{bottom:361.942933pt;}
.y38{bottom:364.754400pt;}
.y76{bottom:367.990000pt;}
.ybf{bottom:368.486933pt;}
.y158{bottom:369.326267pt;}
.y10d{bottom:370.741600pt;}
.y9a{bottom:371.818933pt;}
.y1b{bottom:375.277600pt;}
.y37{bottom:378.086400pt;}
.y157{bottom:380.656267pt;}
.y75{bottom:381.322000pt;}
.ybe{bottom:381.818933pt;}
.y10c{bottom:384.076267pt;}
.y99{bottom:385.150933pt;}
.y1a{bottom:388.609600pt;}
.y156{bottom:391.986267pt;}
.y74{bottom:394.654000pt;}
.ybd{bottom:395.150933pt;}
.y10b{bottom:397.408267pt;}
.y98{bottom:398.489600pt;}
.y19{bottom:401.942933pt;}
.y155{bottom:403.316267pt;}
.ybc{bottom:408.484267pt;}
.y10a{bottom:410.741600pt;}
.y97{bottom:411.821600pt;}
.y154{bottom:414.646267pt;}
.y18{bottom:415.284267pt;}
.y73{bottom:421.717467pt;}
.ybb{bottom:421.816267pt;}
.y109{bottom:424.073600pt;}
.y96{bottom:425.153600pt;}
.y153{bottom:425.976267pt;}
.y17{bottom:428.616267pt;}
.y5e{bottom:430.603867pt;}
.y72{bottom:435.049467pt;}
.y152{bottom:437.306267pt;}
.y95{bottom:438.485600pt;}
.y5d{bottom:443.935867pt;}
.y71{bottom:448.381467pt;}
.y151{bottom:448.636267pt;}
.y108{bottom:450.018667pt;}
.y94{bottom:451.817600pt;}
.y5c{bottom:457.267867pt;}
.y150{bottom:459.966267pt;}
.y70{bottom:461.713467pt;}
.y107{bottom:463.350667pt;}
.y93{bottom:465.152267pt;}
.y5b{bottom:470.599867pt;}
.y16{bottom:470.616267pt;}
.y14f{bottom:471.296267pt;}
.ye3{bottom:472.861467pt;}
.y6f{bottom:475.045467pt;}
.y106{bottom:476.682667pt;}
.y92{bottom:478.484267pt;}
.y14e{bottom:482.626267pt;}
.y5a{bottom:483.931867pt;}
.y15{bottom:485.280267pt;}
.ye2{bottom:486.193467pt;}
.y6e{bottom:488.377467pt;}
.y18f{bottom:489.824267pt;}
.y105{bottom:490.014667pt;}
.y91{bottom:491.816267pt;}
.y14d{bottom:493.956267pt;}
.y59{bottom:497.263867pt;}
.ye1{bottom:499.525467pt;}
.y14{bottom:499.944267pt;}
.y6d{bottom:501.709467pt;}
.y18e{bottom:503.156267pt;}
.y104{bottom:503.346667pt;}
.y14c{bottom:505.286267pt;}
.y58{bottom:510.595867pt;}
.ye0{bottom:512.857467pt;}
.y13{bottom:514.632267pt;}
.y6c{bottom:515.041467pt;}
.y18d{bottom:516.488267pt;}
.y14b{bottom:516.616267pt;}
.y103{bottom:516.678667pt;}
.y57{bottom:523.927867pt;}
.ydf{bottom:526.189467pt;}
.y14a{bottom:527.946267pt;}
.y12{bottom:529.296267pt;}
.y18c{bottom:529.820267pt;}
.y102{bottom:530.010667pt;}
.y56{bottom:537.259867pt;}
.y149{bottom:539.276267pt;}
.yde{bottom:539.521467pt;}
.y6b{bottom:542.107467pt;}
.y18b{bottom:543.152267pt;}
.y101{bottom:543.345333pt;}
.y11{bottom:543.960267pt;}
.yba{bottom:545.609733pt;}
.y55{bottom:550.591867pt;}
.y148{bottom:550.606267pt;}
.ydd{bottom:552.853467pt;}
.y6a{bottom:555.439467pt;}
.y18a{bottom:556.484267pt;}
.y100{bottom:556.677333pt;}
.y10{bottom:558.624267pt;}
.yb9{bottom:558.941733pt;}
.y147{bottom:561.936267pt;}
.y54{bottom:563.923867pt;}
.ydc{bottom:566.185467pt;}
.y69{bottom:568.771467pt;}
.y189{bottom:569.816267pt;}
.yff{bottom:570.010667pt;}
.yb8{bottom:572.273733pt;}
.y146{bottom:573.266267pt;}
.yf{bottom:573.288267pt;}
.y53{bottom:577.255867pt;}
.ydb{bottom:579.517467pt;}
.y68{bottom:582.103467pt;}
.yfe{bottom:583.342667pt;}
.y145{bottom:584.596267pt;}
.yb7{bottom:585.605733pt;}
.ye{bottom:587.952267pt;}
.y188{bottom:589.154933pt;}
.yda{bottom:592.849467pt;}
.y67{bottom:595.435467pt;}
.y144{bottom:595.926267pt;}
.yb6{bottom:598.937733pt;}
.y187{bottom:602.486933pt;}
.yd{bottom:602.616267pt;}
.yd9{bottom:606.181467pt;}
.y143{bottom:607.256267pt;}
.y66{bottom:608.767467pt;}
.yfd{bottom:609.279600pt;}
.yb5{bottom:612.269733pt;}
.yc{bottom:617.280267pt;}
.y142{bottom:618.586267pt;}
.yd8{bottom:619.514800pt;}
.y186{bottom:621.818933pt;}
.y65{bottom:622.099467pt;}
.yfc{bottom:622.622267pt;}
.yb4{bottom:625.601733pt;}
.y141{bottom:629.916267pt;}
.yb{bottom:631.944267pt;}
.yd7{bottom:632.849467pt;}
.y185{bottom:635.150933pt;}
.y64{bottom:635.431467pt;}
.yfb{bottom:635.954267pt;}
.yb3{bottom:638.933733pt;}
.y140{bottom:641.246267pt;}
.yd6{bottom:646.181467pt;}
.ya{bottom:646.608267pt;}
.y63{bottom:648.763467pt;}
.yfa{bottom:649.286267pt;}
.yb2{bottom:652.265733pt;}
.y13f{bottom:652.576267pt;}
.y184{bottom:654.482933pt;}
.yd5{bottom:659.513467pt;}
.y62{bottom:662.095467pt;}
.yf9{bottom:662.618267pt;}
.y13e{bottom:663.906267pt;}
.y183{bottom:667.816267pt;}
.y34{bottom:672.933333pt;}
.y9{bottom:673.274933pt;}
.y13d{bottom:675.236267pt;}
.yf8{bottom:675.950267pt;}
.y13c{bottom:686.566267pt;}
.y61{bottom:689.152267pt;}
.y8{bottom:689.274933pt;}
.yf7{bottom:689.282267pt;}
.y33{bottom:691.600000pt;}
.y182{bottom:691.821600pt;}
.y13b{bottom:697.896267pt;}
.y60{bottom:702.484267pt;}
.yf6{bottom:702.614267pt;}
.y181{bottom:705.153600pt;}
.y7{bottom:705.274933pt;}
.y13a{bottom:709.226267pt;}
.y32{bottom:710.266667pt;}
.y5f{bottom:715.816267pt;}
.yf5{bottom:715.946267pt;}
.y180{bottom:718.485600pt;}
.y139{bottom:720.556267pt;}
.yf4{bottom:729.278267pt;}
.y17f{bottom:731.817600pt;}
.y138{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y137{bottom:743.216267pt;}
.y17e{bottom:745.149600pt;}
.y136{bottom:754.546267pt;}
.yf3{bottom:755.222000pt;}
.y17d{bottom:758.482933pt;}
.y135{bottom:765.876267pt;}
.yf2{bottom:768.554000pt;}
.y90{bottom:772.269733pt;}
.y5{bottom:774.602933pt;}
.y134{bottom:777.206267pt;}
.yf1{bottom:781.886000pt;}
.y17c{bottom:782.492267pt;}
.y8f{bottom:785.601733pt;}
.y133{bottom:788.536267pt;}
.yf0{bottom:795.218000pt;}
.y17b{bottom:795.824267pt;}
.y8e{bottom:798.933733pt;}
.y132{bottom:799.866267pt;}
.y52{bottom:802.077200pt;}
.yef{bottom:808.550000pt;}
.y17a{bottom:809.156267pt;}
.y131{bottom:811.196267pt;}
.y8d{bottom:812.265733pt;}
.y4{bottom:814.608267pt;}
.y51{bottom:815.409200pt;}
.yee{bottom:821.882000pt;}
.y179{bottom:822.488267pt;}
.y130{bottom:822.526267pt;}
.y35{bottom:823.475200pt;}
.y50{bottom:828.741200pt;}
.y12f{bottom:833.856267pt;}
.yed{bottom:835.218000pt;}
.y178{bottom:835.820267pt;}
.y4f{bottom:842.073200pt;}
.y12e{bottom:845.186267pt;}
.yec{bottom:848.550000pt;}
.y177{bottom:849.152267pt;}
.y4e{bottom:855.405200pt;}
.y12d{bottom:856.516267pt;}
.yeb{bottom:861.882000pt;}
.y176{bottom:862.484267pt;}
.y12c{bottom:867.846267pt;}
.yea{bottom:875.214000pt;}
.y175{bottom:875.816267pt;}
.y12b{bottom:879.176267pt;}
.y174{bottom:889.149600pt;}
.y12a{bottom:890.506267pt;}
.ye9{bottom:901.150933pt;}
.y129{bottom:901.836267pt;}
.y128{bottom:913.166267pt;}
.ye8{bottom:914.488267pt;}
.y127{bottom:924.496267pt;}
.ye7{bottom:927.820267pt;}
.y126{bottom:935.826267pt;}
.ye6{bottom:941.152267pt;}
.y125{bottom:947.156267pt;}
.ye5{bottom:954.484267pt;}
.y124{bottom:958.486267pt;}
.ye4{bottom:967.816267pt;}
.y123{bottom:969.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.he{height:21.193555pt;}
.h1f{height:28.640000pt;}
.h3{height:30.687500pt;}
.h10{height:32.605469pt;}
.h9{height:34.368000pt;}
.h1a{height:34.482933pt;}
.h15{height:34.488267pt;}
.h17{height:34.498933pt;}
.h16{height:34.504267pt;}
.h1c{height:34.509600pt;}
.h8{height:34.523438pt;}
.hf{height:36.585555pt;}
.h2{height:38.359375pt;}
.ha{height:38.621867pt;}
.h19{height:38.627200pt;}
.h18{height:38.632533pt;}
.h13{height:38.637867pt;}
.hd{height:38.643200pt;}
.hc{height:38.648533pt;}
.hb{height:38.653867pt;}
.h1b{height:38.658667pt;}
.h12{height:38.659200pt;}
.h4{height:39.318359pt;}
.h14{height:42.195312pt;}
.h7{height:43.066927pt;}
.h6{height:43.067460pt;}
.h1e{height:45.088000pt;}
.h1d{height:45.093333pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:58.367867pt;}
.x8{left:68.575867pt;}
.x6{left:85.855867pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xb{left:212.437467pt;}
.x5{left:223.511067pt;}
.xc{left:266.976533pt;}
.x3{left:519.632533pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}

