
    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_2be779c979e1f57dfcbe1db4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d886d99ae068379385148e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e581689dce945ec36aecd3bf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2cb30414c40179d47391e805.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4{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:19.980600px;}
.v2{vertical-align:23.982000px;}
.v3{vertical-align:47.964000px;}
.ls1{letter-spacing:-1.294260px;}
.ls2{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1f{word-spacing:-15.000000px;}
.wsc5{word-spacing:-12.000000px;}
.ws55{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.000000px;}
.ws1e{word-spacing:-8.745000px;}
.ws20{word-spacing:-7.450740px;}
.ws2b{word-spacing:-3.240000px;}
.wsb2{word-spacing:-3.180000px;}
.wsd3{word-spacing:-3.024000px;}
.ws24{word-spacing:-3.000000px;}
.wsb4{word-spacing:-2.880000px;}
.wsce{word-spacing:-2.820000px;}
.ws3{word-spacing:-2.754000px;}
.ws41{word-spacing:-2.580000px;}
.ws31{word-spacing:-2.520000px;}
.ws29{word-spacing:-2.400000px;}
.ws91{word-spacing:-2.340000px;}
.ws47{word-spacing:-2.280000px;}
.ws88{word-spacing:-2.220000px;}
.wsd7{word-spacing:-2.208000px;}
.wse2{word-spacing:-2.160000px;}
.wscc{word-spacing:-2.040000px;}
.ws2f{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.728000px;}
.ws1c{word-spacing:-1.548000px;}
.ws3e{word-spacing:-1.380000px;}
.wsdd{word-spacing:-1.344000px;}
.ws19{word-spacing:-1.296000px;}
.wsbd{word-spacing:-1.020000px;}
.ws6{word-spacing:-1.008000px;}
.ws92{word-spacing:-0.960000px;}
.ws5{word-spacing:-0.936000px;}
.wsa8{word-spacing:-0.900000px;}
.wsa{word-spacing:-0.828000px;}
.ws16{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.660000px;}
.ws1{word-spacing:-0.648000px;}
.wsc7{word-spacing:-0.600000px;}
.ws7f{word-spacing:-0.576000px;}
.wscb{word-spacing:-0.540000px;}
.wsd4{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.396000px;}
.ws21{word-spacing:-0.252000px;}
.wsd8{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws9d{word-spacing:0.042000px;}
.ws27{word-spacing:0.060000px;}
.ws33{word-spacing:0.120000px;}
.ws49{word-spacing:0.180000px;}
.ws30{word-spacing:0.300000px;}
.ws18{word-spacing:0.324000px;}
.ws17{word-spacing:0.360000px;}
.ws38{word-spacing:0.420000px;}
.ws4{word-spacing:0.540000px;}
.ws40{word-spacing:0.660000px;}
.ws9{word-spacing:0.720000px;}
.ws25{word-spacing:0.780000px;}
.ws22{word-spacing:0.840000px;}
.ws7{word-spacing:0.972000px;}
.ws45{word-spacing:1.020000px;}
.wsdf{word-spacing:1.200000px;}
.ws12{word-spacing:1.368000px;}
.ws44{word-spacing:1.380000px;}
.ws8{word-spacing:1.404000px;}
.wsda{word-spacing:1.440000px;}
.ws52{word-spacing:1.500000px;}
.ws11{word-spacing:1.584000px;}
.ws1b{word-spacing:1.656000px;}
.wsbe{word-spacing:1.680000px;}
.ws8f{word-spacing:1.740000px;}
.wsde{word-spacing:1.776000px;}
.wse{word-spacing:1.836000px;}
.wsba{word-spacing:1.860000px;}
.ws23{word-spacing:1.920000px;}
.ws7e{word-spacing:1.968000px;}
.ws53{word-spacing:2.100000px;}
.ws7d{word-spacing:2.256000px;}
.wsa7{word-spacing:2.460000px;}
.ws8c{word-spacing:2.580000px;}
.ws8e{word-spacing:2.640000px;}
.ws32{word-spacing:2.760000px;}
.ws2e{word-spacing:2.940000px;}
.ws26{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.ws48{word-spacing:3.300000px;}
.wsf{word-spacing:3.312000px;}
.ws39{word-spacing:3.360000px;}
.wsa5{word-spacing:3.420000px;}
.wsb8{word-spacing:3.600000px;}
.wsac{word-spacing:3.720000px;}
.ws1d{word-spacing:3.744000px;}
.ws4f{word-spacing:3.780000px;}
.ws90{word-spacing:3.900000px;}
.ws4d{word-spacing:3.960000px;}
.ws14{word-spacing:3.996000px;}
.wsbc{word-spacing:4.020000px;}
.wsa4{word-spacing:4.140000px;}
.wsa1{word-spacing:4.200000px;}
.wsbb{word-spacing:4.320000px;}
.ws2a{word-spacing:4.380000px;}
.wsb7{word-spacing:4.500000px;}
.wscf{word-spacing:4.560000px;}
.ws4a{word-spacing:4.680000px;}
.wsa0{word-spacing:4.740000px;}
.wsa3{word-spacing:4.800000px;}
.ws42{word-spacing:4.860000px;}
.ws15{word-spacing:4.968000px;}
.wsab{word-spacing:4.980000px;}
.wsc1{word-spacing:5.040000px;}
.wsa2{word-spacing:5.100000px;}
.ws89{word-spacing:5.160000px;}
.wsb{word-spacing:5.220000px;}
.wsbf{word-spacing:5.280000px;}
.wsb9{word-spacing:5.400000px;}
.ws2d{word-spacing:5.520000px;}
.wsaf{word-spacing:5.580000px;}
.wsad{word-spacing:5.640000px;}
.wsc6{word-spacing:5.700000px;}
.wsd0{word-spacing:5.760000px;}
.ws37{word-spacing:5.820000px;}
.ws98{word-spacing:5.880000px;}
.ws93{word-spacing:5.940000px;}
.ws51{word-spacing:6.000000px;}
.ws43{word-spacing:6.120000px;}
.wsca{word-spacing:6.180000px;}
.wscd{word-spacing:6.360000px;}
.wsc8{word-spacing:6.420000px;}
.ws1a{word-spacing:6.444000px;}
.ws46{word-spacing:6.600000px;}
.wsc{word-spacing:6.624000px;}
.ws28{word-spacing:6.780000px;}
.ws4c{word-spacing:6.900000px;}
.wsdc{word-spacing:7.248000px;}
.wsaa{word-spacing:7.260000px;}
.wsdb{word-spacing:7.296000px;}
.ws3a{word-spacing:7.320000px;}
.ws94{word-spacing:7.380000px;}
.ws50{word-spacing:7.440000px;}
.wsb0{word-spacing:7.500000px;}
.ws3f{word-spacing:7.560000px;}
.wsc9{word-spacing:7.620000px;}
.ws97{word-spacing:7.680000px;}
.ws8d{word-spacing:7.740000px;}
.ws9e{word-spacing:7.860000px;}
.wsd5{word-spacing:7.872000px;}
.wsb5{word-spacing:7.920000px;}
.wsb6{word-spacing:8.280000px;}
.ws4b{word-spacing:8.340000px;}
.ws9c{word-spacing:8.460000px;}
.ws82{word-spacing:8.700000px;}
.wsa6{word-spacing:8.820000px;}
.ws3d{word-spacing:8.880000px;}
.ws96{word-spacing:8.940000px;}
.wsd6{word-spacing:9.024000px;}
.wsa9{word-spacing:9.360000px;}
.wse0{word-spacing:9.408000px;}
.ws2c{word-spacing:9.420000px;}
.ws8a{word-spacing:9.660000px;}
.ws3c{word-spacing:9.780000px;}
.ws34{word-spacing:9.900000px;}
.ws6f{word-spacing:10.272000px;}
.ws9b{word-spacing:10.380000px;}
.ws85{word-spacing:11.040000px;}
.wsd1{word-spacing:11.472000px;}
.ws99{word-spacing:11.520000px;}
.wsae{word-spacing:11.760000px;}
.wsd9{word-spacing:11.856000px;}
.ws4e{word-spacing:12.120000px;}
.wsd{word-spacing:12.132000px;}
.wsb3{word-spacing:12.240000px;}
.ws36{word-spacing:12.600000px;}
.wsb1{word-spacing:12.960000px;}
.wsd2{word-spacing:13.968000px;}
.ws83{word-spacing:14.400000px;}
.ws87{word-spacing:14.520000px;}
.ws80{word-spacing:15.300000px;}
.ws35{word-spacing:15.540000px;}
.ws3b{word-spacing:17.040000px;}
.wsc0{word-spacing:18.240000px;}
.ws7c{word-spacing:19.632000px;}
.ws86{word-spacing:20.940000px;}
.ws9a{word-spacing:23.880000px;}
.ws9f{word-spacing:24.120000px;}
.wsc4{word-spacing:25.260000px;}
.ws60{word-spacing:26.256000px;}
.ws84{word-spacing:26.640000px;}
.wsc3{word-spacing:30.960000px;}
.ws59{word-spacing:32.550000px;}
.ws58{word-spacing:38.556000px;}
.ws5f{word-spacing:41.856000px;}
.ws81{word-spacing:46.680000px;}
.wse1{word-spacing:46.992000px;}
.ws56{word-spacing:49.728000px;}
.ws77{word-spacing:50.160000px;}
.ws6b{word-spacing:50.256000px;}
.ws62{word-spacing:51.072000px;}
.ws7b{word-spacing:60.192000px;}
.ws61{word-spacing:61.968000px;}
.ws7a{word-spacing:62.256000px;}
.ws65{word-spacing:65.856000px;}
.ws76{word-spacing:67.632000px;}
.ws72{word-spacing:74.256000px;}
.ws79{word-spacing:82.272000px;}
.ws5e{word-spacing:84.192000px;}
.ws6c{word-spacing:85.968000px;}
.ws57{word-spacing:87.528000px;}
.ws73{word-spacing:87.744000px;}
.ws75{word-spacing:87.840000px;}
.ws6a{word-spacing:89.856000px;}
.ws54{word-spacing:102.312000px;}
.ws6e{word-spacing:102.672000px;}
.ws69{word-spacing:108.192000px;}
.ws5c{word-spacing:110.256000px;}
.ws64{word-spacing:113.664000px;}
.ws5b{word-spacing:126.672000px;}
.ws68{word-spacing:134.256000px;}
.ws5d{word-spacing:135.840000px;}
.ws67{word-spacing:150.672000px;}
.ws5a{word-spacing:157.200000px;}
.ws66{word-spacing:170.448000px;}
.ws74{word-spacing:174.912000px;}
.ws63{word-spacing:194.496000px;}
.ws70{word-spacing:202.416000px;}
.ws78{word-spacing:211.152000px;}
.ws6d{word-spacing:215.808000px;}
.ws71{word-spacing:317.376000px;}
._e{margin-left:-6.660000px;}
._7{margin-left:-5.302800px;}
._0{margin-left:-3.630000px;}
._5{margin-left:-2.376000px;}
._1{margin-left:-1.260000px;}
._4{width:1.044000px;}
._3{width:2.052000px;}
._2{width:3.168000px;}
._6{width:4.716000px;}
._9{width:6.360000px;}
._d{width:7.380000px;}
._c{width:8.460000px;}
._8{width:9.480000px;}
._a{width:10.500000px;}
._b{width:12.180000px;}
._f{width:13.980000px;}
._15{width:16.440000px;}
._10{width:40.380000px;}
._12{width:45.798000px;}
._11{width:49.680000px;}
._13{width:98.206800px;}
._14{width:123.840000px;}
.fc4{color:transparent;}
.fc3{color:rgb(236,0,140);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(122,7,30);}
.fs7{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs4{font-size:40.905000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:58.800000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:60.600000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:45.777450px;}
.ya4{bottom:47.903550px;}
.yf6{bottom:70.001100px;}
.yf5{bottom:76.001100px;}
.y111{bottom:85.245300px;}
.y79{bottom:92.733600px;}
.ya3{bottom:92.745300px;}
.yf4{bottom:94.529100px;}
.y177{bottom:97.017600px;}
.yf3{bottom:100.529100px;}
.y110{bottom:101.745300px;}
.y147{bottom:106.221600px;}
.y78{bottom:109.233600px;}
.y12e{bottom:109.236300px;}
.ya2{bottom:109.245300px;}
.y176{bottom:110.517600px;}
.y10f{bottom:118.245300px;}
.y146{bottom:119.721600px;}
.yf2{bottom:119.945100px;}
.y175{bottom:124.017600px;}
.y77{bottom:125.733600px;}
.y12d{bottom:125.736300px;}
.ya1{bottom:125.745300px;}
.yf1{bottom:125.945100px;}
.y2e{bottom:127.926150px;}
.y145{bottom:133.221600px;}
.y10e{bottom:134.745300px;}
.y76{bottom:142.233600px;}
.y12c{bottom:142.236300px;}
.ya0{bottom:142.245300px;}
.yf0{bottom:145.037100px;}
.y2d{bottom:145.926150px;}
.y143{bottom:146.721450px;}
.y144{bottom:146.721600px;}
.y174{bottom:150.273600px;}
.yee{bottom:151.037100px;}
.y10d{bottom:151.245300px;}
.y2c{bottom:154.926150px;}
.yef{bottom:157.037100px;}
.y75{bottom:158.733600px;}
.y12b{bottom:158.736300px;}
.y9f{bottom:158.745300px;}
.y142{bottom:160.221450px;}
.y173{bottom:163.773600px;}
.y2b{bottom:163.926150px;}
.y10c{bottom:167.745300px;}
.yed{bottom:170.557800px;}
.y2a{bottom:172.926150px;}
.y141{bottom:173.721450px;}
.y74{bottom:175.233600px;}
.y12a{bottom:175.236300px;}
.y9e{bottom:175.245300px;}
.yec{bottom:176.557800px;}
.y172{bottom:177.273600px;}
.y29{bottom:181.926150px;}
.y10b{bottom:184.245300px;}
.y140{bottom:187.221450px;}
.y171{bottom:190.773600px;}
.y28{bottom:190.926150px;}
.y73{bottom:191.733600px;}
.y129{bottom:191.736300px;}
.yeb{bottom:195.217800px;}
.y27{bottom:199.926150px;}
.y10a{bottom:200.745300px;}
.yea{bottom:201.217800px;}
.y170{bottom:204.273600px;}
.y9d{bottom:204.495300px;}
.y72{bottom:208.233600px;}
.y26{bottom:208.926150px;}
.y13f{bottom:213.477450px;}
.y109{bottom:217.245300px;}
.ye9{bottom:219.661800px;}
.y128{bottom:221.001300px;}
.y25{bottom:222.175050px;}
.y4b{bottom:223.570050px;}
.y71{bottom:224.733600px;}
.ye8{bottom:225.661800px;}
.y13e{bottom:226.977450px;}
.y16f{bottom:230.529600px;}
.y24{bottom:232.678050px;}
.y9b{bottom:233.745300px;}
.y4a{bottom:234.073050px;}
.y127{bottom:237.501300px;}
.y13d{bottom:240.477450px;}
.y70{bottom:241.233600px;}
.y16e{bottom:244.029600px;}
.ye7{bottom:244.249800px;}
.y9a{bottom:250.245300px;}
.ye6{bottom:250.249800px;}
.y23{bottom:251.908950px;}
.y49{bottom:253.324050px;}
.y126{bottom:254.001300px;}
.y16d{bottom:257.529600px;}
.y6f{bottom:257.733600px;}
.y22{bottom:262.411950px;}
.y48{bottom:263.827050px;}
.y13c{bottom:266.733450px;}
.y99{bottom:266.745300px;}
.ye4{bottom:270.254550px;}
.ye3{bottom:270.265050px;}
.ye2{bottom:270.275550px;}
.y125{bottom:270.501300px;}
.y16c{bottom:271.029600px;}
.y21{bottom:272.914950px;}
.y6e{bottom:274.233600px;}
.y47{bottom:274.330050px;}
.ye1{bottom:276.281550px;}
.y13b{bottom:280.233450px;}
.ye5{bottom:282.256050px;}
.y98{bottom:283.245300px;}
.y20{bottom:283.417950px;}
.y16b{bottom:284.529600px;}
.y124{bottom:287.001300px;}
.y46{bottom:293.581050px;}
.y13a{bottom:293.733450px;}
.y1f{bottom:293.920950px;}
.ye0{bottom:297.638400px;}
.y108{bottom:299.745300px;}
.y6d{bottom:303.489450px;}
.y123{bottom:303.501300px;}
.y45{bottom:304.084050px;}
.y16a{bottom:310.785600px;}
.y97{bottom:312.501300px;}
.y1e{bottom:313.171950px;}
.y44{bottom:314.587050px;}
.ydf{bottom:315.638400px;}
.y107{bottom:316.245300px;}
.y6c{bottom:319.989450px;}
.y122{bottom:320.001300px;}
.y139{bottom:320.013000px;}
.y1d{bottom:323.674950px;}
.y169{bottom:324.285600px;}
.y43{bottom:325.090050px;}
.y96{bottom:329.001300px;}
.y106{bottom:332.745300px;}
.yde{bottom:333.638400px;}
.y1c{bottom:334.177950px;}
.y42{bottom:335.593050px;}
.y6b{bottom:336.489450px;}
.y121{bottom:336.501300px;}
.y168{bottom:337.785600px;}
.y1b{bottom:344.680950px;}
.y95{bottom:345.501300px;}
.y105{bottom:349.245300px;}
.y138{bottom:349.263000px;}
.y6a{bottom:352.989450px;}
.y41{bottom:354.844050px;}
.y1a{bottom:355.183950px;}
.y94{bottom:362.001300px;}
.y167{bottom:364.041600px;}
.y40{bottom:365.347050px;}
.y19{bottom:365.686950px;}
.y104{bottom:365.745300px;}
.y120{bottom:365.751300px;}
.yc1{bottom:365.763000px;}
.y69{bottom:369.489450px;}
.ydc{bottom:369.513000px;}
.y3f{bottom:375.850050px;}
.y166{bottom:377.541600px;}
.y93{bottom:378.501300px;}
.y103{bottom:382.245300px;}
.y11f{bottom:382.251300px;}
.yc0{bottom:382.263000px;}
.y18{bottom:384.937950px;}
.y68{bottom:385.989450px;}
.ydb{bottom:386.013000px;}
.y3e{bottom:386.353050px;}
.y165{bottom:391.041600px;}
.y92{bottom:395.001300px;}
.y17{bottom:395.395950px;}
.y3d{bottom:396.856050px;}
.y102{bottom:398.745300px;}
.y11e{bottom:398.751300px;}
.ybf{bottom:398.763000px;}
.yda{bottom:402.513000px;}
.y164{bottom:404.541600px;}
.y16{bottom:405.898950px;}
.y3c{bottom:407.359050px;}
.y91{bottom:411.501300px;}
.y67{bottom:415.245300px;}
.y101{bottom:415.251300px;}
.y137{bottom:415.263000px;}
.y15{bottom:416.401950px;}
.y3b{bottom:417.862050px;}
.y163{bottom:418.041600px;}
.yd9{bottom:419.013000px;}
.y14{bottom:426.904950px;}
.y90{bottom:428.001300px;}
.ybe{bottom:428.013000px;}
.y3a{bottom:428.365050px;}
.y66{bottom:431.745300px;}
.y100{bottom:431.751300px;}
.y136{bottom:431.763000px;}
.yd8{bottom:435.513000px;}
.y13{bottom:437.407950px;}
.y39{bottom:438.868050px;}
.y162{bottom:444.297600px;}
.y8f{bottom:444.501300px;}
.ybd{bottom:444.513000px;}
.y12{bottom:447.910950px;}
.y65{bottom:448.245300px;}
.yff{bottom:448.251300px;}
.yd7{bottom:452.013000px;}
.y161{bottom:457.797600px;}
.y38{bottom:458.119050px;}
.y11{bottom:458.413950px;}
.y8e{bottom:461.001300px;}
.ybc{bottom:461.013000px;}
.y64{bottom:464.745300px;}
.yd6{bottom:468.513000px;}
.y37{bottom:468.622050px;}
.y10{bottom:468.916950px;}
.y160{bottom:471.297600px;}
.y8d{bottom:477.501300px;}
.ybb{bottom:477.513000px;}
.y36{bottom:479.125050px;}
.y63{bottom:481.245300px;}
.y15f{bottom:484.797600px;}
.yd5{bottom:485.013000px;}
.yf{bottom:488.167950px;}
.y35{bottom:489.628050px;}
.y8c{bottom:494.001300px;}
.yfe{bottom:494.013000px;}
.y62{bottom:497.745300px;}
.y15e{bottom:498.297600px;}
.ye{bottom:498.670950px;}
.y34{bottom:500.131050px;}
.yd4{bottom:501.513000px;}
.yba{bottom:506.763000px;}
.yd{bottom:509.173950px;}
.y8b{bottom:510.501300px;}
.yfd{bottom:510.513000px;}
.y33{bottom:510.634050px;}
.y15d{bottom:511.797600px;}
.y61{bottom:514.245300px;}
.yd3{bottom:518.013000px;}
.yc{bottom:519.676950px;}
.yb9{bottom:523.263000px;}
.y15c{bottom:525.297600px;}
.y8a{bottom:527.001300px;}
.yfc{bottom:527.013000px;}
.y32{bottom:529.897950px;}
.yb{bottom:530.179950px;}
.y60{bottom:530.745300px;}
.yd2{bottom:534.513000px;}
.yb8{bottom:539.763000px;}
.ya{bottom:540.682950px;}
.y89{bottom:543.501300px;}
.yfb{bottom:543.513000px;}
.y31{bottom:544.891950px;}
.y5f{bottom:547.245300px;}
.yd1{bottom:551.013000px;}
.y9{bottom:551.185950px;}
.y15b{bottom:551.553600px;}
.yb7{bottom:556.263000px;}
.y30{bottom:559.885950px;}
.yfa{bottom:560.013000px;}
.y5e{bottom:563.751300px;}
.y15a{bottom:565.053600px;}
.y88{bottom:572.757150px;}
.yb6{bottom:572.763000px;}
.yf9{bottom:576.513000px;}
.y18a{bottom:577.813200px;}
.y159{bottom:578.553600px;}
.y8{bottom:579.027000px;}
.y2f{bottom:579.138000px;}
.y5d{bottom:580.251300px;}
.yd0{bottom:580.263000px;}
.y87{bottom:589.257150px;}
.yb5{bottom:589.263000px;}
.y189{bottom:591.313200px;}
.yf8{bottom:593.013000px;}
.y5c{bottom:596.751300px;}
.ycf{bottom:596.763000px;}
.y158{bottom:604.809600px;}
.y86{bottom:605.757150px;}
.yb4{bottom:605.763000px;}
.yf7{bottom:609.513000px;}
.yce{bottom:613.263000px;}
.y188{bottom:617.569200px;}
.y157{bottom:618.309600px;}
.y85{bottom:622.257150px;}
.yb3{bottom:622.263000px;}
.y5b{bottom:626.001300px;}
.y11d{bottom:626.013000px;}
.ycd{bottom:629.763000px;}
.y187{bottom:631.069200px;}
.y84{bottom:638.757150px;}
.yb2{bottom:638.763000px;}
.y5a{bottom:642.501300px;}
.y11c{bottom:642.513000px;}
.y156{bottom:644.565600px;}
.ycc{bottom:646.263000px;}
.y83{bottom:655.257150px;}
.y135{bottom:655.263000px;}
.y186{bottom:657.325200px;}
.y155{bottom:658.065600px;}
.y59{bottom:659.001300px;}
.y11b{bottom:659.013000px;}
.ycb{bottom:662.763000px;}
.yb1{bottom:668.013000px;}
.y185{bottom:670.825200px;}
.y154{bottom:671.565600px;}
.y82{bottom:671.757150px;}
.y134{bottom:671.763000px;}
.y58{bottom:675.501300px;}
.y11a{bottom:675.513000px;}
.y7{bottom:678.026700px;}
.yca{bottom:679.263000px;}
.y184{bottom:684.325200px;}
.yb0{bottom:684.513000px;}
.y81{bottom:688.257150px;}
.y133{bottom:688.263000px;}
.y57{bottom:692.007150px;}
.yc9{bottom:695.763000px;}
.y153{bottom:697.821600px;}
.y183{bottom:697.825200px;}
.y6{bottom:698.776200px;}
.yaf{bottom:701.013000px;}
.y80{bottom:704.757150px;}
.y119{bottom:704.763000px;}
.y56{bottom:708.507150px;}
.y152{bottom:711.321600px;}
.yae{bottom:717.513000px;}
.y5{bottom:719.528250px;}
.y7f{bottom:721.257150px;}
.y118{bottom:721.263000px;}
.y182{bottom:724.081200px;}
.y151{bottom:724.821600px;}
.yc8{bottom:725.013000px;}
.yad{bottom:734.013000px;}
.y181{bottom:737.581200px;}
.y55{bottom:737.757150px;}
.y117{bottom:737.763000px;}
.yac{bottom:750.513000px;}
.y150{bottom:751.077600px;}
.y180{bottom:751.081200px;}
.y54{bottom:754.257150px;}
.yc7{bottom:754.263000px;}
.y4{bottom:761.032050px;}
.y14f{bottom:764.577600px;}
.y17f{bottom:764.581200px;}
.yab{bottom:767.013000px;}
.y53{bottom:770.757150px;}
.yc6{bottom:770.763000px;}
.y3{bottom:777.532050px;}
.y14e{bottom:778.077600px;}
.yaa{bottom:783.513000px;}
.y52{bottom:787.257150px;}
.yc5{bottom:787.263000px;}
.y17e{bottom:790.837200px;}
.ya9{bottom:800.013000px;}
.y51{bottom:803.757150px;}
.yc4{bottom:803.763000px;}
.y7e{bottom:803.763600px;}
.y14d{bottom:804.333600px;}
.y17d{bottom:804.337200px;}
.y116{bottom:816.510300px;}
.ya8{bottom:816.513000px;}
.y14c{bottom:817.833600px;}
.y50{bottom:820.257150px;}
.yc3{bottom:820.263000px;}
.y7d{bottom:820.263600px;}
.y17c{bottom:830.593200px;}
.y14b{bottom:831.333600px;}
.y115{bottom:833.010300px;}
.ya7{bottom:833.013000px;}
.y4f{bottom:836.757150px;}
.y17b{bottom:844.093200px;}
.y114{bottom:849.510300px;}
.ya6{bottom:849.513000px;}
.y7c{bottom:849.513600px;}
.y4e{bottom:853.257150px;}
.y2{bottom:853.487550px;}
.yc2{bottom:854.508150px;}
.y14a{bottom:857.589600px;}
.y17a{bottom:857.593200px;}
.y113{bottom:866.010300px;}
.ya5{bottom:866.013000px;}
.y7b{bottom:866.013600px;}
.y149{bottom:871.089600px;}
.y179{bottom:871.093200px;}
.y112{bottom:882.510300px;}
.y4d{bottom:882.513000px;}
.y7a{bottom:882.513600px;}
.y148{bottom:884.589600px;}
.y178{bottom:884.593200px;}
.y1{bottom:928.415250px;}
.y9c{bottom:932.304450px;}
.ydd{bottom:932.312850px;}
.y132{bottom:1021.794000px;}
.y131{bottom:1039.794000px;}
.y130{bottom:1057.794000px;}
.y12f{bottom:1075.794000px;}
.hc{height:30.692900px;}
.h2{height:31.587891px;}
.h7{height:31.974609px;}
.h8{height:36.331150px;}
.hf{height:36.852539px;}
.h12{height:42.117188px;}
.h6{height:47.381836px;}
.h5{height:47.961914px;}
.ha{height:52.225195px;}
.hb{height:52.646484px;}
.h13{height:52.657284px;}
.h4{height:53.291016px;}
.h9{height:53.823926px;}
.h3{height:58.620117px;}
.hd{height:60.834539px;}
.h10{height:66.117188px;}
.he{height:84.816539px;}
.h11{height:90.117188px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x34{left:-106.313550px;}
.x35{left:-65.138550px;}
.x33{left:-17.507400px;}
.x0{left:0.000000px;}
.x1{left:80.787450px;}
.x2{left:82.534050px;}
.x7{left:83.874900px;}
.x20{left:85.226850px;}
.xe{left:95.669250px;}
.x6{left:98.751900px;}
.x4{left:107.085600px;}
.x32{left:123.287850px;}
.x3{left:134.575200px;}
.x16{left:140.065950px;}
.x1a{left:154.914900px;}
.xd{left:158.056800px;}
.x2a{left:161.746200px;}
.x31{left:164.870250px;}
.x21{left:171.842850px;}
.x29{left:177.848550px;}
.x5{left:182.429400px;}
.x28{left:187.508550px;}
.x18{left:190.226700px;}
.x1b{left:217.211400px;}
.x22{left:233.846850px;}
.x19{left:240.986700px;}
.x2f{left:271.146000px;}
.x23{left:291.746850px;}
.x30{left:312.321000px;}
.x1c{left:336.060900px;}
.x17{left:338.396700px;}
.x24{left:344.042850px;}
.x2e{left:359.946000px;}
.xc{left:366.834450px;}
.xf{left:369.922200px;}
.x9{left:373.227150px;}
.xb{left:381.720450px;}
.x10{left:384.802200px;}
.x25{left:395.426850px;}
.x11{left:423.623100px;}
.x12{left:439.315500px;}
.x13{left:448.060500px;}
.xa{left:451.351182px;}
.x14{left:459.482400px;}
.x8{left:461.786550px;}
.x26{left:497.126850px;}
.x1d{left:545.924400px;}
.x27{left:554.954850px;}
.x15{left:579.324150px;}
.x1e{left:594.906900px;}
.x1f{left:613.827900px;}
.x2c{left:616.527150px;}
.x2d{left:657.702150px;}
.x2b{left:705.327150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v2{vertical-align:21.317333pt;}
.v3{vertical-align:42.634667pt;}
.ls1{letter-spacing:-1.150453pt;}
.ls2{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1f{word-spacing:-13.333333pt;}
.wsc5{word-spacing:-10.666667pt;}
.ws55{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.000000pt;}
.ws1e{word-spacing:-7.773333pt;}
.ws20{word-spacing:-6.622880pt;}
.ws2b{word-spacing:-2.880000pt;}
.wsb2{word-spacing:-2.826667pt;}
.wsd3{word-spacing:-2.688000pt;}
.ws24{word-spacing:-2.666667pt;}
.wsb4{word-spacing:-2.560000pt;}
.wsce{word-spacing:-2.506667pt;}
.ws3{word-spacing:-2.448000pt;}
.ws41{word-spacing:-2.293333pt;}
.ws31{word-spacing:-2.240000pt;}
.ws29{word-spacing:-2.133333pt;}
.ws91{word-spacing:-2.080000pt;}
.ws47{word-spacing:-2.026667pt;}
.ws88{word-spacing:-1.973333pt;}
.wsd7{word-spacing:-1.962667pt;}
.wse2{word-spacing:-1.920000pt;}
.wscc{word-spacing:-1.813333pt;}
.ws2f{word-spacing:-1.760000pt;}
.ws13{word-spacing:-1.536000pt;}
.ws1c{word-spacing:-1.376000pt;}
.ws3e{word-spacing:-1.226667pt;}
.wsdd{word-spacing:-1.194667pt;}
.ws19{word-spacing:-1.152000pt;}
.wsbd{word-spacing:-0.906667pt;}
.ws6{word-spacing:-0.896000pt;}
.ws92{word-spacing:-0.853333pt;}
.ws5{word-spacing:-0.832000pt;}
.wsa8{word-spacing:-0.800000pt;}
.wsa{word-spacing:-0.736000pt;}
.ws16{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.586667pt;}
.ws1{word-spacing:-0.576000pt;}
.wsc7{word-spacing:-0.533333pt;}
.ws7f{word-spacing:-0.512000pt;}
.wscb{word-spacing:-0.480000pt;}
.wsd4{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.352000pt;}
.ws21{word-spacing:-0.224000pt;}
.wsd8{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.037333pt;}
.ws27{word-spacing:0.053333pt;}
.ws33{word-spacing:0.106667pt;}
.ws49{word-spacing:0.160000pt;}
.ws30{word-spacing:0.266667pt;}
.ws18{word-spacing:0.288000pt;}
.ws17{word-spacing:0.320000pt;}
.ws38{word-spacing:0.373333pt;}
.ws4{word-spacing:0.480000pt;}
.ws40{word-spacing:0.586667pt;}
.ws9{word-spacing:0.640000pt;}
.ws25{word-spacing:0.693333pt;}
.ws22{word-spacing:0.746667pt;}
.ws7{word-spacing:0.864000pt;}
.ws45{word-spacing:0.906667pt;}
.wsdf{word-spacing:1.066667pt;}
.ws12{word-spacing:1.216000pt;}
.ws44{word-spacing:1.226667pt;}
.ws8{word-spacing:1.248000pt;}
.wsda{word-spacing:1.280000pt;}
.ws52{word-spacing:1.333333pt;}
.ws11{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.472000pt;}
.wsbe{word-spacing:1.493333pt;}
.ws8f{word-spacing:1.546667pt;}
.wsde{word-spacing:1.578667pt;}
.wse{word-spacing:1.632000pt;}
.wsba{word-spacing:1.653333pt;}
.ws23{word-spacing:1.706667pt;}
.ws7e{word-spacing:1.749333pt;}
.ws53{word-spacing:1.866667pt;}
.ws7d{word-spacing:2.005333pt;}
.wsa7{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.293333pt;}
.ws8e{word-spacing:2.346667pt;}
.ws32{word-spacing:2.453333pt;}
.ws2e{word-spacing:2.613333pt;}
.ws26{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.ws48{word-spacing:2.933333pt;}
.wsf{word-spacing:2.944000pt;}
.ws39{word-spacing:2.986667pt;}
.wsa5{word-spacing:3.040000pt;}
.wsb8{word-spacing:3.200000pt;}
.wsac{word-spacing:3.306667pt;}
.ws1d{word-spacing:3.328000pt;}
.ws4f{word-spacing:3.360000pt;}
.ws90{word-spacing:3.466667pt;}
.ws4d{word-spacing:3.520000pt;}
.ws14{word-spacing:3.552000pt;}
.wsbc{word-spacing:3.573333pt;}
.wsa4{word-spacing:3.680000pt;}
.wsa1{word-spacing:3.733333pt;}
.wsbb{word-spacing:3.840000pt;}
.ws2a{word-spacing:3.893333pt;}
.wsb7{word-spacing:4.000000pt;}
.wscf{word-spacing:4.053333pt;}
.ws4a{word-spacing:4.160000pt;}
.wsa0{word-spacing:4.213333pt;}
.wsa3{word-spacing:4.266667pt;}
.ws42{word-spacing:4.320000pt;}
.ws15{word-spacing:4.416000pt;}
.wsab{word-spacing:4.426667pt;}
.wsc1{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.533333pt;}
.ws89{word-spacing:4.586667pt;}
.wsb{word-spacing:4.640000pt;}
.wsbf{word-spacing:4.693333pt;}
.wsb9{word-spacing:4.800000pt;}
.ws2d{word-spacing:4.906667pt;}
.wsaf{word-spacing:4.960000pt;}
.wsad{word-spacing:5.013333pt;}
.wsc6{word-spacing:5.066667pt;}
.wsd0{word-spacing:5.120000pt;}
.ws37{word-spacing:5.173333pt;}
.ws98{word-spacing:5.226667pt;}
.ws93{word-spacing:5.280000pt;}
.ws51{word-spacing:5.333333pt;}
.ws43{word-spacing:5.440000pt;}
.wsca{word-spacing:5.493333pt;}
.wscd{word-spacing:5.653333pt;}
.wsc8{word-spacing:5.706667pt;}
.ws1a{word-spacing:5.728000pt;}
.ws46{word-spacing:5.866667pt;}
.wsc{word-spacing:5.888000pt;}
.ws28{word-spacing:6.026667pt;}
.ws4c{word-spacing:6.133333pt;}
.wsdc{word-spacing:6.442667pt;}
.wsaa{word-spacing:6.453333pt;}
.wsdb{word-spacing:6.485333pt;}
.ws3a{word-spacing:6.506667pt;}
.ws94{word-spacing:6.560000pt;}
.ws50{word-spacing:6.613333pt;}
.wsb0{word-spacing:6.666667pt;}
.ws3f{word-spacing:6.720000pt;}
.wsc9{word-spacing:6.773333pt;}
.ws97{word-spacing:6.826667pt;}
.ws8d{word-spacing:6.880000pt;}
.ws9e{word-spacing:6.986667pt;}
.wsd5{word-spacing:6.997333pt;}
.wsb5{word-spacing:7.040000pt;}
.wsb6{word-spacing:7.360000pt;}
.ws4b{word-spacing:7.413333pt;}
.ws9c{word-spacing:7.520000pt;}
.ws82{word-spacing:7.733333pt;}
.wsa6{word-spacing:7.840000pt;}
.ws3d{word-spacing:7.893333pt;}
.ws96{word-spacing:7.946667pt;}
.wsd6{word-spacing:8.021333pt;}
.wsa9{word-spacing:8.320000pt;}
.wse0{word-spacing:8.362667pt;}
.ws2c{word-spacing:8.373333pt;}
.ws8a{word-spacing:8.586667pt;}
.ws3c{word-spacing:8.693333pt;}
.ws34{word-spacing:8.800000pt;}
.ws6f{word-spacing:9.130667pt;}
.ws9b{word-spacing:9.226667pt;}
.ws85{word-spacing:9.813333pt;}
.wsd1{word-spacing:10.197333pt;}
.ws99{word-spacing:10.240000pt;}
.wsae{word-spacing:10.453333pt;}
.wsd9{word-spacing:10.538667pt;}
.ws4e{word-spacing:10.773333pt;}
.wsd{word-spacing:10.784000pt;}
.wsb3{word-spacing:10.880000pt;}
.ws36{word-spacing:11.200000pt;}
.wsb1{word-spacing:11.520000pt;}
.wsd2{word-spacing:12.416000pt;}
.ws83{word-spacing:12.800000pt;}
.ws87{word-spacing:12.906667pt;}
.ws80{word-spacing:13.600000pt;}
.ws35{word-spacing:13.813333pt;}
.ws3b{word-spacing:15.146667pt;}
.wsc0{word-spacing:16.213333pt;}
.ws7c{word-spacing:17.450667pt;}
.ws86{word-spacing:18.613333pt;}
.ws9a{word-spacing:21.226667pt;}
.ws9f{word-spacing:21.440000pt;}
.wsc4{word-spacing:22.453333pt;}
.ws60{word-spacing:23.338667pt;}
.ws84{word-spacing:23.680000pt;}
.wsc3{word-spacing:27.520000pt;}
.ws59{word-spacing:28.933333pt;}
.ws58{word-spacing:34.272000pt;}
.ws5f{word-spacing:37.205333pt;}
.ws81{word-spacing:41.493333pt;}
.wse1{word-spacing:41.770667pt;}
.ws56{word-spacing:44.202667pt;}
.ws77{word-spacing:44.586667pt;}
.ws6b{word-spacing:44.672000pt;}
.ws62{word-spacing:45.397333pt;}
.ws7b{word-spacing:53.504000pt;}
.ws61{word-spacing:55.082667pt;}
.ws7a{word-spacing:55.338667pt;}
.ws65{word-spacing:58.538667pt;}
.ws76{word-spacing:60.117333pt;}
.ws72{word-spacing:66.005333pt;}
.ws79{word-spacing:73.130667pt;}
.ws5e{word-spacing:74.837333pt;}
.ws6c{word-spacing:76.416000pt;}
.ws57{word-spacing:77.802667pt;}
.ws73{word-spacing:77.994667pt;}
.ws75{word-spacing:78.080000pt;}
.ws6a{word-spacing:79.872000pt;}
.ws54{word-spacing:90.944000pt;}
.ws6e{word-spacing:91.264000pt;}
.ws69{word-spacing:96.170667pt;}
.ws5c{word-spacing:98.005333pt;}
.ws64{word-spacing:101.034667pt;}
.ws5b{word-spacing:112.597333pt;}
.ws68{word-spacing:119.338667pt;}
.ws5d{word-spacing:120.746667pt;}
.ws67{word-spacing:133.930667pt;}
.ws5a{word-spacing:139.733333pt;}
.ws66{word-spacing:151.509333pt;}
.ws74{word-spacing:155.477333pt;}
.ws63{word-spacing:172.885333pt;}
.ws70{word-spacing:179.925333pt;}
.ws78{word-spacing:187.690667pt;}
.ws6d{word-spacing:191.829333pt;}
.ws71{word-spacing:282.112000pt;}
._e{margin-left:-5.920000pt;}
._7{margin-left:-4.713600pt;}
._0{margin-left:-3.226667pt;}
._5{margin-left:-2.112000pt;}
._1{margin-left:-1.120000pt;}
._4{width:0.928000pt;}
._3{width:1.824000pt;}
._2{width:2.816000pt;}
._6{width:4.192000pt;}
._9{width:5.653333pt;}
._d{width:6.560000pt;}
._c{width:7.520000pt;}
._8{width:8.426667pt;}
._a{width:9.333333pt;}
._b{width:10.826667pt;}
._f{width:12.426667pt;}
._15{width:14.613333pt;}
._10{width:35.893333pt;}
._12{width:40.709333pt;}
._11{width:44.160000pt;}
._13{width:87.294933pt;}
._14{width:110.080000pt;}
.fs7{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:36.360000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:52.266667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:53.866667pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:40.691067pt;}
.ya4{bottom:42.580933pt;}
.yf6{bottom:62.223200pt;}
.yf5{bottom:67.556533pt;}
.y111{bottom:75.773600pt;}
.y79{bottom:82.429867pt;}
.ya3{bottom:82.440267pt;}
.yf4{bottom:84.025867pt;}
.y177{bottom:86.237867pt;}
.yf3{bottom:89.359200pt;}
.y110{bottom:90.440267pt;}
.y147{bottom:94.419200pt;}
.y78{bottom:97.096533pt;}
.y12e{bottom:97.098933pt;}
.ya2{bottom:97.106933pt;}
.y176{bottom:98.237867pt;}
.y10f{bottom:105.106933pt;}
.y146{bottom:106.419200pt;}
.yf2{bottom:106.617867pt;}
.y175{bottom:110.237867pt;}
.y77{bottom:111.763200pt;}
.y12d{bottom:111.765600pt;}
.ya1{bottom:111.773600pt;}
.yf1{bottom:111.951200pt;}
.y2e{bottom:113.712133pt;}
.y145{bottom:118.419200pt;}
.y10e{bottom:119.773600pt;}
.y76{bottom:126.429867pt;}
.y12c{bottom:126.432267pt;}
.ya0{bottom:126.440267pt;}
.yf0{bottom:128.921867pt;}
.y2d{bottom:129.712133pt;}
.y143{bottom:130.419067pt;}
.y144{bottom:130.419200pt;}
.y174{bottom:133.576533pt;}
.yee{bottom:134.255200pt;}
.y10d{bottom:134.440267pt;}
.y2c{bottom:137.712133pt;}
.yef{bottom:139.588533pt;}
.y75{bottom:141.096533pt;}
.y12b{bottom:141.098933pt;}
.y9f{bottom:141.106933pt;}
.y142{bottom:142.419067pt;}
.y173{bottom:145.576533pt;}
.y2b{bottom:145.712133pt;}
.y10c{bottom:149.106933pt;}
.yed{bottom:151.606933pt;}
.y2a{bottom:153.712133pt;}
.y141{bottom:154.419067pt;}
.y74{bottom:155.763200pt;}
.y12a{bottom:155.765600pt;}
.y9e{bottom:155.773600pt;}
.yec{bottom:156.940267pt;}
.y172{bottom:157.576533pt;}
.y29{bottom:161.712133pt;}
.y10b{bottom:163.773600pt;}
.y140{bottom:166.419067pt;}
.y171{bottom:169.576533pt;}
.y28{bottom:169.712133pt;}
.y73{bottom:170.429867pt;}
.y129{bottom:170.432267pt;}
.yeb{bottom:173.526933pt;}
.y27{bottom:177.712133pt;}
.y10a{bottom:178.440267pt;}
.yea{bottom:178.860267pt;}
.y170{bottom:181.576533pt;}
.y9d{bottom:181.773600pt;}
.y72{bottom:185.096533pt;}
.y26{bottom:185.712133pt;}
.y13f{bottom:189.757733pt;}
.y109{bottom:193.106933pt;}
.ye9{bottom:195.254933pt;}
.y128{bottom:196.445600pt;}
.y25{bottom:197.488933pt;}
.y4b{bottom:198.728933pt;}
.y71{bottom:199.763200pt;}
.ye8{bottom:200.588267pt;}
.y13e{bottom:201.757733pt;}
.y16f{bottom:204.915200pt;}
.y24{bottom:206.824933pt;}
.y9b{bottom:207.773600pt;}
.y4a{bottom:208.064933pt;}
.y127{bottom:211.112267pt;}
.y13d{bottom:213.757733pt;}
.y70{bottom:214.429867pt;}
.y16e{bottom:216.915200pt;}
.ye7{bottom:217.110933pt;}
.y9a{bottom:222.440267pt;}
.ye6{bottom:222.444267pt;}
.y23{bottom:223.919067pt;}
.y49{bottom:225.176933pt;}
.y126{bottom:225.778933pt;}
.y16d{bottom:228.915200pt;}
.y6f{bottom:229.096533pt;}
.y22{bottom:233.255067pt;}
.y48{bottom:234.512933pt;}
.y13c{bottom:237.096400pt;}
.y99{bottom:237.106933pt;}
.ye4{bottom:240.226267pt;}
.ye3{bottom:240.235600pt;}
.ye2{bottom:240.244933pt;}
.y125{bottom:240.445600pt;}
.y16c{bottom:240.915200pt;}
.y21{bottom:242.591067pt;}
.y6e{bottom:243.763200pt;}
.y47{bottom:243.848933pt;}
.ye1{bottom:245.583600pt;}
.y13b{bottom:249.096400pt;}
.ye5{bottom:250.894267pt;}
.y98{bottom:251.773600pt;}
.y20{bottom:251.927067pt;}
.y16b{bottom:252.915200pt;}
.y124{bottom:255.112267pt;}
.y46{bottom:260.960933pt;}
.y13a{bottom:261.096400pt;}
.y1f{bottom:261.263067pt;}
.ye0{bottom:264.567467pt;}
.y108{bottom:266.440267pt;}
.y6d{bottom:269.768400pt;}
.y123{bottom:269.778933pt;}
.y45{bottom:270.296933pt;}
.y16a{bottom:276.253867pt;}
.y97{bottom:277.778933pt;}
.y1e{bottom:278.375067pt;}
.y44{bottom:279.632933pt;}
.ydf{bottom:280.567467pt;}
.y107{bottom:281.106933pt;}
.y6c{bottom:284.435067pt;}
.y122{bottom:284.445600pt;}
.y139{bottom:284.456000pt;}
.y1d{bottom:287.711067pt;}
.y169{bottom:288.253867pt;}
.y43{bottom:288.968933pt;}
.y96{bottom:292.445600pt;}
.y106{bottom:295.773600pt;}
.yde{bottom:296.567467pt;}
.y1c{bottom:297.047067pt;}
.y42{bottom:298.304933pt;}
.y6b{bottom:299.101733pt;}
.y121{bottom:299.112267pt;}
.y168{bottom:300.253867pt;}
.y1b{bottom:306.383067pt;}
.y95{bottom:307.112267pt;}
.y105{bottom:310.440267pt;}
.y138{bottom:310.456000pt;}
.y6a{bottom:313.768400pt;}
.y41{bottom:315.416933pt;}
.y1a{bottom:315.719067pt;}
.y94{bottom:321.778933pt;}
.y167{bottom:323.592533pt;}
.y40{bottom:324.752933pt;}
.y19{bottom:325.055067pt;}
.y104{bottom:325.106933pt;}
.y120{bottom:325.112267pt;}
.yc1{bottom:325.122667pt;}
.y69{bottom:328.435067pt;}
.ydc{bottom:328.456000pt;}
.y3f{bottom:334.088933pt;}
.y166{bottom:335.592533pt;}
.y93{bottom:336.445600pt;}
.y103{bottom:339.773600pt;}
.y11f{bottom:339.778933pt;}
.yc0{bottom:339.789333pt;}
.y18{bottom:342.167067pt;}
.y68{bottom:343.101733pt;}
.ydb{bottom:343.122667pt;}
.y3e{bottom:343.424933pt;}
.y165{bottom:347.592533pt;}
.y92{bottom:351.112267pt;}
.y17{bottom:351.463067pt;}
.y3d{bottom:352.760933pt;}
.y102{bottom:354.440267pt;}
.y11e{bottom:354.445600pt;}
.ybf{bottom:354.456000pt;}
.yda{bottom:357.789333pt;}
.y164{bottom:359.592533pt;}
.y16{bottom:360.799067pt;}
.y3c{bottom:362.096933pt;}
.y91{bottom:365.778933pt;}
.y67{bottom:369.106933pt;}
.y101{bottom:369.112267pt;}
.y137{bottom:369.122667pt;}
.y15{bottom:370.135067pt;}
.y3b{bottom:371.432933pt;}
.y163{bottom:371.592533pt;}
.yd9{bottom:372.456000pt;}
.y14{bottom:379.471067pt;}
.y90{bottom:380.445600pt;}
.ybe{bottom:380.456000pt;}
.y3a{bottom:380.768933pt;}
.y66{bottom:383.773600pt;}
.y100{bottom:383.778933pt;}
.y136{bottom:383.789333pt;}
.yd8{bottom:387.122667pt;}
.y13{bottom:388.807067pt;}
.y39{bottom:390.104933pt;}
.y162{bottom:394.931200pt;}
.y8f{bottom:395.112267pt;}
.ybd{bottom:395.122667pt;}
.y12{bottom:398.143067pt;}
.y65{bottom:398.440267pt;}
.yff{bottom:398.445600pt;}
.yd7{bottom:401.789333pt;}
.y161{bottom:406.931200pt;}
.y38{bottom:407.216933pt;}
.y11{bottom:407.479067pt;}
.y8e{bottom:409.778933pt;}
.ybc{bottom:409.789333pt;}
.y64{bottom:413.106933pt;}
.yd6{bottom:416.456000pt;}
.y37{bottom:416.552933pt;}
.y10{bottom:416.815067pt;}
.y160{bottom:418.931200pt;}
.y8d{bottom:424.445600pt;}
.ybb{bottom:424.456000pt;}
.y36{bottom:425.888933pt;}
.y63{bottom:427.773600pt;}
.y15f{bottom:430.931200pt;}
.yd5{bottom:431.122667pt;}
.yf{bottom:433.927067pt;}
.y35{bottom:435.224933pt;}
.y8c{bottom:439.112267pt;}
.yfe{bottom:439.122667pt;}
.y62{bottom:442.440267pt;}
.y15e{bottom:442.931200pt;}
.ye{bottom:443.263067pt;}
.y34{bottom:444.560933pt;}
.yd4{bottom:445.789333pt;}
.yba{bottom:450.456000pt;}
.yd{bottom:452.599067pt;}
.y8b{bottom:453.778933pt;}
.yfd{bottom:453.789333pt;}
.y33{bottom:453.896933pt;}
.y15d{bottom:454.931200pt;}
.y61{bottom:457.106933pt;}
.yd3{bottom:460.456000pt;}
.yc{bottom:461.935067pt;}
.yb9{bottom:465.122667pt;}
.y15c{bottom:466.931200pt;}
.y8a{bottom:468.445600pt;}
.yfc{bottom:468.456000pt;}
.y32{bottom:471.020400pt;}
.yb{bottom:471.271067pt;}
.y60{bottom:471.773600pt;}
.yd2{bottom:475.122667pt;}
.yb8{bottom:479.789333pt;}
.ya{bottom:480.607067pt;}
.y89{bottom:483.112267pt;}
.yfb{bottom:483.122667pt;}
.y31{bottom:484.348400pt;}
.y5f{bottom:486.440267pt;}
.yd1{bottom:489.789333pt;}
.y9{bottom:489.943067pt;}
.y15b{bottom:490.269867pt;}
.yb7{bottom:494.456000pt;}
.y30{bottom:497.676400pt;}
.yfa{bottom:497.789333pt;}
.y5e{bottom:501.112267pt;}
.y15a{bottom:502.269867pt;}
.y88{bottom:509.117467pt;}
.yb6{bottom:509.122667pt;}
.yf9{bottom:512.456000pt;}
.y18a{bottom:513.611733pt;}
.y159{bottom:514.269867pt;}
.y8{bottom:514.690667pt;}
.y2f{bottom:514.789333pt;}
.y5d{bottom:515.778933pt;}
.yd0{bottom:515.789333pt;}
.y87{bottom:523.784133pt;}
.yb5{bottom:523.789333pt;}
.y189{bottom:525.611733pt;}
.yf8{bottom:527.122667pt;}
.y5c{bottom:530.445600pt;}
.ycf{bottom:530.456000pt;}
.y158{bottom:537.608533pt;}
.y86{bottom:538.450800pt;}
.yb4{bottom:538.456000pt;}
.yf7{bottom:541.789333pt;}
.yce{bottom:545.122667pt;}
.y188{bottom:548.950400pt;}
.y157{bottom:549.608533pt;}
.y85{bottom:553.117467pt;}
.yb3{bottom:553.122667pt;}
.y5b{bottom:556.445600pt;}
.y11d{bottom:556.456000pt;}
.ycd{bottom:559.789333pt;}
.y187{bottom:560.950400pt;}
.y84{bottom:567.784133pt;}
.yb2{bottom:567.789333pt;}
.y5a{bottom:571.112267pt;}
.y11c{bottom:571.122667pt;}
.y156{bottom:572.947200pt;}
.ycc{bottom:574.456000pt;}
.y83{bottom:582.450800pt;}
.y135{bottom:582.456000pt;}
.y186{bottom:584.289067pt;}
.y155{bottom:584.947200pt;}
.y59{bottom:585.778933pt;}
.y11b{bottom:585.789333pt;}
.ycb{bottom:589.122667pt;}
.yb1{bottom:593.789333pt;}
.y185{bottom:596.289067pt;}
.y154{bottom:596.947200pt;}
.y82{bottom:597.117467pt;}
.y134{bottom:597.122667pt;}
.y58{bottom:600.445600pt;}
.y11a{bottom:600.456000pt;}
.y7{bottom:602.690400pt;}
.yca{bottom:603.789333pt;}
.y184{bottom:608.289067pt;}
.yb0{bottom:608.456000pt;}
.y81{bottom:611.784133pt;}
.y133{bottom:611.789333pt;}
.y57{bottom:615.117467pt;}
.yc9{bottom:618.456000pt;}
.y153{bottom:620.285867pt;}
.y183{bottom:620.289067pt;}
.y6{bottom:621.134400pt;}
.yaf{bottom:623.122667pt;}
.y80{bottom:626.450800pt;}
.y119{bottom:626.456000pt;}
.y56{bottom:629.784133pt;}
.y152{bottom:632.285867pt;}
.yae{bottom:637.789333pt;}
.y5{bottom:639.580667pt;}
.y7f{bottom:641.117467pt;}
.y118{bottom:641.122667pt;}
.y182{bottom:643.627733pt;}
.y151{bottom:644.285867pt;}
.yc8{bottom:644.456000pt;}
.yad{bottom:652.456000pt;}
.y181{bottom:655.627733pt;}
.y55{bottom:655.784133pt;}
.y117{bottom:655.789333pt;}
.yac{bottom:667.122667pt;}
.y150{bottom:667.624533pt;}
.y180{bottom:667.627733pt;}
.y54{bottom:670.450800pt;}
.yc7{bottom:670.456000pt;}
.y4{bottom:676.472933pt;}
.y14f{bottom:679.624533pt;}
.y17f{bottom:679.627733pt;}
.yab{bottom:681.789333pt;}
.y53{bottom:685.117467pt;}
.yc6{bottom:685.122667pt;}
.y3{bottom:691.139600pt;}
.y14e{bottom:691.624533pt;}
.yaa{bottom:696.456000pt;}
.y52{bottom:699.784133pt;}
.yc5{bottom:699.789333pt;}
.y17e{bottom:702.966400pt;}
.ya9{bottom:711.122667pt;}
.y51{bottom:714.450800pt;}
.yc4{bottom:714.456000pt;}
.y7e{bottom:714.456533pt;}
.y14d{bottom:714.963200pt;}
.y17d{bottom:714.966400pt;}
.y116{bottom:725.786933pt;}
.ya8{bottom:725.789333pt;}
.y14c{bottom:726.963200pt;}
.y50{bottom:729.117467pt;}
.yc3{bottom:729.122667pt;}
.y7d{bottom:729.123200pt;}
.y17c{bottom:738.305067pt;}
.y14b{bottom:738.963200pt;}
.y115{bottom:740.453600pt;}
.ya7{bottom:740.456000pt;}
.y4f{bottom:743.784133pt;}
.y17b{bottom:750.305067pt;}
.y114{bottom:755.120267pt;}
.ya6{bottom:755.122667pt;}
.y7c{bottom:755.123200pt;}
.y4e{bottom:758.450800pt;}
.y2{bottom:758.655600pt;}
.yc2{bottom:759.562800pt;}
.y14a{bottom:762.301867pt;}
.y17a{bottom:762.305067pt;}
.y113{bottom:769.786933pt;}
.ya5{bottom:769.789333pt;}
.y7b{bottom:769.789867pt;}
.y149{bottom:774.301867pt;}
.y179{bottom:774.305067pt;}
.y112{bottom:784.453600pt;}
.y4d{bottom:784.456000pt;}
.y7a{bottom:784.456533pt;}
.y148{bottom:786.301867pt;}
.y178{bottom:786.305067pt;}
.y1{bottom:825.258000pt;}
.y9c{bottom:828.715067pt;}
.ydd{bottom:828.722533pt;}
.y132{bottom:908.261333pt;}
.y131{bottom:924.261333pt;}
.y130{bottom:940.261333pt;}
.y12f{bottom:956.261333pt;}
.hc{height:27.282578pt;}
.h2{height:28.078125pt;}
.h7{height:28.421875pt;}
.h8{height:32.294355pt;}
.hf{height:32.757812pt;}
.h12{height:37.437500pt;}
.h6{height:42.117188pt;}
.h5{height:42.632812pt;}
.ha{height:46.422396pt;}
.hb{height:46.796875pt;}
.h13{height:46.806475pt;}
.h4{height:47.369792pt;}
.h9{height:47.843490pt;}
.h3{height:52.106771pt;}
.hd{height:54.075146pt;}
.h10{height:58.770833pt;}
.he{height:75.392479pt;}
.h11{height:80.104167pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x34{left:-94.500933pt;}
.x35{left:-57.900933pt;}
.x33{left:-15.562133pt;}
.x0{left:0.000000pt;}
.x1{left:71.811067pt;}
.x2{left:73.363600pt;}
.x7{left:74.555467pt;}
.x20{left:75.757200pt;}
.xe{left:85.039333pt;}
.x6{left:87.779467pt;}
.x4{left:95.187200pt;}
.x32{left:109.589200pt;}
.x3{left:119.622400pt;}
.x16{left:124.503067pt;}
.x1a{left:137.702133pt;}
.xd{left:140.494933pt;}
.x2a{left:143.774400pt;}
.x31{left:146.551333pt;}
.x21{left:152.749200pt;}
.x29{left:158.087600pt;}
.x5{left:162.159467pt;}
.x28{left:166.674267pt;}
.x18{left:169.090400pt;}
.x1b{left:193.076800pt;}
.x22{left:207.863867pt;}
.x19{left:214.210400pt;}
.x2f{left:241.018667pt;}
.x23{left:259.330533pt;}
.x30{left:277.618667pt;}
.x1c{left:298.720800pt;}
.x17{left:300.797067pt;}
.x24{left:305.815867pt;}
.x2e{left:319.952000pt;}
.xc{left:326.075067pt;}
.xf{left:328.819733pt;}
.x9{left:331.757467pt;}
.xb{left:339.307067pt;}
.x10{left:342.046400pt;}
.x25{left:351.490533pt;}
.x11{left:376.553867pt;}
.x12{left:390.502667pt;}
.x13{left:398.276000pt;}
.xa{left:401.201051pt;}
.x14{left:408.428800pt;}
.x8{left:410.476933pt;}
.x26{left:441.890533pt;}
.x1d{left:485.266133pt;}
.x27{left:493.293200pt;}
.x15{left:514.954800pt;}
.x1e{left:528.806133pt;}
.x1f{left:545.624800pt;}
.x2c{left:548.024133pt;}
.x2d{left:584.624133pt;}
.x2b{left:626.957467pt;}
}

