
    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_a4a4afda073f665ab1e07084.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009766;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_1f761ab9613b51b4f3c11e18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012695;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_6ae6d6bf8a4904a626ca14db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_84bde57882280cce75456545.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675293;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_7c23b218844d3e0fd1f2955e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_9a47d71c7719139b5d1c980d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_0d7a8832d33d88fc3c072652.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_db04726721238569aa3f10f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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;}
.m9{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,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);}
.v0{vertical-align:0.000000px;}
.ls51{letter-spacing:-0.876812px;}
.ls7a{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.756000px;}
.ls39{letter-spacing:-0.702000px;}
.ls40{letter-spacing:-0.648000px;}
.ls3b{letter-spacing:-0.594000px;}
.ls97{letter-spacing:-0.505440px;}
.ls3a{letter-spacing:-0.432000px;}
.ls94{letter-spacing:-0.421200px;}
.ls1a{letter-spacing:-0.378000px;}
.ls92{letter-spacing:-0.336960px;}
.ls4a{letter-spacing:-0.324000px;}
.ls5e{letter-spacing:-0.298710px;}
.ls98{letter-spacing:-0.294840px;}
.ls19{letter-spacing:-0.270000px;}
.ls99{letter-spacing:-0.252720px;}
.ls62{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.210600px;}
.ls25{letter-spacing:-0.168480px;}
.ls2{letter-spacing:-0.162000px;}
.ls43{letter-spacing:-0.157275px;}
.ls3e{letter-spacing:-0.157041px;}
.ls45{letter-spacing:-0.155282px;}
.ls7e{letter-spacing:-0.153238px;}
.ls2e{letter-spacing:-0.149474px;}
.ls75{letter-spacing:-0.149380px;}
.ls5c{letter-spacing:-0.149355px;}
.ls85{letter-spacing:-0.148234px;}
.ls68{letter-spacing:-0.147184px;}
.lsb{letter-spacing:-0.143640px;}
.ls96{letter-spacing:-0.126360px;}
.ls4{letter-spacing:-0.119880px;}
.lsd{letter-spacing:-0.113760px;}
.ls17{letter-spacing:-0.108000px;}
.ls42{letter-spacing:-0.104850px;}
.ls3c{letter-spacing:-0.104694px;}
.ls44{letter-spacing:-0.103522px;}
.ls50{letter-spacing:-0.103154px;}
.ls23{letter-spacing:-0.102240px;}
.ls7c{letter-spacing:-0.102158px;}
.ls2c{letter-spacing:-0.099649px;}
.ls76{letter-spacing:-0.099587px;}
.ls84{letter-spacing:-0.098822px;}
.ls71{letter-spacing:-0.097838px;}
.ls8a{letter-spacing:-0.095760px;}
.ls93{letter-spacing:-0.084240px;}
.ls5{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.060120px;}
.lsc{letter-spacing:-0.056880px;}
.ls6{letter-spacing:-0.054000px;}
.ls41{letter-spacing:-0.052425px;}
.ls7b{letter-spacing:-0.051079px;}
.ls2d{letter-spacing:-0.049825px;}
.ls74{letter-spacing:-0.049793px;}
.ls5d{letter-spacing:-0.049785px;}
.ls66{letter-spacing:-0.049061px;}
.ls70{letter-spacing:-0.048919px;}
.ls91{letter-spacing:-0.042120px;}
.ls1{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.000360px;}
.ls59{letter-spacing:0.010800px;}
.ls95{letter-spacing:0.042120px;}
.ls9a{letter-spacing:0.046440px;}
.ls55{letter-spacing:0.047880px;}
.ls18{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.056880px;}
.ls77{letter-spacing:0.060120px;}
.ls8f{letter-spacing:0.063180px;}
.ls9b{letter-spacing:0.079200px;}
.ls8c{letter-spacing:0.084240px;}
.ls8b{letter-spacing:0.095760px;}
.ls8d{letter-spacing:0.096876px;}
.ls69{letter-spacing:0.098123px;}
.ls73{letter-spacing:0.099587px;}
.ls16{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.113760px;}
.ls3{letter-spacing:0.119880px;}
.ls22{letter-spacing:0.120240px;}
.ls26{letter-spacing:0.126360px;}
.ls36{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.143640px;}
.ls0{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.153216px;}
.ls3f{letter-spacing:0.155282px;}
.ls32{letter-spacing:0.162000px;}
.ls8e{letter-spacing:0.168480px;}
.lse{letter-spacing:0.170640px;}
.ls6c{letter-spacing:0.178200px;}
.ls90{letter-spacing:0.189540px;}
.ls6f{letter-spacing:0.195677px;}
.ls83{letter-spacing:0.197645px;}
.ls72{letter-spacing:0.199174px;}
.ls2f{letter-spacing:0.199298px;}
.ls5a{letter-spacing:0.199800px;}
.ls7d{letter-spacing:0.204317px;}
.ls46{letter-spacing:0.207043px;}
.ls20{letter-spacing:0.216000px;}
.ls86{letter-spacing:0.240264px;}
.ls67{letter-spacing:0.245307px;}
.ls82{letter-spacing:0.247056px;}
.ls4f{letter-spacing:0.257886px;}
.ls3d{letter-spacing:0.261735px;}
.ls10{letter-spacing:0.264600px;}
.ls88{letter-spacing:0.280800px;}
.ls87{letter-spacing:0.287280px;}
.ls4c{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.483480px;}
.ls34{letter-spacing:0.503640px;}
.ls56{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.918000px;}
.ls6d{letter-spacing:1.296000px;}
.ls33{letter-spacing:1.355400px;}
.ls48{letter-spacing:1.620000px;}
.ls1f{letter-spacing:2.014200px;}
.ls81{letter-spacing:2.311200px;}
.ls1b{letter-spacing:2.376000px;}
.ls2b{letter-spacing:2.700000px;}
.ls14{letter-spacing:2.716200px;}
.ls78{letter-spacing:3.337200px;}
.ls37{letter-spacing:3.456000px;}
.ls57{letter-spacing:3.780000px;}
.ls80{letter-spacing:4.087800px;}
.ls1c{letter-spacing:4.136400px;}
.ls1d{letter-spacing:4.158000px;}
.ls31{letter-spacing:4.536000px;}
.ls6e{letter-spacing:5.200200px;}
.ls13{letter-spacing:5.238000px;}
.ls63{letter-spacing:5.616000px;}
.ls54{letter-spacing:5.940000px;}
.ls53{letter-spacing:6.026400px;}
.ls64{letter-spacing:6.318000px;}
.ls2a{letter-spacing:6.696000px;}
.ls35{letter-spacing:7.020000px;}
.ls47{letter-spacing:7.398000px;}
.ls7f{letter-spacing:7.776000px;}
.ls52{letter-spacing:8.100000px;}
.ls28{letter-spacing:8.478000px;}
.ls58{letter-spacing:8.856000px;}
.ls30{letter-spacing:9.180000px;}
.ls5f{letter-spacing:9.936000px;}
.ls6a{letter-spacing:11.016000px;}
.ls49{letter-spacing:11.340000px;}
.ls12{letter-spacing:11.718000px;}
.ls4d{letter-spacing:12.420000px;}
.ls65{letter-spacing:13.176000px;}
.ls4e{letter-spacing:19.548000px;}
.ls61{letter-spacing:19.980000px;}
.ls60{letter-spacing:20.358000px;}
.ls79{letter-spacing:21.816000px;}
.ls29{letter-spacing:29.592000px;}
.ls11{letter-spacing:45.090000px;}
.ls4b{letter-spacing:45.468000px;}
.ls6b{letter-spacing:48.438000px;}
.ls1e{letter-spacing:103.526640px;}
.ls9{letter-spacing:111.939840px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(241,136,119),0 0.015em rgb(241,136,119),0.015em 0 rgb(241,136,119),0 -0.015em  rgb(241,136,119);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(241,136,119);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.215760px;}
.ws147{word-spacing:-12.324600px;}
.ws161{word-spacing:-12.204360px;}
.wsa{word-spacing:-11.717280px;}
.ws9{word-spacing:-11.660400px;}
.ws8{word-spacing:-11.546640px;}
.ws7{word-spacing:-11.489760px;}
.wsb{word-spacing:-11.432880px;}
.ws8d{word-spacing:-11.124000px;}
.ws23{word-spacing:-11.070000px;}
.ws24{word-spacing:-11.016000px;}
.ws1{word-spacing:-10.962000px;}
.ws25{word-spacing:-10.908000px;}
.ws21{word-spacing:-10.854000px;}
.ws51{word-spacing:-10.800000px;}
.ws117{word-spacing:-10.746000px;}
.ws22{word-spacing:-10.692000px;}
.wsbd{word-spacing:-10.662725px;}
.wsfd{word-spacing:-10.638000px;}
.wsbc{word-spacing:-10.589850px;}
.ws6c{word-spacing:-10.584000px;}
.wsa6{word-spacing:-10.530000px;}
.wsa7{word-spacing:-10.521747px;}
.wsbe{word-spacing:-10.507442px;}
.wse0{word-spacing:-10.470172px;}
.ws16a{word-spacing:-10.377360px;}
.ws11f{word-spacing:-10.368000px;}
.wse1{word-spacing:-10.367017px;}
.wsbb{word-spacing:-10.314000px;}
.ws169{word-spacing:-10.275120px;}
.wsa5{word-spacing:-10.260000px;}
.ws130{word-spacing:-10.207647px;}
.wsa4{word-spacing:-10.206000px;}
.ws131{word-spacing:-10.108060px;}
.ws6e{word-spacing:-10.064569px;}
.ws6f{word-spacing:-10.014745px;}
.ws15a{word-spacing:-9.882240px;}
.ws16b{word-spacing:-9.863280px;}
.ws16d{word-spacing:-9.815400px;}
.ws16e{word-spacing:-9.719640px;}
.ws16c{word-spacing:-9.623880px;}
.ws6{word-spacing:-9.576000px;}
.ws183{word-spacing:-8.739900px;}
.ws177{word-spacing:-8.718840px;}
.ws178{word-spacing:-8.676720px;}
.ws181{word-spacing:-8.634600px;}
.ws17d{word-spacing:-8.592480px;}
.ws17b{word-spacing:-8.550360px;}
.ws179{word-spacing:-8.508240px;}
.ws17c{word-spacing:-8.466120px;}
.ws17e{word-spacing:-8.424000px;}
.ws53{word-spacing:-8.381880px;}
.ws52{word-spacing:-8.339760px;}
.ws182{word-spacing:-8.297640px;}
.ws17f{word-spacing:-8.255520px;}
.ws184{word-spacing:-8.213400px;}
.ws17a{word-spacing:-8.129160px;}
.ws180{word-spacing:-8.044920px;}
.ws109{word-spacing:-2.808000px;}
.ws14c{word-spacing:-2.754000px;}
.ws10a{word-spacing:-2.700000px;}
.wsb8{word-spacing:-2.669697px;}
.ws12e{word-spacing:-2.502131px;}
.ws140{word-spacing:-2.445960px;}
.ws110{word-spacing:-2.430000px;}
.ws75{word-spacing:-2.322000px;}
.ws8f{word-spacing:-2.268000px;}
.ws154{word-spacing:-2.247485px;}
.ws144{word-spacing:-2.240703px;}
.ws141{word-spacing:-2.201364px;}
.ws156{word-spacing:-2.196406px;}
.ws89{word-spacing:-2.192282px;}
.ws160{word-spacing:-2.174093px;}
.ws145{word-spacing:-2.141116px;}
.ws6d{word-spacing:-2.115003px;}
.ws12d{word-spacing:-2.109640px;}
.ws35{word-spacing:-2.052000px;}
.wsf1{word-spacing:-2.011511px;}
.ws2f{word-spacing:-1.998000px;}
.ws10f{word-spacing:-1.991400px;}
.wsd4{word-spacing:-1.966910px;}
.wsa3{word-spacing:-1.944000px;}
.ws155{word-spacing:-1.941010px;}
.ws15e{word-spacing:-1.927037px;}
.ws1a8{word-spacing:-1.895400px;}
.ws8c{word-spacing:-1.893335px;}
.ws143{word-spacing:-1.892149px;}
.ws48{word-spacing:-1.890000px;}
.ws15f{word-spacing:-1.877626px;}
.ws14d{word-spacing:-1.836000px;}
.ws12f{word-spacing:-1.766210px;}
.ws1b{word-spacing:-1.763280px;}
.ws43{word-spacing:-1.728000px;}
.wscf{word-spacing:-1.677600px;}
.wsb7{word-spacing:-1.675104px;}
.ws90{word-spacing:-1.674000px;}
.wsf2{word-spacing:-1.650470px;}
.ws10d{word-spacing:-1.642905px;}
.ws8e{word-spacing:-1.620000px;}
.wsd3{word-spacing:-1.604585px;}
.ws146{word-spacing:-1.593389px;}
.ws97{word-spacing:-1.566000px;}
.ws142{word-spacing:-1.565414px;}
.ws10c{word-spacing:-1.543335px;}
.ws12b{word-spacing:-1.520903px;}
.ws198{word-spacing:-1.474200px;}
.ws11{word-spacing:-1.422000px;}
.wsb4{word-spacing:-1.350000px;}
.ws12a{word-spacing:-1.324658px;}
.wsb1{word-spacing:-1.296000px;}
.ws66{word-spacing:-1.242000px;}
.ws194{word-spacing:-1.179360px;}
.wsc7{word-spacing:-1.134000px;}
.wsd0{word-spacing:-1.100925px;}
.ws20{word-spacing:-1.080720px;}
.ws153{word-spacing:-1.072663px;}
.wsd2{word-spacing:-1.035216px;}
.ws129{word-spacing:-1.030289px;}
.ws8a{word-spacing:-0.996492px;}
.wsd1{word-spacing:-0.996075px;}
.wsb9{word-spacing:-0.994593px;}
.ws91{word-spacing:-0.972000px;}
.ws12c{word-spacing:-0.932167px;}
.ws126{word-spacing:-0.918000px;}
.wsad{word-spacing:-0.864000px;}
.ws115{word-spacing:-0.810000px;}
.ws1a2{word-spacing:-0.800280px;}
.wsf5{word-spacing:-0.756000px;}
.ws13{word-spacing:-0.682560px;}
.ws2b{word-spacing:-0.648000px;}
.wsde{word-spacing:-0.594000px;}
.wsf0{word-spacing:-0.540000px;}
.wsae{word-spacing:-0.486000px;}
.ws18c{word-spacing:-0.463320px;}
.wsef{word-spacing:-0.432000px;}
.ws193{word-spacing:-0.421200px;}
.ws175{word-spacing:-0.383040px;}
.wsba{word-spacing:-0.366429px;}
.ws10e{word-spacing:-0.348495px;}
.ws12{word-spacing:-0.341280px;}
.ws1c8{word-spacing:-0.336960px;}
.ws45{word-spacing:-0.270000px;}
.ws4d{word-spacing:-0.216000px;}
.ws1a{word-spacing:-0.170640px;}
.ws188{word-spacing:-0.168480px;}
.ws82{word-spacing:-0.162000px;}
.ws26{word-spacing:-0.143640px;}
.ws6b{word-spacing:-0.126360px;}
.ws162{word-spacing:-0.120240px;}
.ws28{word-spacing:-0.108000px;}
.ws173{word-spacing:-0.095760px;}
.ws5c{word-spacing:-0.060120px;}
.ws1d{word-spacing:-0.056880px;}
.ws29{word-spacing:-0.054000px;}
.wsf4{word-spacing:-0.047880px;}
.ws1c7{word-spacing:-0.042120px;}
.ws2{word-spacing:0.000000px;}
.ws1c6{word-spacing:0.042120px;}
.ws88{word-spacing:0.049825px;}
.ws5{word-spacing:0.054000px;}
.ws1c{word-spacing:0.056880px;}
.ws5b{word-spacing:0.060120px;}
.ws171{word-spacing:0.095760px;}
.ws16f{word-spacing:0.102240px;}
.ws3a{word-spacing:0.108000px;}
.ws5d{word-spacing:0.120240px;}
.ws1c5{word-spacing:0.126360px;}
.wsc{word-spacing:0.143640px;}
.ws8b{word-spacing:0.149474px;}
.ws68{word-spacing:0.153360px;}
.ws2c{word-spacing:0.162000px;}
.ws6a{word-spacing:0.168480px;}
.ws176{word-spacing:0.191520px;}
.ws1c4{word-spacing:0.210600px;}
.ws4{word-spacing:0.216000px;}
.ws69{word-spacing:0.252720px;}
.ws67{word-spacing:0.270000px;}
.ws1bb{word-spacing:0.294840px;}
.wsab{word-spacing:0.324000px;}
.ws170{word-spacing:0.335160px;}
.ws192{word-spacing:0.336960px;}
.wsf3{word-spacing:0.361040px;}
.ws3{word-spacing:0.378000px;}
.wse{word-spacing:0.398160px;}
.ws172{word-spacing:0.430920px;}
.ws62{word-spacing:0.432000px;}
.ws174{word-spacing:0.478800px;}
.ws14b{word-spacing:0.486000px;}
.ws19e{word-spacing:0.505440px;}
.ws42{word-spacing:0.540000px;}
.wsb6{word-spacing:0.594000px;}
.ws186{word-spacing:0.631800px;}
.ws150{word-spacing:0.648000px;}
.wsf{word-spacing:0.739440px;}
.ws133{word-spacing:0.756000px;}
.wsb2{word-spacing:0.810000px;}
.ws7b{word-spacing:0.864000px;}
.ws7c{word-spacing:0.918000px;}
.ws1ba{word-spacing:0.968760px;}
.ws7d{word-spacing:1.026000px;}
.ws7e{word-spacing:1.080000px;}
.ws1ad{word-spacing:1.137240px;}
.ws3b{word-spacing:1.188000px;}
.ws38{word-spacing:1.242000px;}
.wsa9{word-spacing:1.296000px;}
.ws190{word-spacing:1.347840px;}
.wsea{word-spacing:1.350000px;}
.ws187{word-spacing:1.389960px;}
.ws11c{word-spacing:1.458000px;}
.ws16{word-spacing:1.478880px;}
.ws80{word-spacing:1.512000px;}
.ws3e{word-spacing:1.566000px;}
.wsdc{word-spacing:1.620000px;}
.ws100{word-spacing:1.674000px;}
.ws1ac{word-spacing:1.684800px;}
.ws1b2{word-spacing:1.769040px;}
.ws93{word-spacing:1.782000px;}
.ws61{word-spacing:1.890000px;}
.wsdf{word-spacing:1.944000px;}
.ws5f{word-spacing:1.998000px;}
.ws1b9{word-spacing:2.063880px;}
.ws166{word-spacing:2.106000px;}
.ws5e{word-spacing:2.160000px;}
.ws113{word-spacing:2.214000px;}
.ws27{word-spacing:2.268000px;}
.ws1be{word-spacing:2.274480px;}
.ws7f{word-spacing:2.322000px;}
.ws57{word-spacing:2.376000px;}
.wsd5{word-spacing:2.430000px;}
.wsf7{word-spacing:2.538000px;}
.ws7a{word-spacing:2.592000px;}
.ws4f{word-spacing:2.646000px;}
.ws4e{word-spacing:2.700000px;}
.ws114{word-spacing:2.808000px;}
.ws17{word-spacing:2.900880px;}
.ws55{word-spacing:2.970000px;}
.ws60{word-spacing:3.024000px;}
.ws76{word-spacing:3.078000px;}
.ws1b1{word-spacing:3.116880px;}
.ws139{word-spacing:3.132000px;}
.ws185{word-spacing:3.159000px;}
.wsdd{word-spacing:3.186000px;}
.wsdb{word-spacing:3.240000px;}
.ws65{word-spacing:3.348000px;}
.wsb0{word-spacing:3.402000px;}
.ws4c{word-spacing:3.456000px;}
.ws19c{word-spacing:3.495960px;}
.ws164{word-spacing:3.510000px;}
.ws1c3{word-spacing:3.538080px;}
.ws14e{word-spacing:3.564000px;}
.ws101{word-spacing:3.672000px;}
.ws9f{word-spacing:3.726000px;}
.ws56{word-spacing:3.780000px;}
.wse4{word-spacing:3.834000px;}
.ws163{word-spacing:3.942000px;}
.ws1a6{word-spacing:3.959280px;}
.ws49{word-spacing:4.050000px;}
.ws4a{word-spacing:4.104000px;}
.ws5a{word-spacing:4.158000px;}
.ws96{word-spacing:4.212000px;}
.ws59{word-spacing:4.266000px;}
.ws1f{word-spacing:4.322880px;}
.wsa2{word-spacing:4.428000px;}
.ws92{word-spacing:4.482000px;}
.ws64{word-spacing:4.536000px;}
.ws138{word-spacing:4.590000px;}
.ws1b8{word-spacing:4.591080px;}
.ws157{word-spacing:4.698000px;}
.ws19{word-spacing:4.721040px;}
.ws32{word-spacing:4.752000px;}
.ws134{word-spacing:4.806000px;}
.ws63{word-spacing:4.860000px;}
.ws44{word-spacing:5.130000px;}
.ws58{word-spacing:5.184000px;}
.ws31{word-spacing:5.238000px;}
.wse3{word-spacing:5.292000px;}
.ws13a{word-spacing:5.346000px;}
.ws54{word-spacing:5.508000px;}
.wsbf{word-spacing:5.562000px;}
.ws71{word-spacing:5.616000px;}
.ws1ae{word-spacing:5.644080px;}
.wsfb{word-spacing:5.670000px;}
.ws3d{word-spacing:5.832000px;}
.wse7{word-spacing:5.886000px;}
.ws84{word-spacing:5.940000px;}
.wsee{word-spacing:5.994000px;}
.ws1b4{word-spacing:6.023160px;}
.ws1af{word-spacing:6.065280px;}
.wsc6{word-spacing:6.210000px;}
.ws3f{word-spacing:6.264000px;}
.ws3c{word-spacing:6.318000px;}
.ws18e{word-spacing:6.360120px;}
.ws87{word-spacing:6.588000px;}
.ws158{word-spacing:6.642000px;}
.wsa8{word-spacing:6.696000px;}
.ws70{word-spacing:6.750000px;}
.ws86{word-spacing:6.804000px;}
.wsd9{word-spacing:6.912000px;}
.ws137{word-spacing:6.966000px;}
.ws4b{word-spacing:7.020000px;}
.wseb{word-spacing:7.074000px;}
.ws1b7{word-spacing:7.076160px;}
.ws1a3{word-spacing:7.118280px;}
.ws1a4{word-spacing:7.160400px;}
.wsaa{word-spacing:7.182000px;}
.wsd{word-spacing:7.223760px;}
.ws40{word-spacing:7.290000px;}
.ws77{word-spacing:7.344000px;}
.wsed{word-spacing:7.398000px;}
.wsec{word-spacing:7.506000px;}
.ws74{word-spacing:7.668000px;}
.ws10b{word-spacing:7.722000px;}
.ws41{word-spacing:7.776000px;}
.ws1aa{word-spacing:7.876440px;}
.ws136{word-spacing:7.884000px;}
.ws1a9{word-spacing:7.960680px;}
.ws10{word-spacing:7.963200px;}
.wsc8{word-spacing:7.992000px;}
.ws165{word-spacing:8.046000px;}
.wsc9{word-spacing:8.100000px;}
.ws119{word-spacing:8.154000px;}
.wsf6{word-spacing:8.208000px;}
.ws1e{word-spacing:8.304480px;}
.ws50{word-spacing:8.370000px;}
.ws78{word-spacing:8.424000px;}
.ws81{word-spacing:8.478000px;}
.ws1c0{word-spacing:8.592480px;}
.wsb5{word-spacing:8.748000px;}
.ws99{word-spacing:8.802000px;}
.wsf8{word-spacing:8.856000px;}
.ws1b3{word-spacing:8.887320px;}
.ws104{word-spacing:8.910000px;}
.ws1bc{word-spacing:8.929440px;}
.wsfc{word-spacing:8.964000px;}
.ws39{word-spacing:9.072000px;}
.wsfa{word-spacing:9.126000px;}
.wsf9{word-spacing:9.180000px;}
.ws108{word-spacing:9.234000px;}
.ws1bd{word-spacing:9.392760px;}
.wse9{word-spacing:9.450000px;}
.ws112{word-spacing:9.504000px;}
.wse8{word-spacing:9.558000px;}
.wsac{word-spacing:9.828000px;}
.wsc4{word-spacing:9.882000px;}
.ws9a{word-spacing:9.936000px;}
.ws11a{word-spacing:9.990000px;}
.ws11b{word-spacing:10.044000px;}
.wsc5{word-spacing:10.152000px;}
.ws30{word-spacing:10.206000px;}
.wsd8{word-spacing:10.260000px;}
.ws15b{word-spacing:10.314000px;}
.ws1a5{word-spacing:10.319400px;}
.ws1a1{word-spacing:10.361520px;}
.ws34{word-spacing:10.530000px;}
.ws189{word-spacing:10.572120px;}
.ws2a{word-spacing:10.584000px;}
.ws33{word-spacing:10.638000px;}
.wscd{word-spacing:10.692000px;}
.ws19b{word-spacing:10.740600px;}
.ws18a{word-spacing:10.866960px;}
.ws148{word-spacing:10.908000px;}
.ws2d{word-spacing:10.962000px;}
.ws132{word-spacing:11.016000px;}
.ws19d{word-spacing:11.035440px;}
.ws18{word-spacing:11.205360px;}
.ws2e{word-spacing:11.232000px;}
.ws105{word-spacing:11.286000px;}
.ws36{word-spacing:11.340000px;}
.ws9c{word-spacing:11.610000px;}
.ws37{word-spacing:11.718000px;}
.ws1b5{word-spacing:11.793600px;}
.ws102{word-spacing:11.988000px;}
.wse2{word-spacing:12.042000px;}
.ws98{word-spacing:12.096000px;}
.ws9d{word-spacing:12.258000px;}
.wse6{word-spacing:12.312000px;}
.ws14a{word-spacing:12.366000px;}
.ws11e{word-spacing:12.420000px;}
.ws149{word-spacing:12.474000px;}
.wsd7{word-spacing:12.744000px;}
.ws85{word-spacing:12.798000px;}
.ws15c{word-spacing:12.852000px;}
.ws15d{word-spacing:12.906000px;}
.wsd6{word-spacing:13.068000px;}
.wsda{word-spacing:13.176000px;}
.ws127{word-spacing:13.230000px;}
.ws18d{word-spacing:13.478400px;}
.ws13c{word-spacing:13.824000px;}
.ws19a{word-spacing:13.941720px;}
.ws9e{word-spacing:14.148000px;}
.ws128{word-spacing:14.256000px;}
.ws1ab{word-spacing:14.320800px;}
.ws15{word-spacing:14.447520px;}
.ws111{word-spacing:14.526000px;}
.ws159{word-spacing:14.688000px;}
.ws19f{word-spacing:14.784120px;}
.ws14{word-spacing:14.788800px;}
.ws73{word-spacing:14.850000px;}
.ws1a7{word-spacing:14.868360px;}
.wsaf{word-spacing:14.958000px;}
.ws196{word-spacing:14.994720px;}
.ws95{word-spacing:15.228000px;}
.ws94{word-spacing:15.336000px;}
.ws1c1{word-spacing:15.542280px;}
.ws197{word-spacing:15.710760px;}
.ws9b{word-spacing:16.416000px;}
.ws1b0{word-spacing:16.468920px;}
.wsa0{word-spacing:16.740000px;}
.ws191{word-spacing:16.848000px;}
.wsa1{word-spacing:16.902000px;}
.ws18f{word-spacing:17.227080px;}
.ws116{word-spacing:17.712000px;}
.ws1bf{word-spacing:18.237960px;}
.ws46{word-spacing:18.846000px;}
.ws47{word-spacing:18.900000px;}
.ws79{word-spacing:19.170000px;}
.ws13b{word-spacing:19.602000px;}
.ws103{word-spacing:19.656000px;}
.ws11d{word-spacing:19.872000px;}
.ws13e{word-spacing:20.304000px;}
.ws13f{word-spacing:20.358000px;}
.ws1c2{word-spacing:20.807280px;}
.ws118{word-spacing:21.708000px;}
.ws1b6{word-spacing:21.733920px;}
.ws152{word-spacing:21.762000px;}
.ws199{word-spacing:22.113000px;}
.ws106{word-spacing:22.140000px;}
.ws1a0{word-spacing:22.239360px;}
.ws107{word-spacing:22.464000px;}
.ws124{word-spacing:22.518000px;}
.ws14f{word-spacing:22.842000px;}
.ws13d{word-spacing:23.490000px;}
.ws83{word-spacing:23.598000px;}
.ws168{word-spacing:25.326000px;}
.ws167{word-spacing:25.650000px;}
.wsb3{word-spacing:25.758000px;}
.wscb{word-spacing:26.028000px;}
.wsc1{word-spacing:26.352000px;}
.ws72{word-spacing:26.406000px;}
.wscc{word-spacing:26.514000px;}
.ws122{word-spacing:26.784000px;}
.wsc2{word-spacing:26.838000px;}
.wsc3{word-spacing:27.540000px;}
.wsca{word-spacing:28.296000px;}
.wsc0{word-spacing:28.620000px;}
.ws195{word-spacing:29.778840px;}
.ws120{word-spacing:31.050000px;}
.ws135{word-spacing:31.482000px;}
.ws151{word-spacing:36.720000px;}
.ws125{word-spacing:37.206000px;}
.wsfe{word-spacing:37.638000px;}
.ws121{word-spacing:42.930000px;}
.wsff{word-spacing:43.038000px;}
.wse5{word-spacing:50.112000px;}
.wsce{word-spacing:72.522000px;}
.ws18b{word-spacing:78.806520px;}
.ws123{word-spacing:91.962000px;}
._3{margin-left:-10.007280px;}
._4{margin-left:-6.768720px;}
._5{margin-left:-4.402404px;}
._b{margin-left:-2.646000px;}
._0{margin-left:-1.162836px;}
._1{width:1.078920px;}
._8{width:2.322000px;}
._7{width:3.920508px;}
._6{width:5.130000px;}
._a{width:6.242508px;}
._9{width:7.452000px;}
._e{width:8.884836px;}
._d{width:9.936000px;}
._f{width:12.150000px;}
._2{width:14.337360px;}
._17{width:15.745428px;}
._10{width:18.414000px;}
._12{width:20.466000px;}
._11{width:21.952836px;}
._14{width:24.897672px;}
._13{width:36.234000px;}
._c{width:39.745080px;}
._15{width:151.516800px;}
._16{width:527.397480px;}
.fc4{color:rgb(24,60,124);}
.fc2{color:rgb(241,136,119);}
.fc3{color:rgb(52,169,225);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.120000px;}
.fs9{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs12{font-size:48.919200px;}
.fs11{font-size:49.061400px;}
.fs15{font-size:49.411200px;}
.fs10{font-size:49.785000px;}
.fs13{font-size:49.793400px;}
.fsa{font-size:49.824600px;}
.fs14{font-size:51.079200px;}
.fs8{font-size:51.120000px;}
.fsf{font-size:51.577200px;}
.fse{font-size:51.760800px;}
.fsc{font-size:52.347000px;}
.fsd{font-size:52.425000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs7{font-size:60.120000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:119.880000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y27f{bottom:2.970000px;}
.y286{bottom:3.060000px;}
.y288{bottom:3.150000px;}
.y271{bottom:4.500000px;}
.y1ec{bottom:10.756050px;}
.y21c{bottom:11.303850px;}
.y1f1{bottom:11.306700px;}
.y114{bottom:11.398350px;}
.y10f{bottom:11.593200px;}
.y253{bottom:12.202200px;}
.yb0{bottom:12.348450px;}
.y15d{bottom:12.354000px;}
.y1c4{bottom:12.398400px;}
.y127{bottom:12.648600px;}
.yfa{bottom:12.889950px;}
.y293{bottom:17.910000px;}
.y28b{bottom:18.000000px;}
.y1eb{bottom:25.343400px;}
.y1f0{bottom:26.154750px;}
.y21b{bottom:26.535300px;}
.y113{bottom:26.833050px;}
.y252{bottom:26.936400px;}
.y1c3{bottom:27.028200px;}
.y15c{bottom:27.199500px;}
.yaf{bottom:27.205800px;}
.y10e{bottom:27.226050px;}
.y126{bottom:28.028700px;}
.yf9{bottom:28.499400px;}
.y29a{bottom:32.940000px;}
.y2c8{bottom:33.030000px;}
.y1ea{bottom:39.930750px;}
.y1ef{bottom:41.002800px;}
.y1c2{bottom:41.658000px;}
.y251{bottom:41.670300px;}
.y21a{bottom:41.766750px;}
.y15b{bottom:42.045000px;}
.yae{bottom:42.063000px;}
.y112{bottom:42.267750px;}
.y10d{bottom:42.858900px;}
.y125{bottom:43.408500px;}
.yf8{bottom:44.108850px;}
.y27c{bottom:47.970000px;}
.y1{bottom:50.670000px;}
.y1e9{bottom:54.518100px;}
.y1ee{bottom:55.850850px;}
.y1c1{bottom:56.287650px;}
.y250{bottom:56.404350px;}
.y6b{bottom:56.610000px;}
.y15a{bottom:56.890500px;}
.yad{bottom:56.920500px;}
.y219{bottom:56.998350px;}
.y111{bottom:57.702300px;}
.y10c{bottom:58.491600px;}
.y124{bottom:58.788450px;}
.yf7{bottom:59.718300px;}
.y1e8{bottom:69.105450px;}
.y1c0{bottom:70.917450px;}
.y24f{bottom:71.138400px;}
.yac{bottom:71.777700px;}
.yf6{bottom:75.327750px;}
.y1bf{bottom:85.547100px;}
.y1ed{bottom:90.138000px;}
.y122{bottom:91.944000px;}
.y6a{bottom:91.971000px;}
.y185{bottom:92.335500px;}
.y1e6{bottom:92.578500px;}
.y1b{bottom:92.610000px;}
.yd1{bottom:92.848500px;}
.y158{bottom:93.483000px;}
.yf5{bottom:94.476000px;}
.y110{bottom:97.209000px;}
.y10a{bottom:98.883000px;}
.y218{bottom:100.110000px;}
.y1be{bottom:100.176900px;}
.y346{bottom:100.350000px;}
.yaa{bottom:100.408500px;}
.yf4{bottom:100.413000px;}
.y14f{bottom:100.962000px;}
.y217{bottom:101.493000px;}
.y34c{bottom:102.870000px;}
.y69{bottom:108.441000px;}
.y121{bottom:108.508500px;}
.y184{bottom:108.805500px;}
.y1e5{bottom:109.048500px;}
.y19c{bottom:109.345500px;}
.yd0{bottom:109.413000px;}
.y1bc{bottom:109.426500px;}
.y157{bottom:109.953000px;}
.y109{bottom:115.353000px;}
.y42{bottom:115.380000px;}
.ya9{bottom:116.878500px;}
.yf3{bottom:116.883000px;}
.y14e{bottom:117.432000px;}
.y345{bottom:117.945900px;}
.y216{bottom:117.963000px;}
.y311{bottom:122.473800px;}
.y11f{bottom:122.913000px;}
.y68{bottom:124.911000px;}
.y183{bottom:125.275500px;}
.y1e4{bottom:125.518500px;}
.y19b{bottom:125.815500px;}
.ycf{bottom:125.883000px;}
.y1bb{bottom:125.896500px;}
.y344{bottom:129.918510px;}
.y108{bottom:131.823000px;}
.y238{bottom:131.836500px;}
.ya8{bottom:133.348500px;}
.yf2{bottom:133.353000px;}
.y14d{bottom:133.902000px;}
.y215{bottom:134.433000px;}
.y310{bottom:134.446410px;}
.y81{bottom:136.440000px;}
.y11e{bottom:139.383000px;}
.y41{bottom:139.489380px;}
.y67{bottom:141.381000px;}
.y182{bottom:141.745500px;}
.y343{bottom:141.975360px;}
.y1e3{bottom:141.988500px;}
.y19a{bottom:142.285500px;}
.yce{bottom:142.353000px;}
.y1ba{bottom:142.366500px;}
.y1a{bottom:144.990000px;}
.y2b1{bottom:146.160000px;}
.y30f{bottom:146.503260px;}
.y107{bottom:148.293000px;}
.y237{bottom:148.306500px;}
.y156{bottom:149.818500px;}
.yf1{bottom:149.823000px;}
.y14c{bottom:150.372000px;}
.y214{bottom:150.997500px;}
.y342{bottom:153.947970px;}
.ya7{bottom:155.853000px;}
.y2b2{bottom:156.690000px;}
.y66{bottom:157.945500px;}
.y181{bottom:158.215500px;}
.y30e{bottom:158.475870px;}
.y1e2{bottom:158.553000px;}
.ycd{bottom:158.823000px;}
.y199{bottom:158.850000px;}
.y40{bottom:164.417040px;}
.y106{bottom:164.763000px;}
.y1b9{bottom:164.776500px;}
.y341{bottom:165.920580px;}
.y155{bottom:166.288500px;}
.yf0{bottom:166.293000px;}
.y213{bottom:167.467500px;}
.ya6{bottom:172.323000px;}
.y14b{bottom:172.876500px;}
.y65{bottom:174.415500px;}
.y180{bottom:174.685500px;}
.y30d{bottom:174.944790px;}
.y1e1{bottom:175.023000px;}
.y198{bottom:175.320000px;}
.y19{bottom:176.490000px;}
.y340{bottom:177.977430px;}
.y2af{bottom:181.170000px;}
.ycc{bottom:181.327500px;}
.y1b8{bottom:181.341000px;}
.y154{bottom:182.758500px;}
.y212{bottom:183.937500px;}
.y2dc{bottom:184.230000px;}
.y30c{bottom:187.001640px;}
.ya5{bottom:188.793000px;}
.yef{bottom:188.797500px;}
.y3f{bottom:189.259380px;}
.y14a{bottom:189.346500px;}
.y33f{bottom:189.950040px;}
.y1e0{bottom:191.493000px;}
.y197{bottom:191.790000px;}
.y11d{bottom:194.827500px;}
.y64{bottom:196.825500px;}
.y17f{bottom:197.190000px;}
.ycb{bottom:197.797500px;}
.y1b7{bottom:197.811000px;}
.y2d9{bottom:198.360000px;}
.y30b{bottom:198.974250px;}
.y2b0{bottom:199.080000px;}
.y153{bottom:199.228500px;}
.y211{bottom:200.407500px;}
.ya4{bottom:205.263000px;}
.yee{bottom:205.267500px;}
.y149{bottom:205.816500px;}
.y33e{bottom:206.418960px;}
.y1df{bottom:207.963000px;}
.y18{bottom:210.483000px;}
.y30a{bottom:210.946860px;}
.y11c{bottom:211.297500px;}
.y196{bottom:212.755500px;}
.y63{bottom:213.390000px;}
.y17e{bottom:213.660000px;}
.y3e{bottom:214.187040px;}
.yca{bottom:214.267500px;}
.y1b6{bottom:214.281000px;}
.y2db{bottom:216.361440px;}
.y33d{bottom:218.475810px;}
.ya3{bottom:221.733000px;}
.yed{bottom:221.737500px;}
.y148{bottom:222.286500px;}
.y210{bottom:222.912000px;}
.y309{bottom:223.003710px;}
.y1de{bottom:224.433000px;}
.y24d{bottom:224.716500px;}
.y11b{bottom:227.767500px;}
.y195{bottom:229.225500px;}
.y62{bottom:229.860000px;}
.y17d{bottom:230.130000px;}
.y33c{bottom:230.448420px;}
.yc9{bottom:230.737500px;}
.y1b5{bottom:230.751000px;}
.y2ae{bottom:231.120000px;}
.y2da{bottom:231.300000px;}
.y3d{bottom:231.563880px;}
.y308{bottom:234.976320px;}
.ya2{bottom:238.203000px;}
.yec{bottom:238.207500px;}
.y147{bottom:238.756500px;}
.y20f{bottom:239.382000px;}
.y17{bottom:240.277500px;}
.y1dd{bottom:240.903000px;}
.y24c{bottom:241.186500px;}
.y33b{bottom:242.421030px;}
.y11a{bottom:244.237500px;}
.y61{bottom:246.330000px;}
.y17c{bottom:246.600000px;}
.y307{bottom:246.948930px;}
.yc8{bottom:247.207500px;}
.y1b4{bottom:247.221000px;}
.y194{bottom:253.161000px;}
.y105{bottom:253.242000px;}
.y33a{bottom:254.477880px;}
.ya1{bottom:254.673000px;}
.yeb{bottom:254.677500px;}
.y3c{bottom:254.970000px;}
.y146{bottom:255.226500px;}
.y20e{bottom:255.852000px;}
.y24b{bottom:257.656500px;}
.y306{bottom:259.005780px;}
.y119{bottom:260.707500px;}
.y2d3{bottom:261.270000px;}
.y2a4{bottom:261.540000px;}
.y17b{bottom:263.070000px;}
.y2d8{bottom:263.340000px;}
.y1dc{bottom:263.407500px;}
.yc7{bottom:263.677500px;}
.y1b3{bottom:263.691000px;}
.y2ad{bottom:266.040000px;}
.y339{bottom:266.450490px;}
.y104{bottom:269.712000px;}
.y60{bottom:269.725500px;}
.y16{bottom:270.072000px;}
.ya0{bottom:271.143000px;}
.yea{bottom:271.147500px;}
.y2a8{bottom:271.432800px;}
.y145{bottom:271.696500px;}
.y20d{bottom:272.322000px;}
.y24a{bottom:274.221000px;}
.y305{bottom:275.474700px;}
.y2a3{bottom:276.480000px;}
.y118{bottom:277.177500px;}
.y3b{bottom:278.167500px;}
.y17a{bottom:279.540000px;}
.y1db{bottom:279.877500px;}
.yc6{bottom:280.147500px;}
.y1b2{bottom:280.161000px;}
.y338{bottom:282.919410px;}
.y2d7{bottom:283.230000px;}
.y236{bottom:284.656500px;}
.y103{bottom:286.182000px;}
.y5f{bottom:286.195500px;}
.y2d5{bottom:286.195680px;}
.y2a7{bottom:286.467120px;}
.y304{bottom:287.447310px;}
.y9f{bottom:287.707500px;}
.ye9{bottom:287.712000px;}
.y144{bottom:288.166500px;}
.y20c{bottom:288.792000px;}
.y249{bottom:290.691000px;}
.y2a2{bottom:291.510000px;}
.y117{bottom:293.647500px;}
.y337{bottom:294.976260px;}
.y179{bottom:296.104500px;}
.y1da{bottom:296.347500px;}
.yc5{bottom:296.617500px;}
.y1b1{bottom:296.631000px;}
.y303{bottom:299.504160px;}
.y15{bottom:299.866500px;}
.y3a{bottom:300.672000px;}
.y2ac{bottom:300.960000px;}
.y235{bottom:301.126500px;}
.y2d4{bottom:301.230000px;}
.y2a6{bottom:301.501440px;}
.y102{bottom:302.652000px;}
.y5e{bottom:302.665500px;}
.y2d6{bottom:303.210000px;}
.y152{bottom:304.177500px;}
.ye8{bottom:304.182000px;}
.y20b{bottom:305.262000px;}
.y336{bottom:306.948870px;}
.y248{bottom:307.161000px;}
.y9e{bottom:310.117500px;}
.y143{bottom:310.671000px;}
.y302{bottom:311.476770px;}
.y178{bottom:312.574500px;}
.y1d9{bottom:312.817500px;}
.yc4{bottom:313.087500px;}
.y1b0{bottom:313.101000px;}
.y2a5{bottom:316.440000px;}
.y335{bottom:318.921480px;}
.y101{bottom:319.122000px;}
.y5d{bottom:319.135500px;}
.y151{bottom:320.647500px;}
.ye7{bottom:320.652000px;}
.y20a{bottom:321.732000px;}
.y39{bottom:323.176500px;}
.y301{bottom:323.449380px;}
.y193{bottom:323.631000px;}
.y9d{bottom:326.587500px;}
.y142{bottom:327.141000px;}
.y1d8{bottom:329.287500px;}
.yc3{bottom:329.652000px;}
.y14{bottom:329.661000px;}
.y1af{bottom:329.665500px;}
.y334{bottom:330.978330px;}
.y177{bottom:334.984500px;}
.y300{bottom:335.506230px;}
.y100{bottom:335.592000px;}
.y2aa{bottom:335.970000px;}
.y150{bottom:337.117500px;}
.ye6{bottom:337.122000px;}
.y2d2{bottom:338.130000px;}
.y209{bottom:338.202000px;}
.y192{bottom:340.101000px;}
.y5c{bottom:342.531000px;}
.y333{bottom:342.950940px;}
.y9c{bottom:343.152000px;}
.y141{bottom:343.611000px;}
.y38{bottom:345.586500px;}
.y1d7{bottom:345.757500px;}
.yc2{bottom:346.122000px;}
.y1ae{bottom:346.135500px;}
.y176{bottom:351.549000px;}
.y2ff{bottom:351.975150px;}
.yff{bottom:352.062000px;}
.y2ab{bottom:353.880000px;}
.y208{bottom:354.766500px;}
.y191{bottom:356.571000px;}
.y5b{bottom:359.001000px;}
.y332{bottom:359.419860px;}
.y13{bottom:359.455500px;}
.y9b{bottom:359.622000px;}
.ye5{bottom:359.626500px;}
.y140{bottom:360.081000px;}
.y1d6{bottom:362.322000px;}
.yc1{bottom:362.592000px;}
.y1ad{bottom:362.605500px;}
.y2fe{bottom:363.947760px;}
.y26e{bottom:365.202000px;}
.y2ce{bottom:366.117120px;}
.y175{bottom:368.019000px;}
.y37{bottom:368.091000px;}
.yfe{bottom:368.532000px;}
.y207{bottom:371.236500px;}
.y331{bottom:371.476710px;}
.y190{bottom:373.041000px;}
.y2cf{bottom:373.140000px;}
.y2fd{bottom:376.004610px;}
.y9a{bottom:376.092000px;}
.ye4{bottom:376.096500px;}
.y13f{bottom:376.645500px;}
.y247{bottom:377.536500px;}
.y1d5{bottom:378.792000px;}
.yc0{bottom:379.062000px;}
.y2cd{bottom:381.055680px;}
.y26d{bottom:381.766500px;}
.y120{bottom:382.032000px;}
.y80{bottom:382.050000px;}
.y5a{bottom:382.315500px;}
.y330{bottom:383.449320px;}
.y174{bottom:384.489000px;}
.y2a9{bottom:385.920000px;}
.y206{bottom:387.706500px;}
.y12{bottom:389.250000px;}
.y234{bottom:389.605500px;}
.y36{bottom:390.595500px;}
.y2d1{bottom:391.045680px;}
.y2fc{bottom:392.473530px;}
.y116{bottom:392.562000px;}
.ye3{bottom:392.566500px;}
.y1ac{bottom:392.575500px;}
.y13e{bottom:393.115500px;}
.y246{bottom:394.006500px;}
.y1d4{bottom:395.262000px;}
.y32f{bottom:395.421930px;}
.y2cc{bottom:396.090000px;}
.y18f{bottom:397.071000px;}
.y34b{bottom:397.800000px;}
.y26c{bottom:398.236500px;}
.y99{bottom:398.596500px;}
.y59{bottom:398.880000px;}
.y173{bottom:400.959000px;}
.y2fb{bottom:404.446140px;}
.y233{bottom:406.075500px;}
.y2d0{bottom:406.080000px;}
.y32e{bottom:407.478780px;}
.ybf{bottom:409.032000px;}
.ye2{bottom:409.036500px;}
.y1ab{bottom:409.045500px;}
.y13d{bottom:409.585500px;}
.y205{bottom:410.211000px;}
.y351{bottom:411.660000px;}
.y35{bottom:413.100000px;}
.y18e{bottom:413.541000px;}
.y26b{bottom:414.706500px;}
.y98{bottom:415.066500px;}
.y58{bottom:415.350000px;}
.y2fa{bottom:416.502990px;}
.y245{bottom:416.511000px;}
.y172{bottom:417.429000px;}
.y1d3{bottom:417.672000px;}
.y11{bottom:419.044500px;}
.y32d{bottom:419.451390px;}
.y29f{bottom:420.840000px;}
.y232{bottom:422.545500px;}
.y7f{bottom:424.795500px;}
.ybe{bottom:425.502000px;}
.ye1{bottom:425.506500px;}
.y1aa{bottom:425.515500px;}
.y13c{bottom:426.055500px;}
.y204{bottom:426.681000px;}
.y2f9{bottom:428.475600px;}
.y18d{bottom:430.011000px;}
.y350{bottom:430.470000px;}
.y26a{bottom:431.176500px;}
.y29e{bottom:431.271360px;}
.y97{bottom:431.536500px;}
.y57{bottom:431.820000px;}
.y244{bottom:432.981000px;}
.y1d2{bottom:434.236500px;}
.y34{bottom:435.510000px;}
.y32c{bottom:435.920310px;}
.y2ca{bottom:438.030000px;}
.y2a1{bottom:438.841440px;}
.y231{bottom:439.015500px;}
.y2f8{bottom:440.448210px;}
.y7e{bottom:441.265500px;}
.y298{bottom:441.270000px;}
.ybd{bottom:441.972000px;}
.ye0{bottom:441.976500px;}
.y1a9{bottom:441.985500px;}
.y13b{bottom:442.525500px;}
.y171{bottom:442.903500px;}
.y203{bottom:443.151000px;}
.y34f{bottom:443.430000px;}
.y29d{bottom:446.305680px;}
.y18c{bottom:446.481000px;}
.y269{bottom:447.646500px;}
.y32b{bottom:447.977160px;}
.y96{bottom:448.006500px;}
.y56{bottom:448.290000px;}
.y10{bottom:448.744500px;}
.y243{bottom:449.451000px;}
.y1d1{bottom:450.706500px;}
.y2f7{bottom:452.505060px;}
.y2a0{bottom:453.780000px;}
.y230{bottom:455.485500px;}
.y2cb{bottom:456.030000px;}
.y297{bottom:456.300000px;}
.y33{bottom:457.472700px;}
.y7d{bottom:457.735500px;}
.ybc{bottom:458.442000px;}
.ydf{bottom:458.446500px;}
.y1a8{bottom:458.455500px;}
.y13a{bottom:458.995500px;}
.y170{bottom:459.373500px;}
.y202{bottom:459.621000px;}
.y29c{bottom:461.340000px;}
.y34e{bottom:462.150000px;}
.y18b{bottom:462.951000px;}
.y268{bottom:464.116500px;}
.y32a{bottom:464.446080px;}
.y95{bottom:464.476500px;}
.y55{bottom:464.760000px;}
.y242{bottom:465.921000px;}
.y1d0{bottom:467.176500px;}
.y2f6{bottom:468.973980px;}
.y296{bottom:471.240000px;}
.y22f{bottom:471.955500px;}
.y7c{bottom:474.300000px;}
.ybb{bottom:474.912000px;}
.yde{bottom:474.916500px;}
.y1a7{bottom:474.925500px;}
.y139{bottom:475.465500px;}
.y201{bottom:476.091000px;}
.y329{bottom:476.418690px;}
.y16f{bottom:479.799000px;}
.y32{bottom:479.968740px;}
.y94{bottom:480.946500px;}
.y2f5{bottom:480.946590px;}
.y34d{bottom:480.960000px;}
.y54{bottom:481.230000px;}
.y241{bottom:482.391000px;}
.y1cf{bottom:483.646500px;}
.y18a{bottom:483.916500px;}
.yf{bottom:484.560000px;}
.y299{bottom:485.820000px;}
.y295{bottom:486.270000px;}
.y267{bottom:486.621000px;}
.y2c7{bottom:487.980000px;}
.y22e{bottom:488.425500px;}
.y328{bottom:488.475540px;}
.y7b{bottom:490.770000px;}
.y2be{bottom:490.950000px;}
.yba{bottom:491.382000px;}
.ydd{bottom:491.386500px;}
.y1a6{bottom:491.395500px;}
.y200{bottom:492.561000px;}
.y2f4{bottom:493.003440px;}
.y16e{bottom:496.269000px;}
.y31{bottom:496.535040px;}
.y93{bottom:497.416500px;}
.y138{bottom:497.970000px;}
.y240{bottom:498.955500px;}
.y1ce{bottom:500.116500px;}
.y189{bottom:500.386500px;}
.y327{bottom:500.448150px;}
.y294{bottom:501.300000px;}
.y266{bottom:503.091000px;}
.y29b{bottom:503.730000px;}
.y53{bottom:503.734500px;}
.y22d{bottom:504.895500px;}
.y2f3{bottom:504.976050px;}
.y2c9{bottom:505.980000px;}
.y7a{bottom:507.240000px;}
.yb9{bottom:507.946500px;}
.ydc{bottom:507.951000px;}
.y1a5{bottom:507.960000px;}
.y1ff{bottom:509.031000px;}
.y326{bottom:512.420760px;}
.y16d{bottom:512.739000px;}
.y30{bottom:513.001800px;}
.y92{bottom:513.886500px;}
.y137{bottom:514.440000px;}
.ye{bottom:516.060000px;}
.y1cd{bottom:516.586500px;}
.y188{bottom:516.856500px;}
.y2f2{bottom:516.948660px;}
.y265{bottom:519.561000px;}
.y23f{bottom:519.921000px;}
.y52{bottom:520.204500px;}
.y22c{bottom:521.365500px;}
.y79{bottom:523.710000px;}
.yb8{bottom:524.416500px;}
.ydb{bottom:524.421000px;}
.y1a4{bottom:524.430000px;}
.y325{bottom:524.477610px;}
.y1fe{bottom:525.501000px;}
.y2f1{bottom:529.005510px;}
.y2f{bottom:529.468560px;}
.y91{bottom:530.356500px;}
.y136{bottom:530.910000px;}
.y1cc{bottom:533.056500px;}
.y2c4{bottom:533.425680px;}
.y292{bottom:535.770000px;}
.y264{bottom:536.031000px;}
.y16c{bottom:536.134500px;}
.y51{bottom:536.674500px;}
.y2c6{bottom:537.930000px;}
.y78{bottom:540.180000px;}
.yb7{bottom:540.886500px;}
.yda{bottom:540.891000px;}
.y1a3{bottom:540.900000px;}
.y324{bottom:540.946530px;}
.y1fd{bottom:541.971000px;}
.y22b{bottom:542.331000px;}
.y2f0{bottom:545.474430px;}
.y2e{bottom:546.034860px;}
.yfd{bottom:546.826500px;}
.y2c3{bottom:548.460000px;}
.y1cb{bottom:549.526500px;}
.yd{bottom:550.075500px;}
.y263{bottom:552.501000px;}
.y16b{bottom:552.604500px;}
.y90{bottom:552.861000px;}
.y323{bottom:552.919140px;}
.y50{bottom:553.144500px;}
.y77{bottom:556.650000px;}
.y135{bottom:556.830000px;}
.yb6{bottom:557.356500px;}
.y1a2{bottom:557.370000px;}
.y2ef{bottom:557.447040px;}
.y1fc{bottom:558.441000px;}
.y22a{bottom:558.895500px;}
.y28e{bottom:561.147120px;}
.y2d{bottom:562.501620px;}
.yfc{bottom:563.391000px;}
.yd9{bottom:563.395500px;}
.y322{bottom:564.975990px;}
.y262{bottom:568.971000px;}
.y16a{bottom:569.074500px;}
.y8f{bottom:569.331000px;}
.y2ee{bottom:569.503890px;}
.y4f{bottom:569.614500px;}
.y291{bottom:570.690000px;}
.y2c5{bottom:572.940000px;}
.y76{bottom:573.120000px;}
.yb5{bottom:573.826500px;}
.y1a1{bottom:573.840000px;}
.y1ca{bottom:575.001000px;}
.y1fb{bottom:575.005500px;}
.y23e{bottom:575.365500px;}
.y28d{bottom:576.085680px;}
.y2c{bottom:578.968380px;}
.yfb{bottom:579.861000px;}
.yd8{bottom:579.865500px;}
.yc{bottom:579.870000px;}
.y229{bottom:581.305500px;}
.y321{bottom:581.444910px;}
.y2ed{bottom:581.476500px;}
.y261{bottom:585.441000px;}
.y169{bottom:585.544500px;}
.y8e{bottom:585.801000px;}
.yb4{bottom:590.296500px;}
.y1a0{bottom:590.310000px;}
.y290{bottom:590.670000px;}
.y28c{bottom:591.120000px;}
.y1fa{bottom:591.475500px;}
.y1c9{bottom:591.565500px;}
.y23d{bottom:591.835500px;}
.y4e{bottom:592.119000px;}
.y320{bottom:593.417520px;}
.y2b{bottom:595.534680px;}
.y115{bottom:596.331000px;}
.yd7{bottom:596.335500px;}
.y228{bottom:597.775500px;}
.y2ec{bottom:597.945420px;}
.y75{bottom:599.123520px;}
.y134{bottom:601.735500px;}
.y260{bottom:602.005500px;}
.y168{bottom:602.014500px;}
.y8d{bottom:602.271000px;}
.y31f{bottom:605.474370px;}
.y187{bottom:606.766500px;}
.y19f{bottom:606.780000px;}
.y2bf{bottom:607.860000px;}
.y1c8{bottom:608.035500px;}
.y23c{bottom:608.305500px;}
.y4d{bottom:608.589000px;}
.y2eb{bottom:610.002270px;}
.y28f{bottom:610.560000px;}
.y27a{bottom:611.355600px;}
.yb3{bottom:612.801000px;}
.yd6{bottom:612.805500px;}
.y1f9{bottom:613.885500px;}
.y227{bottom:614.340000px;}
.y2c2{bottom:615.870000px;}
.yb{bottom:615.879540px;}
.y74{bottom:617.400000px;}
.y31e{bottom:617.446980px;}
.y2a{bottom:618.030720px;}
.y25f{bottom:618.475500px;}
.y167{bottom:618.484500px;}
.y8c{bottom:618.835500px;}
.y2ea{bottom:621.974880px;}
.y1d{bottom:622.170000px;}
.y133{bottom:622.701000px;}
.y186{bottom:623.236500px;}
.y23b{bottom:624.775500px;}
.y4c{bottom:625.059000px;}
.y2c0{bottom:625.860000px;}
.y279{bottom:626.389920px;}
.y19e{bottom:627.745500px;}
.y1c7{bottom:628.380000px;}
.yb2{bottom:629.271000px;}
.yd5{bottom:629.275500px;}
.y31d{bottom:629.419590px;}
.y1f8{bottom:630.450000px;}
.y28a{bottom:630.540000px;}
.y226{bottom:630.810000px;}
.y2e9{bottom:633.947490px;}
.y29{bottom:634.497480px;}
.y25e{bottom:634.945500px;}
.y166{bottom:634.954500px;}
.y8b{bottom:635.305500px;}
.y2c1{bottom:637.830000px;}
.y132{bottom:639.171000px;}
.y23a{bottom:641.245500px;}
.y278{bottom:641.328480px;}
.y284{bottom:641.334240px;}
.y31c{bottom:641.476440px;}
.y4b{bottom:641.529000px;}
.y19d{bottom:644.215500px;}
.y1c6{bottom:644.850000px;}
.yb1{bottom:645.741000px;}
.y2e8{bottom:646.004340px;}
.y1f7{bottom:646.920000px;}
.y225{bottom:647.280000px;}
.y273{bottom:648.900000px;}
.y28{bottom:650.964240px;}
.y165{bottom:651.424500px;}
.y8a{bottom:651.775500px;}
.yd4{bottom:651.780000px;}
.y31b{bottom:653.449050px;}
.ya{bottom:655.380000px;}
.y131{bottom:655.641000px;}
.y283{bottom:656.272800px;}
.y277{bottom:656.362800px;}
.y25d{bottom:657.450000px;}
.y239{bottom:657.715500px;}
.y2bb{bottom:657.810000px;}
.y2e7{bottom:657.976950px;}
.y4a{bottom:657.999000px;}
.y1c5{bottom:661.320000px;}
.y73{bottom:662.211000px;}
.y1f6{bottom:663.390000px;}
.y224{bottom:663.750000px;}
.y272{bottom:663.840000px;}
.y31a{bottom:665.421660px;}
.y289{bottom:665.460000px;}
.y27{bottom:667.530540px;}
.y164{bottom:667.894500px;}
.y89{bottom:668.245500px;}
.yd3{bottom:668.250000px;}
.y2e6{bottom:669.949560px;}
.y282{bottom:671.307120px;}
.y276{bottom:671.397120px;}
.y25c{bottom:673.920000px;}
.y49{bottom:674.563500px;}
.y2bd{bottom:675.811440px;}
.y130{bottom:675.985500px;}
.y72{bottom:678.681000px;}
.y1f5{bottom:679.860000px;}
.y223{bottom:680.220000px;}
.y319{bottom:681.985350px;}
.y2e5{bottom:682.006410px;}
.y26{bottom:683.997300px;}
.y88{bottom:684.715500px;}
.yd2{bottom:684.720000px;}
.y287{bottom:685.620000px;}
.y275{bottom:686.335680px;}
.y281{bottom:686.341440px;}
.y9{bottom:688.590000px;}
.y25b{bottom:690.390000px;}
.y2bc{bottom:690.750000px;}
.y12f{bottom:692.550000px;}
.y163{bottom:693.450000px;}
.y318{bottom:693.957960px;}
.y2e4{bottom:693.979020px;}
.y71{bottom:695.151000px;}
.y1f4{bottom:696.330000px;}
.y222{bottom:696.690000px;}
.y48{bottom:696.973500px;}
.y25{bottom:700.464060px;}
.y87{bottom:701.185500px;}
.y280{bottom:701.280000px;}
.y274{bottom:701.370000px;}
.y1bd{bottom:704.598000px;}
.y285{bottom:705.870000px;}
.y317{bottom:705.930570px;}
.y2e3{bottom:705.951630px;}
.y8{bottom:706.410000px;}
.y25a{bottom:706.860000px;}
.y12e{bottom:709.020000px;}
.y162{bottom:709.920000px;}
.y2b8{bottom:710.730000px;}
.y70{bottom:711.715500px;}
.y1f3{bottom:712.800000px;}
.y221{bottom:713.160000px;}
.y24{bottom:717.030360px;}
.y86{bottom:717.655500px;}
.y316{bottom:717.987420px;}
.y47{bottom:720.369000px;}
.y2b5{bottom:720.720000px;}
.y2e2{bottom:722.515320px;}
.y2ba{bottom:722.790000px;}
.y259{bottom:723.330000px;}
.y7{bottom:724.135500px;}
.y27b{bottom:726.120000px;}
.y161{bottom:726.390000px;}
.y6f{bottom:728.185500px;}
.y12d{bottom:729.364500px;}
.y220{bottom:729.630000px;}
.y315{bottom:729.960030px;}
.y23{bottom:733.497120px;}
.y85{bottom:734.125500px;}
.y1e7{bottom:734.295000px;}
.y2e1{bottom:734.487930px;}
.y34a{bottom:734.591070px;}
.y2b4{bottom:735.660000px;}
.y24e{bottom:736.575000px;}
.y46{bottom:736.839000px;}
.yab{bottom:737.475000px;}
.y1f2{bottom:738.720000px;}
.y258{bottom:739.800000px;}
.y314{bottom:741.932640px;}
.y6{bottom:741.955500px;}
.y2b9{bottom:742.680000px;}
.y160{bottom:742.860000px;}
.y27e{bottom:744.025680px;}
.y6e{bottom:744.655500px;}
.y12c{bottom:745.834500px;}
.y21f{bottom:746.100000px;}
.y2e0{bottom:746.460540px;}
.y123{bottom:747.367500px;}
.y10b{bottom:748.395000px;}
.y22{bottom:749.963880px;}
.y159{bottom:750.067500px;}
.y84{bottom:750.595500px;}
.y257{bottom:756.270000px;}
.y313{bottom:758.496330px;}
.y2df{bottom:758.517390px;}
.y27d{bottom:759.060000px;}
.y5{bottom:759.681000px;}
.y45{bottom:760.234500px;}
.y6d{bottom:761.125500px;}
.y12b{bottom:762.304500px;}
.y349{bottom:762.397380px;}
.y21e{bottom:762.664500px;}
.y15f{bottom:763.204500px;}
.y21{bottom:766.530180px;}
.y83{bottom:767.160000px;}
.y312{bottom:770.468940px;}
.y2de{bottom:770.490000px;}
.y256{bottom:772.740000px;}
.y44{bottom:776.704500px;}
.y4{bottom:777.501000px;}
.y6c{bottom:777.595500px;}
.y2b6{bottom:777.690000px;}
.y12a{bottom:778.774500px;}
.y21d{bottom:779.134500px;}
.y15e{bottom:779.674500px;}
.y20{bottom:782.996940px;}
.y82{bottom:783.630000px;}
.y2b7{bottom:788.130000px;}
.y255{bottom:789.210000px;}
.y348{bottom:790.203690px;}
.y270{bottom:790.470000px;}
.y2dd{bottom:792.540000px;}
.y3{bottom:794.065500px;}
.y129{bottom:799.200000px;}
.y1f{bottom:799.463700px;}
.y43{bottom:800.100000px;}
.y2b3{bottom:814.950000px;}
.y254{bottom:815.130000px;}
.y128{bottom:815.670000px;}
.y1e{bottom:816.030000px;}
.y2{bottom:816.570000px;}
.y26f{bottom:817.290000px;}
.y347{bottom:818.010000px;}
.y1c{bottom:845.820000px;}
.h36{height:14.938500px;}
.h2f{height:14.940000px;}
.h2e{height:15.030000px;}
.h30{height:15.031500px;}
.h2c{height:15.210000px;}
.h2b{height:15.300000px;}
.h29{height:18.001500px;}
.h39{height:28.073145px;}
.h2d{height:29.970000px;}
.h34{height:30.058500px;}
.h33{height:30.060000px;}
.hb{height:31.912207px;}
.h10{height:34.777793px;}
.h38{height:35.991211px;}
.h7{height:39.533730px;}
.h8{height:39.674004px;}
.h22{height:40.535099px;}
.h20{height:40.652928px;}
.h28{height:40.942777px;}
.h1d{height:41.252512px;}
.h24{height:41.259473px;}
.h12{height:41.285325px;}
.hf{height:41.859492px;}
.h26{height:42.324904px;}
.h1b{height:42.737553px;}
.h19{height:42.889686px;}
.h15{height:43.375419px;}
.h17{height:43.440051px;}
.h1e{height:44.217773px;}
.h2{height:44.586914px;}
.h13{height:44.604914px;}
.h3{height:44.745117px;}
.h31{height:45.000000px;}
.h9{height:46.964883px;}
.ha{height:47.131523px;}
.he{height:49.816230px;}
.hc{height:56.320312px;}
.h6{height:59.660156px;}
.h2a{height:59.940000px;}
.h35{height:60.028500px;}
.h32{height:60.030000px;}
.hd{height:62.703281px;}
.h23{height:73.791000px;}
.h1c{height:74.826000px;}
.h25{height:76.773000px;}
.h1a{height:77.521500px;}
.h18{height:78.577500px;}
.h16{height:79.266000px;}
.h21{height:87.228000px;}
.h27{height:89.445000px;}
.h11{height:90.195000px;}
.h14{height:94.761000px;}
.h4{height:99.334160px;}
.h37{height:115.648500px;}
.h5{height:119.282153px;}
.h1f{height:119.698500px;}
.h0{height:893.070000px;}
.h1{height:893.250000px;}
.wd{width:73.350000px;}
.we{width:104.760000px;}
.wc{width:171.748500px;}
.w10{width:182.430000px;}
.w3{width:187.492500px;}
.wb{width:206.143500px;}
.w5{width:209.233500px;}
.w2{width:214.939500px;}
.w7{width:230.148000px;}
.w4{width:231.586500px;}
.wa{width:234.141000px;}
.w6{width:242.217000px;}
.w9{width:242.304000px;}
.w8{width:245.088000px;}
.wf{width:278.190000px;}
.w11{width:458.010000px;}
.w1{width:629.250000px;}
.w0{width:629.370000px;}
.x0{left:0.000000px;}
.x2d{left:2.070000px;}
.x36{left:3.960000px;}
.x3e{left:6.030000px;}
.xd{left:7.545750px;}
.xc{left:9.497100px;}
.x2c{left:10.632000px;}
.xe{left:12.048750px;}
.x1f{left:13.086300px;}
.x24{left:14.112450px;}
.x19{left:15.223800px;}
.x12{left:16.250250px;}
.x11{left:22.084800px;}
.x29{left:23.110800px;}
.x41{left:25.380000px;}
.x1e{left:27.535500px;}
.x1b{left:29.700000px;}
.xb{left:31.111050px;}
.x3a{left:32.400000px;}
.x6{left:36.090000px;}
.x17{left:37.580250px;}
.x20{left:39.343500px;}
.x28{left:42.848550px;}
.x1a{left:53.266200px;}
.x25{left:55.625250px;}
.x2a{left:60.376950px;}
.x21{left:61.699050px;}
.x23{left:64.045950px;}
.x13{left:65.292150px;}
.x16{left:74.678250px;}
.xf{left:82.143900px;}
.x1{left:85.050000px;}
.x31{left:87.120000px;}
.x43{left:96.390000px;}
.x30{left:101.070000px;}
.x15{left:116.707500px;}
.x1d{left:119.031000px;}
.x18{left:120.906000px;}
.x7{left:127.624680px;}
.x1c{left:142.488000px;}
.x9{left:148.855500px;}
.x2e{left:160.650000px;}
.x39{left:164.430000px;}
.x3f{left:166.230000px;}
.x33{left:171.004410px;}
.x34{left:173.075220px;}
.x40{left:174.150000px;}
.x3c{left:177.300000px;}
.x32{left:182.340000px;}
.x35{left:184.063680px;}
.x3b{left:187.833600px;}
.x3d{left:191.045340px;}
.x2f{left:266.130000px;}
.x37{left:270.090000px;}
.x22{left:306.747000px;}
.x42{left:325.313010px;}
.xa{left:334.800000px;}
.x14{left:347.206500px;}
.x2b{left:348.454500px;}
.x38{left:361.890000px;}
.x10{left:364.657500px;}
.x27{left:371.623500px;}
.x4{left:379.440000px;}
.x26{left:381.060000px;}
.x3{left:413.005500px;}
.x2{left:434.070000px;}
.x5{left:446.310000px;}
.x8{left:586.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls51{letter-spacing:-0.779389pt;}
.ls7a{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.672000pt;}
.ls39{letter-spacing:-0.624000pt;}
.ls40{letter-spacing:-0.576000pt;}
.ls3b{letter-spacing:-0.528000pt;}
.ls97{letter-spacing:-0.449280pt;}
.ls3a{letter-spacing:-0.384000pt;}
.ls94{letter-spacing:-0.374400pt;}
.ls1a{letter-spacing:-0.336000pt;}
.ls92{letter-spacing:-0.299520pt;}
.ls4a{letter-spacing:-0.288000pt;}
.ls5e{letter-spacing:-0.265520pt;}
.ls98{letter-spacing:-0.262080pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls99{letter-spacing:-0.224640pt;}
.ls62{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.187200pt;}
.ls25{letter-spacing:-0.149760pt;}
.ls2{letter-spacing:-0.144000pt;}
.ls43{letter-spacing:-0.139800pt;}
.ls3e{letter-spacing:-0.139592pt;}
.ls45{letter-spacing:-0.138029pt;}
.ls7e{letter-spacing:-0.136211pt;}
.ls2e{letter-spacing:-0.132866pt;}
.ls75{letter-spacing:-0.132782pt;}
.ls5c{letter-spacing:-0.132760pt;}
.ls85{letter-spacing:-0.131763pt;}
.ls68{letter-spacing:-0.130830pt;}
.lsb{letter-spacing:-0.127680pt;}
.ls96{letter-spacing:-0.112320pt;}
.ls4{letter-spacing:-0.106560pt;}
.lsd{letter-spacing:-0.101120pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls42{letter-spacing:-0.093200pt;}
.ls3c{letter-spacing:-0.093061pt;}
.ls44{letter-spacing:-0.092019pt;}
.ls50{letter-spacing:-0.091693pt;}
.ls23{letter-spacing:-0.090880pt;}
.ls7c{letter-spacing:-0.090807pt;}
.ls2c{letter-spacing:-0.088577pt;}
.ls76{letter-spacing:-0.088522pt;}
.ls84{letter-spacing:-0.087842pt;}
.ls71{letter-spacing:-0.086967pt;}
.ls8a{letter-spacing:-0.085120pt;}
.ls93{letter-spacing:-0.074880pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.053440pt;}
.lsc{letter-spacing:-0.050560pt;}
.ls6{letter-spacing:-0.048000pt;}
.ls41{letter-spacing:-0.046600pt;}
.ls7b{letter-spacing:-0.045404pt;}
.ls2d{letter-spacing:-0.044289pt;}
.ls74{letter-spacing:-0.044261pt;}
.ls5d{letter-spacing:-0.044253pt;}
.ls66{letter-spacing:-0.043610pt;}
.ls70{letter-spacing:-0.043484pt;}
.ls91{letter-spacing:-0.037440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.000320pt;}
.ls59{letter-spacing:0.009600pt;}
.ls95{letter-spacing:0.037440pt;}
.ls9a{letter-spacing:0.041280pt;}
.ls55{letter-spacing:0.042560pt;}
.ls18{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.050560pt;}
.ls77{letter-spacing:0.053440pt;}
.ls8f{letter-spacing:0.056160pt;}
.ls9b{letter-spacing:0.070400pt;}
.ls8c{letter-spacing:0.074880pt;}
.ls8b{letter-spacing:0.085120pt;}
.ls8d{letter-spacing:0.086112pt;}
.ls69{letter-spacing:0.087220pt;}
.ls73{letter-spacing:0.088522pt;}
.ls16{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.101120pt;}
.ls3{letter-spacing:0.106560pt;}
.ls22{letter-spacing:0.106880pt;}
.ls26{letter-spacing:0.112320pt;}
.ls36{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.127680pt;}
.ls0{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.136192pt;}
.ls3f{letter-spacing:0.138029pt;}
.ls32{letter-spacing:0.144000pt;}
.ls8e{letter-spacing:0.149760pt;}
.lse{letter-spacing:0.151680pt;}
.ls6c{letter-spacing:0.158400pt;}
.ls90{letter-spacing:0.168480pt;}
.ls6f{letter-spacing:0.173935pt;}
.ls83{letter-spacing:0.175684pt;}
.ls72{letter-spacing:0.177043pt;}
.ls2f{letter-spacing:0.177154pt;}
.ls5a{letter-spacing:0.177600pt;}
.ls7d{letter-spacing:0.181615pt;}
.ls46{letter-spacing:0.184038pt;}
.ls20{letter-spacing:0.192000pt;}
.ls86{letter-spacing:0.213568pt;}
.ls67{letter-spacing:0.218051pt;}
.ls82{letter-spacing:0.219605pt;}
.ls4f{letter-spacing:0.229232pt;}
.ls3d{letter-spacing:0.232653pt;}
.ls10{letter-spacing:0.235200pt;}
.ls88{letter-spacing:0.249600pt;}
.ls87{letter-spacing:0.255360pt;}
.ls4c{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.429760pt;}
.ls34{letter-spacing:0.447680pt;}
.ls56{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.816000pt;}
.ls6d{letter-spacing:1.152000pt;}
.ls33{letter-spacing:1.204800pt;}
.ls48{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:1.790400pt;}
.ls81{letter-spacing:2.054400pt;}
.ls1b{letter-spacing:2.112000pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls14{letter-spacing:2.414400pt;}
.ls78{letter-spacing:2.966400pt;}
.ls37{letter-spacing:3.072000pt;}
.ls57{letter-spacing:3.360000pt;}
.ls80{letter-spacing:3.633600pt;}
.ls1c{letter-spacing:3.676800pt;}
.ls1d{letter-spacing:3.696000pt;}
.ls31{letter-spacing:4.032000pt;}
.ls6e{letter-spacing:4.622400pt;}
.ls13{letter-spacing:4.656000pt;}
.ls63{letter-spacing:4.992000pt;}
.ls54{letter-spacing:5.280000pt;}
.ls53{letter-spacing:5.356800pt;}
.ls64{letter-spacing:5.616000pt;}
.ls2a{letter-spacing:5.952000pt;}
.ls35{letter-spacing:6.240000pt;}
.ls47{letter-spacing:6.576000pt;}
.ls7f{letter-spacing:6.912000pt;}
.ls52{letter-spacing:7.200000pt;}
.ls28{letter-spacing:7.536000pt;}
.ls58{letter-spacing:7.872000pt;}
.ls30{letter-spacing:8.160000pt;}
.ls5f{letter-spacing:8.832000pt;}
.ls6a{letter-spacing:9.792000pt;}
.ls49{letter-spacing:10.080000pt;}
.ls12{letter-spacing:10.416000pt;}
.ls4d{letter-spacing:11.040000pt;}
.ls65{letter-spacing:11.712000pt;}
.ls4e{letter-spacing:17.376000pt;}
.ls61{letter-spacing:17.760000pt;}
.ls60{letter-spacing:18.096000pt;}
.ls79{letter-spacing:19.392000pt;}
.ls29{letter-spacing:26.304000pt;}
.ls11{letter-spacing:40.080000pt;}
.ls4b{letter-spacing:40.416000pt;}
.ls6b{letter-spacing:43.056000pt;}
.ls1e{letter-spacing:92.023680pt;}
.ls9{letter-spacing:99.502080pt;}
.ws0{word-spacing:-21.525120pt;}
.ws147{word-spacing:-10.955200pt;}
.ws161{word-spacing:-10.848320pt;}
.wsa{word-spacing:-10.415360pt;}
.ws9{word-spacing:-10.364800pt;}
.ws8{word-spacing:-10.263680pt;}
.ws7{word-spacing:-10.213120pt;}
.wsb{word-spacing:-10.162560pt;}
.ws8d{word-spacing:-9.888000pt;}
.ws23{word-spacing:-9.840000pt;}
.ws24{word-spacing:-9.792000pt;}
.ws1{word-spacing:-9.744000pt;}
.ws25{word-spacing:-9.696000pt;}
.ws21{word-spacing:-9.648000pt;}
.ws51{word-spacing:-9.600000pt;}
.ws117{word-spacing:-9.552000pt;}
.ws22{word-spacing:-9.504000pt;}
.wsbd{word-spacing:-9.477978pt;}
.wsfd{word-spacing:-9.456000pt;}
.wsbc{word-spacing:-9.413200pt;}
.ws6c{word-spacing:-9.408000pt;}
.wsa6{word-spacing:-9.360000pt;}
.wsa7{word-spacing:-9.352664pt;}
.wsbe{word-spacing:-9.339949pt;}
.wse0{word-spacing:-9.306819pt;}
.ws16a{word-spacing:-9.224320pt;}
.ws11f{word-spacing:-9.216000pt;}
.wse1{word-spacing:-9.215126pt;}
.wsbb{word-spacing:-9.168000pt;}
.ws169{word-spacing:-9.133440pt;}
.wsa5{word-spacing:-9.120000pt;}
.ws130{word-spacing:-9.073464pt;}
.wsa4{word-spacing:-9.072000pt;}
.ws131{word-spacing:-8.984942pt;}
.ws6e{word-spacing:-8.946284pt;}
.ws6f{word-spacing:-8.901995pt;}
.ws15a{word-spacing:-8.784213pt;}
.ws16b{word-spacing:-8.767360pt;}
.ws16d{word-spacing:-8.724800pt;}
.ws16e{word-spacing:-8.639680pt;}
.ws16c{word-spacing:-8.554560pt;}
.ws6{word-spacing:-8.512000pt;}
.ws183{word-spacing:-7.768800pt;}
.ws177{word-spacing:-7.750080pt;}
.ws178{word-spacing:-7.712640pt;}
.ws181{word-spacing:-7.675200pt;}
.ws17d{word-spacing:-7.637760pt;}
.ws17b{word-spacing:-7.600320pt;}
.ws179{word-spacing:-7.562880pt;}
.ws17c{word-spacing:-7.525440pt;}
.ws17e{word-spacing:-7.488000pt;}
.ws53{word-spacing:-7.450560pt;}
.ws52{word-spacing:-7.413120pt;}
.ws182{word-spacing:-7.375680pt;}
.ws17f{word-spacing:-7.338240pt;}
.ws184{word-spacing:-7.300800pt;}
.ws17a{word-spacing:-7.225920pt;}
.ws180{word-spacing:-7.151040pt;}
.ws109{word-spacing:-2.496000pt;}
.ws14c{word-spacing:-2.448000pt;}
.ws10a{word-spacing:-2.400000pt;}
.wsb8{word-spacing:-2.373064pt;}
.ws12e{word-spacing:-2.224117pt;}
.ws140{word-spacing:-2.174187pt;}
.ws110{word-spacing:-2.160000pt;}
.ws75{word-spacing:-2.064000pt;}
.ws8f{word-spacing:-2.016000pt;}
.ws154{word-spacing:-1.997764pt;}
.ws144{word-spacing:-1.991736pt;}
.ws141{word-spacing:-1.956768pt;}
.ws156{word-spacing:-1.952361pt;}
.ws89{word-spacing:-1.948695pt;}
.ws160{word-spacing:-1.932527pt;}
.ws145{word-spacing:-1.903214pt;}
.ws6d{word-spacing:-1.880003pt;}
.ws12d{word-spacing:-1.875236pt;}
.ws35{word-spacing:-1.824000pt;}
.wsf1{word-spacing:-1.788010pt;}
.ws2f{word-spacing:-1.776000pt;}
.ws10f{word-spacing:-1.770133pt;}
.wsd4{word-spacing:-1.748365pt;}
.wsa3{word-spacing:-1.728000pt;}
.ws155{word-spacing:-1.725342pt;}
.ws15e{word-spacing:-1.712922pt;}
.ws1a8{word-spacing:-1.684800pt;}
.ws8c{word-spacing:-1.682964pt;}
.ws143{word-spacing:-1.681910pt;}
.ws48{word-spacing:-1.680000pt;}
.ws15f{word-spacing:-1.669001pt;}
.ws14d{word-spacing:-1.632000pt;}
.ws12f{word-spacing:-1.569965pt;}
.ws1b{word-spacing:-1.567360pt;}
.ws43{word-spacing:-1.536000pt;}
.wscf{word-spacing:-1.491200pt;}
.wsb7{word-spacing:-1.488981pt;}
.ws90{word-spacing:-1.488000pt;}
.wsf2{word-spacing:-1.467085pt;}
.ws10d{word-spacing:-1.460360pt;}
.ws8e{word-spacing:-1.440000pt;}
.wsd3{word-spacing:-1.426298pt;}
.ws146{word-spacing:-1.416346pt;}
.ws97{word-spacing:-1.392000pt;}
.ws142{word-spacing:-1.391479pt;}
.ws10c{word-spacing:-1.371853pt;}
.ws12b{word-spacing:-1.351914pt;}
.ws198{word-spacing:-1.310400pt;}
.ws11{word-spacing:-1.264000pt;}
.wsb4{word-spacing:-1.200000pt;}
.ws12a{word-spacing:-1.177474pt;}
.wsb1{word-spacing:-1.152000pt;}
.ws66{word-spacing:-1.104000pt;}
.ws194{word-spacing:-1.048320pt;}
.wsc7{word-spacing:-1.008000pt;}
.wsd0{word-spacing:-0.978600pt;}
.ws20{word-spacing:-0.960640pt;}
.ws153{word-spacing:-0.953478pt;}
.wsd2{word-spacing:-0.920192pt;}
.ws129{word-spacing:-0.915813pt;}
.ws8a{word-spacing:-0.885771pt;}
.wsd1{word-spacing:-0.885400pt;}
.wsb9{word-spacing:-0.884083pt;}
.ws91{word-spacing:-0.864000pt;}
.ws12c{word-spacing:-0.828593pt;}
.ws126{word-spacing:-0.816000pt;}
.wsad{word-spacing:-0.768000pt;}
.ws115{word-spacing:-0.720000pt;}
.ws1a2{word-spacing:-0.711360pt;}
.wsf5{word-spacing:-0.672000pt;}
.ws13{word-spacing:-0.606720pt;}
.ws2b{word-spacing:-0.576000pt;}
.wsde{word-spacing:-0.528000pt;}
.wsf0{word-spacing:-0.480000pt;}
.wsae{word-spacing:-0.432000pt;}
.ws18c{word-spacing:-0.411840pt;}
.wsef{word-spacing:-0.384000pt;}
.ws193{word-spacing:-0.374400pt;}
.ws175{word-spacing:-0.340480pt;}
.wsba{word-spacing:-0.325715pt;}
.ws10e{word-spacing:-0.309773pt;}
.ws12{word-spacing:-0.303360pt;}
.ws1c8{word-spacing:-0.299520pt;}
.ws45{word-spacing:-0.240000pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws1a{word-spacing:-0.151680pt;}
.ws188{word-spacing:-0.149760pt;}
.ws82{word-spacing:-0.144000pt;}
.ws26{word-spacing:-0.127680pt;}
.ws6b{word-spacing:-0.112320pt;}
.ws162{word-spacing:-0.106880pt;}
.ws28{word-spacing:-0.096000pt;}
.ws173{word-spacing:-0.085120pt;}
.ws5c{word-spacing:-0.053440pt;}
.ws1d{word-spacing:-0.050560pt;}
.ws29{word-spacing:-0.048000pt;}
.wsf4{word-spacing:-0.042560pt;}
.ws1c7{word-spacing:-0.037440pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c6{word-spacing:0.037440pt;}
.ws88{word-spacing:0.044289pt;}
.ws5{word-spacing:0.048000pt;}
.ws1c{word-spacing:0.050560pt;}
.ws5b{word-spacing:0.053440pt;}
.ws171{word-spacing:0.085120pt;}
.ws16f{word-spacing:0.090880pt;}
.ws3a{word-spacing:0.096000pt;}
.ws5d{word-spacing:0.106880pt;}
.ws1c5{word-spacing:0.112320pt;}
.wsc{word-spacing:0.127680pt;}
.ws8b{word-spacing:0.132866pt;}
.ws68{word-spacing:0.136320pt;}
.ws2c{word-spacing:0.144000pt;}
.ws6a{word-spacing:0.149760pt;}
.ws176{word-spacing:0.170240pt;}
.ws1c4{word-spacing:0.187200pt;}
.ws4{word-spacing:0.192000pt;}
.ws69{word-spacing:0.224640pt;}
.ws67{word-spacing:0.240000pt;}
.ws1bb{word-spacing:0.262080pt;}
.wsab{word-spacing:0.288000pt;}
.ws170{word-spacing:0.297920pt;}
.ws192{word-spacing:0.299520pt;}
.wsf3{word-spacing:0.320925pt;}
.ws3{word-spacing:0.336000pt;}
.wse{word-spacing:0.353920pt;}
.ws172{word-spacing:0.383040pt;}
.ws62{word-spacing:0.384000pt;}
.ws174{word-spacing:0.425600pt;}
.ws14b{word-spacing:0.432000pt;}
.ws19e{word-spacing:0.449280pt;}
.ws42{word-spacing:0.480000pt;}
.wsb6{word-spacing:0.528000pt;}
.ws186{word-spacing:0.561600pt;}
.ws150{word-spacing:0.576000pt;}
.wsf{word-spacing:0.657280pt;}
.ws133{word-spacing:0.672000pt;}
.wsb2{word-spacing:0.720000pt;}
.ws7b{word-spacing:0.768000pt;}
.ws7c{word-spacing:0.816000pt;}
.ws1ba{word-spacing:0.861120pt;}
.ws7d{word-spacing:0.912000pt;}
.ws7e{word-spacing:0.960000pt;}
.ws1ad{word-spacing:1.010880pt;}
.ws3b{word-spacing:1.056000pt;}
.ws38{word-spacing:1.104000pt;}
.wsa9{word-spacing:1.152000pt;}
.ws190{word-spacing:1.198080pt;}
.wsea{word-spacing:1.200000pt;}
.ws187{word-spacing:1.235520pt;}
.ws11c{word-spacing:1.296000pt;}
.ws16{word-spacing:1.314560pt;}
.ws80{word-spacing:1.344000pt;}
.ws3e{word-spacing:1.392000pt;}
.wsdc{word-spacing:1.440000pt;}
.ws100{word-spacing:1.488000pt;}
.ws1ac{word-spacing:1.497600pt;}
.ws1b2{word-spacing:1.572480pt;}
.ws93{word-spacing:1.584000pt;}
.ws61{word-spacing:1.680000pt;}
.wsdf{word-spacing:1.728000pt;}
.ws5f{word-spacing:1.776000pt;}
.ws1b9{word-spacing:1.834560pt;}
.ws166{word-spacing:1.872000pt;}
.ws5e{word-spacing:1.920000pt;}
.ws113{word-spacing:1.968000pt;}
.ws27{word-spacing:2.016000pt;}
.ws1be{word-spacing:2.021760pt;}
.ws7f{word-spacing:2.064000pt;}
.ws57{word-spacing:2.112000pt;}
.wsd5{word-spacing:2.160000pt;}
.wsf7{word-spacing:2.256000pt;}
.ws7a{word-spacing:2.304000pt;}
.ws4f{word-spacing:2.352000pt;}
.ws4e{word-spacing:2.400000pt;}
.ws114{word-spacing:2.496000pt;}
.ws17{word-spacing:2.578560pt;}
.ws55{word-spacing:2.640000pt;}
.ws60{word-spacing:2.688000pt;}
.ws76{word-spacing:2.736000pt;}
.ws1b1{word-spacing:2.770560pt;}
.ws139{word-spacing:2.784000pt;}
.ws185{word-spacing:2.808000pt;}
.wsdd{word-spacing:2.832000pt;}
.wsdb{word-spacing:2.880000pt;}
.ws65{word-spacing:2.976000pt;}
.wsb0{word-spacing:3.024000pt;}
.ws4c{word-spacing:3.072000pt;}
.ws19c{word-spacing:3.107520pt;}
.ws164{word-spacing:3.120000pt;}
.ws1c3{word-spacing:3.144960pt;}
.ws14e{word-spacing:3.168000pt;}
.ws101{word-spacing:3.264000pt;}
.ws9f{word-spacing:3.312000pt;}
.ws56{word-spacing:3.360000pt;}
.wse4{word-spacing:3.408000pt;}
.ws163{word-spacing:3.504000pt;}
.ws1a6{word-spacing:3.519360pt;}
.ws49{word-spacing:3.600000pt;}
.ws4a{word-spacing:3.648000pt;}
.ws5a{word-spacing:3.696000pt;}
.ws96{word-spacing:3.744000pt;}
.ws59{word-spacing:3.792000pt;}
.ws1f{word-spacing:3.842560pt;}
.wsa2{word-spacing:3.936000pt;}
.ws92{word-spacing:3.984000pt;}
.ws64{word-spacing:4.032000pt;}
.ws138{word-spacing:4.080000pt;}
.ws1b8{word-spacing:4.080960pt;}
.ws157{word-spacing:4.176000pt;}
.ws19{word-spacing:4.196480pt;}
.ws32{word-spacing:4.224000pt;}
.ws134{word-spacing:4.272000pt;}
.ws63{word-spacing:4.320000pt;}
.ws44{word-spacing:4.560000pt;}
.ws58{word-spacing:4.608000pt;}
.ws31{word-spacing:4.656000pt;}
.wse3{word-spacing:4.704000pt;}
.ws13a{word-spacing:4.752000pt;}
.ws54{word-spacing:4.896000pt;}
.wsbf{word-spacing:4.944000pt;}
.ws71{word-spacing:4.992000pt;}
.ws1ae{word-spacing:5.016960pt;}
.wsfb{word-spacing:5.040000pt;}
.ws3d{word-spacing:5.184000pt;}
.wse7{word-spacing:5.232000pt;}
.ws84{word-spacing:5.280000pt;}
.wsee{word-spacing:5.328000pt;}
.ws1b4{word-spacing:5.353920pt;}
.ws1af{word-spacing:5.391360pt;}
.wsc6{word-spacing:5.520000pt;}
.ws3f{word-spacing:5.568000pt;}
.ws3c{word-spacing:5.616000pt;}
.ws18e{word-spacing:5.653440pt;}
.ws87{word-spacing:5.856000pt;}
.ws158{word-spacing:5.904000pt;}
.wsa8{word-spacing:5.952000pt;}
.ws70{word-spacing:6.000000pt;}
.ws86{word-spacing:6.048000pt;}
.wsd9{word-spacing:6.144000pt;}
.ws137{word-spacing:6.192000pt;}
.ws4b{word-spacing:6.240000pt;}
.wseb{word-spacing:6.288000pt;}
.ws1b7{word-spacing:6.289920pt;}
.ws1a3{word-spacing:6.327360pt;}
.ws1a4{word-spacing:6.364800pt;}
.wsaa{word-spacing:6.384000pt;}
.wsd{word-spacing:6.421120pt;}
.ws40{word-spacing:6.480000pt;}
.ws77{word-spacing:6.528000pt;}
.wsed{word-spacing:6.576000pt;}
.wsec{word-spacing:6.672000pt;}
.ws74{word-spacing:6.816000pt;}
.ws10b{word-spacing:6.864000pt;}
.ws41{word-spacing:6.912000pt;}
.ws1aa{word-spacing:7.001280pt;}
.ws136{word-spacing:7.008000pt;}
.ws1a9{word-spacing:7.076160pt;}
.ws10{word-spacing:7.078400pt;}
.wsc8{word-spacing:7.104000pt;}
.ws165{word-spacing:7.152000pt;}
.wsc9{word-spacing:7.200000pt;}
.ws119{word-spacing:7.248000pt;}
.wsf6{word-spacing:7.296000pt;}
.ws1e{word-spacing:7.381760pt;}
.ws50{word-spacing:7.440000pt;}
.ws78{word-spacing:7.488000pt;}
.ws81{word-spacing:7.536000pt;}
.ws1c0{word-spacing:7.637760pt;}
.wsb5{word-spacing:7.776000pt;}
.ws99{word-spacing:7.824000pt;}
.wsf8{word-spacing:7.872000pt;}
.ws1b3{word-spacing:7.899840pt;}
.ws104{word-spacing:7.920000pt;}
.ws1bc{word-spacing:7.937280pt;}
.wsfc{word-spacing:7.968000pt;}
.ws39{word-spacing:8.064000pt;}
.wsfa{word-spacing:8.112000pt;}
.wsf9{word-spacing:8.160000pt;}
.ws108{word-spacing:8.208000pt;}
.ws1bd{word-spacing:8.349120pt;}
.wse9{word-spacing:8.400000pt;}
.ws112{word-spacing:8.448000pt;}
.wse8{word-spacing:8.496000pt;}
.wsac{word-spacing:8.736000pt;}
.wsc4{word-spacing:8.784000pt;}
.ws9a{word-spacing:8.832000pt;}
.ws11a{word-spacing:8.880000pt;}
.ws11b{word-spacing:8.928000pt;}
.wsc5{word-spacing:9.024000pt;}
.ws30{word-spacing:9.072000pt;}
.wsd8{word-spacing:9.120000pt;}
.ws15b{word-spacing:9.168000pt;}
.ws1a5{word-spacing:9.172800pt;}
.ws1a1{word-spacing:9.210240pt;}
.ws34{word-spacing:9.360000pt;}
.ws189{word-spacing:9.397440pt;}
.ws2a{word-spacing:9.408000pt;}
.ws33{word-spacing:9.456000pt;}
.wscd{word-spacing:9.504000pt;}
.ws19b{word-spacing:9.547200pt;}
.ws18a{word-spacing:9.659520pt;}
.ws148{word-spacing:9.696000pt;}
.ws2d{word-spacing:9.744000pt;}
.ws132{word-spacing:9.792000pt;}
.ws19d{word-spacing:9.809280pt;}
.ws18{word-spacing:9.960320pt;}
.ws2e{word-spacing:9.984000pt;}
.ws105{word-spacing:10.032000pt;}
.ws36{word-spacing:10.080000pt;}
.ws9c{word-spacing:10.320000pt;}
.ws37{word-spacing:10.416000pt;}
.ws1b5{word-spacing:10.483200pt;}
.ws102{word-spacing:10.656000pt;}
.wse2{word-spacing:10.704000pt;}
.ws98{word-spacing:10.752000pt;}
.ws9d{word-spacing:10.896000pt;}
.wse6{word-spacing:10.944000pt;}
.ws14a{word-spacing:10.992000pt;}
.ws11e{word-spacing:11.040000pt;}
.ws149{word-spacing:11.088000pt;}
.wsd7{word-spacing:11.328000pt;}
.ws85{word-spacing:11.376000pt;}
.ws15c{word-spacing:11.424000pt;}
.ws15d{word-spacing:11.472000pt;}
.wsd6{word-spacing:11.616000pt;}
.wsda{word-spacing:11.712000pt;}
.ws127{word-spacing:11.760000pt;}
.ws18d{word-spacing:11.980800pt;}
.ws13c{word-spacing:12.288000pt;}
.ws19a{word-spacing:12.392640pt;}
.ws9e{word-spacing:12.576000pt;}
.ws128{word-spacing:12.672000pt;}
.ws1ab{word-spacing:12.729600pt;}
.ws15{word-spacing:12.842240pt;}
.ws111{word-spacing:12.912000pt;}
.ws159{word-spacing:13.056000pt;}
.ws19f{word-spacing:13.141440pt;}
.ws14{word-spacing:13.145600pt;}
.ws73{word-spacing:13.200000pt;}
.ws1a7{word-spacing:13.216320pt;}
.wsaf{word-spacing:13.296000pt;}
.ws196{word-spacing:13.328640pt;}
.ws95{word-spacing:13.536000pt;}
.ws94{word-spacing:13.632000pt;}
.ws1c1{word-spacing:13.815360pt;}
.ws197{word-spacing:13.965120pt;}
.ws9b{word-spacing:14.592000pt;}
.ws1b0{word-spacing:14.639040pt;}
.wsa0{word-spacing:14.880000pt;}
.ws191{word-spacing:14.976000pt;}
.wsa1{word-spacing:15.024000pt;}
.ws18f{word-spacing:15.312960pt;}
.ws116{word-spacing:15.744000pt;}
.ws1bf{word-spacing:16.211520pt;}
.ws46{word-spacing:16.752000pt;}
.ws47{word-spacing:16.800000pt;}
.ws79{word-spacing:17.040000pt;}
.ws13b{word-spacing:17.424000pt;}
.ws103{word-spacing:17.472000pt;}
.ws11d{word-spacing:17.664000pt;}
.ws13e{word-spacing:18.048000pt;}
.ws13f{word-spacing:18.096000pt;}
.ws1c2{word-spacing:18.495360pt;}
.ws118{word-spacing:19.296000pt;}
.ws1b6{word-spacing:19.319040pt;}
.ws152{word-spacing:19.344000pt;}
.ws199{word-spacing:19.656000pt;}
.ws106{word-spacing:19.680000pt;}
.ws1a0{word-spacing:19.768320pt;}
.ws107{word-spacing:19.968000pt;}
.ws124{word-spacing:20.016000pt;}
.ws14f{word-spacing:20.304000pt;}
.ws13d{word-spacing:20.880000pt;}
.ws83{word-spacing:20.976000pt;}
.ws168{word-spacing:22.512000pt;}
.ws167{word-spacing:22.800000pt;}
.wsb3{word-spacing:22.896000pt;}
.wscb{word-spacing:23.136000pt;}
.wsc1{word-spacing:23.424000pt;}
.ws72{word-spacing:23.472000pt;}
.wscc{word-spacing:23.568000pt;}
.ws122{word-spacing:23.808000pt;}
.wsc2{word-spacing:23.856000pt;}
.wsc3{word-spacing:24.480000pt;}
.wsca{word-spacing:25.152000pt;}
.wsc0{word-spacing:25.440000pt;}
.ws195{word-spacing:26.470080pt;}
.ws120{word-spacing:27.600000pt;}
.ws135{word-spacing:27.984000pt;}
.ws151{word-spacing:32.640000pt;}
.ws125{word-spacing:33.072000pt;}
.wsfe{word-spacing:33.456000pt;}
.ws121{word-spacing:38.160000pt;}
.wsff{word-spacing:38.256000pt;}
.wse5{word-spacing:44.544000pt;}
.wsce{word-spacing:64.464000pt;}
.ws18b{word-spacing:70.050240pt;}
.ws123{word-spacing:81.744000pt;}
._3{margin-left:-8.895360pt;}
._4{margin-left:-6.016640pt;}
._5{margin-left:-3.913248pt;}
._b{margin-left:-2.352000pt;}
._0{margin-left:-1.033632pt;}
._1{width:0.959040pt;}
._8{width:2.064000pt;}
._7{width:3.484896pt;}
._6{width:4.560000pt;}
._a{width:5.548896pt;}
._9{width:6.624000pt;}
._e{width:7.897632pt;}
._d{width:8.832000pt;}
._f{width:10.800000pt;}
._2{width:12.744320pt;}
._17{width:13.995936pt;}
._10{width:16.368000pt;}
._12{width:18.192000pt;}
._11{width:19.513632pt;}
._14{width:22.131264pt;}
._13{width:32.208000pt;}
._c{width:35.328960pt;}
._15{width:134.681600pt;}
._16{width:468.797760pt;}
.fsb{font-size:21.440000pt;}
.fs9{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs12{font-size:43.483733pt;}
.fs11{font-size:43.610133pt;}
.fs15{font-size:43.921067pt;}
.fs10{font-size:44.253333pt;}
.fs13{font-size:44.260800pt;}
.fsa{font-size:44.288533pt;}
.fs14{font-size:45.403733pt;}
.fs8{font-size:45.440000pt;}
.fsf{font-size:45.846400pt;}
.fse{font-size:46.009600pt;}
.fsc{font-size:46.530667pt;}
.fsd{font-size:46.600000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs7{font-size:53.440000pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.560000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y27f{bottom:2.640000pt;}
.y286{bottom:2.720000pt;}
.y288{bottom:2.800000pt;}
.y271{bottom:4.000000pt;}
.y1ec{bottom:9.560933pt;}
.y21c{bottom:10.047867pt;}
.y1f1{bottom:10.050400pt;}
.y114{bottom:10.131867pt;}
.y10f{bottom:10.305067pt;}
.y253{bottom:10.846400pt;}
.yb0{bottom:10.976400pt;}
.y15d{bottom:10.981333pt;}
.y1c4{bottom:11.020800pt;}
.y127{bottom:11.243200pt;}
.yfa{bottom:11.457733pt;}
.y293{bottom:15.920000pt;}
.y28b{bottom:16.000000pt;}
.y1eb{bottom:22.527467pt;}
.y1f0{bottom:23.248667pt;}
.y21b{bottom:23.586933pt;}
.y113{bottom:23.851600pt;}
.y252{bottom:23.943467pt;}
.y1c3{bottom:24.025067pt;}
.y15c{bottom:24.177333pt;}
.yaf{bottom:24.182933pt;}
.y10e{bottom:24.200933pt;}
.y126{bottom:24.914400pt;}
.yf9{bottom:25.332800pt;}
.y29a{bottom:29.280000pt;}
.y2c8{bottom:29.360000pt;}
.y1ea{bottom:35.494000pt;}
.y1ef{bottom:36.446933pt;}
.y1c2{bottom:37.029333pt;}
.y251{bottom:37.040267pt;}
.y21a{bottom:37.126000pt;}
.y15b{bottom:37.373333pt;}
.yae{bottom:37.389333pt;}
.y112{bottom:37.571333pt;}
.y10d{bottom:38.096800pt;}
.y125{bottom:38.585333pt;}
.yf8{bottom:39.207867pt;}
.y27c{bottom:42.640000pt;}
.y1{bottom:45.040000pt;}
.y1e9{bottom:48.460533pt;}
.y1ee{bottom:49.645200pt;}
.y1c1{bottom:50.033467pt;}
.y250{bottom:50.137200pt;}
.y6b{bottom:50.320000pt;}
.y15a{bottom:50.569333pt;}
.yad{bottom:50.596000pt;}
.y219{bottom:50.665200pt;}
.y111{bottom:51.290933pt;}
.y10c{bottom:51.992533pt;}
.y124{bottom:52.256400pt;}
.yf7{bottom:53.082933pt;}
.y1e8{bottom:61.427067pt;}
.y1c0{bottom:63.037733pt;}
.y24f{bottom:63.234133pt;}
.yac{bottom:63.802400pt;}
.yf6{bottom:66.958000pt;}
.y1bf{bottom:76.041867pt;}
.y1ed{bottom:80.122667pt;}
.y122{bottom:81.728000pt;}
.y6a{bottom:81.752000pt;}
.y185{bottom:82.076000pt;}
.y1e6{bottom:82.292000pt;}
.y1b{bottom:82.320000pt;}
.yd1{bottom:82.532000pt;}
.y158{bottom:83.096000pt;}
.yf5{bottom:83.978667pt;}
.y110{bottom:86.408000pt;}
.y10a{bottom:87.896000pt;}
.y218{bottom:88.986667pt;}
.y1be{bottom:89.046133pt;}
.y346{bottom:89.200000pt;}
.yaa{bottom:89.252000pt;}
.yf4{bottom:89.256000pt;}
.y14f{bottom:89.744000pt;}
.y217{bottom:90.216000pt;}
.y34c{bottom:91.440000pt;}
.y69{bottom:96.392000pt;}
.y121{bottom:96.452000pt;}
.y184{bottom:96.716000pt;}
.y1e5{bottom:96.932000pt;}
.y19c{bottom:97.196000pt;}
.yd0{bottom:97.256000pt;}
.y1bc{bottom:97.268000pt;}
.y157{bottom:97.736000pt;}
.y109{bottom:102.536000pt;}
.y42{bottom:102.560000pt;}
.ya9{bottom:103.892000pt;}
.yf3{bottom:103.896000pt;}
.y14e{bottom:104.384000pt;}
.y345{bottom:104.840800pt;}
.y216{bottom:104.856000pt;}
.y311{bottom:108.865600pt;}
.y11f{bottom:109.256000pt;}
.y68{bottom:111.032000pt;}
.y183{bottom:111.356000pt;}
.y1e4{bottom:111.572000pt;}
.y19b{bottom:111.836000pt;}
.ycf{bottom:111.896000pt;}
.y1bb{bottom:111.908000pt;}
.y344{bottom:115.483120pt;}
.y108{bottom:117.176000pt;}
.y238{bottom:117.188000pt;}
.ya8{bottom:118.532000pt;}
.yf2{bottom:118.536000pt;}
.y14d{bottom:119.024000pt;}
.y215{bottom:119.496000pt;}
.y310{bottom:119.507920pt;}
.y81{bottom:121.280000pt;}
.y11e{bottom:123.896000pt;}
.y41{bottom:123.990560pt;}
.y67{bottom:125.672000pt;}
.y182{bottom:125.996000pt;}
.y343{bottom:126.200320pt;}
.y1e3{bottom:126.212000pt;}
.y19a{bottom:126.476000pt;}
.yce{bottom:126.536000pt;}
.y1ba{bottom:126.548000pt;}
.y1a{bottom:128.880000pt;}
.y2b1{bottom:129.920000pt;}
.y30f{bottom:130.225120pt;}
.y107{bottom:131.816000pt;}
.y237{bottom:131.828000pt;}
.y156{bottom:133.172000pt;}
.yf1{bottom:133.176000pt;}
.y14c{bottom:133.664000pt;}
.y214{bottom:134.220000pt;}
.y342{bottom:136.842640pt;}
.ya7{bottom:138.536000pt;}
.y2b2{bottom:139.280000pt;}
.y66{bottom:140.396000pt;}
.y181{bottom:140.636000pt;}
.y30e{bottom:140.867440pt;}
.y1e2{bottom:140.936000pt;}
.ycd{bottom:141.176000pt;}
.y199{bottom:141.200000pt;}
.y40{bottom:146.148480pt;}
.y106{bottom:146.456000pt;}
.y1b9{bottom:146.468000pt;}
.y341{bottom:147.484960pt;}
.y155{bottom:147.812000pt;}
.yf0{bottom:147.816000pt;}
.y213{bottom:148.860000pt;}
.ya6{bottom:153.176000pt;}
.y14b{bottom:153.668000pt;}
.y65{bottom:155.036000pt;}
.y180{bottom:155.276000pt;}
.y30d{bottom:155.506480pt;}
.y1e1{bottom:155.576000pt;}
.y198{bottom:155.840000pt;}
.y19{bottom:156.880000pt;}
.y340{bottom:158.202160pt;}
.y2af{bottom:161.040000pt;}
.ycc{bottom:161.180000pt;}
.y1b8{bottom:161.192000pt;}
.y154{bottom:162.452000pt;}
.y212{bottom:163.500000pt;}
.y2dc{bottom:163.760000pt;}
.y30c{bottom:166.223680pt;}
.ya5{bottom:167.816000pt;}
.yef{bottom:167.820000pt;}
.y3f{bottom:168.230560pt;}
.y14a{bottom:168.308000pt;}
.y33f{bottom:168.844480pt;}
.y1e0{bottom:170.216000pt;}
.y197{bottom:170.480000pt;}
.y11d{bottom:173.180000pt;}
.y64{bottom:174.956000pt;}
.y17f{bottom:175.280000pt;}
.ycb{bottom:175.820000pt;}
.y1b7{bottom:175.832000pt;}
.y2d9{bottom:176.320000pt;}
.y30b{bottom:176.866000pt;}
.y2b0{bottom:176.960000pt;}
.y153{bottom:177.092000pt;}
.y211{bottom:178.140000pt;}
.ya4{bottom:182.456000pt;}
.yee{bottom:182.460000pt;}
.y149{bottom:182.948000pt;}
.y33e{bottom:183.483520pt;}
.y1df{bottom:184.856000pt;}
.y18{bottom:187.096000pt;}
.y30a{bottom:187.508320pt;}
.y11c{bottom:187.820000pt;}
.y196{bottom:189.116000pt;}
.y63{bottom:189.680000pt;}
.y17e{bottom:189.920000pt;}
.y3e{bottom:190.388480pt;}
.yca{bottom:190.460000pt;}
.y1b6{bottom:190.472000pt;}
.y2db{bottom:192.321280pt;}
.y33d{bottom:194.200720pt;}
.ya3{bottom:197.096000pt;}
.yed{bottom:197.100000pt;}
.y148{bottom:197.588000pt;}
.y210{bottom:198.144000pt;}
.y309{bottom:198.225520pt;}
.y1de{bottom:199.496000pt;}
.y24d{bottom:199.748000pt;}
.y11b{bottom:202.460000pt;}
.y195{bottom:203.756000pt;}
.y62{bottom:204.320000pt;}
.y17d{bottom:204.560000pt;}
.y33c{bottom:204.843040pt;}
.yc9{bottom:205.100000pt;}
.y1b5{bottom:205.112000pt;}
.y2ae{bottom:205.440000pt;}
.y2da{bottom:205.600000pt;}
.y3d{bottom:205.834560pt;}
.y308{bottom:208.867840pt;}
.ya2{bottom:211.736000pt;}
.yec{bottom:211.740000pt;}
.y147{bottom:212.228000pt;}
.y20f{bottom:212.784000pt;}
.y17{bottom:213.580000pt;}
.y1dd{bottom:214.136000pt;}
.y24c{bottom:214.388000pt;}
.y33b{bottom:215.485360pt;}
.y11a{bottom:217.100000pt;}
.y61{bottom:218.960000pt;}
.y17c{bottom:219.200000pt;}
.y307{bottom:219.510160pt;}
.yc8{bottom:219.740000pt;}
.y1b4{bottom:219.752000pt;}
.y194{bottom:225.032000pt;}
.y105{bottom:225.104000pt;}
.y33a{bottom:226.202560pt;}
.ya1{bottom:226.376000pt;}
.yeb{bottom:226.380000pt;}
.y3c{bottom:226.640000pt;}
.y146{bottom:226.868000pt;}
.y20e{bottom:227.424000pt;}
.y24b{bottom:229.028000pt;}
.y306{bottom:230.227360pt;}
.y119{bottom:231.740000pt;}
.y2d3{bottom:232.240000pt;}
.y2a4{bottom:232.480000pt;}
.y17b{bottom:233.840000pt;}
.y2d8{bottom:234.080000pt;}
.y1dc{bottom:234.140000pt;}
.yc7{bottom:234.380000pt;}
.y1b3{bottom:234.392000pt;}
.y2ad{bottom:236.480000pt;}
.y339{bottom:236.844880pt;}
.y104{bottom:239.744000pt;}
.y60{bottom:239.756000pt;}
.y16{bottom:240.064000pt;}
.ya0{bottom:241.016000pt;}
.yea{bottom:241.020000pt;}
.y2a8{bottom:241.273600pt;}
.y145{bottom:241.508000pt;}
.y20d{bottom:242.064000pt;}
.y24a{bottom:243.752000pt;}
.y305{bottom:244.866400pt;}
.y2a3{bottom:245.760000pt;}
.y118{bottom:246.380000pt;}
.y3b{bottom:247.260000pt;}
.y17a{bottom:248.480000pt;}
.y1db{bottom:248.780000pt;}
.yc6{bottom:249.020000pt;}
.y1b2{bottom:249.032000pt;}
.y338{bottom:251.483920pt;}
.y2d7{bottom:251.760000pt;}
.y236{bottom:253.028000pt;}
.y103{bottom:254.384000pt;}
.y5f{bottom:254.396000pt;}
.y2d5{bottom:254.396160pt;}
.y2a7{bottom:254.637440pt;}
.y304{bottom:255.508720pt;}
.y9f{bottom:255.740000pt;}
.ye9{bottom:255.744000pt;}
.y144{bottom:256.148000pt;}
.y20c{bottom:256.704000pt;}
.y249{bottom:258.392000pt;}
.y2a2{bottom:259.120000pt;}
.y117{bottom:261.020000pt;}
.y337{bottom:262.201120pt;}
.y179{bottom:263.204000pt;}
.y1da{bottom:263.420000pt;}
.yc5{bottom:263.660000pt;}
.y1b1{bottom:263.672000pt;}
.y303{bottom:266.225920pt;}
.y15{bottom:266.548000pt;}
.y3a{bottom:267.264000pt;}
.y2ac{bottom:267.520000pt;}
.y235{bottom:267.668000pt;}
.y2d4{bottom:267.760000pt;}
.y2a6{bottom:268.001280pt;}
.y102{bottom:269.024000pt;}
.y5e{bottom:269.036000pt;}
.y2d6{bottom:269.520000pt;}
.y152{bottom:270.380000pt;}
.ye8{bottom:270.384000pt;}
.y20b{bottom:271.344000pt;}
.y336{bottom:272.843440pt;}
.y248{bottom:273.032000pt;}
.y9e{bottom:275.660000pt;}
.y143{bottom:276.152000pt;}
.y302{bottom:276.868240pt;}
.y178{bottom:277.844000pt;}
.y1d9{bottom:278.060000pt;}
.yc4{bottom:278.300000pt;}
.y1b0{bottom:278.312000pt;}
.y2a5{bottom:281.280000pt;}
.y335{bottom:283.485760pt;}
.y101{bottom:283.664000pt;}
.y5d{bottom:283.676000pt;}
.y151{bottom:285.020000pt;}
.ye7{bottom:285.024000pt;}
.y20a{bottom:285.984000pt;}
.y39{bottom:287.268000pt;}
.y301{bottom:287.510560pt;}
.y193{bottom:287.672000pt;}
.y9d{bottom:290.300000pt;}
.y142{bottom:290.792000pt;}
.y1d8{bottom:292.700000pt;}
.yc3{bottom:293.024000pt;}
.y14{bottom:293.032000pt;}
.y1af{bottom:293.036000pt;}
.y334{bottom:294.202960pt;}
.y177{bottom:297.764000pt;}
.y300{bottom:298.227760pt;}
.y100{bottom:298.304000pt;}
.y2aa{bottom:298.640000pt;}
.y150{bottom:299.660000pt;}
.ye6{bottom:299.664000pt;}
.y2d2{bottom:300.560000pt;}
.y209{bottom:300.624000pt;}
.y192{bottom:302.312000pt;}
.y5c{bottom:304.472000pt;}
.y333{bottom:304.845280pt;}
.y9c{bottom:305.024000pt;}
.y141{bottom:305.432000pt;}
.y38{bottom:307.188000pt;}
.y1d7{bottom:307.340000pt;}
.yc2{bottom:307.664000pt;}
.y1ae{bottom:307.676000pt;}
.y176{bottom:312.488000pt;}
.y2ff{bottom:312.866800pt;}
.yff{bottom:312.944000pt;}
.y2ab{bottom:314.560000pt;}
.y208{bottom:315.348000pt;}
.y191{bottom:316.952000pt;}
.y5b{bottom:319.112000pt;}
.y332{bottom:319.484320pt;}
.y13{bottom:319.516000pt;}
.y9b{bottom:319.664000pt;}
.ye5{bottom:319.668000pt;}
.y140{bottom:320.072000pt;}
.y1d6{bottom:322.064000pt;}
.yc1{bottom:322.304000pt;}
.y1ad{bottom:322.316000pt;}
.y2fe{bottom:323.509120pt;}
.y26e{bottom:324.624000pt;}
.y2ce{bottom:325.437440pt;}
.y175{bottom:327.128000pt;}
.y37{bottom:327.192000pt;}
.yfe{bottom:327.584000pt;}
.y207{bottom:329.988000pt;}
.y331{bottom:330.201520pt;}
.y190{bottom:331.592000pt;}
.y2cf{bottom:331.680000pt;}
.y2fd{bottom:334.226320pt;}
.y9a{bottom:334.304000pt;}
.ye4{bottom:334.308000pt;}
.y13f{bottom:334.796000pt;}
.y247{bottom:335.588000pt;}
.y1d5{bottom:336.704000pt;}
.yc0{bottom:336.944000pt;}
.y2cd{bottom:338.716160pt;}
.y26d{bottom:339.348000pt;}
.y120{bottom:339.584000pt;}
.y80{bottom:339.600000pt;}
.y5a{bottom:339.836000pt;}
.y330{bottom:340.843840pt;}
.y174{bottom:341.768000pt;}
.y2a9{bottom:343.040000pt;}
.y206{bottom:344.628000pt;}
.y12{bottom:346.000000pt;}
.y234{bottom:346.316000pt;}
.y36{bottom:347.196000pt;}
.y2d1{bottom:347.596160pt;}
.y2fc{bottom:348.865360pt;}
.y116{bottom:348.944000pt;}
.ye3{bottom:348.948000pt;}
.y1ac{bottom:348.956000pt;}
.y13e{bottom:349.436000pt;}
.y246{bottom:350.228000pt;}
.y1d4{bottom:351.344000pt;}
.y32f{bottom:351.486160pt;}
.y2cc{bottom:352.080000pt;}
.y18f{bottom:352.952000pt;}
.y34b{bottom:353.600000pt;}
.y26c{bottom:353.988000pt;}
.y99{bottom:354.308000pt;}
.y59{bottom:354.560000pt;}
.y173{bottom:356.408000pt;}
.y2fb{bottom:359.507680pt;}
.y233{bottom:360.956000pt;}
.y2d0{bottom:360.960000pt;}
.y32e{bottom:362.203360pt;}
.ybf{bottom:363.584000pt;}
.ye2{bottom:363.588000pt;}
.y1ab{bottom:363.596000pt;}
.y13d{bottom:364.076000pt;}
.y205{bottom:364.632000pt;}
.y351{bottom:365.920000pt;}
.y35{bottom:367.200000pt;}
.y18e{bottom:367.592000pt;}
.y26b{bottom:368.628000pt;}
.y98{bottom:368.948000pt;}
.y58{bottom:369.200000pt;}
.y2fa{bottom:370.224880pt;}
.y245{bottom:370.232000pt;}
.y172{bottom:371.048000pt;}
.y1d3{bottom:371.264000pt;}
.y11{bottom:372.484000pt;}
.y32d{bottom:372.845680pt;}
.y29f{bottom:374.080000pt;}
.y232{bottom:375.596000pt;}
.y7f{bottom:377.596000pt;}
.ybe{bottom:378.224000pt;}
.ye1{bottom:378.228000pt;}
.y1aa{bottom:378.236000pt;}
.y13c{bottom:378.716000pt;}
.y204{bottom:379.272000pt;}
.y2f9{bottom:380.867200pt;}
.y18d{bottom:382.232000pt;}
.y350{bottom:382.640000pt;}
.y26a{bottom:383.268000pt;}
.y29e{bottom:383.352320pt;}
.y97{bottom:383.588000pt;}
.y57{bottom:383.840000pt;}
.y244{bottom:384.872000pt;}
.y1d2{bottom:385.988000pt;}
.y34{bottom:387.120000pt;}
.y32c{bottom:387.484720pt;}
.y2ca{bottom:389.360000pt;}
.y2a1{bottom:390.081280pt;}
.y231{bottom:390.236000pt;}
.y2f8{bottom:391.509520pt;}
.y7e{bottom:392.236000pt;}
.y298{bottom:392.240000pt;}
.ybd{bottom:392.864000pt;}
.ye0{bottom:392.868000pt;}
.y1a9{bottom:392.876000pt;}
.y13b{bottom:393.356000pt;}
.y171{bottom:393.692000pt;}
.y203{bottom:393.912000pt;}
.y34f{bottom:394.160000pt;}
.y29d{bottom:396.716160pt;}
.y18c{bottom:396.872000pt;}
.y269{bottom:397.908000pt;}
.y32b{bottom:398.201920pt;}
.y96{bottom:398.228000pt;}
.y56{bottom:398.480000pt;}
.y10{bottom:398.884000pt;}
.y243{bottom:399.512000pt;}
.y1d1{bottom:400.628000pt;}
.y2f7{bottom:402.226720pt;}
.y2a0{bottom:403.360000pt;}
.y230{bottom:404.876000pt;}
.y2cb{bottom:405.360000pt;}
.y297{bottom:405.600000pt;}
.y33{bottom:406.642400pt;}
.y7d{bottom:406.876000pt;}
.ybc{bottom:407.504000pt;}
.ydf{bottom:407.508000pt;}
.y1a8{bottom:407.516000pt;}
.y13a{bottom:407.996000pt;}
.y170{bottom:408.332000pt;}
.y202{bottom:408.552000pt;}
.y29c{bottom:410.080000pt;}
.y34e{bottom:410.800000pt;}
.y18b{bottom:411.512000pt;}
.y268{bottom:412.548000pt;}
.y32a{bottom:412.840960pt;}
.y95{bottom:412.868000pt;}
.y55{bottom:413.120000pt;}
.y242{bottom:414.152000pt;}
.y1d0{bottom:415.268000pt;}
.y2f6{bottom:416.865760pt;}
.y296{bottom:418.880000pt;}
.y22f{bottom:419.516000pt;}
.y7c{bottom:421.600000pt;}
.ybb{bottom:422.144000pt;}
.yde{bottom:422.148000pt;}
.y1a7{bottom:422.156000pt;}
.y139{bottom:422.636000pt;}
.y201{bottom:423.192000pt;}
.y329{bottom:423.483280pt;}
.y16f{bottom:426.488000pt;}
.y32{bottom:426.638880pt;}
.y94{bottom:427.508000pt;}
.y2f5{bottom:427.508080pt;}
.y34d{bottom:427.520000pt;}
.y54{bottom:427.760000pt;}
.y241{bottom:428.792000pt;}
.y1cf{bottom:429.908000pt;}
.y18a{bottom:430.148000pt;}
.yf{bottom:430.720000pt;}
.y299{bottom:431.840000pt;}
.y295{bottom:432.240000pt;}
.y267{bottom:432.552000pt;}
.y2c7{bottom:433.760000pt;}
.y22e{bottom:434.156000pt;}
.y328{bottom:434.200480pt;}
.y7b{bottom:436.240000pt;}
.y2be{bottom:436.400000pt;}
.yba{bottom:436.784000pt;}
.ydd{bottom:436.788000pt;}
.y1a6{bottom:436.796000pt;}
.y200{bottom:437.832000pt;}
.y2f4{bottom:438.225280pt;}
.y16e{bottom:441.128000pt;}
.y31{bottom:441.364480pt;}
.y93{bottom:442.148000pt;}
.y138{bottom:442.640000pt;}
.y240{bottom:443.516000pt;}
.y1ce{bottom:444.548000pt;}
.y189{bottom:444.788000pt;}
.y327{bottom:444.842800pt;}
.y294{bottom:445.600000pt;}
.y266{bottom:447.192000pt;}
.y29b{bottom:447.760000pt;}
.y53{bottom:447.764000pt;}
.y22d{bottom:448.796000pt;}
.y2f3{bottom:448.867600pt;}
.y2c9{bottom:449.760000pt;}
.y7a{bottom:450.880000pt;}
.yb9{bottom:451.508000pt;}
.ydc{bottom:451.512000pt;}
.y1a5{bottom:451.520000pt;}
.y1ff{bottom:452.472000pt;}
.y326{bottom:455.485120pt;}
.y16d{bottom:455.768000pt;}
.y30{bottom:456.001600pt;}
.y92{bottom:456.788000pt;}
.y137{bottom:457.280000pt;}
.ye{bottom:458.720000pt;}
.y1cd{bottom:459.188000pt;}
.y188{bottom:459.428000pt;}
.y2f2{bottom:459.509920pt;}
.y265{bottom:461.832000pt;}
.y23f{bottom:462.152000pt;}
.y52{bottom:462.404000pt;}
.y22c{bottom:463.436000pt;}
.y79{bottom:465.520000pt;}
.yb8{bottom:466.148000pt;}
.ydb{bottom:466.152000pt;}
.y1a4{bottom:466.160000pt;}
.y325{bottom:466.202320pt;}
.y1fe{bottom:467.112000pt;}
.y2f1{bottom:470.227120pt;}
.y2f{bottom:470.638720pt;}
.y91{bottom:471.428000pt;}
.y136{bottom:471.920000pt;}
.y1cc{bottom:473.828000pt;}
.y2c4{bottom:474.156160pt;}
.y292{bottom:476.240000pt;}
.y264{bottom:476.472000pt;}
.y16c{bottom:476.564000pt;}
.y51{bottom:477.044000pt;}
.y2c6{bottom:478.160000pt;}
.y78{bottom:480.160000pt;}
.yb7{bottom:480.788000pt;}
.yda{bottom:480.792000pt;}
.y1a3{bottom:480.800000pt;}
.y324{bottom:480.841360pt;}
.y1fd{bottom:481.752000pt;}
.y22b{bottom:482.072000pt;}
.y2f0{bottom:484.866160pt;}
.y2e{bottom:485.364320pt;}
.yfd{bottom:486.068000pt;}
.y2c3{bottom:487.520000pt;}
.y1cb{bottom:488.468000pt;}
.yd{bottom:488.956000pt;}
.y263{bottom:491.112000pt;}
.y16b{bottom:491.204000pt;}
.y90{bottom:491.432000pt;}
.y323{bottom:491.483680pt;}
.y50{bottom:491.684000pt;}
.y77{bottom:494.800000pt;}
.y135{bottom:494.960000pt;}
.yb6{bottom:495.428000pt;}
.y1a2{bottom:495.440000pt;}
.y2ef{bottom:495.508480pt;}
.y1fc{bottom:496.392000pt;}
.y22a{bottom:496.796000pt;}
.y28e{bottom:498.797440pt;}
.y2d{bottom:500.001440pt;}
.yfc{bottom:500.792000pt;}
.yd9{bottom:500.796000pt;}
.y322{bottom:502.200880pt;}
.y262{bottom:505.752000pt;}
.y16a{bottom:505.844000pt;}
.y8f{bottom:506.072000pt;}
.y2ee{bottom:506.225680pt;}
.y4f{bottom:506.324000pt;}
.y291{bottom:507.280000pt;}
.y2c5{bottom:509.280000pt;}
.y76{bottom:509.440000pt;}
.yb5{bottom:510.068000pt;}
.y1a1{bottom:510.080000pt;}
.y1ca{bottom:511.112000pt;}
.y1fb{bottom:511.116000pt;}
.y23e{bottom:511.436000pt;}
.y28d{bottom:512.076160pt;}
.y2c{bottom:514.638560pt;}
.yfb{bottom:515.432000pt;}
.yd8{bottom:515.436000pt;}
.yc{bottom:515.440000pt;}
.y229{bottom:516.716000pt;}
.y321{bottom:516.839920pt;}
.y2ed{bottom:516.868000pt;}
.y261{bottom:520.392000pt;}
.y169{bottom:520.484000pt;}
.y8e{bottom:520.712000pt;}
.yb4{bottom:524.708000pt;}
.y1a0{bottom:524.720000pt;}
.y290{bottom:525.040000pt;}
.y28c{bottom:525.440000pt;}
.y1fa{bottom:525.756000pt;}
.y1c9{bottom:525.836000pt;}
.y23d{bottom:526.076000pt;}
.y4e{bottom:526.328000pt;}
.y320{bottom:527.482240pt;}
.y2b{bottom:529.364160pt;}
.y115{bottom:530.072000pt;}
.yd7{bottom:530.076000pt;}
.y228{bottom:531.356000pt;}
.y2ec{bottom:531.507040pt;}
.y75{bottom:532.554240pt;}
.y134{bottom:534.876000pt;}
.y260{bottom:535.116000pt;}
.y168{bottom:535.124000pt;}
.y8d{bottom:535.352000pt;}
.y31f{bottom:538.199440pt;}
.y187{bottom:539.348000pt;}
.y19f{bottom:539.360000pt;}
.y2bf{bottom:540.320000pt;}
.y1c8{bottom:540.476000pt;}
.y23c{bottom:540.716000pt;}
.y4d{bottom:540.968000pt;}
.y2eb{bottom:542.224240pt;}
.y28f{bottom:542.720000pt;}
.y27a{bottom:543.427200pt;}
.yb3{bottom:544.712000pt;}
.yd6{bottom:544.716000pt;}
.y1f9{bottom:545.676000pt;}
.y227{bottom:546.080000pt;}
.y2c2{bottom:547.440000pt;}
.yb{bottom:547.448480pt;}
.y74{bottom:548.800000pt;}
.y31e{bottom:548.841760pt;}
.y2a{bottom:549.360640pt;}
.y25f{bottom:549.756000pt;}
.y167{bottom:549.764000pt;}
.y8c{bottom:550.076000pt;}
.y2ea{bottom:552.866560pt;}
.y1d{bottom:553.040000pt;}
.y133{bottom:553.512000pt;}
.y186{bottom:553.988000pt;}
.y23b{bottom:555.356000pt;}
.y4c{bottom:555.608000pt;}
.y2c0{bottom:556.320000pt;}
.y279{bottom:556.791040pt;}
.y19e{bottom:557.996000pt;}
.y1c7{bottom:558.560000pt;}
.yb2{bottom:559.352000pt;}
.yd5{bottom:559.356000pt;}
.y31d{bottom:559.484080pt;}
.y1f8{bottom:560.400000pt;}
.y28a{bottom:560.480000pt;}
.y226{bottom:560.720000pt;}
.y2e9{bottom:563.508880pt;}
.y29{bottom:563.997760pt;}
.y25e{bottom:564.396000pt;}
.y166{bottom:564.404000pt;}
.y8b{bottom:564.716000pt;}
.y2c1{bottom:566.960000pt;}
.y132{bottom:568.152000pt;}
.y23a{bottom:569.996000pt;}
.y278{bottom:570.069760pt;}
.y284{bottom:570.074880pt;}
.y31c{bottom:570.201280pt;}
.y4b{bottom:570.248000pt;}
.y19d{bottom:572.636000pt;}
.y1c6{bottom:573.200000pt;}
.yb1{bottom:573.992000pt;}
.y2e8{bottom:574.226080pt;}
.y1f7{bottom:575.040000pt;}
.y225{bottom:575.360000pt;}
.y273{bottom:576.800000pt;}
.y28{bottom:578.634880pt;}
.y165{bottom:579.044000pt;}
.y8a{bottom:579.356000pt;}
.yd4{bottom:579.360000pt;}
.y31b{bottom:580.843600pt;}
.ya{bottom:582.560000pt;}
.y131{bottom:582.792000pt;}
.y283{bottom:583.353600pt;}
.y277{bottom:583.433600pt;}
.y25d{bottom:584.400000pt;}
.y239{bottom:584.636000pt;}
.y2bb{bottom:584.720000pt;}
.y2e7{bottom:584.868400pt;}
.y4a{bottom:584.888000pt;}
.y1c5{bottom:587.840000pt;}
.y73{bottom:588.632000pt;}
.y1f6{bottom:589.680000pt;}
.y224{bottom:590.000000pt;}
.y272{bottom:590.080000pt;}
.y31a{bottom:591.485920pt;}
.y289{bottom:591.520000pt;}
.y27{bottom:593.360480pt;}
.y164{bottom:593.684000pt;}
.y89{bottom:593.996000pt;}
.yd3{bottom:594.000000pt;}
.y2e6{bottom:595.510720pt;}
.y282{bottom:596.717440pt;}
.y276{bottom:596.797440pt;}
.y25c{bottom:599.040000pt;}
.y49{bottom:599.612000pt;}
.y2bd{bottom:600.721280pt;}
.y130{bottom:600.876000pt;}
.y72{bottom:603.272000pt;}
.y1f5{bottom:604.320000pt;}
.y223{bottom:604.640000pt;}
.y319{bottom:606.209200pt;}
.y2e5{bottom:606.227920pt;}
.y26{bottom:607.997600pt;}
.y88{bottom:608.636000pt;}
.yd2{bottom:608.640000pt;}
.y287{bottom:609.440000pt;}
.y275{bottom:610.076160pt;}
.y281{bottom:610.081280pt;}
.y9{bottom:612.080000pt;}
.y25b{bottom:613.680000pt;}
.y2bc{bottom:614.000000pt;}
.y12f{bottom:615.600000pt;}
.y163{bottom:616.400000pt;}
.y318{bottom:616.851520pt;}
.y2e4{bottom:616.870240pt;}
.y71{bottom:617.912000pt;}
.y1f4{bottom:618.960000pt;}
.y222{bottom:619.280000pt;}
.y48{bottom:619.532000pt;}
.y25{bottom:622.634720pt;}
.y87{bottom:623.276000pt;}
.y280{bottom:623.360000pt;}
.y274{bottom:623.440000pt;}
.y1bd{bottom:626.309333pt;}
.y285{bottom:627.440000pt;}
.y317{bottom:627.493840pt;}
.y2e3{bottom:627.512560pt;}
.y8{bottom:627.920000pt;}
.y25a{bottom:628.320000pt;}
.y12e{bottom:630.240000pt;}
.y162{bottom:631.040000pt;}
.y2b8{bottom:631.760000pt;}
.y70{bottom:632.636000pt;}
.y1f3{bottom:633.600000pt;}
.y221{bottom:633.920000pt;}
.y24{bottom:637.360320pt;}
.y86{bottom:637.916000pt;}
.y316{bottom:638.211040pt;}
.y47{bottom:640.328000pt;}
.y2b5{bottom:640.640000pt;}
.y2e2{bottom:642.235840pt;}
.y2ba{bottom:642.480000pt;}
.y259{bottom:642.960000pt;}
.y7{bottom:643.676000pt;}
.y27b{bottom:645.440000pt;}
.y161{bottom:645.680000pt;}
.y6f{bottom:647.276000pt;}
.y12d{bottom:648.324000pt;}
.y220{bottom:648.560000pt;}
.y315{bottom:648.853360pt;}
.y23{bottom:651.997440pt;}
.y85{bottom:652.556000pt;}
.y1e7{bottom:652.706667pt;}
.y2e1{bottom:652.878160pt;}
.y34a{bottom:652.969840pt;}
.y2b4{bottom:653.920000pt;}
.y24e{bottom:654.733333pt;}
.y46{bottom:654.968000pt;}
.yab{bottom:655.533333pt;}
.y1f2{bottom:656.640000pt;}
.y258{bottom:657.600000pt;}
.y314{bottom:659.495680pt;}
.y6{bottom:659.516000pt;}
.y2b9{bottom:660.160000pt;}
.y160{bottom:660.320000pt;}
.y27e{bottom:661.356160pt;}
.y6e{bottom:661.916000pt;}
.y12c{bottom:662.964000pt;}
.y21f{bottom:663.200000pt;}
.y2e0{bottom:663.520480pt;}
.y123{bottom:664.326667pt;}
.y10b{bottom:665.240000pt;}
.y22{bottom:666.634560pt;}
.y159{bottom:666.726667pt;}
.y84{bottom:667.196000pt;}
.y257{bottom:672.240000pt;}
.y313{bottom:674.218960pt;}
.y2df{bottom:674.237680pt;}
.y27d{bottom:674.720000pt;}
.y5{bottom:675.272000pt;}
.y45{bottom:675.764000pt;}
.y6d{bottom:676.556000pt;}
.y12b{bottom:677.604000pt;}
.y349{bottom:677.686560pt;}
.y21e{bottom:677.924000pt;}
.y15f{bottom:678.404000pt;}
.y21{bottom:681.360160pt;}
.y83{bottom:681.920000pt;}
.y312{bottom:684.861280pt;}
.y2de{bottom:684.880000pt;}
.y256{bottom:686.880000pt;}
.y44{bottom:690.404000pt;}
.y4{bottom:691.112000pt;}
.y6c{bottom:691.196000pt;}
.y2b6{bottom:691.280000pt;}
.y12a{bottom:692.244000pt;}
.y21d{bottom:692.564000pt;}
.y15e{bottom:693.044000pt;}
.y20{bottom:695.997280pt;}
.y82{bottom:696.560000pt;}
.y2b7{bottom:700.560000pt;}
.y255{bottom:701.520000pt;}
.y348{bottom:702.403280pt;}
.y270{bottom:702.640000pt;}
.y2dd{bottom:704.480000pt;}
.y3{bottom:705.836000pt;}
.y129{bottom:710.400000pt;}
.y1f{bottom:710.634400pt;}
.y43{bottom:711.200000pt;}
.y2b3{bottom:724.400000pt;}
.y254{bottom:724.560000pt;}
.y128{bottom:725.040000pt;}
.y1e{bottom:725.360000pt;}
.y2{bottom:725.840000pt;}
.y26f{bottom:726.480000pt;}
.y347{bottom:727.120000pt;}
.y1c{bottom:751.840000pt;}
.h36{height:13.278667pt;}
.h2f{height:13.280000pt;}
.h2e{height:13.360000pt;}
.h30{height:13.361333pt;}
.h2c{height:13.520000pt;}
.h2b{height:13.600000pt;}
.h29{height:16.001333pt;}
.h39{height:24.953906pt;}
.h2d{height:26.640000pt;}
.h34{height:26.718667pt;}
.h33{height:26.720000pt;}
.hb{height:28.366406pt;}
.h10{height:30.913594pt;}
.h38{height:31.992188pt;}
.h7{height:35.141094pt;}
.h8{height:35.265781pt;}
.h22{height:36.031199pt;}
.h20{height:36.135936pt;}
.h28{height:36.393579pt;}
.h1d{height:36.668900pt;}
.h24{height:36.675087pt;}
.h12{height:36.698067pt;}
.hf{height:37.208437pt;}
.h26{height:37.622136pt;}
.h1b{height:37.988936pt;}
.h19{height:38.124166pt;}
.h15{height:38.555928pt;}
.h17{height:38.613379pt;}
.h1e{height:39.304688pt;}
.h2{height:39.632812pt;}
.h13{height:39.648813pt;}
.h3{height:39.773438pt;}
.h31{height:40.000000pt;}
.h9{height:41.746562pt;}
.ha{height:41.894687pt;}
.he{height:44.281094pt;}
.hc{height:50.062500pt;}
.h6{height:53.031250pt;}
.h2a{height:53.280000pt;}
.h35{height:53.358667pt;}
.h32{height:53.360000pt;}
.hd{height:55.736250pt;}
.h23{height:65.592000pt;}
.h1c{height:66.512000pt;}
.h25{height:68.242667pt;}
.h1a{height:68.908000pt;}
.h18{height:69.846667pt;}
.h16{height:70.458667pt;}
.h21{height:77.536000pt;}
.h27{height:79.506667pt;}
.h11{height:80.173333pt;}
.h14{height:84.232000pt;}
.h4{height:88.297031pt;}
.h37{height:102.798667pt;}
.h5{height:106.028580pt;}
.h1f{height:106.398667pt;}
.h0{height:793.840000pt;}
.h1{height:794.000000pt;}
.wd{width:65.200000pt;}
.we{width:93.120000pt;}
.wc{width:152.665333pt;}
.w10{width:162.160000pt;}
.w3{width:166.660000pt;}
.wb{width:183.238667pt;}
.w5{width:185.985333pt;}
.w2{width:191.057333pt;}
.w7{width:204.576000pt;}
.w4{width:205.854667pt;}
.wa{width:208.125333pt;}
.w6{width:215.304000pt;}
.w9{width:215.381333pt;}
.w8{width:217.856000pt;}
.wf{width:247.280000pt;}
.w11{width:407.120000pt;}
.w1{width:559.333333pt;}
.w0{width:559.440000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.840000pt;}
.x36{left:3.520000pt;}
.x3e{left:5.360000pt;}
.xd{left:6.707333pt;}
.xc{left:8.441867pt;}
.x2c{left:9.450667pt;}
.xe{left:10.710000pt;}
.x1f{left:11.632267pt;}
.x24{left:12.544400pt;}
.x19{left:13.532267pt;}
.x12{left:14.444667pt;}
.x11{left:19.630933pt;}
.x29{left:20.542933pt;}
.x41{left:22.560000pt;}
.x1e{left:24.476000pt;}
.x1b{left:26.400000pt;}
.xb{left:27.654267pt;}
.x3a{left:28.800000pt;}
.x6{left:32.080000pt;}
.x17{left:33.404667pt;}
.x20{left:34.972000pt;}
.x28{left:38.087600pt;}
.x1a{left:47.347733pt;}
.x25{left:49.444667pt;}
.x2a{left:53.668400pt;}
.x21{left:54.843600pt;}
.x23{left:56.929733pt;}
.x13{left:58.037467pt;}
.x16{left:66.380667pt;}
.xf{left:73.016800pt;}
.x1{left:75.600000pt;}
.x31{left:77.440000pt;}
.x43{left:85.680000pt;}
.x30{left:89.840000pt;}
.x15{left:103.740000pt;}
.x1d{left:105.805333pt;}
.x18{left:107.472000pt;}
.x7{left:113.444160pt;}
.x1c{left:126.656000pt;}
.x9{left:132.316000pt;}
.x2e{left:142.800000pt;}
.x39{left:146.160000pt;}
.x3f{left:147.760000pt;}
.x33{left:152.003920pt;}
.x34{left:153.844640pt;}
.x40{left:154.800000pt;}
.x3c{left:157.600000pt;}
.x32{left:162.080000pt;}
.x35{left:163.612160pt;}
.x3b{left:166.963200pt;}
.x3d{left:169.818080pt;}
.x2f{left:236.560000pt;}
.x37{left:240.080000pt;}
.x22{left:272.664000pt;}
.x42{left:289.167120pt;}
.xa{left:297.600000pt;}
.x14{left:308.628000pt;}
.x2b{left:309.737333pt;}
.x38{left:321.680000pt;}
.x10{left:324.140000pt;}
.x27{left:330.332000pt;}
.x4{left:337.280000pt;}
.x26{left:338.720000pt;}
.x3{left:367.116000pt;}
.x2{left:385.840000pt;}
.x5{left:396.720000pt;}
.x8{left:521.680000pt;}
}




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