
    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_3303ea3e41aa837cc4489c6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_c3818ed30d75dfe61d35dfd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_bd171f55168629dbd8f0f709.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_66c3cef02429eb8df6f6ba45.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_9f74ee76196e39fe01764810.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_1164df55d7b435a17ce4ffde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_e3b93a8a0ff1530a086381c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_1d6b825b87ef3d267a1fd03d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_c716a48913836c9a7bf4d288.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_e9376260547808be7a6b1da9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_c892faa824e11b1ca1971ade.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_2731e7d701b5865824caab8b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937988;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_4539a6cfd8e09816d0b788d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;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_6ccc1b6461e5e4af39ba745b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_ca2fc0b6e78235287da70faa.woff2')format("woff");}.fff{font-family:fff;line-height:0.682129;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.236305,0.000000,-0.080820,0.236576,0,0);-ms-transform:matrix(0.236305,0.000000,-0.080820,0.236576,0,0);-webkit-transform:matrix(0.236305,0.000000,-0.080820,0.236576,0,0);}
.m6{transform:matrix(0.236634,0.000000,-0.080932,0.236537,0,0);-ms-transform:matrix(0.236634,0.000000,-0.080932,0.236537,0,0);-webkit-transform:matrix(0.236634,0.000000,-0.080932,0.236537,0,0);}
.m3{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,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:-21.701400px;}
.v5{vertical-align:-11.697000px;}
.v7{vertical-align:-9.357600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v8{vertical-align:9.357600px;}
.v6{vertical-align:11.697000px;}
.v4{vertical-align:28.203000px;}
.v1{vertical-align:30.381600px;}
.ls7e{letter-spacing:-7.800000px;}
.ls8b{letter-spacing:-7.740000px;}
.ls82{letter-spacing:-7.560000px;}
.ls39{letter-spacing:-7.440000px;}
.ls7c{letter-spacing:-7.320000px;}
.ls8c{letter-spacing:-6.780000px;}
.ls36{letter-spacing:-6.300000px;}
.ls53{letter-spacing:-5.880000px;}
.ls83{letter-spacing:-5.820000px;}
.ls84{letter-spacing:-5.580000px;}
.ls38{letter-spacing:-5.520000px;}
.ls8a{letter-spacing:-5.400000px;}
.ls90{letter-spacing:-4.740000px;}
.ls48{letter-spacing:-4.416000px;}
.ls71{letter-spacing:-3.864000px;}
.ls49{letter-spacing:-1.776000px;}
.ls6{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.693000px;}
.ls70{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.404019px;}
.ls7d{letter-spacing:-0.360000px;}
.ls62{letter-spacing:-0.300000px;}
.ls5d{letter-spacing:-0.283491px;}
.ls54{letter-spacing:-0.240000px;}
.ls56{letter-spacing:-0.180000px;}
.ls58{letter-spacing:-0.153939px;}
.lsc6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.120000px;}
.lsc4{letter-spacing:-0.096000px;}
.ls45{letter-spacing:-0.060000px;}
.lsd1{letter-spacing:-0.048000px;}
.ls5b{letter-spacing:-0.030788px;}
.ls5e{letter-spacing:-0.030095px;}
.ls5{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.003000px;}
.ls3{letter-spacing:0.003540px;}
.ls76{letter-spacing:0.007200px;}
.ls75{letter-spacing:0.009000px;}
.ls72{letter-spacing:0.016200px;}
.ls5a{letter-spacing:0.030788px;}
.ls73{letter-spacing:0.037200px;}
.lsaa{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls59{letter-spacing:0.061576px;}
.ls4{letter-spacing:0.069000px;}
.lsa8{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.120382px;}
.lsbc{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.lsb5{letter-spacing:0.192000px;}
.ls5f{letter-spacing:0.192298px;}
.ls31{letter-spacing:0.240000px;}
.ls40{letter-spacing:0.262200px;}
.ls55{letter-spacing:0.279840px;}
.lsa7{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls6f{letter-spacing:0.314820px;}
.lsb1{letter-spacing:0.336000px;}
.ls17{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.384000px;}
.ls6c{letter-spacing:0.419760px;}
.ls1d{letter-spacing:0.420000px;}
.lsb2{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.460200px;}
.ls27{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.489720px;}
.ls6b{letter-spacing:0.506400px;}
.ls6e{letter-spacing:0.524700px;}
.lsba{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.540000px;}
.ls6a{letter-spacing:0.552600px;}
.ls9b{letter-spacing:0.576000px;}
.ls46{letter-spacing:0.594660px;}
.ls11{letter-spacing:0.600000px;}
.ls9e{letter-spacing:0.624000px;}
.ls57{letter-spacing:0.627226px;}
.ls16{letter-spacing:0.660000px;}
.lsac{letter-spacing:0.672000px;}
.ls30{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.726000px;}
.ls66{letter-spacing:0.728400px;}
.ls9a{letter-spacing:0.768000px;}
.ls20{letter-spacing:0.780000px;}
.lsb7{letter-spacing:0.816000px;}
.ls6d{letter-spacing:0.839520px;}
.ls2b{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.852600px;}
.ls69{letter-spacing:0.853200px;}
.lsa1{letter-spacing:0.864000px;}
.ls32{letter-spacing:0.900000px;}
.ls9f{letter-spacing:0.912000px;}
.ls19{letter-spacing:0.960000px;}
.ls97{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.020000px;}
.lsa2{letter-spacing:1.056000px;}
.ls25{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.104000px;}
.ls23{letter-spacing:1.140000px;}
.lsa3{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.200000px;}
.ls98{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.260000px;}
.lscc{letter-spacing:1.296000px;}
.ls15{letter-spacing:1.320000px;}
.lsa6{letter-spacing:1.344000px;}
.ls1e{letter-spacing:1.380000px;}
.ls9d{letter-spacing:1.392000px;}
.ls68{letter-spacing:1.434600px;}
.ls2e{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.442400px;}
.lsb6{letter-spacing:1.488000px;}
.ls33{letter-spacing:1.500000px;}
.lsbd{letter-spacing:1.536000px;}
.ls12{letter-spacing:1.560000px;}
.ls9c{letter-spacing:1.584000px;}
.ls35{letter-spacing:1.620000px;}
.ls10{letter-spacing:1.680000px;}
.lsbb{letter-spacing:1.728000px;}
.ls1b{letter-spacing:1.740000px;}
.lsb9{letter-spacing:1.776000px;}
.ls21{letter-spacing:1.800000px;}
.lsb0{letter-spacing:1.824000px;}
.ls37{letter-spacing:1.860000px;}
.lsa0{letter-spacing:1.872000px;}
.ls3d{letter-spacing:1.920000px;}
.lsb3{letter-spacing:1.968000px;}
.ls18{letter-spacing:1.980000px;}
.lsc0{letter-spacing:2.016000px;}
.ls2c{letter-spacing:2.040000px;}
.lsb8{letter-spacing:2.064000px;}
.ls1f{letter-spacing:2.100000px;}
.lsad{letter-spacing:2.112000px;}
.ls34{letter-spacing:2.160000px;}
.lsca{letter-spacing:2.208000px;}
.ls2d{letter-spacing:2.220000px;}
.ls43{letter-spacing:2.280000px;}
.ls3e{letter-spacing:2.340000px;}
.ls4b{letter-spacing:2.400000px;}
.ls2f{letter-spacing:2.460000px;}
.lsa5{letter-spacing:2.496000px;}
.ls4c{letter-spacing:2.520000px;}
.ls13{letter-spacing:2.580000px;}
.lscb{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.640000px;}
.lscd{letter-spacing:2.688000px;}
.ls41{letter-spacing:2.700000px;}
.lsb4{letter-spacing:2.736000px;}
.lsb{letter-spacing:2.760000px;}
.ls4a{letter-spacing:2.820000px;}
.lsd0{letter-spacing:2.832000px;}
.ls52{letter-spacing:2.880000px;}
.ls7a{letter-spacing:2.940000px;}
.lsbe{letter-spacing:2.976000px;}
.ls89{letter-spacing:3.000000px;}
.lsae{letter-spacing:3.024000px;}
.ls64{letter-spacing:3.060000px;}
.lsd4{letter-spacing:3.072000px;}
.ls2a{letter-spacing:3.120000px;}
.lsaf{letter-spacing:3.168000px;}
.ls61{letter-spacing:3.180000px;}
.ls4d{letter-spacing:3.240000px;}
.lsc8{letter-spacing:3.264000px;}
.ls80{letter-spacing:3.300000px;}
.lsd5{letter-spacing:3.312000px;}
.ls88{letter-spacing:3.360000px;}
.ls3a{letter-spacing:3.420000px;}
.lsce{letter-spacing:3.456000px;}
.ls3c{letter-spacing:3.480000px;}
.ls51{letter-spacing:3.600000px;}
.lsc2{letter-spacing:3.648000px;}
.ls85{letter-spacing:3.660000px;}
.ls4f{letter-spacing:3.720000px;}
.lsab{letter-spacing:3.744000px;}
.ls94{letter-spacing:3.780000px;}
.lsd2{letter-spacing:3.792000px;}
.lsf{letter-spacing:3.840000px;}
.lscf{letter-spacing:3.888000px;}
.ls50{letter-spacing:3.900000px;}
.lsc1{letter-spacing:3.936000px;}
.ls3b{letter-spacing:3.960000px;}
.lsd3{letter-spacing:3.984000px;}
.ls29{letter-spacing:4.080000px;}
.lsa{letter-spacing:4.140000px;}
.lsc7{letter-spacing:4.176000px;}
.ls44{letter-spacing:4.200000px;}
.lsc5{letter-spacing:4.224000px;}
.ls7b{letter-spacing:4.260000px;}
.lsc9{letter-spacing:4.464000px;}
.lsd6{letter-spacing:4.512000px;}
.ls60{letter-spacing:4.560000px;}
.ls87{letter-spacing:4.680000px;}
.ls42{letter-spacing:4.740000px;}
.lsa4{letter-spacing:4.944000px;}
.ls8f{letter-spacing:4.980000px;}
.lsa9{letter-spacing:4.992000px;}
.lsc3{letter-spacing:5.040000px;}
.lsbf{letter-spacing:5.280000px;}
.ls8e{letter-spacing:5.340000px;}
.ls7f{letter-spacing:5.400000px;}
.ls63{letter-spacing:5.460000px;}
.ls86{letter-spacing:5.520000px;}
.ls91{letter-spacing:5.700000px;}
.ls1c{letter-spacing:5.880000px;}
.ls92{letter-spacing:6.000000px;}
.ls8d{letter-spacing:6.060000px;}
.ls81{letter-spacing:6.480000px;}
.ls95{letter-spacing:7.320000px;}
.ls96{letter-spacing:7.620000px;}
.ls93{letter-spacing:7.680000px;}
.ls0{letter-spacing:58.440600px;}
.ls1{letter-spacing:58.724676px;}
.ls2{letter-spacing:59.533476px;}
.ls77{letter-spacing:95.568000px;}
.ls47{letter-spacing:305.040000px;}
.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;}
}
.ws94{word-spacing:-48.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws52{word-spacing:-18.900000px;}
.ws51{word-spacing:-18.720000px;}
.ws73{word-spacing:-18.240000px;}
.wsde{word-spacing:-18.060000px;}
.ws30{word-spacing:-17.760000px;}
.wsd2{word-spacing:-17.400000px;}
.ws31{word-spacing:-17.280000px;}
.ws2f{word-spacing:-17.100000px;}
.ws7f{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.wsba{word-spacing:-16.620000px;}
.ws12{word-spacing:-16.500000px;}
.wsd3{word-spacing:-16.320000px;}
.wsf{word-spacing:-16.140000px;}
.ws2c{word-spacing:-16.020000px;}
.ws11b{word-spacing:-15.888000px;}
.ws74{word-spacing:-15.840000px;}
.wsd1{word-spacing:-15.720000px;}
.wsd{word-spacing:-15.420000px;}
.ws2a{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.240000px;}
.ws2b{word-spacing:-15.180000px;}
.ws12e{word-spacing:-15.168000px;}
.ws10{word-spacing:-15.120000px;}
.wse{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws53{word-spacing:-14.820000px;}
.ws118{word-spacing:-14.688000px;}
.wsd0{word-spacing:-14.580000px;}
.ws116{word-spacing:-14.208000px;}
.ws117{word-spacing:-14.160000px;}
.ws12b{word-spacing:-14.064000px;}
.ws12d{word-spacing:-13.920000px;}
.wse1{word-spacing:-13.584000px;}
.ws11a{word-spacing:-13.536000px;}
.wsfe{word-spacing:-13.440000px;}
.ws12c{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.344000px;}
.ws12a{word-spacing:-13.248000px;}
.wse5{word-spacing:-13.200000px;}
.wse2{word-spacing:-13.152000px;}
.wsfd{word-spacing:-13.056000px;}
.ws75{word-spacing:-12.960000px;}
.wse4{word-spacing:-12.912000px;}
.ws119{word-spacing:-12.624000px;}
.wse7{word-spacing:-12.576000px;}
.ws5{word-spacing:-12.510000px;}
.ws101{word-spacing:-12.480000px;}
.ws128{word-spacing:-12.384000px;}
.wsff{word-spacing:-12.288000px;}
.ws100{word-spacing:-12.240000px;}
.wse3{word-spacing:-12.096000px;}
.wse6{word-spacing:-12.048000px;}
.ws46{word-spacing:-12.000000px;}
.ws129{word-spacing:-11.952000px;}
.ws1{word-spacing:-9.806643px;}
.ws81{word-spacing:-9.584520px;}
.ws2d{word-spacing:-9.339660px;}
.ws82{word-spacing:-9.269700px;}
.wsa1{word-spacing:-9.234720px;}
.ws80{word-spacing:-9.164760px;}
.ws83{word-spacing:-9.059820px;}
.ws50{word-spacing:-9.024840px;}
.ws2e{word-spacing:-8.745000px;}
.ws62{word-spacing:-8.711478px;}
.ws65{word-spacing:-8.559008px;}
.ws66{word-spacing:-8.366521px;}
.ws64{word-spacing:-7.696950px;}
.wsa3{word-spacing:-6.996000px;}
.ws63{word-spacing:-6.975150px;}
.ws127{word-spacing:-3.888000px;}
.wsd4{word-spacing:-3.660000px;}
.wsda{word-spacing:-3.360000px;}
.wsf6{word-spacing:-3.168000px;}
.ws61{word-spacing:-2.927057px;}
.ws8{word-spacing:-2.886000px;}
.ws11f{word-spacing:-2.832000px;}
.ws58{word-spacing:-2.820000px;}
.wsee{word-spacing:-2.736000px;}
.wsea{word-spacing:-2.700000px;}
.ws60{word-spacing:-2.683135px;}
.ws5c{word-spacing:-2.640000px;}
.ws38{word-spacing:-2.460000px;}
.wse9{word-spacing:-2.400000px;}
.ws9{word-spacing:-2.331000px;}
.ws39{word-spacing:-2.220000px;}
.ws11e{word-spacing:-2.208000px;}
.ws121{word-spacing:-2.160000px;}
.ws55{word-spacing:-2.100000px;}
.ws135{word-spacing:-2.064000px;}
.wsd8{word-spacing:-2.040000px;}
.ws23{word-spacing:-1.980000px;}
.wsc2{word-spacing:-1.860000px;}
.wsfa{word-spacing:-1.824000px;}
.ws93{word-spacing:-1.800000px;}
.wseb{word-spacing:-1.728000px;}
.ws126{word-spacing:-1.536000px;}
.ws41{word-spacing:-1.500000px;}
.ws10a{word-spacing:-1.488000px;}
.wsc0{word-spacing:-1.440000px;}
.ws136{word-spacing:-1.392000px;}
.ws1f{word-spacing:-1.380000px;}
.wsef{word-spacing:-1.344000px;}
.ws134{word-spacing:-1.248000px;}
.ws112{word-spacing:-1.200000px;}
.wscc{word-spacing:-1.140000px;}
.wsb{word-spacing:-1.134000px;}
.wsc8{word-spacing:-1.080000px;}
.ws109{word-spacing:-1.056000px;}
.ws42{word-spacing:-1.020000px;}
.ws120{word-spacing:-1.008000px;}
.ws43{word-spacing:-0.960000px;}
.wsed{word-spacing:-0.912000px;}
.ws5b{word-spacing:-0.900000px;}
.wsb9{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.840000px;}
.ws10b{word-spacing:-0.816000px;}
.wsec{word-spacing:-0.768000px;}
.ws8d{word-spacing:-0.720000px;}
.ws11c{word-spacing:-0.672000px;}
.wsbf{word-spacing:-0.660000px;}
.ws6a{word-spacing:-0.627226px;}
.wsbd{word-spacing:-0.600000px;}
.wsd6{word-spacing:-0.540000px;}
.ws12f{word-spacing:-0.528000px;}
.ws56{word-spacing:-0.480000px;}
.ws103{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.420000px;}
.ws131{word-spacing:-0.384000px;}
.ws18{word-spacing:-0.360000px;}
.ws114{word-spacing:-0.336000px;}
.ws1c{word-spacing:-0.300000px;}
.wsf1{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.192298px;}
.ws104{word-spacing:-0.192000px;}
.ws3f{word-spacing:-0.180000px;}
.wsf8{word-spacing:-0.144000px;}
.ws6f{word-spacing:-0.120382px;}
.ws40{word-spacing:-0.120000px;}
.wsf2{word-spacing:-0.096000px;}
.ws6c{word-spacing:-0.061576px;}
.ws5a{word-spacing:-0.060000px;}
.wsf3{word-spacing:-0.048000px;}
.ws6d{word-spacing:-0.030788px;}
.ws7{word-spacing:0.000000px;}
.ws71{word-spacing:0.030095px;}
.ws6e{word-spacing:0.030788px;}
.ws110{word-spacing:0.048000px;}
.ws57{word-spacing:0.060000px;}
.ws137{word-spacing:0.096000px;}
.wsc{word-spacing:0.120000px;}
.ws102{word-spacing:0.144000px;}
.ws6b{word-spacing:0.153939px;}
.ws70{word-spacing:0.283491px;}
.wsc9{word-spacing:0.360000px;}
.ws133{word-spacing:0.432000px;}
.ws132{word-spacing:0.480000px;}
.wsc4{word-spacing:0.540000px;}
.wsf9{word-spacing:0.576000px;}
.ws36{word-spacing:0.600000px;}
.ws5e{word-spacing:0.660000px;}
.ws105{word-spacing:0.672000px;}
.wsa{word-spacing:0.693000px;}
.wsa0{word-spacing:0.720000px;}
.ws11d{word-spacing:0.768000px;}
.ws3d{word-spacing:0.780000px;}
.ws59{word-spacing:0.840000px;}
.ws139{word-spacing:0.864000px;}
.ws10e{word-spacing:0.912000px;}
.ws1e{word-spacing:0.960000px;}
.wsc3{word-spacing:1.080000px;}
.wsf5{word-spacing:1.104000px;}
.ws7a{word-spacing:1.140000px;}
.ws107{word-spacing:1.152000px;}
.ws78{word-spacing:1.200000px;}
.ws69{word-spacing:1.248000px;}
.ws8e{word-spacing:1.320000px;}
.wsfb{word-spacing:1.344000px;}
.ws7d{word-spacing:1.380000px;}
.ws106{word-spacing:1.392000px;}
.ws10d{word-spacing:1.440000px;}
.ws68{word-spacing:1.488000px;}
.ws8c{word-spacing:1.500000px;}
.ws14{word-spacing:1.560000px;}
.wsbb{word-spacing:1.620000px;}
.wsf4{word-spacing:1.632000px;}
.ws67{word-spacing:1.680000px;}
.ws4f{word-spacing:1.776000px;}
.ws34{word-spacing:1.800000px;}
.ws10c{word-spacing:1.824000px;}
.wse8{word-spacing:1.860000px;}
.ws123{word-spacing:1.872000px;}
.ws35{word-spacing:1.920000px;}
.ws21{word-spacing:2.040000px;}
.ws108{word-spacing:2.064000px;}
.ws33{word-spacing:2.100000px;}
.ws3e{word-spacing:2.160000px;}
.ws124{word-spacing:2.208000px;}
.wscf{word-spacing:2.340000px;}
.ws76{word-spacing:2.400000px;}
.ws10f{word-spacing:2.448000px;}
.ws5f{word-spacing:2.460000px;}
.wsf7{word-spacing:2.496000px;}
.ws19{word-spacing:2.520000px;}
.ws138{word-spacing:2.544000px;}
.ws26{word-spacing:2.580000px;}
.ws3a{word-spacing:2.640000px;}
.ws8b{word-spacing:2.700000px;}
.wsd5{word-spacing:2.760000px;}
.ws111{word-spacing:2.784000px;}
.ws7c{word-spacing:2.820000px;}
.ws115{word-spacing:2.832000px;}
.wsc1{word-spacing:2.880000px;}
.wsdf{word-spacing:2.940000px;}
.ws4e{word-spacing:2.976000px;}
.wsbc{word-spacing:3.000000px;}
.wsfc{word-spacing:3.024000px;}
.ws1a{word-spacing:3.060000px;}
.wse0{word-spacing:3.120000px;}
.ws1d{word-spacing:3.180000px;}
.wsf0{word-spacing:3.216000px;}
.ws17{word-spacing:3.240000px;}
.ws122{word-spacing:3.264000px;}
.ws24{word-spacing:3.300000px;}
.ws45{word-spacing:3.420000px;}
.ws77{word-spacing:3.480000px;}
.ws130{word-spacing:3.504000px;}
.ws125{word-spacing:3.552000px;}
.ws32{word-spacing:3.600000px;}
.wsca{word-spacing:3.660000px;}
.ws92{word-spacing:3.720000px;}
.ws113{word-spacing:3.744000px;}
.wsc5{word-spacing:3.780000px;}
.ws27{word-spacing:3.840000px;}
.ws7e{word-spacing:3.936000px;}
.wsc7{word-spacing:3.960000px;}
.ws7b{word-spacing:3.984000px;}
.ws5d{word-spacing:4.080000px;}
.ws79{word-spacing:4.140000px;}
.wsce{word-spacing:4.200000px;}
.wsb8{word-spacing:4.260000px;}
.ws16{word-spacing:4.320000px;}
.ws90{word-spacing:4.380000px;}
.ws8f{word-spacing:4.440000px;}
.ws44{word-spacing:4.500000px;}
.ws9f{word-spacing:4.560000px;}
.ws20{word-spacing:4.680000px;}
.ws37{word-spacing:4.740000px;}
.wsd7{word-spacing:4.800000px;}
.ws91{word-spacing:4.860000px;}
.ws15{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.wsdd{word-spacing:5.100000px;}
.wsd9{word-spacing:5.400000px;}
.ws28{word-spacing:5.520000px;}
.wscd{word-spacing:5.580000px;}
.ws3c{word-spacing:5.820000px;}
.ws54{word-spacing:5.880000px;}
.ws22{word-spacing:6.300000px;}
.wsdc{word-spacing:6.780000px;}
.wsbe{word-spacing:7.320000px;}
.ws29{word-spacing:7.440000px;}
.wscb{word-spacing:7.560000px;}
.wsdb{word-spacing:7.740000px;}
.wsc6{word-spacing:7.800000px;}
.wsac{word-spacing:25.584000px;}
.wsaa{word-spacing:33.600000px;}
.wsb2{word-spacing:34.464000px;}
.wsa5{word-spacing:40.224000px;}
.wsa9{word-spacing:41.568000px;}
.ws2{word-spacing:49.322028px;}
.wsa8{word-spacing:54.048000px;}
.wsa7{word-spacing:58.944000px;}
.ws84{word-spacing:61.005000px;}
.wsa4{word-spacing:64.224000px;}
.wsa6{word-spacing:66.816000px;}
.wsb7{word-spacing:70.032000px;}
.ws88{word-spacing:71.862000px;}
.wsb0{word-spacing:72.672000px;}
.wsb6{word-spacing:75.360000px;}
.wsa2{word-spacing:80.160000px;}
.wsab{word-spacing:83.568000px;}
.ws86{word-spacing:87.066000px;}
.ws85{word-spacing:93.996000px;}
.ws4b{word-spacing:103.392000px;}
.ws89{word-spacing:113.064000px;}
.ws9d{word-spacing:146.160000px;}
.ws9e{word-spacing:158.160000px;}
.ws96{word-spacing:170.160000px;}
.ws99{word-spacing:171.456000px;}
.ws9c{word-spacing:178.128000px;}
.ws8a{word-spacing:181.692000px;}
.ws97{word-spacing:186.144000px;}
.ws9b{word-spacing:186.145200px;}
.ws9a{word-spacing:187.008000px;}
.wsb3{word-spacing:188.256000px;}
.wsb1{word-spacing:190.896000px;}
.wsae{word-spacing:193.536000px;}
.wsad{word-spacing:198.816000px;}
.wsaf{word-spacing:198.864000px;}
.wsb4{word-spacing:201.552000px;}
.wsb5{word-spacing:201.600000px;}
.ws87{word-spacing:213.654000px;}
.ws95{word-spacing:220.800000px;}
.ws47{word-spacing:254.832000px;}
.ws4d{word-spacing:268.176000px;}
.ws4a{word-spacing:284.592000px;}
.ws4c{word-spacing:285.504000px;}
.ws49{word-spacing:292.176000px;}
.ws98{word-spacing:423.648000px;}
.ws48{word-spacing:555.696000px;}
._c{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._2f{margin-left:-1417.281386px;}
._31{margin-left:-574.392931px;}
._8{margin-left:-7.860000px;}
._6{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.496200px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._4{width:1.071000px;}
._2{width:2.331000px;}
._a{width:3.720000px;}
._7{width:5.280000px;}
._9{width:6.360000px;}
._b{width:7.465200px;}
._60{width:9.696000px;}
._77{width:37.338000px;}
._79{width:38.568000px;}
._78{width:45.474000px;}
._7c{width:46.630128px;}
._7f{width:47.752200px;}
._7e{width:53.190000px;}
._7b{width:54.912000px;}
._6f{width:56.256000px;}
._74{width:58.896000px;}
._5f{width:60.960000px;}
._70{width:62.448000px;}
._72{width:63.744000px;}
._66{width:65.024400px;}
._6e{width:66.564000px;}
._73{width:69.600000px;}
._71{width:75.048000px;}
._34{width:81.228000px;}
._33{width:84.714000px;}
._39{width:87.024000px;}
._7a{width:88.542000px;}
._35{width:90.132000px;}
._37{width:91.350000px;}
._32{width:94.038000px;}
._7d{width:95.329872px;}
._38{width:96.390000px;}
._69{width:98.058072px;}
._36{width:100.776000px;}
._25{width:110.064000px;}
._e{width:111.408000px;}
._3c{width:123.564000px;}
._63{width:124.608000px;}
._42{width:125.640600px;}
._12{width:134.064000px;}
._67{width:136.500000px;}
._68{width:137.908200px;}
._44{width:139.056000px;}
._5e{width:155.952000px;}
._3b{width:164.304000px;}
._3d{width:166.614000px;}
._59{width:170.160000px;}
._3a{width:175.980000px;}
._41{width:178.290000px;}
._3e{width:180.600000px;}
._58{width:182.160000px;}
._3f{width:185.262000px;}
._40{width:187.614000px;}
._52{width:190.128000px;}
._76{width:192.288000px;}
._48{width:198.144000px;}
._5b{width:202.128000px;}
._50{width:210.144000px;}
._4b{width:214.128000px;}
._56{width:215.472000px;}
._49{width:222.144000px;}
._51{width:234.144000px;}
._4a{width:246.144000px;}
._75{width:250.224000px;}
._45{width:257.328000px;}
._5a{width:263.856000px;}
._2e{width:268.176000px;}
._43{width:272.208000px;}
._57{width:279.840000px;}
._62{width:282.096000px;}
._15{width:292.176000px;}
._16{width:304.176000px;}
._29{width:307.728000px;}
._64{width:358.672200px;}
._5c{width:363.840000px;}
._4d{width:403.776000px;}
._4e{width:406.416000px;}
._4c{width:417.120000px;}
._55{width:419.760000px;}
._4f{width:422.400000px;}
._47{width:425.088000px;}
._53{width:427.728000px;}
._54{width:430.416000px;}
._46{width:437.552400px;}
._6d{width:481.488000px;}
._11{width:491.664000px;}
._65{width:516.184200px;}
._23{width:521.376000px;}
._1c{width:529.440000px;}
._1a{width:535.824000px;}
._1b{width:538.416000px;}
._2a{width:540.096000px;}
._27{width:541.561200px;}
._6a{width:545.464200px;}
._18{width:549.168000px;}
._24{width:551.808000px;}
._1e{width:554.448000px;}
._14{width:557.136000px;}
._20{width:559.776000px;}
._22{width:562.464000px;}
._17{width:569.472000px;}
._10{width:571.248000px;}
._19{width:582.768000px;}
._13{width:585.408000px;}
._1d{width:590.736000px;}
._1f{width:612.048000px;}
._28{width:616.032000px;}
._f{width:625.344000px;}
._2b{width:634.752000px;}
._21{width:674.358000px;}
._6b{width:692.736000px;}
._2c{width:694.264200px;}
._26{width:698.736000px;}
._61{width:1079.363400px;}
._6c{width:1095.840000px;}
._5d{width:1302.384000px;}
._2d{width:1487.376000px;}
._30{width:2471.197176px;}
.fc2{color:rgb(75,72,72);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.900600px;}
.fs11{font-size:27.984000px;}
.fs10{font-size:30.095400px;}
.fsd{font-size:30.787800px;}
.fsb{font-size:34.845913px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fsf{font-size:40.498662px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fse{font-size:48.074400px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y329{bottom:80.263500px;}
.y13c{bottom:83.118000px;}
.y2d3{bottom:83.635350px;}
.y71{bottom:83.770350px;}
.y65{bottom:83.772600px;}
.y1a9{bottom:83.779200px;}
.y2af{bottom:83.785350px;}
.y247{bottom:83.907600px;}
.y27a{bottom:83.912100px;}
.y108{bottom:83.918850px;}
.ya1{bottom:83.920350px;}
.yc7{bottom:84.053850px;}
.y138{bottom:84.233850px;}
.y2d{bottom:88.023000px;}
.y2e8{bottom:89.121900px;}
.y200{bottom:92.426550px;}
.y1d1{bottom:92.669700px;}
.y1e8{bottom:92.946150px;}
.y328{bottom:95.263500px;}
.y13b{bottom:98.862000px;}
.y1a8{bottom:99.523200px;}
.y2d2{bottom:101.635350px;}
.y70{bottom:101.770350px;}
.y64{bottom:101.772600px;}
.y2ae{bottom:101.785350px;}
.y246{bottom:101.907600px;}
.y279{bottom:101.912100px;}
.y107{bottom:101.918850px;}
.ya0{bottom:101.920350px;}
.yc6{bottom:102.053850px;}
.y137{bottom:102.233850px;}
.y2c{bottom:103.023000px;}
.y2e7{bottom:104.121900px;}
.y1ff{bottom:108.678450px;}
.y1d0{bottom:109.192950px;}
.y327{bottom:110.263500px;}
.ye2{bottom:113.174250px;}
.y13a{bottom:114.606000px;}
.y2e6{bottom:119.121900px;}
.y2d1{bottom:119.635350px;}
.y6f{bottom:119.770350px;}
.y63{bottom:119.772600px;}
.y2ad{bottom:119.785350px;}
.y245{bottom:119.907600px;}
.y278{bottom:119.912100px;}
.y106{bottom:119.918850px;}
.y9f{bottom:119.920350px;}
.yc5{bottom:120.053850px;}
.y136{bottom:120.233850px;}
.y1e7{bottom:121.950150px;}
.y1cf{bottom:123.945450px;}
.y1fe{bottom:124.926450px;}
.y326{bottom:125.263500px;}
.y139{bottom:130.350000px;}
.y2e5{bottom:134.121900px;}
.y2d0{bottom:137.635350px;}
.y6e{bottom:137.770350px;}
.y62{bottom:137.772600px;}
.y2ac{bottom:137.785350px;}
.y244{bottom:137.907600px;}
.y277{bottom:137.912100px;}
.y105{bottom:137.918850px;}
.y9e{bottom:137.920350px;}
.yc4{bottom:138.053850px;}
.y1e6{bottom:138.198150px;}
.y135{bottom:138.233850px;}
.y325{bottom:140.263500px;}
.y1ce{bottom:140.440950px;}
.y1fd{bottom:141.186450px;}
.ye1{bottom:142.178250px;}
.y2e4{bottom:149.121900px;}
.y165{bottom:155.148150px;}
.y1cd{bottom:155.193450px;}
.y324{bottom:155.263500px;}
.y2cf{bottom:155.635350px;}
.y6d{bottom:155.770350px;}
.y61{bottom:155.772600px;}
.y2ab{bottom:155.785350px;}
.y243{bottom:155.907600px;}
.y276{bottom:155.912100px;}
.y9d{bottom:155.920350px;}
.yc3{bottom:156.053850px;}
.y134{bottom:156.233850px;}
.y1fc{bottom:157.434450px;}
.y2e3{bottom:164.121900px;}
.y1e5{bottom:167.202150px;}
.y323{bottom:170.263500px;}
.ye0{bottom:171.182250px;}
.y1cc{bottom:171.688950px;}
.y104{bottom:173.513850px;}
.y2ce{bottom:173.635350px;}
.y1fb{bottom:173.686350px;}
.y6c{bottom:173.770350px;}
.y60{bottom:173.772600px;}
.y2aa{bottom:173.785350px;}
.y242{bottom:173.907600px;}
.y275{bottom:173.912100px;}
.y9c{bottom:173.920350px;}
.yc2{bottom:174.053850px;}
.y133{bottom:174.233850px;}
.y2e2{bottom:179.121900px;}
.y1e4{bottom:183.509400px;}
.y164{bottom:183.706350px;}
.y322{bottom:185.263500px;}
.y1cb{bottom:186.441450px;}
.y1fa{bottom:189.938400px;}
.y2cd{bottom:191.635350px;}
.y6b{bottom:191.770350px;}
.y5f{bottom:191.772600px;}
.y2a9{bottom:191.785350px;}
.y241{bottom:191.907600px;}
.y274{bottom:191.912100px;}
.y28e{bottom:191.920350px;}
.yc1{bottom:192.053850px;}
.y132{bottom:192.233850px;}
.y2e1{bottom:194.121900px;}
.y2b{bottom:198.508650px;}
.y163{bottom:198.926550px;}
.y188{bottom:199.685906px;}
.y1e3{bottom:199.757400px;}
.ydf{bottom:200.186250px;}
.y321{bottom:200.263500px;}
.y1ca{bottom:202.936950px;}
.y1f9{bottom:206.186400px;}
.y2e0{bottom:209.121900px;}
.y9b{bottom:209.515350px;}
.y2cc{bottom:209.635350px;}
.y6a{bottom:209.770350px;}
.y5e{bottom:209.772600px;}
.y2a8{bottom:209.785350px;}
.y240{bottom:209.907600px;}
.y273{bottom:209.912100px;}
.y28d{bottom:209.920350px;}
.yc0{bottom:210.053850px;}
.y131{bottom:210.233850px;}
.y162{bottom:214.148250px;}
.y189{bottom:214.910473px;}
.y320{bottom:215.263500px;}
.y1e2{bottom:216.005400px;}
.y2a{bottom:216.514200px;}
.y1c9{bottom:217.689450px;}
.y1f8{bottom:222.442200px;}
.y2df{bottom:224.121900px;}
.y2cb{bottom:227.635350px;}
.y69{bottom:227.770350px;}
.y5d{bottom:227.772600px;}
.y2a7{bottom:227.785350px;}
.y23f{bottom:227.907600px;}
.y272{bottom:227.912100px;}
.y28c{bottom:227.920350px;}
.ybf{bottom:228.053850px;}
.y130{bottom:228.233850px;}
.yde{bottom:229.190250px;}
.y161{bottom:229.367100px;}
.y18a{bottom:230.127343px;}
.y31f{bottom:230.263500px;}
.y1e1{bottom:232.253400px;}
.y1c8{bottom:234.184950px;}
.y2de{bottom:239.121900px;}
.y29{bottom:243.859200px;}
.y160{bottom:244.587450px;}
.y31e{bottom:245.263500px;}
.y18b{bottom:245.344213px;}
.y2ca{bottom:245.635350px;}
.y68{bottom:245.770350px;}
.y5c{bottom:245.772600px;}
.y2a6{bottom:245.785350px;}
.y23e{bottom:245.907600px;}
.y271{bottom:245.912100px;}
.y28b{bottom:245.920350px;}
.ybe{bottom:246.053850px;}
.y12f{bottom:246.233850px;}
.y1e0{bottom:248.501400px;}
.y1c7{bottom:248.937450px;}
.y1f7{bottom:251.450100px;}
.y2dd{bottom:254.121900px;}
.ydd{bottom:258.194250px;}
.y15f{bottom:259.809000px;}
.y31d{bottom:260.263500px;}
.y18c{bottom:260.561083px;}
.y28{bottom:261.859200px;}
.y2c9{bottom:263.635350px;}
.y9a{bottom:263.770350px;}
.y5b{bottom:263.772600px;}
.y2a5{bottom:263.785350px;}
.y23d{bottom:263.907600px;}
.y270{bottom:263.912100px;}
.y28a{bottom:263.920350px;}
.ybd{bottom:264.053850px;}
.y103{bottom:264.070350px;}
.y12e{bottom:264.233850px;}
.y1df{bottom:264.749400px;}
.y1c6{bottom:265.432950px;}
.y1f6{bottom:267.702150px;}
.y2dc{bottom:269.121900px;}
.ydc{bottom:274.442250px;}
.y15e{bottom:275.029500px;}
.y31c{bottom:275.263500px;}
.y18d{bottom:275.785650px;}
.y27{bottom:279.859200px;}
.y1c5{bottom:280.185450px;}
.y1de{bottom:280.997400px;}
.y2c8{bottom:281.635350px;}
.y99{bottom:281.770350px;}
.y5a{bottom:281.772600px;}
.y2a4{bottom:281.785350px;}
.y23c{bottom:281.907600px;}
.y26f{bottom:281.912100px;}
.y289{bottom:281.920350px;}
.ybc{bottom:282.053850px;}
.y102{bottom:282.070350px;}
.y12d{bottom:282.233850px;}
.y1f5{bottom:283.950150px;}
.y2db{bottom:284.121900px;}
.y15d{bottom:290.248350px;}
.y31b{bottom:290.263500px;}
.ydb{bottom:290.690250px;}
.y18e{bottom:291.002520px;}
.y1c4{bottom:296.680950px;}
.y1dd{bottom:297.245400px;}
.y26{bottom:297.859200px;}
.y2c7{bottom:299.635350px;}
.y98{bottom:299.770350px;}
.y59{bottom:299.772600px;}
.y2a3{bottom:299.785350px;}
.y23b{bottom:299.907600px;}
.y26e{bottom:299.912100px;}
.y288{bottom:299.920350px;}
.ybb{bottom:300.053850px;}
.y101{bottom:300.070350px;}
.y1f4{bottom:300.210000px;}
.y15c{bottom:305.229750px;}
.y31a{bottom:305.263500px;}
.y17a{bottom:305.980785px;}
.yda{bottom:306.938250px;}
.y1c3{bottom:311.433450px;}
.y1dc{bottom:313.493400px;}
.y25{bottom:315.859200px;}
.y1f3{bottom:316.458000px;}
.y2da{bottom:317.230350px;}
.y2c6{bottom:317.635350px;}
.y97{bottom:317.770350px;}
.y58{bottom:317.772600px;}
.y2a2{bottom:317.785350px;}
.y12c{bottom:317.828850px;}
.y23a{bottom:317.907600px;}
.y26d{bottom:317.912100px;}
.y287{bottom:317.920350px;}
.yba{bottom:318.053850px;}
.y100{bottom:318.070350px;}
.y319{bottom:320.263500px;}
.y15b{bottom:320.690250px;}
.y187{bottom:321.451655px;}
.yd9{bottom:323.186250px;}
.y1c2{bottom:327.928950px;}
.y1db{bottom:329.741400px;}
.y1f2{bottom:332.710050px;}
.y24{bottom:333.859200px;}
.y318{bottom:335.263500px;}
.y2c5{bottom:335.635350px;}
.y96{bottom:335.770350px;}
.y57{bottom:335.772600px;}
.y2a1{bottom:335.785350px;}
.y239{bottom:335.907600px;}
.y15a{bottom:335.909100px;}
.y26c{bottom:335.912100px;}
.y286{bottom:335.920350px;}
.yb9{bottom:336.053850px;}
.yff{bottom:336.070350px;}
.y180{bottom:336.668525px;}
.yd8{bottom:339.434250px;}
.y1c1{bottom:342.706050px;}
.y1da{bottom:345.989400px;}
.y1f1{bottom:348.961950px;}
.y167{bottom:350.117903px;}
.y317{bottom:350.263500px;}
.y159{bottom:351.129300px;}
.y23{bottom:351.859200px;}
.y17d{bottom:351.885395px;}
.y2c4{bottom:353.635350px;}
.y95{bottom:353.770350px;}
.y56{bottom:353.772600px;}
.y2a0{bottom:353.785350px;}
.y238{bottom:353.907600px;}
.y26b{bottom:353.912100px;}
.y285{bottom:353.920350px;}
.yb8{bottom:354.053850px;}
.yfe{bottom:354.070350px;}
.y12b{bottom:354.083850px;}
.y1c0{bottom:359.201550px;}
.y1d9{bottom:362.237400px;}
.y1f0{bottom:365.209950px;}
.y316{bottom:365.263500px;}
.y158{bottom:366.227550px;}
.y181{bottom:366.986811px;}
.yd7{bottom:368.438250px;}
.y22{bottom:369.859200px;}
.y2c3{bottom:371.635350px;}
.y94{bottom:371.770350px;}
.y55{bottom:371.772600px;}
.y29f{bottom:371.785350px;}
.y237{bottom:371.907600px;}
.y26a{bottom:371.912100px;}
.y284{bottom:371.920350px;}
.yb7{bottom:372.053850px;}
.yfd{bottom:372.070350px;}
.y12a{bottom:372.083850px;}
.y1bf{bottom:373.954050px;}
.y1d8{bottom:378.485400px;}
.y315{bottom:380.263500px;}
.y1ef{bottom:381.461700px;}
.y157{bottom:381.571350px;}
.y182{bottom:382.334529px;}
.y21{bottom:387.859200px;}
.y2d9{bottom:389.365350px;}
.y2c2{bottom:389.635350px;}
.y93{bottom:389.770350px;}
.y54{bottom:389.772600px;}
.y29e{bottom:389.785350px;}
.y236{bottom:389.907600px;}
.y269{bottom:389.912100px;}
.y283{bottom:389.920350px;}
.yb6{bottom:390.053850px;}
.yfc{bottom:390.070350px;}
.y129{bottom:390.083850px;}
.y1be{bottom:390.449550px;}
.y1d7{bottom:394.733400px;}
.y314{bottom:395.263500px;}
.y156{bottom:396.791550px;}
.yd6{bottom:397.442250px;}
.y183{bottom:397.551399px;}
.y1bd{bottom:405.202050px;}
.y20{bottom:405.859200px;}
.y2c1{bottom:407.635350px;}
.y92{bottom:407.770350px;}
.y53{bottom:407.772600px;}
.y29d{bottom:407.785350px;}
.y235{bottom:407.907600px;}
.y268{bottom:407.912100px;}
.y2bb{bottom:407.920350px;}
.yb5{bottom:408.053850px;}
.yfb{bottom:408.070350px;}
.y128{bottom:408.083850px;}
.y313{bottom:410.263500px;}
.y155{bottom:411.954750px;}
.y184{bottom:412.714391px;}
.y1ee{bottom:412.973700px;}
.yd5{bottom:413.690250px;}
.y1bc{bottom:421.697550px;}
.y1d6{bottom:423.737400px;}
.y1f{bottom:423.859200px;}
.y312{bottom:425.263500px;}
.y2d8{bottom:425.365350px;}
.y282{bottom:425.515350px;}
.y2c0{bottom:425.635350px;}
.y91{bottom:425.770350px;}
.y52{bottom:425.772600px;}
.y29c{bottom:425.785350px;}
.y234{bottom:425.907600px;}
.y267{bottom:425.912100px;}
.y2ba{bottom:425.920350px;}
.yb4{bottom:426.053850px;}
.yfa{bottom:426.070350px;}
.y127{bottom:426.083850px;}
.y154{bottom:426.646200px;}
.y185{bottom:427.407868px;}
.yd4{bottom:429.938250px;}
.y1bb{bottom:436.450050px;}
.y311{bottom:440.263500px;}
.y1e{bottom:441.859200px;}
.y153{bottom:442.155150px;}
.y186{bottom:442.917223px;}
.y281{bottom:443.515350px;}
.y2bf{bottom:443.635350px;}
.y90{bottom:443.770350px;}
.y51{bottom:443.772600px;}
.y29b{bottom:443.785350px;}
.y233{bottom:443.907600px;}
.y266{bottom:443.912100px;}
.y2b9{bottom:443.920350px;}
.yb3{bottom:444.053850px;}
.yf9{bottom:444.070350px;}
.y126{bottom:444.083850px;}
.yd3{bottom:446.186250px;}
.y1ed{bottom:447.865350px;}
.y1d5{bottom:452.741400px;}
.y1ba{bottom:452.945550px;}
.y310{bottom:455.263500px;}
.y152{bottom:457.615650px;}
.y17b{bottom:458.365001px;}
.y1d{bottom:459.859200px;}
.y2be{bottom:461.635350px;}
.y8f{bottom:461.770350px;}
.y50{bottom:461.772600px;}
.y29a{bottom:461.785350px;}
.y232{bottom:461.907600px;}
.y265{bottom:461.912100px;}
.y2b8{bottom:461.920350px;}
.yb2{bottom:462.053850px;}
.yf8{bottom:462.070350px;}
.y125{bottom:462.083850px;}
.yd2{bottom:462.434250px;}
.y1ec{bottom:467.365350px;}
.y1b9{bottom:467.698050px;}
.y30f{bottom:470.263500px;}
.y151{bottom:472.836000px;}
.y17c{bottom:473.589568px;}
.y1c{bottom:477.859200px;}
.yd1{bottom:478.682250px;}
.y2bd{bottom:479.635350px;}
.y280{bottom:479.770350px;}
.y4f{bottom:479.772600px;}
.y299{bottom:479.785350px;}
.y231{bottom:479.907600px;}
.y264{bottom:479.912100px;}
.y2b7{bottom:479.920350px;}
.yb1{bottom:480.053850px;}
.yf7{bottom:480.070350px;}
.y124{bottom:480.083850px;}
.y1b8{bottom:484.193550px;}
.y1d4{bottom:485.132700px;}
.y30e{bottom:485.263500px;}
.y150{bottom:487.702200px;}
.y17e{bottom:488.460076px;}
.yd0{bottom:494.930250px;}
.y1b{bottom:495.859200px;}
.y8e{bottom:497.365350px;}
.y2bc{bottom:497.635350px;}
.y27f{bottom:497.770350px;}
.y4e{bottom:497.772600px;}
.y298{bottom:497.785350px;}
.y230{bottom:497.907600px;}
.y263{bottom:497.912100px;}
.y2b6{bottom:497.920350px;}
.yb0{bottom:498.053850px;}
.yf6{bottom:498.070350px;}
.y123{bottom:498.083850px;}
.y1b7{bottom:498.946050px;}
.y30d{bottom:500.263500px;}
.y166{bottom:500.531700px;}
.y14f{bottom:502.979400px;}
.y17f{bottom:503.738521px;}
.y1d3{bottom:504.632700px;}
.y1a{bottom:513.859200px;}
.y30c{bottom:515.263500px;}
.y2d7{bottom:515.365350px;}
.y1b6{bottom:515.441550px;}
.y27e{bottom:515.770350px;}
.y4d{bottom:515.772600px;}
.y297{bottom:515.785350px;}
.y22f{bottom:515.907600px;}
.y262{bottom:515.912100px;}
.y2b5{bottom:515.920350px;}
.yaf{bottom:516.055350px;}
.yf5{bottom:516.070350px;}
.y122{bottom:516.083850px;}
.y14e{bottom:517.967850px;}
.y179{bottom:518.716786px;}
.ycf{bottom:523.934250px;}
.y1d2{bottom:524.132700px;}
.y1b5{bottom:530.194050px;}
.y30b{bottom:530.263500px;}
.y19{bottom:531.859200px;}
.y8d{bottom:533.230350px;}
.y213{bottom:533.333400px;}
.y14d{bottom:533.421300px;}
.y27d{bottom:533.770350px;}
.y4c{bottom:533.772600px;}
.y296{bottom:533.785350px;}
.y22e{bottom:533.907600px;}
.y261{bottom:533.912100px;}
.y2b4{bottom:533.920350px;}
.yae{bottom:534.055350px;}
.y121{bottom:534.083850px;}
.y178{bottom:534.164565px;}
.y30a{bottom:545.263500px;}
.y1b4{bottom:546.689550px;}
.y14c{bottom:548.938650px;}
.y177{bottom:549.681616px;}
.y18{bottom:549.859200px;}
.y212{bottom:551.285400px;}
.yf4{bottom:551.665350px;}
.y27c{bottom:551.770350px;}
.y4b{bottom:551.772600px;}
.y295{bottom:551.785350px;}
.y22d{bottom:551.907600px;}
.y260{bottom:551.912100px;}
.y2b3{bottom:551.920350px;}
.yad{bottom:552.055350px;}
.y120{bottom:552.083850px;}
.yce{bottom:552.938250px;}
.y34b{bottom:560.263500px;}
.y309{bottom:560.265900px;}
.y14b{bottom:564.158850px;}
.y1ea{bottom:564.582150px;}
.y176{bottom:564.906183px;}
.y17{bottom:567.859200px;}
.y211{bottom:569.237400px;}
.y2d6{bottom:569.365350px;}
.y27b{bottom:569.770350px;}
.y4a{bottom:569.772600px;}
.y294{bottom:569.785350px;}
.y22c{bottom:569.907600px;}
.y25f{bottom:569.912100px;}
.y2b2{bottom:569.920350px;}
.yac{bottom:570.055350px;}
.y11f{bottom:570.083850px;}
.y34a{bottom:575.263500px;}
.y308{bottom:575.265900px;}
.y1b3{bottom:577.454550px;}
.y14a{bottom:579.370950px;}
.y175{bottom:580.115356px;}
.y1e9{bottom:580.326150px;}
.ycd{bottom:581.942250px;}
.y16{bottom:585.859200px;}
.y210{bottom:587.189400px;}
.y8c{bottom:587.770350px;}
.y49{bottom:587.772600px;}
.y293{bottom:587.785350px;}
.y22b{bottom:587.907600px;}
.y25e{bottom:587.912100px;}
.yf3{bottom:587.920350px;}
.y11e{bottom:588.083850px;}
.y349{bottom:590.263500px;}
.y307{bottom:590.265900px;}
.y149{bottom:594.599400px;}
.y174{bottom:595.347620px;}
.y15{bottom:603.859200px;}
.y20f{bottom:605.141400px;}
.y348{bottom:605.263500px;}
.y306{bottom:605.265900px;}
.yab{bottom:605.650350px;}
.y8b{bottom:605.770350px;}
.y48{bottom:605.772600px;}
.y292{bottom:605.785350px;}
.y18f{bottom:605.822100px;}
.y22a{bottom:605.907600px;}
.y25d{bottom:605.912100px;}
.yf2{bottom:605.920350px;}
.y11d{bottom:606.083850px;}
.y148{bottom:609.819750px;}
.y173{bottom:610.564491px;}
.y1b2{bottom:611.860350px;}
.ycc{bottom:614.333400px;}
.y347{bottom:620.263500px;}
.y305{bottom:620.265900px;}
.y14{bottom:621.859200px;}
.y20e{bottom:623.093400px;}
.y8a{bottom:623.770350px;}
.y47{bottom:623.772600px;}
.y291{bottom:623.785350px;}
.y229{bottom:623.907600px;}
.y25c{bottom:623.912100px;}
.yf1{bottom:623.920350px;}
.y11c{bottom:624.083850px;}
.y147{bottom:625.041300px;}
.y172{bottom:625.781361px;}
.y1b1{bottom:631.360350px;}
.ycb{bottom:633.833400px;}
.y346{bottom:635.263500px;}
.y304{bottom:635.265900px;}
.y146{bottom:640.261650px;}
.y171{bottom:641.005928px;}
.y20d{bottom:641.045400px;}
.yaa{bottom:641.515350px;}
.y89{bottom:641.770350px;}
.y46{bottom:641.772600px;}
.y290{bottom:641.785350px;}
.y228{bottom:641.907600px;}
.y25b{bottom:641.912100px;}
.yf0{bottom:641.920350px;}
.y11b{bottom:642.083850px;}
.y345{bottom:650.263500px;}
.y303{bottom:650.265900px;}
.y145{bottom:655.009800px;}
.y170{bottom:655.753284px;}
.y20c{bottom:658.997400px;}
.y88{bottom:659.770350px;}
.y45{bottom:659.772600px;}
.y28f{bottom:659.785350px;}
.y227{bottom:659.907600px;}
.y25a{bottom:659.912100px;}
.yef{bottom:659.920350px;}
.y344{bottom:665.263500px;}
.y302{bottom:665.265900px;}
.y13{bottom:667.017300px;}
.y144{bottom:670.058100px;}
.y16f{bottom:670.800821px;}
.y20b{bottom:676.955250px;}
.y2d5{bottom:677.365350px;}
.y11a{bottom:677.678850px;}
.y87{bottom:677.770350px;}
.y44{bottom:677.772600px;}
.y1a7{bottom:677.785350px;}
.y226{bottom:677.907600px;}
.yee{bottom:677.920350px;}
.y259{bottom:677.922600px;}
.y12{bottom:679.468050px;}
.yc9{bottom:679.692600px;}
.y343{bottom:680.263500px;}
.y301{bottom:680.265900px;}
.y143{bottom:685.451850px;}
.y16e{bottom:686.194721px;}
.y20a{bottom:694.907250px;}
.y342{bottom:695.263500px;}
.y300{bottom:695.265900px;}
.yc8{bottom:695.436600px;}
.y86{bottom:695.770350px;}
.y43{bottom:695.772600px;}
.y1a6{bottom:695.785350px;}
.y225{bottom:695.907600px;}
.yed{bottom:695.920350px;}
.y258{bottom:695.922600px;}
.y142{bottom:700.440150px;}
.y16d{bottom:701.180683px;}
.y341{bottom:710.263500px;}
.y2ff{bottom:710.265900px;}
.y11{bottom:711.183600px;}
.y209{bottom:712.859250px;}
.y85{bottom:713.770350px;}
.y42{bottom:713.772600px;}
.y1a5{bottom:713.785350px;}
.y224{bottom:713.907600px;}
.yec{bottom:713.920350px;}
.y257{bottom:713.922600px;}
.y119{bottom:713.933850px;}
.y141{bottom:716.007600px;}
.y16c{bottom:716.751613px;}
.y340{bottom:725.263500px;}
.y2fe{bottom:725.265900px;}
.y10{bottom:730.108950px;}
.y208{bottom:730.811250px;}
.y140{bottom:730.882050px;}
.y16b{bottom:731.622120px;}
.y84{bottom:731.770350px;}
.y41{bottom:731.772600px;}
.y1a4{bottom:731.785350px;}
.y223{bottom:731.907600px;}
.yeb{bottom:731.920350px;}
.y256{bottom:731.922600px;}
.y118{bottom:731.933850px;}
.y33f{bottom:740.263500px;}
.y2fd{bottom:740.265900px;}
.yf{bottom:743.608950px;}
.y13f{bottom:745.987200px;}
.y16a{bottom:746.723536px;}
.y207{bottom:748.763250px;}
.y83{bottom:749.770350px;}
.y40{bottom:749.772600px;}
.y1a3{bottom:749.785350px;}
.y222{bottom:749.907600px;}
.yea{bottom:749.920350px;}
.y255{bottom:749.922600px;}
.y117{bottom:749.933850px;}
.ye{bottom:751.683600px;}
.y33e{bottom:755.263500px;}
.y2fc{bottom:755.265900px;}
.y13e{bottom:761.843400px;}
.y169{bottom:762.579253px;}
.y206{bottom:766.715250px;}
.y82{bottom:767.770350px;}
.y3f{bottom:767.772600px;}
.y1a2{bottom:767.785350px;}
.y221{bottom:767.907600px;}
.ye9{bottom:767.920350px;}
.y254{bottom:767.922600px;}
.y116{bottom:767.933850px;}
.y33d{bottom:770.263500px;}
.y2fb{bottom:770.265900px;}
.yd{bottom:770.608950px;}
.y199{bottom:774.891627px;}
.y13d{bottom:777.245400px;}
.y168{bottom:777.980850px;}
.yc{bottom:784.108950px;}
.y205{bottom:784.667250px;}
.y33c{bottom:785.263500px;}
.y2fa{bottom:785.265900px;}
.y81{bottom:785.770350px;}
.y3e{bottom:785.772600px;}
.y1a1{bottom:785.785350px;}
.y220{bottom:785.907600px;}
.ye8{bottom:785.920350px;}
.y253{bottom:785.922600px;}
.y115{bottom:785.933850px;}
.yb{bottom:797.608950px;}
.y33b{bottom:800.263500px;}
.y2f9{bottom:800.265900px;}
.y204{bottom:802.619250px;}
.y80{bottom:803.770350px;}
.y3d{bottom:803.772600px;}
.y1a0{bottom:803.785350px;}
.y21f{bottom:803.907600px;}
.ye7{bottom:803.920350px;}
.y252{bottom:803.922600px;}
.y114{bottom:803.933850px;}
.ya{bottom:805.683600px;}
.y33a{bottom:815.263500px;}
.y2f8{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y19a{bottom:821.515350px;}
.y7f{bottom:821.770350px;}
.y3c{bottom:821.772600px;}
.y19f{bottom:821.785350px;}
.y21e{bottom:821.907600px;}
.ye6{bottom:821.920350px;}
.y251{bottom:821.922600px;}
.y113{bottom:821.933850px;}
.y339{bottom:830.263500px;}
.y2f7{bottom:830.265900px;}
.y203{bottom:834.131250px;}
.y8{bottom:838.108950px;}
.y2b1{bottom:839.515350px;}
.y7e{bottom:839.770350px;}
.y3b{bottom:839.772600px;}
.y19e{bottom:839.785350px;}
.y21d{bottom:839.907600px;}
.ye5{bottom:839.920350px;}
.y250{bottom:839.922600px;}
.y112{bottom:839.933850px;}
.y338{bottom:845.263500px;}
.y2f6{bottom:845.265900px;}
.y2b0{bottom:857.515350px;}
.y7d{bottom:857.770350px;}
.y3a{bottom:857.772600px;}
.y19d{bottom:857.785350px;}
.y21c{bottom:857.907600px;}
.y1b0{bottom:857.920350px;}
.y24f{bottom:857.922600px;}
.y111{bottom:857.933850px;}
.y337{bottom:860.263500px;}
.y2f5{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y202{bottom:869.026350px;}
.y193{bottom:874.503300px;}
.y194{bottom:874.870350px;}
.y336{bottom:875.263500px;}
.y2f4{bottom:875.265900px;}
.ye4{bottom:875.515350px;}
.y7c{bottom:875.770350px;}
.y39{bottom:875.772600px;}
.y19c{bottom:875.785350px;}
.y21b{bottom:875.907600px;}
.y1af{bottom:875.920350px;}
.y24e{bottom:875.922600px;}
.y110{bottom:875.933850px;}
.y6{bottom:887.830950px;}
.y201{bottom:888.526350px;}
.y335{bottom:890.263500px;}
.y2f3{bottom:890.265900px;}
.y7b{bottom:893.770350px;}
.y38{bottom:893.772600px;}
.y19b{bottom:893.785350px;}
.y21a{bottom:893.907600px;}
.y1ae{bottom:893.920350px;}
.y24d{bottom:893.922600px;}
.y10f{bottom:893.933850px;}
.y196{bottom:902.581950px;}
.y334{bottom:905.263500px;}
.y2f2{bottom:905.265900px;}
.y7a{bottom:911.770350px;}
.y37{bottom:911.772600px;}
.ya9{bottom:911.785350px;}
.y219{bottom:911.907600px;}
.y1ad{bottom:911.920350px;}
.y24c{bottom:911.922600px;}
.y10e{bottom:911.933850px;}
.y333{bottom:920.263500px;}
.y2f1{bottom:920.265900px;}
.y197{bottom:922.151850px;}
.y79{bottom:929.770350px;}
.y36{bottom:929.772600px;}
.ya8{bottom:929.785350px;}
.y218{bottom:929.907600px;}
.y1ac{bottom:929.920350px;}
.y24b{bottom:929.922600px;}
.y10d{bottom:929.933850px;}
.y5{bottom:934.004400px;}
.y332{bottom:935.263500px;}
.y2f0{bottom:935.265900px;}
.y195{bottom:941.681250px;}
.y78{bottom:947.770350px;}
.y35{bottom:947.772600px;}
.ya7{bottom:947.785350px;}
.y217{bottom:947.907600px;}
.y10c{bottom:947.933850px;}
.y331{bottom:950.263500px;}
.y2ef{bottom:950.265900px;}
.y330{bottom:965.263500px;}
.y2ee{bottom:965.265900px;}
.y1ab{bottom:965.515350px;}
.y24a{bottom:965.517600px;}
.y77{bottom:965.770350px;}
.y34{bottom:965.772600px;}
.ya6{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y192{bottom:978.313783px;}
.y32f{bottom:980.263500px;}
.y2ed{bottom:980.265900px;}
.y216{bottom:983.502600px;}
.y249{bottom:983.517600px;}
.y10b{bottom:983.528850px;}
.y76{bottom:983.770350px;}
.y33{bottom:983.772600px;}
.ya5{bottom:983.785350px;}
.y191{bottom:987.688500px;}
.y32e{bottom:995.263500px;}
.y2ec{bottom:995.265900px;}
.y190{bottom:997.692600px;}
.y2d4{bottom:1001.365350px;}
.y215{bottom:1001.502600px;}
.y248{bottom:1001.517600px;}
.y75{bottom:1001.770350px;}
.y32{bottom:1001.772600px;}
.ya4{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y32d{bottom:1010.263500px;}
.y2eb{bottom:1010.265900px;}
.y74{bottom:1019.770350px;}
.y67{bottom:1019.772600px;}
.y10a{bottom:1019.783850px;}
.ya3{bottom:1019.785350px;}
.y32c{bottom:1025.263500px;}
.y2ea{bottom:1025.265900px;}
.yca{bottom:1025.381700px;}
.y31{bottom:1037.367600px;}
.y73{bottom:1037.770350px;}
.y66{bottom:1037.772600px;}
.y109{bottom:1037.783850px;}
.ya2{bottom:1037.785350px;}
.y198{bottom:1039.961850px;}
.y32b{bottom:1040.263500px;}
.y2e9{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y72{bottom:1132.418700px;}
.y214{bottom:1132.421400px;}
.y1aa{bottom:1132.423200px;}
.y32a{bottom:1132.423500px;}
.y1eb{bottom:1132.434150px;}
.ye3{bottom:1132.502250px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h16{height:20.312400px;}
.h1b{height:21.939664px;}
.h17{height:22.414360px;}
.h18{height:22.444426px;}
.h15{height:25.368778px;}
.h9{height:28.393066px;}
.h1e{height:28.464844px;}
.h1d{height:29.182617px;}
.h1a{height:29.484133px;}
.h2{height:30.577148px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h14{height:33.351562px;}
.h19{height:33.403257px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h1c{height:41.680453px;}
.h11{height:41.689453px;}
.h10{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.718034px;}
.ha{height:43.740234px;}
.h12{height:52.507951px;}
.h13{height:52.567951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x14{left:78.661350px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x45{left:99.921300px;}
.x4b{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x46{left:112.682250px;}
.x4c{left:123.307350px;}
.x3{left:125.427750px;}
.xe{left:131.800350px;}
.x47{left:142.449150px;}
.x2a{left:153.093600px;}
.xf{left:165.955350px;}
.x5{left:191.338500px;}
.x29{left:194.062800px;}
.x2c{left:197.267100px;}
.x49{left:198.877650px;}
.x2b{left:207.609600px;}
.x43{left:210.769350px;}
.x16{left:232.366950px;}
.x2e{left:241.430100px;}
.x2d{left:251.783100px;}
.x1a{left:269.145150px;}
.x30{left:285.582600px;}
.x2f{left:295.946100px;}
.x32{left:329.745600px;}
.x31{left:340.098600px;}
.x34{left:373.898100px;}
.x33{left:384.261600px;}
.x26{left:416.338500px;}
.x36{left:418.050600px;}
.x1b{left:422.738850px;}
.x35{left:428.414100px;}
.x1c{left:442.996625px;}
.x7{left:455.041500px;}
.xb{left:457.088550px;}
.x18{left:458.443500px;}
.x17{left:459.714900px;}
.x37{left:462.586350px;}
.x19{left:472.042200px;}
.x10{left:478.315350px;}
.x27{left:482.703600px;}
.x15{left:487.129350px;}
.xa{left:491.108550px;}
.x1d{left:492.938250px;}
.x20{left:493.969219px;}
.x23{left:495.069433px;}
.x1f{left:496.285053px;}
.x1e{left:497.392960px;}
.x28{left:502.603500px;}
.x21{left:504.209667px;}
.x24{left:505.432981px;}
.x22{left:506.933272px;}
.x11{left:512.368200px;}
.x38{left:517.102350px;}
.x3a{left:550.891350px;}
.x39{left:561.254850px;}
.x4a{left:591.925350px;}
.x3c{left:595.043850px;}
.x3b{left:605.407350px;}
.x25{left:634.668750px;}
.x3e{left:639.196350px;}
.x3d{left:649.559850px;}
.xd{left:663.492300px;}
.x3f{left:683.348850px;}
.x2{left:693.365400px;}
.x44{left:721.705650px;}
.xc{left:728.391600px;}
.x40{left:737.864850px;}
.x48{left:743.865150px;}
.x13{left:748.002150px;}
.x12{left:749.651400px;}
.x42{left:772.162500px;}
.x41{left:782.017350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v5{vertical-align:-10.397333pt;}
.v7{vertical-align:-8.317867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v8{vertical-align:8.317867pt;}
.v6{vertical-align:10.397333pt;}
.v4{vertical-align:25.069333pt;}
.v1{vertical-align:27.005867pt;}
.ls7e{letter-spacing:-6.933333pt;}
.ls8b{letter-spacing:-6.880000pt;}
.ls82{letter-spacing:-6.720000pt;}
.ls39{letter-spacing:-6.613333pt;}
.ls7c{letter-spacing:-6.506667pt;}
.ls8c{letter-spacing:-6.026667pt;}
.ls36{letter-spacing:-5.600000pt;}
.ls53{letter-spacing:-5.226667pt;}
.ls83{letter-spacing:-5.173333pt;}
.ls84{letter-spacing:-4.960000pt;}
.ls38{letter-spacing:-4.906667pt;}
.ls8a{letter-spacing:-4.800000pt;}
.ls90{letter-spacing:-4.213333pt;}
.ls48{letter-spacing:-3.925333pt;}
.ls71{letter-spacing:-3.434667pt;}
.ls49{letter-spacing:-1.578667pt;}
.ls6{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.616000pt;}
.ls70{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.359128pt;}
.ls7d{letter-spacing:-0.320000pt;}
.ls62{letter-spacing:-0.266667pt;}
.ls5d{letter-spacing:-0.251992pt;}
.ls54{letter-spacing:-0.213333pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls58{letter-spacing:-0.136835pt;}
.lsc6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106667pt;}
.lsc4{letter-spacing:-0.085333pt;}
.ls45{letter-spacing:-0.053333pt;}
.lsd1{letter-spacing:-0.042667pt;}
.ls5b{letter-spacing:-0.027367pt;}
.ls5e{letter-spacing:-0.026751pt;}
.ls5{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.002667pt;}
.ls3{letter-spacing:0.003147pt;}
.ls76{letter-spacing:0.006400pt;}
.ls75{letter-spacing:0.008000pt;}
.ls72{letter-spacing:0.014400pt;}
.ls5a{letter-spacing:0.027367pt;}
.ls73{letter-spacing:0.033067pt;}
.lsaa{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls59{letter-spacing:0.054734pt;}
.ls4{letter-spacing:0.061333pt;}
.lsa8{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.107006pt;}
.lsbc{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.lsb5{letter-spacing:0.170667pt;}
.ls5f{letter-spacing:0.170931pt;}
.ls31{letter-spacing:0.213333pt;}
.ls40{letter-spacing:0.233067pt;}
.ls55{letter-spacing:0.248747pt;}
.lsa7{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls6f{letter-spacing:0.279840pt;}
.lsb1{letter-spacing:0.298667pt;}
.ls17{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.341333pt;}
.ls6c{letter-spacing:0.373120pt;}
.ls1d{letter-spacing:0.373333pt;}
.lsb2{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.409067pt;}
.ls27{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.435307pt;}
.ls6b{letter-spacing:0.450133pt;}
.ls6e{letter-spacing:0.466400pt;}
.lsba{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls6a{letter-spacing:0.491200pt;}
.ls9b{letter-spacing:0.512000pt;}
.ls46{letter-spacing:0.528587pt;}
.ls11{letter-spacing:0.533333pt;}
.ls9e{letter-spacing:0.554667pt;}
.ls57{letter-spacing:0.557535pt;}
.ls16{letter-spacing:0.586667pt;}
.lsac{letter-spacing:0.597333pt;}
.ls30{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.645333pt;}
.ls66{letter-spacing:0.647467pt;}
.ls9a{letter-spacing:0.682667pt;}
.ls20{letter-spacing:0.693333pt;}
.lsb7{letter-spacing:0.725333pt;}
.ls6d{letter-spacing:0.746240pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.757867pt;}
.ls69{letter-spacing:0.758400pt;}
.lsa1{letter-spacing:0.768000pt;}
.ls32{letter-spacing:0.800000pt;}
.ls9f{letter-spacing:0.810667pt;}
.ls19{letter-spacing:0.853333pt;}
.ls97{letter-spacing:0.896000pt;}
.lsc{letter-spacing:0.906667pt;}
.lsa2{letter-spacing:0.938667pt;}
.ls25{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.981333pt;}
.ls23{letter-spacing:1.013333pt;}
.lsa3{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls98{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.120000pt;}
.lscc{letter-spacing:1.152000pt;}
.ls15{letter-spacing:1.173333pt;}
.lsa6{letter-spacing:1.194667pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls9d{letter-spacing:1.237333pt;}
.ls68{letter-spacing:1.275200pt;}
.ls2e{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.282133pt;}
.lsb6{letter-spacing:1.322667pt;}
.ls33{letter-spacing:1.333333pt;}
.lsbd{letter-spacing:1.365333pt;}
.ls12{letter-spacing:1.386667pt;}
.ls9c{letter-spacing:1.408000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls10{letter-spacing:1.493333pt;}
.lsbb{letter-spacing:1.536000pt;}
.ls1b{letter-spacing:1.546667pt;}
.lsb9{letter-spacing:1.578667pt;}
.ls21{letter-spacing:1.600000pt;}
.lsb0{letter-spacing:1.621333pt;}
.ls37{letter-spacing:1.653333pt;}
.lsa0{letter-spacing:1.664000pt;}
.ls3d{letter-spacing:1.706667pt;}
.lsb3{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.760000pt;}
.lsc0{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:1.813333pt;}
.lsb8{letter-spacing:1.834667pt;}
.ls1f{letter-spacing:1.866667pt;}
.lsad{letter-spacing:1.877333pt;}
.ls34{letter-spacing:1.920000pt;}
.lsca{letter-spacing:1.962667pt;}
.ls2d{letter-spacing:1.973333pt;}
.ls43{letter-spacing:2.026667pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.133333pt;}
.ls2f{letter-spacing:2.186667pt;}
.lsa5{letter-spacing:2.218667pt;}
.ls4c{letter-spacing:2.240000pt;}
.ls13{letter-spacing:2.293333pt;}
.lscb{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.346667pt;}
.lscd{letter-spacing:2.389333pt;}
.ls41{letter-spacing:2.400000pt;}
.lsb4{letter-spacing:2.432000pt;}
.lsb{letter-spacing:2.453333pt;}
.ls4a{letter-spacing:2.506667pt;}
.lsd0{letter-spacing:2.517333pt;}
.ls52{letter-spacing:2.560000pt;}
.ls7a{letter-spacing:2.613333pt;}
.lsbe{letter-spacing:2.645333pt;}
.ls89{letter-spacing:2.666667pt;}
.lsae{letter-spacing:2.688000pt;}
.ls64{letter-spacing:2.720000pt;}
.lsd4{letter-spacing:2.730667pt;}
.ls2a{letter-spacing:2.773333pt;}
.lsaf{letter-spacing:2.816000pt;}
.ls61{letter-spacing:2.826667pt;}
.ls4d{letter-spacing:2.880000pt;}
.lsc8{letter-spacing:2.901333pt;}
.ls80{letter-spacing:2.933333pt;}
.lsd5{letter-spacing:2.944000pt;}
.ls88{letter-spacing:2.986667pt;}
.ls3a{letter-spacing:3.040000pt;}
.lsce{letter-spacing:3.072000pt;}
.ls3c{letter-spacing:3.093333pt;}
.ls51{letter-spacing:3.200000pt;}
.lsc2{letter-spacing:3.242667pt;}
.ls85{letter-spacing:3.253333pt;}
.ls4f{letter-spacing:3.306667pt;}
.lsab{letter-spacing:3.328000pt;}
.ls94{letter-spacing:3.360000pt;}
.lsd2{letter-spacing:3.370667pt;}
.lsf{letter-spacing:3.413333pt;}
.lscf{letter-spacing:3.456000pt;}
.ls50{letter-spacing:3.466667pt;}
.lsc1{letter-spacing:3.498667pt;}
.ls3b{letter-spacing:3.520000pt;}
.lsd3{letter-spacing:3.541333pt;}
.ls29{letter-spacing:3.626667pt;}
.lsa{letter-spacing:3.680000pt;}
.lsc7{letter-spacing:3.712000pt;}
.ls44{letter-spacing:3.733333pt;}
.lsc5{letter-spacing:3.754667pt;}
.ls7b{letter-spacing:3.786667pt;}
.lsc9{letter-spacing:3.968000pt;}
.lsd6{letter-spacing:4.010667pt;}
.ls60{letter-spacing:4.053333pt;}
.ls87{letter-spacing:4.160000pt;}
.ls42{letter-spacing:4.213333pt;}
.lsa4{letter-spacing:4.394667pt;}
.ls8f{letter-spacing:4.426667pt;}
.lsa9{letter-spacing:4.437333pt;}
.lsc3{letter-spacing:4.480000pt;}
.lsbf{letter-spacing:4.693333pt;}
.ls8e{letter-spacing:4.746667pt;}
.ls7f{letter-spacing:4.800000pt;}
.ls63{letter-spacing:4.853333pt;}
.ls86{letter-spacing:4.906667pt;}
.ls91{letter-spacing:5.066667pt;}
.ls1c{letter-spacing:5.226667pt;}
.ls92{letter-spacing:5.333333pt;}
.ls8d{letter-spacing:5.386667pt;}
.ls81{letter-spacing:5.760000pt;}
.ls95{letter-spacing:6.506667pt;}
.ls96{letter-spacing:6.773333pt;}
.ls93{letter-spacing:6.826667pt;}
.ls0{letter-spacing:51.947200pt;}
.ls1{letter-spacing:52.199712pt;}
.ls2{letter-spacing:52.918645pt;}
.ls77{letter-spacing:84.949333pt;}
.ls47{letter-spacing:271.146667pt;}
.ws94{word-spacing:-42.666667pt;}
.ws0{word-spacing:-31.284267pt;}
.ws52{word-spacing:-16.800000pt;}
.ws51{word-spacing:-16.640000pt;}
.ws73{word-spacing:-16.213333pt;}
.wsde{word-spacing:-16.053333pt;}
.ws30{word-spacing:-15.786667pt;}
.wsd2{word-spacing:-15.466667pt;}
.ws31{word-spacing:-15.360000pt;}
.ws2f{word-spacing:-15.200000pt;}
.ws7f{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.wsba{word-spacing:-14.773333pt;}
.ws12{word-spacing:-14.666667pt;}
.wsd3{word-spacing:-14.506667pt;}
.wsf{word-spacing:-14.346667pt;}
.ws2c{word-spacing:-14.240000pt;}
.ws11b{word-spacing:-14.122667pt;}
.ws74{word-spacing:-14.080000pt;}
.wsd1{word-spacing:-13.973333pt;}
.wsd{word-spacing:-13.706667pt;}
.ws2a{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.546667pt;}
.ws2b{word-spacing:-13.493333pt;}
.ws12e{word-spacing:-13.482667pt;}
.ws10{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws53{word-spacing:-13.173333pt;}
.ws118{word-spacing:-13.056000pt;}
.wsd0{word-spacing:-12.960000pt;}
.ws116{word-spacing:-12.629333pt;}
.ws117{word-spacing:-12.586667pt;}
.ws12b{word-spacing:-12.501333pt;}
.ws12d{word-spacing:-12.373333pt;}
.wse1{word-spacing:-12.074667pt;}
.ws11a{word-spacing:-12.032000pt;}
.wsfe{word-spacing:-11.946667pt;}
.ws12c{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.861333pt;}
.ws12a{word-spacing:-11.776000pt;}
.wse5{word-spacing:-11.733333pt;}
.wse2{word-spacing:-11.690667pt;}
.wsfd{word-spacing:-11.605333pt;}
.ws75{word-spacing:-11.520000pt;}
.wse4{word-spacing:-11.477333pt;}
.ws119{word-spacing:-11.221333pt;}
.wse7{word-spacing:-11.178667pt;}
.ws5{word-spacing:-11.120000pt;}
.ws101{word-spacing:-11.093333pt;}
.ws128{word-spacing:-11.008000pt;}
.wsff{word-spacing:-10.922667pt;}
.ws100{word-spacing:-10.880000pt;}
.wse3{word-spacing:-10.752000pt;}
.wse6{word-spacing:-10.709333pt;}
.ws46{word-spacing:-10.666667pt;}
.ws129{word-spacing:-10.624000pt;}
.ws1{word-spacing:-8.717016pt;}
.ws81{word-spacing:-8.519573pt;}
.ws2d{word-spacing:-8.301920pt;}
.ws82{word-spacing:-8.239733pt;}
.wsa1{word-spacing:-8.208640pt;}
.ws80{word-spacing:-8.146453pt;}
.ws83{word-spacing:-8.053173pt;}
.ws50{word-spacing:-8.022080pt;}
.ws2e{word-spacing:-7.773333pt;}
.ws62{word-spacing:-7.743536pt;}
.ws65{word-spacing:-7.608007pt;}
.ws66{word-spacing:-7.436908pt;}
.ws64{word-spacing:-6.841733pt;}
.wsa3{word-spacing:-6.218667pt;}
.ws63{word-spacing:-6.200133pt;}
.ws127{word-spacing:-3.456000pt;}
.wsd4{word-spacing:-3.253333pt;}
.wsda{word-spacing:-2.986667pt;}
.wsf6{word-spacing:-2.816000pt;}
.ws61{word-spacing:-2.601828pt;}
.ws8{word-spacing:-2.565333pt;}
.ws11f{word-spacing:-2.517333pt;}
.ws58{word-spacing:-2.506667pt;}
.wsee{word-spacing:-2.432000pt;}
.wsea{word-spacing:-2.400000pt;}
.ws60{word-spacing:-2.385009pt;}
.ws5c{word-spacing:-2.346667pt;}
.ws38{word-spacing:-2.186667pt;}
.wse9{word-spacing:-2.133333pt;}
.ws9{word-spacing:-2.072000pt;}
.ws39{word-spacing:-1.973333pt;}
.ws11e{word-spacing:-1.962667pt;}
.ws121{word-spacing:-1.920000pt;}
.ws55{word-spacing:-1.866667pt;}
.ws135{word-spacing:-1.834667pt;}
.wsd8{word-spacing:-1.813333pt;}
.ws23{word-spacing:-1.760000pt;}
.wsc2{word-spacing:-1.653333pt;}
.wsfa{word-spacing:-1.621333pt;}
.ws93{word-spacing:-1.600000pt;}
.wseb{word-spacing:-1.536000pt;}
.ws126{word-spacing:-1.365333pt;}
.ws41{word-spacing:-1.333333pt;}
.ws10a{word-spacing:-1.322667pt;}
.wsc0{word-spacing:-1.280000pt;}
.ws136{word-spacing:-1.237333pt;}
.ws1f{word-spacing:-1.226667pt;}
.wsef{word-spacing:-1.194667pt;}
.ws134{word-spacing:-1.109333pt;}
.ws112{word-spacing:-1.066667pt;}
.wscc{word-spacing:-1.013333pt;}
.wsb{word-spacing:-1.008000pt;}
.wsc8{word-spacing:-0.960000pt;}
.ws109{word-spacing:-0.938667pt;}
.ws42{word-spacing:-0.906667pt;}
.ws120{word-spacing:-0.896000pt;}
.ws43{word-spacing:-0.853333pt;}
.wsed{word-spacing:-0.810667pt;}
.ws5b{word-spacing:-0.800000pt;}
.wsb9{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.746667pt;}
.ws10b{word-spacing:-0.725333pt;}
.wsec{word-spacing:-0.682667pt;}
.ws8d{word-spacing:-0.640000pt;}
.ws11c{word-spacing:-0.597333pt;}
.wsbf{word-spacing:-0.586667pt;}
.ws6a{word-spacing:-0.557535pt;}
.wsbd{word-spacing:-0.533333pt;}
.wsd6{word-spacing:-0.480000pt;}
.ws12f{word-spacing:-0.469333pt;}
.ws56{word-spacing:-0.426667pt;}
.ws103{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.373333pt;}
.ws131{word-spacing:-0.341333pt;}
.ws18{word-spacing:-0.320000pt;}
.ws114{word-spacing:-0.298667pt;}
.ws1c{word-spacing:-0.266667pt;}
.wsf1{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.170931pt;}
.ws104{word-spacing:-0.170667pt;}
.ws3f{word-spacing:-0.160000pt;}
.wsf8{word-spacing:-0.128000pt;}
.ws6f{word-spacing:-0.107006pt;}
.ws40{word-spacing:-0.106667pt;}
.wsf2{word-spacing:-0.085333pt;}
.ws6c{word-spacing:-0.054734pt;}
.ws5a{word-spacing:-0.053333pt;}
.wsf3{word-spacing:-0.042667pt;}
.ws6d{word-spacing:-0.027367pt;}
.ws7{word-spacing:0.000000pt;}
.ws71{word-spacing:0.026751pt;}
.ws6e{word-spacing:0.027367pt;}
.ws110{word-spacing:0.042667pt;}
.ws57{word-spacing:0.053333pt;}
.ws137{word-spacing:0.085333pt;}
.wsc{word-spacing:0.106667pt;}
.ws102{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.136835pt;}
.ws70{word-spacing:0.251992pt;}
.wsc9{word-spacing:0.320000pt;}
.ws133{word-spacing:0.384000pt;}
.ws132{word-spacing:0.426667pt;}
.wsc4{word-spacing:0.480000pt;}
.wsf9{word-spacing:0.512000pt;}
.ws36{word-spacing:0.533333pt;}
.ws5e{word-spacing:0.586667pt;}
.ws105{word-spacing:0.597333pt;}
.wsa{word-spacing:0.616000pt;}
.wsa0{word-spacing:0.640000pt;}
.ws11d{word-spacing:0.682667pt;}
.ws3d{word-spacing:0.693333pt;}
.ws59{word-spacing:0.746667pt;}
.ws139{word-spacing:0.768000pt;}
.ws10e{word-spacing:0.810667pt;}
.ws1e{word-spacing:0.853333pt;}
.wsc3{word-spacing:0.960000pt;}
.wsf5{word-spacing:0.981333pt;}
.ws7a{word-spacing:1.013333pt;}
.ws107{word-spacing:1.024000pt;}
.ws78{word-spacing:1.066667pt;}
.ws69{word-spacing:1.109333pt;}
.ws8e{word-spacing:1.173333pt;}
.wsfb{word-spacing:1.194667pt;}
.ws7d{word-spacing:1.226667pt;}
.ws106{word-spacing:1.237333pt;}
.ws10d{word-spacing:1.280000pt;}
.ws68{word-spacing:1.322667pt;}
.ws8c{word-spacing:1.333333pt;}
.ws14{word-spacing:1.386667pt;}
.wsbb{word-spacing:1.440000pt;}
.wsf4{word-spacing:1.450667pt;}
.ws67{word-spacing:1.493333pt;}
.ws4f{word-spacing:1.578667pt;}
.ws34{word-spacing:1.600000pt;}
.ws10c{word-spacing:1.621333pt;}
.wse8{word-spacing:1.653333pt;}
.ws123{word-spacing:1.664000pt;}
.ws35{word-spacing:1.706667pt;}
.ws21{word-spacing:1.813333pt;}
.ws108{word-spacing:1.834667pt;}
.ws33{word-spacing:1.866667pt;}
.ws3e{word-spacing:1.920000pt;}
.ws124{word-spacing:1.962667pt;}
.wscf{word-spacing:2.080000pt;}
.ws76{word-spacing:2.133333pt;}
.ws10f{word-spacing:2.176000pt;}
.ws5f{word-spacing:2.186667pt;}
.wsf7{word-spacing:2.218667pt;}
.ws19{word-spacing:2.240000pt;}
.ws138{word-spacing:2.261333pt;}
.ws26{word-spacing:2.293333pt;}
.ws3a{word-spacing:2.346667pt;}
.ws8b{word-spacing:2.400000pt;}
.wsd5{word-spacing:2.453333pt;}
.ws111{word-spacing:2.474667pt;}
.ws7c{word-spacing:2.506667pt;}
.ws115{word-spacing:2.517333pt;}
.wsc1{word-spacing:2.560000pt;}
.wsdf{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.645333pt;}
.wsbc{word-spacing:2.666667pt;}
.wsfc{word-spacing:2.688000pt;}
.ws1a{word-spacing:2.720000pt;}
.wse0{word-spacing:2.773333pt;}
.ws1d{word-spacing:2.826667pt;}
.wsf0{word-spacing:2.858667pt;}
.ws17{word-spacing:2.880000pt;}
.ws122{word-spacing:2.901333pt;}
.ws24{word-spacing:2.933333pt;}
.ws45{word-spacing:3.040000pt;}
.ws77{word-spacing:3.093333pt;}
.ws130{word-spacing:3.114667pt;}
.ws125{word-spacing:3.157333pt;}
.ws32{word-spacing:3.200000pt;}
.wsca{word-spacing:3.253333pt;}
.ws92{word-spacing:3.306667pt;}
.ws113{word-spacing:3.328000pt;}
.wsc5{word-spacing:3.360000pt;}
.ws27{word-spacing:3.413333pt;}
.ws7e{word-spacing:3.498667pt;}
.wsc7{word-spacing:3.520000pt;}
.ws7b{word-spacing:3.541333pt;}
.ws5d{word-spacing:3.626667pt;}
.ws79{word-spacing:3.680000pt;}
.wsce{word-spacing:3.733333pt;}
.wsb8{word-spacing:3.786667pt;}
.ws16{word-spacing:3.840000pt;}
.ws90{word-spacing:3.893333pt;}
.ws8f{word-spacing:3.946667pt;}
.ws44{word-spacing:4.000000pt;}
.ws9f{word-spacing:4.053333pt;}
.ws20{word-spacing:4.160000pt;}
.ws37{word-spacing:4.213333pt;}
.wsd7{word-spacing:4.266667pt;}
.ws91{word-spacing:4.320000pt;}
.ws15{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.wsdd{word-spacing:4.533333pt;}
.wsd9{word-spacing:4.800000pt;}
.ws28{word-spacing:4.906667pt;}
.wscd{word-spacing:4.960000pt;}
.ws3c{word-spacing:5.173333pt;}
.ws54{word-spacing:5.226667pt;}
.ws22{word-spacing:5.600000pt;}
.wsdc{word-spacing:6.026667pt;}
.wsbe{word-spacing:6.506667pt;}
.ws29{word-spacing:6.613333pt;}
.wscb{word-spacing:6.720000pt;}
.wsdb{word-spacing:6.880000pt;}
.wsc6{word-spacing:6.933333pt;}
.wsac{word-spacing:22.741333pt;}
.wsaa{word-spacing:29.866667pt;}
.wsb2{word-spacing:30.634667pt;}
.wsa5{word-spacing:35.754667pt;}
.wsa9{word-spacing:36.949333pt;}
.ws2{word-spacing:43.841803pt;}
.wsa8{word-spacing:48.042667pt;}
.wsa7{word-spacing:52.394667pt;}
.ws84{word-spacing:54.226667pt;}
.wsa4{word-spacing:57.088000pt;}
.wsa6{word-spacing:59.392000pt;}
.wsb7{word-spacing:62.250667pt;}
.ws88{word-spacing:63.877333pt;}
.wsb0{word-spacing:64.597333pt;}
.wsb6{word-spacing:66.986667pt;}
.wsa2{word-spacing:71.253333pt;}
.wsab{word-spacing:74.282667pt;}
.ws86{word-spacing:77.392000pt;}
.ws85{word-spacing:83.552000pt;}
.ws4b{word-spacing:91.904000pt;}
.ws89{word-spacing:100.501333pt;}
.ws9d{word-spacing:129.920000pt;}
.ws9e{word-spacing:140.586667pt;}
.ws96{word-spacing:151.253333pt;}
.ws99{word-spacing:152.405333pt;}
.ws9c{word-spacing:158.336000pt;}
.ws8a{word-spacing:161.504000pt;}
.ws97{word-spacing:165.461333pt;}
.ws9b{word-spacing:165.462400pt;}
.ws9a{word-spacing:166.229333pt;}
.wsb3{word-spacing:167.338667pt;}
.wsb1{word-spacing:169.685333pt;}
.wsae{word-spacing:172.032000pt;}
.wsad{word-spacing:176.725333pt;}
.wsaf{word-spacing:176.768000pt;}
.wsb4{word-spacing:179.157333pt;}
.wsb5{word-spacing:179.200000pt;}
.ws87{word-spacing:189.914667pt;}
.ws95{word-spacing:196.266667pt;}
.ws47{word-spacing:226.517333pt;}
.ws4d{word-spacing:238.378667pt;}
.ws4a{word-spacing:252.970667pt;}
.ws4c{word-spacing:253.781333pt;}
.ws49{word-spacing:259.712000pt;}
.ws98{word-spacing:376.576000pt;}
.ws48{word-spacing:493.952000pt;}
._c{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._2f{margin-left:-1259.805677pt;}
._31{margin-left:-510.571494pt;}
._8{margin-left:-6.986667pt;}
._6{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.107733pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._4{width:0.952000pt;}
._2{width:2.072000pt;}
._a{width:3.306667pt;}
._7{width:4.693333pt;}
._9{width:5.653333pt;}
._b{width:6.635733pt;}
._60{width:8.618667pt;}
._77{width:33.189333pt;}
._79{width:34.282667pt;}
._78{width:40.421333pt;}
._7c{width:41.449003pt;}
._7f{width:42.446400pt;}
._7e{width:47.280000pt;}
._7b{width:48.810667pt;}
._6f{width:50.005333pt;}
._74{width:52.352000pt;}
._5f{width:54.186667pt;}
._70{width:55.509333pt;}
._72{width:56.661333pt;}
._66{width:57.799467pt;}
._6e{width:59.168000pt;}
._73{width:61.866667pt;}
._71{width:66.709333pt;}
._34{width:72.202667pt;}
._33{width:75.301333pt;}
._39{width:77.354667pt;}
._7a{width:78.704000pt;}
._35{width:80.117333pt;}
._37{width:81.200000pt;}
._32{width:83.589333pt;}
._7d{width:84.737664pt;}
._38{width:85.680000pt;}
._69{width:87.162731pt;}
._36{width:89.578667pt;}
._25{width:97.834667pt;}
._e{width:99.029333pt;}
._3c{width:109.834667pt;}
._63{width:110.762667pt;}
._42{width:111.680533pt;}
._12{width:119.168000pt;}
._67{width:121.333333pt;}
._68{width:122.585067pt;}
._44{width:123.605333pt;}
._5e{width:138.624000pt;}
._3b{width:146.048000pt;}
._3d{width:148.101333pt;}
._59{width:151.253333pt;}
._3a{width:156.426667pt;}
._41{width:158.480000pt;}
._3e{width:160.533333pt;}
._58{width:161.920000pt;}
._3f{width:164.677333pt;}
._40{width:166.768000pt;}
._52{width:169.002667pt;}
._76{width:170.922667pt;}
._48{width:176.128000pt;}
._5b{width:179.669333pt;}
._50{width:186.794667pt;}
._4b{width:190.336000pt;}
._56{width:191.530667pt;}
._49{width:197.461333pt;}
._51{width:208.128000pt;}
._4a{width:218.794667pt;}
._75{width:222.421333pt;}
._45{width:228.736000pt;}
._5a{width:234.538667pt;}
._2e{width:238.378667pt;}
._43{width:241.962667pt;}
._57{width:248.746667pt;}
._62{width:250.752000pt;}
._15{width:259.712000pt;}
._16{width:270.378667pt;}
._29{width:273.536000pt;}
._64{width:318.819733pt;}
._5c{width:323.413333pt;}
._4d{width:358.912000pt;}
._4e{width:361.258667pt;}
._4c{width:370.773333pt;}
._55{width:373.120000pt;}
._4f{width:375.466667pt;}
._47{width:377.856000pt;}
._53{width:380.202667pt;}
._54{width:382.592000pt;}
._46{width:388.935467pt;}
._6d{width:427.989333pt;}
._11{width:437.034667pt;}
._65{width:458.830400pt;}
._23{width:463.445333pt;}
._1c{width:470.613333pt;}
._1a{width:476.288000pt;}
._1b{width:478.592000pt;}
._2a{width:480.085333pt;}
._27{width:481.387733pt;}
._6a{width:484.857067pt;}
._18{width:488.149333pt;}
._24{width:490.496000pt;}
._1e{width:492.842667pt;}
._14{width:495.232000pt;}
._20{width:497.578667pt;}
._22{width:499.968000pt;}
._17{width:506.197333pt;}
._10{width:507.776000pt;}
._19{width:518.016000pt;}
._13{width:520.362667pt;}
._1d{width:525.098667pt;}
._1f{width:544.042667pt;}
._28{width:547.584000pt;}
._f{width:555.861333pt;}
._2b{width:564.224000pt;}
._21{width:599.429333pt;}
._6b{width:615.765333pt;}
._2c{width:617.123733pt;}
._26{width:621.098667pt;}
._61{width:959.434133pt;}
._6c{width:974.080000pt;}
._5d{width:1157.674667pt;}
._2d{width:1322.112000pt;}
._30{width:2196.619712pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.800533pt;}
.fs11{font-size:24.874667pt;}
.fs10{font-size:26.751467pt;}
.fsd{font-size:27.366933pt;}
.fsb{font-size:30.974145pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fsf{font-size:35.998811pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:42.732800pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y329{bottom:71.345333pt;}
.y13c{bottom:73.882667pt;}
.y2d3{bottom:74.342533pt;}
.y71{bottom:74.462533pt;}
.y65{bottom:74.464533pt;}
.y1a9{bottom:74.470400pt;}
.y2af{bottom:74.475867pt;}
.y247{bottom:74.584533pt;}
.y27a{bottom:74.588533pt;}
.y108{bottom:74.594533pt;}
.ya1{bottom:74.595867pt;}
.yc7{bottom:74.714533pt;}
.y138{bottom:74.874533pt;}
.y2d{bottom:78.242667pt;}
.y2e8{bottom:79.219467pt;}
.y200{bottom:82.156933pt;}
.y1d1{bottom:82.373067pt;}
.y1e8{bottom:82.618800pt;}
.y328{bottom:84.678667pt;}
.y13b{bottom:87.877333pt;}
.y1a8{bottom:88.465067pt;}
.y2d2{bottom:90.342533pt;}
.y70{bottom:90.462533pt;}
.y64{bottom:90.464533pt;}
.y2ae{bottom:90.475867pt;}
.y246{bottom:90.584533pt;}
.y279{bottom:90.588533pt;}
.y107{bottom:90.594533pt;}
.ya0{bottom:90.595867pt;}
.yc6{bottom:90.714533pt;}
.y137{bottom:90.874533pt;}
.y2c{bottom:91.576000pt;}
.y2e7{bottom:92.552800pt;}
.y1ff{bottom:96.603067pt;}
.y1d0{bottom:97.060400pt;}
.y327{bottom:98.012000pt;}
.ye2{bottom:100.599333pt;}
.y13a{bottom:101.872000pt;}
.y2e6{bottom:105.886133pt;}
.y2d1{bottom:106.342533pt;}
.y6f{bottom:106.462533pt;}
.y63{bottom:106.464533pt;}
.y2ad{bottom:106.475867pt;}
.y245{bottom:106.584533pt;}
.y278{bottom:106.588533pt;}
.y106{bottom:106.594533pt;}
.y9f{bottom:106.595867pt;}
.yc5{bottom:106.714533pt;}
.y136{bottom:106.874533pt;}
.y1e7{bottom:108.400133pt;}
.y1cf{bottom:110.173733pt;}
.y1fe{bottom:111.045733pt;}
.y326{bottom:111.345333pt;}
.y139{bottom:115.866667pt;}
.y2e5{bottom:119.219467pt;}
.y2d0{bottom:122.342533pt;}
.y6e{bottom:122.462533pt;}
.y62{bottom:122.464533pt;}
.y2ac{bottom:122.475867pt;}
.y244{bottom:122.584533pt;}
.y277{bottom:122.588533pt;}
.y105{bottom:122.594533pt;}
.y9e{bottom:122.595867pt;}
.yc4{bottom:122.714533pt;}
.y1e6{bottom:122.842800pt;}
.y135{bottom:122.874533pt;}
.y325{bottom:124.678667pt;}
.y1ce{bottom:124.836400pt;}
.y1fd{bottom:125.499067pt;}
.ye1{bottom:126.380667pt;}
.y2e4{bottom:132.552800pt;}
.y165{bottom:137.909467pt;}
.y1cd{bottom:137.949733pt;}
.y324{bottom:138.012000pt;}
.y2cf{bottom:138.342533pt;}
.y6d{bottom:138.462533pt;}
.y61{bottom:138.464533pt;}
.y2ab{bottom:138.475867pt;}
.y243{bottom:138.584533pt;}
.y276{bottom:138.588533pt;}
.y9d{bottom:138.595867pt;}
.yc3{bottom:138.714533pt;}
.y134{bottom:138.874533pt;}
.y1fc{bottom:139.941733pt;}
.y2e3{bottom:145.886133pt;}
.y1e5{bottom:148.624133pt;}
.y323{bottom:151.345333pt;}
.ye0{bottom:152.162000pt;}
.y1cc{bottom:152.612400pt;}
.y104{bottom:154.234533pt;}
.y2ce{bottom:154.342533pt;}
.y1fb{bottom:154.387867pt;}
.y6c{bottom:154.462533pt;}
.y60{bottom:154.464533pt;}
.y2aa{bottom:154.475867pt;}
.y242{bottom:154.584533pt;}
.y275{bottom:154.588533pt;}
.y9c{bottom:154.595867pt;}
.yc2{bottom:154.714533pt;}
.y133{bottom:154.874533pt;}
.y2e2{bottom:159.219467pt;}
.y1e4{bottom:163.119467pt;}
.y164{bottom:163.294533pt;}
.y322{bottom:164.678667pt;}
.y1cb{bottom:165.725733pt;}
.y1fa{bottom:168.834133pt;}
.y2cd{bottom:170.342533pt;}
.y6b{bottom:170.462533pt;}
.y5f{bottom:170.464533pt;}
.y2a9{bottom:170.475867pt;}
.y241{bottom:170.584533pt;}
.y274{bottom:170.588533pt;}
.y28e{bottom:170.595867pt;}
.yc1{bottom:170.714533pt;}
.y132{bottom:170.874533pt;}
.y2e1{bottom:172.552800pt;}
.y2b{bottom:176.452133pt;}
.y163{bottom:176.823600pt;}
.y188{bottom:177.498583pt;}
.y1e3{bottom:177.562133pt;}
.ydf{bottom:177.943333pt;}
.y321{bottom:178.012000pt;}
.y1ca{bottom:180.388400pt;}
.y1f9{bottom:183.276800pt;}
.y2e0{bottom:185.886133pt;}
.y9b{bottom:186.235867pt;}
.y2cc{bottom:186.342533pt;}
.y6a{bottom:186.462533pt;}
.y5e{bottom:186.464533pt;}
.y2a8{bottom:186.475867pt;}
.y240{bottom:186.584533pt;}
.y273{bottom:186.588533pt;}
.y28d{bottom:186.595867pt;}
.yc0{bottom:186.714533pt;}
.y131{bottom:186.874533pt;}
.y162{bottom:190.354000pt;}
.y189{bottom:191.031531pt;}
.y320{bottom:191.345333pt;}
.y1e2{bottom:192.004800pt;}
.y2a{bottom:192.457067pt;}
.y1c9{bottom:193.501733pt;}
.y1f8{bottom:197.726400pt;}
.y2df{bottom:199.219467pt;}
.y2cb{bottom:202.342533pt;}
.y69{bottom:202.462533pt;}
.y5d{bottom:202.464533pt;}
.y2a7{bottom:202.475867pt;}
.y23f{bottom:202.584533pt;}
.y272{bottom:202.588533pt;}
.y28c{bottom:202.595867pt;}
.ybf{bottom:202.714533pt;}
.y130{bottom:202.874533pt;}
.yde{bottom:203.724667pt;}
.y161{bottom:203.881867pt;}
.y18a{bottom:204.557638pt;}
.y31f{bottom:204.678667pt;}
.y1e1{bottom:206.447467pt;}
.y1c8{bottom:208.164400pt;}
.y2de{bottom:212.552800pt;}
.y29{bottom:216.763733pt;}
.y160{bottom:217.411067pt;}
.y31e{bottom:218.012000pt;}
.y18b{bottom:218.083745pt;}
.y2ca{bottom:218.342533pt;}
.y68{bottom:218.462533pt;}
.y5c{bottom:218.464533pt;}
.y2a6{bottom:218.475867pt;}
.y23e{bottom:218.584533pt;}
.y271{bottom:218.588533pt;}
.y28b{bottom:218.595867pt;}
.ybe{bottom:218.714533pt;}
.y12f{bottom:218.874533pt;}
.y1e0{bottom:220.890133pt;}
.y1c7{bottom:221.277733pt;}
.y1f7{bottom:223.511200pt;}
.y2dd{bottom:225.886133pt;}
.ydd{bottom:229.506000pt;}
.y15f{bottom:230.941333pt;}
.y31d{bottom:231.345333pt;}
.y18c{bottom:231.609852pt;}
.y28{bottom:232.763733pt;}
.y2c9{bottom:234.342533pt;}
.y9a{bottom:234.462533pt;}
.y5b{bottom:234.464533pt;}
.y2a5{bottom:234.475867pt;}
.y23d{bottom:234.584533pt;}
.y270{bottom:234.588533pt;}
.y28a{bottom:234.595867pt;}
.ybd{bottom:234.714533pt;}
.y103{bottom:234.729200pt;}
.y12e{bottom:234.874533pt;}
.y1df{bottom:235.332800pt;}
.y1c6{bottom:235.940400pt;}
.y1f6{bottom:237.957467pt;}
.y2dc{bottom:239.219467pt;}
.ydc{bottom:243.948667pt;}
.y15e{bottom:244.470667pt;}
.y31c{bottom:244.678667pt;}
.y18d{bottom:245.142800pt;}
.y27{bottom:248.763733pt;}
.y1c5{bottom:249.053733pt;}
.y1de{bottom:249.775467pt;}
.y2c8{bottom:250.342533pt;}
.y99{bottom:250.462533pt;}
.y5a{bottom:250.464533pt;}
.y2a4{bottom:250.475867pt;}
.y23c{bottom:250.584533pt;}
.y26f{bottom:250.588533pt;}
.y289{bottom:250.595867pt;}
.ybc{bottom:250.714533pt;}
.y102{bottom:250.729200pt;}
.y12d{bottom:250.874533pt;}
.y1f5{bottom:252.400133pt;}
.y2db{bottom:252.552800pt;}
.y15d{bottom:257.998533pt;}
.y31b{bottom:258.012000pt;}
.ydb{bottom:258.391333pt;}
.y18e{bottom:258.668907pt;}
.y1c4{bottom:263.716400pt;}
.y1dd{bottom:264.218133pt;}
.y26{bottom:264.763733pt;}
.y2c7{bottom:266.342533pt;}
.y98{bottom:266.462533pt;}
.y59{bottom:266.464533pt;}
.y2a3{bottom:266.475867pt;}
.y23b{bottom:266.584533pt;}
.y26e{bottom:266.588533pt;}
.y288{bottom:266.595867pt;}
.ybb{bottom:266.714533pt;}
.y101{bottom:266.729200pt;}
.y1f4{bottom:266.853333pt;}
.y15c{bottom:271.315333pt;}
.y31a{bottom:271.345333pt;}
.y17a{bottom:271.982920pt;}
.yda{bottom:272.834000pt;}
.y1c3{bottom:276.829733pt;}
.y1dc{bottom:278.660800pt;}
.y25{bottom:280.763733pt;}
.y1f3{bottom:281.296000pt;}
.y2da{bottom:281.982533pt;}
.y2c6{bottom:282.342533pt;}
.y97{bottom:282.462533pt;}
.y58{bottom:282.464533pt;}
.y2a2{bottom:282.475867pt;}
.y12c{bottom:282.514533pt;}
.y23a{bottom:282.584533pt;}
.y26d{bottom:282.588533pt;}
.y287{bottom:282.595867pt;}
.yba{bottom:282.714533pt;}
.y100{bottom:282.729200pt;}
.y319{bottom:284.678667pt;}
.y15b{bottom:285.058000pt;}
.y187{bottom:285.734804pt;}
.yd9{bottom:287.276667pt;}
.y1c2{bottom:291.492400pt;}
.y1db{bottom:293.103467pt;}
.y1f2{bottom:295.742267pt;}
.y24{bottom:296.763733pt;}
.y318{bottom:298.012000pt;}
.y2c5{bottom:298.342533pt;}
.y96{bottom:298.462533pt;}
.y57{bottom:298.464533pt;}
.y2a1{bottom:298.475867pt;}
.y239{bottom:298.584533pt;}
.y15a{bottom:298.585867pt;}
.y26c{bottom:298.588533pt;}
.y286{bottom:298.595867pt;}
.yb9{bottom:298.714533pt;}
.yff{bottom:298.729200pt;}
.y180{bottom:299.260911pt;}
.yd8{bottom:301.719333pt;}
.y1c1{bottom:304.627600pt;}
.y1da{bottom:307.546133pt;}
.y1f1{bottom:310.188400pt;}
.y167{bottom:311.215914pt;}
.y317{bottom:311.345333pt;}
.y159{bottom:312.114933pt;}
.y23{bottom:312.763733pt;}
.y17d{bottom:312.787018pt;}
.y2c4{bottom:314.342533pt;}
.y95{bottom:314.462533pt;}
.y56{bottom:314.464533pt;}
.y2a0{bottom:314.475867pt;}
.y238{bottom:314.584533pt;}
.y26b{bottom:314.588533pt;}
.y285{bottom:314.595867pt;}
.yb8{bottom:314.714533pt;}
.yfe{bottom:314.729200pt;}
.y12b{bottom:314.741200pt;}
.y1c0{bottom:319.290267pt;}
.y1d9{bottom:321.988800pt;}
.y1f0{bottom:324.631067pt;}
.y316{bottom:324.678667pt;}
.y158{bottom:325.535600pt;}
.y181{bottom:326.210499pt;}
.yd7{bottom:327.500667pt;}
.y22{bottom:328.763733pt;}
.y2c3{bottom:330.342533pt;}
.y94{bottom:330.462533pt;}
.y55{bottom:330.464533pt;}
.y29f{bottom:330.475867pt;}
.y237{bottom:330.584533pt;}
.y26a{bottom:330.588533pt;}
.y284{bottom:330.595867pt;}
.yb7{bottom:330.714533pt;}
.yfd{bottom:330.729200pt;}
.y12a{bottom:330.741200pt;}
.y1bf{bottom:332.403600pt;}
.y1d8{bottom:336.431467pt;}
.y315{bottom:338.012000pt;}
.y1ef{bottom:339.077067pt;}
.y157{bottom:339.174533pt;}
.y182{bottom:339.852915pt;}
.y21{bottom:344.763733pt;}
.y2d9{bottom:346.102533pt;}
.y2c2{bottom:346.342533pt;}
.y93{bottom:346.462533pt;}
.y54{bottom:346.464533pt;}
.y29e{bottom:346.475867pt;}
.y236{bottom:346.584533pt;}
.y269{bottom:346.588533pt;}
.y283{bottom:346.595867pt;}
.yb6{bottom:346.714533pt;}
.yfc{bottom:346.729200pt;}
.y129{bottom:346.741200pt;}
.y1be{bottom:347.066267pt;}
.y1d7{bottom:350.874133pt;}
.y314{bottom:351.345333pt;}
.y156{bottom:352.703600pt;}
.yd6{bottom:353.282000pt;}
.y183{bottom:353.379022pt;}
.y1bd{bottom:360.179600pt;}
.y20{bottom:360.763733pt;}
.y2c1{bottom:362.342533pt;}
.y92{bottom:362.462533pt;}
.y53{bottom:362.464533pt;}
.y29d{bottom:362.475867pt;}
.y235{bottom:362.584533pt;}
.y268{bottom:362.588533pt;}
.y2bb{bottom:362.595867pt;}
.yb5{bottom:362.714533pt;}
.yfb{bottom:362.729200pt;}
.y128{bottom:362.741200pt;}
.y313{bottom:364.678667pt;}
.y155{bottom:366.182000pt;}
.y184{bottom:366.857236pt;}
.y1ee{bottom:367.087733pt;}
.yd5{bottom:367.724667pt;}
.y1bc{bottom:374.842267pt;}
.y1d6{bottom:376.655467pt;}
.y1f{bottom:376.763733pt;}
.y312{bottom:378.012000pt;}
.y2d8{bottom:378.102533pt;}
.y282{bottom:378.235867pt;}
.y2c0{bottom:378.342533pt;}
.y91{bottom:378.462533pt;}
.y52{bottom:378.464533pt;}
.y29c{bottom:378.475867pt;}
.y234{bottom:378.584533pt;}
.y267{bottom:378.588533pt;}
.y2ba{bottom:378.595867pt;}
.yb4{bottom:378.714533pt;}
.yfa{bottom:378.729200pt;}
.y127{bottom:378.741200pt;}
.y154{bottom:379.241067pt;}
.y185{bottom:379.918105pt;}
.yd4{bottom:382.167333pt;}
.y1bb{bottom:387.955600pt;}
.y311{bottom:391.345333pt;}
.y1e{bottom:392.763733pt;}
.y153{bottom:393.026800pt;}
.y186{bottom:393.704198pt;}
.y281{bottom:394.235867pt;}
.y2bf{bottom:394.342533pt;}
.y90{bottom:394.462533pt;}
.y51{bottom:394.464533pt;}
.y29b{bottom:394.475867pt;}
.y233{bottom:394.584533pt;}
.y266{bottom:394.588533pt;}
.y2b9{bottom:394.595867pt;}
.yb3{bottom:394.714533pt;}
.yf9{bottom:394.729200pt;}
.y126{bottom:394.741200pt;}
.yd3{bottom:396.610000pt;}
.y1ed{bottom:398.102533pt;}
.y1d5{bottom:402.436800pt;}
.y1ba{bottom:402.618267pt;}
.y310{bottom:404.678667pt;}
.y152{bottom:406.769467pt;}
.y17b{bottom:407.435557pt;}
.y1d{bottom:408.763733pt;}
.y2be{bottom:410.342533pt;}
.y8f{bottom:410.462533pt;}
.y50{bottom:410.464533pt;}
.y29a{bottom:410.475867pt;}
.y232{bottom:410.584533pt;}
.y265{bottom:410.588533pt;}
.y2b8{bottom:410.595867pt;}
.yb2{bottom:410.714533pt;}
.yf8{bottom:410.729200pt;}
.y125{bottom:410.741200pt;}
.yd2{bottom:411.052667pt;}
.y1ec{bottom:415.435867pt;}
.y1b9{bottom:415.731600pt;}
.y30f{bottom:418.012000pt;}
.y151{bottom:420.298667pt;}
.y17c{bottom:420.968505pt;}
.y1c{bottom:424.763733pt;}
.yd1{bottom:425.495333pt;}
.y2bd{bottom:426.342533pt;}
.y280{bottom:426.462533pt;}
.y4f{bottom:426.464533pt;}
.y299{bottom:426.475867pt;}
.y231{bottom:426.584533pt;}
.y264{bottom:426.588533pt;}
.y2b7{bottom:426.595867pt;}
.yb1{bottom:426.714533pt;}
.yf7{bottom:426.729200pt;}
.y124{bottom:426.741200pt;}
.y1b8{bottom:430.394267pt;}
.y1d4{bottom:431.229067pt;}
.y30e{bottom:431.345333pt;}
.y150{bottom:433.513067pt;}
.y17e{bottom:434.186734pt;}
.yd0{bottom:439.938000pt;}
.y1b{bottom:440.763733pt;}
.y8e{bottom:442.102533pt;}
.y2bc{bottom:442.342533pt;}
.y27f{bottom:442.462533pt;}
.y4e{bottom:442.464533pt;}
.y298{bottom:442.475867pt;}
.y230{bottom:442.584533pt;}
.y263{bottom:442.588533pt;}
.y2b6{bottom:442.595867pt;}
.yb0{bottom:442.714533pt;}
.yf6{bottom:442.729200pt;}
.y123{bottom:442.741200pt;}
.y1b7{bottom:443.507600pt;}
.y30d{bottom:444.678667pt;}
.y166{bottom:444.917067pt;}
.y14f{bottom:447.092800pt;}
.y17f{bottom:447.767575pt;}
.y1d3{bottom:448.562400pt;}
.y1a{bottom:456.763733pt;}
.y30c{bottom:458.012000pt;}
.y2d7{bottom:458.102533pt;}
.y1b6{bottom:458.170267pt;}
.y27e{bottom:458.462533pt;}
.y4d{bottom:458.464533pt;}
.y297{bottom:458.475867pt;}
.y22f{bottom:458.584533pt;}
.y262{bottom:458.588533pt;}
.y2b5{bottom:458.595867pt;}
.yaf{bottom:458.715867pt;}
.yf5{bottom:458.729200pt;}
.y122{bottom:458.741200pt;}
.y14e{bottom:460.415867pt;}
.y179{bottom:461.081588pt;}
.ycf{bottom:465.719333pt;}
.y1d2{bottom:465.895733pt;}
.y1b5{bottom:471.283600pt;}
.y30b{bottom:471.345333pt;}
.y19{bottom:472.763733pt;}
.y8d{bottom:473.982533pt;}
.y213{bottom:474.074133pt;}
.y14d{bottom:474.152267pt;}
.y27d{bottom:474.462533pt;}
.y4c{bottom:474.464533pt;}
.y296{bottom:474.475867pt;}
.y22e{bottom:474.584533pt;}
.y261{bottom:474.588533pt;}
.y2b4{bottom:474.595867pt;}
.yae{bottom:474.715867pt;}
.y121{bottom:474.741200pt;}
.y178{bottom:474.812947pt;}
.y30a{bottom:484.678667pt;}
.y1b4{bottom:485.946267pt;}
.y14c{bottom:487.945467pt;}
.y177{bottom:488.605881pt;}
.y18{bottom:488.763733pt;}
.y212{bottom:490.031467pt;}
.yf4{bottom:490.369200pt;}
.y27c{bottom:490.462533pt;}
.y4b{bottom:490.464533pt;}
.y295{bottom:490.475867pt;}
.y22d{bottom:490.584533pt;}
.y260{bottom:490.588533pt;}
.y2b3{bottom:490.595867pt;}
.yad{bottom:490.715867pt;}
.y120{bottom:490.741200pt;}
.yce{bottom:491.500667pt;}
.y34b{bottom:498.012000pt;}
.y309{bottom:498.014133pt;}
.y14b{bottom:501.474533pt;}
.y1ea{bottom:501.850800pt;}
.y176{bottom:502.138829pt;}
.y17{bottom:504.763733pt;}
.y211{bottom:505.988800pt;}
.y2d6{bottom:506.102533pt;}
.y27b{bottom:506.462533pt;}
.y4a{bottom:506.464533pt;}
.y294{bottom:506.475867pt;}
.y22c{bottom:506.584533pt;}
.y25f{bottom:506.588533pt;}
.y2b2{bottom:506.595867pt;}
.yac{bottom:506.715867pt;}
.y11f{bottom:506.741200pt;}
.y34a{bottom:511.345333pt;}
.y308{bottom:511.347467pt;}
.y1b3{bottom:513.292933pt;}
.y14a{bottom:514.996400pt;}
.y175{bottom:515.658095pt;}
.y1e9{bottom:515.845467pt;}
.ycd{bottom:517.282000pt;}
.y16{bottom:520.763733pt;}
.y210{bottom:521.946133pt;}
.y8c{bottom:522.462533pt;}
.y49{bottom:522.464533pt;}
.y293{bottom:522.475867pt;}
.y22b{bottom:522.584533pt;}
.y25e{bottom:522.588533pt;}
.yf3{bottom:522.595867pt;}
.y11e{bottom:522.741200pt;}
.y349{bottom:524.678667pt;}
.y307{bottom:524.680800pt;}
.y149{bottom:528.532800pt;}
.y174{bottom:529.197885pt;}
.y15{bottom:536.763733pt;}
.y20f{bottom:537.903467pt;}
.y348{bottom:538.012000pt;}
.y306{bottom:538.014133pt;}
.yab{bottom:538.355867pt;}
.y8b{bottom:538.462533pt;}
.y48{bottom:538.464533pt;}
.y292{bottom:538.475867pt;}
.y18f{bottom:538.508533pt;}
.y22a{bottom:538.584533pt;}
.y25d{bottom:538.588533pt;}
.yf2{bottom:538.595867pt;}
.y11d{bottom:538.741200pt;}
.y148{bottom:542.062000pt;}
.y173{bottom:542.723992pt;}
.y1b2{bottom:543.875867pt;}
.ycc{bottom:546.074133pt;}
.y347{bottom:551.345333pt;}
.y305{bottom:551.347467pt;}
.y14{bottom:552.763733pt;}
.y20e{bottom:553.860800pt;}
.y8a{bottom:554.462533pt;}
.y47{bottom:554.464533pt;}
.y291{bottom:554.475867pt;}
.y229{bottom:554.584533pt;}
.y25c{bottom:554.588533pt;}
.yf1{bottom:554.595867pt;}
.y11c{bottom:554.741200pt;}
.y147{bottom:555.592267pt;}
.y172{bottom:556.250098pt;}
.y1b1{bottom:561.209200pt;}
.ycb{bottom:563.407467pt;}
.y346{bottom:564.678667pt;}
.y304{bottom:564.680800pt;}
.y146{bottom:569.121467pt;}
.y171{bottom:569.783047pt;}
.y20d{bottom:569.818133pt;}
.yaa{bottom:570.235867pt;}
.y89{bottom:570.462533pt;}
.y46{bottom:570.464533pt;}
.y290{bottom:570.475867pt;}
.y228{bottom:570.584533pt;}
.y25b{bottom:570.588533pt;}
.yf0{bottom:570.595867pt;}
.y11b{bottom:570.741200pt;}
.y345{bottom:578.012000pt;}
.y303{bottom:578.014133pt;}
.y145{bottom:582.230933pt;}
.y170{bottom:582.891808pt;}
.y20c{bottom:585.775467pt;}
.y88{bottom:586.462533pt;}
.y45{bottom:586.464533pt;}
.y28f{bottom:586.475867pt;}
.y227{bottom:586.584533pt;}
.y25a{bottom:586.588533pt;}
.yef{bottom:586.595867pt;}
.y344{bottom:591.345333pt;}
.y302{bottom:591.347467pt;}
.y13{bottom:592.904267pt;}
.y144{bottom:595.607200pt;}
.y16f{bottom:596.267397pt;}
.y20b{bottom:601.738000pt;}
.y2d5{bottom:602.102533pt;}
.y11a{bottom:602.381200pt;}
.y87{bottom:602.462533pt;}
.y44{bottom:602.464533pt;}
.y1a7{bottom:602.475867pt;}
.y226{bottom:602.584533pt;}
.yee{bottom:602.595867pt;}
.y259{bottom:602.597867pt;}
.y12{bottom:603.971600pt;}
.yc9{bottom:604.171200pt;}
.y343{bottom:604.678667pt;}
.y301{bottom:604.680800pt;}
.y143{bottom:609.290533pt;}
.y16e{bottom:609.950863pt;}
.y20a{bottom:617.695333pt;}
.y342{bottom:618.012000pt;}
.y300{bottom:618.014133pt;}
.yc8{bottom:618.165867pt;}
.y86{bottom:618.462533pt;}
.y43{bottom:618.464533pt;}
.y1a6{bottom:618.475867pt;}
.y225{bottom:618.584533pt;}
.yed{bottom:618.595867pt;}
.y258{bottom:618.597867pt;}
.y142{bottom:622.613467pt;}
.y16d{bottom:623.271718pt;}
.y341{bottom:631.345333pt;}
.y2ff{bottom:631.347467pt;}
.y11{bottom:632.163200pt;}
.y209{bottom:633.652667pt;}
.y85{bottom:634.462533pt;}
.y42{bottom:634.464533pt;}
.y1a5{bottom:634.475867pt;}
.y224{bottom:634.584533pt;}
.yec{bottom:634.595867pt;}
.y257{bottom:634.597867pt;}
.y119{bottom:634.607867pt;}
.y141{bottom:636.451200pt;}
.y16c{bottom:637.112545pt;}
.y340{bottom:644.678667pt;}
.y2fe{bottom:644.680800pt;}
.y10{bottom:648.985733pt;}
.y208{bottom:649.610000pt;}
.y140{bottom:649.672933pt;}
.y16b{bottom:650.330773pt;}
.y84{bottom:650.462533pt;}
.y41{bottom:650.464533pt;}
.y1a4{bottom:650.475867pt;}
.y223{bottom:650.584533pt;}
.yeb{bottom:650.595867pt;}
.y256{bottom:650.597867pt;}
.y118{bottom:650.607867pt;}
.y33f{bottom:658.012000pt;}
.y2fd{bottom:658.014133pt;}
.yf{bottom:660.985733pt;}
.y13f{bottom:663.099733pt;}
.y16a{bottom:663.754254pt;}
.y207{bottom:665.567333pt;}
.y83{bottom:666.462533pt;}
.y40{bottom:666.464533pt;}
.y1a3{bottom:666.475867pt;}
.y222{bottom:666.584533pt;}
.yea{bottom:666.595867pt;}
.y255{bottom:666.597867pt;}
.y117{bottom:666.607867pt;}
.ye{bottom:668.163200pt;}
.y33e{bottom:671.345333pt;}
.y2fc{bottom:671.347467pt;}
.y13e{bottom:677.194133pt;}
.y169{bottom:677.848225pt;}
.y206{bottom:681.524667pt;}
.y82{bottom:682.462533pt;}
.y3f{bottom:682.464533pt;}
.y1a2{bottom:682.475867pt;}
.y221{bottom:682.584533pt;}
.ye9{bottom:682.595867pt;}
.y254{bottom:682.597867pt;}
.y116{bottom:682.607867pt;}
.y33d{bottom:684.678667pt;}
.y2fb{bottom:684.680800pt;}
.yd{bottom:684.985733pt;}
.y199{bottom:688.792557pt;}
.y13d{bottom:690.884800pt;}
.y168{bottom:691.538533pt;}
.yc{bottom:696.985733pt;}
.y205{bottom:697.482000pt;}
.y33c{bottom:698.012000pt;}
.y2fa{bottom:698.014133pt;}
.y81{bottom:698.462533pt;}
.y3e{bottom:698.464533pt;}
.y1a1{bottom:698.475867pt;}
.y220{bottom:698.584533pt;}
.ye8{bottom:698.595867pt;}
.y253{bottom:698.597867pt;}
.y115{bottom:698.607867pt;}
.yb{bottom:708.985733pt;}
.y33b{bottom:711.345333pt;}
.y2f9{bottom:711.347467pt;}
.y204{bottom:713.439333pt;}
.y80{bottom:714.462533pt;}
.y3d{bottom:714.464533pt;}
.y1a0{bottom:714.475867pt;}
.y21f{bottom:714.584533pt;}
.ye7{bottom:714.595867pt;}
.y252{bottom:714.597867pt;}
.y114{bottom:714.607867pt;}
.ya{bottom:716.163200pt;}
.y33a{bottom:724.678667pt;}
.y2f8{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y19a{bottom:730.235867pt;}
.y7f{bottom:730.462533pt;}
.y3c{bottom:730.464533pt;}
.y19f{bottom:730.475867pt;}
.y21e{bottom:730.584533pt;}
.ye6{bottom:730.595867pt;}
.y251{bottom:730.597867pt;}
.y113{bottom:730.607867pt;}
.y339{bottom:738.012000pt;}
.y2f7{bottom:738.014133pt;}
.y203{bottom:741.450000pt;}
.y8{bottom:744.985733pt;}
.y2b1{bottom:746.235867pt;}
.y7e{bottom:746.462533pt;}
.y3b{bottom:746.464533pt;}
.y19e{bottom:746.475867pt;}
.y21d{bottom:746.584533pt;}
.ye5{bottom:746.595867pt;}
.y250{bottom:746.597867pt;}
.y112{bottom:746.607867pt;}
.y338{bottom:751.345333pt;}
.y2f6{bottom:751.347467pt;}
.y2b0{bottom:762.235867pt;}
.y7d{bottom:762.462533pt;}
.y3a{bottom:762.464533pt;}
.y19d{bottom:762.475867pt;}
.y21c{bottom:762.584533pt;}
.y1b0{bottom:762.595867pt;}
.y24f{bottom:762.597867pt;}
.y111{bottom:762.607867pt;}
.y337{bottom:764.678667pt;}
.y2f5{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y202{bottom:772.467867pt;}
.y193{bottom:777.336267pt;}
.y194{bottom:777.662533pt;}
.y336{bottom:778.012000pt;}
.y2f4{bottom:778.014133pt;}
.ye4{bottom:778.235867pt;}
.y7c{bottom:778.462533pt;}
.y39{bottom:778.464533pt;}
.y19c{bottom:778.475867pt;}
.y21b{bottom:778.584533pt;}
.y1af{bottom:778.595867pt;}
.y24e{bottom:778.597867pt;}
.y110{bottom:778.607867pt;}
.y6{bottom:789.183067pt;}
.y201{bottom:789.801200pt;}
.y335{bottom:791.345333pt;}
.y2f3{bottom:791.347467pt;}
.y7b{bottom:794.462533pt;}
.y38{bottom:794.464533pt;}
.y19b{bottom:794.475867pt;}
.y21a{bottom:794.584533pt;}
.y1ae{bottom:794.595867pt;}
.y24d{bottom:794.597867pt;}
.y10f{bottom:794.607867pt;}
.y196{bottom:802.295067pt;}
.y334{bottom:804.678667pt;}
.y2f2{bottom:804.680800pt;}
.y7a{bottom:810.462533pt;}
.y37{bottom:810.464533pt;}
.ya9{bottom:810.475867pt;}
.y219{bottom:810.584533pt;}
.y1ad{bottom:810.595867pt;}
.y24c{bottom:810.597867pt;}
.y10e{bottom:810.607867pt;}
.y333{bottom:818.012000pt;}
.y2f1{bottom:818.014133pt;}
.y197{bottom:819.690533pt;}
.y79{bottom:826.462533pt;}
.y36{bottom:826.464533pt;}
.ya8{bottom:826.475867pt;}
.y218{bottom:826.584533pt;}
.y1ac{bottom:826.595867pt;}
.y24b{bottom:826.597867pt;}
.y10d{bottom:826.607867pt;}
.y5{bottom:830.226133pt;}
.y332{bottom:831.345333pt;}
.y2f0{bottom:831.347467pt;}
.y195{bottom:837.050000pt;}
.y78{bottom:842.462533pt;}
.y35{bottom:842.464533pt;}
.ya7{bottom:842.475867pt;}
.y217{bottom:842.584533pt;}
.y10c{bottom:842.607867pt;}
.y331{bottom:844.678667pt;}
.y2ef{bottom:844.680800pt;}
.y330{bottom:858.012000pt;}
.y2ee{bottom:858.014133pt;}
.y1ab{bottom:858.235867pt;}
.y24a{bottom:858.237867pt;}
.y77{bottom:858.462533pt;}
.y34{bottom:858.464533pt;}
.ya6{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y192{bottom:869.612251pt;}
.y32f{bottom:871.345333pt;}
.y2ed{bottom:871.347467pt;}
.y216{bottom:874.224533pt;}
.y249{bottom:874.237867pt;}
.y10b{bottom:874.247867pt;}
.y76{bottom:874.462533pt;}
.y33{bottom:874.464533pt;}
.ya5{bottom:874.475867pt;}
.y191{bottom:877.945333pt;}
.y32e{bottom:884.678667pt;}
.y2ec{bottom:884.680800pt;}
.y190{bottom:886.837867pt;}
.y2d4{bottom:890.102533pt;}
.y215{bottom:890.224533pt;}
.y248{bottom:890.237867pt;}
.y75{bottom:890.462533pt;}
.y32{bottom:890.464533pt;}
.ya4{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y32d{bottom:898.012000pt;}
.y2eb{bottom:898.014133pt;}
.y74{bottom:906.462533pt;}
.y67{bottom:906.464533pt;}
.y10a{bottom:906.474533pt;}
.ya3{bottom:906.475867pt;}
.y32c{bottom:911.345333pt;}
.y2ea{bottom:911.347467pt;}
.yca{bottom:911.450400pt;}
.y31{bottom:922.104533pt;}
.y73{bottom:922.462533pt;}
.y66{bottom:922.464533pt;}
.y109{bottom:922.474533pt;}
.ya2{bottom:922.475867pt;}
.y198{bottom:924.410533pt;}
.y32b{bottom:924.678667pt;}
.y2e9{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y72{bottom:1006.594400pt;}
.y214{bottom:1006.596800pt;}
.y1aa{bottom:1006.598400pt;}
.y32a{bottom:1006.598667pt;}
.y1eb{bottom:1006.608133pt;}
.ye3{bottom:1006.668667pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h16{height:18.055466pt;}
.h1b{height:19.501924pt;}
.h17{height:19.923876pt;}
.h18{height:19.950601pt;}
.h15{height:22.550024pt;}
.h9{height:25.238281pt;}
.h1e{height:25.302083pt;}
.h1d{height:25.940104pt;}
.h1a{height:26.208119pt;}
.h2{height:27.179688pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h14{height:29.645833pt;}
.h19{height:29.691784pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h1c{height:37.049292pt;}
.h11{height:37.057292pt;}
.h10{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.860475pt;}
.ha{height:38.880208pt;}
.h12{height:46.673734pt;}
.h13{height:46.727068pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x14{left:69.921200pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x45{left:88.818933pt;}
.x4b{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x46{left:100.162000pt;}
.x4c{left:109.606533pt;}
.x3{left:111.491333pt;}
.xe{left:117.155867pt;}
.x47{left:126.621467pt;}
.x2a{left:136.083200pt;}
.xf{left:147.515867pt;}
.x5{left:170.078667pt;}
.x29{left:172.500267pt;}
.x2c{left:175.348533pt;}
.x49{left:176.780133pt;}
.x2b{left:184.541867pt;}
.x43{left:187.350533pt;}
.x16{left:206.548400pt;}
.x2e{left:214.604533pt;}
.x2d{left:223.807200pt;}
.x1a{left:239.240133pt;}
.x30{left:253.851200pt;}
.x2f{left:263.063200pt;}
.x32{left:293.107200pt;}
.x31{left:302.309867pt;}
.x34{left:332.353867pt;}
.x33{left:341.565867pt;}
.x26{left:370.078667pt;}
.x36{left:371.600533pt;}
.x1b{left:375.767867pt;}
.x35{left:380.812533pt;}
.x1c{left:393.774778pt;}
.x7{left:404.481333pt;}
.xb{left:406.300933pt;}
.x18{left:407.505333pt;}
.x17{left:408.635467pt;}
.x37{left:411.187867pt;}
.x19{left:419.593067pt;}
.x10{left:425.169200pt;}
.x27{left:429.069867pt;}
.x15{left:433.003867pt;}
.xa{left:436.540933pt;}
.x1d{left:438.167333pt;}
.x20{left:439.083750pt;}
.x23{left:440.061718pt;}
.x1f{left:441.142269pt;}
.x1e{left:442.127076pt;}
.x28{left:446.758667pt;}
.x21{left:448.186371pt;}
.x24{left:449.273761pt;}
.x22{left:450.607353pt;}
.x11{left:455.438400pt;}
.x38{left:459.646533pt;}
.x3a{left:489.681200pt;}
.x39{left:498.893200pt;}
.x4a{left:526.155867pt;}
.x3c{left:528.927867pt;}
.x3b{left:538.139867pt;}
.x25{left:564.150000pt;}
.x3e{left:568.174533pt;}
.x3d{left:577.386533pt;}
.xd{left:589.770933pt;}
.x3f{left:607.421200pt;}
.x2{left:616.324800pt;}
.x44{left:641.516133pt;}
.xc{left:647.459200pt;}
.x40{left:655.879867pt;}
.x48{left:661.213467pt;}
.x13{left:664.890800pt;}
.x12{left:666.356800pt;}
.x42{left:686.366667pt;}
.x41{left:695.126533pt;}
}




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