
    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_7a89c48e6c4be708780d8ac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e734952c6eca4a650d3de7ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_378313027615d3b56a2eba37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_65833323b584d850f77392b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_ebe1083985a54e6769eace45.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_c5c525b787303d806862b6c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_9e506bb8b1b634669a68a24e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_d50e43df47d6646db190a0e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_aaa3f1475e900222dda12d75.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.879880px;}
.v5{vertical-align:-15.120120px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120120px;}
.v3{vertical-align:20.880240px;}
.v1{vertical-align:23.760120px;}
.ls6e{letter-spacing:-1.674000px;}
.ls6f{letter-spacing:-1.566000px;}
.ls6d{letter-spacing:-1.404000px;}
.ls94{letter-spacing:-1.254960px;}
.ls18{letter-spacing:-1.135440px;}
.ls8a{letter-spacing:-1.080000px;}
.ls8e{letter-spacing:-1.075680px;}
.ls8d{letter-spacing:-1.015920px;}
.ls6a{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.956160px;}
.ls27{letter-spacing:-0.900000px;}
.ls93{letter-spacing:-0.896400px;}
.ls6b{letter-spacing:-0.864000px;}
.ls8c{letter-spacing:-0.836640px;}
.ls76{letter-spacing:-0.810000px;}
.ls3d{letter-spacing:-0.786000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls64{letter-spacing:-0.776880px;}
.ls6c{letter-spacing:-0.756000px;}
.ls29{letter-spacing:-0.738000px;}
.ls5e{letter-spacing:-0.717120px;}
.ls74{letter-spacing:-0.702000px;}
.ls4e{letter-spacing:-0.696000px;}
.ls2f{letter-spacing:-0.666000px;}
.ls22{letter-spacing:-0.660000px;}
.ls63{letter-spacing:-0.657360px;}
.ls75{letter-spacing:-0.648000px;}
.ls5d{letter-spacing:-0.597600px;}
.ls39{letter-spacing:-0.540000px;}
.ls62{letter-spacing:-0.537840px;}
.lsa8{letter-spacing:-0.530640px;}
.ls69{letter-spacing:-0.478080px;}
.ls4d{letter-spacing:-0.431400px;}
.ls1b{letter-spacing:-0.418320px;}
.ls3c{letter-spacing:-0.414000px;}
.lsa2{letter-spacing:-0.385920px;}
.ls9d{letter-spacing:-0.378000px;}
.ls5c{letter-spacing:-0.358560px;}
.lsa3{letter-spacing:-0.337680px;}
.ls26{letter-spacing:-0.326400px;}
.ls9c{letter-spacing:-0.324000px;}
.ls42{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.298800px;}
.ls5{letter-spacing:-0.298200px;}
.ls16{letter-spacing:-0.292320px;}
.ls6{letter-spacing:-0.292200px;}
.lsa5{letter-spacing:-0.289440px;}
.ls7{letter-spacing:-0.272400px;}
.ls17{letter-spacing:-0.272160px;}
.ls10{letter-spacing:-0.270000px;}
.ls4a{letter-spacing:-0.252000px;}
.lsa1{letter-spacing:-0.241200px;}
.ls1c{letter-spacing:-0.239040px;}
.ls43{letter-spacing:-0.234000px;}
.lsf{letter-spacing:-0.216000px;}
.lsa6{letter-spacing:-0.192960px;}
.ls28{letter-spacing:-0.180000px;}
.ls9b{letter-spacing:-0.179280px;}
.ls73{letter-spacing:-0.162000px;}
.ls7f{letter-spacing:-0.119520px;}
.ls40{letter-spacing:-0.108000px;}
.ls3f{letter-spacing:-0.107400px;}
.ls2d{letter-spacing:-0.078600px;}
.ls2c{letter-spacing:-0.069600px;}
.ls14{letter-spacing:-0.059760px;}
.ls4{letter-spacing:-0.058320px;}
.ls46{letter-spacing:-0.043920px;}
.ls3{letter-spacing:-0.018000px;}
.ls49{letter-spacing:-0.010080px;}
.ls0{letter-spacing:0.000000px;}
.lsa9{letter-spacing:0.036000px;}
.ls72{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.059760px;}
.ls20{letter-spacing:0.060600px;}
.ls3a{letter-spacing:0.067200px;}
.ls41{letter-spacing:0.072000px;}
.ls50{letter-spacing:0.077700px;}
.ls51{letter-spacing:0.077760px;}
.ls37{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.121680px;}
.ls1f{letter-spacing:0.140400px;}
.lsa4{letter-spacing:0.144720px;}
.ls25{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.162000px;}
.ls52{letter-spacing:0.174180px;}
.ls35{letter-spacing:0.174240px;}
.ls47{letter-spacing:0.177600px;}
.lsa{letter-spacing:0.179280px;}
.ls21{letter-spacing:0.180000px;}
.lsa0{letter-spacing:0.192960px;}
.ls4b{letter-spacing:0.198000px;}
.ls9f{letter-spacing:0.208080px;}
.ls13{letter-spacing:0.239040px;}
.lsa7{letter-spacing:0.241200px;}
.ls55{letter-spacing:0.243240px;}
.ls53{letter-spacing:0.243420px;}
.ls2a{letter-spacing:0.243600px;}
.ls48{letter-spacing:0.267000px;}
.ls11{letter-spacing:0.270000px;}
.ls45{letter-spacing:0.288600px;}
.lsc{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.306000px;}
.ls9e{letter-spacing:0.324000px;}
.ls3e{letter-spacing:0.340320px;}
.ls24{letter-spacing:0.357000px;}
.ls66{letter-spacing:0.358560px;}
.ls44{letter-spacing:0.360000px;}
.lsaa{letter-spacing:0.378000px;}
.ls61{letter-spacing:0.418320px;}
.ls33{letter-spacing:0.447840px;}
.ls56{letter-spacing:0.468000px;}
.ls7d{letter-spacing:0.478080px;}
.ls2b{letter-spacing:0.479520px;}
.ls88{letter-spacing:0.597600px;}
.ls1e{letter-spacing:0.637140px;}
.ls57{letter-spacing:0.657360px;}
.ls36{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.756000px;}
.ls1d{letter-spacing:0.776880px;}
.ls8{letter-spacing:0.780000px;}
.ls31{letter-spacing:0.797640px;}
.ls30{letter-spacing:0.797700px;}
.ls54{letter-spacing:0.797760px;}
.ls34{letter-spacing:0.797820px;}
.ls4f{letter-spacing:0.797880px;}
.ls2e{letter-spacing:0.817260px;}
.ls82{letter-spacing:0.836640px;}
.ls92{letter-spacing:0.896400px;}
.ls87{letter-spacing:0.917760px;}
.ls32{letter-spacing:0.917820px;}
.lse{letter-spacing:1.613520px;}
.ls67{letter-spacing:2.214000px;}
.ls81{letter-spacing:2.330640px;}
.ls60{letter-spacing:3.047760px;}
.ls65{letter-spacing:3.705120px;}
.ls5a{letter-spacing:3.764880px;}
.ls7a{letter-spacing:3.944160px;}
.ls7e{letter-spacing:4.374000px;}
.ls95{letter-spacing:4.482000px;}
.lsd{letter-spacing:5.199120px;}
.ls77{letter-spacing:5.916240px;}
.ls90{letter-spacing:6.095520px;}
.ls5b{letter-spacing:7.350480px;}
.ls86{letter-spacing:7.938000px;}
.ls7c{letter-spacing:8.844480px;}
.ls97{letter-spacing:9.561600px;}
.ls79{letter-spacing:10.278720px;}
.ls68{letter-spacing:10.854000px;}
.ls84{letter-spacing:10.995840px;}
.ls99{letter-spacing:11.712960px;}
.ls91{letter-spacing:12.430080px;}
.ls80{letter-spacing:12.852000px;}
.ls7b{letter-spacing:13.147200px;}
.ls8f{letter-spacing:13.864320px;}
.ls70{letter-spacing:14.581440px;}
.ls98{letter-spacing:15.298560px;}
.ls58{letter-spacing:16.015680px;}
.ls89{letter-spacing:16.452000px;}
.ls8b{letter-spacing:16.732800px;}
.ls38{letter-spacing:16.734300px;}
.ls59{letter-spacing:17.449920px;}
.ls5f{letter-spacing:18.167040px;}
.ls85{letter-spacing:21.654000px;}
.ls78{letter-spacing:22.469760px;}
.ls83{letter-spacing:25.398000px;}
.ls96{letter-spacing:38.306160px;}
.ls9a{letter-spacing:57.070800px;}
.lsab{letter-spacing:1433.969760px;}
.ls4c{letter-spacing:1433.969880px;}
.ls9{letter-spacing:1461.329760px;}
.ls1{letter-spacing:1461.329880px;}
.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;}
}
.ws45{word-spacing:-14.165760px;}
.ws105{word-spacing:-14.163120px;}
.wsa3{word-spacing:-13.864320px;}
.ws3c{word-spacing:-13.862760px;}
.ws3a{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.804560px;}
.ws53{word-spacing:-13.794360px;}
.ws42{word-spacing:-13.749360px;}
.ws6{word-spacing:-13.744800px;}
.wsdb{word-spacing:-13.685040px;}
.ws39{word-spacing:-13.646160px;}
.ws9{word-spacing:-13.625280px;}
.ws48{word-spacing:-13.572960px;}
.wsb{word-spacing:-13.565520px;}
.ws4{word-spacing:-13.505760px;}
.ws54{word-spacing:-13.461840px;}
.ws2{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.446000px;}
.ws41{word-spacing:-13.436160px;}
.ws43{word-spacing:-13.427160px;}
.ws4c{word-spacing:-13.398360px;}
.wsda{word-spacing:-13.386240px;}
.ws174{word-spacing:-13.326480px;}
.wsa2{word-spacing:-13.266720px;}
.ws5c{word-spacing:-13.206960px;}
.ws3b{word-spacing:-13.179360px;}
.wsa1{word-spacing:-13.147200px;}
.ws4a{word-spacing:-13.091760px;}
.wsc{word-spacing:-13.087440px;}
.ws10f{word-spacing:-13.027680px;}
.ws132{word-spacing:-12.967920px;}
.ws5b{word-spacing:-12.908160px;}
.ws185{word-spacing:-12.848400px;}
.ws5a{word-spacing:-12.809760px;}
.ws110{word-spacing:-12.788640px;}
.wsc6{word-spacing:-12.728880px;}
.ws49{word-spacing:-12.725760px;}
.ws4b{word-spacing:-12.719760px;}
.ws10e{word-spacing:-12.669120px;}
.ws52{word-spacing:-12.564000px;}
.ws7f{word-spacing:-12.549600px;}
.ws172{word-spacing:-12.528000px;}
.ws130{word-spacing:-12.430080px;}
.ws59{word-spacing:-12.402000px;}
.ws4d{word-spacing:-12.366000px;}
.ws4f{word-spacing:-12.276000px;}
.ws171{word-spacing:-12.258000px;}
.ws131{word-spacing:-12.250800px;}
.ws5{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws4e{word-spacing:-12.096000px;}
.wsc9{word-spacing:-12.042000px;}
.ws3e{word-spacing:-12.024000px;}
.ws16e{word-spacing:-11.988000px;}
.ws51{word-spacing:-11.970000px;}
.ws40{word-spacing:-11.934000px;}
.ws50{word-spacing:-11.898000px;}
.ws16f{word-spacing:-11.880000px;}
.ws170{word-spacing:-11.826000px;}
.wscb{word-spacing:-11.556000px;}
.ws44{word-spacing:-11.538000px;}
.wsca{word-spacing:-11.502000px;}
.ws3f{word-spacing:-11.466000px;}
.ws188{word-spacing:-11.448000px;}
.wsc8{word-spacing:-11.340000px;}
.ws3d{word-spacing:-11.304000px;}
.wsc7{word-spacing:-11.232000px;}
.ws58{word-spacing:-11.169240px;}
.ws17c{word-spacing:-11.143440px;}
.ws17b{word-spacing:-11.095200px;}
.ws55{word-spacing:-11.079840px;}
.ws177{word-spacing:-11.046960px;}
.ws56{word-spacing:-10.902240px;}
.ws57{word-spacing:-10.892160px;}
.wsa5{word-spacing:-10.800000px;}
.ws17a{word-spacing:-10.709280px;}
.ws179{word-spacing:-10.661040px;}
.ws178{word-spacing:-10.612800px;}
.ws176{word-spacing:-10.564560px;}
.ws175{word-spacing:-10.516320px;}
.ws17d{word-spacing:-10.371600px;}
.ws3{word-spacing:-9.145560px;}
.ws8{word-spacing:-9.145440px;}
.ws46{word-spacing:-8.864880px;}
.ws106{word-spacing:-8.864640px;}
.ws47{word-spacing:-8.786880px;}
.wsa4{word-spacing:-8.136000px;}
.ws89{word-spacing:-3.705120px;}
.ws33{word-spacing:-0.776880px;}
.wsba{word-spacing:-0.657360px;}
.ws14{word-spacing:-0.596160px;}
.ws123{word-spacing:-0.537840px;}
.wsc5{word-spacing:-0.432000px;}
.ws184{word-spacing:-0.378000px;}
.ws107{word-spacing:-0.358560px;}
.wsf{word-spacing:-0.270000px;}
.ws180{word-spacing:-0.241200px;}
.ws18{word-spacing:-0.239040px;}
.ws146{word-spacing:-0.179280px;}
.ws10{word-spacing:-0.162000px;}
.ws28{word-spacing:-0.119520px;}
.ws187{word-spacing:-0.077760px;}
.ws18a{word-spacing:-0.072000px;}
.ws7a{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws17f{word-spacing:0.048240px;}
.ws12{word-spacing:0.059760px;}
.wsd9{word-spacing:0.108000px;}
.wsf1{word-spacing:0.119520px;}
.wsbc{word-spacing:0.132480px;}
.wsfd{word-spacing:0.162000px;}
.ws11{word-spacing:0.179280px;}
.ws15{word-spacing:0.198720px;}
.wsd{word-spacing:0.216000px;}
.ws30{word-spacing:0.239040px;}
.ws17e{word-spacing:0.241200px;}
.wse{word-spacing:0.270000px;}
.ws16{word-spacing:0.272160px;}
.ws13{word-spacing:0.298800px;}
.ws173{word-spacing:0.324000px;}
.ws183{word-spacing:0.337680px;}
.ws67{word-spacing:0.358560px;}
.ws189{word-spacing:0.378000px;}
.ws181{word-spacing:0.385920px;}
.ws26{word-spacing:0.418320px;}
.wsf2{word-spacing:0.478080px;}
.ws117{word-spacing:0.537840px;}
.ws111{word-spacing:0.597600px;}
.ws104{word-spacing:0.648000px;}
.ws84{word-spacing:0.657360px;}
.ws182{word-spacing:0.675360px;}
.ws17{word-spacing:0.717120px;}
.ws8a{word-spacing:0.776880px;}
.ws21{word-spacing:0.836640px;}
.ws136{word-spacing:0.896400px;}
.ws24{word-spacing:0.956160px;}
.wsf0{word-spacing:0.972000px;}
.ws13f{word-spacing:1.015920px;}
.ws13a{word-spacing:1.075680px;}
.ws22{word-spacing:1.135440px;}
.wsae{word-spacing:1.254960px;}
.ws61{word-spacing:1.314720px;}
.ws29{word-spacing:1.374480px;}
.wsfe{word-spacing:1.434240px;}
.ws103{word-spacing:1.494000px;}
.ws19{word-spacing:1.553760px;}
.ws14a{word-spacing:1.613520px;}
.wscf{word-spacing:1.673280px;}
.wsd6{word-spacing:1.674000px;}
.ws60{word-spacing:1.733040px;}
.ws34{word-spacing:1.792800px;}
.ws124{word-spacing:1.852560px;}
.ws15d{word-spacing:1.912320px;}
.ws6d{word-spacing:1.972080px;}
.ws31{word-spacing:2.031840px;}
.ws91{word-spacing:2.091600px;}
.ws76{word-spacing:2.211120px;}
.ws2a{word-spacing:2.270880px;}
.ws87{word-spacing:2.330640px;}
.wsc2{word-spacing:2.376000px;}
.ws186{word-spacing:2.450160px;}
.ws88{word-spacing:2.509920px;}
.ws126{word-spacing:2.629440px;}
.ws11d{word-spacing:2.689200px;}
.ws38{word-spacing:2.748960px;}
.ws145{word-spacing:2.808720px;}
.wsff{word-spacing:2.868480px;}
.ws7d{word-spacing:2.928240px;}
.ws1f{word-spacing:2.988000px;}
.ws125{word-spacing:3.047760px;}
.wsb4{word-spacing:3.107520px;}
.wsbe{word-spacing:3.132000px;}
.wsd1{word-spacing:3.227040px;}
.wsbb{word-spacing:3.286800px;}
.ws167{word-spacing:3.346560px;}
.ws118{word-spacing:3.406320px;}
.ws168{word-spacing:3.466080px;}
.ws135{word-spacing:3.525840px;}
.ws75{word-spacing:3.645360px;}
.ws62{word-spacing:3.705120px;}
.wsb8{word-spacing:3.764880px;}
.wsef{word-spacing:3.824640px;}
.wsbd{word-spacing:3.834000px;}
.ws13b{word-spacing:3.884400px;}
.ws6a{word-spacing:3.944160px;}
.ws15e{word-spacing:4.063680px;}
.ws119{word-spacing:4.123440px;}
.ws158{word-spacing:4.183200px;}
.ws16c{word-spacing:4.242960px;}
.ws16d{word-spacing:4.302720px;}
.ws1e{word-spacing:4.362480px;}
.ws1d{word-spacing:4.422240px;}
.ws157{word-spacing:4.482000px;}
.ws11a{word-spacing:4.661280px;}
.ws74{word-spacing:4.721040px;}
.ws113{word-spacing:4.840560px;}
.ws95{word-spacing:4.900320px;}
.ws121{word-spacing:4.960080px;}
.wsa8{word-spacing:5.019840px;}
.wsa0{word-spacing:5.079600px;}
.ws37{word-spacing:5.139360px;}
.ws36{word-spacing:5.199120px;}
.wsf7{word-spacing:5.258880px;}
.wse9{word-spacing:5.292000px;}
.wse4{word-spacing:5.378400px;}
.ws27{word-spacing:5.557680px;}
.ws10d{word-spacing:5.617440px;}
.ws10c{word-spacing:5.677200px;}
.wsdd{word-spacing:5.736960px;}
.ws9d{word-spacing:5.796720px;}
.ws20{word-spacing:5.856480px;}
.wsce{word-spacing:5.916240px;}
.ws25{word-spacing:6.095520px;}
.ws109{word-spacing:6.102000px;}
.ws23{word-spacing:6.274800px;}
.ws101{word-spacing:6.334560px;}
.ws137{word-spacing:6.394320px;}
.ws10b{word-spacing:6.513840px;}
.ws1c{word-spacing:6.573600px;}
.ws152{word-spacing:6.633360px;}
.wscd{word-spacing:6.693120px;}
.wsf8{word-spacing:6.696000px;}
.ws92{word-spacing:6.812640px;}
.ws139{word-spacing:6.932160px;}
.ws11c{word-spacing:6.991920px;}
.ws162{word-spacing:7.111440px;}
.wse5{word-spacing:7.171200px;}
.ws93{word-spacing:7.230960px;}
.ws1b{word-spacing:7.290720px;}
.wsd0{word-spacing:7.410240px;}
.ws156{word-spacing:7.529760px;}
.ws9e{word-spacing:7.709040px;}
.ws8f{word-spacing:7.768800px;}
.ws9f{word-spacing:7.888320px;}
.wsd4{word-spacing:7.948080px;}
.ws1a{word-spacing:8.007840px;}
.wsf3{word-spacing:8.246880px;}
.ws7b{word-spacing:8.426160px;}
.ws99{word-spacing:8.485920px;}
.ws163{word-spacing:8.605440px;}
.ws133{word-spacing:8.665200px;}
.ws71{word-spacing:8.724960px;}
.ws134{word-spacing:8.784720px;}
.wsab{word-spacing:8.844480px;}
.wsc4{word-spacing:8.856000px;}
.ws94{word-spacing:8.964000px;}
.ws13c{word-spacing:9.143280px;}
.ws122{word-spacing:9.203040px;}
.ws77{word-spacing:9.262800px;}
.ws14f{word-spacing:9.442080px;}
.wsc3{word-spacing:9.450000px;}
.ws2c{word-spacing:9.501840px;}
.wsfb{word-spacing:9.612000px;}
.ws14d{word-spacing:9.621360px;}
.ws64{word-spacing:9.740880px;}
.ws114{word-spacing:9.920160px;}
.wsb9{word-spacing:9.979920px;}
.wse0{word-spacing:10.039680px;}
.ws15f{word-spacing:10.099440px;}
.ws5f{word-spacing:10.218960px;}
.ws115{word-spacing:10.278720px;}
.wsfc{word-spacing:10.314000px;}
.ws7e{word-spacing:10.338480px;}
.ws85{word-spacing:10.458000px;}
.ws116{word-spacing:10.637280px;}
.ws63{word-spacing:10.697040px;}
.ws9c{word-spacing:10.756800px;}
.ws69{word-spacing:10.936080px;}
.wsdc{word-spacing:10.995840px;}
.ws12d{word-spacing:11.175120px;}
.ws11b{word-spacing:11.354400px;}
.wse7{word-spacing:11.414160px;}
.wsdf{word-spacing:11.473920px;}
.wsc1{word-spacing:11.556000px;}
.wsde{word-spacing:11.593440px;}
.ws6f{word-spacing:11.653200px;}
.wsbf{word-spacing:11.664000px;}
.ws149{word-spacing:11.712960px;}
.wsc0{word-spacing:11.772000px;}
.ws90{word-spacing:11.772720px;}
.ws80{word-spacing:11.892240px;}
.wse3{word-spacing:11.952000px;}
.ws6c{word-spacing:12.071520px;}
.wse2{word-spacing:12.131280px;}
.ws166{word-spacing:12.191040px;}
.wsb6{word-spacing:12.310560px;}
.ws35{word-spacing:12.370320px;}
.ws9a{word-spacing:12.430080px;}
.wsd7{word-spacing:12.474000px;}
.wsd3{word-spacing:12.489840px;}
.ws6e{word-spacing:12.609360px;}
.ws86{word-spacing:12.788640px;}
.wsb7{word-spacing:12.848400px;}
.wseb{word-spacing:12.906000px;}
.ws83{word-spacing:12.908160px;}
.ws2e{word-spacing:13.027680px;}
.ws2d{word-spacing:13.087440px;}
.ws160{word-spacing:13.147200px;}
.wsec{word-spacing:13.176000px;}
.ws12f{word-spacing:13.206960px;}
.ws14c{word-spacing:13.266720px;}
.ws12e{word-spacing:13.326480px;}
.ws11f{word-spacing:13.505760px;}
.ws100{word-spacing:13.685040px;}
.ws7c{word-spacing:13.804560px;}
.wsd5{word-spacing:14.043600px;}
.wsee{word-spacing:14.222880px;}
.wsed{word-spacing:14.282640px;}
.wsd2{word-spacing:14.402160px;}
.ws8e{word-spacing:14.521680px;}
.ws12a{word-spacing:14.641200px;}
.ws82{word-spacing:14.760720px;}
.wsac{word-spacing:14.940000px;}
.wsea{word-spacing:15.228000px;}
.ws70{word-spacing:15.238800px;}
.ws147{word-spacing:15.477840px;}
.ws141{word-spacing:15.657120px;}
.ws144{word-spacing:15.716880px;}
.ws154{word-spacing:15.776640px;}
.ws68{word-spacing:15.836400px;}
.ws32{word-spacing:15.955920px;}
.ws96{word-spacing:16.194960px;}
.ws153{word-spacing:16.434000px;}
.ws140{word-spacing:16.493760px;}
.ws155{word-spacing:16.553520px;}
.ws73{word-spacing:16.673040px;}
.wsb3{word-spacing:16.912080px;}
.ws127{word-spacing:17.091360px;}
.wsf5{word-spacing:17.330400px;}
.ws5d{word-spacing:17.390160px;}
.wsad{word-spacing:17.449920px;}
.wsf6{word-spacing:17.629200px;}
.ws6b{word-spacing:17.688960px;}
.ws129{word-spacing:17.748720px;}
.ws112{word-spacing:17.808480px;}
.wsf4{word-spacing:17.868240px;}
.ws9b{word-spacing:17.928000px;}
.ws66{word-spacing:18.107280px;}
.ws65{word-spacing:18.226800px;}
.wsd8{word-spacing:18.252000px;}
.ws97{word-spacing:18.346320px;}
.wsa6{word-spacing:18.824400px;}
.wsa7{word-spacing:18.884160px;}
.ws2f{word-spacing:19.541520px;}
.wsb1{word-spacing:19.780560px;}
.ws120{word-spacing:19.959840px;}
.ws8b{word-spacing:20.258640px;}
.ws12b{word-spacing:20.318400px;}
.ws12c{word-spacing:20.437920px;}
.ws138{word-spacing:20.736720px;}
.ws11e{word-spacing:20.975760px;}
.ws159{word-spacing:21.214800px;}
.wsb0{word-spacing:21.394080px;}
.ws72{word-spacing:21.692880px;}
.wsfa{word-spacing:21.708000px;}
.wsf9{word-spacing:21.816000px;}
.ws13d{word-spacing:21.872160px;}
.wsaf{word-spacing:21.931920px;}
.ws14e{word-spacing:22.170960px;}
.wse1{word-spacing:22.410000px;}
.wsb5{word-spacing:22.469760px;}
.ws79{word-spacing:22.888080px;}
.ws2b{word-spacing:23.127120px;}
.wse6{word-spacing:23.366160px;}
.ws143{word-spacing:23.605200px;}
.ws108{word-spacing:23.844240px;}
.ws78{word-spacing:23.904000px;}
.ws5e{word-spacing:24.621120px;}
.ws169{word-spacing:25.039440px;}
.ws142{word-spacing:25.158960px;}
.ws81{word-spacing:25.338240px;}
.ws8c{word-spacing:26.055360px;}
.ws8d{word-spacing:26.115120px;}
.wsb2{word-spacing:26.772480px;}
.ws161{word-spacing:27.967680px;}
.wse8{word-spacing:28.206720px;}
.ws15a{word-spacing:29.401920px;}
.ws98{word-spacing:29.640960px;}
.ws165{word-spacing:30.119040px;}
.ws13e{word-spacing:31.433760px;}
.ws10a{word-spacing:33.525360px;}
.ws148{word-spacing:34.481520px;}
.ws150{word-spacing:35.377920px;}
.ws151{word-spacing:35.437680px;}
.ws15c{word-spacing:37.947600px;}
.ws15b{word-spacing:38.365920px;}
.ws14b{word-spacing:38.963520px;}
.ws128{word-spacing:39.740400px;}
.wscc{word-spacing:41.174640px;}
.ws164{word-spacing:41.592960px;}
.ws102{word-spacing:48.345840px;}
.ws16b{word-spacing:56.772000px;}
.ws16a{word-spacing:57.489120px;}
.wsa9{word-spacing:62.568720px;}
.wsaa{word-spacing:62.748000px;}
._26{margin-left:-11.790720px;}
._24{margin-left:-4.482000px;}
._25{margin-left:-3.388560px;}
._18{margin-left:-2.317440px;}
._2{margin-left:-1.071120px;}
._0{width:1.015920px;}
._3{width:2.109120px;}
._1{width:4.012800px;}
._7{width:5.205600px;}
._6{width:6.513840px;}
._4{width:7.649280px;}
._5{width:8.724960px;}
._a{width:9.920160px;}
._11{width:10.995840px;}
._8{width:12.071520px;}
._1b{width:13.404240px;}
._12{width:14.641200px;}
._e{width:16.254720px;}
._f{width:18.047520px;}
._c{width:19.422000px;}
._b{width:20.437920px;}
._d{width:22.053240px;}
._9{width:23.425920px;}
._10{width:25.218720px;}
._15{width:26.712720px;}
._1a{width:28.505520px;}
._14{width:30.150300px;}
._13{width:31.621020px;}
._1d{width:33.269100px;}
._1e{width:34.498740px;}
._22{width:35.593560px;}
._21{width:37.413840px;}
._1f{width:38.449920px;}
._20{width:39.667440px;}
._19{width:41.294160px;}
._1c{width:48.465360px;}
._23{width:56.327280px;}
._16{width:62.329680px;}
._17{width:63.469920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y289{bottom:-14.265015px;}
.y60e{bottom:-14.265000px;}
.y298{bottom:-14.250000px;}
.y602{bottom:-14.221500px;}
.y27d{bottom:-14.220060px;}
.y291{bottom:-14.220015px;}
.y605{bottom:-14.220000px;}
.y287{bottom:-14.219985px;}
.y280{bottom:-14.219970px;}
.y30e{bottom:-12.825000px;}
.y272{bottom:-12.824985px;}
.y236{bottom:-12.795030px;}
.y242{bottom:-12.795000px;}
.y26e{bottom:-12.794985px;}
.y2f1{bottom:-12.794955px;}
.y5df{bottom:-12.793500px;}
.y226{bottom:-12.780030px;}
.y23c{bottom:-12.780015px;}
.y274{bottom:-12.780000px;}
.y240{bottom:-12.779985px;}
.y229{bottom:-12.779940px;}
.y5ed{bottom:-12.778500px;}
.y664{bottom:-5.220000px;}
.y325{bottom:-5.219970px;}
.y332{bottom:-5.040030px;}
.y660{bottom:-5.040000px;}
.y322{bottom:-5.039985px;}
.y320{bottom:-5.039970px;}
.y0{bottom:0.000000px;}
.y2da{bottom:3.224985px;}
.y2cd{bottom:3.225000px;}
.y2d6{bottom:3.225015px;}
.y62b{bottom:3.238500px;}
.y2aa{bottom:3.239955px;}
.y2ad{bottom:3.239970px;}
.y2bc{bottom:3.240000px;}
.y2c5{bottom:3.240015px;}
.y2e2{bottom:3.270000px;}
.y2d3{bottom:3.405000px;}
.y2e0{bottom:3.405015px;}
.y2d0{bottom:3.405030px;}
.y2b0{bottom:3.419955px;}
.y2c3{bottom:3.419985px;}
.y2c1{bottom:3.420000px;}
.y2b4{bottom:3.420045px;}
.y347{bottom:3.584925px;}
.y341{bottom:3.584940px;}
.y265{bottom:3.585000px;}
.y25e{bottom:3.585015px;}
.y2f2{bottom:3.585030px;}
.y227{bottom:3.599940px;}
.y239{bottom:3.599955px;}
.y244{bottom:3.599985px;}
.y251{bottom:3.600000px;}
.y223{bottom:3.600030px;}
.y231{bottom:3.600045px;}
.y5f1{bottom:3.601500px;}
.y260{bottom:3.764970px;}
.y267{bottom:3.764985px;}
.y263{bottom:3.765000px;}
.y237{bottom:3.765015px;}
.y5e0{bottom:3.766500px;}
.y643{bottom:3.778500px;}
.y22c{bottom:3.779940px;}
.y246{bottom:3.779985px;}
.y275{bottom:3.780000px;}
.y252{bottom:3.780015px;}
.y21f{bottom:3.780030px;}
.y5ee{bottom:3.781500px;}
.y233{bottom:3.824970px;}
.y5dc{bottom:3.825000px;}
.y1b7{bottom:3.945000px;}
.y603{bottom:3.958500px;}
.y1b3{bottom:3.959925px;}
.y27e{bottom:3.959940px;}
.y471{bottom:3.960000px;}
.y14b{bottom:3.960015px;}
.y295{bottom:3.960030px;}
.y61d{bottom:3.961500px;}
.y290{bottom:4.125000px;}
.y60b{bottom:4.138500px;}
.y1b1{bottom:4.139925px;}
.y2a5{bottom:4.139970px;}
.y46f{bottom:4.140000px;}
.y148{bottom:4.140015px;}
.y622{bottom:4.141500px;}
.y208{bottom:9.180000px;}
.y5cf{bottom:11.355000px;}
.y219{bottom:11.355015px;}
.y278{bottom:12.600000px;}
.y2a3{bottom:13.680000px;}
.y2a0{bottom:13.680030px;}
.y2de{bottom:17.804985px;}
.y63c{bottom:17.805000px;}
.y2a9{bottom:17.820000px;}
.y2b2{bottom:17.820015px;}
.y2d2{bottom:17.984985px;}
.y2d8{bottom:17.985000px;}
.y2cf{bottom:17.985030px;}
.y62a{bottom:17.998500px;}
.y2ac{bottom:18.000000px;}
.y2bf{bottom:18.029985px;}
.y632{bottom:18.030000px;}
.y2cc{bottom:18.030030px;}
.y30f{bottom:20.144985px;}
.y2f3{bottom:20.145000px;}
.y30b{bottom:20.145015px;}
.y644{bottom:20.158500px;}
.y2e7{bottom:20.160000px;}
.y302{bottom:20.160015px;}
.y64f{bottom:20.161500px;}
.y34c{bottom:20.189985px;}
.y64c{bottom:20.190000px;}
.y2fa{bottom:20.190030px;}
.y2ff{bottom:20.340000px;}
.y1ac{bottom:22.320000px;}
.y1af{bottom:22.320015px;}
.y1aa{bottom:22.500000px;}
.y5c5{bottom:24.105000px;}
.y210{bottom:24.105015px;}
.y277{bottom:29.160000px;}
.y218{bottom:29.715000px;}
.y2be{bottom:32.580000px;}
.y6{bottom:35.925007px;}
.y20f{bottom:42.285000px;}
.y217{bottom:48.074985px;}
.y5cc{bottom:48.075000px;}
.y20e{bottom:60.644985px;}
.y5c3{bottom:60.645000px;}
.y5ca{bottom:66.255000px;}
.y216{bottom:66.255015px;}
.y5{bottom:66.525004px;}
.y24{bottom:70.020000px;}
.y5c2{bottom:79.005000px;}
.y20d{bottom:79.005015px;}
.y215{bottom:84.615000px;}
.y4{bottom:97.125005px;}
.y20c{bottom:97.364955px;}
.y5c1{bottom:97.365000px;}
.y214{bottom:102.975000px;}
.y276{bottom:109.080000px;}
.y24a{bottom:110.699985px;}
.y4a4{bottom:112.245540px;}
.y547{bottom:112.266960px;}
.y17f{bottom:112.320000px;}
.y4f8{bottom:112.858500px;}
.y1a1{bottom:112.860000px;}
.y313{bottom:113.940000px;}
.y5ae{bottom:114.864540px;}
.y387{bottom:114.939240px;}
.yc4{bottom:115.020000px;}
.y5c0{bottom:115.545000px;}
.y20b{bottom:115.545045px;}
.y3be{bottom:115.581660px;}
.y549{bottom:115.656360px;}
.yf7{bottom:115.740000px;}
.y3e5{bottom:116.014920px;}
.y11b{bottom:116.100000px;}
.y579{bottom:116.104560px;}
.y3d2{bottom:116.119500px;}
.y444{bottom:116.194200px;}
.y10b{bottom:116.280000px;}
.y185{bottom:117.540000px;}
.y4d3{bottom:117.544500px;}
.y2e5{bottom:117.900000px;}
.y1dc{bottom:118.620000px;}
.y90{bottom:119.490420px;}
.y5b{bottom:119.520000px;}
.y85{bottom:119.684640px;}
.y51{bottom:119.700000px;}
.y212{bottom:121.139970px;}
.y5c8{bottom:121.140000px;}
.y5ff{bottom:121.675500px;}
.y41a{bottom:122.571000px;}
.y125{bottom:122.580000px;}
.y65d{bottom:122.754600px;}
.y31d{bottom:122.760000px;}
.y279{bottom:126.360000px;}
.y46e{bottom:126.889500px;}
.y146{bottom:126.900000px;}
.y249{bottom:127.260000px;}
.y25c{bottom:127.290000px;}
.y27b{bottom:128.024955px;}
.y312{bottom:128.880000px;}
.y1a0{bottom:129.420000px;}
.y4f7{bottom:129.423000px;}
.y546{bottom:130.448940px;}
.y1e7{bottom:130.500000px;}
.y4a3{bottom:130.606800px;}
.y17e{bottom:130.680000px;}
.y2e4{bottom:132.480000px;}
.y5ad{bottom:133.225800px;}
.y386{bottom:133.300500px;}
.yc3{bottom:133.380000px;}
.y184{bottom:133.920000px;}
.y209{bottom:133.920045px;}
.y3bd{bottom:133.942920px;}
.yf6{bottom:134.100000px;}
.y3e4{bottom:134.196900px;}
.y11a{bottom:134.280000px;}
.y578{bottom:134.465820px;}
.y3d1{bottom:134.480760px;}
.y443{bottom:134.555460px;}
.y10a{bottom:134.640000px;}
.y525{bottom:134.995500px;}
.y1db{bottom:135.000000px;}
.y8f{bottom:137.672400px;}
.y5a{bottom:137.700000px;}
.y84{bottom:138.045900px;}
.y50{bottom:138.060000px;}
.y5fe{bottom:138.240000px;}
.y4e8{bottom:138.418740px;}
.y194{bottom:138.420000px;}
.y419{bottom:139.135500px;}
.y124{bottom:139.140000px;}
.y22{bottom:139.264499px;}
.y1a8{bottom:140.400000px;}
.y4fd{bottom:140.403000px;}
.y65c{bottom:141.115860px;}
.y31c{bottom:141.120000px;}
.y46d{bottom:143.454000px;}
.y145{bottom:143.460000px;}
.y25b{bottom:143.850000px;}
.y4f6{bottom:145.798500px;}
.y19f{bottom:145.800000px;}
.y28d{bottom:147.090000px;}
.y2e3{bottom:147.240000px;}
.y311{bottom:148.140000px;}
.y545{bottom:148.810200px;}
.y1e6{bottom:148.860000px;}
.y4a2{bottom:148.968060px;}
.y17d{bottom:149.040000px;}
.y183{bottom:150.480000px;}
.y4d2{bottom:150.484500px;}
.y1da{bottom:151.560000px;}
.y5ac{bottom:151.587060px;}
.y385{bottom:151.661760px;}
.yc2{bottom:151.740000px;}
.y548{bottom:152.020320px;}
.y1e8{bottom:152.100000px;}
.y3bc{bottom:152.124900px;}
.yf5{bottom:152.280000px;}
.y3e3{bottom:152.558160px;}
.y119{bottom:152.640000px;}
.y577{bottom:152.827080px;}
.y3d0{bottom:152.842020px;}
.y442{bottom:152.916720px;}
.y109{bottom:153.000000px;}
.y418{bottom:155.511000px;}
.y123{bottom:155.520000px;}
.y8e{bottom:156.033660px;}
.y59{bottom:156.060000px;}
.y83{bottom:156.407160px;}
.y4f{bottom:156.420000px;}
.y4fc{bottom:156.778500px;}
.y193{bottom:156.780000px;}
.y65b{bottom:159.477120px;}
.y31b{bottom:159.480000px;}
.y46c{bottom:159.829500px;}
.y144{bottom:159.840000px;}
.y25a{bottom:160.740000px;}
.y19e{bottom:162.360000px;}
.y4f5{bottom:162.363000px;}
.y182{bottom:166.860000px;}
.y544{bottom:167.171460px;}
.y1e5{bottom:167.220000px;}
.y4a1{bottom:167.329320px;}
.y17c{bottom:167.400000px;}
.y524{bottom:167.935500px;}
.y1d9{bottom:167.940000px;}
.y5ab{bottom:169.948320px;}
.y384{bottom:170.023020px;}
.yc1{bottom:170.100000px;}
.y3bb{bottom:170.486160px;}
.yf4{bottom:170.640000px;}
.y3e2{bottom:170.919420px;}
.y118{bottom:171.000000px;}
.y576{bottom:171.009060px;}
.y3cf{bottom:171.024000px;}
.y441{bottom:171.098700px;}
.y108{bottom:171.180000px;}
.y417{bottom:172.075500px;}
.y122{bottom:172.080000px;}
.y1a7{bottom:173.340000px;}
.y4fb{bottom:173.343000px;}
.y31a{bottom:173.700000px;}
.y8d{bottom:174.394920px;}
.y58{bottom:174.420000px;}
.y82{bottom:174.768420px;}
.y4e{bottom:174.780000px;}
.y46b{bottom:176.394000px;}
.y143{bottom:176.400000px;}
.y273{bottom:177.300000px;}
.y4f4{bottom:178.738500px;}
.y19d{bottom:178.740000px;}
.y310{bottom:181.080000px;}
.y181{bottom:184.320000px;}
.y1d8{bottom:184.500000px;}
.y4a0{bottom:185.511300px;}
.y543{bottom:185.532720px;}
.y17b{bottom:185.580000px;}
.y5aa{bottom:188.130300px;}
.y383{bottom:188.205000px;}
.yc0{bottom:188.280000px;}
.y121{bottom:188.640000px;}
.y3ba{bottom:188.847420px;}
.yf3{bottom:189.000000px;}
.y3e1{bottom:189.101400px;}
.y117{bottom:189.180000px;}
.y575{bottom:189.370320px;}
.y3ce{bottom:189.385260px;}
.y107{bottom:189.540000px;}
.y4fa{bottom:189.718500px;}
.y1a6{bottom:189.720000px;}
.y2e1{bottom:191.160000px;}
.y120{bottom:192.420000px;}
.y8c{bottom:192.786060px;}
.y57{bottom:192.809985px;}
.y46a{bottom:192.810000px;}
.y81{bottom:192.980280px;}
.y4d{bottom:192.990000px;}
.y221{bottom:193.139970px;}
.y271{bottom:193.724985px;}
.y5fd{bottom:193.725000px;}
.y19c{bottom:195.330000px;}
.y19{bottom:196.933500px;}
.y30d{bottom:200.205000px;}
.y1d7{bottom:201.990000px;}
.y542{bottom:203.744580px;}
.y1e4{bottom:203.790000px;}
.y49f{bottom:203.902440px;}
.y4d1{bottom:203.939400px;}
.y17a{bottom:203.970000px;}
.y2df{bottom:205.785000px;}
.y11f{bottom:205.950000px;}
.y1a5{bottom:206.309985px;}
.y5a9{bottom:206.521440px;}
.y382{bottom:206.596140px;}
.ybf{bottom:206.670000px;}
.y3b9{bottom:207.059280px;}
.yf2{bottom:207.210000px;}
.y3e0{bottom:207.492540px;}
.y116{bottom:207.570000px;}
.y574{bottom:207.761460px;}
.y3cd{bottom:207.776400px;}
.y106{bottom:207.930000px;}
.y142{bottom:209.370000px;}
.y469{bottom:209.374500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1a4{bottom:210.090000px;}
.y270{bottom:210.285000px;}
.y8b{bottom:210.968040px;}
.y56{bottom:210.990000px;}
.y80{bottom:211.341540px;}
.y4c{bottom:211.349985px;}
.y4f3{bottom:211.705500px;}
.y19b{bottom:211.710000px;}
.y2dd{bottom:220.545000px;}
.y523{bottom:221.606760px;}
.y1d6{bottom:221.610000px;}
.y541{bottom:222.105840px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1e3{bottom:222.150015px;}
.y49e{bottom:222.263700px;}
.y4d0{bottom:222.300660px;}
.y179{bottom:222.330000px;}
.y1a3{bottom:223.769985px;}
.y4f9{bottom:223.770000px;}
.y5a8{bottom:224.882700px;}
.y381{bottom:224.957400px;}
.ybe{bottom:225.030000px;}
.y3b8{bottom:225.420540px;}
.y416{bottom:225.538140px;}
.yf1{bottom:225.570000px;}
.y141{bottom:225.750000px;}
.y3df{bottom:225.853800px;}
.y115{bottom:225.930000px;}
.y573{bottom:226.122720px;}
.y3cc{bottom:226.137660px;}
.y105{bottom:226.290000px;}
.y26f{bottom:226.665000px;}
.y19a{bottom:228.269985px;}
.y4f2{bottom:228.270000px;}
.y8a{bottom:229.329300px;}
.y55{bottom:229.349985px;}
.y140{bottom:229.530000px;}
.y7f{bottom:229.702800px;}
.y4b{bottom:229.710000px;}
.y30c{bottom:233.144985px;}
.y654{bottom:233.145000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y522{bottom:239.788740px;}
.y1d5{bottom:239.790000px;}
.y540{bottom:240.467100px;}
.y1e2{bottom:240.510000px;}
.y49d{bottom:240.624960px;}
.y4cf{bottom:240.661920px;}
.y178{bottom:240.690015px;}
.y5a7{bottom:243.064680px;}
.y380{bottom:243.139380px;}
.ybd{bottom:243.210000px;}
.y26d{bottom:243.224985px;}
.y5fc{bottom:243.225000px;}
.y3b7{bottom:243.781800px;}
.y415{bottom:243.899400px;}
.yf0{bottom:243.930000px;}
.y3de{bottom:244.215060px;}
.y114{bottom:244.290000px;}
.y572{bottom:244.304700px;}
.y3cb{bottom:244.319640px;}
.y104{bottom:244.470000px;}
.y4f1{bottom:244.645500px;}
.y199{bottom:244.650015px;}
.y89{bottom:247.690560px;}
.y54{bottom:247.710000px;}
.y7e{bottom:247.884780px;}
.y4a{bottom:247.889985px;}
.y1a2{bottom:248.430000px;}
.y2dc{bottom:249.705000px;}
.y30a{bottom:252.224985px;}
.y653{bottom:252.225000px;}
.y521{bottom:258.106560px;}
.y1d3{bottom:258.150015px;}
.y49c{bottom:258.806940px;}
.y53f{bottom:258.828360px;}
.y4ce{bottom:258.843900px;}
.y177{bottom:258.870000px;}
.y5fb{bottom:259.605000px;}
.y26c{bottom:259.605015px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y198{bottom:261.210000px;}
.y5a6{bottom:261.425940px;}
.y37f{bottom:261.500640px;}
.ybc{bottom:261.570000px;}
.y3b6{bottom:262.143060px;}
.y414{bottom:262.260660px;}
.yef{bottom:262.290000px;}
.y3dd{bottom:262.397040px;}
.y113{bottom:262.470000px;}
.y571{bottom:262.665960px;}
.y3ca{bottom:262.680900px;}
.y103{bottom:262.830000px;}
.y1d4{bottom:263.370000px;}
.y2db{bottom:264.465000px;}
.y197{bottom:264.990000px;}
.y88{bottom:265.872540px;}
.y53{bottom:265.889985px;}
.y7d{bottom:266.246040px;}
.y49{bottom:266.250000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y26b{bottom:276.165000px;}
.y520{bottom:276.467820px;}
.y1d2{bottom:276.510000px;}
.y53e{bottom:277.010340px;}
.y1e1{bottom:277.050000px;}
.y49b{bottom:277.168200px;}
.y4cd{bottom:277.205160px;}
.y176{bottom:277.230015px;}
.y196{bottom:278.670000px;}
.y2d9{bottom:279.045000px;}
.y5a5{bottom:279.787200px;}
.y37e{bottom:279.861900px;}
.ybb{bottom:279.930000px;}
.y3b5{bottom:280.325040px;}
.y413{bottom:280.442640px;}
.yee{bottom:280.470000px;}
.y3dc{bottom:280.758300px;}
.y468{bottom:280.769820px;}
.y112{bottom:280.830000px;}
.y570{bottom:281.027220px;}
.y3c9{bottom:281.042160px;}
.y102{bottom:281.190015px;}
.y87{bottom:284.233800px;}
.y52{bottom:284.250000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y309{bottom:285.165000px;}
.y5f6{bottom:288.025500px;}
.y26a{bottom:292.545000px;}
.y51f{bottom:294.829080px;}
.y1d1{bottom:294.870000px;}
.y53d{bottom:295.371600px;}
.y1e0{bottom:295.410000px;}
.y49a{bottom:295.529460px;}
.y4cc{bottom:295.566420px;}
.y175{bottom:295.590000px;}
.y5a4{bottom:298.148460px;}
.y37d{bottom:298.223160px;}
.y4f0{bottom:298.277940px;}
.yba{bottom:298.290000px;}
.y3b4{bottom:298.686300px;}
.y412{bottom:298.803900px;}
.yed{bottom:298.830000px;}
.y3db{bottom:299.119560px;}
.y467{bottom:299.131080px;}
.y111{bottom:299.190015px;}
.y56f{bottom:299.388480px;}
.y3c8{bottom:299.403420px;}
.y101{bottom:299.550000px;}
.y86{bottom:302.595060px;}
.y48{bottom:302.610000px;}
.y308{bottom:304.425000px;}
.y5f5{bottom:304.590000px;}
.y2d7{bottom:308.385000px;}
.y5fa{bottom:309.105000px;}
.y269{bottom:309.105015px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y51e{bottom:313.011060px;}
.y1d0{bottom:313.050000px;}
.y499{bottom:313.711440px;}
.y53c{bottom:313.732860px;}
.y4cb{bottom:313.748400px;}
.y174{bottom:313.769985px;}
.y5a3{bottom:316.330440px;}
.y37c{bottom:316.405140px;}
.y4ef{bottom:316.459920px;}
.yb9{bottom:316.470000px;}
.y3b3{bottom:317.047560px;}
.y440{bottom:317.122260px;}
.y411{bottom:317.165160px;}
.yec{bottom:317.190015px;}
.y3da{bottom:317.480820px;}
.y466{bottom:317.492340px;}
.y110{bottom:317.550000px;}
.y56e{bottom:317.570460px;}
.y3c7{bottom:317.585400px;}
.y100{bottom:317.730015px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y307{bottom:323.505000px;}
.y268{bottom:325.665000px;}
.y51d{bottom:331.372320px;}
.y1cf{bottom:331.410000px;}
.y53b{bottom:331.914840px;}
.y1df{bottom:331.950000px;}
.y498{bottom:332.072700px;}
.y4ca{bottom:332.109660px;}
.y173{bottom:332.130000px;}
.y5a2{bottom:334.691700px;}
.y37b{bottom:334.766400px;}
.y4ee{bottom:334.821180px;}
.yb8{bottom:334.830000px;}
.y3b2{bottom:335.408820px;}
.y43f{bottom:335.483520px;}
.y410{bottom:335.526420px;}
.yeb{bottom:335.550000px;}
.y3d9{bottom:335.662800px;}
.y465{bottom:335.674320px;}
.y10f{bottom:335.730015px;}
.y56d{bottom:335.931720px;}
.y3c6{bottom:335.946660px;}
.yff{bottom:336.090000px;}
.y2d5{bottom:337.724985px;}
.y63b{bottom:337.725000px;}
.y47{bottom:338.790000px;}
.y266{bottom:342.045000px;}
.y306{bottom:342.585000px;}
.y10{bottom:348.133500px;}
.y51c{bottom:349.733580px;}
.y1ce{bottom:349.769985px;}
.y53a{bottom:350.276100px;}
.y1de{bottom:350.309985px;}
.y497{bottom:350.433960px;}
.y4c9{bottom:350.470920px;}
.y172{bottom:350.490000px;}
.y2d4{bottom:352.305000px;}
.y5a1{bottom:353.052960px;}
.y37a{bottom:353.127660px;}
.y4ed{bottom:353.182440px;}
.yb7{bottom:353.190015px;}
.y3b1{bottom:353.590800px;}
.y43e{bottom:353.665500px;}
.y40f{bottom:353.708400px;}
.yea{bottom:353.730015px;}
.y464{bottom:354.035580px;}
.y13f{bottom:354.090000px;}
.y56c{bottom:354.292980px;}
.y3c5{bottom:354.307920px;}
.yfe{bottom:354.450000px;}
.y5f9{bottom:358.605000px;}
.y264{bottom:358.605015px;}
.y305{bottom:361.665000px;}
.y2d1{bottom:366.885000px;}
.y51b{bottom:367.915560px;}
.y1cd{bottom:367.950000px;}
.y7c{bottom:368.439000px;}
.y46{bottom:368.490000px;}
.y496{bottom:368.795220px;}
.y4c8{bottom:368.832180px;}
.y171{bottom:368.849985px;}
.y5a0{bottom:371.414220px;}
.y379{bottom:371.488920px;}
.y4ec{bottom:371.543700px;}
.yb6{bottom:371.550000px;}
.y3b0{bottom:371.952060px;}
.y3d8{bottom:372.026760px;}
.y40e{bottom:372.069660px;}
.ye9{bottom:372.090000px;}
.y463{bottom:372.396840px;}
.y13e{bottom:372.450000px;}
.y56b{bottom:372.474960px;}
.y3c4{bottom:372.489900px;}
.yfd{bottom:372.630000px;}
.y262{bottom:374.985000px;}
.y304{bottom:380.925000px;}
.y51a{bottom:386.276820px;}
.y1cc{bottom:386.310015px;}
.y539{bottom:386.640060px;}
.y1dd{bottom:386.670000px;}
.yf{bottom:386.785499px;}
.y7b{bottom:386.800260px;}
.y45{bottom:386.849985px;}
.y495{bottom:386.977200px;}
.y4c7{bottom:387.014160px;}
.y170{bottom:387.029985px;}
.y59f{bottom:389.596200px;}
.y378{bottom:389.670900px;}
.y4eb{bottom:389.725680px;}
.yb5{bottom:389.730015px;}
.y3af{bottom:390.313320px;}
.y3d7{bottom:390.388020px;}
.y40d{bottom:390.430920px;}
.ye8{bottom:390.449985px;}
.y462{bottom:390.578820px;}
.y13d{bottom:390.630015px;}
.y56a{bottom:390.836220px;}
.y3c3{bottom:390.851160px;}
.yfc{bottom:390.990000px;}
.y261{bottom:391.545000px;}
.y2ce{bottom:396.224985px;}
.y63a{bottom:396.225000px;}
.y652{bottom:400.005000px;}
.y303{bottom:400.005015px;}
.y519{bottom:404.638080px;}
.y1cb{bottom:404.670000px;}
.y494{bottom:405.338460px;}
.y4c6{bottom:405.375420px;}
.y16f{bottom:405.390015px;}
.y5f8{bottom:407.925000px;}
.y25f{bottom:407.925015px;}
.y59e{bottom:407.957460px;}
.y377{bottom:408.032160px;}
.ye{bottom:408.044999px;}
.y4ea{bottom:408.086940px;}
.yb4{bottom:408.090000px;}
.y3ae{bottom:408.495300px;}
.y3d6{bottom:408.570000px;}
.y40c{bottom:408.612900px;}
.ye7{bottom:408.630015px;}
.y461{bottom:408.940080px;}
.y13c{bottom:408.990000px;}
.y569{bottom:409.197480px;}
.y3c2{bottom:409.212420px;}
.yfb{bottom:409.349985px;}
.y7a{bottom:422.984940px;}
.y518{bottom:422.999340px;}
.y538{bottom:423.004020px;}
.y44{bottom:423.029985px;}
.y493{bottom:423.699720px;}
.y4c5{bottom:423.736680px;}
.y16e{bottom:423.750000px;}
.y25d{bottom:424.484985px;}
.y5f7{bottom:424.485000px;}
.y2cb{bottom:425.564985px;}
.y639{bottom:425.565000px;}
.y59d{bottom:426.318720px;}
.y376{bottom:426.393420px;}
.y4e9{bottom:426.448200px;}
.yb3{bottom:426.449985px;}
.y3ad{bottom:426.856560px;}
.y43d{bottom:426.931260px;}
.y40b{bottom:426.974160px;}
.ye6{bottom:426.990000px;}
.y460{bottom:427.301340px;}
.y13b{bottom:427.349985px;}
.y568{bottom:427.558740px;}
.y205{bottom:427.710015px;}
.y301{bottom:432.974985px;}
.y651{bottom:432.975000px;}
.y624{bottom:436.033740px;}
.y2a7{bottom:436.035000px;}
.y517{bottom:441.226140px;}
.y537{bottom:441.230820px;}
.y1ca{bottom:441.255015px;}
.y79{bottom:441.391020px;}
.y43{bottom:441.435015px;}
.y5f4{bottom:441.793500px;}
.y248{bottom:441.795000px;}
.y492{bottom:441.926520px;}
.y4c4{bottom:441.963480px;}
.y16d{bottom:441.974985px;}
.y59c{bottom:444.545520px;}
.y375{bottom:444.620220px;}
.yb2{bottom:444.675015px;}
.y3d5{bottom:444.978780px;}
.y10e{bottom:445.035000px;}
.y3ac{bottom:445.262640px;}
.y43c{bottom:445.337340px;}
.y40a{bottom:445.380240px;}
.ye5{bottom:445.394985px;}
.y3c1{bottom:445.621200px;}
.y45f{bottom:445.707420px;}
.yfa{bottom:445.755015px;}
.y567{bottom:445.785540px;}
.y204{bottom:445.935015px;}
.y195{bottom:449.894985px;}
.y2a6{bottom:454.394985px;}
.y623{bottom:454.395000px;}
.y638{bottom:454.935000px;}
.y2ca{bottom:454.935015px;}
.y5f3{bottom:458.175000px;}
.y259{bottom:458.175015px;}
.y516{bottom:459.587400px;}
.y536{bottom:459.592080px;}
.y1c9{bottom:459.615000px;}
.y78{bottom:459.752280px;}
.y42{bottom:459.795000px;}
.y491{bottom:460.287780px;}
.y4c3{bottom:460.324740px;}
.y16c{bottom:460.335015px;}
.y59b{bottom:462.906780px;}
.y374{bottom:462.981480px;}
.yb1{bottom:463.035000px;}
.y3d4{bottom:463.340040px;}
.y10d{bottom:463.394985px;}
.y3ab{bottom:463.623900px;}
.y43b{bottom:463.698600px;}
.y409{bottom:463.741500px;}
.ye4{bottom:463.755015px;}
.y3c0{bottom:463.803180px;}
.y45e{bottom:463.889400px;}
.yf9{bottom:463.935015px;}
.y566{bottom:464.146800px;}
.y203{bottom:464.295000px;}
.y300{bottom:465.914985px;}
.y650{bottom:465.915000px;}
.y621{bottom:469.333500px;}
.y2a2{bottom:469.335015px;}
.y21b{bottom:469.515015px;}
.y258{bottom:474.734985px;}
.y5f2{bottom:474.735000px;}
.y515{bottom:477.948660px;}
.y535{bottom:477.953340px;}
.y1c8{bottom:477.974985px;}
.y490{bottom:478.649040px;}
.y4c2{bottom:478.686000px;}
.y16b{bottom:478.695000px;}
.y59a{bottom:481.268040px;}
.y373{bottom:481.342740px;}
.yb0{bottom:481.394985px;}
.y3d3{bottom:481.701300px;}
.y10c{bottom:481.755015px;}
.y3aa{bottom:481.805880px;}
.y43a{bottom:481.880580px;}
.y408{bottom:481.923480px;}
.ye3{bottom:481.935015px;}
.y3bf{bottom:482.164440px;}
.y45d{bottom:482.250660px;}
.yf8{bottom:482.295000px;}
.y565{bottom:482.508060px;}
.y202{bottom:482.654985px;}
.y61f{bottom:483.015000px;}
.y637{bottom:484.095000px;}
.y2c9{bottom:484.095015px;}
.y2a4{bottom:488.414985px;}
.y620{bottom:488.415000px;}
.y257{bottom:491.115000px;}
.y77{bottom:495.936960px;}
.y41{bottom:495.974985px;}
.y514{bottom:496.309920px;}
.y534{bottom:496.314600px;}
.y1c7{bottom:496.335015px;}
.y48f{bottom:497.010300px;}
.y4c1{bottom:497.047260px;}
.y16a{bottom:497.055000px;}
.y636{bottom:498.855000px;}
.y2c8{bottom:498.855015px;}
.y599{bottom:499.629300px;}
.y372{bottom:499.704000px;}
.yaf{bottom:499.755015px;}
.y3a9{bottom:500.167140px;}
.y439{bottom:500.241840px;}
.y407{bottom:500.284740px;}
.ye2{bottom:500.295000px;}
.y45c{bottom:500.611920px;}
.y13a{bottom:500.654985px;}
.y564{bottom:500.869320px;}
.y201{bottom:501.015015px;}
.yd{bottom:502.864502px;}
.y21a{bottom:505.875000px;}
.y29f{bottom:507.494985px;}
.y61e{bottom:507.495000px;}
.y5f0{bottom:507.673500px;}
.y256{bottom:507.675015px;}
.y635{bottom:513.435000px;}
.y2c7{bottom:513.435015px;}
.y76{bottom:514.298220px;}
.y40{bottom:514.335015px;}
.y513{bottom:514.491900px;}
.y533{bottom:514.496580px;}
.y1c6{bottom:514.515015px;}
.y48e{bottom:515.192280px;}
.y4c0{bottom:515.229240px;}
.y169{bottom:515.234985px;}
.y68c{bottom:515.953740px;}
.y353{bottom:515.955000px;}
.y598{bottom:517.811280px;}
.y371{bottom:517.885980px;}
.yae{bottom:517.935015px;}
.y3a8{bottom:518.528400px;}
.y438{bottom:518.603100px;}
.y406{bottom:518.646000px;}
.ye1{bottom:518.654985px;}
.y45b{bottom:518.973180px;}
.y139{bottom:519.015015px;}
.y563{bottom:519.051300px;}
.y200{bottom:519.195000px;}
.yc{bottom:520.864502px;}
.y61b{bottom:521.175000px;}
.y255{bottom:524.055000px;}
.y61c{bottom:526.573500px;}
.y2a1{bottom:526.574985px;}
.y2fe{bottom:531.795000px;}
.y512{bottom:532.853160px;}
.y532{bottom:532.857840px;}
.y1c5{bottom:532.875000px;}
.y48d{bottom:533.553540px;}
.y4bf{bottom:533.590500px;}
.y168{bottom:533.595015px;}
.y352{bottom:534.314985px;}
.y68b{bottom:534.315000px;}
.y597{bottom:536.172540px;}
.y370{bottom:536.247240px;}
.yad{bottom:536.295000px;}
.y3a7{bottom:536.889660px;}
.y437{bottom:536.964360px;}
.y405{bottom:537.007260px;}
.ye0{bottom:537.015015px;}
.y45a{bottom:537.155160px;}
.y138{bottom:537.195000px;}
.y562{bottom:537.412560px;}
.y1ff{bottom:537.555000px;}
.y213{bottom:538.080000px;}
.y5c7{bottom:538.095000px;}
.y211{bottom:538.095015px;}
.yb{bottom:538.864499px;}
.y254{bottom:540.615000px;}
.y634{bottom:542.775000px;}
.y2c6{bottom:542.775015px;}
.y28c{bottom:545.654985px;}
.y61a{bottom:545.655000px;}
.y68a{bottom:549.255000px;}
.y351{bottom:549.255015px;}
.y5d0{bottom:549.435000px;}
.y75{bottom:550.662180px;}
.y3f{bottom:550.695000px;}
.y511{bottom:551.214420px;}
.y531{bottom:551.219100px;}
.y1c4{bottom:551.234985px;}
.y48c{bottom:551.914800px;}
.y4be{bottom:551.951760px;}
.y167{bottom:551.955000px;}
.y5e8{bottom:552.490500px;}
.y596{bottom:554.533800px;}
.y36f{bottom:554.608500px;}
.yac{bottom:554.654985px;}
.y3a6{bottom:555.071640px;}
.y436{bottom:555.146340px;}
.y404{bottom:555.189240px;}
.ydf{bottom:555.195000px;}
.y459{bottom:555.516420px;}
.y137{bottom:555.555000px;}
.y561{bottom:555.773820px;}
.y1fe{bottom:555.914985px;}
.ya{bottom:556.864499px;}
.y253{bottom:556.994985px;}
.y5ef{bottom:556.995000px;}
.y29e{bottom:564.734985px;}
.y619{bottom:564.735000px;}
.y64e{bottom:564.913500px;}
.y2fd{bottom:564.914985px;}
.y350{bottom:565.635000px;}
.y5ce{bottom:567.795000px;}
.y74{bottom:569.023440px;}
.y3e{bottom:569.055000px;}
.y510{bottom:569.396400px;}
.y530{bottom:569.401080px;}
.y1c3{bottom:569.414985px;}
.y48b{bottom:570.276060px;}
.y4bd{bottom:570.313020px;}
.y166{bottom:570.314985px;}
.y2c4{bottom:572.115000px;}
.y595{bottom:572.895060px;}
.y36e{bottom:572.969760px;}
.yab{bottom:573.015015px;}
.y3a5{bottom:573.432900px;}
.y435{bottom:573.507600px;}
.y403{bottom:573.550500px;}
.yde{bottom:573.555000px;}
.y458{bottom:573.877680px;}
.y136{bottom:573.914985px;}
.y560{bottom:573.955800px;}
.y1fd{bottom:574.095015px;}
.y34f{bottom:582.195000px;}
.y29d{bottom:583.635000px;}
.y5cd{bottom:586.155000px;}
.y73{bottom:587.205420px;}
.y672{bottom:587.233740px;}
.y3d{bottom:587.234985px;}
.y50f{bottom:587.757660px;}
.y52f{bottom:587.762340px;}
.y1c2{bottom:587.775015px;}
.y4bc{bottom:588.383340px;}
.y48a{bottom:588.458040px;}
.y165{bottom:588.494985px;}
.y250{bottom:590.115000px;}
.y594{bottom:591.077040px;}
.y36d{bottom:591.151740px;}
.yaa{bottom:591.195000px;}
.y3a4{bottom:591.794160px;}
.y434{bottom:591.868860px;}
.y402{bottom:591.911760px;}
.ydd{bottom:591.914985px;}
.y457{bottom:592.059660px;}
.y135{bottom:592.095015px;}
.y55f{bottom:592.317060px;}
.y1fc{bottom:592.455000px;}
.y180{bottom:593.715000px;}
.y64d{bottom:597.855000px;}
.y2fc{bottom:597.855015px;}
.y689{bottom:598.755000px;}
.y34e{bottom:598.755015px;}
.y633{bottom:601.275000px;}
.y2c2{bottom:601.275015px;}
.y29c{bottom:602.715000px;}
.y5cb{bottom:604.335000px;}
.y72{bottom:605.566680px;}
.y671{bottom:605.595000px;}
.y3c{bottom:605.595015px;}
.y50e{bottom:606.118920px;}
.y52e{bottom:606.123600px;}
.y1c1{bottom:606.135000px;}
.y5ec{bottom:606.493500px;}
.y24f{bottom:606.494985px;}
.y4bb{bottom:606.744600px;}
.y489{bottom:606.819300px;}
.y164{bottom:606.855015px;}
.y593{bottom:609.438300px;}
.y36c{bottom:609.513000px;}
.ya9{bottom:609.555000px;}
.y3a3{bottom:609.976140px;}
.y433{bottom:610.050840px;}
.y401{bottom:610.093740px;}
.ydc{bottom:610.095015px;}
.y456{bottom:610.420920px;}
.y134{bottom:610.455000px;}
.y55e{bottom:610.678320px;}
.y1fb{bottom:610.814985px;}
.y688{bottom:615.855000px;}
.y34d{bottom:615.855015px;}
.y334{bottom:619.814985px;}
.y670{bottom:619.815000px;}
.y29b{bottom:621.795000px;}
.y5c9{bottom:622.695000px;}
.y24e{bottom:623.055000px;}
.y71{bottom:623.927940px;}
.y3b{bottom:623.955000px;}
.y50d{bottom:624.480180px;}
.y52d{bottom:624.484860px;}
.y1c0{bottom:624.494985px;}
.y67a{bottom:624.673740px;}
.y33f{bottom:624.675015px;}
.y4ba{bottom:625.105860px;}
.y488{bottom:625.180560px;}
.y163{bottom:625.215000px;}
.y592{bottom:627.799560px;}
.y36b{bottom:627.874260px;}
.ya8{bottom:627.914985px;}
.y400{bottom:628.322460px;}
.y3a2{bottom:628.337400px;}
.y432{bottom:628.412100px;}
.ydb{bottom:628.455000px;}
.y455{bottom:628.782180px;}
.y133{bottom:628.814985px;}
.y55d{bottom:629.039580px;}
.y1fa{bottom:629.175015px;}
.y2c0{bottom:630.615000px;}
.y2fb{bottom:630.795000px;}
.y11e{bottom:633.675015px;}
.y333{bottom:637.994985px;}
.y66f{bottom:637.995000px;}
.y5eb{bottom:639.435000px;}
.y24d{bottom:639.435015px;}
.y29a{bottom:640.875000px;}
.y70{bottom:642.289200px;}
.y3a{bottom:642.314985px;}
.y50c{bottom:642.662160px;}
.y52c{bottom:642.666840px;}
.y1bf{bottom:642.675015px;}
.y33e{bottom:643.035000px;}
.y4b9{bottom:643.287840px;}
.y487{bottom:643.362540px;}
.y162{bottom:643.394985px;}
.y9{bottom:645.510000px;}
.y591{bottom:645.981540px;}
.y36a{bottom:646.056240px;}
.ya7{bottom:646.095015px;}
.y3ff{bottom:646.683720px;}
.y3a1{bottom:646.698660px;}
.y431{bottom:646.773360px;}
.yda{bottom:646.814985px;}
.y454{bottom:647.143440px;}
.y132{bottom:647.175015px;}
.y55c{bottom:647.221560px;}
.y1f9{bottom:647.355015px;}
.y34b{bottom:648.795000px;}
.y24c{bottom:655.994985px;}
.y5ea{bottom:655.995000px;}
.y66e{bottom:656.355000px;}
.y331{bottom:656.355015px;}
.y33d{bottom:657.974985px;}
.y679{bottom:657.975000px;}
.y299{bottom:659.955000px;}
.y6f{bottom:660.471180px;}
.y39{bottom:660.494985px;}
.y50b{bottom:661.023420px;}
.y52b{bottom:661.028100px;}
.y1be{bottom:661.035000px;}
.y4b8{bottom:661.649100px;}
.y486{bottom:661.723800px;}
.y161{bottom:661.755015px;}
.y2f9{bottom:663.734985px;}
.y64b{bottom:663.735000px;}
.y590{bottom:664.342800px;}
.y369{bottom:664.417500px;}
.ya6{bottom:664.455000px;}
.y3fe{bottom:665.044980px;}
.y3a0{bottom:665.059920px;}
.y430{bottom:665.134620px;}
.yd9{bottom:665.175015px;}
.y453{bottom:665.325420px;}
.y131{bottom:665.355015px;}
.y55b{bottom:665.582820px;}
.y1f8{bottom:665.715000px;}
.y8{bottom:666.771000px;}
.y24b{bottom:672.404985px;}
.y5e9{bottom:672.405000px;}
.y207{bottom:673.484985px;}
.y5bf{bottom:673.485000px;}
.y20a{bottom:673.500000px;}
.y330{bottom:675.465000px;}
.y33c{bottom:676.365000px;}
.y6e{bottom:678.862320px;}
.y38{bottom:678.885000px;}
.y297{bottom:679.064985px;}
.y618{bottom:679.065000px;}
.y50a{bottom:679.414560px;}
.y52a{bottom:679.419240px;}
.y1bd{bottom:679.425015px;}
.y4b7{bottom:680.040240px;}
.y485{bottom:680.114940px;}
.y160{bottom:680.144985px;}
.y687{bottom:681.765000px;}
.y34a{bottom:681.765015px;}
.y5be{bottom:682.665000px;}
.y58f{bottom:682.733940px;}
.y368{bottom:682.808640px;}
.ya5{bottom:682.845015px;}
.y3fd{bottom:683.256840px;}
.y39f{bottom:683.271780px;}
.y42f{bottom:683.346480px;}
.yd8{bottom:683.385000px;}
.y452{bottom:683.716560px;}
.y130{bottom:683.744985px;}
.y55a{bottom:683.973960px;}
.y1f7{bottom:684.105015px;}
.y2bd{bottom:689.324985px;}
.y630{bottom:689.325000px;}
.y5e7{bottom:689.685000px;}
.y220{bottom:689.685015px;}
.y612{bottom:692.745000px;}
.y32f{bottom:694.545000px;}
.y33b{bottom:694.724985px;}
.y678{bottom:694.725000px;}
.y2f8{bottom:696.705000px;}
.y6d{bottom:697.223580px;}
.y37{bottom:697.244985px;}
.y509{bottom:697.596540px;}
.y529{bottom:697.601220px;}
.y5c6{bottom:697.605000px;}
.y1bc{bottom:697.605015px;}
.y296{bottom:698.144985px;}
.y617{bottom:698.145000px;}
.y4b6{bottom:698.401500px;}
.y484{bottom:698.476200px;}
.y15f{bottom:698.505015px;}
.y58e{bottom:701.095200px;}
.y367{bottom:701.169900px;}
.ya4{bottom:701.205000px;}
.y3fc{bottom:701.618100px;}
.y39e{bottom:701.633040px;}
.y42e{bottom:701.707740px;}
.yd7{bottom:701.744985px;}
.y451{bottom:702.077820px;}
.y12f{bottom:702.105015px;}
.y559{bottom:702.155940px;}
.y1f6{bottom:702.285000px;}
.y247{bottom:706.244985px;}
.y5e6{bottom:706.245000px;}
.y631{bottom:707.145000px;}
.y33a{bottom:712.904985px;}
.y677{bottom:712.905000px;}
.y349{bottom:714.885000px;}
.y6c{bottom:715.405560px;}
.y36{bottom:715.425015px;}
.y5c4{bottom:715.785000px;}
.y508{bottom:715.957800px;}
.y528{bottom:715.962480px;}
.y1bb{bottom:715.965000px;}
.y4b5{bottom:716.583480px;}
.y483{bottom:716.658180px;}
.y15e{bottom:716.685015px;}
.y294{bottom:717.224985px;}
.y616{bottom:717.225000px;}
.y66d{bottom:717.750600px;}
.y32e{bottom:717.765015px;}
.y58d{bottom:719.277180px;}
.y366{bottom:719.351880px;}
.ya3{bottom:719.385000px;}
.y3fb{bottom:719.979360px;}
.y39d{bottom:719.994300px;}
.y42d{bottom:720.069000px;}
.yd6{bottom:720.105015px;}
.y450{bottom:720.259800px;}
.y12e{bottom:720.285000px;}
.y558{bottom:720.517200px;}
.y1f5{bottom:720.644985px;}
.y245{bottom:722.625000px;}
.y7{bottom:726.298500px;}
.y2f7{bottom:729.644985px;}
.y64a{bottom:729.645000px;}
.y676{bottom:731.265000px;}
.y339{bottom:731.265015px;}
.y2bb{bottom:733.244985px;}
.y62f{bottom:733.245000px;}
.y6b{bottom:733.766820px;}
.y35{bottom:733.785000px;}
.y507{bottom:734.319060px;}
.y527{bottom:734.323740px;}
.y1ba{bottom:734.324985px;}
.y4b4{bottom:734.944740px;}
.y482{bottom:735.019440px;}
.y15d{bottom:735.045000px;}
.y293{bottom:736.305000px;}
.y58c{bottom:737.638440px;}
.y365{bottom:737.713140px;}
.ya2{bottom:737.744985px;}
.y65a{bottom:738.071700px;}
.y319{bottom:738.105015px;}
.y3fa{bottom:738.161340px;}
.y39c{bottom:738.176280px;}
.y42c{bottom:738.250980px;}
.yd5{bottom:738.285000px;}
.y44f{bottom:738.621060px;}
.y12d{bottom:738.644985px;}
.y557{bottom:738.878460px;}
.y1f4{bottom:739.005015px;}
.y5e5{bottom:739.185000px;}
.y243{bottom:739.185015px;}
.y348{bottom:747.824985px;}
.y686{bottom:747.825000px;}
.y2f6{bottom:748.724985px;}
.y649{bottom:748.725000px;}
.y6a{bottom:752.128080px;}
.y34{bottom:752.144985px;}
.y3{bottom:752.599495px;}
.y506{bottom:752.680320px;}
.y526{bottom:752.685000px;}
.y1b9{bottom:752.685015px;}
.y4b3{bottom:753.306000px;}
.y481{bottom:753.380700px;}
.y15c{bottom:753.404985px;}
.y66c{bottom:753.935280px;}
.y32d{bottom:753.945000px;}
.y292{bottom:755.205000px;}
.y241{bottom:755.580000px;}
.y58b{bottom:755.999700px;}
.y364{bottom:756.074400px;}
.ya1{bottom:756.105015px;}
.y659{bottom:756.253680px;}
.y318{bottom:756.285000px;}
.y3f9{bottom:756.522600px;}
.y39b{bottom:756.537540px;}
.y42b{bottom:756.612240px;}
.yd4{bottom:756.644985px;}
.y44e{bottom:756.982320px;}
.y12c{bottom:757.005015px;}
.y556{bottom:757.239720px;}
.y1f3{bottom:757.365000px;}
.y62e{bottom:762.585000px;}
.y2ba{bottom:762.585015px;}
.y2f5{bottom:767.984985px;}
.y648{bottom:767.985000px;}
.y69{bottom:770.489340px;}
.y33{bottom:770.504970px;}
.y4b2{bottom:771.667260px;}
.y480{bottom:771.741960px;}
.y15b{bottom:771.765015px;}
.y23f{bottom:772.125000px;}
.y66b{bottom:772.296540px;}
.y32c{bottom:772.305000px;}
.y58a{bottom:774.181680px;}
.y363{bottom:774.256380px;}
.ya0{bottom:774.285000px;}
.y658{bottom:774.614940px;}
.y317{bottom:774.644985px;}
.y3f8{bottom:774.883860px;}
.y39a{bottom:774.898800px;}
.y42a{bottom:774.973500px;}
.yd3{bottom:775.004970px;}
.y44d{bottom:775.343580px;}
.y12b{bottom:775.364955px;}
.y555{bottom:775.421700px;}
.y1f2{bottom:775.545045px;}
.y685{bottom:780.780000px;}
.y346{bottom:780.780030px;}
.y23e{bottom:788.504970px;}
.y5e4{bottom:788.505000px;}
.y68{bottom:788.671320px;}
.y32{bottom:788.684970px;}
.y1b8{bottom:788.864955px;}
.y505{bottom:788.865000px;}
.y4b1{bottom:789.849240px;}
.y47f{bottom:789.923940px;}
.y15a{bottom:789.945000px;}
.y66a{bottom:790.657800px;}
.y32b{bottom:790.664985px;}
.y62d{bottom:791.745000px;}
.y2b9{bottom:791.745030px;}
.y589{bottom:792.542940px;}
.y362{bottom:792.617640px;}
.y9f{bottom:792.644985px;}
.y657{bottom:792.976200px;}
.y316{bottom:793.004970px;}
.y3f7{bottom:793.245120px;}
.y399{bottom:793.260060px;}
.y429{bottom:793.334760px;}
.yd2{bottom:793.364955px;}
.y615{bottom:793.365000px;}
.y44c{bottom:793.525560px;}
.y12a{bottom:793.545045px;}
.y554{bottom:793.782960px;}
.y1f1{bottom:793.905030px;}
.y647{bottom:800.925000px;}
.y2f4{bottom:800.925015px;}
.y1b6{bottom:804.000000px;}
.y338{bottom:804.524970px;}
.y675{bottom:804.525000px;}
.y5e3{bottom:805.065000px;}
.y23d{bottom:805.065030px;}
.y4b0{bottom:808.210500px;}
.y47e{bottom:808.285200px;}
.y159{bottom:808.305000px;}
.y588{bottom:810.904200px;}
.y361{bottom:810.978900px;}
.y9e{bottom:811.004970px;}
.y656{bottom:811.337460px;}
.y315{bottom:811.364955px;}
.y3f6{bottom:811.427100px;}
.y398{bottom:811.442040px;}
.y428{bottom:811.516740px;}
.yd1{bottom:811.545045px;}
.y553{bottom:812.144220px;}
.y1f0{bottom:812.265015px;}
.y614{bottom:812.460000px;}
.y28f{bottom:812.460015px;}
.y684{bottom:814.425000px;}
.y345{bottom:814.425015px;}
.y62c{bottom:821.085000px;}
.y2b8{bottom:821.085015px;}
.y23b{bottom:821.445000px;}
.y1b5{bottom:822.164985px;}
.y504{bottom:822.165000px;}
.y67{bottom:825.035280px;}
.y31{bottom:825.045045px;}
.y4af{bottom:826.571760px;}
.y47d{bottom:826.646460px;}
.y158{bottom:826.664985px;}
.y669{bottom:826.842480px;}
.y32a{bottom:826.844970px;}
.y587{bottom:829.265460px;}
.y360{bottom:829.340160px;}
.y9d{bottom:829.364955px;}
.y655{bottom:829.519440px;}
.y314{bottom:829.545045px;}
.y3f5{bottom:829.788360px;}
.y397{bottom:829.803300px;}
.y427{bottom:829.878000px;}
.y44b{bottom:829.889520px;}
.yd0{bottom:829.905030px;}
.y552{bottom:830.505480px;}
.y1ef{bottom:830.625000px;}
.y28e{bottom:831.524970px;}
.y613{bottom:831.525000px;}
.y344{bottom:831.704955px;}
.y683{bottom:831.705000px;}
.y2f0{bottom:833.879970px;}
.y646{bottom:833.880000px;}
.y4dc{bottom:834.400500px;}
.y18c{bottom:834.405030px;}
.y5bd{bottom:834.733500px;}
.y206{bottom:834.765015px;}
.y23a{bottom:838.004970px;}
.y5e2{bottom:838.005000px;}
.y1b4{bottom:840.524970px;}
.y503{bottom:840.525000px;}
.y674{bottom:841.065000px;}
.y337{bottom:841.065030px;}
.y4ae{bottom:844.753740px;}
.y47c{bottom:844.828440px;}
.y157{bottom:844.844970px;}
.y668{bottom:845.203740px;}
.y329{bottom:845.204955px;}
.y586{bottom:847.447440px;}
.y35f{bottom:847.522140px;}
.y9c{bottom:847.545045px;}
.y4e7{bottom:847.880700px;}
.y192{bottom:847.905030px;}
.y682{bottom:848.085000px;}
.y343{bottom:848.085015px;}
.y3f4{bottom:848.149620px;}
.y396{bottom:848.164560px;}
.y426{bottom:848.239260px;}
.ycf{bottom:848.265015px;}
.y551{bottom:848.687460px;}
.y1ee{bottom:848.805000px;}
.y2b7{bottom:850.425015px;}
.y629{bottom:850.426500px;}
.y611{bottom:850.605000px;}
.y27a{bottom:850.605015px;}
.y18b{bottom:850.965000px;}
.y5e1{bottom:854.565000px;}
.y238{bottom:854.565030px;}
.y502{bottom:858.885000px;}
.y1b2{bottom:858.885045px;}
.y66{bottom:861.399240px;}
.y30{bottom:861.405030px;}
.y4ad{bottom:863.115000px;}
.y47b{bottom:863.189700px;}
.y156{bottom:863.204955px;}
.y667{bottom:863.565000px;}
.y328{bottom:863.565030px;}
.y342{bottom:865.364955px;}
.y681{bottom:865.365000px;}
.y585{bottom:865.808700px;}
.y35e{bottom:865.883400px;}
.y9b{bottom:865.905030px;}
.y4e6{bottom:866.241960px;}
.y44a{bottom:866.253480px;}
.y129{bottom:866.265015px;}
.y395{bottom:866.525820px;}
.y425{bottom:866.600520px;}
.yce{bottom:866.625000px;}
.y2ef{bottom:866.805000px;}
.y550{bottom:867.048720px;}
.y1ed{bottom:867.164985px;}
.y4db{bottom:867.340500px;}
.y18a{bottom:867.344970px;}
.y28b{bottom:869.684970px;}
.y610{bottom:869.685000px;}
.y5de{bottom:870.958500px;}
.y235{bottom:870.960015px;}
.y501{bottom:877.065000px;}
.y1b0{bottom:877.065030px;}
.y327{bottom:878.504970px;}
.y666{bottom:878.505000px;}
.y2{bottom:879.369000px;}
.y628{bottom:879.765000px;}
.y2b6{bottom:879.765015px;}
.y4ac{bottom:881.476260px;}
.y47a{bottom:881.550960px;}
.y155{bottom:881.565030px;}
.y680{bottom:881.940000px;}
.y340{bottom:881.940030px;}
.y5d3{bottom:882.825000px;}
.y189{bottom:883.905030px;}
.y584{bottom:884.169960px;}
.y35d{bottom:884.244660px;}
.y9a{bottom:884.265015px;}
.y3f3{bottom:884.513580px;}
.y4e5{bottom:884.603220px;}
.y449{bottom:884.614740px;}
.y11d{bottom:884.625000px;}
.y394{bottom:884.707800px;}
.y424{bottom:884.782500px;}
.ycd{bottom:884.805000px;}
.y54f{bottom:885.409980px;}
.y1ec{bottom:885.524970px;}
.y234{bottom:887.504970px;}
.y5dd{bottom:887.505000px;}
.y188{bottom:887.684970px;}
.y4da{bottom:887.685000px;}
.y60f{bottom:888.765000px;}
.y28a{bottom:888.765015px;}
.y326{bottom:896.864955px;}
.y665{bottom:896.865000px;}
.y65{bottom:897.763200px;}
.y2f{bottom:897.765015px;}
.y645{bottom:899.745000px;}
.y2ee{bottom:899.745030px;}
.y4ab{bottom:899.837520px;}
.y479{bottom:899.912220px;}
.y154{bottom:899.925015px;}
.y187{bottom:901.364955px;}
.y4d9{bottom:901.365000px;}
.y583{bottom:902.531220px;}
.y5bc{bottom:902.590980px;}
.y35c{bottom:902.605920px;}
.y99{bottom:902.625000px;}
.y3f2{bottom:902.695560px;}
.y4e4{bottom:902.785200px;}
.y448{bottom:902.796720px;}
.y11c{bottom:902.805000px;}
.y393{bottom:903.069060px;}
.y423{bottom:903.143760px;}
.y67f{bottom:903.155460px;}
.ycc{bottom:903.164985px;}
.y54e{bottom:903.591960px;}
.y1eb{bottom:903.704955px;}
.y5db{bottom:903.885000px;}
.y232{bottom:903.885045px;}
.y60d{bottom:907.890000px;}
.y288{bottom:907.890015px;}
.y2b5{bottom:908.969970px;}
.y627{bottom:908.970000px;}
.y1ae{bottom:913.829955px;}
.y500{bottom:913.830000px;}
.y324{bottom:915.269985px;}
.y663{bottom:915.270000px;}
.y336{bottom:915.989955px;}
.y673{bottom:915.990000px;}
.y4aa{bottom:918.064320px;}
.y478{bottom:918.139020px;}
.y153{bottom:918.149970px;}
.y2ed{bottom:918.870030px;}
.y642{bottom:918.871500px;}
.y230{bottom:920.489955px;}
.y5da{bottom:920.490000px;}
.y582{bottom:920.758020px;}
.y5bb{bottom:920.817780px;}
.y35b{bottom:920.832720px;}
.y4d8{bottom:920.842980px;}
.y98{bottom:920.850030px;}
.y3f1{bottom:921.101640px;}
.y4e3{bottom:921.191280px;}
.y64{bottom:921.210000px;}
.y2e{bottom:921.210015px;}
.y392{bottom:921.475140px;}
.y422{bottom:921.549840px;}
.ycb{bottom:921.570000px;}
.y54d{bottom:921.998040px;}
.y1ea{bottom:922.109985px;}
.y286{bottom:926.789985px;}
.y60c{bottom:926.790000px;}
.y323{bottom:933.449985px;}
.y662{bottom:933.450000px;}
.y335{bottom:935.070000px;}
.y4a9{bottom:936.425580px;}
.y477{bottom:936.500280px;}
.y152{bottom:936.510045px;}
.y5d9{bottom:936.870000px;}
.y22f{bottom:936.870030px;}
.y2b3{bottom:938.309970px;}
.y626{bottom:938.310000px;}
.y581{bottom:939.119280px;}
.y5ba{bottom:939.179040px;}
.y35a{bottom:939.193980px;}
.y4d7{bottom:939.204240px;}
.y447{bottom:939.205500px;}
.y97{bottom:939.210015px;}
.y3f0{bottom:939.462900px;}
.y4e2{bottom:939.552540px;}
.y67e{bottom:939.564240px;}
.y2d{bottom:939.570000px;}
.y391{bottom:939.657120px;}
.y421{bottom:939.731820px;}
.yca{bottom:939.750000px;}
.y285{bottom:945.870030px;}
.y60a{bottom:945.871500px;}
.y4ff{bottom:950.370000px;}
.y1ad{bottom:950.370030px;}
.y2ec{bottom:951.809970px;}
.y641{bottom:951.810000px;}
.y2b1{bottom:953.070000px;}
.y22e{bottom:953.430000px;}
.y4a8{bottom:954.786840px;}
.y476{bottom:954.861540px;}
.y151{bottom:954.870030px;}
.y580{bottom:957.480540px;}
.y5b9{bottom:957.540300px;}
.y359{bottom:957.555240px;}
.y4d6{bottom:957.565500px;}
.y446{bottom:957.566760px;}
.y96{bottom:957.570000px;}
.y4e1{bottom:957.734520px;}
.y67d{bottom:957.746220px;}
.y191{bottom:957.750000px;}
.y390{bottom:958.018380px;}
.y420{bottom:958.093080px;}
.yc9{bottom:958.109985px;}
.y54c{bottom:958.362000px;}
.y1e9{bottom:958.469970px;}
.y284{bottom:964.949985px;}
.y609{bottom:964.950000px;}
.y1{bottom:966.726000px;}
.y22d{bottom:969.809970px;}
.y5d8{bottom:969.810000px;}
.y661{bottom:970.890000px;}
.y321{bottom:970.890015px;}
.y2c{bottom:971.250000px;}
.y4a7{bottom:973.148100px;}
.y475{bottom:973.222800px;}
.y150{bottom:973.230015px;}
.y3ef{bottom:975.647580px;}
.y57f{bottom:975.662520px;}
.y5b8{bottom:975.722280px;}
.y358{bottom:975.737220px;}
.y4d5{bottom:975.747480px;}
.y445{bottom:975.748740px;}
.y95{bottom:975.750000px;}
.y4e0{bottom:976.095780px;}
.y67c{bottom:976.107480px;}
.y190{bottom:976.109985px;}
.y38f{bottom:976.379640px;}
.y41f{bottom:976.454340px;}
.yc8{bottom:976.469970px;}
.y600{bottom:978.630000px;}
.y625{bottom:982.230000px;}
.y2af{bottom:982.230015px;}
.y608{bottom:984.030000px;}
.y283{bottom:984.030030px;}
.y2eb{bottom:984.750000px;}
.y5d7{bottom:986.370000px;}
.y22b{bottom:986.370030px;}
.y1ab{bottom:987.090000px;}
.y31f{bottom:989.969970px;}
.y65f{bottom:989.970000px;}
.y4a6{bottom:991.330080px;}
.y474{bottom:991.404780px;}
.y14f{bottom:991.410000px;}
.y3ee{bottom:994.008840px;}
.y57e{bottom:994.023780px;}
.y5b7{bottom:994.083540px;}
.y357{bottom:994.098480px;}
.y4d4{bottom:994.108740px;}
.y94{bottom:994.109985px;}
.y4df{bottom:994.457040px;}
.y67b{bottom:994.468740px;}
.y18f{bottom:994.469970px;}
.y54b{bottom:994.725960px;}
.y38e{bottom:994.740900px;}
.yc7{bottom:994.829955px;}
.y128{bottom:999.329955px;}
.y22a{bottom:1002.930000px;}
.y282{bottom:1003.109985px;}
.y607{bottom:1003.110000px;}
.y640{bottom:1004.010000px;}
.y2ea{bottom:1004.010045px;}
.y4a5{bottom:1009.691340px;}
.y473{bottom:1009.766040px;}
.y14e{bottom:1009.769985px;}
.y2b{bottom:1011.390015px;}
.y63{bottom:1011.391080px;}
.y2ae{bottom:1011.570000px;}
.y3ed{bottom:1012.370100px;}
.y57d{bottom:1012.385040px;}
.y5b6{bottom:1012.444800px;}
.y356{bottom:1012.459740px;}
.y93{bottom:1012.469970px;}
.y41e{bottom:1012.818300px;}
.y127{bottom:1012.829955px;}
.y65e{bottom:1012.997580px;}
.y31e{bottom:1013.010045px;}
.y186{bottom:1017.690030px;}
.y228{bottom:1019.309970px;}
.y5d6{bottom:1019.310000px;}
.y606{bottom:1022.190000px;}
.y281{bottom:1022.190030px;}
.y1a9{bottom:1023.629970px;}
.y4fe{bottom:1023.630000px;}
.y3ec{bottom:1030.731360px;}
.y57c{bottom:1030.746300px;}
.y5b5{bottom:1030.806060px;}
.y355{bottom:1030.821000px;}
.y92{bottom:1030.829955px;}
.y54a{bottom:1030.910640px;}
.y38d{bottom:1030.925580px;}
.y41d{bottom:1031.000280px;}
.yc6{bottom:1031.010045px;}
.y5d5{bottom:1035.870000px;}
.y225{bottom:1035.870030px;}
.y2e9{bottom:1036.949985px;}
.y63f{bottom:1036.950000px;}
.y62{bottom:1040.550000px;}
.y2a{bottom:1040.550015px;}
.y2ab{bottom:1040.910000px;}
.y27f{bottom:1041.269985px;}
.y604{bottom:1041.270000px;}
.y14d{bottom:1046.129970px;}
.y472{bottom:1046.130000px;}
.y3eb{bottom:1048.913340px;}
.y57b{bottom:1048.928280px;}
.y5b4{bottom:1048.988040px;}
.y354{bottom:1049.002980px;}
.y91{bottom:1049.010045px;}
.y38c{bottom:1049.286840px;}
.y41c{bottom:1049.361540px;}
.yc5{bottom:1049.370030px;}
.y224{bottom:1052.250000px;}
.y27c{bottom:1060.350030px;}
.y601{bottom:1060.351500px;}
.y14c{bottom:1061.070000px;}
.y3ea{bottom:1067.274600px;}
.y57a{bottom:1067.289540px;}
.y5b3{bottom:1067.349300px;}
.y61{bottom:1067.364240px;}
.y29{bottom:1067.370030px;}
.y41b{bottom:1067.722800px;}
.y126{bottom:1067.730015px;}
.y222{bottom:1068.809970px;}
.y5d4{bottom:1068.810000px;}
.y63e{bottom:1069.890000px;}
.y2e8{bottom:1069.890015px;}
.y2a8{bottom:1070.250000px;}
.y14a{bottom:1079.430000px;}
.y3e9{bottom:1085.635860px;}
.y38b{bottom:1085.650800px;}
.y5b2{bottom:1085.710560px;}
.y60{bottom:1085.725500px;}
.y28{bottom:1085.730015px;}
.y21e{bottom:1085.910000px;}
.y4de{bottom:1086.084060px;}
.y18e{bottom:1086.090000px;}
.y149{bottom:1098.329955px;}
.y470{bottom:1098.330000px;}
.y2e6{bottom:1102.829955px;}
.y63d{bottom:1102.830000px;}
.y3e8{bottom:1103.997120px;}
.y38a{bottom:1104.012060px;}
.y5b1{bottom:1104.071820px;}
.y5f{bottom:1104.086760px;}
.y27{bottom:1104.090000px;}
.y4dd{bottom:1104.266040px;}
.y18d{bottom:1104.269985px;}
.y5d2{bottom:1107.328020px;}
.y21d{bottom:1107.329955px;}
.y147{bottom:1117.410000px;}
.y3e7{bottom:1122.179100px;}
.y389{bottom:1122.194040px;}
.y5b0{bottom:1122.253800px;}
.y5e{bottom:1122.268740px;}
.y26{bottom:1122.269985px;}
.y21c{bottom:1140.449985px;}
.y5d1{bottom:1140.450000px;}
.y3e6{bottom:1140.540360px;}
.y388{bottom:1140.555300px;}
.y5af{bottom:1140.615060px;}
.y25{bottom:1140.629970px;}
.y5d{bottom:1140.630000px;}
.y23{bottom:1183.859985px;}
.y5c{bottom:1183.860000px;}
.h4f{height:14.564985px;}
.h53{height:14.565000px;}
.h54{height:14.565015px;}
.h58{height:14.580000px;}
.h56{height:14.616000px;}
.h50{height:14.744985px;}
.h90{height:14.745000px;}
.h55{height:14.745015px;}
.h49{height:14.745075px;}
.h8c{height:14.746500px;}
.h57{height:14.760000px;}
.h93{height:14.761500px;}
.h2c{height:16.364985px;}
.h81{height:16.365000px;}
.h38{height:16.365015px;}
.h34{height:16.365030px;}
.h2b{height:16.365075px;}
.h82{height:16.366500px;}
.h2f{height:16.380000px;}
.h84{height:16.381500px;}
.h87{height:16.401000px;}
.h36{height:16.401030px;}
.h86{height:16.410000px;}
.h32{height:16.410030px;}
.h3a{height:16.416000px;}
.h7f{height:16.543500px;}
.h28{height:16.544985px;}
.h37{height:16.545000px;}
.h39{height:16.545015px;}
.h33{height:16.545030px;}
.h2d{height:16.545075px;}
.h85{height:16.558500px;}
.h30{height:16.560000px;}
.h2e{height:16.582500px;}
.h83{height:16.584000px;}
.h75{height:18.163500px;}
.h1a{height:18.164985px;}
.h6a{height:18.165000px;}
.h40{height:18.165030px;}
.h6b{height:18.165075px;}
.h22{height:18.180000px;}
.h3d{height:18.202500px;}
.h88{height:18.343500px;}
.h18{height:18.344985px;}
.h1b{height:18.345000px;}
.h42{height:18.345030px;}
.h19{height:18.345075px;}
.h23{height:18.360000px;}
.h69{height:18.382500px;}
.h3f{height:18.389985px;}
.h89{height:18.390000px;}
.h6e{height:18.390030px;}
.h64{height:19.065000px;}
.h67{height:19.065015px;}
.h9a{height:19.066500px;}
.h5f{height:19.080000px;}
.h5c{height:19.102500px;}
.h68{height:19.116000px;}
.h5b{height:19.244985px;}
.h95{height:19.245000px;}
.h65{height:19.245015px;}
.h9b{height:19.258500px;}
.h5e{height:19.260000px;}
.h72{height:25.839844px;}
.h14{height:27.907031px;}
.h92{height:29.143500px;}
.h44{height:29.144985px;}
.h48{height:29.145000px;}
.h4c{height:29.160000px;}
.h8d{height:29.181000px;}
.h4a{height:29.182500px;}
.h46{height:29.324985px;}
.h47{height:29.325000px;}
.h52{height:29.325030px;}
.h8b{height:29.326500px;}
.h4b{height:29.340000px;}
.h8e{height:29.341500px;}
.h91{height:29.361000px;}
.h51{height:29.361030px;}
.h8f{height:29.368500px;}
.h4e{height:29.369985px;}
.h16{height:31.482422px;}
.h7{height:32.130000px;}
.h96{height:32.923500px;}
.h5a{height:32.924985px;}
.h94{height:32.925000px;}
.h66{height:32.925015px;}
.h61{height:32.925030px;}
.h59{height:32.925075px;}
.h5d{height:32.940000px;}
.h63{height:32.960985px;}
.h99{height:32.961000px;}
.h70{height:32.969985px;}
.ha0{height:32.970000px;}
.h60{height:32.970030px;}
.h97{height:32.971500px;}
.h62{height:33.104985px;}
.h98{height:33.105000px;}
.h6f{height:33.120000px;}
.he{height:34.001016px;}
.h8a{height:34.625391px;}
.h7c{height:36.523500px;}
.h1e{height:36.524985px;}
.h7d{height:36.525000px;}
.h20{height:36.525075px;}
.h9c{height:36.538500px;}
.h6d{height:36.540000px;}
.h1c{height:36.704985px;}
.h7a{height:36.705000px;}
.h6c{height:36.720000px;}
.h21{height:36.742500px;}
.h41{height:37.245030px;}
.h43{height:37.424985px;}
.h73{height:38.759766px;}
.h80{height:39.208008px;}
.h9f{height:40.959844px;}
.h45{height:42.186445px;}
.h11{height:42.894141px;}
.h10{height:43.390195px;}
.h29{height:43.400391px;}
.h4d{height:43.920000px;}
.h6{height:45.900000px;}
.h17{height:47.223633px;}
.hf{height:47.545312px;}
.ha{height:48.029766px;}
.h3{height:48.195000px;}
.h7b{height:48.787031px;}
.h9d{height:48.792071px;}
.h77{height:48.828071px;}
.h7e{height:48.960791px;}
.h78{height:49.006151px;}
.h79{height:49.069511px;}
.h74{height:49.191671px;}
.h76{height:49.233671px;}
.h71{height:49.317191px;}
.h3b{height:50.940000px;}
.hb{height:52.260820px;}
.h9e{height:52.307620px;}
.h13{height:53.734219px;}
.h1f{height:54.880896px;}
.h1d{height:54.881256px;}
.h2{height:55.080000px;}
.h9{height:57.927656px;}
.hd{height:60.279729px;}
.h12{height:69.528867px;}
.hc{height:76.963359px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h26{height:135.396000px;}
.h27{height:135.405000px;}
.h24{height:148.135500px;}
.h25{height:148.140000px;}
.h31{height:247.169970px;}
.h3c{height:266.070000px;}
.h35{height:280.155000px;}
.h3e{height:304.230015px;}
.h2a{height:395.490000px;}
.h0{height:1262.833500px;}
.h15{height:1262.864955px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3f{width:17.624985px;}
.w73{width:17.625000px;}
.w75{width:17.854500px;}
.w42{width:17.856000px;}
.w7{width:21.224985px;}
.w12{width:21.225000px;}
.w55{width:21.226500px;}
.wa{width:21.240000px;}
.w62{width:21.241500px;}
.wd{width:21.404985px;}
.w51{width:21.405000px;}
.w2c{width:31.844985px;}
.w64{width:31.845000px;}
.w6c{width:32.925000px;}
.w36{width:32.925030px;}
.w7a{width:46.243500px;}
.w48{width:46.244985px;}
.w4c{width:49.169985px;}
.w7e{width:49.171500px;}
.w4a{width:50.204985px;}
.w7c{width:50.205000px;}
.w47{width:60.824985px;}
.w79{width:60.825000px;}
.w49{width:60.860985px;}
.w7b{width:60.861000px;}
.w46{width:61.380000px;}
.w1a{width:72.036000px;}
.w78{width:74.338500px;}
.w45{width:74.340000px;}
.w7d{width:78.283500px;}
.w4b{width:78.284985px;}
.w1e{width:90.036000px;}
.w39{width:105.284985px;}
.w6f{width:105.285000px;}
.w38{width:106.236000px;}
.w6e{width:106.237500px;}
.w3a{width:106.400985px;}
.w70{width:106.401000px;}
.w43{width:107.084985px;}
.w76{width:107.085000px;}
.w44{width:111.080985px;}
.w77{width:111.082500px;}
.w18{width:113.256000px;}
.w63{width:116.841000px;}
.w2b{width:116.841030px;}
.we{width:116.849985px;}
.w52{width:116.850000px;}
.w31{width:117.021015px;}
.w68{width:117.022500px;}
.w2a{width:117.036000px;}
.w61{width:119.001000px;}
.w29{width:119.001015px;}
.w14{width:119.160000px;}
.w58{width:123.330000px;}
.w17{width:123.330030px;}
.w15{width:125.496000px;}
.w3b{width:127.469985px;}
.w71{width:127.470000px;}
.w9{width:127.640985px;}
.w4f{width:127.641000px;}
.w32{width:127.649985px;}
.w69{width:127.650000px;}
.wb{width:127.656000px;}
.w57{width:131.779500px;}
.w16{width:131.780985px;}
.w41{width:135.720000px;}
.w2d{width:138.269985px;}
.w65{width:138.271500px;}
.w5{width:138.276000px;}
.wc{width:159.494985px;}
.w50{width:159.496500px;}
.w20{width:168.494985px;}
.w5c{width:168.495000px;}
.w26{width:169.230000px;}
.w2e{width:170.130000px;}
.w5a{width:172.455000px;}
.w1c{width:172.455030px;}
.w24{width:183.614985px;}
.w5d{width:183.615000px;}
.w25{width:183.629985px;}
.w5e{width:183.630000px;}
.w22{width:183.675000px;}
.w23{width:183.810000px;}
.w3c{width:195.555000px;}
.w1d{width:197.669970px;}
.w5b{width:197.671500px;}
.w21{width:203.610000px;}
.w35{width:211.530000px;}
.wf{width:212.655000px;}
.w37{width:233.879970px;}
.w6d{width:233.881500px;}
.w54{width:244.650000px;}
.w11{width:244.650015px;}
.w13{width:255.119985px;}
.w56{width:255.120000px;}
.w2f{width:255.300030px;}
.w66{width:255.301500px;}
.w6a{width:255.315000px;}
.w33{width:255.315015px;}
.w5f{width:257.280000px;}
.w27{width:257.280015px;}
.w40{width:259.800000px;}
.w74{width:259.801500px;}
.w72{width:260.668500px;}
.w3e{width:260.670000px;}
.w1f{width:272.580000px;}
.w67{width:276.360000px;}
.w30{width:276.360030px;}
.w6{width:276.539985px;}
.w4d{width:276.541500px;}
.w60{width:286.980000px;}
.w28{width:286.980015px;}
.w1b{width:292.560000px;}
.w8{width:297.599985px;}
.w4e{width:297.601500px;}
.w34{width:478.365000px;}
.w6b{width:478.366500px;}
.w10{width:521.025015px;}
.w53{width:521.026500px;}
.w3d{width:538.125000px;}
.w19{width:620.414985px;}
.w59{width:620.415000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:5.220000px;}
.x4b{left:7.056000px;}
.x21{left:8.136000px;}
.x24{left:9.345015px;}
.x17{left:10.605000px;}
.x72{left:12.060015px;}
.x25{left:14.400015px;}
.x46{left:16.416000px;}
.x45{left:17.676000px;}
.x20{left:19.080000px;}
.x3c{left:21.225000px;}
.x6d{left:22.500000px;}
.x3e{left:23.970015px;}
.x47{left:25.416000px;}
.x1c{left:26.639985px;}
.x73{left:27.720015px;}
.x19{left:30.585000px;}
.x26{left:32.745000px;}
.x3b{left:34.920000px;}
.x39{left:36.930000px;}
.x23{left:38.700000px;}
.x3a{left:40.125000px;}
.x63{left:41.609985px;}
.x3d{left:42.660015px;}
.x1d{left:44.445015px;}
.x22{left:46.470000px;}
.x36{left:47.550015px;}
.x5d{left:48.600000px;}
.x37{left:50.609985px;}
.x59{left:51.870000px;}
.x57{left:53.820015px;}
.x64{left:56.159970px;}
.x58{left:57.600000px;}
.x5f{left:59.940000px;}
.x5a{left:61.560015px;}
.x61{left:65.369985px;}
.x13{left:69.150000px;}
.x27{left:72.345015px;}
.x15{left:76.890000px;}
.x66{left:78.839985px;}
.x41{left:79.920000px;}
.x6{left:81.000000px;}
.x6a{left:83.369985px;}
.x2d{left:85.500000px;}
.x5c{left:86.610030px;}
.x82{left:89.676000px;}
.x81{left:90.936000px;}
.x54{left:92.010030px;}
.x80{left:96.336000px;}
.x7f{left:97.596000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x51{left:107.670000px;}
.x67{left:111.419985px;}
.x2e{left:146.893500px;}
.x2f{left:151.770000px;}
.x48{left:169.965000px;}
.x75{left:187.050000px;}
.x40{left:194.264985px;}
.x4{left:203.484001px;}
.x5{left:208.290000px;}
.x3f{left:213.847500px;}
.x7e{left:216.930000px;}
.x14{left:219.285000px;}
.x79{left:225.750000px;}
.x7d{left:230.790000px;}
.x74{left:232.230000px;}
.x2a{left:235.267500px;}
.x2b{left:240.150015px;}
.x50{left:249.165000px;}
.x5b{left:251.144985px;}
.x4c{left:263.595000px;}
.x83{left:268.815000px;}
.x65{left:276.555000px;}
.x32{left:293.655000px;}
.x2c{left:297.075000px;}
.x77{left:306.075000px;}
.x5e{left:336.315015px;}
.x1a{left:346.934985px;}
.x6e{left:350.894985px;}
.x76{left:355.935000px;}
.x1b{left:368.175000px;}
.x55{left:389.414985px;}
.x35{left:412.814985px;}
.x6b{left:430.140015px;}
.x49{left:442.560015px;}
.x43{left:444.539985px;}
.x78{left:445.965000px;}
.x4d{left:447.420000px;}
.x3{left:454.959000px;}
.xb{left:473.144985px;}
.x10{left:477.644985px;}
.x6f{left:490.980015px;}
.xc{left:494.385000px;}
.x16{left:495.840000px;}
.x52{left:506.460015px;}
.x18{left:517.080000px;}
.x53{left:527.699985px;}
.x68{left:537.240000px;}
.x33{left:538.320000px;}
.x7{left:548.564985px;}
.x69{left:554.880015px;}
.x34{left:559.560015px;}
.x8{left:575.925015px;}
.x60{left:580.800015px;}
.xd{left:586.882485px;}
.x7a{left:588.015000px;}
.xe{left:591.765015px;}
.x4a{left:611.070000px;}
.x7c{left:613.035000px;}
.x70{left:615.750000px;}
.x44{left:617.010000px;}
.x7b{left:623.310000px;}
.x4e{left:631.050015px;}
.x84{left:636.270000px;}
.x9{left:640.410000px;}
.x56{left:644.550015px;}
.x6c{left:665.970015px;}
.x1e{left:676.410000px;}
.x62{left:687.210015px;}
.xf{left:689.189985px;}
.x38{left:691.349985px;}
.x1f{left:697.830000px;}
.x4f{left:717.630015px;}
.x11{left:753.967500px;}
.x30{left:756.307500px;}
.x12{left:758.849985px;}
.x31{left:761.189985px;}
.x71{left:765.510000px;}
.x28{left:789.637500px;}
.x29{left:794.519985px;}
.xa{left:812.160000px;}
@media print{
.v2{vertical-align:-18.559893pt;}
.v5{vertical-align:-13.440107pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440107pt;}
.v3{vertical-align:18.560213pt;}
.v1{vertical-align:21.120107pt;}
.ls6e{letter-spacing:-1.488000pt;}
.ls6f{letter-spacing:-1.392000pt;}
.ls6d{letter-spacing:-1.248000pt;}
.ls94{letter-spacing:-1.115520pt;}
.ls18{letter-spacing:-1.009280pt;}
.ls8a{letter-spacing:-0.960000pt;}
.ls8e{letter-spacing:-0.956160pt;}
.ls8d{letter-spacing:-0.903040pt;}
.ls6a{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.849920pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls93{letter-spacing:-0.796800pt;}
.ls6b{letter-spacing:-0.768000pt;}
.ls8c{letter-spacing:-0.743680pt;}
.ls76{letter-spacing:-0.720000pt;}
.ls3d{letter-spacing:-0.698667pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls64{letter-spacing:-0.690560pt;}
.ls6c{letter-spacing:-0.672000pt;}
.ls29{letter-spacing:-0.656000pt;}
.ls5e{letter-spacing:-0.637440pt;}
.ls74{letter-spacing:-0.624000pt;}
.ls4e{letter-spacing:-0.618667pt;}
.ls2f{letter-spacing:-0.592000pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls63{letter-spacing:-0.584320pt;}
.ls75{letter-spacing:-0.576000pt;}
.ls5d{letter-spacing:-0.531200pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls62{letter-spacing:-0.478080pt;}
.lsa8{letter-spacing:-0.471680pt;}
.ls69{letter-spacing:-0.424960pt;}
.ls4d{letter-spacing:-0.383467pt;}
.ls1b{letter-spacing:-0.371840pt;}
.ls3c{letter-spacing:-0.368000pt;}
.lsa2{letter-spacing:-0.343040pt;}
.ls9d{letter-spacing:-0.336000pt;}
.ls5c{letter-spacing:-0.318720pt;}
.lsa3{letter-spacing:-0.300160pt;}
.ls26{letter-spacing:-0.290133pt;}
.ls9c{letter-spacing:-0.288000pt;}
.ls42{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.265600pt;}
.ls5{letter-spacing:-0.265067pt;}
.ls16{letter-spacing:-0.259840pt;}
.ls6{letter-spacing:-0.259733pt;}
.lsa5{letter-spacing:-0.257280pt;}
.ls7{letter-spacing:-0.242133pt;}
.ls17{letter-spacing:-0.241920pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls4a{letter-spacing:-0.224000pt;}
.lsa1{letter-spacing:-0.214400pt;}
.ls1c{letter-spacing:-0.212480pt;}
.ls43{letter-spacing:-0.208000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsa6{letter-spacing:-0.171520pt;}
.ls28{letter-spacing:-0.160000pt;}
.ls9b{letter-spacing:-0.159360pt;}
.ls73{letter-spacing:-0.144000pt;}
.ls7f{letter-spacing:-0.106240pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls3f{letter-spacing:-0.095467pt;}
.ls2d{letter-spacing:-0.069867pt;}
.ls2c{letter-spacing:-0.061867pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls46{letter-spacing:-0.039040pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls49{letter-spacing:-0.008960pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa9{letter-spacing:0.032000pt;}
.ls72{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.053120pt;}
.ls20{letter-spacing:0.053867pt;}
.ls3a{letter-spacing:0.059733pt;}
.ls41{letter-spacing:0.064000pt;}
.ls50{letter-spacing:0.069067pt;}
.ls51{letter-spacing:0.069120pt;}
.ls37{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.108160pt;}
.ls1f{letter-spacing:0.124800pt;}
.lsa4{letter-spacing:0.128640pt;}
.ls25{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.144000pt;}
.ls52{letter-spacing:0.154827pt;}
.ls35{letter-spacing:0.154880pt;}
.ls47{letter-spacing:0.157867pt;}
.lsa{letter-spacing:0.159360pt;}
.ls21{letter-spacing:0.160000pt;}
.lsa0{letter-spacing:0.171520pt;}
.ls4b{letter-spacing:0.176000pt;}
.ls9f{letter-spacing:0.184960pt;}
.ls13{letter-spacing:0.212480pt;}
.lsa7{letter-spacing:0.214400pt;}
.ls55{letter-spacing:0.216213pt;}
.ls53{letter-spacing:0.216373pt;}
.ls2a{letter-spacing:0.216533pt;}
.ls48{letter-spacing:0.237333pt;}
.ls11{letter-spacing:0.240000pt;}
.ls45{letter-spacing:0.256533pt;}
.lsc{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.272000pt;}
.ls9e{letter-spacing:0.288000pt;}
.ls3e{letter-spacing:0.302507pt;}
.ls24{letter-spacing:0.317333pt;}
.ls66{letter-spacing:0.318720pt;}
.ls44{letter-spacing:0.320000pt;}
.lsaa{letter-spacing:0.336000pt;}
.ls61{letter-spacing:0.371840pt;}
.ls33{letter-spacing:0.398080pt;}
.ls56{letter-spacing:0.416000pt;}
.ls7d{letter-spacing:0.424960pt;}
.ls2b{letter-spacing:0.426240pt;}
.ls88{letter-spacing:0.531200pt;}
.ls1e{letter-spacing:0.566347pt;}
.ls57{letter-spacing:0.584320pt;}
.ls36{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.672000pt;}
.ls1d{letter-spacing:0.690560pt;}
.ls8{letter-spacing:0.693333pt;}
.ls31{letter-spacing:0.709013pt;}
.ls30{letter-spacing:0.709067pt;}
.ls54{letter-spacing:0.709120pt;}
.ls34{letter-spacing:0.709173pt;}
.ls4f{letter-spacing:0.709227pt;}
.ls2e{letter-spacing:0.726453pt;}
.ls82{letter-spacing:0.743680pt;}
.ls92{letter-spacing:0.796800pt;}
.ls87{letter-spacing:0.815787pt;}
.ls32{letter-spacing:0.815840pt;}
.lse{letter-spacing:1.434240pt;}
.ls67{letter-spacing:1.968000pt;}
.ls81{letter-spacing:2.071680pt;}
.ls60{letter-spacing:2.709120pt;}
.ls65{letter-spacing:3.293440pt;}
.ls5a{letter-spacing:3.346560pt;}
.ls7a{letter-spacing:3.505920pt;}
.ls7e{letter-spacing:3.888000pt;}
.ls95{letter-spacing:3.984000pt;}
.lsd{letter-spacing:4.621440pt;}
.ls77{letter-spacing:5.258880pt;}
.ls90{letter-spacing:5.418240pt;}
.ls5b{letter-spacing:6.533760pt;}
.ls86{letter-spacing:7.056000pt;}
.ls7c{letter-spacing:7.861760pt;}
.ls97{letter-spacing:8.499200pt;}
.ls79{letter-spacing:9.136640pt;}
.ls68{letter-spacing:9.648000pt;}
.ls84{letter-spacing:9.774080pt;}
.ls99{letter-spacing:10.411520pt;}
.ls91{letter-spacing:11.048960pt;}
.ls80{letter-spacing:11.424000pt;}
.ls7b{letter-spacing:11.686400pt;}
.ls8f{letter-spacing:12.323840pt;}
.ls70{letter-spacing:12.961280pt;}
.ls98{letter-spacing:13.598720pt;}
.ls58{letter-spacing:14.236160pt;}
.ls89{letter-spacing:14.624000pt;}
.ls8b{letter-spacing:14.873600pt;}
.ls38{letter-spacing:14.874933pt;}
.ls59{letter-spacing:15.511040pt;}
.ls5f{letter-spacing:16.148480pt;}
.ls85{letter-spacing:19.248000pt;}
.ls78{letter-spacing:19.973120pt;}
.ls83{letter-spacing:22.576000pt;}
.ls96{letter-spacing:34.049920pt;}
.ls9a{letter-spacing:50.729600pt;}
.lsab{letter-spacing:1274.639787pt;}
.ls4c{letter-spacing:1274.639893pt;}
.ls9{letter-spacing:1298.959787pt;}
.ls1{letter-spacing:1298.959893pt;}
.ws45{word-spacing:-12.591787pt;}
.ws105{word-spacing:-12.589440pt;}
.wsa3{word-spacing:-12.323840pt;}
.ws3c{word-spacing:-12.322453pt;}
.ws3a{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.270720pt;}
.ws53{word-spacing:-12.261653pt;}
.ws42{word-spacing:-12.221653pt;}
.ws6{word-spacing:-12.217600pt;}
.wsdb{word-spacing:-12.164480pt;}
.ws39{word-spacing:-12.129920pt;}
.ws9{word-spacing:-12.111360pt;}
.ws48{word-spacing:-12.064853pt;}
.wsb{word-spacing:-12.058240pt;}
.ws4{word-spacing:-12.005120pt;}
.ws54{word-spacing:-11.966080pt;}
.ws2{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.952000pt;}
.ws41{word-spacing:-11.943253pt;}
.ws43{word-spacing:-11.935253pt;}
.ws4c{word-spacing:-11.909653pt;}
.wsda{word-spacing:-11.898880pt;}
.ws174{word-spacing:-11.845760pt;}
.wsa2{word-spacing:-11.792640pt;}
.ws5c{word-spacing:-11.739520pt;}
.ws3b{word-spacing:-11.714987pt;}
.wsa1{word-spacing:-11.686400pt;}
.ws4a{word-spacing:-11.637120pt;}
.wsc{word-spacing:-11.633280pt;}
.ws10f{word-spacing:-11.580160pt;}
.ws132{word-spacing:-11.527040pt;}
.ws5b{word-spacing:-11.473920pt;}
.ws185{word-spacing:-11.420800pt;}
.ws5a{word-spacing:-11.386453pt;}
.ws110{word-spacing:-11.367680pt;}
.wsc6{word-spacing:-11.314560pt;}
.ws49{word-spacing:-11.311787pt;}
.ws4b{word-spacing:-11.306453pt;}
.ws10e{word-spacing:-11.261440pt;}
.ws52{word-spacing:-11.168000pt;}
.ws7f{word-spacing:-11.155200pt;}
.ws172{word-spacing:-11.136000pt;}
.ws130{word-spacing:-11.048960pt;}
.ws59{word-spacing:-11.024000pt;}
.ws4d{word-spacing:-10.992000pt;}
.ws4f{word-spacing:-10.912000pt;}
.ws171{word-spacing:-10.896000pt;}
.ws131{word-spacing:-10.889600pt;}
.ws5{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws4e{word-spacing:-10.752000pt;}
.wsc9{word-spacing:-10.704000pt;}
.ws3e{word-spacing:-10.688000pt;}
.ws16e{word-spacing:-10.656000pt;}
.ws51{word-spacing:-10.640000pt;}
.ws40{word-spacing:-10.608000pt;}
.ws50{word-spacing:-10.576000pt;}
.ws16f{word-spacing:-10.560000pt;}
.ws170{word-spacing:-10.512000pt;}
.wscb{word-spacing:-10.272000pt;}
.ws44{word-spacing:-10.256000pt;}
.wsca{word-spacing:-10.224000pt;}
.ws3f{word-spacing:-10.192000pt;}
.ws188{word-spacing:-10.176000pt;}
.wsc8{word-spacing:-10.080000pt;}
.ws3d{word-spacing:-10.048000pt;}
.wsc7{word-spacing:-9.984000pt;}
.ws58{word-spacing:-9.928213pt;}
.ws17c{word-spacing:-9.905280pt;}
.ws17b{word-spacing:-9.862400pt;}
.ws55{word-spacing:-9.848747pt;}
.ws177{word-spacing:-9.819520pt;}
.ws56{word-spacing:-9.690880pt;}
.ws57{word-spacing:-9.681920pt;}
.wsa5{word-spacing:-9.600000pt;}
.ws17a{word-spacing:-9.519360pt;}
.ws179{word-spacing:-9.476480pt;}
.ws178{word-spacing:-9.433600pt;}
.ws176{word-spacing:-9.390720pt;}
.ws175{word-spacing:-9.347840pt;}
.ws17d{word-spacing:-9.219200pt;}
.ws3{word-spacing:-8.129387pt;}
.ws8{word-spacing:-8.129280pt;}
.ws46{word-spacing:-7.879893pt;}
.ws106{word-spacing:-7.879680pt;}
.ws47{word-spacing:-7.810560pt;}
.wsa4{word-spacing:-7.232000pt;}
.ws89{word-spacing:-3.293440pt;}
.ws33{word-spacing:-0.690560pt;}
.wsba{word-spacing:-0.584320pt;}
.ws14{word-spacing:-0.529920pt;}
.ws123{word-spacing:-0.478080pt;}
.wsc5{word-spacing:-0.384000pt;}
.ws184{word-spacing:-0.336000pt;}
.ws107{word-spacing:-0.318720pt;}
.wsf{word-spacing:-0.240000pt;}
.ws180{word-spacing:-0.214400pt;}
.ws18{word-spacing:-0.212480pt;}
.ws146{word-spacing:-0.159360pt;}
.ws10{word-spacing:-0.144000pt;}
.ws28{word-spacing:-0.106240pt;}
.ws187{word-spacing:-0.069120pt;}
.ws18a{word-spacing:-0.064000pt;}
.ws7a{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws17f{word-spacing:0.042880pt;}
.ws12{word-spacing:0.053120pt;}
.wsd9{word-spacing:0.096000pt;}
.wsf1{word-spacing:0.106240pt;}
.wsbc{word-spacing:0.117760pt;}
.wsfd{word-spacing:0.144000pt;}
.ws11{word-spacing:0.159360pt;}
.ws15{word-spacing:0.176640pt;}
.wsd{word-spacing:0.192000pt;}
.ws30{word-spacing:0.212480pt;}
.ws17e{word-spacing:0.214400pt;}
.wse{word-spacing:0.240000pt;}
.ws16{word-spacing:0.241920pt;}
.ws13{word-spacing:0.265600pt;}
.ws173{word-spacing:0.288000pt;}
.ws183{word-spacing:0.300160pt;}
.ws67{word-spacing:0.318720pt;}
.ws189{word-spacing:0.336000pt;}
.ws181{word-spacing:0.343040pt;}
.ws26{word-spacing:0.371840pt;}
.wsf2{word-spacing:0.424960pt;}
.ws117{word-spacing:0.478080pt;}
.ws111{word-spacing:0.531200pt;}
.ws104{word-spacing:0.576000pt;}
.ws84{word-spacing:0.584320pt;}
.ws182{word-spacing:0.600320pt;}
.ws17{word-spacing:0.637440pt;}
.ws8a{word-spacing:0.690560pt;}
.ws21{word-spacing:0.743680pt;}
.ws136{word-spacing:0.796800pt;}
.ws24{word-spacing:0.849920pt;}
.wsf0{word-spacing:0.864000pt;}
.ws13f{word-spacing:0.903040pt;}
.ws13a{word-spacing:0.956160pt;}
.ws22{word-spacing:1.009280pt;}
.wsae{word-spacing:1.115520pt;}
.ws61{word-spacing:1.168640pt;}
.ws29{word-spacing:1.221760pt;}
.wsfe{word-spacing:1.274880pt;}
.ws103{word-spacing:1.328000pt;}
.ws19{word-spacing:1.381120pt;}
.ws14a{word-spacing:1.434240pt;}
.wscf{word-spacing:1.487360pt;}
.wsd6{word-spacing:1.488000pt;}
.ws60{word-spacing:1.540480pt;}
.ws34{word-spacing:1.593600pt;}
.ws124{word-spacing:1.646720pt;}
.ws15d{word-spacing:1.699840pt;}
.ws6d{word-spacing:1.752960pt;}
.ws31{word-spacing:1.806080pt;}
.ws91{word-spacing:1.859200pt;}
.ws76{word-spacing:1.965440pt;}
.ws2a{word-spacing:2.018560pt;}
.ws87{word-spacing:2.071680pt;}
.wsc2{word-spacing:2.112000pt;}
.ws186{word-spacing:2.177920pt;}
.ws88{word-spacing:2.231040pt;}
.ws126{word-spacing:2.337280pt;}
.ws11d{word-spacing:2.390400pt;}
.ws38{word-spacing:2.443520pt;}
.ws145{word-spacing:2.496640pt;}
.wsff{word-spacing:2.549760pt;}
.ws7d{word-spacing:2.602880pt;}
.ws1f{word-spacing:2.656000pt;}
.ws125{word-spacing:2.709120pt;}
.wsb4{word-spacing:2.762240pt;}
.wsbe{word-spacing:2.784000pt;}
.wsd1{word-spacing:2.868480pt;}
.wsbb{word-spacing:2.921600pt;}
.ws167{word-spacing:2.974720pt;}
.ws118{word-spacing:3.027840pt;}
.ws168{word-spacing:3.080960pt;}
.ws135{word-spacing:3.134080pt;}
.ws75{word-spacing:3.240320pt;}
.ws62{word-spacing:3.293440pt;}
.wsb8{word-spacing:3.346560pt;}
.wsef{word-spacing:3.399680pt;}
.wsbd{word-spacing:3.408000pt;}
.ws13b{word-spacing:3.452800pt;}
.ws6a{word-spacing:3.505920pt;}
.ws15e{word-spacing:3.612160pt;}
.ws119{word-spacing:3.665280pt;}
.ws158{word-spacing:3.718400pt;}
.ws16c{word-spacing:3.771520pt;}
.ws16d{word-spacing:3.824640pt;}
.ws1e{word-spacing:3.877760pt;}
.ws1d{word-spacing:3.930880pt;}
.ws157{word-spacing:3.984000pt;}
.ws11a{word-spacing:4.143360pt;}
.ws74{word-spacing:4.196480pt;}
.ws113{word-spacing:4.302720pt;}
.ws95{word-spacing:4.355840pt;}
.ws121{word-spacing:4.408960pt;}
.wsa8{word-spacing:4.462080pt;}
.wsa0{word-spacing:4.515200pt;}
.ws37{word-spacing:4.568320pt;}
.ws36{word-spacing:4.621440pt;}
.wsf7{word-spacing:4.674560pt;}
.wse9{word-spacing:4.704000pt;}
.wse4{word-spacing:4.780800pt;}
.ws27{word-spacing:4.940160pt;}
.ws10d{word-spacing:4.993280pt;}
.ws10c{word-spacing:5.046400pt;}
.wsdd{word-spacing:5.099520pt;}
.ws9d{word-spacing:5.152640pt;}
.ws20{word-spacing:5.205760pt;}
.wsce{word-spacing:5.258880pt;}
.ws25{word-spacing:5.418240pt;}
.ws109{word-spacing:5.424000pt;}
.ws23{word-spacing:5.577600pt;}
.ws101{word-spacing:5.630720pt;}
.ws137{word-spacing:5.683840pt;}
.ws10b{word-spacing:5.790080pt;}
.ws1c{word-spacing:5.843200pt;}
.ws152{word-spacing:5.896320pt;}
.wscd{word-spacing:5.949440pt;}
.wsf8{word-spacing:5.952000pt;}
.ws92{word-spacing:6.055680pt;}
.ws139{word-spacing:6.161920pt;}
.ws11c{word-spacing:6.215040pt;}
.ws162{word-spacing:6.321280pt;}
.wse5{word-spacing:6.374400pt;}
.ws93{word-spacing:6.427520pt;}
.ws1b{word-spacing:6.480640pt;}
.wsd0{word-spacing:6.586880pt;}
.ws156{word-spacing:6.693120pt;}
.ws9e{word-spacing:6.852480pt;}
.ws8f{word-spacing:6.905600pt;}
.ws9f{word-spacing:7.011840pt;}
.wsd4{word-spacing:7.064960pt;}
.ws1a{word-spacing:7.118080pt;}
.wsf3{word-spacing:7.330560pt;}
.ws7b{word-spacing:7.489920pt;}
.ws99{word-spacing:7.543040pt;}
.ws163{word-spacing:7.649280pt;}
.ws133{word-spacing:7.702400pt;}
.ws71{word-spacing:7.755520pt;}
.ws134{word-spacing:7.808640pt;}
.wsab{word-spacing:7.861760pt;}
.wsc4{word-spacing:7.872000pt;}
.ws94{word-spacing:7.968000pt;}
.ws13c{word-spacing:8.127360pt;}
.ws122{word-spacing:8.180480pt;}
.ws77{word-spacing:8.233600pt;}
.ws14f{word-spacing:8.392960pt;}
.wsc3{word-spacing:8.400000pt;}
.ws2c{word-spacing:8.446080pt;}
.wsfb{word-spacing:8.544000pt;}
.ws14d{word-spacing:8.552320pt;}
.ws64{word-spacing:8.658560pt;}
.ws114{word-spacing:8.817920pt;}
.wsb9{word-spacing:8.871040pt;}
.wse0{word-spacing:8.924160pt;}
.ws15f{word-spacing:8.977280pt;}
.ws5f{word-spacing:9.083520pt;}
.ws115{word-spacing:9.136640pt;}
.wsfc{word-spacing:9.168000pt;}
.ws7e{word-spacing:9.189760pt;}
.ws85{word-spacing:9.296000pt;}
.ws116{word-spacing:9.455360pt;}
.ws63{word-spacing:9.508480pt;}
.ws9c{word-spacing:9.561600pt;}
.ws69{word-spacing:9.720960pt;}
.wsdc{word-spacing:9.774080pt;}
.ws12d{word-spacing:9.933440pt;}
.ws11b{word-spacing:10.092800pt;}
.wse7{word-spacing:10.145920pt;}
.wsdf{word-spacing:10.199040pt;}
.wsc1{word-spacing:10.272000pt;}
.wsde{word-spacing:10.305280pt;}
.ws6f{word-spacing:10.358400pt;}
.wsbf{word-spacing:10.368000pt;}
.ws149{word-spacing:10.411520pt;}
.wsc0{word-spacing:10.464000pt;}
.ws90{word-spacing:10.464640pt;}
.ws80{word-spacing:10.570880pt;}
.wse3{word-spacing:10.624000pt;}
.ws6c{word-spacing:10.730240pt;}
.wse2{word-spacing:10.783360pt;}
.ws166{word-spacing:10.836480pt;}
.wsb6{word-spacing:10.942720pt;}
.ws35{word-spacing:10.995840pt;}
.ws9a{word-spacing:11.048960pt;}
.wsd7{word-spacing:11.088000pt;}
.wsd3{word-spacing:11.102080pt;}
.ws6e{word-spacing:11.208320pt;}
.ws86{word-spacing:11.367680pt;}
.wsb7{word-spacing:11.420800pt;}
.wseb{word-spacing:11.472000pt;}
.ws83{word-spacing:11.473920pt;}
.ws2e{word-spacing:11.580160pt;}
.ws2d{word-spacing:11.633280pt;}
.ws160{word-spacing:11.686400pt;}
.wsec{word-spacing:11.712000pt;}
.ws12f{word-spacing:11.739520pt;}
.ws14c{word-spacing:11.792640pt;}
.ws12e{word-spacing:11.845760pt;}
.ws11f{word-spacing:12.005120pt;}
.ws100{word-spacing:12.164480pt;}
.ws7c{word-spacing:12.270720pt;}
.wsd5{word-spacing:12.483200pt;}
.wsee{word-spacing:12.642560pt;}
.wsed{word-spacing:12.695680pt;}
.wsd2{word-spacing:12.801920pt;}
.ws8e{word-spacing:12.908160pt;}
.ws12a{word-spacing:13.014400pt;}
.ws82{word-spacing:13.120640pt;}
.wsac{word-spacing:13.280000pt;}
.wsea{word-spacing:13.536000pt;}
.ws70{word-spacing:13.545600pt;}
.ws147{word-spacing:13.758080pt;}
.ws141{word-spacing:13.917440pt;}
.ws144{word-spacing:13.970560pt;}
.ws154{word-spacing:14.023680pt;}
.ws68{word-spacing:14.076800pt;}
.ws32{word-spacing:14.183040pt;}
.ws96{word-spacing:14.395520pt;}
.ws153{word-spacing:14.608000pt;}
.ws140{word-spacing:14.661120pt;}
.ws155{word-spacing:14.714240pt;}
.ws73{word-spacing:14.820480pt;}
.wsb3{word-spacing:15.032960pt;}
.ws127{word-spacing:15.192320pt;}
.wsf5{word-spacing:15.404800pt;}
.ws5d{word-spacing:15.457920pt;}
.wsad{word-spacing:15.511040pt;}
.wsf6{word-spacing:15.670400pt;}
.ws6b{word-spacing:15.723520pt;}
.ws129{word-spacing:15.776640pt;}
.ws112{word-spacing:15.829760pt;}
.wsf4{word-spacing:15.882880pt;}
.ws9b{word-spacing:15.936000pt;}
.ws66{word-spacing:16.095360pt;}
.ws65{word-spacing:16.201600pt;}
.wsd8{word-spacing:16.224000pt;}
.ws97{word-spacing:16.307840pt;}
.wsa6{word-spacing:16.732800pt;}
.wsa7{word-spacing:16.785920pt;}
.ws2f{word-spacing:17.370240pt;}
.wsb1{word-spacing:17.582720pt;}
.ws120{word-spacing:17.742080pt;}
.ws8b{word-spacing:18.007680pt;}
.ws12b{word-spacing:18.060800pt;}
.ws12c{word-spacing:18.167040pt;}
.ws138{word-spacing:18.432640pt;}
.ws11e{word-spacing:18.645120pt;}
.ws159{word-spacing:18.857600pt;}
.wsb0{word-spacing:19.016960pt;}
.ws72{word-spacing:19.282560pt;}
.wsfa{word-spacing:19.296000pt;}
.wsf9{word-spacing:19.392000pt;}
.ws13d{word-spacing:19.441920pt;}
.wsaf{word-spacing:19.495040pt;}
.ws14e{word-spacing:19.707520pt;}
.wse1{word-spacing:19.920000pt;}
.wsb5{word-spacing:19.973120pt;}
.ws79{word-spacing:20.344960pt;}
.ws2b{word-spacing:20.557440pt;}
.wse6{word-spacing:20.769920pt;}
.ws143{word-spacing:20.982400pt;}
.ws108{word-spacing:21.194880pt;}
.ws78{word-spacing:21.248000pt;}
.ws5e{word-spacing:21.885440pt;}
.ws169{word-spacing:22.257280pt;}
.ws142{word-spacing:22.363520pt;}
.ws81{word-spacing:22.522880pt;}
.ws8c{word-spacing:23.160320pt;}
.ws8d{word-spacing:23.213440pt;}
.wsb2{word-spacing:23.797760pt;}
.ws161{word-spacing:24.860160pt;}
.wse8{word-spacing:25.072640pt;}
.ws15a{word-spacing:26.135040pt;}
.ws98{word-spacing:26.347520pt;}
.ws165{word-spacing:26.772480pt;}
.ws13e{word-spacing:27.941120pt;}
.ws10a{word-spacing:29.800320pt;}
.ws148{word-spacing:30.650240pt;}
.ws150{word-spacing:31.447040pt;}
.ws151{word-spacing:31.500160pt;}
.ws15c{word-spacing:33.731200pt;}
.ws15b{word-spacing:34.103040pt;}
.ws14b{word-spacing:34.634240pt;}
.ws128{word-spacing:35.324800pt;}
.wscc{word-spacing:36.599680pt;}
.ws164{word-spacing:36.971520pt;}
.ws102{word-spacing:42.974080pt;}
.ws16b{word-spacing:50.464000pt;}
.ws16a{word-spacing:51.101440pt;}
.wsa9{word-spacing:55.616640pt;}
.wsaa{word-spacing:55.776000pt;}
._26{margin-left:-10.480640pt;}
._24{margin-left:-3.984000pt;}
._25{margin-left:-3.012053pt;}
._18{margin-left:-2.059947pt;}
._2{margin-left:-0.952107pt;}
._0{width:0.903040pt;}
._3{width:1.874773pt;}
._1{width:3.566933pt;}
._7{width:4.627200pt;}
._6{width:5.790080pt;}
._4{width:6.799360pt;}
._5{width:7.755520pt;}
._a{width:8.817920pt;}
._11{width:9.774080pt;}
._8{width:10.730240pt;}
._1b{width:11.914880pt;}
._12{width:13.014400pt;}
._e{width:14.448640pt;}
._f{width:16.042240pt;}
._c{width:17.264000pt;}
._b{width:18.167040pt;}
._d{width:19.602880pt;}
._9{width:20.823040pt;}
._10{width:22.416640pt;}
._15{width:23.744640pt;}
._1a{width:25.338240pt;}
._14{width:26.800267pt;}
._13{width:28.107573pt;}
._1d{width:29.572533pt;}
._1e{width:30.665547pt;}
._22{width:31.638720pt;}
._21{width:33.256747pt;}
._1f{width:34.177707pt;}
._20{width:35.259947pt;}
._19{width:36.705920pt;}
._1c{width:43.080320pt;}
._23{width:50.068693pt;}
._16{width:55.404160pt;}
._17{width:56.417707pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y289{bottom:-12.680013pt;}
.y60e{bottom:-12.680000pt;}
.y298{bottom:-12.666667pt;}
.y602{bottom:-12.641333pt;}
.y27d{bottom:-12.640053pt;}
.y291{bottom:-12.640013pt;}
.y605{bottom:-12.640000pt;}
.y287{bottom:-12.639987pt;}
.y280{bottom:-12.639973pt;}
.y30e{bottom:-11.400000pt;}
.y272{bottom:-11.399987pt;}
.y236{bottom:-11.373360pt;}
.y242{bottom:-11.373333pt;}
.y26e{bottom:-11.373320pt;}
.y2f1{bottom:-11.373293pt;}
.y5df{bottom:-11.372000pt;}
.y226{bottom:-11.360027pt;}
.y23c{bottom:-11.360013pt;}
.y274{bottom:-11.360000pt;}
.y240{bottom:-11.359987pt;}
.y229{bottom:-11.359947pt;}
.y5ed{bottom:-11.358667pt;}
.y664{bottom:-4.640000pt;}
.y325{bottom:-4.639973pt;}
.y332{bottom:-4.480027pt;}
.y660{bottom:-4.480000pt;}
.y322{bottom:-4.479987pt;}
.y320{bottom:-4.479973pt;}
.y0{bottom:0.000000pt;}
.y2da{bottom:2.866653pt;}
.y2cd{bottom:2.866667pt;}
.y2d6{bottom:2.866680pt;}
.y62b{bottom:2.878667pt;}
.y2aa{bottom:2.879960pt;}
.y2ad{bottom:2.879973pt;}
.y2bc{bottom:2.880000pt;}
.y2c5{bottom:2.880013pt;}
.y2e2{bottom:2.906667pt;}
.y2d3{bottom:3.026667pt;}
.y2e0{bottom:3.026680pt;}
.y2d0{bottom:3.026693pt;}
.y2b0{bottom:3.039960pt;}
.y2c3{bottom:3.039987pt;}
.y2c1{bottom:3.040000pt;}
.y2b4{bottom:3.040040pt;}
.y347{bottom:3.186600pt;}
.y341{bottom:3.186613pt;}
.y265{bottom:3.186667pt;}
.y25e{bottom:3.186680pt;}
.y2f2{bottom:3.186693pt;}
.y227{bottom:3.199947pt;}
.y239{bottom:3.199960pt;}
.y244{bottom:3.199987pt;}
.y251{bottom:3.200000pt;}
.y223{bottom:3.200027pt;}
.y231{bottom:3.200040pt;}
.y5f1{bottom:3.201333pt;}
.y260{bottom:3.346640pt;}
.y267{bottom:3.346653pt;}
.y263{bottom:3.346667pt;}
.y237{bottom:3.346680pt;}
.y5e0{bottom:3.348000pt;}
.y643{bottom:3.358667pt;}
.y22c{bottom:3.359947pt;}
.y246{bottom:3.359987pt;}
.y275{bottom:3.360000pt;}
.y252{bottom:3.360013pt;}
.y21f{bottom:3.360027pt;}
.y5ee{bottom:3.361333pt;}
.y233{bottom:3.399973pt;}
.y5dc{bottom:3.400000pt;}
.y1b7{bottom:3.506667pt;}
.y603{bottom:3.518667pt;}
.y1b3{bottom:3.519933pt;}
.y27e{bottom:3.519947pt;}
.y471{bottom:3.520000pt;}
.y14b{bottom:3.520013pt;}
.y295{bottom:3.520027pt;}
.y61d{bottom:3.521333pt;}
.y290{bottom:3.666667pt;}
.y60b{bottom:3.678667pt;}
.y1b1{bottom:3.679933pt;}
.y2a5{bottom:3.679973pt;}
.y46f{bottom:3.680000pt;}
.y148{bottom:3.680013pt;}
.y622{bottom:3.681333pt;}
.y208{bottom:8.160000pt;}
.y5cf{bottom:10.093333pt;}
.y219{bottom:10.093347pt;}
.y278{bottom:11.200000pt;}
.y2a3{bottom:12.160000pt;}
.y2a0{bottom:12.160027pt;}
.y2de{bottom:15.826653pt;}
.y63c{bottom:15.826667pt;}
.y2a9{bottom:15.840000pt;}
.y2b2{bottom:15.840013pt;}
.y2d2{bottom:15.986653pt;}
.y2d8{bottom:15.986667pt;}
.y2cf{bottom:15.986693pt;}
.y62a{bottom:15.998667pt;}
.y2ac{bottom:16.000000pt;}
.y2bf{bottom:16.026653pt;}
.y632{bottom:16.026667pt;}
.y2cc{bottom:16.026693pt;}
.y30f{bottom:17.906653pt;}
.y2f3{bottom:17.906667pt;}
.y30b{bottom:17.906680pt;}
.y644{bottom:17.918667pt;}
.y2e7{bottom:17.920000pt;}
.y302{bottom:17.920013pt;}
.y64f{bottom:17.921333pt;}
.y34c{bottom:17.946653pt;}
.y64c{bottom:17.946667pt;}
.y2fa{bottom:17.946693pt;}
.y2ff{bottom:18.080000pt;}
.y1ac{bottom:19.840000pt;}
.y1af{bottom:19.840013pt;}
.y1aa{bottom:20.000000pt;}
.y5c5{bottom:21.426667pt;}
.y210{bottom:21.426680pt;}
.y277{bottom:25.920000pt;}
.y218{bottom:26.413333pt;}
.y2be{bottom:28.960000pt;}
.y6{bottom:31.933340pt;}
.y20f{bottom:37.586667pt;}
.y217{bottom:42.733320pt;}
.y5cc{bottom:42.733333pt;}
.y20e{bottom:53.906653pt;}
.y5c3{bottom:53.906667pt;}
.y5ca{bottom:58.893333pt;}
.y216{bottom:58.893347pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:62.240000pt;}
.y5c2{bottom:70.226667pt;}
.y20d{bottom:70.226680pt;}
.y215{bottom:75.213333pt;}
.y4{bottom:86.333337pt;}
.y20c{bottom:86.546627pt;}
.y5c1{bottom:86.546667pt;}
.y214{bottom:91.533333pt;}
.y276{bottom:96.960000pt;}
.y24a{bottom:98.399987pt;}
.y4a4{bottom:99.773813pt;}
.y547{bottom:99.792853pt;}
.y17f{bottom:99.840000pt;}
.y4f8{bottom:100.318667pt;}
.y1a1{bottom:100.320000pt;}
.y313{bottom:101.280000pt;}
.y5ae{bottom:102.101813pt;}
.y387{bottom:102.168213pt;}
.yc4{bottom:102.240000pt;}
.y5c0{bottom:102.706667pt;}
.y20b{bottom:102.706707pt;}
.y3be{bottom:102.739253pt;}
.y549{bottom:102.805653pt;}
.yf7{bottom:102.880000pt;}
.y3e5{bottom:103.124373pt;}
.y11b{bottom:103.200000pt;}
.y579{bottom:103.204053pt;}
.y3d2{bottom:103.217333pt;}
.y444{bottom:103.283733pt;}
.y10b{bottom:103.360000pt;}
.y185{bottom:104.480000pt;}
.y4d3{bottom:104.484000pt;}
.y2e5{bottom:104.800000pt;}
.y1dc{bottom:105.440000pt;}
.y90{bottom:106.213707pt;}
.y5b{bottom:106.240000pt;}
.y85{bottom:106.386347pt;}
.y51{bottom:106.400000pt;}
.y212{bottom:107.679973pt;}
.y5c8{bottom:107.680000pt;}
.y5ff{bottom:108.156000pt;}
.y41a{bottom:108.952000pt;}
.y125{bottom:108.960000pt;}
.y65d{bottom:109.115200pt;}
.y31d{bottom:109.120000pt;}
.y279{bottom:112.320000pt;}
.y46e{bottom:112.790667pt;}
.y146{bottom:112.800000pt;}
.y249{bottom:113.120000pt;}
.y25c{bottom:113.146667pt;}
.y27b{bottom:113.799960pt;}
.y312{bottom:114.560000pt;}
.y1a0{bottom:115.040000pt;}
.y4f7{bottom:115.042667pt;}
.y546{bottom:115.954613pt;}
.y1e7{bottom:116.000000pt;}
.y4a3{bottom:116.094933pt;}
.y17e{bottom:116.160000pt;}
.y2e4{bottom:117.760000pt;}
.y5ad{bottom:118.422933pt;}
.y386{bottom:118.489333pt;}
.yc3{bottom:118.560000pt;}
.y184{bottom:119.040000pt;}
.y209{bottom:119.040040pt;}
.y3bd{bottom:119.060373pt;}
.yf6{bottom:119.200000pt;}
.y3e4{bottom:119.286133pt;}
.y11a{bottom:119.360000pt;}
.y578{bottom:119.525173pt;}
.y3d1{bottom:119.538453pt;}
.y443{bottom:119.604853pt;}
.y10a{bottom:119.680000pt;}
.y525{bottom:119.996000pt;}
.y1db{bottom:120.000000pt;}
.y8f{bottom:122.375467pt;}
.y5a{bottom:122.400000pt;}
.y84{bottom:122.707467pt;}
.y50{bottom:122.720000pt;}
.y5fe{bottom:122.880000pt;}
.y4e8{bottom:123.038880pt;}
.y194{bottom:123.040000pt;}
.y419{bottom:123.676000pt;}
.y124{bottom:123.680000pt;}
.y22{bottom:123.790666pt;}
.y1a8{bottom:124.800000pt;}
.y4fd{bottom:124.802667pt;}
.y65c{bottom:125.436320pt;}
.y31c{bottom:125.440000pt;}
.y46d{bottom:127.514667pt;}
.y145{bottom:127.520000pt;}
.y25b{bottom:127.866667pt;}
.y4f6{bottom:129.598667pt;}
.y19f{bottom:129.600000pt;}
.y28d{bottom:130.746667pt;}
.y2e3{bottom:130.880000pt;}
.y311{bottom:131.680000pt;}
.y545{bottom:132.275733pt;}
.y1e6{bottom:132.320000pt;}
.y4a2{bottom:132.416053pt;}
.y17d{bottom:132.480000pt;}
.y183{bottom:133.760000pt;}
.y4d2{bottom:133.764000pt;}
.y1da{bottom:134.720000pt;}
.y5ac{bottom:134.744053pt;}
.y385{bottom:134.810453pt;}
.yc2{bottom:134.880000pt;}
.y548{bottom:135.129173pt;}
.y1e8{bottom:135.200000pt;}
.y3bc{bottom:135.222133pt;}
.yf5{bottom:135.360000pt;}
.y3e3{bottom:135.607253pt;}
.y119{bottom:135.680000pt;}
.y577{bottom:135.846293pt;}
.y3d0{bottom:135.859573pt;}
.y442{bottom:135.925973pt;}
.y109{bottom:136.000000pt;}
.y418{bottom:138.232000pt;}
.y123{bottom:138.240000pt;}
.y8e{bottom:138.696587pt;}
.y59{bottom:138.720000pt;}
.y83{bottom:139.028587pt;}
.y4f{bottom:139.040000pt;}
.y4fc{bottom:139.358667pt;}
.y193{bottom:139.360000pt;}
.y65b{bottom:141.757440pt;}
.y31b{bottom:141.760000pt;}
.y46c{bottom:142.070667pt;}
.y144{bottom:142.080000pt;}
.y25a{bottom:142.880000pt;}
.y19e{bottom:144.320000pt;}
.y4f5{bottom:144.322667pt;}
.y182{bottom:148.320000pt;}
.y544{bottom:148.596853pt;}
.y1e5{bottom:148.640000pt;}
.y4a1{bottom:148.737173pt;}
.y17c{bottom:148.800000pt;}
.y524{bottom:149.276000pt;}
.y1d9{bottom:149.280000pt;}
.y5ab{bottom:151.065173pt;}
.y384{bottom:151.131573pt;}
.yc1{bottom:151.200000pt;}
.y3bb{bottom:151.543253pt;}
.yf4{bottom:151.680000pt;}
.y3e2{bottom:151.928373pt;}
.y118{bottom:152.000000pt;}
.y576{bottom:152.008053pt;}
.y3cf{bottom:152.021333pt;}
.y441{bottom:152.087733pt;}
.y108{bottom:152.160000pt;}
.y417{bottom:152.956000pt;}
.y122{bottom:152.960000pt;}
.y1a7{bottom:154.080000pt;}
.y4fb{bottom:154.082667pt;}
.y31a{bottom:154.400000pt;}
.y8d{bottom:155.017707pt;}
.y58{bottom:155.040000pt;}
.y82{bottom:155.349707pt;}
.y4e{bottom:155.360000pt;}
.y46b{bottom:156.794667pt;}
.y143{bottom:156.800000pt;}
.y273{bottom:157.600000pt;}
.y4f4{bottom:158.878667pt;}
.y19d{bottom:158.880000pt;}
.y310{bottom:160.960000pt;}
.y181{bottom:163.840000pt;}
.y1d8{bottom:164.000000pt;}
.y4a0{bottom:164.898933pt;}
.y543{bottom:164.917973pt;}
.y17b{bottom:164.960000pt;}
.y5aa{bottom:167.226933pt;}
.y383{bottom:167.293333pt;}
.yc0{bottom:167.360000pt;}
.y121{bottom:167.680000pt;}
.y3ba{bottom:167.864373pt;}
.yf3{bottom:168.000000pt;}
.y3e1{bottom:168.090133pt;}
.y117{bottom:168.160000pt;}
.y575{bottom:168.329173pt;}
.y3ce{bottom:168.342453pt;}
.y107{bottom:168.480000pt;}
.y4fa{bottom:168.638667pt;}
.y1a6{bottom:168.640000pt;}
.y2e1{bottom:169.920000pt;}
.y120{bottom:171.040000pt;}
.y8c{bottom:171.365387pt;}
.y57{bottom:171.386653pt;}
.y46a{bottom:171.386667pt;}
.y81{bottom:171.538027pt;}
.y4d{bottom:171.546667pt;}
.y221{bottom:171.679973pt;}
.y271{bottom:172.199987pt;}
.y5fd{bottom:172.200000pt;}
.y19c{bottom:173.626667pt;}
.y19{bottom:175.052000pt;}
.y30d{bottom:177.960000pt;}
.y1d7{bottom:179.546667pt;}
.y542{bottom:181.106293pt;}
.y1e4{bottom:181.146667pt;}
.y49f{bottom:181.246613pt;}
.y4d1{bottom:181.279467pt;}
.y17a{bottom:181.306667pt;}
.y2df{bottom:182.920000pt;}
.y11f{bottom:183.066667pt;}
.y1a5{bottom:183.386653pt;}
.y5a9{bottom:183.574613pt;}
.y382{bottom:183.641013pt;}
.ybf{bottom:183.706667pt;}
.y3b9{bottom:184.052693pt;}
.yf2{bottom:184.186667pt;}
.y3e0{bottom:184.437813pt;}
.y116{bottom:184.506667pt;}
.y574{bottom:184.676853pt;}
.y3cd{bottom:184.690133pt;}
.y106{bottom:184.826667pt;}
.y142{bottom:186.106667pt;}
.y469{bottom:186.110667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1a4{bottom:186.746667pt;}
.y270{bottom:186.920000pt;}
.y8b{bottom:187.527147pt;}
.y56{bottom:187.546667pt;}
.y80{bottom:187.859147pt;}
.y4c{bottom:187.866653pt;}
.y4f3{bottom:188.182667pt;}
.y19b{bottom:188.186667pt;}
.y2dd{bottom:196.040000pt;}
.y523{bottom:196.983787pt;}
.y1d6{bottom:196.986667pt;}
.y541{bottom:197.427413pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1e3{bottom:197.466680pt;}
.y49e{bottom:197.567733pt;}
.y4d0{bottom:197.600587pt;}
.y179{bottom:197.626667pt;}
.y1a3{bottom:198.906653pt;}
.y4f9{bottom:198.906667pt;}
.y5a8{bottom:199.895733pt;}
.y381{bottom:199.962133pt;}
.ybe{bottom:200.026667pt;}
.y3b8{bottom:200.373813pt;}
.y416{bottom:200.478347pt;}
.yf1{bottom:200.506667pt;}
.y141{bottom:200.666667pt;}
.y3df{bottom:200.758933pt;}
.y115{bottom:200.826667pt;}
.y573{bottom:200.997973pt;}
.y3cc{bottom:201.011253pt;}
.y105{bottom:201.146667pt;}
.y26f{bottom:201.480000pt;}
.y19a{bottom:202.906653pt;}
.y4f2{bottom:202.906667pt;}
.y8a{bottom:203.848267pt;}
.y55{bottom:203.866653pt;}
.y140{bottom:204.026667pt;}
.y7f{bottom:204.180267pt;}
.y4b{bottom:204.186667pt;}
.y30c{bottom:207.239987pt;}
.y654{bottom:207.240000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y522{bottom:213.145547pt;}
.y1d5{bottom:213.146667pt;}
.y540{bottom:213.748533pt;}
.y1e2{bottom:213.786667pt;}
.y49d{bottom:213.888853pt;}
.y4cf{bottom:213.921707pt;}
.y178{bottom:213.946680pt;}
.y5a7{bottom:216.057493pt;}
.y380{bottom:216.123893pt;}
.ybd{bottom:216.186667pt;}
.y26d{bottom:216.199987pt;}
.y5fc{bottom:216.200000pt;}
.y3b7{bottom:216.694933pt;}
.y415{bottom:216.799467pt;}
.yf0{bottom:216.826667pt;}
.y3de{bottom:217.080053pt;}
.y114{bottom:217.146667pt;}
.y572{bottom:217.159733pt;}
.y3cb{bottom:217.173013pt;}
.y104{bottom:217.306667pt;}
.y4f1{bottom:217.462667pt;}
.y199{bottom:217.466680pt;}
.y89{bottom:220.169387pt;}
.y54{bottom:220.186667pt;}
.y7e{bottom:220.342027pt;}
.y4a{bottom:220.346653pt;}
.y1a2{bottom:220.826667pt;}
.y2dc{bottom:221.960000pt;}
.y30a{bottom:224.199987pt;}
.y653{bottom:224.200000pt;}
.y521{bottom:229.428053pt;}
.y1d3{bottom:229.466680pt;}
.y49c{bottom:230.050613pt;}
.y53f{bottom:230.069653pt;}
.y4ce{bottom:230.083467pt;}
.y177{bottom:230.106667pt;}
.y5fb{bottom:230.760000pt;}
.y26c{bottom:230.760013pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y198{bottom:232.186667pt;}
.y5a6{bottom:232.378613pt;}
.y37f{bottom:232.445013pt;}
.ybc{bottom:232.506667pt;}
.y3b6{bottom:233.016053pt;}
.y414{bottom:233.120587pt;}
.yef{bottom:233.146667pt;}
.y3dd{bottom:233.241813pt;}
.y113{bottom:233.306667pt;}
.y571{bottom:233.480853pt;}
.y3ca{bottom:233.494133pt;}
.y103{bottom:233.626667pt;}
.y1d4{bottom:234.106667pt;}
.y2db{bottom:235.080000pt;}
.y197{bottom:235.546667pt;}
.y88{bottom:236.331147pt;}
.y53{bottom:236.346653pt;}
.y7d{bottom:236.663147pt;}
.y49{bottom:236.666667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y26b{bottom:245.480000pt;}
.y520{bottom:245.749173pt;}
.y1d2{bottom:245.786667pt;}
.y53e{bottom:246.231413pt;}
.y1e1{bottom:246.266667pt;}
.y49b{bottom:246.371733pt;}
.y4cd{bottom:246.404587pt;}
.y176{bottom:246.426680pt;}
.y196{bottom:247.706667pt;}
.y2d9{bottom:248.040000pt;}
.y5a5{bottom:248.699733pt;}
.y37e{bottom:248.766133pt;}
.ybb{bottom:248.826667pt;}
.y3b5{bottom:249.177813pt;}
.y413{bottom:249.282347pt;}
.yee{bottom:249.306667pt;}
.y3dc{bottom:249.562933pt;}
.y468{bottom:249.573173pt;}
.y112{bottom:249.626667pt;}
.y570{bottom:249.801973pt;}
.y3c9{bottom:249.815253pt;}
.y102{bottom:249.946680pt;}
.y87{bottom:252.652267pt;}
.y52{bottom:252.666667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y309{bottom:253.480000pt;}
.y5f6{bottom:256.022667pt;}
.y26a{bottom:260.040000pt;}
.y51f{bottom:262.070293pt;}
.y1d1{bottom:262.106667pt;}
.y53d{bottom:262.552533pt;}
.y1e0{bottom:262.586667pt;}
.y49a{bottom:262.692853pt;}
.y4cc{bottom:262.725707pt;}
.y175{bottom:262.746667pt;}
.y5a4{bottom:265.020853pt;}
.y37d{bottom:265.087253pt;}
.y4f0{bottom:265.135947pt;}
.yba{bottom:265.146667pt;}
.y3b4{bottom:265.498933pt;}
.y412{bottom:265.603467pt;}
.yed{bottom:265.626667pt;}
.y3db{bottom:265.884053pt;}
.y467{bottom:265.894293pt;}
.y111{bottom:265.946680pt;}
.y56f{bottom:266.123093pt;}
.y3c8{bottom:266.136373pt;}
.y101{bottom:266.266667pt;}
.y86{bottom:268.973387pt;}
.y48{bottom:268.986667pt;}
.y308{bottom:270.600000pt;}
.y5f5{bottom:270.746667pt;}
.y2d7{bottom:274.120000pt;}
.y5fa{bottom:274.760000pt;}
.y269{bottom:274.760013pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y51e{bottom:278.232053pt;}
.y1d0{bottom:278.266667pt;}
.y499{bottom:278.854613pt;}
.y53c{bottom:278.873653pt;}
.y4cb{bottom:278.887467pt;}
.y174{bottom:278.906653pt;}
.y5a3{bottom:281.182613pt;}
.y37c{bottom:281.249013pt;}
.y4ef{bottom:281.297707pt;}
.yb9{bottom:281.306667pt;}
.y3b3{bottom:281.820053pt;}
.y440{bottom:281.886453pt;}
.y411{bottom:281.924587pt;}
.yec{bottom:281.946680pt;}
.y3da{bottom:282.205173pt;}
.y466{bottom:282.215413pt;}
.y110{bottom:282.266667pt;}
.y56e{bottom:282.284853pt;}
.y3c7{bottom:282.298133pt;}
.y100{bottom:282.426680pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y307{bottom:287.560000pt;}
.y268{bottom:289.480000pt;}
.y51d{bottom:294.553173pt;}
.y1cf{bottom:294.586667pt;}
.y53b{bottom:295.035413pt;}
.y1df{bottom:295.066667pt;}
.y498{bottom:295.175733pt;}
.y4ca{bottom:295.208587pt;}
.y173{bottom:295.226667pt;}
.y5a2{bottom:297.503733pt;}
.y37b{bottom:297.570133pt;}
.y4ee{bottom:297.618827pt;}
.yb8{bottom:297.626667pt;}
.y3b2{bottom:298.141173pt;}
.y43f{bottom:298.207573pt;}
.y410{bottom:298.245707pt;}
.yeb{bottom:298.266667pt;}
.y3d9{bottom:298.366933pt;}
.y465{bottom:298.377173pt;}
.y10f{bottom:298.426680pt;}
.y56d{bottom:298.605973pt;}
.y3c6{bottom:298.619253pt;}
.yff{bottom:298.746667pt;}
.y2d5{bottom:300.199987pt;}
.y63b{bottom:300.200000pt;}
.y47{bottom:301.146667pt;}
.y266{bottom:304.040000pt;}
.y306{bottom:304.520000pt;}
.y10{bottom:309.452000pt;}
.y51c{bottom:310.874293pt;}
.y1ce{bottom:310.906653pt;}
.y53a{bottom:311.356533pt;}
.y1de{bottom:311.386653pt;}
.y497{bottom:311.496853pt;}
.y4c9{bottom:311.529707pt;}
.y172{bottom:311.546667pt;}
.y2d4{bottom:313.160000pt;}
.y5a1{bottom:313.824853pt;}
.y37a{bottom:313.891253pt;}
.y4ed{bottom:313.939947pt;}
.yb7{bottom:313.946680pt;}
.y3b1{bottom:314.302933pt;}
.y43e{bottom:314.369333pt;}
.y40f{bottom:314.407467pt;}
.yea{bottom:314.426680pt;}
.y464{bottom:314.698293pt;}
.y13f{bottom:314.746667pt;}
.y56c{bottom:314.927093pt;}
.y3c5{bottom:314.940373pt;}
.yfe{bottom:315.066667pt;}
.y5f9{bottom:318.760000pt;}
.y264{bottom:318.760013pt;}
.y305{bottom:321.480000pt;}
.y2d1{bottom:326.120000pt;}
.y51b{bottom:327.036053pt;}
.y1cd{bottom:327.066667pt;}
.y7c{bottom:327.501333pt;}
.y46{bottom:327.546667pt;}
.y496{bottom:327.817973pt;}
.y4c8{bottom:327.850827pt;}
.y171{bottom:327.866653pt;}
.y5a0{bottom:330.145973pt;}
.y379{bottom:330.212373pt;}
.y4ec{bottom:330.261067pt;}
.yb6{bottom:330.266667pt;}
.y3b0{bottom:330.624053pt;}
.y3d8{bottom:330.690453pt;}
.y40e{bottom:330.728587pt;}
.ye9{bottom:330.746667pt;}
.y463{bottom:331.019413pt;}
.y13e{bottom:331.066667pt;}
.y56b{bottom:331.088853pt;}
.y3c4{bottom:331.102133pt;}
.yfd{bottom:331.226667pt;}
.y262{bottom:333.320000pt;}
.y304{bottom:338.600000pt;}
.y51a{bottom:343.357173pt;}
.y1cc{bottom:343.386680pt;}
.y539{bottom:343.680053pt;}
.y1dd{bottom:343.706667pt;}
.yf{bottom:343.809333pt;}
.y7b{bottom:343.822453pt;}
.y45{bottom:343.866653pt;}
.y495{bottom:343.979733pt;}
.y4c7{bottom:344.012587pt;}
.y170{bottom:344.026653pt;}
.y59f{bottom:346.307733pt;}
.y378{bottom:346.374133pt;}
.y4eb{bottom:346.422827pt;}
.yb5{bottom:346.426680pt;}
.y3af{bottom:346.945173pt;}
.y3d7{bottom:347.011573pt;}
.y40d{bottom:347.049707pt;}
.ye8{bottom:347.066653pt;}
.y462{bottom:347.181173pt;}
.y13d{bottom:347.226680pt;}
.y56a{bottom:347.409973pt;}
.y3c3{bottom:347.423253pt;}
.yfc{bottom:347.546667pt;}
.y261{bottom:348.040000pt;}
.y2ce{bottom:352.199987pt;}
.y63a{bottom:352.200000pt;}
.y652{bottom:355.560000pt;}
.y303{bottom:355.560013pt;}
.y519{bottom:359.678293pt;}
.y1cb{bottom:359.706667pt;}
.y494{bottom:360.300853pt;}
.y4c6{bottom:360.333707pt;}
.y16f{bottom:360.346680pt;}
.y5f8{bottom:362.600000pt;}
.y25f{bottom:362.600013pt;}
.y59e{bottom:362.628853pt;}
.y377{bottom:362.695253pt;}
.ye{bottom:362.706666pt;}
.y4ea{bottom:362.743947pt;}
.yb4{bottom:362.746667pt;}
.y3ae{bottom:363.106933pt;}
.y3d6{bottom:363.173333pt;}
.y40c{bottom:363.211467pt;}
.ye7{bottom:363.226680pt;}
.y461{bottom:363.502293pt;}
.y13c{bottom:363.546667pt;}
.y569{bottom:363.731093pt;}
.y3c2{bottom:363.744373pt;}
.yfb{bottom:363.866653pt;}
.y7a{bottom:375.986613pt;}
.y518{bottom:375.999413pt;}
.y538{bottom:376.003573pt;}
.y44{bottom:376.026653pt;}
.y493{bottom:376.621973pt;}
.y4c5{bottom:376.654827pt;}
.y16e{bottom:376.666667pt;}
.y25d{bottom:377.319987pt;}
.y5f7{bottom:377.320000pt;}
.y2cb{bottom:378.279987pt;}
.y639{bottom:378.280000pt;}
.y59d{bottom:378.949973pt;}
.y376{bottom:379.016373pt;}
.y4e9{bottom:379.065067pt;}
.yb3{bottom:379.066653pt;}
.y3ad{bottom:379.428053pt;}
.y43d{bottom:379.494453pt;}
.y40b{bottom:379.532587pt;}
.ye6{bottom:379.546667pt;}
.y460{bottom:379.823413pt;}
.y13b{bottom:379.866653pt;}
.y568{bottom:380.052213pt;}
.y205{bottom:380.186680pt;}
.y301{bottom:384.866653pt;}
.y651{bottom:384.866667pt;}
.y624{bottom:387.585547pt;}
.y2a7{bottom:387.586667pt;}
.y517{bottom:392.201013pt;}
.y537{bottom:392.205173pt;}
.y1ca{bottom:392.226680pt;}
.y79{bottom:392.347573pt;}
.y43{bottom:392.386680pt;}
.y5f4{bottom:392.705333pt;}
.y248{bottom:392.706667pt;}
.y492{bottom:392.823573pt;}
.y4c4{bottom:392.856427pt;}
.y16d{bottom:392.866653pt;}
.y59c{bottom:395.151573pt;}
.y375{bottom:395.217973pt;}
.yb2{bottom:395.266680pt;}
.y3d5{bottom:395.536693pt;}
.y10e{bottom:395.586667pt;}
.y3ac{bottom:395.789013pt;}
.y43c{bottom:395.855413pt;}
.y40a{bottom:395.893547pt;}
.ye5{bottom:395.906653pt;}
.y3c1{bottom:396.107733pt;}
.y45f{bottom:396.184373pt;}
.yfa{bottom:396.226680pt;}
.y567{bottom:396.253813pt;}
.y204{bottom:396.386680pt;}
.y195{bottom:399.906653pt;}
.y2a6{bottom:403.906653pt;}
.y623{bottom:403.906667pt;}
.y638{bottom:404.386667pt;}
.y2ca{bottom:404.386680pt;}
.y5f3{bottom:407.266667pt;}
.y259{bottom:407.266680pt;}
.y516{bottom:408.522133pt;}
.y536{bottom:408.526293pt;}
.y1c9{bottom:408.546667pt;}
.y78{bottom:408.668693pt;}
.y42{bottom:408.706667pt;}
.y491{bottom:409.144693pt;}
.y4c3{bottom:409.177547pt;}
.y16c{bottom:409.186680pt;}
.y59b{bottom:411.472693pt;}
.y374{bottom:411.539093pt;}
.yb1{bottom:411.586667pt;}
.y3d4{bottom:411.857813pt;}
.y10d{bottom:411.906653pt;}
.y3ab{bottom:412.110133pt;}
.y43b{bottom:412.176533pt;}
.y409{bottom:412.214667pt;}
.ye4{bottom:412.226680pt;}
.y3c0{bottom:412.269493pt;}
.y45e{bottom:412.346133pt;}
.yf9{bottom:412.386680pt;}
.y566{bottom:412.574933pt;}
.y203{bottom:412.706667pt;}
.y300{bottom:414.146653pt;}
.y650{bottom:414.146667pt;}
.y621{bottom:417.185333pt;}
.y2a2{bottom:417.186680pt;}
.y21b{bottom:417.346680pt;}
.y258{bottom:421.986653pt;}
.y5f2{bottom:421.986667pt;}
.y515{bottom:424.843253pt;}
.y535{bottom:424.847413pt;}
.y1c8{bottom:424.866653pt;}
.y490{bottom:425.465813pt;}
.y4c2{bottom:425.498667pt;}
.y16b{bottom:425.506667pt;}
.y59a{bottom:427.793813pt;}
.y373{bottom:427.860213pt;}
.yb0{bottom:427.906653pt;}
.y3d3{bottom:428.178933pt;}
.y10c{bottom:428.226680pt;}
.y3aa{bottom:428.271893pt;}
.y43a{bottom:428.338293pt;}
.y408{bottom:428.376427pt;}
.ye3{bottom:428.386680pt;}
.y3bf{bottom:428.590613pt;}
.y45d{bottom:428.667253pt;}
.yf8{bottom:428.706667pt;}
.y565{bottom:428.896053pt;}
.y202{bottom:429.026653pt;}
.y61f{bottom:429.346667pt;}
.y637{bottom:430.306667pt;}
.y2c9{bottom:430.306680pt;}
.y2a4{bottom:434.146653pt;}
.y620{bottom:434.146667pt;}
.y257{bottom:436.546667pt;}
.y77{bottom:440.832853pt;}
.y41{bottom:440.866653pt;}
.y514{bottom:441.164373pt;}
.y534{bottom:441.168533pt;}
.y1c7{bottom:441.186680pt;}
.y48f{bottom:441.786933pt;}
.y4c1{bottom:441.819787pt;}
.y16a{bottom:441.826667pt;}
.y636{bottom:443.426667pt;}
.y2c8{bottom:443.426680pt;}
.y599{bottom:444.114933pt;}
.y372{bottom:444.181333pt;}
.yaf{bottom:444.226680pt;}
.y3a9{bottom:444.593013pt;}
.y439{bottom:444.659413pt;}
.y407{bottom:444.697547pt;}
.ye2{bottom:444.706667pt;}
.y45c{bottom:444.988373pt;}
.y13a{bottom:445.026653pt;}
.y564{bottom:445.217173pt;}
.y201{bottom:445.346680pt;}
.yd{bottom:446.990669pt;}
.y21a{bottom:449.666667pt;}
.y29f{bottom:451.106653pt;}
.y61e{bottom:451.106667pt;}
.y5f0{bottom:451.265333pt;}
.y256{bottom:451.266680pt;}
.y635{bottom:456.386667pt;}
.y2c7{bottom:456.386680pt;}
.y76{bottom:457.153973pt;}
.y40{bottom:457.186680pt;}
.y513{bottom:457.326133pt;}
.y533{bottom:457.330293pt;}
.y1c6{bottom:457.346680pt;}
.y48e{bottom:457.948693pt;}
.y4c0{bottom:457.981547pt;}
.y169{bottom:457.986653pt;}
.y68c{bottom:458.625547pt;}
.y353{bottom:458.626667pt;}
.y598{bottom:460.276693pt;}
.y371{bottom:460.343093pt;}
.yae{bottom:460.386680pt;}
.y3a8{bottom:460.914133pt;}
.y438{bottom:460.980533pt;}
.y406{bottom:461.018667pt;}
.ye1{bottom:461.026653pt;}
.y45b{bottom:461.309493pt;}
.y139{bottom:461.346680pt;}
.y563{bottom:461.378933pt;}
.y200{bottom:461.506667pt;}
.yc{bottom:462.990669pt;}
.y61b{bottom:463.266667pt;}
.y255{bottom:465.826667pt;}
.y61c{bottom:468.065333pt;}
.y2a1{bottom:468.066653pt;}
.y2fe{bottom:472.706667pt;}
.y512{bottom:473.647253pt;}
.y532{bottom:473.651413pt;}
.y1c5{bottom:473.666667pt;}
.y48d{bottom:474.269813pt;}
.y4bf{bottom:474.302667pt;}
.y168{bottom:474.306680pt;}
.y352{bottom:474.946653pt;}
.y68b{bottom:474.946667pt;}
.y597{bottom:476.597813pt;}
.y370{bottom:476.664213pt;}
.yad{bottom:476.706667pt;}
.y3a7{bottom:477.235253pt;}
.y437{bottom:477.301653pt;}
.y405{bottom:477.339787pt;}
.ye0{bottom:477.346680pt;}
.y45a{bottom:477.471253pt;}
.y138{bottom:477.506667pt;}
.y562{bottom:477.700053pt;}
.y1ff{bottom:477.826667pt;}
.y213{bottom:478.293333pt;}
.y5c7{bottom:478.306667pt;}
.y211{bottom:478.306680pt;}
.yb{bottom:478.990666pt;}
.y254{bottom:480.546667pt;}
.y634{bottom:482.466667pt;}
.y2c6{bottom:482.466680pt;}
.y28c{bottom:485.026653pt;}
.y61a{bottom:485.026667pt;}
.y68a{bottom:488.226667pt;}
.y351{bottom:488.226680pt;}
.y5d0{bottom:488.386667pt;}
.y75{bottom:489.477493pt;}
.y3f{bottom:489.506667pt;}
.y511{bottom:489.968373pt;}
.y531{bottom:489.972533pt;}
.y1c4{bottom:489.986653pt;}
.y48c{bottom:490.590933pt;}
.y4be{bottom:490.623787pt;}
.y167{bottom:490.626667pt;}
.y5e8{bottom:491.102667pt;}
.y596{bottom:492.918933pt;}
.y36f{bottom:492.985333pt;}
.yac{bottom:493.026653pt;}
.y3a6{bottom:493.397013pt;}
.y436{bottom:493.463413pt;}
.y404{bottom:493.501547pt;}
.ydf{bottom:493.506667pt;}
.y459{bottom:493.792373pt;}
.y137{bottom:493.826667pt;}
.y561{bottom:494.021173pt;}
.y1fe{bottom:494.146653pt;}
.ya{bottom:494.990666pt;}
.y253{bottom:495.106653pt;}
.y5ef{bottom:495.106667pt;}
.y29e{bottom:501.986653pt;}
.y619{bottom:501.986667pt;}
.y64e{bottom:502.145333pt;}
.y2fd{bottom:502.146653pt;}
.y350{bottom:502.786667pt;}
.y5ce{bottom:504.706667pt;}
.y74{bottom:505.798613pt;}
.y3e{bottom:505.826667pt;}
.y510{bottom:506.130133pt;}
.y530{bottom:506.134293pt;}
.y1c3{bottom:506.146653pt;}
.y48b{bottom:506.912053pt;}
.y4bd{bottom:506.944907pt;}
.y166{bottom:506.946653pt;}
.y2c4{bottom:508.546667pt;}
.y595{bottom:509.240053pt;}
.y36e{bottom:509.306453pt;}
.yab{bottom:509.346680pt;}
.y3a5{bottom:509.718133pt;}
.y435{bottom:509.784533pt;}
.y403{bottom:509.822667pt;}
.yde{bottom:509.826667pt;}
.y458{bottom:510.113493pt;}
.y136{bottom:510.146653pt;}
.y560{bottom:510.182933pt;}
.y1fd{bottom:510.306680pt;}
.y34f{bottom:517.506667pt;}
.y29d{bottom:518.786667pt;}
.y5cd{bottom:521.026667pt;}
.y73{bottom:521.960373pt;}
.y672{bottom:521.985547pt;}
.y3d{bottom:521.986653pt;}
.y50f{bottom:522.451253pt;}
.y52f{bottom:522.455413pt;}
.y1c2{bottom:522.466680pt;}
.y4bc{bottom:523.007413pt;}
.y48a{bottom:523.073813pt;}
.y165{bottom:523.106653pt;}
.y250{bottom:524.546667pt;}
.y594{bottom:525.401813pt;}
.y36d{bottom:525.468213pt;}
.yaa{bottom:525.506667pt;}
.y3a4{bottom:526.039253pt;}
.y434{bottom:526.105653pt;}
.y402{bottom:526.143787pt;}
.ydd{bottom:526.146653pt;}
.y457{bottom:526.275253pt;}
.y135{bottom:526.306680pt;}
.y55f{bottom:526.504053pt;}
.y1fc{bottom:526.626667pt;}
.y180{bottom:527.746667pt;}
.y64d{bottom:531.426667pt;}
.y2fc{bottom:531.426680pt;}
.y689{bottom:532.226667pt;}
.y34e{bottom:532.226680pt;}
.y633{bottom:534.466667pt;}
.y2c2{bottom:534.466680pt;}
.y29c{bottom:535.746667pt;}
.y5cb{bottom:537.186667pt;}
.y72{bottom:538.281493pt;}
.y671{bottom:538.306667pt;}
.y3c{bottom:538.306680pt;}
.y50e{bottom:538.772373pt;}
.y52e{bottom:538.776533pt;}
.y1c1{bottom:538.786667pt;}
.y5ec{bottom:539.105333pt;}
.y24f{bottom:539.106653pt;}
.y4bb{bottom:539.328533pt;}
.y489{bottom:539.394933pt;}
.y164{bottom:539.426680pt;}
.y593{bottom:541.722933pt;}
.y36c{bottom:541.789333pt;}
.ya9{bottom:541.826667pt;}
.y3a3{bottom:542.201013pt;}
.y433{bottom:542.267413pt;}
.y401{bottom:542.305547pt;}
.ydc{bottom:542.306680pt;}
.y456{bottom:542.596373pt;}
.y134{bottom:542.626667pt;}
.y55e{bottom:542.825173pt;}
.y1fb{bottom:542.946653pt;}
.y688{bottom:547.426667pt;}
.y34d{bottom:547.426680pt;}
.y334{bottom:550.946653pt;}
.y670{bottom:550.946667pt;}
.y29b{bottom:552.706667pt;}
.y5c9{bottom:553.506667pt;}
.y24e{bottom:553.826667pt;}
.y71{bottom:554.602613pt;}
.y3b{bottom:554.626667pt;}
.y50d{bottom:555.093493pt;}
.y52d{bottom:555.097653pt;}
.y1c0{bottom:555.106653pt;}
.y67a{bottom:555.265547pt;}
.y33f{bottom:555.266680pt;}
.y4ba{bottom:555.649653pt;}
.y488{bottom:555.716053pt;}
.y163{bottom:555.746667pt;}
.y592{bottom:558.044053pt;}
.y36b{bottom:558.110453pt;}
.ya8{bottom:558.146653pt;}
.y400{bottom:558.508853pt;}
.y3a2{bottom:558.522133pt;}
.y432{bottom:558.588533pt;}
.ydb{bottom:558.626667pt;}
.y455{bottom:558.917493pt;}
.y133{bottom:558.946653pt;}
.y55d{bottom:559.146293pt;}
.y1fa{bottom:559.266680pt;}
.y2c0{bottom:560.546667pt;}
.y2fb{bottom:560.706667pt;}
.y11e{bottom:563.266680pt;}
.y333{bottom:567.106653pt;}
.y66f{bottom:567.106667pt;}
.y5eb{bottom:568.386667pt;}
.y24d{bottom:568.386680pt;}
.y29a{bottom:569.666667pt;}
.y70{bottom:570.923733pt;}
.y3a{bottom:570.946653pt;}
.y50c{bottom:571.255253pt;}
.y52c{bottom:571.259413pt;}
.y1bf{bottom:571.266680pt;}
.y33e{bottom:571.586667pt;}
.y4b9{bottom:571.811413pt;}
.y487{bottom:571.877813pt;}
.y162{bottom:571.906653pt;}
.y9{bottom:573.786667pt;}
.y591{bottom:574.205813pt;}
.y36a{bottom:574.272213pt;}
.ya7{bottom:574.306680pt;}
.y3ff{bottom:574.829973pt;}
.y3a1{bottom:574.843253pt;}
.y431{bottom:574.909653pt;}
.yda{bottom:574.946653pt;}
.y454{bottom:575.238613pt;}
.y132{bottom:575.266680pt;}
.y55c{bottom:575.308053pt;}
.y1f9{bottom:575.426680pt;}
.y34b{bottom:576.706667pt;}
.y24c{bottom:583.106653pt;}
.y5ea{bottom:583.106667pt;}
.y66e{bottom:583.426667pt;}
.y331{bottom:583.426680pt;}
.y33d{bottom:584.866653pt;}
.y679{bottom:584.866667pt;}
.y299{bottom:586.626667pt;}
.y6f{bottom:587.085493pt;}
.y39{bottom:587.106653pt;}
.y50b{bottom:587.576373pt;}
.y52b{bottom:587.580533pt;}
.y1be{bottom:587.586667pt;}
.y4b8{bottom:588.132533pt;}
.y486{bottom:588.198933pt;}
.y161{bottom:588.226680pt;}
.y2f9{bottom:589.986653pt;}
.y64b{bottom:589.986667pt;}
.y590{bottom:590.526933pt;}
.y369{bottom:590.593333pt;}
.ya6{bottom:590.626667pt;}
.y3fe{bottom:591.151093pt;}
.y3a0{bottom:591.164373pt;}
.y430{bottom:591.230773pt;}
.yd9{bottom:591.266680pt;}
.y453{bottom:591.400373pt;}
.y131{bottom:591.426680pt;}
.y55b{bottom:591.629173pt;}
.y1f8{bottom:591.746667pt;}
.y8{bottom:592.685334pt;}
.y24b{bottom:597.693320pt;}
.y5e9{bottom:597.693333pt;}
.y207{bottom:598.653320pt;}
.y5bf{bottom:598.653333pt;}
.y20a{bottom:598.666667pt;}
.y330{bottom:600.413333pt;}
.y33c{bottom:601.213333pt;}
.y6e{bottom:603.433173pt;}
.y38{bottom:603.453333pt;}
.y297{bottom:603.613320pt;}
.y618{bottom:603.613333pt;}
.y50a{bottom:603.924053pt;}
.y52a{bottom:603.928213pt;}
.y1bd{bottom:603.933347pt;}
.y4b7{bottom:604.480213pt;}
.y485{bottom:604.546613pt;}
.y160{bottom:604.573320pt;}
.y687{bottom:606.013333pt;}
.y34a{bottom:606.013347pt;}
.y5be{bottom:606.813333pt;}
.y58f{bottom:606.874613pt;}
.y368{bottom:606.941013pt;}
.ya5{bottom:606.973347pt;}
.y3fd{bottom:607.339413pt;}
.y39f{bottom:607.352693pt;}
.y42f{bottom:607.419093pt;}
.yd8{bottom:607.453333pt;}
.y452{bottom:607.748053pt;}
.y130{bottom:607.773320pt;}
.y55a{bottom:607.976853pt;}
.y1f7{bottom:608.093347pt;}
.y2bd{bottom:612.733320pt;}
.y630{bottom:612.733333pt;}
.y5e7{bottom:613.053333pt;}
.y220{bottom:613.053347pt;}
.y612{bottom:615.773333pt;}
.y32f{bottom:617.373333pt;}
.y33b{bottom:617.533320pt;}
.y678{bottom:617.533333pt;}
.y2f8{bottom:619.293333pt;}
.y6d{bottom:619.754293pt;}
.y37{bottom:619.773320pt;}
.y509{bottom:620.085813pt;}
.y529{bottom:620.089973pt;}
.y5c6{bottom:620.093333pt;}
.y1bc{bottom:620.093347pt;}
.y296{bottom:620.573320pt;}
.y617{bottom:620.573333pt;}
.y4b6{bottom:620.801333pt;}
.y484{bottom:620.867733pt;}
.y15f{bottom:620.893347pt;}
.y58e{bottom:623.195733pt;}
.y367{bottom:623.262133pt;}
.ya4{bottom:623.293333pt;}
.y3fc{bottom:623.660533pt;}
.y39e{bottom:623.673813pt;}
.y42e{bottom:623.740213pt;}
.yd7{bottom:623.773320pt;}
.y451{bottom:624.069173pt;}
.y12f{bottom:624.093347pt;}
.y559{bottom:624.138613pt;}
.y1f6{bottom:624.253333pt;}
.y247{bottom:627.773320pt;}
.y5e6{bottom:627.773333pt;}
.y631{bottom:628.573333pt;}
.y33a{bottom:633.693320pt;}
.y677{bottom:633.693333pt;}
.y349{bottom:635.453333pt;}
.y6c{bottom:635.916053pt;}
.y36{bottom:635.933347pt;}
.y5c4{bottom:636.253333pt;}
.y508{bottom:636.406933pt;}
.y528{bottom:636.411093pt;}
.y1bb{bottom:636.413333pt;}
.y4b5{bottom:636.963093pt;}
.y483{bottom:637.029493pt;}
.y15e{bottom:637.053347pt;}
.y294{bottom:637.533320pt;}
.y616{bottom:637.533333pt;}
.y66d{bottom:638.000533pt;}
.y32e{bottom:638.013347pt;}
.y58d{bottom:639.357493pt;}
.y366{bottom:639.423893pt;}
.ya3{bottom:639.453333pt;}
.y3fb{bottom:639.981653pt;}
.y39d{bottom:639.994933pt;}
.y42d{bottom:640.061333pt;}
.yd6{bottom:640.093347pt;}
.y450{bottom:640.230933pt;}
.y12e{bottom:640.253333pt;}
.y558{bottom:640.459733pt;}
.y1f5{bottom:640.573320pt;}
.y245{bottom:642.333333pt;}
.y7{bottom:645.598667pt;}
.y2f7{bottom:648.573320pt;}
.y64a{bottom:648.573333pt;}
.y676{bottom:650.013333pt;}
.y339{bottom:650.013347pt;}
.y2bb{bottom:651.773320pt;}
.y62f{bottom:651.773333pt;}
.y6b{bottom:652.237173pt;}
.y35{bottom:652.253333pt;}
.y507{bottom:652.728053pt;}
.y527{bottom:652.732213pt;}
.y1ba{bottom:652.733320pt;}
.y4b4{bottom:653.284213pt;}
.y482{bottom:653.350613pt;}
.y15d{bottom:653.373333pt;}
.y293{bottom:654.493333pt;}
.y58c{bottom:655.678613pt;}
.y365{bottom:655.745013pt;}
.ya2{bottom:655.773320pt;}
.y65a{bottom:656.063733pt;}
.y319{bottom:656.093347pt;}
.y3fa{bottom:656.143413pt;}
.y39c{bottom:656.156693pt;}
.y42c{bottom:656.223093pt;}
.yd5{bottom:656.253333pt;}
.y44f{bottom:656.552053pt;}
.y12d{bottom:656.573320pt;}
.y557{bottom:656.780853pt;}
.y1f4{bottom:656.893347pt;}
.y5e5{bottom:657.053333pt;}
.y243{bottom:657.053347pt;}
.y348{bottom:664.733320pt;}
.y686{bottom:664.733333pt;}
.y2f6{bottom:665.533320pt;}
.y649{bottom:665.533333pt;}
.y6a{bottom:668.558293pt;}
.y34{bottom:668.573320pt;}
.y3{bottom:668.977329pt;}
.y506{bottom:669.049173pt;}
.y526{bottom:669.053333pt;}
.y1b9{bottom:669.053347pt;}
.y4b3{bottom:669.605333pt;}
.y481{bottom:669.671733pt;}
.y15c{bottom:669.693320pt;}
.y66c{bottom:670.164693pt;}
.y32d{bottom:670.173333pt;}
.y292{bottom:671.293333pt;}
.y241{bottom:671.626667pt;}
.y58b{bottom:671.999733pt;}
.y364{bottom:672.066133pt;}
.ya1{bottom:672.093347pt;}
.y659{bottom:672.225493pt;}
.y318{bottom:672.253333pt;}
.y3f9{bottom:672.464533pt;}
.y39b{bottom:672.477813pt;}
.y42b{bottom:672.544213pt;}
.yd4{bottom:672.573320pt;}
.y44e{bottom:672.873173pt;}
.y12c{bottom:672.893347pt;}
.y556{bottom:673.101973pt;}
.y1f3{bottom:673.213333pt;}
.y62e{bottom:677.853333pt;}
.y2ba{bottom:677.853347pt;}
.y2f5{bottom:682.653320pt;}
.y648{bottom:682.653333pt;}
.y69{bottom:684.879413pt;}
.y33{bottom:684.893307pt;}
.y4b2{bottom:685.926453pt;}
.y480{bottom:685.992853pt;}
.y15b{bottom:686.013347pt;}
.y23f{bottom:686.333333pt;}
.y66b{bottom:686.485813pt;}
.y32c{bottom:686.493333pt;}
.y58a{bottom:688.161493pt;}
.y363{bottom:688.227893pt;}
.ya0{bottom:688.253333pt;}
.y658{bottom:688.546613pt;}
.y317{bottom:688.573320pt;}
.y3f8{bottom:688.785653pt;}
.y39a{bottom:688.798933pt;}
.y42a{bottom:688.865333pt;}
.yd3{bottom:688.893307pt;}
.y44d{bottom:689.194293pt;}
.y12b{bottom:689.213293pt;}
.y555{bottom:689.263733pt;}
.y1f2{bottom:689.373373pt;}
.y685{bottom:694.026667pt;}
.y346{bottom:694.026693pt;}
.y23e{bottom:700.893307pt;}
.y5e4{bottom:700.893333pt;}
.y68{bottom:701.041173pt;}
.y32{bottom:701.053307pt;}
.y1b8{bottom:701.213293pt;}
.y505{bottom:701.213333pt;}
.y4b1{bottom:702.088213pt;}
.y47f{bottom:702.154613pt;}
.y15a{bottom:702.173333pt;}
.y66a{bottom:702.806933pt;}
.y32b{bottom:702.813320pt;}
.y62d{bottom:703.773333pt;}
.y2b9{bottom:703.773360pt;}
.y589{bottom:704.482613pt;}
.y362{bottom:704.549013pt;}
.y9f{bottom:704.573320pt;}
.y657{bottom:704.867733pt;}
.y316{bottom:704.893307pt;}
.y3f7{bottom:705.106773pt;}
.y399{bottom:705.120053pt;}
.y429{bottom:705.186453pt;}
.yd2{bottom:705.213293pt;}
.y615{bottom:705.213333pt;}
.y44c{bottom:705.356053pt;}
.y12a{bottom:705.373373pt;}
.y554{bottom:705.584853pt;}
.y1f1{bottom:705.693360pt;}
.y647{bottom:711.933333pt;}
.y2f4{bottom:711.933347pt;}
.y1b6{bottom:714.666667pt;}
.y338{bottom:715.133307pt;}
.y675{bottom:715.133333pt;}
.y5e3{bottom:715.613333pt;}
.y23d{bottom:715.613360pt;}
.y4b0{bottom:718.409333pt;}
.y47e{bottom:718.475733pt;}
.y159{bottom:718.493333pt;}
.y588{bottom:720.803733pt;}
.y361{bottom:720.870133pt;}
.y9e{bottom:720.893307pt;}
.y656{bottom:721.188853pt;}
.y315{bottom:721.213293pt;}
.y3f6{bottom:721.268533pt;}
.y398{bottom:721.281813pt;}
.y428{bottom:721.348213pt;}
.yd1{bottom:721.373373pt;}
.y553{bottom:721.905973pt;}
.y1f0{bottom:722.013347pt;}
.y614{bottom:722.186667pt;}
.y28f{bottom:722.186680pt;}
.y684{bottom:723.933333pt;}
.y345{bottom:723.933347pt;}
.y62c{bottom:729.853333pt;}
.y2b8{bottom:729.853347pt;}
.y23b{bottom:730.173333pt;}
.y1b5{bottom:730.813320pt;}
.y504{bottom:730.813333pt;}
.y67{bottom:733.364693pt;}
.y31{bottom:733.373373pt;}
.y4af{bottom:734.730453pt;}
.y47d{bottom:734.796853pt;}
.y158{bottom:734.813320pt;}
.y669{bottom:734.971093pt;}
.y32a{bottom:734.973307pt;}
.y587{bottom:737.124853pt;}
.y360{bottom:737.191253pt;}
.y9d{bottom:737.213293pt;}
.y655{bottom:737.350613pt;}
.y314{bottom:737.373373pt;}
.y3f5{bottom:737.589653pt;}
.y397{bottom:737.602933pt;}
.y427{bottom:737.669333pt;}
.y44b{bottom:737.679573pt;}
.yd0{bottom:737.693360pt;}
.y552{bottom:738.227093pt;}
.y1ef{bottom:738.333333pt;}
.y28e{bottom:739.133307pt;}
.y613{bottom:739.133333pt;}
.y344{bottom:739.293293pt;}
.y683{bottom:739.293333pt;}
.y2f0{bottom:741.226640pt;}
.y646{bottom:741.226667pt;}
.y4dc{bottom:741.689333pt;}
.y18c{bottom:741.693360pt;}
.y5bd{bottom:741.985333pt;}
.y206{bottom:742.013347pt;}
.y23a{bottom:744.893307pt;}
.y5e2{bottom:744.893333pt;}
.y1b4{bottom:747.133307pt;}
.y503{bottom:747.133333pt;}
.y674{bottom:747.613333pt;}
.y337{bottom:747.613360pt;}
.y4ae{bottom:750.892213pt;}
.y47c{bottom:750.958613pt;}
.y157{bottom:750.973307pt;}
.y668{bottom:751.292213pt;}
.y329{bottom:751.293293pt;}
.y586{bottom:753.286613pt;}
.y35f{bottom:753.353013pt;}
.y9c{bottom:753.373373pt;}
.y4e7{bottom:753.671733pt;}
.y192{bottom:753.693360pt;}
.y682{bottom:753.853333pt;}
.y343{bottom:753.853347pt;}
.y3f4{bottom:753.910773pt;}
.y396{bottom:753.924053pt;}
.y426{bottom:753.990453pt;}
.ycf{bottom:754.013347pt;}
.y551{bottom:754.388853pt;}
.y1ee{bottom:754.493333pt;}
.y2b7{bottom:755.933347pt;}
.y629{bottom:755.934667pt;}
.y611{bottom:756.093333pt;}
.y27a{bottom:756.093347pt;}
.y18b{bottom:756.413333pt;}
.y5e1{bottom:759.613333pt;}
.y238{bottom:759.613360pt;}
.y502{bottom:763.453333pt;}
.y1b2{bottom:763.453373pt;}
.y66{bottom:765.688213pt;}
.y30{bottom:765.693360pt;}
.y4ad{bottom:767.213333pt;}
.y47b{bottom:767.279733pt;}
.y156{bottom:767.293293pt;}
.y667{bottom:767.613333pt;}
.y328{bottom:767.613360pt;}
.y342{bottom:769.213293pt;}
.y681{bottom:769.213333pt;}
.y585{bottom:769.607733pt;}
.y35e{bottom:769.674133pt;}
.y9b{bottom:769.693360pt;}
.y4e6{bottom:769.992853pt;}
.y44a{bottom:770.003093pt;}
.y129{bottom:770.013347pt;}
.y395{bottom:770.245173pt;}
.y425{bottom:770.311573pt;}
.yce{bottom:770.333333pt;}
.y2ef{bottom:770.493333pt;}
.y550{bottom:770.709973pt;}
.y1ed{bottom:770.813320pt;}
.y4db{bottom:770.969333pt;}
.y18a{bottom:770.973307pt;}
.y28b{bottom:773.053307pt;}
.y610{bottom:773.053333pt;}
.y5de{bottom:774.185333pt;}
.y235{bottom:774.186680pt;}
.y501{bottom:779.613333pt;}
.y1b0{bottom:779.613360pt;}
.y327{bottom:780.893307pt;}
.y666{bottom:780.893333pt;}
.y2{bottom:781.661334pt;}
.y628{bottom:782.013333pt;}
.y2b6{bottom:782.013347pt;}
.y4ac{bottom:783.534453pt;}
.y47a{bottom:783.600853pt;}
.y155{bottom:783.613360pt;}
.y680{bottom:783.946667pt;}
.y340{bottom:783.946693pt;}
.y5d3{bottom:784.733333pt;}
.y189{bottom:785.693360pt;}
.y584{bottom:785.928853pt;}
.y35d{bottom:785.995253pt;}
.y9a{bottom:786.013347pt;}
.y3f3{bottom:786.234293pt;}
.y4e5{bottom:786.313973pt;}
.y449{bottom:786.324213pt;}
.y11d{bottom:786.333333pt;}
.y394{bottom:786.406933pt;}
.y424{bottom:786.473333pt;}
.ycd{bottom:786.493333pt;}
.y54f{bottom:787.031093pt;}
.y1ec{bottom:787.133307pt;}
.y234{bottom:788.893307pt;}
.y5dd{bottom:788.893333pt;}
.y188{bottom:789.053307pt;}
.y4da{bottom:789.053333pt;}
.y60f{bottom:790.013333pt;}
.y28a{bottom:790.013347pt;}
.y326{bottom:797.213293pt;}
.y665{bottom:797.213333pt;}
.y65{bottom:798.011733pt;}
.y2f{bottom:798.013347pt;}
.y645{bottom:799.773333pt;}
.y2ee{bottom:799.773360pt;}
.y4ab{bottom:799.855573pt;}
.y479{bottom:799.921973pt;}
.y154{bottom:799.933347pt;}
.y187{bottom:801.213293pt;}
.y4d9{bottom:801.213333pt;}
.y583{bottom:802.249973pt;}
.y5bc{bottom:802.303093pt;}
.y35c{bottom:802.316373pt;}
.y99{bottom:802.333333pt;}
.y3f2{bottom:802.396053pt;}
.y4e4{bottom:802.475733pt;}
.y448{bottom:802.485973pt;}
.y11c{bottom:802.493333pt;}
.y393{bottom:802.728053pt;}
.y423{bottom:802.794453pt;}
.y67f{bottom:802.804853pt;}
.ycc{bottom:802.813320pt;}
.y54e{bottom:803.192853pt;}
.y1eb{bottom:803.293293pt;}
.y5db{bottom:803.453333pt;}
.y232{bottom:803.453373pt;}
.y60d{bottom:807.013333pt;}
.y288{bottom:807.013347pt;}
.y2b5{bottom:807.973307pt;}
.y627{bottom:807.973333pt;}
.y1ae{bottom:812.293293pt;}
.y500{bottom:812.293333pt;}
.y324{bottom:813.573320pt;}
.y663{bottom:813.573333pt;}
.y336{bottom:814.213293pt;}
.y673{bottom:814.213333pt;}
.y4aa{bottom:816.057173pt;}
.y478{bottom:816.123573pt;}
.y153{bottom:816.133307pt;}
.y2ed{bottom:816.773360pt;}
.y642{bottom:816.774667pt;}
.y230{bottom:818.213293pt;}
.y5da{bottom:818.213333pt;}
.y582{bottom:818.451573pt;}
.y5bb{bottom:818.504693pt;}
.y35b{bottom:818.517973pt;}
.y4d8{bottom:818.527093pt;}
.y98{bottom:818.533360pt;}
.y3f1{bottom:818.757013pt;}
.y4e3{bottom:818.836693pt;}
.y64{bottom:818.853333pt;}
.y2e{bottom:818.853347pt;}
.y392{bottom:819.089013pt;}
.y422{bottom:819.155413pt;}
.ycb{bottom:819.173333pt;}
.y54d{bottom:819.553813pt;}
.y1ea{bottom:819.653320pt;}
.y286{bottom:823.813320pt;}
.y60c{bottom:823.813333pt;}
.y323{bottom:829.733320pt;}
.y662{bottom:829.733333pt;}
.y335{bottom:831.173333pt;}
.y4a9{bottom:832.378293pt;}
.y477{bottom:832.444693pt;}
.y152{bottom:832.453373pt;}
.y5d9{bottom:832.773333pt;}
.y22f{bottom:832.773360pt;}
.y2b3{bottom:834.053307pt;}
.y626{bottom:834.053333pt;}
.y581{bottom:834.772693pt;}
.y5ba{bottom:834.825813pt;}
.y35a{bottom:834.839093pt;}
.y4d7{bottom:834.848213pt;}
.y447{bottom:834.849333pt;}
.y97{bottom:834.853347pt;}
.y3f0{bottom:835.078133pt;}
.y4e2{bottom:835.157813pt;}
.y67e{bottom:835.168213pt;}
.y2d{bottom:835.173333pt;}
.y391{bottom:835.250773pt;}
.y421{bottom:835.317173pt;}
.yca{bottom:835.333333pt;}
.y285{bottom:840.773360pt;}
.y60a{bottom:840.774667pt;}
.y4ff{bottom:844.773333pt;}
.y1ad{bottom:844.773360pt;}
.y2ec{bottom:846.053307pt;}
.y641{bottom:846.053333pt;}
.y2b1{bottom:847.173333pt;}
.y22e{bottom:847.493333pt;}
.y4a8{bottom:848.699413pt;}
.y476{bottom:848.765813pt;}
.y151{bottom:848.773360pt;}
.y580{bottom:851.093813pt;}
.y5b9{bottom:851.146933pt;}
.y359{bottom:851.160213pt;}
.y4d6{bottom:851.169333pt;}
.y446{bottom:851.170453pt;}
.y96{bottom:851.173333pt;}
.y4e1{bottom:851.319573pt;}
.y67d{bottom:851.329973pt;}
.y191{bottom:851.333333pt;}
.y390{bottom:851.571893pt;}
.y420{bottom:851.638293pt;}
.yc9{bottom:851.653320pt;}
.y54c{bottom:851.877333pt;}
.y1e9{bottom:851.973307pt;}
.y284{bottom:857.733320pt;}
.y609{bottom:857.733333pt;}
.y1{bottom:859.312000pt;}
.y22d{bottom:862.053307pt;}
.y5d8{bottom:862.053333pt;}
.y661{bottom:863.013333pt;}
.y321{bottom:863.013347pt;}
.y2c{bottom:863.333333pt;}
.y4a7{bottom:865.020533pt;}
.y475{bottom:865.086933pt;}
.y150{bottom:865.093347pt;}
.y3ef{bottom:867.242293pt;}
.y57f{bottom:867.255573pt;}
.y5b8{bottom:867.308693pt;}
.y358{bottom:867.321973pt;}
.y4d5{bottom:867.331093pt;}
.y445{bottom:867.332213pt;}
.y95{bottom:867.333333pt;}
.y4e0{bottom:867.640693pt;}
.y67c{bottom:867.651093pt;}
.y190{bottom:867.653320pt;}
.y38f{bottom:867.893013pt;}
.y41f{bottom:867.959413pt;}
.yc8{bottom:867.973307pt;}
.y600{bottom:869.893333pt;}
.y625{bottom:873.093333pt;}
.y2af{bottom:873.093347pt;}
.y608{bottom:874.693333pt;}
.y283{bottom:874.693360pt;}
.y2eb{bottom:875.333333pt;}
.y5d7{bottom:876.773333pt;}
.y22b{bottom:876.773360pt;}
.y1ab{bottom:877.413333pt;}
.y31f{bottom:879.973307pt;}
.y65f{bottom:879.973333pt;}
.y4a6{bottom:881.182293pt;}
.y474{bottom:881.248693pt;}
.y14f{bottom:881.253333pt;}
.y3ee{bottom:883.563413pt;}
.y57e{bottom:883.576693pt;}
.y5b7{bottom:883.629813pt;}
.y357{bottom:883.643093pt;}
.y4d4{bottom:883.652213pt;}
.y94{bottom:883.653320pt;}
.y4df{bottom:883.961813pt;}
.y67b{bottom:883.972213pt;}
.y18f{bottom:883.973307pt;}
.y54b{bottom:884.200853pt;}
.y38e{bottom:884.214133pt;}
.yc7{bottom:884.293293pt;}
.y128{bottom:888.293293pt;}
.y22a{bottom:891.493333pt;}
.y282{bottom:891.653320pt;}
.y607{bottom:891.653333pt;}
.y640{bottom:892.453333pt;}
.y2ea{bottom:892.453373pt;}
.y4a5{bottom:897.503413pt;}
.y473{bottom:897.569813pt;}
.y14e{bottom:897.573320pt;}
.y2b{bottom:899.013347pt;}
.y63{bottom:899.014293pt;}
.y2ae{bottom:899.173333pt;}
.y3ed{bottom:899.884533pt;}
.y57d{bottom:899.897813pt;}
.y5b6{bottom:899.950933pt;}
.y356{bottom:899.964213pt;}
.y93{bottom:899.973307pt;}
.y41e{bottom:900.282933pt;}
.y127{bottom:900.293293pt;}
.y65e{bottom:900.442293pt;}
.y31e{bottom:900.453373pt;}
.y186{bottom:904.613360pt;}
.y228{bottom:906.053307pt;}
.y5d6{bottom:906.053333pt;}
.y606{bottom:908.613333pt;}
.y281{bottom:908.613360pt;}
.y1a9{bottom:909.893307pt;}
.y4fe{bottom:909.893333pt;}
.y3ec{bottom:916.205653pt;}
.y57c{bottom:916.218933pt;}
.y5b5{bottom:916.272053pt;}
.y355{bottom:916.285333pt;}
.y92{bottom:916.293293pt;}
.y54a{bottom:916.365013pt;}
.y38d{bottom:916.378293pt;}
.y41d{bottom:916.444693pt;}
.yc6{bottom:916.453373pt;}
.y5d5{bottom:920.773333pt;}
.y225{bottom:920.773360pt;}
.y2e9{bottom:921.733320pt;}
.y63f{bottom:921.733333pt;}
.y62{bottom:924.933333pt;}
.y2a{bottom:924.933347pt;}
.y2ab{bottom:925.253333pt;}
.y27f{bottom:925.573320pt;}
.y604{bottom:925.573333pt;}
.y14d{bottom:929.893307pt;}
.y472{bottom:929.893333pt;}
.y3eb{bottom:932.367413pt;}
.y57b{bottom:932.380693pt;}
.y5b4{bottom:932.433813pt;}
.y354{bottom:932.447093pt;}
.y91{bottom:932.453373pt;}
.y38c{bottom:932.699413pt;}
.y41c{bottom:932.765813pt;}
.yc5{bottom:932.773360pt;}
.y224{bottom:935.333333pt;}
.y27c{bottom:942.533360pt;}
.y601{bottom:942.534667pt;}
.y14c{bottom:943.173333pt;}
.y3ea{bottom:948.688533pt;}
.y57a{bottom:948.701813pt;}
.y5b3{bottom:948.754933pt;}
.y61{bottom:948.768213pt;}
.y29{bottom:948.773360pt;}
.y41b{bottom:949.086933pt;}
.y126{bottom:949.093347pt;}
.y222{bottom:950.053307pt;}
.y5d4{bottom:950.053333pt;}
.y63e{bottom:951.013333pt;}
.y2e8{bottom:951.013347pt;}
.y2a8{bottom:951.333333pt;}
.y14a{bottom:959.493333pt;}
.y3e9{bottom:965.009653pt;}
.y38b{bottom:965.022933pt;}
.y5b2{bottom:965.076053pt;}
.y60{bottom:965.089333pt;}
.y28{bottom:965.093347pt;}
.y21e{bottom:965.253333pt;}
.y4de{bottom:965.408053pt;}
.y18e{bottom:965.413333pt;}
.y149{bottom:976.293293pt;}
.y470{bottom:976.293333pt;}
.y2e6{bottom:980.293293pt;}
.y63d{bottom:980.293333pt;}
.y3e8{bottom:981.330773pt;}
.y38a{bottom:981.344053pt;}
.y5b1{bottom:981.397173pt;}
.y5f{bottom:981.410453pt;}
.y27{bottom:981.413333pt;}
.y4dd{bottom:981.569813pt;}
.y18d{bottom:981.573320pt;}
.y5d2{bottom:984.291573pt;}
.y21d{bottom:984.293293pt;}
.y147{bottom:993.253333pt;}
.y3e7{bottom:997.492533pt;}
.y389{bottom:997.505813pt;}
.y5b0{bottom:997.558933pt;}
.y5e{bottom:997.572213pt;}
.y26{bottom:997.573320pt;}
.y21c{bottom:1013.733320pt;}
.y5d1{bottom:1013.733333pt;}
.y3e6{bottom:1013.813653pt;}
.y388{bottom:1013.826933pt;}
.y5af{bottom:1013.880053pt;}
.y25{bottom:1013.893307pt;}
.y5d{bottom:1013.893333pt;}
.y23{bottom:1052.319987pt;}
.y5c{bottom:1052.320000pt;}
.h4f{height:12.946653pt;}
.h53{height:12.946667pt;}
.h54{height:12.946680pt;}
.h58{height:12.960000pt;}
.h56{height:12.992000pt;}
.h50{height:13.106653pt;}
.h90{height:13.106667pt;}
.h55{height:13.106680pt;}
.h49{height:13.106733pt;}
.h8c{height:13.108000pt;}
.h57{height:13.120000pt;}
.h93{height:13.121333pt;}
.h2c{height:14.546653pt;}
.h81{height:14.546667pt;}
.h38{height:14.546680pt;}
.h34{height:14.546693pt;}
.h2b{height:14.546733pt;}
.h82{height:14.548000pt;}
.h2f{height:14.560000pt;}
.h84{height:14.561333pt;}
.h87{height:14.578667pt;}
.h36{height:14.578693pt;}
.h86{height:14.586667pt;}
.h32{height:14.586693pt;}
.h3a{height:14.592000pt;}
.h7f{height:14.705333pt;}
.h28{height:14.706653pt;}
.h37{height:14.706667pt;}
.h39{height:14.706680pt;}
.h33{height:14.706693pt;}
.h2d{height:14.706733pt;}
.h85{height:14.718667pt;}
.h30{height:14.720000pt;}
.h2e{height:14.740000pt;}
.h83{height:14.741333pt;}
.h75{height:16.145333pt;}
.h1a{height:16.146653pt;}
.h6a{height:16.146667pt;}
.h40{height:16.146693pt;}
.h6b{height:16.146733pt;}
.h22{height:16.160000pt;}
.h3d{height:16.180000pt;}
.h88{height:16.305333pt;}
.h18{height:16.306653pt;}
.h1b{height:16.306667pt;}
.h42{height:16.306693pt;}
.h19{height:16.306733pt;}
.h23{height:16.320000pt;}
.h69{height:16.340000pt;}
.h3f{height:16.346653pt;}
.h89{height:16.346667pt;}
.h6e{height:16.346693pt;}
.h64{height:16.946667pt;}
.h67{height:16.946680pt;}
.h9a{height:16.948000pt;}
.h5f{height:16.960000pt;}
.h5c{height:16.980000pt;}
.h68{height:16.992000pt;}
.h5b{height:17.106653pt;}
.h95{height:17.106667pt;}
.h65{height:17.106680pt;}
.h9b{height:17.118667pt;}
.h5e{height:17.120000pt;}
.h72{height:22.968750pt;}
.h14{height:24.806250pt;}
.h92{height:25.905333pt;}
.h44{height:25.906653pt;}
.h48{height:25.906667pt;}
.h4c{height:25.920000pt;}
.h8d{height:25.938667pt;}
.h4a{height:25.940000pt;}
.h46{height:26.066653pt;}
.h47{height:26.066667pt;}
.h52{height:26.066693pt;}
.h8b{height:26.068000pt;}
.h4b{height:26.080000pt;}
.h8e{height:26.081333pt;}
.h91{height:26.098667pt;}
.h51{height:26.098693pt;}
.h8f{height:26.105333pt;}
.h4e{height:26.106653pt;}
.h16{height:27.984375pt;}
.h7{height:28.560000pt;}
.h96{height:29.265333pt;}
.h5a{height:29.266653pt;}
.h94{height:29.266667pt;}
.h66{height:29.266680pt;}
.h61{height:29.266693pt;}
.h59{height:29.266733pt;}
.h5d{height:29.280000pt;}
.h63{height:29.298653pt;}
.h99{height:29.298667pt;}
.h70{height:29.306653pt;}
.ha0{height:29.306667pt;}
.h60{height:29.306693pt;}
.h97{height:29.308000pt;}
.h62{height:29.426653pt;}
.h98{height:29.426667pt;}
.h6f{height:29.440000pt;}
.he{height:30.223125pt;}
.h8a{height:30.778125pt;}
.h7c{height:32.465333pt;}
.h1e{height:32.466653pt;}
.h7d{height:32.466667pt;}
.h20{height:32.466733pt;}
.h9c{height:32.478667pt;}
.h6d{height:32.480000pt;}
.h1c{height:32.626653pt;}
.h7a{height:32.626667pt;}
.h6c{height:32.640000pt;}
.h21{height:32.660000pt;}
.h41{height:33.106693pt;}
.h43{height:33.266653pt;}
.h73{height:34.453125pt;}
.h80{height:34.851562pt;}
.h9f{height:36.408750pt;}
.h45{height:37.499062pt;}
.h11{height:38.128125pt;}
.h10{height:38.569063pt;}
.h29{height:38.578125pt;}
.h4d{height:39.040000pt;}
.h6{height:40.800000pt;}
.h17{height:41.976562pt;}
.hf{height:42.262500pt;}
.ha{height:42.693125pt;}
.h3{height:42.840000pt;}
.h7b{height:43.366250pt;}
.h9d{height:43.370730pt;}
.h77{height:43.402730pt;}
.h7e{height:43.520703pt;}
.h78{height:43.561023pt;}
.h79{height:43.617343pt;}
.h74{height:43.725930pt;}
.h76{height:43.763263pt;}
.h71{height:43.837503pt;}
.h3b{height:45.280000pt;}
.hb{height:46.454062pt;}
.h9e{height:46.495663pt;}
.h13{height:47.763750pt;}
.h1f{height:48.783018pt;}
.h1d{height:48.783338pt;}
.h2{height:48.960000pt;}
.h9{height:51.491250pt;}
.hd{height:53.581982pt;}
.h12{height:61.803437pt;}
.hc{height:68.411875pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h26{height:120.352000pt;}
.h27{height:120.360000pt;}
.h24{height:131.676000pt;}
.h25{height:131.680000pt;}
.h31{height:219.706640pt;}
.h3c{height:236.506667pt;}
.h35{height:249.026667pt;}
.h3e{height:270.426680pt;}
.h2a{height:351.546667pt;}
.h0{height:1122.518667pt;}
.h15{height:1122.546627pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3f{width:15.666653pt;}
.w73{width:15.666667pt;}
.w75{width:15.870667pt;}
.w42{width:15.872000pt;}
.w7{width:18.866653pt;}
.w12{width:18.866667pt;}
.w55{width:18.868000pt;}
.wa{width:18.880000pt;}
.w62{width:18.881333pt;}
.wd{width:19.026653pt;}
.w51{width:19.026667pt;}
.w2c{width:28.306653pt;}
.w64{width:28.306667pt;}
.w6c{width:29.266667pt;}
.w36{width:29.266693pt;}
.w7a{width:41.105333pt;}
.w48{width:41.106653pt;}
.w4c{width:43.706653pt;}
.w7e{width:43.708000pt;}
.w4a{width:44.626653pt;}
.w7c{width:44.626667pt;}
.w47{width:54.066653pt;}
.w79{width:54.066667pt;}
.w49{width:54.098653pt;}
.w7b{width:54.098667pt;}
.w46{width:54.560000pt;}
.w1a{width:64.032000pt;}
.w78{width:66.078667pt;}
.w45{width:66.080000pt;}
.w7d{width:69.585333pt;}
.w4b{width:69.586653pt;}
.w1e{width:80.032000pt;}
.w39{width:93.586653pt;}
.w6f{width:93.586667pt;}
.w38{width:94.432000pt;}
.w6e{width:94.433333pt;}
.w3a{width:94.578653pt;}
.w70{width:94.578667pt;}
.w43{width:95.186653pt;}
.w76{width:95.186667pt;}
.w44{width:98.738653pt;}
.w77{width:98.740000pt;}
.w18{width:100.672000pt;}
.w63{width:103.858667pt;}
.w2b{width:103.858693pt;}
.we{width:103.866653pt;}
.w52{width:103.866667pt;}
.w31{width:104.018680pt;}
.w68{width:104.020000pt;}
.w2a{width:104.032000pt;}
.w61{width:105.778667pt;}
.w29{width:105.778680pt;}
.w14{width:105.920000pt;}
.w58{width:109.626667pt;}
.w17{width:109.626693pt;}
.w15{width:111.552000pt;}
.w3b{width:113.306653pt;}
.w71{width:113.306667pt;}
.w9{width:113.458653pt;}
.w4f{width:113.458667pt;}
.w32{width:113.466653pt;}
.w69{width:113.466667pt;}
.wb{width:113.472000pt;}
.w57{width:117.137333pt;}
.w16{width:117.138653pt;}
.w41{width:120.640000pt;}
.w2d{width:122.906653pt;}
.w65{width:122.908000pt;}
.w5{width:122.912000pt;}
.wc{width:141.773320pt;}
.w50{width:141.774667pt;}
.w20{width:149.773320pt;}
.w5c{width:149.773333pt;}
.w26{width:150.426667pt;}
.w2e{width:151.226667pt;}
.w5a{width:153.293333pt;}
.w1c{width:153.293360pt;}
.w24{width:163.213320pt;}
.w5d{width:163.213333pt;}
.w25{width:163.226653pt;}
.w5e{width:163.226667pt;}
.w22{width:163.266667pt;}
.w23{width:163.386667pt;}
.w3c{width:173.826667pt;}
.w1d{width:175.706640pt;}
.w5b{width:175.708000pt;}
.w21{width:180.986667pt;}
.w35{width:188.026667pt;}
.wf{width:189.026667pt;}
.w37{width:207.893307pt;}
.w6d{width:207.894667pt;}
.w54{width:217.466667pt;}
.w11{width:217.466680pt;}
.w13{width:226.773320pt;}
.w56{width:226.773333pt;}
.w2f{width:226.933360pt;}
.w66{width:226.934667pt;}
.w6a{width:226.946667pt;}
.w33{width:226.946680pt;}
.w5f{width:228.693333pt;}
.w27{width:228.693347pt;}
.w40{width:230.933333pt;}
.w74{width:230.934667pt;}
.w72{width:231.705333pt;}
.w3e{width:231.706667pt;}
.w1f{width:242.293333pt;}
.w67{width:245.653333pt;}
.w30{width:245.653360pt;}
.w6{width:245.813320pt;}
.w4d{width:245.814667pt;}
.w60{width:255.093333pt;}
.w28{width:255.093347pt;}
.w1b{width:260.053333pt;}
.w8{width:264.533320pt;}
.w4e{width:264.534667pt;}
.w34{width:425.213333pt;}
.w6b{width:425.214667pt;}
.w10{width:463.133347pt;}
.w53{width:463.134667pt;}
.w3d{width:478.333333pt;}
.w19{width:551.479987pt;}
.w59{width:551.480000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:4.640000pt;}
.x4b{left:6.272000pt;}
.x21{left:7.232000pt;}
.x24{left:8.306680pt;}
.x17{left:9.426667pt;}
.x72{left:10.720013pt;}
.x25{left:12.800013pt;}
.x46{left:14.592000pt;}
.x45{left:15.712000pt;}
.x20{left:16.960000pt;}
.x3c{left:18.866667pt;}
.x6d{left:20.000000pt;}
.x3e{left:21.306680pt;}
.x47{left:22.592000pt;}
.x1c{left:23.679987pt;}
.x73{left:24.640013pt;}
.x19{left:27.186667pt;}
.x26{left:29.106667pt;}
.x3b{left:31.040000pt;}
.x39{left:32.826667pt;}
.x23{left:34.400000pt;}
.x3a{left:35.666667pt;}
.x63{left:36.986653pt;}
.x3d{left:37.920013pt;}
.x1d{left:39.506680pt;}
.x22{left:41.306667pt;}
.x36{left:42.266680pt;}
.x5d{left:43.200000pt;}
.x37{left:44.986653pt;}
.x59{left:46.106667pt;}
.x57{left:47.840013pt;}
.x64{left:49.919973pt;}
.x58{left:51.200000pt;}
.x5f{left:53.280000pt;}
.x5a{left:54.720013pt;}
.x61{left:58.106653pt;}
.x13{left:61.466667pt;}
.x27{left:64.306680pt;}
.x15{left:68.346667pt;}
.x66{left:70.079987pt;}
.x41{left:71.040000pt;}
.x6{left:72.000000pt;}
.x6a{left:74.106653pt;}
.x2d{left:76.000000pt;}
.x5c{left:76.986693pt;}
.x82{left:79.712000pt;}
.x81{left:80.832000pt;}
.x54{left:81.786693pt;}
.x80{left:85.632000pt;}
.x7f{left:86.752000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x51{left:95.706667pt;}
.x67{left:99.039987pt;}
.x2e{left:130.572000pt;}
.x2f{left:134.906667pt;}
.x48{left:151.080000pt;}
.x75{left:166.266667pt;}
.x40{left:172.679987pt;}
.x4{left:180.874667pt;}
.x5{left:185.146667pt;}
.x3f{left:190.086667pt;}
.x7e{left:192.826667pt;}
.x14{left:194.920000pt;}
.x79{left:200.666667pt;}
.x7d{left:205.146667pt;}
.x74{left:206.426667pt;}
.x2a{left:209.126667pt;}
.x2b{left:213.466680pt;}
.x50{left:221.480000pt;}
.x5b{left:223.239987pt;}
.x4c{left:234.306667pt;}
.x83{left:238.946667pt;}
.x65{left:245.826667pt;}
.x32{left:261.026667pt;}
.x2c{left:264.066667pt;}
.x77{left:272.066667pt;}
.x5e{left:298.946680pt;}
.x1a{left:308.386653pt;}
.x6e{left:311.906653pt;}
.x76{left:316.386667pt;}
.x1b{left:327.266667pt;}
.x55{left:346.146653pt;}
.x35{left:366.946653pt;}
.x6b{left:382.346680pt;}
.x49{left:393.386680pt;}
.x43{left:395.146653pt;}
.x78{left:396.413333pt;}
.x4d{left:397.706667pt;}
.x3{left:404.408000pt;}
.xb{left:420.573320pt;}
.x10{left:424.573320pt;}
.x6f{left:436.426680pt;}
.xc{left:439.453333pt;}
.x16{left:440.746667pt;}
.x52{left:450.186680pt;}
.x18{left:459.626667pt;}
.x53{left:469.066653pt;}
.x68{left:477.546667pt;}
.x33{left:478.506667pt;}
.x7{left:487.613320pt;}
.x69{left:493.226680pt;}
.x34{left:497.386680pt;}
.x8{left:511.933347pt;}
.x60{left:516.266680pt;}
.xd{left:521.673320pt;}
.x7a{left:522.680000pt;}
.xe{left:526.013347pt;}
.x4a{left:543.173333pt;}
.x7c{left:544.920000pt;}
.x70{left:547.333333pt;}
.x44{left:548.453333pt;}
.x7b{left:554.053333pt;}
.x4e{left:560.933347pt;}
.x84{left:565.573333pt;}
.x9{left:569.253333pt;}
.x56{left:572.933347pt;}
.x6c{left:591.973347pt;}
.x1e{left:601.253333pt;}
.x62{left:610.853347pt;}
.xf{left:612.613320pt;}
.x38{left:614.533320pt;}
.x1f{left:620.293333pt;}
.x4f{left:637.893347pt;}
.x11{left:670.193333pt;}
.x30{left:672.273333pt;}
.x12{left:674.533320pt;}
.x31{left:676.613320pt;}
.x71{left:680.453333pt;}
.x28{left:701.900000pt;}
.x29{left:706.239987pt;}
.xa{left:721.920000pt;}
}




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