
    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_72d38b154a9948cd6029f9d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_ccfbcdd26a7d7028a57fc99e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_0a5274467c9469a50a09b2e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_35477724b7b82e497e65a1ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.780000px;}
.v4{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:21.690000px;}
.ls21{letter-spacing:-5.871000px;}
.ls22{letter-spacing:-5.814000px;}
.ls18{letter-spacing:-5.700000px;}
.ls26{letter-spacing:-5.472000px;}
.ls25{letter-spacing:-5.244000px;}
.ls1e{letter-spacing:-4.731000px;}
.ls1d{letter-spacing:-4.560000px;}
.ls20{letter-spacing:-3.306000px;}
.ls2b{letter-spacing:-2.862000px;}
.ls15{letter-spacing:-2.565000px;}
.ls16{letter-spacing:-2.394000px;}
.ls44{letter-spacing:-1.980000px;}
.ls28{letter-spacing:-1.944000px;}
.ls3f{letter-spacing:-1.848000px;}
.ls41{letter-spacing:-1.782000px;}
.ls40{letter-spacing:-1.716000px;}
.ls24{letter-spacing:-1.710000px;}
.lsdc{letter-spacing:-1.650000px;}
.ls10{letter-spacing:-1.596000px;}
.ls60{letter-spacing:-1.584000px;}
.ls13{letter-spacing:-1.539000px;}
.ls7d{letter-spacing:-1.518000px;}
.ls47{letter-spacing:-1.452000px;}
.ls54{letter-spacing:-1.386000px;}
.ls11{letter-spacing:-1.368000px;}
.lsa0{letter-spacing:-1.350000px;}
.ls27{letter-spacing:-1.344000px;}
.lse0{letter-spacing:-1.320000px;}
.ls1c{letter-spacing:-1.311000px;}
.ls64{letter-spacing:-1.296000px;}
.ls63{letter-spacing:-1.255500px;}
.ls3c{letter-spacing:-1.254000px;}
.ls2d{letter-spacing:-1.242000px;}
.ls8f{letter-spacing:-1.200000px;}
.ls4c{letter-spacing:-1.188000px;}
.ls1b{letter-spacing:-1.140000px;}
.ls94{letter-spacing:-1.134000px;}
.ls8d{letter-spacing:-1.122000px;}
.lscd{letter-spacing:-1.093500px;}
.ls19{letter-spacing:-1.083000px;}
.lscc{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.056000px;}
.ls1a{letter-spacing:-1.026000px;}
.ls46{letter-spacing:-0.990000px;}
.ls29{letter-spacing:-0.972000px;}
.ls1f{letter-spacing:-0.969000px;}
.ls62{letter-spacing:-0.931500px;}
.ls43{letter-spacing:-0.924000px;}
.ls2e{letter-spacing:-0.918000px;}
.lsf{letter-spacing:-0.912000px;}
.ls6f{letter-spacing:-0.891000px;}
.ls87{letter-spacing:-0.877800px;}
.ls6e{letter-spacing:-0.864000px;}
.ls51{letter-spacing:-0.858000px;}
.lsb5{letter-spacing:-0.850500px;}
.lsd1{letter-spacing:-0.840000px;}
.ls96{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.798000px;}
.ls4d{letter-spacing:-0.792000px;}
.lsc9{letter-spacing:-0.769500px;}
.ls2f{letter-spacing:-0.768000px;}
.ls49{letter-spacing:-0.756000px;}
.ls9e{letter-spacing:-0.739200px;}
.lsc3{letter-spacing:-0.729000px;}
.ls4e{letter-spacing:-0.726000px;}
.ls8e{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.684000px;}
.ls52{letter-spacing:-0.660000px;}
.ls75{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.627000px;}
.lsc2{letter-spacing:-0.600600px;}
.ls8a{letter-spacing:-0.600000px;}
.ls2a{letter-spacing:-0.594000px;}
.lsee{letter-spacing:-0.570000px;}
.ls9f{letter-spacing:-0.554400px;}
.ls7f{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.528000px;}
.ls73{letter-spacing:-0.486000px;}
.lsc8{letter-spacing:-0.480000px;}
.ls42{letter-spacing:-0.462000px;}
.lse{letter-spacing:-0.456000px;}
.lsb8{letter-spacing:-0.445500px;}
.ls81{letter-spacing:-0.432000px;}
.lsd4{letter-spacing:-0.420000px;}
.lsc0{letter-spacing:-0.415800px;}
.lseb{letter-spacing:-0.405000px;}
.lsed{letter-spacing:-0.399000px;}
.ls45{letter-spacing:-0.396000px;}
.ls61{letter-spacing:-0.378000px;}
.lsb6{letter-spacing:-0.364500px;}
.ls8b{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.342000px;}
.ls3a{letter-spacing:-0.330000px;}
.ls80{letter-spacing:-0.324000px;}
.lscb{letter-spacing:-0.300000px;}
.lsdb{letter-spacing:-0.283500px;}
.ls6d{letter-spacing:-0.277200px;}
.ls38{letter-spacing:-0.270000px;}
.ls39{letter-spacing:-0.264000px;}
.lsda{letter-spacing:-0.243000px;}
.ls3b{letter-spacing:-0.231000px;}
.ls72{letter-spacing:-0.216000px;}
.lsab{letter-spacing:-0.202500px;}
.ls53{letter-spacing:-0.198000px;}
.ls71{letter-spacing:-0.162000px;}
.lsb4{letter-spacing:-0.138600px;}
.ls4f{letter-spacing:-0.132000px;}
.ls90{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.099000px;}
.lsb9{letter-spacing:-0.081000px;}
.ls3d{letter-spacing:-0.066000px;}
.ls88{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.057000px;}
.ls70{letter-spacing:-0.054000px;}
.lsea{letter-spacing:-0.049500px;}
.ls48{letter-spacing:-0.048000px;}
.ls93{letter-spacing:-0.046200px;}
.ls89{letter-spacing:-0.045000px;}
.ls84{letter-spacing:-0.040500px;}
.lsc{letter-spacing:0.000000px;}
.lsd2{letter-spacing:0.040500px;}
.ls9d{letter-spacing:0.046200px;}
.ls7e{letter-spacing:0.049500px;}
.ls5c{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.057000px;}
.lsca{letter-spacing:0.060000px;}
.ls4a{letter-spacing:0.066000px;}
.ls9b{letter-spacing:0.081000px;}
.lsdd{letter-spacing:0.092400px;}
.ls91{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.114000px;}
.ls8c{letter-spacing:0.120000px;}
.lsa7{letter-spacing:0.121500px;}
.ls37{letter-spacing:0.132000px;}
.lsb7{letter-spacing:0.138600px;}
.ls6c{letter-spacing:0.162000px;}
.ls69{letter-spacing:0.174000px;}
.ls5b{letter-spacing:0.180000px;}
.ls99{letter-spacing:0.184800px;}
.ls30{letter-spacing:0.198000px;}
.lsa4{letter-spacing:0.202500px;}
.ls67{letter-spacing:0.216000px;}
.lsc1{letter-spacing:0.231000px;}
.lsc5{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.243000px;}
.ls5a{letter-spacing:0.246000px;}
.lse7{letter-spacing:0.252000px;}
.ls32{letter-spacing:0.264000px;}
.ls6a{letter-spacing:0.270000px;}
.lsaa{letter-spacing:0.282000px;}
.lsa9{letter-spacing:0.283500px;}
.lsd5{letter-spacing:0.323400px;}
.ls6b{letter-spacing:0.324000px;}
.ls76{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.342000px;}
.lsd6{letter-spacing:0.360000px;}
.lsaf{letter-spacing:0.364500px;}
.lsc4{letter-spacing:0.369600px;}
.ls5e{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.396000px;}
.lsbe{letter-spacing:0.405000px;}
.ls85{letter-spacing:0.420000px;}
.ls9a{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.456000px;}
.ls35{letter-spacing:0.462000px;}
.lsc7{letter-spacing:0.480000px;}
.ls7c{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.513000px;}
.lsb0{letter-spacing:0.526500px;}
.ls4b{letter-spacing:0.528000px;}
.ls92{letter-spacing:0.540000px;}
.ls95{letter-spacing:0.567000px;}
.ls14{letter-spacing:0.570000px;}
.ls66{letter-spacing:0.594000px;}
.lsd7{letter-spacing:0.600000px;}
.lscf{letter-spacing:0.607500px;}
.ls0{letter-spacing:0.627000px;}
.lsac{letter-spacing:0.648000px;}
.ls65{letter-spacing:0.660000px;}
.lsae{letter-spacing:0.702000px;}
.lsc6{letter-spacing:0.720000px;}
.ls97{letter-spacing:0.726000px;}
.ls5d{letter-spacing:0.756000px;}
.ls86{letter-spacing:0.780000px;}
.ls36{letter-spacing:0.792000px;}
.lsbc{letter-spacing:0.810000px;}
.lsa5{letter-spacing:0.831600px;}
.lse6{letter-spacing:0.850500px;}
.ls33{letter-spacing:0.858000px;}
.ls79{letter-spacing:0.864000px;}
.ls78{letter-spacing:0.918000px;}
.ls34{letter-spacing:0.924000px;}
.ls5{letter-spacing:0.969000px;}
.lse4{letter-spacing:0.972000px;}
.ls57{letter-spacing:0.990000px;}
.ls82{letter-spacing:1.012500px;}
.ls58{letter-spacing:1.056000px;}
.lsd9{letter-spacing:1.062600px;}
.ls98{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.083000px;}
.ls59{letter-spacing:1.122000px;}
.ls9c{letter-spacing:1.134000px;}
.lsd3{letter-spacing:1.155000px;}
.ls77{letter-spacing:1.188000px;}
.lsad{letter-spacing:1.215000px;}
.lsb1{letter-spacing:1.242000px;}
.lsbf{letter-spacing:1.254000px;}
.lsb3{letter-spacing:1.255500px;}
.lsb2{letter-spacing:1.296000px;}
.lsa8{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.350000px;}
.ls7b{letter-spacing:1.377000px;}
.lsdf{letter-spacing:1.386000px;}
.ls83{letter-spacing:1.404000px;}
.ls56{letter-spacing:1.452000px;}
.ls50{letter-spacing:1.518000px;}
.lsa1{letter-spacing:1.584000px;}
.lsd0{letter-spacing:1.650000px;}
.ls2{letter-spacing:1.653000px;}
.lsd8{letter-spacing:1.716000px;}
.lsa6{letter-spacing:1.782000px;}
.lse8{letter-spacing:1.836000px;}
.lsa3{letter-spacing:1.848000px;}
.lse9{letter-spacing:1.863000px;}
.lsbd{letter-spacing:1.914000px;}
.lsbb{letter-spacing:2.112000px;}
.lsa2{letter-spacing:2.244000px;}
.lsec{letter-spacing:2.484000px;}
.ls8{letter-spacing:12.939000px;}
.lsce{letter-spacing:13.554000px;}
.lse1{letter-spacing:14.652000px;}
.lse2{letter-spacing:14.916000px;}
.lsba{letter-spacing:15.576000px;}
.lse3{letter-spacing:17.886000px;}
.lse5{letter-spacing:18.282000px;}
.lsde{letter-spacing:18.546000px;}
.lsa{letter-spacing:47.952000px;}
.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;}
}
.ws1b{word-spacing:-22.656000px;}
.wsf7{word-spacing:-18.282000px;}
.ws151{word-spacing:-18.216000px;}
.ws154{word-spacing:-18.150000px;}
.wsf2{word-spacing:-18.084000px;}
.ws79{word-spacing:-18.018000px;}
.ws78{word-spacing:-17.952000px;}
.ws11f{word-spacing:-17.754000px;}
.ws15b{word-spacing:-17.688000px;}
.ws86{word-spacing:-17.622000px;}
.wsf3{word-spacing:-17.556000px;}
.wsf6{word-spacing:-17.490000px;}
.ws3d{word-spacing:-17.424000px;}
.ws3c{word-spacing:-17.358000px;}
.wsf5{word-spacing:-17.292000px;}
.ws155{word-spacing:-17.226000px;}
.wsf4{word-spacing:-17.160000px;}
.wse0{word-spacing:-17.094000px;}
.ws87{word-spacing:-17.028000px;}
.ws3f{word-spacing:-16.962000px;}
.wsde{word-spacing:-16.896000px;}
.ws120{word-spacing:-16.830000px;}
.ws3a{word-spacing:-16.764000px;}
.ws6a{word-spacing:-16.698000px;}
.ws65{word-spacing:-16.632000px;}
.ws98{word-spacing:-16.566000px;}
.ws36{word-spacing:-16.500000px;}
.ws68{word-spacing:-16.434000px;}
.ws6c{word-spacing:-16.368000px;}
.ws7a{word-spacing:-16.302000px;}
.ws37{word-spacing:-16.236000px;}
.ws44{word-spacing:-16.170000px;}
.ws43{word-spacing:-16.104000px;}
.ws12b{word-spacing:-16.080000px;}
.ws42{word-spacing:-16.038000px;}
.ws16f{word-spacing:-15.984000px;}
.ws106{word-spacing:-15.972000px;}
.ws100{word-spacing:-15.906000px;}
.ws74{word-spacing:-15.840000px;}
.ws146{word-spacing:-15.780000px;}
.ws6b{word-spacing:-15.774000px;}
.ws7c{word-spacing:-15.708000px;}
.ws123{word-spacing:-15.642000px;}
.ws141{word-spacing:-15.576000px;}
.ws75{word-spacing:-15.510000px;}
.ws12c{word-spacing:-15.480000px;}
.ws165{word-spacing:-15.444000px;}
.wsdc{word-spacing:-15.378000px;}
.ws63{word-spacing:-15.312000px;}
.ws3e{word-spacing:-15.246000px;}
.ws132{word-spacing:-15.240000px;}
.ws164{word-spacing:-15.180000px;}
.wsc0{word-spacing:-15.000000px;}
.wsec{word-spacing:-14.982000px;}
.wsc1{word-spacing:-14.940000px;}
.wsad{word-spacing:-14.916000px;}
.wsb4{word-spacing:-14.904000px;}
.wsd2{word-spacing:-14.880000px;}
.ws15c{word-spacing:-14.850000px;}
.ws110{word-spacing:-14.742000px;}
.ws40{word-spacing:-14.718000px;}
.ws145{word-spacing:-14.700000px;}
.wsb7{word-spacing:-14.688000px;}
.ws128{word-spacing:-14.652000px;}
.wsef{word-spacing:-14.634000px;}
.ws9{word-spacing:-14.535000px;}
.wsd0{word-spacing:-14.460000px;}
.wscf{word-spacing:-14.400000px;}
.wsaf{word-spacing:-14.364000px;}
.ws11b{word-spacing:-14.310000px;}
.ws89{word-spacing:-14.256000px;}
.ws6{word-spacing:-14.250000px;}
.ws161{word-spacing:-14.202000px;}
.ws1{word-spacing:-14.193000px;}
.ws105{word-spacing:-14.148000px;}
.ws173{word-spacing:-14.136000px;}
.ws129{word-spacing:-14.094000px;}
.wse3{word-spacing:-14.040000px;}
.wsb8{word-spacing:-13.986000px;}
.ws11c{word-spacing:-13.932000px;}
.ws8{word-spacing:-13.908000px;}
.wsa4{word-spacing:-13.878000px;}
.ws12a{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.851000px;}
.wsa3{word-spacing:-13.824000px;}
.wsd1{word-spacing:-13.800000px;}
.ws2{word-spacing:-13.794000px;}
.ws102{word-spacing:-13.770000px;}
.wsfa{word-spacing:-13.716000px;}
.wsc4{word-spacing:-13.662000px;}
.ws11{word-spacing:-13.623000px;}
.ws10c{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.566000px;}
.ws88{word-spacing:-13.554000px;}
.ws1f{word-spacing:-13.500000px;}
.wsa1{word-spacing:-13.446000px;}
.wsa5{word-spacing:-13.392000px;}
.ws115{word-spacing:-13.338000px;}
.wsc3{word-spacing:-13.284000px;}
.ws15{word-spacing:-13.281000px;}
.ws8a{word-spacing:-13.230000px;}
.wsd{word-spacing:-13.224000px;}
.ws114{word-spacing:-13.176000px;}
.wsc{word-spacing:-13.167000px;}
.ws8b{word-spacing:-13.122000px;}
.wse{word-spacing:-13.110000px;}
.ws11d{word-spacing:-13.068000px;}
.ws159{word-spacing:-13.014000px;}
.wsb0{word-spacing:-12.960000px;}
.ws10{word-spacing:-12.939000px;}
.ws1e{word-spacing:-12.906000px;}
.wsa{word-spacing:-12.882000px;}
.wsc5{word-spacing:-12.852000px;}
.ws21{word-spacing:-12.798000px;}
.ws47{word-spacing:-12.744000px;}
.ws4{word-spacing:-12.711000px;}
.wse4{word-spacing:-12.690000px;}
.ws3{word-spacing:-12.654000px;}
.ws9e{word-spacing:-12.636000px;}
.ws23{word-spacing:-12.582000px;}
.ws18{word-spacing:-12.540000px;}
.ws1d{word-spacing:-12.528000px;}
.ws134{word-spacing:-12.420000px;}
.wsf1{word-spacing:-12.381600px;}
.ws13e{word-spacing:-12.375000px;}
.wse1{word-spacing:-12.366000px;}
.ws168{word-spacing:-12.325500px;}
.wsa0{word-spacing:-12.312000px;}
.ws22{word-spacing:-12.258000px;}
.ws7{word-spacing:-12.141000px;}
.wsfb{word-spacing:-12.012000px;}
.ws16e{word-spacing:-11.988000px;}
.ws76{word-spacing:-11.979000px;}
.ws127{word-spacing:-11.919600px;}
.ws14b{word-spacing:-11.873400px;}
.ws121{word-spacing:-11.781000px;}
.wse8{word-spacing:-11.734800px;}
.ws113{word-spacing:-11.688600px;}
.ws5{word-spacing:-11.685000px;}
.ws15e{word-spacing:-11.642400px;}
.wsea{word-spacing:-11.596200px;}
.ws1c{word-spacing:-11.556000px;}
.ws9a{word-spacing:-11.550000px;}
.wsdd{word-spacing:-11.503800px;}
.wsb3{word-spacing:-11.502000px;}
.ws107{word-spacing:-11.411400px;}
.ws111{word-spacing:-11.380500px;}
.ws39{word-spacing:-11.319000px;}
.ws99{word-spacing:-11.272800px;}
.wsb2{word-spacing:-11.137500px;}
.wsed{word-spacing:-10.995600px;}
.ws166{word-spacing:-10.975500px;}
.ws124{word-spacing:-10.949400px;}
.ws14{word-spacing:-10.944000px;}
.ws14e{word-spacing:-10.920000px;}
.wseb{word-spacing:-10.810800px;}
.ws13f{word-spacing:-10.732500px;}
.wse2{word-spacing:-10.692000px;}
.wsbf{word-spacing:-10.672200px;}
.ws10f{word-spacing:-10.651500px;}
.ws20{word-spacing:-10.638000px;}
.ws119{word-spacing:-10.530000px;}
.wsd3{word-spacing:-10.500000px;}
.ws10e{word-spacing:-10.489500px;}
.ws101{word-spacing:-10.408500px;}
.ws14f{word-spacing:-10.368000px;}
.wsfd{word-spacing:-10.327500px;}
.wsf8{word-spacing:-10.246500px;}
.ws10d{word-spacing:-10.206000px;}
.ws14c{word-spacing:-10.165500px;}
.wsa6{word-spacing:-10.125000px;}
.wsb6{word-spacing:-10.084500px;}
.ws135{word-spacing:-10.044000px;}
.ws137{word-spacing:-9.963000px;}
.ws156{word-spacing:-9.882000px;}
.ws157{word-spacing:-9.841500px;}
.wsb1{word-spacing:-9.801000px;}
.ws10b{word-spacing:-9.760500px;}
.ws16d{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.690000px;}
.ws116{word-spacing:-9.679500px;}
.ws16a{word-spacing:-9.639000px;}
.ws13{word-spacing:-9.519000px;}
.ws109{word-spacing:-9.477000px;}
.ws16c{word-spacing:-9.274500px;}
.ws108{word-spacing:-9.234000px;}
.ws8c{word-spacing:-9.193500px;}
.ws122{word-spacing:-9.153000px;}
.ws19{word-spacing:-9.006000px;}
.ws8d{word-spacing:-8.869500px;}
.ws1a{word-spacing:-8.778000px;}
.wsb{word-spacing:-8.550000px;}
.ws17{word-spacing:-8.436000px;}
.ws16{word-spacing:-8.379000px;}
.ws35{word-spacing:-7.872000px;}
.ws140{word-spacing:-1.188000px;}
.ws153{word-spacing:-0.924000px;}
.ws85{word-spacing:-0.858000px;}
.ws71{word-spacing:-0.792000px;}
.ws56{word-spacing:-0.726000px;}
.ws12e{word-spacing:-0.720000px;}
.wsb5{word-spacing:-0.702000px;}
.ws58{word-spacing:-0.660000px;}
.wsac{word-spacing:-0.648000px;}
.ws148{word-spacing:-0.600000px;}
.ws4d{word-spacing:-0.594000px;}
.wsa9{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.528000px;}
.ws49{word-spacing:-0.486000px;}
.ws13c{word-spacing:-0.480000px;}
.ws6d{word-spacing:-0.462000px;}
.ws93{word-spacing:-0.432000px;}
.wsc9{word-spacing:-0.420000px;}
.ws34{word-spacing:-0.399000px;}
.ws6e{word-spacing:-0.396000px;}
.ws48{word-spacing:-0.378000px;}
.wsd7{word-spacing:-0.360000px;}
.ws174{word-spacing:-0.342000px;}
.ws38{word-spacing:-0.330000px;}
.wsa2{word-spacing:-0.324000px;}
.wsd6{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.264000px;}
.wsda{word-spacing:-0.240000px;}
.wsaa{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.198000px;}
.wsc8{word-spacing:-0.180000px;}
.ws175{word-spacing:-0.171000px;}
.wsbb{word-spacing:-0.162000px;}
.ws5c{word-spacing:-0.132000px;}
.wsca{word-spacing:-0.120000px;}
.wscd{word-spacing:-0.108000px;}
.ws72{word-spacing:-0.066000px;}
.wsdb{word-spacing:-0.060000px;}
.ws4a{word-spacing:-0.054000px;}
.ws24{word-spacing:0.000000px;}
.ws62{word-spacing:0.054000px;}
.ws28{word-spacing:0.057000px;}
.ws5d{word-spacing:0.066000px;}
.ws61{word-spacing:0.108000px;}
.ws13a{word-spacing:0.120000px;}
.ws77{word-spacing:0.132000px;}
.wsce{word-spacing:0.162000px;}
.ws26{word-spacing:0.171000px;}
.ws13b{word-spacing:0.180000px;}
.ws81{word-spacing:0.198000px;}
.wsa8{word-spacing:0.216000px;}
.ws31{word-spacing:0.228000px;}
.wsd5{word-spacing:0.240000px;}
.ws41{word-spacing:0.264000px;}
.wscc{word-spacing:0.270000px;}
.wsbe{word-spacing:0.324000px;}
.ws5e{word-spacing:0.330000px;}
.ws12f{word-spacing:0.360000px;}
.ws2a{word-spacing:0.364800px;}
.wsb9{word-spacing:0.378000px;}
.ws54{word-spacing:0.396000px;}
.wsd8{word-spacing:0.420000px;}
.wsba{word-spacing:0.432000px;}
.ws90{word-spacing:0.462000px;}
.ws8f{word-spacing:0.486000px;}
.ws2f{word-spacing:0.513000px;}
.ws80{word-spacing:0.528000px;}
.ws4b{word-spacing:0.540000px;}
.ws2b{word-spacing:0.570000px;}
.ws57{word-spacing:0.594000px;}
.ws27{word-spacing:0.627000px;}
.ws97{word-spacing:0.648000px;}
.ws53{word-spacing:0.660000px;}
.wse6{word-spacing:0.702000px;}
.wsc6{word-spacing:0.720000px;}
.ws52{word-spacing:0.726000px;}
.ws95{word-spacing:0.756000px;}
.ws51{word-spacing:0.792000px;}
.ws25{word-spacing:0.798000px;}
.wse7{word-spacing:0.810000px;}
.ws138{word-spacing:0.840000px;}
.ws6f{word-spacing:0.858000px;}
.wsbd{word-spacing:0.864000px;}
.ws150{word-spacing:0.900000px;}
.ws94{word-spacing:0.918000px;}
.ws82{word-spacing:0.924000px;}
.ws170{word-spacing:0.931500px;}
.ws32{word-spacing:0.969000px;}
.ws91{word-spacing:0.970200px;}
.wsf0{word-spacing:0.972000px;}
.ws7d{word-spacing:0.990000px;}
.ws131{word-spacing:1.020000px;}
.ws2c{word-spacing:1.026000px;}
.ws70{word-spacing:1.056000px;}
.wsc7{word-spacing:1.080000px;}
.ws29{word-spacing:1.083000px;}
.ws55{word-spacing:1.122000px;}
.wsa7{word-spacing:1.134000px;}
.ws147{word-spacing:1.140000px;}
.ws4e{word-spacing:1.188000px;}
.ws9b{word-spacing:1.242000px;}
.ws73{word-spacing:1.254000px;}
.ws130{word-spacing:1.260000px;}
.ws92{word-spacing:1.296000px;}
.ws2e{word-spacing:1.311000px;}
.ws50{word-spacing:1.320000px;}
.wsab{word-spacing:1.350000px;}
.ws30{word-spacing:1.368000px;}
.wscb{word-spacing:1.380000px;}
.ws5b{word-spacing:1.386000px;}
.ws118{word-spacing:1.404000px;}
.ws2d{word-spacing:1.425000px;}
.ws139{word-spacing:1.440000px;}
.ws4c{word-spacing:1.452000px;}
.wsd9{word-spacing:1.500000px;}
.ws5f{word-spacing:1.518000px;}
.ws33{word-spacing:1.521900px;}
.ws5a{word-spacing:1.584000px;}
.ws7e{word-spacing:1.650000px;}
.ws3b{word-spacing:1.716000px;}
.ws69{word-spacing:1.782000px;}
.wsbc{word-spacing:2.268000px;}
.ws15d{word-spacing:2.442000px;}
.ws117{word-spacing:2.751000px;}
.ws160{word-spacing:2.763000px;}
.wsfc{word-spacing:2.901000px;}
.ws136{word-spacing:2.925000px;}
.wsc2{word-spacing:2.940000px;}
.ws158{word-spacing:3.030000px;}
.ws15a{word-spacing:3.261000px;}
.ws12d{word-spacing:3.333000px;}
.wse9{word-spacing:3.351000px;}
.wse5{word-spacing:3.364500px;}
.ws126{word-spacing:3.400500px;}
.ws163{word-spacing:3.429000px;}
.ws16b{word-spacing:3.520500px;}
.ws10a{word-spacing:3.574500px;}
.ws9f{word-spacing:3.639000px;}
.ws133{word-spacing:3.724500px;}
.ws7f{word-spacing:3.762000px;}
.ws8e{word-spacing:3.912000px;}
.ws171{word-spacing:4.104000px;}
.ws125{word-spacing:4.167000px;}
.ws104{word-spacing:4.231500px;}
.ws169{word-spacing:4.341000px;}
.wsfe{word-spacing:4.374000px;}
.wsff{word-spacing:4.411500px;}
.ws9d{word-spacing:4.456500px;}
.ws143{word-spacing:4.486500px;}
.ws9c{word-spacing:4.495500px;}
.wsf9{word-spacing:4.522500px;}
.ws11a{word-spacing:4.539000px;}
.wsee{word-spacing:4.699500px;}
.ws11e{word-spacing:4.877400px;}
.ws144{word-spacing:5.082000px;}
.ws83{word-spacing:5.445000px;}
.wsdf{word-spacing:5.574000px;}
.wsae{word-spacing:5.779500px;}
.ws13d{word-spacing:6.210000px;}
.ws152{word-spacing:6.262200px;}
.ws103{word-spacing:6.426000px;}
.ws112{word-spacing:6.611400px;}
.ws14d{word-spacing:6.666000px;}
.ws142{word-spacing:8.154000px;}
.ws162{word-spacing:8.646000px;}
.wsd4{word-spacing:9.018000px;}
.ws15f{word-spacing:9.450000px;}
.ws67{word-spacing:11.286000px;}
.ws149{word-spacing:12.165000px;}
.ws172{word-spacing:14.256000px;}
.ws14a{word-spacing:14.880000px;}
.ws64{word-spacing:15.906000px;}
.ws66{word-spacing:17.094000px;}
.ws84{word-spacing:19.404000px;}
.ws167{word-spacing:24.024000px;}
.ws7b{word-spacing:26.730000px;}
.ws45{word-spacing:35.904000px;}
.ws46{word-spacing:36.018000px;}
._12{margin-left:-9.882000px;}
._4{margin-left:-7.854000px;}
._d{margin-left:-6.204000px;}
._a{margin-left:-4.620000px;}
._1{margin-left:-3.610311px;}
._3{margin-left:-2.244000px;}
._0{margin-left:-1.195689px;}
._2{width:1.581000px;}
._f{width:3.432000px;}
._10{width:4.818000px;}
._13{width:6.061689px;}
._c{width:11.778000px;}
._b{width:14.586000px;}
._14{width:15.642000px;}
._7{width:16.833000px;}
._6{width:19.605000px;}
._11{width:22.518000px;}
._9{width:47.952000px;}
._e{width:49.518000px;}
._8{width:616.267689px;}
._5{width:1240.512000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:40.500000px;}
.fsb{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:2.146500px;}
.y24{bottom:2.896500px;}
.y22{bottom:3.646500px;}
.y26{bottom:4.396500px;}
.y29{bottom:43.500000px;}
.y373{bottom:54.489000px;}
.y147{bottom:54.615000px;}
.y3e6{bottom:54.795000px;}
.y2e7{bottom:54.885000px;}
.y1f3{bottom:54.894000px;}
.y254{bottom:54.945000px;}
.ye9{bottom:54.948000px;}
.y32a{bottom:54.954000px;}
.y40c{bottom:54.960000px;}
.y1a9{bottom:54.975000px;}
.y45a{bottom:54.990000px;}
.y214{bottom:54.996000px;}
.y423{bottom:55.008000px;}
.y39c{bottom:55.053000px;}
.ya0{bottom:55.056000px;}
.y297{bottom:55.059000px;}
.y43d{bottom:55.134000px;}
.y12a{bottom:55.146000px;}
.y7f{bottom:55.182000px;}
.y34d{bottom:55.314000px;}
.y102{bottom:55.350000px;}
.y494{bottom:55.356000px;}
.y165{bottom:55.395000px;}
.y23d{bottom:55.416000px;}
.y3cb{bottom:55.500000px;}
.y2bb{bottom:55.509000px;}
.y183{bottom:55.542000px;}
.yc4{bottom:55.554000px;}
.y274{bottom:55.566000px;}
.y308{bottom:55.575000px;}
.y1d1{bottom:55.593000px;}
.y55{bottom:55.614000px;}
.y25f{bottom:55.653000px;}
.y477{bottom:55.674000px;}
.y3ac{bottom:55.719000px;}
.y28{bottom:63.000000px;}
.y372{bottom:68.679000px;}
.y3e5{bottom:69.051000px;}
.y1f2{bottom:69.114000px;}
.y2e6{bottom:69.141000px;}
.y253{bottom:69.201000px;}
.ye8{bottom:69.204000px;}
.y329{bottom:69.210000px;}
.y40b{bottom:69.216000px;}
.y1a8{bottom:69.231000px;}
.y459{bottom:69.246000px;}
.y213{bottom:69.252000px;}
.y422{bottom:69.264000px;}
.y296{bottom:69.309000px;}
.y43c{bottom:69.390000px;}
.y129{bottom:69.402000px;}
.y21b{bottom:69.438000px;}
.y34c{bottom:69.534000px;}
.y101{bottom:69.606000px;}
.y493{bottom:69.612000px;}
.y164{bottom:69.651000px;}
.y23c{bottom:69.672000px;}
.yc3{bottom:69.756000px;}
.y2ba{bottom:69.759000px;}
.y182{bottom:69.798000px;}
.y273{bottom:69.822000px;}
.y307{bottom:69.831000px;}
.y1d0{bottom:69.849000px;}
.y54{bottom:69.870000px;}
.y25e{bottom:69.909000px;}
.y476{bottom:69.918000px;}
.y3ab{bottom:69.975000px;}
.y9f{bottom:72.298500px;}
.y7e{bottom:72.424500px;}
.y49b{bottom:77.385000px;}
.y27{bottom:79.500000px;}
.y371{bottom:82.935000px;}
.y3e4{bottom:83.307000px;}
.y1f1{bottom:83.370000px;}
.y2e5{bottom:83.397000px;}
.ye7{bottom:83.400000px;}
.y252{bottom:83.457000px;}
.y328{bottom:83.466000px;}
.y40a{bottom:83.472000px;}
.y421{bottom:83.478000px;}
.y295{bottom:83.481000px;}
.y1a7{bottom:83.487000px;}
.y458{bottom:83.502000px;}
.y212{bottom:83.508000px;}
.y39b{bottom:83.565000px;}
.y43b{bottom:83.646000px;}
.y128{bottom:83.658000px;}
.y21a{bottom:83.694000px;}
.y34b{bottom:83.790000px;}
.y100{bottom:83.862000px;}
.y492{bottom:83.868000px;}
.y163{bottom:83.907000px;}
.y23b{bottom:83.928000px;}
.y2b9{bottom:84.009000px;}
.yc2{bottom:84.012000px;}
.y181{bottom:84.054000px;}
.y272{bottom:84.078000px;}
.y306{bottom:84.087000px;}
.y1cf{bottom:84.105000px;}
.y25d{bottom:84.165000px;}
.y475{bottom:84.174000px;}
.y3aa{bottom:84.231000px;}
.y9e{bottom:89.541000px;}
.y7d{bottom:89.667000px;}
.y49a{bottom:92.364000px;}
.y25{bottom:96.000000px;}
.y370{bottom:97.191000px;}
.y3e3{bottom:97.563000px;}
.y1f0{bottom:97.626000px;}
.y2e4{bottom:97.653000px;}
.ye6{bottom:97.656000px;}
.y251{bottom:97.713000px;}
.y327{bottom:97.722000px;}
.y409{bottom:97.728000px;}
.y420{bottom:97.734000px;}
.y294{bottom:97.737000px;}
.y1a6{bottom:97.743000px;}
.y457{bottom:97.758000px;}
.y211{bottom:97.764000px;}
.y39a{bottom:97.821000px;}
.y43a{bottom:97.902000px;}
.y127{bottom:97.914000px;}
.y219{bottom:97.938000px;}
.y34a{bottom:98.046000px;}
.yff{bottom:98.118000px;}
.y491{bottom:98.124000px;}
.y162{bottom:98.163000px;}
.y23a{bottom:98.184000px;}
.y2b8{bottom:98.265000px;}
.yc1{bottom:98.268000px;}
.y180{bottom:98.286000px;}
.y271{bottom:98.334000px;}
.y305{bottom:98.343000px;}
.y1ce{bottom:98.361000px;}
.y25c{bottom:98.421000px;}
.y474{bottom:98.424000px;}
.y3a9{bottom:98.487000px;}
.y9d{bottom:106.783500px;}
.y7c{bottom:106.909500px;}
.y3ca{bottom:106.935000px;}
.y499{bottom:107.369250px;}
.y146{bottom:107.497500px;}
.y36f{bottom:111.447000px;}
.y3e2{bottom:111.819000px;}
.y1ef{bottom:111.882000px;}
.y2e3{bottom:111.909000px;}
.ye5{bottom:111.912000px;}
.y250{bottom:111.969000px;}
.y326{bottom:111.978000px;}
.y210{bottom:111.984000px;}
.y41f{bottom:111.990000px;}
.y293{bottom:111.993000px;}
.y1a5{bottom:111.999000px;}
.y456{bottom:112.014000px;}
.y399{bottom:112.077000px;}
.y439{bottom:112.158000px;}
.y126{bottom:112.170000px;}
.y218{bottom:112.194000px;}
.y349{bottom:112.302000px;}
.yfe{bottom:112.374000px;}
.y490{bottom:112.380000px;}
.y161{bottom:112.419000px;}
.y239{bottom:112.440000px;}
.yc0{bottom:112.524000px;}
.y17f{bottom:112.542000px;}
.y270{bottom:112.590000px;}
.y304{bottom:112.599000px;}
.y1cd{bottom:112.617000px;}
.y473{bottom:112.674000px;}
.y25b{bottom:112.677000px;}
.y3a8{bottom:112.743000px;}
.y23{bottom:115.500000px;}
.y498{bottom:122.374500px;}
.y9c{bottom:124.026000px;}
.y7b{bottom:124.152000px;}
.y3c9{bottom:124.177500px;}
.y53{bottom:124.590000px;}
.y145{bottom:124.740000px;}
.y36e{bottom:125.703000px;}
.y3e1{bottom:126.075000px;}
.y1ee{bottom:126.138000px;}
.y2e2{bottom:126.165000px;}
.ye4{bottom:126.168000px;}
.y24f{bottom:126.225000px;}
.y325{bottom:126.234000px;}
.y20f{bottom:126.240000px;}
.y41e{bottom:126.246000px;}
.y292{bottom:126.249000px;}
.y1a4{bottom:126.255000px;}
.y455{bottom:126.270000px;}
.y398{bottom:126.333000px;}
.y438{bottom:126.414000px;}
.y125{bottom:126.426000px;}
.y217{bottom:126.444000px;}
.y348{bottom:126.558000px;}
.yfd{bottom:126.624000px;}
.y160{bottom:126.657000px;}
.y238{bottom:126.696000px;}
.y303{bottom:126.747000px;}
.ybf{bottom:126.780000px;}
.y17e{bottom:126.798000px;}
.y26f{bottom:126.846000px;}
.y1cc{bottom:126.873000px;}
.y472{bottom:126.924000px;}
.y25a{bottom:126.933000px;}
.y3a7{bottom:126.999000px;}
.y2d{bottom:135.000000px;}
.y497{bottom:137.379750px;}
.y2b{bottom:138.000000px;}
.y36d{bottom:139.959000px;}
.y3e0{bottom:140.331000px;}
.y1ed{bottom:140.394000px;}
.y2e1{bottom:140.421000px;}
.ye3{bottom:140.424000px;}
.y324{bottom:140.430000px;}
.y24e{bottom:140.481000px;}
.y20e{bottom:140.496000px;}
.y41d{bottom:140.502000px;}
.y291{bottom:140.505000px;}
.y1a3{bottom:140.511000px;}
.y454{bottom:140.526000px;}
.y397{bottom:140.589000px;}
.y437{bottom:140.670000px;}
.y124{bottom:140.682000px;}
.y216{bottom:140.694000px;}
.y347{bottom:140.814000px;}
.yfc{bottom:140.868000px;}
.y15f{bottom:140.913000px;}
.y237{bottom:140.952000px;}
.y302{bottom:141.003000px;}
.ybe{bottom:141.036000px;}
.y17d{bottom:141.054000px;}
.y26e{bottom:141.102000px;}
.y1cb{bottom:141.129000px;}
.y471{bottom:141.174000px;}
.y259{bottom:141.189000px;}
.y3a6{bottom:141.249000px;}
.y9b{bottom:141.268500px;}
.y7a{bottom:141.394500px;}
.y3c8{bottom:141.420000px;}
.y52{bottom:141.832500px;}
.y144{bottom:141.982500px;}
.y2b7{bottom:144.885000px;}
.y496{bottom:152.385000px;}
.y2c{bottom:153.000000px;}
.y36c{bottom:154.215000px;}
.y21{bottom:154.500000px;}
.y3df{bottom:154.587000px;}
.y1ec{bottom:154.650000px;}
.y2e0{bottom:154.677000px;}
.ye2{bottom:154.680000px;}
.y323{bottom:154.686000px;}
.y24d{bottom:154.737000px;}
.y20d{bottom:154.752000px;}
.y41c{bottom:154.758000px;}
.y290{bottom:154.761000px;}
.y1a2{bottom:154.767000px;}
.y453{bottom:154.782000px;}
.y396{bottom:154.845000px;}
.y436{bottom:154.926000px;}
.y123{bottom:154.938000px;}
.y215{bottom:154.944000px;}
.y346{bottom:155.070000px;}
.yfb{bottom:155.124000px;}
.y15e{bottom:155.169000px;}
.y236{bottom:155.208000px;}
.y301{bottom:155.259000px;}
.ybd{bottom:155.292000px;}
.y17c{bottom:155.310000px;}
.y26d{bottom:155.358000px;}
.y1ca{bottom:155.385000px;}
.y470{bottom:155.424000px;}
.y3a5{bottom:155.499000px;}
.y9a{bottom:158.511000px;}
.y48f{bottom:158.607000px;}
.y79{bottom:158.637000px;}
.y3c7{bottom:158.662500px;}
.y51{bottom:159.075000px;}
.y143{bottom:159.225000px;}
.y2b6{bottom:160.635000px;}
.y36b{bottom:168.471000px;}
.y3de{bottom:168.843000px;}
.y2df{bottom:168.933000px;}
.ye1{bottom:168.936000px;}
.y322{bottom:168.942000px;}
.y24c{bottom:168.993000px;}
.y20c{bottom:169.008000px;}
.y41b{bottom:169.014000px;}
.y28f{bottom:169.017000px;}
.y1a1{bottom:169.023000px;}
.y452{bottom:169.038000px;}
.y435{bottom:169.182000px;}
.y122{bottom:169.194000px;}
.yfa{bottom:169.356000px;}
.y15d{bottom:169.425000px;}
.y235{bottom:169.464000px;}
.y300{bottom:169.515000px;}
.ybc{bottom:169.548000px;}
.y26c{bottom:169.614000px;}
.y1c9{bottom:169.641000px;}
.y46f{bottom:169.674000px;}
.y3a4{bottom:169.737000px;}
.y1f{bottom:174.000000px;}
.y395{bottom:175.473000px;}
.y99{bottom:175.753500px;}
.y48e{bottom:175.849500px;}
.y78{bottom:175.879500px;}
.y3c6{bottom:175.905000px;}
.y50{bottom:176.317500px;}
.y2b5{bottom:176.385000px;}
.y142{bottom:176.467500px;}
.y2a{bottom:177.000000px;}
.y36a{bottom:182.727000px;}
.y3dd{bottom:183.099000px;}
.y2de{bottom:183.189000px;}
.ye0{bottom:183.192000px;}
.y321{bottom:183.198000px;}
.y24b{bottom:183.249000px;}
.y20b{bottom:183.264000px;}
.y41a{bottom:183.270000px;}
.y28e{bottom:183.273000px;}
.y1a0{bottom:183.279000px;}
.y451{bottom:183.294000px;}
.y121{bottom:183.438000px;}
.yf9{bottom:183.612000px;}
.y234{bottom:183.702000px;}
.y2ff{bottom:183.771000px;}
.ybb{bottom:183.804000px;}
.y26b{bottom:183.858000px;}
.y1c8{bottom:183.897000px;}
.y46e{bottom:183.924000px;}
.y3a3{bottom:183.993000px;}
.y394{bottom:189.729000px;}
.y2b4{bottom:192.135000px;}
.y98{bottom:192.996000px;}
.y48d{bottom:193.092000px;}
.y77{bottom:193.122000px;}
.y3c5{bottom:193.147500px;}
.y4f{bottom:193.560000px;}
.y141{bottom:193.710000px;}
.y369{bottom:196.983000px;}
.y3dc{bottom:197.355000px;}
.y2dd{bottom:197.445000px;}
.ydf{bottom:197.448000px;}
.y320{bottom:197.454000px;}
.y24a{bottom:197.457000px;}
.y19f{bottom:197.499000px;}
.y20a{bottom:197.520000px;}
.y28d{bottom:197.529000px;}
.y450{bottom:197.550000px;}
.y120{bottom:197.694000px;}
.yf8{bottom:197.868000px;}
.y233{bottom:197.958000px;}
.y2fe{bottom:198.027000px;}
.yba{bottom:198.060000px;}
.y26a{bottom:198.114000px;}
.y1c7{bottom:198.153000px;}
.y46d{bottom:198.174000px;}
.y3a2{bottom:198.249000px;}
.y345{bottom:199.635000px;}
.y1d{bottom:203.280000px;}
.y393{bottom:203.985000px;}
.y2b3{bottom:207.885000px;}
.y17b{bottom:210.180000px;}
.y1eb{bottom:210.217500px;}
.y97{bottom:210.238500px;}
.y15c{bottom:210.313500px;}
.y48c{bottom:210.334500px;}
.y42e{bottom:210.364500px;}
.y3c4{bottom:210.390000px;}
.y4e{bottom:210.802500px;}
.y140{bottom:210.952500px;}
.y368{bottom:211.239000px;}
.y3db{bottom:211.611000px;}
.y2dc{bottom:211.701000px;}
.yde{bottom:211.704000px;}
.y31f{bottom:211.710000px;}
.y249{bottom:211.713000px;}
.y19e{bottom:211.755000px;}
.y408{bottom:211.776000px;}
.y28c{bottom:211.785000px;}
.y44f{bottom:211.806000px;}
.y11f{bottom:211.950000px;}
.yf7{bottom:212.124000px;}
.y232{bottom:212.214000px;}
.y2fd{bottom:212.283000px;}
.y269{bottom:212.364000px;}
.y1c6{bottom:212.409000px;}
.y46c{bottom:212.430000px;}
.y3a1{bottom:212.505000px;}
.y344{bottom:215.385000px;}
.y392{bottom:218.241000px;}
.y2b2{bottom:223.635000px;}
.y367{bottom:225.447000px;}
.y3da{bottom:225.867000px;}
.y2db{bottom:225.957000px;}
.ydd{bottom:225.960000px;}
.y31e{bottom:225.966000px;}
.y248{bottom:225.969000px;}
.y19d{bottom:226.011000px;}
.y407{bottom:226.032000px;}
.y28b{bottom:226.041000px;}
.y44e{bottom:226.062000px;}
.yf6{bottom:226.380000px;}
.y231{bottom:226.404000px;}
.y2fc{bottom:226.539000px;}
.y268{bottom:226.590000px;}
.y1c5{bottom:226.665000px;}
.y46b{bottom:226.674000px;}
.y419{bottom:227.392500px;}
.y17a{bottom:227.422500px;}
.y1ea{bottom:227.460000px;}
.y96{bottom:227.481000px;}
.y15b{bottom:227.556000px;}
.y48b{bottom:227.577000px;}
.y42d{bottom:227.607000px;}
.y76{bottom:227.623500px;}
.y3c3{bottom:227.632500px;}
.y495{bottom:227.640000px;}
.y4d{bottom:228.045000px;}
.y13f{bottom:228.195000px;}
.y343{bottom:231.135000px;}
.y391{bottom:232.497000px;}
.y2b1{bottom:239.385000px;}
.y366{bottom:239.703000px;}
.y3d9{bottom:240.123000px;}
.ydc{bottom:240.204000px;}
.y2da{bottom:240.213000px;}
.y31d{bottom:240.222000px;}
.y247{bottom:240.225000px;}
.y19c{bottom:240.267000px;}
.y406{bottom:240.288000px;}
.y28a{bottom:240.297000px;}
.y44d{bottom:240.318000px;}
.y230{bottom:240.660000px;}
.y2fb{bottom:240.795000px;}
.y267{bottom:240.846000px;}
.y1c4{bottom:240.921000px;}
.y46a{bottom:240.924000px;}
.y179{bottom:244.665000px;}
.y1e9{bottom:244.702500px;}
.y209{bottom:244.717500px;}
.y95{bottom:244.723500px;}
.y15a{bottom:244.798500px;}
.y48a{bottom:244.819500px;}
.y42c{bottom:244.849500px;}
.y75{bottom:244.866000px;}
.y3c2{bottom:244.875000px;}
.y418{bottom:244.882500px;}
.y4c{bottom:245.287500px;}
.y13e{bottom:245.437500px;}
.y390{bottom:246.753000px;}
.y342{bottom:246.885000px;}
.y15{bottom:249.195000px;}
.yb9{bottom:253.443000px;}
.y365{bottom:253.959000px;}
.y3d8{bottom:254.379000px;}
.ydb{bottom:254.460000px;}
.y2d9{bottom:254.469000px;}
.y31c{bottom:254.478000px;}
.y246{bottom:254.481000px;}
.y19b{bottom:254.523000px;}
.y405{bottom:254.544000px;}
.y289{bottom:254.553000px;}
.y44c{bottom:254.574000px;}
.y22f{bottom:254.916000px;}
.y2fa{bottom:255.051000px;}
.y266{bottom:255.102000px;}
.y2b0{bottom:255.135000px;}
.y469{bottom:255.174000px;}
.y1c3{bottom:255.177000px;}
.y38f{bottom:261.009000px;}
.y178{bottom:261.907500px;}
.y3a0{bottom:261.915000px;}
.y1e8{bottom:261.945000px;}
.y208{bottom:261.960000px;}
.y159{bottom:262.041000px;}
.y434{bottom:262.057500px;}
.y489{bottom:262.062000px;}
.y42b{bottom:262.092000px;}
.y74{bottom:262.108500px;}
.y3c1{bottom:262.117500px;}
.y417{bottom:262.125000px;}
.y4b{bottom:262.530000px;}
.y13d{bottom:262.680000px;}
.y11e{bottom:265.650000px;}
.y364{bottom:268.215000px;}
.y3d7{bottom:268.575000px;}
.y2d8{bottom:268.719000px;}
.y31b{bottom:268.734000px;}
.y245{bottom:268.737000px;}
.y19a{bottom:268.779000px;}
.y404{bottom:268.800000px;}
.y288{bottom:268.809000px;}
.y44b{bottom:268.830000px;}
.y22e{bottom:269.172000px;}
.y2f9{bottom:269.307000px;}
.y265{bottom:269.358000px;}
.y468{bottom:269.430000px;}
.y1c2{bottom:269.433000px;}
.y14{bottom:270.162000px;}
.yb8{bottom:270.685500px;}
.y38e{bottom:275.259000px;}
.y177{bottom:279.150000px;}
.y39f{bottom:279.157500px;}
.y1e7{bottom:279.187500px;}
.y207{bottom:279.202500px;}
.yf5{bottom:279.210000px;}
.y94{bottom:279.225000px;}
.y158{bottom:279.283500px;}
.y433{bottom:279.300000px;}
.y488{bottom:279.304500px;}
.y42a{bottom:279.334500px;}
.y73{bottom:279.351000px;}
.y3c0{bottom:279.360000px;}
.y416{bottom:279.367500px;}
.y4a{bottom:279.772500px;}
.y13c{bottom:279.922500px;}
.y341{bottom:279.930000px;}
.y363{bottom:282.471000px;}
.y3d6{bottom:282.831000px;}
.y11d{bottom:282.892500px;}
.y2d7{bottom:282.963000px;}
.y31a{bottom:282.990000px;}
.y244{bottom:282.993000px;}
.y199{bottom:283.035000px;}
.y403{bottom:283.056000px;}
.y287{bottom:283.065000px;}
.y22d{bottom:283.428000px;}
.y2f8{bottom:283.563000px;}
.y264{bottom:283.614000px;}
.y1c1{bottom:283.689000px;}
.y13{bottom:285.167250px;}
.yb7{bottom:287.928000px;}
.y2af{bottom:288.202500px;}
.y38d{bottom:289.515000px;}
.y176{bottom:296.392500px;}
.y39e{bottom:296.400000px;}
.y1e6{bottom:296.430000px;}
.y206{bottom:296.445000px;}
.yda{bottom:296.452500px;}
.y93{bottom:296.467500px;}
.y157{bottom:296.526000px;}
.y432{bottom:296.542500px;}
.y487{bottom:296.547000px;}
.y429{bottom:296.577000px;}
.y72{bottom:296.593500px;}
.y3bf{bottom:296.602500px;}
.y415{bottom:296.610000px;}
.y362{bottom:296.727000px;}
.y49{bottom:297.015000px;}
.y3d5{bottom:297.087000px;}
.y13b{bottom:297.165000px;}
.y340{bottom:297.172500px;}
.y2d6{bottom:297.219000px;}
.y243{bottom:297.249000px;}
.y402{bottom:297.312000px;}
.y22c{bottom:297.684000px;}
.y2f7{bottom:297.819000px;}
.y263{bottom:297.870000px;}
.y1c0{bottom:297.945000px;}
.y12{bottom:300.172500px;}
.y11c{bottom:300.180000px;}
.yb6{bottom:305.170500px;}
.y2ae{bottom:305.445000px;}
.y361{bottom:310.983000px;}
.y3d4{bottom:311.343000px;}
.y2d5{bottom:311.469000px;}
.y242{bottom:311.505000px;}
.y401{bottom:311.568000px;}
.y22b{bottom:311.940000px;}
.y2f6{bottom:312.075000px;}
.y39d{bottom:313.642500px;}
.y1e5{bottom:313.672500px;}
.y205{bottom:313.687500px;}
.yd9{bottom:313.695000px;}
.y92{bottom:313.710000px;}
.y175{bottom:313.746000px;}
.y467{bottom:313.753500px;}
.y156{bottom:313.768500px;}
.y431{bottom:313.785000px;}
.y486{bottom:313.789500px;}
.y428{bottom:313.819500px;}
.y71{bottom:313.836000px;}
.y3be{bottom:313.845000px;}
.y414{bottom:313.852500px;}
.y48{bottom:314.257500px;}
.y13a{bottom:314.407500px;}
.y33f{bottom:314.415000px;}
.y11{bottom:315.177750px;}
.y11b{bottom:317.422500px;}
.yb5{bottom:322.413000px;}
.y2ad{bottom:322.687500px;}
.y360{bottom:325.239000px;}
.y3d3{bottom:325.599000px;}
.y2d4{bottom:325.725000px;}
.y400{bottom:325.824000px;}
.y22a{bottom:326.196000px;}
.y2f5{bottom:326.331000px;}
.y10{bottom:330.183000px;}
.y198{bottom:330.900000px;}
.y1e4{bottom:330.915000px;}
.y204{bottom:330.930000px;}
.yd8{bottom:330.937500px;}
.y91{bottom:330.952500px;}
.y44a{bottom:330.964500px;}
.y174{bottom:330.988500px;}
.y286{bottom:330.990000px;}
.y466{bottom:330.996000px;}
.y155{bottom:331.011000px;}
.y319{bottom:331.012500px;}
.y430{bottom:331.027500px;}
.y485{bottom:331.032000px;}
.y427{bottom:331.062000px;}
.y70{bottom:331.078500px;}
.y3bd{bottom:331.087500px;}
.y413{bottom:331.095000px;}
.y47{bottom:331.500000px;}
.y139{bottom:331.650000px;}
.y33e{bottom:331.657500px;}
.y11a{bottom:334.665000px;}
.y38c{bottom:336.172500px;}
.y35f{bottom:339.495000px;}
.yb4{bottom:339.655500px;}
.y3d2{bottom:339.855000px;}
.y2ac{bottom:339.930000px;}
.y3ff{bottom:340.080000px;}
.y229{bottom:340.452000px;}
.y2f4{bottom:340.587000px;}
.yf{bottom:345.188250px;}
.y197{bottom:348.142500px;}
.y1e3{bottom:348.157500px;}
.y203{bottom:348.172500px;}
.y258{bottom:348.177000px;}
.yd7{bottom:348.180000px;}
.y90{bottom:348.195000px;}
.y449{bottom:348.207000px;}
.y173{bottom:348.231000px;}
.y285{bottom:348.232500px;}
.y465{bottom:348.238500px;}
.y318{bottom:348.255000px;}
.y42f{bottom:348.270000px;}
.y484{bottom:348.274500px;}
.y426{bottom:348.304500px;}
.y6f{bottom:348.321000px;}
.y3bc{bottom:348.330000px;}
.y412{bottom:348.337500px;}
.y46{bottom:348.742500px;}
.y138{bottom:348.892500px;}
.y33d{bottom:348.900000px;}
.y119{bottom:351.907500px;}
.y38b{bottom:353.415000px;}
.y3d1{bottom:354.111000px;}
.y228{bottom:354.708000px;}
.y2f3{bottom:354.843000px;}
.yb3{bottom:356.898000px;}
.y2ab{bottom:357.172500px;}
.ye{bottom:360.193500px;}
.y1e2{bottom:365.400000px;}
.y202{bottom:365.415000px;}
.y257{bottom:365.419500px;}
.yd6{bottom:365.422500px;}
.y8f{bottom:365.437500px;}
.y448{bottom:365.449500px;}
.y284{bottom:365.475000px;}
.y464{bottom:365.481000px;}
.y317{bottom:365.497500px;}
.y154{bottom:365.512500px;}
.y483{bottom:365.517000px;}
.y1bf{bottom:365.520000px;}
.y425{bottom:365.547000px;}
.y6e{bottom:365.563500px;}
.y3bb{bottom:365.572500px;}
.y411{bottom:365.580000px;}
.y45{bottom:365.985000px;}
.y137{bottom:366.135000px;}
.y33c{bottom:366.142500px;}
.y3d0{bottom:368.367000px;}
.y227{bottom:368.964000px;}
.y2f2{bottom:369.099000px;}
.y118{bottom:369.150000px;}
.y38a{bottom:370.657500px;}
.y2d3{bottom:372.135000px;}
.yb2{bottom:374.140500px;}
.y2aa{bottom:374.415000px;}
.yd{bottom:375.198750px;}
.y35e{bottom:380.392500px;}
.y3cf{bottom:382.623000px;}
.y1e1{bottom:382.642500px;}
.y201{bottom:382.657500px;}
.y256{bottom:382.662000px;}
.yd5{bottom:382.665000px;}
.y8e{bottom:382.680000px;}
.y447{bottom:382.692000px;}
.y283{bottom:382.717500px;}
.y463{bottom:382.723500px;}
.y172{bottom:382.732500px;}
.y316{bottom:382.740000px;}
.y153{bottom:382.755000px;}
.y482{bottom:382.759500px;}
.y1be{bottom:382.762500px;}
.y6d{bottom:382.806000px;}
.y3ba{bottom:382.815000px;}
.y410{bottom:382.822500px;}
.y226{bottom:383.220000px;}
.y44{bottom:383.227500px;}
.y2f1{bottom:383.355000px;}
.y33b{bottom:383.385000px;}
.y117{bottom:386.392500px;}
.y2d2{bottom:387.885000px;}
.y389{bottom:387.900000px;}
.y3fe{bottom:391.342500px;}
.yb1{bottom:391.383000px;}
.y424{bottom:391.419000px;}
.y2a9{bottom:391.657500px;}
.y3ce{bottom:396.879000px;}
.y35d{bottom:397.672500px;}
.y200{bottom:399.900000px;}
.yd4{bottom:399.907500px;}
.y8d{bottom:399.922500px;}
.y446{bottom:399.934500px;}
.y262{bottom:399.945000px;}
.y282{bottom:399.960000px;}
.y462{bottom:399.966000px;}
.y171{bottom:399.975000px;}
.y315{bottom:399.982500px;}
.y152{bottom:399.997500px;}
.y481{bottom:400.002000px;}
.y1bd{bottom:400.005000px;}
.y1e0{bottom:400.035000px;}
.y6c{bottom:400.048500px;}
.y3b9{bottom:400.057500px;}
.y40f{bottom:400.065000px;}
.y43{bottom:400.470000px;}
.y136{bottom:400.635000px;}
.y116{bottom:403.635000px;}
.y388{bottom:405.142500px;}
.yc{bottom:405.195000px;}
.y255{bottom:408.534000px;}
.y3fd{bottom:408.585000px;}
.yb0{bottom:408.625500px;}
.y2a8{bottom:408.900000px;}
.y3cd{bottom:411.135000px;}
.y35c{bottom:414.915000px;}
.y135{bottom:416.385000px;}
.y1ff{bottom:417.142500px;}
.yd3{bottom:417.150000px;}
.y8c{bottom:417.165000px;}
.y445{bottom:417.177000px;}
.y261{bottom:417.187500px;}
.y281{bottom:417.202500px;}
.y461{bottom:417.208500px;}
.y170{bottom:417.217500px;}
.y314{bottom:417.225000px;}
.y151{bottom:417.240000px;}
.y480{bottom:417.244500px;}
.y1bc{bottom:417.247500px;}
.y1df{bottom:417.277500px;}
.y6b{bottom:417.291000px;}
.y3b8{bottom:417.300000px;}
.y40e{bottom:417.307500px;}
.y42{bottom:417.712500px;}
.y33a{bottom:417.885000px;}
.y2d1{bottom:419.385000px;}
.y387{bottom:422.422500px;}
.y3fc{bottom:425.827500px;}
.yaf{bottom:425.868000px;}
.y2a7{bottom:426.142500px;}
.y134{bottom:432.135000px;}
.y35b{bottom:432.157500px;}
.y339{bottom:433.635000px;}
.yd2{bottom:434.392500px;}
.y8b{bottom:434.407500px;}
.y444{bottom:434.419500px;}
.y260{bottom:434.430000px;}
.y1fe{bottom:434.437500px;}
.y280{bottom:434.445000px;}
.y460{bottom:434.451000px;}
.y16f{bottom:434.460000px;}
.y313{bottom:434.467500px;}
.y150{bottom:434.482500px;}
.y47f{bottom:434.487000px;}
.y1bb{bottom:434.490000px;}
.y1de{bottom:434.520000px;}
.y6a{bottom:434.533500px;}
.y3b7{bottom:434.542500px;}
.y40d{bottom:434.550000px;}
.y41{bottom:434.955000px;}
.y2d0{bottom:435.135000px;}
.y115{bottom:438.135000px;}
.y386{bottom:439.665000px;}
.yb{bottom:441.183600px;}
.y3fb{bottom:443.070000px;}
.yae{bottom:443.110500px;}
.y2a6{bottom:443.400000px;}
.y133{bottom:447.885000px;}
.y338{bottom:449.385000px;}
.y35a{bottom:449.400000px;}
.y2cf{bottom:450.885000px;}
.y3cc{bottom:451.642500px;}
.y8a{bottom:451.650000px;}
.y443{bottom:451.662000px;}
.yd1{bottom:451.665000px;}
.y225{bottom:451.672500px;}
.y1fd{bottom:451.680000px;}
.y27f{bottom:451.687500px;}
.y45f{bottom:451.693500px;}
.y16e{bottom:451.702500px;}
.yf4{bottom:451.708500px;}
.y312{bottom:451.710000px;}
.y196{bottom:451.717500px;}
.y14f{bottom:451.725000px;}
.y47e{bottom:451.729500px;}
.y1ba{bottom:451.732500px;}
.y1dd{bottom:451.762500px;}
.y69{bottom:451.776000px;}
.y3b6{bottom:451.785000px;}
.y241{bottom:451.792500px;}
.y40{bottom:452.197500px;}
.y114{bottom:453.885000px;}
.ya{bottom:456.188850px;}
.y385{bottom:456.907500px;}
.y3fa{bottom:460.312500px;}
.yad{bottom:460.353000px;}
.y2a5{bottom:460.642500px;}
.y132{bottom:463.635000px;}
.y337{bottom:465.135000px;}
.y359{bottom:466.642500px;}
.y89{bottom:468.892500px;}
.y442{bottom:468.904500px;}
.yd0{bottom:468.907500px;}
.y224{bottom:468.915000px;}
.y1fc{bottom:468.922500px;}
.y27e{bottom:468.930000px;}
.y45e{bottom:468.936000px;}
.y16d{bottom:468.945000px;}
.yf3{bottom:468.951000px;}
.y311{bottom:468.952500px;}
.y195{bottom:468.960000px;}
.y14e{bottom:468.967500px;}
.y47d{bottom:468.972000px;}
.y1b9{bottom:468.975000px;}
.y1dc{bottom:469.005000px;}
.y68{bottom:469.018500px;}
.y3b5{bottom:469.027500px;}
.y240{bottom:469.035000px;}
.y3f{bottom:469.440000px;}
.y113{bottom:469.635000px;}
.y384{bottom:474.150000px;}
.y9{bottom:477.157725px;}
.y3f9{bottom:477.555000px;}
.y2a4{bottom:477.885000px;}
.y131{bottom:479.385000px;}
.y336{bottom:480.885000px;}
.y358{bottom:483.885000px;}
.y2ce{bottom:483.922500px;}
.y112{bottom:485.385000px;}
.y441{bottom:486.147000px;}
.ycf{bottom:486.150000px;}
.y223{bottom:486.157500px;}
.y1fb{bottom:486.165000px;}
.y27d{bottom:486.172500px;}
.y45d{bottom:486.178500px;}
.y16c{bottom:486.187500px;}
.y310{bottom:486.195000px;}
.y194{bottom:486.202500px;}
.y14d{bottom:486.210000px;}
.y47c{bottom:486.214500px;}
.y1b8{bottom:486.217500px;}
.yac{bottom:486.225000px;}
.y2f0{bottom:486.229500px;}
.y88{bottom:486.244500px;}
.y1db{bottom:486.247500px;}
.y67{bottom:486.261000px;}
.y3b4{bottom:486.270000px;}
.y23f{bottom:486.277500px;}
.y3e{bottom:486.682500px;}
.y383{bottom:491.392500px;}
.y8{bottom:492.162975px;}
.y3f8{bottom:494.797500px;}
.y130{bottom:495.135000px;}
.y335{bottom:496.635000px;}
.y111{bottom:501.135000px;}
.y2cd{bottom:501.165000px;}
.y440{bottom:503.389500px;}
.yce{bottom:503.392500px;}
.y222{bottom:503.400000px;}
.y1fa{bottom:503.407500px;}
.y27c{bottom:503.415000px;}
.y45c{bottom:503.421000px;}
.y16b{bottom:503.430000px;}
.y30f{bottom:503.437500px;}
.y193{bottom:503.445000px;}
.yf2{bottom:503.452500px;}
.y47b{bottom:503.457000px;}
.y1b7{bottom:503.460000px;}
.yab{bottom:503.467500px;}
.y2ef{bottom:503.472000px;}
.y87{bottom:503.487000px;}
.y1da{bottom:503.490000px;}
.y66{bottom:503.503500px;}
.y3b3{bottom:503.512500px;}
.y23e{bottom:503.520000px;}
.y3d{bottom:503.925000px;}
.y7{bottom:507.168225px;}
.y382{bottom:508.635000px;}
.y12f{bottom:510.885000px;}
.y3f7{bottom:512.040000px;}
.y2a3{bottom:512.385000px;}
.y110{bottom:516.885000px;}
.y357{bottom:518.385000px;}
.y2cc{bottom:518.407500px;}
.y43f{bottom:520.632000px;}
.y221{bottom:520.642500px;}
.y1f9{bottom:520.650000px;}
.y27b{bottom:520.657500px;}
.y45b{bottom:520.663500px;}
.y16a{bottom:520.672500px;}
.y30e{bottom:520.680000px;}
.y192{bottom:520.687500px;}
.yf1{bottom:520.695000px;}
.y47a{bottom:520.699500px;}
.y1b6{bottom:520.702500px;}
.yaa{bottom:520.710000px;}
.y2ee{bottom:520.714500px;}
.y86{bottom:520.729500px;}
.y1d9{bottom:520.732500px;}
.y65{bottom:520.746000px;}
.y3b2{bottom:520.755000px;}
.ycd{bottom:520.762500px;}
.y3c{bottom:521.167500px;}
.y6{bottom:522.173475px;}
.y12e{bottom:526.635000px;}
.y2a2{bottom:528.135000px;}
.y3f6{bottom:529.282500px;}
.y10f{bottom:532.635000px;}
.y356{bottom:534.135000px;}
.y2cb{bottom:535.650000px;}
.y5{bottom:537.178725px;}
.y1f8{bottom:537.892500px;}
.y27a{bottom:537.900000px;}
.y169{bottom:537.915000px;}
.y30d{bottom:537.922500px;}
.y191{bottom:537.930000px;}
.yf0{bottom:537.937500px;}
.y1b5{bottom:537.945000px;}
.ya9{bottom:537.952500px;}
.y2ed{bottom:537.957000px;}
.y85{bottom:537.972000px;}
.y1d8{bottom:537.975000px;}
.y64{bottom:537.988500px;}
.y3b1{bottom:537.997500px;}
.ycc{bottom:538.005000px;}
.y3b{bottom:538.410000px;}
.y12d{bottom:542.385000px;}
.y381{bottom:543.135000px;}
.y2a1{bottom:543.885000px;}
.y43e{bottom:546.504000px;}
.y3f5{bottom:546.525000px;}
.y479{bottom:546.571500px;}
.y10e{bottom:548.385000px;}
.y355{bottom:549.885000px;}
.y4{bottom:552.183975px;}
.y2ca{bottom:552.892500px;}
.y279{bottom:555.142500px;}
.y168{bottom:555.157500px;}
.y30c{bottom:555.165000px;}
.y190{bottom:555.172500px;}
.yef{bottom:555.180000px;}
.y1b4{bottom:555.187500px;}
.ya8{bottom:555.195000px;}
.y2ec{bottom:555.199500px;}
.y84{bottom:555.214500px;}
.y1d7{bottom:555.217500px;}
.y63{bottom:555.231000px;}
.y220{bottom:555.232500px;}
.y3b0{bottom:555.240000px;}
.ycb{bottom:555.247500px;}
.y3a{bottom:555.652500px;}
.y12c{bottom:558.135000px;}
.y380{bottom:558.885000px;}
.y2a0{bottom:559.635000px;}
.y3f4{bottom:563.767500px;}
.y478{bottom:563.814000px;}
.y10d{bottom:564.135000px;}
.y354{bottom:565.635000px;}
.y3{bottom:567.189225px;}
.y2c9{bottom:570.157500px;}
.y167{bottom:572.400000px;}
.y30b{bottom:572.407500px;}
.y18f{bottom:572.415000px;}
.yee{bottom:572.422500px;}
.y1b3{bottom:572.430000px;}
.ya7{bottom:572.437500px;}
.y2eb{bottom:572.442000px;}
.y83{bottom:572.457000px;}
.y1d6{bottom:572.460000px;}
.y62{bottom:572.473500px;}
.y21f{bottom:572.475000px;}
.y3af{bottom:572.482500px;}
.yca{bottom:572.490000px;}
.y39{bottom:572.895000px;}
.y12b{bottom:573.885000px;}
.y37f{bottom:574.635000px;}
.y29f{bottom:575.385000px;}
.y10c{bottom:579.885000px;}
.y3f3{bottom:581.047500px;}
.y353{bottom:581.385000px;}
.y2{bottom:582.194475px;}
.y2c8{bottom:587.400000px;}
.y166{bottom:589.642500px;}
.y30a{bottom:589.650000px;}
.y18e{bottom:589.657500px;}
.yed{bottom:589.665000px;}
.y1b2{bottom:589.672500px;}
.ya6{bottom:589.680000px;}
.y2ea{bottom:589.684500px;}
.y82{bottom:589.699500px;}
.y1d5{bottom:589.702500px;}
.y61{bottom:589.716000px;}
.y21e{bottom:589.717500px;}
.y3ae{bottom:589.725000px;}
.yc9{bottom:589.732500px;}
.y38{bottom:590.137500px;}
.y37e{bottom:590.385000px;}
.y29e{bottom:591.135000px;}
.y10b{bottom:595.635000px;}
.y352{bottom:597.135000px;}
.y3f2{bottom:598.290000px;}
.y2c7{bottom:604.642500px;}
.y37d{bottom:606.135000px;}
.y309{bottom:606.892500px;}
.y18d{bottom:606.900000px;}
.yec{bottom:606.907500px;}
.y1b1{bottom:606.915000px;}
.ya5{bottom:606.922500px;}
.y81{bottom:606.942000px;}
.y1d4{bottom:606.945000px;}
.y60{bottom:606.958500px;}
.y21d{bottom:606.960000px;}
.y3ad{bottom:606.967500px;}
.yc8{bottom:606.975000px;}
.y37{bottom:607.402500px;}
.y10a{bottom:611.385000px;}
.y1{bottom:612.195000px;}
.y351{bottom:612.885000px;}
.y3f1{bottom:615.532500px;}
.y2e9{bottom:615.556500px;}
.y2c6{bottom:621.885000px;}
.y18c{bottom:624.142500px;}
.yeb{bottom:624.150000px;}
.y1b0{bottom:624.157500px;}
.ya4{bottom:624.165000px;}
.y29d{bottom:624.180000px;}
.y1f7{bottom:624.184500px;}
.y1d3{bottom:624.187500px;}
.y5f{bottom:624.201000px;}
.y21c{bottom:624.202500px;}
.y334{bottom:624.210000px;}
.yc7{bottom:624.217500px;}
.y36{bottom:624.645000px;}
.y109{bottom:627.135000px;}
.y350{bottom:628.635000px;}
.y3f0{bottom:632.775000px;}
.y2e8{bottom:632.799000px;}
.y80{bottom:632.814000px;}
.y37c{bottom:637.635000px;}
.yea{bottom:641.392500px;}
.y1af{bottom:641.400000px;}
.ya3{bottom:641.407500px;}
.y278{bottom:641.415000px;}
.y29c{bottom:641.422500px;}
.y1f6{bottom:641.427000px;}
.y1d2{bottom:641.430000px;}
.y5e{bottom:641.443500px;}
.y18b{bottom:641.445000px;}
.y333{bottom:641.452500px;}
.yc6{bottom:641.460000px;}
.y35{bottom:641.887500px;}
.y108{bottom:642.885000px;}
.y34f{bottom:644.385000px;}
.y3ef{bottom:650.017500px;}
.y37b{bottom:653.385000px;}
.y2c5{bottom:656.385000px;}
.y1ae{bottom:658.642500px;}
.ya2{bottom:658.650000px;}
.y277{bottom:658.657500px;}
.y29b{bottom:658.665000px;}
.y1f5{bottom:658.669500px;}
.y14c{bottom:658.672500px;}
.y18a{bottom:658.687500px;}
.y332{bottom:658.695000px;}
.yc5{bottom:658.702500px;}
.y34{bottom:659.130000px;}
.y34e{bottom:660.135000px;}
.y3ee{bottom:667.315500px;}
.y37a{bottom:669.135000px;}
.y2c4{bottom:672.135000px;}
.ya1{bottom:675.892500px;}
.y276{bottom:675.900000px;}
.y29a{bottom:675.907500px;}
.y14b{bottom:675.915000px;}
.y107{bottom:675.922500px;}
.y1ad{bottom:675.928500px;}
.y189{bottom:675.930000px;}
.y331{bottom:675.937500px;}
.y5d{bottom:675.945000px;}
.y1f4{bottom:684.541500px;}
.y3ed{bottom:684.558000px;}
.y379{bottom:684.885000px;}
.y2c3{bottom:687.885000px;}
.y275{bottom:693.142500px;}
.y299{bottom:693.150000px;}
.y14a{bottom:693.157500px;}
.y106{bottom:693.165000px;}
.y1ac{bottom:693.171000px;}
.y188{bottom:693.172500px;}
.y330{bottom:693.180000px;}
.y5c{bottom:693.187500px;}
.y378{bottom:700.635000px;}
.y3ec{bottom:701.800500px;}
.y2c2{bottom:703.635000px;}
.y1c{bottom:704.337000px;}
.y298{bottom:710.392500px;}
.y149{bottom:710.400000px;}
.y105{bottom:710.407500px;}
.y1ab{bottom:710.413500px;}
.y187{bottom:710.415000px;}
.y32f{bottom:710.422500px;}
.y5b{bottom:710.430000px;}
.y377{bottom:716.385000px;}
.y1b{bottom:718.593000px;}
.y3eb{bottom:719.043000px;}
.y2c1{bottom:719.385000px;}
.y33{bottom:721.356000px;}
.y148{bottom:727.642500px;}
.y104{bottom:727.650000px;}
.y1aa{bottom:727.656000px;}
.y186{bottom:727.657500px;}
.y32e{bottom:727.665000px;}
.y5a{bottom:727.672500px;}
.y376{bottom:732.135000px;}
.y1a{bottom:732.849000px;}
.y2c0{bottom:735.135000px;}
.y3ea{bottom:736.285500px;}
.y103{bottom:744.892500px;}
.y185{bottom:744.900000px;}
.y32d{bottom:744.907500px;}
.y59{bottom:744.915000px;}
.y19{bottom:747.105000px;}
.y375{bottom:747.885000px;}
.y2bf{bottom:750.885000px;}
.y3e9{bottom:753.528000px;}
.y32{bottom:756.861000px;}
.y184{bottom:762.142500px;}
.y32c{bottom:762.150000px;}
.y58{bottom:762.157500px;}
.y374{bottom:763.635000px;}
.y18{bottom:765.105000px;}
.y2be{bottom:766.635000px;}
.y3e8{bottom:770.770500px;}
.y31{bottom:771.117000px;}
.y32b{bottom:779.392500px;}
.y57{bottom:779.400000px;}
.y2bd{bottom:782.385000px;}
.y30{bottom:785.373000px;}
.y3e7{bottom:788.013000px;}
.y56{bottom:796.642500px;}
.y2bc{bottom:798.135000px;}
.y2f{bottom:799.629000px;}
.y17{bottom:810.105000px;}
.y2e{bottom:813.885000px;}
.y16{bottom:861.105000px;}
.y1e{bottom:924.000000px;}
.h9{height:13.500000px;}
.hc{height:15.000000px;}
.hb{height:16.500000px;}
.hd{height:18.000000px;}
.h4{height:41.568000px;}
.h7{height:45.954000px;}
.h17{height:45.978000px;}
.h1b{height:46.002000px;}
.h20{height:46.026000px;}
.h1a{height:46.050000px;}
.h21{height:46.074000px;}
.h27{height:46.098000px;}
.h38{height:46.122000px;}
.h2f{height:46.146000px;}
.h14{height:46.170000px;}
.h18{height:46.194000px;}
.h2d{height:46.218000px;}
.h32{height:46.290000px;}
.h34{height:46.386000px;}
.he{height:46.764000px;}
.h8{height:47.085938px;}
.h2{height:48.507000px;}
.h3{height:48.649500px;}
.h1{height:49.362000px;}
.h1d{height:51.060000px;}
.ha{height:52.998047px;}
.h1f{height:55.542000px;}
.hf{height:56.166000px;}
.h11{height:57.156000px;}
.h37{height:60.106200px;}
.h13{height:60.364200px;}
.h2e{height:60.466200px;}
.h29{height:60.496200px;}
.h15{height:60.586200px;}
.h30{height:60.616200px;}
.h35{height:60.646200px;}
.h23{height:60.652200px;}
.h31{height:60.676200px;}
.h2b{height:60.706200px;}
.h33{height:60.718200px;}
.h22{height:60.736200px;}
.h26{height:60.766200px;}
.h2a{height:60.778200px;}
.h19{height:60.826200px;}
.h25{height:60.856200px;}
.h36{height:60.874200px;}
.h12{height:60.886200px;}
.h1e{height:60.916200px;}
.h28{height:60.922200px;}
.h1c{height:60.946200px;}
.h16{height:60.976200px;}
.h10{height:61.006200px;}
.h24{height:61.036200px;}
.h2c{height:61.066200px;}
.h39{height:61.096200px;}
.h6{height:61.272000px;}
.h5{height:81.696000px;}
.h0{height:892.500000px;}
.wa{width:189.000000px;}
.w9{width:226.500000px;}
.w5{width:231.000000px;}
.w6{width:234.000000px;}
.w8{width:235.500000px;}
.w4{width:249.000000px;}
.w7{width:253.500000px;}
.w1{width:267.000000px;}
.w3{width:268.500000px;}
.w2{width:271.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x12{left:1.500000px;}
.x4{left:4.500000px;}
.x7{left:33.000000px;}
.x9{left:37.500000px;}
.x5{left:39.000000px;}
.x6{left:49.906350px;}
.xc{left:52.534650px;}
.xb{left:55.147650px;}
.xf{left:70.500000px;}
.xd{left:72.000000px;}
.x1{left:74.700000px;}
.x18{left:75.915000px;}
.xa{left:86.304450px;}
.x1a{left:97.189500px;}
.x19{left:98.428500px;}
.x1e{left:101.211000px;}
.xe{left:105.787350px;}
.x13{left:108.406650px;}
.x10{left:114.753000px;}
.x1c{left:119.700000px;}
.x1b{left:120.915000px;}
.x8{left:122.634150px;}
.x1d{left:138.915000px;}
.x16{left:237.915000px;}
.x3{left:294.030000px;}
.x17{left:328.203000px;}
.x11{left:333.000000px;}
.x14{left:336.000000px;}
.x15{left:337.500000px;}
.x2{left:430.275000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v4{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:19.280000pt;}
.ls21{letter-spacing:-5.218667pt;}
.ls22{letter-spacing:-5.168000pt;}
.ls18{letter-spacing:-5.066667pt;}
.ls26{letter-spacing:-4.864000pt;}
.ls25{letter-spacing:-4.661333pt;}
.ls1e{letter-spacing:-4.205333pt;}
.ls1d{letter-spacing:-4.053333pt;}
.ls20{letter-spacing:-2.938667pt;}
.ls2b{letter-spacing:-2.544000pt;}
.ls15{letter-spacing:-2.280000pt;}
.ls16{letter-spacing:-2.128000pt;}
.ls44{letter-spacing:-1.760000pt;}
.ls28{letter-spacing:-1.728000pt;}
.ls3f{letter-spacing:-1.642667pt;}
.ls41{letter-spacing:-1.584000pt;}
.ls40{letter-spacing:-1.525333pt;}
.ls24{letter-spacing:-1.520000pt;}
.lsdc{letter-spacing:-1.466667pt;}
.ls10{letter-spacing:-1.418667pt;}
.ls60{letter-spacing:-1.408000pt;}
.ls13{letter-spacing:-1.368000pt;}
.ls7d{letter-spacing:-1.349333pt;}
.ls47{letter-spacing:-1.290667pt;}
.ls54{letter-spacing:-1.232000pt;}
.ls11{letter-spacing:-1.216000pt;}
.lsa0{letter-spacing:-1.200000pt;}
.ls27{letter-spacing:-1.194667pt;}
.lse0{letter-spacing:-1.173333pt;}
.ls1c{letter-spacing:-1.165333pt;}
.ls64{letter-spacing:-1.152000pt;}
.ls63{letter-spacing:-1.116000pt;}
.ls3c{letter-spacing:-1.114667pt;}
.ls2d{letter-spacing:-1.104000pt;}
.ls8f{letter-spacing:-1.066667pt;}
.ls4c{letter-spacing:-1.056000pt;}
.ls1b{letter-spacing:-1.013333pt;}
.ls94{letter-spacing:-1.008000pt;}
.ls8d{letter-spacing:-0.997333pt;}
.lscd{letter-spacing:-0.972000pt;}
.ls19{letter-spacing:-0.962667pt;}
.lscc{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.938667pt;}
.ls1a{letter-spacing:-0.912000pt;}
.ls46{letter-spacing:-0.880000pt;}
.ls29{letter-spacing:-0.864000pt;}
.ls1f{letter-spacing:-0.861333pt;}
.ls62{letter-spacing:-0.828000pt;}
.ls43{letter-spacing:-0.821333pt;}
.ls2e{letter-spacing:-0.816000pt;}
.lsf{letter-spacing:-0.810667pt;}
.ls6f{letter-spacing:-0.792000pt;}
.ls87{letter-spacing:-0.780267pt;}
.ls6e{letter-spacing:-0.768000pt;}
.ls51{letter-spacing:-0.762667pt;}
.lsb5{letter-spacing:-0.756000pt;}
.lsd1{letter-spacing:-0.746667pt;}
.ls96{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.709333pt;}
.ls4d{letter-spacing:-0.704000pt;}
.lsc9{letter-spacing:-0.684000pt;}
.ls2f{letter-spacing:-0.682667pt;}
.ls49{letter-spacing:-0.672000pt;}
.ls9e{letter-spacing:-0.657067pt;}
.lsc3{letter-spacing:-0.648000pt;}
.ls4e{letter-spacing:-0.645333pt;}
.ls8e{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.608000pt;}
.ls52{letter-spacing:-0.586667pt;}
.ls75{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.557333pt;}
.lsc2{letter-spacing:-0.533867pt;}
.ls8a{letter-spacing:-0.533333pt;}
.ls2a{letter-spacing:-0.528000pt;}
.lsee{letter-spacing:-0.506667pt;}
.ls9f{letter-spacing:-0.492800pt;}
.ls7f{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.469333pt;}
.ls73{letter-spacing:-0.432000pt;}
.lsc8{letter-spacing:-0.426667pt;}
.ls42{letter-spacing:-0.410667pt;}
.lse{letter-spacing:-0.405333pt;}
.lsb8{letter-spacing:-0.396000pt;}
.ls81{letter-spacing:-0.384000pt;}
.lsd4{letter-spacing:-0.373333pt;}
.lsc0{letter-spacing:-0.369600pt;}
.lseb{letter-spacing:-0.360000pt;}
.lsed{letter-spacing:-0.354667pt;}
.ls45{letter-spacing:-0.352000pt;}
.ls61{letter-spacing:-0.336000pt;}
.lsb6{letter-spacing:-0.324000pt;}
.ls8b{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.304000pt;}
.ls3a{letter-spacing:-0.293333pt;}
.ls80{letter-spacing:-0.288000pt;}
.lscb{letter-spacing:-0.266667pt;}
.lsdb{letter-spacing:-0.252000pt;}
.ls6d{letter-spacing:-0.246400pt;}
.ls38{letter-spacing:-0.240000pt;}
.ls39{letter-spacing:-0.234667pt;}
.lsda{letter-spacing:-0.216000pt;}
.ls3b{letter-spacing:-0.205333pt;}
.ls72{letter-spacing:-0.192000pt;}
.lsab{letter-spacing:-0.180000pt;}
.ls53{letter-spacing:-0.176000pt;}
.ls71{letter-spacing:-0.144000pt;}
.lsb4{letter-spacing:-0.123200pt;}
.ls4f{letter-spacing:-0.117333pt;}
.ls90{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.088000pt;}
.lsb9{letter-spacing:-0.072000pt;}
.ls3d{letter-spacing:-0.058667pt;}
.ls88{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.050667pt;}
.ls70{letter-spacing:-0.048000pt;}
.lsea{letter-spacing:-0.044000pt;}
.ls48{letter-spacing:-0.042667pt;}
.ls93{letter-spacing:-0.041067pt;}
.ls89{letter-spacing:-0.040000pt;}
.ls84{letter-spacing:-0.036000pt;}
.lsc{letter-spacing:0.000000pt;}
.lsd2{letter-spacing:0.036000pt;}
.ls9d{letter-spacing:0.041067pt;}
.ls7e{letter-spacing:0.044000pt;}
.ls5c{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.050667pt;}
.lsca{letter-spacing:0.053333pt;}
.ls4a{letter-spacing:0.058667pt;}
.ls9b{letter-spacing:0.072000pt;}
.lsdd{letter-spacing:0.082133pt;}
.ls91{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls8c{letter-spacing:0.106667pt;}
.lsa7{letter-spacing:0.108000pt;}
.ls37{letter-spacing:0.117333pt;}
.lsb7{letter-spacing:0.123200pt;}
.ls6c{letter-spacing:0.144000pt;}
.ls69{letter-spacing:0.154667pt;}
.ls5b{letter-spacing:0.160000pt;}
.ls99{letter-spacing:0.164267pt;}
.ls30{letter-spacing:0.176000pt;}
.lsa4{letter-spacing:0.180000pt;}
.ls67{letter-spacing:0.192000pt;}
.lsc1{letter-spacing:0.205333pt;}
.lsc5{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.216000pt;}
.ls5a{letter-spacing:0.218667pt;}
.lse7{letter-spacing:0.224000pt;}
.ls32{letter-spacing:0.234667pt;}
.ls6a{letter-spacing:0.240000pt;}
.lsaa{letter-spacing:0.250667pt;}
.lsa9{letter-spacing:0.252000pt;}
.lsd5{letter-spacing:0.287467pt;}
.ls6b{letter-spacing:0.288000pt;}
.ls76{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.304000pt;}
.lsd6{letter-spacing:0.320000pt;}
.lsaf{letter-spacing:0.324000pt;}
.lsc4{letter-spacing:0.328533pt;}
.ls5e{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.352000pt;}
.lsbe{letter-spacing:0.360000pt;}
.ls85{letter-spacing:0.373333pt;}
.ls9a{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.405333pt;}
.ls35{letter-spacing:0.410667pt;}
.lsc7{letter-spacing:0.426667pt;}
.ls7c{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.456000pt;}
.lsb0{letter-spacing:0.468000pt;}
.ls4b{letter-spacing:0.469333pt;}
.ls92{letter-spacing:0.480000pt;}
.ls95{letter-spacing:0.504000pt;}
.ls14{letter-spacing:0.506667pt;}
.ls66{letter-spacing:0.528000pt;}
.lsd7{letter-spacing:0.533333pt;}
.lscf{letter-spacing:0.540000pt;}
.ls0{letter-spacing:0.557333pt;}
.lsac{letter-spacing:0.576000pt;}
.ls65{letter-spacing:0.586667pt;}
.lsae{letter-spacing:0.624000pt;}
.lsc6{letter-spacing:0.640000pt;}
.ls97{letter-spacing:0.645333pt;}
.ls5d{letter-spacing:0.672000pt;}
.ls86{letter-spacing:0.693333pt;}
.ls36{letter-spacing:0.704000pt;}
.lsbc{letter-spacing:0.720000pt;}
.lsa5{letter-spacing:0.739200pt;}
.lse6{letter-spacing:0.756000pt;}
.ls33{letter-spacing:0.762667pt;}
.ls79{letter-spacing:0.768000pt;}
.ls78{letter-spacing:0.816000pt;}
.ls34{letter-spacing:0.821333pt;}
.ls5{letter-spacing:0.861333pt;}
.lse4{letter-spacing:0.864000pt;}
.ls57{letter-spacing:0.880000pt;}
.ls82{letter-spacing:0.900000pt;}
.ls58{letter-spacing:0.938667pt;}
.lsd9{letter-spacing:0.944533pt;}
.ls98{letter-spacing:0.960000pt;}
.ls4{letter-spacing:0.962667pt;}
.ls59{letter-spacing:0.997333pt;}
.ls9c{letter-spacing:1.008000pt;}
.lsd3{letter-spacing:1.026667pt;}
.ls77{letter-spacing:1.056000pt;}
.lsad{letter-spacing:1.080000pt;}
.lsb1{letter-spacing:1.104000pt;}
.lsbf{letter-spacing:1.114667pt;}
.lsb3{letter-spacing:1.116000pt;}
.lsb2{letter-spacing:1.152000pt;}
.lsa8{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.200000pt;}
.ls7b{letter-spacing:1.224000pt;}
.lsdf{letter-spacing:1.232000pt;}
.ls83{letter-spacing:1.248000pt;}
.ls56{letter-spacing:1.290667pt;}
.ls50{letter-spacing:1.349333pt;}
.lsa1{letter-spacing:1.408000pt;}
.lsd0{letter-spacing:1.466667pt;}
.ls2{letter-spacing:1.469333pt;}
.lsd8{letter-spacing:1.525333pt;}
.lsa6{letter-spacing:1.584000pt;}
.lse8{letter-spacing:1.632000pt;}
.lsa3{letter-spacing:1.642667pt;}
.lse9{letter-spacing:1.656000pt;}
.lsbd{letter-spacing:1.701333pt;}
.lsbb{letter-spacing:1.877333pt;}
.lsa2{letter-spacing:1.994667pt;}
.lsec{letter-spacing:2.208000pt;}
.ls8{letter-spacing:11.501333pt;}
.lsce{letter-spacing:12.048000pt;}
.lse1{letter-spacing:13.024000pt;}
.lse2{letter-spacing:13.258667pt;}
.lsba{letter-spacing:13.845333pt;}
.lse3{letter-spacing:15.898667pt;}
.lse5{letter-spacing:16.250667pt;}
.lsde{letter-spacing:16.485333pt;}
.lsa{letter-spacing:42.624000pt;}
.ws1b{word-spacing:-20.138667pt;}
.wsf7{word-spacing:-16.250667pt;}
.ws151{word-spacing:-16.192000pt;}
.ws154{word-spacing:-16.133333pt;}
.wsf2{word-spacing:-16.074667pt;}
.ws79{word-spacing:-16.016000pt;}
.ws78{word-spacing:-15.957333pt;}
.ws11f{word-spacing:-15.781333pt;}
.ws15b{word-spacing:-15.722667pt;}
.ws86{word-spacing:-15.664000pt;}
.wsf3{word-spacing:-15.605333pt;}
.wsf6{word-spacing:-15.546667pt;}
.ws3d{word-spacing:-15.488000pt;}
.ws3c{word-spacing:-15.429333pt;}
.wsf5{word-spacing:-15.370667pt;}
.ws155{word-spacing:-15.312000pt;}
.wsf4{word-spacing:-15.253333pt;}
.wse0{word-spacing:-15.194667pt;}
.ws87{word-spacing:-15.136000pt;}
.ws3f{word-spacing:-15.077333pt;}
.wsde{word-spacing:-15.018667pt;}
.ws120{word-spacing:-14.960000pt;}
.ws3a{word-spacing:-14.901333pt;}
.ws6a{word-spacing:-14.842667pt;}
.ws65{word-spacing:-14.784000pt;}
.ws98{word-spacing:-14.725333pt;}
.ws36{word-spacing:-14.666667pt;}
.ws68{word-spacing:-14.608000pt;}
.ws6c{word-spacing:-14.549333pt;}
.ws7a{word-spacing:-14.490667pt;}
.ws37{word-spacing:-14.432000pt;}
.ws44{word-spacing:-14.373333pt;}
.ws43{word-spacing:-14.314667pt;}
.ws12b{word-spacing:-14.293333pt;}
.ws42{word-spacing:-14.256000pt;}
.ws16f{word-spacing:-14.208000pt;}
.ws106{word-spacing:-14.197333pt;}
.ws100{word-spacing:-14.138667pt;}
.ws74{word-spacing:-14.080000pt;}
.ws146{word-spacing:-14.026667pt;}
.ws6b{word-spacing:-14.021333pt;}
.ws7c{word-spacing:-13.962667pt;}
.ws123{word-spacing:-13.904000pt;}
.ws141{word-spacing:-13.845333pt;}
.ws75{word-spacing:-13.786667pt;}
.ws12c{word-spacing:-13.760000pt;}
.ws165{word-spacing:-13.728000pt;}
.wsdc{word-spacing:-13.669333pt;}
.ws63{word-spacing:-13.610667pt;}
.ws3e{word-spacing:-13.552000pt;}
.ws132{word-spacing:-13.546667pt;}
.ws164{word-spacing:-13.493333pt;}
.wsc0{word-spacing:-13.333333pt;}
.wsec{word-spacing:-13.317333pt;}
.wsc1{word-spacing:-13.280000pt;}
.wsad{word-spacing:-13.258667pt;}
.wsb4{word-spacing:-13.248000pt;}
.wsd2{word-spacing:-13.226667pt;}
.ws15c{word-spacing:-13.200000pt;}
.ws110{word-spacing:-13.104000pt;}
.ws40{word-spacing:-13.082667pt;}
.ws145{word-spacing:-13.066667pt;}
.wsb7{word-spacing:-13.056000pt;}
.ws128{word-spacing:-13.024000pt;}
.wsef{word-spacing:-13.008000pt;}
.ws9{word-spacing:-12.920000pt;}
.wsd0{word-spacing:-12.853333pt;}
.wscf{word-spacing:-12.800000pt;}
.wsaf{word-spacing:-12.768000pt;}
.ws11b{word-spacing:-12.720000pt;}
.ws89{word-spacing:-12.672000pt;}
.ws6{word-spacing:-12.666667pt;}
.ws161{word-spacing:-12.624000pt;}
.ws1{word-spacing:-12.616000pt;}
.ws105{word-spacing:-12.576000pt;}
.ws173{word-spacing:-12.565333pt;}
.ws129{word-spacing:-12.528000pt;}
.wse3{word-spacing:-12.480000pt;}
.wsb8{word-spacing:-12.432000pt;}
.ws11c{word-spacing:-12.384000pt;}
.ws8{word-spacing:-12.362667pt;}
.wsa4{word-spacing:-12.336000pt;}
.ws12a{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.312000pt;}
.wsa3{word-spacing:-12.288000pt;}
.wsd1{word-spacing:-12.266667pt;}
.ws2{word-spacing:-12.261333pt;}
.ws102{word-spacing:-12.240000pt;}
.wsfa{word-spacing:-12.192000pt;}
.wsc4{word-spacing:-12.144000pt;}
.ws11{word-spacing:-12.109333pt;}
.ws10c{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.058667pt;}
.ws88{word-spacing:-12.048000pt;}
.ws1f{word-spacing:-12.000000pt;}
.wsa1{word-spacing:-11.952000pt;}
.wsa5{word-spacing:-11.904000pt;}
.ws115{word-spacing:-11.856000pt;}
.wsc3{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.805333pt;}
.ws8a{word-spacing:-11.760000pt;}
.wsd{word-spacing:-11.754667pt;}
.ws114{word-spacing:-11.712000pt;}
.wsc{word-spacing:-11.704000pt;}
.ws8b{word-spacing:-11.664000pt;}
.wse{word-spacing:-11.653333pt;}
.ws11d{word-spacing:-11.616000pt;}
.ws159{word-spacing:-11.568000pt;}
.wsb0{word-spacing:-11.520000pt;}
.ws10{word-spacing:-11.501333pt;}
.ws1e{word-spacing:-11.472000pt;}
.wsa{word-spacing:-11.450667pt;}
.wsc5{word-spacing:-11.424000pt;}
.ws21{word-spacing:-11.376000pt;}
.ws47{word-spacing:-11.328000pt;}
.ws4{word-spacing:-11.298667pt;}
.wse4{word-spacing:-11.280000pt;}
.ws3{word-spacing:-11.248000pt;}
.ws9e{word-spacing:-11.232000pt;}
.ws23{word-spacing:-11.184000pt;}
.ws18{word-spacing:-11.146667pt;}
.ws1d{word-spacing:-11.136000pt;}
.ws134{word-spacing:-11.040000pt;}
.wsf1{word-spacing:-11.005867pt;}
.ws13e{word-spacing:-11.000000pt;}
.wse1{word-spacing:-10.992000pt;}
.ws168{word-spacing:-10.956000pt;}
.wsa0{word-spacing:-10.944000pt;}
.ws22{word-spacing:-10.896000pt;}
.ws7{word-spacing:-10.792000pt;}
.wsfb{word-spacing:-10.677333pt;}
.ws16e{word-spacing:-10.656000pt;}
.ws76{word-spacing:-10.648000pt;}
.ws127{word-spacing:-10.595200pt;}
.ws14b{word-spacing:-10.554133pt;}
.ws121{word-spacing:-10.472000pt;}
.wse8{word-spacing:-10.430933pt;}
.ws113{word-spacing:-10.389867pt;}
.ws5{word-spacing:-10.386667pt;}
.ws15e{word-spacing:-10.348800pt;}
.wsea{word-spacing:-10.307733pt;}
.ws1c{word-spacing:-10.272000pt;}
.ws9a{word-spacing:-10.266667pt;}
.wsdd{word-spacing:-10.225600pt;}
.wsb3{word-spacing:-10.224000pt;}
.ws107{word-spacing:-10.143467pt;}
.ws111{word-spacing:-10.116000pt;}
.ws39{word-spacing:-10.061333pt;}
.ws99{word-spacing:-10.020267pt;}
.wsb2{word-spacing:-9.900000pt;}
.wsed{word-spacing:-9.773867pt;}
.ws166{word-spacing:-9.756000pt;}
.ws124{word-spacing:-9.732800pt;}
.ws14{word-spacing:-9.728000pt;}
.ws14e{word-spacing:-9.706667pt;}
.wseb{word-spacing:-9.609600pt;}
.ws13f{word-spacing:-9.540000pt;}
.wse2{word-spacing:-9.504000pt;}
.wsbf{word-spacing:-9.486400pt;}
.ws10f{word-spacing:-9.468000pt;}
.ws20{word-spacing:-9.456000pt;}
.ws119{word-spacing:-9.360000pt;}
.wsd3{word-spacing:-9.333333pt;}
.ws10e{word-spacing:-9.324000pt;}
.ws101{word-spacing:-9.252000pt;}
.ws14f{word-spacing:-9.216000pt;}
.wsfd{word-spacing:-9.180000pt;}
.wsf8{word-spacing:-9.108000pt;}
.ws10d{word-spacing:-9.072000pt;}
.ws14c{word-spacing:-9.036000pt;}
.wsa6{word-spacing:-9.000000pt;}
.wsb6{word-spacing:-8.964000pt;}
.ws135{word-spacing:-8.928000pt;}
.ws137{word-spacing:-8.856000pt;}
.ws156{word-spacing:-8.784000pt;}
.ws157{word-spacing:-8.748000pt;}
.wsb1{word-spacing:-8.712000pt;}
.ws10b{word-spacing:-8.676000pt;}
.ws16d{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.613333pt;}
.ws116{word-spacing:-8.604000pt;}
.ws16a{word-spacing:-8.568000pt;}
.ws13{word-spacing:-8.461333pt;}
.ws109{word-spacing:-8.424000pt;}
.ws16c{word-spacing:-8.244000pt;}
.ws108{word-spacing:-8.208000pt;}
.ws8c{word-spacing:-8.172000pt;}
.ws122{word-spacing:-8.136000pt;}
.ws19{word-spacing:-8.005333pt;}
.ws8d{word-spacing:-7.884000pt;}
.ws1a{word-spacing:-7.802667pt;}
.wsb{word-spacing:-7.600000pt;}
.ws17{word-spacing:-7.498667pt;}
.ws16{word-spacing:-7.448000pt;}
.ws35{word-spacing:-6.997333pt;}
.ws140{word-spacing:-1.056000pt;}
.ws153{word-spacing:-0.821333pt;}
.ws85{word-spacing:-0.762667pt;}
.ws71{word-spacing:-0.704000pt;}
.ws56{word-spacing:-0.645333pt;}
.ws12e{word-spacing:-0.640000pt;}
.wsb5{word-spacing:-0.624000pt;}
.ws58{word-spacing:-0.586667pt;}
.wsac{word-spacing:-0.576000pt;}
.ws148{word-spacing:-0.533333pt;}
.ws4d{word-spacing:-0.528000pt;}
.wsa9{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.469333pt;}
.ws49{word-spacing:-0.432000pt;}
.ws13c{word-spacing:-0.426667pt;}
.ws6d{word-spacing:-0.410667pt;}
.ws93{word-spacing:-0.384000pt;}
.wsc9{word-spacing:-0.373333pt;}
.ws34{word-spacing:-0.354667pt;}
.ws6e{word-spacing:-0.352000pt;}
.ws48{word-spacing:-0.336000pt;}
.wsd7{word-spacing:-0.320000pt;}
.ws174{word-spacing:-0.304000pt;}
.ws38{word-spacing:-0.293333pt;}
.wsa2{word-spacing:-0.288000pt;}
.wsd6{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.234667pt;}
.wsda{word-spacing:-0.213333pt;}
.wsaa{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.176000pt;}
.wsc8{word-spacing:-0.160000pt;}
.ws175{word-spacing:-0.152000pt;}
.wsbb{word-spacing:-0.144000pt;}
.ws5c{word-spacing:-0.117333pt;}
.wsca{word-spacing:-0.106667pt;}
.wscd{word-spacing:-0.096000pt;}
.ws72{word-spacing:-0.058667pt;}
.wsdb{word-spacing:-0.053333pt;}
.ws4a{word-spacing:-0.048000pt;}
.ws24{word-spacing:0.000000pt;}
.ws62{word-spacing:0.048000pt;}
.ws28{word-spacing:0.050667pt;}
.ws5d{word-spacing:0.058667pt;}
.ws61{word-spacing:0.096000pt;}
.ws13a{word-spacing:0.106667pt;}
.ws77{word-spacing:0.117333pt;}
.wsce{word-spacing:0.144000pt;}
.ws26{word-spacing:0.152000pt;}
.ws13b{word-spacing:0.160000pt;}
.ws81{word-spacing:0.176000pt;}
.wsa8{word-spacing:0.192000pt;}
.ws31{word-spacing:0.202667pt;}
.wsd5{word-spacing:0.213333pt;}
.ws41{word-spacing:0.234667pt;}
.wscc{word-spacing:0.240000pt;}
.wsbe{word-spacing:0.288000pt;}
.ws5e{word-spacing:0.293333pt;}
.ws12f{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.324267pt;}
.wsb9{word-spacing:0.336000pt;}
.ws54{word-spacing:0.352000pt;}
.wsd8{word-spacing:0.373333pt;}
.wsba{word-spacing:0.384000pt;}
.ws90{word-spacing:0.410667pt;}
.ws8f{word-spacing:0.432000pt;}
.ws2f{word-spacing:0.456000pt;}
.ws80{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.506667pt;}
.ws57{word-spacing:0.528000pt;}
.ws27{word-spacing:0.557333pt;}
.ws97{word-spacing:0.576000pt;}
.ws53{word-spacing:0.586667pt;}
.wse6{word-spacing:0.624000pt;}
.wsc6{word-spacing:0.640000pt;}
.ws52{word-spacing:0.645333pt;}
.ws95{word-spacing:0.672000pt;}
.ws51{word-spacing:0.704000pt;}
.ws25{word-spacing:0.709333pt;}
.wse7{word-spacing:0.720000pt;}
.ws138{word-spacing:0.746667pt;}
.ws6f{word-spacing:0.762667pt;}
.wsbd{word-spacing:0.768000pt;}
.ws150{word-spacing:0.800000pt;}
.ws94{word-spacing:0.816000pt;}
.ws82{word-spacing:0.821333pt;}
.ws170{word-spacing:0.828000pt;}
.ws32{word-spacing:0.861333pt;}
.ws91{word-spacing:0.862400pt;}
.wsf0{word-spacing:0.864000pt;}
.ws7d{word-spacing:0.880000pt;}
.ws131{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.912000pt;}
.ws70{word-spacing:0.938667pt;}
.wsc7{word-spacing:0.960000pt;}
.ws29{word-spacing:0.962667pt;}
.ws55{word-spacing:0.997333pt;}
.wsa7{word-spacing:1.008000pt;}
.ws147{word-spacing:1.013333pt;}
.ws4e{word-spacing:1.056000pt;}
.ws9b{word-spacing:1.104000pt;}
.ws73{word-spacing:1.114667pt;}
.ws130{word-spacing:1.120000pt;}
.ws92{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.165333pt;}
.ws50{word-spacing:1.173333pt;}
.wsab{word-spacing:1.200000pt;}
.ws30{word-spacing:1.216000pt;}
.wscb{word-spacing:1.226667pt;}
.ws5b{word-spacing:1.232000pt;}
.ws118{word-spacing:1.248000pt;}
.ws2d{word-spacing:1.266667pt;}
.ws139{word-spacing:1.280000pt;}
.ws4c{word-spacing:1.290667pt;}
.wsd9{word-spacing:1.333333pt;}
.ws5f{word-spacing:1.349333pt;}
.ws33{word-spacing:1.352800pt;}
.ws5a{word-spacing:1.408000pt;}
.ws7e{word-spacing:1.466667pt;}
.ws3b{word-spacing:1.525333pt;}
.ws69{word-spacing:1.584000pt;}
.wsbc{word-spacing:2.016000pt;}
.ws15d{word-spacing:2.170667pt;}
.ws117{word-spacing:2.445333pt;}
.ws160{word-spacing:2.456000pt;}
.wsfc{word-spacing:2.578667pt;}
.ws136{word-spacing:2.600000pt;}
.wsc2{word-spacing:2.613333pt;}
.ws158{word-spacing:2.693333pt;}
.ws15a{word-spacing:2.898667pt;}
.ws12d{word-spacing:2.962667pt;}
.wse9{word-spacing:2.978667pt;}
.wse5{word-spacing:2.990667pt;}
.ws126{word-spacing:3.022667pt;}
.ws163{word-spacing:3.048000pt;}
.ws16b{word-spacing:3.129333pt;}
.ws10a{word-spacing:3.177333pt;}
.ws9f{word-spacing:3.234667pt;}
.ws133{word-spacing:3.310667pt;}
.ws7f{word-spacing:3.344000pt;}
.ws8e{word-spacing:3.477333pt;}
.ws171{word-spacing:3.648000pt;}
.ws125{word-spacing:3.704000pt;}
.ws104{word-spacing:3.761333pt;}
.ws169{word-spacing:3.858667pt;}
.wsfe{word-spacing:3.888000pt;}
.wsff{word-spacing:3.921333pt;}
.ws9d{word-spacing:3.961333pt;}
.ws143{word-spacing:3.988000pt;}
.ws9c{word-spacing:3.996000pt;}
.wsf9{word-spacing:4.020000pt;}
.ws11a{word-spacing:4.034667pt;}
.wsee{word-spacing:4.177333pt;}
.ws11e{word-spacing:4.335467pt;}
.ws144{word-spacing:4.517333pt;}
.ws83{word-spacing:4.840000pt;}
.wsdf{word-spacing:4.954667pt;}
.wsae{word-spacing:5.137333pt;}
.ws13d{word-spacing:5.520000pt;}
.ws152{word-spacing:5.566400pt;}
.ws103{word-spacing:5.712000pt;}
.ws112{word-spacing:5.876800pt;}
.ws14d{word-spacing:5.925333pt;}
.ws142{word-spacing:7.248000pt;}
.ws162{word-spacing:7.685333pt;}
.wsd4{word-spacing:8.016000pt;}
.ws15f{word-spacing:8.400000pt;}
.ws67{word-spacing:10.032000pt;}
.ws149{word-spacing:10.813333pt;}
.ws172{word-spacing:12.672000pt;}
.ws14a{word-spacing:13.226667pt;}
.ws64{word-spacing:14.138667pt;}
.ws66{word-spacing:15.194667pt;}
.ws84{word-spacing:17.248000pt;}
.ws167{word-spacing:21.354667pt;}
.ws7b{word-spacing:23.760000pt;}
.ws45{word-spacing:31.914667pt;}
.ws46{word-spacing:32.016000pt;}
._12{margin-left:-8.784000pt;}
._4{margin-left:-6.981333pt;}
._d{margin-left:-5.514667pt;}
._a{margin-left:-4.106667pt;}
._1{margin-left:-3.209165pt;}
._3{margin-left:-1.994667pt;}
._0{margin-left:-1.062835pt;}
._2{width:1.405333pt;}
._f{width:3.050667pt;}
._10{width:4.282667pt;}
._13{width:5.388168pt;}
._c{width:10.469333pt;}
._b{width:12.965333pt;}
._14{width:13.904000pt;}
._7{width:14.962667pt;}
._6{width:17.426667pt;}
._11{width:20.016000pt;}
._9{width:42.624000pt;}
._e{width:44.016000pt;}
._8{width:547.793501pt;}
._5{width:1102.677333pt;}
.fs8{font-size:36.000000pt;}
.fsb{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:1.908000pt;}
.y24{bottom:2.574667pt;}
.y22{bottom:3.241333pt;}
.y26{bottom:3.908000pt;}
.y29{bottom:38.666667pt;}
.y373{bottom:48.434667pt;}
.y147{bottom:48.546667pt;}
.y3e6{bottom:48.706667pt;}
.y2e7{bottom:48.786667pt;}
.y1f3{bottom:48.794667pt;}
.y254{bottom:48.840000pt;}
.ye9{bottom:48.842667pt;}
.y32a{bottom:48.848000pt;}
.y40c{bottom:48.853333pt;}
.y1a9{bottom:48.866667pt;}
.y45a{bottom:48.880000pt;}
.y214{bottom:48.885333pt;}
.y423{bottom:48.896000pt;}
.y39c{bottom:48.936000pt;}
.ya0{bottom:48.938667pt;}
.y297{bottom:48.941333pt;}
.y43d{bottom:49.008000pt;}
.y12a{bottom:49.018667pt;}
.y7f{bottom:49.050667pt;}
.y34d{bottom:49.168000pt;}
.y102{bottom:49.200000pt;}
.y494{bottom:49.205333pt;}
.y165{bottom:49.240000pt;}
.y23d{bottom:49.258667pt;}
.y3cb{bottom:49.333333pt;}
.y2bb{bottom:49.341333pt;}
.y183{bottom:49.370667pt;}
.yc4{bottom:49.381333pt;}
.y274{bottom:49.392000pt;}
.y308{bottom:49.400000pt;}
.y1d1{bottom:49.416000pt;}
.y55{bottom:49.434667pt;}
.y25f{bottom:49.469333pt;}
.y477{bottom:49.488000pt;}
.y3ac{bottom:49.528000pt;}
.y28{bottom:56.000000pt;}
.y372{bottom:61.048000pt;}
.y3e5{bottom:61.378667pt;}
.y1f2{bottom:61.434667pt;}
.y2e6{bottom:61.458667pt;}
.y253{bottom:61.512000pt;}
.ye8{bottom:61.514667pt;}
.y329{bottom:61.520000pt;}
.y40b{bottom:61.525333pt;}
.y1a8{bottom:61.538667pt;}
.y459{bottom:61.552000pt;}
.y213{bottom:61.557333pt;}
.y422{bottom:61.568000pt;}
.y296{bottom:61.608000pt;}
.y43c{bottom:61.680000pt;}
.y129{bottom:61.690667pt;}
.y21b{bottom:61.722667pt;}
.y34c{bottom:61.808000pt;}
.y101{bottom:61.872000pt;}
.y493{bottom:61.877333pt;}
.y164{bottom:61.912000pt;}
.y23c{bottom:61.930667pt;}
.yc3{bottom:62.005333pt;}
.y2ba{bottom:62.008000pt;}
.y182{bottom:62.042667pt;}
.y273{bottom:62.064000pt;}
.y307{bottom:62.072000pt;}
.y1d0{bottom:62.088000pt;}
.y54{bottom:62.106667pt;}
.y25e{bottom:62.141333pt;}
.y476{bottom:62.149333pt;}
.y3ab{bottom:62.200000pt;}
.y9f{bottom:64.265333pt;}
.y7e{bottom:64.377333pt;}
.y49b{bottom:68.786667pt;}
.y27{bottom:70.666667pt;}
.y371{bottom:73.720000pt;}
.y3e4{bottom:74.050667pt;}
.y1f1{bottom:74.106667pt;}
.y2e5{bottom:74.130667pt;}
.ye7{bottom:74.133333pt;}
.y252{bottom:74.184000pt;}
.y328{bottom:74.192000pt;}
.y40a{bottom:74.197333pt;}
.y421{bottom:74.202667pt;}
.y295{bottom:74.205333pt;}
.y1a7{bottom:74.210667pt;}
.y458{bottom:74.224000pt;}
.y212{bottom:74.229333pt;}
.y39b{bottom:74.280000pt;}
.y43b{bottom:74.352000pt;}
.y128{bottom:74.362667pt;}
.y21a{bottom:74.394667pt;}
.y34b{bottom:74.480000pt;}
.y100{bottom:74.544000pt;}
.y492{bottom:74.549333pt;}
.y163{bottom:74.584000pt;}
.y23b{bottom:74.602667pt;}
.y2b9{bottom:74.674667pt;}
.yc2{bottom:74.677333pt;}
.y181{bottom:74.714667pt;}
.y272{bottom:74.736000pt;}
.y306{bottom:74.744000pt;}
.y1cf{bottom:74.760000pt;}
.y25d{bottom:74.813333pt;}
.y475{bottom:74.821333pt;}
.y3aa{bottom:74.872000pt;}
.y9e{bottom:79.592000pt;}
.y7d{bottom:79.704000pt;}
.y49a{bottom:82.101333pt;}
.y25{bottom:85.333333pt;}
.y370{bottom:86.392000pt;}
.y3e3{bottom:86.722667pt;}
.y1f0{bottom:86.778667pt;}
.y2e4{bottom:86.802667pt;}
.ye6{bottom:86.805333pt;}
.y251{bottom:86.856000pt;}
.y327{bottom:86.864000pt;}
.y409{bottom:86.869333pt;}
.y420{bottom:86.874667pt;}
.y294{bottom:86.877333pt;}
.y1a6{bottom:86.882667pt;}
.y457{bottom:86.896000pt;}
.y211{bottom:86.901333pt;}
.y39a{bottom:86.952000pt;}
.y43a{bottom:87.024000pt;}
.y127{bottom:87.034667pt;}
.y219{bottom:87.056000pt;}
.y34a{bottom:87.152000pt;}
.yff{bottom:87.216000pt;}
.y491{bottom:87.221333pt;}
.y162{bottom:87.256000pt;}
.y23a{bottom:87.274667pt;}
.y2b8{bottom:87.346667pt;}
.yc1{bottom:87.349333pt;}
.y180{bottom:87.365333pt;}
.y271{bottom:87.408000pt;}
.y305{bottom:87.416000pt;}
.y1ce{bottom:87.432000pt;}
.y25c{bottom:87.485333pt;}
.y474{bottom:87.488000pt;}
.y3a9{bottom:87.544000pt;}
.y9d{bottom:94.918667pt;}
.y7c{bottom:95.030667pt;}
.y3ca{bottom:95.053333pt;}
.y499{bottom:95.439333pt;}
.y146{bottom:95.553333pt;}
.y36f{bottom:99.064000pt;}
.y3e2{bottom:99.394667pt;}
.y1ef{bottom:99.450667pt;}
.y2e3{bottom:99.474667pt;}
.ye5{bottom:99.477333pt;}
.y250{bottom:99.528000pt;}
.y326{bottom:99.536000pt;}
.y210{bottom:99.541333pt;}
.y41f{bottom:99.546667pt;}
.y293{bottom:99.549333pt;}
.y1a5{bottom:99.554667pt;}
.y456{bottom:99.568000pt;}
.y399{bottom:99.624000pt;}
.y439{bottom:99.696000pt;}
.y126{bottom:99.706667pt;}
.y218{bottom:99.728000pt;}
.y349{bottom:99.824000pt;}
.yfe{bottom:99.888000pt;}
.y490{bottom:99.893333pt;}
.y161{bottom:99.928000pt;}
.y239{bottom:99.946667pt;}
.yc0{bottom:100.021333pt;}
.y17f{bottom:100.037333pt;}
.y270{bottom:100.080000pt;}
.y304{bottom:100.088000pt;}
.y1cd{bottom:100.104000pt;}
.y473{bottom:100.154667pt;}
.y25b{bottom:100.157333pt;}
.y3a8{bottom:100.216000pt;}
.y23{bottom:102.666667pt;}
.y498{bottom:108.777333pt;}
.y9c{bottom:110.245333pt;}
.y7b{bottom:110.357333pt;}
.y3c9{bottom:110.380000pt;}
.y53{bottom:110.746667pt;}
.y145{bottom:110.880000pt;}
.y36e{bottom:111.736000pt;}
.y3e1{bottom:112.066667pt;}
.y1ee{bottom:112.122667pt;}
.y2e2{bottom:112.146667pt;}
.ye4{bottom:112.149333pt;}
.y24f{bottom:112.200000pt;}
.y325{bottom:112.208000pt;}
.y20f{bottom:112.213333pt;}
.y41e{bottom:112.218667pt;}
.y292{bottom:112.221333pt;}
.y1a4{bottom:112.226667pt;}
.y455{bottom:112.240000pt;}
.y398{bottom:112.296000pt;}
.y438{bottom:112.368000pt;}
.y125{bottom:112.378667pt;}
.y217{bottom:112.394667pt;}
.y348{bottom:112.496000pt;}
.yfd{bottom:112.554667pt;}
.y160{bottom:112.584000pt;}
.y238{bottom:112.618667pt;}
.y303{bottom:112.664000pt;}
.ybf{bottom:112.693333pt;}
.y17e{bottom:112.709333pt;}
.y26f{bottom:112.752000pt;}
.y1cc{bottom:112.776000pt;}
.y472{bottom:112.821333pt;}
.y25a{bottom:112.829333pt;}
.y3a7{bottom:112.888000pt;}
.y2d{bottom:120.000000pt;}
.y497{bottom:122.115333pt;}
.y2b{bottom:122.666667pt;}
.y36d{bottom:124.408000pt;}
.y3e0{bottom:124.738667pt;}
.y1ed{bottom:124.794667pt;}
.y2e1{bottom:124.818667pt;}
.ye3{bottom:124.821333pt;}
.y324{bottom:124.826667pt;}
.y24e{bottom:124.872000pt;}
.y20e{bottom:124.885333pt;}
.y41d{bottom:124.890667pt;}
.y291{bottom:124.893333pt;}
.y1a3{bottom:124.898667pt;}
.y454{bottom:124.912000pt;}
.y397{bottom:124.968000pt;}
.y437{bottom:125.040000pt;}
.y124{bottom:125.050667pt;}
.y216{bottom:125.061333pt;}
.y347{bottom:125.168000pt;}
.yfc{bottom:125.216000pt;}
.y15f{bottom:125.256000pt;}
.y237{bottom:125.290667pt;}
.y302{bottom:125.336000pt;}
.ybe{bottom:125.365333pt;}
.y17d{bottom:125.381333pt;}
.y26e{bottom:125.424000pt;}
.y1cb{bottom:125.448000pt;}
.y471{bottom:125.488000pt;}
.y259{bottom:125.501333pt;}
.y3a6{bottom:125.554667pt;}
.y9b{bottom:125.572000pt;}
.y7a{bottom:125.684000pt;}
.y3c8{bottom:125.706667pt;}
.y52{bottom:126.073333pt;}
.y144{bottom:126.206667pt;}
.y2b7{bottom:128.786667pt;}
.y496{bottom:135.453333pt;}
.y2c{bottom:136.000000pt;}
.y36c{bottom:137.080000pt;}
.y21{bottom:137.333333pt;}
.y3df{bottom:137.410667pt;}
.y1ec{bottom:137.466667pt;}
.y2e0{bottom:137.490667pt;}
.ye2{bottom:137.493333pt;}
.y323{bottom:137.498667pt;}
.y24d{bottom:137.544000pt;}
.y20d{bottom:137.557333pt;}
.y41c{bottom:137.562667pt;}
.y290{bottom:137.565333pt;}
.y1a2{bottom:137.570667pt;}
.y453{bottom:137.584000pt;}
.y396{bottom:137.640000pt;}
.y436{bottom:137.712000pt;}
.y123{bottom:137.722667pt;}
.y215{bottom:137.728000pt;}
.y346{bottom:137.840000pt;}
.yfb{bottom:137.888000pt;}
.y15e{bottom:137.928000pt;}
.y236{bottom:137.962667pt;}
.y301{bottom:138.008000pt;}
.ybd{bottom:138.037333pt;}
.y17c{bottom:138.053333pt;}
.y26d{bottom:138.096000pt;}
.y1ca{bottom:138.120000pt;}
.y470{bottom:138.154667pt;}
.y3a5{bottom:138.221333pt;}
.y9a{bottom:140.898667pt;}
.y48f{bottom:140.984000pt;}
.y79{bottom:141.010667pt;}
.y3c7{bottom:141.033333pt;}
.y51{bottom:141.400000pt;}
.y143{bottom:141.533333pt;}
.y2b6{bottom:142.786667pt;}
.y36b{bottom:149.752000pt;}
.y3de{bottom:150.082667pt;}
.y2df{bottom:150.162667pt;}
.ye1{bottom:150.165333pt;}
.y322{bottom:150.170667pt;}
.y24c{bottom:150.216000pt;}
.y20c{bottom:150.229333pt;}
.y41b{bottom:150.234667pt;}
.y28f{bottom:150.237333pt;}
.y1a1{bottom:150.242667pt;}
.y452{bottom:150.256000pt;}
.y435{bottom:150.384000pt;}
.y122{bottom:150.394667pt;}
.yfa{bottom:150.538667pt;}
.y15d{bottom:150.600000pt;}
.y235{bottom:150.634667pt;}
.y300{bottom:150.680000pt;}
.ybc{bottom:150.709333pt;}
.y26c{bottom:150.768000pt;}
.y1c9{bottom:150.792000pt;}
.y46f{bottom:150.821333pt;}
.y3a4{bottom:150.877333pt;}
.y1f{bottom:154.666667pt;}
.y395{bottom:155.976000pt;}
.y99{bottom:156.225333pt;}
.y48e{bottom:156.310667pt;}
.y78{bottom:156.337333pt;}
.y3c6{bottom:156.360000pt;}
.y50{bottom:156.726667pt;}
.y2b5{bottom:156.786667pt;}
.y142{bottom:156.860000pt;}
.y2a{bottom:157.333333pt;}
.y36a{bottom:162.424000pt;}
.y3dd{bottom:162.754667pt;}
.y2de{bottom:162.834667pt;}
.ye0{bottom:162.837333pt;}
.y321{bottom:162.842667pt;}
.y24b{bottom:162.888000pt;}
.y20b{bottom:162.901333pt;}
.y41a{bottom:162.906667pt;}
.y28e{bottom:162.909333pt;}
.y1a0{bottom:162.914667pt;}
.y451{bottom:162.928000pt;}
.y121{bottom:163.056000pt;}
.yf9{bottom:163.210667pt;}
.y234{bottom:163.290667pt;}
.y2ff{bottom:163.352000pt;}
.ybb{bottom:163.381333pt;}
.y26b{bottom:163.429333pt;}
.y1c8{bottom:163.464000pt;}
.y46e{bottom:163.488000pt;}
.y3a3{bottom:163.549333pt;}
.y394{bottom:168.648000pt;}
.y2b4{bottom:170.786667pt;}
.y98{bottom:171.552000pt;}
.y48d{bottom:171.637333pt;}
.y77{bottom:171.664000pt;}
.y3c5{bottom:171.686667pt;}
.y4f{bottom:172.053333pt;}
.y141{bottom:172.186667pt;}
.y369{bottom:175.096000pt;}
.y3dc{bottom:175.426667pt;}
.y2dd{bottom:175.506667pt;}
.ydf{bottom:175.509333pt;}
.y320{bottom:175.514667pt;}
.y24a{bottom:175.517333pt;}
.y19f{bottom:175.554667pt;}
.y20a{bottom:175.573333pt;}
.y28d{bottom:175.581333pt;}
.y450{bottom:175.600000pt;}
.y120{bottom:175.728000pt;}
.yf8{bottom:175.882667pt;}
.y233{bottom:175.962667pt;}
.y2fe{bottom:176.024000pt;}
.yba{bottom:176.053333pt;}
.y26a{bottom:176.101333pt;}
.y1c7{bottom:176.136000pt;}
.y46d{bottom:176.154667pt;}
.y3a2{bottom:176.221333pt;}
.y345{bottom:177.453333pt;}
.y1d{bottom:180.693333pt;}
.y393{bottom:181.320000pt;}
.y2b3{bottom:184.786667pt;}
.y17b{bottom:186.826667pt;}
.y1eb{bottom:186.860000pt;}
.y97{bottom:186.878667pt;}
.y15c{bottom:186.945333pt;}
.y48c{bottom:186.964000pt;}
.y42e{bottom:186.990667pt;}
.y3c4{bottom:187.013333pt;}
.y4e{bottom:187.380000pt;}
.y140{bottom:187.513333pt;}
.y368{bottom:187.768000pt;}
.y3db{bottom:188.098667pt;}
.y2dc{bottom:188.178667pt;}
.yde{bottom:188.181333pt;}
.y31f{bottom:188.186667pt;}
.y249{bottom:188.189333pt;}
.y19e{bottom:188.226667pt;}
.y408{bottom:188.245333pt;}
.y28c{bottom:188.253333pt;}
.y44f{bottom:188.272000pt;}
.y11f{bottom:188.400000pt;}
.yf7{bottom:188.554667pt;}
.y232{bottom:188.634667pt;}
.y2fd{bottom:188.696000pt;}
.y269{bottom:188.768000pt;}
.y1c6{bottom:188.808000pt;}
.y46c{bottom:188.826667pt;}
.y3a1{bottom:188.893333pt;}
.y344{bottom:191.453333pt;}
.y392{bottom:193.992000pt;}
.y2b2{bottom:198.786667pt;}
.y367{bottom:200.397333pt;}
.y3da{bottom:200.770667pt;}
.y2db{bottom:200.850667pt;}
.ydd{bottom:200.853333pt;}
.y31e{bottom:200.858667pt;}
.y248{bottom:200.861333pt;}
.y19d{bottom:200.898667pt;}
.y407{bottom:200.917333pt;}
.y28b{bottom:200.925333pt;}
.y44e{bottom:200.944000pt;}
.yf6{bottom:201.226667pt;}
.y231{bottom:201.248000pt;}
.y2fc{bottom:201.368000pt;}
.y268{bottom:201.413333pt;}
.y1c5{bottom:201.480000pt;}
.y46b{bottom:201.488000pt;}
.y419{bottom:202.126667pt;}
.y17a{bottom:202.153333pt;}
.y1ea{bottom:202.186667pt;}
.y96{bottom:202.205333pt;}
.y15b{bottom:202.272000pt;}
.y48b{bottom:202.290667pt;}
.y42d{bottom:202.317333pt;}
.y76{bottom:202.332000pt;}
.y3c3{bottom:202.340000pt;}
.y495{bottom:202.346667pt;}
.y4d{bottom:202.706667pt;}
.y13f{bottom:202.840000pt;}
.y343{bottom:205.453333pt;}
.y391{bottom:206.664000pt;}
.y2b1{bottom:212.786667pt;}
.y366{bottom:213.069333pt;}
.y3d9{bottom:213.442667pt;}
.ydc{bottom:213.514667pt;}
.y2da{bottom:213.522667pt;}
.y31d{bottom:213.530667pt;}
.y247{bottom:213.533333pt;}
.y19c{bottom:213.570667pt;}
.y406{bottom:213.589333pt;}
.y28a{bottom:213.597333pt;}
.y44d{bottom:213.616000pt;}
.y230{bottom:213.920000pt;}
.y2fb{bottom:214.040000pt;}
.y267{bottom:214.085333pt;}
.y1c4{bottom:214.152000pt;}
.y46a{bottom:214.154667pt;}
.y179{bottom:217.480000pt;}
.y1e9{bottom:217.513333pt;}
.y209{bottom:217.526667pt;}
.y95{bottom:217.532000pt;}
.y15a{bottom:217.598667pt;}
.y48a{bottom:217.617333pt;}
.y42c{bottom:217.644000pt;}
.y75{bottom:217.658667pt;}
.y3c2{bottom:217.666667pt;}
.y418{bottom:217.673333pt;}
.y4c{bottom:218.033333pt;}
.y13e{bottom:218.166667pt;}
.y390{bottom:219.336000pt;}
.y342{bottom:219.453333pt;}
.y15{bottom:221.506667pt;}
.yb9{bottom:225.282667pt;}
.y365{bottom:225.741333pt;}
.y3d8{bottom:226.114667pt;}
.ydb{bottom:226.186667pt;}
.y2d9{bottom:226.194667pt;}
.y31c{bottom:226.202667pt;}
.y246{bottom:226.205333pt;}
.y19b{bottom:226.242667pt;}
.y405{bottom:226.261333pt;}
.y289{bottom:226.269333pt;}
.y44c{bottom:226.288000pt;}
.y22f{bottom:226.592000pt;}
.y2fa{bottom:226.712000pt;}
.y266{bottom:226.757333pt;}
.y2b0{bottom:226.786667pt;}
.y469{bottom:226.821333pt;}
.y1c3{bottom:226.824000pt;}
.y38f{bottom:232.008000pt;}
.y178{bottom:232.806667pt;}
.y3a0{bottom:232.813333pt;}
.y1e8{bottom:232.840000pt;}
.y208{bottom:232.853333pt;}
.y159{bottom:232.925333pt;}
.y434{bottom:232.940000pt;}
.y489{bottom:232.944000pt;}
.y42b{bottom:232.970667pt;}
.y74{bottom:232.985333pt;}
.y3c1{bottom:232.993333pt;}
.y417{bottom:233.000000pt;}
.y4b{bottom:233.360000pt;}
.y13d{bottom:233.493333pt;}
.y11e{bottom:236.133333pt;}
.y364{bottom:238.413333pt;}
.y3d7{bottom:238.733333pt;}
.y2d8{bottom:238.861333pt;}
.y31b{bottom:238.874667pt;}
.y245{bottom:238.877333pt;}
.y19a{bottom:238.914667pt;}
.y404{bottom:238.933333pt;}
.y288{bottom:238.941333pt;}
.y44b{bottom:238.960000pt;}
.y22e{bottom:239.264000pt;}
.y2f9{bottom:239.384000pt;}
.y265{bottom:239.429333pt;}
.y468{bottom:239.493333pt;}
.y1c2{bottom:239.496000pt;}
.y14{bottom:240.144000pt;}
.yb8{bottom:240.609333pt;}
.y38e{bottom:244.674667pt;}
.y177{bottom:248.133333pt;}
.y39f{bottom:248.140000pt;}
.y1e7{bottom:248.166667pt;}
.y207{bottom:248.180000pt;}
.yf5{bottom:248.186667pt;}
.y94{bottom:248.200000pt;}
.y158{bottom:248.252000pt;}
.y433{bottom:248.266667pt;}
.y488{bottom:248.270667pt;}
.y42a{bottom:248.297333pt;}
.y73{bottom:248.312000pt;}
.y3c0{bottom:248.320000pt;}
.y416{bottom:248.326667pt;}
.y4a{bottom:248.686667pt;}
.y13c{bottom:248.820000pt;}
.y341{bottom:248.826667pt;}
.y363{bottom:251.085333pt;}
.y3d6{bottom:251.405333pt;}
.y11d{bottom:251.460000pt;}
.y2d7{bottom:251.522667pt;}
.y31a{bottom:251.546667pt;}
.y244{bottom:251.549333pt;}
.y199{bottom:251.586667pt;}
.y403{bottom:251.605333pt;}
.y287{bottom:251.613333pt;}
.y22d{bottom:251.936000pt;}
.y2f8{bottom:252.056000pt;}
.y264{bottom:252.101333pt;}
.y1c1{bottom:252.168000pt;}
.y13{bottom:253.482000pt;}
.yb7{bottom:255.936000pt;}
.y2af{bottom:256.180000pt;}
.y38d{bottom:257.346667pt;}
.y176{bottom:263.460000pt;}
.y39e{bottom:263.466667pt;}
.y1e6{bottom:263.493333pt;}
.y206{bottom:263.506667pt;}
.yda{bottom:263.513333pt;}
.y93{bottom:263.526667pt;}
.y157{bottom:263.578667pt;}
.y432{bottom:263.593333pt;}
.y487{bottom:263.597333pt;}
.y429{bottom:263.624000pt;}
.y72{bottom:263.638667pt;}
.y3bf{bottom:263.646667pt;}
.y415{bottom:263.653333pt;}
.y362{bottom:263.757333pt;}
.y49{bottom:264.013333pt;}
.y3d5{bottom:264.077333pt;}
.y13b{bottom:264.146667pt;}
.y340{bottom:264.153333pt;}
.y2d6{bottom:264.194667pt;}
.y243{bottom:264.221333pt;}
.y402{bottom:264.277333pt;}
.y22c{bottom:264.608000pt;}
.y2f7{bottom:264.728000pt;}
.y263{bottom:264.773333pt;}
.y1c0{bottom:264.840000pt;}
.y12{bottom:266.820000pt;}
.y11c{bottom:266.826667pt;}
.yb6{bottom:271.262667pt;}
.y2ae{bottom:271.506667pt;}
.y361{bottom:276.429333pt;}
.y3d4{bottom:276.749333pt;}
.y2d5{bottom:276.861333pt;}
.y242{bottom:276.893333pt;}
.y401{bottom:276.949333pt;}
.y22b{bottom:277.280000pt;}
.y2f6{bottom:277.400000pt;}
.y39d{bottom:278.793333pt;}
.y1e5{bottom:278.820000pt;}
.y205{bottom:278.833333pt;}
.yd9{bottom:278.840000pt;}
.y92{bottom:278.853333pt;}
.y175{bottom:278.885333pt;}
.y467{bottom:278.892000pt;}
.y156{bottom:278.905333pt;}
.y431{bottom:278.920000pt;}
.y486{bottom:278.924000pt;}
.y428{bottom:278.950667pt;}
.y71{bottom:278.965333pt;}
.y3be{bottom:278.973333pt;}
.y414{bottom:278.980000pt;}
.y48{bottom:279.340000pt;}
.y13a{bottom:279.473333pt;}
.y33f{bottom:279.480000pt;}
.y11{bottom:280.158000pt;}
.y11b{bottom:282.153333pt;}
.yb5{bottom:286.589333pt;}
.y2ad{bottom:286.833333pt;}
.y360{bottom:289.101333pt;}
.y3d3{bottom:289.421333pt;}
.y2d4{bottom:289.533333pt;}
.y400{bottom:289.621333pt;}
.y22a{bottom:289.952000pt;}
.y2f5{bottom:290.072000pt;}
.y10{bottom:293.496000pt;}
.y198{bottom:294.133333pt;}
.y1e4{bottom:294.146667pt;}
.y204{bottom:294.160000pt;}
.yd8{bottom:294.166667pt;}
.y91{bottom:294.180000pt;}
.y44a{bottom:294.190667pt;}
.y174{bottom:294.212000pt;}
.y286{bottom:294.213333pt;}
.y466{bottom:294.218667pt;}
.y155{bottom:294.232000pt;}
.y319{bottom:294.233333pt;}
.y430{bottom:294.246667pt;}
.y485{bottom:294.250667pt;}
.y427{bottom:294.277333pt;}
.y70{bottom:294.292000pt;}
.y3bd{bottom:294.300000pt;}
.y413{bottom:294.306667pt;}
.y47{bottom:294.666667pt;}
.y139{bottom:294.800000pt;}
.y33e{bottom:294.806667pt;}
.y11a{bottom:297.480000pt;}
.y38c{bottom:298.820000pt;}
.y35f{bottom:301.773333pt;}
.yb4{bottom:301.916000pt;}
.y3d2{bottom:302.093333pt;}
.y2ac{bottom:302.160000pt;}
.y3ff{bottom:302.293333pt;}
.y229{bottom:302.624000pt;}
.y2f4{bottom:302.744000pt;}
.yf{bottom:306.834000pt;}
.y197{bottom:309.460000pt;}
.y1e3{bottom:309.473333pt;}
.y203{bottom:309.486667pt;}
.y258{bottom:309.490667pt;}
.yd7{bottom:309.493333pt;}
.y90{bottom:309.506667pt;}
.y449{bottom:309.517333pt;}
.y173{bottom:309.538667pt;}
.y285{bottom:309.540000pt;}
.y465{bottom:309.545333pt;}
.y318{bottom:309.560000pt;}
.y42f{bottom:309.573333pt;}
.y484{bottom:309.577333pt;}
.y426{bottom:309.604000pt;}
.y6f{bottom:309.618667pt;}
.y3bc{bottom:309.626667pt;}
.y412{bottom:309.633333pt;}
.y46{bottom:309.993333pt;}
.y138{bottom:310.126667pt;}
.y33d{bottom:310.133333pt;}
.y119{bottom:312.806667pt;}
.y38b{bottom:314.146667pt;}
.y3d1{bottom:314.765333pt;}
.y228{bottom:315.296000pt;}
.y2f3{bottom:315.416000pt;}
.yb3{bottom:317.242667pt;}
.y2ab{bottom:317.486667pt;}
.ye{bottom:320.172000pt;}
.y1e2{bottom:324.800000pt;}
.y202{bottom:324.813333pt;}
.y257{bottom:324.817333pt;}
.yd6{bottom:324.820000pt;}
.y8f{bottom:324.833333pt;}
.y448{bottom:324.844000pt;}
.y284{bottom:324.866667pt;}
.y464{bottom:324.872000pt;}
.y317{bottom:324.886667pt;}
.y154{bottom:324.900000pt;}
.y483{bottom:324.904000pt;}
.y1bf{bottom:324.906667pt;}
.y425{bottom:324.930667pt;}
.y6e{bottom:324.945333pt;}
.y3bb{bottom:324.953333pt;}
.y411{bottom:324.960000pt;}
.y45{bottom:325.320000pt;}
.y137{bottom:325.453333pt;}
.y33c{bottom:325.460000pt;}
.y3d0{bottom:327.437333pt;}
.y227{bottom:327.968000pt;}
.y2f2{bottom:328.088000pt;}
.y118{bottom:328.133333pt;}
.y38a{bottom:329.473333pt;}
.y2d3{bottom:330.786667pt;}
.yb2{bottom:332.569333pt;}
.y2aa{bottom:332.813333pt;}
.yd{bottom:333.510000pt;}
.y35e{bottom:338.126667pt;}
.y3cf{bottom:340.109333pt;}
.y1e1{bottom:340.126667pt;}
.y201{bottom:340.140000pt;}
.y256{bottom:340.144000pt;}
.yd5{bottom:340.146667pt;}
.y8e{bottom:340.160000pt;}
.y447{bottom:340.170667pt;}
.y283{bottom:340.193333pt;}
.y463{bottom:340.198667pt;}
.y172{bottom:340.206667pt;}
.y316{bottom:340.213333pt;}
.y153{bottom:340.226667pt;}
.y482{bottom:340.230667pt;}
.y1be{bottom:340.233333pt;}
.y6d{bottom:340.272000pt;}
.y3ba{bottom:340.280000pt;}
.y410{bottom:340.286667pt;}
.y226{bottom:340.640000pt;}
.y44{bottom:340.646667pt;}
.y2f1{bottom:340.760000pt;}
.y33b{bottom:340.786667pt;}
.y117{bottom:343.460000pt;}
.y2d2{bottom:344.786667pt;}
.y389{bottom:344.800000pt;}
.y3fe{bottom:347.860000pt;}
.yb1{bottom:347.896000pt;}
.y424{bottom:347.928000pt;}
.y2a9{bottom:348.140000pt;}
.y3ce{bottom:352.781333pt;}
.y35d{bottom:353.486667pt;}
.y200{bottom:355.466667pt;}
.yd4{bottom:355.473333pt;}
.y8d{bottom:355.486667pt;}
.y446{bottom:355.497333pt;}
.y262{bottom:355.506667pt;}
.y282{bottom:355.520000pt;}
.y462{bottom:355.525333pt;}
.y171{bottom:355.533333pt;}
.y315{bottom:355.540000pt;}
.y152{bottom:355.553333pt;}
.y481{bottom:355.557333pt;}
.y1bd{bottom:355.560000pt;}
.y1e0{bottom:355.586667pt;}
.y6c{bottom:355.598667pt;}
.y3b9{bottom:355.606667pt;}
.y40f{bottom:355.613333pt;}
.y43{bottom:355.973333pt;}
.y136{bottom:356.120000pt;}
.y116{bottom:358.786667pt;}
.y388{bottom:360.126667pt;}
.yc{bottom:360.173333pt;}
.y255{bottom:363.141333pt;}
.y3fd{bottom:363.186667pt;}
.yb0{bottom:363.222667pt;}
.y2a8{bottom:363.466667pt;}
.y3cd{bottom:365.453333pt;}
.y35c{bottom:368.813333pt;}
.y135{bottom:370.120000pt;}
.y1ff{bottom:370.793333pt;}
.yd3{bottom:370.800000pt;}
.y8c{bottom:370.813333pt;}
.y445{bottom:370.824000pt;}
.y261{bottom:370.833333pt;}
.y281{bottom:370.846667pt;}
.y461{bottom:370.852000pt;}
.y170{bottom:370.860000pt;}
.y314{bottom:370.866667pt;}
.y151{bottom:370.880000pt;}
.y480{bottom:370.884000pt;}
.y1bc{bottom:370.886667pt;}
.y1df{bottom:370.913333pt;}
.y6b{bottom:370.925333pt;}
.y3b8{bottom:370.933333pt;}
.y40e{bottom:370.940000pt;}
.y42{bottom:371.300000pt;}
.y33a{bottom:371.453333pt;}
.y2d1{bottom:372.786667pt;}
.y387{bottom:375.486667pt;}
.y3fc{bottom:378.513333pt;}
.yaf{bottom:378.549333pt;}
.y2a7{bottom:378.793333pt;}
.y134{bottom:384.120000pt;}
.y35b{bottom:384.140000pt;}
.y339{bottom:385.453333pt;}
.yd2{bottom:386.126667pt;}
.y8b{bottom:386.140000pt;}
.y444{bottom:386.150667pt;}
.y260{bottom:386.160000pt;}
.y1fe{bottom:386.166667pt;}
.y280{bottom:386.173333pt;}
.y460{bottom:386.178667pt;}
.y16f{bottom:386.186667pt;}
.y313{bottom:386.193333pt;}
.y150{bottom:386.206667pt;}
.y47f{bottom:386.210667pt;}
.y1bb{bottom:386.213333pt;}
.y1de{bottom:386.240000pt;}
.y6a{bottom:386.252000pt;}
.y3b7{bottom:386.260000pt;}
.y40d{bottom:386.266667pt;}
.y41{bottom:386.626667pt;}
.y2d0{bottom:386.786667pt;}
.y115{bottom:389.453333pt;}
.y386{bottom:390.813333pt;}
.yb{bottom:392.163200pt;}
.y3fb{bottom:393.840000pt;}
.yae{bottom:393.876000pt;}
.y2a6{bottom:394.133333pt;}
.y133{bottom:398.120000pt;}
.y338{bottom:399.453333pt;}
.y35a{bottom:399.466667pt;}
.y2cf{bottom:400.786667pt;}
.y3cc{bottom:401.460000pt;}
.y8a{bottom:401.466667pt;}
.y443{bottom:401.477333pt;}
.yd1{bottom:401.480000pt;}
.y225{bottom:401.486667pt;}
.y1fd{bottom:401.493333pt;}
.y27f{bottom:401.500000pt;}
.y45f{bottom:401.505333pt;}
.y16e{bottom:401.513333pt;}
.yf4{bottom:401.518667pt;}
.y312{bottom:401.520000pt;}
.y196{bottom:401.526667pt;}
.y14f{bottom:401.533333pt;}
.y47e{bottom:401.537333pt;}
.y1ba{bottom:401.540000pt;}
.y1dd{bottom:401.566667pt;}
.y69{bottom:401.578667pt;}
.y3b6{bottom:401.586667pt;}
.y241{bottom:401.593333pt;}
.y40{bottom:401.953333pt;}
.y114{bottom:403.453333pt;}
.ya{bottom:405.501200pt;}
.y385{bottom:406.140000pt;}
.y3fa{bottom:409.166667pt;}
.yad{bottom:409.202667pt;}
.y2a5{bottom:409.460000pt;}
.y132{bottom:412.120000pt;}
.y337{bottom:413.453333pt;}
.y359{bottom:414.793333pt;}
.y89{bottom:416.793333pt;}
.y442{bottom:416.804000pt;}
.yd0{bottom:416.806667pt;}
.y224{bottom:416.813333pt;}
.y1fc{bottom:416.820000pt;}
.y27e{bottom:416.826667pt;}
.y45e{bottom:416.832000pt;}
.y16d{bottom:416.840000pt;}
.yf3{bottom:416.845333pt;}
.y311{bottom:416.846667pt;}
.y195{bottom:416.853333pt;}
.y14e{bottom:416.860000pt;}
.y47d{bottom:416.864000pt;}
.y1b9{bottom:416.866667pt;}
.y1dc{bottom:416.893333pt;}
.y68{bottom:416.905333pt;}
.y3b5{bottom:416.913333pt;}
.y240{bottom:416.920000pt;}
.y3f{bottom:417.280000pt;}
.y113{bottom:417.453333pt;}
.y384{bottom:421.466667pt;}
.y9{bottom:424.140200pt;}
.y3f9{bottom:424.493333pt;}
.y2a4{bottom:424.786667pt;}
.y131{bottom:426.120000pt;}
.y336{bottom:427.453333pt;}
.y358{bottom:430.120000pt;}
.y2ce{bottom:430.153333pt;}
.y112{bottom:431.453333pt;}
.y441{bottom:432.130667pt;}
.ycf{bottom:432.133333pt;}
.y223{bottom:432.140000pt;}
.y1fb{bottom:432.146667pt;}
.y27d{bottom:432.153333pt;}
.y45d{bottom:432.158667pt;}
.y16c{bottom:432.166667pt;}
.y310{bottom:432.173333pt;}
.y194{bottom:432.180000pt;}
.y14d{bottom:432.186667pt;}
.y47c{bottom:432.190667pt;}
.y1b8{bottom:432.193333pt;}
.yac{bottom:432.200000pt;}
.y2f0{bottom:432.204000pt;}
.y88{bottom:432.217333pt;}
.y1db{bottom:432.220000pt;}
.y67{bottom:432.232000pt;}
.y3b4{bottom:432.240000pt;}
.y23f{bottom:432.246667pt;}
.y3e{bottom:432.606667pt;}
.y383{bottom:436.793333pt;}
.y8{bottom:437.478200pt;}
.y3f8{bottom:439.820000pt;}
.y130{bottom:440.120000pt;}
.y335{bottom:441.453333pt;}
.y111{bottom:445.453333pt;}
.y2cd{bottom:445.480000pt;}
.y440{bottom:447.457333pt;}
.yce{bottom:447.460000pt;}
.y222{bottom:447.466667pt;}
.y1fa{bottom:447.473333pt;}
.y27c{bottom:447.480000pt;}
.y45c{bottom:447.485333pt;}
.y16b{bottom:447.493333pt;}
.y30f{bottom:447.500000pt;}
.y193{bottom:447.506667pt;}
.yf2{bottom:447.513333pt;}
.y47b{bottom:447.517333pt;}
.y1b7{bottom:447.520000pt;}
.yab{bottom:447.526667pt;}
.y2ef{bottom:447.530667pt;}
.y87{bottom:447.544000pt;}
.y1da{bottom:447.546667pt;}
.y66{bottom:447.558667pt;}
.y3b3{bottom:447.566667pt;}
.y23e{bottom:447.573333pt;}
.y3d{bottom:447.933333pt;}
.y7{bottom:450.816200pt;}
.y382{bottom:452.120000pt;}
.y12f{bottom:454.120000pt;}
.y3f7{bottom:455.146667pt;}
.y2a3{bottom:455.453333pt;}
.y110{bottom:459.453333pt;}
.y357{bottom:460.786667pt;}
.y2cc{bottom:460.806667pt;}
.y43f{bottom:462.784000pt;}
.y221{bottom:462.793333pt;}
.y1f9{bottom:462.800000pt;}
.y27b{bottom:462.806667pt;}
.y45b{bottom:462.812000pt;}
.y16a{bottom:462.820000pt;}
.y30e{bottom:462.826667pt;}
.y192{bottom:462.833333pt;}
.yf1{bottom:462.840000pt;}
.y47a{bottom:462.844000pt;}
.y1b6{bottom:462.846667pt;}
.yaa{bottom:462.853333pt;}
.y2ee{bottom:462.857333pt;}
.y86{bottom:462.870667pt;}
.y1d9{bottom:462.873333pt;}
.y65{bottom:462.885333pt;}
.y3b2{bottom:462.893333pt;}
.ycd{bottom:462.900000pt;}
.y3c{bottom:463.260000pt;}
.y6{bottom:464.154200pt;}
.y12e{bottom:468.120000pt;}
.y2a2{bottom:469.453333pt;}
.y3f6{bottom:470.473333pt;}
.y10f{bottom:473.453333pt;}
.y356{bottom:474.786667pt;}
.y2cb{bottom:476.133333pt;}
.y5{bottom:477.492200pt;}
.y1f8{bottom:478.126667pt;}
.y27a{bottom:478.133333pt;}
.y169{bottom:478.146667pt;}
.y30d{bottom:478.153333pt;}
.y191{bottom:478.160000pt;}
.yf0{bottom:478.166667pt;}
.y1b5{bottom:478.173333pt;}
.ya9{bottom:478.180000pt;}
.y2ed{bottom:478.184000pt;}
.y85{bottom:478.197333pt;}
.y1d8{bottom:478.200000pt;}
.y64{bottom:478.212000pt;}
.y3b1{bottom:478.220000pt;}
.ycc{bottom:478.226667pt;}
.y3b{bottom:478.586667pt;}
.y12d{bottom:482.120000pt;}
.y381{bottom:482.786667pt;}
.y2a1{bottom:483.453333pt;}
.y43e{bottom:485.781333pt;}
.y3f5{bottom:485.800000pt;}
.y479{bottom:485.841333pt;}
.y10e{bottom:487.453333pt;}
.y355{bottom:488.786667pt;}
.y4{bottom:490.830200pt;}
.y2ca{bottom:491.460000pt;}
.y279{bottom:493.460000pt;}
.y168{bottom:493.473333pt;}
.y30c{bottom:493.480000pt;}
.y190{bottom:493.486667pt;}
.yef{bottom:493.493333pt;}
.y1b4{bottom:493.500000pt;}
.ya8{bottom:493.506667pt;}
.y2ec{bottom:493.510667pt;}
.y84{bottom:493.524000pt;}
.y1d7{bottom:493.526667pt;}
.y63{bottom:493.538667pt;}
.y220{bottom:493.540000pt;}
.y3b0{bottom:493.546667pt;}
.ycb{bottom:493.553333pt;}
.y3a{bottom:493.913333pt;}
.y12c{bottom:496.120000pt;}
.y380{bottom:496.786667pt;}
.y2a0{bottom:497.453333pt;}
.y3f4{bottom:501.126667pt;}
.y478{bottom:501.168000pt;}
.y10d{bottom:501.453333pt;}
.y354{bottom:502.786667pt;}
.y3{bottom:504.168200pt;}
.y2c9{bottom:506.806667pt;}
.y167{bottom:508.800000pt;}
.y30b{bottom:508.806667pt;}
.y18f{bottom:508.813333pt;}
.yee{bottom:508.820000pt;}
.y1b3{bottom:508.826667pt;}
.ya7{bottom:508.833333pt;}
.y2eb{bottom:508.837333pt;}
.y83{bottom:508.850667pt;}
.y1d6{bottom:508.853333pt;}
.y62{bottom:508.865333pt;}
.y21f{bottom:508.866667pt;}
.y3af{bottom:508.873333pt;}
.yca{bottom:508.880000pt;}
.y39{bottom:509.240000pt;}
.y12b{bottom:510.120000pt;}
.y37f{bottom:510.786667pt;}
.y29f{bottom:511.453333pt;}
.y10c{bottom:515.453333pt;}
.y3f3{bottom:516.486667pt;}
.y353{bottom:516.786667pt;}
.y2{bottom:517.506200pt;}
.y2c8{bottom:522.133333pt;}
.y166{bottom:524.126667pt;}
.y30a{bottom:524.133333pt;}
.y18e{bottom:524.140000pt;}
.yed{bottom:524.146667pt;}
.y1b2{bottom:524.153333pt;}
.ya6{bottom:524.160000pt;}
.y2ea{bottom:524.164000pt;}
.y82{bottom:524.177333pt;}
.y1d5{bottom:524.180000pt;}
.y61{bottom:524.192000pt;}
.y21e{bottom:524.193333pt;}
.y3ae{bottom:524.200000pt;}
.yc9{bottom:524.206667pt;}
.y38{bottom:524.566667pt;}
.y37e{bottom:524.786667pt;}
.y29e{bottom:525.453333pt;}
.y10b{bottom:529.453333pt;}
.y352{bottom:530.786667pt;}
.y3f2{bottom:531.813333pt;}
.y2c7{bottom:537.460000pt;}
.y37d{bottom:538.786667pt;}
.y309{bottom:539.460000pt;}
.y18d{bottom:539.466667pt;}
.yec{bottom:539.473333pt;}
.y1b1{bottom:539.480000pt;}
.ya5{bottom:539.486667pt;}
.y81{bottom:539.504000pt;}
.y1d4{bottom:539.506667pt;}
.y60{bottom:539.518667pt;}
.y21d{bottom:539.520000pt;}
.y3ad{bottom:539.526667pt;}
.yc8{bottom:539.533333pt;}
.y37{bottom:539.913333pt;}
.y10a{bottom:543.453333pt;}
.y1{bottom:544.173333pt;}
.y351{bottom:544.786667pt;}
.y3f1{bottom:547.140000pt;}
.y2e9{bottom:547.161333pt;}
.y2c6{bottom:552.786667pt;}
.y18c{bottom:554.793333pt;}
.yeb{bottom:554.800000pt;}
.y1b0{bottom:554.806667pt;}
.ya4{bottom:554.813333pt;}
.y29d{bottom:554.826667pt;}
.y1f7{bottom:554.830667pt;}
.y1d3{bottom:554.833333pt;}
.y5f{bottom:554.845333pt;}
.y21c{bottom:554.846667pt;}
.y334{bottom:554.853333pt;}
.yc7{bottom:554.860000pt;}
.y36{bottom:555.240000pt;}
.y109{bottom:557.453333pt;}
.y350{bottom:558.786667pt;}
.y3f0{bottom:562.466667pt;}
.y2e8{bottom:562.488000pt;}
.y80{bottom:562.501333pt;}
.y37c{bottom:566.786667pt;}
.yea{bottom:570.126667pt;}
.y1af{bottom:570.133333pt;}
.ya3{bottom:570.140000pt;}
.y278{bottom:570.146667pt;}
.y29c{bottom:570.153333pt;}
.y1f6{bottom:570.157333pt;}
.y1d2{bottom:570.160000pt;}
.y5e{bottom:570.172000pt;}
.y18b{bottom:570.173333pt;}
.y333{bottom:570.180000pt;}
.yc6{bottom:570.186667pt;}
.y35{bottom:570.566667pt;}
.y108{bottom:571.453333pt;}
.y34f{bottom:572.786667pt;}
.y3ef{bottom:577.793333pt;}
.y37b{bottom:580.786667pt;}
.y2c5{bottom:583.453333pt;}
.y1ae{bottom:585.460000pt;}
.ya2{bottom:585.466667pt;}
.y277{bottom:585.473333pt;}
.y29b{bottom:585.480000pt;}
.y1f5{bottom:585.484000pt;}
.y14c{bottom:585.486667pt;}
.y18a{bottom:585.500000pt;}
.y332{bottom:585.506667pt;}
.yc5{bottom:585.513333pt;}
.y34{bottom:585.893333pt;}
.y34e{bottom:586.786667pt;}
.y3ee{bottom:593.169333pt;}
.y37a{bottom:594.786667pt;}
.y2c4{bottom:597.453333pt;}
.ya1{bottom:600.793333pt;}
.y276{bottom:600.800000pt;}
.y29a{bottom:600.806667pt;}
.y14b{bottom:600.813333pt;}
.y107{bottom:600.820000pt;}
.y1ad{bottom:600.825333pt;}
.y189{bottom:600.826667pt;}
.y331{bottom:600.833333pt;}
.y5d{bottom:600.840000pt;}
.y1f4{bottom:608.481333pt;}
.y3ed{bottom:608.496000pt;}
.y379{bottom:608.786667pt;}
.y2c3{bottom:611.453333pt;}
.y275{bottom:616.126667pt;}
.y299{bottom:616.133333pt;}
.y14a{bottom:616.140000pt;}
.y106{bottom:616.146667pt;}
.y1ac{bottom:616.152000pt;}
.y188{bottom:616.153333pt;}
.y330{bottom:616.160000pt;}
.y5c{bottom:616.166667pt;}
.y378{bottom:622.786667pt;}
.y3ec{bottom:623.822667pt;}
.y2c2{bottom:625.453333pt;}
.y1c{bottom:626.077333pt;}
.y298{bottom:631.460000pt;}
.y149{bottom:631.466667pt;}
.y105{bottom:631.473333pt;}
.y1ab{bottom:631.478667pt;}
.y187{bottom:631.480000pt;}
.y32f{bottom:631.486667pt;}
.y5b{bottom:631.493333pt;}
.y377{bottom:636.786667pt;}
.y1b{bottom:638.749333pt;}
.y3eb{bottom:639.149333pt;}
.y2c1{bottom:639.453333pt;}
.y33{bottom:641.205333pt;}
.y148{bottom:646.793333pt;}
.y104{bottom:646.800000pt;}
.y1aa{bottom:646.805333pt;}
.y186{bottom:646.806667pt;}
.y32e{bottom:646.813333pt;}
.y5a{bottom:646.820000pt;}
.y376{bottom:650.786667pt;}
.y1a{bottom:651.421333pt;}
.y2c0{bottom:653.453333pt;}
.y3ea{bottom:654.476000pt;}
.y103{bottom:662.126667pt;}
.y185{bottom:662.133333pt;}
.y32d{bottom:662.140000pt;}
.y59{bottom:662.146667pt;}
.y19{bottom:664.093333pt;}
.y375{bottom:664.786667pt;}
.y2bf{bottom:667.453333pt;}
.y3e9{bottom:669.802667pt;}
.y32{bottom:672.765333pt;}
.y184{bottom:677.460000pt;}
.y32c{bottom:677.466667pt;}
.y58{bottom:677.473333pt;}
.y374{bottom:678.786667pt;}
.y18{bottom:680.093333pt;}
.y2be{bottom:681.453333pt;}
.y3e8{bottom:685.129333pt;}
.y31{bottom:685.437333pt;}
.y32b{bottom:692.793333pt;}
.y57{bottom:692.800000pt;}
.y2bd{bottom:695.453333pt;}
.y30{bottom:698.109333pt;}
.y3e7{bottom:700.456000pt;}
.y56{bottom:708.126667pt;}
.y2bc{bottom:709.453333pt;}
.y2f{bottom:710.781333pt;}
.y17{bottom:720.093333pt;}
.y2e{bottom:723.453333pt;}
.y16{bottom:765.426667pt;}
.y1e{bottom:821.333333pt;}
.h9{height:12.000000pt;}
.hc{height:13.333333pt;}
.hb{height:14.666667pt;}
.hd{height:16.000000pt;}
.h4{height:36.949333pt;}
.h7{height:40.848000pt;}
.h17{height:40.869333pt;}
.h1b{height:40.890667pt;}
.h20{height:40.912000pt;}
.h1a{height:40.933333pt;}
.h21{height:40.954667pt;}
.h27{height:40.976000pt;}
.h38{height:40.997333pt;}
.h2f{height:41.018667pt;}
.h14{height:41.040000pt;}
.h18{height:41.061333pt;}
.h2d{height:41.082667pt;}
.h32{height:41.146667pt;}
.h34{height:41.232000pt;}
.he{height:41.568000pt;}
.h8{height:41.854167pt;}
.h2{height:43.117333pt;}
.h3{height:43.244000pt;}
.h1{height:43.877333pt;}
.h1d{height:45.386667pt;}
.ha{height:47.109375pt;}
.h1f{height:49.370667pt;}
.hf{height:49.925333pt;}
.h11{height:50.805333pt;}
.h37{height:53.427733pt;}
.h13{height:53.657067pt;}
.h2e{height:53.747733pt;}
.h29{height:53.774400pt;}
.h15{height:53.854400pt;}
.h30{height:53.881067pt;}
.h35{height:53.907733pt;}
.h23{height:53.913067pt;}
.h31{height:53.934400pt;}
.h2b{height:53.961067pt;}
.h33{height:53.971733pt;}
.h22{height:53.987733pt;}
.h26{height:54.014400pt;}
.h2a{height:54.025067pt;}
.h19{height:54.067733pt;}
.h25{height:54.094400pt;}
.h36{height:54.110400pt;}
.h12{height:54.121067pt;}
.h1e{height:54.147733pt;}
.h28{height:54.153067pt;}
.h1c{height:54.174400pt;}
.h16{height:54.201067pt;}
.h10{height:54.227733pt;}
.h24{height:54.254400pt;}
.h2c{height:54.281067pt;}
.h39{height:54.307733pt;}
.h6{height:54.464000pt;}
.h5{height:72.618667pt;}
.h0{height:793.333333pt;}
.wa{width:168.000000pt;}
.w9{width:201.333333pt;}
.w5{width:205.333333pt;}
.w6{width:208.000000pt;}
.w8{width:209.333333pt;}
.w4{width:221.333333pt;}
.w7{width:225.333333pt;}
.w1{width:237.333333pt;}
.w3{width:238.666667pt;}
.w2{width:241.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x12{left:1.333333pt;}
.x4{left:4.000000pt;}
.x7{left:29.333333pt;}
.x9{left:33.333333pt;}
.x5{left:34.666667pt;}
.x6{left:44.361200pt;}
.xc{left:46.697467pt;}
.xb{left:49.020133pt;}
.xf{left:62.666667pt;}
.xd{left:64.000000pt;}
.x1{left:66.400000pt;}
.x18{left:67.480000pt;}
.xa{left:76.715067pt;}
.x1a{left:86.390667pt;}
.x19{left:87.492000pt;}
.x1e{left:89.965333pt;}
.xe{left:94.033200pt;}
.x13{left:96.361467pt;}
.x10{left:102.002667pt;}
.x1c{left:106.400000pt;}
.x1b{left:107.480000pt;}
.x8{left:109.008133pt;}
.x1d{left:123.480000pt;}
.x16{left:211.480000pt;}
.x3{left:261.360000pt;}
.x17{left:291.736000pt;}
.x11{left:296.000000pt;}
.x14{left:298.666667pt;}
.x15{left:300.000000pt;}
.x2{left:382.466667pt;}
}




    .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; }
  