
    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_2cbe69189674b11eb2d46e08.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850000;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_5681cc9bb122e6f6cfff31fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.730000;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_dd8b40d4f18acfec18794a5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_2cbe69189674b11eb2d46e08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850000;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_2e1e0cf87c3d980ef8d8b2de.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-66.000000px;}
.v2{vertical-align:-21.978000px;}
.v5{vertical-align:-19.980000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.980200px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:22.059600px;}
.ls70{letter-spacing:-5.940000px;}
.ls71{letter-spacing:-5.280000px;}
.ls6c{letter-spacing:-5.076000px;}
.ls3f{letter-spacing:-4.950000px;}
.ls30{letter-spacing:-4.884000px;}
.ls39{letter-spacing:-4.554000px;}
.ls3c{letter-spacing:-3.564000px;}
.ls3b{letter-spacing:-3.366000px;}
.ls8d{letter-spacing:-3.132000px;}
.ls38{letter-spacing:-2.970000px;}
.ls34{letter-spacing:-2.772000px;}
.ls77{letter-spacing:-2.760000px;}
.ls8a{letter-spacing:-2.700000px;}
.ls32{letter-spacing:-2.640000px;}
.ls31{letter-spacing:-2.574000px;}
.ls3a{letter-spacing:-2.310000px;}
.ls8e{letter-spacing:-2.214000px;}
.ls5f{letter-spacing:-2.098800px;}
.ls79{letter-spacing:-2.052000px;}
.ls35{letter-spacing:-1.914000px;}
.ls60{letter-spacing:-1.825956px;}
.ls89{letter-spacing:-1.782000px;}
.ls74{letter-spacing:-1.728000px;}
.ls42{letter-spacing:-1.620000px;}
.ls4e{letter-spacing:-1.609080px;}
.ls55{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.448172px;}
.ls6d{letter-spacing:-1.434180px;}
.ls66{letter-spacing:-1.329240px;}
.ls73{letter-spacing:-1.320000px;}
.ls8b{letter-spacing:-1.296000px;}
.ls6e{letter-spacing:-1.290762px;}
.ls57{letter-spacing:-1.259280px;}
.ls2e{letter-spacing:-1.188000px;}
.ls58{letter-spacing:-1.133352px;}
.ls3d{letter-spacing:-1.122000px;}
.ls68{letter-spacing:-1.119360px;}
.ls87{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-1.056000px;}
.ls24{letter-spacing:-1.020000px;}
.ls46{letter-spacing:-0.990000px;}
.ls83{letter-spacing:-0.972000px;}
.ls75{letter-spacing:-0.960000px;}
.ls63{letter-spacing:-0.944460px;}
.ls7e{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.858000px;}
.ls64{letter-spacing:-0.850014px;}
.ls17{letter-spacing:-0.792000px;}
.ls4d{letter-spacing:-0.769560px;}
.ls65{letter-spacing:-0.756000px;}
.ls20{letter-spacing:-0.726000px;}
.ls7d{letter-spacing:-0.702000px;}
.ls50{letter-spacing:-0.692604px;}
.ls29{letter-spacing:-0.660000px;}
.ls4a{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.528000px;}
.ls85{letter-spacing:-0.486000px;}
.ls44{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.462000px;}
.ls69{letter-spacing:-0.440748px;}
.ls23{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.396000px;}
.ls81{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.330000px;}
.ls86{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.300000px;}
.ls59{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls54{letter-spacing:-0.174900px;}
.ls26{letter-spacing:-0.162000px;}
.ls56{letter-spacing:-0.157410px;}
.ls19{letter-spacing:-0.132000px;}
.ls27{letter-spacing:-0.120000px;}
.ls88{letter-spacing:-0.108000px;}
.ls1{letter-spacing:-0.096000px;}
.lsf{letter-spacing:-0.066000px;}
.ls6{letter-spacing:-0.060000px;}
.ls5a{letter-spacing:-0.054000px;}
.ls4f{letter-spacing:-0.038478px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.062964px;}
.ls37{letter-spacing:0.066000px;}
.ls62{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.132000px;}
.ls6b{letter-spacing:0.162000px;}
.ls40{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.198000px;}
.ls82{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.264000px;}
.ls51{letter-spacing:0.270000px;}
.ls48{letter-spacing:0.300000px;}
.ls5c{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.336000px;}
.ls1a{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.396000px;}
.ls8f{letter-spacing:0.432000px;}
.lse{letter-spacing:0.462000px;}
.ls1b{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.486000px;}
.ls4{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.528000px;}
.ls2d{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.566676px;}
.ls7c{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.660000px;}
.ls5b{letter-spacing:0.702000px;}
.ls5e{letter-spacing:0.720000px;}
.ls78{letter-spacing:0.724086px;}
.ls21{letter-spacing:0.745200px;}
.ls8c{letter-spacing:0.756000px;}
.ls2{letter-spacing:0.768000px;}
.ls7a{letter-spacing:0.792000px;}
.ls61{letter-spacing:0.810000px;}
.ls67{letter-spacing:0.864000px;}
.ls76{letter-spacing:0.874500px;}
.ls49{letter-spacing:0.912600px;}
.ls7f{letter-spacing:0.918000px;}
.ls6a{letter-spacing:0.972000px;}
.ls18{letter-spacing:0.990000px;}
.ls47{letter-spacing:1.140000px;}
.ls7b{letter-spacing:1.188000px;}
.lsb{letter-spacing:1.380000px;}
.ls3e{letter-spacing:1.386000px;}
.ls80{letter-spacing:1.458000px;}
.ls72{letter-spacing:1.465200px;}
.ls4b{letter-spacing:1.566000px;}
.ls3{letter-spacing:1.584000px;}
.ls9{letter-spacing:1.728000px;}
.ls84{letter-spacing:1.944000px;}
.ls4c{letter-spacing:2.106000px;}
.ls7{letter-spacing:2.400000px;}
.ls45{letter-spacing:3.102000px;}
.ls43{letter-spacing:13.500000px;}
.ls5d{letter-spacing:13.608000px;}
.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;}
}
.ws1b0{word-spacing:-18.798000px;}
.ws198{word-spacing:-17.490000px;}
.ws1ad{word-spacing:-17.292000px;}
.ws199{word-spacing:-16.962000px;}
.ws61{word-spacing:-16.764000px;}
.ws1b{word-spacing:-16.632000px;}
.ws7b{word-spacing:-16.500000px;}
.ws1ac{word-spacing:-16.434000px;}
.ws3{word-spacing:-16.380000px;}
.ws7a{word-spacing:-16.368000px;}
.ws1a2{word-spacing:-16.170000px;}
.ws13d{word-spacing:-16.140000px;}
.wse0{word-spacing:-16.104000px;}
.ws1{word-spacing:-15.660000px;}
.ws5f{word-spacing:-15.480000px;}
.wse1{word-spacing:-15.444000px;}
.ws5e{word-spacing:-15.360000px;}
.ws60{word-spacing:-15.120000px;}
.ws19f{word-spacing:-15.060000px;}
.ws1a3{word-spacing:-15.000000px;}
.ws1b2{word-spacing:-14.958000px;}
.ws19a{word-spacing:-14.880000px;}
.ws2{word-spacing:-14.700000px;}
.ws1ae{word-spacing:-14.688000px;}
.ws1d5{word-spacing:-14.472000px;}
.ws1be{word-spacing:-14.256000px;}
.ws92{word-spacing:-14.148000px;}
.ws1b3{word-spacing:-14.094000px;}
.ws1bb{word-spacing:-14.040000px;}
.ws1d8{word-spacing:-13.986000px;}
.ws1d6{word-spacing:-13.932000px;}
.wse2{word-spacing:-13.926000px;}
.ws16d{word-spacing:-13.824000px;}
.ws1bf{word-spacing:-13.770000px;}
.ws1b5{word-spacing:-13.716000px;}
.ws1b8{word-spacing:-13.662000px;}
.wse3{word-spacing:-13.530000px;}
.ws1ba{word-spacing:-13.392000px;}
.ws1bc{word-spacing:-13.338000px;}
.ws1b1{word-spacing:-13.284000px;}
.ws1d7{word-spacing:-13.230000px;}
.ws1b4{word-spacing:-13.122000px;}
.ws1b9{word-spacing:-13.014000px;}
.wse5{word-spacing:-12.936000px;}
.ws0{word-spacing:-12.768000px;}
.ws1d4{word-spacing:-12.744000px;}
.ws1b6{word-spacing:-12.528000px;}
.ws1b7{word-spacing:-12.312000px;}
.ws1bd{word-spacing:-12.204000px;}
.wse4{word-spacing:-11.946000px;}
.ws1c{word-spacing:-9.619500px;}
.ws150{word-spacing:-9.581022px;}
.ws5d{word-spacing:-8.745000px;}
.ws1a6{word-spacing:-8.594586px;}
.ws15e{word-spacing:-8.570100px;}
.ws1d9{word-spacing:-8.437176px;}
.ws14e{word-spacing:-7.975440px;}
.ws153{word-spacing:-7.933464px;}
.ws1d{word-spacing:-7.870500px;}
.ws17d{word-spacing:-7.800540px;}
.ws15f{word-spacing:-7.713090px;}
.ws18b{word-spacing:-7.625640px;}
.ws165{word-spacing:-7.485720px;}
.ws18c{word-spacing:-7.429752px;}
.ws187{word-spacing:-7.415760px;}
.ws190{word-spacing:-7.310820px;}
.ws151{word-spacing:-7.177896px;}
.ws14f{word-spacing:-7.135920px;}
.ws17e{word-spacing:-7.020486px;}
.ws166{word-spacing:-6.737148px;}
.ws172{word-spacing:-6.646200px;}
.ws191{word-spacing:-6.579738px;}
.ws152{word-spacing:-6.422328px;}
.ws173{word-spacing:-6.044544px;}
.wsd2{word-spacing:-4.686000px;}
.ws192{word-spacing:-4.620000px;}
.ws1a9{word-spacing:-4.500000px;}
.ws1a0{word-spacing:-4.380000px;}
.ws23{word-spacing:-4.158000px;}
.ws2c{word-spacing:-4.092000px;}
.ws7e{word-spacing:-4.026000px;}
.ws1d1{word-spacing:-3.996000px;}
.ws7c{word-spacing:-3.960000px;}
.ws8e{word-spacing:-3.894000px;}
.ws1cf{word-spacing:-3.888000px;}
.wscf{word-spacing:-3.840000px;}
.wsb5{word-spacing:-3.828000px;}
.wsf{word-spacing:-3.780000px;}
.ws96{word-spacing:-3.762000px;}
.wsb8{word-spacing:-3.720000px;}
.ws117{word-spacing:-3.696000px;}
.ws118{word-spacing:-3.660000px;}
.ws115{word-spacing:-3.630000px;}
.ws95{word-spacing:-3.600000px;}
.ws6d{word-spacing:-3.564000px;}
.wsca{word-spacing:-3.498000px;}
.ws8{word-spacing:-3.480000px;}
.wse9{word-spacing:-3.432000px;}
.ws10e{word-spacing:-3.420000px;}
.ws78{word-spacing:-3.402000px;}
.ws24{word-spacing:-3.366000px;}
.wsdc{word-spacing:-3.360000px;}
.wsa3{word-spacing:-3.348000px;}
.wsbc{word-spacing:-3.300000px;}
.ws136{word-spacing:-3.240000px;}
.ws134{word-spacing:-3.234000px;}
.wsc1{word-spacing:-3.180000px;}
.ws116{word-spacing:-3.168000px;}
.ws1c7{word-spacing:-3.132000px;}
.wsac{word-spacing:-3.120000px;}
.wse8{word-spacing:-3.102000px;}
.ws37{word-spacing:-3.060000px;}
.ws53{word-spacing:-3.036000px;}
.ws18d{word-spacing:-3.024000px;}
.ws32{word-spacing:-3.000000px;}
.wsea{word-spacing:-2.970000px;}
.ws176{word-spacing:-2.940000px;}
.ws13c{word-spacing:-2.904000px;}
.ws36{word-spacing:-2.880000px;}
.ws5b{word-spacing:-2.838000px;}
.ws133{word-spacing:-2.772000px;}
.ws66{word-spacing:-2.760000px;}
.wsd3{word-spacing:-2.706000px;}
.ws91{word-spacing:-2.700000px;}
.ws1dc{word-spacing:-2.646000px;}
.ws107{word-spacing:-2.640000px;}
.ws122{word-spacing:-2.580000px;}
.wsc9{word-spacing:-2.574000px;}
.ws49{word-spacing:-2.520000px;}
.ws7d{word-spacing:-2.508000px;}
.ws1ca{word-spacing:-2.484000px;}
.ws4b{word-spacing:-2.460000px;}
.ws43{word-spacing:-2.442000px;}
.ws16c{word-spacing:-2.430000px;}
.wsb4{word-spacing:-2.400000px;}
.ws22{word-spacing:-2.376000px;}
.wsdb{word-spacing:-2.340000px;}
.ws1c6{word-spacing:-2.322000px;}
.ws25{word-spacing:-2.310000px;}
.ws12e{word-spacing:-2.280000px;}
.ws174{word-spacing:-2.244000px;}
.ws38{word-spacing:-2.220000px;}
.ws11e{word-spacing:-2.214000px;}
.ws59{word-spacing:-2.178000px;}
.ws98{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.112000px;}
.ws15d{word-spacing:-2.106000px;}
.wsb0{word-spacing:-2.100000px;}
.ws77{word-spacing:-2.052000px;}
.ws72{word-spacing:-2.046000px;}
.ws12f{word-spacing:-2.040000px;}
.ws196{word-spacing:-1.998000px;}
.ws8b{word-spacing:-1.980000px;}
.ws18e{word-spacing:-1.944000px;}
.wsd4{word-spacing:-1.914000px;}
.ws147{word-spacing:-1.890000px;}
.ws97{word-spacing:-1.860000px;}
.wsd9{word-spacing:-1.848000px;}
.wsc0{word-spacing:-1.800000px;}
.wsbe{word-spacing:-1.782000px;}
.ws99{word-spacing:-1.740000px;}
.ws16b{word-spacing:-1.728000px;}
.ws83{word-spacing:-1.716000px;}
.ws13f{word-spacing:-1.680000px;}
.ws11d{word-spacing:-1.674000px;}
.wsb1{word-spacing:-1.650000px;}
.ws119{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.584000px;}
.ws128{word-spacing:-1.560000px;}
.ws8f{word-spacing:-1.518000px;}
.wsa4{word-spacing:-1.512000px;}
.ws35{word-spacing:-1.500000px;}
.ws197{word-spacing:-1.458000px;}
.ws8a{word-spacing:-1.452000px;}
.wsd8{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.392000px;}
.wsed{word-spacing:-1.386000px;}
.wsd0{word-spacing:-1.380000px;}
.wsa5{word-spacing:-1.350000px;}
.ws4c{word-spacing:-1.320000px;}
.ws79{word-spacing:-1.296000px;}
.ws16f{word-spacing:-1.260000px;}
.wsce{word-spacing:-1.254000px;}
.ws124{word-spacing:-1.242000px;}
.ws93{word-spacing:-1.200000px;}
.ws2a{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.140000px;}
.wseb{word-spacing:-1.122000px;}
.wsdd{word-spacing:-1.080000px;}
.wsf1{word-spacing:-1.056000px;}
.ws14d{word-spacing:-1.026000px;}
.wsd1{word-spacing:-1.020000px;}
.ws58{word-spacing:-0.990000px;}
.wsfc{word-spacing:-0.960000px;}
.ws12c{word-spacing:-0.924000px;}
.ws106{word-spacing:-0.900000px;}
.ws125{word-spacing:-0.864000px;}
.ws89{word-spacing:-0.858000px;}
.ws6f{word-spacing:-0.840000px;}
.ws1cc{word-spacing:-0.810000px;}
.ws54{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.780000px;}
.ws1cb{word-spacing:-0.756000px;}
.ws69{word-spacing:-0.726000px;}
.ws3e{word-spacing:-0.720000px;}
.ws1c5{word-spacing:-0.702000px;}
.wsbb{word-spacing:-0.660000px;}
.ws181{word-spacing:-0.648000px;}
.ws4a{word-spacing:-0.600000px;}
.ws2b{word-spacing:-0.594000px;}
.wsc4{word-spacing:-0.540000px;}
.wsee{word-spacing:-0.528000px;}
.ws40{word-spacing:-0.486000px;}
.ws41{word-spacing:-0.480000px;}
.ws8d{word-spacing:-0.462000px;}
.ws1c3{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.420000px;}
.wsd5{word-spacing:-0.396000px;}
.ws94{word-spacing:-0.360000px;}
.ws154{word-spacing:-0.330000px;}
.wsa7{word-spacing:-0.324000px;}
.wsc2{word-spacing:-0.300000px;}
.ws15a{word-spacing:-0.270000px;}
.ws42{word-spacing:-0.264000px;}
.ws39{word-spacing:-0.240000px;}
.wsc5{word-spacing:-0.216000px;}
.wsaa{word-spacing:-0.198000px;}
.ws64{word-spacing:-0.180000px;}
.ws163{word-spacing:-0.162000px;}
.ws31{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.120000px;}
.ws1da{word-spacing:-0.108000px;}
.ws90{word-spacing:-0.066000px;}
.wsae{word-spacing:-0.060000px;}
.ws75{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsa2{word-spacing:0.054000px;}
.ws11a{word-spacing:0.060000px;}
.wsb6{word-spacing:0.066000px;}
.ws5{word-spacing:0.096000px;}
.ws1ce{word-spacing:0.108000px;}
.ws1a1{word-spacing:0.120000px;}
.ws5c{word-spacing:0.132000px;}
.wsa9{word-spacing:0.162000px;}
.ws50{word-spacing:0.180000px;}
.ws47{word-spacing:0.198000px;}
.wsa8{word-spacing:0.216000px;}
.wsf9{word-spacing:0.240000px;}
.ws30{word-spacing:0.264000px;}
.ws13b{word-spacing:0.300000px;}
.ws142{word-spacing:0.324000px;}
.wsc7{word-spacing:0.330000px;}
.ws1a{word-spacing:0.360000px;}
.ws6a{word-spacing:0.396000px;}
.ws121{word-spacing:0.420000px;}
.ws6c{word-spacing:0.462000px;}
.wsda{word-spacing:0.480000px;}
.ws17b{word-spacing:0.486000px;}
.wsf6{word-spacing:0.528000px;}
.wsd7{word-spacing:0.540000px;}
.ws88{word-spacing:0.594000px;}
.ws51{word-spacing:0.600000px;}
.ws9{word-spacing:0.660000px;}
.ws1cd{word-spacing:0.702000px;}
.ws129{word-spacing:0.720000px;}
.ws52{word-spacing:0.726000px;}
.ws186{word-spacing:0.756000px;}
.ws16{word-spacing:0.780000px;}
.ws55{word-spacing:0.792000px;}
.ws11c{word-spacing:0.810000px;}
.ws4e{word-spacing:0.840000px;}
.ws26{word-spacing:0.858000px;}
.ws1c0{word-spacing:0.864000px;}
.ws19{word-spacing:0.900000px;}
.ws21{word-spacing:0.924000px;}
.ws3b{word-spacing:0.960000px;}
.ws127{word-spacing:0.972000px;}
.ws2d{word-spacing:0.990000px;}
.ws138{word-spacing:1.020000px;}
.ws164{word-spacing:1.026000px;}
.ws1f{word-spacing:1.056000px;}
.ws65{word-spacing:1.080000px;}
.ws28{word-spacing:1.122000px;}
.ws14c{word-spacing:1.134000px;}
.wsbd{word-spacing:1.140000px;}
.ws68{word-spacing:1.188000px;}
.ws184{word-spacing:1.242000px;}
.ws81{word-spacing:1.254000px;}
.ws113{word-spacing:1.260000px;}
.ws143{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.ws180{word-spacing:1.380000px;}
.wscc{word-spacing:1.386000px;}
.ws185{word-spacing:1.404000px;}
.ws10{word-spacing:1.440000px;}
.ws44{word-spacing:1.452000px;}
.ws14{word-spacing:1.500000px;}
.ws183{word-spacing:1.512000px;}
.ws29{word-spacing:1.518000px;}
.ws11b{word-spacing:1.560000px;}
.wsdf{word-spacing:1.584000px;}
.ws71{word-spacing:1.620000px;}
.ws16e{word-spacing:1.650000px;}
.ws17c{word-spacing:1.674000px;}
.ws4d{word-spacing:1.680000px;}
.wsb2{word-spacing:1.716000px;}
.wsa0{word-spacing:1.728000px;}
.wsb9{word-spacing:1.740000px;}
.wsc6{word-spacing:1.782000px;}
.ws132{word-spacing:1.800000px;}
.ws1ab{word-spacing:1.836000px;}
.ws56{word-spacing:1.848000px;}
.wsbf{word-spacing:1.914000px;}
.ws140{word-spacing:1.920000px;}
.ws4f{word-spacing:1.980000px;}
.ws16a{word-spacing:1.998000px;}
.ws63{word-spacing:2.040000px;}
.ws178{word-spacing:2.046000px;}
.ws156{word-spacing:2.052000px;}
.wsfa{word-spacing:2.100000px;}
.ws74{word-spacing:2.106000px;}
.ws10b{word-spacing:2.112000px;}
.ws67{word-spacing:2.160000px;}
.ws10d{word-spacing:2.178000px;}
.wsa6{word-spacing:2.214000px;}
.wsad{word-spacing:2.220000px;}
.ws84{word-spacing:2.244000px;}
.ws195{word-spacing:2.268000px;}
.ws70{word-spacing:2.280000px;}
.wsf0{word-spacing:2.310000px;}
.ws1d2{word-spacing:2.322000px;}
.ws20{word-spacing:2.376000px;}
.wsc3{word-spacing:2.400000px;}
.ws144{word-spacing:2.430000px;}
.ws6b{word-spacing:2.442000px;}
.ws168{word-spacing:2.460000px;}
.wscd{word-spacing:2.508000px;}
.wse{word-spacing:2.520000px;}
.ws82{word-spacing:2.574000px;}
.ws13e{word-spacing:2.580000px;}
.ws157{word-spacing:2.592000px;}
.ws3c{word-spacing:2.640000px;}
.ws112{word-spacing:2.700000px;}
.ws101{word-spacing:2.706000px;}
.wsa1{word-spacing:2.754000px;}
.ws114{word-spacing:2.760000px;}
.wse7{word-spacing:2.772000px;}
.ws109{word-spacing:2.820000px;}
.ws161{word-spacing:2.838000px;}
.ws33{word-spacing:2.880000px;}
.wsf3{word-spacing:2.904000px;}
.ws9f{word-spacing:2.916000px;}
.ws108{word-spacing:2.940000px;}
.wsef{word-spacing:2.970000px;}
.ws193{word-spacing:3.000000px;}
.ws110{word-spacing:3.036000px;}
.wsb3{word-spacing:3.060000px;}
.ws159{word-spacing:3.078000px;}
.ws17f{word-spacing:3.102000px;}
.ws102{word-spacing:3.120000px;}
.ws123{word-spacing:3.132000px;}
.ws57{word-spacing:3.168000px;}
.ws3f{word-spacing:3.180000px;}
.ws87{word-spacing:3.234000px;}
.wsfe{word-spacing:3.240000px;}
.ws158{word-spacing:3.294000px;}
.ws3a{word-spacing:3.300000px;}
.wsaf{word-spacing:3.360000px;}
.ws9b{word-spacing:3.366000px;}
.ws1c4{word-spacing:3.402000px;}
.ws62{word-spacing:3.420000px;}
.ws85{word-spacing:3.432000px;}
.ws1d3{word-spacing:3.456000px;}
.ws135{word-spacing:3.480000px;}
.ws100{word-spacing:3.498000px;}
.ws148{word-spacing:3.510000px;}
.ws13{word-spacing:3.540000px;}
.ws7f{word-spacing:3.564000px;}
.ws120{word-spacing:3.600000px;}
.ws126{word-spacing:3.618000px;}
.ws10f{word-spacing:3.630000px;}
.ws1c8{word-spacing:3.672000px;}
.ws10a{word-spacing:3.696000px;}
.ws1a7{word-spacing:3.720000px;}
.ws2e{word-spacing:3.762000px;}
.ws86{word-spacing:3.828000px;}
.ws7{word-spacing:3.840000px;}
.ws131{word-spacing:3.894000px;}
.wsc{word-spacing:3.900000px;}
.ws45{word-spacing:3.960000px;}
.ws1db{word-spacing:3.996000px;}
.ws48{word-spacing:4.020000px;}
.wscb{word-spacing:4.026000px;}
.ws11f{word-spacing:4.050000px;}
.ws1a8{word-spacing:4.080000px;}
.ws9e{word-spacing:4.092000px;}
.ws137{word-spacing:4.140000px;}
.ws27{word-spacing:4.158000px;}
.ws1d0{word-spacing:4.212000px;}
.ws9c{word-spacing:4.224000px;}
.ws175{word-spacing:4.290000px;}
.ws18a{word-spacing:4.320000px;}
.ws10c{word-spacing:4.356000px;}
.ws6e{word-spacing:4.380000px;}
.wsf4{word-spacing:4.422000px;}
.ws146{word-spacing:4.440000px;}
.ws155{word-spacing:4.488000px;}
.wsde{word-spacing:4.500000px;}
.wsec{word-spacing:4.554000px;}
.ws105{word-spacing:4.620000px;}
.ws15b{word-spacing:4.644000px;}
.ws104{word-spacing:4.680000px;}
.ws12b{word-spacing:4.686000px;}
.ws12d{word-spacing:4.740000px;}
.ws1e{word-spacing:4.752000px;}
.wsf8{word-spacing:4.800000px;}
.ws162{word-spacing:4.806000px;}
.wsba{word-spacing:4.818000px;}
.ws19d{word-spacing:4.860000px;}
.ws46{word-spacing:4.884000px;}
.ws5a{word-spacing:4.950000px;}
.ws182{word-spacing:4.968000px;}
.ws18{word-spacing:4.980000px;}
.wsf2{word-spacing:5.016000px;}
.ws141{word-spacing:5.022000px;}
.ws18f{word-spacing:5.076000px;}
.wsf7{word-spacing:5.082000px;}
.ws15c{word-spacing:5.184000px;}
.ws1a4{word-spacing:5.220000px;}
.ws103{word-spacing:5.280000px;}
.ws9a{word-spacing:5.340000px;}
.ws19e{word-spacing:5.346000px;}
.ws130{word-spacing:5.400000px;}
.ws80{word-spacing:5.412000px;}
.ws169{word-spacing:5.454000px;}
.wsab{word-spacing:5.460000px;}
.ws13a{word-spacing:5.478000px;}
.ws76{word-spacing:5.508000px;}
.ws145{word-spacing:5.544000px;}
.ws1c9{word-spacing:5.616000px;}
.ws194{word-spacing:5.676000px;}
.ws1a5{word-spacing:5.700000px;}
.wsd6{word-spacing:5.760000px;}
.ws177{word-spacing:5.874000px;}
.ws73{word-spacing:5.886000px;}
.wsfd{word-spacing:5.940000px;}
.ws1af{word-spacing:6.006000px;}
.ws179{word-spacing:6.048000px;}
.ws111{word-spacing:6.060000px;}
.ws1aa{word-spacing:6.072000px;}
.ws1c1{word-spacing:6.102000px;}
.ws139{word-spacing:6.204000px;}
.ws14a{word-spacing:6.210000px;}
.ws2f{word-spacing:6.270000px;}
.ws19c{word-spacing:6.300000px;}
.ws167{word-spacing:6.336000px;}
.ws12{word-spacing:6.360000px;}
.wse6{word-spacing:6.402000px;}
.ws160{word-spacing:6.468000px;}
.wsf5{word-spacing:6.534000px;}
.wsb{word-spacing:6.600000px;}
.ws14b{word-spacing:6.750000px;}
.ws9d{word-spacing:6.798000px;}
.ws17a{word-spacing:6.858000px;}
.ws170{word-spacing:6.930000px;}
.ws188{word-spacing:6.960000px;}
.wsb7{word-spacing:7.062000px;}
.ws19b{word-spacing:7.080000px;}
.ws171{word-spacing:7.194000px;}
.ws15{word-spacing:7.500000px;}
.wsff{word-spacing:7.524000px;}
.wsc8{word-spacing:7.590000px;}
.ws189{word-spacing:7.656000px;}
.ws1c2{word-spacing:7.722000px;}
.wsfb{word-spacing:7.854000px;}
.ws12a{word-spacing:8.250000px;}
.ws149{word-spacing:13.500000px;}
._3{margin-left:-7.190400px;}
._8{margin-left:-5.574000px;}
._9{margin-left:-4.222800px;}
._2{margin-left:-3.196800px;}
._a{margin-left:-2.131200px;}
._5{margin-left:-1.108800px;}
._0{width:1.027200px;}
._1{width:2.371200px;}
._6{width:4.003200px;}
._7{width:5.046000px;}
._f{width:6.151800px;}
._c{width:7.614000px;}
._13{width:8.842020px;}
._d{width:10.584000px;}
._11{width:12.690000px;}
._12{width:15.526872px;}
._e{width:16.725000px;}
._10{width:63.610800px;}
._b{width:66.519000px;}
._4{width:98.534400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs4{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:125.434500px;}
.y323{bottom:125.436000px;}
.y2c2{bottom:125.437500px;}
.y38d{bottom:125.437650px;}
.y209{bottom:125.439000px;}
.yee{bottom:125.440500px;}
.y398{bottom:125.442000px;}
.y34d{bottom:125.442150px;}
.y225{bottom:125.443500px;}
.y9e{bottom:125.445000px;}
.y3{bottom:125.445750px;}
.y168{bottom:125.752950px;}
.y1a6{bottom:125.800800px;}
.y42b{bottom:126.267900px;}
.y263{bottom:126.304200px;}
.y3f4{bottom:126.604350px;}
.y24a{bottom:126.665850px;}
.y1e4{bottom:126.858000px;}
.y376{bottom:126.892800px;}
.y110{bottom:127.041000px;}
.y16b{bottom:127.165500px;}
.y76{bottom:127.522950px;}
.y14b{bottom:129.274800px;}
.y3b9{bottom:130.522950px;}
.y3d9{bottom:131.163150px;}
.y18f{bottom:131.318100px;}
.y1cb{bottom:131.566200px;}
.yc9{bottom:131.648850px;}
.y479{bottom:133.199400px;}
.y283{bottom:134.229450px;}
.y29c{bottom:135.882750px;}
.y2{bottom:138.945750px;}
.y40f{bottom:140.390250px;}
.y322{bottom:140.434500px;}
.y2c1{bottom:140.436000px;}
.y38c{bottom:140.436150px;}
.y208{bottom:140.437500px;}
.yed{bottom:140.439000px;}
.y397{bottom:140.440500px;}
.y34c{bottom:140.440650px;}
.y224{bottom:140.442000px;}
.y9d{bottom:140.443500px;}
.y3f3{bottom:143.104350px;}
.y167{bottom:143.754450px;}
.y1a5{bottom:143.802300px;}
.y42a{bottom:144.269400px;}
.y262{bottom:144.305700px;}
.y249{bottom:144.667350px;}
.y1e3{bottom:144.859500px;}
.y375{bottom:144.894300px;}
.y4a{bottom:144.928500px;}
.y10f{bottom:145.042500px;}
.y16a{bottom:145.167000px;}
.y75{bottom:145.524450px;}
.y14a{bottom:145.774800px;}
.y18e{bottom:147.818100px;}
.y1ca{bottom:148.066200px;}
.yc8{bottom:148.148850px;}
.y3b8{bottom:148.524450px;}
.y3d8{bottom:149.164650px;}
.y478{bottom:149.696400px;}
.y282{bottom:152.230950px;}
.y29b{bottom:153.884250px;}
.y321{bottom:155.433000px;}
.y2c0{bottom:155.434500px;}
.y38b{bottom:155.434650px;}
.y207{bottom:155.436000px;}
.yec{bottom:155.437500px;}
.y2ee{bottom:155.439000px;}
.y34b{bottom:155.439150px;}
.y223{bottom:155.440500px;}
.y9c{bottom:155.442000px;}
.y40e{bottom:158.391750px;}
.y3f2{bottom:159.604350px;}
.y166{bottom:161.755950px;}
.y429{bottom:162.270900px;}
.y261{bottom:162.307200px;}
.y248{bottom:162.668850px;}
.y1e2{bottom:162.861000px;}
.y374{bottom:162.895800px;}
.y169{bottom:163.168500px;}
.y74{bottom:163.525950px;}
.y18d{bottom:164.318100px;}
.y1c9{bottom:164.566200px;}
.y3b7{bottom:166.525950px;}
.y281{bottom:170.232450px;}
.y206{bottom:170.434500px;}
.yeb{bottom:170.436000px;}
.y2ed{bottom:170.437500px;}
.y34a{bottom:170.437650px;}
.y222{bottom:170.439000px;}
.y9b{bottom:170.440500px;}
.y477{bottom:171.728400px;}
.y29a{bottom:171.885750px;}
.y2bf{bottom:174.928500px;}
.y38a{bottom:174.928650px;}
.y3f1{bottom:176.104350px;}
.y40d{bottom:176.393250px;}
.y10e{bottom:177.073950px;}
.y1a4{bottom:177.534600px;}
.y149{bottom:178.848450px;}
.y428{bottom:180.272400px;}
.y260{bottom:180.308700px;}
.y247{bottom:180.670350px;}
.y18c{bottom:180.818100px;}
.y1e1{bottom:180.862500px;}
.y1c8{bottom:181.066200px;}
.yc7{bottom:181.170000px;}
.y73{bottom:181.527450px;}
.y3d7{bottom:183.747300px;}
.y3b6{bottom:184.527450px;}
.y44f{bottom:185.433000px;}
.yea{bottom:185.434500px;}
.y2d7{bottom:185.436000px;}
.y349{bottom:185.436150px;}
.y221{bottom:185.437500px;}
.y9a{bottom:185.439000px;}
.y280{bottom:188.233950px;}
.y299{bottom:189.887250px;}
.y205{bottom:189.928500px;}
.y3f0{bottom:192.604350px;}
.y10d{bottom:193.573950px;}
.y476{bottom:193.760400px;}
.y1a3{bottom:194.034600px;}
.y40c{bottom:194.394750px;}
.y165{bottom:195.913500px;}
.y148{bottom:196.849950px;}
.y18b{bottom:197.318100px;}
.y373{bottom:197.478600px;}
.y1c7{bottom:197.566200px;}
.y427{bottom:198.273900px;}
.y25f{bottom:198.310200px;}
.y246{bottom:198.671850px;}
.y1e0{bottom:198.864000px;}
.yc6{bottom:199.171500px;}
.y72{bottom:199.528950px;}
.y3d6{bottom:200.247300px;}
.y2d6{bottom:200.434500px;}
.y348{bottom:200.434650px;}
.y220{bottom:200.436000px;}
.y99{bottom:200.437500px;}
.y3b5{bottom:202.528950px;}
.ye9{bottom:204.928500px;}
.y27f{bottom:206.235450px;}
.y298{bottom:207.888750px;}
.y43e{bottom:209.318100px;}
.y49{bottom:209.991300px;}
.y10c{bottom:210.073950px;}
.y475{bottom:210.257400px;}
.y1a2{bottom:210.534600px;}
.y40b{bottom:212.396250px;}
.y164{bottom:212.413500px;}
.y18a{bottom:213.818100px;}
.y372{bottom:213.978600px;}
.y1c6{bottom:214.066200px;}
.y147{bottom:214.851450px;}
.y2d5{bottom:215.433000px;}
.y21f{bottom:215.434500px;}
.y98{bottom:215.436000px;}
.ye8{bottom:215.440500px;}
.y426{bottom:216.275400px;}
.y25e{bottom:216.311700px;}
.y245{bottom:216.673350px;}
.y3d5{bottom:216.747300px;}
.y1df{bottom:216.865500px;}
.yc5{bottom:217.173000px;}
.y71{bottom:217.530450px;}
.y2ec{bottom:219.928500px;}
.y3b4{bottom:220.530450px;}
.y3ef{bottom:223.980150px;}
.y320{bottom:225.373500px;}
.y43d{bottom:225.818100px;}
.y297{bottom:225.890250px;}
.y48{bottom:226.491300px;}
.y10b{bottom:226.573950px;}
.y1a1{bottom:227.034600px;}
.y163{bottom:228.913500px;}
.y189{bottom:230.318100px;}
.y40a{bottom:230.397750px;}
.y97{bottom:230.434500px;}
.ye7{bottom:230.439000px;}
.y371{bottom:230.478600px;}
.y1c5{bottom:230.566200px;}
.y474{bottom:232.289400px;}
.y146{bottom:232.852950px;}
.y3d4{bottom:233.247300px;}
.y25d{bottom:234.313200px;}
.y244{bottom:234.674850px;}
.y21e{bottom:234.928500px;}
.yc4{bottom:235.174500px;}
.y70{bottom:235.531950px;}
.y3b3{bottom:238.531950px;}
.y337{bottom:239.318100px;}
.y27e{bottom:240.818100px;}
.y3ee{bottom:241.981650px;}
.y43c{bottom:242.318100px;}
.y47{bottom:242.991300px;}
.y10a{bottom:243.073950px;}
.y31f{bottom:243.375000px;}
.y1a0{bottom:243.534600px;}
.y296{bottom:243.891750px;}
.y2be{bottom:245.318100px;}
.y162{bottom:245.413500px;}
.ye6{bottom:245.437500px;}
.y188{bottom:246.818100px;}
.y370{bottom:246.978600px;}
.y425{bottom:247.031400px;}
.y409{bottom:248.399250px;}
.y473{bottom:248.786400px;}
.y3d3{bottom:249.747300px;}
.y96{bottom:249.928500px;}
.y145{bottom:250.854450px;}
.y1de{bottom:251.448150px;}
.y243{bottom:252.676350px;}
.yc3{bottom:253.176000px;}
.y6f{bottom:253.533450px;}
.y336{bottom:255.818100px;}
.y3b2{bottom:256.533450px;}
.y27d{bottom:257.318100px;}
.y204{bottom:258.818100px;}
.y46{bottom:259.491300px;}
.y3ed{bottom:259.983150px;}
.y19f{bottom:260.034600px;}
.ye5{bottom:260.436000px;}
.y389{bottom:260.790300px;}
.y31e{bottom:261.376500px;}
.y2bd{bottom:261.818100px;}
.y295{bottom:261.893250px;}
.y161{bottom:261.913500px;}
.y187{bottom:263.318100px;}
.y12e{bottom:263.399250px;}
.y36f{bottom:263.478600px;}
.y424{bottom:263.531400px;}
.y1c4{bottom:263.614350px;}
.y1{bottom:264.546300px;}
.y25c{bottom:265.069050px;}
.y44e{bottom:265.990950px;}
.y408{bottom:266.400750px;}
.y1dd{bottom:267.948150px;}
.y144{bottom:268.855950px;}
.y242{bottom:270.674850px;}
.y472{bottom:270.818400px;}
.y2fe{bottom:271.031850px;}
.yc2{bottom:271.177500px;}
.y6e{bottom:271.534950px;}
.y21{bottom:271.673700px;}
.y335{bottom:272.318100px;}
.y109{bottom:273.599550px;}
.y27c{bottom:273.818100px;}
.y3b1{bottom:274.534950px;}
.y203{bottom:275.318100px;}
.ye4{bottom:275.434500px;}
.y45{bottom:275.991300px;}
.y19e{bottom:276.534600px;}
.y3ec{bottom:277.984650px;}
.y2bc{bottom:278.318100px;}
.y160{bottom:278.413500px;}
.y388{bottom:278.791800px;}
.y31d{bottom:279.378000px;}
.y294{bottom:279.894750px;}
.y423{bottom:280.031400px;}
.y12d{bottom:281.400750px;}
.y25b{bottom:281.569050px;}
.y1c3{bottom:281.615850px;}
.y3d2{bottom:282.829950px;}
.y44d{bottom:283.992450px;}
.y1dc{bottom:284.448150px;}
.y365{bottom:286.039200px;}
.y143{bottom:286.857450px;}
.y20{bottom:288.173700px;}
.y241{bottom:288.676350px;}
.y334{bottom:288.818100px;}
.y2fd{bottom:289.033350px;}
.yc1{bottom:289.179000px;}
.y6d{bottom:289.536450px;}
.y27b{bottom:290.318100px;}
.y21d{bottom:290.433000px;}
.y108{bottom:291.601050px;}
.y202{bottom:291.818100px;}
.y44{bottom:292.491300px;}
.y3b0{bottom:292.536450px;}
.y471{bottom:292.850400px;}
.y2bb{bottom:294.818100px;}
.y15f{bottom:294.913500px;}
.ye3{bottom:294.928500px;}
.y3eb{bottom:295.986150px;}
.y186{bottom:296.387250px;}
.y422{bottom:296.531400px;}
.y36e{bottom:296.537250px;}
.y387{bottom:296.793300px;}
.y31c{bottom:297.379500px;}
.y293{bottom:297.896250px;}
.y25a{bottom:298.069050px;}
.y1c2{bottom:299.617350px;}
.y3d1{bottom:300.823950px;}
.y1db{bottom:300.948150px;}
.y407{bottom:300.983400px;}
.y44c{bottom:301.993950px;}
.y364{bottom:304.040700px;}
.y2d4{bottom:305.233950px;}
.y333{bottom:305.318100px;}
.y240{bottom:306.671850px;}
.y27a{bottom:306.818100px;}
.y2fc{bottom:307.034850px;}
.yc0{bottom:307.180500px;}
.y6c{bottom:307.537950px;}
.y201{bottom:308.318100px;}
.y19d{bottom:308.762400px;}
.y43{bottom:308.991300px;}
.y470{bottom:309.347400px;}
.y107{bottom:309.602550px;}
.y1f{bottom:309.773700px;}
.y347{bottom:309.978450px;}
.y30c{bottom:310.148850px;}
.y3af{bottom:310.537950px;}
.y2ba{bottom:311.318100px;}
.y15e{bottom:311.413500px;}
.y421{bottom:313.031400px;}
.y185{bottom:314.388750px;}
.y36d{bottom:314.538750px;}
.y259{bottom:314.569050px;}
.y386{bottom:314.794800px;}
.y31b{bottom:315.381000px;}
.y292{bottom:315.897750px;}
.y12c{bottom:315.983400px;}
.y1da{bottom:317.448150px;}
.y406{bottom:317.483400px;}
.y1c1{bottom:317.618850px;}
.y3d0{bottom:318.825450px;}
.y44b{bottom:319.995450px;}
.y142{bottom:321.440100px;}
.y95{bottom:321.567900px;}
.y332{bottom:321.818100px;}
.y363{bottom:322.042200px;}
.y2d3{bottom:323.235450px;}
.y279{bottom:323.318100px;}
.y23f{bottom:324.673350px;}
.y200{bottom:324.818100px;}
.ybf{bottom:325.182000px;}
.y42{bottom:325.491300px;}
.y6b{bottom:325.539450px;}
.y1e{bottom:326.273700px;}
.y346{bottom:326.478450px;}
.y30b{bottom:326.648850px;}
.y19c{bottom:326.763900px;}
.y106{bottom:327.604050px;}
.y2b9{bottom:327.818100px;}
.y15d{bottom:327.913500px;}
.y3ae{bottom:328.539450px;}
.y3ea{bottom:328.868100px;}
.y420{bottom:329.531400px;}
.y258{bottom:331.069050px;}
.y46f{bottom:331.379400px;}
.y184{bottom:332.390250px;}
.y12b{bottom:332.483400px;}
.y36c{bottom:332.540250px;}
.y385{bottom:332.796300px;}
.y31a{bottom:333.382500px;}
.y291{bottom:333.899250px;}
.y1d9{bottom:333.948150px;}
.y405{bottom:333.983400px;}
.y1c0{bottom:335.620350px;}
.y3cf{bottom:336.826950px;}
.y141{bottom:337.940100px;}
.y44a{bottom:337.996950px;}
.y94{bottom:339.569400px;}
.y278{bottom:339.818100px;}
.y362{bottom:340.043700px;}
.y1ff{bottom:341.318100px;}
.y41{bottom:341.991300px;}
.y23e{bottom:342.674850px;}
.y1d{bottom:342.773700px;}
.y345{bottom:342.978450px;}
.y30a{bottom:343.148850px;}
.ybe{bottom:343.183500px;}
.y2fb{bottom:343.747350px;}
.y2b8{bottom:344.318100px;}
.y15c{bottom:344.413500px;}
.y19b{bottom:344.765400px;}
.y3e9{bottom:345.368100px;}
.y105{bottom:345.605550px;}
.y41f{bottom:346.031400px;}
.y46e{bottom:347.876400px;}
.y12a{bottom:348.983400px;}
.y183{bottom:350.391750px;}
.y1d8{bottom:350.448150px;}
.y404{bottom:350.483400px;}
.y36b{bottom:350.541750px;}
.y384{bottom:350.797800px;}
.y319{bottom:351.384000px;}
.y290{bottom:351.900750px;}
.y1bf{bottom:353.621850px;}
.y140{bottom:354.440100px;}
.y3ce{bottom:354.828450px;}
.y396{bottom:354.896250px;}
.y331{bottom:354.897750px;}
.y449{bottom:355.998450px;}
.y6a{bottom:356.295300px;}
.y277{bottom:356.318100px;}
.y93{bottom:357.570900px;}
.y1fe{bottom:357.818100px;}
.y43b{bottom:357.893250px;}
.y361{bottom:358.045200px;}
.y40{bottom:358.491300px;}
.y1c{bottom:359.273700px;}
.y3ad{bottom:359.295300px;}
.y344{bottom:359.478450px;}
.y309{bottom:359.648850px;}
.y257{bottom:360.320550px;}
.y23d{bottom:360.676350px;}
.y2b7{bottom:360.818100px;}
.y15b{bottom:360.913500px;}
.ybd{bottom:361.185000px;}
.y3e8{bottom:361.868100px;}
.y41e{bottom:362.531400px;}
.y19a{bottom:362.766900px;}
.ye2{bottom:365.051400px;}
.y129{bottom:365.483400px;}
.y1d7{bottom:366.948150px;}
.y403{bottom:366.983400px;}
.y182{bottom:368.393250px;}
.y36a{bottom:368.543250px;}
.y383{bottom:368.799300px;}
.y318{bottom:369.385500px;}
.y46d{bottom:369.908400px;}
.y13f{bottom:370.940100px;}
.y1be{bottom:371.623350px;}
.y69{bottom:372.795300px;}
.y3cd{bottom:372.829950px;}
.y395{bottom:372.897750px;}
.y330{bottom:372.899250px;}
.y448{bottom:373.999950px;}
.y1fd{bottom:374.318100px;}
.y3f{bottom:374.991300px;}
.y1b{bottom:375.773700px;}
.y3ac{bottom:375.795300px;}
.y43a{bottom:375.894750px;}
.y343{bottom:375.978450px;}
.y360{bottom:376.046700px;}
.y308{bottom:376.148850px;}
.y2b6{bottom:377.318100px;}
.y15a{bottom:377.413500px;}
.y104{bottom:377.637000px;}
.y256{bottom:378.322050px;}
.y3e7{bottom:378.368100px;}
.y23c{bottom:378.663150px;}
.ybc{bottom:379.186500px;}
.y128{bottom:381.983400px;}
.ye1{bottom:383.052900px;}
.y1d6{bottom:383.448150px;}
.y402{bottom:383.483400px;}
.y2eb{bottom:384.896250px;}
.y181{bottom:386.394750px;}
.y46c{bottom:386.405400px;}
.y28f{bottom:386.483400px;}
.y369{bottom:386.544750px;}
.y317{bottom:387.387000px;}
.y13e{bottom:387.440100px;}
.y68{bottom:389.295300px;}
.y276{bottom:389.399250px;}
.y1bd{bottom:389.624850px;}
.y1fc{bottom:390.818100px;}
.y394{bottom:390.899250px;}
.y32f{bottom:390.900750px;}
.y3e{bottom:391.491300px;}
.y41d{bottom:391.782750px;}
.y92{bottom:392.153700px;}
.y1a{bottom:392.273700px;}
.y3ab{bottom:392.295300px;}
.y342{bottom:392.478450px;}
.y307{bottom:392.648850px;}
.y439{bottom:393.896250px;}
.y159{bottom:393.913500px;}
.y35f{bottom:394.048200px;}
.y103{bottom:394.137000px;}
.y3e6{bottom:394.868100px;}
.y21c{bottom:395.483400px;}
.y255{bottom:396.323550px;}
.y199{bottom:396.499200px;}
.y23b{bottom:396.664650px;}
.y2fa{bottom:397.042350px;}
.ybb{bottom:397.188000px;}
.y127{bottom:398.483400px;}
.y1d5{bottom:399.948150px;}
.y401{bottom:399.983400px;}
.ye0{bottom:401.054400px;}
.y2ea{bottom:402.897750px;}
.y28e{bottom:402.983400px;}
.y382{bottom:403.381950px;}
.y13d{bottom:403.940100px;}
.y180{bottom:404.396250px;}
.y368{bottom:404.546250px;}
.y67{bottom:405.795300px;}
.y1fb{bottom:407.318100px;}
.y275{bottom:407.400750px;}
.y1bc{bottom:407.626350px;}
.y3d{bottom:407.991300px;}
.y46b{bottom:408.437400px;}
.y447{bottom:408.582600px;}
.y91{bottom:408.653700px;}
.y19{bottom:408.773700px;}
.y3aa{bottom:408.795300px;}
.y393{bottom:408.900750px;}
.y341{bottom:408.978450px;}
.y306{bottom:409.148850px;}
.y3cc{bottom:409.528950px;}
.y41c{bottom:409.784250px;}
.y2b5{bottom:410.393250px;}
.y158{bottom:410.413500px;}
.y102{bottom:410.637000px;}
.y3e5{bottom:411.368100px;}
.y438{bottom:411.897750px;}
.y21b{bottom:411.983400px;}
.y35e{bottom:412.049700px;}
.y198{bottom:412.999200px;}
.y254{bottom:414.325050px;}
.y23a{bottom:414.666150px;}
.y126{bottom:414.983400px;}
.y2f9{bottom:415.043850px;}
.yba{bottom:415.189500px;}
.y400{bottom:416.483400px;}
.ydf{bottom:419.055900px;}
.y28d{bottom:419.483400px;}
.y381{bottom:419.881950px;}
.y13c{bottom:420.440100px;}
.y2e9{bottom:420.899250px;}
.y316{bottom:421.969650px;}
.y66{bottom:422.295300px;}
.y17f{bottom:422.397750px;}
.y367{bottom:422.547750px;}
.y1fa{bottom:423.818100px;}
.y3c{bottom:424.491300px;}
.y46a{bottom:424.934400px;}
.y446{bottom:425.082600px;}
.y90{bottom:425.153700px;}
.y18{bottom:425.273700px;}
.y3a9{bottom:425.295300px;}
.y340{bottom:425.478450px;}
.y32e{bottom:425.483400px;}
.y1bb{bottom:425.627850px;}
.y305{bottom:425.648850px;}
.y157{bottom:426.913500px;}
.y101{bottom:427.137000px;}
.y41b{bottom:427.785750px;}
.y3e4{bottom:427.868100px;}
.y2b4{bottom:428.394750px;}
.y21a{bottom:428.483400px;}
.y197{bottom:429.499200px;}
.y437{bottom:429.899250px;}
.y35d{bottom:430.051200px;}
.y125{bottom:431.483400px;}
.y239{bottom:432.667650px;}
.y3ff{bottom:432.983400px;}
.y1d4{bottom:433.018950px;}
.y2f8{bottom:433.045350px;}
.yb9{bottom:433.191000px;}
.y28c{bottom:435.983400px;}
.y380{bottom:436.381950px;}
.y13b{bottom:436.940100px;}
.yde{bottom:437.057400px;}
.y315{bottom:438.469650px;}
.y65{bottom:438.795300px;}
.y2e8{bottom:438.890250px;}
.y2d2{bottom:440.393250px;}
.y17e{bottom:440.399250px;}
.y366{bottom:440.549250px;}
.y3b{bottom:440.991300px;}
.y445{bottom:441.582600px;}
.y8f{bottom:441.653700px;}
.y17{bottom:441.773700px;}
.y3a8{bottom:441.795300px;}
.y274{bottom:441.983400px;}
.y304{bottom:442.148850px;}
.y156{bottom:443.413500px;}
.y392{bottom:443.483400px;}
.y1ba{bottom:443.629350px;}
.y100{bottom:443.637000px;}
.y3e3{bottom:444.368100px;}
.y219{bottom:444.983400px;}
.y253{bottom:445.080900px;}
.y41a{bottom:445.787250px;}
.y196{bottom:445.999200px;}
.y2b3{bottom:446.396250px;}
.y469{bottom:446.966400px;}
.y436{bottom:447.900750px;}
.y124{bottom:447.983400px;}
.y35c{bottom:448.052700px;}
.y3fe{bottom:449.483400px;}
.y238{bottom:450.669150px;}
.y1d3{bottom:451.020450px;}
.y2f7{bottom:451.046850px;}
.yb8{bottom:451.192500px;}
.y28b{bottom:452.483400px;}
.y37f{bottom:452.881950px;}
.y13a{bottom:453.440100px;}
.y314{bottom:454.969650px;}
.ydd{bottom:455.058900px;}
.y2e7{bottom:456.891750px;}
.y1f9{bottom:456.896250px;}
.y3a{bottom:457.491300px;}
.y444{bottom:458.082600px;}
.y8e{bottom:458.153700px;}
.y2d1{bottom:458.394750px;}
.y17d{bottom:458.400750px;}
.y273{bottom:458.483400px;}
.y33f{bottom:458.550750px;}
.y303{bottom:458.648850px;}
.y155{bottom:459.913500px;}
.y391{bottom:459.983400px;}
.y3e2{bottom:460.868100px;}
.y218{bottom:461.483400px;}
.y252{bottom:461.580900px;}
.y1b9{bottom:461.630850px;}
.y195{bottom:462.499200px;}
.y3cb{bottom:462.823950px;}
.y468{bottom:463.463400px;}
.y2b2{bottom:464.397750px;}
.y123{bottom:464.483400px;}
.y35b{bottom:466.054200px;}
.y64{bottom:468.046800px;}
.y237{bottom:468.670650px;}
.y28a{bottom:468.983400px;}
.y1d2{bottom:469.021950px;}
.y2f6{bottom:469.048350px;}
.yb7{bottom:469.194000px;}
.y37e{bottom:469.381950px;}
.y3a7{bottom:471.040800px;}
.y313{bottom:471.469650px;}
.ydc{bottom:473.060400px;}
.y39{bottom:473.991300px;}
.yff{bottom:474.159450px;}
.y8d{bottom:474.653700px;}
.y2e6{bottom:474.893250px;}
.y1f8{bottom:474.897750px;}
.y272{bottom:474.983400px;}
.y302{bottom:475.148850px;}
.y2d0{bottom:476.396250px;}
.y154{bottom:476.413500px;}
.y390{bottom:476.483400px;}
.y419{bottom:476.543100px;}
.y33e{bottom:476.552250px;}
.y16{bottom:476.978700px;}
.y3e1{bottom:477.368100px;}
.y217{bottom:477.983400px;}
.y251{bottom:478.080900px;}
.y194{bottom:478.999200px;}
.y1b8{bottom:479.632350px;}
.y3ca{bottom:480.825450px;}
.y2b1{bottom:482.399250px;}
.y435{bottom:482.483400px;}
.y3fd{bottom:482.566200px;}
.y289{bottom:485.483400px;}
.y467{bottom:485.495400px;}
.y37d{bottom:485.881950px;}
.y63{bottom:486.048300px;}
.y139{bottom:486.486000px;}
.y236{bottom:486.672150px;}
.y1d1{bottom:487.023450px;}
.yb6{bottom:487.195500px;}
.y312{bottom:487.969650px;}
.y3a6{bottom:489.042300px;}
.ydb{bottom:491.061900px;}
.y8c{bottom:491.153700px;}
.y271{bottom:491.483400px;}
.y301{bottom:491.648850px;}
.yfe{bottom:492.160950px;}
.y2e5{bottom:492.894750px;}
.y1f7{bottom:492.899250px;}
.y153{bottom:492.913500px;}
.y17c{bottom:492.983400px;}
.y418{bottom:493.043100px;}
.y443{bottom:493.283100px;}
.y3e0{bottom:493.868100px;}
.y2cf{bottom:494.397750px;}
.y216{bottom:494.483400px;}
.y33d{bottom:494.553750px;}
.y250{bottom:494.580900px;}
.y193{bottom:495.499200px;}
.y122{bottom:497.551200px;}
.y1b7{bottom:497.633850px;}
.y3c9{bottom:498.826950px;}
.y434{bottom:498.983400px;}
.y2b0{bottom:500.400750px;}
.y466{bottom:501.992400px;}
.y35a{bottom:502.766700px;}
.y2f5{bottom:503.631000px;}
.y62{bottom:504.049800px;}
.y138{bottom:504.487500px;}
.y38{bottom:504.507900px;}
.y235{bottom:504.673650px;}
.y1d0{bottom:505.024950px;}
.yb5{bottom:505.197000px;}
.y3a5{bottom:507.043800px;}
.y8b{bottom:507.653700px;}
.y270{bottom:507.983400px;}
.y32d{bottom:508.057200px;}
.y300{bottom:508.148850px;}
.yda{bottom:509.063400px;}
.y152{bottom:509.413500px;}
.y17b{bottom:509.483400px;}
.y417{bottom:509.543100px;}
.yfd{bottom:510.162450px;}
.y3df{bottom:510.368100px;}
.y15{bottom:510.486450px;}
.y2e4{bottom:510.896250px;}
.y1f6{bottom:510.900750px;}
.y215{bottom:510.983400px;}
.y24f{bottom:511.080900px;}
.y192{bottom:511.999200px;}
.y2ce{bottom:512.399250px;}
.y33c{bottom:512.555250px;}
.y433{bottom:515.483400px;}
.y121{bottom:515.552700px;}
.y1b6{bottom:515.635350px;}
.y3c8{bottom:516.828450px;}
.y3fc{bottom:517.148850px;}
.y288{bottom:518.560200px;}
.y37c{bottom:518.958600px;}
.y2f4{bottom:520.131000px;}
.y311{bottom:521.046300px;}
.y61{bottom:522.051300px;}
.y137{bottom:522.489000px;}
.y37{bottom:522.509400px;}
.y234{bottom:522.675150px;}
.y1cf{bottom:523.026450px;}
.yb4{bottom:523.198500px;}
.y465{bottom:524.024400px;}
.y26f{bottom:524.483400px;}
.y3a4{bottom:525.045300px;}
.y14{bottom:525.486450px;}
.y17a{bottom:525.983400px;}
.y416{bottom:526.043100px;}
.y32c{bottom:526.058700px;}
.y3de{bottom:526.868100px;}
.yd9{bottom:527.064900px;}
.y214{bottom:527.483400px;}
.y24e{bottom:527.580900px;}
.yfc{bottom:528.163950px;}
.y191{bottom:528.499200px;}
.y2e3{bottom:528.897750px;}
.y2cd{bottom:530.400750px;}
.y33b{bottom:530.556750px;}
.y48f{bottom:530.689050px;}
.y432{bottom:531.983400px;}
.y120{bottom:533.554200px;}
.y1b5{bottom:533.636850px;}
.y3fb{bottom:533.648850px;}
.y3c7{bottom:534.829950px;}
.y2af{bottom:534.983400px;}
.y287{bottom:536.561700px;}
.y2f3{bottom:536.631000px;}
.y37b{bottom:536.960100px;}
.y310{bottom:539.047800px;}
.y136{bottom:540.490500px;}
.y36{bottom:540.510900px;}
.y464{bottom:540.521400px;}
.y233{bottom:540.676650px;}
.y8a{bottom:540.721350px;}
.y1ce{bottom:541.027950px;}
.yb3{bottom:541.200000px;}
.y151{bottom:542.063400px;}
.y179{bottom:542.483400px;}
.y415{bottom:542.543100px;}
.y3a3{bottom:543.046800px;}
.y213{bottom:543.983400px;}
.y32b{bottom:544.060200px;}
.y24d{bottom:544.080900px;}
.y190{bottom:544.999200px;}
.yd8{bottom:545.066400px;}
.y1f5{bottom:545.483400px;}
.yfb{bottom:546.165450px;}
.y442{bottom:546.578100px;}
.y2e2{bottom:546.899250px;}
.y48e{bottom:547.186500px;}
.y431{bottom:548.483400px;}
.y33a{bottom:548.558250px;}
.y3fa{bottom:550.148850px;}
.y2ae{bottom:551.483400px;}
.y11f{bottom:551.555700px;}
.y1b4{bottom:551.638350px;}
.y60{bottom:552.807150px;}
.y2f2{bottom:553.131000px;}
.y286{bottom:554.563200px;}
.y37a{bottom:554.961600px;}
.y359{bottom:556.061700px;}
.y463{bottom:557.018400px;}
.y30f{bottom:557.049300px;}
.y26e{bottom:557.566200px;}
.y3dd{bottom:558.245400px;}
.y135{bottom:558.492000px;}
.y35{bottom:558.512400px;}
.y232{bottom:558.678150px;}
.y89{bottom:558.722850px;}
.y1cd{bottom:559.029450px;}
.y414{bottom:559.043100px;}
.y38f{bottom:559.058700px;}
.yb2{bottom:559.201500px;}
.y150{bottom:560.064900px;}
.y24c{bottom:560.580900px;}
.y3a2{bottom:561.048300px;}
.y1f4{bottom:561.983400px;}
.y32a{bottom:562.061700px;}
.yd7{bottom:563.067900px;}
.y48d{bottom:563.683500px;}
.yfa{bottom:564.166950px;}
.y441{bottom:564.579600px;}
.y2e1{bottom:564.900750px;}
.y2cc{bottom:564.983400px;}
.y339{bottom:566.559750px;}
.y3f9{bottom:566.648850px;}
.y3c6{bottom:567.711750px;}
.y2ad{bottom:567.983400px;}
.y5f{bottom:569.307150px;}
.y11e{bottom:569.557200px;}
.y2f1{bottom:569.631000px;}
.y1b3{bottom:569.639850px;}
.y13{bottom:570.256350px;}
.y285{bottom:572.564700px;}
.y379{bottom:572.963100px;}
.y358{bottom:574.063200px;}
.y30e{bottom:575.050800px;}
.y413{bottom:575.543100px;}
.y178{bottom:575.561700px;}
.y3dc{bottom:576.246900px;}
.y134{bottom:576.493500px;}
.y34{bottom:576.513900px;}
.y231{bottom:576.679650px;}
.y88{bottom:576.724350px;}
.y1cc{bottom:577.030950px;}
.y212{bottom:577.060200px;}
.y24b{bottom:577.080900px;}
.yb1{bottom:577.203000px;}
.y14f{bottom:578.066400px;}
.y1f3{bottom:578.483400px;}
.y3a1{bottom:579.049800px;}
.y462{bottom:579.050400px;}
.y329{bottom:580.063200px;}
.yd6{bottom:581.069400px;}
.y2cb{bottom:581.483400px;}
.yf9{bottom:582.168450px;}
.y440{bottom:582.581100px;}
.y3f8{bottom:583.148850px;}
.y3c5{bottom:584.211750px;}
.y2ac{bottom:584.483400px;}
.y338{bottom:584.561250px;}
.y48c{bottom:585.715500px;}
.y5e{bottom:585.807150px;}
.y2f0{bottom:586.131000px;}
.y12{bottom:586.756350px;}
.y11d{bottom:587.558700px;}
.y1b2{bottom:587.641350px;}
.y284{bottom:590.566200px;}
.y378{bottom:590.964600px;}
.y412{bottom:592.043100px;}
.y357{bottom:592.064700px;}
.y26d{bottom:592.148850px;}
.y30d{bottom:593.052300px;}
.y177{bottom:593.563200px;}
.y3db{bottom:594.248400px;}
.y133{bottom:594.495000px;}
.y33{bottom:594.515400px;}
.y87{bottom:594.725850px;}
.y1f2{bottom:594.983400px;}
.y211{bottom:595.061700px;}
.yb0{bottom:595.204500px;}
.y461{bottom:595.547400px;}
.y14e{bottom:596.067900px;}
.y3a0{bottom:597.051300px;}
.y2ca{bottom:597.983400px;}
.y328{bottom:598.064700px;}
.yd5{bottom:599.070900px;}
.y2e0{bottom:599.483400px;}
.y3f7{bottom:599.648850px;}
.y43f{bottom:600.582600px;}
.y3c4{bottom:600.711750px;}
.y48b{bottom:602.212500px;}
.y5d{bottom:602.307150px;}
.y2ef{bottom:602.631000px;}
.y230{bottom:605.307150px;}
.y11c{bottom:605.560200px;}
.y1b1{bottom:605.642850px;}
.y11{bottom:608.356350px;}
.y411{bottom:608.543100px;}
.y26c{bottom:608.648850px;}
.y356{bottom:610.066200px;}
.y1f1{bottom:611.483400px;}
.y176{bottom:611.564700px;}
.y3da{bottom:612.249900px;}
.y132{bottom:612.496500px;}
.y32{bottom:612.516900px;}
.y86{bottom:612.727350px;}
.y210{bottom:613.063200px;}
.yaf{bottom:613.206000px;}
.y14d{bottom:614.069400px;}
.yf8{bottom:614.200050px;}
.y2c9{bottom:614.483400px;}
.y2df{bottom:615.983400px;}
.y327{bottom:616.066200px;}
.y3f6{bottom:616.148850px;}
.y3c3{bottom:617.211750px;}
.y2ab{bottom:617.564700px;}
.y460{bottom:617.579400px;}
.y48a{bottom:618.709500px;}
.y5c{bottom:618.807150px;}
.y11b{bottom:623.561700px;}
.y1b0{bottom:623.644350px;}
.y10{bottom:624.856350px;}
.y410{bottom:625.043100px;}
.y26b{bottom:625.148850px;}
.y39f{bottom:627.807150px;}
.y1f0{bottom:627.983400px;}
.y175{bottom:629.566200px;}
.y131{bottom:630.498000px;}
.y31{bottom:630.518400px;}
.yf7{bottom:630.700050px;}
.y85{bottom:630.728850px;}
.y2c8{bottom:630.983400px;}
.y430{bottom:631.061700px;}
.y20f{bottom:631.064700px;}
.yae{bottom:631.207500px;}
.y14c{bottom:632.070900px;}
.y2de{bottom:632.483400px;}
.yd4{bottom:633.653700px;}
.y3c2{bottom:633.711750px;}
.y45f{bottom:634.076400px;}
.y5b{bottom:635.307150px;}
.y2aa{bottom:635.566200px;}
.y489{bottom:640.741500px;}
.yf{bottom:641.356350px;}
.y11a{bottom:641.563200px;}
.y1af{bottom:641.645850px;}
.y26a{bottom:641.648850px;}
.y39e{bottom:644.307150px;}
.y355{bottom:644.648850px;}
.yf6{bottom:647.200050px;}
.y2c7{bottom:647.483400px;}
.y130{bottom:648.499500px;}
.y30{bottom:648.519900px;}
.y84{bottom:648.730350px;}
.y2dd{bottom:648.983400px;}
.y42f{bottom:649.063200px;}
.y20e{bottom:649.066200px;}
.yad{bottom:649.209000px;}
.yd3{bottom:650.153700px;}
.y264{bottom:650.451900px;}
.y326{bottom:650.648850px;}
.y5a{bottom:651.807150px;}
.y22f{bottom:652.216650px;}
.y1e5{bottom:652.552350px;}
.y45e{bottom:656.108400px;}
.y488{bottom:657.238500px;}
.ye{bottom:657.856350px;}
.y269{bottom:658.148850px;}
.y119{bottom:659.564700px;}
.y1ae{bottom:659.647350px;}
.y39d{bottom:660.807150px;}
.y1ef{bottom:661.061700px;}
.y354{bottom:661.148850px;}
.yf5{bottom:663.700050px;}
.y2c6{bottom:663.983400px;}
.y174{bottom:664.148850px;}
.y3c1{bottom:665.090700px;}
.y324{bottom:665.382000px;}
.y2dc{bottom:665.483400px;}
.y12f{bottom:666.501000px;}
.y2f{bottom:666.521400px;}
.yd2{bottom:666.653700px;}
.y83{bottom:666.731850px;}
.y42e{bottom:667.064700px;}
.y325{bottom:667.148850px;}
.yac{bottom:667.210500px;}
.y59{bottom:668.307150px;}
.y34e{bottom:668.601150px;}
.y451{bottom:668.731500px;}
.y2a9{bottom:670.148850px;}
.y22e{bottom:670.218150px;}
.y377{bottom:671.603250px;}
.y38e{bottom:672.862650px;}
.yd{bottom:674.356350px;}
.y268{bottom:674.648850px;}
.y2ff{bottom:674.796000px;}
.y39c{bottom:677.307150px;}
.y118{bottom:677.566200px;}
.y1ad{bottom:677.648850px;}
.y45d{bottom:678.140400px;}
.y1ee{bottom:679.063200px;}
.y487{bottom:679.270500px;}
.yf4{bottom:680.200050px;}
.y2c5{bottom:680.483400px;}
.y173{bottom:680.648850px;}
.y2db{bottom:681.983400px;}
.y3f5{bottom:682.456350px;}
.y450{bottom:682.482000px;}
.y3c0{bottom:683.092200px;}
.yd1{bottom:683.153700px;}
.y20d{bottom:683.648850px;}
.y2e{bottom:684.502500px;}
.y82{bottom:684.733350px;}
.y58{bottom:684.807150px;}
.y42d{bottom:685.066200px;}
.yab{bottom:685.212000px;}
.y2a8{bottom:686.648850px;}
.y22d{bottom:688.219650px;}
.y42c{bottom:688.847100px;}
.yc{bottom:690.856350px;}
.y267{bottom:691.148850px;}
.y39b{bottom:693.807150px;}
.y353{bottom:694.148850px;}
.y45c{bottom:694.637400px;}
.y486{bottom:695.767500px;}
.yf3{bottom:696.700050px;}
.y1ed{bottom:697.064700px;}
.y172{bottom:697.148850px;}
.yd0{bottom:699.653700px;}
.y20c{bottom:700.148850px;}
.y3bf{bottom:701.093700px;}
.y57{bottom:701.307150px;}
.y2d{bottom:702.504000px;}
.y81{bottom:702.734850px;}
.y2a7{bottom:703.148850px;}
.yaa{bottom:703.213500px;}
.yb{bottom:707.356350px;}
.y266{bottom:707.648850px;}
.y352{bottom:710.648850px;}
.y117{bottom:712.148850px;}
.y1ac{bottom:712.231500px;}
.y485{bottom:712.264500px;}
.yf2{bottom:713.200050px;}
.y2c4{bottom:713.564700px;}
.y171{bottom:713.648850px;}
.y2da{bottom:715.063200px;}
.y1ec{bottom:715.066200px;}
.ycf{bottom:716.153700px;}
.y20b{bottom:716.648850px;}
.y45b{bottom:716.669400px;}
.y56{bottom:717.807150px;}
.y22c{bottom:718.975650px;}
.y2a6{bottom:719.648850px;}
.y2c{bottom:720.505500px;}
.y80{bottom:720.736350px;}
.ya9{bottom:721.215000px;}
.y39a{bottom:723.061650px;}
.ya{bottom:723.856350px;}
.y265{bottom:724.148850px;}
.y351{bottom:727.148850px;}
.y116{bottom:728.648850px;}
.yf1{bottom:729.700050px;}
.y170{bottom:730.148850px;}
.y2c3{bottom:731.566200px;}
.y3be{bottom:731.849550px;}
.yce{bottom:732.653700px;}
.y2d9{bottom:733.064700px;}
.y20a{bottom:733.148850px;}
.y45a{bottom:733.166400px;}
.y484{bottom:734.296500px;}
.y22b{bottom:735.475650px;}
.y2a5{bottom:736.148850px;}
.y2b{bottom:738.507000px;}
.ya8{bottom:739.216500px;}
.y9{bottom:740.356350px;}
.y399{bottom:741.063150px;}
.y350{bottom:743.648850px;}
.y115{bottom:745.148850px;}
.y1ab{bottom:745.231500px;}
.yf0{bottom:746.200050px;}
.y16f{bottom:746.648850px;}
.y55{bottom:747.052650px;}
.y3bd{bottom:748.349550px;}
.y1eb{bottom:749.648850px;}
.y483{bottom:750.793500px;}
.y2d8{bottom:751.066200px;}
.y22a{bottom:751.975650px;}
.y2a4{bottom:752.648850px;}
.y459{bottom:755.198400px;}
.y7f{bottom:755.319000px;}
.y2a{bottom:756.508500px;}
.y8{bottom:756.856350px;}
.ya7{bottom:757.218000px;}
.y34f{bottom:760.148850px;}
.y114{bottom:761.648850px;}
.y1aa{bottom:761.731500px;}
.yef{bottom:762.700050px;}
.y16e{bottom:763.148850px;}
.y3bc{bottom:764.849550px;}
.y54{bottom:765.054150px;}
.ycd{bottom:765.731700px;}
.y1ea{bottom:766.148850px;}
.y482{bottom:767.290500px;}
.y229{bottom:768.475650px;}
.y2a3{bottom:769.148850px;}
.y458{bottom:771.695400px;}
.y7e{bottom:771.819000px;}
.y29{bottom:774.510000px;}
.ya6{bottom:775.219500px;}
.y113{bottom:778.148850px;}
.y1a9{bottom:778.231500px;}
.y16d{bottom:779.648850px;}
.y3bb{bottom:781.349550px;}
.y1e9{bottom:782.648850px;}
.y53{bottom:783.055650px;}
.ycc{bottom:783.733200px;}
.y228{bottom:784.975650px;}
.y2a2{bottom:785.648850px;}
.y7d{bottom:788.319000px;}
.y481{bottom:789.322500px;}
.y7{bottom:792.061350px;}
.y28{bottom:792.511500px;}
.ya5{bottom:793.221000px;}
.y457{bottom:793.727400px;}
.y1a8{bottom:794.731500px;}
.y16c{bottom:796.148850px;}
.y3ba{bottom:797.849550px;}
.y1e8{bottom:799.148850px;}
.y52{bottom:801.057150px;}
.y227{bottom:801.475650px;}
.ycb{bottom:801.734700px;}
.y2a1{bottom:802.148850px;}
.y7c{bottom:804.819000px;}
.y480{bottom:805.819500px;}
.y456{bottom:810.224400px;}
.y27{bottom:810.513000px;}
.ya4{bottom:811.222500px;}
.y112{bottom:811.228500px;}
.y1e7{bottom:815.648850px;}
.y226{bottom:817.975650px;}
.y2a0{bottom:818.648850px;}
.y51{bottom:819.058650px;}
.yca{bottom:819.736200px;}
.y7b{bottom:821.319000px;}
.y47f{bottom:827.851500px;}
.y26{bottom:828.514500px;}
.ya3{bottom:829.224000px;}
.y111{bottom:829.230000px;}
.y1a7{bottom:829.933500px;}
.y1e6{bottom:832.148850px;}
.y455{bottom:832.256400px;}
.y29f{bottom:835.148850px;}
.y50{bottom:837.060150px;}
.y7a{bottom:837.819000px;}
.y6{bottom:843.858000px;}
.y47e{bottom:844.348500px;}
.y25{bottom:846.516000px;}
.ya2{bottom:847.225500px;}
.y29e{bottom:851.648850px;}
.y454{bottom:854.288400px;}
.y79{bottom:854.319000px;}
.y4f{bottom:855.061650px;}
.y24{bottom:864.517500px;}
.ya1{bottom:865.227000px;}
.y47d{bottom:866.380500px;}
.y29d{bottom:868.148850px;}
.y78{bottom:870.819000px;}
.y4e{bottom:873.063150px;}
.y453{bottom:876.320400px;}
.y23{bottom:882.519000px;}
.y47c{bottom:882.877500px;}
.ya0{bottom:883.228500px;}
.y77{bottom:887.319000px;}
.y5{bottom:898.650000px;}
.y9f{bottom:901.230000px;}
.y4d{bottom:903.819000px;}
.y47b{bottom:904.909500px;}
.y452{bottom:917.056500px;}
.y4{bottom:918.144000px;}
.y22{bottom:919.231500px;}
.y4c{bottom:920.319000px;}
.y47a{bottom:921.406500px;}
.h8{height:28.620000px;}
.hf{height:28.620600px;}
.h2{height:35.088000px;}
.h3{height:41.424000px;}
.h9{height:46.602000px;}
.hb{height:50.160000px;}
.h5{height:51.780000px;}
.he{height:51.780600px;}
.h6{height:56.958000px;}
.hc{height:56.976000px;}
.ha{height:56.982000px;}
.hd{height:57.000000px;}
.h7{height:57.039600px;}
.h4{height:62.136000px;}
.h10{height:67.314000px;}
.h1{height:999.000000px;}
.h0{height:999.225000px;}
.w1{width:701.250000px;}
.w0{width:701.550000px;}
.x0{left:0.000000px;}
.x9{left:56.500650px;}
.x6{left:72.283500px;}
.xc{left:106.310700px;}
.x4{left:112.678350px;}
.xd{left:123.307050px;}
.xb{left:157.328700px;}
.x8{left:164.630850px;}
.x7{left:174.290850px;}
.x3{left:181.047300px;}
.xe{left:201.974550px;}
.x2{left:211.959300px;}
.x14{left:244.087050px;}
.x12{left:249.277350px;}
.x18{left:265.601100px;}
.x17{left:268.424400px;}
.xf{left:270.721650px;}
.x5{left:274.840350px;}
.xa{left:301.307700px;}
.x15{left:302.984850px;}
.x11{left:307.151700px;}
.x16{left:337.851150px;}
.x13{left:341.600700px;}
.x10{left:541.247850px;}
.x1{left:654.480600px;}
@media print{
.v6{vertical-align:-58.666667pt;}
.v2{vertical-align:-19.536000pt;}
.v5{vertical-align:-17.760000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.982400pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.608533pt;}
.ls70{letter-spacing:-5.280000pt;}
.ls71{letter-spacing:-4.693333pt;}
.ls6c{letter-spacing:-4.512000pt;}
.ls3f{letter-spacing:-4.400000pt;}
.ls30{letter-spacing:-4.341333pt;}
.ls39{letter-spacing:-4.048000pt;}
.ls3c{letter-spacing:-3.168000pt;}
.ls3b{letter-spacing:-2.992000pt;}
.ls8d{letter-spacing:-2.784000pt;}
.ls38{letter-spacing:-2.640000pt;}
.ls34{letter-spacing:-2.464000pt;}
.ls77{letter-spacing:-2.453333pt;}
.ls8a{letter-spacing:-2.400000pt;}
.ls32{letter-spacing:-2.346667pt;}
.ls31{letter-spacing:-2.288000pt;}
.ls3a{letter-spacing:-2.053333pt;}
.ls8e{letter-spacing:-1.968000pt;}
.ls5f{letter-spacing:-1.865600pt;}
.ls79{letter-spacing:-1.824000pt;}
.ls35{letter-spacing:-1.701333pt;}
.ls60{letter-spacing:-1.623072pt;}
.ls89{letter-spacing:-1.584000pt;}
.ls74{letter-spacing:-1.536000pt;}
.ls42{letter-spacing:-1.440000pt;}
.ls4e{letter-spacing:-1.430293pt;}
.ls55{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.287264pt;}
.ls6d{letter-spacing:-1.274827pt;}
.ls66{letter-spacing:-1.181547pt;}
.ls73{letter-spacing:-1.173333pt;}
.ls8b{letter-spacing:-1.152000pt;}
.ls6e{letter-spacing:-1.147344pt;}
.ls57{letter-spacing:-1.119360pt;}
.ls2e{letter-spacing:-1.056000pt;}
.ls58{letter-spacing:-1.007424pt;}
.ls3d{letter-spacing:-0.997333pt;}
.ls68{letter-spacing:-0.994987pt;}
.ls87{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.938667pt;}
.ls24{letter-spacing:-0.906667pt;}
.ls46{letter-spacing:-0.880000pt;}
.ls83{letter-spacing:-0.864000pt;}
.ls75{letter-spacing:-0.853333pt;}
.ls63{letter-spacing:-0.839520pt;}
.ls7e{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.762667pt;}
.ls64{letter-spacing:-0.755568pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls4d{letter-spacing:-0.684053pt;}
.ls65{letter-spacing:-0.672000pt;}
.ls20{letter-spacing:-0.645333pt;}
.ls7d{letter-spacing:-0.624000pt;}
.ls50{letter-spacing:-0.615648pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls4a{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls85{letter-spacing:-0.432000pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.410667pt;}
.ls69{letter-spacing:-0.391776pt;}
.ls23{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.352000pt;}
.ls81{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.293333pt;}
.ls86{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls59{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.234667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls54{letter-spacing:-0.155467pt;}
.ls26{letter-spacing:-0.144000pt;}
.ls56{letter-spacing:-0.139920pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls27{letter-spacing:-0.106667pt;}
.ls88{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:-0.085333pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls5a{letter-spacing:-0.048000pt;}
.ls4f{letter-spacing:-0.034203pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.055968pt;}
.ls37{letter-spacing:0.058667pt;}
.ls62{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls6b{letter-spacing:0.144000pt;}
.ls40{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.176000pt;}
.ls82{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.234667pt;}
.ls51{letter-spacing:0.240000pt;}
.ls48{letter-spacing:0.266667pt;}
.ls5c{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.298667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.352000pt;}
.ls8f{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.410667pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.432000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.503712pt;}
.ls7c{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.586667pt;}
.ls5b{letter-spacing:0.624000pt;}
.ls5e{letter-spacing:0.640000pt;}
.ls78{letter-spacing:0.643632pt;}
.ls21{letter-spacing:0.662400pt;}
.ls8c{letter-spacing:0.672000pt;}
.ls2{letter-spacing:0.682667pt;}
.ls7a{letter-spacing:0.704000pt;}
.ls61{letter-spacing:0.720000pt;}
.ls67{letter-spacing:0.768000pt;}
.ls76{letter-spacing:0.777333pt;}
.ls49{letter-spacing:0.811200pt;}
.ls7f{letter-spacing:0.816000pt;}
.ls6a{letter-spacing:0.864000pt;}
.ls18{letter-spacing:0.880000pt;}
.ls47{letter-spacing:1.013333pt;}
.ls7b{letter-spacing:1.056000pt;}
.lsb{letter-spacing:1.226667pt;}
.ls3e{letter-spacing:1.232000pt;}
.ls80{letter-spacing:1.296000pt;}
.ls72{letter-spacing:1.302400pt;}
.ls4b{letter-spacing:1.392000pt;}
.ls3{letter-spacing:1.408000pt;}
.ls9{letter-spacing:1.536000pt;}
.ls84{letter-spacing:1.728000pt;}
.ls4c{letter-spacing:1.872000pt;}
.ls7{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.757333pt;}
.ls43{letter-spacing:12.000000pt;}
.ls5d{letter-spacing:12.096000pt;}
.ws1b0{word-spacing:-16.709333pt;}
.ws198{word-spacing:-15.546667pt;}
.ws1ad{word-spacing:-15.370667pt;}
.ws199{word-spacing:-15.077333pt;}
.ws61{word-spacing:-14.901333pt;}
.ws1b{word-spacing:-14.784000pt;}
.ws7b{word-spacing:-14.666667pt;}
.ws1ac{word-spacing:-14.608000pt;}
.ws3{word-spacing:-14.560000pt;}
.ws7a{word-spacing:-14.549333pt;}
.ws1a2{word-spacing:-14.373333pt;}
.ws13d{word-spacing:-14.346667pt;}
.wse0{word-spacing:-14.314667pt;}
.ws1{word-spacing:-13.920000pt;}
.ws5f{word-spacing:-13.760000pt;}
.wse1{word-spacing:-13.728000pt;}
.ws5e{word-spacing:-13.653333pt;}
.ws60{word-spacing:-13.440000pt;}
.ws19f{word-spacing:-13.386667pt;}
.ws1a3{word-spacing:-13.333333pt;}
.ws1b2{word-spacing:-13.296000pt;}
.ws19a{word-spacing:-13.226667pt;}
.ws2{word-spacing:-13.066667pt;}
.ws1ae{word-spacing:-13.056000pt;}
.ws1d5{word-spacing:-12.864000pt;}
.ws1be{word-spacing:-12.672000pt;}
.ws92{word-spacing:-12.576000pt;}
.ws1b3{word-spacing:-12.528000pt;}
.ws1bb{word-spacing:-12.480000pt;}
.ws1d8{word-spacing:-12.432000pt;}
.ws1d6{word-spacing:-12.384000pt;}
.wse2{word-spacing:-12.378667pt;}
.ws16d{word-spacing:-12.288000pt;}
.ws1bf{word-spacing:-12.240000pt;}
.ws1b5{word-spacing:-12.192000pt;}
.ws1b8{word-spacing:-12.144000pt;}
.wse3{word-spacing:-12.026667pt;}
.ws1ba{word-spacing:-11.904000pt;}
.ws1bc{word-spacing:-11.856000pt;}
.ws1b1{word-spacing:-11.808000pt;}
.ws1d7{word-spacing:-11.760000pt;}
.ws1b4{word-spacing:-11.664000pt;}
.ws1b9{word-spacing:-11.568000pt;}
.wse5{word-spacing:-11.498667pt;}
.ws0{word-spacing:-11.349333pt;}
.ws1d4{word-spacing:-11.328000pt;}
.ws1b6{word-spacing:-11.136000pt;}
.ws1b7{word-spacing:-10.944000pt;}
.ws1bd{word-spacing:-10.848000pt;}
.wse4{word-spacing:-10.618667pt;}
.ws1c{word-spacing:-8.550667pt;}
.ws150{word-spacing:-8.516464pt;}
.ws5d{word-spacing:-7.773333pt;}
.ws1a6{word-spacing:-7.639632pt;}
.ws15e{word-spacing:-7.617867pt;}
.ws1d9{word-spacing:-7.499712pt;}
.ws14e{word-spacing:-7.089280pt;}
.ws153{word-spacing:-7.051968pt;}
.ws1d{word-spacing:-6.996000pt;}
.ws17d{word-spacing:-6.933813pt;}
.ws15f{word-spacing:-6.856080pt;}
.ws18b{word-spacing:-6.778347pt;}
.ws165{word-spacing:-6.653973pt;}
.ws18c{word-spacing:-6.604224pt;}
.ws187{word-spacing:-6.591787pt;}
.ws190{word-spacing:-6.498507pt;}
.ws151{word-spacing:-6.380352pt;}
.ws14f{word-spacing:-6.343040pt;}
.ws17e{word-spacing:-6.240432pt;}
.ws166{word-spacing:-5.988576pt;}
.ws172{word-spacing:-5.907733pt;}
.ws191{word-spacing:-5.848656pt;}
.ws152{word-spacing:-5.708736pt;}
.ws173{word-spacing:-5.372928pt;}
.wsd2{word-spacing:-4.165333pt;}
.ws192{word-spacing:-4.106667pt;}
.ws1a9{word-spacing:-4.000000pt;}
.ws1a0{word-spacing:-3.893333pt;}
.ws23{word-spacing:-3.696000pt;}
.ws2c{word-spacing:-3.637333pt;}
.ws7e{word-spacing:-3.578667pt;}
.ws1d1{word-spacing:-3.552000pt;}
.ws7c{word-spacing:-3.520000pt;}
.ws8e{word-spacing:-3.461333pt;}
.ws1cf{word-spacing:-3.456000pt;}
.wscf{word-spacing:-3.413333pt;}
.wsb5{word-spacing:-3.402667pt;}
.wsf{word-spacing:-3.360000pt;}
.ws96{word-spacing:-3.344000pt;}
.wsb8{word-spacing:-3.306667pt;}
.ws117{word-spacing:-3.285333pt;}
.ws118{word-spacing:-3.253333pt;}
.ws115{word-spacing:-3.226667pt;}
.ws95{word-spacing:-3.200000pt;}
.ws6d{word-spacing:-3.168000pt;}
.wsca{word-spacing:-3.109333pt;}
.ws8{word-spacing:-3.093333pt;}
.wse9{word-spacing:-3.050667pt;}
.ws10e{word-spacing:-3.040000pt;}
.ws78{word-spacing:-3.024000pt;}
.ws24{word-spacing:-2.992000pt;}
.wsdc{word-spacing:-2.986667pt;}
.wsa3{word-spacing:-2.976000pt;}
.wsbc{word-spacing:-2.933333pt;}
.ws136{word-spacing:-2.880000pt;}
.ws134{word-spacing:-2.874667pt;}
.wsc1{word-spacing:-2.826667pt;}
.ws116{word-spacing:-2.816000pt;}
.ws1c7{word-spacing:-2.784000pt;}
.wsac{word-spacing:-2.773333pt;}
.wse8{word-spacing:-2.757333pt;}
.ws37{word-spacing:-2.720000pt;}
.ws53{word-spacing:-2.698667pt;}
.ws18d{word-spacing:-2.688000pt;}
.ws32{word-spacing:-2.666667pt;}
.wsea{word-spacing:-2.640000pt;}
.ws176{word-spacing:-2.613333pt;}
.ws13c{word-spacing:-2.581333pt;}
.ws36{word-spacing:-2.560000pt;}
.ws5b{word-spacing:-2.522667pt;}
.ws133{word-spacing:-2.464000pt;}
.ws66{word-spacing:-2.453333pt;}
.wsd3{word-spacing:-2.405333pt;}
.ws91{word-spacing:-2.400000pt;}
.ws1dc{word-spacing:-2.352000pt;}
.ws107{word-spacing:-2.346667pt;}
.ws122{word-spacing:-2.293333pt;}
.wsc9{word-spacing:-2.288000pt;}
.ws49{word-spacing:-2.240000pt;}
.ws7d{word-spacing:-2.229333pt;}
.ws1ca{word-spacing:-2.208000pt;}
.ws4b{word-spacing:-2.186667pt;}
.ws43{word-spacing:-2.170667pt;}
.ws16c{word-spacing:-2.160000pt;}
.wsb4{word-spacing:-2.133333pt;}
.ws22{word-spacing:-2.112000pt;}
.wsdb{word-spacing:-2.080000pt;}
.ws1c6{word-spacing:-2.064000pt;}
.ws25{word-spacing:-2.053333pt;}
.ws12e{word-spacing:-2.026667pt;}
.ws174{word-spacing:-1.994667pt;}
.ws38{word-spacing:-1.973333pt;}
.ws11e{word-spacing:-1.968000pt;}
.ws59{word-spacing:-1.936000pt;}
.ws98{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.877333pt;}
.ws15d{word-spacing:-1.872000pt;}
.wsb0{word-spacing:-1.866667pt;}
.ws77{word-spacing:-1.824000pt;}
.ws72{word-spacing:-1.818667pt;}
.ws12f{word-spacing:-1.813333pt;}
.ws196{word-spacing:-1.776000pt;}
.ws8b{word-spacing:-1.760000pt;}
.ws18e{word-spacing:-1.728000pt;}
.wsd4{word-spacing:-1.701333pt;}
.ws147{word-spacing:-1.680000pt;}
.ws97{word-spacing:-1.653333pt;}
.wsd9{word-spacing:-1.642667pt;}
.wsc0{word-spacing:-1.600000pt;}
.wsbe{word-spacing:-1.584000pt;}
.ws99{word-spacing:-1.546667pt;}
.ws16b{word-spacing:-1.536000pt;}
.ws83{word-spacing:-1.525333pt;}
.ws13f{word-spacing:-1.493333pt;}
.ws11d{word-spacing:-1.488000pt;}
.wsb1{word-spacing:-1.466667pt;}
.ws119{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.408000pt;}
.ws128{word-spacing:-1.386667pt;}
.ws8f{word-spacing:-1.349333pt;}
.wsa4{word-spacing:-1.344000pt;}
.ws35{word-spacing:-1.333333pt;}
.ws197{word-spacing:-1.296000pt;}
.ws8a{word-spacing:-1.290667pt;}
.wsd8{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.237333pt;}
.wsed{word-spacing:-1.232000pt;}
.wsd0{word-spacing:-1.226667pt;}
.wsa5{word-spacing:-1.200000pt;}
.ws4c{word-spacing:-1.173333pt;}
.ws79{word-spacing:-1.152000pt;}
.ws16f{word-spacing:-1.120000pt;}
.wsce{word-spacing:-1.114667pt;}
.ws124{word-spacing:-1.104000pt;}
.ws93{word-spacing:-1.066667pt;}
.ws2a{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.013333pt;}
.wseb{word-spacing:-0.997333pt;}
.wsdd{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.938667pt;}
.ws14d{word-spacing:-0.912000pt;}
.wsd1{word-spacing:-0.906667pt;}
.ws58{word-spacing:-0.880000pt;}
.wsfc{word-spacing:-0.853333pt;}
.ws12c{word-spacing:-0.821333pt;}
.ws106{word-spacing:-0.800000pt;}
.ws125{word-spacing:-0.768000pt;}
.ws89{word-spacing:-0.762667pt;}
.ws6f{word-spacing:-0.746667pt;}
.ws1cc{word-spacing:-0.720000pt;}
.ws54{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.693333pt;}
.ws1cb{word-spacing:-0.672000pt;}
.ws69{word-spacing:-0.645333pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws1c5{word-spacing:-0.624000pt;}
.wsbb{word-spacing:-0.586667pt;}
.ws181{word-spacing:-0.576000pt;}
.ws4a{word-spacing:-0.533333pt;}
.ws2b{word-spacing:-0.528000pt;}
.wsc4{word-spacing:-0.480000pt;}
.wsee{word-spacing:-0.469333pt;}
.ws40{word-spacing:-0.432000pt;}
.ws41{word-spacing:-0.426667pt;}
.ws8d{word-spacing:-0.410667pt;}
.ws1c3{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.373333pt;}
.wsd5{word-spacing:-0.352000pt;}
.ws94{word-spacing:-0.320000pt;}
.ws154{word-spacing:-0.293333pt;}
.wsa7{word-spacing:-0.288000pt;}
.wsc2{word-spacing:-0.266667pt;}
.ws15a{word-spacing:-0.240000pt;}
.ws42{word-spacing:-0.234667pt;}
.ws39{word-spacing:-0.213333pt;}
.wsc5{word-spacing:-0.192000pt;}
.wsaa{word-spacing:-0.176000pt;}
.ws64{word-spacing:-0.160000pt;}
.ws163{word-spacing:-0.144000pt;}
.ws31{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.106667pt;}
.ws1da{word-spacing:-0.096000pt;}
.ws90{word-spacing:-0.058667pt;}
.wsae{word-spacing:-0.053333pt;}
.ws75{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.048000pt;}
.ws11a{word-spacing:0.053333pt;}
.wsb6{word-spacing:0.058667pt;}
.ws5{word-spacing:0.085333pt;}
.ws1ce{word-spacing:0.096000pt;}
.ws1a1{word-spacing:0.106667pt;}
.ws5c{word-spacing:0.117333pt;}
.wsa9{word-spacing:0.144000pt;}
.ws50{word-spacing:0.160000pt;}
.ws47{word-spacing:0.176000pt;}
.wsa8{word-spacing:0.192000pt;}
.wsf9{word-spacing:0.213333pt;}
.ws30{word-spacing:0.234667pt;}
.ws13b{word-spacing:0.266667pt;}
.ws142{word-spacing:0.288000pt;}
.wsc7{word-spacing:0.293333pt;}
.ws1a{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.352000pt;}
.ws121{word-spacing:0.373333pt;}
.ws6c{word-spacing:0.410667pt;}
.wsda{word-spacing:0.426667pt;}
.ws17b{word-spacing:0.432000pt;}
.wsf6{word-spacing:0.469333pt;}
.wsd7{word-spacing:0.480000pt;}
.ws88{word-spacing:0.528000pt;}
.ws51{word-spacing:0.533333pt;}
.ws9{word-spacing:0.586667pt;}
.ws1cd{word-spacing:0.624000pt;}
.ws129{word-spacing:0.640000pt;}
.ws52{word-spacing:0.645333pt;}
.ws186{word-spacing:0.672000pt;}
.ws16{word-spacing:0.693333pt;}
.ws55{word-spacing:0.704000pt;}
.ws11c{word-spacing:0.720000pt;}
.ws4e{word-spacing:0.746667pt;}
.ws26{word-spacing:0.762667pt;}
.ws1c0{word-spacing:0.768000pt;}
.ws19{word-spacing:0.800000pt;}
.ws21{word-spacing:0.821333pt;}
.ws3b{word-spacing:0.853333pt;}
.ws127{word-spacing:0.864000pt;}
.ws2d{word-spacing:0.880000pt;}
.ws138{word-spacing:0.906667pt;}
.ws164{word-spacing:0.912000pt;}
.ws1f{word-spacing:0.938667pt;}
.ws65{word-spacing:0.960000pt;}
.ws28{word-spacing:0.997333pt;}
.ws14c{word-spacing:1.008000pt;}
.wsbd{word-spacing:1.013333pt;}
.ws68{word-spacing:1.056000pt;}
.ws184{word-spacing:1.104000pt;}
.ws81{word-spacing:1.114667pt;}
.ws113{word-spacing:1.120000pt;}
.ws143{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.ws180{word-spacing:1.226667pt;}
.wscc{word-spacing:1.232000pt;}
.ws185{word-spacing:1.248000pt;}
.ws10{word-spacing:1.280000pt;}
.ws44{word-spacing:1.290667pt;}
.ws14{word-spacing:1.333333pt;}
.ws183{word-spacing:1.344000pt;}
.ws29{word-spacing:1.349333pt;}
.ws11b{word-spacing:1.386667pt;}
.wsdf{word-spacing:1.408000pt;}
.ws71{word-spacing:1.440000pt;}
.ws16e{word-spacing:1.466667pt;}
.ws17c{word-spacing:1.488000pt;}
.ws4d{word-spacing:1.493333pt;}
.wsb2{word-spacing:1.525333pt;}
.wsa0{word-spacing:1.536000pt;}
.wsb9{word-spacing:1.546667pt;}
.wsc6{word-spacing:1.584000pt;}
.ws132{word-spacing:1.600000pt;}
.ws1ab{word-spacing:1.632000pt;}
.ws56{word-spacing:1.642667pt;}
.wsbf{word-spacing:1.701333pt;}
.ws140{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.760000pt;}
.ws16a{word-spacing:1.776000pt;}
.ws63{word-spacing:1.813333pt;}
.ws178{word-spacing:1.818667pt;}
.ws156{word-spacing:1.824000pt;}
.wsfa{word-spacing:1.866667pt;}
.ws74{word-spacing:1.872000pt;}
.ws10b{word-spacing:1.877333pt;}
.ws67{word-spacing:1.920000pt;}
.ws10d{word-spacing:1.936000pt;}
.wsa6{word-spacing:1.968000pt;}
.wsad{word-spacing:1.973333pt;}
.ws84{word-spacing:1.994667pt;}
.ws195{word-spacing:2.016000pt;}
.ws70{word-spacing:2.026667pt;}
.wsf0{word-spacing:2.053333pt;}
.ws1d2{word-spacing:2.064000pt;}
.ws20{word-spacing:2.112000pt;}
.wsc3{word-spacing:2.133333pt;}
.ws144{word-spacing:2.160000pt;}
.ws6b{word-spacing:2.170667pt;}
.ws168{word-spacing:2.186667pt;}
.wscd{word-spacing:2.229333pt;}
.wse{word-spacing:2.240000pt;}
.ws82{word-spacing:2.288000pt;}
.ws13e{word-spacing:2.293333pt;}
.ws157{word-spacing:2.304000pt;}
.ws3c{word-spacing:2.346667pt;}
.ws112{word-spacing:2.400000pt;}
.ws101{word-spacing:2.405333pt;}
.wsa1{word-spacing:2.448000pt;}
.ws114{word-spacing:2.453333pt;}
.wse7{word-spacing:2.464000pt;}
.ws109{word-spacing:2.506667pt;}
.ws161{word-spacing:2.522667pt;}
.ws33{word-spacing:2.560000pt;}
.wsf3{word-spacing:2.581333pt;}
.ws9f{word-spacing:2.592000pt;}
.ws108{word-spacing:2.613333pt;}
.wsef{word-spacing:2.640000pt;}
.ws193{word-spacing:2.666667pt;}
.ws110{word-spacing:2.698667pt;}
.wsb3{word-spacing:2.720000pt;}
.ws159{word-spacing:2.736000pt;}
.ws17f{word-spacing:2.757333pt;}
.ws102{word-spacing:2.773333pt;}
.ws123{word-spacing:2.784000pt;}
.ws57{word-spacing:2.816000pt;}
.ws3f{word-spacing:2.826667pt;}
.ws87{word-spacing:2.874667pt;}
.wsfe{word-spacing:2.880000pt;}
.ws158{word-spacing:2.928000pt;}
.ws3a{word-spacing:2.933333pt;}
.wsaf{word-spacing:2.986667pt;}
.ws9b{word-spacing:2.992000pt;}
.ws1c4{word-spacing:3.024000pt;}
.ws62{word-spacing:3.040000pt;}
.ws85{word-spacing:3.050667pt;}
.ws1d3{word-spacing:3.072000pt;}
.ws135{word-spacing:3.093333pt;}
.ws100{word-spacing:3.109333pt;}
.ws148{word-spacing:3.120000pt;}
.ws13{word-spacing:3.146667pt;}
.ws7f{word-spacing:3.168000pt;}
.ws120{word-spacing:3.200000pt;}
.ws126{word-spacing:3.216000pt;}
.ws10f{word-spacing:3.226667pt;}
.ws1c8{word-spacing:3.264000pt;}
.ws10a{word-spacing:3.285333pt;}
.ws1a7{word-spacing:3.306667pt;}
.ws2e{word-spacing:3.344000pt;}
.ws86{word-spacing:3.402667pt;}
.ws7{word-spacing:3.413333pt;}
.ws131{word-spacing:3.461333pt;}
.wsc{word-spacing:3.466667pt;}
.ws45{word-spacing:3.520000pt;}
.ws1db{word-spacing:3.552000pt;}
.ws48{word-spacing:3.573333pt;}
.wscb{word-spacing:3.578667pt;}
.ws11f{word-spacing:3.600000pt;}
.ws1a8{word-spacing:3.626667pt;}
.ws9e{word-spacing:3.637333pt;}
.ws137{word-spacing:3.680000pt;}
.ws27{word-spacing:3.696000pt;}
.ws1d0{word-spacing:3.744000pt;}
.ws9c{word-spacing:3.754667pt;}
.ws175{word-spacing:3.813333pt;}
.ws18a{word-spacing:3.840000pt;}
.ws10c{word-spacing:3.872000pt;}
.ws6e{word-spacing:3.893333pt;}
.wsf4{word-spacing:3.930667pt;}
.ws146{word-spacing:3.946667pt;}
.ws155{word-spacing:3.989333pt;}
.wsde{word-spacing:4.000000pt;}
.wsec{word-spacing:4.048000pt;}
.ws105{word-spacing:4.106667pt;}
.ws15b{word-spacing:4.128000pt;}
.ws104{word-spacing:4.160000pt;}
.ws12b{word-spacing:4.165333pt;}
.ws12d{word-spacing:4.213333pt;}
.ws1e{word-spacing:4.224000pt;}
.wsf8{word-spacing:4.266667pt;}
.ws162{word-spacing:4.272000pt;}
.wsba{word-spacing:4.282667pt;}
.ws19d{word-spacing:4.320000pt;}
.ws46{word-spacing:4.341333pt;}
.ws5a{word-spacing:4.400000pt;}
.ws182{word-spacing:4.416000pt;}
.ws18{word-spacing:4.426667pt;}
.wsf2{word-spacing:4.458667pt;}
.ws141{word-spacing:4.464000pt;}
.ws18f{word-spacing:4.512000pt;}
.wsf7{word-spacing:4.517333pt;}
.ws15c{word-spacing:4.608000pt;}
.ws1a4{word-spacing:4.640000pt;}
.ws103{word-spacing:4.693333pt;}
.ws9a{word-spacing:4.746667pt;}
.ws19e{word-spacing:4.752000pt;}
.ws130{word-spacing:4.800000pt;}
.ws80{word-spacing:4.810667pt;}
.ws169{word-spacing:4.848000pt;}
.wsab{word-spacing:4.853333pt;}
.ws13a{word-spacing:4.869333pt;}
.ws76{word-spacing:4.896000pt;}
.ws145{word-spacing:4.928000pt;}
.ws1c9{word-spacing:4.992000pt;}
.ws194{word-spacing:5.045333pt;}
.ws1a5{word-spacing:5.066667pt;}
.wsd6{word-spacing:5.120000pt;}
.ws177{word-spacing:5.221333pt;}
.ws73{word-spacing:5.232000pt;}
.wsfd{word-spacing:5.280000pt;}
.ws1af{word-spacing:5.338667pt;}
.ws179{word-spacing:5.376000pt;}
.ws111{word-spacing:5.386667pt;}
.ws1aa{word-spacing:5.397333pt;}
.ws1c1{word-spacing:5.424000pt;}
.ws139{word-spacing:5.514667pt;}
.ws14a{word-spacing:5.520000pt;}
.ws2f{word-spacing:5.573333pt;}
.ws19c{word-spacing:5.600000pt;}
.ws167{word-spacing:5.632000pt;}
.ws12{word-spacing:5.653333pt;}
.wse6{word-spacing:5.690667pt;}
.ws160{word-spacing:5.749333pt;}
.wsf5{word-spacing:5.808000pt;}
.wsb{word-spacing:5.866667pt;}
.ws14b{word-spacing:6.000000pt;}
.ws9d{word-spacing:6.042667pt;}
.ws17a{word-spacing:6.096000pt;}
.ws170{word-spacing:6.160000pt;}
.ws188{word-spacing:6.186667pt;}
.wsb7{word-spacing:6.277333pt;}
.ws19b{word-spacing:6.293333pt;}
.ws171{word-spacing:6.394667pt;}
.ws15{word-spacing:6.666667pt;}
.wsff{word-spacing:6.688000pt;}
.wsc8{word-spacing:6.746667pt;}
.ws189{word-spacing:6.805333pt;}
.ws1c2{word-spacing:6.864000pt;}
.wsfb{word-spacing:6.981333pt;}
.ws12a{word-spacing:7.333333pt;}
.ws149{word-spacing:12.000000pt;}
._3{margin-left:-6.391467pt;}
._8{margin-left:-4.954667pt;}
._9{margin-left:-3.753600pt;}
._2{margin-left:-2.841600pt;}
._a{margin-left:-1.894400pt;}
._5{margin-left:-0.985600pt;}
._0{width:0.913067pt;}
._1{width:2.107733pt;}
._6{width:3.558400pt;}
._7{width:4.485333pt;}
._f{width:5.468267pt;}
._c{width:6.768000pt;}
._13{width:7.859573pt;}
._d{width:9.408000pt;}
._11{width:11.280000pt;}
._12{width:13.801664pt;}
._e{width:14.866667pt;}
._10{width:56.542933pt;}
._b{width:59.128000pt;}
._4{width:87.586133pt;}
.fs5{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:111.497333pt;}
.y323{bottom:111.498667pt;}
.y2c2{bottom:111.500000pt;}
.y38d{bottom:111.500133pt;}
.y209{bottom:111.501333pt;}
.yee{bottom:111.502667pt;}
.y398{bottom:111.504000pt;}
.y34d{bottom:111.504133pt;}
.y225{bottom:111.505333pt;}
.y9e{bottom:111.506667pt;}
.y3{bottom:111.507333pt;}
.y168{bottom:111.780400pt;}
.y1a6{bottom:111.822933pt;}
.y42b{bottom:112.238133pt;}
.y263{bottom:112.270400pt;}
.y3f4{bottom:112.537200pt;}
.y24a{bottom:112.591867pt;}
.y1e4{bottom:112.762667pt;}
.y376{bottom:112.793600pt;}
.y110{bottom:112.925333pt;}
.y16b{bottom:113.036000pt;}
.y76{bottom:113.353733pt;}
.y14b{bottom:114.910933pt;}
.y3b9{bottom:116.020400pt;}
.y3d9{bottom:116.589467pt;}
.y18f{bottom:116.727200pt;}
.y1cb{bottom:116.947733pt;}
.yc9{bottom:117.021200pt;}
.y479{bottom:118.399467pt;}
.y283{bottom:119.315067pt;}
.y29c{bottom:120.784667pt;}
.y2{bottom:123.507333pt;}
.y40f{bottom:124.791333pt;}
.y322{bottom:124.830667pt;}
.y2c1{bottom:124.832000pt;}
.y38c{bottom:124.832133pt;}
.y208{bottom:124.833333pt;}
.yed{bottom:124.834667pt;}
.y397{bottom:124.836000pt;}
.y34c{bottom:124.836133pt;}
.y224{bottom:124.837333pt;}
.y9d{bottom:124.838667pt;}
.y3f3{bottom:127.203867pt;}
.y167{bottom:127.781733pt;}
.y1a5{bottom:127.824267pt;}
.y42a{bottom:128.239467pt;}
.y262{bottom:128.271733pt;}
.y249{bottom:128.593200pt;}
.y1e3{bottom:128.764000pt;}
.y375{bottom:128.794933pt;}
.y4a{bottom:128.825333pt;}
.y10f{bottom:128.926667pt;}
.y16a{bottom:129.037333pt;}
.y75{bottom:129.355067pt;}
.y14a{bottom:129.577600pt;}
.y18e{bottom:131.393867pt;}
.y1ca{bottom:131.614400pt;}
.yc8{bottom:131.687867pt;}
.y3b8{bottom:132.021733pt;}
.y3d8{bottom:132.590800pt;}
.y478{bottom:133.063467pt;}
.y282{bottom:135.316400pt;}
.y29b{bottom:136.786000pt;}
.y321{bottom:138.162667pt;}
.y2c0{bottom:138.164000pt;}
.y38b{bottom:138.164133pt;}
.y207{bottom:138.165333pt;}
.yec{bottom:138.166667pt;}
.y2ee{bottom:138.168000pt;}
.y34b{bottom:138.168133pt;}
.y223{bottom:138.169333pt;}
.y9c{bottom:138.170667pt;}
.y40e{bottom:140.792667pt;}
.y3f2{bottom:141.870533pt;}
.y166{bottom:143.783067pt;}
.y429{bottom:144.240800pt;}
.y261{bottom:144.273067pt;}
.y248{bottom:144.594533pt;}
.y1e2{bottom:144.765333pt;}
.y374{bottom:144.796267pt;}
.y169{bottom:145.038667pt;}
.y74{bottom:145.356400pt;}
.y18d{bottom:146.060533pt;}
.y1c9{bottom:146.281067pt;}
.y3b7{bottom:148.023067pt;}
.y281{bottom:151.317733pt;}
.y206{bottom:151.497333pt;}
.yeb{bottom:151.498667pt;}
.y2ed{bottom:151.500000pt;}
.y34a{bottom:151.500133pt;}
.y222{bottom:151.501333pt;}
.y9b{bottom:151.502667pt;}
.y477{bottom:152.647467pt;}
.y29a{bottom:152.787333pt;}
.y2bf{bottom:155.492000pt;}
.y38a{bottom:155.492133pt;}
.y3f1{bottom:156.537200pt;}
.y40d{bottom:156.794000pt;}
.y10e{bottom:157.399067pt;}
.y1a4{bottom:157.808533pt;}
.y149{bottom:158.976400pt;}
.y428{bottom:160.242133pt;}
.y260{bottom:160.274400pt;}
.y247{bottom:160.595867pt;}
.y18c{bottom:160.727200pt;}
.y1e1{bottom:160.766667pt;}
.y1c8{bottom:160.947733pt;}
.yc7{bottom:161.040000pt;}
.y73{bottom:161.357733pt;}
.y3d7{bottom:163.330933pt;}
.y3b6{bottom:164.024400pt;}
.y44f{bottom:164.829333pt;}
.yea{bottom:164.830667pt;}
.y2d7{bottom:164.832000pt;}
.y349{bottom:164.832133pt;}
.y221{bottom:164.833333pt;}
.y9a{bottom:164.834667pt;}
.y280{bottom:167.319067pt;}
.y299{bottom:168.788667pt;}
.y205{bottom:168.825333pt;}
.y3f0{bottom:171.203867pt;}
.y10d{bottom:172.065733pt;}
.y476{bottom:172.231467pt;}
.y1a3{bottom:172.475200pt;}
.y40c{bottom:172.795333pt;}
.y165{bottom:174.145333pt;}
.y148{bottom:174.977733pt;}
.y18b{bottom:175.393867pt;}
.y373{bottom:175.536533pt;}
.y1c7{bottom:175.614400pt;}
.y427{bottom:176.243467pt;}
.y25f{bottom:176.275733pt;}
.y246{bottom:176.597200pt;}
.y1e0{bottom:176.768000pt;}
.yc6{bottom:177.041333pt;}
.y72{bottom:177.359067pt;}
.y3d6{bottom:177.997600pt;}
.y2d6{bottom:178.164000pt;}
.y348{bottom:178.164133pt;}
.y220{bottom:178.165333pt;}
.y99{bottom:178.166667pt;}
.y3b5{bottom:180.025733pt;}
.ye9{bottom:182.158667pt;}
.y27f{bottom:183.320400pt;}
.y298{bottom:184.790000pt;}
.y43e{bottom:186.060533pt;}
.y49{bottom:186.658933pt;}
.y10c{bottom:186.732400pt;}
.y475{bottom:186.895467pt;}
.y1a2{bottom:187.141867pt;}
.y40b{bottom:188.796667pt;}
.y164{bottom:188.812000pt;}
.y18a{bottom:190.060533pt;}
.y372{bottom:190.203200pt;}
.y1c6{bottom:190.281067pt;}
.y147{bottom:190.979067pt;}
.y2d5{bottom:191.496000pt;}
.y21f{bottom:191.497333pt;}
.y98{bottom:191.498667pt;}
.ye8{bottom:191.502667pt;}
.y426{bottom:192.244800pt;}
.y25e{bottom:192.277067pt;}
.y245{bottom:192.598533pt;}
.y3d5{bottom:192.664267pt;}
.y1df{bottom:192.769333pt;}
.yc5{bottom:193.042667pt;}
.y71{bottom:193.360400pt;}
.y2ec{bottom:195.492000pt;}
.y3b4{bottom:196.027067pt;}
.y3ef{bottom:199.093467pt;}
.y320{bottom:200.332000pt;}
.y43d{bottom:200.727200pt;}
.y297{bottom:200.791333pt;}
.y48{bottom:201.325600pt;}
.y10b{bottom:201.399067pt;}
.y1a1{bottom:201.808533pt;}
.y163{bottom:203.478667pt;}
.y189{bottom:204.727200pt;}
.y40a{bottom:204.798000pt;}
.y97{bottom:204.830667pt;}
.ye7{bottom:204.834667pt;}
.y371{bottom:204.869867pt;}
.y1c5{bottom:204.947733pt;}
.y474{bottom:206.479467pt;}
.y146{bottom:206.980400pt;}
.y3d4{bottom:207.330933pt;}
.y25d{bottom:208.278400pt;}
.y244{bottom:208.599867pt;}
.y21e{bottom:208.825333pt;}
.yc4{bottom:209.044000pt;}
.y70{bottom:209.361733pt;}
.y3b3{bottom:212.028400pt;}
.y337{bottom:212.727200pt;}
.y27e{bottom:214.060533pt;}
.y3ee{bottom:215.094800pt;}
.y43c{bottom:215.393867pt;}
.y47{bottom:215.992267pt;}
.y10a{bottom:216.065733pt;}
.y31f{bottom:216.333333pt;}
.y1a0{bottom:216.475200pt;}
.y296{bottom:216.792667pt;}
.y2be{bottom:218.060533pt;}
.y162{bottom:218.145333pt;}
.ye6{bottom:218.166667pt;}
.y188{bottom:219.393867pt;}
.y370{bottom:219.536533pt;}
.y425{bottom:219.583467pt;}
.y409{bottom:220.799333pt;}
.y473{bottom:221.143467pt;}
.y3d3{bottom:221.997600pt;}
.y96{bottom:222.158667pt;}
.y145{bottom:222.981733pt;}
.y1de{bottom:223.509467pt;}
.y243{bottom:224.601200pt;}
.yc3{bottom:225.045333pt;}
.y6f{bottom:225.363067pt;}
.y336{bottom:227.393867pt;}
.y3b2{bottom:228.029733pt;}
.y27d{bottom:228.727200pt;}
.y204{bottom:230.060533pt;}
.y46{bottom:230.658933pt;}
.y3ed{bottom:231.096133pt;}
.y19f{bottom:231.141867pt;}
.ye5{bottom:231.498667pt;}
.y389{bottom:231.813600pt;}
.y31e{bottom:232.334667pt;}
.y2bd{bottom:232.727200pt;}
.y295{bottom:232.794000pt;}
.y161{bottom:232.812000pt;}
.y187{bottom:234.060533pt;}
.y12e{bottom:234.132667pt;}
.y36f{bottom:234.203200pt;}
.y424{bottom:234.250133pt;}
.y1c4{bottom:234.323867pt;}
.y1{bottom:235.152267pt;}
.y25c{bottom:235.616933pt;}
.y44e{bottom:236.436400pt;}
.y408{bottom:236.800667pt;}
.y1dd{bottom:238.176133pt;}
.y144{bottom:238.983067pt;}
.y242{bottom:240.599867pt;}
.y472{bottom:240.727467pt;}
.y2fe{bottom:240.917200pt;}
.yc2{bottom:241.046667pt;}
.y6e{bottom:241.364400pt;}
.y21{bottom:241.487733pt;}
.y335{bottom:242.060533pt;}
.y109{bottom:243.199600pt;}
.y27c{bottom:243.393867pt;}
.y3b1{bottom:244.031067pt;}
.y203{bottom:244.727200pt;}
.ye4{bottom:244.830667pt;}
.y45{bottom:245.325600pt;}
.y19e{bottom:245.808533pt;}
.y3ec{bottom:247.097467pt;}
.y2bc{bottom:247.393867pt;}
.y160{bottom:247.478667pt;}
.y388{bottom:247.814933pt;}
.y31d{bottom:248.336000pt;}
.y294{bottom:248.795333pt;}
.y423{bottom:248.916800pt;}
.y12d{bottom:250.134000pt;}
.y25b{bottom:250.283600pt;}
.y1c3{bottom:250.325200pt;}
.y3d2{bottom:251.404400pt;}
.y44d{bottom:252.437733pt;}
.y1dc{bottom:252.842800pt;}
.y365{bottom:254.257067pt;}
.y143{bottom:254.984400pt;}
.y20{bottom:256.154400pt;}
.y241{bottom:256.601200pt;}
.y334{bottom:256.727200pt;}
.y2fd{bottom:256.918533pt;}
.yc1{bottom:257.048000pt;}
.y6d{bottom:257.365733pt;}
.y27b{bottom:258.060533pt;}
.y21d{bottom:258.162667pt;}
.y108{bottom:259.200933pt;}
.y202{bottom:259.393867pt;}
.y44{bottom:259.992267pt;}
.y3b0{bottom:260.032400pt;}
.y471{bottom:260.311467pt;}
.y2bb{bottom:262.060533pt;}
.y15f{bottom:262.145333pt;}
.ye3{bottom:262.158667pt;}
.y3eb{bottom:263.098800pt;}
.y186{bottom:263.455333pt;}
.y422{bottom:263.583467pt;}
.y36e{bottom:263.588667pt;}
.y387{bottom:263.816267pt;}
.y31c{bottom:264.337333pt;}
.y293{bottom:264.796667pt;}
.y25a{bottom:264.950267pt;}
.y1c2{bottom:266.326533pt;}
.y3d1{bottom:267.399067pt;}
.y1db{bottom:267.509467pt;}
.y407{bottom:267.540800pt;}
.y44c{bottom:268.439067pt;}
.y364{bottom:270.258400pt;}
.y2d4{bottom:271.319067pt;}
.y333{bottom:271.393867pt;}
.y240{bottom:272.597200pt;}
.y27a{bottom:272.727200pt;}
.y2fc{bottom:272.919867pt;}
.yc0{bottom:273.049333pt;}
.y6c{bottom:273.367067pt;}
.y201{bottom:274.060533pt;}
.y19d{bottom:274.455467pt;}
.y43{bottom:274.658933pt;}
.y470{bottom:274.975467pt;}
.y107{bottom:275.202267pt;}
.y1f{bottom:275.354400pt;}
.y347{bottom:275.536400pt;}
.y30c{bottom:275.687867pt;}
.y3af{bottom:276.033733pt;}
.y2ba{bottom:276.727200pt;}
.y15e{bottom:276.812000pt;}
.y421{bottom:278.250133pt;}
.y185{bottom:279.456667pt;}
.y36d{bottom:279.590000pt;}
.y259{bottom:279.616933pt;}
.y386{bottom:279.817600pt;}
.y31b{bottom:280.338667pt;}
.y292{bottom:280.798000pt;}
.y12c{bottom:280.874133pt;}
.y1da{bottom:282.176133pt;}
.y406{bottom:282.207467pt;}
.y1c1{bottom:282.327867pt;}
.y3d0{bottom:283.400400pt;}
.y44b{bottom:284.440400pt;}
.y142{bottom:285.724533pt;}
.y95{bottom:285.838133pt;}
.y332{bottom:286.060533pt;}
.y363{bottom:286.259733pt;}
.y2d3{bottom:287.320400pt;}
.y279{bottom:287.393867pt;}
.y23f{bottom:288.598533pt;}
.y200{bottom:288.727200pt;}
.ybf{bottom:289.050667pt;}
.y42{bottom:289.325600pt;}
.y6b{bottom:289.368400pt;}
.y1e{bottom:290.021067pt;}
.y346{bottom:290.203067pt;}
.y30b{bottom:290.354533pt;}
.y19c{bottom:290.456800pt;}
.y106{bottom:291.203600pt;}
.y2b9{bottom:291.393867pt;}
.y15d{bottom:291.478667pt;}
.y3ae{bottom:292.035067pt;}
.y3ea{bottom:292.327200pt;}
.y420{bottom:292.916800pt;}
.y258{bottom:294.283600pt;}
.y46f{bottom:294.559467pt;}
.y184{bottom:295.458000pt;}
.y12b{bottom:295.540800pt;}
.y36c{bottom:295.591333pt;}
.y385{bottom:295.818933pt;}
.y31a{bottom:296.340000pt;}
.y291{bottom:296.799333pt;}
.y1d9{bottom:296.842800pt;}
.y405{bottom:296.874133pt;}
.y1c0{bottom:298.329200pt;}
.y3cf{bottom:299.401733pt;}
.y141{bottom:300.391200pt;}
.y44a{bottom:300.441733pt;}
.y94{bottom:301.839467pt;}
.y278{bottom:302.060533pt;}
.y362{bottom:302.261067pt;}
.y1ff{bottom:303.393867pt;}
.y41{bottom:303.992267pt;}
.y23e{bottom:304.599867pt;}
.y1d{bottom:304.687733pt;}
.y345{bottom:304.869733pt;}
.y30a{bottom:305.021200pt;}
.ybe{bottom:305.052000pt;}
.y2fb{bottom:305.553200pt;}
.y2b8{bottom:306.060533pt;}
.y15c{bottom:306.145333pt;}
.y19b{bottom:306.458133pt;}
.y3e9{bottom:306.993867pt;}
.y105{bottom:307.204933pt;}
.y41f{bottom:307.583467pt;}
.y46e{bottom:309.223467pt;}
.y12a{bottom:310.207467pt;}
.y183{bottom:311.459333pt;}
.y1d8{bottom:311.509467pt;}
.y404{bottom:311.540800pt;}
.y36b{bottom:311.592667pt;}
.y384{bottom:311.820267pt;}
.y319{bottom:312.341333pt;}
.y290{bottom:312.800667pt;}
.y1bf{bottom:314.330533pt;}
.y140{bottom:315.057867pt;}
.y3ce{bottom:315.403067pt;}
.y396{bottom:315.463333pt;}
.y331{bottom:315.464667pt;}
.y449{bottom:316.443067pt;}
.y6a{bottom:316.706933pt;}
.y277{bottom:316.727200pt;}
.y93{bottom:317.840800pt;}
.y1fe{bottom:318.060533pt;}
.y43b{bottom:318.127333pt;}
.y361{bottom:318.262400pt;}
.y40{bottom:318.658933pt;}
.y1c{bottom:319.354400pt;}
.y3ad{bottom:319.373600pt;}
.y344{bottom:319.536400pt;}
.y309{bottom:319.687867pt;}
.y257{bottom:320.284933pt;}
.y23d{bottom:320.601200pt;}
.y2b7{bottom:320.727200pt;}
.y15b{bottom:320.812000pt;}
.ybd{bottom:321.053333pt;}
.y3e8{bottom:321.660533pt;}
.y41e{bottom:322.250133pt;}
.y19a{bottom:322.459467pt;}
.ye2{bottom:324.490133pt;}
.y129{bottom:324.874133pt;}
.y1d7{bottom:326.176133pt;}
.y403{bottom:326.207467pt;}
.y182{bottom:327.460667pt;}
.y36a{bottom:327.594000pt;}
.y383{bottom:327.821600pt;}
.y318{bottom:328.342667pt;}
.y46d{bottom:328.807467pt;}
.y13f{bottom:329.724533pt;}
.y1be{bottom:330.331867pt;}
.y69{bottom:331.373600pt;}
.y3cd{bottom:331.404400pt;}
.y395{bottom:331.464667pt;}
.y330{bottom:331.466000pt;}
.y448{bottom:332.444400pt;}
.y1fd{bottom:332.727200pt;}
.y3f{bottom:333.325600pt;}
.y1b{bottom:334.021067pt;}
.y3ac{bottom:334.040267pt;}
.y43a{bottom:334.128667pt;}
.y343{bottom:334.203067pt;}
.y360{bottom:334.263733pt;}
.y308{bottom:334.354533pt;}
.y2b6{bottom:335.393867pt;}
.y15a{bottom:335.478667pt;}
.y104{bottom:335.677333pt;}
.y256{bottom:336.286267pt;}
.y3e7{bottom:336.327200pt;}
.y23c{bottom:336.589467pt;}
.ybc{bottom:337.054667pt;}
.y128{bottom:339.540800pt;}
.ye1{bottom:340.491467pt;}
.y1d6{bottom:340.842800pt;}
.y402{bottom:340.874133pt;}
.y2eb{bottom:342.130000pt;}
.y181{bottom:343.462000pt;}
.y46c{bottom:343.471467pt;}
.y28f{bottom:343.540800pt;}
.y369{bottom:343.595333pt;}
.y317{bottom:344.344000pt;}
.y13e{bottom:344.391200pt;}
.y68{bottom:346.040267pt;}
.y276{bottom:346.132667pt;}
.y1bd{bottom:346.333200pt;}
.y1fc{bottom:347.393867pt;}
.y394{bottom:347.466000pt;}
.y32f{bottom:347.467333pt;}
.y3e{bottom:347.992267pt;}
.y41d{bottom:348.251333pt;}
.y92{bottom:348.581067pt;}
.y1a{bottom:348.687733pt;}
.y3ab{bottom:348.706933pt;}
.y342{bottom:348.869733pt;}
.y307{bottom:349.021200pt;}
.y439{bottom:350.130000pt;}
.y159{bottom:350.145333pt;}
.y35f{bottom:350.265067pt;}
.y103{bottom:350.344000pt;}
.y3e6{bottom:350.993867pt;}
.y21c{bottom:351.540800pt;}
.y255{bottom:352.287600pt;}
.y199{bottom:352.443733pt;}
.y23b{bottom:352.590800pt;}
.y2fa{bottom:352.926533pt;}
.ybb{bottom:353.056000pt;}
.y127{bottom:354.207467pt;}
.y1d5{bottom:355.509467pt;}
.y401{bottom:355.540800pt;}
.ye0{bottom:356.492800pt;}
.y2ea{bottom:358.131333pt;}
.y28e{bottom:358.207467pt;}
.y382{bottom:358.561733pt;}
.y13d{bottom:359.057867pt;}
.y180{bottom:359.463333pt;}
.y368{bottom:359.596667pt;}
.y67{bottom:360.706933pt;}
.y1fb{bottom:362.060533pt;}
.y275{bottom:362.134000pt;}
.y1bc{bottom:362.334533pt;}
.y3d{bottom:362.658933pt;}
.y46b{bottom:363.055467pt;}
.y447{bottom:363.184533pt;}
.y91{bottom:363.247733pt;}
.y19{bottom:363.354400pt;}
.y3aa{bottom:363.373600pt;}
.y393{bottom:363.467333pt;}
.y341{bottom:363.536400pt;}
.y306{bottom:363.687867pt;}
.y3cc{bottom:364.025733pt;}
.y41c{bottom:364.252667pt;}
.y2b5{bottom:364.794000pt;}
.y158{bottom:364.812000pt;}
.y102{bottom:365.010667pt;}
.y3e5{bottom:365.660533pt;}
.y438{bottom:366.131333pt;}
.y21b{bottom:366.207467pt;}
.y35e{bottom:366.266400pt;}
.y198{bottom:367.110400pt;}
.y254{bottom:368.288933pt;}
.y23a{bottom:368.592133pt;}
.y126{bottom:368.874133pt;}
.y2f9{bottom:368.927867pt;}
.yba{bottom:369.057333pt;}
.y400{bottom:370.207467pt;}
.ydf{bottom:372.494133pt;}
.y28d{bottom:372.874133pt;}
.y381{bottom:373.228400pt;}
.y13c{bottom:373.724533pt;}
.y2e9{bottom:374.132667pt;}
.y316{bottom:375.084133pt;}
.y66{bottom:375.373600pt;}
.y17f{bottom:375.464667pt;}
.y367{bottom:375.598000pt;}
.y1fa{bottom:376.727200pt;}
.y3c{bottom:377.325600pt;}
.y46a{bottom:377.719467pt;}
.y446{bottom:377.851200pt;}
.y90{bottom:377.914400pt;}
.y18{bottom:378.021067pt;}
.y3a9{bottom:378.040267pt;}
.y340{bottom:378.203067pt;}
.y32e{bottom:378.207467pt;}
.y1bb{bottom:378.335867pt;}
.y305{bottom:378.354533pt;}
.y157{bottom:379.478667pt;}
.y101{bottom:379.677333pt;}
.y41b{bottom:380.254000pt;}
.y3e4{bottom:380.327200pt;}
.y2b4{bottom:380.795333pt;}
.y21a{bottom:380.874133pt;}
.y197{bottom:381.777067pt;}
.y437{bottom:382.132667pt;}
.y35d{bottom:382.267733pt;}
.y125{bottom:383.540800pt;}
.y239{bottom:384.593467pt;}
.y3ff{bottom:384.874133pt;}
.y1d4{bottom:384.905733pt;}
.y2f8{bottom:384.929200pt;}
.yb9{bottom:385.058667pt;}
.y28c{bottom:387.540800pt;}
.y380{bottom:387.895067pt;}
.y13b{bottom:388.391200pt;}
.yde{bottom:388.495467pt;}
.y315{bottom:389.750800pt;}
.y65{bottom:390.040267pt;}
.y2e8{bottom:390.124667pt;}
.y2d2{bottom:391.460667pt;}
.y17e{bottom:391.466000pt;}
.y366{bottom:391.599333pt;}
.y3b{bottom:391.992267pt;}
.y445{bottom:392.517867pt;}
.y8f{bottom:392.581067pt;}
.y17{bottom:392.687733pt;}
.y3a8{bottom:392.706933pt;}
.y274{bottom:392.874133pt;}
.y304{bottom:393.021200pt;}
.y156{bottom:394.145333pt;}
.y392{bottom:394.207467pt;}
.y1ba{bottom:394.337200pt;}
.y100{bottom:394.344000pt;}
.y3e3{bottom:394.993867pt;}
.y219{bottom:395.540800pt;}
.y253{bottom:395.627467pt;}
.y41a{bottom:396.255333pt;}
.y196{bottom:396.443733pt;}
.y2b3{bottom:396.796667pt;}
.y469{bottom:397.303467pt;}
.y436{bottom:398.134000pt;}
.y124{bottom:398.207467pt;}
.y35c{bottom:398.269067pt;}
.y3fe{bottom:399.540800pt;}
.y238{bottom:400.594800pt;}
.y1d3{bottom:400.907067pt;}
.y2f7{bottom:400.930533pt;}
.yb8{bottom:401.060000pt;}
.y28b{bottom:402.207467pt;}
.y37f{bottom:402.561733pt;}
.y13a{bottom:403.057867pt;}
.y314{bottom:404.417467pt;}
.ydd{bottom:404.496800pt;}
.y2e7{bottom:406.126000pt;}
.y1f9{bottom:406.130000pt;}
.y3a{bottom:406.658933pt;}
.y444{bottom:407.184533pt;}
.y8e{bottom:407.247733pt;}
.y2d1{bottom:407.462000pt;}
.y17d{bottom:407.467333pt;}
.y273{bottom:407.540800pt;}
.y33f{bottom:407.600667pt;}
.y303{bottom:407.687867pt;}
.y155{bottom:408.812000pt;}
.y391{bottom:408.874133pt;}
.y3e2{bottom:409.660533pt;}
.y218{bottom:410.207467pt;}
.y252{bottom:410.294133pt;}
.y1b9{bottom:410.338533pt;}
.y195{bottom:411.110400pt;}
.y3cb{bottom:411.399067pt;}
.y468{bottom:411.967467pt;}
.y2b2{bottom:412.798000pt;}
.y123{bottom:412.874133pt;}
.y35b{bottom:414.270400pt;}
.y64{bottom:416.041600pt;}
.y237{bottom:416.596133pt;}
.y28a{bottom:416.874133pt;}
.y1d2{bottom:416.908400pt;}
.y2f6{bottom:416.931867pt;}
.yb7{bottom:417.061333pt;}
.y37e{bottom:417.228400pt;}
.y3a7{bottom:418.702933pt;}
.y313{bottom:419.084133pt;}
.ydc{bottom:420.498133pt;}
.y39{bottom:421.325600pt;}
.yff{bottom:421.475067pt;}
.y8d{bottom:421.914400pt;}
.y2e6{bottom:422.127333pt;}
.y1f8{bottom:422.131333pt;}
.y272{bottom:422.207467pt;}
.y302{bottom:422.354533pt;}
.y2d0{bottom:423.463333pt;}
.y154{bottom:423.478667pt;}
.y390{bottom:423.540800pt;}
.y419{bottom:423.593867pt;}
.y33e{bottom:423.602000pt;}
.y16{bottom:423.981067pt;}
.y3e1{bottom:424.327200pt;}
.y217{bottom:424.874133pt;}
.y251{bottom:424.960800pt;}
.y194{bottom:425.777067pt;}
.y1b8{bottom:426.339867pt;}
.y3ca{bottom:427.400400pt;}
.y2b1{bottom:428.799333pt;}
.y435{bottom:428.874133pt;}
.y3fd{bottom:428.947733pt;}
.y289{bottom:431.540800pt;}
.y467{bottom:431.551467pt;}
.y37d{bottom:431.895067pt;}
.y63{bottom:432.042933pt;}
.y139{bottom:432.432000pt;}
.y236{bottom:432.597467pt;}
.y1d1{bottom:432.909733pt;}
.yb6{bottom:433.062667pt;}
.y312{bottom:433.750800pt;}
.y3a6{bottom:434.704267pt;}
.ydb{bottom:436.499467pt;}
.y8c{bottom:436.581067pt;}
.y271{bottom:436.874133pt;}
.y301{bottom:437.021200pt;}
.yfe{bottom:437.476400pt;}
.y2e5{bottom:438.128667pt;}
.y1f7{bottom:438.132667pt;}
.y153{bottom:438.145333pt;}
.y17c{bottom:438.207467pt;}
.y418{bottom:438.260533pt;}
.y443{bottom:438.473867pt;}
.y3e0{bottom:438.993867pt;}
.y2cf{bottom:439.464667pt;}
.y216{bottom:439.540800pt;}
.y33d{bottom:439.603333pt;}
.y250{bottom:439.627467pt;}
.y193{bottom:440.443733pt;}
.y122{bottom:442.267733pt;}
.y1b7{bottom:442.341200pt;}
.y3c9{bottom:443.401733pt;}
.y434{bottom:443.540800pt;}
.y2b0{bottom:444.800667pt;}
.y466{bottom:446.215467pt;}
.y35a{bottom:446.903733pt;}
.y2f5{bottom:447.672000pt;}
.y62{bottom:448.044267pt;}
.y138{bottom:448.433333pt;}
.y38{bottom:448.451467pt;}
.y235{bottom:448.598800pt;}
.y1d0{bottom:448.911067pt;}
.yb5{bottom:449.064000pt;}
.y3a5{bottom:450.705600pt;}
.y8b{bottom:451.247733pt;}
.y270{bottom:451.540800pt;}
.y32d{bottom:451.606400pt;}
.y300{bottom:451.687867pt;}
.yda{bottom:452.500800pt;}
.y152{bottom:452.812000pt;}
.y17b{bottom:452.874133pt;}
.y417{bottom:452.927200pt;}
.yfd{bottom:453.477733pt;}
.y3df{bottom:453.660533pt;}
.y15{bottom:453.765733pt;}
.y2e4{bottom:454.130000pt;}
.y1f6{bottom:454.134000pt;}
.y215{bottom:454.207467pt;}
.y24f{bottom:454.294133pt;}
.y192{bottom:455.110400pt;}
.y2ce{bottom:455.466000pt;}
.y33c{bottom:455.604667pt;}
.y433{bottom:458.207467pt;}
.y121{bottom:458.269067pt;}
.y1b6{bottom:458.342533pt;}
.y3c8{bottom:459.403067pt;}
.y3fc{bottom:459.687867pt;}
.y288{bottom:460.942400pt;}
.y37c{bottom:461.296533pt;}
.y2f4{bottom:462.338667pt;}
.y311{bottom:463.152267pt;}
.y61{bottom:464.045600pt;}
.y137{bottom:464.434667pt;}
.y37{bottom:464.452800pt;}
.y234{bottom:464.600133pt;}
.y1cf{bottom:464.912400pt;}
.yb4{bottom:465.065333pt;}
.y465{bottom:465.799467pt;}
.y26f{bottom:466.207467pt;}
.y3a4{bottom:466.706933pt;}
.y14{bottom:467.099067pt;}
.y17a{bottom:467.540800pt;}
.y416{bottom:467.593867pt;}
.y32c{bottom:467.607733pt;}
.y3de{bottom:468.327200pt;}
.yd9{bottom:468.502133pt;}
.y214{bottom:468.874133pt;}
.y24e{bottom:468.960800pt;}
.yfc{bottom:469.479067pt;}
.y191{bottom:469.777067pt;}
.y2e3{bottom:470.131333pt;}
.y2cd{bottom:471.467333pt;}
.y33b{bottom:471.606000pt;}
.y48f{bottom:471.723600pt;}
.y432{bottom:472.874133pt;}
.y120{bottom:474.270400pt;}
.y1b5{bottom:474.343867pt;}
.y3fb{bottom:474.354533pt;}
.y3c7{bottom:475.404400pt;}
.y2af{bottom:475.540800pt;}
.y287{bottom:476.943733pt;}
.y2f3{bottom:477.005333pt;}
.y37b{bottom:477.297867pt;}
.y310{bottom:479.153600pt;}
.y136{bottom:480.436000pt;}
.y36{bottom:480.454133pt;}
.y464{bottom:480.463467pt;}
.y233{bottom:480.601467pt;}
.y8a{bottom:480.641200pt;}
.y1ce{bottom:480.913733pt;}
.yb3{bottom:481.066667pt;}
.y151{bottom:481.834133pt;}
.y179{bottom:482.207467pt;}
.y415{bottom:482.260533pt;}
.y3a3{bottom:482.708267pt;}
.y213{bottom:483.540800pt;}
.y32b{bottom:483.609067pt;}
.y24d{bottom:483.627467pt;}
.y190{bottom:484.443733pt;}
.yd8{bottom:484.503467pt;}
.y1f5{bottom:484.874133pt;}
.yfb{bottom:485.480400pt;}
.y442{bottom:485.847200pt;}
.y2e2{bottom:486.132667pt;}
.y48e{bottom:486.388000pt;}
.y431{bottom:487.540800pt;}
.y33a{bottom:487.607333pt;}
.y3fa{bottom:489.021200pt;}
.y2ae{bottom:490.207467pt;}
.y11f{bottom:490.271733pt;}
.y1b4{bottom:490.345200pt;}
.y60{bottom:491.384133pt;}
.y2f2{bottom:491.672000pt;}
.y286{bottom:492.945067pt;}
.y37a{bottom:493.299200pt;}
.y359{bottom:494.277067pt;}
.y463{bottom:495.127467pt;}
.y30f{bottom:495.154933pt;}
.y26e{bottom:495.614400pt;}
.y3dd{bottom:496.218133pt;}
.y135{bottom:496.437333pt;}
.y35{bottom:496.455467pt;}
.y232{bottom:496.602800pt;}
.y89{bottom:496.642533pt;}
.y1cd{bottom:496.915067pt;}
.y414{bottom:496.927200pt;}
.y38f{bottom:496.941067pt;}
.yb2{bottom:497.068000pt;}
.y150{bottom:497.835467pt;}
.y24c{bottom:498.294133pt;}
.y3a2{bottom:498.709600pt;}
.y1f4{bottom:499.540800pt;}
.y32a{bottom:499.610400pt;}
.yd7{bottom:500.504800pt;}
.y48d{bottom:501.052000pt;}
.yfa{bottom:501.481733pt;}
.y441{bottom:501.848533pt;}
.y2e1{bottom:502.134000pt;}
.y2cc{bottom:502.207467pt;}
.y339{bottom:503.608667pt;}
.y3f9{bottom:503.687867pt;}
.y3c6{bottom:504.632667pt;}
.y2ad{bottom:504.874133pt;}
.y5f{bottom:506.050800pt;}
.y11e{bottom:506.273067pt;}
.y2f1{bottom:506.338667pt;}
.y1b3{bottom:506.346533pt;}
.y13{bottom:506.894533pt;}
.y285{bottom:508.946400pt;}
.y379{bottom:509.300533pt;}
.y358{bottom:510.278400pt;}
.y30e{bottom:511.156267pt;}
.y413{bottom:511.593867pt;}
.y178{bottom:511.610400pt;}
.y3dc{bottom:512.219467pt;}
.y134{bottom:512.438667pt;}
.y34{bottom:512.456800pt;}
.y231{bottom:512.604133pt;}
.y88{bottom:512.643867pt;}
.y1cc{bottom:512.916400pt;}
.y212{bottom:512.942400pt;}
.y24b{bottom:512.960800pt;}
.yb1{bottom:513.069333pt;}
.y14f{bottom:513.836800pt;}
.y1f3{bottom:514.207467pt;}
.y3a1{bottom:514.710933pt;}
.y462{bottom:514.711467pt;}
.y329{bottom:515.611733pt;}
.yd6{bottom:516.506133pt;}
.y2cb{bottom:516.874133pt;}
.yf9{bottom:517.483067pt;}
.y440{bottom:517.849867pt;}
.y3f8{bottom:518.354533pt;}
.y3c5{bottom:519.299333pt;}
.y2ac{bottom:519.540800pt;}
.y338{bottom:519.610000pt;}
.y48c{bottom:520.636000pt;}
.y5e{bottom:520.717467pt;}
.y2f0{bottom:521.005333pt;}
.y12{bottom:521.561200pt;}
.y11d{bottom:522.274400pt;}
.y1b2{bottom:522.347867pt;}
.y284{bottom:524.947733pt;}
.y378{bottom:525.301867pt;}
.y412{bottom:526.260533pt;}
.y357{bottom:526.279733pt;}
.y26d{bottom:526.354533pt;}
.y30d{bottom:527.157600pt;}
.y177{bottom:527.611733pt;}
.y3db{bottom:528.220800pt;}
.y133{bottom:528.440000pt;}
.y33{bottom:528.458133pt;}
.y87{bottom:528.645200pt;}
.y1f2{bottom:528.874133pt;}
.y211{bottom:528.943733pt;}
.yb0{bottom:529.070667pt;}
.y461{bottom:529.375467pt;}
.y14e{bottom:529.838133pt;}
.y3a0{bottom:530.712267pt;}
.y2ca{bottom:531.540800pt;}
.y328{bottom:531.613067pt;}
.yd5{bottom:532.507467pt;}
.y2e0{bottom:532.874133pt;}
.y3f7{bottom:533.021200pt;}
.y43f{bottom:533.851200pt;}
.y3c4{bottom:533.966000pt;}
.y48b{bottom:535.300000pt;}
.y5d{bottom:535.384133pt;}
.y2ef{bottom:535.672000pt;}
.y230{bottom:538.050800pt;}
.y11c{bottom:538.275733pt;}
.y1b1{bottom:538.349200pt;}
.y11{bottom:540.761200pt;}
.y411{bottom:540.927200pt;}
.y26c{bottom:541.021200pt;}
.y356{bottom:542.281067pt;}
.y1f1{bottom:543.540800pt;}
.y176{bottom:543.613067pt;}
.y3da{bottom:544.222133pt;}
.y132{bottom:544.441333pt;}
.y32{bottom:544.459467pt;}
.y86{bottom:544.646533pt;}
.y210{bottom:544.945067pt;}
.yaf{bottom:545.072000pt;}
.y14d{bottom:545.839467pt;}
.yf8{bottom:545.955600pt;}
.y2c9{bottom:546.207467pt;}
.y2df{bottom:547.540800pt;}
.y327{bottom:547.614400pt;}
.y3f6{bottom:547.687867pt;}
.y3c3{bottom:548.632667pt;}
.y2ab{bottom:548.946400pt;}
.y460{bottom:548.959467pt;}
.y48a{bottom:549.964000pt;}
.y5c{bottom:550.050800pt;}
.y11b{bottom:554.277067pt;}
.y1b0{bottom:554.350533pt;}
.y10{bottom:555.427867pt;}
.y410{bottom:555.593867pt;}
.y26b{bottom:555.687867pt;}
.y39f{bottom:558.050800pt;}
.y1f0{bottom:558.207467pt;}
.y175{bottom:559.614400pt;}
.y131{bottom:560.442667pt;}
.y31{bottom:560.460800pt;}
.yf7{bottom:560.622267pt;}
.y85{bottom:560.647867pt;}
.y2c8{bottom:560.874133pt;}
.y430{bottom:560.943733pt;}
.y20f{bottom:560.946400pt;}
.yae{bottom:561.073333pt;}
.y14c{bottom:561.840800pt;}
.y2de{bottom:562.207467pt;}
.yd4{bottom:563.247733pt;}
.y3c2{bottom:563.299333pt;}
.y45f{bottom:563.623467pt;}
.y5b{bottom:564.717467pt;}
.y2aa{bottom:564.947733pt;}
.y489{bottom:569.548000pt;}
.yf{bottom:570.094533pt;}
.y11a{bottom:570.278400pt;}
.y1af{bottom:570.351867pt;}
.y26a{bottom:570.354533pt;}
.y39e{bottom:572.717467pt;}
.y355{bottom:573.021200pt;}
.yf6{bottom:575.288933pt;}
.y2c7{bottom:575.540800pt;}
.y130{bottom:576.444000pt;}
.y30{bottom:576.462133pt;}
.y84{bottom:576.649200pt;}
.y2dd{bottom:576.874133pt;}
.y42f{bottom:576.945067pt;}
.y20e{bottom:576.947733pt;}
.yad{bottom:577.074667pt;}
.yd3{bottom:577.914400pt;}
.y264{bottom:578.179467pt;}
.y326{bottom:578.354533pt;}
.y5a{bottom:579.384133pt;}
.y22f{bottom:579.748133pt;}
.y1e5{bottom:580.046533pt;}
.y45e{bottom:583.207467pt;}
.y488{bottom:584.212000pt;}
.ye{bottom:584.761200pt;}
.y269{bottom:585.021200pt;}
.y119{bottom:586.279733pt;}
.y1ae{bottom:586.353200pt;}
.y39d{bottom:587.384133pt;}
.y1ef{bottom:587.610400pt;}
.y354{bottom:587.687867pt;}
.yf5{bottom:589.955600pt;}
.y2c6{bottom:590.207467pt;}
.y174{bottom:590.354533pt;}
.y3c1{bottom:591.191733pt;}
.y324{bottom:591.450667pt;}
.y2dc{bottom:591.540800pt;}
.y12f{bottom:592.445333pt;}
.y2f{bottom:592.463467pt;}
.yd2{bottom:592.581067pt;}
.y83{bottom:592.650533pt;}
.y42e{bottom:592.946400pt;}
.y325{bottom:593.021200pt;}
.yac{bottom:593.076000pt;}
.y59{bottom:594.050800pt;}
.y34e{bottom:594.312133pt;}
.y451{bottom:594.428000pt;}
.y2a9{bottom:595.687867pt;}
.y22e{bottom:595.749467pt;}
.y377{bottom:596.980667pt;}
.y38e{bottom:598.100133pt;}
.yd{bottom:599.427867pt;}
.y268{bottom:599.687867pt;}
.y2ff{bottom:599.818667pt;}
.y39c{bottom:602.050800pt;}
.y118{bottom:602.281067pt;}
.y1ad{bottom:602.354533pt;}
.y45d{bottom:602.791467pt;}
.y1ee{bottom:603.611733pt;}
.y487{bottom:603.796000pt;}
.yf4{bottom:604.622267pt;}
.y2c5{bottom:604.874133pt;}
.y173{bottom:605.021200pt;}
.y2db{bottom:606.207467pt;}
.y3f5{bottom:606.627867pt;}
.y450{bottom:606.650667pt;}
.y3c0{bottom:607.193067pt;}
.yd1{bottom:607.247733pt;}
.y20d{bottom:607.687867pt;}
.y2e{bottom:608.446667pt;}
.y82{bottom:608.651867pt;}
.y58{bottom:608.717467pt;}
.y42d{bottom:608.947733pt;}
.yab{bottom:609.077333pt;}
.y2a8{bottom:610.354533pt;}
.y22d{bottom:611.750800pt;}
.y42c{bottom:612.308533pt;}
.yc{bottom:614.094533pt;}
.y267{bottom:614.354533pt;}
.y39b{bottom:616.717467pt;}
.y353{bottom:617.021200pt;}
.y45c{bottom:617.455467pt;}
.y486{bottom:618.460000pt;}
.yf3{bottom:619.288933pt;}
.y1ed{bottom:619.613067pt;}
.y172{bottom:619.687867pt;}
.yd0{bottom:621.914400pt;}
.y20c{bottom:622.354533pt;}
.y3bf{bottom:623.194400pt;}
.y57{bottom:623.384133pt;}
.y2d{bottom:624.448000pt;}
.y81{bottom:624.653200pt;}
.y2a7{bottom:625.021200pt;}
.yaa{bottom:625.078667pt;}
.yb{bottom:628.761200pt;}
.y266{bottom:629.021200pt;}
.y352{bottom:631.687867pt;}
.y117{bottom:633.021200pt;}
.y1ac{bottom:633.094667pt;}
.y485{bottom:633.124000pt;}
.yf2{bottom:633.955600pt;}
.y2c4{bottom:634.279733pt;}
.y171{bottom:634.354533pt;}
.y2da{bottom:635.611733pt;}
.y1ec{bottom:635.614400pt;}
.ycf{bottom:636.581067pt;}
.y20b{bottom:637.021200pt;}
.y45b{bottom:637.039467pt;}
.y56{bottom:638.050800pt;}
.y22c{bottom:639.089467pt;}
.y2a6{bottom:639.687867pt;}
.y2c{bottom:640.449333pt;}
.y80{bottom:640.654533pt;}
.ya9{bottom:641.080000pt;}
.y39a{bottom:642.721467pt;}
.ya{bottom:643.427867pt;}
.y265{bottom:643.687867pt;}
.y351{bottom:646.354533pt;}
.y116{bottom:647.687867pt;}
.yf1{bottom:648.622267pt;}
.y170{bottom:649.021200pt;}
.y2c3{bottom:650.281067pt;}
.y3be{bottom:650.532933pt;}
.yce{bottom:651.247733pt;}
.y2d9{bottom:651.613067pt;}
.y20a{bottom:651.687867pt;}
.y45a{bottom:651.703467pt;}
.y484{bottom:652.708000pt;}
.y22b{bottom:653.756133pt;}
.y2a5{bottom:654.354533pt;}
.y2b{bottom:656.450667pt;}
.ya8{bottom:657.081333pt;}
.y9{bottom:658.094533pt;}
.y399{bottom:658.722800pt;}
.y350{bottom:661.021200pt;}
.y115{bottom:662.354533pt;}
.y1ab{bottom:662.428000pt;}
.yf0{bottom:663.288933pt;}
.y16f{bottom:663.687867pt;}
.y55{bottom:664.046800pt;}
.y3bd{bottom:665.199600pt;}
.y1eb{bottom:666.354533pt;}
.y483{bottom:667.372000pt;}
.y2d8{bottom:667.614400pt;}
.y22a{bottom:668.422800pt;}
.y2a4{bottom:669.021200pt;}
.y459{bottom:671.287467pt;}
.y7f{bottom:671.394667pt;}
.y2a{bottom:672.452000pt;}
.y8{bottom:672.761200pt;}
.ya7{bottom:673.082667pt;}
.y34f{bottom:675.687867pt;}
.y114{bottom:677.021200pt;}
.y1aa{bottom:677.094667pt;}
.yef{bottom:677.955600pt;}
.y16e{bottom:678.354533pt;}
.y3bc{bottom:679.866267pt;}
.y54{bottom:680.048133pt;}
.ycd{bottom:680.650400pt;}
.y1ea{bottom:681.021200pt;}
.y482{bottom:682.036000pt;}
.y229{bottom:683.089467pt;}
.y2a3{bottom:683.687867pt;}
.y458{bottom:685.951467pt;}
.y7e{bottom:686.061333pt;}
.y29{bottom:688.453333pt;}
.ya6{bottom:689.084000pt;}
.y113{bottom:691.687867pt;}
.y1a9{bottom:691.761333pt;}
.y16d{bottom:693.021200pt;}
.y3bb{bottom:694.532933pt;}
.y1e9{bottom:695.687867pt;}
.y53{bottom:696.049467pt;}
.ycc{bottom:696.651733pt;}
.y228{bottom:697.756133pt;}
.y2a2{bottom:698.354533pt;}
.y7d{bottom:700.728000pt;}
.y481{bottom:701.620000pt;}
.y7{bottom:704.054533pt;}
.y28{bottom:704.454667pt;}
.ya5{bottom:705.085333pt;}
.y457{bottom:705.535467pt;}
.y1a8{bottom:706.428000pt;}
.y16c{bottom:707.687867pt;}
.y3ba{bottom:709.199600pt;}
.y1e8{bottom:710.354533pt;}
.y52{bottom:712.050800pt;}
.y227{bottom:712.422800pt;}
.ycb{bottom:712.653067pt;}
.y2a1{bottom:713.021200pt;}
.y7c{bottom:715.394667pt;}
.y480{bottom:716.284000pt;}
.y456{bottom:720.199467pt;}
.y27{bottom:720.456000pt;}
.ya4{bottom:721.086667pt;}
.y112{bottom:721.092000pt;}
.y1e7{bottom:725.021200pt;}
.y226{bottom:727.089467pt;}
.y2a0{bottom:727.687867pt;}
.y51{bottom:728.052133pt;}
.yca{bottom:728.654400pt;}
.y7b{bottom:730.061333pt;}
.y47f{bottom:735.868000pt;}
.y26{bottom:736.457333pt;}
.ya3{bottom:737.088000pt;}
.y111{bottom:737.093333pt;}
.y1a7{bottom:737.718667pt;}
.y1e6{bottom:739.687867pt;}
.y455{bottom:739.783467pt;}
.y29f{bottom:742.354533pt;}
.y50{bottom:744.053467pt;}
.y7a{bottom:744.728000pt;}
.y6{bottom:750.096000pt;}
.y47e{bottom:750.532000pt;}
.y25{bottom:752.458667pt;}
.ya2{bottom:753.089333pt;}
.y29e{bottom:757.021200pt;}
.y454{bottom:759.367467pt;}
.y79{bottom:759.394667pt;}
.y4f{bottom:760.054800pt;}
.y24{bottom:768.460000pt;}
.ya1{bottom:769.090667pt;}
.y47d{bottom:770.116000pt;}
.y29d{bottom:771.687867pt;}
.y78{bottom:774.061333pt;}
.y4e{bottom:776.056133pt;}
.y453{bottom:778.951467pt;}
.y23{bottom:784.461333pt;}
.y47c{bottom:784.780000pt;}
.ya0{bottom:785.092000pt;}
.y77{bottom:788.728000pt;}
.y5{bottom:798.800000pt;}
.y9f{bottom:801.093333pt;}
.y4d{bottom:803.394667pt;}
.y47b{bottom:804.364000pt;}
.y452{bottom:815.161333pt;}
.y4{bottom:816.128000pt;}
.y22{bottom:817.094667pt;}
.y4c{bottom:818.061333pt;}
.y47a{bottom:819.028000pt;}
.h8{height:25.440000pt;}
.hf{height:25.440533pt;}
.h2{height:31.189333pt;}
.h3{height:36.821333pt;}
.h9{height:41.424000pt;}
.hb{height:44.586667pt;}
.h5{height:46.026667pt;}
.he{height:46.027200pt;}
.h6{height:50.629333pt;}
.hc{height:50.645333pt;}
.ha{height:50.650667pt;}
.hd{height:50.666667pt;}
.h7{height:50.701867pt;}
.h4{height:55.232000pt;}
.h10{height:59.834667pt;}
.h1{height:888.000000pt;}
.h0{height:888.200000pt;}
.w1{width:623.333333pt;}
.w0{width:623.600000pt;}
.x0{left:0.000000pt;}
.x9{left:50.222800pt;}
.x6{left:64.252000pt;}
.xc{left:94.498400pt;}
.x4{left:100.158533pt;}
.xd{left:109.606267pt;}
.xb{left:139.847733pt;}
.x8{left:146.338533pt;}
.x7{left:154.925200pt;}
.x3{left:160.930933pt;}
.xe{left:179.532933pt;}
.x2{left:188.408267pt;}
.x14{left:216.966267pt;}
.x12{left:221.579867pt;}
.x18{left:236.089867pt;}
.x17{left:238.599467pt;}
.xf{left:240.641467pt;}
.x5{left:244.302533pt;}
.xa{left:267.829067pt;}
.x15{left:269.319867pt;}
.x11{left:273.023733pt;}
.x16{left:300.312133pt;}
.x13{left:303.645067pt;}
.x10{left:481.109200pt;}
.x1{left:581.760533pt;}
}




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