
    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_1fe7442f66a6338a93df3ff4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_40bf95fbd0b72fbaf7688971.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7942cd29048b8976fe8b31d3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_021f3c69b1ff0c5e2391fc96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752000;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_15199fa4efb943e2fb596f24.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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;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_0bd20f76a62e7aad27f5ae8c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_365ee77d037ffa2bea22ff91.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065581;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_ad60704880ada0753b5baa30.woff2')format("woff");}.fff{font-family:fff;line-height:0.677246;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_e23a114979ee3245ad07e13d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.228000;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_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-20.399963px;}
.v3{vertical-align:-14.999817px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.375963px;}
.v1{vertical-align:24.000000px;}
.ls5c{letter-spacing:-1.500000px;}
.ls3e{letter-spacing:-1.275000px;}
.ls55{letter-spacing:-1.260000px;}
.ls5a{letter-spacing:-1.140000px;}
.ls57{letter-spacing:-1.080000px;}
.ls58{letter-spacing:-1.020000px;}
.ls68{letter-spacing:-0.969000px;}
.ls5b{letter-spacing:-0.960000px;}
.ls59{letter-spacing:-0.840000px;}
.ls49{letter-spacing:-0.726000px;}
.ls69{letter-spacing:-0.714000px;}
.ls56{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls83{letter-spacing:-0.408000px;}
.ls13{letter-spacing:-0.360000px;}
.ls87{letter-spacing:-0.357000px;}
.ls89{letter-spacing:-0.306000px;}
.ls2c{letter-spacing:-0.300000px;}
.ls67{letter-spacing:-0.255000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls84{letter-spacing:-0.204000px;}
.ls29{letter-spacing:-0.180000px;}
.ls88{letter-spacing:-0.153000px;}
.ls3b{letter-spacing:-0.126000px;}
.ls12{letter-spacing:-0.120000px;}
.ls86{letter-spacing:-0.102000px;}
.ls11{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.051000px;}
.ls10{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.012543px;}
.ls7b{letter-spacing:0.025500px;}
.ls25{letter-spacing:0.030000px;}
.ls76{letter-spacing:0.051000px;}
.ls39{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.102000px;}
.lsd{letter-spacing:0.120000px;}
.ls61{letter-spacing:0.150000px;}
.ls7f{letter-spacing:0.153000px;}
.ls7a{letter-spacing:0.178500px;}
.lse{letter-spacing:0.178791px;}
.ls17{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.198000px;}
.ls62{letter-spacing:0.204000px;}
.ls31{letter-spacing:0.210000px;}
.ls63{letter-spacing:0.210103px;}
.ls64{letter-spacing:0.210835px;}
.ls1{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.255000px;}
.ls72{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.275944px;}
.ls53{letter-spacing:0.276000px;}
.ls19{letter-spacing:0.287991px;}
.ls78{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.318000px;}
.ls32{letter-spacing:0.330000px;}
.ls99{letter-spacing:0.331500px;}
.ls6c{letter-spacing:0.357000px;}
.ls26{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.372000px;}
.ls7e{letter-spacing:0.382500px;}
.ls3f{letter-spacing:0.390000px;}
.ls77{letter-spacing:0.408000px;}
.ls35{letter-spacing:0.410339px;}
.ls2{letter-spacing:0.420000px;}
.ls6d{letter-spacing:0.433500px;}
.ls54{letter-spacing:0.450000px;}
.ls70{letter-spacing:0.459000px;}
.ls9{letter-spacing:0.480000px;}
.ls9b{letter-spacing:0.484500px;}
.ls2f{letter-spacing:0.510000px;}
.ls8a{letter-spacing:0.535500px;}
.ls6{letter-spacing:0.540000px;}
.ls71{letter-spacing:0.561000px;}
.ls51{letter-spacing:0.570000px;}
.ls9c{letter-spacing:0.586500px;}
.ls5{letter-spacing:0.600000px;}
.ls82{letter-spacing:0.612000px;}
.ls5e{letter-spacing:0.624000px;}
.ls4b{letter-spacing:0.630000px;}
.ls1c{letter-spacing:0.653994px;}
.ls1e{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.663000px;}
.ls34{letter-spacing:0.672000px;}
.ls9a{letter-spacing:0.688500px;}
.ls1d{letter-spacing:0.690000px;}
.ls79{letter-spacing:0.714000px;}
.ls3d{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.750000px;}
.lsa{letter-spacing:0.755992px;}
.ls65{letter-spacing:0.765000px;}
.ls3{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.781219px;}
.ls38{letter-spacing:0.810000px;}
.ls6b{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.840000px;}
.ls81{letter-spacing:0.867000px;}
.ls21{letter-spacing:0.870000px;}
.ls18{letter-spacing:0.900000px;}
.ls7c{letter-spacing:0.918000px;}
.ls15{letter-spacing:0.930000px;}
.ls8b{letter-spacing:0.943500px;}
.ls1f{letter-spacing:0.960000px;}
.ls75{letter-spacing:0.969000px;}
.ls66{letter-spacing:0.994500px;}
.ls7{letter-spacing:1.020000px;}
.ls73{letter-spacing:1.071000px;}
.ls23{letter-spacing:1.080000px;}
.ls41{letter-spacing:1.110000px;}
.ls80{letter-spacing:1.122000px;}
.ls24{letter-spacing:1.140000px;}
.ls97{letter-spacing:1.147500px;}
.ls94{letter-spacing:1.173000px;}
.lsc{letter-spacing:1.200000px;}
.ls98{letter-spacing:1.224000px;}
.ls96{letter-spacing:1.249500px;}
.ls28{letter-spacing:1.260000px;}
.ls8d{letter-spacing:1.275000px;}
.ls5f{letter-spacing:1.302000px;}
.ls1b{letter-spacing:1.320000px;}
.ls7d{letter-spacing:1.326000px;}
.ls4d{letter-spacing:1.350000px;}
.ls74{letter-spacing:1.377000px;}
.ls20{letter-spacing:1.380000px;}
.ls8c{letter-spacing:1.428000px;}
.ls27{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.446000px;}
.ls60{letter-spacing:1.451979px;}
.ls95{letter-spacing:1.479000px;}
.ls4c{letter-spacing:1.499993px;}
.ls3a{letter-spacing:1.500000px;}
.ls4a{letter-spacing:1.530000px;}
.ls37{letter-spacing:1.560000px;}
.ls93{letter-spacing:1.581000px;}
.ls36{letter-spacing:1.620000px;}
.ls44{letter-spacing:1.650000px;}
.ls3c{letter-spacing:1.680000px;}
.ls92{letter-spacing:1.683000px;}
.ls8{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.759500px;}
.ls8f{letter-spacing:1.785000px;}
.ls4f{letter-spacing:1.800000px;}
.ls42{letter-spacing:1.860000px;}
.ls8e{letter-spacing:1.887000px;}
.ls5d{letter-spacing:1.980000px;}
.ls43{letter-spacing:2.046000px;}
.ls46{letter-spacing:2.100000px;}
.ls45{letter-spacing:2.220000px;}
.ls91{letter-spacing:2.397000px;}
.ls47{letter-spacing:2.460000px;}
.ls50{letter-spacing:2.580000px;}
.ls48{letter-spacing:3.000000px;}
.ls0{letter-spacing:3.990000px;}
.ls14{letter-spacing:16.264281px;}
.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;}
}
.wsc0{word-spacing:-17.580000px;}
.wse6{word-spacing:-16.980000px;}
.ws8d{word-spacing:-16.650000px;}
.ws9e{word-spacing:-16.530000px;}
.ws2a{word-spacing:-16.380000px;}
.ws9{word-spacing:-16.313270px;}
.ws8e{word-spacing:-16.140000px;}
.ws9f{word-spacing:-16.080000px;}
.wsbf{word-spacing:-16.020000px;}
.ws66{word-spacing:-15.960000px;}
.wse7{word-spacing:-15.930000px;}
.wsda{word-spacing:-15.870000px;}
.wse9{word-spacing:-15.840000px;}
.wsad{word-spacing:-15.780000px;}
.wsf2{word-spacing:-15.660000px;}
.ws8f{word-spacing:-15.600000px;}
.ws9d{word-spacing:-15.540000px;}
.wsf0{word-spacing:-15.450000px;}
.ws2c{word-spacing:-15.420000px;}
.ws2b{word-spacing:-15.360000px;}
.wse5{word-spacing:-15.330000px;}
.ws5{word-spacing:-15.300000px;}
.wsf3{word-spacing:-15.180000px;}
.ws2e{word-spacing:-15.000000px;}
.wse8{word-spacing:-14.940000px;}
.ws107{word-spacing:-14.832000px;}
.ws57{word-spacing:-14.820000px;}
.wsf1{word-spacing:-14.760000px;}
.ws59{word-spacing:-14.700000px;}
.ws2d{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.544000px;}
.ws12e{word-spacing:-13.719000px;}
.ws11b{word-spacing:-13.005000px;}
.ws7f{word-spacing:-12.750000px;}
.ws2f{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.wsf7{word-spacing:-12.036000px;}
.ws8c{word-spacing:-11.748000px;}
.ws6{word-spacing:-11.520000px;}
.ws80{word-spacing:-11.475000px;}
.ws8b{word-spacing:-11.286000px;}
.ws58{word-spacing:-11.172000px;}
.ws56{word-spacing:-10.374000px;}
.ws106{word-spacing:-10.302000px;}
.ws1{word-spacing:-9.996000px;}
.wsb{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws93{word-spacing:-7.500000px;}
.ws8a{word-spacing:-6.375000px;}
.ws94{word-spacing:-3.000000px;}
.wsc4{word-spacing:-2.580000px;}
.wsc{word-spacing:-1.890000px;}
.wsd3{word-spacing:-1.860000px;}
.ws5c{word-spacing:-1.560000px;}
.ws17{word-spacing:-1.500000px;}
.ws20{word-spacing:-1.440000px;}
.ws34{word-spacing:-1.380000px;}
.ws128{word-spacing:-1.326000px;}
.ws50{word-spacing:-1.320000px;}
.wsfa{word-spacing:-1.275000px;}
.wsa3{word-spacing:-1.260000px;}
.ws14b{word-spacing:-1.224000px;}
.ws32{word-spacing:-1.200000px;}
.ws4d{word-spacing:-1.140000px;}
.ws13c{word-spacing:-1.122000px;}
.ws68{word-spacing:-1.080000px;}
.ws119{word-spacing:-1.071000px;}
.ws1a{word-spacing:-1.020000px;}
.ws118{word-spacing:-0.969000px;}
.ws3f{word-spacing:-0.960000px;}
.ws46{word-spacing:-0.900000px;}
.ws144{word-spacing:-0.867000px;}
.ws4b{word-spacing:-0.840000px;}
.ws139{word-spacing:-0.816000px;}
.ws11{word-spacing:-0.780000px;}
.ws11a{word-spacing:-0.765000px;}
.ws1b{word-spacing:-0.720000px;}
.ws10a{word-spacing:-0.714000px;}
.ws10c{word-spacing:-0.663000px;}
.ws44{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.612000px;}
.ws39{word-spacing:-0.600000px;}
.wse{word-spacing:-0.570000px;}
.ws11f{word-spacing:-0.561000px;}
.ws23{word-spacing:-0.540000px;}
.ws110{word-spacing:-0.510000px;}
.ws12{word-spacing:-0.480000px;}
.ws123{word-spacing:-0.459000px;}
.ws36{word-spacing:-0.420000px;}
.ws149{word-spacing:-0.408000px;}
.ws5f{word-spacing:-0.360000px;}
.ws138{word-spacing:-0.357000px;}
.ws13a{word-spacing:-0.306000px;}
.ws13{word-spacing:-0.300000px;}
.ws111{word-spacing:-0.264000px;}
.ws117{word-spacing:-0.255000px;}
.ws16{word-spacing:-0.240000px;}
.ws13f{word-spacing:-0.204000px;}
.ws61{word-spacing:-0.180000px;}
.ws11e{word-spacing:-0.153000px;}
.ws21{word-spacing:-0.120000px;}
.ws125{word-spacing:-0.102000px;}
.ws6c{word-spacing:-0.060000px;}
.ws11c{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws13d{word-spacing:0.051000px;}
.ws19{word-spacing:0.060000px;}
.ws140{word-spacing:0.102000px;}
.ws15{word-spacing:0.120000px;}
.wsdd{word-spacing:0.153000px;}
.wseb{word-spacing:0.180000px;}
.ws143{word-spacing:0.204000px;}
.ws6f{word-spacing:0.240000px;}
.ws145{word-spacing:0.255000px;}
.ws4f{word-spacing:0.300000px;}
.wse3{word-spacing:0.306000px;}
.ws141{word-spacing:0.357000px;}
.ws49{word-spacing:0.360000px;}
.ws127{word-spacing:0.408000px;}
.ws1c{word-spacing:0.420000px;}
.ws5a{word-spacing:0.480000px;}
.ws116{word-spacing:0.510000px;}
.ws25{word-spacing:0.540000px;}
.ws48{word-spacing:0.600000px;}
.ws135{word-spacing:0.612000px;}
.ws4a{word-spacing:0.660000px;}
.ws129{word-spacing:0.663000px;}
.wsfe{word-spacing:0.714000px;}
.ws1f{word-spacing:0.720000px;}
.ws22{word-spacing:0.780000px;}
.ws64{word-spacing:0.840000px;}
.ws14a{word-spacing:0.867000px;}
.ws43{word-spacing:0.900000px;}
.ws136{word-spacing:0.918000px;}
.wsdb{word-spacing:0.960000px;}
.ws10f{word-spacing:0.969000px;}
.ws3e{word-spacing:1.020000px;}
.ws126{word-spacing:1.071000px;}
.ws18{word-spacing:1.080000px;}
.ws108{word-spacing:1.122000px;}
.wsd2{word-spacing:1.140000px;}
.ws10d{word-spacing:1.173000px;}
.ws5b{word-spacing:1.200000px;}
.ws10b{word-spacing:1.224000px;}
.ws60{word-spacing:1.260000px;}
.ws109{word-spacing:1.275000px;}
.wsec{word-spacing:1.320000px;}
.ws147{word-spacing:1.326000px;}
.wsa8{word-spacing:1.377000px;}
.ws14{word-spacing:1.380000px;}
.ws81{word-spacing:1.440000px;}
.ws10e{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.wsb9{word-spacing:1.530000px;}
.ws62{word-spacing:1.560000px;}
.ws11d{word-spacing:1.581000px;}
.ws24{word-spacing:1.620000px;}
.ws103{word-spacing:1.632000px;}
.ws10{word-spacing:1.680000px;}
.wsff{word-spacing:1.683000px;}
.ws146{word-spacing:1.734000px;}
.ws33{word-spacing:1.740000px;}
.ws137{word-spacing:1.785000px;}
.ws26{word-spacing:1.800000px;}
.wsbb{word-spacing:1.836000px;}
.ws41{word-spacing:1.860000px;}
.ws12d{word-spacing:1.887000px;}
.wsf5{word-spacing:1.920000px;}
.wsde{word-spacing:1.938000px;}
.ws37{word-spacing:1.980000px;}
.ws4e{word-spacing:2.040000px;}
.ws115{word-spacing:2.091000px;}
.ws3a{word-spacing:2.100000px;}
.ws54{word-spacing:2.160000px;}
.ws105{word-spacing:2.193000px;}
.ws3c{word-spacing:2.220000px;}
.wscf{word-spacing:2.244000px;}
.ws35{word-spacing:2.280000px;}
.wsd9{word-spacing:2.295000px;}
.ws45{word-spacing:2.340000px;}
.wsf9{word-spacing:2.346000px;}
.ws12c{word-spacing:2.397000px;}
.ws30{word-spacing:2.400000px;}
.ws133{word-spacing:2.448000px;}
.ws51{word-spacing:2.460000px;}
.ws5e{word-spacing:2.520000px;}
.ws67{word-spacing:2.580000px;}
.ws98{word-spacing:2.601000px;}
.ws42{word-spacing:2.640000px;}
.ws121{word-spacing:2.652000px;}
.ws3d{word-spacing:2.700000px;}
.ws142{word-spacing:2.703000px;}
.ws100{word-spacing:2.754000px;}
.ws83{word-spacing:2.760000px;}
.ws120{word-spacing:2.805000px;}
.ws3b{word-spacing:2.820000px;}
.wsa5{word-spacing:2.856000px;}
.wsc2{word-spacing:2.880000px;}
.ws1d{word-spacing:2.940000px;}
.wsca{word-spacing:2.958000px;}
.wsd4{word-spacing:3.000000px;}
.ws13e{word-spacing:3.009000px;}
.wsa4{word-spacing:3.060000px;}
.ws7e{word-spacing:3.120000px;}
.ws47{word-spacing:3.180000px;}
.ws82{word-spacing:3.240000px;}
.wsb8{word-spacing:3.264000px;}
.ws52{word-spacing:3.300000px;}
.ws131{word-spacing:3.315000px;}
.wsa0{word-spacing:3.360000px;}
.ws148{word-spacing:3.417000px;}
.ws4c{word-spacing:3.420000px;}
.wsb7{word-spacing:3.468000px;}
.wsef{word-spacing:3.480000px;}
.ws130{word-spacing:3.519000px;}
.ws65{word-spacing:3.540000px;}
.ws12a{word-spacing:3.570000px;}
.ws6a{word-spacing:3.600000px;}
.wsb0{word-spacing:3.660000px;}
.wsf6{word-spacing:3.720000px;}
.wscd{word-spacing:3.723000px;}
.ws124{word-spacing:3.774000px;}
.ws31{word-spacing:3.780000px;}
.ws113{word-spacing:3.825000px;}
.wsed{word-spacing:3.840000px;}
.wsa7{word-spacing:3.876000px;}
.ws27{word-spacing:3.900000px;}
.ws12f{word-spacing:3.927000px;}
.wsf8{word-spacing:3.960000px;}
.ws134{word-spacing:3.978000px;}
.ws5d{word-spacing:4.020000px;}
.ws55{word-spacing:4.080000px;}
.wsa2{word-spacing:4.200000px;}
.ws13b{word-spacing:4.233000px;}
.ws101{word-spacing:4.284000px;}
.wsc7{word-spacing:4.380000px;}
.ws9b{word-spacing:4.386000px;}
.wsaa{word-spacing:4.437000px;}
.ws6e{word-spacing:4.440000px;}
.wsba{word-spacing:4.488000px;}
.ws38{word-spacing:4.500000px;}
.ws112{word-spacing:4.539000px;}
.ws40{word-spacing:4.620000px;}
.ws122{word-spacing:4.641000px;}
.wsee{word-spacing:4.680000px;}
.wsd7{word-spacing:4.692000px;}
.wsc6{word-spacing:4.740000px;}
.ws104{word-spacing:4.794000px;}
.ws91{word-spacing:4.800000px;}
.ws102{word-spacing:4.845000px;}
.wsc1{word-spacing:4.860000px;}
.wsdf{word-spacing:4.896000px;}
.ws63{word-spacing:4.920000px;}
.ws114{word-spacing:4.947000px;}
.ws6d{word-spacing:4.980000px;}
.ws53{word-spacing:5.040000px;}
.ws90{word-spacing:5.100000px;}
.wsd0{word-spacing:5.202000px;}
.wsae{word-spacing:5.220000px;}
.ws12b{word-spacing:5.355000px;}
.wsa1{word-spacing:5.400000px;}
.wse1{word-spacing:5.406000px;}
.wsf4{word-spacing:5.460000px;}
.ws6b{word-spacing:5.520000px;}
.ws9a{word-spacing:5.610000px;}
.wsbe{word-spacing:5.661000px;}
.wsa9{word-spacing:5.865000px;}
.ws69{word-spacing:5.880000px;}
.ws95{word-spacing:5.940000px;}
.ws92{word-spacing:6.000000px;}
.wse0{word-spacing:6.171000px;}
.ws7d{word-spacing:6.240000px;}
.wsb3{word-spacing:6.324000px;}
.wsaf{word-spacing:6.420000px;}
.ws1e{word-spacing:6.480000px;}
.ws132{word-spacing:6.630000px;}
.wsc3{word-spacing:6.660000px;}
.ws87{word-spacing:6.681000px;}
.ws86{word-spacing:6.936000px;}
.ws84{word-spacing:7.080000px;}
.wsd8{word-spacing:7.140000px;}
.wsb6{word-spacing:7.344000px;}
.wsbd{word-spacing:7.395000px;}
.wsb2{word-spacing:7.446000px;}
.wsea{word-spacing:7.500000px;}
.wsb4{word-spacing:7.548000px;}
.wsa6{word-spacing:7.803000px;}
.wse4{word-spacing:7.956000px;}
.wscb{word-spacing:8.262000px;}
.ws97{word-spacing:8.313000px;}
.wsac{word-spacing:8.466000px;}
.wsd6{word-spacing:9.027000px;}
.wsfd{word-spacing:9.129000px;}
.wsab{word-spacing:9.588000px;}
.wse2{word-spacing:9.741000px;}
.wsdc{word-spacing:10.404000px;}
.ws88{word-spacing:10.608000px;}
.wsc5{word-spacing:10.620000px;}
.wsfb{word-spacing:10.812000px;}
.wsd1{word-spacing:11.526000px;}
.ws89{word-spacing:11.577000px;}
.wsfc{word-spacing:11.832000px;}
.wsb5{word-spacing:12.138000px;}
.wsbc{word-spacing:12.189000px;}
.wsce{word-spacing:13.464000px;}
.ws14c{word-spacing:13.515000px;}
.wscc{word-spacing:13.872000px;}
.wsc9{word-spacing:14.076000px;}
.ws96{word-spacing:14.280000px;}
.wsc8{word-spacing:14.637000px;}
.ws9c{word-spacing:14.943000px;}
.ws85{word-spacing:15.147000px;}
.wsd5{word-spacing:15.555000px;}
.wsa{word-spacing:16.362259px;}
.ws8{word-spacing:16.656191px;}
.ws14d{word-spacing:17.595000px;}
.ws99{word-spacing:20.808000px;}
.wsb1{word-spacing:26.622000px;}
.ws28{word-spacing:72.267000px;}
.ws77{word-spacing:434.264978px;}
.ws70{word-spacing:457.622978px;}
.ws75{word-spacing:463.232978px;}
.ws78{word-spacing:465.476978px;}
.ws74{word-spacing:466.139978px;}
.ws76{word-spacing:471.647978px;}
.ws71{word-spacing:477.512978px;}
.ws7a{word-spacing:480.113978px;}
.ws7c{word-spacing:483.122978px;}
.ws73{word-spacing:505.817978px;}
.ws72{word-spacing:519.944978px;}
.ws79{word-spacing:536.774978px;}
.ws7b{word-spacing:536.978978px;}
._8{margin-left:-96.900000px;}
._1a{margin-left:-22.029914px;}
._18{margin-left:-20.349011px;}
._15{margin-left:-17.952000px;}
._5{margin-left:-16.264281px;}
._1e{margin-left:-14.841000px;}
._e{margin-left:-13.164000px;}
._1c{margin-left:-11.796000px;}
._10{margin-left:-10.074000px;}
._11{margin-left:-9.060000px;}
._17{margin-left:-7.500000px;}
._a{margin-left:-6.048000px;}
._1d{margin-left:-5.004000px;}
._4{margin-left:-3.906000px;}
._2{margin-left:-2.766000px;}
._0{margin-left:-1.632000px;}
._3{width:1.578000px;}
._c{width:2.832000px;}
._b{width:4.512000px;}
._d{width:6.000000px;}
._14{width:7.872000px;}
._1f{width:9.210000px;}
._20{width:10.416452px;}
._1b{width:12.479986px;}
._f{width:13.740000px;}
._16{width:14.942547px;}
._12{width:16.084720px;}
._6{width:18.049281px;}
._25{width:19.227000px;}
._27{width:20.369781px;}
._19{width:21.648452px;}
._24{width:23.052000px;}
._28{width:24.429000px;}
._26{width:25.464000px;}
._21{width:26.655000px;}
._23{width:28.866000px;}
._22{width:30.396000px;}
._1{width:40.226979px;}
._7{width:54.621000px;}
._13{width:515.762978px;}
._9{width:2463.504000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.988798px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:2.694122px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3c{bottom:112.938300px;}
.y177{bottom:113.059804px;}
.y15b{bottom:113.341800px;}
.y84{bottom:113.415298px;}
.y72{bottom:113.415344px;}
.y193{bottom:113.683800px;}
.y132{bottom:114.301799px;}
.y135{bottom:114.314549px;}
.ye8{bottom:114.735168px;}
.y22c{bottom:114.735260px;}
.yb7{bottom:114.735294px;}
.y1b4{bottom:114.874786px;}
.y202{bottom:114.874809px;}
.y2f2{bottom:116.614823px;}
.yf9{bottom:122.374947px;}
.y233{bottom:122.422203px;}
.y2e{bottom:122.461349px;}
.y278{bottom:127.850098px;}
.y176{bottom:128.053804px;}
.y17c{bottom:128.079304px;}
.y15a{bottom:128.335800px;}
.y15d{bottom:128.348550px;}
.y131{bottom:129.295799px;}
.y134{bottom:129.308549px;}
.y1f7{bottom:131.283325px;}
.y2f1{bottom:131.608823px;}
.y374{bottom:131.991307px;}
.y333{bottom:132.004073px;}
.y83{bottom:132.165298px;}
.y71{bottom:132.165344px;}
.y192{bottom:132.433800px;}
.y1dc{bottom:132.433823px;}
.y3b{bottom:133.032303px;}
.ye7{bottom:133.485168px;}
.y22b{bottom:133.485260px;}
.yb6{bottom:133.485294px;}
.y1b3{bottom:133.624786px;}
.y201{bottom:133.624809px;}
.y232{bottom:137.416203px;}
.yf8{bottom:141.124947px;}
.y2d{bottom:141.211349px;}
.y277{bottom:142.844098px;}
.y175{bottom:143.047804px;}
.y17b{bottom:143.073304px;}
.y159{bottom:143.329800px;}
.y15c{bottom:143.342550px;}
.y130{bottom:144.289799px;}
.y133{bottom:144.302549px;}
.y2f0{bottom:146.602823px;}
.y373{bottom:146.985307px;}
.y332{bottom:146.998073px;}
.y1f6{bottom:150.033325px;}
.y82{bottom:150.915298px;}
.y70{bottom:150.915344px;}
.y191{bottom:151.183800px;}
.y1db{bottom:151.183823px;}
.ye6{bottom:152.235168px;}
.y22a{bottom:152.235260px;}
.yb5{bottom:152.235294px;}
.y1b2{bottom:152.374786px;}
.y187{bottom:152.374809px;}
.y2b5{bottom:154.143325px;}
.y3a{bottom:155.579556px;}
.y276{bottom:157.838098px;}
.y174{bottom:158.041804px;}
.y17a{bottom:158.067304px;}
.yf7{bottom:159.874947px;}
.y2c{bottom:159.961349px;}
.y2ef{bottom:161.596823px;}
.y372{bottom:161.979307px;}
.y331{bottom:161.992073px;}
.y1f5{bottom:168.783325px;}
.y2b4{bottom:169.137325px;}
.y81{bottom:169.665298px;}
.y6f{bottom:169.665344px;}
.y190{bottom:169.933800px;}
.y1da{bottom:169.933823px;}
.ye5{bottom:170.985168px;}
.y229{bottom:170.985260px;}
.yb4{bottom:170.985306px;}
.y1b1{bottom:171.124786px;}
.y186{bottom:171.124809px;}
.y275{bottom:172.832098px;}
.y39{bottom:173.032794px;}
.y173{bottom:173.035804px;}
.y179{bottom:173.061304px;}
.y2ee{bottom:176.590823px;}
.y371{bottom:176.973307px;}
.y330{bottom:176.986073px;}
.yf6{bottom:178.624947px;}
.y2b{bottom:178.711349px;}
.y2b3{bottom:184.131325px;}
.y1f4{bottom:187.533325px;}
.y274{bottom:187.826098px;}
.y172{bottom:188.029804px;}
.y178{bottom:188.055304px;}
.y80{bottom:188.415298px;}
.y6e{bottom:188.415344px;}
.y18f{bottom:188.683800px;}
.y1d9{bottom:188.683823px;}
.ye4{bottom:189.735168px;}
.y228{bottom:189.735260px;}
.yb3{bottom:189.735306px;}
.y1b0{bottom:189.874786px;}
.y185{bottom:189.874809px;}
.y2ed{bottom:191.584823px;}
.y370{bottom:191.967307px;}
.y32f{bottom:191.980073px;}
.y38{bottom:193.126808px;}
.yf5{bottom:197.374947px;}
.y2a{bottom:197.461349px;}
.y2b2{bottom:199.125325px;}
.y273{bottom:202.820098px;}
.y1f3{bottom:206.283325px;}
.y2ec{bottom:206.578823px;}
.y36f{bottom:206.961307px;}
.y32e{bottom:206.974073px;}
.y7f{bottom:207.165298px;}
.y6d{bottom:207.165344px;}
.y18e{bottom:207.433800px;}
.y1d8{bottom:207.433823px;}
.ye3{bottom:208.485168px;}
.y227{bottom:208.485260px;}
.yb2{bottom:208.485306px;}
.y1af{bottom:208.624786px;}
.y184{bottom:208.624809px;}
.y37{bottom:210.586059px;}
.y2b1{bottom:214.119325px;}
.yf4{bottom:216.124947px;}
.y29{bottom:216.211349px;}
.y272{bottom:217.814098px;}
.y2eb{bottom:221.572823px;}
.y36e{bottom:221.955307px;}
.y32d{bottom:221.968073px;}
.y1f2{bottom:225.033325px;}
.y36{bottom:225.580059px;}
.y7e{bottom:225.915298px;}
.y6c{bottom:225.915344px;}
.y18d{bottom:226.183800px;}
.y1d7{bottom:226.183823px;}
.ye2{bottom:227.235168px;}
.y226{bottom:227.235260px;}
.yb1{bottom:227.235306px;}
.y1ae{bottom:227.374786px;}
.y183{bottom:227.374809px;}
.y2b0{bottom:229.113325px;}
.y271{bottom:232.808098px;}
.yf3{bottom:234.874947px;}
.y28{bottom:234.961349px;}
.y2ea{bottom:236.566823px;}
.y36d{bottom:236.949307px;}
.y32c{bottom:236.962073px;}
.y1f1{bottom:243.783325px;}
.y2af{bottom:244.107325px;}
.y7d{bottom:244.665298px;}
.y6b{bottom:244.665344px;}
.y18c{bottom:244.933800px;}
.y1d6{bottom:244.933823px;}
.y35{bottom:245.674049px;}
.ye1{bottom:245.985168px;}
.y225{bottom:245.985260px;}
.yb0{bottom:245.985306px;}
.y1ad{bottom:246.124786px;}
.y182{bottom:246.124809px;}
.y270{bottom:247.802098px;}
.y2e9{bottom:251.560823px;}
.y36c{bottom:251.943307px;}
.y32b{bottom:251.956073px;}
.yf2{bottom:253.624947px;}
.y27{bottom:253.711349px;}
.y2ae{bottom:259.101325px;}
.y1f0{bottom:262.533325px;}
.y26f{bottom:262.796098px;}
.y7c{bottom:263.415298px;}
.y6a{bottom:263.415344px;}
.y18b{bottom:263.683800px;}
.y1d5{bottom:263.683823px;}
.ye0{bottom:264.735168px;}
.y224{bottom:264.735260px;}
.yaf{bottom:264.735306px;}
.y1ac{bottom:264.874786px;}
.y181{bottom:264.874809px;}
.y2e8{bottom:266.554823px;}
.y36b{bottom:266.937307px;}
.y32a{bottom:266.950073px;}
.y34{bottom:270.685805px;}
.yf1{bottom:272.374947px;}
.y26{bottom:272.461349px;}
.y2ad{bottom:274.095325px;}
.y26e{bottom:277.790098px;}
.y1ef{bottom:281.283325px;}
.y2e7{bottom:281.548823px;}
.y36a{bottom:281.931307px;}
.y329{bottom:281.944073px;}
.y7b{bottom:282.165298px;}
.y69{bottom:282.165344px;}
.y1d4{bottom:282.433823px;}
.ydf{bottom:283.485168px;}
.y223{bottom:283.485260px;}
.yae{bottom:283.485306px;}
.y1ab{bottom:283.624786px;}
.y180{bottom:283.624809px;}
.y33{bottom:285.679805px;}
.y2ac{bottom:289.089325px;}
.yf0{bottom:291.124947px;}
.y25{bottom:291.211349px;}
.y26d{bottom:292.784098px;}
.y2e6{bottom:296.542823px;}
.y369{bottom:296.925307px;}
.y328{bottom:296.938073px;}
.y1ee{bottom:300.033325px;}
.y7a{bottom:300.915298px;}
.y68{bottom:300.915344px;}
.y1d3{bottom:301.183823px;}
.y18a{bottom:301.195800px;}
.yde{bottom:302.235168px;}
.y222{bottom:302.235260px;}
.yad{bottom:302.235306px;}
.y1aa{bottom:302.374786px;}
.y17f{bottom:302.374809px;}
.y2ab{bottom:304.083325px;}
.y32{bottom:308.221805px;}
.yef{bottom:309.874947px;}
.y24{bottom:309.961349px;}
.y2e5{bottom:311.536823px;}
.y368{bottom:311.919307px;}
.y327{bottom:311.932073px;}
.y1ed{bottom:318.783325px;}
.y2aa{bottom:319.077325px;}
.y79{bottom:319.665298px;}
.y67{bottom:319.665344px;}
.y1d2{bottom:319.933823px;}
.y189{bottom:319.939800px;}
.ydd{bottom:320.985168px;}
.y221{bottom:320.985260px;}
.yac{bottom:320.985306px;}
.y1a9{bottom:321.124786px;}
.y17e{bottom:321.124809px;}
.y31{bottom:323.215805px;}
.y2e4{bottom:326.530823px;}
.y367{bottom:326.913307px;}
.y326{bottom:326.926073px;}
.yee{bottom:328.624947px;}
.y23{bottom:328.711349px;}
.y26c{bottom:333.979348px;}
.y2a9{bottom:334.071325px;}
.y1ec{bottom:337.533325px;}
.y78{bottom:338.415298px;}
.y66{bottom:338.415344px;}
.y188{bottom:338.683800px;}
.y1d1{bottom:338.683823px;}
.ydc{bottom:339.735168px;}
.y220{bottom:339.735260px;}
.yab{bottom:339.735306px;}
.y1a8{bottom:339.874786px;}
.y17d{bottom:339.874809px;}
.y2e3{bottom:341.524823px;}
.y366{bottom:341.907307px;}
.y325{bottom:341.920073px;}
.y100{bottom:347.374947px;}
.y22{bottom:347.461349px;}
.y2a8{bottom:349.065325px;}
.y1eb{bottom:356.283325px;}
.y2e2{bottom:356.518823px;}
.y365{bottom:356.901307px;}
.y324{bottom:356.914073px;}
.y77{bottom:357.165298px;}
.y65{bottom:357.165344px;}
.y1d0{bottom:357.433823px;}
.ydb{bottom:358.485168px;}
.y21f{bottom:358.485260px;}
.yaa{bottom:358.485306px;}
.y1a7{bottom:358.624786px;}
.y200{bottom:358.624809px;}
.y26b{bottom:363.941848px;}
.y2a7{bottom:364.059325px;}
.yed{bottom:366.124809px;}
.yff{bottom:366.124947px;}
.y20{bottom:366.211349px;}
.y2e1{bottom:371.512823px;}
.y364{bottom:371.895307px;}
.y323{bottom:371.908073px;}
.y1ea{bottom:375.033325px;}
.y76{bottom:375.915298px;}
.y64{bottom:375.915344px;}
.y1cf{bottom:376.183823px;}
.yda{bottom:377.235168px;}
.y21e{bottom:377.235260px;}
.ya9{bottom:377.235306px;}
.y1a6{bottom:377.374786px;}
.y2a6{bottom:379.053325px;}
.yfe{bottom:384.874947px;}
.y1f{bottom:384.961349px;}
.y2e0{bottom:386.506823px;}
.y363{bottom:386.889307px;}
.y322{bottom:386.902073px;}
.y1e9{bottom:393.783325px;}
.y26a{bottom:393.904348px;}
.y2a5{bottom:394.047325px;}
.y75{bottom:394.665298px;}
.y63{bottom:394.665344px;}
.y1ce{bottom:394.933823px;}
.yd9{bottom:395.985168px;}
.y21d{bottom:395.985260px;}
.ya8{bottom:395.985306px;}
.y1a5{bottom:396.124786px;}
.y19b{bottom:398.752968px;}
.y2df{bottom:401.500823px;}
.y362{bottom:401.883307px;}
.y321{bottom:401.896073px;}
.yec{bottom:403.624786px;}
.yfd{bottom:403.624947px;}
.y1e{bottom:403.711349px;}
.y269{bottom:408.898348px;}
.y2a4{bottom:409.041325px;}
.y1e8{bottom:412.533325px;}
.y62{bottom:413.415344px;}
.y1cd{bottom:413.683823px;}
.y19a{bottom:413.746968px;}
.y1a2{bottom:413.785214px;}
.y209{bottom:414.646931px;}
.y210{bottom:414.685181px;}
.yd8{bottom:414.735168px;}
.y21c{bottom:414.735260px;}
.ya7{bottom:414.735306px;}
.y1a4{bottom:414.874786px;}
.y2de{bottom:416.494823px;}
.y361{bottom:416.877307px;}
.y320{bottom:416.890073px;}
.yeb{bottom:422.374786px;}
.yfc{bottom:422.374947px;}
.y1d{bottom:422.461349px;}
.y268{bottom:423.892348px;}
.y2a3{bottom:424.035325px;}
.y199{bottom:428.740968px;}
.y1a1{bottom:428.779214px;}
.y208{bottom:429.640931px;}
.y20f{bottom:429.679181px;}
.y1e7{bottom:431.283325px;}
.y2dd{bottom:431.488823px;}
.y360{bottom:431.871307px;}
.y31f{bottom:431.884073px;}
.y74{bottom:432.165298px;}
.y61{bottom:432.165344px;}
.y1cc{bottom:432.433823px;}
.yd7{bottom:433.485168px;}
.y21b{bottom:433.485260px;}
.ya6{bottom:433.485306px;}
.y1a3{bottom:433.624786px;}
.y267{bottom:438.886348px;}
.y2a2{bottom:439.029325px;}
.yea{bottom:441.124786px;}
.yfb{bottom:441.124947px;}
.y21{bottom:441.211349px;}
.y198{bottom:443.734968px;}
.y1a0{bottom:443.773214px;}
.y207{bottom:444.634931px;}
.y20e{bottom:444.673181px;}
.y2dc{bottom:446.482823px;}
.y35f{bottom:446.865307px;}
.y31e{bottom:446.878073px;}
.y1e6{bottom:450.033325px;}
.y60{bottom:450.915344px;}
.y1cb{bottom:451.183823px;}
.y158{bottom:451.608317px;}
.yd6{bottom:452.235168px;}
.y21a{bottom:452.235260px;}
.ya5{bottom:452.235306px;}
.y231{bottom:452.374786px;}
.y266{bottom:453.880348px;}
.y2a1{bottom:454.023325px;}
.y197{bottom:458.728968px;}
.y19f{bottom:458.767214px;}
.y206{bottom:459.628931px;}
.y20d{bottom:459.667181px;}
.ye9{bottom:459.874786px;}
.yfa{bottom:459.874947px;}
.y1c{bottom:459.961349px;}
.y2db{bottom:461.476823px;}
.y35e{bottom:461.859307px;}
.y31d{bottom:461.872073px;}
.y157{bottom:466.602317px;}
.y153{bottom:468.783279px;}
.y1e5{bottom:468.783325px;}
.y265{bottom:468.874348px;}
.y2a0{bottom:469.017325px;}
.y73{bottom:469.665298px;}
.y5f{bottom:469.665344px;}
.y1ca{bottom:469.933823px;}
.yd5{bottom:470.985168px;}
.y219{bottom:470.985260px;}
.ya4{bottom:470.985306px;}
.y230{bottom:471.124786px;}
.y196{bottom:473.722968px;}
.y19e{bottom:473.761214px;}
.y205{bottom:474.622931px;}
.y20c{bottom:474.661181px;}
.y2da{bottom:476.470823px;}
.y35d{bottom:476.853307px;}
.y31c{bottom:476.866073px;}
.y156{bottom:481.596317px;}
.y264{bottom:483.868348px;}
.y29f{bottom:484.011325px;}
.y152{bottom:487.533279px;}
.y1e4{bottom:487.533325px;}
.y5e{bottom:488.415344px;}
.y1c9{bottom:488.683823px;}
.y195{bottom:488.716968px;}
.y19d{bottom:488.755214px;}
.y204{bottom:489.616931px;}
.y20b{bottom:489.655181px;}
.y218{bottom:489.735260px;}
.ya3{bottom:489.735306px;}
.y22f{bottom:489.874786px;}
.y2d9{bottom:491.464823px;}
.y35c{bottom:491.847307px;}
.y31b{bottom:491.860073px;}
.y1ba{bottom:492.820970px;}
.y1c0{bottom:492.846470px;}
.y155{bottom:496.596317px;}
.y263{bottom:498.862348px;}
.y29e{bottom:499.005325px;}
.y194{bottom:503.710968px;}
.y19c{bottom:503.749214px;}
.y203{bottom:504.610931px;}
.y20a{bottom:504.649181px;}
.y1e3{bottom:506.283325px;}
.y2d8{bottom:506.458823px;}
.y35b{bottom:506.841307px;}
.y31a{bottom:506.854073px;}
.y5d{bottom:507.165344px;}
.y1c8{bottom:507.433823px;}
.y1b9{bottom:507.814970px;}
.y1bf{bottom:507.840470px;}
.yd4{bottom:508.485168px;}
.y217{bottom:508.485260px;}
.ya2{bottom:508.485306px;}
.y22e{bottom:508.624786px;}
.y154{bottom:511.590317px;}
.y29d{bottom:513.999325px;}
.y1b{bottom:516.211395px;}
.y125{bottom:520.459777px;}
.y2d7{bottom:521.452823px;}
.y35a{bottom:521.835307px;}
.y319{bottom:521.848073px;}
.y1b8{bottom:522.808970px;}
.y1be{bottom:522.834470px;}
.y1e2{bottom:525.033325px;}
.y151{bottom:525.039279px;}
.y5c{bottom:525.915344px;}
.y1c7{bottom:526.183823px;}
.y216{bottom:527.235260px;}
.ya1{bottom:527.235306px;}
.y22d{bottom:527.374786px;}
.y262{bottom:528.824848px;}
.y29c{bottom:528.993325px;}
.y124{bottom:535.453777px;}
.y2d6{bottom:536.446823px;}
.y359{bottom:536.829307px;}
.y318{bottom:536.842073px;}
.y1b7{bottom:537.802970px;}
.y1bd{bottom:537.828470px;}
.y150{bottom:543.783279px;}
.y1e1{bottom:543.783325px;}
.y261{bottom:543.818848px;}
.y29b{bottom:543.987325px;}
.y5b{bottom:544.665344px;}
.y1c6{bottom:544.933823px;}
.yd3{bottom:545.985168px;}
.y215{bottom:545.985260px;}
.ya0{bottom:545.985306px;}
.y2d5{bottom:551.440823px;}
.y358{bottom:551.823307px;}
.y317{bottom:551.836073px;}
.y1b6{bottom:552.796970px;}
.y1bc{bottom:552.822470px;}
.y1a{bottom:553.711395px;}
.y123{bottom:554.247277px;}
.y29a{bottom:558.981325px;}
.y1e0{bottom:562.533325px;}
.y5a{bottom:563.415344px;}
.y1c5{bottom:563.683823px;}
.yd2{bottom:564.735168px;}
.y214{bottom:564.735260px;}
.y9f{bottom:564.735306px;}
.y2d4{bottom:566.434823px;}
.y357{bottom:566.817307px;}
.y316{bottom:566.830073px;}
.y1b5{bottom:567.790970px;}
.y1bb{bottom:567.816470px;}
.y122{bottom:569.241277px;}
.y23b{bottom:572.092781px;}
.y19{bottom:572.461395px;}
.y299{bottom:573.975325px;}
.y260{bottom:577.568848px;}
.y14f{bottom:581.283325px;}
.y2d3{bottom:581.428823px;}
.y356{bottom:581.811307px;}
.y315{bottom:581.824073px;}
.y59{bottom:582.165344px;}
.y1c4{bottom:582.433823px;}
.yd1{bottom:583.485168px;}
.y213{bottom:583.485260px;}
.y9e{bottom:583.485306px;}
.y23a{bottom:587.086781px;}
.y242{bottom:587.125027px;}
.y121{bottom:587.958277px;}
.y298{bottom:588.969325px;}
.y18{bottom:591.211395px;}
.y2d2{bottom:596.422823px;}
.y355{bottom:596.805307px;}
.y314{bottom:596.818073px;}
.y14e{bottom:600.033325px;}
.y58{bottom:600.915344px;}
.y239{bottom:602.080781px;}
.y241{bottom:602.119027px;}
.yd0{bottom:602.235168px;}
.y212{bottom:602.235260px;}
.y9d{bottom:602.235306px;}
.y120{bottom:602.952277px;}
.y297{bottom:603.963325px;}
.y17{bottom:609.961395px;}
.y2d1{bottom:611.416823px;}
.y354{bottom:611.799307px;}
.y313{bottom:611.812073px;}
.y25f{bottom:615.241823px;}
.y238{bottom:617.074781px;}
.y240{bottom:617.113027px;}
.y14d{bottom:618.783325px;}
.y296{bottom:618.957325px;}
.y57{bottom:619.665344px;}
.y1c3{bottom:619.945823px;}
.ycf{bottom:620.985168px;}
.y211{bottom:620.985260px;}
.y9c{bottom:620.985306px;}
.y11f{bottom:621.669277px;}
.y2d0{bottom:626.410823px;}
.y353{bottom:626.793307px;}
.y312{bottom:626.806073px;}
.y16{bottom:628.711395px;}
.y237{bottom:632.068781px;}
.y23f{bottom:632.107027px;}
.y295{bottom:633.951325px;}
.y11e{bottom:636.663277px;}
.y14c{bottom:637.533325px;}
.y56{bottom:638.415344px;}
.y1c2{bottom:638.689823px;}
.yce{bottom:639.735168px;}
.y9b{bottom:639.735260px;}
.y12f{bottom:639.735306px;}
.y2cf{bottom:641.404823px;}
.y352{bottom:641.787307px;}
.y311{bottom:641.800073px;}
.y236{bottom:647.062781px;}
.y23e{bottom:647.101027px;}
.y15{bottom:647.461395px;}
.y294{bottom:648.945325px;}
.y25e{bottom:648.952823px;}
.y11d{bottom:655.380277px;}
.y14b{bottom:656.283325px;}
.y2ce{bottom:656.398823px;}
.y351{bottom:656.781307px;}
.y310{bottom:656.794073px;}
.y55{bottom:657.165344px;}
.y1c1{bottom:657.433823px;}
.ycd{bottom:658.485168px;}
.y9a{bottom:658.485260px;}
.y12e{bottom:658.485306px;}
.y15f{bottom:658.497306px;}
.y235{bottom:662.056781px;}
.y23d{bottom:662.095027px;}
.y293{bottom:663.939325px;}
.y25d{bottom:663.946823px;}
.y14{bottom:666.211395px;}
.y11c{bottom:670.374277px;}
.y2cd{bottom:671.392823px;}
.y350{bottom:671.775307px;}
.y30f{bottom:671.788073px;}
.y14a{bottom:675.033325px;}
.y54{bottom:675.915344px;}
.y234{bottom:677.050781px;}
.y23c{bottom:677.089027px;}
.ycc{bottom:677.235168px;}
.y99{bottom:677.235260px;}
.y12d{bottom:677.235306px;}
.y15e{bottom:677.241306px;}
.y292{bottom:678.933325px;}
.y25c{bottom:678.940823px;}
.y13{bottom:684.961395px;}
.y2cc{bottom:686.386823px;}
.y34f{bottom:686.769307px;}
.y30e{bottom:686.782073px;}
.y11b{bottom:689.091277px;}
.y149{bottom:693.783325px;}
.y291{bottom:693.927325px;}
.y53{bottom:694.665344px;}
.ycb{bottom:695.985168px;}
.y98{bottom:695.985260px;}
.y12c{bottom:695.985306px;}
.y2cb{bottom:701.380823px;}
.y34e{bottom:701.763307px;}
.y30d{bottom:701.776073px;}
.y12{bottom:703.711395px;}
.y11a{bottom:704.085277px;}
.y1ff{bottom:705.652840px;}
.y290{bottom:708.921325px;}
.y148{bottom:712.533325px;}
.y25b{bottom:712.651823px;}
.y52{bottom:713.415344px;}
.yca{bottom:714.735168px;}
.y97{bottom:714.735260px;}
.y12b{bottom:714.735306px;}
.y2ca{bottom:716.374823px;}
.y34d{bottom:716.757307px;}
.y30c{bottom:716.770073px;}
.y1fe{bottom:720.646840px;}
.y11{bottom:722.461395px;}
.y119{bottom:722.802277px;}
.y28f{bottom:723.915325px;}
.y25a{bottom:727.645823px;}
.y38c{bottom:730.680315px;}
.y147{bottom:731.283325px;}
.y2c9{bottom:731.368823px;}
.y34c{bottom:731.751307px;}
.y30b{bottom:731.764073px;}
.y51{bottom:732.165344px;}
.yc9{bottom:733.485168px;}
.y96{bottom:733.485260px;}
.y12a{bottom:733.485306px;}
.y1fd{bottom:735.640840px;}
.y118{bottom:737.796277px;}
.y28e{bottom:738.909325px;}
.y10{bottom:741.211395px;}
.y259{bottom:742.639823px;}
.y38b{bottom:745.674315px;}
.y2c8{bottom:746.362823px;}
.y34b{bottom:746.745307px;}
.y30a{bottom:746.758073px;}
.y146{bottom:750.033325px;}
.y1fc{bottom:750.634840px;}
.y50{bottom:750.915344px;}
.yc8{bottom:752.235168px;}
.y95{bottom:752.235260px;}
.y129{bottom:752.235306px;}
.y28d{bottom:753.903325px;}
.y117{bottom:756.513277px;}
.y258{bottom:757.633823px;}
.yf{bottom:759.961395px;}
.y2c7{bottom:761.356823px;}
.y34a{bottom:761.739307px;}
.y309{bottom:761.752073px;}
.y1fb{bottom:765.628840px;}
.y145{bottom:768.783325px;}
.y28c{bottom:768.897325px;}
.y4f{bottom:769.665344px;}
.yc7{bottom:770.985168px;}
.y94{bottom:770.985260px;}
.y171{bottom:770.985306px;}
.y116{bottom:771.507277px;}
.y257{bottom:772.627823px;}
.y2c6{bottom:776.350823px;}
.y38a{bottom:776.516565px;}
.y349{bottom:776.733307px;}
.y308{bottom:776.746073px;}
.ye{bottom:778.711395px;}
.y1fa{bottom:780.622840px;}
.y28b{bottom:783.891325px;}
.y144{bottom:787.533325px;}
.y256{bottom:787.621823px;}
.y4e{bottom:788.415344px;}
.yc6{bottom:789.735168px;}
.y128{bottom:789.735260px;}
.y170{bottom:789.735306px;}
.y115{bottom:790.224277px;}
.y2c5{bottom:791.344823px;}
.y389{bottom:791.510565px;}
.y348{bottom:791.727307px;}
.y307{bottom:791.740073px;}
.y1f9{bottom:795.616840px;}
.yd{bottom:797.461395px;}
.y28a{bottom:798.885325px;}
.y255{bottom:802.615823px;}
.y114{bottom:805.218277px;}
.y143{bottom:806.283325px;}
.y2c4{bottom:806.338823px;}
.y388{bottom:806.504565px;}
.y347{bottom:806.721307px;}
.y306{bottom:806.734073px;}
.y4d{bottom:807.165344px;}
.yc5{bottom:808.485168px;}
.y93{bottom:808.485260px;}
.y16f{bottom:808.485306px;}
.y1f8{bottom:810.610840px;}
.y289{bottom:813.879325px;}
.yc{bottom:816.211395px;}
.y254{bottom:817.609823px;}
.y2c3{bottom:821.332823px;}
.y387{bottom:821.498565px;}
.y346{bottom:821.715307px;}
.y305{bottom:821.728073px;}
.y113{bottom:823.935277px;}
.y142{bottom:825.033325px;}
.y4c{bottom:825.915344px;}
.yc4{bottom:827.235168px;}
.y127{bottom:827.235260px;}
.y16e{bottom:827.235306px;}
.y288{bottom:828.873325px;}
.y253{bottom:832.603823px;}
.y2c2{bottom:836.326823px;}
.y386{bottom:836.492565px;}
.y345{bottom:836.709307px;}
.y304{bottom:836.722073px;}
.y112{bottom:838.929277px;}
.y141{bottom:843.783325px;}
.y287{bottom:843.867325px;}
.y4b{bottom:844.665344px;}
.yc3{bottom:845.985168px;}
.y126{bottom:845.985260px;}
.y16d{bottom:845.985306px;}
.y252{bottom:847.597823px;}
.y2c1{bottom:851.320823px;}
.y385{bottom:851.486565px;}
.y344{bottom:851.703307px;}
.y303{bottom:851.716073px;}
.y111{bottom:857.646277px;}
.y286{bottom:858.861325px;}
.yb{bottom:860.394153px;}
.y140{bottom:862.533325px;}
.y251{bottom:862.591823px;}
.y4a{bottom:863.415344px;}
.yc2{bottom:864.735168px;}
.y92{bottom:864.735260px;}
.y16c{bottom:864.735306px;}
.y2c0{bottom:866.314823px;}
.y384{bottom:866.480565px;}
.y343{bottom:866.697307px;}
.y302{bottom:866.710073px;}
.y110{bottom:872.640277px;}
.y285{bottom:873.855325px;}
.ya{bottom:875.388153px;}
.y250{bottom:877.585823px;}
.y13f{bottom:881.283325px;}
.y2bf{bottom:881.308823px;}
.y383{bottom:881.474565px;}
.y342{bottom:881.691307px;}
.y301{bottom:881.704073px;}
.y49{bottom:882.165344px;}
.yc1{bottom:883.485168px;}
.y91{bottom:883.485260px;}
.y16b{bottom:883.485306px;}
.y284{bottom:888.849325px;}
.y10f{bottom:891.357277px;}
.y24f{bottom:892.579823px;}
.y2be{bottom:896.302823px;}
.y382{bottom:896.468565px;}
.y341{bottom:896.685307px;}
.y300{bottom:896.698073px;}
.y13e{bottom:900.033325px;}
.y48{bottom:900.915344px;}
.yc0{bottom:902.235168px;}
.y90{bottom:902.235260px;}
.y16a{bottom:902.235306px;}
.y283{bottom:903.843325px;}
.y10e{bottom:906.351277px;}
.y24e{bottom:907.573823px;}
.y2bd{bottom:911.296823px;}
.y381{bottom:911.462565px;}
.y340{bottom:911.679307px;}
.y2ff{bottom:911.692073px;}
.y9{bottom:917.988190px;}
.y13d{bottom:918.783325px;}
.y282{bottom:918.837325px;}
.y47{bottom:919.665344px;}
.ybf{bottom:920.985168px;}
.y8f{bottom:920.985260px;}
.y169{bottom:920.985306px;}
.y24d{bottom:922.567823px;}
.y10d{bottom:925.068277px;}
.y2bc{bottom:926.290823px;}
.y380{bottom:926.456565px;}
.y33f{bottom:926.673307px;}
.y2fe{bottom:926.686073px;}
.y281{bottom:933.831325px;}
.y8{bottom:936.738190px;}
.y13c{bottom:937.533325px;}
.y24c{bottom:937.561823px;}
.y46{bottom:938.415344px;}
.ybe{bottom:939.735168px;}
.y8e{bottom:939.735260px;}
.y168{bottom:939.735306px;}
.y10c{bottom:940.062277px;}
.y2bb{bottom:941.284823px;}
.y37f{bottom:941.450565px;}
.y33e{bottom:941.667307px;}
.y2fd{bottom:941.680073px;}
.y280{bottom:948.825325px;}
.y24b{bottom:952.555823px;}
.y2ba{bottom:956.278823px;}
.y13b{bottom:956.283325px;}
.y37e{bottom:956.444565px;}
.y33d{bottom:956.661307px;}
.y2fc{bottom:956.674073px;}
.y45{bottom:957.165344px;}
.ybd{bottom:958.485168px;}
.y8d{bottom:958.485260px;}
.y167{bottom:958.485306px;}
.y10b{bottom:958.779277px;}
.y27f{bottom:963.819325px;}
.y24a{bottom:967.549823px;}
.y2b9{bottom:971.272823px;}
.y37d{bottom:971.438565px;}
.y33c{bottom:971.655307px;}
.y2fb{bottom:971.668073px;}
.y10a{bottom:973.773277px;}
.y13a{bottom:975.033325px;}
.y44{bottom:975.915344px;}
.ybc{bottom:977.235168px;}
.y8c{bottom:977.235260px;}
.y166{bottom:977.235306px;}
.y27e{bottom:978.813325px;}
.y7{bottom:981.424622px;}
.y249{bottom:982.543823px;}
.y2b8{bottom:986.266823px;}
.y37c{bottom:986.432565px;}
.y33b{bottom:986.649307px;}
.y2fa{bottom:986.662073px;}
.y109{bottom:992.490277px;}
.y1df{bottom:993.783325px;}
.y27d{bottom:993.807325px;}
.y43{bottom:994.665344px;}
.y8b{bottom:995.985260px;}
.y165{bottom:995.985306px;}
.y248{bottom:997.537823px;}
.y2b7{bottom:1001.260823px;}
.y37b{bottom:1001.426565px;}
.y33a{bottom:1001.643307px;}
.y2f9{bottom:1001.656073px;}
.y108{bottom:1007.484277px;}
.y6{bottom:1008.424622px;}
.y27c{bottom:1008.801325px;}
.y1de{bottom:1012.533325px;}
.y139{bottom:1012.545325px;}
.y42{bottom:1013.415344px;}
.y8a{bottom:1014.735260px;}
.y164{bottom:1014.735306px;}
.ybb{bottom:1014.741168px;}
.y2b6{bottom:1016.254823px;}
.y37a{bottom:1016.420565px;}
.y339{bottom:1016.637307px;}
.y2f8{bottom:1016.650073px;}
.y27b{bottom:1023.795325px;}
.y107{bottom:1026.201277px;}
.y247{bottom:1031.248823px;}
.y1dd{bottom:1031.283325px;}
.y138{bottom:1031.289325px;}
.y379{bottom:1031.414565px;}
.y338{bottom:1031.631307px;}
.y2f7{bottom:1031.644073px;}
.y41{bottom:1032.165344px;}
.yba{bottom:1033.485168px;}
.y89{bottom:1033.485260px;}
.y163{bottom:1033.485306px;}
.y27a{bottom:1038.789325px;}
.y106{bottom:1041.195277px;}
.y246{bottom:1046.242823px;}
.y378{bottom:1046.408565px;}
.y337{bottom:1046.625307px;}
.y2f6{bottom:1046.638073px;}
.y137{bottom:1050.033325px;}
.y40{bottom:1050.915344px;}
.y88{bottom:1052.235260px;}
.y162{bottom:1052.235306px;}
.y279{bottom:1053.783325px;}
.y103{bottom:1060.114844px;}
.y245{bottom:1061.236823px;}
.y377{bottom:1061.402565px;}
.y336{bottom:1061.619307px;}
.y2f5{bottom:1061.632073px;}
.y105{bottom:1069.283527px;}
.y3f{bottom:1069.665344px;}
.y87{bottom:1070.985260px;}
.yb9{bottom:1070.985294px;}
.y161{bottom:1070.985306px;}
.y102{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y244{bottom:1076.230823px;}
.y376{bottom:1076.396565px;}
.y335{bottom:1076.613307px;}
.y2f4{bottom:1076.626073px;}
.y104{bottom:1084.277527px;}
.y136{bottom:1087.533325px;}
.y3e{bottom:1088.415344px;}
.y86{bottom:1089.735260px;}
.yb8{bottom:1089.735294px;}
.y160{bottom:1089.735306px;}
.y101{bottom:1090.102844px;}
.y243{bottom:1091.224823px;}
.y375{bottom:1091.390565px;}
.y334{bottom:1091.607307px;}
.y2f3{bottom:1091.620073px;}
.y2f{bottom:1105.511993px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3d{bottom:1127.482361px;}
.y85{bottom:1127.482544px;}
.hd{height:13.237500px;}
.h11{height:25.204199px;}
.h2{height:33.840000px;}
.h10{height:36.006000px;}
.he{height:36.104744px;}
.hf{height:36.855469px;}
.h9{height:42.360000px;}
.h13{height:42.360183px;}
.h4{height:44.676000px;}
.h16{height:45.186000px;}
.h19{height:45.580163px;}
.h17{height:52.173000px;}
.hb{height:53.160000px;}
.h15{height:53.651954px;}
.h14{height:53.652000px;}
.h1a{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h12{height:59.004000px;}
.h8{height:59.340000px;}
.ha{height:61.380000px;}
.h18{height:64.548000px;}
.h7{height:64.866000px;}
.hc{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:212.596504px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x9{left:78.746400px;}
.x4{left:85.181849px;}
.xa{left:93.530422px;}
.x8{left:97.796100px;}
.xf{left:102.048152px;}
.xc{left:267.873894px;}
.xd{left:423.717138px;}
.x5{left:459.215389px;}
.x6{left:476.210389px;}
.xe{left:484.725290px;}
.x7{left:603.781494px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xb{left:792.153442px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.333171pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.111967pt;}
.v1{vertical-align:21.333333pt;}
.ls5c{letter-spacing:-1.333333pt;}
.ls3e{letter-spacing:-1.133333pt;}
.ls55{letter-spacing:-1.120000pt;}
.ls5a{letter-spacing:-1.013333pt;}
.ls57{letter-spacing:-0.960000pt;}
.ls58{letter-spacing:-0.906667pt;}
.ls68{letter-spacing:-0.861333pt;}
.ls5b{letter-spacing:-0.853333pt;}
.ls59{letter-spacing:-0.746667pt;}
.ls49{letter-spacing:-0.645333pt;}
.ls69{letter-spacing:-0.634667pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls83{letter-spacing:-0.362667pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls87{letter-spacing:-0.317333pt;}
.ls89{letter-spacing:-0.272000pt;}
.ls2c{letter-spacing:-0.266667pt;}
.ls67{letter-spacing:-0.226667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls84{letter-spacing:-0.181333pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls88{letter-spacing:-0.136000pt;}
.ls3b{letter-spacing:-0.112000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls86{letter-spacing:-0.090667pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.045333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.011149pt;}
.ls7b{letter-spacing:0.022667pt;}
.ls25{letter-spacing:0.026667pt;}
.ls76{letter-spacing:0.045333pt;}
.ls39{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.090667pt;}
.lsd{letter-spacing:0.106667pt;}
.ls61{letter-spacing:0.133333pt;}
.ls7f{letter-spacing:0.136000pt;}
.ls7a{letter-spacing:0.158667pt;}
.lse{letter-spacing:0.158926pt;}
.ls17{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.176000pt;}
.ls62{letter-spacing:0.181333pt;}
.ls31{letter-spacing:0.186667pt;}
.ls63{letter-spacing:0.186758pt;}
.ls64{letter-spacing:0.187409pt;}
.ls1{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.226667pt;}
.ls72{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.245284pt;}
.ls53{letter-spacing:0.245333pt;}
.ls19{letter-spacing:0.255992pt;}
.ls78{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.282667pt;}
.ls32{letter-spacing:0.293333pt;}
.ls99{letter-spacing:0.294667pt;}
.ls6c{letter-spacing:0.317333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.330667pt;}
.ls7e{letter-spacing:0.340000pt;}
.ls3f{letter-spacing:0.346667pt;}
.ls77{letter-spacing:0.362667pt;}
.ls35{letter-spacing:0.364746pt;}
.ls2{letter-spacing:0.373333pt;}
.ls6d{letter-spacing:0.385333pt;}
.ls54{letter-spacing:0.400000pt;}
.ls70{letter-spacing:0.408000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls9b{letter-spacing:0.430667pt;}
.ls2f{letter-spacing:0.453333pt;}
.ls8a{letter-spacing:0.476000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls71{letter-spacing:0.498667pt;}
.ls51{letter-spacing:0.506667pt;}
.ls9c{letter-spacing:0.521333pt;}
.ls5{letter-spacing:0.533333pt;}
.ls82{letter-spacing:0.544000pt;}
.ls5e{letter-spacing:0.554667pt;}
.ls4b{letter-spacing:0.560000pt;}
.ls1c{letter-spacing:0.581328pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.589333pt;}
.ls34{letter-spacing:0.597333pt;}
.ls9a{letter-spacing:0.612000pt;}
.ls1d{letter-spacing:0.613333pt;}
.ls79{letter-spacing:0.634667pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.666667pt;}
.lsa{letter-spacing:0.671993pt;}
.ls65{letter-spacing:0.680000pt;}
.ls3{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.694417pt;}
.ls38{letter-spacing:0.720000pt;}
.ls6b{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls81{letter-spacing:0.770667pt;}
.ls21{letter-spacing:0.773333pt;}
.ls18{letter-spacing:0.800000pt;}
.ls7c{letter-spacing:0.816000pt;}
.ls15{letter-spacing:0.826667pt;}
.ls8b{letter-spacing:0.838667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls75{letter-spacing:0.861333pt;}
.ls66{letter-spacing:0.884000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls73{letter-spacing:0.952000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls41{letter-spacing:0.986667pt;}
.ls80{letter-spacing:0.997333pt;}
.ls24{letter-spacing:1.013333pt;}
.ls97{letter-spacing:1.020000pt;}
.ls94{letter-spacing:1.042667pt;}
.lsc{letter-spacing:1.066667pt;}
.ls98{letter-spacing:1.088000pt;}
.ls96{letter-spacing:1.110667pt;}
.ls28{letter-spacing:1.120000pt;}
.ls8d{letter-spacing:1.133333pt;}
.ls5f{letter-spacing:1.157333pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls7d{letter-spacing:1.178667pt;}
.ls4d{letter-spacing:1.200000pt;}
.ls74{letter-spacing:1.224000pt;}
.ls20{letter-spacing:1.226667pt;}
.ls8c{letter-spacing:1.269333pt;}
.ls27{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.285333pt;}
.ls60{letter-spacing:1.290648pt;}
.ls95{letter-spacing:1.314667pt;}
.ls4c{letter-spacing:1.333327pt;}
.ls3a{letter-spacing:1.333333pt;}
.ls4a{letter-spacing:1.360000pt;}
.ls37{letter-spacing:1.386667pt;}
.ls93{letter-spacing:1.405333pt;}
.ls36{letter-spacing:1.440000pt;}
.ls44{letter-spacing:1.466667pt;}
.ls3c{letter-spacing:1.493333pt;}
.ls92{letter-spacing:1.496000pt;}
.ls8{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.564000pt;}
.ls8f{letter-spacing:1.586667pt;}
.ls4f{letter-spacing:1.600000pt;}
.ls42{letter-spacing:1.653333pt;}
.ls8e{letter-spacing:1.677333pt;}
.ls5d{letter-spacing:1.760000pt;}
.ls43{letter-spacing:1.818667pt;}
.ls46{letter-spacing:1.866667pt;}
.ls45{letter-spacing:1.973333pt;}
.ls91{letter-spacing:2.130667pt;}
.ls47{letter-spacing:2.186667pt;}
.ls50{letter-spacing:2.293333pt;}
.ls48{letter-spacing:2.666667pt;}
.ls0{letter-spacing:3.546667pt;}
.ls14{letter-spacing:14.457139pt;}
.wsc0{word-spacing:-15.626667pt;}
.wse6{word-spacing:-15.093333pt;}
.ws8d{word-spacing:-14.800000pt;}
.ws9e{word-spacing:-14.693333pt;}
.ws2a{word-spacing:-14.560000pt;}
.ws9{word-spacing:-14.500684pt;}
.ws8e{word-spacing:-14.346667pt;}
.ws9f{word-spacing:-14.293333pt;}
.wsbf{word-spacing:-14.240000pt;}
.ws66{word-spacing:-14.186667pt;}
.wse7{word-spacing:-14.160000pt;}
.wsda{word-spacing:-14.106667pt;}
.wse9{word-spacing:-14.080000pt;}
.wsad{word-spacing:-14.026667pt;}
.wsf2{word-spacing:-13.920000pt;}
.ws8f{word-spacing:-13.866667pt;}
.ws9d{word-spacing:-13.813333pt;}
.wsf0{word-spacing:-13.733333pt;}
.ws2c{word-spacing:-13.706667pt;}
.ws2b{word-spacing:-13.653333pt;}
.wse5{word-spacing:-13.626667pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf3{word-spacing:-13.493333pt;}
.ws2e{word-spacing:-13.333333pt;}
.wse8{word-spacing:-13.280000pt;}
.ws107{word-spacing:-13.184000pt;}
.ws57{word-spacing:-13.173333pt;}
.wsf1{word-spacing:-13.120000pt;}
.ws59{word-spacing:-13.066667pt;}
.ws2d{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.928000pt;}
.ws12e{word-spacing:-12.194667pt;}
.ws11b{word-spacing:-11.560000pt;}
.ws7f{word-spacing:-11.333333pt;}
.ws2f{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.wsf7{word-spacing:-10.698667pt;}
.ws8c{word-spacing:-10.442667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws80{word-spacing:-10.200000pt;}
.ws8b{word-spacing:-10.032000pt;}
.ws58{word-spacing:-9.930667pt;}
.ws56{word-spacing:-9.221333pt;}
.ws106{word-spacing:-9.157333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsb{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws93{word-spacing:-6.666667pt;}
.ws8a{word-spacing:-5.666667pt;}
.ws94{word-spacing:-2.666667pt;}
.wsc4{word-spacing:-2.293333pt;}
.wsc{word-spacing:-1.680000pt;}
.wsd3{word-spacing:-1.653333pt;}
.ws5c{word-spacing:-1.386667pt;}
.ws17{word-spacing:-1.333333pt;}
.ws20{word-spacing:-1.280000pt;}
.ws34{word-spacing:-1.226667pt;}
.ws128{word-spacing:-1.178667pt;}
.ws50{word-spacing:-1.173333pt;}
.wsfa{word-spacing:-1.133333pt;}
.wsa3{word-spacing:-1.120000pt;}
.ws14b{word-spacing:-1.088000pt;}
.ws32{word-spacing:-1.066667pt;}
.ws4d{word-spacing:-1.013333pt;}
.ws13c{word-spacing:-0.997333pt;}
.ws68{word-spacing:-0.960000pt;}
.ws119{word-spacing:-0.952000pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws118{word-spacing:-0.861333pt;}
.ws3f{word-spacing:-0.853333pt;}
.ws46{word-spacing:-0.800000pt;}
.ws144{word-spacing:-0.770667pt;}
.ws4b{word-spacing:-0.746667pt;}
.ws139{word-spacing:-0.725333pt;}
.ws11{word-spacing:-0.693333pt;}
.ws11a{word-spacing:-0.680000pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws10a{word-spacing:-0.634667pt;}
.ws10c{word-spacing:-0.589333pt;}
.ws44{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.544000pt;}
.ws39{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.506667pt;}
.ws11f{word-spacing:-0.498667pt;}
.ws23{word-spacing:-0.480000pt;}
.ws110{word-spacing:-0.453333pt;}
.ws12{word-spacing:-0.426667pt;}
.ws123{word-spacing:-0.408000pt;}
.ws36{word-spacing:-0.373333pt;}
.ws149{word-spacing:-0.362667pt;}
.ws5f{word-spacing:-0.320000pt;}
.ws138{word-spacing:-0.317333pt;}
.ws13a{word-spacing:-0.272000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws111{word-spacing:-0.234667pt;}
.ws117{word-spacing:-0.226667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws13f{word-spacing:-0.181333pt;}
.ws61{word-spacing:-0.160000pt;}
.ws11e{word-spacing:-0.136000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws125{word-spacing:-0.090667pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws11c{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.045333pt;}
.ws19{word-spacing:0.053333pt;}
.ws140{word-spacing:0.090667pt;}
.ws15{word-spacing:0.106667pt;}
.wsdd{word-spacing:0.136000pt;}
.wseb{word-spacing:0.160000pt;}
.ws143{word-spacing:0.181333pt;}
.ws6f{word-spacing:0.213333pt;}
.ws145{word-spacing:0.226667pt;}
.ws4f{word-spacing:0.266667pt;}
.wse3{word-spacing:0.272000pt;}
.ws141{word-spacing:0.317333pt;}
.ws49{word-spacing:0.320000pt;}
.ws127{word-spacing:0.362667pt;}
.ws1c{word-spacing:0.373333pt;}
.ws5a{word-spacing:0.426667pt;}
.ws116{word-spacing:0.453333pt;}
.ws25{word-spacing:0.480000pt;}
.ws48{word-spacing:0.533333pt;}
.ws135{word-spacing:0.544000pt;}
.ws4a{word-spacing:0.586667pt;}
.ws129{word-spacing:0.589333pt;}
.wsfe{word-spacing:0.634667pt;}
.ws1f{word-spacing:0.640000pt;}
.ws22{word-spacing:0.693333pt;}
.ws64{word-spacing:0.746667pt;}
.ws14a{word-spacing:0.770667pt;}
.ws43{word-spacing:0.800000pt;}
.ws136{word-spacing:0.816000pt;}
.wsdb{word-spacing:0.853333pt;}
.ws10f{word-spacing:0.861333pt;}
.ws3e{word-spacing:0.906667pt;}
.ws126{word-spacing:0.952000pt;}
.ws18{word-spacing:0.960000pt;}
.ws108{word-spacing:0.997333pt;}
.wsd2{word-spacing:1.013333pt;}
.ws10d{word-spacing:1.042667pt;}
.ws5b{word-spacing:1.066667pt;}
.ws10b{word-spacing:1.088000pt;}
.ws60{word-spacing:1.120000pt;}
.ws109{word-spacing:1.133333pt;}
.wsec{word-spacing:1.173333pt;}
.ws147{word-spacing:1.178667pt;}
.wsa8{word-spacing:1.224000pt;}
.ws14{word-spacing:1.226667pt;}
.ws81{word-spacing:1.280000pt;}
.ws10e{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.wsb9{word-spacing:1.360000pt;}
.ws62{word-spacing:1.386667pt;}
.ws11d{word-spacing:1.405333pt;}
.ws24{word-spacing:1.440000pt;}
.ws103{word-spacing:1.450667pt;}
.ws10{word-spacing:1.493333pt;}
.wsff{word-spacing:1.496000pt;}
.ws146{word-spacing:1.541333pt;}
.ws33{word-spacing:1.546667pt;}
.ws137{word-spacing:1.586667pt;}
.ws26{word-spacing:1.600000pt;}
.wsbb{word-spacing:1.632000pt;}
.ws41{word-spacing:1.653333pt;}
.ws12d{word-spacing:1.677333pt;}
.wsf5{word-spacing:1.706667pt;}
.wsde{word-spacing:1.722667pt;}
.ws37{word-spacing:1.760000pt;}
.ws4e{word-spacing:1.813333pt;}
.ws115{word-spacing:1.858667pt;}
.ws3a{word-spacing:1.866667pt;}
.ws54{word-spacing:1.920000pt;}
.ws105{word-spacing:1.949333pt;}
.ws3c{word-spacing:1.973333pt;}
.wscf{word-spacing:1.994667pt;}
.ws35{word-spacing:2.026667pt;}
.wsd9{word-spacing:2.040000pt;}
.ws45{word-spacing:2.080000pt;}
.wsf9{word-spacing:2.085333pt;}
.ws12c{word-spacing:2.130667pt;}
.ws30{word-spacing:2.133333pt;}
.ws133{word-spacing:2.176000pt;}
.ws51{word-spacing:2.186667pt;}
.ws5e{word-spacing:2.240000pt;}
.ws67{word-spacing:2.293333pt;}
.ws98{word-spacing:2.312000pt;}
.ws42{word-spacing:2.346667pt;}
.ws121{word-spacing:2.357333pt;}
.ws3d{word-spacing:2.400000pt;}
.ws142{word-spacing:2.402667pt;}
.ws100{word-spacing:2.448000pt;}
.ws83{word-spacing:2.453333pt;}
.ws120{word-spacing:2.493333pt;}
.ws3b{word-spacing:2.506667pt;}
.wsa5{word-spacing:2.538667pt;}
.wsc2{word-spacing:2.560000pt;}
.ws1d{word-spacing:2.613333pt;}
.wsca{word-spacing:2.629333pt;}
.wsd4{word-spacing:2.666667pt;}
.ws13e{word-spacing:2.674667pt;}
.wsa4{word-spacing:2.720000pt;}
.ws7e{word-spacing:2.773333pt;}
.ws47{word-spacing:2.826667pt;}
.ws82{word-spacing:2.880000pt;}
.wsb8{word-spacing:2.901333pt;}
.ws52{word-spacing:2.933333pt;}
.ws131{word-spacing:2.946667pt;}
.wsa0{word-spacing:2.986667pt;}
.ws148{word-spacing:3.037333pt;}
.ws4c{word-spacing:3.040000pt;}
.wsb7{word-spacing:3.082667pt;}
.wsef{word-spacing:3.093333pt;}
.ws130{word-spacing:3.128000pt;}
.ws65{word-spacing:3.146667pt;}
.ws12a{word-spacing:3.173333pt;}
.ws6a{word-spacing:3.200000pt;}
.wsb0{word-spacing:3.253333pt;}
.wsf6{word-spacing:3.306667pt;}
.wscd{word-spacing:3.309333pt;}
.ws124{word-spacing:3.354667pt;}
.ws31{word-spacing:3.360000pt;}
.ws113{word-spacing:3.400000pt;}
.wsed{word-spacing:3.413333pt;}
.wsa7{word-spacing:3.445333pt;}
.ws27{word-spacing:3.466667pt;}
.ws12f{word-spacing:3.490667pt;}
.wsf8{word-spacing:3.520000pt;}
.ws134{word-spacing:3.536000pt;}
.ws5d{word-spacing:3.573333pt;}
.ws55{word-spacing:3.626667pt;}
.wsa2{word-spacing:3.733333pt;}
.ws13b{word-spacing:3.762667pt;}
.ws101{word-spacing:3.808000pt;}
.wsc7{word-spacing:3.893333pt;}
.ws9b{word-spacing:3.898667pt;}
.wsaa{word-spacing:3.944000pt;}
.ws6e{word-spacing:3.946667pt;}
.wsba{word-spacing:3.989333pt;}
.ws38{word-spacing:4.000000pt;}
.ws112{word-spacing:4.034667pt;}
.ws40{word-spacing:4.106667pt;}
.ws122{word-spacing:4.125333pt;}
.wsee{word-spacing:4.160000pt;}
.wsd7{word-spacing:4.170667pt;}
.wsc6{word-spacing:4.213333pt;}
.ws104{word-spacing:4.261333pt;}
.ws91{word-spacing:4.266667pt;}
.ws102{word-spacing:4.306667pt;}
.wsc1{word-spacing:4.320000pt;}
.wsdf{word-spacing:4.352000pt;}
.ws63{word-spacing:4.373333pt;}
.ws114{word-spacing:4.397333pt;}
.ws6d{word-spacing:4.426667pt;}
.ws53{word-spacing:4.480000pt;}
.ws90{word-spacing:4.533333pt;}
.wsd0{word-spacing:4.624000pt;}
.wsae{word-spacing:4.640000pt;}
.ws12b{word-spacing:4.760000pt;}
.wsa1{word-spacing:4.800000pt;}
.wse1{word-spacing:4.805333pt;}
.wsf4{word-spacing:4.853333pt;}
.ws6b{word-spacing:4.906667pt;}
.ws9a{word-spacing:4.986667pt;}
.wsbe{word-spacing:5.032000pt;}
.wsa9{word-spacing:5.213333pt;}
.ws69{word-spacing:5.226667pt;}
.ws95{word-spacing:5.280000pt;}
.ws92{word-spacing:5.333333pt;}
.wse0{word-spacing:5.485333pt;}
.ws7d{word-spacing:5.546667pt;}
.wsb3{word-spacing:5.621333pt;}
.wsaf{word-spacing:5.706667pt;}
.ws1e{word-spacing:5.760000pt;}
.ws132{word-spacing:5.893333pt;}
.wsc3{word-spacing:5.920000pt;}
.ws87{word-spacing:5.938667pt;}
.ws86{word-spacing:6.165333pt;}
.ws84{word-spacing:6.293333pt;}
.wsd8{word-spacing:6.346667pt;}
.wsb6{word-spacing:6.528000pt;}
.wsbd{word-spacing:6.573333pt;}
.wsb2{word-spacing:6.618667pt;}
.wsea{word-spacing:6.666667pt;}
.wsb4{word-spacing:6.709333pt;}
.wsa6{word-spacing:6.936000pt;}
.wse4{word-spacing:7.072000pt;}
.wscb{word-spacing:7.344000pt;}
.ws97{word-spacing:7.389333pt;}
.wsac{word-spacing:7.525333pt;}
.wsd6{word-spacing:8.024000pt;}
.wsfd{word-spacing:8.114667pt;}
.wsab{word-spacing:8.522667pt;}
.wse2{word-spacing:8.658667pt;}
.wsdc{word-spacing:9.248000pt;}
.ws88{word-spacing:9.429333pt;}
.wsc5{word-spacing:9.440000pt;}
.wsfb{word-spacing:9.610667pt;}
.wsd1{word-spacing:10.245333pt;}
.ws89{word-spacing:10.290667pt;}
.wsfc{word-spacing:10.517333pt;}
.wsb5{word-spacing:10.789333pt;}
.wsbc{word-spacing:10.834667pt;}
.wsce{word-spacing:11.968000pt;}
.ws14c{word-spacing:12.013333pt;}
.wscc{word-spacing:12.330667pt;}
.wsc9{word-spacing:12.512000pt;}
.ws96{word-spacing:12.693333pt;}
.wsc8{word-spacing:13.010667pt;}
.ws9c{word-spacing:13.282667pt;}
.ws85{word-spacing:13.464000pt;}
.wsd5{word-spacing:13.826667pt;}
.wsa{word-spacing:14.544230pt;}
.ws8{word-spacing:14.805503pt;}
.ws14d{word-spacing:15.640000pt;}
.ws99{word-spacing:18.496000pt;}
.wsb1{word-spacing:23.664000pt;}
.ws28{word-spacing:64.237333pt;}
.ws77{word-spacing:386.013314pt;}
.ws70{word-spacing:406.775981pt;}
.ws75{word-spacing:411.762647pt;}
.ws78{word-spacing:413.757314pt;}
.ws74{word-spacing:414.346647pt;}
.ws76{word-spacing:419.242647pt;}
.ws71{word-spacing:424.455981pt;}
.ws7a{word-spacing:426.767981pt;}
.ws7c{word-spacing:429.442647pt;}
.ws73{word-spacing:449.615981pt;}
.ws72{word-spacing:462.173314pt;}
.ws79{word-spacing:477.133314pt;}
.ws7b{word-spacing:477.314647pt;}
._8{margin-left:-86.133333pt;}
._1a{margin-left:-19.582146pt;}
._18{margin-left:-18.088010pt;}
._15{margin-left:-15.957333pt;}
._5{margin-left:-14.457139pt;}
._1e{margin-left:-13.192000pt;}
._e{margin-left:-11.701333pt;}
._1c{margin-left:-10.485333pt;}
._10{margin-left:-8.954667pt;}
._11{margin-left:-8.053333pt;}
._17{margin-left:-6.666667pt;}
._a{margin-left:-5.376000pt;}
._1d{margin-left:-4.448000pt;}
._4{margin-left:-3.472000pt;}
._2{margin-left:-2.458667pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.402667pt;}
._c{width:2.517333pt;}
._b{width:4.010667pt;}
._d{width:5.333333pt;}
._14{width:6.997333pt;}
._1f{width:8.186666pt;}
._20{width:9.259069pt;}
._1b{width:11.093321pt;}
._f{width:12.213333pt;}
._16{width:13.282264pt;}
._12{width:14.297529pt;}
._6{width:16.043805pt;}
._25{width:17.090667pt;}
._27{width:18.106472pt;}
._19{width:19.243069pt;}
._24{width:20.490667pt;}
._28{width:21.714667pt;}
._26{width:22.634667pt;}
._21{width:23.693333pt;}
._23{width:25.658667pt;}
._22{width:27.018667pt;}
._1{width:35.757315pt;}
._7{width:48.552000pt;}
._13{width:458.455981pt;}
._9{width:2189.781333pt;}
.fs9{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:43.545598pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.394775pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3c{bottom:100.389600pt;}
.y177{bottom:100.497604pt;}
.y15b{bottom:100.748266pt;}
.y84{bottom:100.813599pt;}
.y72{bottom:100.813639pt;}
.y193{bottom:101.052266pt;}
.y132{bottom:101.601599pt;}
.y135{bottom:101.612932pt;}
.ye8{bottom:101.986816pt;}
.y22c{bottom:101.986898pt;}
.yb7{bottom:101.986928pt;}
.y1b4{bottom:102.110921pt;}
.y202{bottom:102.110942pt;}
.y2f2{bottom:103.657620pt;}
.yf9{bottom:108.777730pt;}
.y233{bottom:108.819736pt;}
.y2e{bottom:108.854533pt;}
.y278{bottom:113.644531pt;}
.y176{bottom:113.825604pt;}
.y17c{bottom:113.848270pt;}
.y15a{bottom:114.076266pt;}
.y15d{bottom:114.087600pt;}
.y131{bottom:114.929599pt;}
.y134{bottom:114.940932pt;}
.y1f7{bottom:116.696289pt;}
.y2f1{bottom:116.985620pt;}
.y374{bottom:117.325606pt;}
.y333{bottom:117.336954pt;}
.y83{bottom:117.480265pt;}
.y71{bottom:117.480306pt;}
.y192{bottom:117.718933pt;}
.y1dc{bottom:117.718953pt;}
.y3b{bottom:118.250936pt;}
.ye7{bottom:118.653483pt;}
.y22b{bottom:118.653564pt;}
.yb6{bottom:118.653595pt;}
.y1b3{bottom:118.777588pt;}
.y201{bottom:118.777608pt;}
.y232{bottom:122.147736pt;}
.yf8{bottom:125.444397pt;}
.y2d{bottom:125.521200pt;}
.y277{bottom:126.972531pt;}
.y175{bottom:127.153604pt;}
.y17b{bottom:127.176270pt;}
.y159{bottom:127.404266pt;}
.y15c{bottom:127.415600pt;}
.y130{bottom:128.257599pt;}
.y133{bottom:128.268932pt;}
.y2f0{bottom:130.313620pt;}
.y373{bottom:130.653606pt;}
.y332{bottom:130.664954pt;}
.y1f6{bottom:133.362956pt;}
.y82{bottom:134.146932pt;}
.y70{bottom:134.146973pt;}
.y191{bottom:134.385600pt;}
.y1db{bottom:134.385620pt;}
.ye6{bottom:135.320150pt;}
.y22a{bottom:135.320231pt;}
.yb5{bottom:135.320262pt;}
.y1b2{bottom:135.444255pt;}
.y187{bottom:135.444275pt;}
.y2b5{bottom:137.016289pt;}
.y3a{bottom:138.292938pt;}
.y276{bottom:140.300531pt;}
.y174{bottom:140.481604pt;}
.y17a{bottom:140.504270pt;}
.yf7{bottom:142.111064pt;}
.y2c{bottom:142.187866pt;}
.y2ef{bottom:143.641620pt;}
.y372{bottom:143.981606pt;}
.y331{bottom:143.992954pt;}
.y1f5{bottom:150.029622pt;}
.y2b4{bottom:150.344289pt;}
.y81{bottom:150.813599pt;}
.y6f{bottom:150.813639pt;}
.y190{bottom:151.052266pt;}
.y1da{bottom:151.052287pt;}
.ye5{bottom:151.986816pt;}
.y229{bottom:151.986898pt;}
.yb4{bottom:151.986938pt;}
.y1b1{bottom:152.110921pt;}
.y186{bottom:152.110942pt;}
.y275{bottom:153.628531pt;}
.y39{bottom:153.806928pt;}
.y173{bottom:153.809604pt;}
.y179{bottom:153.832270pt;}
.y2ee{bottom:156.969620pt;}
.y371{bottom:157.309606pt;}
.y330{bottom:157.320954pt;}
.yf6{bottom:158.777730pt;}
.y2b{bottom:158.854533pt;}
.y2b3{bottom:163.672289pt;}
.y1f4{bottom:166.696289pt;}
.y274{bottom:166.956531pt;}
.y172{bottom:167.137604pt;}
.y178{bottom:167.160270pt;}
.y80{bottom:167.480265pt;}
.y6e{bottom:167.480306pt;}
.y18f{bottom:167.718933pt;}
.y1d9{bottom:167.718953pt;}
.ye4{bottom:168.653483pt;}
.y228{bottom:168.653564pt;}
.yb3{bottom:168.653605pt;}
.y1b0{bottom:168.777588pt;}
.y185{bottom:168.777608pt;}
.y2ed{bottom:170.297620pt;}
.y370{bottom:170.637606pt;}
.y32f{bottom:170.648954pt;}
.y38{bottom:171.668274pt;}
.yf5{bottom:175.444397pt;}
.y2a{bottom:175.521200pt;}
.y2b2{bottom:177.000289pt;}
.y273{bottom:180.284531pt;}
.y1f3{bottom:183.362956pt;}
.y2ec{bottom:183.625620pt;}
.y36f{bottom:183.965606pt;}
.y32e{bottom:183.976954pt;}
.y7f{bottom:184.146932pt;}
.y6d{bottom:184.146973pt;}
.y18e{bottom:184.385600pt;}
.y1d8{bottom:184.385620pt;}
.ye3{bottom:185.320150pt;}
.y227{bottom:185.320231pt;}
.yb2{bottom:185.320272pt;}
.y1af{bottom:185.444255pt;}
.y184{bottom:185.444275pt;}
.y37{bottom:187.187608pt;}
.y2b1{bottom:190.328289pt;}
.yf4{bottom:192.111064pt;}
.y29{bottom:192.187866pt;}
.y272{bottom:193.612531pt;}
.y2eb{bottom:196.953620pt;}
.y36e{bottom:197.293606pt;}
.y32d{bottom:197.304954pt;}
.y1f2{bottom:200.029622pt;}
.y36{bottom:200.515608pt;}
.y7e{bottom:200.813599pt;}
.y6c{bottom:200.813639pt;}
.y18d{bottom:201.052266pt;}
.y1d7{bottom:201.052287pt;}
.ye2{bottom:201.986816pt;}
.y226{bottom:201.986898pt;}
.yb1{bottom:201.986938pt;}
.y1ae{bottom:202.110921pt;}
.y183{bottom:202.110942pt;}
.y2b0{bottom:203.656289pt;}
.y271{bottom:206.940531pt;}
.yf3{bottom:208.777730pt;}
.y28{bottom:208.854533pt;}
.y2ea{bottom:210.281620pt;}
.y36d{bottom:210.621606pt;}
.y32c{bottom:210.632954pt;}
.y1f1{bottom:216.696289pt;}
.y2af{bottom:216.984289pt;}
.y7d{bottom:217.480265pt;}
.y6b{bottom:217.480306pt;}
.y18c{bottom:217.718933pt;}
.y1d6{bottom:217.718953pt;}
.y35{bottom:218.376933pt;}
.ye1{bottom:218.653483pt;}
.y225{bottom:218.653564pt;}
.yb0{bottom:218.653605pt;}
.y1ad{bottom:218.777588pt;}
.y182{bottom:218.777608pt;}
.y270{bottom:220.268531pt;}
.y2e9{bottom:223.609620pt;}
.y36c{bottom:223.949606pt;}
.y32b{bottom:223.960954pt;}
.yf2{bottom:225.444397pt;}
.y27{bottom:225.521200pt;}
.y2ae{bottom:230.312289pt;}
.y1f0{bottom:233.362956pt;}
.y26f{bottom:233.596531pt;}
.y7c{bottom:234.146932pt;}
.y6a{bottom:234.146973pt;}
.y18b{bottom:234.385600pt;}
.y1d5{bottom:234.385620pt;}
.ye0{bottom:235.320150pt;}
.y224{bottom:235.320231pt;}
.yaf{bottom:235.320272pt;}
.y1ac{bottom:235.444255pt;}
.y181{bottom:235.444275pt;}
.y2e8{bottom:236.937620pt;}
.y36b{bottom:237.277606pt;}
.y32a{bottom:237.288954pt;}
.y34{bottom:240.609604pt;}
.yf1{bottom:242.111064pt;}
.y26{bottom:242.187866pt;}
.y2ad{bottom:243.640289pt;}
.y26e{bottom:246.924531pt;}
.y1ef{bottom:250.029622pt;}
.y2e7{bottom:250.265620pt;}
.y36a{bottom:250.605606pt;}
.y329{bottom:250.616954pt;}
.y7b{bottom:250.813599pt;}
.y69{bottom:250.813639pt;}
.y1d4{bottom:251.052287pt;}
.ydf{bottom:251.986816pt;}
.y223{bottom:251.986898pt;}
.yae{bottom:251.986938pt;}
.y1ab{bottom:252.110921pt;}
.y180{bottom:252.110942pt;}
.y33{bottom:253.937604pt;}
.y2ac{bottom:256.968289pt;}
.yf0{bottom:258.777730pt;}
.y25{bottom:258.854533pt;}
.y26d{bottom:260.252531pt;}
.y2e6{bottom:263.593620pt;}
.y369{bottom:263.933606pt;}
.y328{bottom:263.944954pt;}
.y1ee{bottom:266.696289pt;}
.y7a{bottom:267.480265pt;}
.y68{bottom:267.480306pt;}
.y1d3{bottom:267.718953pt;}
.y18a{bottom:267.729600pt;}
.yde{bottom:268.653483pt;}
.y222{bottom:268.653564pt;}
.yad{bottom:268.653605pt;}
.y1aa{bottom:268.777588pt;}
.y17f{bottom:268.777608pt;}
.y2ab{bottom:270.296289pt;}
.y32{bottom:273.974938pt;}
.yef{bottom:275.444397pt;}
.y24{bottom:275.521200pt;}
.y2e5{bottom:276.921620pt;}
.y368{bottom:277.261606pt;}
.y327{bottom:277.272954pt;}
.y1ed{bottom:283.362956pt;}
.y2aa{bottom:283.624289pt;}
.y79{bottom:284.146932pt;}
.y67{bottom:284.146973pt;}
.y1d2{bottom:284.385620pt;}
.y189{bottom:284.390933pt;}
.ydd{bottom:285.320150pt;}
.y221{bottom:285.320231pt;}
.yac{bottom:285.320272pt;}
.y1a9{bottom:285.444255pt;}
.y17e{bottom:285.444275pt;}
.y31{bottom:287.302938pt;}
.y2e4{bottom:290.249620pt;}
.y367{bottom:290.589606pt;}
.y326{bottom:290.600954pt;}
.yee{bottom:292.111064pt;}
.y23{bottom:292.187866pt;}
.y26c{bottom:296.870531pt;}
.y2a9{bottom:296.952289pt;}
.y1ec{bottom:300.029622pt;}
.y78{bottom:300.813599pt;}
.y66{bottom:300.813639pt;}
.y188{bottom:301.052266pt;}
.y1d1{bottom:301.052287pt;}
.ydc{bottom:301.986816pt;}
.y220{bottom:301.986898pt;}
.yab{bottom:301.986938pt;}
.y1a8{bottom:302.110921pt;}
.y17d{bottom:302.110942pt;}
.y2e3{bottom:303.577620pt;}
.y366{bottom:303.917606pt;}
.y325{bottom:303.928954pt;}
.y100{bottom:308.777730pt;}
.y22{bottom:308.854533pt;}
.y2a8{bottom:310.280289pt;}
.y1eb{bottom:316.696289pt;}
.y2e2{bottom:316.905620pt;}
.y365{bottom:317.245606pt;}
.y324{bottom:317.256954pt;}
.y77{bottom:317.480265pt;}
.y65{bottom:317.480306pt;}
.y1d0{bottom:317.718953pt;}
.ydb{bottom:318.653483pt;}
.y21f{bottom:318.653564pt;}
.yaa{bottom:318.653605pt;}
.y1a7{bottom:318.777588pt;}
.y200{bottom:318.777608pt;}
.y26b{bottom:323.503865pt;}
.y2a7{bottom:323.608289pt;}
.yed{bottom:325.444275pt;}
.yff{bottom:325.444397pt;}
.y20{bottom:325.521200pt;}
.y2e1{bottom:330.233620pt;}
.y364{bottom:330.573606pt;}
.y323{bottom:330.584954pt;}
.y1ea{bottom:333.362956pt;}
.y76{bottom:334.146932pt;}
.y64{bottom:334.146973pt;}
.y1cf{bottom:334.385620pt;}
.yda{bottom:335.320150pt;}
.y21e{bottom:335.320231pt;}
.ya9{bottom:335.320272pt;}
.y1a6{bottom:335.444255pt;}
.y2a6{bottom:336.936289pt;}
.yfe{bottom:342.111064pt;}
.y1f{bottom:342.187866pt;}
.y2e0{bottom:343.561620pt;}
.y363{bottom:343.901606pt;}
.y322{bottom:343.912954pt;}
.y1e9{bottom:350.029622pt;}
.y26a{bottom:350.137198pt;}
.y2a5{bottom:350.264289pt;}
.y75{bottom:350.813599pt;}
.y63{bottom:350.813639pt;}
.y1ce{bottom:351.052287pt;}
.yd9{bottom:351.986816pt;}
.y21d{bottom:351.986898pt;}
.ya8{bottom:351.986938pt;}
.y1a5{bottom:352.110921pt;}
.y19b{bottom:354.447083pt;}
.y2df{bottom:356.889620pt;}
.y362{bottom:357.229606pt;}
.y321{bottom:357.240954pt;}
.yec{bottom:358.777588pt;}
.yfd{bottom:358.777730pt;}
.y1e{bottom:358.854533pt;}
.y269{bottom:363.465198pt;}
.y2a4{bottom:363.592289pt;}
.y1e8{bottom:366.696289pt;}
.y62{bottom:367.480306pt;}
.y1cd{bottom:367.718953pt;}
.y19a{bottom:367.775083pt;}
.y1a2{bottom:367.809079pt;}
.y209{bottom:368.575050pt;}
.y210{bottom:368.609050pt;}
.yd8{bottom:368.653483pt;}
.y21c{bottom:368.653564pt;}
.ya7{bottom:368.653605pt;}
.y1a4{bottom:368.777588pt;}
.y2de{bottom:370.217620pt;}
.y361{bottom:370.557606pt;}
.y320{bottom:370.568954pt;}
.yeb{bottom:375.444255pt;}
.yfc{bottom:375.444397pt;}
.y1d{bottom:375.521200pt;}
.y268{bottom:376.793198pt;}
.y2a3{bottom:376.920289pt;}
.y199{bottom:381.103083pt;}
.y1a1{bottom:381.137079pt;}
.y208{bottom:381.903050pt;}
.y20f{bottom:381.937050pt;}
.y1e7{bottom:383.362956pt;}
.y2dd{bottom:383.545620pt;}
.y360{bottom:383.885606pt;}
.y31f{bottom:383.896954pt;}
.y74{bottom:384.146932pt;}
.y61{bottom:384.146973pt;}
.y1cc{bottom:384.385620pt;}
.yd7{bottom:385.320150pt;}
.y21b{bottom:385.320231pt;}
.ya6{bottom:385.320272pt;}
.y1a3{bottom:385.444255pt;}
.y267{bottom:390.121198pt;}
.y2a2{bottom:390.248289pt;}
.yea{bottom:392.110921pt;}
.yfb{bottom:392.111064pt;}
.y21{bottom:392.187866pt;}
.y198{bottom:394.431083pt;}
.y1a0{bottom:394.465079pt;}
.y207{bottom:395.231050pt;}
.y20e{bottom:395.265050pt;}
.y2dc{bottom:396.873620pt;}
.y35f{bottom:397.213606pt;}
.y31e{bottom:397.224954pt;}
.y1e6{bottom:400.029622pt;}
.y60{bottom:400.813639pt;}
.y1cb{bottom:401.052287pt;}
.y158{bottom:401.429615pt;}
.yd6{bottom:401.986816pt;}
.y21a{bottom:401.986898pt;}
.ya5{bottom:401.986938pt;}
.y231{bottom:402.110921pt;}
.y266{bottom:403.449198pt;}
.y2a1{bottom:403.576289pt;}
.y197{bottom:407.759083pt;}
.y19f{bottom:407.793079pt;}
.y206{bottom:408.559050pt;}
.y20d{bottom:408.593050pt;}
.ye9{bottom:408.777588pt;}
.yfa{bottom:408.777730pt;}
.y1c{bottom:408.854533pt;}
.y2db{bottom:410.201620pt;}
.y35e{bottom:410.541606pt;}
.y31d{bottom:410.552954pt;}
.y157{bottom:414.757615pt;}
.y153{bottom:416.696248pt;}
.y1e5{bottom:416.696289pt;}
.y265{bottom:416.777198pt;}
.y2a0{bottom:416.904289pt;}
.y73{bottom:417.480265pt;}
.y5f{bottom:417.480306pt;}
.y1ca{bottom:417.718953pt;}
.yd5{bottom:418.653483pt;}
.y219{bottom:418.653564pt;}
.ya4{bottom:418.653605pt;}
.y230{bottom:418.777588pt;}
.y196{bottom:421.087083pt;}
.y19e{bottom:421.121079pt;}
.y205{bottom:421.887050pt;}
.y20c{bottom:421.921050pt;}
.y2da{bottom:423.529620pt;}
.y35d{bottom:423.869606pt;}
.y31c{bottom:423.880954pt;}
.y156{bottom:428.085615pt;}
.y264{bottom:430.105198pt;}
.y29f{bottom:430.232289pt;}
.y152{bottom:433.362915pt;}
.y1e4{bottom:433.362956pt;}
.y5e{bottom:434.146973pt;}
.y1c9{bottom:434.385620pt;}
.y195{bottom:434.415083pt;}
.y19d{bottom:434.449079pt;}
.y204{bottom:435.215050pt;}
.y20b{bottom:435.249050pt;}
.y218{bottom:435.320231pt;}
.ya3{bottom:435.320272pt;}
.y22f{bottom:435.444255pt;}
.y2d9{bottom:436.857620pt;}
.y35c{bottom:437.197606pt;}
.y31b{bottom:437.208954pt;}
.y1ba{bottom:438.063084pt;}
.y1c0{bottom:438.085751pt;}
.y155{bottom:441.418948pt;}
.y263{bottom:443.433198pt;}
.y29e{bottom:443.560289pt;}
.y194{bottom:447.743083pt;}
.y19c{bottom:447.777079pt;}
.y203{bottom:448.543050pt;}
.y20a{bottom:448.577050pt;}
.y1e3{bottom:450.029622pt;}
.y2d8{bottom:450.185620pt;}
.y35b{bottom:450.525606pt;}
.y31a{bottom:450.536954pt;}
.y5d{bottom:450.813639pt;}
.y1c8{bottom:451.052287pt;}
.y1b9{bottom:451.391084pt;}
.y1bf{bottom:451.413751pt;}
.yd4{bottom:451.986816pt;}
.y217{bottom:451.986898pt;}
.ya2{bottom:451.986938pt;}
.y22e{bottom:452.110921pt;}
.y154{bottom:454.746948pt;}
.y29d{bottom:456.888289pt;}
.y1b{bottom:458.854574pt;}
.y125{bottom:462.630913pt;}
.y2d7{bottom:463.513620pt;}
.y35a{bottom:463.853606pt;}
.y319{bottom:463.864954pt;}
.y1b8{bottom:464.719084pt;}
.y1be{bottom:464.741751pt;}
.y1e2{bottom:466.696289pt;}
.y151{bottom:466.701582pt;}
.y5c{bottom:467.480306pt;}
.y1c7{bottom:467.718953pt;}
.y216{bottom:468.653564pt;}
.ya1{bottom:468.653605pt;}
.y22d{bottom:468.777588pt;}
.y262{bottom:470.066531pt;}
.y29c{bottom:470.216289pt;}
.y124{bottom:475.958913pt;}
.y2d6{bottom:476.841620pt;}
.y359{bottom:477.181606pt;}
.y318{bottom:477.192954pt;}
.y1b7{bottom:478.047084pt;}
.y1bd{bottom:478.069751pt;}
.y150{bottom:483.362915pt;}
.y1e1{bottom:483.362956pt;}
.y261{bottom:483.394531pt;}
.y29b{bottom:483.544289pt;}
.y5b{bottom:484.146973pt;}
.y1c6{bottom:484.385620pt;}
.yd3{bottom:485.320150pt;}
.y215{bottom:485.320231pt;}
.ya0{bottom:485.320272pt;}
.y2d5{bottom:490.169620pt;}
.y358{bottom:490.509606pt;}
.y317{bottom:490.520954pt;}
.y1b6{bottom:491.375084pt;}
.y1bc{bottom:491.397751pt;}
.y1a{bottom:492.187907pt;}
.y123{bottom:492.664246pt;}
.y29a{bottom:496.872289pt;}
.y1e0{bottom:500.029622pt;}
.y5a{bottom:500.813639pt;}
.y1c5{bottom:501.052287pt;}
.yd2{bottom:501.986816pt;}
.y214{bottom:501.986898pt;}
.y9f{bottom:501.986938pt;}
.y2d4{bottom:503.497620pt;}
.y357{bottom:503.837606pt;}
.y316{bottom:503.848954pt;}
.y1b5{bottom:504.703084pt;}
.y1bb{bottom:504.725751pt;}
.y122{bottom:505.992246pt;}
.y23b{bottom:508.526917pt;}
.y19{bottom:508.854574pt;}
.y299{bottom:510.200289pt;}
.y260{bottom:513.394531pt;}
.y14f{bottom:516.696289pt;}
.y2d3{bottom:516.825620pt;}
.y356{bottom:517.165606pt;}
.y315{bottom:517.176954pt;}
.y59{bottom:517.480306pt;}
.y1c4{bottom:517.718953pt;}
.yd1{bottom:518.653483pt;}
.y213{bottom:518.653564pt;}
.y9e{bottom:518.653605pt;}
.y23a{bottom:521.854917pt;}
.y242{bottom:521.888913pt;}
.y121{bottom:522.629579pt;}
.y298{bottom:523.528289pt;}
.y18{bottom:525.521240pt;}
.y2d2{bottom:530.153620pt;}
.y355{bottom:530.493606pt;}
.y314{bottom:530.504954pt;}
.y14e{bottom:533.362956pt;}
.y58{bottom:534.146973pt;}
.y239{bottom:535.182917pt;}
.y241{bottom:535.216913pt;}
.yd0{bottom:535.320150pt;}
.y212{bottom:535.320231pt;}
.y9d{bottom:535.320272pt;}
.y120{bottom:535.957579pt;}
.y297{bottom:536.856289pt;}
.y17{bottom:542.187907pt;}
.y2d1{bottom:543.481620pt;}
.y354{bottom:543.821606pt;}
.y313{bottom:543.832954pt;}
.y25f{bottom:546.881620pt;}
.y238{bottom:548.510917pt;}
.y240{bottom:548.544913pt;}
.y14d{bottom:550.029622pt;}
.y296{bottom:550.184289pt;}
.y57{bottom:550.813639pt;}
.y1c3{bottom:551.062953pt;}
.ycf{bottom:551.986816pt;}
.y211{bottom:551.986898pt;}
.y9c{bottom:551.986938pt;}
.y11f{bottom:552.594913pt;}
.y2d0{bottom:556.809620pt;}
.y353{bottom:557.149606pt;}
.y312{bottom:557.160954pt;}
.y16{bottom:558.854574pt;}
.y237{bottom:561.838917pt;}
.y23f{bottom:561.872913pt;}
.y295{bottom:563.512289pt;}
.y11e{bottom:565.922913pt;}
.y14c{bottom:566.696289pt;}
.y56{bottom:567.480306pt;}
.y1c2{bottom:567.724287pt;}
.yce{bottom:568.653483pt;}
.y9b{bottom:568.653564pt;}
.y12f{bottom:568.653605pt;}
.y2cf{bottom:570.137620pt;}
.y352{bottom:570.477606pt;}
.y311{bottom:570.488954pt;}
.y236{bottom:575.166917pt;}
.y23e{bottom:575.200913pt;}
.y15{bottom:575.521240pt;}
.y294{bottom:576.840289pt;}
.y25e{bottom:576.846954pt;}
.y11d{bottom:582.560246pt;}
.y14b{bottom:583.362956pt;}
.y2ce{bottom:583.465620pt;}
.y351{bottom:583.805606pt;}
.y310{bottom:583.816954pt;}
.y55{bottom:584.146973pt;}
.y1c1{bottom:584.385620pt;}
.ycd{bottom:585.320150pt;}
.y9a{bottom:585.320231pt;}
.y12e{bottom:585.320272pt;}
.y15f{bottom:585.330938pt;}
.y235{bottom:588.494917pt;}
.y23d{bottom:588.528913pt;}
.y293{bottom:590.168289pt;}
.y25d{bottom:590.174954pt;}
.y14{bottom:592.187907pt;}
.y11c{bottom:595.888246pt;}
.y2cd{bottom:596.793620pt;}
.y350{bottom:597.133606pt;}
.y30f{bottom:597.144954pt;}
.y14a{bottom:600.029622pt;}
.y54{bottom:600.813639pt;}
.y234{bottom:601.822917pt;}
.y23c{bottom:601.856913pt;}
.ycc{bottom:601.986816pt;}
.y99{bottom:601.986898pt;}
.y12d{bottom:601.986938pt;}
.y15e{bottom:601.992272pt;}
.y292{bottom:603.496289pt;}
.y25c{bottom:603.502954pt;}
.y13{bottom:608.854574pt;}
.y2cc{bottom:610.121620pt;}
.y34f{bottom:610.461606pt;}
.y30e{bottom:610.472954pt;}
.y11b{bottom:612.525579pt;}
.y149{bottom:616.696289pt;}
.y291{bottom:616.824289pt;}
.y53{bottom:617.480306pt;}
.ycb{bottom:618.653483pt;}
.y98{bottom:618.653564pt;}
.y12c{bottom:618.653605pt;}
.y2cb{bottom:623.449620pt;}
.y34e{bottom:623.789606pt;}
.y30d{bottom:623.800954pt;}
.y12{bottom:625.521240pt;}
.y11a{bottom:625.853579pt;}
.y1ff{bottom:627.246969pt;}
.y290{bottom:630.152289pt;}
.y148{bottom:633.362956pt;}
.y25b{bottom:633.468287pt;}
.y52{bottom:634.146973pt;}
.yca{bottom:635.320150pt;}
.y97{bottom:635.320231pt;}
.y12b{bottom:635.320272pt;}
.y2ca{bottom:636.777620pt;}
.y34d{bottom:637.117606pt;}
.y30c{bottom:637.128954pt;}
.y1fe{bottom:640.574969pt;}
.y11{bottom:642.187907pt;}
.y119{bottom:642.490913pt;}
.y28f{bottom:643.480289pt;}
.y25a{bottom:646.796287pt;}
.y38c{bottom:649.493614pt;}
.y147{bottom:650.029622pt;}
.y2c9{bottom:650.105620pt;}
.y34c{bottom:650.445606pt;}
.y30b{bottom:650.456954pt;}
.y51{bottom:650.813639pt;}
.yc9{bottom:651.986816pt;}
.y96{bottom:651.986898pt;}
.y12a{bottom:651.986938pt;}
.y1fd{bottom:653.902969pt;}
.y118{bottom:655.818913pt;}
.y28e{bottom:656.808289pt;}
.y10{bottom:658.854574pt;}
.y259{bottom:660.124287pt;}
.y38b{bottom:662.821614pt;}
.y2c8{bottom:663.433620pt;}
.y34b{bottom:663.773606pt;}
.y30a{bottom:663.784954pt;}
.y146{bottom:666.696289pt;}
.y1fc{bottom:667.230969pt;}
.y50{bottom:667.480306pt;}
.yc8{bottom:668.653483pt;}
.y95{bottom:668.653564pt;}
.y129{bottom:668.653605pt;}
.y28d{bottom:670.136289pt;}
.y117{bottom:672.456246pt;}
.y258{bottom:673.452287pt;}
.yf{bottom:675.521240pt;}
.y2c7{bottom:676.761620pt;}
.y34a{bottom:677.101606pt;}
.y309{bottom:677.112954pt;}
.y1fb{bottom:680.558969pt;}
.y145{bottom:683.362956pt;}
.y28c{bottom:683.464289pt;}
.y4f{bottom:684.146973pt;}
.yc7{bottom:685.320150pt;}
.y94{bottom:685.320231pt;}
.y171{bottom:685.320272pt;}
.y116{bottom:685.784246pt;}
.y257{bottom:686.780287pt;}
.y2c6{bottom:690.089620pt;}
.y38a{bottom:690.236947pt;}
.y349{bottom:690.429606pt;}
.y308{bottom:690.440954pt;}
.ye{bottom:692.187907pt;}
.y1fa{bottom:693.886969pt;}
.y28b{bottom:696.792289pt;}
.y144{bottom:700.029622pt;}
.y256{bottom:700.108287pt;}
.y4e{bottom:700.813639pt;}
.yc6{bottom:701.986816pt;}
.y128{bottom:701.986898pt;}
.y170{bottom:701.986938pt;}
.y115{bottom:702.421579pt;}
.y2c5{bottom:703.417620pt;}
.y389{bottom:703.564947pt;}
.y348{bottom:703.757606pt;}
.y307{bottom:703.768954pt;}
.y1f9{bottom:707.214969pt;}
.yd{bottom:708.854574pt;}
.y28a{bottom:710.120289pt;}
.y255{bottom:713.436287pt;}
.y114{bottom:715.749579pt;}
.y143{bottom:716.696289pt;}
.y2c4{bottom:716.745620pt;}
.y388{bottom:716.892947pt;}
.y347{bottom:717.085606pt;}
.y306{bottom:717.096954pt;}
.y4d{bottom:717.480306pt;}
.yc5{bottom:718.653483pt;}
.y93{bottom:718.653564pt;}
.y16f{bottom:718.653605pt;}
.y1f8{bottom:720.542969pt;}
.y289{bottom:723.448289pt;}
.yc{bottom:725.521240pt;}
.y254{bottom:726.764287pt;}
.y2c3{bottom:730.073620pt;}
.y387{bottom:730.220947pt;}
.y346{bottom:730.413606pt;}
.y305{bottom:730.424954pt;}
.y113{bottom:732.386913pt;}
.y142{bottom:733.362956pt;}
.y4c{bottom:734.146973pt;}
.yc4{bottom:735.320150pt;}
.y127{bottom:735.320231pt;}
.y16e{bottom:735.320272pt;}
.y288{bottom:736.776289pt;}
.y253{bottom:740.092287pt;}
.y2c2{bottom:743.401620pt;}
.y386{bottom:743.548947pt;}
.y345{bottom:743.741606pt;}
.y304{bottom:743.752954pt;}
.y112{bottom:745.714913pt;}
.y141{bottom:750.029622pt;}
.y287{bottom:750.104289pt;}
.y4b{bottom:750.813639pt;}
.yc3{bottom:751.986816pt;}
.y126{bottom:751.986898pt;}
.y16d{bottom:751.986938pt;}
.y252{bottom:753.420287pt;}
.y2c1{bottom:756.729620pt;}
.y385{bottom:756.876947pt;}
.y344{bottom:757.069606pt;}
.y303{bottom:757.080954pt;}
.y111{bottom:762.352246pt;}
.y286{bottom:763.432289pt;}
.yb{bottom:764.794803pt;}
.y140{bottom:766.696289pt;}
.y251{bottom:766.748287pt;}
.y4a{bottom:767.480306pt;}
.yc2{bottom:768.653483pt;}
.y92{bottom:768.653564pt;}
.y16c{bottom:768.653605pt;}
.y2c0{bottom:770.057620pt;}
.y384{bottom:770.204947pt;}
.y343{bottom:770.397606pt;}
.y302{bottom:770.408954pt;}
.y110{bottom:775.680246pt;}
.y285{bottom:776.760289pt;}
.ya{bottom:778.122803pt;}
.y250{bottom:780.076287pt;}
.y13f{bottom:783.362956pt;}
.y2bf{bottom:783.385620pt;}
.y383{bottom:783.532947pt;}
.y342{bottom:783.725606pt;}
.y301{bottom:783.736954pt;}
.y49{bottom:784.146973pt;}
.yc1{bottom:785.320150pt;}
.y91{bottom:785.320231pt;}
.y16b{bottom:785.320272pt;}
.y284{bottom:790.088289pt;}
.y10f{bottom:792.317579pt;}
.y24f{bottom:793.404287pt;}
.y2be{bottom:796.713620pt;}
.y382{bottom:796.860947pt;}
.y341{bottom:797.053606pt;}
.y300{bottom:797.064954pt;}
.y13e{bottom:800.029622pt;}
.y48{bottom:800.813639pt;}
.yc0{bottom:801.986816pt;}
.y90{bottom:801.986898pt;}
.y16a{bottom:801.986938pt;}
.y283{bottom:803.416289pt;}
.y10e{bottom:805.645579pt;}
.y24e{bottom:806.732287pt;}
.y2bd{bottom:810.041620pt;}
.y381{bottom:810.188947pt;}
.y340{bottom:810.381606pt;}
.y2ff{bottom:810.392954pt;}
.y9{bottom:815.989502pt;}
.y13d{bottom:816.696289pt;}
.y282{bottom:816.744289pt;}
.y47{bottom:817.480306pt;}
.ybf{bottom:818.653483pt;}
.y8f{bottom:818.653564pt;}
.y169{bottom:818.653605pt;}
.y24d{bottom:820.060287pt;}
.y10d{bottom:822.282913pt;}
.y2bc{bottom:823.369620pt;}
.y380{bottom:823.516947pt;}
.y33f{bottom:823.709606pt;}
.y2fe{bottom:823.720954pt;}
.y281{bottom:830.072289pt;}
.y8{bottom:832.656169pt;}
.y13c{bottom:833.362956pt;}
.y24c{bottom:833.388287pt;}
.y46{bottom:834.146973pt;}
.ybe{bottom:835.320150pt;}
.y8e{bottom:835.320231pt;}
.y168{bottom:835.320272pt;}
.y10c{bottom:835.610913pt;}
.y2bb{bottom:836.697620pt;}
.y37f{bottom:836.844947pt;}
.y33e{bottom:837.037606pt;}
.y2fd{bottom:837.048954pt;}
.y280{bottom:843.400289pt;}
.y24b{bottom:846.716287pt;}
.y2ba{bottom:850.025620pt;}
.y13b{bottom:850.029622pt;}
.y37e{bottom:850.172947pt;}
.y33d{bottom:850.365606pt;}
.y2fc{bottom:850.376954pt;}
.y45{bottom:850.813639pt;}
.ybd{bottom:851.986816pt;}
.y8d{bottom:851.986898pt;}
.y167{bottom:851.986938pt;}
.y10b{bottom:852.248246pt;}
.y27f{bottom:856.728289pt;}
.y24a{bottom:860.044287pt;}
.y2b9{bottom:863.353620pt;}
.y37d{bottom:863.500947pt;}
.y33c{bottom:863.693606pt;}
.y2fb{bottom:863.704954pt;}
.y10a{bottom:865.576246pt;}
.y13a{bottom:866.696289pt;}
.y44{bottom:867.480306pt;}
.ybc{bottom:868.653483pt;}
.y8c{bottom:868.653564pt;}
.y166{bottom:868.653605pt;}
.y27e{bottom:870.056289pt;}
.y7{bottom:872.377441pt;}
.y249{bottom:873.372287pt;}
.y2b8{bottom:876.681620pt;}
.y37c{bottom:876.828947pt;}
.y33b{bottom:877.021606pt;}
.y2fa{bottom:877.032954pt;}
.y109{bottom:882.213579pt;}
.y1df{bottom:883.362956pt;}
.y27d{bottom:883.384289pt;}
.y43{bottom:884.146973pt;}
.y8b{bottom:885.320231pt;}
.y165{bottom:885.320272pt;}
.y248{bottom:886.700287pt;}
.y2b7{bottom:890.009620pt;}
.y37b{bottom:890.156947pt;}
.y33a{bottom:890.349606pt;}
.y2f9{bottom:890.360954pt;}
.y108{bottom:895.541579pt;}
.y6{bottom:896.377441pt;}
.y27c{bottom:896.712289pt;}
.y1de{bottom:900.029622pt;}
.y139{bottom:900.040289pt;}
.y42{bottom:900.813639pt;}
.y8a{bottom:901.986898pt;}
.y164{bottom:901.986938pt;}
.ybb{bottom:901.992150pt;}
.y2b6{bottom:903.337620pt;}
.y37a{bottom:903.484947pt;}
.y339{bottom:903.677606pt;}
.y2f8{bottom:903.688954pt;}
.y27b{bottom:910.040289pt;}
.y107{bottom:912.178913pt;}
.y247{bottom:916.665620pt;}
.y1dd{bottom:916.696289pt;}
.y138{bottom:916.701622pt;}
.y379{bottom:916.812947pt;}
.y338{bottom:917.005606pt;}
.y2f7{bottom:917.016954pt;}
.y41{bottom:917.480306pt;}
.yba{bottom:918.653483pt;}
.y89{bottom:918.653564pt;}
.y163{bottom:918.653605pt;}
.y27a{bottom:923.368289pt;}
.y106{bottom:925.506913pt;}
.y246{bottom:929.993620pt;}
.y378{bottom:930.140947pt;}
.y337{bottom:930.333606pt;}
.y2f6{bottom:930.344954pt;}
.y137{bottom:933.362956pt;}
.y40{bottom:934.146973pt;}
.y88{bottom:935.320231pt;}
.y162{bottom:935.320272pt;}
.y279{bottom:936.696289pt;}
.y103{bottom:942.324306pt;}
.y245{bottom:943.321620pt;}
.y377{bottom:943.468947pt;}
.y336{bottom:943.661606pt;}
.y2f5{bottom:943.672954pt;}
.y105{bottom:950.474246pt;}
.y3f{bottom:950.813639pt;}
.y87{bottom:951.986898pt;}
.yb9{bottom:951.986928pt;}
.y161{bottom:951.986938pt;}
.y102{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y244{bottom:956.649620pt;}
.y376{bottom:956.796947pt;}
.y335{bottom:956.989606pt;}
.y2f4{bottom:957.000954pt;}
.y104{bottom:963.802246pt;}
.y136{bottom:966.696289pt;}
.y3e{bottom:967.480306pt;}
.y86{bottom:968.653564pt;}
.yb8{bottom:968.653595pt;}
.y160{bottom:968.653605pt;}
.y101{bottom:968.980306pt;}
.y243{bottom:969.977620pt;}
.y375{bottom:970.124947pt;}
.y334{bottom:970.317606pt;}
.y2f3{bottom:970.328954pt;}
.y2f{bottom:982.677327pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3d{bottom:1002.206543pt;}
.y85{bottom:1002.206706pt;}
.hd{height:11.766666pt;}
.h11{height:22.403733pt;}
.h2{height:30.080000pt;}
.h10{height:32.005333pt;}
.he{height:32.093106pt;}
.hf{height:32.760417pt;}
.h9{height:37.653333pt;}
.h13{height:37.653496pt;}
.h4{height:39.712000pt;}
.h16{height:40.165333pt;}
.h19{height:40.515700pt;}
.h17{height:46.376000pt;}
.hb{height:47.253333pt;}
.h15{height:47.690626pt;}
.h14{height:47.690667pt;}
.h1a{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h12{height:52.448000pt;}
.h8{height:52.746667pt;}
.ha{height:54.560000pt;}
.h18{height:57.376000pt;}
.h7{height:57.658667pt;}
.hc{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:188.974670pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x9{left:69.996800pt;}
.x4{left:75.717199pt;}
.xa{left:83.138152pt;}
.x8{left:86.929867pt;}
.xf{left:90.709469pt;}
.xc{left:238.110128pt;}
.xd{left:376.637456pt;}
.x5{left:408.191457pt;}
.x6{left:423.298124pt;}
.xe{left:430.866924pt;}
.x7{left:536.694661pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xb{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; }
  