
    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_faab21614d66f5cbcde51515.woff')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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_6bc89193a829bb04fdc23645.woff')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_6bc89193a829bb04fdc23645.woff')format("woff");}.ff3{font-family:ff3;line-height:0.943000;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_c1db7a3d3373e701dbd84b0c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe23231984f7d55765f06d33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.891000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3d4e508931d9a410ecb6ffe9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e5b9851c56428c405b8740b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f2442d1ef5883f929a31d9fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d7bd9fde5a574ac852451f1e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.891000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ace4b18f15a93affe2c62d34.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,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);}
.m2{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);}
.v6{vertical-align:-13.440000px;}
.v7{vertical-align:-8.064000px;}
.v5{vertical-align:-2.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.970000px;}
.v2{vertical-align:9.018000px;}
.v9{vertical-align:13.421400px;}
.v3{vertical-align:15.137400px;}
.v1{vertical-align:16.800000px;}
.v8{vertical-align:21.474600px;}
.ls6{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.350000px;}
.ls9{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.585000px;}
.ls5{letter-spacing:-0.468000px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.195000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.074400px;}
.ls10{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.390000px;}
.ls1{letter-spacing:1.200000px;}
.ls11{letter-spacing:1.275000px;}
.ls2{letter-spacing:1.425000px;}
.lsf{letter-spacing:100.275000px;}
.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;}
}
.ws11{word-spacing:-16.680000px;}
.ws12{word-spacing:-15.780000px;}
.ws14{word-spacing:-14.160000px;}
.ws1{word-spacing:-13.920000px;}
.ws106{word-spacing:-12.528000px;}
.ws2{word-spacing:-10.842000px;}
.wsd6{word-spacing:-10.647000px;}
.ws13{word-spacing:-10.257000px;}
.ws9c{word-spacing:-9.180000px;}
.wsf{word-spacing:-7.812000px;}
.wsce{word-spacing:-7.768800px;}
.wsa7{word-spacing:-6.696000px;}
.ws104{word-spacing:-5.952000px;}
.wsa6{word-spacing:-5.778000px;}
.ws0{word-spacing:-5.373000px;}
.ws103{word-spacing:-5.136000px;}
.wsf5{word-spacing:-4.260000px;}
.wsdc{word-spacing:-4.080000px;}
.ws5f{word-spacing:-3.960000px;}
.ws12f{word-spacing:-3.825000px;}
.ws78{word-spacing:-3.780000px;}
.wsd0{word-spacing:-3.420000px;}
.ws11f{word-spacing:-3.300000px;}
.wsac{word-spacing:-3.120000px;}
.wsc9{word-spacing:-3.060000px;}
.wseb{word-spacing:-3.000000px;}
.ws30{word-spacing:-2.760000px;}
.wsc4{word-spacing:-2.700000px;}
.ws17{word-spacing:-2.640000px;}
.wsf6{word-spacing:-2.580000px;}
.wsa8{word-spacing:-2.520000px;}
.wsf3{word-spacing:-2.460000px;}
.wsfd{word-spacing:-2.400000px;}
.wsa9{word-spacing:-2.280000px;}
.wse6{word-spacing:-2.160000px;}
.wsc6{word-spacing:-2.100000px;}
.ws72{word-spacing:-2.040000px;}
.ws112{word-spacing:-1.980000px;}
.ws37{word-spacing:-1.920000px;}
.wsd5{word-spacing:-1.800000px;}
.ws6c{word-spacing:-1.680000px;}
.ws5{word-spacing:-1.668000px;}
.ws69{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.500000px;}
.ws96{word-spacing:-1.440000px;}
.ws10{word-spacing:-1.425000px;}
.ws117{word-spacing:-1.380000px;}
.ws5e{word-spacing:-1.320000px;}
.ws91{word-spacing:-1.260000px;}
.ws97{word-spacing:-1.200000px;}
.ws102{word-spacing:-1.152000px;}
.wsf9{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.134000px;}
.ws3a{word-spacing:-1.080000px;}
.wsa0{word-spacing:-1.020000px;}
.ws74{word-spacing:-0.960000px;}
.wsfb{word-spacing:-0.900000px;}
.ws25{word-spacing:-0.840000px;}
.ws53{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.720000px;}
.ws2d{word-spacing:-0.660000px;}
.wsfc{word-spacing:-0.600000px;}
.ws77{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.420000px;}
.ws8{word-spacing:-0.360000px;}
.ws105{word-spacing:-0.288000px;}
.wsbe{word-spacing:-0.240000px;}
.ws12d{word-spacing:-0.216000px;}
.ws4e{word-spacing:-0.180000px;}
.ws111{word-spacing:-0.120000px;}
.ws12e{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.063000px;}
.ws57{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsba{word-spacing:0.120000px;}
.ws15{word-spacing:0.180000px;}
.ws10e{word-spacing:0.195000px;}
.ws9{word-spacing:0.240000px;}
.wsd8{word-spacing:0.300000px;}
.ws5d{word-spacing:0.420000px;}
.wsd7{word-spacing:0.480000px;}
.ws84{word-spacing:0.600000px;}
.ws68{word-spacing:0.660000px;}
.wsef{word-spacing:0.720000px;}
.wse5{word-spacing:0.780000px;}
.ws12a{word-spacing:0.840000px;}
.wsaa{word-spacing:0.900000px;}
.wsb{word-spacing:0.960000px;}
.ws48{word-spacing:1.080000px;}
.ws40{word-spacing:1.140000px;}
.ws39{word-spacing:1.200000px;}
.ws3b{word-spacing:1.260000px;}
.ws7b{word-spacing:1.380000px;}
.wsc{word-spacing:1.440000px;}
.ws3f{word-spacing:1.500000px;}
.ws70{word-spacing:1.560000px;}
.ws119{word-spacing:1.620000px;}
.ws36{word-spacing:1.800000px;}
.ws115{word-spacing:1.920000px;}
.wsa2{word-spacing:1.980000px;}
.ws80{word-spacing:2.160000px;}
.wscb{word-spacing:2.220000px;}
.ws4a{word-spacing:2.400000px;}
.ws33{word-spacing:2.520000px;}
.ws109{word-spacing:2.640000px;}
.ws2a{word-spacing:2.700000px;}
.ws47{word-spacing:2.940000px;}
.ws89{word-spacing:3.000000px;}
.ws50{word-spacing:3.060000px;}
.ws9d{word-spacing:3.180000px;}
.ws113{word-spacing:3.240000px;}
.wsf8{word-spacing:3.360000px;}
.ws23{word-spacing:3.480000px;}
.ws67{word-spacing:3.540000px;}
.wsd1{word-spacing:3.600000px;}
.ws71{word-spacing:3.660000px;}
.ws8a{word-spacing:3.720000px;}
.ws51{word-spacing:3.900000px;}
.ws6b{word-spacing:4.020000px;}
.wsad{word-spacing:4.140000px;}
.ws55{word-spacing:4.260000px;}
.ws6a{word-spacing:4.320000px;}
.ws7f{word-spacing:4.440000px;}
.ws19{word-spacing:4.560000px;}
.ws122{word-spacing:4.620000px;}
.ws18{word-spacing:4.800000px;}
.ws61{word-spacing:4.920000px;}
.ws3e{word-spacing:4.980000px;}
.ws32{word-spacing:5.040000px;}
.ws34{word-spacing:5.100000px;}
.ws75{word-spacing:5.160000px;}
.wsea{word-spacing:5.220000px;}
.ws10a{word-spacing:5.280000px;}
.ws4b{word-spacing:5.340000px;}
.ws7a{word-spacing:5.520000px;}
.ws6e{word-spacing:5.580000px;}
.ws35{word-spacing:5.640000px;}
.wsa{word-spacing:5.700000px;}
.wsbb{word-spacing:5.820000px;}
.wse8{word-spacing:5.940000px;}
.wsd4{word-spacing:6.000000px;}
.ws88{word-spacing:6.060000px;}
.wsde{word-spacing:6.120000px;}
.ws59{word-spacing:6.180000px;}
.ws10d{word-spacing:6.300000px;}
.ws11e{word-spacing:6.360000px;}
.ws44{word-spacing:6.540000px;}
.ws86{word-spacing:6.660000px;}
.wsc7{word-spacing:6.720000px;}
.ws16{word-spacing:6.780000px;}
.ws64{word-spacing:6.840000px;}
.ws2f{word-spacing:6.900000px;}
.ws1b{word-spacing:7.020000px;}
.wsbd{word-spacing:7.140000px;}
.ws79{word-spacing:7.200000px;}
.wsae{word-spacing:7.320000px;}
.ws8d{word-spacing:7.380000px;}
.ws8e{word-spacing:7.440000px;}
.ws52{word-spacing:7.560000px;}
.wse{word-spacing:7.680000px;}
.ws83{word-spacing:7.740000px;}
.ws63{word-spacing:7.860000px;}
.wsf4{word-spacing:7.980000px;}
.ws4f{word-spacing:8.040000px;}
.ws124{word-spacing:8.100000px;}
.wsd3{word-spacing:8.220000px;}
.wsf2{word-spacing:8.280000px;}
.wsc2{word-spacing:8.340000px;}
.ws62{word-spacing:8.400000px;}
.ws3d{word-spacing:8.460000px;}
.ws92{word-spacing:8.640000px;}
.ws121{word-spacing:8.700000px;}
.ws108{word-spacing:8.760000px;}
.ws128{word-spacing:8.820000px;}
.ws95{word-spacing:8.880000px;}
.wsf0{word-spacing:8.940000px;}
.ws125{word-spacing:9.060000px;}
.ws7e{word-spacing:9.240000px;}
.wsd2{word-spacing:9.300000px;}
.wsca{word-spacing:9.360000px;}
.wsc1{word-spacing:9.420000px;}
.ws94{word-spacing:9.540000px;}
.wsaf{word-spacing:9.660000px;}
.ws11b{word-spacing:9.720000px;}
.wsb3{word-spacing:9.900000px;}
.ws20{word-spacing:9.960000px;}
.ws2e{word-spacing:10.020000px;}
.ws6f{word-spacing:10.200000px;}
.wsf7{word-spacing:10.260000px;}
.ws56{word-spacing:10.380000px;}
.ws11d{word-spacing:10.500000px;}
.ws116{word-spacing:10.740000px;}
.ws49{word-spacing:10.920000px;}
.ws21{word-spacing:11.100000px;}
.ws6d{word-spacing:11.220000px;}
.ws10c{word-spacing:11.340000px;}
.ws82{word-spacing:11.400000px;}
.ws3c{word-spacing:11.460000px;}
.ws118{word-spacing:11.520000px;}
.wse7{word-spacing:11.760000px;}
.ws58{word-spacing:11.940000px;}
.ws76{word-spacing:12.300000px;}
.ws4d{word-spacing:12.360000px;}
.wsbf{word-spacing:12.540000px;}
.ws129{word-spacing:12.660000px;}
.wsb4{word-spacing:12.720000px;}
.ws29{word-spacing:12.780000px;}
.ws1f{word-spacing:12.840000px;}
.wsda{word-spacing:12.900000px;}
.ws22{word-spacing:12.960000px;}
.ws8b{word-spacing:13.080000px;}
.ws93{word-spacing:13.200000px;}
.wsd9{word-spacing:13.260000px;}
.ws27{word-spacing:13.500000px;}
.wsb8{word-spacing:13.560000px;}
.wsb2{word-spacing:13.740000px;}
.ws85{word-spacing:13.800000px;}
.ws5c{word-spacing:13.860000px;}
.ws7d{word-spacing:14.280000px;}
.ws42{word-spacing:14.400000px;}
.ws24{word-spacing:14.520000px;}
.ws98{word-spacing:14.820000px;}
.ws46{word-spacing:14.880000px;}
.wsf1{word-spacing:15.060000px;}
.wsc0{word-spacing:15.180000px;}
.wsc8{word-spacing:15.600000px;}
.ws87{word-spacing:15.960000px;}
.ws8c{word-spacing:16.080000px;}
.ws65{word-spacing:16.140000px;}
.ws54{word-spacing:16.200000px;}
.wsc3{word-spacing:16.380000px;}
.ws11a{word-spacing:16.440000px;}
.wse4{word-spacing:16.800000px;}
.ws127{word-spacing:17.160000px;}
.wsb9{word-spacing:17.520000px;}
.ws2c{word-spacing:17.880000px;}
.wsbc{word-spacing:18.060000px;}
.ws126{word-spacing:18.240000px;}
.ws99{word-spacing:18.300000px;}
.wsb0{word-spacing:18.360000px;}
.ws28{word-spacing:18.960000px;}
.ws1a{word-spacing:19.200000px;}
.ws110{word-spacing:19.740000px;}
.ws4c{word-spacing:20.040000px;}
.ws1d{word-spacing:20.340000px;}
.wsdd{word-spacing:20.520000px;}
.wsed{word-spacing:21.540000px;}
.wsab{word-spacing:21.660000px;}
.wscf{word-spacing:22.080000px;}
.wsee{word-spacing:22.260000px;}
.ws9b{word-spacing:22.980000px;}
.wse3{word-spacing:23.160000px;}
.ws9f{word-spacing:23.760000px;}
.ws2b{word-spacing:23.820000px;}
.ws10f{word-spacing:24.300000px;}
.ws5b{word-spacing:24.420000px;}
.ws107{word-spacing:24.780000px;}
.ws11c{word-spacing:24.960000px;}
.ws41{word-spacing:25.500000px;}
.wsd{word-spacing:26.280000px;}
.wse0{word-spacing:26.400000px;}
.wsdf{word-spacing:26.460000px;}
.ws5a{word-spacing:27.900000px;}
.ws81{word-spacing:28.200000px;}
.wsdb{word-spacing:30.480000px;}
.ws1e{word-spacing:30.720000px;}
.wse1{word-spacing:31.380000px;}
.ws1c{word-spacing:31.860000px;}
.wse2{word-spacing:32.340000px;}
.wsb1{word-spacing:33.840000px;}
.wsfa{word-spacing:34.140000px;}
.ws9a{word-spacing:34.260000px;}
.wse9{word-spacing:34.800000px;}
.ws60{word-spacing:35.040000px;}
.ws12b{word-spacing:35.460000px;}
.wsc5{word-spacing:35.520000px;}
.wsb7{word-spacing:37.020000px;}
.wsb6{word-spacing:37.500000px;}
.wsff{word-spacing:37.662600px;}
.ws9e{word-spacing:38.040000px;}
.ws123{word-spacing:38.400000px;}
.ws114{word-spacing:38.760000px;}
.ws38{word-spacing:40.080000px;}
.ws8f{word-spacing:40.560000px;}
.ws43{word-spacing:40.800000px;}
.ws66{word-spacing:44.400000px;}
.ws120{word-spacing:45.660000px;}
.wsec{word-spacing:45.900000px;}
.ws90{word-spacing:47.760000px;}
.ws26{word-spacing:54.300000px;}
.ws45{word-spacing:57.600000px;}
.ws10b{word-spacing:57.840000px;}
.wsfe{word-spacing:70.464000px;}
.wsb5{word-spacing:78.540000px;}
.ws100{word-spacing:107.726400px;}
.ws101{word-spacing:111.624000px;}
.wscc{word-spacing:146.880000px;}
.wscd{word-spacing:221.558100px;}
.wsa5{word-spacing:925.992000px;}
.wsa4{word-spacing:1031.940000px;}
.wsa3{word-spacing:1036.368000px;}
.ws12c{word-spacing:2549.703000px;}
.ws7{word-spacing:2570.061000px;}
._21{margin-left:-87.780000px;}
._d{margin-left:-47.280000px;}
._24{margin-left:-46.140000px;}
._26{margin-left:-44.700000px;}
._3{margin-left:-34.680000px;}
._e{margin-left:-32.544000px;}
._29{margin-left:-31.260000px;}
._6{margin-left:-28.104000px;}
._8{margin-left:-25.140000px;}
._1c{margin-left:-23.700000px;}
._25{margin-left:-22.260000px;}
._66{margin-left:-21.060000px;}
._20{margin-left:-19.140000px;}
._5{margin-left:-16.740000px;}
._2a{margin-left:-15.180000px;}
._27{margin-left:-12.024000px;}
._1e{margin-left:-10.980000px;}
._4{margin-left:-9.180000px;}
._2{margin-left:-7.812000px;}
._a{margin-left:-6.600000px;}
._9{margin-left:-4.800000px;}
._7{margin-left:-3.000000px;}
._0{margin-left:-1.716000px;}
._1{width:1.716000px;}
._69{width:2.970000px;}
._37{width:6.600000px;}
._1f{width:10.080000px;}
._b{width:16.080000px;}
._68{width:17.772000px;}
._28{width:22.080000px;}
._1d{width:23.700000px;}
._39{width:24.984000px;}
._3a{width:31.224000px;}
._f{width:32.880000px;}
._c{width:43.740000px;}
._23{width:46.680000px;}
._4c{width:54.714000px;}
._4d{width:58.638600px;}
._67{width:72.070200px;}
._4b{width:73.900200px;}
._48{width:75.408000px;}
._49{width:79.510200px;}
._38{width:82.296000px;}
._2c{width:84.108000px;}
._22{width:87.720000px;}
._44{width:91.320000px;}
._43{width:99.216000px;}
._42{width:104.496000px;}
._47{width:110.489400px;}
._46{width:113.550000px;}
._58{width:116.154000px;}
._45{width:119.491800px;}
._2b{width:137.784000px;}
._4e{width:144.790200px;}
._4a{width:148.974600px;}
._33{width:152.442000px;}
._5d{width:158.382000px;}
._15{width:161.190000px;}
._32{width:172.758000px;}
._31{width:179.226000px;}
._1b{width:216.054000px;}
._35{width:218.322000px;}
._30{width:220.116000px;}
._36{width:246.510000px;}
._3b{width:256.656000px;}
._5c{width:266.328000px;}
._34{width:274.698000px;}
._52{width:279.072000px;}
._16{width:285.984000px;}
._64{width:289.602000px;}
._60{width:306.180000px;}
._4f{width:316.602000px;}
._61{width:336.636000px;}
._10{width:347.976000px;}
._2d{width:356.346000px;}
._13{width:359.166000px;}
._5b{width:377.298000px;}
._57{width:389.664000px;}
._5a{width:396.630000px;}
._63{width:419.418000px;}
._1a{width:433.080000px;}
._53{width:445.608000px;}
._51{width:457.962000px;}
._3e{width:460.224000px;}
._3f{width:471.240000px;}
._54{width:482.058000px;}
._3c{width:493.200000px;}
._19{width:497.070000px;}
._59{width:502.146000px;}
._62{width:507.870000px;}
._65{width:510.570000px;}
._41{width:513.432000px;}
._14{width:516.132000px;}
._3d{width:536.400000px;}
._40{width:539.496000px;}
._56{width:555.876000px;}
._12{width:557.010000px;}
._55{width:563.652000px;}
._5f{width:576.882000px;}
._11{width:608.040000px;}
._5e{width:620.676000px;}
._17{width:640.386000px;}
._50{width:674.244000px;}
._18{width:832.248000px;}
._2f{width:863.958000px;}
._2e{width:890.688000px;}
.fc3{color:transparent;}
.fc2{color:rgb(22,77,49);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:6.000000px;}
.fs0{font-size:27.000000px;}
.fsb{font-size:31.200000px;}
.fsa{font-size:35.100000px;}
.fs1{font-size:39.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:63.971842px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:23.655000px;}
.ye{bottom:34.906500px;}
.yd{bottom:46.158000px;}
.yc{bottom:66.620850px;}
.y13{bottom:109.984350px;}
.y64{bottom:110.295900px;}
.yc5{bottom:112.830750px;}
.y9a{bottom:116.503950px;}
.yd0{bottom:117.322800px;}
.yd1{bottom:117.330750px;}
.yd2{bottom:117.342750px;}
.yd3{bottom:117.354750px;}
.yd4{bottom:117.366750px;}
.yd5{bottom:117.378750px;}
.yf7{bottom:119.520450px;}
.yd6{bottom:121.830750px;}
.yd7{bottom:121.833000px;}
.y63{bottom:122.298150px;}
.y12{bottom:127.984350px;}
.y62{bottom:134.300400px;}
.y99{bottom:134.503950px;}
.yf6{bottom:136.017450px;}
.y11{bottom:145.984350px;}
.y61{bottom:146.302650px;}
.y98{bottom:152.503950px;}
.yf5{bottom:152.514450px;}
.yed{bottom:157.052100px;}
.y60{bottom:158.304900px;}
.y10{bottom:163.984350px;}
.yf4{bottom:169.011450px;}
.y5f{bottom:170.307150px;}
.y97{bottom:170.503950px;}
.yc6{bottom:184.275600px;}
.yf3{bottom:185.508450px;}
.yec{bottom:186.621600px;}
.y5e{bottom:186.804150px;}
.y96{bottom:188.503950px;}
.y5d{bottom:198.806400px;}
.y36{bottom:204.295650px;}
.y95{bottom:206.503950px;}
.y5c{bottom:210.808650px;}
.yf2{bottom:211.009950px;}
.yeb{bottom:212.595600px;}
.y5b{bottom:222.810900px;}
.y94{bottom:224.503950px;}
.yf1{bottom:227.506950px;}
.y35{bottom:238.797150px;}
.y5a{bottom:239.307900px;}
.yea{bottom:241.580100px;}
.y93{bottom:242.503950px;}
.yf0{bottom:244.003950px;}
.y59{bottom:251.310150px;}
.y34{bottom:258.295650px;}
.y9e{bottom:260.503950px;}
.y58{bottom:263.312400px;}
.yc7{bottom:264.003600px;}
.ye9{bottom:270.564600px;}
.y57{bottom:275.314650px;}
.y92{bottom:278.503950px;}
.y56{bottom:291.811650px;}
.y91{bottom:296.503950px;}
.ye8{bottom:299.549100px;}
.y33{bottom:302.581650px;}
.y55{bottom:303.813900px;}
.y90{bottom:314.503950px;}
.y54{bottom:315.816150px;}
.y32{bottom:322.080150px;}
.y53{bottom:327.818400px;}
.ye7{bottom:328.533600px;}
.y8f{bottom:332.503950px;}
.y31{bottom:341.578650px;}
.y52{bottom:344.315400px;}
.y11f{bottom:347.580450px;}
.y148{bottom:349.173450px;}
.y14c{bottom:349.351200px;}
.y8e{bottom:350.503950px;}
.y51{bottom:356.317650px;}
.ye6{bottom:357.518100px;}
.y30{bottom:361.077150px;}
.y11e{bottom:364.077450px;}
.yc8{bottom:365.250000px;}
.y147{bottom:365.670450px;}
.y50{bottom:368.319900px;}
.y8d{bottom:368.503950px;}
.y14b{bottom:371.096700px;}
.yc1{bottom:376.351200px;}
.y4f{bottom:380.322150px;}
.y11d{bottom:380.574450px;}
.y2f{bottom:380.575650px;}
.y146{bottom:382.167450px;}
.y14a{bottom:383.098950px;}
.ye5{bottom:386.502600px;}
.y8c{bottom:386.503950px;}
.yc0{bottom:390.601200px;}
.y4e{bottom:392.324400px;}
.y149{bottom:395.101200px;}
.y11c{bottom:397.071450px;}
.y145{bottom:398.664450px;}
.y2e{bottom:400.074150px;}
.y4d{bottom:404.326650px;}
.y8b{bottom:404.503950px;}
.y11b{bottom:413.568450px;}
.y144{bottom:415.161450px;}
.ye4{bottom:415.487100px;}
.y2d{bottom:419.572650px;}
.y4c{bottom:420.823650px;}
.y8a{bottom:422.503950px;}
.y143{bottom:431.658450px;}
.y4b{bottom:432.825900px;}
.y11a{bottom:439.069950px;}
.y2c{bottom:439.071150px;}
.y89{bottom:440.503950px;}
.ye3{bottom:444.471600px;}
.y4a{bottom:444.828150px;}
.yc9{bottom:452.022000px;}
.y119{bottom:455.566950px;}
.y142{bottom:457.159950px;}
.y88{bottom:458.503950px;}
.y2b{bottom:458.569650px;}
.y49{bottom:461.325150px;}
.y118{bottom:472.063950px;}
.y48{bottom:473.327400px;}
.ye2{bottom:473.456100px;}
.y141{bottom:473.656950px;}
.y87{bottom:476.503950px;}
.y2a{bottom:478.068150px;}
.y47{bottom:485.329650px;}
.y117{bottom:488.560950px;}
.y140{bottom:490.153950px;}
.y86{bottom:494.503950px;}
.y46{bottom:497.331900px;}
.y29{bottom:497.566650px;}
.ye1{bottom:502.440600px;}
.y13f{bottom:506.650950px;}
.y45{bottom:509.334150px;}
.y85{bottom:512.503950px;}
.y116{bottom:514.062450px;}
.y28{bottom:517.065150px;}
.y44{bottom:521.336400px;}
.y13e{bottom:523.147950px;}
.y84{bottom:530.503950px;}
.y115{bottom:530.559450px;}
.ye0{bottom:531.425100px;}
.y43{bottom:533.338650px;}
.y27{bottom:536.563650px;}
.yb2{bottom:536.892300px;}
.y13d{bottom:539.644950px;}
.y114{bottom:547.056450px;}
.y83{bottom:548.503950px;}
.y42{bottom:549.835650px;}
.yb1{bottom:551.136300px;}
.y26{bottom:556.062150px;}
.yca{bottom:557.025600px;}
.ydf{bottom:560.409600px;}
.y41{bottom:561.837900px;}
.y113{bottom:563.553450px;}
.y13c{bottom:565.146450px;}
.y82{bottom:566.503950px;}
.y40{bottom:573.840150px;}
.y25{bottom:575.560650px;}
.y112{bottom:580.050450px;}
.yb0{bottom:580.731450px;}
.y13b{bottom:581.643450px;}
.y9d{bottom:584.503950px;}
.y3f{bottom:585.842400px;}
.yde{bottom:589.394100px;}
.y24{bottom:595.059150px;}
.y3e{bottom:597.844650px;}
.y13a{bottom:598.140450px;}
.y81{bottom:602.503950px;}
.y111{bottom:605.551950px;}
.yaf{bottom:606.705450px;}
.y3d{bottom:609.846900px;}
.y23{bottom:614.557650px;}
.y139{bottom:614.637450px;}
.ydd{bottom:618.378600px;}
.y80{bottom:620.503950px;}
.y3c{bottom:621.849150px;}
.y110{bottom:622.048950px;}
.ycb{bottom:629.769600px;}
.y3b{bottom:633.851400px;}
.y22{bottom:634.056150px;}
.yae{bottom:635.703450px;}
.y7f{bottom:638.503950px;}
.y10f{bottom:638.545950px;}
.y138{bottom:640.138950px;}
.y3a{bottom:645.853650px;}
.ydc{bottom:647.363100px;}
.y21{bottom:653.554650px;}
.y10e{bottom:655.042950px;}
.y7e{bottom:656.503950px;}
.y137{bottom:656.635950px;}
.y39{bottom:657.855900px;}
.yad{bottom:664.701450px;}
.y38{bottom:669.858150px;}
.y10d{bottom:671.539950px;}
.y20{bottom:673.053150px;}
.y136{bottom:673.132950px;}
.y7d{bottom:674.503950px;}
.ydb{bottom:676.347600px;}
.y37{bottom:681.860400px;}
.y10c{bottom:688.036950px;}
.y135{bottom:689.629950px;}
.y7c{bottom:692.503950px;}
.y1f{bottom:692.551650px;}
.yac{bottom:693.699450px;}
.yc4{bottom:702.793950px;}
.y10b{bottom:704.533950px;}
.yda{bottom:705.696600px;}
.y134{bottom:706.126950px;}
.y7b{bottom:710.503950px;}
.y1e{bottom:712.050150px;}
.yc3{bottom:717.039450px;}
.yd9{bottom:721.451100px;}
.yab{bottom:722.697450px;}
.y7a{bottom:728.503950px;}
.ycc{bottom:729.750000px;}
.y10a{bottom:730.035450px;}
.y1d{bottom:731.548650px;}
.y133{bottom:731.628450px;}
.yc2{bottom:732.793950px;}
.y9c{bottom:746.503950px;}
.y109{bottom:746.532450px;}
.y132{bottom:748.125450px;}
.yd8{bottom:749.951100px;}
.y1c{bottom:751.047150px;}
.yaa{bottom:751.695450px;}
.y108{bottom:763.029450px;}
.y79{bottom:764.503950px;}
.y131{bottom:764.622450px;}
.y1b{bottom:770.545650px;}
.ybf{bottom:772.319550px;}
.y107{bottom:779.526450px;}
.ya9{bottom:780.693450px;}
.y130{bottom:781.119450px;}
.y78{bottom:782.503950px;}
.ybe{bottom:789.923550px;}
.y12f{bottom:797.616450px;}
.y77{bottom:800.503950px;}
.ycd{bottom:801.750000px;}
.y106{bottom:805.027950px;}
.ya8{bottom:809.691450px;}
.y1a{bottom:814.045650px;}
.ybd{bottom:816.180450px;}
.y76{bottom:818.503950px;}
.y105{bottom:821.524950px;}
.y12e{bottom:823.117950px;}
.yef{bottom:825.301200px;}
.y19{bottom:832.045650px;}
.y75{bottom:836.503950px;}
.y104{bottom:838.021950px;}
.ya7{bottom:838.662450px;}
.yee{bottom:839.551200px;}
.y12d{bottom:839.614950px;}
.ybc{bottom:842.167950px;}
.y74{bottom:854.503950px;}
.y12c{bottom:856.111950px;}
.y103{bottom:863.523450px;}
.ya6{bottom:869.914950px;}
.ybb{bottom:871.165950px;}
.y73{bottom:872.503950px;}
.y12b{bottom:872.608950px;}
.y18{bottom:877.045650px;}
.y102{bottom:880.020450px;}
.y12a{bottom:889.105950px;}
.y72{bottom:890.503950px;}
.ya5{bottom:898.912950px;}
.yba{bottom:900.163950px;}
.yce{bottom:902.698800px;}
.y101{bottom:905.521950px;}
.y9b{bottom:908.503950px;}
.y17{bottom:913.045650px;}
.y129{bottom:914.607450px;}
.y100{bottom:922.018950px;}
.y71{bottom:926.503950px;}
.ya4{bottom:927.910950px;}
.ya{bottom:928.536750px;}
.yb9{bottom:929.161950px;}
.y128{bottom:931.104450px;}
.yff{bottom:938.515950px;}
.y9{bottom:941.289750px;}
.y70{bottom:944.503950px;}
.y127{bottom:947.601450px;}
.y16{bottom:949.045650px;}
.y8{bottom:954.042750px;}
.yfe{bottom:955.012950px;}
.ya3{bottom:956.908950px;}
.yb8{bottom:958.151100px;}
.y6f{bottom:962.503950px;}
.y126{bottom:964.098450px;}
.y7{bottom:966.795750px;}
.y6e{bottom:980.503950px;}
.yfd{bottom:980.514450px;}
.y125{bottom:980.595450px;}
.y15{bottom:985.045650px;}
.ya2{bottom:985.906950px;}
.ycf{bottom:985.942800px;}
.y6{bottom:986.295750px;}
.yb7{bottom:987.149100px;}
.y2{bottom:989.304600px;}
.yfc{bottom:997.011450px;}
.y6d{bottom:998.503950px;}
.y5{bottom:999.048750px;}
.y1{bottom:999.051600px;}
.y124{bottom:1006.096950px;}
.yfb{bottom:1013.508450px;}
.ya1{bottom:1014.904950px;}
.yb6{bottom:1016.498100px;}
.y6c{bottom:1016.503950px;}
.y4{bottom:1018.548750px;}
.y14{bottom:1021.045650px;}
.y123{bottom:1022.593950px;}
.yb5{bottom:1028.499600px;}
.y6b{bottom:1034.503950px;}
.y3{bottom:1038.048750px;}
.yfa{bottom:1039.009950px;}
.y122{bottom:1039.090950px;}
.ya0{bottom:1044.253950px;}
.yb4{bottom:1044.254100px;}
.y6a{bottom:1052.503950px;}
.yf9{bottom:1055.506950px;}
.y121{bottom:1055.587950px;}
.y69{bottom:1070.503950px;}
.yf8{bottom:1072.003950px;}
.y120{bottom:1072.084950px;}
.y9f{bottom:1072.753950px;}
.yb3{bottom:1072.754100px;}
.y67{bottom:1108.771650px;}
.yb{bottom:1110.271800px;}
.y68{bottom:1111.827000px;}
.y66{bottom:1173.990000px;}
.y65{bottom:1175.489550px;}
.he{height:4.200000px;}
.h2{height:21.762000px;}
.h16{height:25.248000px;}
.h3{height:28.002000px;}
.h4{height:31.434000px;}
.h18{height:37.587000px;}
.h17{height:37.800000px;}
.hd{height:38.532000px;}
.h13{height:38.688000px;}
.h7{height:42.000000px;}
.h10{height:43.080000px;}
.h11{height:43.524000px;}
.h14{height:43.543800px;}
.hf{height:44.099400px;}
.h8{height:44.100000px;}
.ha{height:44.856000px;}
.h5{height:45.234000px;}
.h15{height:46.494000px;}
.h6{height:48.360000px;}
.hb{height:50.778000px;}
.hc{height:51.561305px;}
.h12{height:52.542000px;}
.h9{height:96.720000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:11.338650px;}
.x9{left:38.267700px;}
.xe{left:46.912500px;}
.x3{left:63.779550px;}
.x13{left:69.778500px;}
.x14{left:72.779550px;}
.x15{left:79.500000px;}
.x2{left:81.000000px;}
.x16{left:106.500000px;}
.x17{left:120.744000px;}
.x18{left:134.988000px;}
.x6{left:147.804450px;}
.x4{left:155.407200px;}
.xf{left:162.000000px;}
.xa{left:170.078700px;}
.x19{left:175.128000px;}
.x24{left:179.078700px;}
.x28{left:197.078700px;}
.x1a{left:204.900000px;}
.x1b{left:234.679200px;}
.x1c{left:264.451200px;}
.x10{left:283.500000px;}
.x1d{left:294.223200px;}
.x26{left:303.629700px;}
.x1e{left:323.995200px;}
.xd{left:332.100000px;}
.x1f{left:350.767200px;}
.x20{left:379.042950px;}
.x21{left:393.292950px;}
.x5{left:402.309300px;}
.x22{left:410.896950px;}
.x23{left:425.140950px;}
.x27{left:429.307050px;}
.x11{left:449.250000px;}
.xb{left:508.614450px;}
.x29{left:535.604700px;}
.xc{left:553.668300px;}
.x12{left:568.495500px;}
.x25{left:673.273200px;}
.x8{left:735.530700px;}
.x1{left:737.645700px;}
@media print{
.v6{vertical-align:-11.946667pt;}
.v7{vertical-align:-7.168000pt;}
.v5{vertical-align:-2.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.640000pt;}
.v2{vertical-align:8.016000pt;}
.v9{vertical-align:11.930133pt;}
.v3{vertical-align:13.455467pt;}
.v1{vertical-align:14.933333pt;}
.v8{vertical-align:19.088533pt;}
.ls6{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.200000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.520000pt;}
.ls5{letter-spacing:-0.416000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.173333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.066133pt;}
.ls10{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.346667pt;}
.ls1{letter-spacing:1.066667pt;}
.ls11{letter-spacing:1.133333pt;}
.ls2{letter-spacing:1.266667pt;}
.lsf{letter-spacing:89.133333pt;}
.ws11{word-spacing:-14.826667pt;}
.ws12{word-spacing:-14.026667pt;}
.ws14{word-spacing:-12.586667pt;}
.ws1{word-spacing:-12.373333pt;}
.ws106{word-spacing:-11.136000pt;}
.ws2{word-spacing:-9.637333pt;}
.wsd6{word-spacing:-9.464000pt;}
.ws13{word-spacing:-9.117333pt;}
.ws9c{word-spacing:-8.160000pt;}
.wsf{word-spacing:-6.944000pt;}
.wsce{word-spacing:-6.905600pt;}
.wsa7{word-spacing:-5.952000pt;}
.ws104{word-spacing:-5.290667pt;}
.wsa6{word-spacing:-5.136000pt;}
.ws0{word-spacing:-4.776000pt;}
.ws103{word-spacing:-4.565333pt;}
.wsf5{word-spacing:-3.786667pt;}
.wsdc{word-spacing:-3.626667pt;}
.ws5f{word-spacing:-3.520000pt;}
.ws12f{word-spacing:-3.400000pt;}
.ws78{word-spacing:-3.360000pt;}
.wsd0{word-spacing:-3.040000pt;}
.ws11f{word-spacing:-2.933333pt;}
.wsac{word-spacing:-2.773333pt;}
.wsc9{word-spacing:-2.720000pt;}
.wseb{word-spacing:-2.666667pt;}
.ws30{word-spacing:-2.453333pt;}
.wsc4{word-spacing:-2.400000pt;}
.ws17{word-spacing:-2.346667pt;}
.wsf6{word-spacing:-2.293333pt;}
.wsa8{word-spacing:-2.240000pt;}
.wsf3{word-spacing:-2.186667pt;}
.wsfd{word-spacing:-2.133333pt;}
.wsa9{word-spacing:-2.026667pt;}
.wse6{word-spacing:-1.920000pt;}
.wsc6{word-spacing:-1.866667pt;}
.ws72{word-spacing:-1.813333pt;}
.ws112{word-spacing:-1.760000pt;}
.ws37{word-spacing:-1.706667pt;}
.wsd5{word-spacing:-1.600000pt;}
.ws6c{word-spacing:-1.493333pt;}
.ws5{word-spacing:-1.482667pt;}
.ws69{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.386667pt;}
.ws73{word-spacing:-1.333333pt;}
.ws96{word-spacing:-1.280000pt;}
.ws10{word-spacing:-1.266667pt;}
.ws117{word-spacing:-1.226667pt;}
.ws5e{word-spacing:-1.173333pt;}
.ws91{word-spacing:-1.120000pt;}
.ws97{word-spacing:-1.066667pt;}
.ws102{word-spacing:-1.024000pt;}
.wsf9{word-spacing:-1.013333pt;}
.ws4{word-spacing:-1.008000pt;}
.ws3a{word-spacing:-0.960000pt;}
.wsa0{word-spacing:-0.906667pt;}
.ws74{word-spacing:-0.853333pt;}
.wsfb{word-spacing:-0.800000pt;}
.ws25{word-spacing:-0.746667pt;}
.ws53{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.640000pt;}
.ws2d{word-spacing:-0.586667pt;}
.wsfc{word-spacing:-0.533333pt;}
.ws77{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.373333pt;}
.ws8{word-spacing:-0.320000pt;}
.ws105{word-spacing:-0.256000pt;}
.wsbe{word-spacing:-0.213333pt;}
.ws12d{word-spacing:-0.192000pt;}
.ws4e{word-spacing:-0.160000pt;}
.ws111{word-spacing:-0.106667pt;}
.ws12e{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.056000pt;}
.ws57{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsba{word-spacing:0.106667pt;}
.ws15{word-spacing:0.160000pt;}
.ws10e{word-spacing:0.173333pt;}
.ws9{word-spacing:0.213333pt;}
.wsd8{word-spacing:0.266667pt;}
.ws5d{word-spacing:0.373333pt;}
.wsd7{word-spacing:0.426667pt;}
.ws84{word-spacing:0.533333pt;}
.ws68{word-spacing:0.586667pt;}
.wsef{word-spacing:0.640000pt;}
.wse5{word-spacing:0.693333pt;}
.ws12a{word-spacing:0.746667pt;}
.wsaa{word-spacing:0.800000pt;}
.wsb{word-spacing:0.853333pt;}
.ws48{word-spacing:0.960000pt;}
.ws40{word-spacing:1.013333pt;}
.ws39{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.120000pt;}
.ws7b{word-spacing:1.226667pt;}
.wsc{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.333333pt;}
.ws70{word-spacing:1.386667pt;}
.ws119{word-spacing:1.440000pt;}
.ws36{word-spacing:1.600000pt;}
.ws115{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.760000pt;}
.ws80{word-spacing:1.920000pt;}
.wscb{word-spacing:1.973333pt;}
.ws4a{word-spacing:2.133333pt;}
.ws33{word-spacing:2.240000pt;}
.ws109{word-spacing:2.346667pt;}
.ws2a{word-spacing:2.400000pt;}
.ws47{word-spacing:2.613333pt;}
.ws89{word-spacing:2.666667pt;}
.ws50{word-spacing:2.720000pt;}
.ws9d{word-spacing:2.826667pt;}
.ws113{word-spacing:2.880000pt;}
.wsf8{word-spacing:2.986667pt;}
.ws23{word-spacing:3.093333pt;}
.ws67{word-spacing:3.146667pt;}
.wsd1{word-spacing:3.200000pt;}
.ws71{word-spacing:3.253333pt;}
.ws8a{word-spacing:3.306667pt;}
.ws51{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.573333pt;}
.wsad{word-spacing:3.680000pt;}
.ws55{word-spacing:3.786667pt;}
.ws6a{word-spacing:3.840000pt;}
.ws7f{word-spacing:3.946667pt;}
.ws19{word-spacing:4.053333pt;}
.ws122{word-spacing:4.106667pt;}
.ws18{word-spacing:4.266667pt;}
.ws61{word-spacing:4.373333pt;}
.ws3e{word-spacing:4.426667pt;}
.ws32{word-spacing:4.480000pt;}
.ws34{word-spacing:4.533333pt;}
.ws75{word-spacing:4.586667pt;}
.wsea{word-spacing:4.640000pt;}
.ws10a{word-spacing:4.693333pt;}
.ws4b{word-spacing:4.746667pt;}
.ws7a{word-spacing:4.906667pt;}
.ws6e{word-spacing:4.960000pt;}
.ws35{word-spacing:5.013333pt;}
.wsa{word-spacing:5.066667pt;}
.wsbb{word-spacing:5.173333pt;}
.wse8{word-spacing:5.280000pt;}
.wsd4{word-spacing:5.333333pt;}
.ws88{word-spacing:5.386667pt;}
.wsde{word-spacing:5.440000pt;}
.ws59{word-spacing:5.493333pt;}
.ws10d{word-spacing:5.600000pt;}
.ws11e{word-spacing:5.653333pt;}
.ws44{word-spacing:5.813333pt;}
.ws86{word-spacing:5.920000pt;}
.wsc7{word-spacing:5.973333pt;}
.ws16{word-spacing:6.026667pt;}
.ws64{word-spacing:6.080000pt;}
.ws2f{word-spacing:6.133333pt;}
.ws1b{word-spacing:6.240000pt;}
.wsbd{word-spacing:6.346667pt;}
.ws79{word-spacing:6.400000pt;}
.wsae{word-spacing:6.506667pt;}
.ws8d{word-spacing:6.560000pt;}
.ws8e{word-spacing:6.613333pt;}
.ws52{word-spacing:6.720000pt;}
.wse{word-spacing:6.826667pt;}
.ws83{word-spacing:6.880000pt;}
.ws63{word-spacing:6.986667pt;}
.wsf4{word-spacing:7.093333pt;}
.ws4f{word-spacing:7.146667pt;}
.ws124{word-spacing:7.200000pt;}
.wsd3{word-spacing:7.306667pt;}
.wsf2{word-spacing:7.360000pt;}
.wsc2{word-spacing:7.413333pt;}
.ws62{word-spacing:7.466667pt;}
.ws3d{word-spacing:7.520000pt;}
.ws92{word-spacing:7.680000pt;}
.ws121{word-spacing:7.733333pt;}
.ws108{word-spacing:7.786667pt;}
.ws128{word-spacing:7.840000pt;}
.ws95{word-spacing:7.893333pt;}
.wsf0{word-spacing:7.946667pt;}
.ws125{word-spacing:8.053333pt;}
.ws7e{word-spacing:8.213333pt;}
.wsd2{word-spacing:8.266667pt;}
.wsca{word-spacing:8.320000pt;}
.wsc1{word-spacing:8.373333pt;}
.ws94{word-spacing:8.480000pt;}
.wsaf{word-spacing:8.586667pt;}
.ws11b{word-spacing:8.640000pt;}
.wsb3{word-spacing:8.800000pt;}
.ws20{word-spacing:8.853333pt;}
.ws2e{word-spacing:8.906667pt;}
.ws6f{word-spacing:9.066667pt;}
.wsf7{word-spacing:9.120000pt;}
.ws56{word-spacing:9.226667pt;}
.ws11d{word-spacing:9.333333pt;}
.ws116{word-spacing:9.546667pt;}
.ws49{word-spacing:9.706667pt;}
.ws21{word-spacing:9.866667pt;}
.ws6d{word-spacing:9.973333pt;}
.ws10c{word-spacing:10.080000pt;}
.ws82{word-spacing:10.133333pt;}
.ws3c{word-spacing:10.186667pt;}
.ws118{word-spacing:10.240000pt;}
.wse7{word-spacing:10.453333pt;}
.ws58{word-spacing:10.613333pt;}
.ws76{word-spacing:10.933333pt;}
.ws4d{word-spacing:10.986667pt;}
.wsbf{word-spacing:11.146667pt;}
.ws129{word-spacing:11.253333pt;}
.wsb4{word-spacing:11.306667pt;}
.ws29{word-spacing:11.360000pt;}
.ws1f{word-spacing:11.413333pt;}
.wsda{word-spacing:11.466667pt;}
.ws22{word-spacing:11.520000pt;}
.ws8b{word-spacing:11.626667pt;}
.ws93{word-spacing:11.733333pt;}
.wsd9{word-spacing:11.786667pt;}
.ws27{word-spacing:12.000000pt;}
.wsb8{word-spacing:12.053333pt;}
.wsb2{word-spacing:12.213333pt;}
.ws85{word-spacing:12.266667pt;}
.ws5c{word-spacing:12.320000pt;}
.ws7d{word-spacing:12.693333pt;}
.ws42{word-spacing:12.800000pt;}
.ws24{word-spacing:12.906667pt;}
.ws98{word-spacing:13.173333pt;}
.ws46{word-spacing:13.226667pt;}
.wsf1{word-spacing:13.386667pt;}
.wsc0{word-spacing:13.493333pt;}
.wsc8{word-spacing:13.866667pt;}
.ws87{word-spacing:14.186667pt;}
.ws8c{word-spacing:14.293333pt;}
.ws65{word-spacing:14.346667pt;}
.ws54{word-spacing:14.400000pt;}
.wsc3{word-spacing:14.560000pt;}
.ws11a{word-spacing:14.613333pt;}
.wse4{word-spacing:14.933333pt;}
.ws127{word-spacing:15.253333pt;}
.wsb9{word-spacing:15.573333pt;}
.ws2c{word-spacing:15.893333pt;}
.wsbc{word-spacing:16.053333pt;}
.ws126{word-spacing:16.213333pt;}
.ws99{word-spacing:16.266667pt;}
.wsb0{word-spacing:16.320000pt;}
.ws28{word-spacing:16.853333pt;}
.ws1a{word-spacing:17.066667pt;}
.ws110{word-spacing:17.546667pt;}
.ws4c{word-spacing:17.813333pt;}
.ws1d{word-spacing:18.080000pt;}
.wsdd{word-spacing:18.240000pt;}
.wsed{word-spacing:19.146667pt;}
.wsab{word-spacing:19.253333pt;}
.wscf{word-spacing:19.626667pt;}
.wsee{word-spacing:19.786667pt;}
.ws9b{word-spacing:20.426667pt;}
.wse3{word-spacing:20.586667pt;}
.ws9f{word-spacing:21.120000pt;}
.ws2b{word-spacing:21.173333pt;}
.ws10f{word-spacing:21.600000pt;}
.ws5b{word-spacing:21.706667pt;}
.ws107{word-spacing:22.026667pt;}
.ws11c{word-spacing:22.186667pt;}
.ws41{word-spacing:22.666667pt;}
.wsd{word-spacing:23.360000pt;}
.wse0{word-spacing:23.466667pt;}
.wsdf{word-spacing:23.520000pt;}
.ws5a{word-spacing:24.800000pt;}
.ws81{word-spacing:25.066667pt;}
.wsdb{word-spacing:27.093333pt;}
.ws1e{word-spacing:27.306667pt;}
.wse1{word-spacing:27.893333pt;}
.ws1c{word-spacing:28.320000pt;}
.wse2{word-spacing:28.746667pt;}
.wsb1{word-spacing:30.080000pt;}
.wsfa{word-spacing:30.346667pt;}
.ws9a{word-spacing:30.453333pt;}
.wse9{word-spacing:30.933333pt;}
.ws60{word-spacing:31.146667pt;}
.ws12b{word-spacing:31.520000pt;}
.wsc5{word-spacing:31.573333pt;}
.wsb7{word-spacing:32.906667pt;}
.wsb6{word-spacing:33.333333pt;}
.wsff{word-spacing:33.477867pt;}
.ws9e{word-spacing:33.813333pt;}
.ws123{word-spacing:34.133333pt;}
.ws114{word-spacing:34.453333pt;}
.ws38{word-spacing:35.626667pt;}
.ws8f{word-spacing:36.053333pt;}
.ws43{word-spacing:36.266667pt;}
.ws66{word-spacing:39.466667pt;}
.ws120{word-spacing:40.586667pt;}
.wsec{word-spacing:40.800000pt;}
.ws90{word-spacing:42.453333pt;}
.ws26{word-spacing:48.266667pt;}
.ws45{word-spacing:51.200000pt;}
.ws10b{word-spacing:51.413333pt;}
.wsfe{word-spacing:62.634667pt;}
.wsb5{word-spacing:69.813333pt;}
.ws100{word-spacing:95.756800pt;}
.ws101{word-spacing:99.221333pt;}
.wscc{word-spacing:130.560000pt;}
.wscd{word-spacing:196.940533pt;}
.wsa5{word-spacing:823.104000pt;}
.wsa4{word-spacing:917.280000pt;}
.wsa3{word-spacing:921.216000pt;}
.ws12c{word-spacing:2266.402667pt;}
.ws7{word-spacing:2284.498667pt;}
._21{margin-left:-78.026667pt;}
._d{margin-left:-42.026667pt;}
._24{margin-left:-41.013333pt;}
._26{margin-left:-39.733333pt;}
._3{margin-left:-30.826667pt;}
._e{margin-left:-28.928000pt;}
._29{margin-left:-27.786667pt;}
._6{margin-left:-24.981333pt;}
._8{margin-left:-22.346667pt;}
._1c{margin-left:-21.066667pt;}
._25{margin-left:-19.786667pt;}
._66{margin-left:-18.720000pt;}
._20{margin-left:-17.013333pt;}
._5{margin-left:-14.880000pt;}
._2a{margin-left:-13.493333pt;}
._27{margin-left:-10.688000pt;}
._1e{margin-left:-9.760000pt;}
._4{margin-left:-8.160000pt;}
._2{margin-left:-6.944000pt;}
._a{margin-left:-5.866667pt;}
._9{margin-left:-4.266667pt;}
._7{margin-left:-2.666667pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.525333pt;}
._69{width:2.640000pt;}
._37{width:5.866667pt;}
._1f{width:8.960000pt;}
._b{width:14.293333pt;}
._68{width:15.797333pt;}
._28{width:19.626667pt;}
._1d{width:21.066667pt;}
._39{width:22.208000pt;}
._3a{width:27.754667pt;}
._f{width:29.226667pt;}
._c{width:38.880000pt;}
._23{width:41.493333pt;}
._4c{width:48.634667pt;}
._4d{width:52.123200pt;}
._67{width:64.062400pt;}
._4b{width:65.689067pt;}
._48{width:67.029333pt;}
._49{width:70.675733pt;}
._38{width:73.152000pt;}
._2c{width:74.762667pt;}
._22{width:77.973333pt;}
._44{width:81.173333pt;}
._43{width:88.192000pt;}
._42{width:92.885333pt;}
._47{width:98.212800pt;}
._46{width:100.933333pt;}
._58{width:103.248000pt;}
._45{width:106.214933pt;}
._2b{width:122.474667pt;}
._4e{width:128.702400pt;}
._4a{width:132.421867pt;}
._33{width:135.504000pt;}
._5d{width:140.784000pt;}
._15{width:143.280000pt;}
._32{width:153.562667pt;}
._31{width:159.312000pt;}
._1b{width:192.048000pt;}
._35{width:194.064000pt;}
._30{width:195.658667pt;}
._36{width:219.120000pt;}
._3b{width:228.138667pt;}
._5c{width:236.736000pt;}
._34{width:244.176000pt;}
._52{width:248.064000pt;}
._16{width:254.208000pt;}
._64{width:257.424000pt;}
._60{width:272.160000pt;}
._4f{width:281.424000pt;}
._61{width:299.232000pt;}
._10{width:309.312000pt;}
._2d{width:316.752000pt;}
._13{width:319.258667pt;}
._5b{width:335.376000pt;}
._57{width:346.368000pt;}
._5a{width:352.560000pt;}
._63{width:372.816000pt;}
._1a{width:384.960000pt;}
._53{width:396.096000pt;}
._51{width:407.077333pt;}
._3e{width:409.088000pt;}
._3f{width:418.880000pt;}
._54{width:428.496000pt;}
._3c{width:438.400000pt;}
._19{width:441.840000pt;}
._59{width:446.352000pt;}
._62{width:451.440000pt;}
._65{width:453.840000pt;}
._41{width:456.384000pt;}
._14{width:458.784000pt;}
._3d{width:476.800000pt;}
._40{width:479.552000pt;}
._56{width:494.112000pt;}
._12{width:495.120000pt;}
._55{width:501.024000pt;}
._5f{width:512.784000pt;}
._11{width:540.480000pt;}
._5e{width:551.712000pt;}
._17{width:569.232000pt;}
._50{width:599.328000pt;}
._18{width:739.776000pt;}
._2f{width:767.962667pt;}
._2e{width:791.722667pt;}
.fs7{font-size:5.333333pt;}
.fs0{font-size:24.000000pt;}
.fsb{font-size:27.733333pt;}
.fsa{font-size:31.200000pt;}
.fs1{font-size:34.666667pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:56.863859pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:21.026667pt;}
.ye{bottom:31.028000pt;}
.yd{bottom:41.029333pt;}
.yc{bottom:59.218533pt;}
.y13{bottom:97.763867pt;}
.y64{bottom:98.040800pt;}
.yc5{bottom:100.294000pt;}
.y9a{bottom:103.559067pt;}
.yd0{bottom:104.286933pt;}
.yd1{bottom:104.294000pt;}
.yd2{bottom:104.304667pt;}
.yd3{bottom:104.315333pt;}
.yd4{bottom:104.326000pt;}
.yd5{bottom:104.336667pt;}
.yf7{bottom:106.240400pt;}
.yd6{bottom:108.294000pt;}
.yd7{bottom:108.296000pt;}
.y63{bottom:108.709467pt;}
.y12{bottom:113.763867pt;}
.y62{bottom:119.378133pt;}
.y99{bottom:119.559067pt;}
.yf6{bottom:120.904400pt;}
.y11{bottom:129.763867pt;}
.y61{bottom:130.046800pt;}
.y98{bottom:135.559067pt;}
.yf5{bottom:135.568400pt;}
.yed{bottom:139.601867pt;}
.y60{bottom:140.715467pt;}
.y10{bottom:145.763867pt;}
.yf4{bottom:150.232400pt;}
.y5f{bottom:151.384133pt;}
.y97{bottom:151.559067pt;}
.yc6{bottom:163.800533pt;}
.yf3{bottom:164.896400pt;}
.yec{bottom:165.885867pt;}
.y5e{bottom:166.048133pt;}
.y96{bottom:167.559067pt;}
.y5d{bottom:176.716800pt;}
.y36{bottom:181.596133pt;}
.y95{bottom:183.559067pt;}
.y5c{bottom:187.385467pt;}
.yf2{bottom:187.564400pt;}
.yeb{bottom:188.973867pt;}
.y5b{bottom:198.054133pt;}
.y94{bottom:199.559067pt;}
.yf1{bottom:202.228400pt;}
.y35{bottom:212.264133pt;}
.y5a{bottom:212.718133pt;}
.yea{bottom:214.737867pt;}
.y93{bottom:215.559067pt;}
.yf0{bottom:216.892400pt;}
.y59{bottom:223.386800pt;}
.y34{bottom:229.596133pt;}
.y9e{bottom:231.559067pt;}
.y58{bottom:234.055467pt;}
.yc7{bottom:234.669867pt;}
.ye9{bottom:240.501867pt;}
.y57{bottom:244.724133pt;}
.y92{bottom:247.559067pt;}
.y56{bottom:259.388133pt;}
.y91{bottom:263.559067pt;}
.ye8{bottom:266.265867pt;}
.y33{bottom:268.961467pt;}
.y55{bottom:270.056800pt;}
.y90{bottom:279.559067pt;}
.y54{bottom:280.725467pt;}
.y32{bottom:286.293467pt;}
.y53{bottom:291.394133pt;}
.ye7{bottom:292.029867pt;}
.y8f{bottom:295.559067pt;}
.y31{bottom:303.625467pt;}
.y52{bottom:306.058133pt;}
.y11f{bottom:308.960400pt;}
.y148{bottom:310.376400pt;}
.y14c{bottom:310.534400pt;}
.y8e{bottom:311.559067pt;}
.y51{bottom:316.726800pt;}
.ye6{bottom:317.793867pt;}
.y30{bottom:320.957467pt;}
.y11e{bottom:323.624400pt;}
.yc8{bottom:324.666667pt;}
.y147{bottom:325.040400pt;}
.y50{bottom:327.395467pt;}
.y8d{bottom:327.559067pt;}
.y14b{bottom:329.863733pt;}
.yc1{bottom:334.534400pt;}
.y4f{bottom:338.064133pt;}
.y11d{bottom:338.288400pt;}
.y2f{bottom:338.289467pt;}
.y146{bottom:339.704400pt;}
.y14a{bottom:340.532400pt;}
.ye5{bottom:343.557867pt;}
.y8c{bottom:343.559067pt;}
.yc0{bottom:347.201067pt;}
.y4e{bottom:348.732800pt;}
.y149{bottom:351.201067pt;}
.y11c{bottom:352.952400pt;}
.y145{bottom:354.368400pt;}
.y2e{bottom:355.621467pt;}
.y4d{bottom:359.401467pt;}
.y8b{bottom:359.559067pt;}
.y11b{bottom:367.616400pt;}
.y144{bottom:369.032400pt;}
.ye4{bottom:369.321867pt;}
.y2d{bottom:372.953467pt;}
.y4c{bottom:374.065467pt;}
.y8a{bottom:375.559067pt;}
.y143{bottom:383.696400pt;}
.y4b{bottom:384.734133pt;}
.y11a{bottom:390.284400pt;}
.y2c{bottom:390.285467pt;}
.y89{bottom:391.559067pt;}
.ye3{bottom:395.085867pt;}
.y4a{bottom:395.402800pt;}
.yc9{bottom:401.797333pt;}
.y119{bottom:404.948400pt;}
.y142{bottom:406.364400pt;}
.y88{bottom:407.559067pt;}
.y2b{bottom:407.617467pt;}
.y49{bottom:410.066800pt;}
.y118{bottom:419.612400pt;}
.y48{bottom:420.735467pt;}
.ye2{bottom:420.849867pt;}
.y141{bottom:421.028400pt;}
.y87{bottom:423.559067pt;}
.y2a{bottom:424.949467pt;}
.y47{bottom:431.404133pt;}
.y117{bottom:434.276400pt;}
.y140{bottom:435.692400pt;}
.y86{bottom:439.559067pt;}
.y46{bottom:442.072800pt;}
.y29{bottom:442.281467pt;}
.ye1{bottom:446.613867pt;}
.y13f{bottom:450.356400pt;}
.y45{bottom:452.741467pt;}
.y85{bottom:455.559067pt;}
.y116{bottom:456.944400pt;}
.y28{bottom:459.613467pt;}
.y44{bottom:463.410133pt;}
.y13e{bottom:465.020400pt;}
.y84{bottom:471.559067pt;}
.y115{bottom:471.608400pt;}
.ye0{bottom:472.377867pt;}
.y43{bottom:474.078800pt;}
.y27{bottom:476.945467pt;}
.yb2{bottom:477.237600pt;}
.y13d{bottom:479.684400pt;}
.y114{bottom:486.272400pt;}
.y83{bottom:487.559067pt;}
.y42{bottom:488.742800pt;}
.yb1{bottom:489.898933pt;}
.y26{bottom:494.277467pt;}
.yca{bottom:495.133867pt;}
.ydf{bottom:498.141867pt;}
.y41{bottom:499.411467pt;}
.y113{bottom:500.936400pt;}
.y13c{bottom:502.352400pt;}
.y82{bottom:503.559067pt;}
.y40{bottom:510.080133pt;}
.y25{bottom:511.609467pt;}
.y112{bottom:515.600400pt;}
.yb0{bottom:516.205733pt;}
.y13b{bottom:517.016400pt;}
.y9d{bottom:519.559067pt;}
.y3f{bottom:520.748800pt;}
.yde{bottom:523.905867pt;}
.y24{bottom:528.941467pt;}
.y3e{bottom:531.417467pt;}
.y13a{bottom:531.680400pt;}
.y81{bottom:535.559067pt;}
.y111{bottom:538.268400pt;}
.yaf{bottom:539.293733pt;}
.y3d{bottom:542.086133pt;}
.y23{bottom:546.273467pt;}
.y139{bottom:546.344400pt;}
.ydd{bottom:549.669867pt;}
.y80{bottom:551.559067pt;}
.y3c{bottom:552.754800pt;}
.y110{bottom:552.932400pt;}
.ycb{bottom:559.795200pt;}
.y3b{bottom:563.423467pt;}
.y22{bottom:563.605467pt;}
.yae{bottom:565.069733pt;}
.y7f{bottom:567.559067pt;}
.y10f{bottom:567.596400pt;}
.y138{bottom:569.012400pt;}
.y3a{bottom:574.092133pt;}
.ydc{bottom:575.433867pt;}
.y21{bottom:580.937467pt;}
.y10e{bottom:582.260400pt;}
.y7e{bottom:583.559067pt;}
.y137{bottom:583.676400pt;}
.y39{bottom:584.760800pt;}
.yad{bottom:590.845733pt;}
.y38{bottom:595.429467pt;}
.y10d{bottom:596.924400pt;}
.y20{bottom:598.269467pt;}
.y136{bottom:598.340400pt;}
.y7d{bottom:599.559067pt;}
.ydb{bottom:601.197867pt;}
.y37{bottom:606.098133pt;}
.y10c{bottom:611.588400pt;}
.y135{bottom:613.004400pt;}
.y7c{bottom:615.559067pt;}
.y1f{bottom:615.601467pt;}
.yac{bottom:616.621733pt;}
.yc4{bottom:624.705733pt;}
.y10b{bottom:626.252400pt;}
.yda{bottom:627.285867pt;}
.y134{bottom:627.668400pt;}
.y7b{bottom:631.559067pt;}
.y1e{bottom:632.933467pt;}
.yc3{bottom:637.368400pt;}
.yd9{bottom:641.289867pt;}
.yab{bottom:642.397733pt;}
.y7a{bottom:647.559067pt;}
.ycc{bottom:648.666667pt;}
.y10a{bottom:648.920400pt;}
.y1d{bottom:650.265467pt;}
.y133{bottom:650.336400pt;}
.yc2{bottom:651.372400pt;}
.y9c{bottom:663.559067pt;}
.y109{bottom:663.584400pt;}
.y132{bottom:665.000400pt;}
.yd8{bottom:666.623200pt;}
.y1c{bottom:667.597467pt;}
.yaa{bottom:668.173733pt;}
.y108{bottom:678.248400pt;}
.y79{bottom:679.559067pt;}
.y131{bottom:679.664400pt;}
.y1b{bottom:684.929467pt;}
.ybf{bottom:686.506267pt;}
.y107{bottom:692.912400pt;}
.ya9{bottom:693.949733pt;}
.y130{bottom:694.328400pt;}
.y78{bottom:695.559067pt;}
.ybe{bottom:702.154267pt;}
.y12f{bottom:708.992400pt;}
.y77{bottom:711.559067pt;}
.ycd{bottom:712.666667pt;}
.y106{bottom:715.580400pt;}
.ya8{bottom:719.725733pt;}
.y1a{bottom:723.596133pt;}
.ybd{bottom:725.493733pt;}
.y76{bottom:727.559067pt;}
.y105{bottom:730.244400pt;}
.y12e{bottom:731.660400pt;}
.yef{bottom:733.601067pt;}
.y19{bottom:739.596133pt;}
.y75{bottom:743.559067pt;}
.y104{bottom:744.908400pt;}
.ya7{bottom:745.477733pt;}
.yee{bottom:746.267733pt;}
.y12d{bottom:746.324400pt;}
.ybc{bottom:748.593733pt;}
.y74{bottom:759.559067pt;}
.y12c{bottom:760.988400pt;}
.y103{bottom:767.576400pt;}
.ya6{bottom:773.257733pt;}
.ybb{bottom:774.369733pt;}
.y73{bottom:775.559067pt;}
.y12b{bottom:775.652400pt;}
.y18{bottom:779.596133pt;}
.y102{bottom:782.240400pt;}
.y12a{bottom:790.316400pt;}
.y72{bottom:791.559067pt;}
.ya5{bottom:799.033733pt;}
.yba{bottom:800.145733pt;}
.yce{bottom:802.398933pt;}
.y101{bottom:804.908400pt;}
.y9b{bottom:807.559067pt;}
.y17{bottom:811.596133pt;}
.y129{bottom:812.984400pt;}
.y100{bottom:819.572400pt;}
.y71{bottom:823.559067pt;}
.ya4{bottom:824.809733pt;}
.ya{bottom:825.366000pt;}
.yb9{bottom:825.921733pt;}
.y128{bottom:827.648400pt;}
.yff{bottom:834.236400pt;}
.y9{bottom:836.702000pt;}
.y70{bottom:839.559067pt;}
.y127{bottom:842.312400pt;}
.y16{bottom:843.596133pt;}
.y8{bottom:848.038000pt;}
.yfe{bottom:848.900400pt;}
.ya3{bottom:850.585733pt;}
.yb8{bottom:851.689867pt;}
.y6f{bottom:855.559067pt;}
.y126{bottom:856.976400pt;}
.y7{bottom:859.374000pt;}
.y6e{bottom:871.559067pt;}
.yfd{bottom:871.568400pt;}
.y125{bottom:871.640400pt;}
.y15{bottom:875.596133pt;}
.ya2{bottom:876.361733pt;}
.ycf{bottom:876.393600pt;}
.y6{bottom:876.707333pt;}
.yb7{bottom:877.465867pt;}
.y2{bottom:879.381867pt;}
.yfc{bottom:886.232400pt;}
.y6d{bottom:887.559067pt;}
.y5{bottom:888.043333pt;}
.y1{bottom:888.045867pt;}
.y124{bottom:894.308400pt;}
.yfb{bottom:900.896400pt;}
.ya1{bottom:902.137733pt;}
.yb6{bottom:903.553867pt;}
.y6c{bottom:903.559067pt;}
.y4{bottom:905.376667pt;}
.y14{bottom:907.596133pt;}
.y123{bottom:908.972400pt;}
.yb5{bottom:914.221867pt;}
.y6b{bottom:919.559067pt;}
.y3{bottom:922.710000pt;}
.yfa{bottom:923.564400pt;}
.y122{bottom:923.636400pt;}
.ya0{bottom:928.225733pt;}
.yb4{bottom:928.225867pt;}
.y6a{bottom:935.559067pt;}
.yf9{bottom:938.228400pt;}
.y121{bottom:938.300400pt;}
.y69{bottom:951.559067pt;}
.yf8{bottom:952.892400pt;}
.y120{bottom:952.964400pt;}
.y9f{bottom:953.559067pt;}
.yb3{bottom:953.559200pt;}
.y67{bottom:985.574800pt;}
.yb{bottom:986.908267pt;}
.y68{bottom:988.290667pt;}
.y66{bottom:1043.546667pt;}
.y65{bottom:1044.879600pt;}
.he{height:3.733333pt;}
.h2{height:19.344000pt;}
.h16{height:22.442667pt;}
.h3{height:24.890667pt;}
.h4{height:27.941333pt;}
.h18{height:33.410667pt;}
.h17{height:33.600000pt;}
.hd{height:34.250667pt;}
.h13{height:34.389333pt;}
.h7{height:37.333333pt;}
.h10{height:38.293333pt;}
.h11{height:38.688000pt;}
.h14{height:38.705600pt;}
.hf{height:39.199467pt;}
.h8{height:39.200000pt;}
.ha{height:39.872000pt;}
.h5{height:40.208000pt;}
.h15{height:41.328000pt;}
.h6{height:42.986667pt;}
.hb{height:45.136000pt;}
.hc{height:45.832271pt;}
.h12{height:46.704000pt;}
.h9{height:85.973333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:10.078800pt;}
.x9{left:34.015733pt;}
.xe{left:41.700000pt;}
.x3{left:56.692933pt;}
.x13{left:62.025333pt;}
.x14{left:64.692933pt;}
.x15{left:70.666667pt;}
.x2{left:72.000000pt;}
.x16{left:94.666667pt;}
.x17{left:107.328000pt;}
.x18{left:119.989333pt;}
.x6{left:131.381733pt;}
.x4{left:138.139733pt;}
.xf{left:144.000000pt;}
.xa{left:151.181067pt;}
.x19{left:155.669333pt;}
.x24{left:159.181067pt;}
.x28{left:175.181067pt;}
.x1a{left:182.133333pt;}
.x1b{left:208.603733pt;}
.x1c{left:235.067733pt;}
.x10{left:252.000000pt;}
.x1d{left:261.531733pt;}
.x26{left:269.893067pt;}
.x1e{left:287.995733pt;}
.xd{left:295.200000pt;}
.x1f{left:311.793067pt;}
.x20{left:336.927067pt;}
.x21{left:349.593733pt;}
.x5{left:357.608267pt;}
.x22{left:365.241733pt;}
.x23{left:377.903067pt;}
.x27{left:381.606267pt;}
.x11{left:399.333333pt;}
.xb{left:452.101733pt;}
.x29{left:476.093067pt;}
.xc{left:492.149600pt;}
.x12{left:505.329333pt;}
.x25{left:598.465067pt;}
.x8{left:653.805067pt;}
.x1{left:655.685067pt;}
}

