
    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_99e260ae89f561ef42a7e5c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_affa8bfba7d1147e9936860d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_564c5126ce2c3e06ddc2a0dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_06f3ea1470922cca8f54bfd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_eba9bae0c89b55c343172c0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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;}
.m4{transform:matrix(-0.077244,-0.237732,0.237767,-0.077244,0,0);-ms-transform:matrix(-0.077244,-0.237732,0.237767,-0.077244,0,0);-webkit-transform:matrix(-0.077244,-0.237732,0.237767,-0.077244,0,0);}
.m2{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);}
.m3{transform:matrix(0.077244,-0.237732,0.237767,0.077244,0,0);-ms-transform:matrix(0.077244,-0.237732,0.237767,0.077244,0,0);-webkit-transform:matrix(0.077244,-0.237732,0.237767,0.077244,0,0);}
.m5{transform:matrix(0.196995,-0.153925,0.153925,0.196995,0,0);-ms-transform:matrix(0.196995,-0.153925,0.153925,0.196995,0,0);-webkit-transform:matrix(0.196995,-0.153925,0.153925,0.196995,0,0);}
.m1{transform:matrix(0.204791,-0.143390,0.143390,0.204791,0,0);-ms-transform:matrix(0.204791,-0.143390,0.143390,0.204791,0,0);-webkit-transform:matrix(0.204791,-0.143390,0.143390,0.204791,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-7.308000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.018000px;}
.v1{vertical-align:21.102000px;}
.ls59{letter-spacing:-2.046000px;}
.ls48{letter-spacing:-1.650000px;}
.ls93{letter-spacing:-1.584000px;}
.lsa3{letter-spacing:-1.560000px;}
.ls6d{letter-spacing:-1.518000px;}
.ls8f{letter-spacing:-1.452000px;}
.ls69{letter-spacing:-1.386000px;}
.ls90{letter-spacing:-1.380000px;}
.ls37{letter-spacing:-1.320000px;}
.ls46{letter-spacing:-1.260000px;}
.ls3c{letter-spacing:-1.254000px;}
.lsa{letter-spacing:-1.197000px;}
.ls49{letter-spacing:-1.188000px;}
.lsa2{letter-spacing:-1.170000px;}
.ls5d{letter-spacing:-1.140000px;}
.ls81{letter-spacing:-1.134000px;}
.ls6a{letter-spacing:-1.122000px;}
.lsd{letter-spacing:-1.083000px;}
.ls4c{letter-spacing:-1.080000px;}
.ls67{letter-spacing:-1.056000px;}
.ls31{letter-spacing:-1.026000px;}
.ls5b{letter-spacing:-1.020000px;}
.ls30{letter-spacing:-0.990000px;}
.lsc{letter-spacing:-0.969000px;}
.ls1d{letter-spacing:-0.924000px;}
.ls6c{letter-spacing:-0.907200px;}
.ls47{letter-spacing:-0.900000px;}
.ls87{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.858000px;}
.ls3a{letter-spacing:-0.840000px;}
.lsa0{letter-spacing:-0.810000px;}
.ls26{letter-spacing:-0.792000px;}
.ls65{letter-spacing:-0.780000px;}
.lsa1{letter-spacing:-0.765000px;}
.ls7a{letter-spacing:-0.756000px;}
.ls29{letter-spacing:-0.726000px;}
.ls5e{letter-spacing:-0.720000px;}
.ls7f{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.684000px;}
.ls3f{letter-spacing:-0.660000px;}
.ls80{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.594000px;}
.ls99{letter-spacing:-0.585000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls74{letter-spacing:-0.486000px;}
.ls62{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.462000px;}
.ls9a{letter-spacing:-0.450000px;}
.ls76{letter-spacing:-0.432000px;}
.ls45{letter-spacing:-0.420000px;}
.ls9f{letter-spacing:-0.405000px;}
.lsb{letter-spacing:-0.399000px;}
.ls27{letter-spacing:-0.396000px;}
.ls88{letter-spacing:-0.378000px;}
.ls2f{letter-spacing:-0.369600px;}
.ls39{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.342000px;}
.ls14{letter-spacing:-0.330000px;}
.ls77{letter-spacing:-0.324000px;}
.ls5f{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.285000px;}
.ls18{letter-spacing:-0.264000px;}
.ls5c{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.228000px;}
.ls98{letter-spacing:-0.225000px;}
.ls7d{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls60{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.171000px;}
.ls7e{letter-spacing:-0.162000px;}
.ls9b{letter-spacing:-0.135000px;}
.ls28{letter-spacing:-0.132000px;}
.ls4b{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.114000px;}
.ls78{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.066000px;}
.ls38{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls75{letter-spacing:-0.054000px;}
.ls1e{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls9e{letter-spacing:0.045000px;}
.ls6e{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.057000px;}
.ls4e{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.066000px;}
.ls83{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.114000px;}
.ls33{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.171000px;}
.ls35{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.198000px;}
.ls6f{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.228000px;}
.ls64{letter-spacing:0.240000px;}
.ls20{letter-spacing:0.264000px;}
.ls85{letter-spacing:0.270000px;}
.ls5a{letter-spacing:0.300000px;}
.ls86{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.330000px;}
.ls8e{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.396000px;}
.ls43{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.456000px;}
.ls25{letter-spacing:0.462000px;}
.ls34{letter-spacing:0.480000px;}
.ls72{letter-spacing:0.486000px;}
.ls2b{letter-spacing:0.528000px;}
.ls44{letter-spacing:0.540000px;}
.ls94{letter-spacing:0.585000px;}
.ls24{letter-spacing:0.594000px;}
.ls42{letter-spacing:0.600000px;}
.ls7b{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.660000px;}
.ls9c{letter-spacing:0.675000px;}
.ls97{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.726000px;}
.ls2{letter-spacing:0.741000px;}
.ls96{letter-spacing:0.780000px;}
.ls19{letter-spacing:0.792000px;}
.ls70{letter-spacing:0.810000px;}
.ls32{letter-spacing:0.840000px;}
.ls36{letter-spacing:0.858000px;}
.ls7c{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.924000px;}
.ls9d{letter-spacing:0.945000px;}
.ls91{letter-spacing:0.960000px;}
.ls82{letter-spacing:0.972000px;}
.ls22{letter-spacing:0.990000px;}
.ls63{letter-spacing:1.020000px;}
.ls71{letter-spacing:1.026000px;}
.ls68{letter-spacing:1.056000px;}
.ls50{letter-spacing:1.140000px;}
.ls89{letter-spacing:1.188000px;}
.ls58{letter-spacing:1.200000px;}
.ls41{letter-spacing:1.254000px;}
.ls4d{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.350000px;}
.ls66{letter-spacing:1.386000px;}
.ls61{letter-spacing:1.440000px;}
.ls92{letter-spacing:1.452000px;}
.ls4f{letter-spacing:1.500000px;}
.ls2a{letter-spacing:1.518000px;}
.ls2d{letter-spacing:1.650000px;}
.ls51{letter-spacing:3.240000px;}
.ls54{letter-spacing:9.180000px;}
.ls56{letter-spacing:12.360000px;}
.ls53{letter-spacing:12.840000px;}
.ls52{letter-spacing:14.160000px;}
.ls3e{letter-spacing:14.246574px;}
.ls57{letter-spacing:20.040000px;}
.ls55{letter-spacing:20.520000px;}
.ls8c{letter-spacing:21.714000px;}
.ls40{letter-spacing:24.024000px;}
.ls95{letter-spacing:30.000000px;}
.ls8d{letter-spacing:38.040000px;}
.ls8a{letter-spacing:39.534000px;}
.ls73{letter-spacing:40.986000px;}
.ls84{letter-spacing:41.040000px;}
.ls8b{letter-spacing:46.530000px;}
.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;}
}
.ws57{word-spacing:-24.454171px;}
.ws79{word-spacing:-24.180000px;}
.ws77{word-spacing:-18.540000px;}
.ws42{word-spacing:-18.150000px;}
.wse1{word-spacing:-17.952000px;}
.wsdf{word-spacing:-17.886000px;}
.ws5a{word-spacing:-17.754000px;}
.wsa2{word-spacing:-17.556000px;}
.ws62{word-spacing:-17.490000px;}
.ws56{word-spacing:-17.424000px;}
.ws4e{word-spacing:-17.358000px;}
.wsce{word-spacing:-17.292000px;}
.ws5b{word-spacing:-17.160000px;}
.wsa3{word-spacing:-17.094000px;}
.wscf{word-spacing:-17.028000px;}
.wsa6{word-spacing:-16.962000px;}
.ws3e{word-spacing:-16.896000px;}
.wsa0{word-spacing:-16.830000px;}
.ws74{word-spacing:-16.800000px;}
.ws2b{word-spacing:-16.764000px;}
.ws4d{word-spacing:-16.698000px;}
.wse2{word-spacing:-16.632000px;}
.ws60{word-spacing:-16.566000px;}
.ws15{word-spacing:-16.500000px;}
.ws3f{word-spacing:-16.434000px;}
.ws40{word-spacing:-16.368000px;}
.ws18{word-spacing:-16.302000px;}
.ws71{word-spacing:-16.260000px;}
.wsd1{word-spacing:-16.236000px;}
.ws7c{word-spacing:-16.200000px;}
.ws61{word-spacing:-16.170000px;}
.ws2d{word-spacing:-16.104000px;}
.ws2e{word-spacing:-16.038000px;}
.ws7b{word-spacing:-16.020000px;}
.wsa4{word-spacing:-15.972000px;}
.wsf8{word-spacing:-15.960000px;}
.wse5{word-spacing:-15.906000px;}
.ws6f{word-spacing:-15.840000px;}
.wsab{word-spacing:-15.774000px;}
.wsee{word-spacing:-15.720000px;}
.ws2c{word-spacing:-15.708000px;}
.wsf3{word-spacing:-15.660000px;}
.ws17{word-spacing:-15.642000px;}
.ws5c{word-spacing:-15.600000px;}
.wse0{word-spacing:-15.510000px;}
.ws5d{word-spacing:-15.420000px;}
.ws5f{word-spacing:-15.312000px;}
.ws6e{word-spacing:-15.300000px;}
.ws6d{word-spacing:-15.240000px;}
.wsdb{word-spacing:-15.180000px;}
.wsd4{word-spacing:-15.120000px;}
.wsa5{word-spacing:-15.114000px;}
.wsfb{word-spacing:-15.060000px;}
.ws4c{word-spacing:-15.000000px;}
.wsd6{word-spacing:-14.982000px;}
.wsf4{word-spacing:-14.940000px;}
.wse4{word-spacing:-14.916000px;}
.ws64{word-spacing:-14.880000px;}
.ws73{word-spacing:-14.700000px;}
.ws5e{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.ws7a{word-spacing:-14.520000px;}
.wsc4{word-spacing:-14.472000px;}
.ws70{word-spacing:-14.460000px;}
.wsed{word-spacing:-14.400000px;}
.ws7d{word-spacing:-14.340000px;}
.ws1b{word-spacing:-14.250000px;}
.ws14{word-spacing:-14.022000px;}
.wse9{word-spacing:-13.980000px;}
.wsf1{word-spacing:-13.920000px;}
.ws13{word-spacing:-13.908000px;}
.ws72{word-spacing:-13.860000px;}
.wsc7{word-spacing:-13.770000px;}
.ws75{word-spacing:-13.740000px;}
.wsaf{word-spacing:-13.716000px;}
.ws78{word-spacing:-13.680000px;}
.wsd8{word-spacing:-13.620000px;}
.wsc6{word-spacing:-13.554000px;}
.wsac{word-spacing:-13.500000px;}
.wsfd{word-spacing:-13.440000px;}
.wsc8{word-spacing:-13.122000px;}
.wsf6{word-spacing:-12.195000px;}
.ws1a{word-spacing:-11.952000px;}
.wsf2{word-spacing:-11.925000px;}
.wsea{word-spacing:-11.835000px;}
.wsd2{word-spacing:-11.676000px;}
.wse7{word-spacing:-11.250000px;}
.ws41{word-spacing:-11.180400px;}
.wsef{word-spacing:-11.115000px;}
.wse6{word-spacing:-11.025000px;}
.wsec{word-spacing:-10.800000px;}
.wseb{word-spacing:-10.665000px;}
.wse8{word-spacing:-10.530000px;}
.wsa9{word-spacing:-10.508400px;}
.wsfa{word-spacing:-10.485000px;}
.wsf9{word-spacing:-10.440000px;}
.wsfe{word-spacing:-10.080000px;}
.ws3b{word-spacing:-0.858000px;}
.wsa8{word-spacing:-0.793800px;}
.ws47{word-spacing:-0.792000px;}
.ws1e{word-spacing:-0.741000px;}
.ws3c{word-spacing:-0.726000px;}
.wsde{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.684000px;}
.ws37{word-spacing:-0.660000px;}
.wsc9{word-spacing:-0.648000px;}
.ws2{word-spacing:-0.627000px;}
.ws90{word-spacing:-0.600000px;}
.ws24{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.570000px;}
.ws84{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.513000px;}
.wsbe{word-spacing:-0.486000px;}
.ws89{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.462000px;}
.wsb9{word-spacing:-0.432000px;}
.ws66{word-spacing:-0.420000px;}
.ws5{word-spacing:-0.399000px;}
.ws33{word-spacing:-0.396000px;}
.wsb3{word-spacing:-0.378000px;}
.ws4f{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.342000px;}
.ws21{word-spacing:-0.330000px;}
.wsb6{word-spacing:-0.324000px;}
.ws52{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.270000px;}
.ws26{word-spacing:-0.264000px;}
.ws6c{word-spacing:-0.240000px;}
.wsb2{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.198000px;}
.ws54{word-spacing:-0.180000px;}
.ws59{word-spacing:-0.132000px;}
.ws9a{word-spacing:-0.120000px;}
.wsca{word-spacing:-0.108000px;}
.ws34{word-spacing:-0.066000px;}
.ws99{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.057000px;}
.wsc0{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsbf{word-spacing:0.054000px;}
.ws53{word-spacing:0.060000px;}
.ws2a{word-spacing:0.066000px;}
.ws4a{word-spacing:0.108000px;}
.ws12{word-spacing:0.114000px;}
.ws87{word-spacing:0.120000px;}
.ws48{word-spacing:0.132000px;}
.wsbb{word-spacing:0.162000px;}
.ws69{word-spacing:0.180000px;}
.ws46{word-spacing:0.198000px;}
.wsc2{word-spacing:0.216000px;}
.wsf{word-spacing:0.228000px;}
.ws7f{word-spacing:0.240000px;}
.ws2f{word-spacing:0.264000px;}
.ws81{word-spacing:0.300000px;}
.ws4b{word-spacing:0.324000px;}
.ws6a{word-spacing:0.330000px;}
.ws10{word-spacing:0.342000px;}
.wsff{word-spacing:0.360000px;}
.wsba{word-spacing:0.378000px;}
.ws29{word-spacing:0.396000px;}
.ws85{word-spacing:0.420000px;}
.ws8{word-spacing:0.456000px;}
.ws44{word-spacing:0.462000px;}
.ws68{word-spacing:0.480000px;}
.wsbc{word-spacing:0.486000px;}
.ws4{word-spacing:0.513000px;}
.wsa7{word-spacing:0.528000px;}
.ws92{word-spacing:0.540000px;}
.ws28{word-spacing:0.594000px;}
.wsda{word-spacing:0.600000px;}
.wsa{word-spacing:0.627000px;}
.wsb5{word-spacing:0.648000px;}
.ws35{word-spacing:0.660000px;}
.wsd5{word-spacing:0.720000px;}
.ws55{word-spacing:0.726000px;}
.wsbd{word-spacing:0.756000px;}
.ws6b{word-spacing:0.780000px;}
.ws25{word-spacing:0.792000px;}
.wsf0{word-spacing:0.840000px;}
.ws36{word-spacing:0.858000px;}
.wsc1{word-spacing:0.864000px;}
.ws8a{word-spacing:0.900000px;}
.ws23{word-spacing:0.924000px;}
.ws9c{word-spacing:0.960000px;}
.ws1c{word-spacing:0.969000px;}
.wscd{word-spacing:0.972000px;}
.ws39{word-spacing:0.990000px;}
.ws51{word-spacing:1.020000px;}
.wscc{word-spacing:1.026000px;}
.ws3a{word-spacing:1.056000px;}
.ws65{word-spacing:1.080000px;}
.ws3d{word-spacing:1.122000px;}
.wsb8{word-spacing:1.134000px;}
.wsd9{word-spacing:1.140000px;}
.ws16{word-spacing:1.188000px;}
.wse{word-spacing:1.197000px;}
.ws7e{word-spacing:1.200000px;}
.wscb{word-spacing:1.242000px;}
.ws11{word-spacing:1.254000px;}
.ws95{word-spacing:1.260000px;}
.wsb4{word-spacing:1.296000px;}
.ws1{word-spacing:1.311000px;}
.ws30{word-spacing:1.320000px;}
.ws6{word-spacing:1.368000px;}
.ws50{word-spacing:1.380000px;}
.ws38{word-spacing:1.386000px;}
.wsb{word-spacing:1.425000px;}
.ws82{word-spacing:1.440000px;}
.ws32{word-spacing:1.452000px;}
.ws67{word-spacing:1.500000px;}
.ws22{word-spacing:1.518000px;}
.ws27{word-spacing:1.584000px;}
.ws1f{word-spacing:1.650000px;}
.wse3{word-spacing:2.574000px;}
.wsdd{word-spacing:2.706000px;}
.ws49{word-spacing:3.102000px;}
.wsf5{word-spacing:3.345000px;}
.ws9f{word-spacing:3.900000px;}
.wsf7{word-spacing:4.200000px;}
.wsfc{word-spacing:4.230000px;}
.wsa1{word-spacing:4.356000px;}
.wsdc{word-spacing:5.412000px;}
.ws91{word-spacing:6.300000px;}
.ws93{word-spacing:6.660000px;}
.ws8e{word-spacing:7.200000px;}
.ws100{word-spacing:7.440000px;}
.ws63{word-spacing:7.524000px;}
.ws9d{word-spacing:9.960000px;}
.wsd7{word-spacing:10.428000px;}
.ws88{word-spacing:10.800000px;}
.ws9b{word-spacing:12.060000px;}
.ws8d{word-spacing:12.300000px;}
.ws80{word-spacing:12.420000px;}
.ws83{word-spacing:13.740000px;}
.ws76{word-spacing:14.880000px;}
.ws98{word-spacing:15.420000px;}
.ws86{word-spacing:18.120000px;}
.ws8c{word-spacing:18.600000px;}
.ws96{word-spacing:18.840000px;}
.ws8b{word-spacing:19.200000px;}
.wsd0{word-spacing:21.582000px;}
.ws8f{word-spacing:21.720000px;}
.wsd3{word-spacing:23.040000px;}
.wsb0{word-spacing:24.786000px;}
.wsb1{word-spacing:25.758000px;}
.wsad{word-spacing:27.486000px;}
.wsc3{word-spacing:27.540000px;}
.wsae{word-spacing:27.594000px;}
.wsc5{word-spacing:27.756000px;}
.ws94{word-spacing:31.320000px;}
.ws19{word-spacing:35.904000px;}
.ws43{word-spacing:36.018000px;}
.ws9e{word-spacing:41.940000px;}
.ws97{word-spacing:46.860000px;}
.ws58{word-spacing:260.689920px;}
.wsaa{word-spacing:1348.488000px;}
._f{margin-left:-974.246400px;}
._e{margin-left:-8.382000px;}
._2{margin-left:-7.353000px;}
._5{margin-left:-5.415000px;}
._8{margin-left:-4.026000px;}
._4{margin-left:-2.451000px;}
._0{margin-left:-1.425000px;}
._3{width:1.482000px;}
._7{width:3.249000px;}
._1{width:12.426000px;}
._d{width:13.671000px;}
._13{width:21.054000px;}
._c{width:24.024000px;}
._14{width:29.502000px;}
._15{width:35.178000px;}
._17{width:38.040000px;}
._12{width:40.986000px;}
._6{width:47.712000px;}
._11{width:138.885000px;}
._10{width:209.325000px;}
._16{width:258.678000px;}
._b{width:325.198560px;}
._a{width:452.064000px;}
._9{width:1043.616000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:36.717975px;}
.fs9{font-size:36.720000px;}
.fsa{font-size:37.800000px;}
.fsc{font-size:42.000000px;}
.fse{font-size:42.001010px;}
.fsd{font-size:42.003228px;}
.fsb{font-size:43.200000px;}
.fsf{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y274{bottom:13.455888px;}
.y18d{bottom:33.396000px;}
.y273{bottom:39.088500px;}
.ye4{bottom:41.476500px;}
.y18f{bottom:41.761500px;}
.y18e{bottom:44.631000px;}
.y3cc{bottom:48.423000px;}
.yc6{bottom:48.817500px;}
.yc7{bottom:48.960000px;}
.y28d{bottom:49.149000px;}
.y194{bottom:49.182000px;}
.y7c{bottom:49.215000px;}
.y35f{bottom:49.635000px;}
.y22d{bottom:49.942500px;}
.y319{bottom:50.385000px;}
.y1c3{bottom:50.643150px;}
.y388{bottom:50.676000px;}
.y1c9{bottom:50.968500px;}
.y3da{bottom:51.360000px;}
.y21b{bottom:51.435000px;}
.y2ce{bottom:52.878000px;}
.y44{bottom:52.987500px;}
.y188{bottom:53.884500px;}
.y9e{bottom:54.093000px;}
.y102{bottom:54.135000px;}
.ye6{bottom:54.510000px;}
.y12c{bottom:54.885000px;}
.y1e{bottom:55.108500px;}
.y33b{bottom:55.860000px;}
.y2f0{bottom:57.060000px;}
.y299{bottom:57.450000px;}
.y151{bottom:58.755000px;}
.y1c8{bottom:60.418500px;}
.y26e{bottom:60.546000px;}
.ye5{bottom:60.580500px;}
.y2d0{bottom:63.000000px;}
.y1c2{bottom:63.920400px;}
.y18b{bottom:65.014500px;}
.y35e{bottom:65.385000px;}
.y3cb{bottom:65.665500px;}
.y21a{bottom:65.691000px;}
.yc5{bottom:66.060000px;}
.y318{bottom:66.135000px;}
.y28c{bottom:66.391500px;}
.y193{bottom:66.424500px;}
.y7b{bottom:66.457500px;}
.y3d9{bottom:67.110000px;}
.y22c{bottom:67.185000px;}
.y387{bottom:67.918500px;}
.y9d{bottom:68.349000px;}
.y101{bottom:69.885000px;}
.y1d{bottom:70.113750px;}
.y43{bottom:70.230000px;}
.y12b{bottom:70.635000px;}
.y187{bottom:71.127000px;}
.y33a{bottom:71.610000px;}
.y2ef{bottom:72.810000px;}
.y150{bottom:74.505000px;}
.y219{bottom:79.947000px;}
.y25c{bottom:80.025000px;}
.y26f{bottom:80.118000px;}
.y35d{bottom:81.135000px;}
.y317{bottom:81.885000px;}
.y9c{bottom:82.605000px;}
.y3ca{bottom:82.908000px;}
.yc4{bottom:83.302500px;}
.y29c{bottom:83.380500px;}
.y28b{bottom:83.634000px;}
.y192{bottom:83.667000px;}
.y7a{bottom:83.700000px;}
.y22b{bottom:84.427500px;}
.y3d8{bottom:85.110000px;}
.y386{bottom:85.161000px;}
.y12a{bottom:86.385000px;}
.y339{bottom:87.360000px;}
.y42{bottom:87.472500px;}
.y186{bottom:88.369500px;}
.y271{bottom:88.441008px;}
.y2ee{bottom:88.560000px;}
.y14f{bottom:90.255000px;}
.y18a{bottom:90.526500px;}
.y218{bottom:94.203000px;}
.y1c1{bottom:94.283250px;}
.y1ed{bottom:94.405500px;}
.y35c{bottom:96.885000px;}
.y316{bottom:97.635000px;}
.y1c{bottom:100.110000px;}
.y3c9{bottom:100.150500px;}
.yc3{bottom:100.545000px;}
.y3d7{bottom:100.860000px;}
.y28a{bottom:100.876500px;}
.y100{bottom:100.909500px;}
.y79{bottom:100.942500px;}
.y22a{bottom:101.670000px;}
.y129{bottom:102.135000px;}
.y385{bottom:102.403500px;}
.y338{bottom:103.110000px;}
.y2ed{bottom:104.310000px;}
.y41{bottom:104.715000px;}
.y185{bottom:105.612000px;}
.y14e{bottom:106.005000px;}
.y1c0{bottom:107.560500px;}
.y217{bottom:108.459000px;}
.y1ec{bottom:108.661500px;}
.y26d{bottom:110.557500px;}
.ydb{bottom:112.162500px;}
.y35b{bottom:112.635000px;}
.y315{bottom:113.385000px;}
.y189{bottom:116.038500px;}
.y2cb{bottom:116.172000px;}
.y3c8{bottom:117.393000px;}
.yc2{bottom:117.787500px;}
.y128{bottom:117.885000px;}
.y289{bottom:118.119000px;}
.yff{bottom:118.152000px;}
.y78{bottom:118.185000px;}
.y337{bottom:118.860000px;}
.y229{bottom:118.912500px;}
.y29b{bottom:119.227500px;}
.y2ec{bottom:120.060000px;}
.y1bf{bottom:120.837750px;}
.y2ba{bottom:121.432500px;}
.y14d{bottom:121.755000px;}
.y40{bottom:121.957500px;}
.y26c{bottom:122.559000px;}
.yd1{bottom:122.601180px;}
.y216{bottom:122.715000px;}
.y184{bottom:122.854500px;}
.y1eb{bottom:122.917500px;}
.y2ca{bottom:126.672000px;}
.y35a{bottom:128.385000px;}
.y314{bottom:129.135000px;}
.y1be{bottom:130.287750px;}
.yd0{bottom:131.156940px;}
.y2b9{bottom:131.932500px;}
.y127{bottom:133.635000px;}
.y336{bottom:134.610000px;}
.y3c7{bottom:134.635500px;}
.yc1{bottom:135.030000px;}
.y9b{bottom:135.225000px;}
.y288{bottom:135.361500px;}
.yfe{bottom:135.394500px;}
.y77{bottom:135.427500px;}
.y2eb{bottom:135.810000px;}
.y1b{bottom:136.056750px;}
.y228{bottom:136.155000px;}
.y384{bottom:136.905000px;}
.y215{bottom:136.971000px;}
.y2c9{bottom:137.172000px;}
.y1ea{bottom:137.173500px;}
.y1dd{bottom:137.227500px;}
.y14c{bottom:137.505000px;}
.y3f{bottom:139.200000px;}
.y1bd{bottom:139.737750px;}
.y183{bottom:140.097000px;}
.y18c{bottom:142.140000px;}
.y2b8{bottom:142.432500px;}
.ycf{bottom:143.247000px;}
.y359{bottom:144.135000px;}
.yd3{bottom:144.862500px;}
.y26b{bottom:147.559500px;}
.y2c8{bottom:147.672000px;}
.ye2{bottom:149.158380px;}
.y126{bottom:149.385000px;}
.y335{bottom:150.360000px;}
.y1a{bottom:151.062000px;}
.y2ea{bottom:151.560000px;}
.y3c6{bottom:151.878000px;}
.yc0{bottom:152.272500px;}
.y29a{bottom:152.460000px;}
.y9a{bottom:152.467500px;}
.y287{bottom:152.604000px;}
.yfd{bottom:152.637000px;}
.y76{bottom:152.670000px;}
.y2b7{bottom:152.932500px;}
.y1bc{bottom:153.015000px;}
.y14b{bottom:153.255000px;}
.y227{bottom:153.397500px;}
.y383{bottom:154.147500px;}
.y3e{bottom:156.442500px;}
.y182{bottom:157.339500px;}
.y313{bottom:157.884000px;}
.y2c7{bottom:158.172000px;}
.ye1{bottom:158.338380px;}
.y1c7{bottom:158.968500px;}
.y358{bottom:159.885000px;}
.y191{bottom:161.266500px;}
.y1dc{bottom:161.973000px;}
.y2b6{bottom:163.432500px;}
.y26a{bottom:164.055000px;}
.y125{bottom:165.135000px;}
.y334{bottom:166.110000px;}
.y1bb{bottom:166.292250px;}
.y2e9{bottom:167.310000px;}
.y2a3{bottom:167.937000px;}
.y3d6{bottom:168.360000px;}
.y1c6{bottom:168.418500px;}
.y2c6{bottom:168.672000px;}
.y14a{bottom:169.005000px;}
.ybf{bottom:169.515000px;}
.y99{bottom:169.710000px;}
.y286{bottom:169.846500px;}
.yfc{bottom:169.879500px;}
.y75{bottom:169.912500px;}
.y226{bottom:170.640000px;}
.y382{bottom:171.390000px;}
.y19{bottom:172.066500px;}
.y3d{bottom:173.685000px;}
.y2b5{bottom:173.932500px;}
.y181{bottom:174.582000px;}
.y312{bottom:175.126500px;}
.y357{bottom:175.635000px;}
.y214{bottom:175.972500px;}
.y269{bottom:176.056500px;}
.y1db{bottom:176.229000px;}
.ycc{bottom:177.466500px;}
.y3c5{bottom:177.750000px;}
.y270{bottom:178.404000px;}
.y2a2{bottom:178.437000px;}
.y190{bottom:178.509000px;}
.y29e{bottom:179.151000px;}
.y2c5{bottom:179.172000px;}
.y2cd{bottom:179.245500px;}
.yda{bottom:179.460060px;}
.y1ba{bottom:179.569500px;}
.y2b1{bottom:180.453000px;}
.y124{bottom:180.885000px;}
.y333{bottom:181.860000px;}
.y2a0{bottom:182.511000px;}
.y2e8{bottom:183.060000px;}
.y3d5{bottom:184.110000px;}
.y2b4{bottom:184.432500px;}
.y149{bottom:184.755000px;}
.y3a4{bottom:185.604000px;}
.ybe{bottom:186.757500px;}
.y98{bottom:186.952500px;}
.y18{bottom:187.071750px;}
.y285{bottom:187.089000px;}
.yfb{bottom:187.122000px;}
.y74{bottom:187.155000px;}
.y225{bottom:187.882500px;}
.ycb{bottom:188.631000px;}
.y381{bottom:188.632500px;}
.yd9{bottom:188.640060px;}
.y29d{bottom:189.651000px;}
.y2cc{bottom:189.745500px;}
.yd2{bottom:189.802500px;}
.y213{bottom:190.228500px;}
.y1e9{bottom:190.417500px;}
.y1da{bottom:190.485000px;}
.y3c{bottom:190.927500px;}
.y2b0{bottom:190.953000px;}
.ycd{bottom:191.521080px;}
.y180{bottom:191.824500px;}
.y311{bottom:192.369000px;}
.y268{bottom:192.552000px;}
.y1b9{bottom:192.846750px;}
.y29f{bottom:193.011000px;}
.y2b3{bottom:194.932500px;}
.y332{bottom:197.610000px;}
.y148{bottom:200.505000px;}
.y2af{bottom:201.453000px;}
.y17{bottom:202.077000px;}
.y3d4{bottom:202.110000px;}
.y1b8{bottom:202.296750px;}
.y3a3{bottom:202.846500px;}
.ybd{bottom:204.000000px;}
.y97{bottom:204.195000px;}
.y356{bottom:204.312000px;}
.y284{bottom:204.331500px;}
.yfa{bottom:204.364500px;}
.y73{bottom:204.397500px;}
.y212{bottom:204.484500px;}
.y267{bottom:204.553500px;}
.y1e8{bottom:204.673500px;}
.y1d9{bottom:204.741000px;}
.y224{bottom:205.125000px;}
.y2b2{bottom:205.432500px;}
.yce{bottom:205.575660px;}
.y380{bottom:205.875000px;}
.y3b{bottom:208.170000px;}
.y272{bottom:208.989807px;}
.y17f{bottom:209.067000px;}
.y310{bottom:209.611500px;}
.y2c4{bottom:210.052500px;}
.y123{bottom:211.783500px;}
.y2a1{bottom:211.848000px;}
.y2ae{bottom:211.953000px;}
.y331{bottom:213.360000px;}
.y3c4{bottom:214.132500px;}
.y2e7{bottom:214.560000px;}
.y1b7{bottom:215.574000px;}
.y2c3{bottom:216.048000px;}
.y147{bottom:216.255000px;}
.y16{bottom:217.082250px;}
.y3a2{bottom:220.089000px;}
.y3d3{bottom:220.110000px;}
.y266{bottom:221.049000px;}
.yd4{bottom:221.073000px;}
.ybc{bottom:221.242500px;}
.y96{bottom:221.437500px;}
.y355{bottom:221.554500px;}
.y283{bottom:221.574000px;}
.yf9{bottom:221.607000px;}
.y72{bottom:221.640000px;}
.y223{bottom:222.367500px;}
.y2ad{bottom:222.453000px;}
.y37f{bottom:223.117500px;}
.y3a{bottom:225.412500px;}
.y17e{bottom:226.309500px;}
.y1ca{bottom:226.515000px;}
.y2c2{bottom:226.548000px;}
.y30f{bottom:226.854000px;}
.y1b6{bottom:228.851250px;}
.y122{bottom:229.026000px;}
.y330{bottom:229.110000px;}
.y211{bottom:229.230000px;}
.y2e6{bottom:230.310000px;}
.y3c3{bottom:231.375000px;}
.y146{bottom:232.005000px;}
.y15{bottom:232.087500px;}
.y2ac{bottom:232.953000px;}
.y265{bottom:233.050500px;}
.y3d2{bottom:235.860000px;}
.y2c1{bottom:237.048000px;}
.y3a1{bottom:237.331500px;}
.ybb{bottom:238.485000px;}
.y95{bottom:238.680000px;}
.y354{bottom:238.797000px;}
.y282{bottom:238.816500px;}
.yf8{bottom:238.849500px;}
.y71{bottom:238.882500px;}
.yca{bottom:239.368500px;}
.y222{bottom:239.610000px;}
.y37e{bottom:240.360000px;}
.y1b5{bottom:242.128500px;}
.y39{bottom:242.655000px;}
.y2ab{bottom:243.453000px;}
.y210{bottom:243.486000px;}
.y17d{bottom:243.552000px;}
.y30e{bottom:244.096500px;}
.y168{bottom:244.485000px;}
.y32f{bottom:244.860000px;}
.y2e5{bottom:246.060000px;}
.y121{bottom:246.268500px;}
.y14{bottom:247.092750px;}
.y2c0{bottom:247.548000px;}
.y145{bottom:247.755000px;}
.yc9{bottom:247.980000px;}
.y3c2{bottom:248.617500px;}
.y264{bottom:249.546000px;}
.y3d1{bottom:251.610000px;}
.yd5{bottom:252.340080px;}
.ydc{bottom:253.704000px;}
.y2aa{bottom:253.953000px;}
.y3a0{bottom:254.574000px;}
.yba{bottom:255.727500px;}
.y94{bottom:255.922500px;}
.y353{bottom:256.039500px;}
.y281{bottom:256.059000px;}
.yf7{bottom:256.092000px;}
.y70{bottom:256.125000px;}
.y221{bottom:256.852500px;}
.y37d{bottom:257.602500px;}
.y20f{bottom:257.742000px;}
.y2bf{bottom:258.048000px;}
.y38{bottom:259.897500px;}
.y167{bottom:260.235000px;}
.y17c{bottom:260.794500px;}
.y30d{bottom:261.339000px;}
.y263{bottom:261.547500px;}
.y2e4{bottom:261.810000px;}
.y2a5{bottom:261.838500px;}
.y13{bottom:262.098000px;}
.y144{bottom:263.505000px;}
.y2a9{bottom:264.453000px;}
.y3c1{bottom:265.860000px;}
.y32e{bottom:266.610000px;}
.y3d0{bottom:267.360000px;}
.y2be{bottom:268.548000px;}
.y39f{bottom:271.816500px;}
.y20e{bottom:271.998000px;}
.y2a4{bottom:272.338500px;}
.yb9{bottom:272.970000px;}
.y93{bottom:273.165000px;}
.y352{bottom:273.282000px;}
.yf6{bottom:273.334500px;}
.y6f{bottom:273.367500px;}
.y220{bottom:274.095000px;}
.y37c{bottom:274.845000px;}
.y2a8{bottom:274.953000px;}
.y1b4{bottom:275.401950px;}
.y166{bottom:275.985000px;}
.y12{bottom:277.103250px;}
.y37{bottom:277.140000px;}
.y2e3{bottom:277.560000px;}
.y17b{bottom:278.037000px;}
.y262{bottom:278.043000px;}
.y30c{bottom:278.581500px;}
.y2bd{bottom:279.048000px;}
.y143{bottom:279.255000px;}
.y120{bottom:280.770000px;}
.y3c0{bottom:283.102500px;}
.ye0{bottom:284.260440px;}
.y1b3{bottom:284.851950px;}
.y32d{bottom:285.330000px;}
.y3cf{bottom:285.360000px;}
.y2a7{bottom:285.453000px;}
.y20d{bottom:286.254000px;}
.yd6{bottom:288.775500px;}
.y39e{bottom:289.059000px;}
.y2bc{bottom:289.548000px;}
.y261{bottom:290.044500px;}
.yb8{bottom:290.212500px;}
.y92{bottom:290.407500px;}
.y351{bottom:290.524500px;}
.y280{bottom:290.560500px;}
.yf5{bottom:290.577000px;}
.y6e{bottom:290.610000px;}
.y21f{bottom:291.337500px;}
.y165{bottom:291.735000px;}
.y37b{bottom:292.087500px;}
.y11{bottom:292.108500px;}
.y2e2{bottom:293.310000px;}
.ydf{bottom:293.440440px;}
.y1b2{bottom:294.301950px;}
.y36{bottom:294.382500px;}
.y142{bottom:295.005000px;}
.y17a{bottom:295.279500px;}
.y30b{bottom:295.824000px;}
.y2a6{bottom:295.953000px;}
.y11f{bottom:298.012500px;}
.y2bb{bottom:300.048000px;}
.y3bf{bottom:300.345000px;}
.y20c{bottom:300.510000px;}
.y3ce{bottom:301.110000px;}
.yc8{bottom:302.694000px;}
.y1b1{bottom:303.751950px;}
.y39d{bottom:306.301500px;}
.y260{bottom:306.540000px;}
.y10{bottom:307.113750px;}
.yb7{bottom:307.455000px;}
.y164{bottom:307.485000px;}
.y91{bottom:307.650000px;}
.y350{bottom:307.767000px;}
.y27f{bottom:307.803000px;}
.yf4{bottom:307.819500px;}
.y6d{bottom:307.852500px;}
.y21e{bottom:308.580000px;}
.y2e1{bottom:309.060000px;}
.y37a{bottom:309.330000px;}
.y141{bottom:310.755000px;}
.y35{bottom:311.665500px;}
.y179{bottom:312.522000px;}
.y30a{bottom:313.066500px;}
.y20b{bottom:314.766000px;}
.y1e7{bottom:314.928000px;}
.y11e{bottom:315.255000px;}
.y3be{bottom:317.587500px;}
.y25f{bottom:318.541500px;}
.yd7{bottom:321.768420px;}
.y39c{bottom:323.544000px;}
.yb6{bottom:324.697500px;}
.y2e0{bottom:324.810000px;}
.y90{bottom:324.892500px;}
.y34f{bottom:325.009500px;}
.y27e{bottom:325.045500px;}
.yf3{bottom:325.062000px;}
.y6c{bottom:325.095000px;}
.y21d{bottom:325.822500px;}
.y1cb{bottom:326.242200px;}
.y32c{bottom:326.370000px;}
.y140{bottom:326.505000px;}
.y379{bottom:326.572500px;}
.y34{bottom:328.908000px;}
.y20a{bottom:329.022000px;}
.y1e6{bottom:329.184000px;}
.y1d8{bottom:329.238000px;}
.y178{bottom:329.764500px;}
.y3cd{bottom:329.814000px;}
.y1b0{bottom:331.431000px;}
.y163{bottom:331.740000px;}
.y11d{bottom:332.497500px;}
.y3bd{bottom:334.830000px;}
.y25e{bottom:335.037000px;}
.yf{bottom:337.110000px;}
.y2df{bottom:340.560000px;}
.y39b{bottom:340.786500px;}
.y1af{bottom:340.881000px;}
.yb5{bottom:341.940000px;}
.y32b{bottom:342.120000px;}
.y13f{bottom:342.255000px;}
.y27d{bottom:342.288000px;}
.y8f{bottom:342.304500px;}
.y6b{bottom:342.337500px;}
.y21c{bottom:343.065000px;}
.y378{bottom:343.815000px;}
.y33{bottom:346.150500px;}
.y177{bottom:347.007000px;}
.y25d{bottom:347.038500px;}
.y162{bottom:347.490000px;}
.y309{bottom:347.568000px;}
.y11c{bottom:349.740000px;}
.y3bc{bottom:352.072500px;}
.y209{bottom:353.767500px;}
.yd8{bottom:354.761340px;}
.y2de{bottom:356.310000px;}
.y32a{bottom:357.870000px;}
.y13e{bottom:358.005000px;}
.y39a{bottom:358.029000px;}
.y2cf{bottom:358.449000px;}
.yb4{bottom:359.182500px;}
.y34e{bottom:359.511000px;}
.y27c{bottom:359.530500px;}
.y8e{bottom:359.547000px;}
.y6a{bottom:359.580000px;}
.y377{bottom:361.057500px;}
.y161{bottom:363.240000px;}
.y32{bottom:363.393000px;}
.y308{bottom:364.810500px;}
.y11b{bottom:366.982500px;}
.y208{bottom:368.023500px;}
.y3bb{bottom:369.315000px;}
.y2dd{bottom:372.060000px;}
.ye{bottom:373.047750px;}
.y329{bottom:373.620000px;}
.y13d{bottom:373.755000px;}
.y1a9{bottom:373.854600px;}
.y399{bottom:375.271500px;}
.yb3{bottom:376.425000px;}
.y34d{bottom:376.753500px;}
.y8d{bottom:376.789500px;}
.y69{bottom:376.822500px;}
.y376{bottom:378.300000px;}
.y160{bottom:378.990000px;}
.y31{bottom:380.635500px;}
.y176{bottom:381.508500px;}
.y307{bottom:382.053000px;}
.y207{bottom:382.279500px;}
.y1a8{bottom:383.304600px;}
.y11a{bottom:384.225000px;}
.y27b{bottom:385.402500px;}
.y3ba{bottom:386.557500px;}
.y2dc{bottom:387.810000px;}
.yd{bottom:388.053000px;}
.y172{bottom:388.755000px;}
.y328{bottom:389.370000px;}
.y13c{bottom:389.505000px;}
.y398{bottom:392.514000px;}
.yb2{bottom:393.667500px;}
.y34c{bottom:393.996000px;}
.y8c{bottom:394.032000px;}
.y68{bottom:394.065000px;}
.y25b{bottom:394.306500px;}
.y375{bottom:395.542500px;}
.y206{bottom:396.535500px;}
.y1a7{bottom:396.581850px;}
.y1d7{bottom:396.738000px;}
.y30{bottom:397.878000px;}
.y306{bottom:399.295500px;}
.y1ae{bottom:400.956000px;}
.y119{bottom:401.467500px;}
.y15f{bottom:403.245000px;}
.y2db{bottom:403.560000px;}
.y3b9{bottom:403.800000px;}
.y171{bottom:404.505000px;}
.y13b{bottom:405.255000px;}
.y1a6{bottom:406.031850px;}
.y25a{bottom:408.562500px;}
.yc{bottom:409.057500px;}
.y397{bottom:409.756500px;}
.y205{bottom:410.791500px;}
.yb1{bottom:410.910000px;}
.y1d6{bottom:410.994000px;}
.y34b{bottom:411.238500px;}
.y8b{bottom:411.274500px;}
.y67{bottom:411.307500px;}
.yde{bottom:411.330000px;}
.y374{bottom:412.785000px;}
.y305{bottom:416.538000px;}
.y118{bottom:418.710000px;}
.y15e{bottom:418.995000px;}
.y1a5{bottom:419.309100px;}
.y2da{bottom:419.310000px;}
.y170{bottom:420.255000px;}
.y327{bottom:420.267000px;}
.ydd{bottom:420.510000px;}
.y13a{bottom:421.005000px;}
.y3b8{bottom:421.042500px;}
.y259{bottom:422.818500px;}
.y2f{bottom:423.750000px;}
.yb{bottom:424.062750px;}
.y204{bottom:425.047500px;}
.y1d5{bottom:425.250000px;}
.y396{bottom:426.999000px;}
.yb0{bottom:428.152500px;}
.y34a{bottom:428.481000px;}
.y8a{bottom:428.517000px;}
.y27a{bottom:428.533500px;}
.y66{bottom:428.550000px;}
.y1a4{bottom:428.759100px;}
.y373{bottom:430.027500px;}
.y304{bottom:433.780500px;}
.y15d{bottom:434.745000px;}
.y2d9{bottom:435.060000px;}
.y117{bottom:435.952500px;}
.y16f{bottom:436.005000px;}
.y139{bottom:436.755000px;}
.y258{bottom:437.074500px;}
.y326{bottom:437.509500px;}
.y3b7{bottom:438.285000px;}
.ya{bottom:439.068000px;}
.y3ee{bottom:441.135000px;}
.y395{bottom:444.241500px;}
.yaf{bottom:445.395000px;}
.y349{bottom:445.723500px;}
.y89{bottom:445.759500px;}
.y279{bottom:445.776000px;}
.y65{bottom:445.792500px;}
.y372{bottom:447.270000px;}
.ye3{bottom:449.518800px;}
.y203{bottom:449.793000px;}
.y2d8{bottom:450.810000px;}
.y303{bottom:451.023000px;}
.y257{bottom:451.330500px;}
.y16e{bottom:451.755000px;}
.y1a3{bottom:452.270700px;}
.y138{bottom:452.505000px;}
.y116{bottom:453.195000px;}
.y9{bottom:454.073250px;}
.y325{bottom:454.752000px;}
.y3b6{bottom:455.527500px;}
.y3ed{bottom:456.885000px;}
.y15c{bottom:459.000000px;}
.y394{bottom:461.484000px;}
.y1a2{bottom:461.720700px;}
.yae{bottom:462.637500px;}
.y348{bottom:462.966000px;}
.y88{bottom:463.002000px;}
.y278{bottom:463.018500px;}
.y64{bottom:463.035000px;}
.y1c5{bottom:463.392000px;}
.y202{bottom:464.049000px;}
.y371{bottom:464.512500px;}
.y256{bottom:465.586500px;}
.y2d7{bottom:466.560000px;}
.y16d{bottom:467.505000px;}
.y137{bottom:468.255000px;}
.y302{bottom:468.265500px;}
.y1ad{bottom:468.792000px;}
.y8{bottom:469.078500px;}
.y115{bottom:470.437500px;}
.y324{bottom:471.994500px;}
.y3b5{bottom:472.770000px;}
.y1c4{bottom:472.842000px;}
.y15b{bottom:474.750000px;}
.y3ec{bottom:474.885000px;}
.y1a1{bottom:474.997950px;}
.y298{bottom:475.327500px;}
.y201{bottom:478.305000px;}
.y393{bottom:478.726500px;}
.y255{bottom:479.842500px;}
.yad{bottom:479.880000px;}
.y347{bottom:480.208500px;}
.y87{bottom:480.244500px;}
.y277{bottom:480.261000px;}
.y63{bottom:480.277500px;}
.y370{bottom:481.755000px;}
.y2d6{bottom:482.310000px;}
.y16c{bottom:483.255000px;}
.y136{bottom:484.005000px;}
.y7{bottom:484.083750px;}
.y1a0{bottom:484.447950px;}
.y301{bottom:485.508000px;}
.y114{bottom:487.680000px;}
.y4f{bottom:487.686750px;}
.y323{bottom:489.237000px;}
.y3b4{bottom:490.012500px;}
.y158{bottom:490.500000px;}
.y3eb{bottom:490.635000px;}
.y200{bottom:492.561000px;}
.y297{bottom:492.570000px;}
.y254{bottom:494.098500px;}
.y242{bottom:494.179500px;}
.y392{bottom:495.969000px;}
.y346{bottom:497.451000px;}
.y86{bottom:497.487000px;}
.y276{bottom:497.503500px;}
.y62{bottom:497.520000px;}
.y2d5{bottom:498.060000px;}
.y36f{bottom:498.997500px;}
.y16b{bottom:499.005000px;}
.y6{bottom:499.089000px;}
.y135{bottom:499.755000px;}
.y300{bottom:502.750500px;}
.y113{bottom:504.922500px;}
.y157{bottom:506.250000px;}
.y322{bottom:506.479500px;}
.y1ff{bottom:506.817000px;}
.y1e5{bottom:506.938500px;}
.y3b3{bottom:507.255000px;}
.y19f{bottom:507.619350px;}
.y253{bottom:508.354500px;}
.y241{bottom:508.435500px;}
.y3ea{bottom:508.635000px;}
.y4e{bottom:508.691250px;}
.y49{bottom:508.705500px;}
.y296{bottom:509.812500px;}
.yac{bottom:509.880000px;}
.y391{bottom:513.211500px;}
.y2d4{bottom:513.810000px;}
.y5{bottom:514.094250px;}
.y345{bottom:514.693500px;}
.y85{bottom:514.729500px;}
.y275{bottom:514.746000px;}
.y16a{bottom:514.755000px;}
.y61{bottom:514.762500px;}
.y134{bottom:515.505000px;}
.y36e{bottom:516.240000px;}
.y19e{bottom:517.069350px;}
.y2ff{bottom:519.993000px;}
.y1fe{bottom:521.073000px;}
.y1e4{bottom:521.194500px;}
.y156{bottom:522.000000px;}
.y112{bottom:522.165000px;}
.y252{bottom:522.610500px;}
.y240{bottom:522.691500px;}
.y236{bottom:522.745500px;}
.y48{bottom:523.710750px;}
.y321{bottom:523.722000px;}
.y3e9{bottom:524.385000px;}
.y3b2{bottom:524.497500px;}
.yab{bottom:525.630000px;}
.y1ac{bottom:527.854500px;}
.y4{bottom:529.099500px;}
.y4d{bottom:529.695750px;}
.y19d{bottom:530.346600px;}
.y390{bottom:530.454000px;}
.y169{bottom:530.505000px;}
.y133{bottom:531.255000px;}
.y344{bottom:531.936000px;}
.y84{bottom:531.972000px;}
.yf2{bottom:531.988500px;}
.y60{bottom:532.005000px;}
.y36d{bottom:533.482500px;}
.y1fd{bottom:535.329000px;}
.y1e3{bottom:535.450500px;}
.y1d4{bottom:535.504500px;}
.y251{bottom:536.866500px;}
.y23f{bottom:536.947500px;}
.y235{bottom:537.001500px;}
.y2d3{bottom:537.060000px;}
.y2fe{bottom:537.235500px;}
.y155{bottom:537.750000px;}
.y111{bottom:539.407500px;}
.y19c{bottom:539.796600px;}
.y320{bottom:540.964500px;}
.yaa{bottom:541.380000px;}
.y3b1{bottom:541.740000px;}
.y3e8{bottom:542.385000px;}
.y3{bottom:544.104750px;}
.y295{bottom:544.314000px;}
.y4c{bottom:544.701000px;}
.y47{bottom:544.715250px;}
.y15a{bottom:546.255000px;}
.y132{bottom:547.005000px;}
.y38f{bottom:547.696500px;}
.y343{bottom:549.178500px;}
.y83{bottom:549.214500px;}
.yf1{bottom:549.231000px;}
.y19b{bottom:549.246600px;}
.y5f{bottom:549.247500px;}
.y1fc{bottom:549.585000px;}
.y1e2{bottom:549.706500px;}
.y1d3{bottom:549.760500px;}
.y36c{bottom:550.725000px;}
.y250{bottom:551.122500px;}
.y23e{bottom:551.203500px;}
.y234{bottom:551.257500px;}
.y2d2{bottom:552.810000px;}
.y2fd{bottom:554.478000px;}
.ya9{bottom:557.130000px;}
.y31f{bottom:558.207000px;}
.y3b0{bottom:558.982500px;}
.y2{bottom:559.110000px;}
.y46{bottom:559.720500px;}
.y3e7{bottom:560.385000px;}
.y294{bottom:561.556500px;}
.y154{bottom:562.005000px;}
.y131{bottom:562.755000px;}
.y110{bottom:564.157500px;}
.y38e{bottom:564.939000px;}
.y4b{bottom:565.705500px;}
.y342{bottom:566.421000px;}
.y82{bottom:566.457000px;}
.yf0{bottom:566.473500px;}
.y5e{bottom:566.490000px;}
.y36b{bottom:567.967500px;}
.y19a{bottom:570.953250px;}
.y2fc{bottom:571.720500px;}
.ya8{bottom:572.880000px;}
.y1fb{bottom:574.330500px;}
.y31e{bottom:575.449500px;}
.y24f{bottom:575.868000px;}
.y2d1{bottom:576.060000px;}
.y3e6{bottom:576.135000px;}
.y3af{bottom:576.225000px;}
.y153{bottom:577.755000px;}
.y130{bottom:578.505000px;}
.y293{bottom:578.799000px;}
.y4a{bottom:580.710750px;}
.y45{bottom:580.725000px;}
.y10f{bottom:581.400000px;}
.y38d{bottom:582.181500px;}
.y341{bottom:583.663500px;}
.y81{bottom:583.699500px;}
.yef{bottom:583.716000px;}
.y5d{bottom:583.732500px;}
.y199{bottom:584.230500px;}
.y36a{bottom:585.210000px;}
.y1fa{bottom:588.586500px;}
.ya7{bottom:588.630000px;}
.y2fb{bottom:588.963000px;}
.y1{bottom:589.110000px;}
.y24e{bottom:590.124000px;}
.y3e5{bottom:591.885000px;}
.y31d{bottom:592.692000px;}
.y3ae{bottom:593.467500px;}
.y1ab{bottom:595.343700px;}
.y292{bottom:596.041500px;}
.y198{bottom:597.507750px;}
.y10e{bottom:598.642500px;}
.y38c{bottom:599.424000px;}
.y340{bottom:600.906000px;}
.y80{bottom:600.942000px;}
.yee{bottom:600.958500px;}
.y5c{bottom:600.975000px;}
.y152{bottom:602.010000px;}
.y369{bottom:602.452500px;}
.y12f{bottom:602.760000px;}
.y1f9{bottom:602.842500px;}
.ya6{bottom:604.380000px;}
.y50{bottom:604.740000px;}
.y1aa{bottom:604.793700px;}
.y2fa{bottom:606.205500px;}
.y3e4{bottom:607.635000px;}
.y31c{bottom:609.934500px;}
.y3ad{bottom:610.710000px;}
.y197{bottom:610.785000px;}
.y10d{bottom:615.885000px;}
.y1f8{bottom:617.098500px;}
.y159{bottom:617.760000px;}
.y33f{bottom:618.148500px;}
.y7f{bottom:618.184500px;}
.yed{bottom:618.201000px;}
.y5b{bottom:618.217500px;}
.y24d{bottom:618.636000px;}
.y368{bottom:619.695000px;}
.ya5{bottom:620.130000px;}
.y2f9{bottom:623.448000px;}
.y196{bottom:624.062250px;}
.y38b{bottom:625.180500px;}
.y3e3{bottom:625.635000px;}
.y31b{bottom:627.177000px;}
.y3ac{bottom:627.952500px;}
.y291{bottom:630.543000px;}
.y1f7{bottom:631.354500px;}
.y24c{bottom:632.892000px;}
.y23d{bottom:632.959500px;}
.y233{bottom:633.013500px;}
.y33e{bottom:635.391000px;}
.y7e{bottom:635.427000px;}
.yec{bottom:635.443500px;}
.y5a{bottom:635.460000px;}
.ya4{bottom:635.880000px;}
.y367{bottom:636.937500px;}
.y195{bottom:637.339500px;}
.y2f8{bottom:640.690500px;}
.y3e2{bottom:641.385000px;}
.y12e{bottom:642.765000px;}
.y3ab{bottom:645.195000px;}
.y1f6{bottom:645.610500px;}
.y24b{bottom:647.148000px;}
.y23c{bottom:647.215500px;}
.y232{bottom:647.269500px;}
.y10c{bottom:650.385000px;}
.ya3{bottom:651.630000px;}
.y33d{bottom:652.633500px;}
.yeb{bottom:652.686000px;}
.y59{bottom:652.702500px;}
.y31a{bottom:652.933500px;}
.y366{bottom:654.180000px;}
.y3e1{bottom:657.135000px;}
.y2f7{bottom:657.933000px;}
.y38a{bottom:659.434500px;}
.y1f5{bottom:659.866500px;}
.y7d{bottom:661.299000px;}
.y3aa{bottom:662.437500px;}
.y10b{bottom:666.135000px;}
.y2e{bottom:666.885000px;}
.y12d{bottom:667.020000px;}
.ya2{bottom:667.380000px;}
.yea{bottom:669.928500px;}
.y58{bottom:669.945000px;}
.y365{bottom:671.422500px;}
.y24a{bottom:671.893500px;}
.y290{bottom:673.674000px;}
.y1f4{bottom:674.122500px;}
.y3e0{bottom:675.135000px;}
.y2f6{bottom:675.175500px;}
.y389{bottom:676.677000px;}
.y33c{bottom:678.885000px;}
.y3a9{bottom:679.680000px;}
.y2d{bottom:681.843750px;}
.y10a{bottom:681.885000px;}
.ya1{bottom:683.130000px;}
.y249{bottom:686.149500px;}
.ye9{bottom:687.171000px;}
.y57{bottom:687.187500px;}
.y1f3{bottom:688.378500px;}
.y364{bottom:688.665000px;}
.y3df{bottom:690.885000px;}
.y28f{bottom:690.916500px;}
.y2f5{bottom:692.418000px;}
.y3a8{bottom:696.922500px;}
.y109{bottom:697.635000px;}
.ya0{bottom:698.880000px;}
.y248{bottom:700.405500px;}
.y1f2{bottom:702.634500px;}
.y2c{bottom:702.848250px;}
.y24{bottom:702.849000px;}
.ye8{bottom:704.413500px;}
.y56{bottom:704.430000px;}
.y363{bottom:705.907500px;}
.y28e{bottom:708.159000px;}
.y3de{bottom:708.885000px;}
.y2f4{bottom:709.660500px;}
.y108{bottom:713.385000px;}
.y3a7{bottom:714.165000px;}
.y9f{bottom:714.630000px;}
.y247{bottom:714.661500px;}
.y23b{bottom:714.715500px;}
.y1f1{bottom:716.890500px;}
.y1e1{bottom:716.958000px;}
.y1d2{bottom:717.012000px;}
.y23{bottom:717.105000px;}
.y2b{bottom:717.853500px;}
.ye7{bottom:721.656000px;}
.y55{bottom:721.672500px;}
.y362{bottom:723.150000px;}
.y3dd{bottom:724.635000px;}
.y2f3{bottom:726.903000px;}
.y246{bottom:728.917500px;}
.y23a{bottom:728.971500px;}
.y107{bottom:729.135000px;}
.y1f0{bottom:731.146500px;}
.y1e0{bottom:731.214000px;}
.y1d1{bottom:731.268000px;}
.y3a6{bottom:731.407500px;}
.y2a{bottom:732.858750px;}
.y22{bottom:735.105000px;}
.y175{bottom:738.898500px;}
.y54{bottom:738.915000px;}
.y361{bottom:740.392500px;}
.y3dc{bottom:742.635000px;}
.y245{bottom:743.173500px;}
.y239{bottom:743.227500px;}
.y2f2{bottom:744.145500px;}
.y106{bottom:744.885000px;}
.y1ef{bottom:745.402500px;}
.y1df{bottom:745.470000px;}
.y1d0{bottom:745.524000px;}
.y29{bottom:747.864000px;}
.y3a5{bottom:748.650000px;}
.y174{bottom:756.141000px;}
.y53{bottom:756.157500px;}
.y244{bottom:757.429500px;}
.y238{bottom:757.483500px;}
.y231{bottom:757.524000px;}
.y360{bottom:757.635000px;}
.y3db{bottom:758.385000px;}
.y1ee{bottom:759.658500px;}
.y1de{bottom:759.726000px;}
.y1cf{bottom:759.780000px;}
.y105{bottom:760.635000px;}
.y2f1{bottom:761.388000px;}
.y28{bottom:762.869250px;}
.y243{bottom:771.685500px;}
.y237{bottom:771.739500px;}
.y230{bottom:771.780000px;}
.y173{bottom:773.383500px;}
.y52{bottom:773.400000px;}
.y104{bottom:776.385000px;}
.y27{bottom:777.874500px;}
.y21{bottom:780.105000px;}
.y1ce{bottom:780.510000px;}
.y51{bottom:790.642500px;}
.y103{bottom:792.135000px;}
.y26{bottom:792.879750px;}
.y22f{bottom:793.260000px;}
.y1cd{bottom:800.520000px;}
.y20{bottom:804.105000px;}
.y25{bottom:807.885000px;}
.y22e{bottom:813.270000px;}
.y1cc{bottom:816.270000px;}
.y1f{bottom:855.105000px;}
.hb{height:38.295700px;}
.hc{height:38.297812px;}
.h12{height:39.424219px;}
.h16{height:43.804688px;}
.h19{height:43.805741px;}
.h18{height:43.808055px;}
.h17{height:43.934064px;}
.h13{height:45.056250px;}
.hf{height:50.062500px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.h14{height:58.536000px;}
.h1{height:60.819000px;}
.h1b{height:61.822688px;}
.h9{height:64.020000px;}
.hd{height:65.040000px;}
.h6{height:70.422000px;}
.h7{height:71.382000px;}
.h8{height:71.544000px;}
.h4{height:76.824000px;}
.h10{height:100.125000px;}
.h3{height:102.432000px;}
.he{height:189.120000px;}
.h15{height:404.820000px;}
.h1a{height:409.515000px;}
.ha{height:483.750000px;}
.h11{height:661.530000px;}
.h0{height:901.500000px;}
.w1{width:488.970000px;}
.w2{width:488.985000px;}
.w3{width:521.235000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x20{left:13.820340px;}
.x1f{left:14.848500px;}
.x21{left:17.088420px;}
.x22{left:23.174760px;}
.x39{left:35.617500px;}
.x4d{left:40.468947px;}
.x59{left:42.241500px;}
.x4e{left:50.400000px;}
.x3a{left:53.837100px;}
.x5a{left:57.267000px;}
.x5b{left:59.314500px;}
.x4c{left:60.976500px;}
.x2f{left:66.652500px;}
.x2b{left:68.700000px;}
.x1{left:70.200000px;}
.x3{left:71.415000px;}
.x26{left:77.700000px;}
.x61{left:85.200000px;}
.x32{left:87.030000px;}
.x42{left:90.511500px;}
.xb{left:92.700000px;}
.x4{left:93.921000px;}
.x60{left:95.910000px;}
.x1e{left:98.335500px;}
.x6{left:99.819750px;}
.x38{left:102.786000px;}
.x43{left:104.508000px;}
.x37{left:107.941950px;}
.x7{left:112.972500px;}
.xc{left:115.200000px;}
.x1b{left:117.337320px;}
.x46{left:121.455000px;}
.x2d{left:122.952000px;}
.x40{left:124.620000px;}
.x45{left:129.624000px;}
.x1c{left:130.905360px;}
.x44{left:134.286000px;}
.xd{left:137.700000px;}
.x19{left:142.591500px;}
.x2e{left:150.624000px;}
.x56{left:151.798500px;}
.x18{left:156.159000px;}
.x1a{left:158.739120px;}
.x41{left:162.594000px;}
.x49{left:164.064000px;}
.x24{left:165.195000px;}
.x3e{left:170.140500px;}
.x3b{left:171.328500px;}
.x5f{left:177.261000px;}
.x47{left:178.365000px;}
.x4f{left:181.597500px;}
.x48{left:195.291000px;}
.x8{left:203.431500px;}
.x17{left:211.087500px;}
.x4a{left:213.088500px;}
.x5{left:214.575000px;}
.x35{left:215.779050px;}
.x2c{left:217.440000px;}
.xf{left:219.946500px;}
.x36{left:221.506200px;}
.xe{left:225.150000px;}
.x58{left:227.073000px;}
.x57{left:230.664000px;}
.x54{left:231.735000px;}
.x55{left:233.037000px;}
.x25{left:240.285000px;}
.x27{left:241.920000px;}
.x16{left:250.102500px;}
.x3c{left:251.505000px;}
.x3f{left:267.313500px;}
.x3d{left:268.501500px;}
.x10{left:274.456500px;}
.x11{left:277.219500px;}
.x15{left:289.117500px;}
.xa{left:290.745000px;}
.x33{left:294.790500px;}
.x34{left:300.526650px;}
.x51{left:323.820000px;}
.x62{left:325.950000px;}
.x9{left:327.905250px;}
.x53{left:332.535000px;}
.x52{left:336.042000px;}
.x23{left:346.773000px;}
.x50{left:348.117000px;}
.x28{left:349.500000px;}
.x12{left:358.401000px;}
.x29{left:364.500000px;}
.x13{left:373.318500px;}
.x4b{left:383.875500px;}
.x14{left:388.236000px;}
.x2{left:408.735000px;}
.x1d{left:412.713000px;}
.x31{left:421.027500px;}
.x30{left:445.390500px;}
.x2a{left:457.095000px;}
.x5c{left:464.446500px;}
.x5d{left:466.189500px;}
.x5e{left:476.878500px;}
@media print{
.v2{vertical-align:-6.496000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.016000pt;}
.v1{vertical-align:18.757333pt;}
.ls59{letter-spacing:-1.818667pt;}
.ls48{letter-spacing:-1.466667pt;}
.ls93{letter-spacing:-1.408000pt;}
.lsa3{letter-spacing:-1.386667pt;}
.ls6d{letter-spacing:-1.349333pt;}
.ls8f{letter-spacing:-1.290667pt;}
.ls69{letter-spacing:-1.232000pt;}
.ls90{letter-spacing:-1.226667pt;}
.ls37{letter-spacing:-1.173333pt;}
.ls46{letter-spacing:-1.120000pt;}
.ls3c{letter-spacing:-1.114667pt;}
.lsa{letter-spacing:-1.064000pt;}
.ls49{letter-spacing:-1.056000pt;}
.lsa2{letter-spacing:-1.040000pt;}
.ls5d{letter-spacing:-1.013333pt;}
.ls81{letter-spacing:-1.008000pt;}
.ls6a{letter-spacing:-0.997333pt;}
.lsd{letter-spacing:-0.962667pt;}
.ls4c{letter-spacing:-0.960000pt;}
.ls67{letter-spacing:-0.938667pt;}
.ls31{letter-spacing:-0.912000pt;}
.ls5b{letter-spacing:-0.906667pt;}
.ls30{letter-spacing:-0.880000pt;}
.lsc{letter-spacing:-0.861333pt;}
.ls1d{letter-spacing:-0.821333pt;}
.ls6c{letter-spacing:-0.806400pt;}
.ls47{letter-spacing:-0.800000pt;}
.ls87{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.762667pt;}
.ls3a{letter-spacing:-0.746667pt;}
.lsa0{letter-spacing:-0.720000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls65{letter-spacing:-0.693333pt;}
.lsa1{letter-spacing:-0.680000pt;}
.ls7a{letter-spacing:-0.672000pt;}
.ls29{letter-spacing:-0.645333pt;}
.ls5e{letter-spacing:-0.640000pt;}
.ls7f{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.608000pt;}
.ls3f{letter-spacing:-0.586667pt;}
.ls80{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls99{letter-spacing:-0.520000pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls74{letter-spacing:-0.432000pt;}
.ls62{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls9a{letter-spacing:-0.400000pt;}
.ls76{letter-spacing:-0.384000pt;}
.ls45{letter-spacing:-0.373333pt;}
.ls9f{letter-spacing:-0.360000pt;}
.lsb{letter-spacing:-0.354667pt;}
.ls27{letter-spacing:-0.352000pt;}
.ls88{letter-spacing:-0.336000pt;}
.ls2f{letter-spacing:-0.328533pt;}
.ls39{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.304000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls77{letter-spacing:-0.288000pt;}
.ls5f{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.253333pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls5c{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls98{letter-spacing:-0.200000pt;}
.ls7d{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls60{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.152000pt;}
.ls7e{letter-spacing:-0.144000pt;}
.ls9b{letter-spacing:-0.120000pt;}
.ls28{letter-spacing:-0.117333pt;}
.ls4b{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls78{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls75{letter-spacing:-0.048000pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9e{letter-spacing:0.040000pt;}
.ls6e{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls4e{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.058667pt;}
.ls83{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.101333pt;}
.ls33{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.152000pt;}
.ls35{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.176000pt;}
.ls6f{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.202667pt;}
.ls64{letter-spacing:0.213333pt;}
.ls20{letter-spacing:0.234667pt;}
.ls85{letter-spacing:0.240000pt;}
.ls5a{letter-spacing:0.266667pt;}
.ls86{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.293333pt;}
.ls8e{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.352000pt;}
.ls43{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.405333pt;}
.ls25{letter-spacing:0.410667pt;}
.ls34{letter-spacing:0.426667pt;}
.ls72{letter-spacing:0.432000pt;}
.ls2b{letter-spacing:0.469333pt;}
.ls44{letter-spacing:0.480000pt;}
.ls94{letter-spacing:0.520000pt;}
.ls24{letter-spacing:0.528000pt;}
.ls42{letter-spacing:0.533333pt;}
.ls7b{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls9c{letter-spacing:0.600000pt;}
.ls97{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.645333pt;}
.ls2{letter-spacing:0.658667pt;}
.ls96{letter-spacing:0.693333pt;}
.ls19{letter-spacing:0.704000pt;}
.ls70{letter-spacing:0.720000pt;}
.ls32{letter-spacing:0.746667pt;}
.ls36{letter-spacing:0.762667pt;}
.ls7c{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.821333pt;}
.ls9d{letter-spacing:0.840000pt;}
.ls91{letter-spacing:0.853333pt;}
.ls82{letter-spacing:0.864000pt;}
.ls22{letter-spacing:0.880000pt;}
.ls63{letter-spacing:0.906667pt;}
.ls71{letter-spacing:0.912000pt;}
.ls68{letter-spacing:0.938667pt;}
.ls50{letter-spacing:1.013333pt;}
.ls89{letter-spacing:1.056000pt;}
.ls58{letter-spacing:1.066667pt;}
.ls41{letter-spacing:1.114667pt;}
.ls4d{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.200000pt;}
.ls66{letter-spacing:1.232000pt;}
.ls61{letter-spacing:1.280000pt;}
.ls92{letter-spacing:1.290667pt;}
.ls4f{letter-spacing:1.333333pt;}
.ls2a{letter-spacing:1.349333pt;}
.ls2d{letter-spacing:1.466667pt;}
.ls51{letter-spacing:2.880000pt;}
.ls54{letter-spacing:8.160000pt;}
.ls56{letter-spacing:10.986667pt;}
.ls53{letter-spacing:11.413333pt;}
.ls52{letter-spacing:12.586667pt;}
.ls3e{letter-spacing:12.663622pt;}
.ls57{letter-spacing:17.813333pt;}
.ls55{letter-spacing:18.240000pt;}
.ls8c{letter-spacing:19.301333pt;}
.ls40{letter-spacing:21.354667pt;}
.ls95{letter-spacing:26.666667pt;}
.ls8d{letter-spacing:33.813333pt;}
.ls8a{letter-spacing:35.141333pt;}
.ls73{letter-spacing:36.432000pt;}
.ls84{letter-spacing:36.480000pt;}
.ls8b{letter-spacing:41.360000pt;}
.ws57{word-spacing:-21.737041pt;}
.ws79{word-spacing:-21.493333pt;}
.ws77{word-spacing:-16.480000pt;}
.ws42{word-spacing:-16.133333pt;}
.wse1{word-spacing:-15.957333pt;}
.wsdf{word-spacing:-15.898667pt;}
.ws5a{word-spacing:-15.781333pt;}
.wsa2{word-spacing:-15.605333pt;}
.ws62{word-spacing:-15.546667pt;}
.ws56{word-spacing:-15.488000pt;}
.ws4e{word-spacing:-15.429333pt;}
.wsce{word-spacing:-15.370667pt;}
.ws5b{word-spacing:-15.253333pt;}
.wsa3{word-spacing:-15.194667pt;}
.wscf{word-spacing:-15.136000pt;}
.wsa6{word-spacing:-15.077333pt;}
.ws3e{word-spacing:-15.018667pt;}
.wsa0{word-spacing:-14.960000pt;}
.ws74{word-spacing:-14.933333pt;}
.ws2b{word-spacing:-14.901333pt;}
.ws4d{word-spacing:-14.842667pt;}
.wse2{word-spacing:-14.784000pt;}
.ws60{word-spacing:-14.725333pt;}
.ws15{word-spacing:-14.666667pt;}
.ws3f{word-spacing:-14.608000pt;}
.ws40{word-spacing:-14.549333pt;}
.ws18{word-spacing:-14.490667pt;}
.ws71{word-spacing:-14.453333pt;}
.wsd1{word-spacing:-14.432000pt;}
.ws7c{word-spacing:-14.400000pt;}
.ws61{word-spacing:-14.373333pt;}
.ws2d{word-spacing:-14.314667pt;}
.ws2e{word-spacing:-14.256000pt;}
.ws7b{word-spacing:-14.240000pt;}
.wsa4{word-spacing:-14.197333pt;}
.wsf8{word-spacing:-14.186667pt;}
.wse5{word-spacing:-14.138667pt;}
.ws6f{word-spacing:-14.080000pt;}
.wsab{word-spacing:-14.021333pt;}
.wsee{word-spacing:-13.973333pt;}
.ws2c{word-spacing:-13.962667pt;}
.wsf3{word-spacing:-13.920000pt;}
.ws17{word-spacing:-13.904000pt;}
.ws5c{word-spacing:-13.866667pt;}
.wse0{word-spacing:-13.786667pt;}
.ws5d{word-spacing:-13.706667pt;}
.ws5f{word-spacing:-13.610667pt;}
.ws6e{word-spacing:-13.600000pt;}
.ws6d{word-spacing:-13.546667pt;}
.wsdb{word-spacing:-13.493333pt;}
.wsd4{word-spacing:-13.440000pt;}
.wsa5{word-spacing:-13.434667pt;}
.wsfb{word-spacing:-13.386667pt;}
.ws4c{word-spacing:-13.333333pt;}
.wsd6{word-spacing:-13.317333pt;}
.wsf4{word-spacing:-13.280000pt;}
.wse4{word-spacing:-13.258667pt;}
.ws64{word-spacing:-13.226667pt;}
.ws73{word-spacing:-13.066667pt;}
.ws5e{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws7a{word-spacing:-12.906667pt;}
.wsc4{word-spacing:-12.864000pt;}
.ws70{word-spacing:-12.853333pt;}
.wsed{word-spacing:-12.800000pt;}
.ws7d{word-spacing:-12.746667pt;}
.ws1b{word-spacing:-12.666667pt;}
.ws14{word-spacing:-12.464000pt;}
.wse9{word-spacing:-12.426667pt;}
.wsf1{word-spacing:-12.373333pt;}
.ws13{word-spacing:-12.362667pt;}
.ws72{word-spacing:-12.320000pt;}
.wsc7{word-spacing:-12.240000pt;}
.ws75{word-spacing:-12.213333pt;}
.wsaf{word-spacing:-12.192000pt;}
.ws78{word-spacing:-12.160000pt;}
.wsd8{word-spacing:-12.106667pt;}
.wsc6{word-spacing:-12.048000pt;}
.wsac{word-spacing:-12.000000pt;}
.wsfd{word-spacing:-11.946667pt;}
.wsc8{word-spacing:-11.664000pt;}
.wsf6{word-spacing:-10.840000pt;}
.ws1a{word-spacing:-10.624000pt;}
.wsf2{word-spacing:-10.600000pt;}
.wsea{word-spacing:-10.520000pt;}
.wsd2{word-spacing:-10.378667pt;}
.wse7{word-spacing:-10.000000pt;}
.ws41{word-spacing:-9.938133pt;}
.wsef{word-spacing:-9.880000pt;}
.wse6{word-spacing:-9.800000pt;}
.wsec{word-spacing:-9.600000pt;}
.wseb{word-spacing:-9.480000pt;}
.wse8{word-spacing:-9.360000pt;}
.wsa9{word-spacing:-9.340800pt;}
.wsfa{word-spacing:-9.320000pt;}
.wsf9{word-spacing:-9.280000pt;}
.wsfe{word-spacing:-8.960000pt;}
.ws3b{word-spacing:-0.762667pt;}
.wsa8{word-spacing:-0.705600pt;}
.ws47{word-spacing:-0.704000pt;}
.ws1e{word-spacing:-0.658667pt;}
.ws3c{word-spacing:-0.645333pt;}
.wsde{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.608000pt;}
.ws37{word-spacing:-0.586667pt;}
.wsc9{word-spacing:-0.576000pt;}
.ws2{word-spacing:-0.557333pt;}
.ws90{word-spacing:-0.533333pt;}
.ws24{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.506667pt;}
.ws84{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.456000pt;}
.wsbe{word-spacing:-0.432000pt;}
.ws89{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.410667pt;}
.wsb9{word-spacing:-0.384000pt;}
.ws66{word-spacing:-0.373333pt;}
.ws5{word-spacing:-0.354667pt;}
.ws33{word-spacing:-0.352000pt;}
.wsb3{word-spacing:-0.336000pt;}
.ws4f{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.304000pt;}
.ws21{word-spacing:-0.293333pt;}
.wsb6{word-spacing:-0.288000pt;}
.ws52{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.240000pt;}
.ws26{word-spacing:-0.234667pt;}
.ws6c{word-spacing:-0.213333pt;}
.wsb2{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.176000pt;}
.ws54{word-spacing:-0.160000pt;}
.ws59{word-spacing:-0.117333pt;}
.ws9a{word-spacing:-0.106667pt;}
.wsca{word-spacing:-0.096000pt;}
.ws34{word-spacing:-0.058667pt;}
.ws99{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.050667pt;}
.wsc0{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.048000pt;}
.ws53{word-spacing:0.053333pt;}
.ws2a{word-spacing:0.058667pt;}
.ws4a{word-spacing:0.096000pt;}
.ws12{word-spacing:0.101333pt;}
.ws87{word-spacing:0.106667pt;}
.ws48{word-spacing:0.117333pt;}
.wsbb{word-spacing:0.144000pt;}
.ws69{word-spacing:0.160000pt;}
.ws46{word-spacing:0.176000pt;}
.wsc2{word-spacing:0.192000pt;}
.wsf{word-spacing:0.202667pt;}
.ws7f{word-spacing:0.213333pt;}
.ws2f{word-spacing:0.234667pt;}
.ws81{word-spacing:0.266667pt;}
.ws4b{word-spacing:0.288000pt;}
.ws6a{word-spacing:0.293333pt;}
.ws10{word-spacing:0.304000pt;}
.wsff{word-spacing:0.320000pt;}
.wsba{word-spacing:0.336000pt;}
.ws29{word-spacing:0.352000pt;}
.ws85{word-spacing:0.373333pt;}
.ws8{word-spacing:0.405333pt;}
.ws44{word-spacing:0.410667pt;}
.ws68{word-spacing:0.426667pt;}
.wsbc{word-spacing:0.432000pt;}
.ws4{word-spacing:0.456000pt;}
.wsa7{word-spacing:0.469333pt;}
.ws92{word-spacing:0.480000pt;}
.ws28{word-spacing:0.528000pt;}
.wsda{word-spacing:0.533333pt;}
.wsa{word-spacing:0.557333pt;}
.wsb5{word-spacing:0.576000pt;}
.ws35{word-spacing:0.586667pt;}
.wsd5{word-spacing:0.640000pt;}
.ws55{word-spacing:0.645333pt;}
.wsbd{word-spacing:0.672000pt;}
.ws6b{word-spacing:0.693333pt;}
.ws25{word-spacing:0.704000pt;}
.wsf0{word-spacing:0.746667pt;}
.ws36{word-spacing:0.762667pt;}
.wsc1{word-spacing:0.768000pt;}
.ws8a{word-spacing:0.800000pt;}
.ws23{word-spacing:0.821333pt;}
.ws9c{word-spacing:0.853333pt;}
.ws1c{word-spacing:0.861333pt;}
.wscd{word-spacing:0.864000pt;}
.ws39{word-spacing:0.880000pt;}
.ws51{word-spacing:0.906667pt;}
.wscc{word-spacing:0.912000pt;}
.ws3a{word-spacing:0.938667pt;}
.ws65{word-spacing:0.960000pt;}
.ws3d{word-spacing:0.997333pt;}
.wsb8{word-spacing:1.008000pt;}
.wsd9{word-spacing:1.013333pt;}
.ws16{word-spacing:1.056000pt;}
.wse{word-spacing:1.064000pt;}
.ws7e{word-spacing:1.066667pt;}
.wscb{word-spacing:1.104000pt;}
.ws11{word-spacing:1.114667pt;}
.ws95{word-spacing:1.120000pt;}
.wsb4{word-spacing:1.152000pt;}
.ws1{word-spacing:1.165333pt;}
.ws30{word-spacing:1.173333pt;}
.ws6{word-spacing:1.216000pt;}
.ws50{word-spacing:1.226667pt;}
.ws38{word-spacing:1.232000pt;}
.wsb{word-spacing:1.266667pt;}
.ws82{word-spacing:1.280000pt;}
.ws32{word-spacing:1.290667pt;}
.ws67{word-spacing:1.333333pt;}
.ws22{word-spacing:1.349333pt;}
.ws27{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.466667pt;}
.wse3{word-spacing:2.288000pt;}
.wsdd{word-spacing:2.405333pt;}
.ws49{word-spacing:2.757333pt;}
.wsf5{word-spacing:2.973333pt;}
.ws9f{word-spacing:3.466667pt;}
.wsf7{word-spacing:3.733333pt;}
.wsfc{word-spacing:3.760000pt;}
.wsa1{word-spacing:3.872000pt;}
.wsdc{word-spacing:4.810667pt;}
.ws91{word-spacing:5.600000pt;}
.ws93{word-spacing:5.920000pt;}
.ws8e{word-spacing:6.400000pt;}
.ws100{word-spacing:6.613333pt;}
.ws63{word-spacing:6.688000pt;}
.ws9d{word-spacing:8.853333pt;}
.wsd7{word-spacing:9.269333pt;}
.ws88{word-spacing:9.600000pt;}
.ws9b{word-spacing:10.720000pt;}
.ws8d{word-spacing:10.933333pt;}
.ws80{word-spacing:11.040000pt;}
.ws83{word-spacing:12.213333pt;}
.ws76{word-spacing:13.226667pt;}
.ws98{word-spacing:13.706667pt;}
.ws86{word-spacing:16.106667pt;}
.ws8c{word-spacing:16.533333pt;}
.ws96{word-spacing:16.746667pt;}
.ws8b{word-spacing:17.066667pt;}
.wsd0{word-spacing:19.184000pt;}
.ws8f{word-spacing:19.306667pt;}
.wsd3{word-spacing:20.480000pt;}
.wsb0{word-spacing:22.032000pt;}
.wsb1{word-spacing:22.896000pt;}
.wsad{word-spacing:24.432000pt;}
.wsc3{word-spacing:24.480000pt;}
.wsae{word-spacing:24.528000pt;}
.wsc5{word-spacing:24.672000pt;}
.ws94{word-spacing:27.840000pt;}
.ws19{word-spacing:31.914667pt;}
.ws43{word-spacing:32.016000pt;}
.ws9e{word-spacing:37.280000pt;}
.ws97{word-spacing:41.653333pt;}
.ws58{word-spacing:231.724373pt;}
.wsaa{word-spacing:1198.656000pt;}
._f{margin-left:-865.996800pt;}
._e{margin-left:-7.450667pt;}
._2{margin-left:-6.536000pt;}
._5{margin-left:-4.813333pt;}
._8{margin-left:-3.578667pt;}
._4{margin-left:-2.178667pt;}
._0{margin-left:-1.266667pt;}
._3{width:1.317333pt;}
._7{width:2.888000pt;}
._1{width:11.045333pt;}
._d{width:12.152000pt;}
._13{width:18.714667pt;}
._c{width:21.354667pt;}
._14{width:26.224000pt;}
._15{width:31.269333pt;}
._17{width:33.813333pt;}
._12{width:36.432000pt;}
._6{width:42.410667pt;}
._11{width:123.453333pt;}
._10{width:186.066667pt;}
._16{width:229.936000pt;}
._b{width:289.065387pt;}
._a{width:401.834667pt;}
._9{width:927.658667pt;}
.fs8{font-size:32.638200pt;}
.fs9{font-size:32.640000pt;}
.fsa{font-size:33.600000pt;}
.fsc{font-size:37.333333pt;}
.fse{font-size:37.334231pt;}
.fsd{font-size:37.336203pt;}
.fsb{font-size:38.400000pt;}
.fsf{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y274{bottom:11.960789pt;}
.y18d{bottom:29.685333pt;}
.y273{bottom:34.745333pt;}
.ye4{bottom:36.868000pt;}
.y18f{bottom:37.121333pt;}
.y18e{bottom:39.672000pt;}
.y3cc{bottom:43.042667pt;}
.yc6{bottom:43.393333pt;}
.yc7{bottom:43.520000pt;}
.y28d{bottom:43.688000pt;}
.y194{bottom:43.717333pt;}
.y7c{bottom:43.746667pt;}
.y35f{bottom:44.120000pt;}
.y22d{bottom:44.393333pt;}
.y319{bottom:44.786667pt;}
.y1c3{bottom:45.016133pt;}
.y388{bottom:45.045333pt;}
.y1c9{bottom:45.305333pt;}
.y3da{bottom:45.653333pt;}
.y21b{bottom:45.720000pt;}
.y2ce{bottom:47.002667pt;}
.y44{bottom:47.100000pt;}
.y188{bottom:47.897333pt;}
.y9e{bottom:48.082667pt;}
.y102{bottom:48.120000pt;}
.ye6{bottom:48.453333pt;}
.y12c{bottom:48.786667pt;}
.y1e{bottom:48.985333pt;}
.y33b{bottom:49.653333pt;}
.y2f0{bottom:50.720000pt;}
.y299{bottom:51.066667pt;}
.y151{bottom:52.226667pt;}
.y1c8{bottom:53.705333pt;}
.y26e{bottom:53.818667pt;}
.ye5{bottom:53.849333pt;}
.y2d0{bottom:56.000000pt;}
.y1c2{bottom:56.818133pt;}
.y18b{bottom:57.790667pt;}
.y35e{bottom:58.120000pt;}
.y3cb{bottom:58.369333pt;}
.y21a{bottom:58.392000pt;}
.yc5{bottom:58.720000pt;}
.y318{bottom:58.786667pt;}
.y28c{bottom:59.014667pt;}
.y193{bottom:59.044000pt;}
.y7b{bottom:59.073333pt;}
.y3d9{bottom:59.653333pt;}
.y22c{bottom:59.720000pt;}
.y387{bottom:60.372000pt;}
.y9d{bottom:60.754667pt;}
.y101{bottom:62.120000pt;}
.y1d{bottom:62.323333pt;}
.y43{bottom:62.426667pt;}
.y12b{bottom:62.786667pt;}
.y187{bottom:63.224000pt;}
.y33a{bottom:63.653333pt;}
.y2ef{bottom:64.720000pt;}
.y150{bottom:66.226667pt;}
.y219{bottom:71.064000pt;}
.y25c{bottom:71.133333pt;}
.y26f{bottom:71.216000pt;}
.y35d{bottom:72.120000pt;}
.y317{bottom:72.786667pt;}
.y9c{bottom:73.426667pt;}
.y3ca{bottom:73.696000pt;}
.yc4{bottom:74.046667pt;}
.y29c{bottom:74.116000pt;}
.y28b{bottom:74.341333pt;}
.y192{bottom:74.370667pt;}
.y7a{bottom:74.400000pt;}
.y22b{bottom:75.046667pt;}
.y3d8{bottom:75.653333pt;}
.y386{bottom:75.698667pt;}
.y12a{bottom:76.786667pt;}
.y339{bottom:77.653333pt;}
.y42{bottom:77.753333pt;}
.y186{bottom:78.550667pt;}
.y271{bottom:78.614229pt;}
.y2ee{bottom:78.720000pt;}
.y14f{bottom:80.226667pt;}
.y18a{bottom:80.468000pt;}
.y218{bottom:83.736000pt;}
.y1c1{bottom:83.807333pt;}
.y1ed{bottom:83.916000pt;}
.y35c{bottom:86.120000pt;}
.y316{bottom:86.786667pt;}
.y1c{bottom:88.986667pt;}
.y3c9{bottom:89.022667pt;}
.yc3{bottom:89.373333pt;}
.y3d7{bottom:89.653333pt;}
.y28a{bottom:89.668000pt;}
.y100{bottom:89.697333pt;}
.y79{bottom:89.726667pt;}
.y22a{bottom:90.373333pt;}
.y129{bottom:90.786667pt;}
.y385{bottom:91.025333pt;}
.y338{bottom:91.653333pt;}
.y2ed{bottom:92.720000pt;}
.y41{bottom:93.080000pt;}
.y185{bottom:93.877333pt;}
.y14e{bottom:94.226667pt;}
.y1c0{bottom:95.609333pt;}
.y217{bottom:96.408000pt;}
.y1ec{bottom:96.588000pt;}
.y26d{bottom:98.273333pt;}
.ydb{bottom:99.700000pt;}
.y35b{bottom:100.120000pt;}
.y315{bottom:100.786667pt;}
.y189{bottom:103.145333pt;}
.y2cb{bottom:103.264000pt;}
.y3c8{bottom:104.349333pt;}
.yc2{bottom:104.700000pt;}
.y128{bottom:104.786667pt;}
.y289{bottom:104.994667pt;}
.yff{bottom:105.024000pt;}
.y78{bottom:105.053333pt;}
.y337{bottom:105.653333pt;}
.y229{bottom:105.700000pt;}
.y29b{bottom:105.980000pt;}
.y2ec{bottom:106.720000pt;}
.y1bf{bottom:107.411333pt;}
.y2ba{bottom:107.940000pt;}
.y14d{bottom:108.226667pt;}
.y40{bottom:108.406667pt;}
.y26c{bottom:108.941333pt;}
.yd1{bottom:108.978827pt;}
.y216{bottom:109.080000pt;}
.y184{bottom:109.204000pt;}
.y1eb{bottom:109.260000pt;}
.y2ca{bottom:112.597333pt;}
.y35a{bottom:114.120000pt;}
.y314{bottom:114.786667pt;}
.y1be{bottom:115.811333pt;}
.yd0{bottom:116.583947pt;}
.y2b9{bottom:117.273333pt;}
.y127{bottom:118.786667pt;}
.y336{bottom:119.653333pt;}
.y3c7{bottom:119.676000pt;}
.yc1{bottom:120.026667pt;}
.y9b{bottom:120.200000pt;}
.y288{bottom:120.321333pt;}
.yfe{bottom:120.350667pt;}
.y77{bottom:120.380000pt;}
.y2eb{bottom:120.720000pt;}
.y1b{bottom:120.939333pt;}
.y228{bottom:121.026667pt;}
.y384{bottom:121.693333pt;}
.y215{bottom:121.752000pt;}
.y2c9{bottom:121.930667pt;}
.y1ea{bottom:121.932000pt;}
.y1dd{bottom:121.980000pt;}
.y14c{bottom:122.226667pt;}
.y3f{bottom:123.733333pt;}
.y1bd{bottom:124.211333pt;}
.y183{bottom:124.530667pt;}
.y18c{bottom:126.346667pt;}
.y2b8{bottom:126.606667pt;}
.ycf{bottom:127.330667pt;}
.y359{bottom:128.120000pt;}
.yd3{bottom:128.766667pt;}
.y26b{bottom:131.164000pt;}
.y2c8{bottom:131.264000pt;}
.ye2{bottom:132.585227pt;}
.y126{bottom:132.786667pt;}
.y335{bottom:133.653333pt;}
.y1a{bottom:134.277333pt;}
.y2ea{bottom:134.720000pt;}
.y3c6{bottom:135.002667pt;}
.yc0{bottom:135.353333pt;}
.y29a{bottom:135.520000pt;}
.y9a{bottom:135.526667pt;}
.y287{bottom:135.648000pt;}
.yfd{bottom:135.677333pt;}
.y76{bottom:135.706667pt;}
.y2b7{bottom:135.940000pt;}
.y1bc{bottom:136.013333pt;}
.y14b{bottom:136.226667pt;}
.y227{bottom:136.353333pt;}
.y383{bottom:137.020000pt;}
.y3e{bottom:139.060000pt;}
.y182{bottom:139.857333pt;}
.y313{bottom:140.341333pt;}
.y2c7{bottom:140.597333pt;}
.ye1{bottom:140.745227pt;}
.y1c7{bottom:141.305333pt;}
.y358{bottom:142.120000pt;}
.y191{bottom:143.348000pt;}
.y1dc{bottom:143.976000pt;}
.y2b6{bottom:145.273333pt;}
.y26a{bottom:145.826667pt;}
.y125{bottom:146.786667pt;}
.y334{bottom:147.653333pt;}
.y1bb{bottom:147.815333pt;}
.y2e9{bottom:148.720000pt;}
.y2a3{bottom:149.277333pt;}
.y3d6{bottom:149.653333pt;}
.y1c6{bottom:149.705333pt;}
.y2c6{bottom:149.930667pt;}
.y14a{bottom:150.226667pt;}
.ybf{bottom:150.680000pt;}
.y99{bottom:150.853333pt;}
.y286{bottom:150.974667pt;}
.yfc{bottom:151.004000pt;}
.y75{bottom:151.033333pt;}
.y226{bottom:151.680000pt;}
.y382{bottom:152.346667pt;}
.y19{bottom:152.948000pt;}
.y3d{bottom:154.386667pt;}
.y2b5{bottom:154.606667pt;}
.y181{bottom:155.184000pt;}
.y312{bottom:155.668000pt;}
.y357{bottom:156.120000pt;}
.y214{bottom:156.420000pt;}
.y269{bottom:156.494667pt;}
.y1db{bottom:156.648000pt;}
.ycc{bottom:157.748000pt;}
.y3c5{bottom:158.000000pt;}
.y270{bottom:158.581333pt;}
.y2a2{bottom:158.610667pt;}
.y190{bottom:158.674667pt;}
.y29e{bottom:159.245333pt;}
.y2c5{bottom:159.264000pt;}
.y2cd{bottom:159.329333pt;}
.yda{bottom:159.520053pt;}
.y1ba{bottom:159.617333pt;}
.y2b1{bottom:160.402667pt;}
.y124{bottom:160.786667pt;}
.y333{bottom:161.653333pt;}
.y2a0{bottom:162.232000pt;}
.y2e8{bottom:162.720000pt;}
.y3d5{bottom:163.653333pt;}
.y2b4{bottom:163.940000pt;}
.y149{bottom:164.226667pt;}
.y3a4{bottom:164.981333pt;}
.ybe{bottom:166.006667pt;}
.y98{bottom:166.180000pt;}
.y18{bottom:166.286000pt;}
.y285{bottom:166.301333pt;}
.yfb{bottom:166.330667pt;}
.y74{bottom:166.360000pt;}
.y225{bottom:167.006667pt;}
.ycb{bottom:167.672000pt;}
.y381{bottom:167.673333pt;}
.yd9{bottom:167.680053pt;}
.y29d{bottom:168.578667pt;}
.y2cc{bottom:168.662667pt;}
.yd2{bottom:168.713333pt;}
.y213{bottom:169.092000pt;}
.y1e9{bottom:169.260000pt;}
.y1da{bottom:169.320000pt;}
.y3c{bottom:169.713333pt;}
.y2b0{bottom:169.736000pt;}
.ycd{bottom:170.240960pt;}
.y180{bottom:170.510667pt;}
.y311{bottom:170.994667pt;}
.y268{bottom:171.157333pt;}
.y1b9{bottom:171.419333pt;}
.y29f{bottom:171.565333pt;}
.y2b3{bottom:173.273333pt;}
.y332{bottom:175.653333pt;}
.y148{bottom:178.226667pt;}
.y2af{bottom:179.069333pt;}
.y17{bottom:179.624000pt;}
.y3d4{bottom:179.653333pt;}
.y1b8{bottom:179.819333pt;}
.y3a3{bottom:180.308000pt;}
.ybd{bottom:181.333333pt;}
.y97{bottom:181.506667pt;}
.y356{bottom:181.610667pt;}
.y284{bottom:181.628000pt;}
.yfa{bottom:181.657333pt;}
.y73{bottom:181.686667pt;}
.y212{bottom:181.764000pt;}
.y267{bottom:181.825333pt;}
.y1e8{bottom:181.932000pt;}
.y1d9{bottom:181.992000pt;}
.y224{bottom:182.333333pt;}
.y2b2{bottom:182.606667pt;}
.yce{bottom:182.733920pt;}
.y380{bottom:183.000000pt;}
.y3b{bottom:185.040000pt;}
.y272{bottom:185.768717pt;}
.y17f{bottom:185.837333pt;}
.y310{bottom:186.321333pt;}
.y2c4{bottom:186.713333pt;}
.y123{bottom:188.252000pt;}
.y2a1{bottom:188.309333pt;}
.y2ae{bottom:188.402667pt;}
.y331{bottom:189.653333pt;}
.y3c4{bottom:190.340000pt;}
.y2e7{bottom:190.720000pt;}
.y1b7{bottom:191.621333pt;}
.y2c3{bottom:192.042667pt;}
.y147{bottom:192.226667pt;}
.y16{bottom:192.962000pt;}
.y3a2{bottom:195.634667pt;}
.y3d3{bottom:195.653333pt;}
.y266{bottom:196.488000pt;}
.yd4{bottom:196.509333pt;}
.ybc{bottom:196.660000pt;}
.y96{bottom:196.833333pt;}
.y355{bottom:196.937333pt;}
.y283{bottom:196.954667pt;}
.yf9{bottom:196.984000pt;}
.y72{bottom:197.013333pt;}
.y223{bottom:197.660000pt;}
.y2ad{bottom:197.736000pt;}
.y37f{bottom:198.326667pt;}
.y3a{bottom:200.366667pt;}
.y17e{bottom:201.164000pt;}
.y1ca{bottom:201.346667pt;}
.y2c2{bottom:201.376000pt;}
.y30f{bottom:201.648000pt;}
.y1b6{bottom:203.423333pt;}
.y122{bottom:203.578667pt;}
.y330{bottom:203.653333pt;}
.y211{bottom:203.760000pt;}
.y2e6{bottom:204.720000pt;}
.y3c3{bottom:205.666667pt;}
.y146{bottom:206.226667pt;}
.y15{bottom:206.300000pt;}
.y2ac{bottom:207.069333pt;}
.y265{bottom:207.156000pt;}
.y3d2{bottom:209.653333pt;}
.y2c1{bottom:210.709333pt;}
.y3a1{bottom:210.961333pt;}
.ybb{bottom:211.986667pt;}
.y95{bottom:212.160000pt;}
.y354{bottom:212.264000pt;}
.y282{bottom:212.281333pt;}
.yf8{bottom:212.310667pt;}
.y71{bottom:212.340000pt;}
.yca{bottom:212.772000pt;}
.y222{bottom:212.986667pt;}
.y37e{bottom:213.653333pt;}
.y1b5{bottom:215.225333pt;}
.y39{bottom:215.693333pt;}
.y2ab{bottom:216.402667pt;}
.y210{bottom:216.432000pt;}
.y17d{bottom:216.490667pt;}
.y30e{bottom:216.974667pt;}
.y168{bottom:217.320000pt;}
.y32f{bottom:217.653333pt;}
.y2e5{bottom:218.720000pt;}
.y121{bottom:218.905333pt;}
.y14{bottom:219.638000pt;}
.y2c0{bottom:220.042667pt;}
.y145{bottom:220.226667pt;}
.yc9{bottom:220.426667pt;}
.y3c2{bottom:220.993333pt;}
.y264{bottom:221.818667pt;}
.y3d1{bottom:223.653333pt;}
.yd5{bottom:224.302293pt;}
.ydc{bottom:225.514667pt;}
.y2aa{bottom:225.736000pt;}
.y3a0{bottom:226.288000pt;}
.yba{bottom:227.313333pt;}
.y94{bottom:227.486667pt;}
.y353{bottom:227.590667pt;}
.y281{bottom:227.608000pt;}
.yf7{bottom:227.637333pt;}
.y70{bottom:227.666667pt;}
.y221{bottom:228.313333pt;}
.y37d{bottom:228.980000pt;}
.y20f{bottom:229.104000pt;}
.y2bf{bottom:229.376000pt;}
.y38{bottom:231.020000pt;}
.y167{bottom:231.320000pt;}
.y17c{bottom:231.817333pt;}
.y30d{bottom:232.301333pt;}
.y263{bottom:232.486667pt;}
.y2e4{bottom:232.720000pt;}
.y2a5{bottom:232.745333pt;}
.y13{bottom:232.976000pt;}
.y144{bottom:234.226667pt;}
.y2a9{bottom:235.069333pt;}
.y3c1{bottom:236.320000pt;}
.y32e{bottom:236.986667pt;}
.y3d0{bottom:237.653333pt;}
.y2be{bottom:238.709333pt;}
.y39f{bottom:241.614667pt;}
.y20e{bottom:241.776000pt;}
.y2a4{bottom:242.078667pt;}
.yb9{bottom:242.640000pt;}
.y93{bottom:242.813333pt;}
.y352{bottom:242.917333pt;}
.yf6{bottom:242.964000pt;}
.y6f{bottom:242.993333pt;}
.y220{bottom:243.640000pt;}
.y37c{bottom:244.306667pt;}
.y2a8{bottom:244.402667pt;}
.y1b4{bottom:244.801733pt;}
.y166{bottom:245.320000pt;}
.y12{bottom:246.314000pt;}
.y37{bottom:246.346667pt;}
.y2e3{bottom:246.720000pt;}
.y17b{bottom:247.144000pt;}
.y262{bottom:247.149333pt;}
.y30c{bottom:247.628000pt;}
.y2bd{bottom:248.042667pt;}
.y143{bottom:248.226667pt;}
.y120{bottom:249.573333pt;}
.y3c0{bottom:251.646667pt;}
.ye0{bottom:252.675947pt;}
.y1b3{bottom:253.201733pt;}
.y32d{bottom:253.626667pt;}
.y3cf{bottom:253.653333pt;}
.y2a7{bottom:253.736000pt;}
.y20d{bottom:254.448000pt;}
.yd6{bottom:256.689333pt;}
.y39e{bottom:256.941333pt;}
.y2bc{bottom:257.376000pt;}
.y261{bottom:257.817333pt;}
.yb8{bottom:257.966667pt;}
.y92{bottom:258.140000pt;}
.y351{bottom:258.244000pt;}
.y280{bottom:258.276000pt;}
.yf5{bottom:258.290667pt;}
.y6e{bottom:258.320000pt;}
.y21f{bottom:258.966667pt;}
.y165{bottom:259.320000pt;}
.y37b{bottom:259.633333pt;}
.y11{bottom:259.652000pt;}
.y2e2{bottom:260.720000pt;}
.ydf{bottom:260.835947pt;}
.y1b2{bottom:261.601733pt;}
.y36{bottom:261.673333pt;}
.y142{bottom:262.226667pt;}
.y17a{bottom:262.470667pt;}
.y30b{bottom:262.954667pt;}
.y2a6{bottom:263.069333pt;}
.y11f{bottom:264.900000pt;}
.y2bb{bottom:266.709333pt;}
.y3bf{bottom:266.973333pt;}
.y20c{bottom:267.120000pt;}
.y3ce{bottom:267.653333pt;}
.yc8{bottom:269.061333pt;}
.y1b1{bottom:270.001733pt;}
.y39d{bottom:272.268000pt;}
.y260{bottom:272.480000pt;}
.y10{bottom:272.990000pt;}
.yb7{bottom:273.293333pt;}
.y164{bottom:273.320000pt;}
.y91{bottom:273.466667pt;}
.y350{bottom:273.570667pt;}
.y27f{bottom:273.602667pt;}
.yf4{bottom:273.617333pt;}
.y6d{bottom:273.646667pt;}
.y21e{bottom:274.293333pt;}
.y2e1{bottom:274.720000pt;}
.y37a{bottom:274.960000pt;}
.y141{bottom:276.226667pt;}
.y35{bottom:277.036000pt;}
.y179{bottom:277.797333pt;}
.y30a{bottom:278.281333pt;}
.y20b{bottom:279.792000pt;}
.y1e7{bottom:279.936000pt;}
.y11e{bottom:280.226667pt;}
.y3be{bottom:282.300000pt;}
.y25f{bottom:283.148000pt;}
.yd7{bottom:286.016373pt;}
.y39c{bottom:287.594667pt;}
.yb6{bottom:288.620000pt;}
.y2e0{bottom:288.720000pt;}
.y90{bottom:288.793333pt;}
.y34f{bottom:288.897333pt;}
.y27e{bottom:288.929333pt;}
.yf3{bottom:288.944000pt;}
.y6c{bottom:288.973333pt;}
.y21d{bottom:289.620000pt;}
.y1cb{bottom:289.993067pt;}
.y32c{bottom:290.106667pt;}
.y140{bottom:290.226667pt;}
.y379{bottom:290.286667pt;}
.y34{bottom:292.362667pt;}
.y20a{bottom:292.464000pt;}
.y1e6{bottom:292.608000pt;}
.y1d8{bottom:292.656000pt;}
.y178{bottom:293.124000pt;}
.y3cd{bottom:293.168000pt;}
.y1b0{bottom:294.605333pt;}
.y163{bottom:294.880000pt;}
.y11d{bottom:295.553333pt;}
.y3bd{bottom:297.626667pt;}
.y25e{bottom:297.810667pt;}
.yf{bottom:299.653333pt;}
.y2df{bottom:302.720000pt;}
.y39b{bottom:302.921333pt;}
.y1af{bottom:303.005333pt;}
.yb5{bottom:303.946667pt;}
.y32b{bottom:304.106667pt;}
.y13f{bottom:304.226667pt;}
.y27d{bottom:304.256000pt;}
.y8f{bottom:304.270667pt;}
.y6b{bottom:304.300000pt;}
.y21c{bottom:304.946667pt;}
.y378{bottom:305.613333pt;}
.y33{bottom:307.689333pt;}
.y177{bottom:308.450667pt;}
.y25d{bottom:308.478667pt;}
.y162{bottom:308.880000pt;}
.y309{bottom:308.949333pt;}
.y11c{bottom:310.880000pt;}
.y3bc{bottom:312.953333pt;}
.y209{bottom:314.460000pt;}
.yd8{bottom:315.343413pt;}
.y2de{bottom:316.720000pt;}
.y32a{bottom:318.106667pt;}
.y13e{bottom:318.226667pt;}
.y39a{bottom:318.248000pt;}
.y2cf{bottom:318.621333pt;}
.yb4{bottom:319.273333pt;}
.y34e{bottom:319.565333pt;}
.y27c{bottom:319.582667pt;}
.y8e{bottom:319.597333pt;}
.y6a{bottom:319.626667pt;}
.y377{bottom:320.940000pt;}
.y161{bottom:322.880000pt;}
.y32{bottom:323.016000pt;}
.y308{bottom:324.276000pt;}
.y11b{bottom:326.206667pt;}
.y208{bottom:327.132000pt;}
.y3bb{bottom:328.280000pt;}
.y2dd{bottom:330.720000pt;}
.ye{bottom:331.598000pt;}
.y329{bottom:332.106667pt;}
.y13d{bottom:332.226667pt;}
.y1a9{bottom:332.315200pt;}
.y399{bottom:333.574667pt;}
.yb3{bottom:334.600000pt;}
.y34d{bottom:334.892000pt;}
.y8d{bottom:334.924000pt;}
.y69{bottom:334.953333pt;}
.y376{bottom:336.266667pt;}
.y160{bottom:336.880000pt;}
.y31{bottom:338.342667pt;}
.y176{bottom:339.118667pt;}
.y307{bottom:339.602667pt;}
.y207{bottom:339.804000pt;}
.y1a8{bottom:340.715200pt;}
.y11a{bottom:341.533333pt;}
.y27b{bottom:342.580000pt;}
.y3ba{bottom:343.606667pt;}
.y2dc{bottom:344.720000pt;}
.yd{bottom:344.936000pt;}
.y172{bottom:345.560000pt;}
.y328{bottom:346.106667pt;}
.y13c{bottom:346.226667pt;}
.y398{bottom:348.901333pt;}
.yb2{bottom:349.926667pt;}
.y34c{bottom:350.218667pt;}
.y8c{bottom:350.250667pt;}
.y68{bottom:350.280000pt;}
.y25b{bottom:350.494667pt;}
.y375{bottom:351.593333pt;}
.y206{bottom:352.476000pt;}
.y1a7{bottom:352.517200pt;}
.y1d7{bottom:352.656000pt;}
.y30{bottom:353.669333pt;}
.y306{bottom:354.929333pt;}
.y1ae{bottom:356.405333pt;}
.y119{bottom:356.860000pt;}
.y15f{bottom:358.440000pt;}
.y2db{bottom:358.720000pt;}
.y3b9{bottom:358.933333pt;}
.y171{bottom:359.560000pt;}
.y13b{bottom:360.226667pt;}
.y1a6{bottom:360.917200pt;}
.y25a{bottom:363.166667pt;}
.yc{bottom:363.606667pt;}
.y397{bottom:364.228000pt;}
.y205{bottom:365.148000pt;}
.yb1{bottom:365.253333pt;}
.y1d6{bottom:365.328000pt;}
.y34b{bottom:365.545333pt;}
.y8b{bottom:365.577333pt;}
.y67{bottom:365.606667pt;}
.yde{bottom:365.626667pt;}
.y374{bottom:366.920000pt;}
.y305{bottom:370.256000pt;}
.y118{bottom:372.186667pt;}
.y15e{bottom:372.440000pt;}
.y1a5{bottom:372.719200pt;}
.y2da{bottom:372.720000pt;}
.y170{bottom:373.560000pt;}
.y327{bottom:373.570667pt;}
.ydd{bottom:373.786667pt;}
.y13a{bottom:374.226667pt;}
.y3b8{bottom:374.260000pt;}
.y259{bottom:375.838667pt;}
.y2f{bottom:376.666667pt;}
.yb{bottom:376.944667pt;}
.y204{bottom:377.820000pt;}
.y1d5{bottom:378.000000pt;}
.y396{bottom:379.554667pt;}
.yb0{bottom:380.580000pt;}
.y34a{bottom:380.872000pt;}
.y8a{bottom:380.904000pt;}
.y27a{bottom:380.918667pt;}
.y66{bottom:380.933333pt;}
.y1a4{bottom:381.119200pt;}
.y373{bottom:382.246667pt;}
.y304{bottom:385.582667pt;}
.y15d{bottom:386.440000pt;}
.y2d9{bottom:386.720000pt;}
.y117{bottom:387.513333pt;}
.y16f{bottom:387.560000pt;}
.y139{bottom:388.226667pt;}
.y258{bottom:388.510667pt;}
.y326{bottom:388.897333pt;}
.y3b7{bottom:389.586667pt;}
.ya{bottom:390.282667pt;}
.y3ee{bottom:392.120000pt;}
.y395{bottom:394.881333pt;}
.yaf{bottom:395.906667pt;}
.y349{bottom:396.198667pt;}
.y89{bottom:396.230667pt;}
.y279{bottom:396.245333pt;}
.y65{bottom:396.260000pt;}
.y372{bottom:397.573333pt;}
.ye3{bottom:399.572267pt;}
.y203{bottom:399.816000pt;}
.y2d8{bottom:400.720000pt;}
.y303{bottom:400.909333pt;}
.y257{bottom:401.182667pt;}
.y16e{bottom:401.560000pt;}
.y1a3{bottom:402.018400pt;}
.y138{bottom:402.226667pt;}
.y116{bottom:402.840000pt;}
.y9{bottom:403.620667pt;}
.y325{bottom:404.224000pt;}
.y3b6{bottom:404.913333pt;}
.y3ed{bottom:406.120000pt;}
.y15c{bottom:408.000000pt;}
.y394{bottom:410.208000pt;}
.y1a2{bottom:410.418400pt;}
.yae{bottom:411.233333pt;}
.y348{bottom:411.525333pt;}
.y88{bottom:411.557333pt;}
.y278{bottom:411.572000pt;}
.y64{bottom:411.586667pt;}
.y1c5{bottom:411.904000pt;}
.y202{bottom:412.488000pt;}
.y371{bottom:412.900000pt;}
.y256{bottom:413.854667pt;}
.y2d7{bottom:414.720000pt;}
.y16d{bottom:415.560000pt;}
.y137{bottom:416.226667pt;}
.y302{bottom:416.236000pt;}
.y1ad{bottom:416.704000pt;}
.y8{bottom:416.958667pt;}
.y115{bottom:418.166667pt;}
.y324{bottom:419.550667pt;}
.y3b5{bottom:420.240000pt;}
.y1c4{bottom:420.304000pt;}
.y15b{bottom:422.000000pt;}
.y3ec{bottom:422.120000pt;}
.y1a1{bottom:422.220400pt;}
.y298{bottom:422.513333pt;}
.y201{bottom:425.160000pt;}
.y393{bottom:425.534667pt;}
.y255{bottom:426.526667pt;}
.yad{bottom:426.560000pt;}
.y347{bottom:426.852000pt;}
.y87{bottom:426.884000pt;}
.y277{bottom:426.898667pt;}
.y63{bottom:426.913333pt;}
.y370{bottom:428.226667pt;}
.y2d6{bottom:428.720000pt;}
.y16c{bottom:429.560000pt;}
.y136{bottom:430.226667pt;}
.y7{bottom:430.296667pt;}
.y1a0{bottom:430.620400pt;}
.y301{bottom:431.562667pt;}
.y114{bottom:433.493333pt;}
.y4f{bottom:433.499333pt;}
.y323{bottom:434.877333pt;}
.y3b4{bottom:435.566667pt;}
.y158{bottom:436.000000pt;}
.y3eb{bottom:436.120000pt;}
.y200{bottom:437.832000pt;}
.y297{bottom:437.840000pt;}
.y254{bottom:439.198667pt;}
.y242{bottom:439.270667pt;}
.y392{bottom:440.861333pt;}
.y346{bottom:442.178667pt;}
.y86{bottom:442.210667pt;}
.y276{bottom:442.225333pt;}
.y62{bottom:442.240000pt;}
.y2d5{bottom:442.720000pt;}
.y36f{bottom:443.553333pt;}
.y16b{bottom:443.560000pt;}
.y6{bottom:443.634667pt;}
.y135{bottom:444.226667pt;}
.y300{bottom:446.889333pt;}
.y113{bottom:448.820000pt;}
.y157{bottom:450.000000pt;}
.y322{bottom:450.204000pt;}
.y1ff{bottom:450.504000pt;}
.y1e5{bottom:450.612000pt;}
.y3b3{bottom:450.893333pt;}
.y19f{bottom:451.217200pt;}
.y253{bottom:451.870667pt;}
.y241{bottom:451.942667pt;}
.y3ea{bottom:452.120000pt;}
.y4e{bottom:452.170000pt;}
.y49{bottom:452.182667pt;}
.y296{bottom:453.166667pt;}
.yac{bottom:453.226667pt;}
.y391{bottom:456.188000pt;}
.y2d4{bottom:456.720000pt;}
.y5{bottom:456.972667pt;}
.y345{bottom:457.505333pt;}
.y85{bottom:457.537333pt;}
.y275{bottom:457.552000pt;}
.y16a{bottom:457.560000pt;}
.y61{bottom:457.566667pt;}
.y134{bottom:458.226667pt;}
.y36e{bottom:458.880000pt;}
.y19e{bottom:459.617200pt;}
.y2ff{bottom:462.216000pt;}
.y1fe{bottom:463.176000pt;}
.y1e4{bottom:463.284000pt;}
.y156{bottom:464.000000pt;}
.y112{bottom:464.146667pt;}
.y252{bottom:464.542667pt;}
.y240{bottom:464.614667pt;}
.y236{bottom:464.662667pt;}
.y48{bottom:465.520667pt;}
.y321{bottom:465.530667pt;}
.y3e9{bottom:466.120000pt;}
.y3b2{bottom:466.220000pt;}
.yab{bottom:467.226667pt;}
.y1ac{bottom:469.204000pt;}
.y4{bottom:470.310667pt;}
.y4d{bottom:470.840667pt;}
.y19d{bottom:471.419200pt;}
.y390{bottom:471.514667pt;}
.y169{bottom:471.560000pt;}
.y133{bottom:472.226667pt;}
.y344{bottom:472.832000pt;}
.y84{bottom:472.864000pt;}
.yf2{bottom:472.878667pt;}
.y60{bottom:472.893333pt;}
.y36d{bottom:474.206667pt;}
.y1fd{bottom:475.848000pt;}
.y1e3{bottom:475.956000pt;}
.y1d4{bottom:476.004000pt;}
.y251{bottom:477.214667pt;}
.y23f{bottom:477.286667pt;}
.y235{bottom:477.334667pt;}
.y2d3{bottom:477.386667pt;}
.y2fe{bottom:477.542667pt;}
.y155{bottom:478.000000pt;}
.y111{bottom:479.473333pt;}
.y19c{bottom:479.819200pt;}
.y320{bottom:480.857333pt;}
.yaa{bottom:481.226667pt;}
.y3b1{bottom:481.546667pt;}
.y3e8{bottom:482.120000pt;}
.y3{bottom:483.648667pt;}
.y295{bottom:483.834667pt;}
.y4c{bottom:484.178667pt;}
.y47{bottom:484.191333pt;}
.y15a{bottom:485.560000pt;}
.y132{bottom:486.226667pt;}
.y38f{bottom:486.841333pt;}
.y343{bottom:488.158667pt;}
.y83{bottom:488.190667pt;}
.yf1{bottom:488.205333pt;}
.y19b{bottom:488.219200pt;}
.y5f{bottom:488.220000pt;}
.y1fc{bottom:488.520000pt;}
.y1e2{bottom:488.628000pt;}
.y1d3{bottom:488.676000pt;}
.y36c{bottom:489.533333pt;}
.y250{bottom:489.886667pt;}
.y23e{bottom:489.958667pt;}
.y234{bottom:490.006667pt;}
.y2d2{bottom:491.386667pt;}
.y2fd{bottom:492.869333pt;}
.ya9{bottom:495.226667pt;}
.y31f{bottom:496.184000pt;}
.y3b0{bottom:496.873333pt;}
.y2{bottom:496.986667pt;}
.y46{bottom:497.529333pt;}
.y3e7{bottom:498.120000pt;}
.y294{bottom:499.161333pt;}
.y154{bottom:499.560000pt;}
.y131{bottom:500.226667pt;}
.y110{bottom:501.473333pt;}
.y38e{bottom:502.168000pt;}
.y4b{bottom:502.849333pt;}
.y342{bottom:503.485333pt;}
.y82{bottom:503.517333pt;}
.yf0{bottom:503.532000pt;}
.y5e{bottom:503.546667pt;}
.y36b{bottom:504.860000pt;}
.y19a{bottom:507.514000pt;}
.y2fc{bottom:508.196000pt;}
.ya8{bottom:509.226667pt;}
.y1fb{bottom:510.516000pt;}
.y31e{bottom:511.510667pt;}
.y24f{bottom:511.882667pt;}
.y2d1{bottom:512.053333pt;}
.y3e6{bottom:512.120000pt;}
.y3af{bottom:512.200000pt;}
.y153{bottom:513.560000pt;}
.y130{bottom:514.226667pt;}
.y293{bottom:514.488000pt;}
.y4a{bottom:516.187333pt;}
.y45{bottom:516.200000pt;}
.y10f{bottom:516.800000pt;}
.y38d{bottom:517.494667pt;}
.y341{bottom:518.812000pt;}
.y81{bottom:518.844000pt;}
.yef{bottom:518.858667pt;}
.y5d{bottom:518.873333pt;}
.y199{bottom:519.316000pt;}
.y36a{bottom:520.186667pt;}
.y1fa{bottom:523.188000pt;}
.ya7{bottom:523.226667pt;}
.y2fb{bottom:523.522667pt;}
.y1{bottom:523.653333pt;}
.y24e{bottom:524.554667pt;}
.y3e5{bottom:526.120000pt;}
.y31d{bottom:526.837333pt;}
.y3ae{bottom:527.526667pt;}
.y1ab{bottom:529.194400pt;}
.y292{bottom:529.814667pt;}
.y198{bottom:531.118000pt;}
.y10e{bottom:532.126667pt;}
.y38c{bottom:532.821333pt;}
.y340{bottom:534.138667pt;}
.y80{bottom:534.170667pt;}
.yee{bottom:534.185333pt;}
.y5c{bottom:534.200000pt;}
.y152{bottom:535.120000pt;}
.y369{bottom:535.513333pt;}
.y12f{bottom:535.786667pt;}
.y1f9{bottom:535.860000pt;}
.ya6{bottom:537.226667pt;}
.y50{bottom:537.546667pt;}
.y1aa{bottom:537.594400pt;}
.y2fa{bottom:538.849333pt;}
.y3e4{bottom:540.120000pt;}
.y31c{bottom:542.164000pt;}
.y3ad{bottom:542.853333pt;}
.y197{bottom:542.920000pt;}
.y10d{bottom:547.453333pt;}
.y1f8{bottom:548.532000pt;}
.y159{bottom:549.120000pt;}
.y33f{bottom:549.465333pt;}
.y7f{bottom:549.497333pt;}
.yed{bottom:549.512000pt;}
.y5b{bottom:549.526667pt;}
.y24d{bottom:549.898667pt;}
.y368{bottom:550.840000pt;}
.ya5{bottom:551.226667pt;}
.y2f9{bottom:554.176000pt;}
.y196{bottom:554.722000pt;}
.y38b{bottom:555.716000pt;}
.y3e3{bottom:556.120000pt;}
.y31b{bottom:557.490667pt;}
.y3ac{bottom:558.180000pt;}
.y291{bottom:560.482667pt;}
.y1f7{bottom:561.204000pt;}
.y24c{bottom:562.570667pt;}
.y23d{bottom:562.630667pt;}
.y233{bottom:562.678667pt;}
.y33e{bottom:564.792000pt;}
.y7e{bottom:564.824000pt;}
.yec{bottom:564.838667pt;}
.y5a{bottom:564.853333pt;}
.ya4{bottom:565.226667pt;}
.y367{bottom:566.166667pt;}
.y195{bottom:566.524000pt;}
.y2f8{bottom:569.502667pt;}
.y3e2{bottom:570.120000pt;}
.y12e{bottom:571.346667pt;}
.y3ab{bottom:573.506667pt;}
.y1f6{bottom:573.876000pt;}
.y24b{bottom:575.242667pt;}
.y23c{bottom:575.302667pt;}
.y232{bottom:575.350667pt;}
.y10c{bottom:578.120000pt;}
.ya3{bottom:579.226667pt;}
.y33d{bottom:580.118667pt;}
.yeb{bottom:580.165333pt;}
.y59{bottom:580.180000pt;}
.y31a{bottom:580.385333pt;}
.y366{bottom:581.493333pt;}
.y3e1{bottom:584.120000pt;}
.y2f7{bottom:584.829333pt;}
.y38a{bottom:586.164000pt;}
.y1f5{bottom:586.548000pt;}
.y7d{bottom:587.821333pt;}
.y3aa{bottom:588.833333pt;}
.y10b{bottom:592.120000pt;}
.y2e{bottom:592.786667pt;}
.y12d{bottom:592.906667pt;}
.ya2{bottom:593.226667pt;}
.yea{bottom:595.492000pt;}
.y58{bottom:595.506667pt;}
.y365{bottom:596.820000pt;}
.y24a{bottom:597.238667pt;}
.y290{bottom:598.821333pt;}
.y1f4{bottom:599.220000pt;}
.y3e0{bottom:600.120000pt;}
.y2f6{bottom:600.156000pt;}
.y389{bottom:601.490667pt;}
.y33c{bottom:603.453333pt;}
.y3a9{bottom:604.160000pt;}
.y2d{bottom:606.083333pt;}
.y10a{bottom:606.120000pt;}
.ya1{bottom:607.226667pt;}
.y249{bottom:609.910667pt;}
.ye9{bottom:610.818667pt;}
.y57{bottom:610.833333pt;}
.y1f3{bottom:611.892000pt;}
.y364{bottom:612.146667pt;}
.y3df{bottom:614.120000pt;}
.y28f{bottom:614.148000pt;}
.y2f5{bottom:615.482667pt;}
.y3a8{bottom:619.486667pt;}
.y109{bottom:620.120000pt;}
.ya0{bottom:621.226667pt;}
.y248{bottom:622.582667pt;}
.y1f2{bottom:624.564000pt;}
.y2c{bottom:624.754000pt;}
.y24{bottom:624.754667pt;}
.ye8{bottom:626.145333pt;}
.y56{bottom:626.160000pt;}
.y363{bottom:627.473333pt;}
.y28e{bottom:629.474667pt;}
.y3de{bottom:630.120000pt;}
.y2f4{bottom:630.809333pt;}
.y108{bottom:634.120000pt;}
.y3a7{bottom:634.813333pt;}
.y9f{bottom:635.226667pt;}
.y247{bottom:635.254667pt;}
.y23b{bottom:635.302667pt;}
.y1f1{bottom:637.236000pt;}
.y1e1{bottom:637.296000pt;}
.y1d2{bottom:637.344000pt;}
.y23{bottom:637.426667pt;}
.y2b{bottom:638.092000pt;}
.ye7{bottom:641.472000pt;}
.y55{bottom:641.486667pt;}
.y362{bottom:642.800000pt;}
.y3dd{bottom:644.120000pt;}
.y2f3{bottom:646.136000pt;}
.y246{bottom:647.926667pt;}
.y23a{bottom:647.974667pt;}
.y107{bottom:648.120000pt;}
.y1f0{bottom:649.908000pt;}
.y1e0{bottom:649.968000pt;}
.y1d1{bottom:650.016000pt;}
.y3a6{bottom:650.140000pt;}
.y2a{bottom:651.430000pt;}
.y22{bottom:653.426667pt;}
.y175{bottom:656.798667pt;}
.y54{bottom:656.813333pt;}
.y361{bottom:658.126667pt;}
.y3dc{bottom:660.120000pt;}
.y245{bottom:660.598667pt;}
.y239{bottom:660.646667pt;}
.y2f2{bottom:661.462667pt;}
.y106{bottom:662.120000pt;}
.y1ef{bottom:662.580000pt;}
.y1df{bottom:662.640000pt;}
.y1d0{bottom:662.688000pt;}
.y29{bottom:664.768000pt;}
.y3a5{bottom:665.466667pt;}
.y174{bottom:672.125333pt;}
.y53{bottom:672.140000pt;}
.y244{bottom:673.270667pt;}
.y238{bottom:673.318667pt;}
.y231{bottom:673.354667pt;}
.y360{bottom:673.453333pt;}
.y3db{bottom:674.120000pt;}
.y1ee{bottom:675.252000pt;}
.y1de{bottom:675.312000pt;}
.y1cf{bottom:675.360000pt;}
.y105{bottom:676.120000pt;}
.y2f1{bottom:676.789333pt;}
.y28{bottom:678.106000pt;}
.y243{bottom:685.942667pt;}
.y237{bottom:685.990667pt;}
.y230{bottom:686.026667pt;}
.y173{bottom:687.452000pt;}
.y52{bottom:687.466667pt;}
.y104{bottom:690.120000pt;}
.y27{bottom:691.444000pt;}
.y21{bottom:693.426667pt;}
.y1ce{bottom:693.786667pt;}
.y51{bottom:702.793333pt;}
.y103{bottom:704.120000pt;}
.y26{bottom:704.782000pt;}
.y22f{bottom:705.120000pt;}
.y1cd{bottom:711.573333pt;}
.y20{bottom:714.760000pt;}
.y25{bottom:718.120000pt;}
.y22e{bottom:722.906667pt;}
.y1cc{bottom:725.573333pt;}
.y1f{bottom:760.093333pt;}
.hb{height:34.040623pt;}
.hc{height:34.042500pt;}
.h12{height:35.043750pt;}
.h16{height:38.937500pt;}
.h19{height:38.938436pt;}
.h18{height:38.940493pt;}
.h17{height:39.052502pt;}
.h13{height:40.050000pt;}
.hf{height:44.500000pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.h14{height:52.032000pt;}
.h1{height:54.061333pt;}
.h1b{height:54.953500pt;}
.h9{height:56.906667pt;}
.hd{height:57.813333pt;}
.h6{height:62.597333pt;}
.h7{height:63.450667pt;}
.h8{height:63.594667pt;}
.h4{height:68.288000pt;}
.h10{height:89.000000pt;}
.h3{height:91.050667pt;}
.he{height:168.106667pt;}
.h15{height:359.840000pt;}
.h1a{height:364.013333pt;}
.ha{height:430.000000pt;}
.h11{height:588.026667pt;}
.h0{height:801.333333pt;}
.w1{width:434.640000pt;}
.w2{width:434.653333pt;}
.w3{width:463.320000pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x20{left:12.284747pt;}
.x1f{left:13.198667pt;}
.x21{left:15.189707pt;}
.x22{left:20.599787pt;}
.x39{left:31.660000pt;}
.x4d{left:35.972397pt;}
.x59{left:37.548000pt;}
.x4e{left:44.800000pt;}
.x3a{left:47.855200pt;}
.x5a{left:50.904000pt;}
.x5b{left:52.724000pt;}
.x4c{left:54.201333pt;}
.x2f{left:59.246667pt;}
.x2b{left:61.066667pt;}
.x1{left:62.400000pt;}
.x3{left:63.480000pt;}
.x26{left:69.066667pt;}
.x61{left:75.733333pt;}
.x32{left:77.360000pt;}
.x42{left:80.454667pt;}
.xb{left:82.400000pt;}
.x4{left:83.485333pt;}
.x60{left:85.253333pt;}
.x1e{left:87.409333pt;}
.x6{left:88.728667pt;}
.x38{left:91.365333pt;}
.x43{left:92.896000pt;}
.x37{left:95.948400pt;}
.x7{left:100.420000pt;}
.xc{left:102.400000pt;}
.x1b{left:104.299840pt;}
.x46{left:107.960000pt;}
.x2d{left:109.290667pt;}
.x40{left:110.773333pt;}
.x45{left:115.221333pt;}
.x1c{left:116.360320pt;}
.x44{left:119.365333pt;}
.xd{left:122.400000pt;}
.x19{left:126.748000pt;}
.x2e{left:133.888000pt;}
.x56{left:134.932000pt;}
.x18{left:138.808000pt;}
.x1a{left:141.101440pt;}
.x41{left:144.528000pt;}
.x49{left:145.834667pt;}
.x24{left:146.840000pt;}
.x3e{left:151.236000pt;}
.x3b{left:152.292000pt;}
.x5f{left:157.565333pt;}
.x47{left:158.546667pt;}
.x4f{left:161.420000pt;}
.x48{left:173.592000pt;}
.x8{left:180.828000pt;}
.x17{left:187.633333pt;}
.x4a{left:189.412000pt;}
.x5{left:190.733333pt;}
.x35{left:191.803600pt;}
.x2c{left:193.280000pt;}
.xf{left:195.508000pt;}
.x36{left:196.894400pt;}
.xe{left:200.133333pt;}
.x58{left:201.842667pt;}
.x57{left:205.034667pt;}
.x54{left:205.986667pt;}
.x55{left:207.144000pt;}
.x25{left:213.586667pt;}
.x27{left:215.040000pt;}
.x16{left:222.313333pt;}
.x3c{left:223.560000pt;}
.x3f{left:237.612000pt;}
.x3d{left:238.668000pt;}
.x10{left:243.961333pt;}
.x11{left:246.417333pt;}
.x15{left:256.993333pt;}
.xa{left:258.440000pt;}
.x33{left:262.036000pt;}
.x34{left:267.134800pt;}
.x51{left:287.840000pt;}
.x62{left:289.733333pt;}
.x9{left:291.471333pt;}
.x53{left:295.586667pt;}
.x52{left:298.704000pt;}
.x23{left:308.242667pt;}
.x50{left:309.437333pt;}
.x28{left:310.666667pt;}
.x12{left:318.578667pt;}
.x29{left:324.000000pt;}
.x13{left:331.838667pt;}
.x4b{left:341.222667pt;}
.x14{left:345.098667pt;}
.x2{left:363.320000pt;}
.x1d{left:366.856000pt;}
.x31{left:374.246667pt;}
.x30{left:395.902667pt;}
.x2a{left:406.306667pt;}
.x5c{left:412.841333pt;}
.x5d{left:414.390667pt;}
.x5e{left:423.892000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  