
    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_0e9aff976ec4eacadefb3756.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183167;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_fb3716e53a006b2817682e47.woff')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_30f4a79880610d380648a8c3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_832bde9cb561444d37bd1820.woff')format("woff");}.ff4{font-family:ff4;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.125000px;}
.v4{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.231000px;}
.v1{vertical-align:19.125000px;}
.lsd{letter-spacing:-0.690080px;}
.lsc{letter-spacing:-0.675000px;}
.ls7{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.460054px;}
.ls8{letter-spacing:-0.450000px;}
.ls14{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.230027px;}
.lsa{letter-spacing:-0.225000px;}
.lse{letter-spacing:-0.210000px;}
.ls12{letter-spacing:-0.150000px;}
.ls15{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.900000px;}
.ls3{letter-spacing:4.500000px;}
.ls4{letter-spacing:5.700000px;}
.ls2{letter-spacing:6.600000px;}
.ls0{letter-spacing:9.600000px;}
.ls5{letter-spacing:16.747200px;}
.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;}
}
.ws3{word-spacing:-15.000000px;}
.ws2f{word-spacing:-14.700000px;}
.ws9f{word-spacing:-14.520000px;}
.wsd2{word-spacing:-11.501340px;}
.ws35{word-spacing:-11.041286px;}
.ws1{word-spacing:-7.500000px;}
.wsd1{word-spacing:-7.350000px;}
.ws9e{word-spacing:-7.290000px;}
.ws2e{word-spacing:-6.000000px;}
.ws117{word-spacing:-5.700000px;}
.ws26{word-spacing:-4.500000px;}
.wsc1{word-spacing:-2.220000px;}
.ws55{word-spacing:-2.160000px;}
.ws46{word-spacing:-2.040000px;}
.ws5f{word-spacing:-1.980000px;}
.wsb5{word-spacing:-1.920000px;}
.wsd3{word-spacing:-1.800000px;}
.ws4f{word-spacing:-1.740000px;}
.ws87{word-spacing:-1.702198px;}
.ws15{word-spacing:-1.680000px;}
.ws88{word-spacing:-1.665000px;}
.ws5a{word-spacing:-1.620000px;}
.ws121{word-spacing:-1.564182px;}
.ws13{word-spacing:-1.560000px;}
.ws120{word-spacing:-1.530000px;}
.ws33{word-spacing:-1.500000px;}
.ws64{word-spacing:-1.485000px;}
.wscf{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.349489px;}
.ws80{word-spacing:-1.260000px;}
.ws49{word-spacing:-1.200000px;}
.ws97{word-spacing:-1.150134px;}
.ws98{word-spacing:-1.125000px;}
.ws60{word-spacing:-1.080000px;}
.ws99{word-spacing:-0.990000px;}
.ws9c{word-spacing:-0.960000px;}
.ws69{word-spacing:-0.945000px;}
.wse3{word-spacing:-0.920107px;}
.wsb8{word-spacing:-0.900000px;}
.ws94{word-spacing:-0.855000px;}
.wse{word-spacing:-0.720000px;}
.wsca{word-spacing:-0.660000px;}
.wsee{word-spacing:-0.630000px;}
.wsd0{word-spacing:-0.598070px;}
.ws6d{word-spacing:-0.585000px;}
.ws2d{word-spacing:-0.540000px;}
.ws123{word-spacing:-0.506059px;}
.ws122{word-spacing:-0.495000px;}
.ws106{word-spacing:-0.480000px;}
.wse4{word-spacing:-0.450000px;}
.wsa3{word-spacing:-0.368043px;}
.ws5b{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.337372px;}
.wsc8{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.288000px;}
.ws86{word-spacing:-0.276032px;}
.wsad{word-spacing:-0.270000px;}
.ws10c{word-spacing:-0.240000px;}
.wse5{word-spacing:-0.180000px;}
.wsff{word-spacing:-0.135000px;}
.ws20{word-spacing:-0.134949px;}
.ws57{word-spacing:-0.120000px;}
.wsdc{word-spacing:-0.090000px;}
.wsc{word-spacing:0.000000px;}
.wsa5{word-spacing:0.045000px;}
.wsa6{word-spacing:0.046005px;}
.ws9d{word-spacing:0.060000px;}
.ws7b{word-spacing:0.090000px;}
.ws4d{word-spacing:0.120000px;}
.wsed{word-spacing:0.135000px;}
.ws107{word-spacing:0.180000px;}
.ws7a{word-spacing:0.225000px;}
.ws7f{word-spacing:0.230027px;}
.ws77{word-spacing:0.270000px;}
.wsbc{word-spacing:0.288000px;}
.ws10a{word-spacing:0.300000px;}
.ws9a{word-spacing:0.315000px;}
.ws32{word-spacing:0.360000px;}
.wsfa{word-spacing:0.405000px;}
.ws4a{word-spacing:0.420000px;}
.ws62{word-spacing:0.450000px;}
.ws70{word-spacing:0.460054px;}
.ws4e{word-spacing:0.480000px;}
.ws51{word-spacing:0.540000px;}
.ws96{word-spacing:0.552064px;}
.wsf7{word-spacing:0.630000px;}
.wsf8{word-spacing:0.644075px;}
.ws30{word-spacing:0.660000px;}
.ws23{word-spacing:0.674745px;}
.ws8d{word-spacing:0.690080px;}
.ws4{word-spacing:0.720000px;}
.ws6a{word-spacing:0.765000px;}
.ws44{word-spacing:0.780000px;}
.ws68{word-spacing:0.810000px;}
.ws10b{word-spacing:0.840000px;}
.wsde{word-spacing:0.855000px;}
.ws3b{word-spacing:0.864000px;}
.ws59{word-spacing:0.900000px;}
.wsef{word-spacing:0.945000px;}
.ws34{word-spacing:0.960000px;}
.ws27{word-spacing:0.990000px;}
.ws116{word-spacing:1.020000px;}
.ws2c{word-spacing:1.080000px;}
.ws7{word-spacing:1.125000px;}
.ws2b{word-spacing:1.150134px;}
.ws3c{word-spacing:1.200000px;}
.ws11d{word-spacing:1.215000px;}
.wsa1{word-spacing:1.260000px;}
.wsae{word-spacing:1.305000px;}
.ws56{word-spacing:1.320000px;}
.wse1{word-spacing:1.350000px;}
.wsb3{word-spacing:1.380000px;}
.wsfe{word-spacing:1.395000px;}
.ws42{word-spacing:1.425000px;}
.ws3d{word-spacing:1.440000px;}
.ws78{word-spacing:1.485000px;}
.ws18{word-spacing:1.500000px;}
.ws79{word-spacing:1.518177px;}
.ws124{word-spacing:1.530000px;}
.ws22{word-spacing:1.551912px;}
.ws48{word-spacing:1.560000px;}
.ws125{word-spacing:1.564182px;}
.ws9b{word-spacing:1.575000px;}
.ws8{word-spacing:1.620000px;}
.ws25{word-spacing:1.650000px;}
.wsa2{word-spacing:1.656193px;}
.ws63{word-spacing:1.665000px;}
.ws11a{word-spacing:1.680000px;}
.ws24{word-spacing:1.686861px;}
.wsdf{word-spacing:1.710000px;}
.wsaf{word-spacing:1.740000px;}
.ws7e{word-spacing:1.755000px;}
.ws11f{word-spacing:1.794209px;}
.ws4b{word-spacing:1.800000px;}
.ws105{word-spacing:1.860000px;}
.ws36{word-spacing:1.872000px;}
.ws5{word-spacing:1.890000px;}
.wsd5{word-spacing:1.920000px;}
.ws6{word-spacing:1.932225px;}
.wsaa{word-spacing:1.935000px;}
.wsab{word-spacing:1.978230px;}
.ws43{word-spacing:1.980000px;}
.ws103{word-spacing:2.070000px;}
.wsb{word-spacing:2.100000px;}
.wscc{word-spacing:2.115000px;}
.ws17{word-spacing:2.160000px;}
.wsac{word-spacing:2.208257px;}
.ws40{word-spacing:2.220000px;}
.ws10f{word-spacing:2.250000px;}
.ws19{word-spacing:2.280000px;}
.ws52{word-spacing:2.340000px;}
.ws72{word-spacing:2.385000px;}
.ws1a{word-spacing:2.400000px;}
.ws91{word-spacing:2.430000px;}
.ws54{word-spacing:2.460000px;}
.ws8c{word-spacing:2.475000px;}
.ws3e{word-spacing:2.520000px;}
.wsbd{word-spacing:2.580000px;}
.ws1d{word-spacing:2.631504px;}
.wsc7{word-spacing:2.640000px;}
.wsbe{word-spacing:2.700000px;}
.wsbb{word-spacing:2.736000px;}
.wsf1{word-spacing:2.745000px;}
.wsd6{word-spacing:2.760000px;}
.wsd9{word-spacing:2.820000px;}
.ws75{word-spacing:2.835000px;}
.ws81{word-spacing:2.880000px;}
.ws76{word-spacing:2.898338px;}
.ws110{word-spacing:2.925000px;}
.wsba{word-spacing:2.940000px;}
.ws21{word-spacing:2.968876px;}
.ws111{word-spacing:2.990348px;}
.wsb7{word-spacing:3.000000px;}
.ws11b{word-spacing:3.015000px;}
.ws7c{word-spacing:3.060000px;}
.ws2{word-spacing:3.120000px;}
.ws7d{word-spacing:3.150000px;}
.ws10d{word-spacing:3.180000px;}
.ws11e{word-spacing:3.195000px;}
.ws14{word-spacing:3.240000px;}
.ws82{word-spacing:3.285000px;}
.wsb2{word-spacing:3.300000px;}
.ws12{word-spacing:3.360000px;}
.ws0{word-spacing:3.420000px;}
.wsc2{word-spacing:3.480000px;}
.ws3a{word-spacing:3.504000px;}
.wsd{word-spacing:3.540000px;}
.wsb1{word-spacing:3.660000px;}
.ws100{word-spacing:3.690000px;}
.wsc9{word-spacing:3.720000px;}
.wsdb{word-spacing:3.780000px;}
.ws10{word-spacing:3.840000px;}
.ws4c{word-spacing:3.900000px;}
.ws92{word-spacing:3.915000px;}
.ws11{word-spacing:3.960000px;}
.ws39{word-spacing:3.984000px;}
.wsc3{word-spacing:4.020000px;}
.wsd8{word-spacing:4.080000px;}
.wsb6{word-spacing:4.140000px;}
.ws31{word-spacing:4.200000px;}
.wse9{word-spacing:4.232493px;}
.ws47{word-spacing:4.260000px;}
.ws37{word-spacing:4.272000px;}
.ws65{word-spacing:4.275000px;}
.wse8{word-spacing:4.410000px;}
.wsc4{word-spacing:4.440000px;}
.wse2{word-spacing:4.455000px;}
.wsd4{word-spacing:4.500000px;}
.wse7{word-spacing:4.508525px;}
.ws1b{word-spacing:4.588263px;}
.ws61{word-spacing:4.590000px;}
.wsf3{word-spacing:4.600536px;}
.ws118{word-spacing:4.620000px;}
.wsa7{word-spacing:4.635000px;}
.wsc5{word-spacing:4.680000px;}
.wsa8{word-spacing:4.738552px;}
.ws114{word-spacing:4.740000px;}
.ws104{word-spacing:4.784557px;}
.wsbf{word-spacing:4.800000px;}
.wscb{word-spacing:4.860000px;}
.ws6f{word-spacing:4.922573px;}
.ws6c{word-spacing:4.995000px;}
.ws50{word-spacing:5.100000px;}
.wsf6{word-spacing:5.106595px;}
.ws29{word-spacing:5.130000px;}
.wsa9{word-spacing:5.175000px;}
.ws2a{word-spacing:5.244611px;}
.ws41{word-spacing:5.340000px;}
.ws16{word-spacing:5.400000px;}
.ws45{word-spacing:5.460000px;}
.ws1c{word-spacing:5.532905px;}
.ws71{word-spacing:5.535000px;}
.wsec{word-spacing:5.580000px;}
.ws10e{word-spacing:5.625000px;}
.ws8f{word-spacing:5.715000px;}
.ws119{word-spacing:5.760000px;}
.ws115{word-spacing:5.820000px;}
.ws9{word-spacing:5.880000px;}
.wsc6{word-spacing:6.060000px;}
.wse0{word-spacing:6.120000px;}
.ws5d{word-spacing:6.180000px;}
.wsd7{word-spacing:6.240000px;}
.wsa4{word-spacing:6.255000px;}
.wsc0{word-spacing:6.480000px;}
.ws6e{word-spacing:6.525000px;}
.wsa{word-spacing:6.540000px;}
.ws90{word-spacing:6.570000px;}
.ws5e{word-spacing:6.600000px;}
.wsea{word-spacing:6.705000px;}
.ws53{word-spacing:6.720000px;}
.ws102{word-spacing:6.795000px;}
.ws6b{word-spacing:6.840000px;}
.ws3f{word-spacing:6.900000px;}
.wsf9{word-spacing:6.930000px;}
.ws89{word-spacing:6.975000px;}
.wsb9{word-spacing:7.020000px;}
.ws11c{word-spacing:7.110000px;}
.wsf5{word-spacing:7.245000px;}
.wsf4{word-spacing:7.406863px;}
.wsda{word-spacing:7.500000px;}
.ws84{word-spacing:7.515000px;}
.ws109{word-spacing:7.620000px;}
.ws8a{word-spacing:7.650000px;}
.ws8b{word-spacing:7.820911px;}
.wsf0{word-spacing:7.830000px;}
.ws66{word-spacing:8.055000px;}
.ws8e{word-spacing:8.100000px;}
.ws101{word-spacing:8.145000px;}
.ws95{word-spacing:8.234959px;}
.wscd{word-spacing:8.370000px;}
.ws58{word-spacing:8.460000px;}
.wsf{word-spacing:8.520000px;}
.wsce{word-spacing:8.556997px;}
.ws67{word-spacing:8.595000px;}
.wsa0{word-spacing:8.605200px;}
.ws108{word-spacing:8.760000px;}
.wseb{word-spacing:8.775000px;}
.ws112{word-spacing:8.849400px;}
.ws28{word-spacing:8.865000px;}
.ws83{word-spacing:9.000000px;}
.wsb4{word-spacing:9.180000px;}
.ws113{word-spacing:9.240000px;}
.wsfd{word-spacing:9.945000px;}
.wsfb{word-spacing:10.980000px;}
.wsb0{word-spacing:12.900000px;}
.ws5c{word-spacing:13.380000px;}
.wse6{word-spacing:13.635000px;}
.ws93{word-spacing:13.860000px;}
.ws85{word-spacing:13.950000px;}
.wsfc{word-spacing:14.520000px;}
.ws74{word-spacing:15.210000px;}
.wsdd{word-spacing:16.695000px;}
.wsf2{word-spacing:17.865000px;}
._6{margin-left:-8.100000px;}
._7{margin-left:-6.960000px;}
._4{margin-left:-5.280000px;}
._1{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._5{width:1.320000px;}
._2{width:3.480000px;}
._9{width:12.373200px;}
._a{width:15.840000px;}
._8{width:1863.540000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.000000px;}
.fs3{font-size:30.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:46.005359px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:67.474452px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:91.890000px;}
.y157{bottom:91.993800px;}
.yac{bottom:92.016000px;}
.y3{bottom:92.113350px;}
.yc2{bottom:92.113650px;}
.y15{bottom:92.196900px;}
.y17c{bottom:92.263500px;}
.y13a{bottom:105.390000px;}
.y156{bottom:105.493800px;}
.yab{bottom:105.516000px;}
.y2{bottom:105.613350px;}
.yc1{bottom:105.613650px;}
.yc0{bottom:105.617400px;}
.y17a{bottom:105.763350px;}
.y17b{bottom:105.763500px;}
.y14{bottom:109.446900px;}
.y139{bottom:118.890000px;}
.y155{bottom:118.993800px;}
.y154{bottom:118.997250px;}
.yaa{bottom:119.016000px;}
.y1{bottom:119.113350px;}
.ybf{bottom:119.117400px;}
.y179{bottom:119.263350px;}
.y5c{bottom:126.696900px;}
.y138{bottom:132.390000px;}
.ya9{bottom:132.516000px;}
.ybe{bottom:132.617400px;}
.y178{bottom:132.763350px;}
.y2b{bottom:133.931700px;}
.y13{bottom:135.321900px;}
.y153{bottom:138.021000px;}
.y5b{bottom:143.946900px;}
.y137{bottom:145.890000px;}
.ya8{bottom:146.016000px;}
.y177{bottom:146.263350px;}
.y29{bottom:147.430650px;}
.y2a{bottom:147.431700px;}
.y152{bottom:151.521000px;}
.ybd{bottom:151.641150px;}
.y12{bottom:152.571900px;}
.y136{bottom:159.390000px;}
.ya7{bottom:159.516000px;}
.y176{bottom:159.763350px;}
.y28{bottom:160.930650px;}
.y5a{bottom:161.196900px;}
.y151{bottom:165.021000px;}
.ybb{bottom:165.141000px;}
.ybc{bottom:165.141150px;}
.y11{bottom:169.821900px;}
.y135{bottom:172.890000px;}
.y174{bottom:173.256900px;}
.y175{bottom:173.263350px;}
.y59{bottom:178.446900px;}
.y150{bottom:178.521000px;}
.ya6{bottom:178.539750px;}
.yba{bottom:178.641000px;}
.y27{bottom:180.809400px;}
.y134{bottom:186.390000px;}
.y133{bottom:186.393750px;}
.y173{bottom:186.756900px;}
.y10{bottom:187.071900px;}
.y14f{bottom:192.021000px;}
.ya5{bottom:192.039750px;}
.yb9{bottom:192.141000px;}
.yb8{bottom:192.144900px;}
.y26{bottom:194.309400px;}
.y58{bottom:195.696900px;}
.y172{bottom:200.256900px;}
.yf{bottom:204.321900px;}
.y132{bottom:205.417500px;}
.y14e{bottom:205.521000px;}
.yb7{bottom:205.644900px;}
.y25{bottom:207.809400px;}
.ya4{bottom:211.063500px;}
.y57{bottom:212.946900px;}
.y131{bottom:218.917500px;}
.y130{bottom:218.921400px;}
.y14d{bottom:219.021000px;}
.y24{bottom:221.309400px;}
.ye{bottom:221.571900px;}
.ya3{bottom:224.563500px;}
.ya2{bottom:224.567250px;}
.yb6{bottom:224.668650px;}
.y56{bottom:230.196900px;}
.y14c{bottom:232.521000px;}
.y12f{bottom:237.945150px;}
.yb5{bottom:238.168500px;}
.yd{bottom:238.821900px;}
.ya1{bottom:243.591000px;}
.y14b{bottom:246.021000px;}
.y2c{bottom:247.444200px;}
.y55{bottom:247.446900px;}
.y12e{bottom:251.445150px;}
.y12d{bottom:251.448900px;}
.yb4{bottom:251.668500px;}
.y16a{bottom:255.959400px;}
.yc{bottom:256.071900px;}
.ya0{bottom:257.091000px;}
.y9f{bottom:257.094750px;}
.y14a{bottom:259.521000px;}
.ye9{bottom:264.696900px;}
.y12c{bottom:264.948900px;}
.yb3{bottom:265.168500px;}
.y169{bottom:269.459400px;}
.y9e{bottom:270.594750px;}
.y149{bottom:273.021000px;}
.yb{bottom:273.321900px;}
.yb2{bottom:278.668500px;}
.ye8{bottom:281.946900px;}
.y168{bottom:282.959400px;}
.y12b{bottom:283.972650px;}
.y148{bottom:286.521000px;}
.y9d{bottom:289.618500px;}
.ya{bottom:290.571900px;}
.yb1{bottom:292.168500px;}
.y167{bottom:296.459400px;}
.y129{bottom:297.472500px;}
.y12a{bottom:297.472650px;}
.ye7{bottom:299.196900px;}
.y147{bottom:300.021000px;}
.y9c{bottom:303.118500px;}
.yb0{bottom:305.668500px;}
.y9{bottom:307.821900px;}
.y128{bottom:310.972500px;}
.y146{bottom:313.521000px;}
.ye6{bottom:316.446900px;}
.y9b{bottom:316.618500px;}
.yaf{bottom:319.168500px;}
.y127{bottom:324.472500px;}
.y8{bottom:325.071900px;}
.y145{bottom:327.021000px;}
.y99{bottom:330.118350px;}
.y9a{bottom:330.118500px;}
.ye5{bottom:333.696900px;}
.y126{bottom:337.972500px;}
.y125{bottom:337.976250px;}
.y144{bottom:340.521000px;}
.y7{bottom:342.321900px;}
.y98{bottom:343.618350px;}
.ye4{bottom:350.946900px;}
.y124{bottom:351.476250px;}
.y143{bottom:354.021000px;}
.y97{bottom:357.118350px;}
.y6{bottom:359.571900px;}
.yf2{bottom:360.352800px;}
.y142{bottom:367.521000px;}
.ye3{bottom:368.196900px;}
.y123{bottom:370.500000px;}
.y96{bottom:370.618350px;}
.yf1{bottom:373.852800px;}
.y5{bottom:376.821900px;}
.y141{bottom:381.021000px;}
.y122{bottom:384.000000px;}
.y95{bottom:384.118350px;}
.ye2{bottom:385.446900px;}
.yef{bottom:393.730650px;}
.yf0{bottom:393.731550px;}
.y4{bottom:394.071900px;}
.y140{bottom:394.521000px;}
.y120{bottom:397.499700px;}
.y121{bottom:397.500000px;}
.y94{bottom:397.618350px;}
.ye1{bottom:402.696900px;}
.yee{bottom:407.230650px;}
.y11f{bottom:410.999700px;}
.y93{bottom:411.118350px;}
.y54{bottom:411.321900px;}
.y2d{bottom:419.940450px;}
.ye0{bottom:419.946900px;}
.y11e{bottom:424.499700px;}
.y92{bottom:424.622100px;}
.yed{bottom:427.109400px;}
.y53{bottom:428.571900px;}
.ydf{bottom:437.196900px;}
.y11d{bottom:437.999700px;}
.yec{bottom:440.609400px;}
.y91{bottom:443.645850px;}
.y52{bottom:445.821900px;}
.y11c{bottom:451.499700px;}
.yeb{bottom:454.109400px;}
.yde{bottom:454.446900px;}
.y90{bottom:457.145850px;}
.y51{bottom:463.071900px;}
.y171{bottom:464.901900px;}
.y11b{bottom:464.999700px;}
.y8f{bottom:470.645850px;}
.y8e{bottom:470.649600px;}
.y11a{bottom:478.499700px;}
.y50{bottom:480.321900px;}
.yf5{bottom:480.322800px;}
.y8d{bottom:484.149600px;}
.y170{bottom:484.780650px;}
.y119{bottom:491.999700px;}
.y4f{bottom:497.571900px;}
.y8c{bottom:503.173350px;}
.y16f{bottom:504.659400px;}
.y118{bottom:505.499700px;}
.y15b{bottom:506.196900px;}
.y4e{bottom:514.821900px;}
.y8b{bottom:516.673350px;}
.y16e{bottom:518.159400px;}
.y162{bottom:518.433300px;}
.y117{bottom:518.999700px;}
.y15a{bottom:523.446900px;}
.y8a{bottom:530.173050px;}
.y16d{bottom:531.659400px;}
.y160{bottom:531.932400px;}
.y161{bottom:531.933300px;}
.y4d{bottom:532.071900px;}
.y116{bottom:532.499700px;}
.y159{bottom:540.696900px;}
.y89{bottom:543.673050px;}
.y15f{bottom:545.432400px;}
.y115{bottom:545.999700px;}
.y4c{bottom:549.321900px;}
.y166{bottom:554.692950px;}
.y88{bottom:557.173050px;}
.y158{bottom:557.946900px;}
.y114{bottom:559.499700px;}
.y113{bottom:559.503300px;}
.y15e{bottom:565.311150px;}
.ydd{bottom:566.571900px;}
.y87{bottom:570.673050px;}
.y17f{bottom:575.192250px;}
.y4b{bottom:575.196900px;}
.y112{bottom:578.527050px;}
.y15d{bottom:578.811150px;}
.ydc{bottom:583.821900px;}
.y86{bottom:584.173050px;}
.y111{bottom:592.027050px;}
.y15c{bottom:592.311150px;}
.y4a{bottom:592.446900px;}
.y85{bottom:597.673050px;}
.ydb{bottom:601.071900px;}
.y110{bottom:605.527050px;}
.y49{bottom:609.696900px;}
.y84{bottom:611.173050px;}
.yda{bottom:618.321900px;}
.y10f{bottom:619.027050px;}
.y83{bottom:624.673050px;}
.y48{bottom:626.946900px;}
.y10e{bottom:632.527050px;}
.y81{bottom:638.172900px;}
.y82{bottom:638.173050px;}
.y47{bottom:644.196900px;}
.y10d{bottom:646.027050px;}
.yd9{bottom:647.826000px;}
.y80{bottom:651.672900px;}
.y10c{bottom:659.527050px;}
.y10b{bottom:659.530950px;}
.y46{bottom:661.446900px;}
.yd8{bottom:662.070000px;}
.y7f{bottom:665.172900px;}
.yd7{bottom:676.314000px;}
.y10a{bottom:678.554700px;}
.y7e{bottom:678.672900px;}
.yf4{bottom:678.694050px;}
.y45{bottom:678.696900px;}
.y109{bottom:692.054550px;}
.y7d{bottom:692.172900px;}
.y44{bottom:695.946900px;}
.yd6{bottom:701.317950px;}
.y108{bottom:705.554550px;}
.y7c{bottom:705.672900px;}
.y7b{bottom:705.676650px;}
.y43{bottom:713.196900px;}
.y107{bottom:719.058300px;}
.y7a{bottom:724.700400px;}
.y42{bottom:730.446900px;}
.y106{bottom:732.558300px;}
.y79{bottom:738.200400px;}
.yd5{bottom:739.071900px;}
.y41{bottom:747.696900px;}
.y105{bottom:751.582050px;}
.y78{bottom:751.700400px;}
.y77{bottom:751.704150px;}
.yd4{bottom:756.321900px;}
.y40{bottom:764.946900px;}
.y104{bottom:765.082050px;}
.y76{bottom:765.204150px;}
.yd3{bottom:773.571900px;}
.y103{bottom:778.582050px;}
.y102{bottom:778.585800px;}
.y75{bottom:778.704150px;}
.y3f{bottom:782.196900px;}
.y21{bottom:782.201700px;}
.y17e{bottom:790.821000px;}
.yd2{bottom:790.821900px;}
.y101{bottom:792.085800px;}
.y74{bottom:792.204150px;}
.y165{bottom:799.446900px;}
.y20{bottom:802.001700px;}
.y3e{bottom:804.817950px;}
.y73{bottom:805.704150px;}
.yd1{bottom:808.071900px;}
.y100{bottom:811.109550px;}
.y164{bottom:816.696900px;}
.y72{bottom:819.204150px;}
.y1f{bottom:821.801700px;}
.yff{bottom:824.609550px;}
.yd0{bottom:825.321900px;}
.y71{bottom:832.704150px;}
.y163{bottom:833.946900px;}
.yfd{bottom:838.109400px;}
.yfe{bottom:838.109550px;}
.y1e{bottom:841.601700px;}
.y3d{bottom:842.571900px;}
.yfc{bottom:851.609400px;}
.y6f{bottom:851.727750px;}
.y70{bottom:851.727900px;}
.y3c{bottom:859.821900px;}
.y1d{bottom:861.401700px;}
.yfb{bottom:865.109400px;}
.y6e{bottom:865.227750px;}
.y3b{bottom:877.071900px;}
.yfa{bottom:878.609400px;}
.y6c{bottom:878.727450px;}
.y6d{bottom:878.727750px;}
.y1c{bottom:881.201700px;}
.yf3{bottom:885.694050px;}
.ycf{bottom:885.696900px;}
.yf9{bottom:892.109400px;}
.y6b{bottom:892.227450px;}
.y3a{bottom:894.321900px;}
.y1b{bottom:901.001700px;}
.yce{bottom:902.946900px;}
.yf8{bottom:905.609400px;}
.y6a{bottom:905.727450px;}
.y39{bottom:911.571900px;}
.yf7{bottom:919.109400px;}
.y69{bottom:919.227450px;}
.ycd{bottom:920.196900px;}
.y1a{bottom:920.801700px;}
.y38{bottom:928.821900px;}
.yf6{bottom:932.609400px;}
.y68{bottom:932.727450px;}
.y17d{bottom:937.442250px;}
.ycc{bottom:937.446900px;}
.y19{bottom:940.601700px;}
.y37{bottom:946.071900px;}
.y67{bottom:946.227450px;}
.ycb{bottom:954.696900px;}
.y66{bottom:959.727450px;}
.y18{bottom:960.401700px;}
.y36{bottom:963.321900px;}
.yca{bottom:971.946900px;}
.y65{bottom:973.227450px;}
.y17{bottom:980.201700px;}
.y35{bottom:980.571900px;}
.y64{bottom:986.727450px;}
.yc9{bottom:989.196900px;}
.y63{bottom:1000.227450px;}
.yc8{bottom:1006.446900px;}
.y34{bottom:1012.822500px;}
.y62{bottom:1013.727450px;}
.y22{bottom:1023.605250px;}
.yc7{bottom:1023.696900px;}
.y33{bottom:1027.066500px;}
.y61{bottom:1027.227450px;}
.y60{bottom:1040.727450px;}
.yc6{bottom:1040.946900px;}
.y32{bottom:1041.310500px;}
.y5f{bottom:1054.227450px;}
.y31{bottom:1055.554500px;}
.yc5{bottom:1058.196900px;}
.y5e{bottom:1067.727450px;}
.y30{bottom:1069.798500px;}
.yc4{bottom:1075.446900px;}
.y5d{bottom:1081.227450px;}
.y2f{bottom:1084.042500px;}
.y13f{bottom:1084.991700px;}
.y16{bottom:1088.929200px;}
.yc3{bottom:1092.696900px;}
.y2e{bottom:1098.286500px;}
.y13e{bottom:1098.491700px;}
.y23{bottom:1199.879700px;}
.y16c{bottom:1201.184400px;}
.y13d{bottom:1201.185000px;}
.yae{bottom:1201.198500px;}
.y16b{bottom:1201.409400px;}
.y13c{bottom:1201.410000px;}
.yea{bottom:1201.412850px;}
.yad{bottom:1201.423500px;}
.h8{height:40.368000px;}
.h2{height:43.155000px;}
.ha{height:43.245000px;}
.h3{height:44.119139px;}
.h4{height:50.460000px;}
.h9{height:54.663000px;}
.h7{height:63.294000px;}
.h6{height:64.707999px;}
.h5{height:92.256000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:977.952000px;}
.w1{width:978.000000px;}
.x0{left:0.000000px;}
.x23{left:63.782550px;}
.xc{left:65.279550px;}
.x19{left:78.991650px;}
.x31{left:85.039350px;}
.x4{left:86.539350px;}
.xe{left:90.944400px;}
.x39{left:93.335400px;}
.x18{left:95.871000px;}
.x35{left:97.828650px;}
.x1b{left:99.098100px;}
.x1a{left:101.465250px;}
.x36{left:115.305150px;}
.x38{left:118.769250px;}
.x41{left:123.066600px;}
.x30{left:129.059100px;}
.x21{left:140.833800px;}
.x4b{left:146.652300px;}
.x13{left:157.047450px;}
.x3c{left:160.935900px;}
.x11{left:163.239450px;}
.x4c{left:166.809300px;}
.x16{left:170.074800px;}
.x1e{left:173.417850px;}
.x15{left:179.434950px;}
.x4d{left:181.369950px;}
.x1c{left:185.627400px;}
.x42{left:187.014150px;}
.xf{left:188.475000px;}
.x14{left:191.702250px;}
.x4e{left:193.866900px;}
.x45{left:202.904550px;}
.x3b{left:206.929350px;}
.x3a{left:208.279350px;}
.x1d{left:214.781850px;}
.x43{left:234.863700px;}
.x37{left:242.195550px;}
.x3d{left:257.091900px;}
.x3f{left:261.800250px;}
.x40{left:270.548400px;}
.x46{left:272.183550px;}
.x20{left:278.459100px;}
.x10{left:281.339100px;}
.x17{left:289.550550px;}
.x44{left:302.658750px;}
.xd{left:304.082250px;}
.x12{left:305.457150px;}
.x3e{left:312.676800px;}
.x1f{left:327.341100px;}
.xb{left:345.909450px;}
.xa{left:388.429050px;}
.x50{left:581.492100px;}
.x57{left:611.898000px;}
.x54{left:613.751700px;}
.x1{left:647.799150px;}
.x47{left:662.160900px;}
.x2c{left:665.286750px;}
.x2e{left:681.219150px;}
.x27{left:691.134450px;}
.x22{left:693.377550px;}
.x2f{left:702.153150px;}
.x52{left:704.051400px;}
.x49{left:710.078550px;}
.x6{left:719.989350px;}
.x58{left:725.490150px;}
.x8{left:727.698150px;}
.x33{left:730.560450px;}
.x53{left:733.404150px;}
.x2a{left:739.978050px;}
.x24{left:751.782900px;}
.x28{left:756.490500px;}
.x32{left:758.432250px;}
.x55{left:763.832400px;}
.x2{left:768.042000px;}
.x9{left:769.550550px;}
.x7{left:771.754500px;}
.x4a{left:772.972800px;}
.x25{left:777.416850px;}
.x4f{left:778.874250px;}
.x56{left:785.271300px;}
.x48{left:792.931800px;}
.x34{left:796.589850px;}
.x2b{left:800.400600px;}
.x2d{left:833.142600px;}
.x26{left:845.113350px;}
.x29{left:848.321550px;}
.x51{left:862.060650px;}
.x3{left:895.960050px;}
.x5{left:901.798200px;}
@media print{
.v2{vertical-align:-17.000000pt;}
.v4{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.538667pt;}
.v1{vertical-align:17.000000pt;}
.lsd{letter-spacing:-0.613405pt;}
.lsc{letter-spacing:-0.600000pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.408937pt;}
.ls8{letter-spacing:-0.400000pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.204468pt;}
.lsa{letter-spacing:-0.200000pt;}
.lse{letter-spacing:-0.186667pt;}
.ls12{letter-spacing:-0.133333pt;}
.ls15{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls4{letter-spacing:5.066667pt;}
.ls2{letter-spacing:5.866667pt;}
.ls0{letter-spacing:8.533333pt;}
.ls5{letter-spacing:14.886400pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2f{word-spacing:-13.066667pt;}
.ws9f{word-spacing:-12.906667pt;}
.wsd2{word-spacing:-10.223413pt;}
.ws35{word-spacing:-9.814477pt;}
.ws1{word-spacing:-6.666667pt;}
.wsd1{word-spacing:-6.533333pt;}
.ws9e{word-spacing:-6.480000pt;}
.ws2e{word-spacing:-5.333333pt;}
.ws117{word-spacing:-5.066667pt;}
.ws26{word-spacing:-4.000000pt;}
.wsc1{word-spacing:-1.973333pt;}
.ws55{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.813333pt;}
.ws5f{word-spacing:-1.760000pt;}
.wsb5{word-spacing:-1.706667pt;}
.wsd3{word-spacing:-1.600000pt;}
.ws4f{word-spacing:-1.546667pt;}
.ws87{word-spacing:-1.513065pt;}
.ws15{word-spacing:-1.493333pt;}
.ws88{word-spacing:-1.480000pt;}
.ws5a{word-spacing:-1.440000pt;}
.ws121{word-spacing:-1.390384pt;}
.ws13{word-spacing:-1.386667pt;}
.ws120{word-spacing:-1.360000pt;}
.ws33{word-spacing:-1.333333pt;}
.ws64{word-spacing:-1.320000pt;}
.wscf{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-1.199546pt;}
.ws80{word-spacing:-1.120000pt;}
.ws49{word-spacing:-1.066667pt;}
.ws97{word-spacing:-1.022341pt;}
.ws98{word-spacing:-1.000000pt;}
.ws60{word-spacing:-0.960000pt;}
.ws99{word-spacing:-0.880000pt;}
.ws9c{word-spacing:-0.853333pt;}
.ws69{word-spacing:-0.840000pt;}
.wse3{word-spacing:-0.817873pt;}
.wsb8{word-spacing:-0.800000pt;}
.ws94{word-spacing:-0.760000pt;}
.wse{word-spacing:-0.640000pt;}
.wsca{word-spacing:-0.586667pt;}
.wsee{word-spacing:-0.560000pt;}
.wsd0{word-spacing:-0.531617pt;}
.ws6d{word-spacing:-0.520000pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws123{word-spacing:-0.449830pt;}
.ws122{word-spacing:-0.440000pt;}
.ws106{word-spacing:-0.426667pt;}
.wse4{word-spacing:-0.400000pt;}
.wsa3{word-spacing:-0.327149pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.299886pt;}
.wsc8{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.256000pt;}
.ws86{word-spacing:-0.245362pt;}
.wsad{word-spacing:-0.240000pt;}
.ws10c{word-spacing:-0.213333pt;}
.wse5{word-spacing:-0.160000pt;}
.wsff{word-spacing:-0.120000pt;}
.ws20{word-spacing:-0.119955pt;}
.ws57{word-spacing:-0.106667pt;}
.wsdc{word-spacing:-0.080000pt;}
.wsc{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.040000pt;}
.wsa6{word-spacing:0.040894pt;}
.ws9d{word-spacing:0.053333pt;}
.ws7b{word-spacing:0.080000pt;}
.ws4d{word-spacing:0.106667pt;}
.wsed{word-spacing:0.120000pt;}
.ws107{word-spacing:0.160000pt;}
.ws7a{word-spacing:0.200000pt;}
.ws7f{word-spacing:0.204468pt;}
.ws77{word-spacing:0.240000pt;}
.wsbc{word-spacing:0.256000pt;}
.ws10a{word-spacing:0.266667pt;}
.ws9a{word-spacing:0.280000pt;}
.ws32{word-spacing:0.320000pt;}
.wsfa{word-spacing:0.360000pt;}
.ws4a{word-spacing:0.373333pt;}
.ws62{word-spacing:0.400000pt;}
.ws70{word-spacing:0.408937pt;}
.ws4e{word-spacing:0.426667pt;}
.ws51{word-spacing:0.480000pt;}
.ws96{word-spacing:0.490724pt;}
.wsf7{word-spacing:0.560000pt;}
.wsf8{word-spacing:0.572511pt;}
.ws30{word-spacing:0.586667pt;}
.ws23{word-spacing:0.599773pt;}
.ws8d{word-spacing:0.613405pt;}
.ws4{word-spacing:0.640000pt;}
.ws6a{word-spacing:0.680000pt;}
.ws44{word-spacing:0.693333pt;}
.ws68{word-spacing:0.720000pt;}
.ws10b{word-spacing:0.746667pt;}
.wsde{word-spacing:0.760000pt;}
.ws3b{word-spacing:0.768000pt;}
.ws59{word-spacing:0.800000pt;}
.wsef{word-spacing:0.840000pt;}
.ws34{word-spacing:0.853333pt;}
.ws27{word-spacing:0.880000pt;}
.ws116{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.960000pt;}
.ws7{word-spacing:1.000000pt;}
.ws2b{word-spacing:1.022341pt;}
.ws3c{word-spacing:1.066667pt;}
.ws11d{word-spacing:1.080000pt;}
.wsa1{word-spacing:1.120000pt;}
.wsae{word-spacing:1.160000pt;}
.ws56{word-spacing:1.173333pt;}
.wse1{word-spacing:1.200000pt;}
.wsb3{word-spacing:1.226667pt;}
.wsfe{word-spacing:1.240000pt;}
.ws42{word-spacing:1.266667pt;}
.ws3d{word-spacing:1.280000pt;}
.ws78{word-spacing:1.320000pt;}
.ws18{word-spacing:1.333333pt;}
.ws79{word-spacing:1.349491pt;}
.ws124{word-spacing:1.360000pt;}
.ws22{word-spacing:1.379478pt;}
.ws48{word-spacing:1.386667pt;}
.ws125{word-spacing:1.390384pt;}
.ws9b{word-spacing:1.400000pt;}
.ws8{word-spacing:1.440000pt;}
.ws25{word-spacing:1.466667pt;}
.wsa2{word-spacing:1.472171pt;}
.ws63{word-spacing:1.480000pt;}
.ws11a{word-spacing:1.493333pt;}
.ws24{word-spacing:1.499432pt;}
.wsdf{word-spacing:1.520000pt;}
.wsaf{word-spacing:1.546667pt;}
.ws7e{word-spacing:1.560000pt;}
.ws11f{word-spacing:1.594852pt;}
.ws4b{word-spacing:1.600000pt;}
.ws105{word-spacing:1.653333pt;}
.ws36{word-spacing:1.664000pt;}
.ws5{word-spacing:1.680000pt;}
.wsd5{word-spacing:1.706667pt;}
.ws6{word-spacing:1.717533pt;}
.wsaa{word-spacing:1.720000pt;}
.wsab{word-spacing:1.758427pt;}
.ws43{word-spacing:1.760000pt;}
.ws103{word-spacing:1.840000pt;}
.wsb{word-spacing:1.866667pt;}
.wscc{word-spacing:1.880000pt;}
.ws17{word-spacing:1.920000pt;}
.wsac{word-spacing:1.962895pt;}
.ws40{word-spacing:1.973333pt;}
.ws10f{word-spacing:2.000000pt;}
.ws19{word-spacing:2.026667pt;}
.ws52{word-spacing:2.080000pt;}
.ws72{word-spacing:2.120000pt;}
.ws1a{word-spacing:2.133333pt;}
.ws91{word-spacing:2.160000pt;}
.ws54{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.200000pt;}
.ws3e{word-spacing:2.240000pt;}
.wsbd{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.339114pt;}
.wsc7{word-spacing:2.346667pt;}
.wsbe{word-spacing:2.400000pt;}
.wsbb{word-spacing:2.432000pt;}
.wsf1{word-spacing:2.440000pt;}
.wsd6{word-spacing:2.453333pt;}
.wsd9{word-spacing:2.506667pt;}
.ws75{word-spacing:2.520000pt;}
.ws81{word-spacing:2.560000pt;}
.ws76{word-spacing:2.576300pt;}
.ws110{word-spacing:2.600000pt;}
.wsba{word-spacing:2.613333pt;}
.ws21{word-spacing:2.639001pt;}
.ws111{word-spacing:2.658087pt;}
.wsb7{word-spacing:2.666667pt;}
.ws11b{word-spacing:2.680000pt;}
.ws7c{word-spacing:2.720000pt;}
.ws2{word-spacing:2.773333pt;}
.ws7d{word-spacing:2.800000pt;}
.ws10d{word-spacing:2.826667pt;}
.ws11e{word-spacing:2.840000pt;}
.ws14{word-spacing:2.880000pt;}
.ws82{word-spacing:2.920000pt;}
.wsb2{word-spacing:2.933333pt;}
.ws12{word-spacing:2.986667pt;}
.ws0{word-spacing:3.040000pt;}
.wsc2{word-spacing:3.093333pt;}
.ws3a{word-spacing:3.114667pt;}
.wsd{word-spacing:3.146667pt;}
.wsb1{word-spacing:3.253333pt;}
.ws100{word-spacing:3.280000pt;}
.wsc9{word-spacing:3.306667pt;}
.wsdb{word-spacing:3.360000pt;}
.ws10{word-spacing:3.413333pt;}
.ws4c{word-spacing:3.466667pt;}
.ws92{word-spacing:3.480000pt;}
.ws11{word-spacing:3.520000pt;}
.ws39{word-spacing:3.541333pt;}
.wsc3{word-spacing:3.573333pt;}
.wsd8{word-spacing:3.626667pt;}
.wsb6{word-spacing:3.680000pt;}
.ws31{word-spacing:3.733333pt;}
.wse9{word-spacing:3.762216pt;}
.ws47{word-spacing:3.786667pt;}
.ws37{word-spacing:3.797333pt;}
.ws65{word-spacing:3.800000pt;}
.wse8{word-spacing:3.920000pt;}
.wsc4{word-spacing:3.946667pt;}
.wse2{word-spacing:3.960000pt;}
.wsd4{word-spacing:4.000000pt;}
.wse7{word-spacing:4.007578pt;}
.ws1b{word-spacing:4.078456pt;}
.ws61{word-spacing:4.080000pt;}
.wsf3{word-spacing:4.089365pt;}
.ws118{word-spacing:4.106667pt;}
.wsa7{word-spacing:4.120000pt;}
.wsc5{word-spacing:4.160000pt;}
.wsa8{word-spacing:4.212046pt;}
.ws114{word-spacing:4.213333pt;}
.ws104{word-spacing:4.252940pt;}
.wsbf{word-spacing:4.266667pt;}
.wscb{word-spacing:4.320000pt;}
.ws6f{word-spacing:4.375621pt;}
.ws6c{word-spacing:4.440000pt;}
.ws50{word-spacing:4.533333pt;}
.wsf6{word-spacing:4.539195pt;}
.ws29{word-spacing:4.560000pt;}
.wsa9{word-spacing:4.600000pt;}
.ws2a{word-spacing:4.661876pt;}
.ws41{word-spacing:4.746667pt;}
.ws16{word-spacing:4.800000pt;}
.ws45{word-spacing:4.853333pt;}
.ws1c{word-spacing:4.918138pt;}
.ws71{word-spacing:4.920000pt;}
.wsec{word-spacing:4.960000pt;}
.ws10e{word-spacing:5.000000pt;}
.ws8f{word-spacing:5.080000pt;}
.ws119{word-spacing:5.120000pt;}
.ws115{word-spacing:5.173333pt;}
.ws9{word-spacing:5.226667pt;}
.wsc6{word-spacing:5.386667pt;}
.wse0{word-spacing:5.440000pt;}
.ws5d{word-spacing:5.493333pt;}
.wsd7{word-spacing:5.546667pt;}
.wsa4{word-spacing:5.560000pt;}
.wsc0{word-spacing:5.760000pt;}
.ws6e{word-spacing:5.800000pt;}
.wsa{word-spacing:5.813333pt;}
.ws90{word-spacing:5.840000pt;}
.ws5e{word-spacing:5.866667pt;}
.wsea{word-spacing:5.960000pt;}
.ws53{word-spacing:5.973333pt;}
.ws102{word-spacing:6.040000pt;}
.ws6b{word-spacing:6.080000pt;}
.ws3f{word-spacing:6.133333pt;}
.wsf9{word-spacing:6.160000pt;}
.ws89{word-spacing:6.200000pt;}
.wsb9{word-spacing:6.240000pt;}
.ws11c{word-spacing:6.320000pt;}
.wsf5{word-spacing:6.440000pt;}
.wsf4{word-spacing:6.583878pt;}
.wsda{word-spacing:6.666667pt;}
.ws84{word-spacing:6.680000pt;}
.ws109{word-spacing:6.773333pt;}
.ws8a{word-spacing:6.800000pt;}
.ws8b{word-spacing:6.951921pt;}
.wsf0{word-spacing:6.960000pt;}
.ws66{word-spacing:7.160000pt;}
.ws8e{word-spacing:7.200000pt;}
.ws101{word-spacing:7.240000pt;}
.ws95{word-spacing:7.319964pt;}
.wscd{word-spacing:7.440000pt;}
.ws58{word-spacing:7.520000pt;}
.wsf{word-spacing:7.573333pt;}
.wsce{word-spacing:7.606219pt;}
.ws67{word-spacing:7.640000pt;}
.wsa0{word-spacing:7.649067pt;}
.ws108{word-spacing:7.786667pt;}
.wseb{word-spacing:7.800000pt;}
.ws112{word-spacing:7.866133pt;}
.ws28{word-spacing:7.880000pt;}
.ws83{word-spacing:8.000000pt;}
.wsb4{word-spacing:8.160000pt;}
.ws113{word-spacing:8.213333pt;}
.wsfd{word-spacing:8.840000pt;}
.wsfb{word-spacing:9.760000pt;}
.wsb0{word-spacing:11.466667pt;}
.ws5c{word-spacing:11.893333pt;}
.wse6{word-spacing:12.120000pt;}
.ws93{word-spacing:12.320000pt;}
.ws85{word-spacing:12.400000pt;}
.wsfc{word-spacing:12.906667pt;}
.ws74{word-spacing:13.520000pt;}
.wsdd{word-spacing:14.840000pt;}
.wsf2{word-spacing:15.880000pt;}
._6{margin-left:-7.200000pt;}
._7{margin-left:-6.186667pt;}
._4{margin-left:-4.693333pt;}
._1{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._5{width:1.173333pt;}
._2{width:3.093333pt;}
._9{width:10.998400pt;}
._a{width:14.080000pt;}
._8{width:1656.480000pt;}
.fs8{font-size:21.333333pt;}
.fs3{font-size:26.666667pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:40.893652pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:59.977290pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:81.680000pt;}
.y157{bottom:81.772267pt;}
.yac{bottom:81.792000pt;}
.y3{bottom:81.878533pt;}
.yc2{bottom:81.878800pt;}
.y15{bottom:81.952800pt;}
.y17c{bottom:82.012000pt;}
.y13a{bottom:93.680000pt;}
.y156{bottom:93.772267pt;}
.yab{bottom:93.792000pt;}
.y2{bottom:93.878533pt;}
.yc1{bottom:93.878800pt;}
.yc0{bottom:93.882133pt;}
.y17a{bottom:94.011867pt;}
.y17b{bottom:94.012000pt;}
.y14{bottom:97.286133pt;}
.y139{bottom:105.680000pt;}
.y155{bottom:105.772267pt;}
.y154{bottom:105.775333pt;}
.yaa{bottom:105.792000pt;}
.y1{bottom:105.878533pt;}
.ybf{bottom:105.882133pt;}
.y179{bottom:106.011867pt;}
.y5c{bottom:112.619467pt;}
.y138{bottom:117.680000pt;}
.ya9{bottom:117.792000pt;}
.ybe{bottom:117.882133pt;}
.y178{bottom:118.011867pt;}
.y2b{bottom:119.050400pt;}
.y13{bottom:120.286133pt;}
.y153{bottom:122.685333pt;}
.y5b{bottom:127.952800pt;}
.y137{bottom:129.680000pt;}
.ya8{bottom:129.792000pt;}
.y177{bottom:130.011867pt;}
.y29{bottom:131.049467pt;}
.y2a{bottom:131.050400pt;}
.y152{bottom:134.685333pt;}
.ybd{bottom:134.792133pt;}
.y12{bottom:135.619467pt;}
.y136{bottom:141.680000pt;}
.ya7{bottom:141.792000pt;}
.y176{bottom:142.011867pt;}
.y28{bottom:143.049467pt;}
.y5a{bottom:143.286133pt;}
.y151{bottom:146.685333pt;}
.ybb{bottom:146.792000pt;}
.ybc{bottom:146.792133pt;}
.y11{bottom:150.952800pt;}
.y135{bottom:153.680000pt;}
.y174{bottom:154.006133pt;}
.y175{bottom:154.011867pt;}
.y59{bottom:158.619467pt;}
.y150{bottom:158.685333pt;}
.ya6{bottom:158.702000pt;}
.yba{bottom:158.792000pt;}
.y27{bottom:160.719467pt;}
.y134{bottom:165.680000pt;}
.y133{bottom:165.683333pt;}
.y173{bottom:166.006133pt;}
.y10{bottom:166.286133pt;}
.y14f{bottom:170.685333pt;}
.ya5{bottom:170.702000pt;}
.yb9{bottom:170.792000pt;}
.yb8{bottom:170.795467pt;}
.y26{bottom:172.719467pt;}
.y58{bottom:173.952800pt;}
.y172{bottom:178.006133pt;}
.yf{bottom:181.619467pt;}
.y132{bottom:182.593333pt;}
.y14e{bottom:182.685333pt;}
.yb7{bottom:182.795467pt;}
.y25{bottom:184.719467pt;}
.ya4{bottom:187.612000pt;}
.y57{bottom:189.286133pt;}
.y131{bottom:194.593333pt;}
.y130{bottom:194.596800pt;}
.y14d{bottom:194.685333pt;}
.y24{bottom:196.719467pt;}
.ye{bottom:196.952800pt;}
.ya3{bottom:199.612000pt;}
.ya2{bottom:199.615333pt;}
.yb6{bottom:199.705467pt;}
.y56{bottom:204.619467pt;}
.y14c{bottom:206.685333pt;}
.y12f{bottom:211.506800pt;}
.yb5{bottom:211.705333pt;}
.yd{bottom:212.286133pt;}
.ya1{bottom:216.525333pt;}
.y14b{bottom:218.685333pt;}
.y2c{bottom:219.950400pt;}
.y55{bottom:219.952800pt;}
.y12e{bottom:223.506800pt;}
.y12d{bottom:223.510133pt;}
.yb4{bottom:223.705333pt;}
.y16a{bottom:227.519467pt;}
.yc{bottom:227.619467pt;}
.ya0{bottom:228.525333pt;}
.y9f{bottom:228.528667pt;}
.y14a{bottom:230.685333pt;}
.ye9{bottom:235.286133pt;}
.y12c{bottom:235.510133pt;}
.yb3{bottom:235.705333pt;}
.y169{bottom:239.519467pt;}
.y9e{bottom:240.528667pt;}
.y149{bottom:242.685333pt;}
.yb{bottom:242.952800pt;}
.yb2{bottom:247.705333pt;}
.ye8{bottom:250.619467pt;}
.y168{bottom:251.519467pt;}
.y12b{bottom:252.420133pt;}
.y148{bottom:254.685333pt;}
.y9d{bottom:257.438667pt;}
.ya{bottom:258.286133pt;}
.yb1{bottom:259.705333pt;}
.y167{bottom:263.519467pt;}
.y129{bottom:264.420000pt;}
.y12a{bottom:264.420133pt;}
.ye7{bottom:265.952800pt;}
.y147{bottom:266.685333pt;}
.y9c{bottom:269.438667pt;}
.yb0{bottom:271.705333pt;}
.y9{bottom:273.619467pt;}
.y128{bottom:276.420000pt;}
.y146{bottom:278.685333pt;}
.ye6{bottom:281.286133pt;}
.y9b{bottom:281.438667pt;}
.yaf{bottom:283.705333pt;}
.y127{bottom:288.420000pt;}
.y8{bottom:288.952800pt;}
.y145{bottom:290.685333pt;}
.y99{bottom:293.438533pt;}
.y9a{bottom:293.438667pt;}
.ye5{bottom:296.619467pt;}
.y126{bottom:300.420000pt;}
.y125{bottom:300.423333pt;}
.y144{bottom:302.685333pt;}
.y7{bottom:304.286133pt;}
.y98{bottom:305.438533pt;}
.ye4{bottom:311.952800pt;}
.y124{bottom:312.423333pt;}
.y143{bottom:314.685333pt;}
.y97{bottom:317.438533pt;}
.y6{bottom:319.619467pt;}
.yf2{bottom:320.313600pt;}
.y142{bottom:326.685333pt;}
.ye3{bottom:327.286133pt;}
.y123{bottom:329.333333pt;}
.y96{bottom:329.438533pt;}
.yf1{bottom:332.313600pt;}
.y5{bottom:334.952800pt;}
.y141{bottom:338.685333pt;}
.y122{bottom:341.333333pt;}
.y95{bottom:341.438533pt;}
.ye2{bottom:342.619467pt;}
.yef{bottom:349.982800pt;}
.yf0{bottom:349.983600pt;}
.y4{bottom:350.286133pt;}
.y140{bottom:350.685333pt;}
.y120{bottom:353.333067pt;}
.y121{bottom:353.333333pt;}
.y94{bottom:353.438533pt;}
.ye1{bottom:357.952800pt;}
.yee{bottom:361.982800pt;}
.y11f{bottom:365.333067pt;}
.y93{bottom:365.438533pt;}
.y54{bottom:365.619467pt;}
.y2d{bottom:373.280400pt;}
.ye0{bottom:373.286133pt;}
.y11e{bottom:377.333067pt;}
.y92{bottom:377.441867pt;}
.yed{bottom:379.652800pt;}
.y53{bottom:380.952800pt;}
.ydf{bottom:388.619467pt;}
.y11d{bottom:389.333067pt;}
.yec{bottom:391.652800pt;}
.y91{bottom:394.351867pt;}
.y52{bottom:396.286133pt;}
.y11c{bottom:401.333067pt;}
.yeb{bottom:403.652800pt;}
.yde{bottom:403.952800pt;}
.y90{bottom:406.351867pt;}
.y51{bottom:411.619467pt;}
.y171{bottom:413.246133pt;}
.y11b{bottom:413.333067pt;}
.y8f{bottom:418.351867pt;}
.y8e{bottom:418.355200pt;}
.y11a{bottom:425.333067pt;}
.y50{bottom:426.952800pt;}
.yf5{bottom:426.953600pt;}
.y8d{bottom:430.355200pt;}
.y170{bottom:430.916133pt;}
.y119{bottom:437.333067pt;}
.y4f{bottom:442.286133pt;}
.y8c{bottom:447.265200pt;}
.y16f{bottom:448.586133pt;}
.y118{bottom:449.333067pt;}
.y15b{bottom:449.952800pt;}
.y4e{bottom:457.619467pt;}
.y8b{bottom:459.265200pt;}
.y16e{bottom:460.586133pt;}
.y162{bottom:460.829600pt;}
.y117{bottom:461.333067pt;}
.y15a{bottom:465.286133pt;}
.y8a{bottom:471.264933pt;}
.y16d{bottom:472.586133pt;}
.y160{bottom:472.828800pt;}
.y161{bottom:472.829600pt;}
.y4d{bottom:472.952800pt;}
.y116{bottom:473.333067pt;}
.y159{bottom:480.619467pt;}
.y89{bottom:483.264933pt;}
.y15f{bottom:484.828800pt;}
.y115{bottom:485.333067pt;}
.y4c{bottom:488.286133pt;}
.y166{bottom:493.060400pt;}
.y88{bottom:495.264933pt;}
.y158{bottom:495.952800pt;}
.y114{bottom:497.333067pt;}
.y113{bottom:497.336267pt;}
.y15e{bottom:502.498800pt;}
.ydd{bottom:503.619467pt;}
.y87{bottom:507.264933pt;}
.y17f{bottom:511.282000pt;}
.y4b{bottom:511.286133pt;}
.y112{bottom:514.246267pt;}
.y15d{bottom:514.498800pt;}
.ydc{bottom:518.952800pt;}
.y86{bottom:519.264933pt;}
.y111{bottom:526.246267pt;}
.y15c{bottom:526.498800pt;}
.y4a{bottom:526.619467pt;}
.y85{bottom:531.264933pt;}
.ydb{bottom:534.286133pt;}
.y110{bottom:538.246267pt;}
.y49{bottom:541.952800pt;}
.y84{bottom:543.264933pt;}
.yda{bottom:549.619467pt;}
.y10f{bottom:550.246267pt;}
.y83{bottom:555.264933pt;}
.y48{bottom:557.286133pt;}
.y10e{bottom:562.246267pt;}
.y81{bottom:567.264800pt;}
.y82{bottom:567.264933pt;}
.y47{bottom:572.619467pt;}
.y10d{bottom:574.246267pt;}
.yd9{bottom:575.845333pt;}
.y80{bottom:579.264800pt;}
.y10c{bottom:586.246267pt;}
.y10b{bottom:586.249733pt;}
.y46{bottom:587.952800pt;}
.yd8{bottom:588.506667pt;}
.y7f{bottom:591.264800pt;}
.yd7{bottom:601.168000pt;}
.y10a{bottom:603.159733pt;}
.y7e{bottom:603.264800pt;}
.yf4{bottom:603.283600pt;}
.y45{bottom:603.286133pt;}
.y109{bottom:615.159600pt;}
.y7d{bottom:615.264800pt;}
.y44{bottom:618.619467pt;}
.yd6{bottom:623.393733pt;}
.y108{bottom:627.159600pt;}
.y7c{bottom:627.264800pt;}
.y7b{bottom:627.268133pt;}
.y43{bottom:633.952800pt;}
.y107{bottom:639.162933pt;}
.y7a{bottom:644.178133pt;}
.y42{bottom:649.286133pt;}
.y106{bottom:651.162933pt;}
.y79{bottom:656.178133pt;}
.yd5{bottom:656.952800pt;}
.y41{bottom:664.619467pt;}
.y105{bottom:668.072933pt;}
.y78{bottom:668.178133pt;}
.y77{bottom:668.181467pt;}
.yd4{bottom:672.286133pt;}
.y40{bottom:679.952800pt;}
.y104{bottom:680.072933pt;}
.y76{bottom:680.181467pt;}
.yd3{bottom:687.619467pt;}
.y103{bottom:692.072933pt;}
.y102{bottom:692.076267pt;}
.y75{bottom:692.181467pt;}
.y3f{bottom:695.286133pt;}
.y21{bottom:695.290400pt;}
.y17e{bottom:702.952000pt;}
.yd2{bottom:702.952800pt;}
.y101{bottom:704.076267pt;}
.y74{bottom:704.181467pt;}
.y165{bottom:710.619467pt;}
.y20{bottom:712.890400pt;}
.y3e{bottom:715.393733pt;}
.y73{bottom:716.181467pt;}
.yd1{bottom:718.286133pt;}
.y100{bottom:720.986267pt;}
.y164{bottom:725.952800pt;}
.y72{bottom:728.181467pt;}
.y1f{bottom:730.490400pt;}
.yff{bottom:732.986267pt;}
.yd0{bottom:733.619467pt;}
.y71{bottom:740.181467pt;}
.y163{bottom:741.286133pt;}
.yfd{bottom:744.986133pt;}
.yfe{bottom:744.986267pt;}
.y1e{bottom:748.090400pt;}
.y3d{bottom:748.952800pt;}
.yfc{bottom:756.986133pt;}
.y6f{bottom:757.091333pt;}
.y70{bottom:757.091467pt;}
.y3c{bottom:764.286133pt;}
.y1d{bottom:765.690400pt;}
.yfb{bottom:768.986133pt;}
.y6e{bottom:769.091333pt;}
.y3b{bottom:779.619467pt;}
.yfa{bottom:780.986133pt;}
.y6c{bottom:781.091067pt;}
.y6d{bottom:781.091333pt;}
.y1c{bottom:783.290400pt;}
.yf3{bottom:787.283600pt;}
.ycf{bottom:787.286133pt;}
.yf9{bottom:792.986133pt;}
.y6b{bottom:793.091067pt;}
.y3a{bottom:794.952800pt;}
.y1b{bottom:800.890400pt;}
.yce{bottom:802.619467pt;}
.yf8{bottom:804.986133pt;}
.y6a{bottom:805.091067pt;}
.y39{bottom:810.286133pt;}
.yf7{bottom:816.986133pt;}
.y69{bottom:817.091067pt;}
.ycd{bottom:817.952800pt;}
.y1a{bottom:818.490400pt;}
.y38{bottom:825.619467pt;}
.yf6{bottom:828.986133pt;}
.y68{bottom:829.091067pt;}
.y17d{bottom:833.282000pt;}
.ycc{bottom:833.286133pt;}
.y19{bottom:836.090400pt;}
.y37{bottom:840.952800pt;}
.y67{bottom:841.091067pt;}
.ycb{bottom:848.619467pt;}
.y66{bottom:853.091067pt;}
.y18{bottom:853.690400pt;}
.y36{bottom:856.286133pt;}
.yca{bottom:863.952800pt;}
.y65{bottom:865.091067pt;}
.y17{bottom:871.290400pt;}
.y35{bottom:871.619467pt;}
.y64{bottom:877.091067pt;}
.yc9{bottom:879.286133pt;}
.y63{bottom:889.091067pt;}
.yc8{bottom:894.619467pt;}
.y34{bottom:900.286667pt;}
.y62{bottom:901.091067pt;}
.y22{bottom:909.871333pt;}
.yc7{bottom:909.952800pt;}
.y33{bottom:912.948000pt;}
.y61{bottom:913.091067pt;}
.y60{bottom:925.091067pt;}
.yc6{bottom:925.286133pt;}
.y32{bottom:925.609333pt;}
.y5f{bottom:937.091067pt;}
.y31{bottom:938.270667pt;}
.yc5{bottom:940.619467pt;}
.y5e{bottom:949.091067pt;}
.y30{bottom:950.932000pt;}
.yc4{bottom:955.952800pt;}
.y5d{bottom:961.091067pt;}
.y2f{bottom:963.593333pt;}
.y13f{bottom:964.437067pt;}
.y16{bottom:967.937067pt;}
.yc3{bottom:971.286133pt;}
.y2e{bottom:976.254667pt;}
.y13e{bottom:976.437067pt;}
.y23{bottom:1066.559733pt;}
.y16c{bottom:1067.719467pt;}
.y13d{bottom:1067.720000pt;}
.yae{bottom:1067.732000pt;}
.y16b{bottom:1067.919467pt;}
.y13c{bottom:1067.920000pt;}
.yea{bottom:1067.922533pt;}
.yad{bottom:1067.932000pt;}
.h8{height:35.882667pt;}
.h2{height:38.360000pt;}
.ha{height:38.440000pt;}
.h3{height:39.217013pt;}
.h4{height:44.853333pt;}
.h9{height:48.589333pt;}
.h7{height:56.261333pt;}
.h6{height:57.518221pt;}
.h5{height:82.005333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:869.290667pt;}
.w1{width:869.333333pt;}
.x0{left:0.000000pt;}
.x23{left:56.695600pt;}
.xc{left:58.026267pt;}
.x19{left:70.214800pt;}
.x31{left:75.590533pt;}
.x4{left:76.923867pt;}
.xe{left:80.839467pt;}
.x39{left:82.964800pt;}
.x18{left:85.218667pt;}
.x35{left:86.958800pt;}
.x1b{left:88.087200pt;}
.x1a{left:90.191333pt;}
.x36{left:102.493467pt;}
.x38{left:105.572667pt;}
.x41{left:109.392533pt;}
.x30{left:114.719200pt;}
.x21{left:125.185600pt;}
.x4b{left:130.357600pt;}
.x13{left:139.597733pt;}
.x3c{left:143.054133pt;}
.x11{left:145.101733pt;}
.x4c{left:148.274933pt;}
.x16{left:151.177600pt;}
.x1e{left:154.149200pt;}
.x15{left:159.497733pt;}
.x4d{left:161.217733pt;}
.x1c{left:165.002133pt;}
.x42{left:166.234800pt;}
.xf{left:167.533333pt;}
.x14{left:170.402000pt;}
.x4e{left:172.326133pt;}
.x45{left:180.359600pt;}
.x3b{left:183.937200pt;}
.x3a{left:185.137200pt;}
.x1d{left:190.917200pt;}
.x43{left:208.767733pt;}
.x37{left:215.284933pt;}
.x3d{left:228.526133pt;}
.x3f{left:232.711333pt;}
.x40{left:240.487467pt;}
.x46{left:241.940933pt;}
.x20{left:247.519200pt;}
.x10{left:250.079200pt;}
.x17{left:257.378267pt;}
.x44{left:269.030000pt;}
.xd{left:270.295333pt;}
.x12{left:271.517467pt;}
.x3e{left:277.934933pt;}
.x1f{left:290.969867pt;}
.xb{left:307.475067pt;}
.xa{left:345.270267pt;}
.x50{left:516.881867pt;}
.x57{left:543.909333pt;}
.x54{left:545.557067pt;}
.x1{left:575.821467pt;}
.x47{left:588.587467pt;}
.x2c{left:591.366000pt;}
.x2e{left:605.528133pt;}
.x27{left:614.341733pt;}
.x22{left:616.335600pt;}
.x2f{left:624.136133pt;}
.x52{left:625.823467pt;}
.x49{left:631.180933pt;}
.x6{left:639.990533pt;}
.x58{left:644.880133pt;}
.x8{left:646.842800pt;}
.x33{left:649.387067pt;}
.x53{left:651.914800pt;}
.x2a{left:657.758267pt;}
.x24{left:668.251467pt;}
.x28{left:672.436000pt;}
.x32{left:674.162000pt;}
.x55{left:678.962133pt;}
.x2{left:682.704000pt;}
.x9{left:684.044933pt;}
.x7{left:686.004000pt;}
.x4a{left:687.086933pt;}
.x25{left:691.037200pt;}
.x4f{left:692.332667pt;}
.x56{left:698.018933pt;}
.x48{left:704.828267pt;}
.x34{left:708.079867pt;}
.x2b{left:711.467200pt;}
.x2d{left:740.571200pt;}
.x26{left:751.211867pt;}
.x29{left:754.063600pt;}
.x51{left:766.276133pt;}
.x3{left:796.408933pt;}
.x5{left:801.598400pt;}
}

