
    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_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e9ca4a1860721cd7c1e413b.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_8ad27ac1a25a77226045aec8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_cf916eafd44a90d3d9192892.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_ec4531f6964a9c1905f21be8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_115cd8037a82dddd29f240ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_dde85fca5f304a166d3bed11.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_167197f818414ed7cde69876.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_6d50dfbf37ced743baa6f0cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_1cc48ca0b9d87e79a2346d72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.662000;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_8eaa2c1a5787db810bc0092d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_357a3c1501ab0971639d3ae8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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_d57b0417f471e1b52e5976b4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.883000;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_605b32b17103eb5b01f72eba.woff2')format("woff");}.fff{font-family:fff;line-height:0.671000;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_d8175b919005320d1a593bb2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.690000;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);}
.v2{vertical-align:-20.399963px;}
.v3{vertical-align:-15.018951px;}
.v4{vertical-align:-12.774000px;}
.v6{vertical-align:-1.467149px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.376513px;}
.v1{vertical-align:24.000000px;}
.ls4a{letter-spacing:-1.260000px;}
.ls3e{letter-spacing:-1.200000px;}
.ls4f{letter-spacing:-1.080000px;}
.ls3f{letter-spacing:-0.900000px;}
.ls3c{letter-spacing:-0.840000px;}
.ls4e{letter-spacing:-0.780000px;}
.ls4c{letter-spacing:-0.630000px;}
.ls4d{letter-spacing:-0.600000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.lsa2{letter-spacing:-0.408000px;}
.ls4b{letter-spacing:-0.378000px;}
.ls33{letter-spacing:-0.360000px;}
.ls95{letter-spacing:-0.357000px;}
.ls96{letter-spacing:-0.306000px;}
.ls14{letter-spacing:-0.300000px;}
.ls98{letter-spacing:-0.255000px;}
.ls31{letter-spacing:-0.240000px;}
.lsa1{letter-spacing:-0.204000px;}
.ls32{letter-spacing:-0.180000px;}
.ls68{letter-spacing:-0.168000px;}
.ls99{letter-spacing:-0.153000px;}
.ls2f{letter-spacing:-0.120000px;}
.ls94{letter-spacing:-0.102000px;}
.ls30{letter-spacing:-0.060000px;}
.ls9a{letter-spacing:-0.051000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls45{letter-spacing:0.002029px;}
.ls93{letter-spacing:0.025500px;}
.ls7b{letter-spacing:0.051000px;}
.ls2d{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.090000px;}
.ls81{letter-spacing:0.102000px;}
.ls2b{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.150000px;}
.ls91{letter-spacing:0.153000px;}
.ls65{letter-spacing:0.168000px;}
.ls44{letter-spacing:0.173991px;}
.ls9f{letter-spacing:0.178382px;}
.ls9b{letter-spacing:0.178500px;}
.ls10{letter-spacing:0.178791px;}
.ls18{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.197981px;}
.ls59{letter-spacing:0.210000px;}
.ls41{letter-spacing:0.214189px;}
.ls43{letter-spacing:0.214772px;}
.ls48{letter-spacing:0.239946px;}
.ls2{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.245962px;}
.ls11{letter-spacing:0.255000px;}
.ls7f{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.287986px;}
.lsd{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.298781px;}
.ls3{letter-spacing:0.300000px;}
.ls9c{letter-spacing:0.306000px;}
.ls5c{letter-spacing:0.330000px;}
.ls5f{letter-spacing:0.336000px;}
.ls79{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.368420px;}
.ls7c{letter-spacing:0.382500px;}
.ls56{letter-spacing:0.390000px;}
.lsa0{letter-spacing:0.408000px;}
.ls17{letter-spacing:0.419978px;}
.ls2e{letter-spacing:0.419991px;}
.ls5{letter-spacing:0.420000px;}
.ls63{letter-spacing:0.426000px;}
.ls9d{letter-spacing:0.433500px;}
.ls7a{letter-spacing:0.459000px;}
.lsb{letter-spacing:0.480000px;}
.ls7e{letter-spacing:0.510000px;}
.ls47{letter-spacing:0.529175px;}
.ls42{letter-spacing:0.533976px;}
.ls4{letter-spacing:0.540000px;}
.ls5e{letter-spacing:0.546000px;}
.ls80{letter-spacing:0.561000px;}
.ls5d{letter-spacing:0.588000px;}
.ls1d{letter-spacing:0.600000px;}
.ls97{letter-spacing:0.612000px;}
.ls6a{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.660000px;}
.ls8a{letter-spacing:0.663000px;}
.ls55{letter-spacing:0.690000px;}
.ls89{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.720000px;}
.ls82{letter-spacing:0.739500px;}
.ls67{letter-spacing:0.750000px;}
.ls64{letter-spacing:0.756000px;}
.ls86{letter-spacing:0.765000px;}
.ls21{letter-spacing:0.780000px;}
.ls66{letter-spacing:0.798000px;}
.ls1e{letter-spacing:0.810000px;}
.ls8e{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.ls7d{letter-spacing:0.867000px;}
.ls5b{letter-spacing:0.870000px;}
.ls7{letter-spacing:0.900000px;}
.ls62{letter-spacing:0.911989px;}
.ls60{letter-spacing:0.912000px;}
.ls83{letter-spacing:0.918000px;}
.ls51{letter-spacing:0.930000px;}
.ls9e{letter-spacing:0.943500px;}
.ls61{letter-spacing:0.948000px;}
.ls2a{letter-spacing:0.960000px;}
.ls85{letter-spacing:0.969000px;}
.ls5a{letter-spacing:0.990000px;}
.ls54{letter-spacing:1.019993px;}
.ls1f{letter-spacing:1.020000px;}
.ls8d{letter-spacing:1.045500px;}
.ls50{letter-spacing:1.050000px;}
.ls92{letter-spacing:1.071000px;}
.ls2c{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.091983px;}
.ls8{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.164000px;}
.ls9{letter-spacing:1.170000px;}
.ls8b{letter-spacing:1.173000px;}
.ls6f{letter-spacing:1.200000px;}
.ls84{letter-spacing:1.224000px;}
.ls57{letter-spacing:1.230000px;}
.ls36{letter-spacing:1.260000px;}
.ls35{letter-spacing:1.290000px;}
.ls20{letter-spacing:1.295959px;}
.ls3b{letter-spacing:1.320000px;}
.ls88{letter-spacing:1.326000px;}
.ls87{letter-spacing:1.377000px;}
.ls22{letter-spacing:1.380000px;}
.ls71{letter-spacing:1.428000px;}
.ls38{letter-spacing:1.440000px;}
.lse{letter-spacing:1.470000px;}
.ls8c{letter-spacing:1.479000px;}
.ls29{letter-spacing:1.500000px;}
.ls52{letter-spacing:1.560000px;}
.ls6b{letter-spacing:1.590000px;}
.ls69{letter-spacing:1.620000px;}
.ls58{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.800000px;}
.ls75{letter-spacing:1.830000px;}
.ls25{letter-spacing:1.855779px;}
.ls24{letter-spacing:1.860000px;}
.ls90{letter-spacing:1.887000px;}
.ls73{letter-spacing:1.890000px;}
.ls53{letter-spacing:1.920000px;}
.ls77{letter-spacing:1.980000px;}
.ls6e{letter-spacing:2.010000px;}
.ls6c{letter-spacing:2.040000px;}
.ls74{letter-spacing:2.100000px;}
.ls49{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.189954px;}
.ls8f{letter-spacing:2.218500px;}
.ls70{letter-spacing:2.220000px;}
.ls6d{letter-spacing:2.340000px;}
.lsf{letter-spacing:2.400000px;}
.ls78{letter-spacing:2.460000px;}
.ls27{letter-spacing:2.506215px;}
.ls26{letter-spacing:2.520000px;}
.ls72{letter-spacing:2.700000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws23{word-spacing:-60.000000px;}
.wsda{word-spacing:-17.700000px;}
.wsd9{word-spacing:-17.040000px;}
.wsac{word-spacing:-16.560000px;}
.wsad{word-spacing:-15.960000px;}
.wscc{word-spacing:-15.900000px;}
.wsba{word-spacing:-15.840000px;}
.wsab{word-spacing:-15.780000px;}
.wsa1{word-spacing:-15.600000px;}
.wscf{word-spacing:-15.480000px;}
.ws14{word-spacing:-15.300000px;}
.wsc4{word-spacing:-15.240000px;}
.ws7{word-spacing:-15.000000px;}
.wse0{word-spacing:-14.832000px;}
.wsc8{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.544000px;}
.ws9e{word-spacing:-14.160000px;}
.wsa3{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.005000px;}
.wsa{word-spacing:-12.750000px;}
.ws25{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.wsd4{word-spacing:-12.390000px;}
.ws4{word-spacing:-12.360000px;}
.wsd3{word-spacing:-11.928000px;}
.ws5{word-spacing:-11.520000px;}
.wsc2{word-spacing:-11.298000px;}
.wsc0{word-spacing:-11.256000px;}
.wsc7{word-spacing:-11.130000px;}
.wsb5{word-spacing:-11.088000px;}
.wsbd{word-spacing:-11.046000px;}
.wsb3{word-spacing:-10.920000px;}
.wsbe{word-spacing:-10.836000px;}
.wsb4{word-spacing:-10.710000px;}
.wsc1{word-spacing:-10.668000px;}
.ws51{word-spacing:-10.500000px;}
.wsbf{word-spacing:-10.332000px;}
.wsde{word-spacing:-10.149000px;}
.ws9c{word-spacing:-10.122000px;}
.ws1{word-spacing:-9.996000px;}
.ws9d{word-spacing:-9.870000px;}
.wsdf{word-spacing:-9.690000px;}
.ws0{word-spacing:-9.408000px;}
.ws9{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws3e{word-spacing:-7.500000px;}
.ws81{word-spacing:-6.375000px;}
.ws74{word-spacing:-2.580000px;}
.ws40{word-spacing:-2.520000px;}
.wsd2{word-spacing:-2.340000px;}
.ws93{word-spacing:-2.280000px;}
.ws91{word-spacing:-2.220000px;}
.ws80{word-spacing:-2.160000px;}
.ws6e{word-spacing:-2.100000px;}
.ws8d{word-spacing:-1.980000px;}
.wsb{word-spacing:-1.890000px;}
.ws3d{word-spacing:-1.860000px;}
.wsce{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.wsb0{word-spacing:-1.440000px;}
.wsd0{word-spacing:-1.380000px;}
.ws112{word-spacing:-1.377000px;}
.ws113{word-spacing:-1.326000px;}
.ws13{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.275000px;}
.ws4a{word-spacing:-1.260000px;}
.ws7d{word-spacing:-1.200000px;}
.ws10e{word-spacing:-1.122000px;}
.ws56{word-spacing:-1.080000px;}
.wsf9{word-spacing:-1.071000px;}
.ws34{word-spacing:-1.020000px;}
.wsfb{word-spacing:-0.969000px;}
.ws7e{word-spacing:-0.960000px;}
.ws44{word-spacing:-0.900000px;}
.ws100{word-spacing:-0.867000px;}
.ws2c{word-spacing:-0.840000px;}
.ws58{word-spacing:-0.780000px;}
.ws105{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.ws115{word-spacing:-0.714000px;}
.ws39{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws27{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.wse4{word-spacing:-0.561000px;}
.ws42{word-spacing:-0.540000px;}
.wsfd{word-spacing:-0.510000px;}
.ws19{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.420000px;}
.ws45{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.300000px;}
.wsf4{word-spacing:-0.255000px;}
.ws1b{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.120000px;}
.wsa0{word-spacing:-0.060015px;}
.ws37{word-spacing:-0.060000px;}
.wsed{word-spacing:-0.051000px;}
.ws24{word-spacing:-0.042000px;}
.wsc{word-spacing:0.000000px;}
.ws2f{word-spacing:0.060000px;}
.ws10a{word-spacing:0.102000px;}
.ws30{word-spacing:0.120000px;}
.ws12{word-spacing:0.180000px;}
.wscd{word-spacing:0.240000px;}
.ws3a{word-spacing:0.300000px;}
.ws109{word-spacing:0.306000px;}
.ws10b{word-spacing:0.357000px;}
.wsc9{word-spacing:0.360000px;}
.ws11{word-spacing:0.420000px;}
.wsea{word-spacing:0.459000px;}
.ws1c{word-spacing:0.480000px;}
.ws57{word-spacing:0.540000px;}
.wsf6{word-spacing:0.561000px;}
.ws9b{word-spacing:0.600000px;}
.ws10c{word-spacing:0.612000px;}
.ws4b{word-spacing:0.660000px;}
.ws104{word-spacing:0.714000px;}
.wsc5{word-spacing:0.720000px;}
.ws1e{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.wsa4{word-spacing:0.900000px;}
.wsb6{word-spacing:0.960000px;}
.wse9{word-spacing:0.969000px;}
.ws99{word-spacing:1.020000px;}
.wsf7{word-spacing:1.071000px;}
.wse{word-spacing:1.080000px;}
.ws1d{word-spacing:1.140000px;}
.wsbb{word-spacing:1.173000px;}
.ws98{word-spacing:1.200000px;}
.ws4e{word-spacing:1.260000px;}
.wse1{word-spacing:1.275000px;}
.wsb8{word-spacing:1.320000px;}
.ws8e{word-spacing:1.380000px;}
.wsa7{word-spacing:1.440000px;}
.ws114{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws10d{word-spacing:1.530000px;}
.ws47{word-spacing:1.560000px;}
.ws36{word-spacing:1.620000px;}
.ws59{word-spacing:1.680000px;}
.wseb{word-spacing:1.734000px;}
.wsc3{word-spacing:1.740000px;}
.wsf3{word-spacing:1.785000px;}
.ws31{word-spacing:1.800000px;}
.wsf0{word-spacing:1.836000px;}
.ws35{word-spacing:1.860000px;}
.ws29{word-spacing:1.920000px;}
.wscb{word-spacing:1.980000px;}
.ws108{word-spacing:1.989000px;}
.ws26{word-spacing:2.040000px;}
.ws16{word-spacing:2.100000px;}
.ws2e{word-spacing:2.160000px;}
.wsb9{word-spacing:2.220000px;}
.ws2d{word-spacing:2.280000px;}
.wse3{word-spacing:2.295000px;}
.ws77{word-spacing:2.340000px;}
.wsfa{word-spacing:2.397000px;}
.ws5a{word-spacing:2.400000px;}
.ws4c{word-spacing:2.460000px;}
.ws46{word-spacing:2.520000px;}
.ws110{word-spacing:2.550000px;}
.wsa2{word-spacing:2.580000px;}
.wsec{word-spacing:2.601000px;}
.ws49{word-spacing:2.640000px;}
.ws38{word-spacing:2.700000px;}
.ws107{word-spacing:2.703000px;}
.ws4d{word-spacing:2.760000px;}
.wsef{word-spacing:2.805000px;}
.ws48{word-spacing:2.820000px;}
.wsbc{word-spacing:2.856000px;}
.ws33{word-spacing:2.880000px;}
.ws97{word-spacing:2.940000px;}
.ws86{word-spacing:3.000000px;}
.ws111{word-spacing:3.009000px;}
.ws70{word-spacing:3.060000px;}
.wsf5{word-spacing:3.111000px;}
.ws4f{word-spacing:3.120000px;}
.wsa5{word-spacing:3.180000px;}
.ws102{word-spacing:3.213000px;}
.ws2a{word-spacing:3.300000px;}
.ws50{word-spacing:3.360000px;}
.wsdc{word-spacing:3.366000px;}
.ws103{word-spacing:3.417000px;}
.wsd1{word-spacing:3.420000px;}
.wse5{word-spacing:3.468000px;}
.wsdb{word-spacing:3.480000px;}
.ws17{word-spacing:3.540000px;}
.ws10f{word-spacing:3.570000px;}
.ws18{word-spacing:3.600000px;}
.ws5e{word-spacing:3.780000px;}
.ws101{word-spacing:3.825000px;}
.ws68{word-spacing:3.840000px;}
.ws8f{word-spacing:3.900000px;}
.wsfc{word-spacing:3.927000px;}
.wsfe{word-spacing:4.131000px;}
.ws95{word-spacing:4.140000px;}
.ws96{word-spacing:4.200000px;}
.ws71{word-spacing:4.260000px;}
.wsee{word-spacing:4.284000px;}
.ws9a{word-spacing:4.320000px;}
.ws89{word-spacing:4.380000px;}
.ws6a{word-spacing:4.440000px;}
.ws72{word-spacing:4.500000px;}
.wse6{word-spacing:4.539000px;}
.wsc6{word-spacing:4.560000px;}
.wsf2{word-spacing:4.590000px;}
.ws3c{word-spacing:4.620000px;}
.ws64{word-spacing:4.680000px;}
.ws3b{word-spacing:4.800000px;}
.wsf1{word-spacing:4.845000px;}
.ws92{word-spacing:4.860000px;}
.ws1f{word-spacing:5.040000px;}
.wsa6{word-spacing:5.100000px;}
.ws87{word-spacing:5.160000px;}
.wsa9{word-spacing:5.202000px;}
.ws5b{word-spacing:5.220000px;}
.wsf8{word-spacing:5.304000px;}
.ws43{word-spacing:5.340000px;}
.ws8c{word-spacing:5.400000px;}
.ws65{word-spacing:5.460000px;}
.ws106{word-spacing:5.508000px;}
.wsae{word-spacing:5.580000px;}
.wsff{word-spacing:5.610000px;}
.wsca{word-spacing:5.880000px;}
.ws63{word-spacing:6.000000px;}
.ws78{word-spacing:6.060000px;}
.wsb7{word-spacing:6.120000px;}
.ws62{word-spacing:6.180000px;}
.wsdd{word-spacing:6.222000px;}
.ws88{word-spacing:6.360000px;}
.ws85{word-spacing:6.480000px;}
.ws8a{word-spacing:6.540000px;}
.ws5c{word-spacing:6.780000px;}
.ws3f{word-spacing:7.020000px;}
.ws66{word-spacing:7.140000px;}
.wsaf{word-spacing:7.260000px;}
.ws8b{word-spacing:7.320000px;}
.ws7f{word-spacing:7.500000px;}
.ws6d{word-spacing:7.800000px;}
.wse7{word-spacing:7.854000px;}
.ws61{word-spacing:7.920000px;}
.ws6c{word-spacing:8.040000px;}
.ws7a{word-spacing:8.280000px;}
.ws60{word-spacing:8.340000px;}
.ws67{word-spacing:8.520000px;}
.ws7c{word-spacing:8.880000px;}
.ws20{word-spacing:9.840000px;}
.ws84{word-spacing:10.080000px;}
.wse8{word-spacing:10.200000px;}
.ws41{word-spacing:10.260000px;}
.wsaa{word-spacing:10.557000px;}
.ws73{word-spacing:11.460000px;}
.ws5d{word-spacing:11.820000px;}
.ws6f{word-spacing:12.120000px;}
.ws79{word-spacing:12.360000px;}
.wsa8{word-spacing:12.801000px;}
.ws7b{word-spacing:12.840000px;}
.wsb1{word-spacing:13.209000px;}
.ws116{word-spacing:13.668000px;}
.ws5f{word-spacing:14.280000px;}
.ws69{word-spacing:14.820000px;}
.wsb2{word-spacing:15.147000px;}
.ws9f{word-spacing:16.618152px;}
.ws117{word-spacing:17.799000px;}
.ws6b{word-spacing:18.000000px;}
.ws90{word-spacing:20.820000px;}
.ws75{word-spacing:22.500000px;}
.ws76{word-spacing:29.340000px;}
.ws82{word-spacing:39.480000px;}
.wsd7{word-spacing:42.585000px;}
.wsd6{word-spacing:47.015455px;}
.ws83{word-spacing:51.420000px;}
.ws21{word-spacing:72.267000px;}
.wsd8{word-spacing:73.790454px;}
.wsd5{word-spacing:106.335000px;}
.ws52{word-spacing:346.748989px;}
.ws53{word-spacing:359.498989px;}
.ws55{word-spacing:372.248989px;}
.ws54{word-spacing:384.998989px;}
._23{margin-left:-21.228000px;}
._17{margin-left:-19.128000px;}
._29{margin-left:-17.781083px;}
._d{margin-left:-16.575000px;}
._b{margin-left:-14.574001px;}
._2a{margin-left:-13.560000px;}
._26{margin-left:-12.257441px;}
._28{margin-left:-10.860000px;}
._25{margin-left:-9.240000px;}
._14{margin-left:-7.920000px;}
._27{margin-left:-6.768019px;}
._13{margin-left:-5.640000px;}
._2{margin-left:-4.622700px;}
._1{margin-left:-3.575100px;}
._0{margin-left:-1.632000px;}
._5{width:1.485288px;}
._3{width:2.486400px;}
._11{width:3.948000px;}
._16{width:5.978712px;}
._24{width:7.524000px;}
._12{width:8.880000px;}
._19{width:11.628000px;}
._15{width:13.416000px;}
._8{width:14.622000px;}
._1a{width:16.269000px;}
._e{width:18.360000px;}
._18{width:19.386640px;}
._33{width:20.688083px;}
._31{width:22.248600px;}
._2b{width:23.567100px;}
._2e{width:25.080288px;}
._32{width:26.255712px;}
._2f{width:28.503000px;}
._30{width:29.675712px;}
._4{width:39.963888px;}
._f{width:54.621000px;}
._6{width:63.000000px;}
._a{width:65.094001px;}
._c{width:79.620000px;}
._2d{width:80.849963px;}
._7{width:82.974001px;}
._9{width:89.634001px;}
._2c{width:106.369171px;}
._1c{width:308.498989px;}
._20{width:359.498989px;}
._22{width:372.248989px;}
._21{width:384.998989px;}
._1f{width:397.748989px;}
._1e{width:480.879000px;}
._1b{width:517.701000px;}
._1d{width:595.578000px;}
._10{width:2149.293000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:0.012451px;}
.y186{bottom:14.265244px;}
.y18e{bottom:14.268265px;}
.y189{bottom:25.389267px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3e{bottom:112.938300px;}
.y74{bottom:113.415298px;}
.y1d1{bottom:113.701796px;}
.y2e{bottom:114.211349px;}
.y252{bottom:114.326697px;}
.y133{bottom:114.555313px;}
.yeb{bottom:114.735168px;}
.y162{bottom:114.735260px;}
.y1ce{bottom:114.735294px;}
.y1ab{bottom:114.735306px;}
.y1ba{bottom:114.870306px;}
.yb9{bottom:114.874947px;}
.y294{bottom:116.761905px;}
.y1d0{bottom:128.695796px;}
.y251{bottom:129.320697px;}
.y184{bottom:130.410300px;}
.y293{bottom:131.755905px;}
.y73{bottom:132.165298px;}
.y2d{bottom:132.961349px;}
.y3d{bottom:133.032303px;}
.y132{bottom:133.305313px;}
.yea{bottom:133.485168px;}
.y161{bottom:133.485260px;}
.y1cd{bottom:133.485294px;}
.y1aa{bottom:133.485306px;}
.y1b9{bottom:133.620306px;}
.yb8{bottom:133.624947px;}
.y1cf{bottom:143.689796px;}
.y250{bottom:144.314697px;}
.y292{bottom:146.749905px;}
.y183{bottom:149.160300px;}
.y3c{bottom:150.491553px;}
.y72{bottom:150.915298px;}
.y2c{bottom:151.711349px;}
.y131{bottom:152.055313px;}
.ye9{bottom:152.235168px;}
.y160{bottom:152.235260px;}
.y1cc{bottom:152.235294px;}
.y1a9{bottom:152.235306px;}
.y1b8{bottom:152.370306px;}
.yb7{bottom:152.374947px;}
.y24f{bottom:159.308697px;}
.y291{bottom:161.743905px;}
.y3b{bottom:165.485553px;}
.y182{bottom:167.910300px;}
.y71{bottom:169.665298px;}
.y2b{bottom:170.461349px;}
.y130{bottom:170.805313px;}
.ye8{bottom:170.985168px;}
.y15f{bottom:170.985260px;}
.y1cb{bottom:170.985294px;}
.y1a8{bottom:170.985306px;}
.y1b7{bottom:171.120306px;}
.yb6{bottom:171.124947px;}
.y24e{bottom:174.302697px;}
.y290{bottom:176.737905px;}
.y3a{bottom:185.579556px;}
.y70{bottom:188.415298px;}
.y2a{bottom:189.211349px;}
.y24d{bottom:189.296697px;}
.y12f{bottom:189.555313px;}
.ye7{bottom:189.735168px;}
.y15e{bottom:189.735260px;}
.y1a7{bottom:189.735306px;}
.y1b6{bottom:189.870306px;}
.yb5{bottom:189.874947px;}
.y28f{bottom:191.731905px;}
.y39{bottom:203.038794px;}
.y1e1{bottom:203.113806px;}
.y24c{bottom:204.290697px;}
.y181{bottom:205.410300px;}
.y28e{bottom:206.725905px;}
.ya0{bottom:207.165298px;}
.y6f{bottom:207.165344px;}
.y29{bottom:207.961349px;}
.y12e{bottom:208.305313px;}
.ye6{bottom:208.485168px;}
.y15d{bottom:208.485260px;}
.y1a6{bottom:208.485306px;}
.y1b5{bottom:208.620306px;}
.yb4{bottom:208.624947px;}
.y38{bottom:218.032794px;}
.y1e0{bottom:218.107806px;}
.y24b{bottom:219.284697px;}
.y28d{bottom:221.719905px;}
.y9f{bottom:225.915298px;}
.y6e{bottom:225.915344px;}
.y28{bottom:226.711349px;}
.y12d{bottom:227.055313px;}
.ye5{bottom:227.235168px;}
.y15c{bottom:227.235260px;}
.y1a5{bottom:227.235306px;}
.y1b4{bottom:227.370306px;}
.yb3{bottom:227.374947px;}
.y1df{bottom:233.101806px;}
.y24a{bottom:234.278697px;}
.y28c{bottom:236.713905px;}
.y37{bottom:238.126808px;}
.y180{bottom:242.910278px;}
.y9e{bottom:244.665298px;}
.y6d{bottom:244.665344px;}
.y27{bottom:245.461349px;}
.y12c{bottom:245.805313px;}
.ye4{bottom:245.985168px;}
.y15b{bottom:245.985260px;}
.y1a4{bottom:245.985306px;}
.y1b3{bottom:246.120306px;}
.yb2{bottom:246.124947px;}
.y1de{bottom:248.095806px;}
.y249{bottom:249.272697px;}
.y28b{bottom:251.707905px;}
.y36{bottom:255.586059px;}
.y21e{bottom:258.895800px;}
.y17f{bottom:261.660278px;}
.y1dd{bottom:263.101806px;}
.y6c{bottom:263.415344px;}
.y26{bottom:264.211349px;}
.y248{bottom:264.266697px;}
.y12b{bottom:264.555313px;}
.ye3{bottom:264.735168px;}
.y1a3{bottom:264.735306px;}
.y1b2{bottom:264.870306px;}
.yb1{bottom:264.874947px;}
.y28a{bottom:266.701905px;}
.y35{bottom:270.580059px;}
.y21d{bottom:273.907155px;}
.y1dc{bottom:278.095806px;}
.y247{bottom:279.260697px;}
.y17e{bottom:280.410278px;}
.y289{bottom:281.695905px;}
.y9d{bottom:282.165298px;}
.y6b{bottom:282.165344px;}
.y25{bottom:282.961349px;}
.y12a{bottom:283.305313px;}
.ye2{bottom:283.485168px;}
.y15a{bottom:283.485260px;}
.y1a2{bottom:283.485306px;}
.y1b1{bottom:283.620306px;}
.y191{bottom:283.624947px;}
.y1f0{bottom:285.847811px;}
.y21c{bottom:288.901155px;}
.y34{bottom:290.674049px;}
.y1db{bottom:293.089806px;}
.y246{bottom:294.254697px;}
.y288{bottom:296.689905px;}
.y17d{bottom:299.160278px;}
.y1ef{bottom:300.841811px;}
.y6a{bottom:300.915344px;}
.y24{bottom:301.711349px;}
.y129{bottom:302.055313px;}
.ye1{bottom:302.235168px;}
.y1a1{bottom:302.235306px;}
.y1b0{bottom:302.370306px;}
.yb0{bottom:302.374947px;}
.y21b{bottom:303.895155px;}
.y245{bottom:309.248697px;}
.y287{bottom:311.683905px;}
.y33{bottom:315.687150px;}
.y1ee{bottom:315.835811px;}
.y17c{bottom:317.910278px;}
.y9c{bottom:319.665298px;}
.y69{bottom:319.665344px;}
.y23{bottom:320.461349px;}
.y128{bottom:320.805313px;}
.ye0{bottom:320.985168px;}
.y159{bottom:320.985260px;}
.y1a0{bottom:320.985306px;}
.y1af{bottom:321.120306px;}
.y190{bottom:321.124947px;}
.y244{bottom:324.242697px;}
.y286{bottom:326.677905px;}
.y32{bottom:330.681150px;}
.y1ed{bottom:330.835811px;}
.y17b{bottom:336.660278px;}
.y68{bottom:338.415344px;}
.y22{bottom:339.211349px;}
.y243{bottom:339.236697px;}
.y127{bottom:339.555313px;}
.ydf{bottom:339.735168px;}
.y158{bottom:339.735260px;}
.y19f{bottom:339.735306px;}
.y1ae{bottom:339.870306px;}
.y1d4{bottom:339.874786px;}
.yaf{bottom:339.874809px;}
.y285{bottom:341.671905px;}
.y1ec{bottom:345.829811px;}
.y242{bottom:354.230697px;}
.y17a{bottom:355.410278px;}
.y284{bottom:356.665905px;}
.y67{bottom:357.165344px;}
.y21{bottom:357.961349px;}
.y126{bottom:358.305313px;}
.yde{bottom:358.485168px;}
.y157{bottom:358.485260px;}
.y19e{bottom:358.485306px;}
.y1ad{bottom:358.620306px;}
.y1d3{bottom:358.624786px;}
.y18f{bottom:358.624809px;}
.y31{bottom:361.497900px;}
.y241{bottom:369.224697px;}
.y283{bottom:371.659905px;}
.y179{bottom:374.160278px;}
.y211{bottom:375.172806px;}
.y9b{bottom:375.915298px;}
.y66{bottom:375.915344px;}
.y30{bottom:376.491900px;}
.y20{bottom:376.711349px;}
.y125{bottom:377.055313px;}
.ydd{bottom:377.235168px;}
.y156{bottom:377.235260px;}
.y19d{bottom:377.235306px;}
.y1ac{bottom:377.370306px;}
.yae{bottom:377.374786px;}
.y240{bottom:384.218697px;}
.y282{bottom:386.653905px;}
.y2f{bottom:391.485900px;}
.y178{bottom:392.910278px;}
.y210{bottom:393.922806px;}
.y9a{bottom:394.665298px;}
.y65{bottom:394.665344px;}
.y1f{bottom:395.461349px;}
.ydc{bottom:395.985168px;}
.y155{bottom:395.985260px;}
.y19c{bottom:395.985306px;}
.yad{bottom:396.124786px;}
.y23f{bottom:399.212697px;}
.y281{bottom:401.647905px;}
.y177{bottom:411.660278px;}
.y20f{bottom:412.672806px;}
.y99{bottom:413.415298px;}
.y64{bottom:413.415344px;}
.y23e{bottom:414.206697px;}
.y124{bottom:414.555313px;}
.ydb{bottom:414.735168px;}
.y154{bottom:414.735260px;}
.y19b{bottom:414.735306px;}
.yac{bottom:414.874786px;}
.y280{bottom:416.641905px;}
.y1bd{bottom:421.522803px;}
.y23d{bottom:429.200697px;}
.y176{bottom:430.410278px;}
.y20e{bottom:431.422806px;}
.y27f{bottom:431.635905px;}
.y98{bottom:432.165298px;}
.y63{bottom:432.165344px;}
.y1e{bottom:432.961349px;}
.yda{bottom:433.485168px;}
.y153{bottom:433.485260px;}
.y19a{bottom:433.485306px;}
.yab{bottom:433.624786px;}
.y1bc{bottom:436.516803px;}
.y23c{bottom:444.194697px;}
.y27e{bottom:446.629905px;}
.y175{bottom:449.160278px;}
.y20d{bottom:450.172806px;}
.y97{bottom:450.915298px;}
.y62{bottom:450.915344px;}
.y1bb{bottom:451.510803px;}
.y1d{bottom:451.711395px;}
.y123{bottom:452.055313px;}
.yd9{bottom:452.235168px;}
.y152{bottom:452.235260px;}
.y199{bottom:452.235306px;}
.yaa{bottom:452.374786px;}
.y23b{bottom:459.188697px;}
.y27d{bottom:461.623905px;}
.y174{bottom:467.910278px;}
.y20c{bottom:468.922806px;}
.y96{bottom:469.665298px;}
.y61{bottom:469.665344px;}
.y1c{bottom:470.461395px;}
.yd8{bottom:470.985168px;}
.y151{bottom:470.985260px;}
.y1ca{bottom:470.985306px;}
.ya9{bottom:471.124786px;}
.y23a{bottom:474.182697px;}
.y27c{bottom:476.617905px;}
.y173{bottom:486.660278px;}
.y20b{bottom:487.672806px;}
.y95{bottom:488.415298px;}
.y60{bottom:488.415344px;}
.y239{bottom:489.176697px;}
.y1b{bottom:489.211395px;}
.y122{bottom:489.555313px;}
.yd7{bottom:489.735168px;}
.y150{bottom:489.735260px;}
.y198{bottom:489.735306px;}
.ya8{bottom:489.874786px;}
.y27b{bottom:491.611905px;}
.y172{bottom:505.410278px;}
.y20a{bottom:506.422806px;}
.y27a{bottom:506.605905px;}
.y94{bottom:507.165298px;}
.y5f{bottom:507.165344px;}
.y1a{bottom:507.961395px;}
.y121{bottom:508.305313px;}
.y14f{bottom:508.485260px;}
.y1c9{bottom:508.485306px;}
.ya7{bottom:508.624786px;}
.y279{bottom:521.599905px;}
.y238{bottom:522.926697px;}
.y171{bottom:524.160278px;}
.y209{bottom:525.172806px;}
.y93{bottom:525.915298px;}
.y5e{bottom:525.915344px;}
.y120{bottom:527.055313px;}
.yd6{bottom:527.235168px;}
.y197{bottom:527.235260px;}
.y1c8{bottom:527.235306px;}
.ya6{bottom:527.374786px;}
.y2ba{bottom:536.446823px;}
.y278{bottom:536.593905px;}
.y170{bottom:542.910278px;}
.y208{bottom:543.922806px;}
.y92{bottom:544.665298px;}
.y5d{bottom:544.665344px;}
.y19{bottom:545.461395px;}
.y11f{bottom:545.805313px;}
.y14e{bottom:545.985260px;}
.y1c7{bottom:545.985306px;}
.ya5{bottom:546.124786px;}
.y2b9{bottom:551.440823px;}
.y277{bottom:551.587905px;}
.y16f{bottom:561.660278px;}
.y207{bottom:562.672806px;}
.y91{bottom:563.415298px;}
.y5c{bottom:563.415344px;}
.y11e{bottom:564.555313px;}
.yd5{bottom:564.735168px;}
.y196{bottom:564.735260px;}
.y1c6{bottom:564.735306px;}
.ya4{bottom:564.874786px;}
.y2b8{bottom:566.434823px;}
.y276{bottom:566.581905px;}
.y195{bottom:580.408778px;}
.y16e{bottom:580.410278px;}
.y2dc{bottom:580.424527px;}
.y206{bottom:581.422806px;}
.y2b7{bottom:581.428823px;}
.y275{bottom:581.575905px;}
.y90{bottom:582.165298px;}
.y5b{bottom:582.165344px;}
.y18{bottom:582.961395px;}
.y11d{bottom:583.305313px;}
.yd4{bottom:583.485168px;}
.y14d{bottom:583.485260px;}
.y1c5{bottom:583.485306px;}
.ya3{bottom:583.624786px;}
.y237{bottom:594.906449px;}
.y194{bottom:595.402778px;}
.y2db{bottom:595.418527px;}
.y2b6{bottom:596.422823px;}
.y274{bottom:596.569905px;}
.y16d{bottom:599.160278px;}
.y205{bottom:600.172806px;}
.y8f{bottom:600.915298px;}
.y5a{bottom:600.915344px;}
.y17{bottom:601.711395px;}
.y11c{bottom:602.055313px;}
.yd3{bottom:602.235168px;}
.y14c{bottom:602.235260px;}
.y1c4{bottom:602.235306px;}
.ya2{bottom:602.374786px;}
.y236{bottom:609.900449px;}
.y193{bottom:610.396778px;}
.y2b5{bottom:611.416823px;}
.y273{bottom:611.563905px;}
.y204{bottom:618.922806px;}
.y8e{bottom:619.665298px;}
.y59{bottom:619.665344px;}
.y16{bottom:620.461395px;}
.y11b{bottom:620.805313px;}
.yd2{bottom:620.985168px;}
.y14b{bottom:620.985260px;}
.y1c3{bottom:620.985306px;}
.ya1{bottom:621.124786px;}
.y235{bottom:624.894449px;}
.y192{bottom:625.390778px;}
.y2da{bottom:626.260777px;}
.y2b4{bottom:626.410823px;}
.y272{bottom:626.557905px;}
.y16c{bottom:636.660278px;}
.y203{bottom:637.672806px;}
.y8d{bottom:638.415298px;}
.y58{bottom:638.415344px;}
.y15{bottom:639.211395px;}
.y11a{bottom:639.555313px;}
.yd1{bottom:639.735168px;}
.y14a{bottom:639.735260px;}
.y1c2{bottom:639.735306px;}
.y1d2{bottom:639.874786px;}
.y234{bottom:639.888449px;}
.y2d9{bottom:641.254777px;}
.y2b3{bottom:641.404823px;}
.y271{bottom:641.551905px;}
.y233{bottom:654.882449px;}
.y2d8{bottom:656.248777px;}
.y2b2{bottom:656.398823px;}
.y202{bottom:656.422806px;}
.y270{bottom:656.545905px;}
.y8c{bottom:657.165298px;}
.y57{bottom:657.165344px;}
.y14{bottom:657.961395px;}
.y119{bottom:658.305313px;}
.yd0{bottom:658.485168px;}
.y149{bottom:658.485260px;}
.y1c1{bottom:658.485306px;}
.y1fd{bottom:658.624786px;}
.y232{bottom:669.876449px;}
.y2d7{bottom:671.242777px;}
.y2b1{bottom:671.392823px;}
.y26f{bottom:671.539905px;}
.yed{bottom:671.864576px;}
.y16b{bottom:674.160278px;}
.y201{bottom:675.172806px;}
.y8b{bottom:675.915298px;}
.y56{bottom:675.915344px;}
.y13{bottom:676.711395px;}
.y118{bottom:677.055267px;}
.ycf{bottom:677.235168px;}
.y148{bottom:677.235260px;}
.y1c0{bottom:677.235306px;}
.y1fc{bottom:677.374786px;}
.y2d6{bottom:686.236777px;}
.y2b0{bottom:686.386823px;}
.y26e{bottom:686.533905px;}
.y16a{bottom:692.910278px;}
.y200{bottom:693.922806px;}
.y8a{bottom:694.665298px;}
.y55{bottom:694.665344px;}
.y12{bottom:695.461395px;}
.y117{bottom:695.805267px;}
.yce{bottom:695.985168px;}
.y147{bottom:695.985260px;}
.y1bf{bottom:695.985306px;}
.y1fb{bottom:696.124969px;}
.y101{bottom:699.541524px;}
.y2d5{bottom:701.230777px;}
.y2af{bottom:701.380823px;}
.y26d{bottom:701.527905px;}
.y231{bottom:703.587449px;}
.y169{bottom:711.660278px;}
.y1ff{bottom:712.672806px;}
.y89{bottom:713.415298px;}
.y54{bottom:713.415344px;}
.y11{bottom:714.211395px;}
.y116{bottom:714.555267px;}
.ycd{bottom:714.735168px;}
.y146{bottom:714.735260px;}
.y1fa{bottom:714.874969px;}
.y2ae{bottom:716.374823px;}
.y26c{bottom:716.521905px;}
.y2d4{bottom:716.591564px;}
.y100{bottom:718.335024px;}
.y230{bottom:718.581449px;}
.y168{bottom:730.410260px;}
.y2ad{bottom:731.368823px;}
.y26b{bottom:731.515905px;}
.y2d3{bottom:731.585564px;}
.y88{bottom:732.165298px;}
.y53{bottom:732.165344px;}
.y10{bottom:732.961395px;}
.y115{bottom:733.305267px;}
.ycc{bottom:733.485168px;}
.y145{bottom:733.485260px;}
.y1be{bottom:733.485306px;}
.y1f9{bottom:733.624969px;}
.yff{bottom:737.052024px;}
.y2ac{bottom:746.362823px;}
.y26a{bottom:746.509905px;}
.y2d2{bottom:746.579564px;}
.y22f{bottom:748.543949px;}
.y1fe{bottom:750.172806px;}
.y87{bottom:750.915298px;}
.y52{bottom:750.915344px;}
.yf{bottom:751.711395px;}
.y114{bottom:752.055267px;}
.ycb{bottom:752.235168px;}
.y144{bottom:752.235260px;}
.y1f8{bottom:752.374969px;}
.yfe{bottom:755.769024px;}
.y185{bottom:756.810013px;}
.y18b{bottom:760.575302px;}
.y2ab{bottom:761.356823px;}
.y269{bottom:761.503905px;}
.y2d1{bottom:761.573564px;}
.y22e{bottom:763.537949px;}
.y86{bottom:769.665298px;}
.y51{bottom:769.665344px;}
.ye{bottom:770.461395px;}
.y113{bottom:770.805267px;}
.yca{bottom:770.985168px;}
.y143{bottom:770.985260px;}
.y187{bottom:771.075256px;}
.y18d{bottom:771.078278px;}
.y1f7{bottom:771.124969px;}
.yfd{bottom:774.486024px;}
.y2aa{bottom:776.350823px;}
.y268{bottom:776.497905px;}
.y2d0{bottom:776.567564px;}
.y188{bottom:782.193035px;}
.y18a{bottom:782.199280px;}
.y85{bottom:788.415298px;}
.y50{bottom:788.415344px;}
.yd{bottom:789.211395px;}
.y112{bottom:789.555267px;}
.yc9{bottom:789.735168px;}
.y142{bottom:789.735260px;}
.y1f6{bottom:789.874969px;}
.y2a9{bottom:791.344823px;}
.y267{bottom:791.491905px;}
.y2cf{bottom:791.561564px;}
.yfc{bottom:793.203024px;}
.y22d{bottom:797.287994px;}
.y2a8{bottom:806.338823px;}
.y266{bottom:806.485905px;}
.y2ce{bottom:806.555564px;}
.y84{bottom:807.165298px;}
.y4f{bottom:807.165344px;}
.y111{bottom:808.305267px;}
.yc8{bottom:808.485168px;}
.y141{bottom:808.485260px;}
.y1f5{bottom:808.624969px;}
.y220{bottom:809.656818px;}
.yfb{bottom:811.920024px;}
.y2a7{bottom:821.332823px;}
.y265{bottom:821.479905px;}
.y2cd{bottom:821.549564px;}
.y21f{bottom:824.650818px;}
.y83{bottom:825.915298px;}
.y4e{bottom:825.915344px;}
.y110{bottom:827.055267px;}
.yc7{bottom:827.235168px;}
.y140{bottom:827.235260px;}
.y1f4{bottom:827.374969px;}
.yfa{bottom:830.637024px;}
.yc{bottom:833.394153px;}
.y22c{bottom:834.875733px;}
.y2a6{bottom:836.326823px;}
.y264{bottom:836.473905px;}
.y2cc{bottom:836.543564px;}
.y82{bottom:844.665298px;}
.y4d{bottom:844.665344px;}
.y10f{bottom:845.805267px;}
.yc6{bottom:845.985168px;}
.y13f{bottom:845.985260px;}
.y1f3{bottom:846.124969px;}
.yb{bottom:848.388153px;}
.yf9{bottom:849.354024px;}
.y22b{bottom:849.869733px;}
.y2a5{bottom:851.320823px;}
.y263{bottom:851.467905px;}
.y2cb{bottom:851.537564px;}
.y81{bottom:863.415298px;}
.y4c{bottom:863.415344px;}
.y10e{bottom:864.555267px;}
.y167{bottom:864.735260px;}
.yc5{bottom:864.739906px;}
.y1f2{bottom:864.874969px;}
.y2a4{bottom:866.314823px;}
.y262{bottom:866.461905px;}
.y2ca{bottom:866.531564px;}
.yf8{bottom:868.071024px;}
.y2a3{bottom:881.308823px;}
.y261{bottom:881.455905px;}
.y2c9{bottom:881.525564px;}
.y80{bottom:882.165298px;}
.y4b{bottom:882.165344px;}
.y10d{bottom:883.305267px;}
.y13e{bottom:883.485260px;}
.yc4{bottom:883.489906px;}
.y22a{bottom:883.580733px;}
.y1f1{bottom:883.624969px;}
.yf7{bottom:886.788024px;}
.ya{bottom:890.988190px;}
.y2a2{bottom:896.302823px;}
.y260{bottom:896.449905px;}
.y2c8{bottom:896.519564px;}
.y229{bottom:898.574733px;}
.y7f{bottom:900.915298px;}
.y4a{bottom:900.915344px;}
.y10c{bottom:902.055267px;}
.y166{bottom:902.235260px;}
.yc3{bottom:902.239906px;}
.yf6{bottom:905.505024px;}
.y9{bottom:909.738190px;}
.y2a1{bottom:911.296823px;}
.y25f{bottom:911.443905px;}
.y2c7{bottom:911.513564px;}
.y228{bottom:913.568733px;}
.y7e{bottom:919.665298px;}
.y49{bottom:919.665344px;}
.y10b{bottom:920.805267px;}
.y13d{bottom:920.985260px;}
.y1eb{bottom:920.985306px;}
.yc2{bottom:920.989906px;}
.yf5{bottom:924.222024px;}
.y2a0{bottom:926.290823px;}
.y25e{bottom:926.437905px;}
.y2c6{bottom:926.507564px;}
.y227{bottom:928.562733px;}
.y214{bottom:932.877347px;}
.y7d{bottom:938.415298px;}
.y48{bottom:938.415344px;}
.y10a{bottom:939.555267px;}
.y13c{bottom:939.735260px;}
.y1ea{bottom:939.735306px;}
.yc1{bottom:939.739906px;}
.y29f{bottom:941.284823px;}
.y25d{bottom:941.431905px;}
.y2c5{bottom:941.501564px;}
.yf4{bottom:942.939024px;}
.y226{bottom:943.556733px;}
.y213{bottom:947.871347px;}
.y8{bottom:954.424622px;}
.y29e{bottom:956.278823px;}
.y25c{bottom:956.425905px;}
.y2c4{bottom:956.495564px;}
.y7c{bottom:957.165298px;}
.y47{bottom:957.165344px;}
.y109{bottom:958.305267px;}
.y13b{bottom:958.485260px;}
.y1e9{bottom:958.485306px;}
.yc0{bottom:958.489906px;}
.y225{bottom:958.550733px;}
.yf3{bottom:961.656024px;}
.y29d{bottom:971.272823px;}
.y25b{bottom:971.419905px;}
.y2c3{bottom:971.489564px;}
.y224{bottom:973.544733px;}
.y21a{bottom:975.559009px;}
.y7b{bottom:975.915298px;}
.y46{bottom:975.915344px;}
.y108{bottom:977.055267px;}
.y13a{bottom:977.235260px;}
.y1e8{bottom:977.235306px;}
.ybf{bottom:977.239906px;}
.yf2{bottom:980.373024px;}
.y7{bottom:981.424622px;}
.y29c{bottom:986.266823px;}
.y25a{bottom:986.413905px;}
.y2c2{bottom:986.483564px;}
.y223{bottom:988.538733px;}
.y219{bottom:994.348155px;}
.y7a{bottom:994.665298px;}
.y45{bottom:994.665344px;}
.y107{bottom:995.805267px;}
.y139{bottom:995.985260px;}
.y1e7{bottom:995.985306px;}
.yf1{bottom:999.090024px;}
.y1da{bottom:1000.126844px;}
.y29b{bottom:1001.260823px;}
.y259{bottom:1001.407905px;}
.y2c1{bottom:1001.477564px;}
.y222{bottom:1003.532733px;}
.y6{bottom:1008.424622px;}
.y218{bottom:1013.060527px;}
.y79{bottom:1013.415298px;}
.y44{bottom:1013.415344px;}
.y106{bottom:1014.555267px;}
.y138{bottom:1014.735260px;}
.y1e6{bottom:1014.735306px;}
.ybe{bottom:1014.739906px;}
.y1d9{bottom:1015.120844px;}
.y29a{bottom:1016.254823px;}
.y258{bottom:1016.401905px;}
.y2c0{bottom:1016.471564px;}
.yf0{bottom:1017.807024px;}
.y221{bottom:1018.526733px;}
.y212{bottom:1030.108844px;}
.y1d8{bottom:1030.114844px;}
.y299{bottom:1031.248823px;}
.y257{bottom:1031.395905px;}
.y2bf{bottom:1031.465564px;}
.y217{bottom:1031.773027px;}
.y78{bottom:1032.165298px;}
.y43{bottom:1032.165344px;}
.y105{bottom:1033.305267px;}
.y137{bottom:1033.485260px;}
.y1e5{bottom:1033.485306px;}
.ybd{bottom:1033.489906px;}
.yef{bottom:1036.524024px;}
.y1d7{bottom:1045.108844px;}
.y298{bottom:1046.242823px;}
.y256{bottom:1046.389905px;}
.y2be{bottom:1046.459564px;}
.y77{bottom:1050.915298px;}
.y42{bottom:1050.915344px;}
.y104{bottom:1052.055267px;}
.y165{bottom:1052.235260px;}
.y1e4{bottom:1052.235306px;}
.y136{bottom:1052.235329px;}
.ybc{bottom:1052.239906px;}
.y216{bottom:1059.861277px;}
.y1d6{bottom:1060.108844px;}
.y297{bottom:1061.236823px;}
.y255{bottom:1061.383905px;}
.y2bd{bottom:1061.453564px;}
.yee{bottom:1064.612274px;}
.y76{bottom:1069.665298px;}
.y41{bottom:1069.665344px;}
.y103{bottom:1070.805267px;}
.y164{bottom:1070.985260px;}
.y1e3{bottom:1070.985306px;}
.y135{bottom:1070.985329px;}
.ybb{bottom:1070.989906px;}
.y1d5{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y296{bottom:1076.230823px;}
.y254{bottom:1076.377905px;}
.y2bc{bottom:1076.447564px;}
.y215{bottom:1084.277527px;}
.y75{bottom:1088.415298px;}
.y40{bottom:1088.415344px;}
.y102{bottom:1089.555267px;}
.y163{bottom:1089.735260px;}
.y1e2{bottom:1089.735306px;}
.y134{bottom:1089.735329px;}
.yba{bottom:1089.739906px;}
.yec{bottom:1090.102844px;}
.y295{bottom:1091.224823px;}
.y253{bottom:1091.371905px;}
.y2bb{bottom:1091.441564px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3f{bottom:1127.482361px;}
.h18{height:28.398895px;}
.he{height:31.130399px;}
.h14{height:35.250000px;}
.h17{height:39.189793px;}
.h15{height:40.570138px;}
.h2{height:42.048000px;}
.h16{height:42.370588px;}
.hd{height:44.472000px;}
.h1c{height:44.489414px;}
.h1a{height:44.490000px;}
.h1b{height:44.490513px;}
.h1d{height:44.496586px;}
.h4{height:44.676000px;}
.hc{height:49.113000px;}
.h19{height:51.506912px;}
.h9{height:52.320000px;}
.h13{height:52.320073px;}
.h10{height:52.320183px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.ha{height:57.780000px;}
.h8{height:59.340000px;}
.h11{height:60.623725px;}
.h12{height:60.624000px;}
.hf{height:64.680000px;}
.h7{height:64.824000px;}
.hb{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:147.720005px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.xd{left:83.979750px;}
.x4{left:85.181849px;}
.x9{left:93.515389px;}
.x7{left:97.796100px;}
.x12{left:102.048152px;}
.xf{left:125.559752px;}
.xa{left:134.999297px;}
.xc{left:151.349396px;}
.xb{left:168.277954px;}
.xe{left:189.149403px;}
.x10{left:267.876305px;}
.x11{left:332.714699px;}
.x5{left:459.215389px;}
.x6{left:476.207723px;}
.x13{left:484.726652px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.350179pt;}
.v4{vertical-align:-11.354667pt;}
.v6{vertical-align:-1.304132pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.112456pt;}
.v1{vertical-align:21.333333pt;}
.ls4a{letter-spacing:-1.120000pt;}
.ls3e{letter-spacing:-1.066667pt;}
.ls4f{letter-spacing:-0.960000pt;}
.ls3f{letter-spacing:-0.800000pt;}
.ls3c{letter-spacing:-0.746667pt;}
.ls4e{letter-spacing:-0.693333pt;}
.ls4c{letter-spacing:-0.560000pt;}
.ls4d{letter-spacing:-0.533333pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.lsa2{letter-spacing:-0.362667pt;}
.ls4b{letter-spacing:-0.336000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls95{letter-spacing:-0.317333pt;}
.ls96{letter-spacing:-0.272000pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls98{letter-spacing:-0.226667pt;}
.ls31{letter-spacing:-0.213333pt;}
.lsa1{letter-spacing:-0.181333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls68{letter-spacing:-0.149333pt;}
.ls99{letter-spacing:-0.136000pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls94{letter-spacing:-0.090667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls9a{letter-spacing:-0.045333pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls45{letter-spacing:0.001804pt;}
.ls93{letter-spacing:0.022667pt;}
.ls7b{letter-spacing:0.045333pt;}
.ls2d{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.080000pt;}
.ls81{letter-spacing:0.090667pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.133333pt;}
.ls91{letter-spacing:0.136000pt;}
.ls65{letter-spacing:0.149333pt;}
.ls44{letter-spacing:0.154659pt;}
.ls9f{letter-spacing:0.158562pt;}
.ls9b{letter-spacing:0.158667pt;}
.ls10{letter-spacing:0.158926pt;}
.ls18{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.175983pt;}
.ls59{letter-spacing:0.186667pt;}
.ls41{letter-spacing:0.190390pt;}
.ls43{letter-spacing:0.190909pt;}
.ls48{letter-spacing:0.213285pt;}
.ls2{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.218633pt;}
.ls11{letter-spacing:0.226667pt;}
.ls7f{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.255988pt;}
.lsd{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.265583pt;}
.ls3{letter-spacing:0.266667pt;}
.ls9c{letter-spacing:0.272000pt;}
.ls5c{letter-spacing:0.293333pt;}
.ls5f{letter-spacing:0.298667pt;}
.ls79{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.327484pt;}
.ls7c{letter-spacing:0.340000pt;}
.ls56{letter-spacing:0.346667pt;}
.lsa0{letter-spacing:0.362667pt;}
.ls17{letter-spacing:0.373314pt;}
.ls2e{letter-spacing:0.373326pt;}
.ls5{letter-spacing:0.373333pt;}
.ls63{letter-spacing:0.378667pt;}
.ls9d{letter-spacing:0.385333pt;}
.ls7a{letter-spacing:0.408000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls7e{letter-spacing:0.453333pt;}
.ls47{letter-spacing:0.470378pt;}
.ls42{letter-spacing:0.474645pt;}
.ls4{letter-spacing:0.480000pt;}
.ls5e{letter-spacing:0.485333pt;}
.ls80{letter-spacing:0.498667pt;}
.ls5d{letter-spacing:0.522667pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls97{letter-spacing:0.544000pt;}
.ls6a{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls8a{letter-spacing:0.589333pt;}
.ls55{letter-spacing:0.613333pt;}
.ls89{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls82{letter-spacing:0.657333pt;}
.ls67{letter-spacing:0.666667pt;}
.ls64{letter-spacing:0.672000pt;}
.ls86{letter-spacing:0.680000pt;}
.ls21{letter-spacing:0.693333pt;}
.ls66{letter-spacing:0.709333pt;}
.ls1e{letter-spacing:0.720000pt;}
.ls8e{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.ls7d{letter-spacing:0.770667pt;}
.ls5b{letter-spacing:0.773333pt;}
.ls7{letter-spacing:0.800000pt;}
.ls62{letter-spacing:0.810656pt;}
.ls60{letter-spacing:0.810667pt;}
.ls83{letter-spacing:0.816000pt;}
.ls51{letter-spacing:0.826667pt;}
.ls9e{letter-spacing:0.838667pt;}
.ls61{letter-spacing:0.842667pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls85{letter-spacing:0.861333pt;}
.ls5a{letter-spacing:0.880000pt;}
.ls54{letter-spacing:0.906661pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls8d{letter-spacing:0.929333pt;}
.ls50{letter-spacing:0.933333pt;}
.ls92{letter-spacing:0.952000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:0.970652pt;}
.ls8{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.034667pt;}
.ls9{letter-spacing:1.040000pt;}
.ls8b{letter-spacing:1.042667pt;}
.ls6f{letter-spacing:1.066667pt;}
.ls84{letter-spacing:1.088000pt;}
.ls57{letter-spacing:1.093333pt;}
.ls36{letter-spacing:1.120000pt;}
.ls35{letter-spacing:1.146667pt;}
.ls20{letter-spacing:1.151963pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls88{letter-spacing:1.178667pt;}
.ls87{letter-spacing:1.224000pt;}
.ls22{letter-spacing:1.226667pt;}
.ls71{letter-spacing:1.269333pt;}
.ls38{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.306667pt;}
.ls8c{letter-spacing:1.314667pt;}
.ls29{letter-spacing:1.333333pt;}
.ls52{letter-spacing:1.386667pt;}
.ls6b{letter-spacing:1.413333pt;}
.ls69{letter-spacing:1.440000pt;}
.ls58{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.600000pt;}
.ls75{letter-spacing:1.626667pt;}
.ls25{letter-spacing:1.649581pt;}
.ls24{letter-spacing:1.653333pt;}
.ls90{letter-spacing:1.677333pt;}
.ls73{letter-spacing:1.680000pt;}
.ls53{letter-spacing:1.706667pt;}
.ls77{letter-spacing:1.760000pt;}
.ls6e{letter-spacing:1.786667pt;}
.ls6c{letter-spacing:1.813333pt;}
.ls74{letter-spacing:1.866667pt;}
.ls49{letter-spacing:1.920000pt;}
.ls28{letter-spacing:1.946626pt;}
.ls8f{letter-spacing:1.972000pt;}
.ls70{letter-spacing:1.973333pt;}
.ls6d{letter-spacing:2.080000pt;}
.lsf{letter-spacing:2.133333pt;}
.ls78{letter-spacing:2.186667pt;}
.ls27{letter-spacing:2.227747pt;}
.ls26{letter-spacing:2.240000pt;}
.ls72{letter-spacing:2.400000pt;}
.ls0{letter-spacing:3.546667pt;}
.ws23{word-spacing:-53.333333pt;}
.wsda{word-spacing:-15.733333pt;}
.wsd9{word-spacing:-15.146667pt;}
.wsac{word-spacing:-14.720000pt;}
.wsad{word-spacing:-14.186667pt;}
.wscc{word-spacing:-14.133333pt;}
.wsba{word-spacing:-14.080000pt;}
.wsab{word-spacing:-14.026667pt;}
.wsa1{word-spacing:-13.866667pt;}
.wscf{word-spacing:-13.760000pt;}
.ws14{word-spacing:-13.600000pt;}
.wsc4{word-spacing:-13.546667pt;}
.ws7{word-spacing:-13.333333pt;}
.wse0{word-spacing:-13.184000pt;}
.wsc8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.928000pt;}
.ws9e{word-spacing:-12.586667pt;}
.wsa3{word-spacing:-12.533333pt;}
.ws8{word-spacing:-11.560000pt;}
.wsa{word-spacing:-11.333333pt;}
.ws25{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.wsd4{word-spacing:-11.013333pt;}
.ws4{word-spacing:-10.986667pt;}
.wsd3{word-spacing:-10.602667pt;}
.ws5{word-spacing:-10.240000pt;}
.wsc2{word-spacing:-10.042667pt;}
.wsc0{word-spacing:-10.005333pt;}
.wsc7{word-spacing:-9.893333pt;}
.wsb5{word-spacing:-9.856000pt;}
.wsbd{word-spacing:-9.818667pt;}
.wsb3{word-spacing:-9.706667pt;}
.wsbe{word-spacing:-9.632000pt;}
.wsb4{word-spacing:-9.520000pt;}
.wsc1{word-spacing:-9.482667pt;}
.ws51{word-spacing:-9.333333pt;}
.wsbf{word-spacing:-9.184000pt;}
.wsde{word-spacing:-9.021333pt;}
.ws9c{word-spacing:-8.997333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws9d{word-spacing:-8.773333pt;}
.wsdf{word-spacing:-8.613333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws9{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws3e{word-spacing:-6.666667pt;}
.ws81{word-spacing:-5.666667pt;}
.ws74{word-spacing:-2.293333pt;}
.ws40{word-spacing:-2.240000pt;}
.wsd2{word-spacing:-2.080000pt;}
.ws93{word-spacing:-2.026667pt;}
.ws91{word-spacing:-1.973333pt;}
.ws80{word-spacing:-1.920000pt;}
.ws6e{word-spacing:-1.866667pt;}
.ws8d{word-spacing:-1.760000pt;}
.wsb{word-spacing:-1.680000pt;}
.ws3d{word-spacing:-1.653333pt;}
.wsce{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.wsb0{word-spacing:-1.280000pt;}
.wsd0{word-spacing:-1.226667pt;}
.ws112{word-spacing:-1.224000pt;}
.ws113{word-spacing:-1.178667pt;}
.ws13{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.133333pt;}
.ws4a{word-spacing:-1.120000pt;}
.ws7d{word-spacing:-1.066667pt;}
.ws10e{word-spacing:-0.997333pt;}
.ws56{word-spacing:-0.960000pt;}
.wsf9{word-spacing:-0.952000pt;}
.ws34{word-spacing:-0.906667pt;}
.wsfb{word-spacing:-0.861333pt;}
.ws7e{word-spacing:-0.853333pt;}
.ws44{word-spacing:-0.800000pt;}
.ws100{word-spacing:-0.770667pt;}
.ws2c{word-spacing:-0.746667pt;}
.ws58{word-spacing:-0.693333pt;}
.ws105{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws115{word-spacing:-0.634667pt;}
.ws39{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws27{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.wse4{word-spacing:-0.498667pt;}
.ws42{word-spacing:-0.480000pt;}
.wsfd{word-spacing:-0.453333pt;}
.ws19{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.373333pt;}
.ws45{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.266667pt;}
.wsf4{word-spacing:-0.226667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.106667pt;}
.wsa0{word-spacing:-0.053347pt;}
.ws37{word-spacing:-0.053333pt;}
.wsed{word-spacing:-0.045333pt;}
.ws24{word-spacing:-0.037333pt;}
.wsc{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053333pt;}
.ws10a{word-spacing:0.090667pt;}
.ws30{word-spacing:0.106667pt;}
.ws12{word-spacing:0.160000pt;}
.wscd{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.266667pt;}
.ws109{word-spacing:0.272000pt;}
.ws10b{word-spacing:0.317333pt;}
.wsc9{word-spacing:0.320000pt;}
.ws11{word-spacing:0.373333pt;}
.wsea{word-spacing:0.408000pt;}
.ws1c{word-spacing:0.426667pt;}
.ws57{word-spacing:0.480000pt;}
.wsf6{word-spacing:0.498667pt;}
.ws9b{word-spacing:0.533333pt;}
.ws10c{word-spacing:0.544000pt;}
.ws4b{word-spacing:0.586667pt;}
.ws104{word-spacing:0.634667pt;}
.wsc5{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.wsa4{word-spacing:0.800000pt;}
.wsb6{word-spacing:0.853333pt;}
.wse9{word-spacing:0.861333pt;}
.ws99{word-spacing:0.906667pt;}
.wsf7{word-spacing:0.952000pt;}
.wse{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.013333pt;}
.wsbb{word-spacing:1.042667pt;}
.ws98{word-spacing:1.066667pt;}
.ws4e{word-spacing:1.120000pt;}
.wse1{word-spacing:1.133333pt;}
.wsb8{word-spacing:1.173333pt;}
.ws8e{word-spacing:1.226667pt;}
.wsa7{word-spacing:1.280000pt;}
.ws114{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws10d{word-spacing:1.360000pt;}
.ws47{word-spacing:1.386667pt;}
.ws36{word-spacing:1.440000pt;}
.ws59{word-spacing:1.493333pt;}
.wseb{word-spacing:1.541333pt;}
.wsc3{word-spacing:1.546667pt;}
.wsf3{word-spacing:1.586667pt;}
.ws31{word-spacing:1.600000pt;}
.wsf0{word-spacing:1.632000pt;}
.ws35{word-spacing:1.653333pt;}
.ws29{word-spacing:1.706667pt;}
.wscb{word-spacing:1.760000pt;}
.ws108{word-spacing:1.768000pt;}
.ws26{word-spacing:1.813333pt;}
.ws16{word-spacing:1.866667pt;}
.ws2e{word-spacing:1.920000pt;}
.wsb9{word-spacing:1.973333pt;}
.ws2d{word-spacing:2.026667pt;}
.wse3{word-spacing:2.040000pt;}
.ws77{word-spacing:2.080000pt;}
.wsfa{word-spacing:2.130667pt;}
.ws5a{word-spacing:2.133333pt;}
.ws4c{word-spacing:2.186667pt;}
.ws46{word-spacing:2.240000pt;}
.ws110{word-spacing:2.266667pt;}
.wsa2{word-spacing:2.293333pt;}
.wsec{word-spacing:2.312000pt;}
.ws49{word-spacing:2.346667pt;}
.ws38{word-spacing:2.400000pt;}
.ws107{word-spacing:2.402667pt;}
.ws4d{word-spacing:2.453333pt;}
.wsef{word-spacing:2.493333pt;}
.ws48{word-spacing:2.506667pt;}
.wsbc{word-spacing:2.538667pt;}
.ws33{word-spacing:2.560000pt;}
.ws97{word-spacing:2.613333pt;}
.ws86{word-spacing:2.666667pt;}
.ws111{word-spacing:2.674667pt;}
.ws70{word-spacing:2.720000pt;}
.wsf5{word-spacing:2.765333pt;}
.ws4f{word-spacing:2.773333pt;}
.wsa5{word-spacing:2.826667pt;}
.ws102{word-spacing:2.856000pt;}
.ws2a{word-spacing:2.933333pt;}
.ws50{word-spacing:2.986667pt;}
.wsdc{word-spacing:2.992000pt;}
.ws103{word-spacing:3.037333pt;}
.wsd1{word-spacing:3.040000pt;}
.wse5{word-spacing:3.082667pt;}
.wsdb{word-spacing:3.093333pt;}
.ws17{word-spacing:3.146667pt;}
.ws10f{word-spacing:3.173333pt;}
.ws18{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.360000pt;}
.ws101{word-spacing:3.400000pt;}
.ws68{word-spacing:3.413333pt;}
.ws8f{word-spacing:3.466667pt;}
.wsfc{word-spacing:3.490667pt;}
.wsfe{word-spacing:3.672000pt;}
.ws95{word-spacing:3.680000pt;}
.ws96{word-spacing:3.733333pt;}
.ws71{word-spacing:3.786667pt;}
.wsee{word-spacing:3.808000pt;}
.ws9a{word-spacing:3.840000pt;}
.ws89{word-spacing:3.893333pt;}
.ws6a{word-spacing:3.946667pt;}
.ws72{word-spacing:4.000000pt;}
.wse6{word-spacing:4.034667pt;}
.wsc6{word-spacing:4.053333pt;}
.wsf2{word-spacing:4.080000pt;}
.ws3c{word-spacing:4.106667pt;}
.ws64{word-spacing:4.160000pt;}
.ws3b{word-spacing:4.266667pt;}
.wsf1{word-spacing:4.306667pt;}
.ws92{word-spacing:4.320000pt;}
.ws1f{word-spacing:4.480000pt;}
.wsa6{word-spacing:4.533333pt;}
.ws87{word-spacing:4.586667pt;}
.wsa9{word-spacing:4.624000pt;}
.ws5b{word-spacing:4.640000pt;}
.wsf8{word-spacing:4.714667pt;}
.ws43{word-spacing:4.746667pt;}
.ws8c{word-spacing:4.800000pt;}
.ws65{word-spacing:4.853333pt;}
.ws106{word-spacing:4.896000pt;}
.wsae{word-spacing:4.960000pt;}
.wsff{word-spacing:4.986667pt;}
.wsca{word-spacing:5.226667pt;}
.ws63{word-spacing:5.333333pt;}
.ws78{word-spacing:5.386667pt;}
.wsb7{word-spacing:5.440000pt;}
.ws62{word-spacing:5.493333pt;}
.wsdd{word-spacing:5.530667pt;}
.ws88{word-spacing:5.653333pt;}
.ws85{word-spacing:5.760000pt;}
.ws8a{word-spacing:5.813333pt;}
.ws5c{word-spacing:6.026667pt;}
.ws3f{word-spacing:6.240000pt;}
.ws66{word-spacing:6.346667pt;}
.wsaf{word-spacing:6.453333pt;}
.ws8b{word-spacing:6.506667pt;}
.ws7f{word-spacing:6.666667pt;}
.ws6d{word-spacing:6.933333pt;}
.wse7{word-spacing:6.981333pt;}
.ws61{word-spacing:7.040000pt;}
.ws6c{word-spacing:7.146667pt;}
.ws7a{word-spacing:7.360000pt;}
.ws60{word-spacing:7.413333pt;}
.ws67{word-spacing:7.573333pt;}
.ws7c{word-spacing:7.893333pt;}
.ws20{word-spacing:8.746667pt;}
.ws84{word-spacing:8.960000pt;}
.wse8{word-spacing:9.066667pt;}
.ws41{word-spacing:9.120000pt;}
.wsaa{word-spacing:9.384000pt;}
.ws73{word-spacing:10.186667pt;}
.ws5d{word-spacing:10.506667pt;}
.ws6f{word-spacing:10.773333pt;}
.ws79{word-spacing:10.986667pt;}
.wsa8{word-spacing:11.378667pt;}
.ws7b{word-spacing:11.413333pt;}
.wsb1{word-spacing:11.741333pt;}
.ws116{word-spacing:12.149333pt;}
.ws5f{word-spacing:12.693333pt;}
.ws69{word-spacing:13.173333pt;}
.wsb2{word-spacing:13.464000pt;}
.ws9f{word-spacing:14.771691pt;}
.ws117{word-spacing:15.821333pt;}
.ws6b{word-spacing:16.000000pt;}
.ws90{word-spacing:18.506667pt;}
.ws75{word-spacing:20.000000pt;}
.ws76{word-spacing:26.080000pt;}
.ws82{word-spacing:35.093333pt;}
.wsd7{word-spacing:37.853333pt;}
.wsd6{word-spacing:41.791515pt;}
.ws83{word-spacing:45.706667pt;}
.ws21{word-spacing:64.237333pt;}
.wsd8{word-spacing:65.591515pt;}
.wsd5{word-spacing:94.520000pt;}
.ws52{word-spacing:308.221324pt;}
.ws53{word-spacing:319.554657pt;}
.ws55{word-spacing:330.887990pt;}
.ws54{word-spacing:342.221324pt;}
._23{margin-left:-18.869333pt;}
._17{margin-left:-17.002667pt;}
._29{margin-left:-15.805407pt;}
._d{margin-left:-14.733333pt;}
._b{margin-left:-12.954668pt;}
._2a{margin-left:-12.053333pt;}
._26{margin-left:-10.895503pt;}
._28{margin-left:-9.653333pt;}
._25{margin-left:-8.213333pt;}
._14{margin-left:-7.040000pt;}
._27{margin-left:-6.016017pt;}
._13{margin-left:-5.013333pt;}
._2{margin-left:-4.109067pt;}
._1{margin-left:-3.177867pt;}
._0{margin-left:-1.450667pt;}
._5{width:1.320256pt;}
._3{width:2.210133pt;}
._11{width:3.509333pt;}
._16{width:5.314411pt;}
._24{width:6.688000pt;}
._12{width:7.893333pt;}
._19{width:10.336000pt;}
._15{width:11.925333pt;}
._8{width:12.997333pt;}
._1a{width:14.461333pt;}
._e{width:16.320000pt;}
._18{width:17.232569pt;}
._33{width:18.389407pt;}
._31{width:19.776533pt;}
._2b{width:20.948533pt;}
._2e{width:22.293589pt;}
._32{width:23.338410pt;}
._2f{width:25.336000pt;}
._30{width:26.378410pt;}
._4{width:35.523456pt;}
._f{width:48.552000pt;}
._6{width:56.000000pt;}
._a{width:57.861335pt;}
._c{width:70.773333pt;}
._2d{width:71.866634pt;}
._7{width:73.754668pt;}
._9{width:79.674668pt;}
._2c{width:94.550374pt;}
._1c{width:274.221324pt;}
._20{width:319.554657pt;}
._22{width:330.887990pt;}
._21{width:342.221324pt;}
._1f{width:353.554657pt;}
._1e{width:427.448000pt;}
._1b{width:460.178667pt;}
._1d{width:529.402667pt;}
._10{width:1910.482667pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:0.011068pt;}
.y186{bottom:12.680216pt;}
.y18e{bottom:12.682902pt;}
.y189{bottom:22.568237pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3e{bottom:100.389600pt;}
.y74{bottom:100.813599pt;}
.y1d1{bottom:101.068264pt;}
.y2e{bottom:101.521200pt;}
.y252{bottom:101.623730pt;}
.y133{bottom:101.826945pt;}
.yeb{bottom:101.986816pt;}
.y162{bottom:101.986898pt;}
.y1ce{bottom:101.986928pt;}
.y1ab{bottom:101.986938pt;}
.y1ba{bottom:102.106938pt;}
.yb9{bottom:102.111064pt;}
.y294{bottom:103.788360pt;}
.y1d0{bottom:114.396264pt;}
.y251{bottom:114.951730pt;}
.y184{bottom:115.920267pt;}
.y293{bottom:117.116360pt;}
.y73{bottom:117.480265pt;}
.y2d{bottom:118.187866pt;}
.y3d{bottom:118.250936pt;}
.y132{bottom:118.493612pt;}
.yea{bottom:118.653483pt;}
.y161{bottom:118.653564pt;}
.y1cd{bottom:118.653595pt;}
.y1aa{bottom:118.653605pt;}
.y1b9{bottom:118.773605pt;}
.yb8{bottom:118.777730pt;}
.y1cf{bottom:127.724264pt;}
.y250{bottom:128.279730pt;}
.y292{bottom:130.444360pt;}
.y183{bottom:132.586933pt;}
.y3c{bottom:133.770270pt;}
.y72{bottom:134.146932pt;}
.y2c{bottom:134.854533pt;}
.y131{bottom:135.160278pt;}
.ye9{bottom:135.320150pt;}
.y160{bottom:135.320231pt;}
.y1cc{bottom:135.320262pt;}
.y1a9{bottom:135.320272pt;}
.y1b8{bottom:135.440272pt;}
.yb7{bottom:135.444397pt;}
.y24f{bottom:141.607730pt;}
.y291{bottom:143.772360pt;}
.y3b{bottom:147.098270pt;}
.y182{bottom:149.253600pt;}
.y71{bottom:150.813599pt;}
.y2b{bottom:151.521200pt;}
.y130{bottom:151.826945pt;}
.ye8{bottom:151.986816pt;}
.y15f{bottom:151.986898pt;}
.y1cb{bottom:151.986928pt;}
.y1a8{bottom:151.986938pt;}
.y1b7{bottom:152.106938pt;}
.yb6{bottom:152.111064pt;}
.y24e{bottom:154.935730pt;}
.y290{bottom:157.100360pt;}
.y3a{bottom:164.959605pt;}
.y70{bottom:167.480265pt;}
.y2a{bottom:168.187866pt;}
.y24d{bottom:168.263730pt;}
.y12f{bottom:168.493612pt;}
.ye7{bottom:168.653483pt;}
.y15e{bottom:168.653564pt;}
.y1a7{bottom:168.653605pt;}
.y1b6{bottom:168.773605pt;}
.yb5{bottom:168.777730pt;}
.y28f{bottom:170.428360pt;}
.y39{bottom:180.478928pt;}
.y1e1{bottom:180.545605pt;}
.y24c{bottom:181.591730pt;}
.y181{bottom:182.586933pt;}
.y28e{bottom:183.756360pt;}
.ya0{bottom:184.146932pt;}
.y6f{bottom:184.146973pt;}
.y29{bottom:184.854533pt;}
.y12e{bottom:185.160278pt;}
.ye6{bottom:185.320150pt;}
.y15d{bottom:185.320231pt;}
.y1a6{bottom:185.320272pt;}
.y1b5{bottom:185.440272pt;}
.yb4{bottom:185.444397pt;}
.y38{bottom:193.806928pt;}
.y1e0{bottom:193.873605pt;}
.y24b{bottom:194.919730pt;}
.y28d{bottom:197.084360pt;}
.y9f{bottom:200.813599pt;}
.y6e{bottom:200.813639pt;}
.y28{bottom:201.521200pt;}
.y12d{bottom:201.826945pt;}
.ye5{bottom:201.986816pt;}
.y15c{bottom:201.986898pt;}
.y1a5{bottom:201.986938pt;}
.y1b4{bottom:202.106938pt;}
.yb3{bottom:202.111064pt;}
.y1df{bottom:207.201605pt;}
.y24a{bottom:208.247730pt;}
.y28c{bottom:210.412360pt;}
.y37{bottom:211.668274pt;}
.y180{bottom:215.920247pt;}
.y9e{bottom:217.480265pt;}
.y6d{bottom:217.480306pt;}
.y27{bottom:218.187866pt;}
.y12c{bottom:218.493612pt;}
.ye4{bottom:218.653483pt;}
.y15b{bottom:218.653564pt;}
.y1a4{bottom:218.653605pt;}
.y1b3{bottom:218.773605pt;}
.yb2{bottom:218.777730pt;}
.y1de{bottom:220.529605pt;}
.y249{bottom:221.575730pt;}
.y28b{bottom:223.740360pt;}
.y36{bottom:227.187608pt;}
.y21e{bottom:230.129600pt;}
.y17f{bottom:232.586914pt;}
.y1dd{bottom:233.868272pt;}
.y6c{bottom:234.146973pt;}
.y26{bottom:234.854533pt;}
.y248{bottom:234.903730pt;}
.y12b{bottom:235.160278pt;}
.ye3{bottom:235.320150pt;}
.y1a3{bottom:235.320272pt;}
.y1b2{bottom:235.440272pt;}
.yb1{bottom:235.444397pt;}
.y28a{bottom:237.068360pt;}
.y35{bottom:240.515608pt;}
.y21d{bottom:243.473027pt;}
.y1dc{bottom:247.196272pt;}
.y247{bottom:248.231730pt;}
.y17e{bottom:249.253581pt;}
.y289{bottom:250.396360pt;}
.y9d{bottom:250.813599pt;}
.y6b{bottom:250.813639pt;}
.y25{bottom:251.521200pt;}
.y12a{bottom:251.826945pt;}
.ye2{bottom:251.986816pt;}
.y15a{bottom:251.986898pt;}
.y1a2{bottom:251.986938pt;}
.y1b1{bottom:252.106938pt;}
.y191{bottom:252.111064pt;}
.y1f0{bottom:254.086943pt;}
.y21c{bottom:256.801027pt;}
.y34{bottom:258.376933pt;}
.y1db{bottom:260.524272pt;}
.y246{bottom:261.559730pt;}
.y288{bottom:263.724360pt;}
.y17d{bottom:265.920247pt;}
.y1ef{bottom:267.414943pt;}
.y6a{bottom:267.480306pt;}
.y24{bottom:268.187866pt;}
.y129{bottom:268.493612pt;}
.ye1{bottom:268.653483pt;}
.y1a1{bottom:268.653605pt;}
.y1b0{bottom:268.773605pt;}
.yb0{bottom:268.777730pt;}
.y21b{bottom:270.129027pt;}
.y245{bottom:274.887730pt;}
.y287{bottom:277.052360pt;}
.y33{bottom:280.610800pt;}
.y1ee{bottom:280.742943pt;}
.y17c{bottom:282.586914pt;}
.y9c{bottom:284.146932pt;}
.y69{bottom:284.146973pt;}
.y23{bottom:284.854533pt;}
.y128{bottom:285.160278pt;}
.ye0{bottom:285.320150pt;}
.y159{bottom:285.320231pt;}
.y1a0{bottom:285.320272pt;}
.y1af{bottom:285.440272pt;}
.y190{bottom:285.444397pt;}
.y244{bottom:288.215730pt;}
.y286{bottom:290.380360pt;}
.y32{bottom:293.938800pt;}
.y1ed{bottom:294.076277pt;}
.y17b{bottom:299.253581pt;}
.y68{bottom:300.813639pt;}
.y22{bottom:301.521200pt;}
.y243{bottom:301.543730pt;}
.y127{bottom:301.826945pt;}
.ydf{bottom:301.986816pt;}
.y158{bottom:301.986898pt;}
.y19f{bottom:301.986938pt;}
.y1ae{bottom:302.106938pt;}
.y1d4{bottom:302.110921pt;}
.yaf{bottom:302.110942pt;}
.y285{bottom:303.708360pt;}
.y1ec{bottom:307.404277pt;}
.y242{bottom:314.871730pt;}
.y17a{bottom:315.920247pt;}
.y284{bottom:317.036360pt;}
.y67{bottom:317.480306pt;}
.y21{bottom:318.187866pt;}
.y126{bottom:318.493612pt;}
.yde{bottom:318.653483pt;}
.y157{bottom:318.653564pt;}
.y19e{bottom:318.653605pt;}
.y1ad{bottom:318.773605pt;}
.y1d3{bottom:318.777588pt;}
.y18f{bottom:318.777608pt;}
.y31{bottom:321.331467pt;}
.y241{bottom:328.199730pt;}
.y283{bottom:330.364360pt;}
.y179{bottom:332.586914pt;}
.y211{bottom:333.486938pt;}
.y9b{bottom:334.146932pt;}
.y66{bottom:334.146973pt;}
.y30{bottom:334.659467pt;}
.y20{bottom:334.854533pt;}
.y125{bottom:335.160278pt;}
.ydd{bottom:335.320150pt;}
.y156{bottom:335.320231pt;}
.y19d{bottom:335.320272pt;}
.y1ac{bottom:335.440272pt;}
.yae{bottom:335.444255pt;}
.y240{bottom:341.527730pt;}
.y282{bottom:343.692360pt;}
.y2f{bottom:347.987467pt;}
.y178{bottom:349.253581pt;}
.y210{bottom:350.153605pt;}
.y9a{bottom:350.813599pt;}
.y65{bottom:350.813639pt;}
.y1f{bottom:351.521200pt;}
.ydc{bottom:351.986816pt;}
.y155{bottom:351.986898pt;}
.y19c{bottom:351.986938pt;}
.yad{bottom:352.110921pt;}
.y23f{bottom:354.855730pt;}
.y281{bottom:357.020360pt;}
.y177{bottom:365.920247pt;}
.y20f{bottom:366.820272pt;}
.y99{bottom:367.480265pt;}
.y64{bottom:367.480306pt;}
.y23e{bottom:368.183730pt;}
.y124{bottom:368.493612pt;}
.ydb{bottom:368.653483pt;}
.y154{bottom:368.653564pt;}
.y19b{bottom:368.653605pt;}
.yac{bottom:368.777588pt;}
.y280{bottom:370.348360pt;}
.y1bd{bottom:374.686936pt;}
.y23d{bottom:381.511730pt;}
.y176{bottom:382.586914pt;}
.y20e{bottom:383.486938pt;}
.y27f{bottom:383.676360pt;}
.y98{bottom:384.146932pt;}
.y63{bottom:384.146973pt;}
.y1e{bottom:384.854533pt;}
.yda{bottom:385.320150pt;}
.y153{bottom:385.320231pt;}
.y19a{bottom:385.320272pt;}
.yab{bottom:385.444255pt;}
.y1bc{bottom:388.014936pt;}
.y23c{bottom:394.839730pt;}
.y27e{bottom:397.004360pt;}
.y175{bottom:399.253581pt;}
.y20d{bottom:400.153605pt;}
.y97{bottom:400.813599pt;}
.y62{bottom:400.813639pt;}
.y1bb{bottom:401.342936pt;}
.y1d{bottom:401.521240pt;}
.y123{bottom:401.826945pt;}
.yd9{bottom:401.986816pt;}
.y152{bottom:401.986898pt;}
.y199{bottom:401.986938pt;}
.yaa{bottom:402.110921pt;}
.y23b{bottom:408.167730pt;}
.y27d{bottom:410.332360pt;}
.y174{bottom:415.920247pt;}
.y20c{bottom:416.820272pt;}
.y96{bottom:417.480265pt;}
.y61{bottom:417.480306pt;}
.y1c{bottom:418.187907pt;}
.yd8{bottom:418.653483pt;}
.y151{bottom:418.653564pt;}
.y1ca{bottom:418.653605pt;}
.ya9{bottom:418.777588pt;}
.y23a{bottom:421.495730pt;}
.y27c{bottom:423.660360pt;}
.y173{bottom:432.586914pt;}
.y20b{bottom:433.486938pt;}
.y95{bottom:434.146932pt;}
.y60{bottom:434.146973pt;}
.y239{bottom:434.823730pt;}
.y1b{bottom:434.854574pt;}
.y122{bottom:435.160278pt;}
.yd7{bottom:435.320150pt;}
.y150{bottom:435.320231pt;}
.y198{bottom:435.320272pt;}
.ya8{bottom:435.444255pt;}
.y27b{bottom:436.988360pt;}
.y172{bottom:449.253581pt;}
.y20a{bottom:450.153605pt;}
.y27a{bottom:450.316360pt;}
.y94{bottom:450.813599pt;}
.y5f{bottom:450.813639pt;}
.y1a{bottom:451.521240pt;}
.y121{bottom:451.826945pt;}
.y14f{bottom:451.986898pt;}
.y1c9{bottom:451.986938pt;}
.ya7{bottom:452.110921pt;}
.y279{bottom:463.644360pt;}
.y238{bottom:464.823730pt;}
.y171{bottom:465.920247pt;}
.y209{bottom:466.820272pt;}
.y93{bottom:467.480265pt;}
.y5e{bottom:467.480306pt;}
.y120{bottom:468.493612pt;}
.yd6{bottom:468.653483pt;}
.y197{bottom:468.653564pt;}
.y1c8{bottom:468.653605pt;}
.ya6{bottom:468.777588pt;}
.y2ba{bottom:476.841620pt;}
.y278{bottom:476.972360pt;}
.y170{bottom:482.586914pt;}
.y208{bottom:483.486938pt;}
.y92{bottom:484.146932pt;}
.y5d{bottom:484.146973pt;}
.y19{bottom:484.854574pt;}
.y11f{bottom:485.160278pt;}
.y14e{bottom:485.320231pt;}
.y1c7{bottom:485.320272pt;}
.ya5{bottom:485.444255pt;}
.y2b9{bottom:490.169620pt;}
.y277{bottom:490.300360pt;}
.y16f{bottom:499.253581pt;}
.y207{bottom:500.153605pt;}
.y91{bottom:500.813599pt;}
.y5c{bottom:500.813639pt;}
.y11e{bottom:501.826945pt;}
.yd5{bottom:501.986816pt;}
.y196{bottom:501.986898pt;}
.y1c6{bottom:501.986938pt;}
.ya4{bottom:502.110921pt;}
.y2b8{bottom:503.497620pt;}
.y276{bottom:503.628360pt;}
.y195{bottom:515.918913pt;}
.y16e{bottom:515.920247pt;}
.y2dc{bottom:515.932913pt;}
.y206{bottom:516.820272pt;}
.y2b7{bottom:516.825620pt;}
.y275{bottom:516.956360pt;}
.y90{bottom:517.480265pt;}
.y5b{bottom:517.480306pt;}
.y18{bottom:518.187907pt;}
.y11d{bottom:518.493612pt;}
.yd4{bottom:518.653483pt;}
.y14d{bottom:518.653564pt;}
.y1c5{bottom:518.653605pt;}
.ya3{bottom:518.777588pt;}
.y237{bottom:528.805732pt;}
.y194{bottom:529.246913pt;}
.y2db{bottom:529.260913pt;}
.y2b6{bottom:530.153620pt;}
.y274{bottom:530.284360pt;}
.y16d{bottom:532.586914pt;}
.y205{bottom:533.486938pt;}
.y8f{bottom:534.146932pt;}
.y5a{bottom:534.146973pt;}
.y17{bottom:534.854574pt;}
.y11c{bottom:535.160278pt;}
.yd3{bottom:535.320150pt;}
.y14c{bottom:535.320231pt;}
.y1c4{bottom:535.320272pt;}
.ya2{bottom:535.444255pt;}
.y236{bottom:542.133732pt;}
.y193{bottom:542.574913pt;}
.y2b5{bottom:543.481620pt;}
.y273{bottom:543.612360pt;}
.y204{bottom:550.153605pt;}
.y8e{bottom:550.813599pt;}
.y59{bottom:550.813639pt;}
.y16{bottom:551.521240pt;}
.y11b{bottom:551.826945pt;}
.yd2{bottom:551.986816pt;}
.y14b{bottom:551.986898pt;}
.y1c3{bottom:551.986938pt;}
.ya1{bottom:552.110921pt;}
.y235{bottom:555.461732pt;}
.y192{bottom:555.902913pt;}
.y2da{bottom:556.676246pt;}
.y2b4{bottom:556.809620pt;}
.y272{bottom:556.940360pt;}
.y16c{bottom:565.920247pt;}
.y203{bottom:566.820272pt;}
.y8d{bottom:567.480265pt;}
.y58{bottom:567.480306pt;}
.y15{bottom:568.187907pt;}
.y11a{bottom:568.493612pt;}
.yd1{bottom:568.653483pt;}
.y14a{bottom:568.653564pt;}
.y1c2{bottom:568.653605pt;}
.y1d2{bottom:568.777588pt;}
.y234{bottom:568.789732pt;}
.y2d9{bottom:570.004246pt;}
.y2b3{bottom:570.137620pt;}
.y271{bottom:570.268360pt;}
.y233{bottom:582.117732pt;}
.y2d8{bottom:583.332246pt;}
.y2b2{bottom:583.465620pt;}
.y202{bottom:583.486938pt;}
.y270{bottom:583.596360pt;}
.y8c{bottom:584.146932pt;}
.y57{bottom:584.146973pt;}
.y14{bottom:584.854574pt;}
.y119{bottom:585.160278pt;}
.yd0{bottom:585.320150pt;}
.y149{bottom:585.320231pt;}
.y1c1{bottom:585.320272pt;}
.y1fd{bottom:585.444255pt;}
.y232{bottom:595.445732pt;}
.y2d7{bottom:596.660246pt;}
.y2b1{bottom:596.793620pt;}
.y26f{bottom:596.924360pt;}
.yed{bottom:597.212957pt;}
.y16b{bottom:599.253581pt;}
.y201{bottom:600.153605pt;}
.y8b{bottom:600.813599pt;}
.y56{bottom:600.813639pt;}
.y13{bottom:601.521240pt;}
.y118{bottom:601.826904pt;}
.ycf{bottom:601.986816pt;}
.y148{bottom:601.986898pt;}
.y1c0{bottom:601.986938pt;}
.y1fc{bottom:602.110921pt;}
.y2d6{bottom:609.988246pt;}
.y2b0{bottom:610.121620pt;}
.y26e{bottom:610.252360pt;}
.y16a{bottom:615.920247pt;}
.y200{bottom:616.820272pt;}
.y8a{bottom:617.480265pt;}
.y55{bottom:617.480306pt;}
.y12{bottom:618.187907pt;}
.y117{bottom:618.493571pt;}
.yce{bottom:618.653483pt;}
.y147{bottom:618.653564pt;}
.y1bf{bottom:618.653605pt;}
.y1fb{bottom:618.777751pt;}
.y101{bottom:621.814688pt;}
.y2d5{bottom:623.316246pt;}
.y2af{bottom:623.449620pt;}
.y26d{bottom:623.580360pt;}
.y231{bottom:625.411065pt;}
.y169{bottom:632.586914pt;}
.y1ff{bottom:633.486938pt;}
.y89{bottom:634.146932pt;}
.y54{bottom:634.146973pt;}
.y11{bottom:634.854574pt;}
.y116{bottom:635.160238pt;}
.ycd{bottom:635.320150pt;}
.y146{bottom:635.320231pt;}
.y1fa{bottom:635.444417pt;}
.y2ae{bottom:636.777620pt;}
.y26c{bottom:636.908360pt;}
.y2d4{bottom:636.970279pt;}
.y100{bottom:638.520021pt;}
.y230{bottom:638.739065pt;}
.y168{bottom:649.253564pt;}
.y2ad{bottom:650.105620pt;}
.y26b{bottom:650.236360pt;}
.y2d3{bottom:650.298279pt;}
.y88{bottom:650.813599pt;}
.y53{bottom:650.813639pt;}
.y10{bottom:651.521240pt;}
.y115{bottom:651.826904pt;}
.ycc{bottom:651.986816pt;}
.y145{bottom:651.986898pt;}
.y1be{bottom:651.986938pt;}
.y1f9{bottom:652.111084pt;}
.yff{bottom:655.157355pt;}
.y2ac{bottom:663.433620pt;}
.y26a{bottom:663.564360pt;}
.y2d2{bottom:663.626279pt;}
.y22f{bottom:665.372399pt;}
.y1fe{bottom:666.820272pt;}
.y87{bottom:667.480265pt;}
.y52{bottom:667.480306pt;}
.yf{bottom:668.187907pt;}
.y114{bottom:668.493571pt;}
.ycb{bottom:668.653483pt;}
.y144{bottom:668.653564pt;}
.y1f8{bottom:668.777751pt;}
.yfe{bottom:671.794688pt;}
.y185{bottom:672.720011pt;}
.y18b{bottom:676.066935pt;}
.y2ab{bottom:676.761620pt;}
.y269{bottom:676.892360pt;}
.y2d1{bottom:676.954279pt;}
.y22e{bottom:678.700399pt;}
.y86{bottom:684.146932pt;}
.y51{bottom:684.146973pt;}
.ye{bottom:684.854574pt;}
.y113{bottom:685.160238pt;}
.yca{bottom:685.320150pt;}
.y143{bottom:685.320231pt;}
.y187{bottom:685.400228pt;}
.y18d{bottom:685.402913pt;}
.y1f7{bottom:685.444417pt;}
.yfd{bottom:688.432021pt;}
.y2aa{bottom:690.089620pt;}
.y268{bottom:690.220360pt;}
.y2d0{bottom:690.282279pt;}
.y188{bottom:695.282697pt;}
.y18a{bottom:695.288249pt;}
.y85{bottom:700.813599pt;}
.y50{bottom:700.813639pt;}
.yd{bottom:701.521240pt;}
.y112{bottom:701.826904pt;}
.yc9{bottom:701.986816pt;}
.y142{bottom:701.986898pt;}
.y1f6{bottom:702.111084pt;}
.y2a9{bottom:703.417620pt;}
.y267{bottom:703.548360pt;}
.y2cf{bottom:703.610279pt;}
.yfc{bottom:705.069355pt;}
.y22d{bottom:708.700439pt;}
.y2a8{bottom:716.745620pt;}
.y266{bottom:716.876360pt;}
.y2ce{bottom:716.938279pt;}
.y84{bottom:717.480265pt;}
.y4f{bottom:717.480306pt;}
.y111{bottom:718.493571pt;}
.yc8{bottom:718.653483pt;}
.y141{bottom:718.653564pt;}
.y1f5{bottom:718.777751pt;}
.y220{bottom:719.694949pt;}
.yfb{bottom:721.706688pt;}
.y2a7{bottom:730.073620pt;}
.y265{bottom:730.204360pt;}
.y2cd{bottom:730.266279pt;}
.y21f{bottom:733.022949pt;}
.y83{bottom:734.146932pt;}
.y4e{bottom:734.146973pt;}
.y110{bottom:735.160238pt;}
.yc7{bottom:735.320150pt;}
.y140{bottom:735.320231pt;}
.y1f4{bottom:735.444417pt;}
.yfa{bottom:738.344021pt;}
.yc{bottom:740.794803pt;}
.y22c{bottom:742.111763pt;}
.y2a6{bottom:743.401620pt;}
.y264{bottom:743.532360pt;}
.y2cc{bottom:743.594279pt;}
.y82{bottom:750.813599pt;}
.y4d{bottom:750.813639pt;}
.y10f{bottom:751.826904pt;}
.yc6{bottom:751.986816pt;}
.y13f{bottom:751.986898pt;}
.y1f3{bottom:752.111084pt;}
.yb{bottom:754.122803pt;}
.yf9{bottom:754.981355pt;}
.y22b{bottom:755.439763pt;}
.y2a5{bottom:756.729620pt;}
.y263{bottom:756.860360pt;}
.y2cb{bottom:756.922279pt;}
.y81{bottom:767.480265pt;}
.y4c{bottom:767.480306pt;}
.y10e{bottom:768.493571pt;}
.y167{bottom:768.653564pt;}
.yc5{bottom:768.657694pt;}
.y1f2{bottom:768.777751pt;}
.y2a4{bottom:770.057620pt;}
.y262{bottom:770.188360pt;}
.y2ca{bottom:770.250279pt;}
.yf8{bottom:771.618688pt;}
.y2a3{bottom:783.385620pt;}
.y261{bottom:783.516360pt;}
.y2c9{bottom:783.578279pt;}
.y80{bottom:784.146932pt;}
.y4b{bottom:784.146973pt;}
.y10d{bottom:785.160238pt;}
.y13e{bottom:785.320231pt;}
.yc4{bottom:785.324361pt;}
.y22a{bottom:785.405096pt;}
.y1f1{bottom:785.444417pt;}
.yf7{bottom:788.256021pt;}
.ya{bottom:791.989502pt;}
.y2a2{bottom:796.713620pt;}
.y260{bottom:796.844360pt;}
.y2c8{bottom:796.906279pt;}
.y229{bottom:798.733096pt;}
.y7f{bottom:800.813599pt;}
.y4a{bottom:800.813639pt;}
.y10c{bottom:801.826904pt;}
.y166{bottom:801.986898pt;}
.yc3{bottom:801.991028pt;}
.yf6{bottom:804.893355pt;}
.y9{bottom:808.656169pt;}
.y2a1{bottom:810.041620pt;}
.y25f{bottom:810.172360pt;}
.y2c7{bottom:810.234279pt;}
.y228{bottom:812.061096pt;}
.y7e{bottom:817.480265pt;}
.y49{bottom:817.480306pt;}
.y10b{bottom:818.493571pt;}
.y13d{bottom:818.653564pt;}
.y1eb{bottom:818.653605pt;}
.yc2{bottom:818.657694pt;}
.yf5{bottom:821.530688pt;}
.y2a0{bottom:823.369620pt;}
.y25e{bottom:823.500360pt;}
.y2c6{bottom:823.562279pt;}
.y227{bottom:825.389096pt;}
.y214{bottom:829.224308pt;}
.y7d{bottom:834.146932pt;}
.y48{bottom:834.146973pt;}
.y10a{bottom:835.160238pt;}
.y13c{bottom:835.320231pt;}
.y1ea{bottom:835.320272pt;}
.yc1{bottom:835.324361pt;}
.y29f{bottom:836.697620pt;}
.y25d{bottom:836.828360pt;}
.y2c5{bottom:836.890279pt;}
.yf4{bottom:838.168021pt;}
.y226{bottom:838.717096pt;}
.y213{bottom:842.552308pt;}
.y8{bottom:848.377441pt;}
.y29e{bottom:850.025620pt;}
.y25c{bottom:850.156360pt;}
.y2c4{bottom:850.218279pt;}
.y7c{bottom:850.813599pt;}
.y47{bottom:850.813639pt;}
.y109{bottom:851.826904pt;}
.y13b{bottom:851.986898pt;}
.y1e9{bottom:851.986938pt;}
.yc0{bottom:851.991028pt;}
.y225{bottom:852.045096pt;}
.yf3{bottom:854.805355pt;}
.y29d{bottom:863.353620pt;}
.y25b{bottom:863.484360pt;}
.y2c3{bottom:863.546279pt;}
.y224{bottom:865.373096pt;}
.y21a{bottom:867.163563pt;}
.y7b{bottom:867.480265pt;}
.y46{bottom:867.480306pt;}
.y108{bottom:868.493571pt;}
.y13a{bottom:868.653564pt;}
.y1e8{bottom:868.653605pt;}
.ybf{bottom:868.657694pt;}
.yf2{bottom:871.442688pt;}
.y7{bottom:872.377441pt;}
.y29c{bottom:876.681620pt;}
.y25a{bottom:876.812360pt;}
.y2c2{bottom:876.874279pt;}
.y223{bottom:878.701096pt;}
.y219{bottom:883.865027pt;}
.y7a{bottom:884.146932pt;}
.y45{bottom:884.146973pt;}
.y107{bottom:885.160238pt;}
.y139{bottom:885.320231pt;}
.y1e7{bottom:885.320272pt;}
.yf1{bottom:888.080021pt;}
.y1da{bottom:889.001639pt;}
.y29b{bottom:890.009620pt;}
.y259{bottom:890.140360pt;}
.y2c1{bottom:890.202279pt;}
.y222{bottom:892.029096pt;}
.y6{bottom:896.377441pt;}
.y218{bottom:900.498246pt;}
.y79{bottom:900.813599pt;}
.y44{bottom:900.813639pt;}
.y106{bottom:901.826904pt;}
.y138{bottom:901.986898pt;}
.y1e6{bottom:901.986938pt;}
.ybe{bottom:901.991028pt;}
.y1d9{bottom:902.329639pt;}
.y29a{bottom:903.337620pt;}
.y258{bottom:903.468360pt;}
.y2c0{bottom:903.530279pt;}
.yf0{bottom:904.717355pt;}
.y221{bottom:905.357096pt;}
.y212{bottom:915.652306pt;}
.y1d8{bottom:915.657639pt;}
.y299{bottom:916.665620pt;}
.y257{bottom:916.796360pt;}
.y2bf{bottom:916.858279pt;}
.y217{bottom:917.131579pt;}
.y78{bottom:917.480265pt;}
.y43{bottom:917.480306pt;}
.y105{bottom:918.493571pt;}
.y137{bottom:918.653564pt;}
.y1e5{bottom:918.653605pt;}
.ybd{bottom:918.657694pt;}
.yef{bottom:921.354688pt;}
.y1d7{bottom:928.985639pt;}
.y298{bottom:929.993620pt;}
.y256{bottom:930.124360pt;}
.y2be{bottom:930.186279pt;}
.y77{bottom:934.146932pt;}
.y42{bottom:934.146973pt;}
.y104{bottom:935.160238pt;}
.y165{bottom:935.320231pt;}
.y1e4{bottom:935.320272pt;}
.y136{bottom:935.320292pt;}
.ybc{bottom:935.324361pt;}
.y216{bottom:942.098913pt;}
.y1d6{bottom:942.318973pt;}
.y297{bottom:943.321620pt;}
.y255{bottom:943.452360pt;}
.y2bd{bottom:943.514279pt;}
.yee{bottom:946.322021pt;}
.y76{bottom:950.813599pt;}
.y41{bottom:950.813639pt;}
.y103{bottom:951.826904pt;}
.y164{bottom:951.986898pt;}
.y1e3{bottom:951.986938pt;}
.y135{bottom:951.986959pt;}
.ybb{bottom:951.991028pt;}
.y1d5{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y296{bottom:956.649620pt;}
.y254{bottom:956.780360pt;}
.y2bc{bottom:956.842279pt;}
.y215{bottom:963.802246pt;}
.y75{bottom:967.480265pt;}
.y40{bottom:967.480306pt;}
.y102{bottom:968.493571pt;}
.y163{bottom:968.653564pt;}
.y1e2{bottom:968.653605pt;}
.y134{bottom:968.653625pt;}
.yba{bottom:968.657694pt;}
.yec{bottom:968.980306pt;}
.y295{bottom:969.977620pt;}
.y253{bottom:970.108360pt;}
.y2bb{bottom:970.170279pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3f{bottom:1002.206543pt;}
.h18{height:25.243462pt;}
.he{height:27.671466pt;}
.h14{height:31.333333pt;}
.h17{height:34.835372pt;}
.h15{height:36.062345pt;}
.h2{height:37.376000pt;}
.h16{height:37.662745pt;}
.hd{height:39.530667pt;}
.h1c{height:39.546146pt;}
.h1a{height:39.546667pt;}
.h1b{height:39.547122pt;}
.h1d{height:39.552521pt;}
.h4{height:39.712000pt;}
.hc{height:43.656000pt;}
.h19{height:45.783922pt;}
.h9{height:46.506667pt;}
.h13{height:46.506732pt;}
.h10{height:46.506829pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.ha{height:51.360000pt;}
.h8{height:52.746667pt;}
.h11{height:53.887756pt;}
.h12{height:53.888000pt;}
.hf{height:57.493333pt;}
.h7{height:57.621333pt;}
.hb{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:131.306671pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.xd{left:74.648666pt;}
.x4{left:75.717199pt;}
.x9{left:83.124790pt;}
.x7{left:86.929867pt;}
.x12{left:90.709469pt;}
.xf{left:111.608668pt;}
.xa{left:119.999375pt;}
.xc{left:134.532796pt;}
.xb{left:149.580404pt;}
.xe{left:168.132802pt;}
.x10{left:238.112271pt;}
.x11{left:295.746399pt;}
.x5{left:408.191457pt;}
.x6{left:423.295753pt;}
.x13{left:430.868135pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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