
    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_e09e082add7ed5dcd83ed160.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073000;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_b0626b223575ab06f042007d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.714000;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_2ea804f1f9e2617ef32d0684.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073000;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_44b99283a0c0d841a157dcd6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.871000;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_14b3ea125bd9f393f1b16864.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026000;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_e09e082add7ed5dcd83ed160.woff')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_e09e082add7ed5dcd83ed160.woff')format("woff");}.ff7{font-family:ff7;line-height:1.073000;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_b0626b223575ab06f042007d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_4680a6c42a69124af1223f12.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_e09e082add7ed5dcd83ed160.woff')format("woff");}.ffa{font-family:ffa;line-height:1.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:26.910000px;}
.ls38{letter-spacing:-2.880000px;}
.ls67{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.500000px;}
.ls44{letter-spacing:-1.350000px;}
.ls68{letter-spacing:-1.242000px;}
.ls30{letter-spacing:-1.200000px;}
.ls62{letter-spacing:-1.188000px;}
.ls45{letter-spacing:-1.080000px;}
.ls58{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-1.020000px;}
.ls35{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.960000px;}
.ls48{letter-spacing:-0.918000px;}
.ls24{letter-spacing:-0.900000px;}
.ls59{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.840000px;}
.ls49{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.780000px;}
.ls57{letter-spacing:-0.756000px;}
.ls23{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.672000px;}
.lsc{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.594000px;}
.ls36{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.486000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.420000px;}
.ls63{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.336000px;}
.ls46{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.120000px;}
.ls55{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.096000px;}
.ls13{letter-spacing:-0.060000px;}
.ls56{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.027000px;}
.ls33{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.052800px;}
.ls5c{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.108000px;}
.lse{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.150000px;}
.ls64{letter-spacing:0.162000px;}
.ls20{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.189000px;}
.ls47{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.238800px;}
.ls2d{letter-spacing:0.240000px;}
.ls61{letter-spacing:0.243000px;}
.ls3d{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.300000px;}
.ls5b{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.330000px;}
.ls2e{letter-spacing:0.360000px;}
.ls4f{letter-spacing:0.378000px;}
.ls2f{letter-spacing:0.390000px;}
.ls2a{letter-spacing:0.420000px;}
.ls3f{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.486000px;}
.ls53{letter-spacing:0.513000px;}
.ls29{letter-spacing:0.540000px;}
.ls52{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.702000px;}
.ls31{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.750000px;}
.ls4d{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.960000px;}
.ls54{letter-spacing:1.026000px;}
.ls51{letter-spacing:1.080000px;}
.ls39{letter-spacing:1.140000px;}
.ls42{letter-spacing:1.188000px;}
.ls5f{letter-spacing:1.205400px;}
.ls50{letter-spacing:1.242000px;}
.ls43{letter-spacing:1.296000px;}
.ls60{letter-spacing:1.404000px;}
.ls28{letter-spacing:1.440000px;}
.ls41{letter-spacing:1.458000px;}
.ls4c{letter-spacing:1.512000px;}
.ls40{letter-spacing:1.620000px;}
.ls4b{letter-spacing:1.890000px;}
.ls65{letter-spacing:1.920000px;}
.ls4a{letter-spacing:2.214000px;}
.ls66{letter-spacing:3.532200px;}
.ls4{letter-spacing:468.415200px;}
.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;}
}
.wsa3{word-spacing:-19.320000px;}
.ws8d{word-spacing:-19.200000px;}
.wsd3{word-spacing:-18.792000px;}
.wscb{word-spacing:-18.684000px;}
.wsa8{word-spacing:-18.576000px;}
.wse4{word-spacing:-17.658000px;}
.wse5{word-spacing:-17.496000px;}
.ws3{word-spacing:-17.280000px;}
.ws41{word-spacing:-17.100000px;}
.ws9a{word-spacing:-16.920000px;}
.ws8c{word-spacing:-16.800000px;}
.wsca{word-spacing:-16.740000px;}
.wsc9{word-spacing:-16.686000px;}
.ws27{word-spacing:-16.560000px;}
.ws5f{word-spacing:-16.500000px;}
.ws26{word-spacing:-16.440000px;}
.ws40{word-spacing:-16.380000px;}
.wsbb{word-spacing:-16.254000px;}
.ws9b{word-spacing:-16.140000px;}
.wsb9{word-spacing:-16.092000px;}
.ws6f{word-spacing:-16.020000px;}
.wsa7{word-spacing:-15.984000px;}
.ws28{word-spacing:-15.780000px;}
.ws42{word-spacing:-15.456000px;}
.wsa6{word-spacing:-15.228000px;}
.wse6{word-spacing:-14.958000px;}
.wsd6{word-spacing:-14.904000px;}
.wsd5{word-spacing:-14.850000px;}
.ws4{word-spacing:-14.796000px;}
.wscc{word-spacing:-14.742000px;}
.ws14{word-spacing:-14.634000px;}
.wsa4{word-spacing:-14.526000px;}
.wsd4{word-spacing:-14.418000px;}
.ws1{word-spacing:-14.400000px;}
.wsba{word-spacing:-13.932000px;}
.ws61{word-spacing:-13.152000px;}
.ws93{word-spacing:-12.576000px;}
.ws7a{word-spacing:-12.480000px;}
.ws0{word-spacing:-11.520000px;}
.wsa5{word-spacing:-11.232000px;}
.ws94{word-spacing:-10.272000px;}
.ws60{word-spacing:-9.984000px;}
.ws2{word-spacing:-6.765600px;}
.ws8{word-spacing:-4.428000px;}
.ws24{word-spacing:-2.880000px;}
.ws8b{word-spacing:-2.820000px;}
.ws30{word-spacing:-2.760000px;}
.ws4e{word-spacing:-2.700000px;}
.ws39{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.592000px;}
.wse7{word-spacing:-2.538000px;}
.ws5c{word-spacing:-2.520000px;}
.wsc3{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.460000px;}
.ws36{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.340000px;}
.ws1f{word-spacing:-2.322000px;}
.ws80{word-spacing:-2.304000px;}
.ws68{word-spacing:-2.280000px;}
.wsb8{word-spacing:-2.268000px;}
.ws3a{word-spacing:-2.220000px;}
.ws1a{word-spacing:-2.214000px;}
.ws29{word-spacing:-2.160000px;}
.wsb4{word-spacing:-2.106000px;}
.ws46{word-spacing:-2.100000px;}
.ws1c{word-spacing:-2.052000px;}
.ws25{word-spacing:-2.040000px;}
.wse2{word-spacing:-1.998000px;}
.ws67{word-spacing:-1.980000px;}
.wsc5{word-spacing:-1.944000px;}
.ws78{word-spacing:-1.920000px;}
.wsdc{word-spacing:-1.890000px;}
.ws23{word-spacing:-1.860000px;}
.ws90{word-spacing:-1.800000px;}
.ws16{word-spacing:-1.782000px;}
.ws2b{word-spacing:-1.740000px;}
.ws64{word-spacing:-1.680000px;}
.wsb1{word-spacing:-1.674000px;}
.ws19{word-spacing:-1.620000px;}
.ws6b{word-spacing:-1.560000px;}
.wsa1{word-spacing:-1.500000px;}
.ws6e{word-spacing:-1.488000px;}
.ws65{word-spacing:-1.440000px;}
.ws9f{word-spacing:-1.404000px;}
.ws6a{word-spacing:-1.380000px;}
.wsdd{word-spacing:-1.350000px;}
.ws84{word-spacing:-1.344000px;}
.ws72{word-spacing:-1.320000px;}
.wsc2{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.260000px;}
.wsb5{word-spacing:-1.242000px;}
.ws85{word-spacing:-1.200000px;}
.ws35{word-spacing:-1.140000px;}
.ws81{word-spacing:-1.104000px;}
.ws2f{word-spacing:-1.080000px;}
.wsab{word-spacing:-1.026000px;}
.ws4d{word-spacing:-1.020000px;}
.wse8{word-spacing:-0.972000px;}
.ws66{word-spacing:-0.960000px;}
.wsaa{word-spacing:-0.918000px;}
.ws88{word-spacing:-0.900000px;}
.ws1d{word-spacing:-0.864000px;}
.ws4c{word-spacing:-0.840000px;}
.ws11{word-spacing:-0.810000px;}
.wse0{word-spacing:-0.756000px;}
.ws8a{word-spacing:-0.720000px;}
.wse9{word-spacing:-0.702000px;}
.ws3c{word-spacing:-0.660000px;}
.wse1{word-spacing:-0.648000px;}
.ws7c{word-spacing:-0.600000px;}
.wsd0{word-spacing:-0.594000px;}
.ws20{word-spacing:-0.540000px;}
.wsb0{word-spacing:-0.486000px;}
.ws4f{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.432000px;}
.ws38{word-spacing:-0.420000px;}
.ws5e{word-spacing:-0.360000px;}
.wsce{word-spacing:-0.324000px;}
.ws57{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.270000px;}
.ws43{word-spacing:-0.240000px;}
.wsb6{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.180000px;}
.ws83{word-spacing:-0.144000px;}
.ws5d{word-spacing:-0.120000px;}
.wsdf{word-spacing:-0.108000px;}
.ws54{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsc0{word-spacing:0.054000px;}
.ws53{word-spacing:0.060000px;}
.ws6d{word-spacing:0.096000px;}
.wsd2{word-spacing:0.108000px;}
.ws34{word-spacing:0.120000px;}
.wseb{word-spacing:0.162000px;}
.ws86{word-spacing:0.180000px;}
.ws73{word-spacing:0.240000px;}
.wsea{word-spacing:0.270000px;}
.ws5b{word-spacing:0.300000px;}
.ws87{word-spacing:0.360000px;}
.ws3b{word-spacing:0.420000px;}
.wsda{word-spacing:0.432000px;}
.ws2e{word-spacing:0.480000px;}
.ws22{word-spacing:0.486000px;}
.ws77{word-spacing:0.540000px;}
.ws82{word-spacing:0.576000px;}
.wsad{word-spacing:0.594000px;}
.ws52{word-spacing:0.600000px;}
.wscf{word-spacing:0.648000px;}
.ws2d{word-spacing:0.660000px;}
.ws71{word-spacing:0.720000px;}
.wsc6{word-spacing:0.756000px;}
.ws44{word-spacing:0.780000px;}
.wsd8{word-spacing:0.810000px;}
.ws8e{word-spacing:0.840000px;}
.wsb3{word-spacing:0.864000px;}
.ws7d{word-spacing:0.900000px;}
.wse3{word-spacing:0.918000px;}
.ws12{word-spacing:0.972000px;}
.ws9c{word-spacing:1.020000px;}
.ws13{word-spacing:1.026000px;}
.ws69{word-spacing:1.080000px;}
.wsc7{word-spacing:1.134000px;}
.wsd1{word-spacing:1.188000px;}
.ws7f{word-spacing:1.200000px;}
.wsde{word-spacing:1.242000px;}
.ws89{word-spacing:1.260000px;}
.wsa2{word-spacing:1.320000px;}
.wsa9{word-spacing:1.350000px;}
.ws96{word-spacing:1.380000px;}
.wsc1{word-spacing:1.404000px;}
.ws51{word-spacing:1.440000px;}
.ws4b{word-spacing:1.500000px;}
.wsd9{word-spacing:1.512000px;}
.ws76{word-spacing:1.560000px;}
.ws98{word-spacing:1.584000px;}
.wsf{word-spacing:1.620000px;}
.ws99{word-spacing:1.632000px;}
.ws10{word-spacing:1.674000px;}
.ws91{word-spacing:1.680000px;}
.wsc8{word-spacing:1.728000px;}
.ws3e{word-spacing:1.740000px;}
.wscd{word-spacing:1.782000px;}
.ws79{word-spacing:1.800000px;}
.wsac{word-spacing:1.836000px;}
.ws97{word-spacing:1.860000px;}
.wsb2{word-spacing:1.890000px;}
.ws8f{word-spacing:1.920000px;}
.wsdb{word-spacing:1.944000px;}
.ws63{word-spacing:2.040000px;}
.ws58{word-spacing:2.100000px;}
.ws2c{word-spacing:2.160000px;}
.ws31{word-spacing:2.220000px;}
.ws95{word-spacing:2.280000px;}
.ws62{word-spacing:2.340000px;}
.ws37{word-spacing:2.400000px;}
.ws75{word-spacing:2.460000px;}
.ws4a{word-spacing:2.520000px;}
.ws17{word-spacing:2.538000px;}
.ws7b{word-spacing:2.580000px;}
.wsbf{word-spacing:2.592000px;}
.ws48{word-spacing:2.640000px;}
.wsc{word-spacing:2.700000px;}
.wsa{word-spacing:2.754000px;}
.ws56{word-spacing:2.760000px;}
.ws92{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.wsc4{word-spacing:2.916000px;}
.wsaf{word-spacing:2.970000px;}
.ws2a{word-spacing:3.000000px;}
.wsbe{word-spacing:3.024000px;}
.ws49{word-spacing:3.060000px;}
.ws74{word-spacing:3.120000px;}
.wsbd{word-spacing:3.132000px;}
.ws5a{word-spacing:3.180000px;}
.ws9{word-spacing:3.240000px;}
.wse{word-spacing:3.294000px;}
.ws59{word-spacing:3.300000px;}
.ws21{word-spacing:3.348000px;}
.ws9d{word-spacing:3.360000px;}
.ws18{word-spacing:3.402000px;}
.wsa0{word-spacing:3.420000px;}
.wsae{word-spacing:3.456000px;}
.ws70{word-spacing:3.480000px;}
.ws1b{word-spacing:3.510000px;}
.ws3d{word-spacing:3.540000px;}
.ws6c{word-spacing:3.600000px;}
.wsbc{word-spacing:3.618000px;}
.ws50{word-spacing:3.720000px;}
.ws55{word-spacing:3.780000px;}
.ws33{word-spacing:3.840000px;}
.ws9e{word-spacing:5.400000px;}
.ws1e{word-spacing:5.562000px;}
.ws15{word-spacing:6.912000px;}
.ws7{word-spacing:10.530000px;}
.ws6{word-spacing:10.584000px;}
._4{margin-left:-7.476000px;}
._6{margin-left:-6.308400px;}
._5{margin-left:-5.124000px;}
._a{margin-left:-3.925800px;}
._2{margin-left:-2.700000px;}
._3{margin-left:-1.125000px;}
._7{width:1.344000px;}
._8{width:2.694000px;}
._9{width:4.203000px;}
._f{width:5.856000px;}
._0{width:7.192800px;}
._e{width:9.780000px;}
._d{width:11.399400px;}
._b{width:50.125800px;}
._1{width:469.387800px;}
._c{width:511.931400px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.200000px;}
.fsa{font-size:35.100000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.543300px;}
.y1e{bottom:135.174750px;}
.ybe{bottom:135.604800px;}
.y47{bottom:135.619950px;}
.y71{bottom:135.864600px;}
.y81{bottom:136.062900px;}
.ya8{bottom:136.063050px;}
.y7f{bottom:136.608750px;}
.ya1{bottom:137.848950px;}
.ye3{bottom:145.647450px;}
.y177{bottom:150.029400px;}
.y9a{bottom:151.062900px;}
.ya7{bottom:151.063050px;}
.y1d{bottom:151.674750px;}
.ybd{bottom:152.104800px;}
.y46{bottom:153.619950px;}
.y151{bottom:153.773550px;}
.y12a{bottom:153.846900px;}
.y70{bottom:153.864600px;}
.y7e{bottom:154.608750px;}
.y80{bottom:155.022900px;}
.ya0{bottom:155.848950px;}
.ye2{bottom:163.647450px;}
.y10a{bottom:163.852950px;}
.y99{bottom:166.062900px;}
.y176{bottom:166.529400px;}
.y19f{bottom:166.724400px;}
.y1c{bottom:168.174750px;}
.ybc{bottom:168.604800px;}
.y150{bottom:170.273550px;}
.y129{bottom:170.346900px;}
.y45{bottom:171.619950px;}
.y6f{bottom:171.864600px;}
.y7d{bottom:172.608750px;}
.y9f{bottom:173.848950px;}
.y98{bottom:181.062900px;}
.ye1{bottom:181.647450px;}
.y109{bottom:182.058300px;}
.y175{bottom:183.029400px;}
.y1b{bottom:184.674750px;}
.y19e{bottom:185.545500px;}
.y14f{bottom:188.899500px;}
.y128{bottom:188.973000px;}
.y6e{bottom:189.864600px;}
.y7c{bottom:190.608750px;}
.y9e{bottom:191.848950px;}
.ybb{bottom:193.608750px;}
.y97{bottom:196.062900px;}
.ye0{bottom:199.647450px;}
.y108{bottom:200.263800px;}
.y1a{bottom:201.174750px;}
.y174{bottom:201.655350px;}
.y44{bottom:202.375800px;}
.y19d{bottom:204.366450px;}
.y14e{bottom:205.399500px;}
.y127{bottom:205.473000px;}
.y6d{bottom:207.864600px;}
.y7b{bottom:208.608750px;}
.y9d{bottom:209.848950px;}
.y96{bottom:211.062900px;}
.yba{bottom:211.608750px;}
.ydf{bottom:217.647450px;}
.y19{bottom:217.674750px;}
.y173{bottom:218.155350px;}
.y107{bottom:218.469150px;}
.y19c{bottom:221.061450px;}
.y14d{bottom:221.899500px;}
.y126{bottom:224.098950px;}
.y6c{bottom:225.864600px;}
.y7a{bottom:226.608750px;}
.y9c{bottom:227.848950px;}
.ya6{bottom:228.189000px;}
.yb9{bottom:229.608750px;}
.y95{bottom:230.022900px;}
.y18{bottom:234.174750px;}
.y172{bottom:234.655350px;}
.yde{bottom:235.647450px;}
.y106{bottom:236.674650px;}
.y19b{bottom:237.756450px;}
.y14c{bottom:238.399500px;}
.y125{bottom:240.598950px;}
.y6b{bottom:243.864600px;}
.y79{bottom:244.608750px;}
.ya3{bottom:245.848950px;}
.ya5{bottom:247.149000px;}
.yb8{bottom:247.608750px;}
.y17{bottom:250.674750px;}
.y171{bottom:253.281300px;}
.ydd{bottom:253.647450px;}
.y43{bottom:254.391600px;}
.y105{bottom:254.880000px;}
.y19a{bottom:256.577550px;}
.y14b{bottom:257.025450px;}
.y124{bottom:257.098950px;}
.y9b{bottom:258.604800px;}
.y6a{bottom:261.864600px;}
.y78{bottom:262.608750px;}
.y94{bottom:263.848950px;}
.yb7{bottom:265.608750px;}
.y16{bottom:267.174750px;}
.y170{bottom:269.781300px;}
.y42{bottom:270.891600px;}
.ydc{bottom:271.647450px;}
.y104{bottom:273.085500px;}
.y199{bottom:273.272550px;}
.y14a{bottom:273.525450px;}
.y123{bottom:275.724900px;}
.y69{bottom:279.864600px;}
.y77{bottom:280.608750px;}
.y93{bottom:281.848950px;}
.yb6{bottom:283.608750px;}
.y15{bottom:283.674750px;}
.y16f{bottom:288.407250px;}
.y103{bottom:291.291000px;}
.y198{bottom:292.093500px;}
.y149{bottom:292.151400px;}
.y122{bottom:294.350850px;}
.y68{bottom:297.864600px;}
.y76{bottom:298.608750px;}
.y92{bottom:299.848950px;}
.y41{bottom:300.147450px;}
.y14{bottom:300.174750px;}
.yb5{bottom:301.608750px;}
.ydb{bottom:302.403450px;}
.y16e{bottom:304.907250px;}
.y197{bottom:308.788500px;}
.y102{bottom:309.496350px;}
.y148{bottom:310.777350px;}
.y121{bottom:310.850850px;}
.y67{bottom:315.864600px;}
.y75{bottom:316.608750px;}
.y40{bottom:316.647450px;}
.y13{bottom:316.674750px;}
.y91{bottom:317.848950px;}
.yb4{bottom:319.608750px;}
.y16d{bottom:321.407250px;}
.y147{bottom:327.277350px;}
.y120{bottom:327.350850px;}
.y196{bottom:327.609600px;}
.y101{bottom:327.701850px;}
.y3f{bottom:333.147450px;}
.y66{bottom:333.864600px;}
.y74{bottom:334.608750px;}
.y90{bottom:335.848950px;}
.yb3{bottom:337.608750px;}
.y16c{bottom:340.033350px;}
.yda{bottom:341.663250px;}
.y12{bottom:341.678700px;}
.y146{bottom:345.903450px;}
.y100{bottom:345.907200px;}
.y11f{bottom:345.976800px;}
.y195{bottom:346.430550px;}
.y3e{bottom:349.647450px;}
.y65{bottom:351.864600px;}
.y8f{bottom:353.848950px;}
.yb2{bottom:355.608750px;}
.y16b{bottom:356.533350px;}
.yd9{bottom:359.663250px;}
.y145{bottom:362.403450px;}
.y11e{bottom:362.476800px;}
.y194{bottom:363.125550px;}
.yff{bottom:364.112700px;}
.y73{bottom:365.364600px;}
.y3d{bottom:366.147450px;}
.y64{bottom:369.864600px;}
.y8e{bottom:371.848950px;}
.y16a{bottom:373.033350px;}
.yb1{bottom:373.608750px;}
.yd8{bottom:377.663250px;}
.y11d{bottom:378.976800px;}
.y193{bottom:379.820550px;}
.y144{bottom:381.029400px;}
.yfe{bottom:382.318050px;}
.y3c{bottom:382.647450px;}
.y72{bottom:383.364600px;}
.y63{bottom:387.864600px;}
.y8d{bottom:389.848950px;}
.yb0{bottom:391.608750px;}
.y169{bottom:391.659300px;}
.yd7{bottom:395.663250px;}
.y11c{bottom:397.602900px;}
.y192{bottom:398.641650px;}
.y3b{bottom:399.147450px;}
.y143{bottom:399.655350px;}
.yfd{bottom:400.523550px;}
.y11{bottom:405.120150px;}
.y62{bottom:405.864600px;}
.y8c{bottom:407.848950px;}
.y168{bottom:408.159300px;}
.yaf{bottom:409.608750px;}
.yd6{bottom:413.663250px;}
.y11b{bottom:414.102900px;}
.y3a{bottom:415.647450px;}
.y142{bottom:416.155350px;}
.y191{bottom:417.462600px;}
.yfc{bottom:418.728900px;}
.y10{bottom:421.620150px;}
.y61{bottom:423.864600px;}
.y167{bottom:424.659300px;}
.y8b{bottom:425.848950px;}
.yae{bottom:427.608750px;}
.yd5{bottom:431.663250px;}
.y39{bottom:432.147450px;}
.y11a{bottom:432.728850px;}
.y190{bottom:434.157600px;}
.y141{bottom:434.781300px;}
.yfb{bottom:436.934400px;}
.yf{bottom:438.120150px;}
.y60{bottom:441.864600px;}
.y166{bottom:443.285250px;}
.y8a{bottom:443.848950px;}
.yad{bottom:445.608750px;}
.y38{bottom:448.647450px;}
.y119{bottom:449.228850px;}
.yd4{bottom:449.663250px;}
.y18f{bottom:450.852750px;}
.y140{bottom:451.281300px;}
.ye{bottom:454.620150px;}
.yfa{bottom:455.139750px;}
.y165{bottom:459.785250px;}
.y5f{bottom:459.864600px;}
.y89{bottom:461.848950px;}
.yac{bottom:463.608750px;}
.y37{bottom:465.147450px;}
.yd3{bottom:467.663250px;}
.y118{bottom:467.854800px;}
.y18e{bottom:469.673700px;}
.y13f{bottom:469.907250px;}
.yf9{bottom:473.345250px;}
.ya2{bottom:474.604800px;}
.y164{bottom:476.285250px;}
.y5e{bottom:477.864600px;}
.y88{bottom:479.848950px;}
.yab{bottom:481.608750px;}
.y36{bottom:481.647450px;}
.y117{bottom:484.354800px;}
.yd2{bottom:485.663250px;}
.y18d{bottom:488.494650px;}
.y13e{bottom:488.533350px;}
.yf8{bottom:491.550600px;}
.y163{bottom:494.911350px;}
.y5d{bottom:495.864600px;}
.y87{bottom:497.848950px;}
.y35{bottom:498.147450px;}
.yaa{bottom:499.608750px;}
.y116{bottom:500.854800px;}
.yd1{bottom:503.663250px;}
.y13d{bottom:505.033350px;}
.y18c{bottom:507.315750px;}
.yf7{bottom:509.756100px;}
.y162{bottom:511.411350px;}
.y5c{bottom:513.864600px;}
.y34{bottom:514.647450px;}
.y86{bottom:515.848950px;}
.yd{bottom:517.756050px;}
.y115{bottom:519.480900px;}
.yd0{bottom:521.663250px;}
.y13c{bottom:523.659300px;}
.y18b{bottom:526.136700px;}
.yf6{bottom:527.961450px;}
.ya4{bottom:528.604800px;}
.y161{bottom:530.037300px;}
.ya9{bottom:530.364600px;}
.y33{bottom:531.147450px;}
.y5b{bottom:531.864600px;}
.y85{bottom:533.848950px;}
.yc{bottom:534.256050px;}
.y114{bottom:535.980900px;}
.ycf{bottom:539.663250px;}
.y13b{bottom:540.159300px;}
.y18a{bottom:542.831700px;}
.yf5{bottom:546.166950px;}
.y160{bottom:546.537300px;}
.y32{bottom:547.647450px;}
.y5a{bottom:549.864600px;}
.yb{bottom:550.756050px;}
.y84{bottom:551.848950px;}
.y113{bottom:552.480900px;}
.y13a{bottom:556.659300px;}
.yce{bottom:557.663250px;}
.y189{bottom:559.526850px;}
.y1a9{bottom:563.037300px;}
.y31{bottom:564.147450px;}
.yf4{bottom:564.372300px;}
.y15f{bottom:565.163250px;}
.y59{bottom:567.864600px;}
.y83{bottom:569.848950px;}
.y112{bottom:571.106850px;}
.y139{bottom:575.285250px;}
.ycd{bottom:575.663250px;}
.y188{bottom:578.347800px;}
.y30{bottom:580.647450px;}
.y15e{bottom:581.663250px;}
.yf3{bottom:582.577800px;}
.y58{bottom:585.864600px;}
.y111{bottom:589.732800px;}
.ya{bottom:592.767900px;}
.ycc{bottom:593.663250px;}
.y138{bottom:593.911350px;}
.y187{bottom:595.042800px;}
.y2f{bottom:597.147450px;}
.y15d{bottom:598.163250px;}
.y82{bottom:600.604800px;}
.yf2{bottom:600.783300px;}
.y57{bottom:603.864600px;}
.y110{bottom:606.232800px;}
.y137{bottom:610.411350px;}
.ycb{bottom:611.663250px;}
.y9{bottom:612.267900px;}
.y2e{bottom:613.647450px;}
.y186{bottom:613.863900px;}
.y15c{bottom:616.789200px;}
.yf1{bottom:618.988650px;}
.y56{bottom:621.864600px;}
.y10f{bottom:622.732800px;}
.y136{bottom:629.037300px;}
.yca{bottom:629.663250px;}
.y2d{bottom:630.147450px;}
.y185{bottom:630.558900px;}
.y8{bottom:631.767900px;}
.y1a8{bottom:633.289200px;}
.y15b{bottom:635.415150px;}
.yf0{bottom:637.194150px;}
.y55{bottom:639.864600px;}
.y10e{bottom:641.358750px;}
.y135{bottom:645.537300px;}
.yc9{bottom:647.663250px;}
.y184{bottom:649.379850px;}
.y1a7{bottom:649.789200px;}
.y7{bottom:651.267900px;}
.y15a{bottom:651.915150px;}
.y2c{bottom:655.151400px;}
.yef{bottom:655.399500px;}
.y10d{bottom:657.858750px;}
.y54{bottom:657.864600px;}
.y134{bottom:662.037300px;}
.yc8{bottom:665.663250px;}
.y183{bottom:666.074850px;}
.y159{bottom:668.415150px;}
.yee{bottom:673.604850px;}
.y10c{bottom:674.358750px;}
.y53{bottom:675.864600px;}
.y133{bottom:680.663250px;}
.y182{bottom:682.769850px;}
.yc7{bottom:683.663250px;}
.y1a6{bottom:684.915150px;}
.y158{bottom:687.041250px;}
.yed{bottom:691.810350px;}
.y52{bottom:693.864600px;}
.y6{bottom:696.279750px;}
.y2b{bottom:697.163250px;}
.y1a5{bottom:701.415150px;}
.y181{bottom:701.590950px;}
.yc6{bottom:701.663250px;}
.y157{bottom:703.541250px;}
.y10b{bottom:703.614600px;}
.yec{bottom:710.015850px;}
.y51{bottom:711.864600px;}
.y2a{bottom:713.663250px;}
.y132{bottom:715.789200px;}
.y180{bottom:718.285950px;}
.yc5{bottom:719.663250px;}
.y156{bottom:720.041250px;}
.yeb{bottom:728.221200px;}
.y50{bottom:729.864600px;}
.y131{bottom:732.289200px;}
.y17f{bottom:734.980950px;}
.y1a4{bottom:736.541250px;}
.yc4{bottom:737.663250px;}
.y155{bottom:738.667200px;}
.y29{bottom:742.919100px;}
.yea{bottom:746.426700px;}
.y5{bottom:746.991450px;}
.y4f{bottom:747.864600px;}
.y130{bottom:750.915150px;}
.y17e{bottom:753.802050px;}
.y154{bottom:755.167200px;}
.yc3{bottom:755.663250px;}
.y28{bottom:759.419100px;}
.ye9{bottom:764.632050px;}
.y4e{bottom:765.864600px;}
.y12f{bottom:767.415150px;}
.y17d{bottom:770.497050px;}
.y1a3{bottom:771.667200px;}
.y4{bottom:772.191450px;}
.yc2{bottom:773.663250px;}
.y153{bottom:773.793150px;}
.y27{bottom:775.919100px;}
.ye8{bottom:782.837550px;}
.y4d{bottom:783.864600px;}
.y12e{bottom:786.041250px;}
.y17c{bottom:787.192050px;}
.y1a2{bottom:788.167200px;}
.y152{bottom:790.293150px;}
.yc1{bottom:791.663250px;}
.y26{bottom:792.419100px;}
.ye7{bottom:801.042900px;}
.y4c{bottom:801.864600px;}
.y12d{bottom:802.541250px;}
.y17b{bottom:806.013000px;}
.y1a1{bottom:806.793150px;}
.y25{bottom:808.919100px;}
.yc0{bottom:809.663250px;}
.ye6{bottom:819.248400px;}
.y4b{bottom:819.864600px;}
.y12c{bottom:821.167200px;}
.y17a{bottom:822.708000px;}
.y1a0{bottom:823.293150px;}
.y24{bottom:825.419100px;}
.ybf{bottom:827.663250px;}
.ye5{bottom:837.453900px;}
.y4a{bottom:837.864600px;}
.y12b{bottom:839.793150px;}
.y179{bottom:841.529100px;}
.y23{bottom:841.919100px;}
.ye4{bottom:855.659250px;}
.y49{bottom:855.864600px;}
.y3{bottom:856.919100px;}
.y178{bottom:858.224100px;}
.y22{bottom:858.419100px;}
.y48{bottom:873.864600px;}
.y2{bottom:874.919100px;}
.y20{bottom:916.051800px;}
.y21{bottom:922.779300px;}
.y1f{bottom:928.051800px;}
.hf{height:25.771200px;}
.h9{height:34.692000px;}
.h2{height:37.170000px;}
.hb{height:39.648000px;}
.h11{height:42.660000px;}
.h3{height:44.604000px;}
.h8{height:46.224000px;}
.h10{height:46.812600px;}
.h7{height:47.400000px;}
.h6{height:49.560000px;}
.hc{height:51.360000px;}
.he{height:52.014000px;}
.ha{height:59.472000px;}
.h5{height:66.360000px;}
.h4{height:71.904000px;}
.hd{height:86.382000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.x2{left:83.663400px;}
.xa{left:99.921150px;}
.x7{left:104.173200px;}
.x4{left:116.881950px;}
.x3{left:146.645700px;}
.x9{left:173.532000px;}
.x8{left:203.451450px;}
.x6{left:220.303500px;}
.x5{left:250.223100px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:23.920000pt;}
.ls38{letter-spacing:-2.560000pt;}
.ls67{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.333333pt;}
.ls44{letter-spacing:-1.200000pt;}
.ls68{letter-spacing:-1.104000pt;}
.ls30{letter-spacing:-1.066667pt;}
.ls62{letter-spacing:-1.056000pt;}
.ls45{letter-spacing:-0.960000pt;}
.ls58{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.906667pt;}
.ls35{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls48{letter-spacing:-0.816000pt;}
.ls24{letter-spacing:-0.800000pt;}
.ls59{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.746667pt;}
.ls49{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls57{letter-spacing:-0.672000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.597333pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.528000pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.432000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.373333pt;}
.ls63{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.298667pt;}
.ls46{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls55{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.085333pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls56{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.024000pt;}
.ls33{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.046933pt;}
.ls5c{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.133333pt;}
.ls64{letter-spacing:0.144000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.168000pt;}
.ls47{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.212267pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls61{letter-spacing:0.216000pt;}
.ls3d{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls5b{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.293333pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls4f{letter-spacing:0.336000pt;}
.ls2f{letter-spacing:0.346667pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls3f{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.432000pt;}
.ls53{letter-spacing:0.456000pt;}
.ls29{letter-spacing:0.480000pt;}
.ls52{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.624000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.666667pt;}
.ls4d{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.853333pt;}
.ls54{letter-spacing:0.912000pt;}
.ls51{letter-spacing:0.960000pt;}
.ls39{letter-spacing:1.013333pt;}
.ls42{letter-spacing:1.056000pt;}
.ls5f{letter-spacing:1.071467pt;}
.ls50{letter-spacing:1.104000pt;}
.ls43{letter-spacing:1.152000pt;}
.ls60{letter-spacing:1.248000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls41{letter-spacing:1.296000pt;}
.ls4c{letter-spacing:1.344000pt;}
.ls40{letter-spacing:1.440000pt;}
.ls4b{letter-spacing:1.680000pt;}
.ls65{letter-spacing:1.706667pt;}
.ls4a{letter-spacing:1.968000pt;}
.ls66{letter-spacing:3.139733pt;}
.ls4{letter-spacing:416.369067pt;}
.wsa3{word-spacing:-17.173333pt;}
.ws8d{word-spacing:-17.066667pt;}
.wsd3{word-spacing:-16.704000pt;}
.wscb{word-spacing:-16.608000pt;}
.wsa8{word-spacing:-16.512000pt;}
.wse4{word-spacing:-15.696000pt;}
.wse5{word-spacing:-15.552000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws41{word-spacing:-15.200000pt;}
.ws9a{word-spacing:-15.040000pt;}
.ws8c{word-spacing:-14.933333pt;}
.wsca{word-spacing:-14.880000pt;}
.wsc9{word-spacing:-14.832000pt;}
.ws27{word-spacing:-14.720000pt;}
.ws5f{word-spacing:-14.666667pt;}
.ws26{word-spacing:-14.613333pt;}
.ws40{word-spacing:-14.560000pt;}
.wsbb{word-spacing:-14.448000pt;}
.ws9b{word-spacing:-14.346667pt;}
.wsb9{word-spacing:-14.304000pt;}
.ws6f{word-spacing:-14.240000pt;}
.wsa7{word-spacing:-14.208000pt;}
.ws28{word-spacing:-14.026667pt;}
.ws42{word-spacing:-13.738667pt;}
.wsa6{word-spacing:-13.536000pt;}
.wse6{word-spacing:-13.296000pt;}
.wsd6{word-spacing:-13.248000pt;}
.wsd5{word-spacing:-13.200000pt;}
.ws4{word-spacing:-13.152000pt;}
.wscc{word-spacing:-13.104000pt;}
.ws14{word-spacing:-13.008000pt;}
.wsa4{word-spacing:-12.912000pt;}
.wsd4{word-spacing:-12.816000pt;}
.ws1{word-spacing:-12.800000pt;}
.wsba{word-spacing:-12.384000pt;}
.ws61{word-spacing:-11.690667pt;}
.ws93{word-spacing:-11.178667pt;}
.ws7a{word-spacing:-11.093333pt;}
.ws0{word-spacing:-10.240000pt;}
.wsa5{word-spacing:-9.984000pt;}
.ws94{word-spacing:-9.130667pt;}
.ws60{word-spacing:-8.874667pt;}
.ws2{word-spacing:-6.013867pt;}
.ws8{word-spacing:-3.936000pt;}
.ws24{word-spacing:-2.560000pt;}
.ws8b{word-spacing:-2.506667pt;}
.ws30{word-spacing:-2.453333pt;}
.ws4e{word-spacing:-2.400000pt;}
.ws39{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.304000pt;}
.wse7{word-spacing:-2.256000pt;}
.ws5c{word-spacing:-2.240000pt;}
.wsc3{word-spacing:-2.208000pt;}
.ws47{word-spacing:-2.186667pt;}
.ws36{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.080000pt;}
.ws1f{word-spacing:-2.064000pt;}
.ws80{word-spacing:-2.048000pt;}
.ws68{word-spacing:-2.026667pt;}
.wsb8{word-spacing:-2.016000pt;}
.ws3a{word-spacing:-1.973333pt;}
.ws1a{word-spacing:-1.968000pt;}
.ws29{word-spacing:-1.920000pt;}
.wsb4{word-spacing:-1.872000pt;}
.ws46{word-spacing:-1.866667pt;}
.ws1c{word-spacing:-1.824000pt;}
.ws25{word-spacing:-1.813333pt;}
.wse2{word-spacing:-1.776000pt;}
.ws67{word-spacing:-1.760000pt;}
.wsc5{word-spacing:-1.728000pt;}
.ws78{word-spacing:-1.706667pt;}
.wsdc{word-spacing:-1.680000pt;}
.ws23{word-spacing:-1.653333pt;}
.ws90{word-spacing:-1.600000pt;}
.ws16{word-spacing:-1.584000pt;}
.ws2b{word-spacing:-1.546667pt;}
.ws64{word-spacing:-1.493333pt;}
.wsb1{word-spacing:-1.488000pt;}
.ws19{word-spacing:-1.440000pt;}
.ws6b{word-spacing:-1.386667pt;}
.wsa1{word-spacing:-1.333333pt;}
.ws6e{word-spacing:-1.322667pt;}
.ws65{word-spacing:-1.280000pt;}
.ws9f{word-spacing:-1.248000pt;}
.ws6a{word-spacing:-1.226667pt;}
.wsdd{word-spacing:-1.200000pt;}
.ws84{word-spacing:-1.194667pt;}
.ws72{word-spacing:-1.173333pt;}
.wsc2{word-spacing:-1.152000pt;}
.ws32{word-spacing:-1.120000pt;}
.wsb5{word-spacing:-1.104000pt;}
.ws85{word-spacing:-1.066667pt;}
.ws35{word-spacing:-1.013333pt;}
.ws81{word-spacing:-0.981333pt;}
.ws2f{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.912000pt;}
.ws4d{word-spacing:-0.906667pt;}
.wse8{word-spacing:-0.864000pt;}
.ws66{word-spacing:-0.853333pt;}
.wsaa{word-spacing:-0.816000pt;}
.ws88{word-spacing:-0.800000pt;}
.ws1d{word-spacing:-0.768000pt;}
.ws4c{word-spacing:-0.746667pt;}
.ws11{word-spacing:-0.720000pt;}
.wse0{word-spacing:-0.672000pt;}
.ws8a{word-spacing:-0.640000pt;}
.wse9{word-spacing:-0.624000pt;}
.ws3c{word-spacing:-0.586667pt;}
.wse1{word-spacing:-0.576000pt;}
.ws7c{word-spacing:-0.533333pt;}
.wsd0{word-spacing:-0.528000pt;}
.ws20{word-spacing:-0.480000pt;}
.wsb0{word-spacing:-0.432000pt;}
.ws4f{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.384000pt;}
.ws38{word-spacing:-0.373333pt;}
.ws5e{word-spacing:-0.320000pt;}
.wsce{word-spacing:-0.288000pt;}
.ws57{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.240000pt;}
.ws43{word-spacing:-0.213333pt;}
.wsb6{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.160000pt;}
.ws83{word-spacing:-0.128000pt;}
.ws5d{word-spacing:-0.106667pt;}
.wsdf{word-spacing:-0.096000pt;}
.ws54{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.048000pt;}
.ws53{word-spacing:0.053333pt;}
.ws6d{word-spacing:0.085333pt;}
.wsd2{word-spacing:0.096000pt;}
.ws34{word-spacing:0.106667pt;}
.wseb{word-spacing:0.144000pt;}
.ws86{word-spacing:0.160000pt;}
.ws73{word-spacing:0.213333pt;}
.wsea{word-spacing:0.240000pt;}
.ws5b{word-spacing:0.266667pt;}
.ws87{word-spacing:0.320000pt;}
.ws3b{word-spacing:0.373333pt;}
.wsda{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.426667pt;}
.ws22{word-spacing:0.432000pt;}
.ws77{word-spacing:0.480000pt;}
.ws82{word-spacing:0.512000pt;}
.wsad{word-spacing:0.528000pt;}
.ws52{word-spacing:0.533333pt;}
.wscf{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.586667pt;}
.ws71{word-spacing:0.640000pt;}
.wsc6{word-spacing:0.672000pt;}
.ws44{word-spacing:0.693333pt;}
.wsd8{word-spacing:0.720000pt;}
.ws8e{word-spacing:0.746667pt;}
.wsb3{word-spacing:0.768000pt;}
.ws7d{word-spacing:0.800000pt;}
.wse3{word-spacing:0.816000pt;}
.ws12{word-spacing:0.864000pt;}
.ws9c{word-spacing:0.906667pt;}
.ws13{word-spacing:0.912000pt;}
.ws69{word-spacing:0.960000pt;}
.wsc7{word-spacing:1.008000pt;}
.wsd1{word-spacing:1.056000pt;}
.ws7f{word-spacing:1.066667pt;}
.wsde{word-spacing:1.104000pt;}
.ws89{word-spacing:1.120000pt;}
.wsa2{word-spacing:1.173333pt;}
.wsa9{word-spacing:1.200000pt;}
.ws96{word-spacing:1.226667pt;}
.wsc1{word-spacing:1.248000pt;}
.ws51{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.333333pt;}
.wsd9{word-spacing:1.344000pt;}
.ws76{word-spacing:1.386667pt;}
.ws98{word-spacing:1.408000pt;}
.wsf{word-spacing:1.440000pt;}
.ws99{word-spacing:1.450667pt;}
.ws10{word-spacing:1.488000pt;}
.ws91{word-spacing:1.493333pt;}
.wsc8{word-spacing:1.536000pt;}
.ws3e{word-spacing:1.546667pt;}
.wscd{word-spacing:1.584000pt;}
.ws79{word-spacing:1.600000pt;}
.wsac{word-spacing:1.632000pt;}
.ws97{word-spacing:1.653333pt;}
.wsb2{word-spacing:1.680000pt;}
.ws8f{word-spacing:1.706667pt;}
.wsdb{word-spacing:1.728000pt;}
.ws63{word-spacing:1.813333pt;}
.ws58{word-spacing:1.866667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws31{word-spacing:1.973333pt;}
.ws95{word-spacing:2.026667pt;}
.ws62{word-spacing:2.080000pt;}
.ws37{word-spacing:2.133333pt;}
.ws75{word-spacing:2.186667pt;}
.ws4a{word-spacing:2.240000pt;}
.ws17{word-spacing:2.256000pt;}
.ws7b{word-spacing:2.293333pt;}
.wsbf{word-spacing:2.304000pt;}
.ws48{word-spacing:2.346667pt;}
.wsc{word-spacing:2.400000pt;}
.wsa{word-spacing:2.448000pt;}
.ws56{word-spacing:2.453333pt;}
.ws92{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.wsc4{word-spacing:2.592000pt;}
.wsaf{word-spacing:2.640000pt;}
.ws2a{word-spacing:2.666667pt;}
.wsbe{word-spacing:2.688000pt;}
.ws49{word-spacing:2.720000pt;}
.ws74{word-spacing:2.773333pt;}
.wsbd{word-spacing:2.784000pt;}
.ws5a{word-spacing:2.826667pt;}
.ws9{word-spacing:2.880000pt;}
.wse{word-spacing:2.928000pt;}
.ws59{word-spacing:2.933333pt;}
.ws21{word-spacing:2.976000pt;}
.ws9d{word-spacing:2.986667pt;}
.ws18{word-spacing:3.024000pt;}
.wsa0{word-spacing:3.040000pt;}
.wsae{word-spacing:3.072000pt;}
.ws70{word-spacing:3.093333pt;}
.ws1b{word-spacing:3.120000pt;}
.ws3d{word-spacing:3.146667pt;}
.ws6c{word-spacing:3.200000pt;}
.wsbc{word-spacing:3.216000pt;}
.ws50{word-spacing:3.306667pt;}
.ws55{word-spacing:3.360000pt;}
.ws33{word-spacing:3.413333pt;}
.ws9e{word-spacing:4.800000pt;}
.ws1e{word-spacing:4.944000pt;}
.ws15{word-spacing:6.144000pt;}
.ws7{word-spacing:9.360000pt;}
.ws6{word-spacing:9.408000pt;}
._4{margin-left:-6.645333pt;}
._6{margin-left:-5.607467pt;}
._5{margin-left:-4.554667pt;}
._a{margin-left:-3.489600pt;}
._2{margin-left:-2.400000pt;}
._3{margin-left:-1.000000pt;}
._7{width:1.194667pt;}
._8{width:2.394667pt;}
._9{width:3.736000pt;}
._f{width:5.205333pt;}
._0{width:6.393600pt;}
._e{width:8.693333pt;}
._d{width:10.132800pt;}
._b{width:44.556267pt;}
._1{width:417.233600pt;}
._c{width:455.050133pt;}
.fs9{font-size:27.733333pt;}
.fsa{font-size:31.200000pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:83.149600pt;}
.y1e{bottom:120.155333pt;}
.ybe{bottom:120.537600pt;}
.y47{bottom:120.551067pt;}
.y71{bottom:120.768533pt;}
.y81{bottom:120.944800pt;}
.ya8{bottom:120.944933pt;}
.y7f{bottom:121.430000pt;}
.ya1{bottom:122.532400pt;}
.ye3{bottom:129.464400pt;}
.y177{bottom:133.359467pt;}
.y9a{bottom:134.278133pt;}
.ya7{bottom:134.278267pt;}
.y1d{bottom:134.822000pt;}
.ybd{bottom:135.204267pt;}
.y46{bottom:136.551067pt;}
.y151{bottom:136.687600pt;}
.y12a{bottom:136.752800pt;}
.y70{bottom:136.768533pt;}
.y7e{bottom:137.430000pt;}
.y80{bottom:137.798133pt;}
.ya0{bottom:138.532400pt;}
.ye2{bottom:145.464400pt;}
.y10a{bottom:145.647067pt;}
.y99{bottom:147.611467pt;}
.y176{bottom:148.026133pt;}
.y19f{bottom:148.199467pt;}
.y1c{bottom:149.488667pt;}
.ybc{bottom:149.870933pt;}
.y150{bottom:151.354267pt;}
.y129{bottom:151.419467pt;}
.y45{bottom:152.551067pt;}
.y6f{bottom:152.768533pt;}
.y7d{bottom:153.430000pt;}
.y9f{bottom:154.532400pt;}
.y98{bottom:160.944800pt;}
.ye1{bottom:161.464400pt;}
.y109{bottom:161.829600pt;}
.y175{bottom:162.692800pt;}
.y1b{bottom:164.155333pt;}
.y19e{bottom:164.929333pt;}
.y14f{bottom:167.910667pt;}
.y128{bottom:167.976000pt;}
.y6e{bottom:168.768533pt;}
.y7c{bottom:169.430000pt;}
.y9e{bottom:170.532400pt;}
.ybb{bottom:172.096667pt;}
.y97{bottom:174.278133pt;}
.ye0{bottom:177.464400pt;}
.y108{bottom:178.012267pt;}
.y1a{bottom:178.822000pt;}
.y174{bottom:179.249200pt;}
.y44{bottom:179.889600pt;}
.y19d{bottom:181.659067pt;}
.y14e{bottom:182.577333pt;}
.y127{bottom:182.642667pt;}
.y6d{bottom:184.768533pt;}
.y7b{bottom:185.430000pt;}
.y9d{bottom:186.532400pt;}
.y96{bottom:187.611467pt;}
.yba{bottom:188.096667pt;}
.ydf{bottom:193.464400pt;}
.y19{bottom:193.488667pt;}
.y173{bottom:193.915867pt;}
.y107{bottom:194.194800pt;}
.y19c{bottom:196.499067pt;}
.y14d{bottom:197.244000pt;}
.y126{bottom:199.199067pt;}
.y6c{bottom:200.768533pt;}
.y7a{bottom:201.430000pt;}
.y9c{bottom:202.532400pt;}
.ya6{bottom:202.834667pt;}
.yb9{bottom:204.096667pt;}
.y95{bottom:204.464800pt;}
.y18{bottom:208.155333pt;}
.y172{bottom:208.582533pt;}
.yde{bottom:209.464400pt;}
.y106{bottom:210.377467pt;}
.y19b{bottom:211.339067pt;}
.y14c{bottom:211.910667pt;}
.y125{bottom:213.865733pt;}
.y6b{bottom:216.768533pt;}
.y79{bottom:217.430000pt;}
.ya3{bottom:218.532400pt;}
.ya5{bottom:219.688000pt;}
.yb8{bottom:220.096667pt;}
.y17{bottom:222.822000pt;}
.y171{bottom:225.138933pt;}
.ydd{bottom:225.464400pt;}
.y43{bottom:226.125867pt;}
.y105{bottom:226.560000pt;}
.y19a{bottom:228.068933pt;}
.y14b{bottom:228.467067pt;}
.y124{bottom:228.532400pt;}
.y9b{bottom:229.870933pt;}
.y6a{bottom:232.768533pt;}
.y78{bottom:233.430000pt;}
.y94{bottom:234.532400pt;}
.yb7{bottom:236.096667pt;}
.y16{bottom:237.488667pt;}
.y170{bottom:239.805600pt;}
.y42{bottom:240.792533pt;}
.ydc{bottom:241.464400pt;}
.y104{bottom:242.742667pt;}
.y199{bottom:242.908933pt;}
.y14a{bottom:243.133733pt;}
.y123{bottom:245.088800pt;}
.y69{bottom:248.768533pt;}
.y77{bottom:249.430000pt;}
.y93{bottom:250.532400pt;}
.yb6{bottom:252.096667pt;}
.y15{bottom:252.155333pt;}
.y16f{bottom:256.362000pt;}
.y103{bottom:258.925333pt;}
.y198{bottom:259.638667pt;}
.y149{bottom:259.690133pt;}
.y122{bottom:261.645200pt;}
.y68{bottom:264.768533pt;}
.y76{bottom:265.430000pt;}
.y92{bottom:266.532400pt;}
.y41{bottom:266.797733pt;}
.y14{bottom:266.822000pt;}
.yb5{bottom:268.096667pt;}
.ydb{bottom:268.803067pt;}
.y16e{bottom:271.028667pt;}
.y197{bottom:274.478667pt;}
.y102{bottom:275.107867pt;}
.y148{bottom:276.246533pt;}
.y121{bottom:276.311867pt;}
.y67{bottom:280.768533pt;}
.y75{bottom:281.430000pt;}
.y40{bottom:281.464400pt;}
.y13{bottom:281.488667pt;}
.y91{bottom:282.532400pt;}
.yb4{bottom:284.096667pt;}
.y16d{bottom:285.695333pt;}
.y147{bottom:290.913200pt;}
.y120{bottom:290.978533pt;}
.y196{bottom:291.208533pt;}
.y101{bottom:291.290533pt;}
.y3f{bottom:296.131067pt;}
.y66{bottom:296.768533pt;}
.y74{bottom:297.430000pt;}
.y90{bottom:298.532400pt;}
.yb3{bottom:300.096667pt;}
.y16c{bottom:302.251867pt;}
.yda{bottom:303.700667pt;}
.y12{bottom:303.714400pt;}
.y146{bottom:307.469733pt;}
.y100{bottom:307.473067pt;}
.y11f{bottom:307.534933pt;}
.y195{bottom:307.938267pt;}
.y3e{bottom:310.797733pt;}
.y65{bottom:312.768533pt;}
.y8f{bottom:314.532400pt;}
.yb2{bottom:316.096667pt;}
.y16b{bottom:316.918533pt;}
.yd9{bottom:319.700667pt;}
.y145{bottom:322.136400pt;}
.y11e{bottom:322.201600pt;}
.y194{bottom:322.778267pt;}
.yff{bottom:323.655733pt;}
.y73{bottom:324.768533pt;}
.y3d{bottom:325.464400pt;}
.y64{bottom:328.768533pt;}
.y8e{bottom:330.532400pt;}
.y16a{bottom:331.585200pt;}
.yb1{bottom:332.096667pt;}
.yd8{bottom:335.700667pt;}
.y11d{bottom:336.868267pt;}
.y193{bottom:337.618267pt;}
.y144{bottom:338.692800pt;}
.yfe{bottom:339.838267pt;}
.y3c{bottom:340.131067pt;}
.y72{bottom:340.768533pt;}
.y63{bottom:344.768533pt;}
.y8d{bottom:346.532400pt;}
.yb0{bottom:348.096667pt;}
.y169{bottom:348.141600pt;}
.yd7{bottom:351.700667pt;}
.y11c{bottom:353.424800pt;}
.y192{bottom:354.348133pt;}
.y3b{bottom:354.797733pt;}
.y143{bottom:355.249200pt;}
.yfd{bottom:356.020933pt;}
.y11{bottom:360.106800pt;}
.y62{bottom:360.768533pt;}
.y8c{bottom:362.532400pt;}
.y168{bottom:362.808267pt;}
.yaf{bottom:364.096667pt;}
.yd6{bottom:367.700667pt;}
.y11b{bottom:368.091467pt;}
.y3a{bottom:369.464400pt;}
.y142{bottom:369.915867pt;}
.y191{bottom:371.077867pt;}
.yfc{bottom:372.203467pt;}
.y10{bottom:374.773467pt;}
.y61{bottom:376.768533pt;}
.y167{bottom:377.474933pt;}
.y8b{bottom:378.532400pt;}
.yae{bottom:380.096667pt;}
.yd5{bottom:383.700667pt;}
.y39{bottom:384.131067pt;}
.y11a{bottom:384.647867pt;}
.y190{bottom:385.917867pt;}
.y141{bottom:386.472267pt;}
.yfb{bottom:388.386133pt;}
.yf{bottom:389.440133pt;}
.y60{bottom:392.768533pt;}
.y166{bottom:394.031333pt;}
.y8a{bottom:394.532400pt;}
.yad{bottom:396.096667pt;}
.y38{bottom:398.797733pt;}
.y119{bottom:399.314533pt;}
.yd4{bottom:399.700667pt;}
.y18f{bottom:400.758000pt;}
.y140{bottom:401.138933pt;}
.ye{bottom:404.106800pt;}
.yfa{bottom:404.568667pt;}
.y165{bottom:408.698000pt;}
.y5f{bottom:408.768533pt;}
.y89{bottom:410.532400pt;}
.yac{bottom:412.096667pt;}
.y37{bottom:413.464400pt;}
.yd3{bottom:415.700667pt;}
.y118{bottom:415.870933pt;}
.y18e{bottom:417.487733pt;}
.y13f{bottom:417.695333pt;}
.yf9{bottom:420.751333pt;}
.ya2{bottom:421.870933pt;}
.y164{bottom:423.364667pt;}
.y5e{bottom:424.768533pt;}
.y88{bottom:426.532400pt;}
.yab{bottom:428.096667pt;}
.y36{bottom:428.131067pt;}
.y117{bottom:430.537600pt;}
.yd2{bottom:431.700667pt;}
.y18d{bottom:434.217467pt;}
.y13e{bottom:434.251867pt;}
.yf8{bottom:436.933867pt;}
.y163{bottom:439.921200pt;}
.y5d{bottom:440.768533pt;}
.y87{bottom:442.532400pt;}
.y35{bottom:442.797733pt;}
.yaa{bottom:444.096667pt;}
.y116{bottom:445.204267pt;}
.yd1{bottom:447.700667pt;}
.y13d{bottom:448.918533pt;}
.y18c{bottom:450.947333pt;}
.yf7{bottom:453.116533pt;}
.y162{bottom:454.587867pt;}
.y5c{bottom:456.768533pt;}
.y34{bottom:457.464400pt;}
.y86{bottom:458.532400pt;}
.yd{bottom:460.227600pt;}
.y115{bottom:461.760800pt;}
.yd0{bottom:463.700667pt;}
.y13c{bottom:465.474933pt;}
.y18b{bottom:467.677067pt;}
.yf6{bottom:469.299067pt;}
.ya4{bottom:469.870933pt;}
.y161{bottom:471.144267pt;}
.ya9{bottom:471.435200pt;}
.y33{bottom:472.131067pt;}
.y5b{bottom:472.768533pt;}
.y85{bottom:474.532400pt;}
.yc{bottom:474.894267pt;}
.y114{bottom:476.427467pt;}
.ycf{bottom:479.700667pt;}
.y13b{bottom:480.141600pt;}
.y18a{bottom:482.517067pt;}
.yf5{bottom:485.481733pt;}
.y160{bottom:485.810933pt;}
.y32{bottom:486.797733pt;}
.y5a{bottom:488.768533pt;}
.yb{bottom:489.560933pt;}
.y84{bottom:490.532400pt;}
.y113{bottom:491.094133pt;}
.y13a{bottom:494.808267pt;}
.yce{bottom:495.700667pt;}
.y189{bottom:497.357200pt;}
.y1a9{bottom:500.477600pt;}
.y31{bottom:501.464400pt;}
.yf4{bottom:501.664267pt;}
.y15f{bottom:502.367333pt;}
.y59{bottom:504.768533pt;}
.y83{bottom:506.532400pt;}
.y112{bottom:507.650533pt;}
.y139{bottom:511.364667pt;}
.ycd{bottom:511.700667pt;}
.y188{bottom:514.086933pt;}
.y30{bottom:516.131067pt;}
.y15e{bottom:517.034000pt;}
.yf3{bottom:517.846933pt;}
.y58{bottom:520.768533pt;}
.y111{bottom:524.206933pt;}
.ya{bottom:526.904800pt;}
.ycc{bottom:527.700667pt;}
.y138{bottom:527.921200pt;}
.y187{bottom:528.926933pt;}
.y2f{bottom:530.797733pt;}
.y15d{bottom:531.700667pt;}
.y82{bottom:533.870933pt;}
.yf2{bottom:534.029600pt;}
.y57{bottom:536.768533pt;}
.y110{bottom:538.873600pt;}
.y137{bottom:542.587867pt;}
.ycb{bottom:543.700667pt;}
.y9{bottom:544.238133pt;}
.y2e{bottom:545.464400pt;}
.y186{bottom:545.656800pt;}
.y15c{bottom:548.257067pt;}
.yf1{bottom:550.212133pt;}
.y56{bottom:552.768533pt;}
.y10f{bottom:553.540267pt;}
.y136{bottom:559.144267pt;}
.yca{bottom:559.700667pt;}
.y2d{bottom:560.131067pt;}
.y185{bottom:560.496800pt;}
.y8{bottom:561.571467pt;}
.y1a8{bottom:562.923733pt;}
.y15b{bottom:564.813467pt;}
.yf0{bottom:566.394800pt;}
.y55{bottom:568.768533pt;}
.y10e{bottom:570.096667pt;}
.y135{bottom:573.810933pt;}
.yc9{bottom:575.700667pt;}
.y184{bottom:577.226533pt;}
.y1a7{bottom:577.590400pt;}
.y7{bottom:578.904800pt;}
.y15a{bottom:579.480133pt;}
.y2c{bottom:582.356800pt;}
.yef{bottom:582.577333pt;}
.y10d{bottom:584.763333pt;}
.y54{bottom:584.768533pt;}
.y134{bottom:588.477600pt;}
.yc8{bottom:591.700667pt;}
.y183{bottom:592.066533pt;}
.y159{bottom:594.146800pt;}
.yee{bottom:598.759867pt;}
.y10c{bottom:599.430000pt;}
.y53{bottom:600.768533pt;}
.y133{bottom:605.034000pt;}
.y182{bottom:606.906533pt;}
.yc7{bottom:607.700667pt;}
.y1a6{bottom:608.813467pt;}
.y158{bottom:610.703333pt;}
.yed{bottom:614.942533pt;}
.y52{bottom:616.768533pt;}
.y6{bottom:618.915333pt;}
.y2b{bottom:619.700667pt;}
.y1a5{bottom:623.480133pt;}
.y181{bottom:623.636400pt;}
.yc6{bottom:623.700667pt;}
.y157{bottom:625.370000pt;}
.y10b{bottom:625.435200pt;}
.yec{bottom:631.125200pt;}
.y51{bottom:632.768533pt;}
.y2a{bottom:634.367333pt;}
.y132{bottom:636.257067pt;}
.y180{bottom:638.476400pt;}
.yc5{bottom:639.700667pt;}
.y156{bottom:640.036667pt;}
.yeb{bottom:647.307733pt;}
.y50{bottom:648.768533pt;}
.y131{bottom:650.923733pt;}
.y17f{bottom:653.316400pt;}
.y1a4{bottom:654.703333pt;}
.yc4{bottom:655.700667pt;}
.y155{bottom:656.593067pt;}
.y29{bottom:660.372533pt;}
.yea{bottom:663.490400pt;}
.y5{bottom:663.992400pt;}
.y4f{bottom:664.768533pt;}
.y130{bottom:667.480133pt;}
.y17e{bottom:670.046267pt;}
.y154{bottom:671.259733pt;}
.yc3{bottom:671.700667pt;}
.y28{bottom:675.039200pt;}
.ye9{bottom:679.672933pt;}
.y4e{bottom:680.768533pt;}
.y12f{bottom:682.146800pt;}
.y17d{bottom:684.886267pt;}
.y1a3{bottom:685.926400pt;}
.y4{bottom:686.392400pt;}
.yc2{bottom:687.700667pt;}
.y153{bottom:687.816133pt;}
.y27{bottom:689.705867pt;}
.ye8{bottom:695.855600pt;}
.y4d{bottom:696.768533pt;}
.y12e{bottom:698.703333pt;}
.y17c{bottom:699.726267pt;}
.y1a2{bottom:700.593067pt;}
.y152{bottom:702.482800pt;}
.yc1{bottom:703.700667pt;}
.y26{bottom:704.372533pt;}
.ye7{bottom:712.038133pt;}
.y4c{bottom:712.768533pt;}
.y12d{bottom:713.370000pt;}
.y17b{bottom:716.456000pt;}
.y1a1{bottom:717.149467pt;}
.y25{bottom:719.039200pt;}
.yc0{bottom:719.700667pt;}
.ye6{bottom:728.220800pt;}
.y4b{bottom:728.768533pt;}
.y12c{bottom:729.926400pt;}
.y17a{bottom:731.296000pt;}
.y1a0{bottom:731.816133pt;}
.y24{bottom:733.705867pt;}
.ybf{bottom:735.700667pt;}
.ye5{bottom:744.403467pt;}
.y4a{bottom:744.768533pt;}
.y12b{bottom:746.482800pt;}
.y179{bottom:748.025867pt;}
.y23{bottom:748.372533pt;}
.ye4{bottom:760.586000pt;}
.y49{bottom:760.768533pt;}
.y3{bottom:761.705867pt;}
.y178{bottom:762.865867pt;}
.y22{bottom:763.039200pt;}
.y48{bottom:776.768533pt;}
.y2{bottom:777.705867pt;}
.y20{bottom:814.268267pt;}
.y21{bottom:820.248267pt;}
.y1f{bottom:824.934933pt;}
.hf{height:22.907733pt;}
.h9{height:30.837333pt;}
.h2{height:33.040000pt;}
.hb{height:35.242667pt;}
.h11{height:37.920000pt;}
.h3{height:39.648000pt;}
.h8{height:41.088000pt;}
.h10{height:41.611200pt;}
.h7{height:42.133333pt;}
.h6{height:44.053333pt;}
.hc{height:45.653333pt;}
.he{height:46.234667pt;}
.ha{height:52.864000pt;}
.h5{height:58.986667pt;}
.h4{height:63.914667pt;}
.hd{height:76.784000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.x2{left:74.367467pt;}
.xa{left:88.818800pt;}
.x7{left:92.598400pt;}
.x4{left:103.895067pt;}
.x3{left:130.351733pt;}
.x9{left:154.250667pt;}
.x8{left:180.845733pt;}
.x6{left:195.825333pt;}
.x5{left:222.420533pt;}
}

