
    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_266bd8feec44159143dc5a93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c4571bae2986377a34f77b0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_cc757f5d87b6aa58658e3147.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eaa31c67ba7d5807b0466d67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b300d0575c85f1a319b5ee2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_18b91fced0216d0686d486a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_34e5f1cb5da88a28de18955c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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:ffb;src:url('chunks/assets/font_d8aa8aea3648b9050f3d181b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;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:ffc;src:url('chunks/assets/font_a0906ca54dae6407c3d9a17c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.363000;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:ffd;src:url('chunks/assets/font_5652b3943e9f7f16937097ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;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:ffe;src:url('chunks/assets/font_01d9d9543d38c62f720207df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:fff;src:url('chunks/assets/font_b7d4ad9effb4c81667fe59ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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:ff10;src:url('chunks/assets/font_0c82340967c3cb89d059766d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911000;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:ff11;src:url('chunks/assets/font_bc882f01c013f8b34c6be046.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.911000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v4{vertical-align:-12.747037px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.352011px;}
.v1{vertical-align:24.000000px;}
.lsae{letter-spacing:-1.836000px;}
.lscf{letter-spacing:-1.275000px;}
.ls54{letter-spacing:-0.892500px;}
.ls45{letter-spacing:-0.780000px;}
.lsd1{letter-spacing:-0.765000px;}
.ls7e{letter-spacing:-0.720000px;}
.lsd0{letter-spacing:-0.714000px;}
.ls19{letter-spacing:-0.600000px;}
.ls7c{letter-spacing:-0.540000px;}
.ls7b{letter-spacing:-0.480000px;}
.lsce{letter-spacing:-0.459000px;}
.ls3a{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.360000px;}
.ls8b{letter-spacing:-0.357000px;}
.lsb0{letter-spacing:-0.306000px;}
.ls35{letter-spacing:-0.300000px;}
.lsad{letter-spacing:-0.255000px;}
.ls1a{letter-spacing:-0.240000px;}
.lsab{letter-spacing:-0.204000px;}
.ls33{letter-spacing:-0.180000px;}
.ls5a{letter-spacing:-0.162266px;}
.ls73{letter-spacing:-0.156863px;}
.lsaf{letter-spacing:-0.153000px;}
.ls34{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.108178px;}
.ls76{letter-spacing:-0.104575px;}
.lsac{letter-spacing:-0.102000px;}
.ls60{letter-spacing:-0.064906px;}
.ls79{letter-spacing:-0.062745px;}
.ls18{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.054089px;}
.ls72{letter-spacing:-0.052288px;}
.ls51{letter-spacing:-0.051143px;}
.lsb1{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000037px;}
.ls2{letter-spacing:0.000039px;}
.ls3{letter-spacing:0.000083px;}
.ls41{letter-spacing:0.030000px;}
.ls89{letter-spacing:0.051000px;}
.ls4a{letter-spacing:0.051143px;}
.ls6f{letter-spacing:0.052288px;}
.ls56{letter-spacing:0.054089px;}
.ls5{letter-spacing:0.060000px;}
.lsc0{letter-spacing:0.076500px;}
.ls6{letter-spacing:0.090000px;}
.ls8d{letter-spacing:0.102000px;}
.ls68{letter-spacing:0.102287px;}
.lsc{letter-spacing:0.120000px;}
.lsa1{letter-spacing:0.127500px;}
.ls3d{letter-spacing:0.150000px;}
.ls9b{letter-spacing:0.153000px;}
.ls17{letter-spacing:0.178791px;}
.lsb{letter-spacing:0.180000px;}
.ls9e{letter-spacing:0.204000px;}
.ls38{letter-spacing:0.210000px;}
.ls66{letter-spacing:0.210022px;}
.ls3b{letter-spacing:0.210026px;}
.ls4{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.255000px;}
.ls88{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.270000px;}
.ls8e{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.300000px;}
.ls96{letter-spacing:0.306000px;}
.ls70{letter-spacing:0.313726px;}
.ls57{letter-spacing:0.324533px;}
.ls7f{letter-spacing:0.330000px;}
.ls86{letter-spacing:0.331500px;}
.ls8a{letter-spacing:0.357000px;}
.ls36{letter-spacing:0.360000px;}
.ls78{letter-spacing:0.366013px;}
.ls5e{letter-spacing:0.378622px;}
.lsbb{letter-spacing:0.382500px;}
.ls37{letter-spacing:0.390000px;}
.ls91{letter-spacing:0.408000px;}
.ls28{letter-spacing:0.420000px;}
.ls87{letter-spacing:0.433500px;}
.ls1b{letter-spacing:0.450000px;}
.ls8c{letter-spacing:0.459000px;}
.ls9{letter-spacing:0.480000px;}
.ls39{letter-spacing:0.510000px;}
.lsc2{letter-spacing:0.535500px;}
.lsd{letter-spacing:0.540000px;}
.ls84{letter-spacing:0.561000px;}
.ls2f{letter-spacing:0.570000px;}
.lse{letter-spacing:0.600000px;}
.ls90{letter-spacing:0.612000px;}
.ls7d{letter-spacing:0.630000px;}
.lscc{letter-spacing:0.637500px;}
.ls1d{letter-spacing:0.660000px;}
.ls83{letter-spacing:0.663000px;}
.ls7a{letter-spacing:0.690000px;}
.ls85{letter-spacing:0.714000px;}
.lsa{letter-spacing:0.720000px;}
.ls98{letter-spacing:0.765000px;}
.ls2b{letter-spacing:0.780000px;}
.lsa9{letter-spacing:0.790500px;}
.ls31{letter-spacing:0.810000px;}
.ls9c{letter-spacing:0.816000px;}
.ls2a{letter-spacing:0.840000px;}
.lsa5{letter-spacing:0.867000px;}
.ls42{letter-spacing:0.870000px;}
.lsa2{letter-spacing:0.892500px;}
.ls23{letter-spacing:0.900000px;}
.ls9a{letter-spacing:0.918000px;}
.ls64{letter-spacing:0.930000px;}
.ls2c{letter-spacing:0.960000px;}
.lsb4{letter-spacing:0.969000px;}
.ls80{letter-spacing:0.990000px;}
.ls30{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.050000px;}
.ls81{letter-spacing:1.071000px;}
.ls2d{letter-spacing:1.080000px;}
.lsa4{letter-spacing:1.101600px;}
.ls40{letter-spacing:1.110000px;}
.lsc1{letter-spacing:1.122000px;}
.ls12{letter-spacing:1.140000px;}
.ls3c{letter-spacing:1.170000px;}
.lsa6{letter-spacing:1.173000px;}
.ls2e{letter-spacing:1.200000px;}
.ls93{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.260000px;}
.ls94{letter-spacing:1.275000px;}
.lsb3{letter-spacing:1.285200px;}
.ls20{letter-spacing:1.290000px;}
.ls26{letter-spacing:1.320000px;}
.ls9f{letter-spacing:1.326000px;}
.ls55{letter-spacing:1.350000px;}
.lscb{letter-spacing:1.351500px;}
.lsbc{letter-spacing:1.377000px;}
.ls1c{letter-spacing:1.380000px;}
.ls44{letter-spacing:1.410000px;}
.ls82{letter-spacing:1.428000px;}
.ls25{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.500000px;}
.lsba{letter-spacing:1.530000px;}
.ls22{letter-spacing:1.560000px;}
.ls95{letter-spacing:1.581000px;}
.ls3e{letter-spacing:1.590000px;}
.lsbe{letter-spacing:1.596300px;}
.ls27{letter-spacing:1.620000px;}
.lsbd{letter-spacing:1.632000px;}
.ls97{letter-spacing:1.657482px;}
.lsf{letter-spacing:1.680000px;}
.ls47{letter-spacing:1.710000px;}
.ls1f{letter-spacing:1.740000px;}
.lsc8{letter-spacing:1.749300px;}
.ls11{letter-spacing:1.800000px;}
.lsc4{letter-spacing:1.810500px;}
.lsc6{letter-spacing:1.836000px;}
.ls13{letter-spacing:1.860000px;}
.ls24{letter-spacing:1.920000px;}
.lsb5{letter-spacing:1.938000px;}
.lsa7{letter-spacing:1.963500px;}
.ls21{letter-spacing:1.980000px;}
.lsc9{letter-spacing:1.989000px;}
.ls65{letter-spacing:2.040000px;}
.ls14{letter-spacing:2.100000px;}
.lsc5{letter-spacing:2.192961px;}
.ls29{letter-spacing:2.220000px;}
.lsaa{letter-spacing:2.243961px;}
.ls62{letter-spacing:2.250000px;}
.ls61{letter-spacing:2.280000px;}
.ls8f{letter-spacing:2.295000px;}
.lscd{letter-spacing:2.325585px;}
.ls49{letter-spacing:2.340000px;}
.lsb8{letter-spacing:2.381689px;}
.ls63{letter-spacing:2.460000px;}
.ls92{letter-spacing:2.493900px;}
.lsb2{letter-spacing:2.550000px;}
.lsb7{letter-spacing:2.565300px;}
.lsc3{letter-spacing:2.595900px;}
.lsca{letter-spacing:2.672400px;}
.lsa8{letter-spacing:2.687685px;}
.lsc7{letter-spacing:2.738700px;}
.ls99{letter-spacing:2.748888px;}
.ls43{letter-spacing:2.760000px;}
.ls46{letter-spacing:2.820000px;}
.lsa0{letter-spacing:3.070200px;}
.lsb9{letter-spacing:3.156889px;}
.ls9d{letter-spacing:3.274186px;}
.lsa3{letter-spacing:3.417000px;}
.lsbf{letter-spacing:3.983057px;}
.ls1{letter-spacing:3.990000px;}
.lsb6{letter-spacing:6.823791px;}
.ls77{letter-spacing:12.915037px;}
.ls5d{letter-spacing:13.359934px;}
.ls5f{letter-spacing:16.745800px;}
.ls6e{letter-spacing:92.849722px;}
.ls6d{letter-spacing:96.019506px;}
.ls52{letter-spacing:100.752498px;}
.ls6b{letter-spacing:100.957072px;}
.ls6a{letter-spacing:117.680963px;}
.ls6c{letter-spacing:139.007761px;}
.ls53{letter-spacing:139.212329px;}
.ls48{letter-spacing:150.756000px;}
.ls75{letter-spacing:164.549070px;}
.ls5b{letter-spacing:174.652735px;}
.ls69{letter-spacing:185.500698px;}
.ls74{letter-spacing:187.764763px;}
.ls67{letter-spacing:201.246000px;}
.ls58{letter-spacing:207.538720px;}
.ls71{letter-spacing:219.555616px;}
.ls4f{letter-spacing:229.489431px;}
.ls50{letter-spacing:247.717704px;}
.ls4d{letter-spacing:262.598013px;}
.ls4b{letter-spacing:263.554556px;}
.ls4e{letter-spacing:291.884634px;}
.ls4c{letter-spacing:292.319693px;}
.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;}
}
.wsb0{word-spacing:-221.060920px;}
.wsdf{word-spacing:-219.607904px;}
.wscb{word-spacing:-213.996000px;}
.wsb3{word-spacing:-188.174935px;}
.wse2{word-spacing:-187.817051px;}
.wse4{word-spacing:-164.601357px;}
.ws8d{word-spacing:-154.071000px;}
.ws9e{word-spacing:-139.263472px;}
.wsd1{word-spacing:-139.058905px;}
.wscd{word-spacing:-117.732107px;}
.wsd0{word-spacing:-101.008215px;}
.ws9c{word-spacing:-100.803641px;}
.wsb9{word-spacing:-32.972350px;}
.wsb7{word-spacing:-26.882134px;}
.ws3{word-spacing:-18.432000px;}
.ws8a{word-spacing:-17.820000px;}
.ws26{word-spacing:-16.620000px;}
.ws7c{word-spacing:-16.500000px;}
.ws24{word-spacing:-16.320000px;}
.wsb8{word-spacing:-16.226550px;}
.ws72{word-spacing:-16.200000px;}
.wsc0{word-spacing:-16.140000px;}
.ws7a{word-spacing:-16.110000px;}
.ws25{word-spacing:-15.900000px;}
.ws89{word-spacing:-15.840000px;}
.wsf1{word-spacing:-15.720000px;}
.ws88{word-spacing:-15.600000px;}
.ws59{word-spacing:-15.480000px;}
.ws57{word-spacing:-15.300000px;}
.ws56{word-spacing:-15.000000px;}
.ws108{word-spacing:-14.832000px;}
.ws58{word-spacing:-14.820000px;}
.ws7e{word-spacing:-14.700000px;}
.ws55{word-spacing:-14.640000px;}
.wsef{word-spacing:-14.544000px;}
.ws7b{word-spacing:-14.220000px;}
.ws135{word-spacing:-14.178000px;}
.wsaf{word-spacing:-13.846733px;}
.wsf6{word-spacing:-13.770000px;}
.ws134{word-spacing:-13.719000px;}
.ws136{word-spacing:-13.617000px;}
.ws157{word-spacing:-13.515000px;}
.ws10b{word-spacing:-13.464000px;}
.wsb6{word-spacing:-13.414022px;}
.wsb2{word-spacing:-13.359934px;}
.ws113{word-spacing:-13.260000px;}
.ws10a{word-spacing:-13.209000px;}
.ws145{word-spacing:-13.056000px;}
.ws8{word-spacing:-13.005000px;}
.wse6{word-spacing:-12.967324px;}
.ws138{word-spacing:-12.954000px;}
.ws107{word-spacing:-12.852000px;}
.ws14c{word-spacing:-12.801000px;}
.wsa{word-spacing:-12.750000px;}
.ws109{word-spacing:-12.648000px;}
.ws7d{word-spacing:-12.600000px;}
.ws133{word-spacing:-12.546000px;}
.ws137{word-spacing:-12.495000px;}
.ws71{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.360000px;}
.ws154{word-spacing:-11.985000px;}
.ws7{word-spacing:-11.520000px;}
.wsf5{word-spacing:-10.863000px;}
.ws73{word-spacing:-10.500000px;}
.wsf7{word-spacing:-10.353000px;}
.ws2{word-spacing:-9.996000px;}
.ws9{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws7f{word-spacing:-7.500000px;}
.ws96{word-spacing:-6.375000px;}
.wsda{word-spacing:-2.193000px;}
.ws21{word-spacing:-2.100000px;}
.ws101{word-spacing:-2.040000px;}
.wsc3{word-spacing:-1.980000px;}
.ws13c{word-spacing:-1.938000px;}
.ws3b{word-spacing:-1.920000px;}
.ws29{word-spacing:-1.800000px;}
.ws95{word-spacing:-1.740000px;}
.wsc4{word-spacing:-1.620000px;}
.ws36{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.500000px;}
.ws6b{word-spacing:-1.440000px;}
.ws13e{word-spacing:-1.428000px;}
.ws32{word-spacing:-1.380000px;}
.ws151{word-spacing:-1.326000px;}
.ws94{word-spacing:-1.320000px;}
.ws103{word-spacing:-1.275000px;}
.ws2e{word-spacing:-1.260000px;}
.ws12c{word-spacing:-1.224000px;}
.ws63{word-spacing:-1.200000px;}
.ws149{word-spacing:-1.173000px;}
.ws38{word-spacing:-1.140000px;}
.ws14b{word-spacing:-1.122000px;}
.wsf0{word-spacing:-1.080000px;}
.ws105{word-spacing:-1.071000px;}
.ws6e{word-spacing:-1.020000px;}
.ws102{word-spacing:-0.969000px;}
.ws43{word-spacing:-0.960000px;}
.ws128{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.900000px;}
.ws140{word-spacing:-0.867000px;}
.ws30{word-spacing:-0.840000px;}
.ws123{word-spacing:-0.816000px;}
.ws3e{word-spacing:-0.780000px;}
.ws106{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.ws10c{word-spacing:-0.714000px;}
.ws143{word-spacing:-0.663000px;}
.wsf{word-spacing:-0.660000px;}
.wsae{word-spacing:-0.649066px;}
.ws22{word-spacing:-0.612000px;}
.ws42{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.ws10d{word-spacing:-0.561000px;}
.ws16{word-spacing:-0.540000px;}
.ws114{word-spacing:-0.510000px;}
.ws48{word-spacing:-0.480000px;}
.ws125{word-spacing:-0.459000px;}
.ws13{word-spacing:-0.420000px;}
.ws10e{word-spacing:-0.408000px;}
.wsbc{word-spacing:-0.378622px;}
.wsde{word-spacing:-0.366013px;}
.ws18{word-spacing:-0.360000px;}
.ws116{word-spacing:-0.357000px;}
.ws119{word-spacing:-0.306000px;}
.ws1b{word-spacing:-0.300000px;}
.wsfe{word-spacing:-0.264000px;}
.ws10f{word-spacing:-0.255000px;}
.ws53{word-spacing:-0.240000px;}
.ws146{word-spacing:-0.204000px;}
.ws66{word-spacing:-0.180000px;}
.wscf{word-spacing:-0.153430px;}
.ws130{word-spacing:-0.153000px;}
.ws15{word-spacing:-0.120000px;}
.ws9b{word-spacing:-0.102287px;}
.ws14d{word-spacing:-0.102000px;}
.ws37{word-spacing:-0.060000px;}
.ws9d{word-spacing:-0.051143px;}
.ws112{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws115{word-spacing:0.051000px;}
.wse5{word-spacing:0.052288px;}
.ws2a{word-spacing:0.060000px;}
.wsbd{word-spacing:0.064906px;}
.ws124{word-spacing:0.102000px;}
.wse1{word-spacing:0.104575px;}
.wsb4{word-spacing:0.108167px;}
.ws10{word-spacing:0.120000px;}
.ws12a{word-spacing:0.153000px;}
.wsb1{word-spacing:0.162266px;}
.ws6f{word-spacing:0.180000px;}
.ws141{word-spacing:0.204000px;}
.ws1a{word-spacing:0.240000px;}
.ws117{word-spacing:0.255000px;}
.ws5a{word-spacing:0.300000px;}
.ws78{word-spacing:0.306000px;}
.ws144{word-spacing:0.357000px;}
.ws52{word-spacing:0.360000px;}
.ws12e{word-spacing:0.408000px;}
.ws1e{word-spacing:0.420000px;}
.ws118{word-spacing:0.459000px;}
.wsd{word-spacing:0.480000px;}
.ws132{word-spacing:0.510000px;}
.ws44{word-spacing:0.540000px;}
.ws13d{word-spacing:0.561000px;}
.ws14{word-spacing:0.600000px;}
.ws4c{word-spacing:0.660000px;}
.ws14f{word-spacing:0.663000px;}
.ws153{word-spacing:0.714000px;}
.wsf3{word-spacing:0.720000px;}
.ws11f{word-spacing:0.765000px;}
.ws40{word-spacing:0.780000px;}
.ws142{word-spacing:0.816000px;}
.ws4f{word-spacing:0.840000px;}
.ws2f{word-spacing:0.900000px;}
.ws47{word-spacing:0.960000px;}
.wsfd{word-spacing:0.969000px;}
.ws74{word-spacing:1.020000px;}
.ws11e{word-spacing:1.071000px;}
.ws51{word-spacing:1.080000px;}
.ws11a{word-spacing:1.122000px;}
.ws64{word-spacing:1.140000px;}
.ws104{word-spacing:1.173000px;}
.ws6d{word-spacing:1.200000px;}
.ws6a{word-spacing:1.260000px;}
.wsfa{word-spacing:1.275000px;}
.ws5c{word-spacing:1.320000px;}
.ws148{word-spacing:1.326000px;}
.wse9{word-spacing:1.380000px;}
.ws159{word-spacing:1.428000px;}
.ws2d{word-spacing:1.440000px;}
.wsfb{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.ws11c{word-spacing:1.530000px;}
.ws60{word-spacing:1.560000px;}
.wsfc{word-spacing:1.581000px;}
.ws54{word-spacing:1.620000px;}
.ws45{word-spacing:1.680000px;}
.ws13f{word-spacing:1.683000px;}
.ws131{word-spacing:1.734000px;}
.ws31{word-spacing:1.740000px;}
.wsd6{word-spacing:1.785000px;}
.ws12{word-spacing:1.800000px;}
.ws11b{word-spacing:1.836000px;}
.ws41{word-spacing:1.860000px;}
.ws158{word-spacing:1.887000px;}
.ws2c{word-spacing:1.920000px;}
.wsd9{word-spacing:1.938000px;}
.ws17{word-spacing:1.980000px;}
.ws12f{word-spacing:1.989000px;}
.ws1c{word-spacing:2.040000px;}
.ws14e{word-spacing:2.091000px;}
.ws65{word-spacing:2.100000px;}
.wseb{word-spacing:2.142000px;}
.ws5f{word-spacing:2.160000px;}
.ws13a{word-spacing:2.193000px;}
.ws50{word-spacing:2.220000px;}
.ws122{word-spacing:2.244000px;}
.ws5b{word-spacing:2.280000px;}
.ws156{word-spacing:2.295000px;}
.ws34{word-spacing:2.340000px;}
.ws12d{word-spacing:2.346000px;}
.ws14a{word-spacing:2.397000px;}
.ws19{word-spacing:2.400000px;}
.ws155{word-spacing:2.448000px;}
.ws5d{word-spacing:2.460000px;}
.ws129{word-spacing:2.499000px;}
.ws3f{word-spacing:2.520000px;}
.wsaa{word-spacing:2.550000px;}
.ws5e{word-spacing:2.580000px;}
.ws127{word-spacing:2.601000px;}
.ws28{word-spacing:2.640000px;}
.ws120{word-spacing:2.652000px;}
.ws1d{word-spacing:2.700000px;}
.ws4b{word-spacing:2.760000px;}
.ws39{word-spacing:2.820000px;}
.wsa9{word-spacing:2.880000px;}
.ws110{word-spacing:2.907000px;}
.ws1f{word-spacing:2.940000px;}
.ws49{word-spacing:3.000000px;}
.ws3c{word-spacing:3.060000px;}
.ws111{word-spacing:3.111000px;}
.ws70{word-spacing:3.120000px;}
.ws126{word-spacing:3.162000px;}
.ws3a{word-spacing:3.180000px;}
.ws4a{word-spacing:3.240000px;}
.ws35{word-spacing:3.300000px;}
.ws152{word-spacing:3.315000px;}
.ws81{word-spacing:3.360000px;}
.ws11d{word-spacing:3.366000px;}
.ws69{word-spacing:3.420000px;}
.ws12b{word-spacing:3.468000px;}
.ws4e{word-spacing:3.480000px;}
.wsd4{word-spacing:3.540000px;}
.ws46{word-spacing:3.600000px;}
.wsd7{word-spacing:3.621000px;}
.ws62{word-spacing:3.660000px;}
.ws147{word-spacing:3.723000px;}
.ws91{word-spacing:3.780000px;}
.wsad{word-spacing:3.825000px;}
.ws33{word-spacing:3.900000px;}
.wsab{word-spacing:3.927000px;}
.wsc7{word-spacing:3.960000px;}
.ws90{word-spacing:4.020000px;}
.ws2b{word-spacing:4.080000px;}
.ws93{word-spacing:4.140000px;}
.ws150{word-spacing:4.182000px;}
.ws20{word-spacing:4.200000px;}
.ws61{word-spacing:4.260000px;}
.ws13b{word-spacing:4.284000px;}
.ws67{word-spacing:4.320000px;}
.ws139{word-spacing:4.335000px;}
.ws86{word-spacing:4.380000px;}
.ws15c{word-spacing:4.437000px;}
.wsbb{word-spacing:4.440000px;}
.wsd3{word-spacing:4.500000px;}
.ws6c{word-spacing:4.560000px;}
.ws121{word-spacing:4.590000px;}
.ws3d{word-spacing:4.620000px;}
.wsff{word-spacing:4.641000px;}
.wsc2{word-spacing:4.740000px;}
.ws87{word-spacing:4.800000px;}
.wsc1{word-spacing:4.860000px;}
.ws82{word-spacing:4.980000px;}
.ws84{word-spacing:5.040000px;}
.ws80{word-spacing:5.100000px;}
.wsc6{word-spacing:5.160000px;}
.wsf9{word-spacing:5.202000px;}
.ws4d{word-spacing:5.220000px;}
.wsd5{word-spacing:5.253000px;}
.ws75{word-spacing:5.400000px;}
.ws76{word-spacing:5.640000px;}
.wsc5{word-spacing:6.000000px;}
.ws68{word-spacing:6.060000px;}
.ws100{word-spacing:6.069000px;}
.wsf8{word-spacing:6.300000px;}
.ws83{word-spacing:6.540000px;}
.wsf4{word-spacing:6.660000px;}
.wsee{word-spacing:6.783000px;}
.wsed{word-spacing:7.038000px;}
.ws79{word-spacing:7.701000px;}
.ws92{word-spacing:7.800000px;}
.wsc8{word-spacing:7.860000px;}
.ws77{word-spacing:8.700000px;}
.wsec{word-spacing:8.772000px;}
.wsf2{word-spacing:9.480000px;}
.wsac{word-spacing:10.098000px;}
.wsea{word-spacing:10.557000px;}
.ws85{word-spacing:11.520000px;}
.wsd8{word-spacing:11.730000px;}
.wsdd{word-spacing:12.392161px;}
.wse0{word-spacing:13.176475px;}
.wse8{word-spacing:13.437913px;}
.ws15a{word-spacing:13.515000px;}
.wse3{word-spacing:13.647053px;}
.wsbe{word-spacing:13.719000px;}
.wse7{word-spacing:15.686250px;}
.ws15b{word-spacing:17.595000px;}
.wsbf{word-spacing:19.125000px;}
.ws8e{word-spacing:48.756000px;}
.ws97{word-spacing:58.241993px;}
.ws98{word-spacing:58.242000px;}
.ws8f{word-spacing:64.821000px;}
.ws23{word-spacing:72.267000px;}
.ws9a{word-spacing:72.419054px;}
.wsce{word-spacing:72.981632px;}
.ws8c{word-spacing:75.684000px;}
.wsba{word-spacing:93.995285px;}
.wsdb{word-spacing:97.059001px;}
.wsdc{word-spacing:98.021994px;}
.wscc{word-spacing:99.246000px;}
.ws99{word-spacing:118.499258px;}
.wsca{word-spacing:126.174000px;}
.wsb5{word-spacing:137.764174px;}
.wsa6{word-spacing:157.817964px;}
.wsa4{word-spacing:169.319983px;}
.wsd2{word-spacing:185.049451px;}
.wsa0{word-spacing:185.458598px;}
.ws9f{word-spacing:185.909845px;}
.wsa1{word-spacing:185.994731px;}
.wsa3{word-spacing:192.317964px;}
.wsa7{word-spacing:227.897614px;}
.wsa5{word-spacing:229.289032px;}
.wsa2{word-spacing:238.017000px;}
.wsa8{word-spacing:299.165982px;}
.ws8b{word-spacing:445.382985px;}
.wsc9{word-spacing:555.237000px;}
._c{margin-left:-2959.376944px;}
._4d{margin-left:-219.817048px;}
._36{margin-left:-207.809158px;}
._3b{margin-left:-201.246000px;}
._4e{margin-left:-187.555613px;}
._37{margin-left:-174.436380px;}
._4f{margin-left:-164.235344px;}
._1a{margin-left:-150.756000px;}
._33{margin-left:-139.110036px;}
._45{margin-left:-117.885542px;}
._32{margin-left:-101.417362px;}
._a{margin-left:-96.900000px;}
._38{margin-left:-17.914111px;}
._7{margin-left:-16.575000px;}
._15{margin-left:-12.240018px;}
._39{margin-left:-10.177859px;}
._f{margin-left:-8.970000px;}
._12{margin-left:-7.770011px;}
._3{margin-left:-6.624000px;}
._1{margin-left:-4.622700px;}
._2{margin-left:-3.273600px;}
._0{margin-left:-1.632000px;}
._5{width:1.021878px;}
._6{width:2.520000px;}
._29{width:3.757122px;}
._d{width:4.860000px;}
._10{width:6.169722px;}
._13{width:7.812000px;}
._16{width:10.181986px;}
._14{width:12.071987px;}
._11{width:13.651722px;}
._17{width:15.967500px;}
._8{width:18.360000px;}
._19{width:34.934989px;}
._4{width:39.544178px;}
._9{width:54.621000px;}
._4c{width:57.936000px;}
._26{width:61.506000px;}
._2b{width:70.992000px;}
._2f{width:72.318000px;}
._24{width:77.265000px;}
._25{width:78.896999px;}
._20{width:87.006000px;}
._1d{width:95.369994px;}
._22{width:96.440989px;}
._18{width:108.762822px;}
._41{width:111.996000px;}
._30{width:113.679000px;}
._44{width:128.061000px;}
._34{width:130.355998px;}
._31{width:132.293993px;}
._3f{width:145.911000px;}
._28{width:147.440993px;}
._49{width:154.172993px;}
._3a{width:159.252822px;}
._43{width:162.384000px;}
._42{width:163.557000px;}
._2e{width:172.125000px;}
._2c{width:174.420000px;}
._2d{width:177.225000px;}
._46{width:198.785990px;}
._2a{width:234.855000px;}
._1e{width:239.445000px;}
._47{width:250.154989px;}
._1b{width:252.093000px;}
._3d{width:298.809000px;}
._21{width:305.898000px;}
._1f{width:311.559000px;}
._35{width:316.157488px;}
._1c{width:325.788000px;}
._27{width:328.491000px;}
._40{width:365.262000px;}
._3e{width:370.923000px;}
._3c{width:385.152000px;}
._4b{width:417.280122px;}
._23{width:432.427122px;}
._e{width:476.742559px;}
._4a{width:728.229000px;}
._48{width:888.114000px;}
._b{width:1838.855944px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:51.143400px;}
.fse{font-size:52.287598px;}
.fsc{font-size:54.088800px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:62.745000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:64.906200px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y22{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y5c{bottom:112.938300px;}
.y121{bottom:112.944300px;}
.y92{bottom:113.415344px;}
.y2f7{bottom:113.544342px;}
.y12c{bottom:114.735260px;}
.yc5{bottom:114.735306px;}
.y174{bottom:114.874786px;}
.y153{bottom:114.874969px;}
.y39d{bottom:116.938883px;}
.y186{bottom:120.582150px;}
.y31f{bottom:121.975050px;}
.y4e{bottom:122.461395px;}
.y2c2{bottom:124.930800px;}
.y278{bottom:125.724309px;}
.y2c3{bottom:125.856445px;}
.y120{bottom:127.938300px;}
.y20e{bottom:131.283325px;}
.y39c{bottom:131.932883px;}
.y419{bottom:131.991275px;}
.y252{bottom:132.123322px;}
.y91{bottom:132.165344px;}
.y2f6{bottom:132.294342px;}
.y5b{bottom:133.032303px;}
.y12b{bottom:133.485260px;}
.yc4{bottom:133.485306px;}
.y23d{bottom:133.488316px;}
.y173{bottom:133.624786px;}
.y152{bottom:133.624969px;}
.y31e{bottom:136.969050px;}
.y35b{bottom:138.741340px;}
.y21{bottom:139.264499px;}
.y185{bottom:139.332150px;}
.y277{bottom:140.718309px;}
.y4d{bottom:141.211395px;}
.y2b1{bottom:142.858795px;}
.y3d8{bottom:146.602823px;}
.y39b{bottom:146.926883px;}
.y418{bottom:146.985275px;}
.y11f{bottom:148.032303px;}
.y20d{bottom:150.033325px;}
.y5a{bottom:150.485553px;}
.y251{bottom:150.873322px;}
.y90{bottom:150.915344px;}
.y2f5{bottom:151.044342px;}
.y31d{bottom:151.963050px;}
.y12a{bottom:152.235260px;}
.yc3{bottom:152.235306px;}
.y23c{bottom:152.238316px;}
.y172{bottom:152.374786px;}
.y151{bottom:152.374969px;}
.y35a{bottom:153.735340px;}
.y276{bottom:155.712309px;}
.y184{bottom:158.082150px;}
.y2b2{bottom:158.767297px;}
.y4c{bottom:159.961395px;}
.y3d7{bottom:161.596823px;}
.y39a{bottom:161.920883px;}
.y417{bottom:161.979275px;}
.y31c{bottom:166.957050px;}
.y359{bottom:168.729340px;}
.y20c{bottom:168.783325px;}
.y250{bottom:169.623322px;}
.y8f{bottom:169.665344px;}
.y2f4{bottom:169.794342px;}
.y59{bottom:170.579556px;}
.y275{bottom:170.706309px;}
.y11e{bottom:170.880295px;}
.y129{bottom:170.985260px;}
.yc2{bottom:170.985306px;}
.y23b{bottom:170.988316px;}
.y171{bottom:171.124786px;}
.y150{bottom:171.124969px;}
.y2b3{bottom:174.675798px;}
.y3d6{bottom:176.590823px;}
.y183{bottom:176.832150px;}
.y399{bottom:176.914883px;}
.y416{bottom:176.973275px;}
.y4b{bottom:178.711395px;}
.y31b{bottom:181.951050px;}
.y358{bottom:183.723340px;}
.y274{bottom:185.700309px;}
.y20b{bottom:187.533325px;}
.y58{bottom:188.032794px;}
.y24f{bottom:188.373322px;}
.y8e{bottom:188.415344px;}
.y2f3{bottom:188.544342px;}
.y11d{bottom:189.630295px;}
.y128{bottom:189.735260px;}
.yc1{bottom:189.735306px;}
.y23a{bottom:189.738316px;}
.y170{bottom:189.874786px;}
.y14f{bottom:189.874969px;}
.y2b4{bottom:190.584300px;}
.y3d5{bottom:191.584823px;}
.y398{bottom:191.908883px;}
.y415{bottom:191.967275px;}
.y18{bottom:196.933500px;}
.y31a{bottom:196.945050px;}
.y4a{bottom:197.461395px;}
.y357{bottom:198.717340px;}
.y273{bottom:200.694309px;}
.y2c1{bottom:202.384804px;}
.y20a{bottom:206.283325px;}
.y2b5{bottom:206.492802px;}
.y3d4{bottom:206.578823px;}
.y397{bottom:206.902883px;}
.y414{bottom:206.961275px;}
.y24e{bottom:207.123322px;}
.y8d{bottom:207.165344px;}
.y2f2{bottom:207.294342px;}
.y57{bottom:208.126808px;}
.y11c{bottom:208.380295px;}
.y127{bottom:208.485260px;}
.yc0{bottom:208.485306px;}
.y239{bottom:208.488316px;}
.y16f{bottom:208.624786px;}
.y1b6{bottom:208.624947px;}
.y14e{bottom:208.624969px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y319{bottom:211.939050px;}
.y356{bottom:213.711340px;}
.y49{bottom:216.211395px;}
.y272{bottom:220.788300px;}
.y3d3{bottom:221.572823px;}
.y396{bottom:221.896883px;}
.y413{bottom:221.955275px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2b6{bottom:222.401303px;}
.y209{bottom:225.033325px;}
.y56{bottom:225.580059px;}
.y24d{bottom:225.873322px;}
.y8c{bottom:225.915344px;}
.y2f1{bottom:226.044342px;}
.y11b{bottom:227.130295px;}
.y126{bottom:227.235260px;}
.ybf{bottom:227.235306px;}
.y16e{bottom:227.374786px;}
.y1b5{bottom:227.374947px;}
.y14d{bottom:227.374969px;}
.y355{bottom:228.705340px;}
.y1ab{bottom:231.282298px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y48{bottom:234.961395px;}
.y3d2{bottom:236.566823px;}
.y395{bottom:236.890883px;}
.y412{bottom:236.949275px;}
.y2b7{bottom:238.309805px;}
.y318{bottom:241.939800px;}
.y354{bottom:243.699340px;}
.y208{bottom:243.783325px;}
.y24c{bottom:244.623322px;}
.y8b{bottom:244.665344px;}
.y2f0{bottom:244.794342px;}
.y55{bottom:245.674049px;}
.y11a{bottom:245.880295px;}
.y125{bottom:245.985260px;}
.ybe{bottom:245.985306px;}
.y238{bottom:245.988316px;}
.y16d{bottom:246.124786px;}
.y1b4{bottom:246.124947px;}
.y14c{bottom:246.124969px;}
.y1aa{bottom:250.534798px;}
.y3d1{bottom:251.560823px;}
.y394{bottom:251.884883px;}
.y411{bottom:251.943275px;}
.y47{bottom:253.711395px;}
.y2b8{bottom:254.218306px;}
.y317{bottom:256.933800px;}
.y353{bottom:258.693340px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y207{bottom:262.533325px;}
.y54{bottom:263.127300px;}
.y24b{bottom:263.373322px;}
.y8a{bottom:263.415344px;}
.y2ef{bottom:263.544342px;}
.y261{bottom:264.564285px;}
.y119{bottom:264.630295px;}
.y124{bottom:264.735260px;}
.ybd{bottom:264.735306px;}
.y16c{bottom:264.874786px;}
.y1b3{bottom:264.874947px;}
.y14b{bottom:264.874969px;}
.y1a9{bottom:265.528798px;}
.y3d0{bottom:266.554823px;}
.y393{bottom:266.878883px;}
.y410{bottom:266.937275px;}
.y2b9{bottom:270.126808px;}
.y46{bottom:272.461395px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y352{bottom:273.687340px;}
.y1a8{bottom:280.522798px;}
.y206{bottom:281.283325px;}
.y3cf{bottom:281.548823px;}
.y392{bottom:281.872883px;}
.y40f{bottom:281.931275px;}
.y24a{bottom:282.123322px;}
.y89{bottom:282.165344px;}
.y2ee{bottom:282.294342px;}
.y53{bottom:283.221291px;}
.y260{bottom:283.314285px;}
.y118{bottom:283.380295px;}
.y123{bottom:283.485260px;}
.ybc{bottom:283.485306px;}
.y237{bottom:283.488316px;}
.y16b{bottom:283.624786px;}
.y1b2{bottom:283.624947px;}
.y14a{bottom:283.624969px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y2ba{bottom:286.035309px;}
.y316{bottom:286.933800px;}
.y351{bottom:288.681340px;}
.y45{bottom:291.211395px;}
.y3ce{bottom:296.542823px;}
.y391{bottom:296.866883px;}
.y40e{bottom:296.925275px;}
.y205{bottom:300.033325px;}
.y249{bottom:300.873322px;}
.y88{bottom:300.915344px;}
.y2ed{bottom:301.044342px;}
.y2bb{bottom:301.943811px;}
.y25f{bottom:302.064285px;}
.y117{bottom:302.130295px;}
.y122{bottom:302.235260px;}
.ybb{bottom:302.235306px;}
.y236{bottom:302.238316px;}
.y16a{bottom:302.374786px;}
.y1cd{bottom:302.374947px;}
.y149{bottom:302.374969px;}
.y350{bottom:303.675340px;}
.y52{bottom:308.228392px;}
.y1b0{bottom:309.319189px;}
.y44{bottom:309.961395px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y3cd{bottom:311.536823px;}
.y44c{bottom:311.677076px;}
.y390{bottom:311.860883px;}
.y40d{bottom:311.919275px;}
.y2bc{bottom:317.852313px;}
.y34f{bottom:318.669340px;}
.y204{bottom:318.783325px;}
.y248{bottom:319.623322px;}
.y87{bottom:319.665344px;}
.y2ec{bottom:319.794342px;}
.y315{bottom:320.718323px;}
.y25e{bottom:320.814285px;}
.y116{bottom:320.880295px;}
.yec{bottom:320.985260px;}
.yba{bottom:320.985306px;}
.y235{bottom:320.988316px;}
.y169{bottom:321.124786px;}
.y1cc{bottom:321.124947px;}
.y148{bottom:321.124969px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y51{bottom:323.222392px;}
.y1af{bottom:324.313189px;}
.y3cc{bottom:326.530823px;}
.y44b{bottom:326.671076px;}
.y38f{bottom:326.854883px;}
.y40c{bottom:326.913275px;}
.y43{bottom:328.711395px;}
.y34e{bottom:333.663340px;}
.y2bd{bottom:333.760814px;}
.y314{bottom:335.712323px;}
.y203{bottom:337.533325px;}
.y247{bottom:338.373322px;}
.y86{bottom:338.415344px;}
.y2eb{bottom:338.544342px;}
.y25d{bottom:339.564285px;}
.y115{bottom:339.630295px;}
.yeb{bottom:339.735260px;}
.ye7{bottom:339.735306px;}
.y234{bottom:339.738316px;}
.y168{bottom:339.874786px;}
.y1cb{bottom:339.874947px;}
.y147{bottom:339.874969px;}
.y3cb{bottom:341.524823px;}
.y38e{bottom:341.848883px;}
.y40b{bottom:341.907275px;}
.y1ae{bottom:343.102199px;}
.y42{bottom:347.461395px;}
.yf{bottom:348.133500px;}
.y34d{bottom:348.657340px;}
.y2be{bottom:349.669316px;}
.y1a7{bottom:350.749796px;}
.y50{bottom:354.039142px;}
.y202{bottom:356.283325px;}
.y3ca{bottom:356.518823px;}
.y44a{bottom:356.761074px;}
.y38d{bottom:356.842883px;}
.y40a{bottom:356.901275px;}
.y246{bottom:357.123322px;}
.y85{bottom:357.165344px;}
.y2ea{bottom:357.294342px;}
.y25c{bottom:358.314285px;}
.y114{bottom:358.380295px;}
.yea{bottom:358.485260px;}
.yb9{bottom:358.485306px;}
.y233{bottom:358.488316px;}
.y167{bottom:358.624786px;}
.y1ca{bottom:358.624947px;}
.y146{bottom:358.624969px;}
.y1ad{bottom:361.818458px;}
.y34c{bottom:363.651340px;}
.y2bf{bottom:365.577817px;}
.y313{bottom:365.713073px;}
.y1a6{bottom:365.743796px;}
.y41{bottom:366.211395px;}
.y4f{bottom:369.033142px;}
.y3c9{bottom:371.512823px;}
.y449{bottom:371.755074px;}
.y38c{bottom:371.836883px;}
.y409{bottom:371.895275px;}
.y201{bottom:375.033325px;}
.y245{bottom:375.873322px;}
.y84{bottom:375.915344px;}
.y2e9{bottom:376.044342px;}
.y25b{bottom:377.064285px;}
.y113{bottom:377.130295px;}
.ye9{bottom:377.235260px;}
.ye6{bottom:377.235306px;}
.y232{bottom:377.238316px;}
.y166{bottom:377.374786px;}
.y1c9{bottom:377.374947px;}
.y145{bottom:377.374969px;}
.y34b{bottom:378.645340px;}
.y2b0{bottom:380.629605px;}
.y312{bottom:380.707073px;}
.y1a5{bottom:380.737796px;}
.y2c0{bottom:380.937299px;}
.y40{bottom:384.961395px;}
.y3c8{bottom:386.506823px;}
.ye{bottom:386.785499px;}
.y38b{bottom:386.830883px;}
.y408{bottom:386.889275px;}
.y1ac{bottom:389.906708px;}
.y34a{bottom:393.639340px;}
.y200{bottom:393.783325px;}
.y244{bottom:394.623322px;}
.y83{bottom:394.665344px;}
.y2e8{bottom:394.794342px;}
.y2af{bottom:395.623605px;}
.y1a4{bottom:395.731796px;}
.y25a{bottom:395.814285px;}
.ye8{bottom:395.985260px;}
.ye5{bottom:395.985306px;}
.y231{bottom:395.988316px;}
.y165{bottom:396.124786px;}
.y1c8{bottom:396.124947px;}
.y144{bottom:396.124969px;}
.y3c7{bottom:401.500823px;}
.y38a{bottom:401.824883px;}
.y448{bottom:401.845073px;}
.y407{bottom:401.883275px;}
.y3f{bottom:403.711395px;}
.yd{bottom:408.044999px;}
.y349{bottom:408.633340px;}
.y2ae{bottom:410.617605px;}
.y311{bottom:410.707823px;}
.y1ff{bottom:412.533325px;}
.y243{bottom:413.373322px;}
.y82{bottom:413.415344px;}
.y2e7{bottom:413.544342px;}
.y259{bottom:414.564285px;}
.y112{bottom:414.630295px;}
.yb8{bottom:414.735260px;}
.ye4{bottom:414.735306px;}
.y230{bottom:414.738316px;}
.y164{bottom:414.874786px;}
.y1c7{bottom:414.874947px;}
.y143{bottom:414.874969px;}
.y3c6{bottom:416.494823px;}
.y389{bottom:416.818883px;}
.y447{bottom:416.839073px;}
.y406{bottom:416.877275px;}
.y3e{bottom:422.461395px;}
.y348{bottom:423.627340px;}
.y310{bottom:425.701823px;}
.y1fe{bottom:431.283325px;}
.y3c5{bottom:431.488823px;}
.y388{bottom:431.812883px;}
.y446{bottom:431.833073px;}
.y405{bottom:431.871275px;}
.y242{bottom:432.123322px;}
.y81{bottom:432.165344px;}
.y2e6{bottom:432.294342px;}
.y258{bottom:433.314285px;}
.yb7{bottom:433.485260px;}
.ye3{bottom:433.485306px;}
.y22f{bottom:433.488316px;}
.y163{bottom:433.624786px;}
.y1c6{bottom:433.624947px;}
.y142{bottom:433.624969px;}
.y347{bottom:438.621340px;}
.y30f{bottom:440.695823px;}
.y3d{bottom:441.211395px;}
.y3c4{bottom:446.482823px;}
.y387{bottom:446.806883px;}
.y445{bottom:446.827073px;}
.y404{bottom:446.865275px;}
.y1fd{bottom:450.033325px;}
.y241{bottom:450.873322px;}
.y80{bottom:450.915344px;}
.y2e5{bottom:451.044342px;}
.y257{bottom:452.064285px;}
.y111{bottom:452.130295px;}
.yb6{bottom:452.235260px;}
.ye2{bottom:452.235306px;}
.y22e{bottom:452.238316px;}
.y162{bottom:452.374786px;}
.y1c5{bottom:452.374947px;}
.y141{bottom:452.374969px;}
.y346{bottom:453.615340px;}
.y30e{bottom:455.689823px;}
.y3c{bottom:459.961395px;}
.y3c3{bottom:461.476823px;}
.y386{bottom:461.800883px;}
.y444{bottom:461.821073px;}
.y403{bottom:461.859275px;}
.y1a3{bottom:466.729797px;}
.y345{bottom:468.609340px;}
.y1fc{bottom:468.783325px;}
.y240{bottom:469.623322px;}
.y7f{bottom:469.665344px;}
.y2e4{bottom:469.794342px;}
.y280{bottom:470.659515px;}
.y30d{bottom:470.683823px;}
.y256{bottom:470.814285px;}
.yb5{bottom:470.985260px;}
.ye1{bottom:470.985306px;}
.y22d{bottom:470.988316px;}
.y297{bottom:471.124515px;}
.y161{bottom:471.124786px;}
.y1c4{bottom:471.124947px;}
.y140{bottom:471.124969px;}
.y3c2{bottom:476.470823px;}
.y385{bottom:476.794883px;}
.y443{bottom:476.815073px;}
.y402{bottom:476.853275px;}
.y3b{bottom:478.711395px;}
.y344{bottom:483.603340px;}
.y1fb{bottom:487.533325px;}
.y23f{bottom:488.373322px;}
.y7e{bottom:488.415344px;}
.y2e3{bottom:488.544342px;}
.y27f{bottom:489.409515px;}
.y255{bottom:489.564285px;}
.y110{bottom:489.630295px;}
.yb4{bottom:489.735260px;}
.ye0{bottom:489.735306px;}
.y22c{bottom:489.738316px;}
.y296{bottom:489.874515px;}
.y160{bottom:489.874786px;}
.y1c3{bottom:489.874947px;}
.y13f{bottom:489.874969px;}
.y1a2{bottom:490.645049px;}
.y3c1{bottom:491.464823px;}
.y384{bottom:491.788883px;}
.y442{bottom:491.809073px;}
.y401{bottom:491.847275px;}
.y343{bottom:498.597340px;}
.y30c{bottom:500.683777px;}
.yc{bottom:502.864502px;}
.y199{bottom:505.617279px;}
.y1fa{bottom:506.283325px;}
.y3c0{bottom:506.458823px;}
.y383{bottom:506.782883px;}
.y441{bottom:506.803073px;}
.y400{bottom:506.841275px;}
.y7d{bottom:507.165344px;}
.y2e2{bottom:507.294342px;}
.y27e{bottom:508.159515px;}
.y254{bottom:508.308322px;}
.y10f{bottom:508.380295px;}
.yb3{bottom:508.485260px;}
.ydf{bottom:508.485306px;}
.y295{bottom:508.624515px;}
.y15f{bottom:508.624786px;}
.y1c2{bottom:508.624947px;}
.y13e{bottom:508.624969px;}
.y342{bottom:513.591340px;}
.y30b{bottom:519.433777px;}
.yb{bottom:520.864502px;}
.y3bf{bottom:521.452823px;}
.y382{bottom:521.776883px;}
.y440{bottom:521.797073px;}
.y3ff{bottom:521.835275px;}
.y1f9{bottom:525.033325px;}
.y23e{bottom:525.873322px;}
.y7c{bottom:525.915344px;}
.y2e1{bottom:526.044342px;}
.y27d{bottom:526.909515px;}
.y253{bottom:527.058322px;}
.y10e{bottom:527.130295px;}
.yb2{bottom:527.235260px;}
.yde{bottom:527.235306px;}
.y22b{bottom:527.238316px;}
.y294{bottom:527.374515px;}
.y15e{bottom:527.374786px;}
.y1c1{bottom:527.374947px;}
.y13d{bottom:527.374969px;}
.y341{bottom:528.585340px;}
.y19a{bottom:533.196358px;}
.y3a{bottom:534.961395px;}
.y3be{bottom:536.446823px;}
.y381{bottom:536.770883px;}
.y43f{bottom:536.791073px;}
.y3fe{bottom:536.829275px;}
.y30a{bottom:538.183777px;}
.ya{bottom:538.864499px;}
.y340{bottom:543.579340px;}
.y1f8{bottom:543.783325px;}
.y7b{bottom:544.665344px;}
.y2e0{bottom:544.794342px;}
.y27c{bottom:545.659515px;}
.y10d{bottom:545.880295px;}
.yb1{bottom:545.985260px;}
.ydd{bottom:545.985306px;}
.y22a{bottom:545.988316px;}
.y293{bottom:546.124515px;}
.y15d{bottom:546.124786px;}
.y1c0{bottom:546.124947px;}
.y13c{bottom:546.124969px;}
.y3bd{bottom:551.440823px;}
.y380{bottom:551.764883px;}
.y43e{bottom:551.785073px;}
.y3fd{bottom:551.823275px;}
.y9{bottom:556.864499px;}
.y309{bottom:556.933777px;}
.y33f{bottom:558.573340px;}
.y19b{bottom:560.775436px;}
.y1f7{bottom:562.533325px;}
.y7a{bottom:563.415344px;}
.y2df{bottom:563.544342px;}
.y27b{bottom:564.409515px;}
.y10c{bottom:564.630295px;}
.yb0{bottom:564.735260px;}
.ydc{bottom:564.735306px;}
.y229{bottom:564.738316px;}
.y292{bottom:564.874515px;}
.y15c{bottom:564.874786px;}
.y1bf{bottom:564.874947px;}
.y13b{bottom:564.874969px;}
.y3bc{bottom:566.434823px;}
.y37f{bottom:566.758883px;}
.y43d{bottom:566.779073px;}
.y3fc{bottom:566.817275px;}
.y39{bottom:572.461395px;}
.y33e{bottom:573.567340px;}
.y308{bottom:575.683777px;}
.y1f6{bottom:581.283325px;}
.y3bb{bottom:581.428823px;}
.y37e{bottom:581.752883px;}
.y43c{bottom:581.773073px;}
.y3fb{bottom:581.811275px;}
.y79{bottom:582.165344px;}
.y2de{bottom:582.294342px;}
.y27a{bottom:583.159515px;}
.yaf{bottom:583.485260px;}
.ydb{bottom:583.485306px;}
.y228{bottom:583.488316px;}
.y291{bottom:583.624515px;}
.y15b{bottom:583.624786px;}
.y1be{bottom:583.624947px;}
.y13a{bottom:583.624969px;}
.y19c{bottom:588.354514px;}
.y33d{bottom:588.561340px;}
.y38{bottom:591.211395px;}
.y307{bottom:594.433777px;}
.y3ba{bottom:596.422823px;}
.y37d{bottom:596.746883px;}
.y43b{bottom:596.767073px;}
.y3fa{bottom:596.805275px;}
.y271{bottom:598.006348px;}
.y1f5{bottom:600.033325px;}
.y78{bottom:600.915344px;}
.y2dd{bottom:601.044342px;}
.y279{bottom:601.909515px;}
.y10b{bottom:602.130295px;}
.yae{bottom:602.235260px;}
.yda{bottom:602.235306px;}
.y227{bottom:602.238316px;}
.y290{bottom:602.374515px;}
.y15a{bottom:602.374786px;}
.y1bd{bottom:602.374947px;}
.y139{bottom:602.374969px;}
.y33c{bottom:603.555340px;}
.y37{bottom:609.961395px;}
.y3b9{bottom:611.416823px;}
.y37c{bottom:611.740883px;}
.y43a{bottom:611.761073px;}
.y3f9{bottom:611.799275px;}
.y306{bottom:613.183777px;}
.y19d{bottom:615.933593px;}
.y33b{bottom:618.549340px;}
.y1f4{bottom:618.783325px;}
.y77{bottom:619.665344px;}
.y2dc{bottom:619.794342px;}
.yad{bottom:620.985260px;}
.yd9{bottom:620.985306px;}
.y226{bottom:620.988316px;}
.y28f{bottom:621.124515px;}
.y159{bottom:621.124786px;}
.y1bc{bottom:621.124947px;}
.y138{bottom:621.124969px;}
.y270{bottom:621.924620px;}
.y3b8{bottom:626.410823px;}
.y37b{bottom:626.734883px;}
.y439{bottom:626.755073px;}
.y3f8{bottom:626.793275px;}
.y36{bottom:628.711395px;}
.y305{bottom:631.933777px;}
.y33a{bottom:633.543340px;}
.y267{bottom:636.896850px;}
.y1f3{bottom:637.533325px;}
.y76{bottom:638.415344px;}
.y2db{bottom:638.544342px;}
.yac{bottom:639.735260px;}
.yf2{bottom:639.735306px;}
.y225{bottom:639.738316px;}
.y28e{bottom:639.874515px;}
.y158{bottom:639.874786px;}
.y1bb{bottom:639.874947px;}
.y137{bottom:639.874969px;}
.y3b7{bottom:641.404823px;}
.y37a{bottom:641.728883px;}
.y438{bottom:641.749073px;}
.y3f7{bottom:641.787275px;}
.y19e{bottom:643.512671px;}
.y8{bottom:645.510000px;}
.y2a6{bottom:647.062524px;}
.y35{bottom:647.461395px;}
.y339{bottom:648.537340px;}
.y304{bottom:650.683777px;}
.y1f2{bottom:656.283325px;}
.y3b6{bottom:656.398823px;}
.y379{bottom:656.722883px;}
.y437{bottom:656.743073px;}
.y3f6{bottom:656.781275px;}
.y75{bottom:657.165344px;}
.y2da{bottom:657.294342px;}
.y10a{bottom:658.380306px;}
.yd8{bottom:658.479306px;}
.yab{bottom:658.485260px;}
.yf1{bottom:658.485306px;}
.y28d{bottom:658.624515px;}
.y157{bottom:658.624786px;}
.y1ba{bottom:658.624947px;}
.y136{bottom:658.624969px;}
.y338{bottom:663.531340px;}
.y268{bottom:664.475928px;}
.y34{bottom:666.211395px;}
.y2a5{bottom:666.315024px;}
.y7{bottom:666.771000px;}
.y303{bottom:669.433777px;}
.y19f{bottom:671.091750px;}
.y3b5{bottom:671.392823px;}
.y378{bottom:671.716883px;}
.y436{bottom:671.737073px;}
.y3f5{bottom:671.775275px;}
.y1f1{bottom:675.033325px;}
.y74{bottom:675.915344px;}
.y2d9{bottom:676.044342px;}
.y109{bottom:677.130306px;}
.yaa{bottom:677.235260px;}
.yd7{bottom:677.235306px;}
.y224{bottom:677.238316px;}
.y28c{bottom:677.374515px;}
.y156{bottom:677.374786px;}
.y1b9{bottom:677.374947px;}
.y135{bottom:677.374969px;}
.y337{bottom:678.525340px;}
.y2a4{bottom:681.309024px;}
.y33{bottom:684.961395px;}
.y3b4{bottom:686.386823px;}
.y377{bottom:686.710883px;}
.y435{bottom:686.731073px;}
.y3f4{bottom:686.769275px;}
.y302{bottom:688.183777px;}
.y269{bottom:692.055007px;}
.y336{bottom:693.519340px;}
.y1f0{bottom:693.783325px;}
.y73{bottom:694.665344px;}
.y2d8{bottom:694.794342px;}
.y108{bottom:695.880306px;}
.ya9{bottom:695.985260px;}
.yf0{bottom:695.985306px;}
.y28b{bottom:696.124515px;}
.y155{bottom:696.124786px;}
.y1b8{bottom:696.124947px;}
.y134{bottom:696.124969px;}
.y2a3{bottom:696.303024px;}
.y1a0{bottom:698.670828px;}
.y3b3{bottom:701.380823px;}
.y376{bottom:701.704883px;}
.y434{bottom:701.725073px;}
.y3f3{bottom:701.763275px;}
.y32{bottom:703.711395px;}
.y301{bottom:706.933777px;}
.y335{bottom:708.513340px;}
.y2a2{bottom:711.297024px;}
.y1ef{bottom:712.533325px;}
.y72{bottom:713.415344px;}
.y2d7{bottom:713.544342px;}
.y107{bottom:714.630306px;}
.ya8{bottom:714.735260px;}
.yef{bottom:714.735306px;}
.y223{bottom:714.738316px;}
.yf3{bottom:714.741306px;}
.y28a{bottom:714.874515px;}
.y1b1{bottom:714.874786px;}
.y1b7{bottom:714.874947px;}
.y133{bottom:714.874969px;}
.y3b2{bottom:716.374823px;}
.y375{bottom:716.698883px;}
.y433{bottom:716.719073px;}
.y3f2{bottom:716.757275px;}
.y198{bottom:718.492777px;}
.y26a{bottom:719.634085px;}
.y31{bottom:722.461395px;}
.y334{bottom:723.507340px;}
.y300{bottom:725.683777px;}
.y1a1{bottom:726.249907px;}
.y2a1{bottom:726.291024px;}
.y6{bottom:726.298500px;}
.y1ee{bottom:731.283325px;}
.y3b1{bottom:731.368823px;}
.y374{bottom:731.692883px;}
.y432{bottom:731.713073px;}
.y3f1{bottom:731.751275px;}
.y71{bottom:732.165344px;}
.y2d6{bottom:732.294342px;}
.y106{bottom:733.380306px;}
.ya7{bottom:733.485260px;}
.yd6{bottom:733.485306px;}
.y197{bottom:733.486777px;}
.y222{bottom:733.488316px;}
.y289{bottom:733.624515px;}
.y154{bottom:733.624786px;}
.y132{bottom:733.624969px;}
.y333{bottom:738.501340px;}
.y30{bottom:741.211395px;}
.y2ff{bottom:744.433777px;}
.y3b0{bottom:746.362823px;}
.y373{bottom:746.686883px;}
.y431{bottom:746.707073px;}
.y3f0{bottom:746.745275px;}
.y26b{bottom:747.213164px;}
.y1ed{bottom:750.033325px;}
.y70{bottom:750.915344px;}
.y2d5{bottom:751.044342px;}
.y105{bottom:752.130306px;}
.ya6{bottom:752.235260px;}
.yd5{bottom:752.235306px;}
.y221{bottom:752.238316px;}
.y288{bottom:752.374515px;}
.y131{bottom:752.374969px;}
.y3{bottom:752.599495px;}
.y332{bottom:753.495340px;}
.y2ac{bottom:754.987477px;}
.y2f{bottom:759.961395px;}
.y3af{bottom:761.356823px;}
.y372{bottom:761.680883px;}
.y430{bottom:761.701073px;}
.y3ef{bottom:761.739275px;}
.y2fe{bottom:763.183777px;}
.y331{bottom:768.489340px;}
.y1ec{bottom:768.783325px;}
.y6f{bottom:769.665344px;}
.y2d4{bottom:769.794342px;}
.y2ab{bottom:769.981477px;}
.y104{bottom:770.880306px;}
.ya5{bottom:770.985260px;}
.y220{bottom:770.988316px;}
.y287{bottom:771.124515px;}
.y130{bottom:771.124969px;}
.y1df{bottom:773.401520px;}
.y26c{bottom:774.792242px;}
.y3ae{bottom:776.350823px;}
.y371{bottom:776.674883px;}
.y42f{bottom:776.695073px;}
.y3ee{bottom:776.733275px;}
.y189{bottom:778.390851px;}
.y2e{bottom:778.711395px;}
.y2fd{bottom:781.933777px;}
.y330{bottom:783.483340px;}
.y2aa{bottom:784.975477px;}
.y1eb{bottom:787.533325px;}
.y6e{bottom:788.415344px;}
.y2d3{bottom:788.544342px;}
.y103{bottom:789.630306px;}
.ya4{bottom:789.735260px;}
.yd4{bottom:789.735306px;}
.y21f{bottom:789.738316px;}
.y286{bottom:789.874515px;}
.y12f{bottom:789.874969px;}
.y3ad{bottom:791.344823px;}
.y370{bottom:791.668883px;}
.y42e{bottom:791.689073px;}
.y3ed{bottom:791.727275px;}
.y188{bottom:793.384851px;}
.y1ce{bottom:794.015991px;}
.y2d{bottom:797.461395px;}
.y32f{bottom:798.477340px;}
.y2a9{bottom:799.969477px;}
.y2ad{bottom:799.982227px;}
.y2fc{bottom:800.683777px;}
.y26d{bottom:802.371321px;}
.y1ea{bottom:806.283325px;}
.y3ac{bottom:806.338823px;}
.y36f{bottom:806.662883px;}
.y42d{bottom:806.683073px;}
.y3ec{bottom:806.721275px;}
.y6d{bottom:807.165344px;}
.y2d2{bottom:807.294342px;}
.y187{bottom:808.378851px;}
.y102{bottom:808.380306px;}
.ya3{bottom:808.485260px;}
.yd3{bottom:808.485306px;}
.y21e{bottom:808.488316px;}
.y285{bottom:808.624515px;}
.y12e{bottom:808.624969px;}
.y1cf{bottom:811.540762px;}
.y32e{bottom:813.471340px;}
.y2c{bottom:816.211395px;}
.y2fb{bottom:819.433777px;}
.y3ab{bottom:821.332823px;}
.y36e{bottom:821.656883px;}
.y42c{bottom:821.677073px;}
.y3eb{bottom:821.715275px;}
.y1e9{bottom:825.033325px;}
.y6c{bottom:825.915344px;}
.y2d1{bottom:826.044342px;}
.y101{bottom:827.130306px;}
.ya2{bottom:827.235260px;}
.yd2{bottom:827.235306px;}
.y21d{bottom:827.238316px;}
.y284{bottom:827.374515px;}
.y12d{bottom:827.374969px;}
.y2a8{bottom:828.057727px;}
.y32d{bottom:828.465340px;}
.y1d0{bottom:829.065534px;}
.y26e{bottom:829.950399px;}
.y2b{bottom:834.961395px;}
.y196{bottom:835.971277px;}
.y3aa{bottom:836.326823px;}
.y36d{bottom:836.650883px;}
.y42b{bottom:836.671073px;}
.y3ea{bottom:836.709275px;}
.y2fa{bottom:838.183777px;}
.y2a7{bottom:843.051727px;}
.y32c{bottom:843.459340px;}
.y1e8{bottom:843.783325px;}
.y6b{bottom:844.665344px;}
.y2d0{bottom:844.794342px;}
.y100{bottom:845.880306px;}
.ya1{bottom:845.985260px;}
.yd1{bottom:845.985306px;}
.y21c{bottom:845.988316px;}
.y283{bottom:846.124515px;}
.y1d1{bottom:846.590305px;}
.y266{bottom:849.779529px;}
.y3a9{bottom:851.320823px;}
.y36c{bottom:851.644883px;}
.y42a{bottom:851.665073px;}
.y3e9{bottom:851.703275px;}
.y195{bottom:854.764777px;}
.y2f9{bottom:856.933777px;}
.y26f{bottom:857.529478px;}
.y32b{bottom:858.453340px;}
.y1e7{bottom:862.533325px;}
.y6a{bottom:863.415344px;}
.y2cf{bottom:863.544342px;}
.y1d2{bottom:864.115076px;}
.yff{bottom:864.630306px;}
.ya0{bottom:864.735260px;}
.yee{bottom:864.735306px;}
.y21b{bottom:864.738316px;}
.y265{bottom:864.773529px;}
.y282{bottom:864.874515px;}
.y3a8{bottom:866.314823px;}
.y36b{bottom:866.638883px;}
.y429{bottom:866.659073px;}
.y3e8{bottom:866.697275px;}
.y2a0{bottom:868.530024px;}
.y1de{bottom:869.812500px;}
.y32a{bottom:873.447340px;}
.y194{bottom:873.481777px;}
.y179{bottom:877.624094px;}
.y2a{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y3a7{bottom:881.308823px;}
.y36a{bottom:881.632883px;}
.y1d3{bottom:881.639847px;}
.y428{bottom:881.653073px;}
.y3e7{bottom:881.691275px;}
.y69{bottom:882.165344px;}
.y2ce{bottom:882.294342px;}
.yfe{bottom:883.380306px;}
.y9f{bottom:883.485260px;}
.yd0{bottom:883.485306px;}
.y21a{bottom:883.488316px;}
.y29f{bottom:883.524024px;}
.y281{bottom:883.624515px;}
.y329{bottom:888.441340px;}
.y193{bottom:892.198777px;}
.y29{bottom:894.138153px;}
.y2f8{bottom:894.433777px;}
.y3a6{bottom:896.302823px;}
.y369{bottom:896.626883px;}
.y427{bottom:896.647073px;}
.y3e6{bottom:896.685275px;}
.y178{bottom:896.876594px;}
.y1d4{bottom:899.164618px;}
.y1e6{bottom:900.033325px;}
.y68{bottom:900.915344px;}
.y2cd{bottom:901.044342px;}
.yfd{bottom:902.130306px;}
.y9e{bottom:902.235260px;}
.ycf{bottom:902.235306px;}
.y219{bottom:902.238316px;}
.y328{bottom:903.435340px;}
.y192{bottom:910.915777px;}
.y3a5{bottom:911.296823px;}
.y368{bottom:911.620883px;}
.y426{bottom:911.641073px;}
.y3e5{bottom:911.679275px;}
.y263{bottom:915.134594px;}
.y1d5{bottom:916.689390px;}
.y327{bottom:918.429340px;}
.y67{bottom:919.665344px;}
.y2cc{bottom:919.794342px;}
.yfc{bottom:920.880306px;}
.y9d{bottom:920.985260px;}
.yce{bottom:920.985306px;}
.y218{bottom:920.988316px;}
.y182{bottom:925.093777px;}
.y3a4{bottom:926.290823px;}
.y367{bottom:926.614883px;}
.y425{bottom:926.635073px;}
.y3e4{bottom:926.673275px;}
.y191{bottom:929.632777px;}
.y326{bottom:933.423340px;}
.y1d6{bottom:934.214161px;}
.y262{bottom:934.387094px;}
.y28{bottom:936.738190px;}
.y299{bottom:937.370594px;}
.y1e5{bottom:937.533325px;}
.y66{bottom:938.415344px;}
.y2cb{bottom:938.544342px;}
.yfb{bottom:939.630306px;}
.y9c{bottom:939.735260px;}
.yed{bottom:939.735306px;}
.y217{bottom:939.738316px;}
.y3a3{bottom:941.284823px;}
.y366{bottom:941.608883px;}
.y424{bottom:941.629073px;}
.y3e3{bottom:941.667275px;}
.y181{bottom:943.887277px;}
.y190{bottom:948.349777px;}
.y1d7{bottom:951.738932px;}
.y298{bottom:952.364594px;}
.y3a2{bottom:956.278823px;}
.y365{bottom:956.602883px;}
.y423{bottom:956.623073px;}
.y3e2{bottom:956.661275px;}
.y65{bottom:957.165344px;}
.y2ca{bottom:957.294342px;}
.yfa{bottom:958.380306px;}
.y9b{bottom:958.485260px;}
.ycd{bottom:958.485306px;}
.y216{bottom:958.488316px;}
.y264{bottom:962.527777px;}
.y180{bottom:962.604277px;}
.y1{bottom:966.726000px;}
.y18f{bottom:967.066777px;}
.y325{bottom:967.173340px;}
.y1d8{bottom:969.263703px;}
.y3a1{bottom:971.272823px;}
.y364{bottom:971.596883px;}
.y422{bottom:971.617073px;}
.y3e1{bottom:971.655275px;}
.y64{bottom:975.915344px;}
.y2c9{bottom:976.044342px;}
.yf9{bottom:977.130306px;}
.y9a{bottom:977.235260px;}
.ycc{bottom:977.235306px;}
.y215{bottom:977.238316px;}
.y29e{bottom:980.296524px;}
.y17f{bottom:981.321277px;}
.y27{bottom:981.424622px;}
.y18e{bottom:985.783777px;}
.y3a0{bottom:986.266823px;}
.y363{bottom:986.590883px;}
.y421{bottom:986.611073px;}
.y3e0{bottom:986.649275px;}
.y1d9{bottom:986.788474px;}
.y1e4{bottom:993.783325px;}
.y63{bottom:994.665344px;}
.y2c8{bottom:994.794342px;}
.yf8{bottom:995.880306px;}
.y99{bottom:995.985260px;}
.ycb{bottom:995.985306px;}
.y214{bottom:995.988316px;}
.y29d{bottom:999.090024px;}
.y17e{bottom:1000.038277px;}
.y39f{bottom:1001.260823px;}
.y362{bottom:1001.584883px;}
.y420{bottom:1001.605073px;}
.y3df{bottom:1001.643275px;}
.y1da{bottom:1004.313246px;}
.y18d{bottom:1004.500777px;}
.y26{bottom:1008.424622px;}
.y1e3{bottom:1012.533325px;}
.y62{bottom:1013.415344px;}
.y2c7{bottom:1013.544342px;}
.y98{bottom:1014.735260px;}
.yca{bottom:1014.735306px;}
.y213{bottom:1014.738316px;}
.y39e{bottom:1016.254823px;}
.y361{bottom:1016.578883px;}
.y41f{bottom:1016.599073px;}
.y3de{bottom:1016.637275px;}
.y29c{bottom:1017.807024px;}
.y17d{bottom:1018.755277px;}
.y1db{bottom:1021.838017px;}
.y18c{bottom:1023.217777px;}
.y324{bottom:1031.248823px;}
.y1e2{bottom:1031.283325px;}
.y360{bottom:1031.572883px;}
.y41e{bottom:1031.593073px;}
.y3dd{bottom:1031.631275px;}
.y61{bottom:1032.165344px;}
.y2c6{bottom:1032.294342px;}
.yf7{bottom:1033.380306px;}
.y97{bottom:1033.485260px;}
.yc9{bottom:1033.485306px;}
.y212{bottom:1033.488316px;}
.y29b{bottom:1036.524024px;}
.y17c{bottom:1037.472277px;}
.y1dc{bottom:1039.362788px;}
.y18b{bottom:1041.934777px;}
.y323{bottom:1046.242823px;}
.y35f{bottom:1046.566883px;}
.y41d{bottom:1046.587073px;}
.y3dc{bottom:1046.625275px;}
.y1e1{bottom:1050.033325px;}
.y60{bottom:1050.915344px;}
.y2c5{bottom:1051.044342px;}
.yf6{bottom:1052.130306px;}
.y96{bottom:1052.235260px;}
.yc8{bottom:1052.235306px;}
.y211{bottom:1052.238316px;}
.y1dd{bottom:1055.251373px;}
.y17b{bottom:1056.189277px;}
.y177{bottom:1060.114844px;}
.y322{bottom:1061.236823px;}
.y35e{bottom:1061.560883px;}
.y41c{bottom:1061.581073px;}
.y3db{bottom:1061.619275px;}
.y29a{bottom:1064.612274px;}
.y18a{bottom:1069.283527px;}
.y5f{bottom:1069.665344px;}
.yf5{bottom:1070.880306px;}
.y95{bottom:1070.985260px;}
.yc7{bottom:1070.985306px;}
.y210{bottom:1070.988316px;}
.y176{bottom:1075.108844px;}
.y25{bottom:1076.132080px;}
.y321{bottom:1076.230823px;}
.y35d{bottom:1076.554883px;}
.y41b{bottom:1076.575073px;}
.y3da{bottom:1076.613275px;}
.y17a{bottom:1084.277527px;}
.y1e0{bottom:1087.533325px;}
.y5e{bottom:1088.415344px;}
.y2c4{bottom:1088.544342px;}
.yf4{bottom:1089.630306px;}
.y94{bottom:1089.735260px;}
.yc6{bottom:1089.735306px;}
.y20f{bottom:1089.738316px;}
.y175{bottom:1090.102844px;}
.y320{bottom:1091.224823px;}
.y35c{bottom:1091.548883px;}
.y41a{bottom:1091.569073px;}
.y3d9{bottom:1091.607275px;}
.y24{bottom:1109.586556px;}
.y23{bottom:1126.582306px;}
.y5d{bottom:1127.482361px;}
.y93{bottom:1127.482544px;}
.h14{height:25.204199px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h1d{height:35.544663px;}
.h12{height:36.006000px;}
.h1e{height:36.008963px;}
.h1f{height:36.023963px;}
.h20{height:36.030037px;}
.h25{height:36.339880px;}
.h13{height:36.855469px;}
.h22{height:37.591716px;}
.h10{height:42.360000px;}
.h26{height:43.607775px;}
.hb{height:44.676000px;}
.h23{height:45.109809px;}
.h1b{height:45.186000px;}
.h1a{height:45.556211px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1c{height:52.173000px;}
.h11{height:53.160000px;}
.h19{height:53.652000px;}
.h21{height:53.652641px;}
.h24{height:53.675855px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h18{height:59.004000px;}
.hf{height:59.340000px;}
.h17{height:60.240000px;}
.h15{height:61.380000px;}
.he{height:64.866000px;}
.h16{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.xb{left:93.545402px;}
.xa{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:137.760902px;}
.x1b{left:198.769650px;}
.x4{left:203.484001px;}
.x1c{left:259.306650px;}
.xd{left:267.874652px;}
.x13{left:276.874215px;}
.xf{left:278.341800px;}
.x10{left:283.706841px;}
.x18{left:296.675240px;}
.x15{left:307.615952px;}
.x1f{left:311.071655px;}
.x16{left:312.118844px;}
.x20{left:315.424598px;}
.x1d{left:319.512150px;}
.x11{left:330.106690px;}
.xe{left:334.033804px;}
.x17{left:365.545056px;}
.x21{left:369.437686px;}
.x14{left:372.027463px;}
.x1e{left:378.251399px;}
.x12{left:400.957352px;}
.x19{left:411.242111px;}
.x3{left:454.959000px;}
.x8{left:459.215389px;}
.x9{left:476.225389px;}
.x24{left:484.713978px;}
.x23{left:511.878296px;}
.x22{left:513.297318px;}
.x5{left:728.220612px;}
.xc{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v4{vertical-align:-11.330699pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.090677pt;}
.v1{vertical-align:21.333333pt;}
.lsae{letter-spacing:-1.632000pt;}
.lscf{letter-spacing:-1.133333pt;}
.ls54{letter-spacing:-0.793333pt;}
.ls45{letter-spacing:-0.693333pt;}
.lsd1{letter-spacing:-0.680000pt;}
.ls7e{letter-spacing:-0.640000pt;}
.lsd0{letter-spacing:-0.634667pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls7c{letter-spacing:-0.480000pt;}
.ls7b{letter-spacing:-0.426667pt;}
.lsce{letter-spacing:-0.408000pt;}
.ls3a{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls8b{letter-spacing:-0.317333pt;}
.lsb0{letter-spacing:-0.272000pt;}
.ls35{letter-spacing:-0.266667pt;}
.lsad{letter-spacing:-0.226667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.lsab{letter-spacing:-0.181333pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls5a{letter-spacing:-0.144237pt;}
.ls73{letter-spacing:-0.139434pt;}
.lsaf{letter-spacing:-0.136000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.096158pt;}
.ls76{letter-spacing:-0.092956pt;}
.lsac{letter-spacing:-0.090667pt;}
.ls60{letter-spacing:-0.057694pt;}
.ls79{letter-spacing:-0.055773pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.048079pt;}
.ls72{letter-spacing:-0.046478pt;}
.ls51{letter-spacing:-0.045461pt;}
.lsb1{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000033pt;}
.ls2{letter-spacing:0.000035pt;}
.ls3{letter-spacing:0.000074pt;}
.ls41{letter-spacing:0.026667pt;}
.ls89{letter-spacing:0.045333pt;}
.ls4a{letter-spacing:0.045461pt;}
.ls6f{letter-spacing:0.046478pt;}
.ls56{letter-spacing:0.048079pt;}
.ls5{letter-spacing:0.053333pt;}
.lsc0{letter-spacing:0.068000pt;}
.ls6{letter-spacing:0.080000pt;}
.ls8d{letter-spacing:0.090667pt;}
.ls68{letter-spacing:0.090922pt;}
.lsc{letter-spacing:0.106667pt;}
.lsa1{letter-spacing:0.113333pt;}
.ls3d{letter-spacing:0.133333pt;}
.ls9b{letter-spacing:0.136000pt;}
.ls17{letter-spacing:0.158926pt;}
.lsb{letter-spacing:0.160000pt;}
.ls9e{letter-spacing:0.181333pt;}
.ls38{letter-spacing:0.186667pt;}
.ls66{letter-spacing:0.186686pt;}
.ls3b{letter-spacing:0.186690pt;}
.ls4{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.226667pt;}
.ls88{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls8e{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls96{letter-spacing:0.272000pt;}
.ls70{letter-spacing:0.278867pt;}
.ls57{letter-spacing:0.288474pt;}
.ls7f{letter-spacing:0.293333pt;}
.ls86{letter-spacing:0.294667pt;}
.ls8a{letter-spacing:0.317333pt;}
.ls36{letter-spacing:0.320000pt;}
.ls78{letter-spacing:0.325345pt;}
.ls5e{letter-spacing:0.336553pt;}
.lsbb{letter-spacing:0.340000pt;}
.ls37{letter-spacing:0.346667pt;}
.ls91{letter-spacing:0.362667pt;}
.ls28{letter-spacing:0.373333pt;}
.ls87{letter-spacing:0.385333pt;}
.ls1b{letter-spacing:0.400000pt;}
.ls8c{letter-spacing:0.408000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls39{letter-spacing:0.453333pt;}
.lsc2{letter-spacing:0.476000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls84{letter-spacing:0.498667pt;}
.ls2f{letter-spacing:0.506667pt;}
.lse{letter-spacing:0.533333pt;}
.ls90{letter-spacing:0.544000pt;}
.ls7d{letter-spacing:0.560000pt;}
.lscc{letter-spacing:0.566667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls83{letter-spacing:0.589333pt;}
.ls7a{letter-spacing:0.613333pt;}
.ls85{letter-spacing:0.634667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls98{letter-spacing:0.680000pt;}
.ls2b{letter-spacing:0.693333pt;}
.lsa9{letter-spacing:0.702667pt;}
.ls31{letter-spacing:0.720000pt;}
.ls9c{letter-spacing:0.725333pt;}
.ls2a{letter-spacing:0.746667pt;}
.lsa5{letter-spacing:0.770667pt;}
.ls42{letter-spacing:0.773333pt;}
.lsa2{letter-spacing:0.793333pt;}
.ls23{letter-spacing:0.800000pt;}
.ls9a{letter-spacing:0.816000pt;}
.ls64{letter-spacing:0.826667pt;}
.ls2c{letter-spacing:0.853333pt;}
.lsb4{letter-spacing:0.861333pt;}
.ls80{letter-spacing:0.880000pt;}
.ls30{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.933333pt;}
.ls81{letter-spacing:0.952000pt;}
.ls2d{letter-spacing:0.960000pt;}
.lsa4{letter-spacing:0.979200pt;}
.ls40{letter-spacing:0.986667pt;}
.lsc1{letter-spacing:0.997333pt;}
.ls12{letter-spacing:1.013333pt;}
.ls3c{letter-spacing:1.040000pt;}
.lsa6{letter-spacing:1.042667pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls93{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.120000pt;}
.ls94{letter-spacing:1.133333pt;}
.lsb3{letter-spacing:1.142400pt;}
.ls20{letter-spacing:1.146667pt;}
.ls26{letter-spacing:1.173333pt;}
.ls9f{letter-spacing:1.178667pt;}
.ls55{letter-spacing:1.200000pt;}
.lscb{letter-spacing:1.201333pt;}
.lsbc{letter-spacing:1.224000pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls44{letter-spacing:1.253333pt;}
.ls82{letter-spacing:1.269333pt;}
.ls25{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.333333pt;}
.lsba{letter-spacing:1.360000pt;}
.ls22{letter-spacing:1.386667pt;}
.ls95{letter-spacing:1.405333pt;}
.ls3e{letter-spacing:1.413333pt;}
.lsbe{letter-spacing:1.418933pt;}
.ls27{letter-spacing:1.440000pt;}
.lsbd{letter-spacing:1.450667pt;}
.ls97{letter-spacing:1.473318pt;}
.lsf{letter-spacing:1.493333pt;}
.ls47{letter-spacing:1.520000pt;}
.ls1f{letter-spacing:1.546667pt;}
.lsc8{letter-spacing:1.554933pt;}
.ls11{letter-spacing:1.600000pt;}
.lsc4{letter-spacing:1.609333pt;}
.lsc6{letter-spacing:1.632000pt;}
.ls13{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.706667pt;}
.lsb5{letter-spacing:1.722667pt;}
.lsa7{letter-spacing:1.745333pt;}
.ls21{letter-spacing:1.760000pt;}
.lsc9{letter-spacing:1.768000pt;}
.ls65{letter-spacing:1.813333pt;}
.ls14{letter-spacing:1.866667pt;}
.lsc5{letter-spacing:1.949299pt;}
.ls29{letter-spacing:1.973333pt;}
.lsaa{letter-spacing:1.994632pt;}
.ls62{letter-spacing:2.000000pt;}
.ls61{letter-spacing:2.026667pt;}
.ls8f{letter-spacing:2.040000pt;}
.lscd{letter-spacing:2.067187pt;}
.ls49{letter-spacing:2.080000pt;}
.lsb8{letter-spacing:2.117057pt;}
.ls63{letter-spacing:2.186667pt;}
.ls92{letter-spacing:2.216800pt;}
.lsb2{letter-spacing:2.266667pt;}
.lsb7{letter-spacing:2.280267pt;}
.lsc3{letter-spacing:2.307467pt;}
.lsca{letter-spacing:2.375467pt;}
.lsa8{letter-spacing:2.389053pt;}
.lsc7{letter-spacing:2.434400pt;}
.ls99{letter-spacing:2.443456pt;}
.ls43{letter-spacing:2.453333pt;}
.ls46{letter-spacing:2.506667pt;}
.lsa0{letter-spacing:2.729067pt;}
.lsb9{letter-spacing:2.806124pt;}
.ls9d{letter-spacing:2.910387pt;}
.lsa3{letter-spacing:3.037333pt;}
.lsbf{letter-spacing:3.540495pt;}
.ls1{letter-spacing:3.546667pt;}
.lsb6{letter-spacing:6.065592pt;}
.ls77{letter-spacing:11.480033pt;}
.ls5d{letter-spacing:11.875497pt;}
.ls5f{letter-spacing:14.885155pt;}
.ls6e{letter-spacing:82.533086pt;}
.ls6d{letter-spacing:85.350672pt;}
.ls52{letter-spacing:89.557776pt;}
.ls6b{letter-spacing:89.739619pt;}
.ls6a{letter-spacing:104.605301pt;}
.ls6c{letter-spacing:123.562454pt;}
.ls53{letter-spacing:123.744292pt;}
.ls48{letter-spacing:134.005333pt;}
.ls75{letter-spacing:146.265840pt;}
.ls5b{letter-spacing:155.246876pt;}
.ls69{letter-spacing:164.889510pt;}
.ls74{letter-spacing:166.902012pt;}
.ls67{letter-spacing:178.885333pt;}
.ls58{letter-spacing:184.478862pt;}
.ls71{letter-spacing:195.160548pt;}
.ls4f{letter-spacing:203.990606pt;}
.ls50{letter-spacing:220.193515pt;}
.ls4d{letter-spacing:233.420456pt;}
.ls4b{letter-spacing:234.270716pt;}
.ls4e{letter-spacing:259.453008pt;}
.ls4c{letter-spacing:259.839727pt;}
.wsb0{word-spacing:-196.498595pt;}
.wsdf{word-spacing:-195.207026pt;}
.wscb{word-spacing:-190.218667pt;}
.wsb3{word-spacing:-167.266609pt;}
.wse2{word-spacing:-166.948490pt;}
.wse4{word-spacing:-146.312318pt;}
.ws8d{word-spacing:-136.952000pt;}
.ws9e{word-spacing:-123.789753pt;}
.wsd1{word-spacing:-123.607915pt;}
.wscd{word-spacing:-104.650762pt;}
.wsd0{word-spacing:-89.785080pt;}
.ws9c{word-spacing:-89.603237pt;}
.wsb9{word-spacing:-29.308755pt;}
.wsb7{word-spacing:-23.895230pt;}
.ws3{word-spacing:-16.384000pt;}
.ws8a{word-spacing:-15.840000pt;}
.ws26{word-spacing:-14.773333pt;}
.ws7c{word-spacing:-14.666667pt;}
.ws24{word-spacing:-14.506667pt;}
.wsb8{word-spacing:-14.423600pt;}
.ws72{word-spacing:-14.400000pt;}
.wsc0{word-spacing:-14.346667pt;}
.ws7a{word-spacing:-14.320000pt;}
.ws25{word-spacing:-14.133333pt;}
.ws89{word-spacing:-14.080000pt;}
.wsf1{word-spacing:-13.973333pt;}
.ws88{word-spacing:-13.866667pt;}
.ws59{word-spacing:-13.760000pt;}
.ws57{word-spacing:-13.600000pt;}
.ws56{word-spacing:-13.333333pt;}
.ws108{word-spacing:-13.184000pt;}
.ws58{word-spacing:-13.173333pt;}
.ws7e{word-spacing:-13.066667pt;}
.ws55{word-spacing:-13.013333pt;}
.wsef{word-spacing:-12.928000pt;}
.ws7b{word-spacing:-12.640000pt;}
.ws135{word-spacing:-12.602667pt;}
.wsaf{word-spacing:-12.308207pt;}
.wsf6{word-spacing:-12.240000pt;}
.ws134{word-spacing:-12.194667pt;}
.ws136{word-spacing:-12.104000pt;}
.ws157{word-spacing:-12.013333pt;}
.ws10b{word-spacing:-11.968000pt;}
.wsb6{word-spacing:-11.923575pt;}
.wsb2{word-spacing:-11.875497pt;}
.ws113{word-spacing:-11.786667pt;}
.ws10a{word-spacing:-11.741333pt;}
.ws145{word-spacing:-11.605333pt;}
.ws8{word-spacing:-11.560000pt;}
.wse6{word-spacing:-11.526510pt;}
.ws138{word-spacing:-11.514667pt;}
.ws107{word-spacing:-11.424000pt;}
.ws14c{word-spacing:-11.378667pt;}
.wsa{word-spacing:-11.333333pt;}
.ws109{word-spacing:-11.242667pt;}
.ws7d{word-spacing:-11.200000pt;}
.ws133{word-spacing:-11.152000pt;}
.ws137{word-spacing:-11.106667pt;}
.ws71{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws154{word-spacing:-10.653333pt;}
.ws7{word-spacing:-10.240000pt;}
.wsf5{word-spacing:-9.656000pt;}
.ws73{word-spacing:-9.333333pt;}
.wsf7{word-spacing:-9.202667pt;}
.ws2{word-spacing:-8.885333pt;}
.ws9{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws7f{word-spacing:-6.666667pt;}
.ws96{word-spacing:-5.666667pt;}
.wsda{word-spacing:-1.949333pt;}
.ws21{word-spacing:-1.866667pt;}
.ws101{word-spacing:-1.813333pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws13c{word-spacing:-1.722667pt;}
.ws3b{word-spacing:-1.706667pt;}
.ws29{word-spacing:-1.600000pt;}
.ws95{word-spacing:-1.546667pt;}
.wsc4{word-spacing:-1.440000pt;}
.ws36{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.333333pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws13e{word-spacing:-1.269333pt;}
.ws32{word-spacing:-1.226667pt;}
.ws151{word-spacing:-1.178667pt;}
.ws94{word-spacing:-1.173333pt;}
.ws103{word-spacing:-1.133333pt;}
.ws2e{word-spacing:-1.120000pt;}
.ws12c{word-spacing:-1.088000pt;}
.ws63{word-spacing:-1.066667pt;}
.ws149{word-spacing:-1.042667pt;}
.ws38{word-spacing:-1.013333pt;}
.ws14b{word-spacing:-0.997333pt;}
.wsf0{word-spacing:-0.960000pt;}
.ws105{word-spacing:-0.952000pt;}
.ws6e{word-spacing:-0.906667pt;}
.ws102{word-spacing:-0.861333pt;}
.ws43{word-spacing:-0.853333pt;}
.ws128{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.800000pt;}
.ws140{word-spacing:-0.770667pt;}
.ws30{word-spacing:-0.746667pt;}
.ws123{word-spacing:-0.725333pt;}
.ws3e{word-spacing:-0.693333pt;}
.ws106{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws10c{word-spacing:-0.634667pt;}
.ws143{word-spacing:-0.589333pt;}
.wsf{word-spacing:-0.586667pt;}
.wsae{word-spacing:-0.576947pt;}
.ws22{word-spacing:-0.544000pt;}
.ws42{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.ws10d{word-spacing:-0.498667pt;}
.ws16{word-spacing:-0.480000pt;}
.ws114{word-spacing:-0.453333pt;}
.ws48{word-spacing:-0.426667pt;}
.ws125{word-spacing:-0.408000pt;}
.ws13{word-spacing:-0.373333pt;}
.ws10e{word-spacing:-0.362667pt;}
.wsbc{word-spacing:-0.336553pt;}
.wsde{word-spacing:-0.325345pt;}
.ws18{word-spacing:-0.320000pt;}
.ws116{word-spacing:-0.317333pt;}
.ws119{word-spacing:-0.272000pt;}
.ws1b{word-spacing:-0.266667pt;}
.wsfe{word-spacing:-0.234667pt;}
.ws10f{word-spacing:-0.226667pt;}
.ws53{word-spacing:-0.213333pt;}
.ws146{word-spacing:-0.181333pt;}
.ws66{word-spacing:-0.160000pt;}
.wscf{word-spacing:-0.136382pt;}
.ws130{word-spacing:-0.136000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws9b{word-spacing:-0.090922pt;}
.ws14d{word-spacing:-0.090667pt;}
.ws37{word-spacing:-0.053333pt;}
.ws9d{word-spacing:-0.045461pt;}
.ws112{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws115{word-spacing:0.045333pt;}
.wse5{word-spacing:0.046478pt;}
.ws2a{word-spacing:0.053333pt;}
.wsbd{word-spacing:0.057694pt;}
.ws124{word-spacing:0.090667pt;}
.wse1{word-spacing:0.092956pt;}
.wsb4{word-spacing:0.096148pt;}
.ws10{word-spacing:0.106667pt;}
.ws12a{word-spacing:0.136000pt;}
.wsb1{word-spacing:0.144237pt;}
.ws6f{word-spacing:0.160000pt;}
.ws141{word-spacing:0.181333pt;}
.ws1a{word-spacing:0.213333pt;}
.ws117{word-spacing:0.226667pt;}
.ws5a{word-spacing:0.266667pt;}
.ws78{word-spacing:0.272000pt;}
.ws144{word-spacing:0.317333pt;}
.ws52{word-spacing:0.320000pt;}
.ws12e{word-spacing:0.362667pt;}
.ws1e{word-spacing:0.373333pt;}
.ws118{word-spacing:0.408000pt;}
.wsd{word-spacing:0.426667pt;}
.ws132{word-spacing:0.453333pt;}
.ws44{word-spacing:0.480000pt;}
.ws13d{word-spacing:0.498667pt;}
.ws14{word-spacing:0.533333pt;}
.ws4c{word-spacing:0.586667pt;}
.ws14f{word-spacing:0.589333pt;}
.ws153{word-spacing:0.634667pt;}
.wsf3{word-spacing:0.640000pt;}
.ws11f{word-spacing:0.680000pt;}
.ws40{word-spacing:0.693333pt;}
.ws142{word-spacing:0.725333pt;}
.ws4f{word-spacing:0.746667pt;}
.ws2f{word-spacing:0.800000pt;}
.ws47{word-spacing:0.853333pt;}
.wsfd{word-spacing:0.861333pt;}
.ws74{word-spacing:0.906667pt;}
.ws11e{word-spacing:0.952000pt;}
.ws51{word-spacing:0.960000pt;}
.ws11a{word-spacing:0.997333pt;}
.ws64{word-spacing:1.013333pt;}
.ws104{word-spacing:1.042667pt;}
.ws6d{word-spacing:1.066667pt;}
.ws6a{word-spacing:1.120000pt;}
.wsfa{word-spacing:1.133333pt;}
.ws5c{word-spacing:1.173333pt;}
.ws148{word-spacing:1.178667pt;}
.wse9{word-spacing:1.226667pt;}
.ws159{word-spacing:1.269333pt;}
.ws2d{word-spacing:1.280000pt;}
.wsfb{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.ws11c{word-spacing:1.360000pt;}
.ws60{word-spacing:1.386667pt;}
.wsfc{word-spacing:1.405333pt;}
.ws54{word-spacing:1.440000pt;}
.ws45{word-spacing:1.493333pt;}
.ws13f{word-spacing:1.496000pt;}
.ws131{word-spacing:1.541333pt;}
.ws31{word-spacing:1.546667pt;}
.wsd6{word-spacing:1.586667pt;}
.ws12{word-spacing:1.600000pt;}
.ws11b{word-spacing:1.632000pt;}
.ws41{word-spacing:1.653333pt;}
.ws158{word-spacing:1.677333pt;}
.ws2c{word-spacing:1.706667pt;}
.wsd9{word-spacing:1.722667pt;}
.ws17{word-spacing:1.760000pt;}
.ws12f{word-spacing:1.768000pt;}
.ws1c{word-spacing:1.813333pt;}
.ws14e{word-spacing:1.858667pt;}
.ws65{word-spacing:1.866667pt;}
.wseb{word-spacing:1.904000pt;}
.ws5f{word-spacing:1.920000pt;}
.ws13a{word-spacing:1.949333pt;}
.ws50{word-spacing:1.973333pt;}
.ws122{word-spacing:1.994667pt;}
.ws5b{word-spacing:2.026667pt;}
.ws156{word-spacing:2.040000pt;}
.ws34{word-spacing:2.080000pt;}
.ws12d{word-spacing:2.085333pt;}
.ws14a{word-spacing:2.130667pt;}
.ws19{word-spacing:2.133333pt;}
.ws155{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.186667pt;}
.ws129{word-spacing:2.221333pt;}
.ws3f{word-spacing:2.240000pt;}
.wsaa{word-spacing:2.266667pt;}
.ws5e{word-spacing:2.293333pt;}
.ws127{word-spacing:2.312000pt;}
.ws28{word-spacing:2.346667pt;}
.ws120{word-spacing:2.357333pt;}
.ws1d{word-spacing:2.400000pt;}
.ws4b{word-spacing:2.453333pt;}
.ws39{word-spacing:2.506667pt;}
.wsa9{word-spacing:2.560000pt;}
.ws110{word-spacing:2.584000pt;}
.ws1f{word-spacing:2.613333pt;}
.ws49{word-spacing:2.666667pt;}
.ws3c{word-spacing:2.720000pt;}
.ws111{word-spacing:2.765333pt;}
.ws70{word-spacing:2.773333pt;}
.ws126{word-spacing:2.810667pt;}
.ws3a{word-spacing:2.826667pt;}
.ws4a{word-spacing:2.880000pt;}
.ws35{word-spacing:2.933333pt;}
.ws152{word-spacing:2.946667pt;}
.ws81{word-spacing:2.986667pt;}
.ws11d{word-spacing:2.992000pt;}
.ws69{word-spacing:3.040000pt;}
.ws12b{word-spacing:3.082667pt;}
.ws4e{word-spacing:3.093333pt;}
.wsd4{word-spacing:3.146667pt;}
.ws46{word-spacing:3.200000pt;}
.wsd7{word-spacing:3.218667pt;}
.ws62{word-spacing:3.253333pt;}
.ws147{word-spacing:3.309333pt;}
.ws91{word-spacing:3.360000pt;}
.wsad{word-spacing:3.400000pt;}
.ws33{word-spacing:3.466667pt;}
.wsab{word-spacing:3.490667pt;}
.wsc7{word-spacing:3.520000pt;}
.ws90{word-spacing:3.573333pt;}
.ws2b{word-spacing:3.626667pt;}
.ws93{word-spacing:3.680000pt;}
.ws150{word-spacing:3.717333pt;}
.ws20{word-spacing:3.733333pt;}
.ws61{word-spacing:3.786667pt;}
.ws13b{word-spacing:3.808000pt;}
.ws67{word-spacing:3.840000pt;}
.ws139{word-spacing:3.853333pt;}
.ws86{word-spacing:3.893333pt;}
.ws15c{word-spacing:3.944000pt;}
.wsbb{word-spacing:3.946667pt;}
.wsd3{word-spacing:4.000000pt;}
.ws6c{word-spacing:4.053333pt;}
.ws121{word-spacing:4.080000pt;}
.ws3d{word-spacing:4.106667pt;}
.wsff{word-spacing:4.125333pt;}
.wsc2{word-spacing:4.213333pt;}
.ws87{word-spacing:4.266667pt;}
.wsc1{word-spacing:4.320000pt;}
.ws82{word-spacing:4.426667pt;}
.ws84{word-spacing:4.480000pt;}
.ws80{word-spacing:4.533333pt;}
.wsc6{word-spacing:4.586667pt;}
.wsf9{word-spacing:4.624000pt;}
.ws4d{word-spacing:4.640000pt;}
.wsd5{word-spacing:4.669333pt;}
.ws75{word-spacing:4.800000pt;}
.ws76{word-spacing:5.013333pt;}
.wsc5{word-spacing:5.333333pt;}
.ws68{word-spacing:5.386667pt;}
.ws100{word-spacing:5.394667pt;}
.wsf8{word-spacing:5.600000pt;}
.ws83{word-spacing:5.813333pt;}
.wsf4{word-spacing:5.920000pt;}
.wsee{word-spacing:6.029333pt;}
.wsed{word-spacing:6.256000pt;}
.ws79{word-spacing:6.845333pt;}
.ws92{word-spacing:6.933333pt;}
.wsc8{word-spacing:6.986667pt;}
.ws77{word-spacing:7.733333pt;}
.wsec{word-spacing:7.797333pt;}
.wsf2{word-spacing:8.426667pt;}
.wsac{word-spacing:8.976000pt;}
.wsea{word-spacing:9.384000pt;}
.ws85{word-spacing:10.240000pt;}
.wsd8{word-spacing:10.426667pt;}
.wsdd{word-spacing:11.015254pt;}
.wse0{word-spacing:11.712422pt;}
.wse8{word-spacing:11.944811pt;}
.ws15a{word-spacing:12.013333pt;}
.wse3{word-spacing:12.130714pt;}
.wsbe{word-spacing:12.194667pt;}
.wse7{word-spacing:13.943333pt;}
.ws15b{word-spacing:15.640000pt;}
.wsbf{word-spacing:17.000000pt;}
.ws8e{word-spacing:43.338667pt;}
.ws97{word-spacing:51.770660pt;}
.ws98{word-spacing:51.770667pt;}
.ws8f{word-spacing:57.618667pt;}
.ws23{word-spacing:64.237333pt;}
.ws9a{word-spacing:64.372493pt;}
.wsce{word-spacing:64.872562pt;}
.ws8c{word-spacing:67.274667pt;}
.wsba{word-spacing:83.551364pt;}
.wsdb{word-spacing:86.274667pt;}
.wsdc{word-spacing:87.130661pt;}
.wscc{word-spacing:88.218667pt;}
.ws99{word-spacing:105.332674pt;}
.wsca{word-spacing:112.154667pt;}
.wsb5{word-spacing:122.457043pt;}
.wsa6{word-spacing:140.282635pt;}
.wsa4{word-spacing:150.506652pt;}
.wsd2{word-spacing:164.488401pt;}
.wsa0{word-spacing:164.852087pt;}
.ws9f{word-spacing:165.253196pt;}
.wsa1{word-spacing:165.328650pt;}
.wsa3{word-spacing:170.949302pt;}
.wsa7{word-spacing:202.575657pt;}
.wsa5{word-spacing:203.812473pt;}
.wsa2{word-spacing:211.570667pt;}
.wsa8{word-spacing:265.925317pt;}
.ws8b{word-spacing:395.895987pt;}
.wsc9{word-spacing:493.544000pt;}
._c{margin-left:-2630.557284pt;}
._4d{margin-left:-195.392932pt;}
._36{margin-left:-184.719252pt;}
._3b{margin-left:-178.885333pt;}
._4e{margin-left:-166.716100pt;}
._37{margin-left:-155.054560pt;}
._4f{margin-left:-145.986973pt;}
._1a{margin-left:-134.005333pt;}
._33{margin-left:-123.653365pt;}
._45{margin-left:-104.787149pt;}
._32{margin-left:-90.148766pt;}
._a{margin-left:-86.133333pt;}
._38{margin-left:-15.923654pt;}
._7{margin-left:-14.733333pt;}
._15{margin-left:-10.880016pt;}
._39{margin-left:-9.046986pt;}
._f{margin-left:-7.973333pt;}
._12{margin-left:-6.906676pt;}
._3{margin-left:-5.888000pt;}
._1{margin-left:-4.109067pt;}
._2{margin-left:-2.909867pt;}
._0{margin-left:-1.450667pt;}
._5{width:0.908336pt;}
._6{width:2.240000pt;}
._29{width:3.339664pt;}
._d{width:4.320000pt;}
._10{width:5.484198pt;}
._13{width:6.944000pt;}
._16{width:9.050654pt;}
._14{width:10.730655pt;}
._11{width:12.134864pt;}
._17{width:14.193333pt;}
._8{width:16.320000pt;}
._19{width:31.053324pt;}
._4{width:35.150380pt;}
._9{width:48.552000pt;}
._4c{width:51.498667pt;}
._26{width:54.672000pt;}
._2b{width:63.104000pt;}
._2f{width:64.282667pt;}
._24{width:68.680000pt;}
._25{width:70.130666pt;}
._20{width:77.338667pt;}
._1d{width:84.773328pt;}
._22{width:85.725324pt;}
._18{width:96.678064pt;}
._41{width:99.552000pt;}
._30{width:101.048000pt;}
._44{width:113.832000pt;}
._34{width:115.871998pt;}
._31{width:117.594660pt;}
._3f{width:129.698667pt;}
._28{width:131.058661pt;}
._49{width:137.042661pt;}
._3a{width:141.558064pt;}
._43{width:144.341333pt;}
._42{width:145.384000pt;}
._2e{width:153.000000pt;}
._2c{width:155.040000pt;}
._2d{width:157.533333pt;}
._46{width:176.698658pt;}
._2a{width:208.760000pt;}
._1e{width:212.840000pt;}
._47{width:222.359990pt;}
._1b{width:224.082667pt;}
._3d{width:265.608000pt;}
._21{width:271.909333pt;}
._1f{width:276.941333pt;}
._35{width:281.028878pt;}
._1c{width:289.589333pt;}
._27{width:291.992000pt;}
._40{width:324.677333pt;}
._3e{width:329.709333pt;}
._3c{width:342.357333pt;}
._4b{width:370.915664pt;}
._23{width:384.379664pt;}
._e{width:423.771163pt;}
._4a{width:647.314667pt;}
._48{width:789.434667pt;}
._b{width:1634.538617pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:45.460800pt;}
.fse{font-size:46.477865pt;}
.fsc{font-size:48.078933pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:55.773333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:57.694400pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y22{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y5c{bottom:100.389600pt;}
.y121{bottom:100.394933pt;}
.y92{bottom:100.813639pt;}
.y2f7{bottom:100.928304pt;}
.y12c{bottom:101.986898pt;}
.yc5{bottom:101.986938pt;}
.y174{bottom:102.110921pt;}
.y153{bottom:102.111084pt;}
.y39d{bottom:103.945673pt;}
.y186{bottom:107.184133pt;}
.y31f{bottom:108.422266pt;}
.y4e{bottom:108.854574pt;}
.y2c2{bottom:111.049600pt;}
.y278{bottom:111.754941pt;}
.y2c3{bottom:111.872396pt;}
.y120{bottom:113.722933pt;}
.y20e{bottom:116.696289pt;}
.y39c{bottom:117.273673pt;}
.y419{bottom:117.325578pt;}
.y252{bottom:117.442952pt;}
.y91{bottom:117.480306pt;}
.y2f6{bottom:117.594971pt;}
.y5b{bottom:118.250936pt;}
.y12b{bottom:118.653564pt;}
.yc4{bottom:118.653605pt;}
.y23d{bottom:118.656281pt;}
.y173{bottom:118.777588pt;}
.y152{bottom:118.777751pt;}
.y31e{bottom:121.750266pt;}
.y35b{bottom:123.325635pt;}
.y21{bottom:123.790666pt;}
.y185{bottom:123.850800pt;}
.y277{bottom:125.082941pt;}
.y4d{bottom:125.521240pt;}
.y2b1{bottom:126.985596pt;}
.y3d8{bottom:130.313620pt;}
.y39b{bottom:130.601673pt;}
.y418{bottom:130.653578pt;}
.y11f{bottom:131.584269pt;}
.y20d{bottom:133.362956pt;}
.y5a{bottom:133.764936pt;}
.y251{bottom:134.109619pt;}
.y90{bottom:134.146973pt;}
.y2f5{bottom:134.261637pt;}
.y31d{bottom:135.078266pt;}
.y12a{bottom:135.320231pt;}
.yc3{bottom:135.320272pt;}
.y23c{bottom:135.322947pt;}
.y172{bottom:135.444255pt;}
.y151{bottom:135.444417pt;}
.y35a{bottom:136.653635pt;}
.y276{bottom:138.410941pt;}
.y184{bottom:140.517466pt;}
.y2b2{bottom:141.126486pt;}
.y4c{bottom:142.187907pt;}
.y3d7{bottom:143.641620pt;}
.y39a{bottom:143.929673pt;}
.y417{bottom:143.981578pt;}
.y31c{bottom:148.406266pt;}
.y359{bottom:149.981635pt;}
.y20c{bottom:150.029622pt;}
.y250{bottom:150.776286pt;}
.y8f{bottom:150.813639pt;}
.y2f4{bottom:150.928304pt;}
.y59{bottom:151.626272pt;}
.y275{bottom:151.738941pt;}
.y11e{bottom:151.893595pt;}
.y129{bottom:151.986898pt;}
.yc2{bottom:151.986938pt;}
.y23b{bottom:151.989614pt;}
.y171{bottom:152.110921pt;}
.y150{bottom:152.111084pt;}
.y2b3{bottom:155.267376pt;}
.y3d6{bottom:156.969620pt;}
.y183{bottom:157.184133pt;}
.y399{bottom:157.257673pt;}
.y416{bottom:157.309578pt;}
.y4b{bottom:158.854574pt;}
.y31b{bottom:161.734266pt;}
.y358{bottom:163.309635pt;}
.y274{bottom:165.066941pt;}
.y20b{bottom:166.696289pt;}
.y58{bottom:167.140262pt;}
.y24f{bottom:167.442952pt;}
.y8e{bottom:167.480306pt;}
.y2f3{bottom:167.594971pt;}
.y11d{bottom:168.560262pt;}
.y128{bottom:168.653564pt;}
.yc1{bottom:168.653605pt;}
.y23a{bottom:168.656281pt;}
.y170{bottom:168.777588pt;}
.y14f{bottom:168.777751pt;}
.y2b4{bottom:169.408267pt;}
.y3d5{bottom:170.297620pt;}
.y398{bottom:170.585673pt;}
.y415{bottom:170.637578pt;}
.y18{bottom:175.052000pt;}
.y31a{bottom:175.062266pt;}
.y4a{bottom:175.521240pt;}
.y357{bottom:176.637635pt;}
.y273{bottom:178.394941pt;}
.y2c1{bottom:179.897603pt;}
.y20a{bottom:183.362956pt;}
.y2b5{bottom:183.549157pt;}
.y3d4{bottom:183.625620pt;}
.y397{bottom:183.913673pt;}
.y414{bottom:183.965578pt;}
.y24e{bottom:184.109619pt;}
.y8d{bottom:184.146973pt;}
.y2f2{bottom:184.261637pt;}
.y57{bottom:185.001607pt;}
.y11c{bottom:185.226929pt;}
.y127{bottom:185.320231pt;}
.yc0{bottom:185.320272pt;}
.y239{bottom:185.322947pt;}
.y16f{bottom:185.444255pt;}
.y1b6{bottom:185.444397pt;}
.y14e{bottom:185.444417pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y319{bottom:188.390266pt;}
.y356{bottom:189.965635pt;}
.y49{bottom:192.187907pt;}
.y272{bottom:196.256266pt;}
.y3d3{bottom:196.953620pt;}
.y396{bottom:197.241673pt;}
.y413{bottom:197.293578pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2b6{bottom:197.690047pt;}
.y209{bottom:200.029622pt;}
.y56{bottom:200.515608pt;}
.y24d{bottom:200.776286pt;}
.y8c{bottom:200.813639pt;}
.y2f1{bottom:200.928304pt;}
.y11b{bottom:201.893595pt;}
.y126{bottom:201.986898pt;}
.ybf{bottom:201.986938pt;}
.y16e{bottom:202.110921pt;}
.y1b5{bottom:202.111064pt;}
.y14d{bottom:202.111084pt;}
.y355{bottom:203.293635pt;}
.y1ab{bottom:205.584265pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y48{bottom:208.854574pt;}
.y3d2{bottom:210.281620pt;}
.y395{bottom:210.569673pt;}
.y412{bottom:210.621578pt;}
.y2b7{bottom:211.830937pt;}
.y318{bottom:215.057600pt;}
.y354{bottom:216.621635pt;}
.y208{bottom:216.696289pt;}
.y24c{bottom:217.442952pt;}
.y8b{bottom:217.480306pt;}
.y2f0{bottom:217.594971pt;}
.y55{bottom:218.376933pt;}
.y11a{bottom:218.560262pt;}
.y125{bottom:218.653564pt;}
.ybe{bottom:218.653605pt;}
.y238{bottom:218.656281pt;}
.y16d{bottom:218.777588pt;}
.y1b4{bottom:218.777730pt;}
.y14c{bottom:218.777751pt;}
.y1aa{bottom:222.697598pt;}
.y3d1{bottom:223.609620pt;}
.y394{bottom:223.897673pt;}
.y411{bottom:223.949578pt;}
.y47{bottom:225.521240pt;}
.y2b8{bottom:225.971828pt;}
.y317{bottom:228.385600pt;}
.y353{bottom:229.949635pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y207{bottom:233.362956pt;}
.y54{bottom:233.890933pt;}
.y24b{bottom:234.109619pt;}
.y8a{bottom:234.146973pt;}
.y2ef{bottom:234.261637pt;}
.y261{bottom:235.168254pt;}
.y119{bottom:235.226929pt;}
.y124{bottom:235.320231pt;}
.ybd{bottom:235.320272pt;}
.y16c{bottom:235.444255pt;}
.y1b3{bottom:235.444397pt;}
.y14b{bottom:235.444417pt;}
.y1a9{bottom:236.025598pt;}
.y3d0{bottom:236.937620pt;}
.y393{bottom:237.225673pt;}
.y410{bottom:237.277578pt;}
.y2b9{bottom:240.112718pt;}
.y46{bottom:242.187907pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y352{bottom:243.277635pt;}
.y1a8{bottom:249.353598pt;}
.y206{bottom:250.029622pt;}
.y3cf{bottom:250.265620pt;}
.y392{bottom:250.553673pt;}
.y40f{bottom:250.605578pt;}
.y24a{bottom:250.776286pt;}
.y89{bottom:250.813639pt;}
.y2ee{bottom:250.928304pt;}
.y53{bottom:251.752258pt;}
.y260{bottom:251.834920pt;}
.y118{bottom:251.893595pt;}
.y123{bottom:251.986898pt;}
.ybc{bottom:251.986938pt;}
.y237{bottom:251.989614pt;}
.y16b{bottom:252.110921pt;}
.y1b2{bottom:252.111064pt;}
.y14a{bottom:252.111084pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y2ba{bottom:254.253608pt;}
.y316{bottom:255.052266pt;}
.y351{bottom:256.605635pt;}
.y45{bottom:258.854574pt;}
.y3ce{bottom:263.593620pt;}
.y391{bottom:263.881673pt;}
.y40e{bottom:263.933578pt;}
.y205{bottom:266.696289pt;}
.y249{bottom:267.442952pt;}
.y88{bottom:267.480306pt;}
.y2ed{bottom:267.594971pt;}
.y2bb{bottom:268.394499pt;}
.y25f{bottom:268.501587pt;}
.y117{bottom:268.560262pt;}
.y122{bottom:268.653564pt;}
.ybb{bottom:268.653605pt;}
.y236{bottom:268.656281pt;}
.y16a{bottom:268.777588pt;}
.y1cd{bottom:268.777730pt;}
.y149{bottom:268.777751pt;}
.y350{bottom:269.933635pt;}
.y52{bottom:273.980793pt;}
.y1b0{bottom:274.950391pt;}
.y44{bottom:275.521240pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y3cd{bottom:276.921620pt;}
.y44c{bottom:277.046289pt;}
.y390{bottom:277.209673pt;}
.y40d{bottom:277.261578pt;}
.y2bc{bottom:282.535389pt;}
.y34f{bottom:283.261635pt;}
.y204{bottom:283.362956pt;}
.y248{bottom:284.109619pt;}
.y87{bottom:284.146973pt;}
.y2ec{bottom:284.261637pt;}
.y315{bottom:285.082953pt;}
.y25e{bottom:285.168254pt;}
.y116{bottom:285.226929pt;}
.yec{bottom:285.320231pt;}
.yba{bottom:285.320272pt;}
.y235{bottom:285.322947pt;}
.y169{bottom:285.444255pt;}
.y1cc{bottom:285.444397pt;}
.y148{bottom:285.444417pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y51{bottom:287.308793pt;}
.y1af{bottom:288.278391pt;}
.y3cc{bottom:290.249620pt;}
.y44b{bottom:290.374289pt;}
.y38f{bottom:290.537673pt;}
.y40c{bottom:290.589578pt;}
.y43{bottom:292.187907pt;}
.y34e{bottom:296.589635pt;}
.y2bd{bottom:296.676279pt;}
.y314{bottom:298.410953pt;}
.y203{bottom:300.029622pt;}
.y247{bottom:300.776286pt;}
.y86{bottom:300.813639pt;}
.y2eb{bottom:300.928304pt;}
.y25d{bottom:301.834920pt;}
.y115{bottom:301.893595pt;}
.yeb{bottom:301.986898pt;}
.ye7{bottom:301.986938pt;}
.y234{bottom:301.989614pt;}
.y168{bottom:302.110921pt;}
.y1cb{bottom:302.111064pt;}
.y147{bottom:302.111084pt;}
.y3cb{bottom:303.577620pt;}
.y38e{bottom:303.865673pt;}
.y40b{bottom:303.917578pt;}
.y1ae{bottom:304.979732pt;}
.y42{bottom:308.854574pt;}
.yf{bottom:309.452000pt;}
.y34d{bottom:309.917635pt;}
.y2be{bottom:310.817170pt;}
.y1a7{bottom:311.777597pt;}
.y50{bottom:314.701460pt;}
.y202{bottom:316.696289pt;}
.y3ca{bottom:316.905620pt;}
.y44a{bottom:317.120955pt;}
.y38d{bottom:317.193673pt;}
.y40a{bottom:317.245578pt;}
.y246{bottom:317.442952pt;}
.y85{bottom:317.480306pt;}
.y2ea{bottom:317.594971pt;}
.y25c{bottom:318.501587pt;}
.y114{bottom:318.560262pt;}
.yea{bottom:318.653564pt;}
.yb9{bottom:318.653605pt;}
.y233{bottom:318.656281pt;}
.y167{bottom:318.777588pt;}
.y1ca{bottom:318.777730pt;}
.y146{bottom:318.777751pt;}
.y1ad{bottom:321.616407pt;}
.y34c{bottom:323.245635pt;}
.y2bf{bottom:324.958060pt;}
.y313{bottom:325.078287pt;}
.y1a6{bottom:325.105597pt;}
.y41{bottom:325.521240pt;}
.y4f{bottom:328.029460pt;}
.y3c9{bottom:330.233620pt;}
.y449{bottom:330.448955pt;}
.y38c{bottom:330.521673pt;}
.y409{bottom:330.573578pt;}
.y201{bottom:333.362956pt;}
.y245{bottom:334.109619pt;}
.y84{bottom:334.146973pt;}
.y2e9{bottom:334.261637pt;}
.y25b{bottom:335.168254pt;}
.y113{bottom:335.226929pt;}
.ye9{bottom:335.320231pt;}
.ye6{bottom:335.320272pt;}
.y232{bottom:335.322947pt;}
.y166{bottom:335.444255pt;}
.y1c9{bottom:335.444397pt;}
.y145{bottom:335.444417pt;}
.y34b{bottom:336.573635pt;}
.y2b0{bottom:338.337427pt;}
.y312{bottom:338.406287pt;}
.y1a5{bottom:338.433597pt;}
.y2c0{bottom:338.610933pt;}
.y40{bottom:342.187907pt;}
.y3c8{bottom:343.561620pt;}
.ye{bottom:343.809333pt;}
.y38b{bottom:343.849673pt;}
.y408{bottom:343.901578pt;}
.y1ac{bottom:346.583740pt;}
.y34a{bottom:349.901635pt;}
.y200{bottom:350.029622pt;}
.y244{bottom:350.776286pt;}
.y83{bottom:350.813639pt;}
.y2e8{bottom:350.928304pt;}
.y2af{bottom:351.665427pt;}
.y1a4{bottom:351.761597pt;}
.y25a{bottom:351.834920pt;}
.ye8{bottom:351.986898pt;}
.ye5{bottom:351.986938pt;}
.y231{bottom:351.989614pt;}
.y165{bottom:352.110921pt;}
.y1c8{bottom:352.111064pt;}
.y144{bottom:352.111084pt;}
.y3c7{bottom:356.889620pt;}
.y38a{bottom:357.177673pt;}
.y448{bottom:357.195620pt;}
.y407{bottom:357.229578pt;}
.y3f{bottom:358.854574pt;}
.yd{bottom:362.706666pt;}
.y349{bottom:363.229635pt;}
.y2ae{bottom:364.993427pt;}
.y311{bottom:365.073620pt;}
.y1ff{bottom:366.696289pt;}
.y243{bottom:367.442952pt;}
.y82{bottom:367.480306pt;}
.y2e7{bottom:367.594971pt;}
.y259{bottom:368.501587pt;}
.y112{bottom:368.560262pt;}
.yb8{bottom:368.653564pt;}
.ye4{bottom:368.653605pt;}
.y230{bottom:368.656281pt;}
.y164{bottom:368.777588pt;}
.y1c7{bottom:368.777730pt;}
.y143{bottom:368.777751pt;}
.y3c6{bottom:370.217620pt;}
.y389{bottom:370.505673pt;}
.y447{bottom:370.523620pt;}
.y406{bottom:370.557578pt;}
.y3e{bottom:375.521240pt;}
.y348{bottom:376.557635pt;}
.y310{bottom:378.401620pt;}
.y1fe{bottom:383.362956pt;}
.y3c5{bottom:383.545620pt;}
.y388{bottom:383.833673pt;}
.y446{bottom:383.851620pt;}
.y405{bottom:383.885578pt;}
.y242{bottom:384.109619pt;}
.y81{bottom:384.146973pt;}
.y2e6{bottom:384.261637pt;}
.y258{bottom:385.168254pt;}
.yb7{bottom:385.320231pt;}
.ye3{bottom:385.320272pt;}
.y22f{bottom:385.322947pt;}
.y163{bottom:385.444255pt;}
.y1c6{bottom:385.444397pt;}
.y142{bottom:385.444417pt;}
.y347{bottom:389.885635pt;}
.y30f{bottom:391.729620pt;}
.y3d{bottom:392.187907pt;}
.y3c4{bottom:396.873620pt;}
.y387{bottom:397.161673pt;}
.y445{bottom:397.179620pt;}
.y404{bottom:397.213578pt;}
.y1fd{bottom:400.029622pt;}
.y241{bottom:400.776286pt;}
.y80{bottom:400.813639pt;}
.y2e5{bottom:400.928304pt;}
.y257{bottom:401.834920pt;}
.y111{bottom:401.893595pt;}
.yb6{bottom:401.986898pt;}
.ye2{bottom:401.986938pt;}
.y22e{bottom:401.989614pt;}
.y162{bottom:402.110921pt;}
.y1c5{bottom:402.111064pt;}
.y141{bottom:402.111084pt;}
.y346{bottom:403.213635pt;}
.y30e{bottom:405.057620pt;}
.y3c{bottom:408.854574pt;}
.y3c3{bottom:410.201620pt;}
.y386{bottom:410.489673pt;}
.y444{bottom:410.507620pt;}
.y403{bottom:410.541578pt;}
.y1a3{bottom:414.870931pt;}
.y345{bottom:416.541635pt;}
.y1fc{bottom:416.696289pt;}
.y240{bottom:417.442952pt;}
.y7f{bottom:417.480306pt;}
.y2e4{bottom:417.594971pt;}
.y280{bottom:418.364014pt;}
.y30d{bottom:418.385620pt;}
.y256{bottom:418.501587pt;}
.yb5{bottom:418.653564pt;}
.ye1{bottom:418.653605pt;}
.y22d{bottom:418.656281pt;}
.y297{bottom:418.777347pt;}
.y161{bottom:418.777588pt;}
.y1c4{bottom:418.777730pt;}
.y140{bottom:418.777751pt;}
.y3c2{bottom:423.529620pt;}
.y385{bottom:423.817673pt;}
.y443{bottom:423.835620pt;}
.y402{bottom:423.869578pt;}
.y3b{bottom:425.521240pt;}
.y344{bottom:429.869635pt;}
.y1fb{bottom:433.362956pt;}
.y23f{bottom:434.109619pt;}
.y7e{bottom:434.146973pt;}
.y2e3{bottom:434.261637pt;}
.y27f{bottom:435.030680pt;}
.y255{bottom:435.168254pt;}
.y110{bottom:435.226929pt;}
.yb4{bottom:435.320231pt;}
.ye0{bottom:435.320272pt;}
.y22c{bottom:435.322947pt;}
.y296{bottom:435.444014pt;}
.y160{bottom:435.444255pt;}
.y1c3{bottom:435.444397pt;}
.y13f{bottom:435.444417pt;}
.y1a2{bottom:436.128932pt;}
.y3c1{bottom:436.857620pt;}
.y384{bottom:437.145673pt;}
.y442{bottom:437.163620pt;}
.y401{bottom:437.197578pt;}
.y343{bottom:443.197635pt;}
.y30c{bottom:445.052246pt;}
.yc{bottom:446.990669pt;}
.y199{bottom:449.437581pt;}
.y1fa{bottom:450.029622pt;}
.y3c0{bottom:450.185620pt;}
.y383{bottom:450.473673pt;}
.y441{bottom:450.491620pt;}
.y400{bottom:450.525578pt;}
.y7d{bottom:450.813639pt;}
.y2e2{bottom:450.928304pt;}
.y27e{bottom:451.697347pt;}
.y254{bottom:451.829619pt;}
.y10f{bottom:451.893595pt;}
.yb3{bottom:451.986898pt;}
.ydf{bottom:451.986938pt;}
.y295{bottom:452.110680pt;}
.y15f{bottom:452.110921pt;}
.y1c2{bottom:452.111064pt;}
.y13e{bottom:452.111084pt;}
.y342{bottom:456.525635pt;}
.y30b{bottom:461.718913pt;}
.yb{bottom:462.990669pt;}
.y3bf{bottom:463.513620pt;}
.y382{bottom:463.801673pt;}
.y440{bottom:463.819620pt;}
.y3ff{bottom:463.853578pt;}
.y1f9{bottom:466.696289pt;}
.y23e{bottom:467.442952pt;}
.y7c{bottom:467.480306pt;}
.y2e1{bottom:467.594971pt;}
.y27d{bottom:468.364014pt;}
.y253{bottom:468.496286pt;}
.y10e{bottom:468.560262pt;}
.yb2{bottom:468.653564pt;}
.yde{bottom:468.653605pt;}
.y22b{bottom:468.656281pt;}
.y294{bottom:468.777347pt;}
.y15e{bottom:468.777588pt;}
.y1c1{bottom:468.777730pt;}
.y13d{bottom:468.777751pt;}
.y341{bottom:469.853635pt;}
.y19a{bottom:473.952318pt;}
.y3a{bottom:475.521240pt;}
.y3be{bottom:476.841620pt;}
.y381{bottom:477.129673pt;}
.y43f{bottom:477.147620pt;}
.y3fe{bottom:477.181578pt;}
.y30a{bottom:478.385579pt;}
.ya{bottom:478.990666pt;}
.y340{bottom:483.181635pt;}
.y1f8{bottom:483.362956pt;}
.y7b{bottom:484.146973pt;}
.y2e0{bottom:484.261637pt;}
.y27c{bottom:485.030680pt;}
.y10d{bottom:485.226929pt;}
.yb1{bottom:485.320231pt;}
.ydd{bottom:485.320272pt;}
.y22a{bottom:485.322947pt;}
.y293{bottom:485.444014pt;}
.y15d{bottom:485.444255pt;}
.y1c0{bottom:485.444397pt;}
.y13c{bottom:485.444417pt;}
.y3bd{bottom:490.169620pt;}
.y380{bottom:490.457673pt;}
.y43e{bottom:490.475620pt;}
.y3fd{bottom:490.509578pt;}
.y9{bottom:494.990666pt;}
.y309{bottom:495.052246pt;}
.y33f{bottom:496.509635pt;}
.y19b{bottom:498.467054pt;}
.y1f7{bottom:500.029622pt;}
.y7a{bottom:500.813639pt;}
.y2df{bottom:500.928304pt;}
.y27b{bottom:501.697347pt;}
.y10c{bottom:501.893595pt;}
.yb0{bottom:501.986898pt;}
.ydc{bottom:501.986938pt;}
.y229{bottom:501.989614pt;}
.y292{bottom:502.110680pt;}
.y15c{bottom:502.110921pt;}
.y1bf{bottom:502.111064pt;}
.y13b{bottom:502.111084pt;}
.y3bc{bottom:503.497620pt;}
.y37f{bottom:503.785673pt;}
.y43d{bottom:503.803620pt;}
.y3fc{bottom:503.837578pt;}
.y39{bottom:508.854574pt;}
.y33e{bottom:509.837635pt;}
.y308{bottom:511.718913pt;}
.y1f6{bottom:516.696289pt;}
.y3bb{bottom:516.825620pt;}
.y37e{bottom:517.113673pt;}
.y43c{bottom:517.131620pt;}
.y3fb{bottom:517.165578pt;}
.y79{bottom:517.480306pt;}
.y2de{bottom:517.594971pt;}
.y27a{bottom:518.364014pt;}
.yaf{bottom:518.653564pt;}
.ydb{bottom:518.653605pt;}
.y228{bottom:518.656281pt;}
.y291{bottom:518.777347pt;}
.y15b{bottom:518.777588pt;}
.y1be{bottom:518.777730pt;}
.y13a{bottom:518.777751pt;}
.y19c{bottom:522.981791pt;}
.y33d{bottom:523.165635pt;}
.y38{bottom:525.521240pt;}
.y307{bottom:528.385579pt;}
.y3ba{bottom:530.153620pt;}
.y37d{bottom:530.441673pt;}
.y43b{bottom:530.459620pt;}
.y3fa{bottom:530.493578pt;}
.y271{bottom:531.561198pt;}
.y1f5{bottom:533.362956pt;}
.y78{bottom:534.146973pt;}
.y2dd{bottom:534.261637pt;}
.y279{bottom:535.030680pt;}
.y10b{bottom:535.226929pt;}
.yae{bottom:535.320231pt;}
.yda{bottom:535.320272pt;}
.y227{bottom:535.322947pt;}
.y290{bottom:535.444014pt;}
.y15a{bottom:535.444255pt;}
.y1bd{bottom:535.444397pt;}
.y139{bottom:535.444417pt;}
.y33c{bottom:536.493635pt;}
.y37{bottom:542.187907pt;}
.y3b9{bottom:543.481620pt;}
.y37c{bottom:543.769673pt;}
.y43a{bottom:543.787620pt;}
.y3f9{bottom:543.821578pt;}
.y306{bottom:545.052246pt;}
.y19d{bottom:547.496527pt;}
.y33b{bottom:549.821635pt;}
.y1f4{bottom:550.029622pt;}
.y77{bottom:550.813639pt;}
.y2dc{bottom:550.928304pt;}
.yad{bottom:551.986898pt;}
.yd9{bottom:551.986938pt;}
.y226{bottom:551.989614pt;}
.y28f{bottom:552.110680pt;}
.y159{bottom:552.110921pt;}
.y1bc{bottom:552.111064pt;}
.y138{bottom:552.111084pt;}
.y270{bottom:552.821884pt;}
.y3b8{bottom:556.809620pt;}
.y37b{bottom:557.097673pt;}
.y439{bottom:557.115620pt;}
.y3f8{bottom:557.149578pt;}
.y36{bottom:558.854574pt;}
.y305{bottom:561.718913pt;}
.y33a{bottom:563.149635pt;}
.y267{bottom:566.130533pt;}
.y1f3{bottom:566.696289pt;}
.y76{bottom:567.480306pt;}
.y2db{bottom:567.594971pt;}
.yac{bottom:568.653564pt;}
.yf2{bottom:568.653605pt;}
.y225{bottom:568.656281pt;}
.y28e{bottom:568.777347pt;}
.y158{bottom:568.777588pt;}
.y1bb{bottom:568.777730pt;}
.y137{bottom:568.777751pt;}
.y3b7{bottom:570.137620pt;}
.y37a{bottom:570.425673pt;}
.y438{bottom:570.443620pt;}
.y3f7{bottom:570.477578pt;}
.y19e{bottom:572.011263pt;}
.y8{bottom:573.786667pt;}
.y2a6{bottom:575.166688pt;}
.y35{bottom:575.521240pt;}
.y339{bottom:576.477635pt;}
.y304{bottom:578.385579pt;}
.y1f2{bottom:583.362956pt;}
.y3b6{bottom:583.465620pt;}
.y379{bottom:583.753673pt;}
.y437{bottom:583.771620pt;}
.y3f6{bottom:583.805578pt;}
.y75{bottom:584.146973pt;}
.y2da{bottom:584.261637pt;}
.y10a{bottom:585.226938pt;}
.yd8{bottom:585.314938pt;}
.yab{bottom:585.320231pt;}
.yf1{bottom:585.320272pt;}
.y28d{bottom:585.444014pt;}
.y157{bottom:585.444255pt;}
.y1ba{bottom:585.444397pt;}
.y136{bottom:585.444417pt;}
.y338{bottom:589.805635pt;}
.y268{bottom:590.645270pt;}
.y34{bottom:592.187907pt;}
.y2a5{bottom:592.280021pt;}
.y7{bottom:592.685334pt;}
.y303{bottom:595.052246pt;}
.y19f{bottom:596.526000pt;}
.y3b5{bottom:596.793620pt;}
.y378{bottom:597.081673pt;}
.y436{bottom:597.099620pt;}
.y3f5{bottom:597.133578pt;}
.y1f1{bottom:600.029622pt;}
.y74{bottom:600.813639pt;}
.y2d9{bottom:600.928304pt;}
.y109{bottom:601.893605pt;}
.yaa{bottom:601.986898pt;}
.yd7{bottom:601.986938pt;}
.y224{bottom:601.989614pt;}
.y28c{bottom:602.110680pt;}
.y156{bottom:602.110921pt;}
.y1b9{bottom:602.111064pt;}
.y135{bottom:602.111084pt;}
.y337{bottom:603.133635pt;}
.y2a4{bottom:605.608021pt;}
.y33{bottom:608.854574pt;}
.y3b4{bottom:610.121620pt;}
.y377{bottom:610.409673pt;}
.y435{bottom:610.427620pt;}
.y3f4{bottom:610.461578pt;}
.y302{bottom:611.718913pt;}
.y269{bottom:615.160006pt;}
.y336{bottom:616.461635pt;}
.y1f0{bottom:616.696289pt;}
.y73{bottom:617.480306pt;}
.y2d8{bottom:617.594971pt;}
.y108{bottom:618.560272pt;}
.ya9{bottom:618.653564pt;}
.yf0{bottom:618.653605pt;}
.y28b{bottom:618.777347pt;}
.y155{bottom:618.777588pt;}
.y1b8{bottom:618.777730pt;}
.y134{bottom:618.777751pt;}
.y2a3{bottom:618.936021pt;}
.y1a0{bottom:621.040736pt;}
.y3b3{bottom:623.449620pt;}
.y376{bottom:623.737673pt;}
.y434{bottom:623.755620pt;}
.y3f3{bottom:623.789578pt;}
.y32{bottom:625.521240pt;}
.y301{bottom:628.385579pt;}
.y335{bottom:629.789635pt;}
.y2a2{bottom:632.264021pt;}
.y1ef{bottom:633.362956pt;}
.y72{bottom:634.146973pt;}
.y2d7{bottom:634.261637pt;}
.y107{bottom:635.226938pt;}
.ya8{bottom:635.320231pt;}
.yef{bottom:635.320272pt;}
.y223{bottom:635.322947pt;}
.yf3{bottom:635.325605pt;}
.y28a{bottom:635.444014pt;}
.y1b1{bottom:635.444255pt;}
.y1b7{bottom:635.444397pt;}
.y133{bottom:635.444417pt;}
.y3b2{bottom:636.777620pt;}
.y375{bottom:637.065673pt;}
.y433{bottom:637.083620pt;}
.y3f2{bottom:637.117578pt;}
.y198{bottom:638.660246pt;}
.y26a{bottom:639.674743pt;}
.y31{bottom:642.187907pt;}
.y334{bottom:643.117635pt;}
.y300{bottom:645.052246pt;}
.y1a1{bottom:645.555473pt;}
.y2a1{bottom:645.592021pt;}
.y6{bottom:645.598667pt;}
.y1ee{bottom:650.029622pt;}
.y3b1{bottom:650.105620pt;}
.y374{bottom:650.393673pt;}
.y432{bottom:650.411620pt;}
.y3f1{bottom:650.445578pt;}
.y71{bottom:650.813639pt;}
.y2d6{bottom:650.928304pt;}
.y106{bottom:651.893605pt;}
.ya7{bottom:651.986898pt;}
.yd6{bottom:651.986938pt;}
.y197{bottom:651.988246pt;}
.y222{bottom:651.989614pt;}
.y289{bottom:652.110680pt;}
.y154{bottom:652.110921pt;}
.y132{bottom:652.111084pt;}
.y333{bottom:656.445635pt;}
.y30{bottom:658.854574pt;}
.y2ff{bottom:661.718913pt;}
.y3b0{bottom:663.433620pt;}
.y373{bottom:663.721673pt;}
.y431{bottom:663.739620pt;}
.y3f0{bottom:663.773578pt;}
.y26b{bottom:664.189479pt;}
.y1ed{bottom:666.696289pt;}
.y70{bottom:667.480306pt;}
.y2d5{bottom:667.594971pt;}
.y105{bottom:668.560272pt;}
.ya6{bottom:668.653564pt;}
.yd5{bottom:668.653605pt;}
.y221{bottom:668.656281pt;}
.y288{bottom:668.777347pt;}
.y131{bottom:668.777751pt;}
.y3{bottom:668.977329pt;}
.y332{bottom:669.773635pt;}
.y2ac{bottom:671.099980pt;}
.y2f{bottom:675.521240pt;}
.y3af{bottom:676.761620pt;}
.y372{bottom:677.049673pt;}
.y430{bottom:677.067620pt;}
.y3ef{bottom:677.101578pt;}
.y2fe{bottom:678.385579pt;}
.y331{bottom:683.101635pt;}
.y1ec{bottom:683.362956pt;}
.y6f{bottom:684.146973pt;}
.y2d4{bottom:684.261637pt;}
.y2ab{bottom:684.427980pt;}
.y104{bottom:685.226938pt;}
.ya5{bottom:685.320231pt;}
.y220{bottom:685.322947pt;}
.y287{bottom:685.444014pt;}
.y130{bottom:685.444417pt;}
.y1df{bottom:687.468018pt;}
.y26c{bottom:688.704215pt;}
.y3ae{bottom:690.089620pt;}
.y371{bottom:690.377673pt;}
.y42f{bottom:690.395620pt;}
.y3ee{bottom:690.429578pt;}
.y189{bottom:691.902979pt;}
.y2e{bottom:692.187907pt;}
.y2fd{bottom:695.052246pt;}
.y330{bottom:696.429635pt;}
.y2aa{bottom:697.755980pt;}
.y1eb{bottom:700.029622pt;}
.y6e{bottom:700.813639pt;}
.y2d3{bottom:700.928304pt;}
.y103{bottom:701.893605pt;}
.ya4{bottom:701.986898pt;}
.yd4{bottom:701.986938pt;}
.y21f{bottom:701.989614pt;}
.y286{bottom:702.110680pt;}
.y12f{bottom:702.111084pt;}
.y3ad{bottom:703.417620pt;}
.y370{bottom:703.705673pt;}
.y42e{bottom:703.723620pt;}
.y3ed{bottom:703.757578pt;}
.y188{bottom:705.230979pt;}
.y1ce{bottom:705.791992pt;}
.y2d{bottom:708.854574pt;}
.y32f{bottom:709.757635pt;}
.y2a9{bottom:711.083980pt;}
.y2ad{bottom:711.095313pt;}
.y2fc{bottom:711.718913pt;}
.y26d{bottom:713.218952pt;}
.y1ea{bottom:716.696289pt;}
.y3ac{bottom:716.745620pt;}
.y36f{bottom:717.033673pt;}
.y42d{bottom:717.051620pt;}
.y3ec{bottom:717.085578pt;}
.y6d{bottom:717.480306pt;}
.y2d2{bottom:717.594971pt;}
.y187{bottom:718.558979pt;}
.y102{bottom:718.560272pt;}
.ya3{bottom:718.653564pt;}
.yd3{bottom:718.653605pt;}
.y21e{bottom:718.656281pt;}
.y285{bottom:718.777347pt;}
.y12e{bottom:718.777751pt;}
.y1cf{bottom:721.369567pt;}
.y32e{bottom:723.085635pt;}
.y2c{bottom:725.521240pt;}
.y2fb{bottom:728.385579pt;}
.y3ab{bottom:730.073620pt;}
.y36e{bottom:730.361673pt;}
.y42c{bottom:730.379620pt;}
.y3eb{bottom:730.413578pt;}
.y1e9{bottom:733.362956pt;}
.y6c{bottom:734.146973pt;}
.y2d1{bottom:734.261637pt;}
.y101{bottom:735.226938pt;}
.ya2{bottom:735.320231pt;}
.yd2{bottom:735.320272pt;}
.y21d{bottom:735.322947pt;}
.y284{bottom:735.444014pt;}
.y12d{bottom:735.444417pt;}
.y2a8{bottom:736.051313pt;}
.y32d{bottom:736.413635pt;}
.y1d0{bottom:736.947141pt;}
.y26e{bottom:737.733688pt;}
.y2b{bottom:742.187907pt;}
.y196{bottom:743.085579pt;}
.y3aa{bottom:743.401620pt;}
.y36d{bottom:743.689673pt;}
.y42b{bottom:743.707620pt;}
.y3ea{bottom:743.741578pt;}
.y2fa{bottom:745.052246pt;}
.y2a7{bottom:749.379313pt;}
.y32c{bottom:749.741635pt;}
.y1e8{bottom:750.029622pt;}
.y6b{bottom:750.813639pt;}
.y2d0{bottom:750.928304pt;}
.y100{bottom:751.893605pt;}
.ya1{bottom:751.986898pt;}
.yd1{bottom:751.986938pt;}
.y21c{bottom:751.989614pt;}
.y283{bottom:752.110680pt;}
.y1d1{bottom:752.524715pt;}
.y266{bottom:755.359582pt;}
.y3a9{bottom:756.729620pt;}
.y36c{bottom:757.017673pt;}
.y42a{bottom:757.035620pt;}
.y3e9{bottom:757.069578pt;}
.y195{bottom:759.790913pt;}
.y2f9{bottom:761.718913pt;}
.y26f{bottom:762.248425pt;}
.y32b{bottom:763.069635pt;}
.y1e7{bottom:766.696289pt;}
.y6a{bottom:767.480306pt;}
.y2cf{bottom:767.594971pt;}
.y1d2{bottom:768.102290pt;}
.yff{bottom:768.560272pt;}
.ya0{bottom:768.653564pt;}
.yee{bottom:768.653605pt;}
.y21b{bottom:768.656281pt;}
.y265{bottom:768.687582pt;}
.y282{bottom:768.777347pt;}
.y3a8{bottom:770.057620pt;}
.y36b{bottom:770.345673pt;}
.y429{bottom:770.363620pt;}
.y3e8{bottom:770.397578pt;}
.y2a0{bottom:772.026688pt;}
.y1de{bottom:773.166667pt;}
.y32a{bottom:776.397635pt;}
.y194{bottom:776.428246pt;}
.y179{bottom:780.110306pt;}
.y2a{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y3a7{bottom:783.385620pt;}
.y36a{bottom:783.673673pt;}
.y1d3{bottom:783.679864pt;}
.y428{bottom:783.691620pt;}
.y3e7{bottom:783.725578pt;}
.y69{bottom:784.146973pt;}
.y2ce{bottom:784.261637pt;}
.yfe{bottom:785.226938pt;}
.y9f{bottom:785.320231pt;}
.yd0{bottom:785.320272pt;}
.y21a{bottom:785.322947pt;}
.y29f{bottom:785.354688pt;}
.y281{bottom:785.444014pt;}
.y329{bottom:789.725635pt;}
.y193{bottom:793.065579pt;}
.y29{bottom:794.789469pt;}
.y2f8{bottom:795.052246pt;}
.y3a6{bottom:796.713620pt;}
.y369{bottom:797.001673pt;}
.y427{bottom:797.019620pt;}
.y3e6{bottom:797.053578pt;}
.y178{bottom:797.223639pt;}
.y1d4{bottom:799.257439pt;}
.y1e6{bottom:800.029622pt;}
.y68{bottom:800.813639pt;}
.y2cd{bottom:800.928304pt;}
.yfd{bottom:801.893605pt;}
.y9e{bottom:801.986898pt;}
.ycf{bottom:801.986938pt;}
.y219{bottom:801.989614pt;}
.y328{bottom:803.053635pt;}
.y192{bottom:809.702913pt;}
.y3a5{bottom:810.041620pt;}
.y368{bottom:810.329673pt;}
.y426{bottom:810.347620pt;}
.y3e5{bottom:810.381578pt;}
.y263{bottom:813.452973pt;}
.y1d5{bottom:814.835013pt;}
.y327{bottom:816.381635pt;}
.y67{bottom:817.480306pt;}
.y2cc{bottom:817.594971pt;}
.yfc{bottom:818.560272pt;}
.y9d{bottom:818.653564pt;}
.yce{bottom:818.653605pt;}
.y218{bottom:818.656281pt;}
.y182{bottom:822.305579pt;}
.y3a4{bottom:823.369620pt;}
.y367{bottom:823.657673pt;}
.y425{bottom:823.675620pt;}
.y3e4{bottom:823.709578pt;}
.y191{bottom:826.340246pt;}
.y326{bottom:829.709635pt;}
.y1d6{bottom:830.412587pt;}
.y262{bottom:830.566306pt;}
.y28{bottom:832.656169pt;}
.y299{bottom:833.218306pt;}
.y1e5{bottom:833.362956pt;}
.y66{bottom:834.146973pt;}
.y2cb{bottom:834.261637pt;}
.yfb{bottom:835.226938pt;}
.y9c{bottom:835.320231pt;}
.yed{bottom:835.320272pt;}
.y217{bottom:835.322947pt;}
.y3a3{bottom:836.697620pt;}
.y366{bottom:836.985673pt;}
.y424{bottom:837.003620pt;}
.y3e3{bottom:837.037578pt;}
.y181{bottom:839.010913pt;}
.y190{bottom:842.977579pt;}
.y1d7{bottom:845.990162pt;}
.y298{bottom:846.546306pt;}
.y3a2{bottom:850.025620pt;}
.y365{bottom:850.313673pt;}
.y423{bottom:850.331620pt;}
.y3e2{bottom:850.365578pt;}
.y65{bottom:850.813639pt;}
.y2ca{bottom:850.928304pt;}
.yfa{bottom:851.893605pt;}
.y9b{bottom:851.986898pt;}
.ycd{bottom:851.986938pt;}
.y216{bottom:851.989614pt;}
.y264{bottom:855.580246pt;}
.y180{bottom:855.648246pt;}
.y1{bottom:859.312000pt;}
.y18f{bottom:859.614913pt;}
.y325{bottom:859.709635pt;}
.y1d8{bottom:861.567736pt;}
.y3a1{bottom:863.353620pt;}
.y364{bottom:863.641673pt;}
.y422{bottom:863.659620pt;}
.y3e1{bottom:863.693578pt;}
.y64{bottom:867.480306pt;}
.y2c9{bottom:867.594971pt;}
.yf9{bottom:868.560272pt;}
.y9a{bottom:868.653564pt;}
.ycc{bottom:868.653605pt;}
.y215{bottom:868.656281pt;}
.y29e{bottom:871.374688pt;}
.y17f{bottom:872.285579pt;}
.y27{bottom:872.377441pt;}
.y18e{bottom:876.252246pt;}
.y3a0{bottom:876.681620pt;}
.y363{bottom:876.969673pt;}
.y421{bottom:876.987620pt;}
.y3e0{bottom:877.021578pt;}
.y1d9{bottom:877.145311pt;}
.y1e4{bottom:883.362956pt;}
.y63{bottom:884.146973pt;}
.y2c8{bottom:884.261637pt;}
.yf8{bottom:885.226938pt;}
.y99{bottom:885.320231pt;}
.ycb{bottom:885.320272pt;}
.y214{bottom:885.322947pt;}
.y29d{bottom:888.080021pt;}
.y17e{bottom:888.922913pt;}
.y39f{bottom:890.009620pt;}
.y362{bottom:890.297673pt;}
.y420{bottom:890.315620pt;}
.y3df{bottom:890.349578pt;}
.y1da{bottom:892.722885pt;}
.y18d{bottom:892.889579pt;}
.y26{bottom:896.377441pt;}
.y1e3{bottom:900.029622pt;}
.y62{bottom:900.813639pt;}
.y2c7{bottom:900.928304pt;}
.y98{bottom:901.986898pt;}
.yca{bottom:901.986938pt;}
.y213{bottom:901.989614pt;}
.y39e{bottom:903.337620pt;}
.y361{bottom:903.625673pt;}
.y41f{bottom:903.643620pt;}
.y3de{bottom:903.677578pt;}
.y29c{bottom:904.717355pt;}
.y17d{bottom:905.560246pt;}
.y1db{bottom:908.300459pt;}
.y18c{bottom:909.526913pt;}
.y324{bottom:916.665620pt;}
.y1e2{bottom:916.696289pt;}
.y360{bottom:916.953673pt;}
.y41e{bottom:916.971620pt;}
.y3dd{bottom:917.005578pt;}
.y61{bottom:917.480306pt;}
.y2c6{bottom:917.594971pt;}
.yf7{bottom:918.560272pt;}
.y97{bottom:918.653564pt;}
.yc9{bottom:918.653605pt;}
.y212{bottom:918.656281pt;}
.y29b{bottom:921.354688pt;}
.y17c{bottom:922.197579pt;}
.y1dc{bottom:923.878034pt;}
.y18b{bottom:926.164246pt;}
.y323{bottom:929.993620pt;}
.y35f{bottom:930.281673pt;}
.y41d{bottom:930.299620pt;}
.y3dc{bottom:930.333578pt;}
.y1e1{bottom:933.362956pt;}
.y60{bottom:934.146973pt;}
.y2c5{bottom:934.261637pt;}
.yf6{bottom:935.226938pt;}
.y96{bottom:935.320231pt;}
.yc8{bottom:935.320272pt;}
.y211{bottom:935.322947pt;}
.y1dd{bottom:938.001220pt;}
.y17b{bottom:938.834913pt;}
.y177{bottom:942.324306pt;}
.y322{bottom:943.321620pt;}
.y35e{bottom:943.609673pt;}
.y41c{bottom:943.627620pt;}
.y3db{bottom:943.661578pt;}
.y29a{bottom:946.322021pt;}
.y18a{bottom:950.474246pt;}
.y5f{bottom:950.813639pt;}
.yf5{bottom:951.893605pt;}
.y95{bottom:951.986898pt;}
.yc7{bottom:951.986938pt;}
.y210{bottom:951.989614pt;}
.y176{bottom:955.652306pt;}
.y25{bottom:956.561849pt;}
.y321{bottom:956.649620pt;}
.y35d{bottom:956.937673pt;}
.y41b{bottom:956.955620pt;}
.y3da{bottom:956.989578pt;}
.y17a{bottom:963.802246pt;}
.y1e0{bottom:966.696289pt;}
.y5e{bottom:967.480306pt;}
.y2c4{bottom:967.594971pt;}
.yf4{bottom:968.560272pt;}
.y94{bottom:968.653564pt;}
.yc6{bottom:968.653605pt;}
.y20f{bottom:968.656281pt;}
.y175{bottom:968.980306pt;}
.y320{bottom:969.977620pt;}
.y35c{bottom:970.265673pt;}
.y41a{bottom:970.283620pt;}
.y3d9{bottom:970.317578pt;}
.y24{bottom:986.299161pt;}
.y23{bottom:1001.406494pt;}
.y5d{bottom:1002.206543pt;}
.y93{bottom:1002.206706pt;}
.h14{height:22.403733pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h1d{height:31.595256pt;}
.h12{height:32.005333pt;}
.h1e{height:32.007967pt;}
.h1f{height:32.021301pt;}
.h20{height:32.026699pt;}
.h25{height:32.302116pt;}
.h13{height:32.760417pt;}
.h22{height:33.414859pt;}
.h10{height:37.653333pt;}
.h26{height:38.762467pt;}
.hb{height:39.712000pt;}
.h23{height:40.097608pt;}
.h1b{height:40.165333pt;}
.h1a{height:40.494409pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1c{height:46.376000pt;}
.h11{height:47.253333pt;}
.h19{height:47.690667pt;}
.h21{height:47.691236pt;}
.h24{height:47.711871pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h18{height:52.448000pt;}
.hf{height:52.746667pt;}
.h17{height:53.546667pt;}
.h15{height:54.560000pt;}
.he{height:57.658667pt;}
.h16{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.xb{left:83.151469pt;}
.xa{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:122.454135pt;}
.x1b{left:176.684134pt;}
.x4{left:180.874667pt;}
.x1c{left:230.494800pt;}
.xd{left:238.110802pt;}
.x13{left:246.110413pt;}
.xf{left:247.414933pt;}
.x10{left:252.183858pt;}
.x18{left:263.711324pt;}
.x15{left:273.436401pt;}
.x1f{left:276.508138pt;}
.x16{left:277.438973pt;}
.x20{left:280.377420pt;}
.x1d{left:284.010800pt;}
.x11{left:293.428169pt;}
.xe{left:296.918937pt;}
.x17{left:324.928939pt;}
.x21{left:328.389054pt;}
.x14{left:330.691078pt;}
.x1e{left:336.223466pt;}
.x12{left:356.406535pt;}
.x19{left:365.548543pt;}
.x3{left:404.408000pt;}
.x8{left:408.191457pt;}
.x9{left:423.311457pt;}
.x24{left:430.856869pt;}
.x23{left:455.002930pt;}
.x22{left:456.264282pt;}
.x5{left:647.307210pt;}
.xc{left:704.136393pt;}
}




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