
    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_f65225c967138508de341d52.woff')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_8b8cc6c10395789b5c0fdda9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_63b100d6155a6da41e2ff5c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_c56086bb3ec2e2aab96daac3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_c7e9a0455f924b8d49e07c80.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_b5241ba3ff3ca3b1660c31a8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_1ce2646a6eac3f88a576aee4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_def7d1de28884bdc15bdc4ae.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_06cddffbdce55354b13925ad.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_d383ffce8abb348cd558ea9c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986000;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_d383ffce8abb348cd558ea9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986000;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_da91b20180ee318dfe40f9af.woff')format("woff");}.ffc{font-family:ffc;line-height:0.971000;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_b1f628a28f0683335414de2f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.929000;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_e4bb241cfb21bb3198f5910d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.164000;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_0ec6506ae0e14611ad1f44c4.woff')format("woff");}.fff{font-family:fff;line-height:1.251000;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_b61452029a0ea18c39a8100c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.251000;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_5de2a227e7c6cad6de4d2224.woff')format("woff");}.ff11{font-family:ff11;line-height:1.144000;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_daede97d7b91ca7c73350ae3.woff')format("woff");}.ff12{font-family:ff12;line-height:1.008000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.126000px;}
.lsb{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.486000px;}
.lsa{letter-spacing:1.080000px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.498000px;}
.ws1{word-spacing:-10.800000px;}
.ws2{word-spacing:-10.476000px;}
.ws4a{word-spacing:-9.600000px;}
.ws1a{word-spacing:-9.180000px;}
.ws49{word-spacing:-7.461234px;}
.wsa2{word-spacing:-5.724000px;}
.ws50{word-spacing:-5.670000px;}
.ws7f{word-spacing:-5.022000px;}
.ws90{word-spacing:-4.428000px;}
.ws8b{word-spacing:-4.212000px;}
.ws92{word-spacing:-4.050000px;}
.ws43{word-spacing:-3.780000px;}
.ws23{word-spacing:-3.672000px;}
.ws38{word-spacing:-3.618000px;}
.ws8f{word-spacing:-3.564000px;}
.ws94{word-spacing:-3.348000px;}
.ws2b{word-spacing:-3.186000px;}
.ws9a{word-spacing:-3.024000px;}
.ws53{word-spacing:-2.970000px;}
.ws4d{word-spacing:-2.862000px;}
.wsab{word-spacing:-2.808000px;}
.ws60{word-spacing:-2.700000px;}
.ws3f{word-spacing:-2.646000px;}
.ws89{word-spacing:-2.484000px;}
.ws4f{word-spacing:-2.322000px;}
.wsa4{word-spacing:-2.268000px;}
.ws7e{word-spacing:-2.160000px;}
.ws7b{word-spacing:-2.106000px;}
.ws1d{word-spacing:-2.052000px;}
.ws34{word-spacing:-1.998000px;}
.ws77{word-spacing:-1.944000px;}
.ws5a{word-spacing:-1.890000px;}
.ws4b{word-spacing:-1.782000px;}
.ws76{word-spacing:-1.728000px;}
.wsf{word-spacing:-1.674000px;}
.ws17{word-spacing:-1.296000px;}
.ws75{word-spacing:-1.188000px;}
.ws66{word-spacing:-1.134000px;}
.ws5b{word-spacing:-1.080000px;}
.wsd{word-spacing:-1.026000px;}
.ws21{word-spacing:-0.810000px;}
.ws27{word-spacing:-0.756000px;}
.wsa3{word-spacing:-0.702000px;}
.wsa0{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.594000px;}
.wsa1{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.486000px;}
.ws2a{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.270000px;}
.ws1b{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.162000px;}
.ws2d{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws86{word-spacing:0.054000px;}
.ws8{word-spacing:0.108000px;}
.ws78{word-spacing:0.162000px;}
.ws1c{word-spacing:0.216000px;}
.ws83{word-spacing:0.270000px;}
.ws15{word-spacing:0.540000px;}
.ws48{word-spacing:0.648000px;}
.ws30{word-spacing:0.702000px;}
.ws4{word-spacing:0.780000px;}
.ws24{word-spacing:0.810000px;}
.ws19{word-spacing:0.864000px;}
.ws2f{word-spacing:0.918000px;}
.ws87{word-spacing:0.972000px;}
.ws8a{word-spacing:1.080000px;}
.ws32{word-spacing:1.134000px;}
.ws58{word-spacing:1.350000px;}
.ws8d{word-spacing:1.404000px;}
.ws91{word-spacing:1.458000px;}
.ws5{word-spacing:1.512000px;}
.ws7d{word-spacing:1.620000px;}
.ws33{word-spacing:1.674000px;}
.ws9{word-spacing:1.728000px;}
.wsa7{word-spacing:1.944000px;}
.ws88{word-spacing:2.052000px;}
.ws68{word-spacing:2.106000px;}
.ws5f{word-spacing:2.268000px;}
.ws5d{word-spacing:2.322000px;}
.ws3e{word-spacing:2.376000px;}
.ws11{word-spacing:2.430000px;}
.ws51{word-spacing:2.484000px;}
.ws3c{word-spacing:2.646000px;}
.ws52{word-spacing:2.754000px;}
.ws85{word-spacing:2.808000px;}
.ws47{word-spacing:2.916000px;}
.ws5e{word-spacing:2.970000px;}
.ws37{word-spacing:3.132000px;}
.ws6a{word-spacing:3.186000px;}
.ws28{word-spacing:3.240000px;}
.ws25{word-spacing:3.348000px;}
.ws55{word-spacing:3.402000px;}
.ws56{word-spacing:3.618000px;}
.ws7{word-spacing:3.672000px;}
.ws6f{word-spacing:3.726000px;}
.ws12{word-spacing:3.888000px;}
.ws9d{word-spacing:3.942000px;}
.ws59{word-spacing:3.996000px;}
.ws96{word-spacing:4.104000px;}
.ws1e{word-spacing:4.266000px;}
.wsb{word-spacing:4.320000px;}
.wsb1{word-spacing:4.374000px;}
.ws3b{word-spacing:4.428000px;}
.ws9e{word-spacing:4.482000px;}
.wse{word-spacing:4.590000px;}
.ws6b{word-spacing:4.644000px;}
.ws10{word-spacing:4.698000px;}
.ws41{word-spacing:4.806000px;}
.ws46{word-spacing:4.860000px;}
.ws8e{word-spacing:4.914000px;}
.ws70{word-spacing:5.022000px;}
.wsaa{word-spacing:5.076000px;}
.wsa9{word-spacing:5.130000px;}
.ws6c{word-spacing:5.238000px;}
.wsa8{word-spacing:5.292000px;}
.ws26{word-spacing:5.400000px;}
.wsb0{word-spacing:5.562000px;}
.ws42{word-spacing:5.616000px;}
.ws20{word-spacing:5.670000px;}
.ws9b{word-spacing:5.724000px;}
.ws64{word-spacing:5.886000px;}
.ws4e{word-spacing:5.940000px;}
.ws18{word-spacing:5.994000px;}
.ws39{word-spacing:6.048000px;}
.ws36{word-spacing:6.210000px;}
.wsc{word-spacing:6.264000px;}
.ws79{word-spacing:6.372000px;}
.wsa5{word-spacing:6.426000px;}
.ws81{word-spacing:6.534000px;}
.wsaf{word-spacing:6.696000px;}
.wsa{word-spacing:6.804000px;}
.ws95{word-spacing:6.912000px;}
.ws63{word-spacing:7.128000px;}
.ws82{word-spacing:7.290000px;}
.ws31{word-spacing:7.344000px;}
.ws2e{word-spacing:7.452000px;}
.ws8c{word-spacing:7.506000px;}
.ws29{word-spacing:7.560000px;}
.ws6d{word-spacing:7.722000px;}
.ws73{word-spacing:7.776000px;}
.ws61{word-spacing:7.830000px;}
.ws2c{word-spacing:8.100000px;}
.ws6{word-spacing:8.208000px;}
.ws45{word-spacing:8.316000px;}
.ws74{word-spacing:8.370000px;}
.ws72{word-spacing:8.424000px;}
.ws65{word-spacing:8.478000px;}
.ws3a{word-spacing:8.586000px;}
.ws9c{word-spacing:8.640000px;}
.ws57{word-spacing:8.694000px;}
.ws99{word-spacing:8.910000px;}
.ws40{word-spacing:9.018000px;}
.ws1f{word-spacing:9.072000px;}
.wsad{word-spacing:9.504000px;}
.ws62{word-spacing:9.612000px;}
.ws35{word-spacing:10.962000px;}
.ws98{word-spacing:11.070000px;}
.ws97{word-spacing:11.232000px;}
.ws6e{word-spacing:11.286000px;}
.wsae{word-spacing:11.394000px;}
.ws5c{word-spacing:12.096000px;}
.ws16{word-spacing:12.474000px;}
.ws3d{word-spacing:13.500000px;}
.ws7c{word-spacing:13.662000px;}
.ws84{word-spacing:13.716000px;}
.ws7a{word-spacing:14.418000px;}
.ws93{word-spacing:14.742000px;}
.ws69{word-spacing:14.904000px;}
.ws4c{word-spacing:15.606000px;}
.ws80{word-spacing:16.740000px;}
.ws9f{word-spacing:16.956000px;}
.ws54{word-spacing:17.064000px;}
.ws71{word-spacing:19.278000px;}
.wsa6{word-spacing:20.790000px;}
.wsac{word-spacing:22.464000px;}
._4{margin-left:-15.493800px;}
._12{margin-left:-12.744000px;}
._15{margin-left:-8.615400px;}
._13{margin-left:-7.310400px;}
._3{margin-left:-6.295800px;}
._5{margin-left:-5.208000px;}
._e{margin-left:-3.558600px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.260000px;}
._0{width:1.255800px;}
._7{width:3.018600px;}
._a{width:4.023000px;}
._6{width:5.081400px;}
._8{width:7.005600px;}
._d{width:8.015400px;}
._10{width:9.041400px;}
._b{width:10.071000px;}
._9{width:11.151000px;}
._c{width:13.964400px;}
._14{width:15.390000px;}
._11{width:16.448400px;}
._18{width:18.484200px;}
._16{width:38.400000px;}
._f{width:72.792000px;}
._17{width:73.872000px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(167,165,166);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(174,174,174);}
.fs8{font-size:31.482000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:127.392600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:53.621700px;}
.y29{bottom:53.624700px;}
.y2a{bottom:67.124700px;}
.y1{bottom:74.963700px;}
.ybc{bottom:106.299300px;}
.y197{bottom:109.935450px;}
.ye6{bottom:112.882950px;}
.ya0{bottom:112.891950px;}
.y78{bottom:112.896450px;}
.y52{bottom:112.918950px;}
.y10f{bottom:112.941450px;}
.y175{bottom:112.986450px;}
.y159{bottom:112.999950px;}
.y16b{bottom:113.008950px;}
.y128{bottom:113.026950px;}
.ybb{bottom:120.699300px;}
.y196{bottom:129.435450px;}
.ycc{bottom:129.564900px;}
.y134{bottom:135.099300px;}
.ye5{bottom:135.387450px;}
.y9f{bottom:135.396450px;}
.y77{bottom:135.400950px;}
.y51{bottom:135.423450px;}
.y10e{bottom:135.445950px;}
.y174{bottom:135.490950px;}
.y158{bottom:135.504450px;}
.y16a{bottom:135.513450px;}
.y14c{bottom:135.522450px;}
.y127{bottom:135.531450px;}
.y133{bottom:149.499300px;}
.y26{bottom:156.167250px;}
.ye4{bottom:157.891950px;}
.y9e{bottom:157.900950px;}
.y76{bottom:157.905450px;}
.y50{bottom:157.927950px;}
.yba{bottom:157.968450px;}
.y173{bottom:157.995450px;}
.y157{bottom:158.008950px;}
.y169{bottom:158.017950px;}
.y14b{bottom:158.026950px;}
.y195{bottom:161.691450px;}
.y25{bottom:178.671750px;}
.ye3{bottom:180.396450px;}
.y9d{bottom:180.405450px;}
.y75{bottom:180.409950px;}
.y4f{bottom:180.432450px;}
.y10d{bottom:180.441450px;}
.yb9{bottom:180.472950px;}
.y146{bottom:180.490950px;}
.y172{bottom:180.499950px;}
.y156{bottom:180.513450px;}
.y168{bottom:180.522450px;}
.y126{bottom:180.531450px;}
.y194{bottom:181.191450px;}
.y1bd{bottom:185.114700px;}
.y24{bottom:201.176250px;}
.ye2{bottom:202.900950px;}
.y9c{bottom:202.909950px;}
.y74{bottom:202.914450px;}
.y4e{bottom:202.936950px;}
.y10c{bottom:202.945950px;}
.yb8{bottom:202.977450px;}
.y145{bottom:202.995450px;}
.y171{bottom:203.004450px;}
.y155{bottom:203.017950px;}
.y167{bottom:203.026950px;}
.y193{bottom:213.447450px;}
.y1bc{bottom:217.370700px;}
.y23{bottom:223.680750px;}
.ye1{bottom:225.405450px;}
.y9b{bottom:225.414450px;}
.y73{bottom:225.418950px;}
.y4d{bottom:225.441450px;}
.y10b{bottom:225.450450px;}
.y151{bottom:225.468450px;}
.yb7{bottom:225.481950px;}
.y144{bottom:225.499950px;}
.y125{bottom:225.508950px;}
.y132{bottom:225.517950px;}
.y154{bottom:225.522450px;}
.y14a{bottom:225.531450px;}
.y192{bottom:232.947450px;}
.y1bb{bottom:236.870700px;}
.y22{bottom:246.185250px;}
.yed{bottom:247.909950px;}
.y9a{bottom:247.918950px;}
.y72{bottom:247.923450px;}
.y4c{bottom:247.945950px;}
.y10a{bottom:247.954950px;}
.y150{bottom:247.972950px;}
.y143{bottom:248.004450px;}
.y124{bottom:248.013450px;}
.y131{bottom:248.022450px;}
.y153{bottom:248.026950px;}
.y191{bottom:252.447450px;}
.y21{bottom:268.689750px;}
.y1ba{bottom:269.126700px;}
.ye0{bottom:270.400950px;}
.yec{bottom:270.414450px;}
.y71{bottom:270.427950px;}
.y109{bottom:270.459450px;}
.yb6{bottom:270.477450px;}
.y142{bottom:270.508950px;}
.y123{bottom:270.517950px;}
.y130{bottom:270.526950px;}
.y166{bottom:270.531450px;}
.y190{bottom:284.703450px;}
.y1b9{bottom:288.626700px;}
.y20{bottom:291.194250px;}
.ydf{bottom:292.905450px;}
.y99{bottom:292.914450px;}
.yeb{bottom:292.918950px;}
.y70{bottom:292.932450px;}
.y4b{bottom:292.941450px;}
.y108{bottom:292.963950px;}
.yb5{bottom:292.981950px;}
.y141{bottom:293.013450px;}
.y122{bottom:293.022450px;}
.y149{bottom:307.972350px;}
.y1b8{bottom:308.126700px;}
.y1f{bottom:313.698750px;}
.yde{bottom:315.409950px;}
.y98{bottom:315.418950px;}
.yea{bottom:315.423450px;}
.y6f{bottom:315.436950px;}
.y4a{bottom:315.445950px;}
.y107{bottom:315.468450px;}
.yb4{bottom:315.486450px;}
.y140{bottom:315.517950px;}
.y121{bottom:315.526950px;}
.y18f{bottom:316.959450px;}
.y1e{bottom:336.203250px;}
.ydd{bottom:337.914450px;}
.y97{bottom:337.923450px;}
.ye9{bottom:337.927950px;}
.y49{bottom:337.950450px;}
.y106{bottom:337.972950px;}
.yb3{bottom:337.990950px;}
.y165{bottom:337.999950px;}
.y13f{bottom:338.022450px;}
.y120{bottom:338.031450px;}
.y1b7{bottom:340.382700px;}
.y18e{bottom:349.215450px;}
.y1d{bottom:358.707750px;}
.y1b6{bottom:359.882700px;}
.ydc{bottom:360.418950px;}
.y96{bottom:360.427950px;}
.y6e{bottom:360.432450px;}
.y48{bottom:360.454950px;}
.yb2{bottom:360.495450px;}
.y164{bottom:360.504450px;}
.y13e{bottom:360.526950px;}
.y18d{bottom:368.715450px;}
.ydb{bottom:382.923450px;}
.y95{bottom:382.932450px;}
.y6d{bottom:382.936950px;}
.y105{bottom:382.968450px;}
.y14f{bottom:382.999950px;}
.y11f{bottom:383.031450px;}
.y18c{bottom:388.215450px;}
.y1b5{bottom:392.138700px;}
.y1c{bottom:403.703250px;}
.yda{bottom:405.427950px;}
.y94{bottom:405.436950px;}
.y6c{bottom:405.441450px;}
.y47{bottom:405.450450px;}
.y104{bottom:405.472950px;}
.yb1{bottom:405.490950px;}
.y163{bottom:405.499950px;}
.y14e{bottom:405.504450px;}
.y13d{bottom:405.535950px;}
.y18b{bottom:407.715450px;}
.y1b4{bottom:411.638700px;}
.yd9{bottom:427.932450px;}
.y93{bottom:427.941450px;}
.y6b{bottom:427.945950px;}
.y46{bottom:427.954950px;}
.y103{bottom:427.977450px;}
.yb0{bottom:427.995450px;}
.y162{bottom:428.004450px;}
.y13c{bottom:428.040450px;}
.y1b3{bottom:431.138700px;}
.y18a{bottom:439.971450px;}
.y1b{bottom:448.698750px;}
.yd8{bottom:450.436950px;}
.y92{bottom:450.445950px;}
.y6a{bottom:450.450450px;}
.y45{bottom:450.459450px;}
.y11e{bottom:450.463950px;}
.y102{bottom:450.481950px;}
.yaf{bottom:450.499950px;}
.y161{bottom:450.508950px;}
.y170{bottom:450.526950px;}
.y1b2{bottom:463.394700px;}
.y1a{bottom:471.203250px;}
.y189{bottom:472.227450px;}
.ye8{bottom:472.941450px;}
.y91{bottom:472.950450px;}
.y44{bottom:472.963950px;}
.y11d{bottom:472.968450px;}
.y101{bottom:472.986450px;}
.yae{bottom:473.004450px;}
.y160{bottom:473.013450px;}
.y16f{bottom:473.031450px;}
.y13b{bottom:473.035950px;}
.y188{bottom:491.727450px;}
.y19{bottom:493.707750px;}
.yd7{bottom:495.432450px;}
.y69{bottom:495.445950px;}
.y90{bottom:495.454950px;}
.y43{bottom:495.468450px;}
.y11c{bottom:495.472950px;}
.yad{bottom:495.508950px;}
.y15f{bottom:495.517950px;}
.y1b1{bottom:495.650700px;}
.y18{bottom:516.212250px;}
.yd6{bottom:517.936950px;}
.y68{bottom:517.950450px;}
.y42{bottom:517.972950px;}
.y11b{bottom:517.977450px;}
.y100{bottom:517.981950px;}
.yac{bottom:518.013450px;}
.y13a{bottom:518.022450px;}
.y16e{bottom:518.031450px;}
.y187{bottom:523.983450px;}
.y1b0{bottom:527.906700px;}
.y17{bottom:538.716750px;}
.yd5{bottom:540.441450px;}
.y8f{bottom:540.450450px;}
.y67{bottom:540.454950px;}
.y41{bottom:540.477450px;}
.yab{bottom:540.517950px;}
.y139{bottom:540.526950px;}
.y186{bottom:543.483450px;}
.y1af{bottom:547.406700px;}
.y16{bottom:561.221250px;}
.yd4{bottom:562.945950px;}
.y8e{bottom:562.954950px;}
.y66{bottom:562.959450px;}
.y11a{bottom:562.972950px;}
.yff{bottom:562.977450px;}
.y40{bottom:562.981950px;}
.y15e{bottom:563.017950px;}
.yaa{bottom:563.022450px;}
.y138{bottom:563.031450px;}
.y185{bottom:575.739450px;}
.y1ae{bottom:579.662700px;}
.y15{bottom:583.725750px;}
.yd3{bottom:585.450450px;}
.y8d{bottom:585.459450px;}
.y65{bottom:585.463950px;}
.y119{bottom:585.477450px;}
.yfe{bottom:585.481950px;}
.y15d{bottom:585.522450px;}
.ya9{bottom:585.526950px;}
.y184{bottom:595.239450px;}
.y1ad{bottom:599.162700px;}
.y14{bottom:606.230250px;}
.yd2{bottom:607.954950px;}
.y8c{bottom:607.963950px;}
.y64{bottom:607.968450px;}
.y3f{bottom:607.977450px;}
.y118{bottom:607.981950px;}
.yfd{bottom:607.986450px;}
.y15c{bottom:608.026950px;}
.ya8{bottom:608.031450px;}
.y183{bottom:614.739450px;}
.y1ac{bottom:618.662700px;}
.y13{bottom:628.734750px;}
.y16d{bottom:630.459450px;}
.y8b{bottom:630.468450px;}
.y63{bottom:630.472950px;}
.y3e{bottom:630.481950px;}
.y117{bottom:630.486450px;}
.yfc{bottom:630.490950px;}
.y15b{bottom:630.531450px;}
.y182{bottom:646.995450px;}
.y1ab{bottom:650.918700px;}
.y12{bottom:651.239250px;}
.yd1{bottom:652.950450px;}
.y16c{bottom:652.963950px;}
.y8a{bottom:652.972950px;}
.y62{bottom:652.977450px;}
.y3d{bottom:652.986450px;}
.yfb{bottom:652.995450px;}
.ya7{bottom:653.031450px;}
.ycb{bottom:669.717450px;}
.y11{bottom:673.743750px;}
.yd0{bottom:675.454950px;}
.ye7{bottom:675.468450px;}
.y116{bottom:675.481950px;}
.y3c{bottom:675.490950px;}
.y181{bottom:679.251450px;}
.y14d{bottom:682.868100px;}
.y1aa{bottom:683.174700px;}
.y152{bottom:689.763750px;}
.yca{bottom:690.466950px;}
.y137{bottom:694.895400px;}
.y10{bottom:696.248250px;}
.y15a{bottom:697.204650px;}
.ycf{bottom:697.959450px;}
.y89{bottom:697.968450px;}
.y61{bottom:697.972950px;}
.y115{bottom:697.986450px;}
.yfa{bottom:697.990950px;}
.y3b{bottom:697.995450px;}
.ya6{bottom:698.008950px;}
.y1a9{bottom:702.674700px;}
.y180{bottom:711.507450px;}
.yf{bottom:718.752750px;}
.yce{bottom:720.463950px;}
.y88{bottom:720.472950px;}
.y60{bottom:720.477450px;}
.y114{bottom:720.490950px;}
.yf9{bottom:720.495450px;}
.y3a{bottom:720.499950px;}
.ya5{bottom:720.513450px;}
.y1a8{bottom:722.174700px;}
.y17f{bottom:731.007450px;}
.y148{bottom:737.230950px;}
.ye{bottom:741.257250px;}
.ycd{bottom:742.968450px;}
.y87{bottom:742.977450px;}
.y5f{bottom:742.981950px;}
.y113{bottom:742.995450px;}
.yf8{bottom:742.999950px;}
.y39{bottom:743.004450px;}
.ya4{bottom:743.017950px;}
.y1a7{bottom:754.430700px;}
.y147{bottom:757.980450px;}
.y17e{bottom:763.263450px;}
.y12f{bottom:765.459450px;}
.yc9{bottom:765.472950px;}
.y86{bottom:765.481950px;}
.y5e{bottom:765.486450px;}
.y112{bottom:765.499950px;}
.yf7{bottom:765.504450px;}
.y38{bottom:765.508950px;}
.ya3{bottom:765.522450px;}
.y1a6{bottom:773.930700px;}
.y17d{bottom:782.763450px;}
.y12e{bottom:787.963950px;}
.yc8{bottom:787.977450px;}
.y85{bottom:787.986450px;}
.y5d{bottom:787.990950px;}
.yf6{bottom:788.008950px;}
.ya2{bottom:788.026950px;}
.yd{bottom:788.048250px;}
.y1a5{bottom:793.430700px;}
.y17c{bottom:802.263450px;}
.y12d{bottom:810.468450px;}
.yc7{bottom:810.481950px;}
.y84{bottom:810.490950px;}
.y5c{bottom:810.495450px;}
.y37{bottom:810.504450px;}
.y1a4{bottom:825.686700px;}
.y12c{bottom:832.972950px;}
.yc6{bottom:832.986450px;}
.y83{bottom:832.995450px;}
.y5b{bottom:832.999950px;}
.yf5{bottom:833.004450px;}
.y36{bottom:833.008950px;}
.y17b{bottom:834.519450px;}
.y1a3{bottom:845.186700px;}
.yc{bottom:848.815950px;}
.y12b{bottom:855.477450px;}
.yc5{bottom:855.490950px;}
.y82{bottom:855.499950px;}
.y5a{bottom:855.504450px;}
.yf4{bottom:855.508950px;}
.y35{bottom:855.513450px;}
.yb{bottom:865.315950px;}
.y17a{bottom:866.775450px;}
.y1a2{bottom:877.442700px;}
.y12a{bottom:877.981950px;}
.ya1{bottom:877.995450px;}
.y81{bottom:878.004450px;}
.y111{bottom:878.008950px;}
.yf3{bottom:878.013450px;}
.y34{bottom:878.017950px;}
.y179{bottom:886.275450px;}
.ya{bottom:888.193950px;}
.y1a1{bottom:896.942700px;}
.y129{bottom:900.486450px;}
.y59{bottom:900.499950px;}
.y110{bottom:900.513450px;}
.yf2{bottom:900.517950px;}
.y33{bottom:900.522450px;}
.y178{bottom:905.775450px;}
.yc4{bottom:922.990950px;}
.y80{bottom:922.999950px;}
.y58{bottom:923.004450px;}
.yf1{bottom:923.022450px;}
.y32{bottom:923.026950px;}
.y1a0{bottom:929.198700px;}
.y177{bottom:938.031450px;}
.yc3{bottom:945.495450px;}
.y7f{bottom:945.504450px;}
.y57{bottom:945.508950px;}
.yf0{bottom:945.526950px;}
.y31{bottom:945.531450px;}
.y9{bottom:948.214500px;}
.y19f{bottom:948.698700px;}
.y176{bottom:957.531450px;}
.yc2{bottom:967.999950px;}
.y7e{bottom:968.008950px;}
.y56{bottom:968.013450px;}
.yef{bottom:968.031450px;}
.y8{bottom:970.717500px;}
.y19e{bottom:980.954700px;}
.yc1{bottom:990.504450px;}
.y7d{bottom:990.513450px;}
.y55{bottom:990.517950px;}
.y30{bottom:990.531450px;}
.y7{bottom:1005.973500px;}
.yc0{bottom:1013.008950px;}
.y7c{bottom:1013.017950px;}
.y54{bottom:1013.022450px;}
.yee{bottom:1013.031450px;}
.y19d{bottom:1013.210700px;}
.y19c{bottom:1032.710700px;}
.ybf{bottom:1035.513450px;}
.y7b{bottom:1035.522450px;}
.y53{bottom:1035.526950px;}
.y6{bottom:1038.973500px;}
.y19b{bottom:1052.210700px;}
.ybe{bottom:1058.017950px;}
.y7a{bottom:1058.026950px;}
.y2f{bottom:1058.031450px;}
.y5{bottom:1071.973500px;}
.ybd{bottom:1080.522450px;}
.y79{bottom:1080.531450px;}
.y19a{bottom:1084.466700px;}
.y2e{bottom:1103.026950px;}
.y199{bottom:1103.966700px;}
.y136{bottom:1113.781950px;}
.y2d{bottom:1125.531450px;}
.y135{bottom:1134.531450px;}
.y198{bottom:1136.222700px;}
.y4{bottom:1150.626300px;}
.y3{bottom:1162.743300px;}
.y2{bottom:1174.860300px;}
.y28{bottom:1182.887700px;}
.y2c{bottom:1197.026700px;}
.y27{bottom:1199.384700px;}
.h3{height:33.012000px;}
.h12{height:34.080000px;}
.h8{height:36.624000px;}
.hd{height:36.816000px;}
.hb{height:38.340000px;}
.ha{height:39.420000px;}
.h9{height:41.202000px;}
.hc{height:42.444000px;}
.h7{height:43.800000px;}
.h13{height:44.280000px;}
.h16{height:47.088000px;}
.hf{height:52.974000px;}
.h15{height:53.010000px;}
.h10{height:53.118000px;}
.h14{height:53.424000px;}
.h5{height:55.380000px;}
.he{height:59.004000px;}
.h6{height:59.514000px;}
.h11{height:64.746000px;}
.h4{height:88.440000px;}
.h2{height:97.710124px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:114.803100px;}
.x5{left:127.009050px;}
.x9{left:141.803100px;}
.xd{left:148.823100px;}
.xc{left:209.303100px;}
.x3{left:585.415800px;}
.x4{left:623.131800px;}
.x2{left:677.563800px;}
.xa{left:724.829100px;}
.x8{left:726.962550px;}
.x6{left:729.192150px;}
.xb{left:730.306950px;}
.x7{left:732.906750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.112000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.432000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls0{letter-spacing:4.853333pt;}
.ws0{word-spacing:-13.776000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws2{word-spacing:-9.312000pt;}
.ws4a{word-spacing:-8.533333pt;}
.ws1a{word-spacing:-8.160000pt;}
.ws49{word-spacing:-6.632208pt;}
.wsa2{word-spacing:-5.088000pt;}
.ws50{word-spacing:-5.040000pt;}
.ws7f{word-spacing:-4.464000pt;}
.ws90{word-spacing:-3.936000pt;}
.ws8b{word-spacing:-3.744000pt;}
.ws92{word-spacing:-3.600000pt;}
.ws43{word-spacing:-3.360000pt;}
.ws23{word-spacing:-3.264000pt;}
.ws38{word-spacing:-3.216000pt;}
.ws8f{word-spacing:-3.168000pt;}
.ws94{word-spacing:-2.976000pt;}
.ws2b{word-spacing:-2.832000pt;}
.ws9a{word-spacing:-2.688000pt;}
.ws53{word-spacing:-2.640000pt;}
.ws4d{word-spacing:-2.544000pt;}
.wsab{word-spacing:-2.496000pt;}
.ws60{word-spacing:-2.400000pt;}
.ws3f{word-spacing:-2.352000pt;}
.ws89{word-spacing:-2.208000pt;}
.ws4f{word-spacing:-2.064000pt;}
.wsa4{word-spacing:-2.016000pt;}
.ws7e{word-spacing:-1.920000pt;}
.ws7b{word-spacing:-1.872000pt;}
.ws1d{word-spacing:-1.824000pt;}
.ws34{word-spacing:-1.776000pt;}
.ws77{word-spacing:-1.728000pt;}
.ws5a{word-spacing:-1.680000pt;}
.ws4b{word-spacing:-1.584000pt;}
.ws76{word-spacing:-1.536000pt;}
.wsf{word-spacing:-1.488000pt;}
.ws17{word-spacing:-1.152000pt;}
.ws75{word-spacing:-1.056000pt;}
.ws66{word-spacing:-1.008000pt;}
.ws5b{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.720000pt;}
.ws27{word-spacing:-0.672000pt;}
.wsa3{word-spacing:-0.624000pt;}
.wsa0{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.528000pt;}
.wsa1{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.432000pt;}
.ws2a{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.240000pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.144000pt;}
.ws2d{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws86{word-spacing:0.048000pt;}
.ws8{word-spacing:0.096000pt;}
.ws78{word-spacing:0.144000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws83{word-spacing:0.240000pt;}
.ws15{word-spacing:0.480000pt;}
.ws48{word-spacing:0.576000pt;}
.ws30{word-spacing:0.624000pt;}
.ws4{word-spacing:0.693333pt;}
.ws24{word-spacing:0.720000pt;}
.ws19{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.816000pt;}
.ws87{word-spacing:0.864000pt;}
.ws8a{word-spacing:0.960000pt;}
.ws32{word-spacing:1.008000pt;}
.ws58{word-spacing:1.200000pt;}
.ws8d{word-spacing:1.248000pt;}
.ws91{word-spacing:1.296000pt;}
.ws5{word-spacing:1.344000pt;}
.ws7d{word-spacing:1.440000pt;}
.ws33{word-spacing:1.488000pt;}
.ws9{word-spacing:1.536000pt;}
.wsa7{word-spacing:1.728000pt;}
.ws88{word-spacing:1.824000pt;}
.ws68{word-spacing:1.872000pt;}
.ws5f{word-spacing:2.016000pt;}
.ws5d{word-spacing:2.064000pt;}
.ws3e{word-spacing:2.112000pt;}
.ws11{word-spacing:2.160000pt;}
.ws51{word-spacing:2.208000pt;}
.ws3c{word-spacing:2.352000pt;}
.ws52{word-spacing:2.448000pt;}
.ws85{word-spacing:2.496000pt;}
.ws47{word-spacing:2.592000pt;}
.ws5e{word-spacing:2.640000pt;}
.ws37{word-spacing:2.784000pt;}
.ws6a{word-spacing:2.832000pt;}
.ws28{word-spacing:2.880000pt;}
.ws25{word-spacing:2.976000pt;}
.ws55{word-spacing:3.024000pt;}
.ws56{word-spacing:3.216000pt;}
.ws7{word-spacing:3.264000pt;}
.ws6f{word-spacing:3.312000pt;}
.ws12{word-spacing:3.456000pt;}
.ws9d{word-spacing:3.504000pt;}
.ws59{word-spacing:3.552000pt;}
.ws96{word-spacing:3.648000pt;}
.ws1e{word-spacing:3.792000pt;}
.wsb{word-spacing:3.840000pt;}
.wsb1{word-spacing:3.888000pt;}
.ws3b{word-spacing:3.936000pt;}
.ws9e{word-spacing:3.984000pt;}
.wse{word-spacing:4.080000pt;}
.ws6b{word-spacing:4.128000pt;}
.ws10{word-spacing:4.176000pt;}
.ws41{word-spacing:4.272000pt;}
.ws46{word-spacing:4.320000pt;}
.ws8e{word-spacing:4.368000pt;}
.ws70{word-spacing:4.464000pt;}
.wsaa{word-spacing:4.512000pt;}
.wsa9{word-spacing:4.560000pt;}
.ws6c{word-spacing:4.656000pt;}
.wsa8{word-spacing:4.704000pt;}
.ws26{word-spacing:4.800000pt;}
.wsb0{word-spacing:4.944000pt;}
.ws42{word-spacing:4.992000pt;}
.ws20{word-spacing:5.040000pt;}
.ws9b{word-spacing:5.088000pt;}
.ws64{word-spacing:5.232000pt;}
.ws4e{word-spacing:5.280000pt;}
.ws18{word-spacing:5.328000pt;}
.ws39{word-spacing:5.376000pt;}
.ws36{word-spacing:5.520000pt;}
.wsc{word-spacing:5.568000pt;}
.ws79{word-spacing:5.664000pt;}
.wsa5{word-spacing:5.712000pt;}
.ws81{word-spacing:5.808000pt;}
.wsaf{word-spacing:5.952000pt;}
.wsa{word-spacing:6.048000pt;}
.ws95{word-spacing:6.144000pt;}
.ws63{word-spacing:6.336000pt;}
.ws82{word-spacing:6.480000pt;}
.ws31{word-spacing:6.528000pt;}
.ws2e{word-spacing:6.624000pt;}
.ws8c{word-spacing:6.672000pt;}
.ws29{word-spacing:6.720000pt;}
.ws6d{word-spacing:6.864000pt;}
.ws73{word-spacing:6.912000pt;}
.ws61{word-spacing:6.960000pt;}
.ws2c{word-spacing:7.200000pt;}
.ws6{word-spacing:7.296000pt;}
.ws45{word-spacing:7.392000pt;}
.ws74{word-spacing:7.440000pt;}
.ws72{word-spacing:7.488000pt;}
.ws65{word-spacing:7.536000pt;}
.ws3a{word-spacing:7.632000pt;}
.ws9c{word-spacing:7.680000pt;}
.ws57{word-spacing:7.728000pt;}
.ws99{word-spacing:7.920000pt;}
.ws40{word-spacing:8.016000pt;}
.ws1f{word-spacing:8.064000pt;}
.wsad{word-spacing:8.448000pt;}
.ws62{word-spacing:8.544000pt;}
.ws35{word-spacing:9.744000pt;}
.ws98{word-spacing:9.840000pt;}
.ws97{word-spacing:9.984000pt;}
.ws6e{word-spacing:10.032000pt;}
.wsae{word-spacing:10.128000pt;}
.ws5c{word-spacing:10.752000pt;}
.ws16{word-spacing:11.088000pt;}
.ws3d{word-spacing:12.000000pt;}
.ws7c{word-spacing:12.144000pt;}
.ws84{word-spacing:12.192000pt;}
.ws7a{word-spacing:12.816000pt;}
.ws93{word-spacing:13.104000pt;}
.ws69{word-spacing:13.248000pt;}
.ws4c{word-spacing:13.872000pt;}
.ws80{word-spacing:14.880000pt;}
.ws9f{word-spacing:15.072000pt;}
.ws54{word-spacing:15.168000pt;}
.ws71{word-spacing:17.136000pt;}
.wsa6{word-spacing:18.480000pt;}
.wsac{word-spacing:19.968000pt;}
._4{margin-left:-13.772267pt;}
._12{margin-left:-11.328000pt;}
._15{margin-left:-7.658133pt;}
._13{margin-left:-6.498133pt;}
._3{margin-left:-5.596267pt;}
._5{margin-left:-4.629333pt;}
._e{margin-left:-3.163200pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.116267pt;}
._7{width:2.683200pt;}
._a{width:3.576000pt;}
._6{width:4.516800pt;}
._8{width:6.227200pt;}
._d{width:7.124800pt;}
._10{width:8.036800pt;}
._b{width:8.952000pt;}
._9{width:9.912000pt;}
._c{width:12.412800pt;}
._14{width:13.680000pt;}
._11{width:14.620800pt;}
._18{width:16.430400pt;}
._16{width:34.133333pt;}
._f{width:64.704000pt;}
._17{width:65.664000pt;}
.fs8{font-size:27.984000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:113.237867pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:47.663733pt;}
.y29{bottom:47.666400pt;}
.y2a{bottom:59.666400pt;}
.y1{bottom:66.634400pt;}
.ybc{bottom:94.488267pt;}
.y197{bottom:97.720400pt;}
.ye6{bottom:100.340400pt;}
.ya0{bottom:100.348400pt;}
.y78{bottom:100.352400pt;}
.y52{bottom:100.372400pt;}
.y10f{bottom:100.392400pt;}
.y175{bottom:100.432400pt;}
.y159{bottom:100.444400pt;}
.y16b{bottom:100.452400pt;}
.y128{bottom:100.468400pt;}
.ybb{bottom:107.288267pt;}
.y196{bottom:115.053733pt;}
.ycc{bottom:115.168800pt;}
.y134{bottom:120.088267pt;}
.ye5{bottom:120.344400pt;}
.y9f{bottom:120.352400pt;}
.y77{bottom:120.356400pt;}
.y51{bottom:120.376400pt;}
.y10e{bottom:120.396400pt;}
.y174{bottom:120.436400pt;}
.y158{bottom:120.448400pt;}
.y16a{bottom:120.456400pt;}
.y14c{bottom:120.464400pt;}
.y127{bottom:120.472400pt;}
.y133{bottom:132.888267pt;}
.y26{bottom:138.815333pt;}
.ye4{bottom:140.348400pt;}
.y9e{bottom:140.356400pt;}
.y76{bottom:140.360400pt;}
.y50{bottom:140.380400pt;}
.yba{bottom:140.416400pt;}
.y173{bottom:140.440400pt;}
.y157{bottom:140.452400pt;}
.y169{bottom:140.460400pt;}
.y14b{bottom:140.468400pt;}
.y195{bottom:143.725733pt;}
.y25{bottom:158.819333pt;}
.ye3{bottom:160.352400pt;}
.y9d{bottom:160.360400pt;}
.y75{bottom:160.364400pt;}
.y4f{bottom:160.384400pt;}
.y10d{bottom:160.392400pt;}
.yb9{bottom:160.420400pt;}
.y146{bottom:160.436400pt;}
.y172{bottom:160.444400pt;}
.y156{bottom:160.456400pt;}
.y168{bottom:160.464400pt;}
.y126{bottom:160.472400pt;}
.y194{bottom:161.059067pt;}
.y1bd{bottom:164.546400pt;}
.y24{bottom:178.823333pt;}
.ye2{bottom:180.356400pt;}
.y9c{bottom:180.364400pt;}
.y74{bottom:180.368400pt;}
.y4e{bottom:180.388400pt;}
.y10c{bottom:180.396400pt;}
.yb8{bottom:180.424400pt;}
.y145{bottom:180.440400pt;}
.y171{bottom:180.448400pt;}
.y155{bottom:180.460400pt;}
.y167{bottom:180.468400pt;}
.y193{bottom:189.731067pt;}
.y1bc{bottom:193.218400pt;}
.y23{bottom:198.827333pt;}
.ye1{bottom:200.360400pt;}
.y9b{bottom:200.368400pt;}
.y73{bottom:200.372400pt;}
.y4d{bottom:200.392400pt;}
.y10b{bottom:200.400400pt;}
.y151{bottom:200.416400pt;}
.yb7{bottom:200.428400pt;}
.y144{bottom:200.444400pt;}
.y125{bottom:200.452400pt;}
.y132{bottom:200.460400pt;}
.y154{bottom:200.464400pt;}
.y14a{bottom:200.472400pt;}
.y192{bottom:207.064400pt;}
.y1bb{bottom:210.551733pt;}
.y22{bottom:218.831333pt;}
.yed{bottom:220.364400pt;}
.y9a{bottom:220.372400pt;}
.y72{bottom:220.376400pt;}
.y4c{bottom:220.396400pt;}
.y10a{bottom:220.404400pt;}
.y150{bottom:220.420400pt;}
.y143{bottom:220.448400pt;}
.y124{bottom:220.456400pt;}
.y131{bottom:220.464400pt;}
.y153{bottom:220.468400pt;}
.y191{bottom:224.397733pt;}
.y21{bottom:238.835333pt;}
.y1ba{bottom:239.223733pt;}
.ye0{bottom:240.356400pt;}
.yec{bottom:240.368400pt;}
.y71{bottom:240.380400pt;}
.y109{bottom:240.408400pt;}
.yb6{bottom:240.424400pt;}
.y142{bottom:240.452400pt;}
.y123{bottom:240.460400pt;}
.y130{bottom:240.468400pt;}
.y166{bottom:240.472400pt;}
.y190{bottom:253.069733pt;}
.y1b9{bottom:256.557067pt;}
.y20{bottom:258.839333pt;}
.ydf{bottom:260.360400pt;}
.y99{bottom:260.368400pt;}
.yeb{bottom:260.372400pt;}
.y70{bottom:260.384400pt;}
.y4b{bottom:260.392400pt;}
.y108{bottom:260.412400pt;}
.yb5{bottom:260.428400pt;}
.y141{bottom:260.456400pt;}
.y122{bottom:260.464400pt;}
.y149{bottom:273.753200pt;}
.y1b8{bottom:273.890400pt;}
.y1f{bottom:278.843333pt;}
.yde{bottom:280.364400pt;}
.y98{bottom:280.372400pt;}
.yea{bottom:280.376400pt;}
.y6f{bottom:280.388400pt;}
.y4a{bottom:280.396400pt;}
.y107{bottom:280.416400pt;}
.yb4{bottom:280.432400pt;}
.y140{bottom:280.460400pt;}
.y121{bottom:280.468400pt;}
.y18f{bottom:281.741733pt;}
.y1e{bottom:298.847333pt;}
.ydd{bottom:300.368400pt;}
.y97{bottom:300.376400pt;}
.ye9{bottom:300.380400pt;}
.y49{bottom:300.400400pt;}
.y106{bottom:300.420400pt;}
.yb3{bottom:300.436400pt;}
.y165{bottom:300.444400pt;}
.y13f{bottom:300.464400pt;}
.y120{bottom:300.472400pt;}
.y1b7{bottom:302.562400pt;}
.y18e{bottom:310.413733pt;}
.y1d{bottom:318.851333pt;}
.y1b6{bottom:319.895733pt;}
.ydc{bottom:320.372400pt;}
.y96{bottom:320.380400pt;}
.y6e{bottom:320.384400pt;}
.y48{bottom:320.404400pt;}
.yb2{bottom:320.440400pt;}
.y164{bottom:320.448400pt;}
.y13e{bottom:320.468400pt;}
.y18d{bottom:327.747067pt;}
.ydb{bottom:340.376400pt;}
.y95{bottom:340.384400pt;}
.y6d{bottom:340.388400pt;}
.y105{bottom:340.416400pt;}
.y14f{bottom:340.444400pt;}
.y11f{bottom:340.472400pt;}
.y18c{bottom:345.080400pt;}
.y1b5{bottom:348.567733pt;}
.y1c{bottom:358.847333pt;}
.yda{bottom:360.380400pt;}
.y94{bottom:360.388400pt;}
.y6c{bottom:360.392400pt;}
.y47{bottom:360.400400pt;}
.y104{bottom:360.420400pt;}
.yb1{bottom:360.436400pt;}
.y163{bottom:360.444400pt;}
.y14e{bottom:360.448400pt;}
.y13d{bottom:360.476400pt;}
.y18b{bottom:362.413733pt;}
.y1b4{bottom:365.901067pt;}
.yd9{bottom:380.384400pt;}
.y93{bottom:380.392400pt;}
.y6b{bottom:380.396400pt;}
.y46{bottom:380.404400pt;}
.y103{bottom:380.424400pt;}
.yb0{bottom:380.440400pt;}
.y162{bottom:380.448400pt;}
.y13c{bottom:380.480400pt;}
.y1b3{bottom:383.234400pt;}
.y18a{bottom:391.085733pt;}
.y1b{bottom:398.843333pt;}
.yd8{bottom:400.388400pt;}
.y92{bottom:400.396400pt;}
.y6a{bottom:400.400400pt;}
.y45{bottom:400.408400pt;}
.y11e{bottom:400.412400pt;}
.y102{bottom:400.428400pt;}
.yaf{bottom:400.444400pt;}
.y161{bottom:400.452400pt;}
.y170{bottom:400.468400pt;}
.y1b2{bottom:411.906400pt;}
.y1a{bottom:418.847333pt;}
.y189{bottom:419.757733pt;}
.ye8{bottom:420.392400pt;}
.y91{bottom:420.400400pt;}
.y44{bottom:420.412400pt;}
.y11d{bottom:420.416400pt;}
.y101{bottom:420.432400pt;}
.yae{bottom:420.448400pt;}
.y160{bottom:420.456400pt;}
.y16f{bottom:420.472400pt;}
.y13b{bottom:420.476400pt;}
.y188{bottom:437.091067pt;}
.y19{bottom:438.851333pt;}
.yd7{bottom:440.384400pt;}
.y69{bottom:440.396400pt;}
.y90{bottom:440.404400pt;}
.y43{bottom:440.416400pt;}
.y11c{bottom:440.420400pt;}
.yad{bottom:440.452400pt;}
.y15f{bottom:440.460400pt;}
.y1b1{bottom:440.578400pt;}
.y18{bottom:458.855333pt;}
.yd6{bottom:460.388400pt;}
.y68{bottom:460.400400pt;}
.y42{bottom:460.420400pt;}
.y11b{bottom:460.424400pt;}
.y100{bottom:460.428400pt;}
.yac{bottom:460.456400pt;}
.y13a{bottom:460.464400pt;}
.y16e{bottom:460.472400pt;}
.y187{bottom:465.763067pt;}
.y1b0{bottom:469.250400pt;}
.y17{bottom:478.859333pt;}
.yd5{bottom:480.392400pt;}
.y8f{bottom:480.400400pt;}
.y67{bottom:480.404400pt;}
.y41{bottom:480.424400pt;}
.yab{bottom:480.460400pt;}
.y139{bottom:480.468400pt;}
.y186{bottom:483.096400pt;}
.y1af{bottom:486.583733pt;}
.y16{bottom:498.863333pt;}
.yd4{bottom:500.396400pt;}
.y8e{bottom:500.404400pt;}
.y66{bottom:500.408400pt;}
.y11a{bottom:500.420400pt;}
.yff{bottom:500.424400pt;}
.y40{bottom:500.428400pt;}
.y15e{bottom:500.460400pt;}
.yaa{bottom:500.464400pt;}
.y138{bottom:500.472400pt;}
.y185{bottom:511.768400pt;}
.y1ae{bottom:515.255733pt;}
.y15{bottom:518.867333pt;}
.yd3{bottom:520.400400pt;}
.y8d{bottom:520.408400pt;}
.y65{bottom:520.412400pt;}
.y119{bottom:520.424400pt;}
.yfe{bottom:520.428400pt;}
.y15d{bottom:520.464400pt;}
.ya9{bottom:520.468400pt;}
.y184{bottom:529.101733pt;}
.y1ad{bottom:532.589067pt;}
.y14{bottom:538.871333pt;}
.yd2{bottom:540.404400pt;}
.y8c{bottom:540.412400pt;}
.y64{bottom:540.416400pt;}
.y3f{bottom:540.424400pt;}
.y118{bottom:540.428400pt;}
.yfd{bottom:540.432400pt;}
.y15c{bottom:540.468400pt;}
.ya8{bottom:540.472400pt;}
.y183{bottom:546.435067pt;}
.y1ac{bottom:549.922400pt;}
.y13{bottom:558.875333pt;}
.y16d{bottom:560.408400pt;}
.y8b{bottom:560.416400pt;}
.y63{bottom:560.420400pt;}
.y3e{bottom:560.428400pt;}
.y117{bottom:560.432400pt;}
.yfc{bottom:560.436400pt;}
.y15b{bottom:560.472400pt;}
.y182{bottom:575.107067pt;}
.y1ab{bottom:578.594400pt;}
.y12{bottom:578.879333pt;}
.yd1{bottom:580.400400pt;}
.y16c{bottom:580.412400pt;}
.y8a{bottom:580.420400pt;}
.y62{bottom:580.424400pt;}
.y3d{bottom:580.432400pt;}
.yfb{bottom:580.440400pt;}
.ya7{bottom:580.472400pt;}
.ycb{bottom:595.304400pt;}
.y11{bottom:598.883333pt;}
.yd0{bottom:600.404400pt;}
.ye7{bottom:600.416400pt;}
.y116{bottom:600.428400pt;}
.y3c{bottom:600.436400pt;}
.y181{bottom:603.779067pt;}
.y14d{bottom:606.993867pt;}
.y1aa{bottom:607.266400pt;}
.y152{bottom:613.123333pt;}
.yca{bottom:613.748400pt;}
.y137{bottom:617.684800pt;}
.y10{bottom:618.887333pt;}
.y15a{bottom:619.737467pt;}
.ycf{bottom:620.408400pt;}
.y89{bottom:620.416400pt;}
.y61{bottom:620.420400pt;}
.y115{bottom:620.432400pt;}
.yfa{bottom:620.436400pt;}
.y3b{bottom:620.440400pt;}
.ya6{bottom:620.452400pt;}
.y1a9{bottom:624.599733pt;}
.y180{bottom:632.451067pt;}
.yf{bottom:638.891333pt;}
.yce{bottom:640.412400pt;}
.y88{bottom:640.420400pt;}
.y60{bottom:640.424400pt;}
.y114{bottom:640.436400pt;}
.yf9{bottom:640.440400pt;}
.y3a{bottom:640.444400pt;}
.ya5{bottom:640.456400pt;}
.y1a8{bottom:641.933067pt;}
.y17f{bottom:649.784400pt;}
.y148{bottom:655.316400pt;}
.ye{bottom:658.895333pt;}
.ycd{bottom:660.416400pt;}
.y87{bottom:660.424400pt;}
.y5f{bottom:660.428400pt;}
.y113{bottom:660.440400pt;}
.yf8{bottom:660.444400pt;}
.y39{bottom:660.448400pt;}
.ya4{bottom:660.460400pt;}
.y1a7{bottom:670.605067pt;}
.y147{bottom:673.760400pt;}
.y17e{bottom:678.456400pt;}
.y12f{bottom:680.408400pt;}
.yc9{bottom:680.420400pt;}
.y86{bottom:680.428400pt;}
.y5e{bottom:680.432400pt;}
.y112{bottom:680.444400pt;}
.yf7{bottom:680.448400pt;}
.y38{bottom:680.452400pt;}
.ya3{bottom:680.464400pt;}
.y1a6{bottom:687.938400pt;}
.y17d{bottom:695.789733pt;}
.y12e{bottom:700.412400pt;}
.yc8{bottom:700.424400pt;}
.y85{bottom:700.432400pt;}
.y5d{bottom:700.436400pt;}
.yf6{bottom:700.452400pt;}
.ya2{bottom:700.468400pt;}
.yd{bottom:700.487333pt;}
.y1a5{bottom:705.271733pt;}
.y17c{bottom:713.123067pt;}
.y12d{bottom:720.416400pt;}
.yc7{bottom:720.428400pt;}
.y84{bottom:720.436400pt;}
.y5c{bottom:720.440400pt;}
.y37{bottom:720.448400pt;}
.y1a4{bottom:733.943733pt;}
.y12c{bottom:740.420400pt;}
.yc6{bottom:740.432400pt;}
.y83{bottom:740.440400pt;}
.y5b{bottom:740.444400pt;}
.yf5{bottom:740.448400pt;}
.y36{bottom:740.452400pt;}
.y17b{bottom:741.795067pt;}
.y1a3{bottom:751.277067pt;}
.yc{bottom:754.503067pt;}
.y12b{bottom:760.424400pt;}
.yc5{bottom:760.436400pt;}
.y82{bottom:760.444400pt;}
.y5a{bottom:760.448400pt;}
.yf4{bottom:760.452400pt;}
.y35{bottom:760.456400pt;}
.yb{bottom:769.169733pt;}
.y17a{bottom:770.467067pt;}
.y1a2{bottom:779.949067pt;}
.y12a{bottom:780.428400pt;}
.ya1{bottom:780.440400pt;}
.y81{bottom:780.448400pt;}
.y111{bottom:780.452400pt;}
.yf3{bottom:780.456400pt;}
.y34{bottom:780.460400pt;}
.y179{bottom:787.800400pt;}
.ya{bottom:789.505733pt;}
.y1a1{bottom:797.282400pt;}
.y129{bottom:800.432400pt;}
.y59{bottom:800.444400pt;}
.y110{bottom:800.456400pt;}
.yf2{bottom:800.460400pt;}
.y33{bottom:800.464400pt;}
.y178{bottom:805.133733pt;}
.yc4{bottom:820.436400pt;}
.y80{bottom:820.444400pt;}
.y58{bottom:820.448400pt;}
.yf1{bottom:820.464400pt;}
.y32{bottom:820.468400pt;}
.y1a0{bottom:825.954400pt;}
.y177{bottom:833.805733pt;}
.yc3{bottom:840.440400pt;}
.y7f{bottom:840.448400pt;}
.y57{bottom:840.452400pt;}
.yf0{bottom:840.468400pt;}
.y31{bottom:840.472400pt;}
.y9{bottom:842.857333pt;}
.y19f{bottom:843.287733pt;}
.y176{bottom:851.139067pt;}
.yc2{bottom:860.444400pt;}
.y7e{bottom:860.452400pt;}
.y56{bottom:860.456400pt;}
.yef{bottom:860.472400pt;}
.y8{bottom:862.860000pt;}
.y19e{bottom:871.959733pt;}
.yc1{bottom:880.448400pt;}
.y7d{bottom:880.456400pt;}
.y55{bottom:880.460400pt;}
.y30{bottom:880.472400pt;}
.y7{bottom:894.198667pt;}
.yc0{bottom:900.452400pt;}
.y7c{bottom:900.460400pt;}
.y54{bottom:900.464400pt;}
.yee{bottom:900.472400pt;}
.y19d{bottom:900.631733pt;}
.y19c{bottom:917.965067pt;}
.ybf{bottom:920.456400pt;}
.y7b{bottom:920.464400pt;}
.y53{bottom:920.468400pt;}
.y6{bottom:923.532000pt;}
.y19b{bottom:935.298400pt;}
.ybe{bottom:940.460400pt;}
.y7a{bottom:940.468400pt;}
.y2f{bottom:940.472400pt;}
.y5{bottom:952.865333pt;}
.ybd{bottom:960.464400pt;}
.y79{bottom:960.472400pt;}
.y19a{bottom:963.970400pt;}
.y2e{bottom:980.468400pt;}
.y199{bottom:981.303733pt;}
.y136{bottom:990.028400pt;}
.y2d{bottom:1000.472400pt;}
.y135{bottom:1008.472400pt;}
.y198{bottom:1009.975733pt;}
.y4{bottom:1022.778933pt;}
.y3{bottom:1033.549600pt;}
.y2{bottom:1044.320267pt;}
.y28{bottom:1051.455733pt;}
.y2c{bottom:1064.023733pt;}
.y27{bottom:1066.119733pt;}
.h3{height:29.344000pt;}
.h12{height:30.293333pt;}
.h8{height:32.554667pt;}
.hd{height:32.725333pt;}
.hb{height:34.080000pt;}
.ha{height:35.040000pt;}
.h9{height:36.624000pt;}
.hc{height:37.728000pt;}
.h7{height:38.933333pt;}
.h13{height:39.360000pt;}
.h16{height:41.856000pt;}
.hf{height:47.088000pt;}
.h15{height:47.120000pt;}
.h10{height:47.216000pt;}
.h14{height:47.488000pt;}
.h5{height:49.226667pt;}
.he{height:52.448000pt;}
.h6{height:52.901333pt;}
.h11{height:57.552000pt;}
.h4{height:78.613333pt;}
.h2{height:86.853444pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:102.047200pt;}
.x5{left:112.896933pt;}
.x9{left:126.047200pt;}
.xd{left:132.287200pt;}
.xc{left:186.047200pt;}
.x3{left:520.369600pt;}
.x4{left:553.894933pt;}
.x2{left:602.278933pt;}
.xa{left:644.292533pt;}
.x8{left:646.188933pt;}
.x6{left:648.170800pt;}
.xb{left:649.161733pt;}
.x7{left:651.472667pt;}
}

