
    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_0af0b9eae52ab068978efbbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d6aa69edee08c4e903cc40f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cc757f5d87b6aa58658e3147.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_708f09c3dd083534e7d678f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c5773fd6bc6a73a1bbbb7672.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a3df4e7e7f8634b2be0fba3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.146000;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_4a7e5d0a2dd4dbc20c66dde0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c16a9826856ab7f6b5eda717.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_20644ed937656e4ac3434c45.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_82e3e5bca9e1d853365a7cdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b219178b7476a88af782d5ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.242602px;}
.v1{vertical-align:24.000000px;}
.ls43{letter-spacing:-2.601000px;}
.ls46{letter-spacing:-1.632000px;}
.ls5d{letter-spacing:-1.560000px;}
.ls5f{letter-spacing:-1.440000px;}
.ls60{letter-spacing:-1.380000px;}
.ls5e{letter-spacing:-1.320000px;}
.ls4d{letter-spacing:-1.260000px;}
.ls80{letter-spacing:-1.224000px;}
.ls4a{letter-spacing:-1.200000px;}
.ls47{letter-spacing:-1.140000px;}
.ls44{letter-spacing:-1.122000px;}
.ls5a{letter-spacing:-1.080000px;}
.ls9d{letter-spacing:-1.071000px;}
.ls49{letter-spacing:-1.020000px;}
.ls4c{letter-spacing:-0.960000px;}
.ls4b{letter-spacing:-0.900000px;}
.ls7b{letter-spacing:-0.867000px;}
.ls5b{letter-spacing:-0.840000px;}
.ls78{letter-spacing:-0.816000px;}
.ls5c{letter-spacing:-0.780000px;}
.ls79{letter-spacing:-0.765000px;}
.ls59{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.660000px;}
.ls77{letter-spacing:-0.612000px;}
.ls48{letter-spacing:-0.600000px;}
.ls58{letter-spacing:-0.540000px;}
.ls7d{letter-spacing:-0.510000px;}
.ls26{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.420000px;}
.ls7e{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.360000px;}
.ls81{letter-spacing:-0.357000px;}
.ls7f{letter-spacing:-0.306000px;}
.ls16{letter-spacing:-0.300000px;}
.ls7c{letter-spacing:-0.255000px;}
.ls12{letter-spacing:-0.240000px;}
.ls82{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.180000px;}
.ls9e{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.102000px;}
.ls11{letter-spacing:-0.060000px;}
.ls83{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000037px;}
.ls90{letter-spacing:0.025500px;}
.ls1d{letter-spacing:0.030000px;}
.ls66{letter-spacing:0.051000px;}
.lsb{letter-spacing:0.060000px;}
.ls63{letter-spacing:0.076500px;}
.lsc{letter-spacing:0.090000px;}
.ls69{letter-spacing:0.102000px;}
.ls1a{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.150000px;}
.ls71{letter-spacing:0.153000px;}
.lsb5{letter-spacing:0.173392px;}
.ls93{letter-spacing:0.178500px;}
.lsf{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.204000px;}
.ls3d{letter-spacing:0.209930px;}
.ls3e{letter-spacing:0.210000px;}
.lsc6{letter-spacing:0.229500px;}
.ls2{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.255000px;}
.ls65{letter-spacing:0.264000px;}
.ls4e{letter-spacing:0.270000px;}
.ls6a{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.lsb8{letter-spacing:0.305993px;}
.ls8e{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.330000px;}
.lsa3{letter-spacing:0.331500px;}
.ls67{letter-spacing:0.357000px;}
.lse{letter-spacing:0.360000px;}
.lsa6{letter-spacing:0.382500px;}
.ls18{letter-spacing:0.390000px;}
.ls64{letter-spacing:0.408000px;}
.lsa{letter-spacing:0.420000px;}
.lsa8{letter-spacing:0.433500px;}
.ls3b{letter-spacing:0.450000px;}
.ls68{letter-spacing:0.459000px;}
.ls50{letter-spacing:0.466919px;}
.ls4{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.510000px;}
.ls86{letter-spacing:0.535500px;}
.ls2b{letter-spacing:0.540000px;}
.ls73{letter-spacing:0.561000px;}
.ls34{letter-spacing:0.570000px;}
.ls1c{letter-spacing:0.600000px;}
.ls6b{letter-spacing:0.612000px;}
.ls1f{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.660000px;}
.ls62{letter-spacing:0.663000px;}
.ls70{letter-spacing:0.714000px;}
.lsd{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.750000px;}
.ls6c{letter-spacing:0.765000px;}
.ls22{letter-spacing:0.780000px;}
.ls51{letter-spacing:0.803988px;}
.ls2d{letter-spacing:0.810000px;}
.ls6e{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.840000px;}
.lsba{letter-spacing:0.841500px;}
.ls9a{letter-spacing:0.867000px;}
.ls3c{letter-spacing:0.870000px;}
.lsbd{letter-spacing:0.892500px;}
.ls8{letter-spacing:0.900000px;}
.ls88{letter-spacing:0.918000px;}
.ls3f{letter-spacing:0.930000px;}
.ls4f{letter-spacing:0.935994px;}
.lsa5{letter-spacing:0.943500px;}
.ls9{letter-spacing:0.960000px;}
.ls87{letter-spacing:0.969000px;}
.ls2c{letter-spacing:0.990000px;}
.ls1b{letter-spacing:1.020000px;}
.ls75{letter-spacing:1.071000px;}
.ls19{letter-spacing:1.080000px;}
.lsc3{letter-spacing:1.086256px;}
.ls72{letter-spacing:1.096500px;}
.lsc7{letter-spacing:1.101591px;}
.ls45{letter-spacing:1.110000px;}
.ls9f{letter-spacing:1.122000px;}
.lsa9{letter-spacing:1.137300px;}
.ls2e{letter-spacing:1.140000px;}
.ls6f{letter-spacing:1.173000px;}
.ls25{letter-spacing:1.200000px;}
.ls8b{letter-spacing:1.224000px;}
.lsbc{letter-spacing:1.249500px;}
.ls21{letter-spacing:1.260000px;}
.lsa2{letter-spacing:1.275000px;}
.ls92{letter-spacing:1.300500px;}
.ls2a{letter-spacing:1.320000px;}
.ls8a{letter-spacing:1.326000px;}
.ls84{letter-spacing:1.376984px;}
.ls99{letter-spacing:1.377000px;}
.ls24{letter-spacing:1.380000px;}
.lsad{letter-spacing:1.397400px;}
.lsaa{letter-spacing:1.428000px;}
.ls28{letter-spacing:1.440000px;}
.ls94{letter-spacing:1.479000px;}
.ls6{letter-spacing:1.500000px;}
.lsb2{letter-spacing:1.504500px;}
.ls31{letter-spacing:1.530000px;}
.ls29{letter-spacing:1.560000px;}
.lsa0{letter-spacing:1.581000px;}
.lsb9{letter-spacing:1.606500px;}
.ls2f{letter-spacing:1.620000px;}
.lsa1{letter-spacing:1.632000px;}
.ls35{letter-spacing:1.680000px;}
.lsa7{letter-spacing:1.683000px;}
.ls9b{letter-spacing:1.734000px;}
.ls20{letter-spacing:1.740000px;}
.lsbe{letter-spacing:1.784984px;}
.ls95{letter-spacing:1.785000px;}
.ls32{letter-spacing:1.800000px;}
.ls36{letter-spacing:1.860000px;}
.ls3a{letter-spacing:1.890000px;}
.ls85{letter-spacing:1.907381px;}
.ls37{letter-spacing:1.920000px;}
.lsc0{letter-spacing:1.938000px;}
.lsb1{letter-spacing:1.963500px;}
.ls55{letter-spacing:1.980000px;}
.lsc8{letter-spacing:1.989000px;}
.lsb3{letter-spacing:2.014500px;}
.lsb0{letter-spacing:2.019600px;}
.ls38{letter-spacing:2.040000px;}
.lsbb{letter-spacing:2.070600px;}
.ls8d{letter-spacing:2.075660px;}
.ls57{letter-spacing:2.100000px;}
.ls52{letter-spacing:2.160000px;}
.lsc5{letter-spacing:2.203200px;}
.ls54{letter-spacing:2.220000px;}
.ls98{letter-spacing:2.269484px;}
.ls56{letter-spacing:2.280000px;}
.lsa4{letter-spacing:2.330700px;}
.ls89{letter-spacing:2.335800px;}
.ls39{letter-spacing:2.340000px;}
.lsb6{letter-spacing:2.397000px;}
.ls30{letter-spacing:2.400000px;}
.ls6d{letter-spacing:2.575500px;}
.ls53{letter-spacing:2.640000px;}
.lsbf{letter-spacing:2.703000px;}
.lsae{letter-spacing:2.728500px;}
.lsc4{letter-spacing:2.835574px;}
.ls9c{letter-spacing:3.636300px;}
.lsaf{letter-spacing:3.748467px;}
.ls76{letter-spacing:3.814800px;}
.ls1{letter-spacing:3.990000px;}
.ls96{letter-spacing:4.146300px;}
.lsab{letter-spacing:4.447193px;}
.ls8f{letter-spacing:4.692000px;}
.lsc2{letter-spacing:4.788900px;}
.ls74{letter-spacing:5.059200px;}
.ls8c{letter-spacing:5.227479px;}
.lsb4{letter-spacing:5.298900px;}
.ls91{letter-spacing:5.865000px;}
.lsac{letter-spacing:6.074100px;}
.lsc1{letter-spacing:6.201600px;}
.ls97{letter-spacing:7.481700px;}
.lsb7{letter-spacing:8.323190px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws63{word-spacing:-17.040000px;}
.ws94{word-spacing:-16.200000px;}
.wsa0{word-spacing:-16.080000px;}
.ws4e{word-spacing:-15.960000px;}
.ws71{word-spacing:-15.930000px;}
.ws64{word-spacing:-15.870000px;}
.ws7a{word-spacing:-15.720000px;}
.wsab{word-spacing:-15.660000px;}
.wsb9{word-spacing:-15.480000px;}
.wsb8{word-spacing:-15.450000px;}
.ws70{word-spacing:-15.300000px;}
.wsb3{word-spacing:-15.180000px;}
.ws91{word-spacing:-15.000000px;}
.wsc8{word-spacing:-14.832000px;}
.ws23{word-spacing:-14.820000px;}
.ws127{word-spacing:-14.688000px;}
.ws7{word-spacing:-14.544000px;}
.wsf0{word-spacing:-14.535000px;}
.wsb6{word-spacing:-14.460000px;}
.wsf2{word-spacing:-14.280000px;}
.wscb{word-spacing:-13.923000px;}
.wsef{word-spacing:-13.872000px;}
.ws110{word-spacing:-13.770000px;}
.wsb7{word-spacing:-13.740000px;}
.wsf3{word-spacing:-13.719000px;}
.wsee{word-spacing:-13.413000px;}
.ws111{word-spacing:-13.209000px;}
.wse2{word-spacing:-13.005000px;}
.wsc9{word-spacing:-12.903000px;}
.wsc7{word-spacing:-12.852000px;}
.ws9{word-spacing:-12.750000px;}
.wsca{word-spacing:-12.699000px;}
.wsf1{word-spacing:-12.648000px;}
.ws24{word-spacing:-12.474000px;}
.ws128{word-spacing:-12.444000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.wsf8{word-spacing:-12.240000px;}
.wsd8{word-spacing:-11.985000px;}
.ws6{word-spacing:-11.520000px;}
.ws9b{word-spacing:-11.118000px;}
.ws2{word-spacing:-9.996000px;}
.wsc6{word-spacing:-9.180000px;}
.ws8{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws90{word-spacing:-6.375000px;}
.wsdc{word-spacing:-2.550000px;}
.ws125{word-spacing:-2.397000px;}
.ws6b{word-spacing:-2.340000px;}
.wsdb{word-spacing:-1.938000px;}
.ws68{word-spacing:-1.920000px;}
.wsae{word-spacing:-1.860000px;}
.ws106{word-spacing:-1.785000px;}
.ws66{word-spacing:-1.740000px;}
.ws113{word-spacing:-1.632000px;}
.ws93{word-spacing:-1.560000px;}
.ws10c{word-spacing:-1.530000px;}
.wsb{word-spacing:-1.500000px;}
.ws10f{word-spacing:-1.479000px;}
.ws57{word-spacing:-1.440000px;}
.ws45{word-spacing:-1.380000px;}
.ws103{word-spacing:-1.326000px;}
.ws53{word-spacing:-1.320000px;}
.wscf{word-spacing:-1.275000px;}
.ws42{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.224000px;}
.ws34{word-spacing:-1.200000px;}
.ws120{word-spacing:-1.173000px;}
.ws65{word-spacing:-1.140000px;}
.ws12f{word-spacing:-1.122000px;}
.wsc{word-spacing:-1.080000px;}
.wsde{word-spacing:-1.071000px;}
.ws1c{word-spacing:-1.020000px;}
.wsd2{word-spacing:-0.969000px;}
.ws17{word-spacing:-0.960000px;}
.wsfb{word-spacing:-0.918000px;}
.ws16{word-spacing:-0.900000px;}
.ws123{word-spacing:-0.867000px;}
.ws29{word-spacing:-0.840000px;}
.ws107{word-spacing:-0.816000px;}
.ws47{word-spacing:-0.780000px;}
.wsd0{word-spacing:-0.765000px;}
.ws1f{word-spacing:-0.720000px;}
.wsdf{word-spacing:-0.714000px;}
.ws100{word-spacing:-0.663000px;}
.ws37{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws48{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws109{word-spacing:-0.561000px;}
.ws10{word-spacing:-0.540000px;}
.wsf5{word-spacing:-0.510000px;}
.ws38{word-spacing:-0.480000px;}
.wscc{word-spacing:-0.459000px;}
.ws4f{word-spacing:-0.420000px;}
.ws115{word-spacing:-0.408000px;}
.ws1e{word-spacing:-0.360000px;}
.wsf6{word-spacing:-0.357000px;}
.wsd1{word-spacing:-0.306000px;}
.ws18{word-spacing:-0.300000px;}
.wsda{word-spacing:-0.264000px;}
.wse1{word-spacing:-0.255000px;}
.ws1d{word-spacing:-0.240000px;}
.wse5{word-spacing:-0.204000px;}
.ws2c{word-spacing:-0.180000px;}
.wse9{word-spacing:-0.153000px;}
.ws2b{word-spacing:-0.120000px;}
.wsf4{word-spacing:-0.102000px;}
.ws1a{word-spacing:-0.060000px;}
.ws114{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wseb{word-spacing:0.051000px;}
.ws26{word-spacing:0.060000px;}
.ws101{word-spacing:0.102000px;}
.ws6f{word-spacing:0.120000px;}
.ws102{word-spacing:0.153000px;}
.ws31{word-spacing:0.180000px;}
.wsf7{word-spacing:0.204000px;}
.ws50{word-spacing:0.240000px;}
.wse3{word-spacing:0.255000px;}
.ws4c{word-spacing:0.300000px;}
.wsd4{word-spacing:0.306000px;}
.ws130{word-spacing:0.357000px;}
.ws1b{word-spacing:0.360000px;}
.wse4{word-spacing:0.408000px;}
.ws11{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.ws82{word-spacing:0.510000px;}
.ws3e{word-spacing:0.540000px;}
.ws9f{word-spacing:0.600000px;}
.ws11d{word-spacing:0.612000px;}
.wse{word-spacing:0.660000px;}
.ws7e{word-spacing:0.720000px;}
.wsaa{word-spacing:0.765000px;}
.ws3a{word-spacing:0.780000px;}
.wsd{word-spacing:0.840000px;}
.wsce{word-spacing:0.867000px;}
.ws52{word-spacing:0.900000px;}
.ws11a{word-spacing:0.918000px;}
.wsac{word-spacing:0.960000px;}
.ws7f{word-spacing:0.969000px;}
.ws12b{word-spacing:1.020000px;}
.ws79{word-spacing:1.071000px;}
.ws33{word-spacing:1.080000px;}
.ws40{word-spacing:1.140000px;}
.wsdd{word-spacing:1.173000px;}
.ws3f{word-spacing:1.200000px;}
.wsd9{word-spacing:1.224000px;}
.ws5e{word-spacing:1.260000px;}
.wsd5{word-spacing:1.275000px;}
.ws74{word-spacing:1.320000px;}
.wscd{word-spacing:1.326000px;}
.ws39{word-spacing:1.380000px;}
.ws81{word-spacing:1.428000px;}
.ws4d{word-spacing:1.440000px;}
.wsfc{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws117{word-spacing:1.530000px;}
.ws43{word-spacing:1.560000px;}
.wsd7{word-spacing:1.581000px;}
.ws60{word-spacing:1.620000px;}
.wsb2{word-spacing:1.632000px;}
.ws5c{word-spacing:1.680000px;}
.wse7{word-spacing:1.683000px;}
.ws11b{word-spacing:1.734000px;}
.ws14{word-spacing:1.740000px;}
.wsd6{word-spacing:1.785000px;}
.ws51{word-spacing:1.800000px;}
.ws32{word-spacing:1.860000px;}
.wse0{word-spacing:1.887000px;}
.ws13{word-spacing:1.920000px;}
.ws11e{word-spacing:1.938000px;}
.ws28{word-spacing:1.980000px;}
.ws10e{word-spacing:1.989000px;}
.ws20{word-spacing:2.040000px;}
.wsc4{word-spacing:2.091000px;}
.ws49{word-spacing:2.100000px;}
.wsfd{word-spacing:2.142000px;}
.wsb5{word-spacing:2.160000px;}
.wsb1{word-spacing:2.193000px;}
.ws15{word-spacing:2.220000px;}
.ws30{word-spacing:2.280000px;}
.ws5f{word-spacing:2.340000px;}
.ws112{word-spacing:2.397000px;}
.ws25{word-spacing:2.400000px;}
.ws19{word-spacing:2.460000px;}
.ws116{word-spacing:2.499000px;}
.ws62{word-spacing:2.520000px;}
.ws129{word-spacing:2.550000px;}
.ws35{word-spacing:2.580000px;}
.ws96{word-spacing:2.601000px;}
.ws5b{word-spacing:2.640000px;}
.wsfa{word-spacing:2.652000px;}
.ws2f{word-spacing:2.700000px;}
.wsc3{word-spacing:2.703000px;}
.wsb0{word-spacing:2.754000px;}
.ws2e{word-spacing:2.760000px;}
.ws10b{word-spacing:2.805000px;}
.ws2d{word-spacing:2.820000px;}
.wsf9{word-spacing:2.856000px;}
.ws3c{word-spacing:2.880000px;}
.ws3d{word-spacing:2.940000px;}
.ws46{word-spacing:3.000000px;}
.ws6c{word-spacing:3.060000px;}
.ws67{word-spacing:3.120000px;}
.ws10a{word-spacing:3.162000px;}
.ws69{word-spacing:3.180000px;}
.wse8{word-spacing:3.213000px;}
.ws3b{word-spacing:3.240000px;}
.ws27{word-spacing:3.300000px;}
.wsec{word-spacing:3.315000px;}
.ws5d{word-spacing:3.360000px;}
.wsed{word-spacing:3.366000px;}
.ws73{word-spacing:3.420000px;}
.ws124{word-spacing:3.468000px;}
.ws75{word-spacing:3.540000px;}
.wsea{word-spacing:3.570000px;}
.ws54{word-spacing:3.600000px;}
.ws92{word-spacing:3.660000px;}
.ws5a{word-spacing:3.720000px;}
.ws12e{word-spacing:3.723000px;}
.ws4a{word-spacing:3.780000px;}
.ws55{word-spacing:3.840000px;}
.ws80{word-spacing:3.876000px;}
.wsad{word-spacing:3.900000px;}
.wse6{word-spacing:3.927000px;}
.ws41{word-spacing:3.960000px;}
.ws121{word-spacing:3.978000px;}
.ws76{word-spacing:4.020000px;}
.ws108{word-spacing:4.029000px;}
.wsb4{word-spacing:4.080000px;}
.ws6e{word-spacing:4.140000px;}
.wsff{word-spacing:4.182000px;}
.ws4b{word-spacing:4.200000px;}
.ws12c{word-spacing:4.233000px;}
.ws59{word-spacing:4.260000px;}
.ws72{word-spacing:4.320000px;}
.ws12d{word-spacing:4.335000px;}
.ws104{word-spacing:4.539000px;}
.wsaf{word-spacing:4.560000px;}
.ws44{word-spacing:4.620000px;}
.ws11f{word-spacing:4.641000px;}
.ws11c{word-spacing:4.692000px;}
.wsa9{word-spacing:4.743000px;}
.wsfe{word-spacing:4.794000px;}
.ws95{word-spacing:4.800000px;}
.ws7b{word-spacing:4.860000px;}
.ws7c{word-spacing:4.980000px;}
.ws7d{word-spacing:5.040000px;}
.ws56{word-spacing:5.100000px;}
.ws118{word-spacing:5.253000px;}
.ws12{word-spacing:5.340000px;}
.ws6a{word-spacing:5.400000px;}
.ws12a{word-spacing:5.406000px;}
.ws105{word-spacing:5.457000px;}
.ws58{word-spacing:5.460000px;}
.ws119{word-spacing:5.559000px;}
.ws61{word-spacing:5.580000px;}
.ws10d{word-spacing:5.865000px;}
.ws77{word-spacing:5.940000px;}
.ws126{word-spacing:6.426000px;}
.ws36{word-spacing:6.540000px;}
.ws6d{word-spacing:6.600000px;}
.wsc5{word-spacing:7.548000px;}
.ws78{word-spacing:8.670000px;}
.ws122{word-spacing:11.730000px;}
.ws131{word-spacing:13.515000px;}
.ws132{word-spacing:17.595000px;}
.wsa2{word-spacing:54.621000px;}
.wsa4{word-spacing:56.865000px;}
.wsa3{word-spacing:57.885000px;}
.wsa1{word-spacing:63.189000px;}
.ws21{word-spacing:72.267000px;}
.wsa7{word-spacing:73.797000px;}
.wsa8{word-spacing:74.919000px;}
.ws87{word-spacing:78.947990px;}
.ws8e{word-spacing:84.965991px;}
.wsa5{word-spacing:97.104000px;}
.wsbb{word-spacing:104.652000px;}
.wsc0{word-spacing:117.402000px;}
.ws99{word-spacing:130.406993px;}
.ws98{word-spacing:132.651000px;}
.ws9a{word-spacing:133.671000px;}
.ws84{word-spacing:166.820990px;}
.ws9c{word-spacing:171.768000px;}
.ws83{word-spacing:172.023000px;}
.ws8b{word-spacing:172.838991px;}
.ws8a{word-spacing:178.041000px;}
.ws8c{word-spacing:181.304991px;}
.ws85{word-spacing:200.786990px;}
.wsbe{word-spacing:255.102000px;}
.ws86{word-spacing:266.577000px;}
.wsba{word-spacing:267.852000px;}
.ws8d{word-spacing:272.595000px;}
.wsbf{word-spacing:280.602000px;}
.ws9e{word-spacing:285.294000px;}
.wsbd{word-spacing:292.740000px;}
.ws9d{word-spacing:303.807000px;}
.wsc2{word-spacing:305.490000px;}
.wsbc{word-spacing:311.253000px;}
.wsc1{word-spacing:324.003000px;}
.ws89{word-spacing:651.401385px;}
.ws88{word-spacing:691.743065px;}
.ws8f{word-spacing:715.814385px;}
.wsa6{word-spacing:797.436000px;}
.ws97{word-spacing:798.293348px;}
._d{margin-left:-2959.377061px;}
._8{margin-left:-72.675000px;}
._5{margin-left:-16.575000px;}
._48{margin-left:-12.801000px;}
._6b{margin-left:-5.661000px;}
._1{margin-left:-4.622700px;}
._2{margin-left:-2.697600px;}
._0{margin-left:-1.632000px;}
._4{width:1.578000px;}
._a{width:3.480000px;}
._c{width:4.794000px;}
._b{width:6.126000px;}
._6a{width:8.313000px;}
._52{width:10.148991px;}
._e{width:11.781000px;}
._69{width:13.820981px;}
._f{width:15.391500px;}
._35{width:16.671600px;}
._6{width:18.360000px;}
._3{width:40.442956px;}
._7{width:54.621000px;}
._51{width:67.371000px;}
._50{width:86.547000px;}
._4c{width:87.669000px;}
._4e{width:92.871000px;}
._4d{width:96.186000px;}
._4f{width:100.317000px;}
._41{width:108.732000px;}
._3e{width:115.056000px;}
._3f{width:118.371000px;}
._43{width:122.502000px;}
._5e{width:125.052000px;}
._53{width:127.092000px;}
._4a{width:135.354000px;}
._49{width:140.556000px;}
._4b{width:143.871000px;}
._40{width:148.002000px;}
._56{width:153.153000px;}
._55{width:155.397000px;}
._5a{width:163.302000px;}
._62{width:165.698990px;}
._61{width:168.147000px;}
._31{width:173.348982px;}
._58{width:176.361000px;}
._1b{width:179.009997px;}
._11{width:180.131993px;}
._5d{width:181.356000px;}
._14{width:184.110000px;}
._2a{width:185.589000px;}
._17{width:188.036990px;}
._63{width:189.825022px;}
._29{width:194.870982px;}
._2e{width:197.829010px;}
._13{width:199.358990px;}
._59{width:207.060000px;}
._37{width:211.038000px;}
._20{width:212.805825px;}
._23{width:214.268155px;}
._24{width:215.474993px;}
._1e{width:218.127000px;}
._38{width:223.125011px;}
._57{width:229.245000px;}
._19{width:231.335988px;}
._3c{width:234.294000px;}
._1a{width:236.996993px;}
._5b{width:241.740000px;}
._18{width:243.627000px;}
._12{width:253.317000px;}
._67{width:254.490000px;}
._3a{width:261.323995px;}
._5c{width:268.719000px;}
._2c{width:274.890000px;}
._34{width:276.419981px;}
._3b{width:279.530995px;}
._68{width:281.469000px;}
._16{width:292.944000px;}
._1f{width:295.085988px;}
._2b{width:298.962000px;}
._65{width:312.273000px;}
._39{width:315.945000px;}
._1d{width:318.444000px;}
._28{width:324.105000px;}
._66{width:330.480000px;}
._64{width:336.141000px;}
._26{width:343.944000px;}
._15{width:378.419993px;}
._54{width:425.343908px;}
._5f{width:451.047908px;}
._36{width:494.945348px;}
._25{width:512.756986px;}
._60{width:514.845000px;}
._32{width:524.792989px;}
._33{width:550.748989px;}
._27{width:564.212986px;}
._1c{width:565.538993px;}
._10{width:638.072765px;}
._2f{width:651.065989px;}
._22{width:654.483000px;}
._21{width:664.529986px;}
._2d{width:686.046600px;}
._30{width:703.188000px;}
._3d{width:704.667000px;}
._46{width:727.923000px;}
._44{width:748.985984px;}
._45{width:767.192984px;}
._47{width:788.511000px;}
._42{width:809.574000px;}
._9{width:1831.920058px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y23{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y59{bottom:112.938300px;}
.y15f{bottom:112.944300px;}
.y164{bottom:112.956300px;}
.y27c{bottom:112.975803px;}
.y175{bottom:113.373299px;}
.yb3{bottom:113.415298px;}
.y8f{bottom:113.415344px;}
.y14f{bottom:113.544342px;}
.y1cf{bottom:113.683823px;}
.y1da{bottom:114.132305px;}
.y16d{bottom:114.564308px;}
.ye7{bottom:114.735306px;}
.y1b6{bottom:114.874786px;}
.y20d{bottom:114.874947px;}
.y2a2{bottom:116.246546px;}
.y309{bottom:116.614823px;}
.y38d{bottom:116.997307px;}
.y34b{bottom:117.010073px;}
.y4f{bottom:122.461349px;}
.y2c7{bottom:125.617820px;}
.y15e{bottom:127.938300px;}
.y163{bottom:127.950300px;}
.y27b{bottom:127.969803px;}
.y2a1{bottom:131.240546px;}
.y308{bottom:131.608823px;}
.y38c{bottom:131.991307px;}
.y34a{bottom:132.004073px;}
.y174{bottom:132.123299px;}
.yb2{bottom:132.165298px;}
.y8e{bottom:132.165344px;}
.y14e{bottom:132.294342px;}
.y1ce{bottom:132.433823px;}
.y1d9{bottom:132.882305px;}
.y58{bottom:133.032303px;}
.y16c{bottom:133.314308px;}
.ye6{bottom:133.485306px;}
.y1b5{bottom:133.624786px;}
.y20c{bottom:133.624947px;}
.y22{bottom:139.264499px;}
.y2c6{bottom:140.611820px;}
.y4e{bottom:141.211349px;}
.y162{bottom:142.944300px;}
.y2a0{bottom:146.234546px;}
.y307{bottom:146.602823px;}
.y38b{bottom:146.985307px;}
.y349{bottom:146.998073px;}
.y15d{bottom:148.032303px;}
.y57{bottom:150.485553px;}
.y173{bottom:150.873299px;}
.yb1{bottom:150.915298px;}
.y8d{bottom:150.915344px;}
.y14d{bottom:151.044342px;}
.y1cd{bottom:151.183823px;}
.y1e2{bottom:151.632305px;}
.y16b{bottom:152.064308px;}
.y11b{bottom:152.235260px;}
.ye5{bottom:152.235306px;}
.y1b4{bottom:152.374786px;}
.y20b{bottom:152.374947px;}
.y2c5{bottom:155.605820px;}
.y161{bottom:157.938300px;}
.y4d{bottom:159.961349px;}
.y29f{bottom:161.228546px;}
.y306{bottom:161.596823px;}
.y38a{bottom:161.979307px;}
.y348{bottom:161.992073px;}
.y24c{bottom:165.154094px;}
.y172{bottom:169.623299px;}
.yb0{bottom:169.665298px;}
.y8c{bottom:169.665344px;}
.y14c{bottom:169.794342px;}
.y1cc{bottom:169.933823px;}
.y1e1{bottom:170.382305px;}
.y1d8{bottom:170.388305px;}
.y56{bottom:170.579556px;}
.y2c4{bottom:170.599820px;}
.y16a{bottom:170.814308px;}
.y11a{bottom:170.985260px;}
.ye4{bottom:170.985306px;}
.y1b3{bottom:171.124786px;}
.y20a{bottom:171.124947px;}
.y29e{bottom:176.222546px;}
.y305{bottom:176.590823px;}
.y389{bottom:176.973307px;}
.y347{bottom:176.986073px;}
.y160{bottom:178.032303px;}
.y4c{bottom:178.711349px;}
.y24b{bottom:180.148094px;}
.y2c3{bottom:185.593820px;}
.y55{bottom:188.032794px;}
.y171{bottom:188.373299px;}
.yaf{bottom:188.415298px;}
.y8b{bottom:188.415344px;}
.y14b{bottom:188.544342px;}
.y1cb{bottom:188.683823px;}
.y1d7{bottom:189.132305px;}
.y169{bottom:189.564308px;}
.y119{bottom:189.735260px;}
.ye3{bottom:189.735306px;}
.y1b2{bottom:189.874786px;}
.y209{bottom:189.874947px;}
.y29d{bottom:191.216546px;}
.y304{bottom:191.584823px;}
.y388{bottom:191.967307px;}
.y346{bottom:191.980073px;}
.y19{bottom:196.933500px;}
.y4b{bottom:197.461349px;}
.y249{bottom:197.488792px;}
.y24a{bottom:199.400594px;}
.y2c2{bottom:200.587820px;}
.y29c{bottom:206.210546px;}
.y303{bottom:206.578823px;}
.y387{bottom:206.961307px;}
.y345{bottom:206.974073px;}
.y170{bottom:207.123299px;}
.yae{bottom:207.165298px;}
.y8a{bottom:207.165344px;}
.y14a{bottom:207.294342px;}
.y1ca{bottom:207.433823px;}
.y1e0{bottom:207.882305px;}
.y54{bottom:208.126808px;}
.y168{bottom:208.314308px;}
.y118{bottom:208.485260px;}
.ye2{bottom:208.485306px;}
.y1b1{bottom:208.624786px;}
.y208{bottom:208.624947px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y2c1{bottom:215.581820px;}
.y4a{bottom:216.211349px;}
.y302{bottom:221.572823px;}
.y386{bottom:221.955307px;}
.y344{bottom:221.968073px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y53{bottom:225.580059px;}
.y16f{bottom:225.873299px;}
.yad{bottom:225.915298px;}
.y89{bottom:225.915344px;}
.y149{bottom:226.044342px;}
.y1c9{bottom:226.183823px;}
.y1d6{bottom:226.632294px;}
.y1df{bottom:226.632305px;}
.y279{bottom:226.878277px;}
.y167{bottom:227.064308px;}
.y117{bottom:227.235260px;}
.ye1{bottom:227.235306px;}
.y1b0{bottom:227.374786px;}
.y207{bottom:227.374947px;}
.y2c0{bottom:230.575820px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y49{bottom:234.961349px;}
.y248{bottom:234.988792px;}
.y29b{bottom:236.211296px;}
.y301{bottom:236.566823px;}
.y15c{bottom:236.610306px;}
.y385{bottom:236.949307px;}
.y343{bottom:236.962073px;}
.yac{bottom:244.665298px;}
.y88{bottom:244.665344px;}
.y148{bottom:244.794342px;}
.y1c8{bottom:244.933823px;}
.y1d5{bottom:245.382294px;}
.y1de{bottom:245.382305px;}
.y2bf{bottom:245.569820px;}
.y278{bottom:245.671777px;}
.y52{bottom:245.674049px;}
.y166{bottom:245.814308px;}
.y116{bottom:245.985260px;}
.ye0{bottom:245.985306px;}
.y1af{bottom:246.124786px;}
.y206{bottom:246.124947px;}
.y300{bottom:251.560823px;}
.y384{bottom:251.943307px;}
.y342{bottom:251.956073px;}
.y48{bottom:253.711349px;}
.y15b{bottom:255.360306px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y2be{bottom:260.563820px;}
.y16e{bottom:263.373299px;}
.yab{bottom:263.415298px;}
.y87{bottom:263.415344px;}
.y147{bottom:263.544342px;}
.y1c7{bottom:263.683823px;}
.y1d4{bottom:264.132294px;}
.y1dd{bottom:264.132305px;}
.y277{bottom:264.388777px;}
.y165{bottom:264.564308px;}
.y115{bottom:264.735260px;}
.ydf{bottom:264.735306px;}
.y1ae{bottom:264.874786px;}
.y205{bottom:264.874947px;}
.y29a{bottom:266.211296px;}
.y2ff{bottom:266.554823px;}
.y383{bottom:266.937307px;}
.y341{bottom:266.950073px;}
.y51{bottom:270.674541px;}
.y47{bottom:272.461349px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y2bd{bottom:275.557820px;}
.y2fe{bottom:281.548823px;}
.y382{bottom:281.931307px;}
.y340{bottom:281.944073px;}
.yaa{bottom:282.165298px;}
.y86{bottom:282.165344px;}
.y146{bottom:282.294342px;}
.y1c6{bottom:282.433823px;}
.y1d3{bottom:282.882294px;}
.y1dc{bottom:282.882305px;}
.y276{bottom:283.105777px;}
.y1ff{bottom:283.314308px;}
.y114{bottom:283.485260px;}
.yde{bottom:283.485306px;}
.y1ad{bottom:283.624786px;}
.y204{bottom:283.624947px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y50{bottom:285.668541px;}
.y2bc{bottom:290.551820px;}
.y46{bottom:291.211349px;}
.y2fd{bottom:296.542823px;}
.y381{bottom:296.925307px;}
.y33f{bottom:296.938073px;}
.y299{bottom:300.097069px;}
.ya9{bottom:300.915298px;}
.y85{bottom:300.915344px;}
.y145{bottom:301.044342px;}
.y1c5{bottom:301.183823px;}
.y1d2{bottom:301.632294px;}
.y1db{bottom:301.632305px;}
.y275{bottom:301.822777px;}
.y1fe{bottom:302.064308px;}
.y113{bottom:302.235260px;}
.ydd{bottom:302.235306px;}
.y1ac{bottom:302.374786px;}
.y203{bottom:302.374947px;}
.y2bb{bottom:305.545820px;}
.y45{bottom:309.961349px;}
.y18b{bottom:310.039501px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y2fc{bottom:311.536823px;}
.y380{bottom:311.919307px;}
.y33e{bottom:311.932073px;}
.y298{bottom:315.091069px;}
.ya8{bottom:319.665298px;}
.y84{bottom:319.665344px;}
.y144{bottom:319.794342px;}
.y1c4{bottom:319.933823px;}
.y274{bottom:320.539777px;}
.y2ba{bottom:320.539820px;}
.y1fd{bottom:320.814308px;}
.y112{bottom:320.985260px;}
.ydc{bottom:320.985306px;}
.y1ab{bottom:321.124786px;}
.y215{bottom:321.124947px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2fb{bottom:326.530823px;}
.y37f{bottom:326.913307px;}
.y33d{bottom:326.926073px;}
.y43{bottom:328.711349px;}
.y297{bottom:330.085069px;}
.y2b9{bottom:335.533820px;}
.y199{bottom:337.908766px;}
.ya7{bottom:338.415298px;}
.y83{bottom:338.415344px;}
.y143{bottom:338.544342px;}
.y1c3{bottom:338.683823px;}
.y273{bottom:339.256777px;}
.y1fc{bottom:339.564308px;}
.y111{bottom:339.735260px;}
.ydb{bottom:339.735306px;}
.y1aa{bottom:339.874786px;}
.y202{bottom:339.874809px;}
.y214{bottom:339.874947px;}
.y2fa{bottom:341.524823px;}
.y37e{bottom:341.907307px;}
.y33c{bottom:341.920073px;}
.y296{bottom:345.079069px;}
.y42{bottom:347.461349px;}
.y10{bottom:348.133500px;}
.y2b8{bottom:350.527820px;}
.y2f9{bottom:356.518823px;}
.y198{bottom:356.702266px;}
.y37d{bottom:356.901307px;}
.y33b{bottom:356.914073px;}
.ya6{bottom:357.165298px;}
.y82{bottom:357.165344px;}
.y142{bottom:357.294342px;}
.y1c2{bottom:357.433823px;}
.y272{bottom:357.973777px;}
.y1fb{bottom:358.314308px;}
.y110{bottom:358.485260px;}
.yda{bottom:358.485306px;}
.y1a9{bottom:358.624786px;}
.y213{bottom:358.624947px;}
.y295{bottom:360.073069px;}
.y2b7{bottom:365.521820px;}
.y41{bottom:366.211349px;}
.y2f8{bottom:371.512823px;}
.y37c{bottom:371.895307px;}
.y33a{bottom:371.908073px;}
.y294{bottom:375.067069px;}
.y197{bottom:375.419266px;}
.ya5{bottom:375.915298px;}
.y81{bottom:375.915344px;}
.y141{bottom:376.044342px;}
.y1c1{bottom:376.183823px;}
.y271{bottom:376.690777px;}
.y1fa{bottom:377.064308px;}
.y10f{bottom:377.235260px;}
.yd9{bottom:377.235306px;}
.y1a8{bottom:377.374786px;}
.y212{bottom:377.374947px;}
.y2b6{bottom:380.515820px;}
.y1ea{bottom:382.126019px;}
.y40{bottom:384.961349px;}
.y2f7{bottom:386.506823px;}
.yf{bottom:386.785499px;}
.y37b{bottom:386.889307px;}
.y339{bottom:386.902073px;}
.y196{bottom:394.136266px;}
.ya4{bottom:394.665298px;}
.y80{bottom:394.665344px;}
.y140{bottom:394.794342px;}
.y1c0{bottom:394.933823px;}
.y270{bottom:395.407777px;}
.y2b5{bottom:395.509820px;}
.y10e{bottom:395.985260px;}
.yd8{bottom:395.985306px;}
.y1a7{bottom:396.124786px;}
.y211{bottom:396.124947px;}
.y1e9{bottom:397.120019px;}
.y2f6{bottom:401.500823px;}
.y3bb{bottom:401.679324px;}
.y37a{bottom:401.883307px;}
.y338{bottom:401.896073px;}
.y3f{bottom:403.711349px;}
.y293{bottom:405.067819px;}
.ye{bottom:408.044999px;}
.y2b4{bottom:410.503820px;}
.y195{bottom:412.853266px;}
.ya3{bottom:413.415298px;}
.y7f{bottom:413.415344px;}
.y13f{bottom:413.544342px;}
.y1bf{bottom:413.683823px;}
.y26f{bottom:414.124777px;}
.y10d{bottom:414.735260px;}
.yd7{bottom:414.735306px;}
.y1a6{bottom:414.874786px;}
.y210{bottom:414.874947px;}
.y1e8{bottom:416.372519px;}
.y2f5{bottom:416.494823px;}
.y3ba{bottom:416.673324px;}
.y379{bottom:416.877307px;}
.y337{bottom:416.890073px;}
.y292{bottom:420.061819px;}
.y3e{bottom:422.461349px;}
.y201{bottom:423.600449px;}
.y152{bottom:424.110260px;}
.y2b3{bottom:425.497820px;}
.y27e{bottom:427.356449px;}
.y2f4{bottom:431.488823px;}
.y378{bottom:431.871307px;}
.y336{bottom:431.884073px;}
.ya2{bottom:432.165298px;}
.y7e{bottom:432.165344px;}
.y13e{bottom:432.294342px;}
.y26e{bottom:432.841777px;}
.y10c{bottom:433.485260px;}
.yd6{bottom:433.485306px;}
.y1a5{bottom:433.624786px;}
.y20f{bottom:433.624947px;}
.y291{bottom:435.055819px;}
.y2b2{bottom:440.491820px;}
.y194{bottom:440.928766px;}
.y3d{bottom:441.211349px;}
.y27d{bottom:442.350449px;}
.y151{bottom:442.860260px;}
.y1f9{bottom:444.287681px;}
.y2f3{bottom:446.482823px;}
.y3b9{bottom:446.763323px;}
.y377{bottom:446.865307px;}
.y335{bottom:446.878073px;}
.y290{bottom:450.049819px;}
.ya1{bottom:450.915298px;}
.y7d{bottom:450.915344px;}
.y13d{bottom:451.044342px;}
.y1be{bottom:451.189823px;}
.y26d{bottom:451.558777px;}
.y10b{bottom:452.235260px;}
.yd5{bottom:452.235306px;}
.y1a4{bottom:452.374786px;}
.y20e{bottom:452.374947px;}
.y2b1{bottom:455.485820px;}
.y3c{bottom:459.961349px;}
.y2f2{bottom:461.476823px;}
.y150{bottom:461.610260px;}
.y3b8{bottom:461.757323px;}
.y376{bottom:461.859307px;}
.y334{bottom:461.872073px;}
.y1f8{bottom:463.081181px;}
.y28f{bottom:465.043819px;}
.y193{bottom:465.345016px;}
.ya0{bottom:469.665298px;}
.y7c{bottom:469.665344px;}
.y13c{bottom:469.794342px;}
.y1bd{bottom:469.933823px;}
.y26c{bottom:470.275777px;}
.y2b0{bottom:470.479820px;}
.y10a{bottom:470.985260px;}
.yd4{bottom:470.985306px;}
.y1a3{bottom:471.124786px;}
.y2f1{bottom:476.470823px;}
.y3b7{bottom:476.751323px;}
.y375{bottom:476.853307px;}
.y333{bottom:476.866073px;}
.y3b{bottom:478.711349px;}
.y28e{bottom:480.037819px;}
.y1f7{bottom:481.798181px;}
.yd{bottom:484.864502px;}
.y2af{bottom:485.473820px;}
.y192{bottom:486.942160px;}
.y9f{bottom:488.415298px;}
.y7b{bottom:488.415344px;}
.y13b{bottom:488.544342px;}
.y26b{bottom:488.992777px;}
.y109{bottom:489.735260px;}
.yd3{bottom:489.735306px;}
.y1a2{bottom:489.874786px;}
.y2f0{bottom:491.464823px;}
.y3b6{bottom:491.745323px;}
.y374{bottom:491.847307px;}
.y332{bottom:491.860073px;}
.y28d{bottom:495.031819px;}
.y44{bottom:497.461349px;}
.y21e{bottom:499.623920px;}
.y2ae{bottom:500.467820px;}
.y1f6{bottom:500.515181px;}
.yc{bottom:502.864502px;}
.y191{bottom:505.659160px;}
.y2ef{bottom:506.458823px;}
.y3b5{bottom:506.739323px;}
.y373{bottom:506.841307px;}
.y331{bottom:506.854073px;}
.y9e{bottom:507.165298px;}
.y7a{bottom:507.165344px;}
.y13a{bottom:507.294342px;}
.y26a{bottom:507.709777px;}
.y108{bottom:508.485260px;}
.yd2{bottom:508.485306px;}
.y1a1{bottom:508.624786px;}
.y28c{bottom:510.025819px;}
.y21d{bottom:514.657077px;}
.y2ad{bottom:515.461820px;}
.y3a{bottom:516.211349px;}
.y1f5{bottom:519.232181px;}
.y1d1{bottom:519.496814px;}
.yb{bottom:520.864502px;}
.y2ee{bottom:521.452823px;}
.y3b4{bottom:521.733323px;}
.y372{bottom:521.835307px;}
.y330{bottom:521.848073px;}
.y190{bottom:524.376160px;}
.y28b{bottom:525.019819px;}
.y9d{bottom:525.915298px;}
.y79{bottom:525.915344px;}
.y139{bottom:526.044342px;}
.y269{bottom:526.426777px;}
.y107{bottom:527.235260px;}
.yd1{bottom:527.235306px;}
.y1bb{bottom:527.374786px;}
.y21c{bottom:529.651077px;}
.y2ac{bottom:530.455820px;}
.y1d0{bottom:534.490814px;}
.y2ed{bottom:536.446823px;}
.y3b3{bottom:536.727323px;}
.y371{bottom:536.829307px;}
.y32f{bottom:536.842073px;}
.y1f4{bottom:537.949181px;}
.ya{bottom:538.864499px;}
.y18f{bottom:543.093160px;}
.y9c{bottom:544.665298px;}
.y78{bottom:544.665344px;}
.y138{bottom:544.794342px;}
.y268{bottom:545.143777px;}
.y2ab{bottom:545.449820px;}
.y106{bottom:545.985260px;}
.yd0{bottom:545.985306px;}
.y1ba{bottom:546.124786px;}
.y1a0{bottom:546.130786px;}
.y21b{bottom:548.903577px;}
.y2ec{bottom:551.440823px;}
.y3b2{bottom:551.721323px;}
.y370{bottom:551.823307px;}
.y32e{bottom:551.836073px;}
.y28a{bottom:555.020569px;}
.y1f3{bottom:556.666181px;}
.y9{bottom:556.864499px;}
.y2aa{bottom:560.443820px;}
.y18e{bottom:561.810160px;}
.y9b{bottom:563.415298px;}
.y77{bottom:563.415344px;}
.y137{bottom:563.544342px;}
.y267{bottom:563.860777px;}
.y105{bottom:564.735260px;}
.ycf{bottom:564.735306px;}
.y19f{bottom:564.874786px;}
.y2eb{bottom:566.434823px;}
.y3b1{bottom:566.715323px;}
.y36f{bottom:566.817307px;}
.y32d{bottom:566.830073px;}
.y289{bottom:570.014569px;}
.y39{bottom:572.461395px;}
.y1f2{bottom:575.383181px;}
.y2a9{bottom:575.437820px;}
.y239{bottom:576.556219px;}
.y2ea{bottom:581.428823px;}
.y3b0{bottom:581.709323px;}
.y36e{bottom:581.811307px;}
.y32c{bottom:581.824073px;}
.y9a{bottom:582.165298px;}
.y76{bottom:582.165344px;}
.y136{bottom:582.294342px;}
.y266{bottom:582.577777px;}
.y104{bottom:583.485260px;}
.yce{bottom:583.485306px;}
.y1b9{bottom:583.624786px;}
.y288{bottom:585.008569px;}
.y18d{bottom:589.885660px;}
.y1f1{bottom:594.100181px;}
.y238{bottom:595.349719px;}
.y2e9{bottom:596.422823px;}
.y3af{bottom:596.703323px;}
.y36d{bottom:596.805307px;}
.y32b{bottom:596.818073px;}
.y287{bottom:600.002569px;}
.y99{bottom:600.915298px;}
.y75{bottom:600.915344px;}
.y135{bottom:601.044342px;}
.y265{bottom:601.294777px;}
.y103{bottom:602.235260px;}
.ycd{bottom:602.235306px;}
.y19e{bottom:602.374786px;}
.y2a8{bottom:609.187820px;}
.y38{bottom:609.961395px;}
.y2e8{bottom:611.416823px;}
.y3ae{bottom:611.697323px;}
.y36c{bottom:611.799307px;}
.y32a{bottom:611.812073px;}
.y1f0{bottom:612.817181px;}
.y237{bottom:614.066719px;}
.y18c{bottom:614.301910px;}
.y286{bottom:614.996569px;}
.y98{bottom:619.665298px;}
.y74{bottom:619.665344px;}
.y134{bottom:619.794342px;}
.y264{bottom:620.011777px;}
.y102{bottom:620.985260px;}
.ycc{bottom:620.985306px;}
.y1b8{bottom:621.124786px;}
.y2e7{bottom:626.410823px;}
.y3ad{bottom:626.691323px;}
.y36b{bottom:626.793307px;}
.y329{bottom:626.806073px;}
.y37{bottom:628.711395px;}
.y15a{bottom:630.360306px;}
.y1ef{bottom:631.534181px;}
.y236{bottom:632.783719px;}
.y97{bottom:638.415298px;}
.y73{bottom:638.415344px;}
.y133{bottom:638.544342px;}
.y263{bottom:638.728777px;}
.y101{bottom:639.735260px;}
.ycb{bottom:639.735306px;}
.y18a{bottom:639.767251px;}
.y1b7{bottom:639.874786px;}
.y2e6{bottom:641.404823px;}
.y3ac{bottom:641.685323px;}
.y36a{bottom:641.787307px;}
.y328{bottom:641.800073px;}
.y285{bottom:644.997319px;}
.y8{bottom:645.510000px;}
.y36{bottom:647.461395px;}
.y159{bottom:649.110306px;}
.y235{bottom:651.500719px;}
.y2e5{bottom:656.398823px;}
.y3ab{bottom:656.679323px;}
.y369{bottom:656.781307px;}
.y327{bottom:656.794073px;}
.y96{bottom:657.165298px;}
.y72{bottom:657.165344px;}
.y132{bottom:657.294342px;}
.y262{bottom:657.445777px;}
.y100{bottom:658.485260px;}
.yca{bottom:658.485306px;}
.y19d{bottom:658.624786px;}
.y1ee{bottom:659.622431px;}
.y284{bottom:659.991319px;}
.y35{bottom:666.211395px;}
.y7{bottom:666.771000px;}
.y1e7{bottom:669.600269px;}
.y234{bottom:670.217719px;}
.y2e4{bottom:671.392823px;}
.y3aa{bottom:671.673323px;}
.y368{bottom:671.775307px;}
.y326{bottom:671.788073px;}
.y283{bottom:674.985319px;}
.y2a7{bottom:675.168296px;}
.y95{bottom:675.915298px;}
.y71{bottom:675.915344px;}
.y131{bottom:676.044342px;}
.y261{bottom:676.162777px;}
.yff{bottom:677.235260px;}
.yc9{bottom:677.235306px;}
.y19c{bottom:677.374786px;}
.y1ed{bottom:684.038681px;}
.y1e6{bottom:684.594269px;}
.y34{bottom:684.961395px;}
.y177{bottom:685.366851px;}
.y2e3{bottom:686.386823px;}
.y3a9{bottom:686.667323px;}
.y367{bottom:686.769307px;}
.y325{bottom:686.782073px;}
.y233{bottom:688.934719px;}
.y282{bottom:689.979319px;}
.y2a6{bottom:690.162296px;}
.y1ec{bottom:693.757190px;}
.y94{bottom:694.665298px;}
.y70{bottom:694.665344px;}
.y130{bottom:694.794342px;}
.y260{bottom:694.879777px;}
.yfe{bottom:695.985260px;}
.yfa{bottom:695.985306px;}
.y19b{bottom:696.124786px;}
.y1e5{bottom:699.588269px;}
.y2e2{bottom:701.380823px;}
.y3a8{bottom:701.661323px;}
.y366{bottom:701.763307px;}
.y324{bottom:701.776073px;}
.y33{bottom:703.711395px;}
.y281{bottom:704.973319px;}
.y2a5{bottom:705.156296px;}
.y232{bottom:707.651719px;}
.y1eb{bottom:708.751190px;}
.y189{bottom:713.360249px;}
.y93{bottom:713.415298px;}
.y6f{bottom:713.415344px;}
.y12f{bottom:713.544342px;}
.y25f{bottom:713.596777px;}
.y1e4{bottom:714.582269px;}
.yfd{bottom:714.735260px;}
.yf9{bottom:714.735306px;}
.yc8{bottom:714.741306px;}
.y19a{bottom:714.874786px;}
.y2e1{bottom:716.374823px;}
.y3a7{bottom:716.655323px;}
.y365{bottom:716.757307px;}
.y323{bottom:716.770073px;}
.y280{bottom:719.967319px;}
.y2a4{bottom:720.150296px;}
.y32{bottom:722.461395px;}
.y6{bottom:726.298500px;}
.y231{bottom:726.368719px;}
.y2e0{bottom:731.368823px;}
.y3a6{bottom:731.649323px;}
.y364{bottom:731.751307px;}
.y322{bottom:731.764073px;}
.y188{bottom:732.153749px;}
.y92{bottom:732.165298px;}
.y6e{bottom:732.165344px;}
.y12e{bottom:732.294342px;}
.y25e{bottom:732.313777px;}
.yfc{bottom:733.485260px;}
.yc7{bottom:733.485306px;}
.y27f{bottom:734.961319px;}
.y2a3{bottom:735.144296px;}
.y31{bottom:741.211395px;}
.y230{bottom:745.085719px;}
.y2df{bottom:746.362823px;}
.y3a5{bottom:746.643323px;}
.y363{bottom:746.745307px;}
.y321{bottom:746.758073px;}
.y187{bottom:750.870749px;}
.y91{bottom:750.915298px;}
.y6d{bottom:750.915344px;}
.y25d{bottom:751.030777px;}
.y12d{bottom:751.044342px;}
.yfb{bottom:752.235260px;}
.y158{bottom:752.235306px;}
.yf8{bottom:752.241260px;}
.y3{bottom:752.599495px;}
.y30{bottom:759.961395px;}
.y2de{bottom:761.356823px;}
.y3a4{bottom:761.637323px;}
.y362{bottom:761.739307px;}
.y320{bottom:761.752073px;}
.y22f{bottom:763.802719px;}
.y200{bottom:765.790787px;}
.y1bc{bottom:769.570770px;}
.y186{bottom:769.587749px;}
.y6c{bottom:769.665344px;}
.y25c{bottom:769.747777px;}
.y12c{bottom:769.794342px;}
.yc6{bottom:770.985260px;}
.y157{bottom:770.985306px;}
.y2dd{bottom:776.350823px;}
.y3a3{bottom:776.631323px;}
.y361{bottom:776.733307px;}
.y31f{bottom:776.746073px;}
.y2f{bottom:778.711395px;}
.y22e{bottom:782.456655px;}
.y27a{bottom:783.916767px;}
.y185{bottom:788.304749px;}
.y6b{bottom:788.415344px;}
.y90{bottom:788.421344px;}
.y25b{bottom:788.464777px;}
.y12b{bottom:788.544342px;}
.yc5{bottom:789.735260px;}
.y156{bottom:789.735306px;}
.y2dc{bottom:791.344823px;}
.y3a2{bottom:791.625323px;}
.y360{bottom:791.727307px;}
.y31e{bottom:791.740073px;}
.y2e{bottom:797.461395px;}
.y1e3{bottom:798.910767px;}
.y22d{bottom:801.173655px;}
.y2db{bottom:806.338823px;}
.y3a1{bottom:806.619323px;}
.y35f{bottom:806.721307px;}
.y31d{bottom:806.734073px;}
.y184{bottom:807.021749px;}
.y6a{bottom:807.165344px;}
.y25a{bottom:807.181777px;}
.y12a{bottom:807.294342px;}
.yc4{bottom:808.485260px;}
.yf7{bottom:808.485306px;}
.y2d{bottom:816.211395px;}
.y22c{bottom:819.890655px;}
.y2da{bottom:821.332823px;}
.y3a0{bottom:821.613323px;}
.y35e{bottom:821.715307px;}
.y31c{bottom:821.728073px;}
.y183{bottom:825.738749px;}
.y259{bottom:825.898777px;}
.y69{bottom:825.915344px;}
.y129{bottom:826.044342px;}
.yc3{bottom:827.235260px;}
.yf6{bottom:827.235306px;}
.y2c{bottom:834.961395px;}
.y2d9{bottom:836.326823px;}
.y39f{bottom:836.607323px;}
.y35d{bottom:836.709307px;}
.y31b{bottom:836.722073px;}
.y22b{bottom:838.607655px;}
.y258{bottom:844.615777px;}
.y247{bottom:844.665298px;}
.y68{bottom:844.665344px;}
.y128{bottom:844.794342px;}
.yc2{bottom:845.985260px;}
.yf5{bottom:845.985306px;}
.y2d8{bottom:851.320823px;}
.y39e{bottom:851.601323px;}
.y35c{bottom:851.703307px;}
.y31a{bottom:851.716073px;}
.y182{bottom:853.814249px;}
.y22a{bottom:857.324655px;}
.y257{bottom:863.332777px;}
.y246{bottom:863.415298px;}
.y67{bottom:863.415344px;}
.y127{bottom:863.544342px;}
.yc1{bottom:864.735260px;}
.yf4{bottom:864.735306px;}
.y2d7{bottom:866.314823px;}
.y39d{bottom:866.595323px;}
.y35b{bottom:866.697307px;}
.y319{bottom:866.710073px;}
.y229{bottom:876.041655px;}
.y181{bottom:878.230499px;}
.y2b{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y2d6{bottom:881.308823px;}
.y39c{bottom:881.589323px;}
.y35a{bottom:881.691307px;}
.y318{bottom:881.704073px;}
.y256{bottom:882.049777px;}
.y245{bottom:882.165298px;}
.y66{bottom:882.165344px;}
.y126{bottom:882.294342px;}
.yc0{bottom:883.485260px;}
.yf3{bottom:883.485306px;}
.y2a{bottom:894.138153px;}
.y228{bottom:894.758655px;}
.y2d5{bottom:896.302823px;}
.y39b{bottom:896.583323px;}
.y359{bottom:896.685307px;}
.y317{bottom:896.698073px;}
.y180{bottom:899.818524px;}
.y255{bottom:900.766777px;}
.y244{bottom:900.915298px;}
.y65{bottom:900.915344px;}
.y125{bottom:901.044342px;}
.ybf{bottom:902.235260px;}
.yf2{bottom:902.235306px;}
.y2d4{bottom:911.296823px;}
.y39a{bottom:911.577323px;}
.y155{bottom:911.610306px;}
.y358{bottom:911.679307px;}
.y316{bottom:911.692073px;}
.y227{bottom:913.475655px;}
.y17f{bottom:918.535524px;}
.y254{bottom:919.483777px;}
.y243{bottom:919.665298px;}
.y64{bottom:919.665344px;}
.y124{bottom:919.794342px;}
.ybe{bottom:920.985260px;}
.yf1{bottom:920.985306px;}
.y2d3{bottom:926.290823px;}
.y399{bottom:926.571323px;}
.y357{bottom:926.673307px;}
.y315{bottom:926.686073px;}
.y154{bottom:930.360306px;}
.y226{bottom:932.192655px;}
.y29{bottom:936.738190px;}
.y17e{bottom:937.252524px;}
.y253{bottom:938.200777px;}
.y242{bottom:938.415298px;}
.y63{bottom:938.415344px;}
.y123{bottom:938.544342px;}
.ybd{bottom:939.735260px;}
.yf0{bottom:939.735306px;}
.y2d2{bottom:941.284823px;}
.y398{bottom:941.565323px;}
.y356{bottom:941.667307px;}
.y314{bottom:941.680073px;}
.y153{bottom:949.110306px;}
.y225{bottom:950.909655px;}
.y17d{bottom:955.969524px;}
.y2d1{bottom:956.278823px;}
.y397{bottom:956.559323px;}
.y355{bottom:956.661307px;}
.y313{bottom:956.674073px;}
.y252{bottom:956.917777px;}
.y241{bottom:957.165298px;}
.y62{bottom:957.165344px;}
.y122{bottom:957.294342px;}
.ybc{bottom:958.485260px;}
.yef{bottom:958.485306px;}
.y1{bottom:966.726000px;}
.y224{bottom:969.626655px;}
.y2d0{bottom:971.272823px;}
.y396{bottom:971.553323px;}
.y354{bottom:971.655307px;}
.y312{bottom:971.668073px;}
.y17c{bottom:974.686524px;}
.y251{bottom:975.634777px;}
.y240{bottom:975.915298px;}
.y61{bottom:975.915344px;}
.y121{bottom:976.044342px;}
.ybb{bottom:977.235260px;}
.yee{bottom:977.235306px;}
.y28{bottom:981.424622px;}
.y2cf{bottom:986.266823px;}
.y395{bottom:986.547323px;}
.y353{bottom:986.649307px;}
.y311{bottom:986.662073px;}
.y223{bottom:988.343655px;}
.y17b{bottom:993.403524px;}
.y250{bottom:994.351777px;}
.y23f{bottom:994.665298px;}
.y60{bottom:994.665344px;}
.y120{bottom:994.794342px;}
.yba{bottom:995.985260px;}
.yed{bottom:995.985306px;}
.y2ce{bottom:1001.260823px;}
.y394{bottom:1001.541323px;}
.y352{bottom:1001.643307px;}
.y310{bottom:1001.656073px;}
.y222{bottom:1007.060655px;}
.y27{bottom:1008.424622px;}
.y17a{bottom:1012.120524px;}
.y24f{bottom:1013.068777px;}
.y23e{bottom:1013.415298px;}
.y5f{bottom:1013.415344px;}
.y11f{bottom:1013.544342px;}
.yb9{bottom:1014.735260px;}
.yec{bottom:1014.735306px;}
.y21a{bottom:1015.132844px;}
.y2cd{bottom:1016.254823px;}
.y393{bottom:1016.535323px;}
.y351{bottom:1016.637307px;}
.y30f{bottom:1016.650073px;}
.y219{bottom:1030.126844px;}
.y2cc{bottom:1031.248823px;}
.y392{bottom:1031.529323px;}
.y350{bottom:1031.631307px;}
.y30e{bottom:1031.644073px;}
.y24e{bottom:1031.785777px;}
.y23d{bottom:1032.165298px;}
.y5e{bottom:1032.165344px;}
.y11e{bottom:1032.294342px;}
.yb8{bottom:1033.485260px;}
.yeb{bottom:1033.485306px;}
.y221{bottom:1035.148905px;}
.y179{bottom:1040.196024px;}
.y218{bottom:1045.120844px;}
.y2cb{bottom:1046.242823px;}
.y391{bottom:1046.523323px;}
.y34f{bottom:1046.625307px;}
.y30d{bottom:1046.638073px;}
.y23c{bottom:1050.915298px;}
.y5d{bottom:1050.915344px;}
.yb7{bottom:1052.235260px;}
.yea{bottom:1052.235306px;}
.y220{bottom:1059.565155px;}
.y24d{bottom:1059.861277px;}
.y217{bottom:1060.114844px;}
.y2ca{bottom:1061.236823px;}
.y390{bottom:1061.517323px;}
.y34e{bottom:1061.619307px;}
.y30c{bottom:1061.632073px;}
.y178{bottom:1064.612274px;}
.y23b{bottom:1069.665298px;}
.y5c{bottom:1069.665344px;}
.y11d{bottom:1069.800342px;}
.yb6{bottom:1070.985260px;}
.ye9{bottom:1070.985306px;}
.y216{bottom:1075.108844px;}
.y26{bottom:1076.132080px;}
.y2c9{bottom:1076.230823px;}
.y38f{bottom:1076.511323px;}
.y34d{bottom:1076.613307px;}
.y30b{bottom:1076.626073px;}
.y21f{bottom:1084.277527px;}
.y23a{bottom:1088.415298px;}
.y5b{bottom:1088.415344px;}
.y11c{bottom:1088.544342px;}
.yb5{bottom:1089.735260px;}
.ye8{bottom:1089.735306px;}
.y176{bottom:1090.102844px;}
.y2c8{bottom:1091.224823px;}
.y38e{bottom:1091.505323px;}
.y34c{bottom:1091.607307px;}
.y30a{bottom:1091.620073px;}
.y25{bottom:1109.586556px;}
.y24{bottom:1126.582306px;}
.y5a{bottom:1127.482361px;}
.yb4{bottom:1127.482544px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h15{height:33.129599px;}
.hc{height:33.840000px;}
.hd{height:44.676000px;}
.h7{height:45.960000px;}
.h14{height:47.328000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1c{height:52.173000px;}
.h1a{height:53.160000px;}
.h1e{height:53.372201px;}
.h1f{height:53.763672px;}
.h1d{height:53.805000px;}
.h2{height:55.152000px;}
.he{height:55.461000px;}
.h12{height:55.680000px;}
.h16{height:59.004000px;}
.h11{height:59.340000px;}
.h17{height:61.380000px;}
.h1b{height:62.976000px;}
.h19{height:62.976183px;}
.h18{height:63.300000px;}
.h10{height:64.866000px;}
.h13{height:71.208000px;}
.h5{height:78.132000px;}
.hf{height:85.056000px;}
.h4{height:119.055004px;}
.ha{height:1186.299000px;}
.hb{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.xb{left:93.515402px;}
.xa{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x17{left:107.301164px;}
.x4{left:203.484001px;}
.xe{left:225.402145px;}
.xd{left:235.933342px;}
.xf{left:267.874652px;}
.x11{left:272.330047px;}
.x13{left:278.487610px;}
.x14{left:360.532221px;}
.x15{left:363.719721px;}
.x10{left:368.097748px;}
.x3{left:454.959000px;}
.x8{left:459.215402px;}
.x9{left:476.225402px;}
.x16{left:489.965540px;}
.x12{left:499.199844px;}
.x5{left:728.220612px;}
.xc{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.993424pt;}
.v1{vertical-align:21.333333pt;}
.ls43{letter-spacing:-2.312000pt;}
.ls46{letter-spacing:-1.450667pt;}
.ls5d{letter-spacing:-1.386667pt;}
.ls5f{letter-spacing:-1.280000pt;}
.ls60{letter-spacing:-1.226667pt;}
.ls5e{letter-spacing:-1.173333pt;}
.ls4d{letter-spacing:-1.120000pt;}
.ls80{letter-spacing:-1.088000pt;}
.ls4a{letter-spacing:-1.066667pt;}
.ls47{letter-spacing:-1.013333pt;}
.ls44{letter-spacing:-0.997333pt;}
.ls5a{letter-spacing:-0.960000pt;}
.ls9d{letter-spacing:-0.952000pt;}
.ls49{letter-spacing:-0.906667pt;}
.ls4c{letter-spacing:-0.853333pt;}
.ls4b{letter-spacing:-0.800000pt;}
.ls7b{letter-spacing:-0.770667pt;}
.ls5b{letter-spacing:-0.746667pt;}
.ls78{letter-spacing:-0.725333pt;}
.ls5c{letter-spacing:-0.693333pt;}
.ls79{letter-spacing:-0.680000pt;}
.ls59{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.586667pt;}
.ls77{letter-spacing:-0.544000pt;}
.ls48{letter-spacing:-0.533333pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls7d{letter-spacing:-0.453333pt;}
.ls26{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.373333pt;}
.ls7e{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls81{letter-spacing:-0.317333pt;}
.ls7f{letter-spacing:-0.272000pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls7c{letter-spacing:-0.226667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls82{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls9e{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.090667pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls83{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000033pt;}
.ls90{letter-spacing:0.022667pt;}
.ls1d{letter-spacing:0.026667pt;}
.ls66{letter-spacing:0.045333pt;}
.lsb{letter-spacing:0.053333pt;}
.ls63{letter-spacing:0.068000pt;}
.lsc{letter-spacing:0.080000pt;}
.ls69{letter-spacing:0.090667pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.133333pt;}
.ls71{letter-spacing:0.136000pt;}
.lsb5{letter-spacing:0.154126pt;}
.ls93{letter-spacing:0.158667pt;}
.lsf{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.181333pt;}
.ls3d{letter-spacing:0.186605pt;}
.ls3e{letter-spacing:0.186667pt;}
.lsc6{letter-spacing:0.204000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.226667pt;}
.ls65{letter-spacing:0.234667pt;}
.ls4e{letter-spacing:0.240000pt;}
.ls6a{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.lsb8{letter-spacing:0.271994pt;}
.ls8e{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.293333pt;}
.lsa3{letter-spacing:0.294667pt;}
.ls67{letter-spacing:0.317333pt;}
.lse{letter-spacing:0.320000pt;}
.lsa6{letter-spacing:0.340000pt;}
.ls18{letter-spacing:0.346667pt;}
.ls64{letter-spacing:0.362667pt;}
.lsa{letter-spacing:0.373333pt;}
.lsa8{letter-spacing:0.385333pt;}
.ls3b{letter-spacing:0.400000pt;}
.ls68{letter-spacing:0.408000pt;}
.ls50{letter-spacing:0.415039pt;}
.ls4{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.453333pt;}
.ls86{letter-spacing:0.476000pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls73{letter-spacing:0.498667pt;}
.ls34{letter-spacing:0.506667pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls6b{letter-spacing:0.544000pt;}
.ls1f{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls62{letter-spacing:0.589333pt;}
.ls70{letter-spacing:0.634667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.666667pt;}
.ls6c{letter-spacing:0.680000pt;}
.ls22{letter-spacing:0.693333pt;}
.ls51{letter-spacing:0.714656pt;}
.ls2d{letter-spacing:0.720000pt;}
.ls6e{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.746667pt;}
.lsba{letter-spacing:0.748000pt;}
.ls9a{letter-spacing:0.770667pt;}
.ls3c{letter-spacing:0.773333pt;}
.lsbd{letter-spacing:0.793333pt;}
.ls8{letter-spacing:0.800000pt;}
.ls88{letter-spacing:0.816000pt;}
.ls3f{letter-spacing:0.826667pt;}
.ls4f{letter-spacing:0.831995pt;}
.lsa5{letter-spacing:0.838667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls87{letter-spacing:0.861333pt;}
.ls2c{letter-spacing:0.880000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls75{letter-spacing:0.952000pt;}
.ls19{letter-spacing:0.960000pt;}
.lsc3{letter-spacing:0.965560pt;}
.ls72{letter-spacing:0.974667pt;}
.lsc7{letter-spacing:0.979192pt;}
.ls45{letter-spacing:0.986667pt;}
.ls9f{letter-spacing:0.997333pt;}
.lsa9{letter-spacing:1.010933pt;}
.ls2e{letter-spacing:1.013333pt;}
.ls6f{letter-spacing:1.042667pt;}
.ls25{letter-spacing:1.066667pt;}
.ls8b{letter-spacing:1.088000pt;}
.lsbc{letter-spacing:1.110667pt;}
.ls21{letter-spacing:1.120000pt;}
.lsa2{letter-spacing:1.133333pt;}
.ls92{letter-spacing:1.156000pt;}
.ls2a{letter-spacing:1.173333pt;}
.ls8a{letter-spacing:1.178667pt;}
.ls84{letter-spacing:1.223985pt;}
.ls99{letter-spacing:1.224000pt;}
.ls24{letter-spacing:1.226667pt;}
.lsad{letter-spacing:1.242133pt;}
.lsaa{letter-spacing:1.269333pt;}
.ls28{letter-spacing:1.280000pt;}
.ls94{letter-spacing:1.314667pt;}
.ls6{letter-spacing:1.333333pt;}
.lsb2{letter-spacing:1.337333pt;}
.ls31{letter-spacing:1.360000pt;}
.ls29{letter-spacing:1.386667pt;}
.lsa0{letter-spacing:1.405333pt;}
.lsb9{letter-spacing:1.428000pt;}
.ls2f{letter-spacing:1.440000pt;}
.lsa1{letter-spacing:1.450667pt;}
.ls35{letter-spacing:1.493333pt;}
.lsa7{letter-spacing:1.496000pt;}
.ls9b{letter-spacing:1.541333pt;}
.ls20{letter-spacing:1.546667pt;}
.lsbe{letter-spacing:1.586652pt;}
.ls95{letter-spacing:1.586667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls36{letter-spacing:1.653333pt;}
.ls3a{letter-spacing:1.680000pt;}
.ls85{letter-spacing:1.695449pt;}
.ls37{letter-spacing:1.706667pt;}
.lsc0{letter-spacing:1.722667pt;}
.lsb1{letter-spacing:1.745333pt;}
.ls55{letter-spacing:1.760000pt;}
.lsc8{letter-spacing:1.768000pt;}
.lsb3{letter-spacing:1.790667pt;}
.lsb0{letter-spacing:1.795200pt;}
.ls38{letter-spacing:1.813333pt;}
.lsbb{letter-spacing:1.840533pt;}
.ls8d{letter-spacing:1.845031pt;}
.ls57{letter-spacing:1.866667pt;}
.ls52{letter-spacing:1.920000pt;}
.lsc5{letter-spacing:1.958400pt;}
.ls54{letter-spacing:1.973333pt;}
.ls98{letter-spacing:2.017319pt;}
.ls56{letter-spacing:2.026667pt;}
.lsa4{letter-spacing:2.071733pt;}
.ls89{letter-spacing:2.076267pt;}
.ls39{letter-spacing:2.080000pt;}
.lsb6{letter-spacing:2.130667pt;}
.ls30{letter-spacing:2.133333pt;}
.ls6d{letter-spacing:2.289333pt;}
.ls53{letter-spacing:2.346667pt;}
.lsbf{letter-spacing:2.402667pt;}
.lsae{letter-spacing:2.425333pt;}
.lsc4{letter-spacing:2.520510pt;}
.ls9c{letter-spacing:3.232267pt;}
.lsaf{letter-spacing:3.331971pt;}
.ls76{letter-spacing:3.390933pt;}
.ls1{letter-spacing:3.546667pt;}
.ls96{letter-spacing:3.685600pt;}
.lsab{letter-spacing:3.953060pt;}
.ls8f{letter-spacing:4.170667pt;}
.lsc2{letter-spacing:4.256800pt;}
.ls74{letter-spacing:4.497067pt;}
.ls8c{letter-spacing:4.646648pt;}
.lsb4{letter-spacing:4.710133pt;}
.ls91{letter-spacing:5.213333pt;}
.lsac{letter-spacing:5.399200pt;}
.lsc1{letter-spacing:5.512533pt;}
.ls97{letter-spacing:6.650400pt;}
.lsb7{letter-spacing:7.398391pt;}
.ws63{word-spacing:-15.146667pt;}
.ws94{word-spacing:-14.400000pt;}
.wsa0{word-spacing:-14.293333pt;}
.ws4e{word-spacing:-14.186667pt;}
.ws71{word-spacing:-14.160000pt;}
.ws64{word-spacing:-14.106667pt;}
.ws7a{word-spacing:-13.973333pt;}
.wsab{word-spacing:-13.920000pt;}
.wsb9{word-spacing:-13.760000pt;}
.wsb8{word-spacing:-13.733333pt;}
.ws70{word-spacing:-13.600000pt;}
.wsb3{word-spacing:-13.493333pt;}
.ws91{word-spacing:-13.333333pt;}
.wsc8{word-spacing:-13.184000pt;}
.ws23{word-spacing:-13.173333pt;}
.ws127{word-spacing:-13.056000pt;}
.ws7{word-spacing:-12.928000pt;}
.wsf0{word-spacing:-12.920000pt;}
.wsb6{word-spacing:-12.853333pt;}
.wsf2{word-spacing:-12.693333pt;}
.wscb{word-spacing:-12.376000pt;}
.wsef{word-spacing:-12.330667pt;}
.ws110{word-spacing:-12.240000pt;}
.wsb7{word-spacing:-12.213333pt;}
.wsf3{word-spacing:-12.194667pt;}
.wsee{word-spacing:-11.922667pt;}
.ws111{word-spacing:-11.741333pt;}
.wse2{word-spacing:-11.560000pt;}
.wsc9{word-spacing:-11.469333pt;}
.wsc7{word-spacing:-11.424000pt;}
.ws9{word-spacing:-11.333333pt;}
.wsca{word-spacing:-11.288000pt;}
.wsf1{word-spacing:-11.242667pt;}
.ws24{word-spacing:-11.088000pt;}
.ws128{word-spacing:-11.061333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.wsf8{word-spacing:-10.880000pt;}
.wsd8{word-spacing:-10.653333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws9b{word-spacing:-9.882667pt;}
.ws2{word-spacing:-8.885333pt;}
.wsc6{word-spacing:-8.160000pt;}
.ws8{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws90{word-spacing:-5.666667pt;}
.wsdc{word-spacing:-2.266667pt;}
.ws125{word-spacing:-2.130667pt;}
.ws6b{word-spacing:-2.080000pt;}
.wsdb{word-spacing:-1.722667pt;}
.ws68{word-spacing:-1.706667pt;}
.wsae{word-spacing:-1.653333pt;}
.ws106{word-spacing:-1.586667pt;}
.ws66{word-spacing:-1.546667pt;}
.ws113{word-spacing:-1.450667pt;}
.ws93{word-spacing:-1.386667pt;}
.ws10c{word-spacing:-1.360000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws10f{word-spacing:-1.314667pt;}
.ws57{word-spacing:-1.280000pt;}
.ws45{word-spacing:-1.226667pt;}
.ws103{word-spacing:-1.178667pt;}
.ws53{word-spacing:-1.173333pt;}
.wscf{word-spacing:-1.133333pt;}
.ws42{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.088000pt;}
.ws34{word-spacing:-1.066667pt;}
.ws120{word-spacing:-1.042667pt;}
.ws65{word-spacing:-1.013333pt;}
.ws12f{word-spacing:-0.997333pt;}
.wsc{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.952000pt;}
.ws1c{word-spacing:-0.906667pt;}
.wsd2{word-spacing:-0.861333pt;}
.ws17{word-spacing:-0.853333pt;}
.wsfb{word-spacing:-0.816000pt;}
.ws16{word-spacing:-0.800000pt;}
.ws123{word-spacing:-0.770667pt;}
.ws29{word-spacing:-0.746667pt;}
.ws107{word-spacing:-0.725333pt;}
.ws47{word-spacing:-0.693333pt;}
.wsd0{word-spacing:-0.680000pt;}
.ws1f{word-spacing:-0.640000pt;}
.wsdf{word-spacing:-0.634667pt;}
.ws100{word-spacing:-0.589333pt;}
.ws37{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws48{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws109{word-spacing:-0.498667pt;}
.ws10{word-spacing:-0.480000pt;}
.wsf5{word-spacing:-0.453333pt;}
.ws38{word-spacing:-0.426667pt;}
.wscc{word-spacing:-0.408000pt;}
.ws4f{word-spacing:-0.373333pt;}
.ws115{word-spacing:-0.362667pt;}
.ws1e{word-spacing:-0.320000pt;}
.wsf6{word-spacing:-0.317333pt;}
.wsd1{word-spacing:-0.272000pt;}
.ws18{word-spacing:-0.266667pt;}
.wsda{word-spacing:-0.234667pt;}
.wse1{word-spacing:-0.226667pt;}
.ws1d{word-spacing:-0.213333pt;}
.wse5{word-spacing:-0.181333pt;}
.ws2c{word-spacing:-0.160000pt;}
.wse9{word-spacing:-0.136000pt;}
.ws2b{word-spacing:-0.106667pt;}
.wsf4{word-spacing:-0.090667pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws114{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wseb{word-spacing:0.045333pt;}
.ws26{word-spacing:0.053333pt;}
.ws101{word-spacing:0.090667pt;}
.ws6f{word-spacing:0.106667pt;}
.ws102{word-spacing:0.136000pt;}
.ws31{word-spacing:0.160000pt;}
.wsf7{word-spacing:0.181333pt;}
.ws50{word-spacing:0.213333pt;}
.wse3{word-spacing:0.226667pt;}
.ws4c{word-spacing:0.266667pt;}
.wsd4{word-spacing:0.272000pt;}
.ws130{word-spacing:0.317333pt;}
.ws1b{word-spacing:0.320000pt;}
.wse4{word-spacing:0.362667pt;}
.ws11{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.ws82{word-spacing:0.453333pt;}
.ws3e{word-spacing:0.480000pt;}
.ws9f{word-spacing:0.533333pt;}
.ws11d{word-spacing:0.544000pt;}
.wse{word-spacing:0.586667pt;}
.ws7e{word-spacing:0.640000pt;}
.wsaa{word-spacing:0.680000pt;}
.ws3a{word-spacing:0.693333pt;}
.wsd{word-spacing:0.746667pt;}
.wsce{word-spacing:0.770667pt;}
.ws52{word-spacing:0.800000pt;}
.ws11a{word-spacing:0.816000pt;}
.wsac{word-spacing:0.853333pt;}
.ws7f{word-spacing:0.861333pt;}
.ws12b{word-spacing:0.906667pt;}
.ws79{word-spacing:0.952000pt;}
.ws33{word-spacing:0.960000pt;}
.ws40{word-spacing:1.013333pt;}
.wsdd{word-spacing:1.042667pt;}
.ws3f{word-spacing:1.066667pt;}
.wsd9{word-spacing:1.088000pt;}
.ws5e{word-spacing:1.120000pt;}
.wsd5{word-spacing:1.133333pt;}
.ws74{word-spacing:1.173333pt;}
.wscd{word-spacing:1.178667pt;}
.ws39{word-spacing:1.226667pt;}
.ws81{word-spacing:1.269333pt;}
.ws4d{word-spacing:1.280000pt;}
.wsfc{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws117{word-spacing:1.360000pt;}
.ws43{word-spacing:1.386667pt;}
.wsd7{word-spacing:1.405333pt;}
.ws60{word-spacing:1.440000pt;}
.wsb2{word-spacing:1.450667pt;}
.ws5c{word-spacing:1.493333pt;}
.wse7{word-spacing:1.496000pt;}
.ws11b{word-spacing:1.541333pt;}
.ws14{word-spacing:1.546667pt;}
.wsd6{word-spacing:1.586667pt;}
.ws51{word-spacing:1.600000pt;}
.ws32{word-spacing:1.653333pt;}
.wse0{word-spacing:1.677333pt;}
.ws13{word-spacing:1.706667pt;}
.ws11e{word-spacing:1.722667pt;}
.ws28{word-spacing:1.760000pt;}
.ws10e{word-spacing:1.768000pt;}
.ws20{word-spacing:1.813333pt;}
.wsc4{word-spacing:1.858667pt;}
.ws49{word-spacing:1.866667pt;}
.wsfd{word-spacing:1.904000pt;}
.wsb5{word-spacing:1.920000pt;}
.wsb1{word-spacing:1.949333pt;}
.ws15{word-spacing:1.973333pt;}
.ws30{word-spacing:2.026667pt;}
.ws5f{word-spacing:2.080000pt;}
.ws112{word-spacing:2.130667pt;}
.ws25{word-spacing:2.133333pt;}
.ws19{word-spacing:2.186667pt;}
.ws116{word-spacing:2.221333pt;}
.ws62{word-spacing:2.240000pt;}
.ws129{word-spacing:2.266667pt;}
.ws35{word-spacing:2.293333pt;}
.ws96{word-spacing:2.312000pt;}
.ws5b{word-spacing:2.346667pt;}
.wsfa{word-spacing:2.357333pt;}
.ws2f{word-spacing:2.400000pt;}
.wsc3{word-spacing:2.402667pt;}
.wsb0{word-spacing:2.448000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws10b{word-spacing:2.493333pt;}
.ws2d{word-spacing:2.506667pt;}
.wsf9{word-spacing:2.538667pt;}
.ws3c{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.613333pt;}
.ws46{word-spacing:2.666667pt;}
.ws6c{word-spacing:2.720000pt;}
.ws67{word-spacing:2.773333pt;}
.ws10a{word-spacing:2.810667pt;}
.ws69{word-spacing:2.826667pt;}
.wse8{word-spacing:2.856000pt;}
.ws3b{word-spacing:2.880000pt;}
.ws27{word-spacing:2.933333pt;}
.wsec{word-spacing:2.946667pt;}
.ws5d{word-spacing:2.986667pt;}
.wsed{word-spacing:2.992000pt;}
.ws73{word-spacing:3.040000pt;}
.ws124{word-spacing:3.082667pt;}
.ws75{word-spacing:3.146667pt;}
.wsea{word-spacing:3.173333pt;}
.ws54{word-spacing:3.200000pt;}
.ws92{word-spacing:3.253333pt;}
.ws5a{word-spacing:3.306667pt;}
.ws12e{word-spacing:3.309333pt;}
.ws4a{word-spacing:3.360000pt;}
.ws55{word-spacing:3.413333pt;}
.ws80{word-spacing:3.445333pt;}
.wsad{word-spacing:3.466667pt;}
.wse6{word-spacing:3.490667pt;}
.ws41{word-spacing:3.520000pt;}
.ws121{word-spacing:3.536000pt;}
.ws76{word-spacing:3.573333pt;}
.ws108{word-spacing:3.581333pt;}
.wsb4{word-spacing:3.626667pt;}
.ws6e{word-spacing:3.680000pt;}
.wsff{word-spacing:3.717333pt;}
.ws4b{word-spacing:3.733333pt;}
.ws12c{word-spacing:3.762667pt;}
.ws59{word-spacing:3.786667pt;}
.ws72{word-spacing:3.840000pt;}
.ws12d{word-spacing:3.853333pt;}
.ws104{word-spacing:4.034667pt;}
.wsaf{word-spacing:4.053333pt;}
.ws44{word-spacing:4.106667pt;}
.ws11f{word-spacing:4.125333pt;}
.ws11c{word-spacing:4.170667pt;}
.wsa9{word-spacing:4.216000pt;}
.wsfe{word-spacing:4.261333pt;}
.ws95{word-spacing:4.266667pt;}
.ws7b{word-spacing:4.320000pt;}
.ws7c{word-spacing:4.426667pt;}
.ws7d{word-spacing:4.480000pt;}
.ws56{word-spacing:4.533333pt;}
.ws118{word-spacing:4.669333pt;}
.ws12{word-spacing:4.746667pt;}
.ws6a{word-spacing:4.800000pt;}
.ws12a{word-spacing:4.805333pt;}
.ws105{word-spacing:4.850667pt;}
.ws58{word-spacing:4.853333pt;}
.ws119{word-spacing:4.941333pt;}
.ws61{word-spacing:4.960000pt;}
.ws10d{word-spacing:5.213333pt;}
.ws77{word-spacing:5.280000pt;}
.ws126{word-spacing:5.712000pt;}
.ws36{word-spacing:5.813333pt;}
.ws6d{word-spacing:5.866667pt;}
.wsc5{word-spacing:6.709333pt;}
.ws78{word-spacing:7.706667pt;}
.ws122{word-spacing:10.426667pt;}
.ws131{word-spacing:12.013333pt;}
.ws132{word-spacing:15.640000pt;}
.wsa2{word-spacing:48.552000pt;}
.wsa4{word-spacing:50.546667pt;}
.wsa3{word-spacing:51.453333pt;}
.wsa1{word-spacing:56.168000pt;}
.ws21{word-spacing:64.237333pt;}
.wsa7{word-spacing:65.597333pt;}
.wsa8{word-spacing:66.594667pt;}
.ws87{word-spacing:70.175991pt;}
.ws8e{word-spacing:75.525326pt;}
.wsa5{word-spacing:86.314667pt;}
.wsbb{word-spacing:93.024000pt;}
.wsc0{word-spacing:104.357333pt;}
.ws99{word-spacing:115.917327pt;}
.ws98{word-spacing:117.912000pt;}
.ws9a{word-spacing:118.818667pt;}
.ws84{word-spacing:148.285324pt;}
.ws9c{word-spacing:152.682667pt;}
.ws83{word-spacing:152.909333pt;}
.ws8b{word-spacing:153.634659pt;}
.ws8a{word-spacing:158.258667pt;}
.ws8c{word-spacing:161.159992pt;}
.ws85{word-spacing:178.477324pt;}
.wsbe{word-spacing:226.757333pt;}
.ws86{word-spacing:236.957333pt;}
.wsba{word-spacing:238.090667pt;}
.ws8d{word-spacing:242.306667pt;}
.wsbf{word-spacing:249.424000pt;}
.ws9e{word-spacing:253.594667pt;}
.wsbd{word-spacing:260.213333pt;}
.ws9d{word-spacing:270.050667pt;}
.wsc2{word-spacing:271.546667pt;}
.wsbc{word-spacing:276.669333pt;}
.wsc1{word-spacing:288.002667pt;}
.ws89{word-spacing:579.023453pt;}
.ws88{word-spacing:614.882725pt;}
.ws8f{word-spacing:636.279453pt;}
.wsa6{word-spacing:708.832000pt;}
.ws97{word-spacing:709.594087pt;}
._d{margin-left:-2630.557387pt;}
._8{margin-left:-64.600000pt;}
._5{margin-left:-14.733333pt;}
._48{margin-left:-11.378667pt;}
._6b{margin-left:-5.032000pt;}
._1{margin-left:-4.109067pt;}
._2{margin-left:-2.397867pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.402667pt;}
._a{width:3.093333pt;}
._c{width:4.261333pt;}
._b{width:5.445333pt;}
._6a{width:7.389333pt;}
._52{width:9.021326pt;}
._e{width:10.472000pt;}
._69{width:12.285317pt;}
._f{width:13.681333pt;}
._35{width:14.819200pt;}
._6{width:16.320000pt;}
._3{width:35.949294pt;}
._7{width:48.552000pt;}
._51{width:59.885333pt;}
._50{width:76.930667pt;}
._4c{width:77.928000pt;}
._4e{width:82.552000pt;}
._4d{width:85.498667pt;}
._4f{width:89.170667pt;}
._41{width:96.650667pt;}
._3e{width:102.272000pt;}
._3f{width:105.218667pt;}
._43{width:108.890667pt;}
._5e{width:111.157333pt;}
._53{width:112.970667pt;}
._4a{width:120.314667pt;}
._49{width:124.938667pt;}
._4b{width:127.885333pt;}
._40{width:131.557333pt;}
._56{width:136.136000pt;}
._55{width:138.130667pt;}
._5a{width:145.157333pt;}
._62{width:147.287992pt;}
._61{width:149.464000pt;}
._31{width:154.087984pt;}
._58{width:156.765333pt;}
._1b{width:159.119997pt;}
._11{width:160.117327pt;}
._5d{width:161.205333pt;}
._14{width:163.653333pt;}
._2a{width:164.968000pt;}
._17{width:167.143991pt;}
._63{width:168.733353pt;}
._29{width:173.218650pt;}
._2e{width:175.848008pt;}
._13{width:177.207991pt;}
._59{width:184.053333pt;}
._37{width:187.589333pt;}
._20{width:189.160733pt;}
._23{width:190.460582pt;}
._24{width:191.533327pt;}
._1e{width:193.890667pt;}
._38{width:198.333344pt;}
._57{width:203.773333pt;}
._19{width:205.631990pt;}
._3c{width:208.261333pt;}
._1a{width:210.663993pt;}
._5b{width:214.880000pt;}
._18{width:216.557333pt;}
._12{width:225.170667pt;}
._67{width:226.213333pt;}
._3a{width:232.287995pt;}
._5c{width:238.861333pt;}
._2c{width:244.346667pt;}
._34{width:245.706649pt;}
._3b{width:248.471995pt;}
._68{width:250.194667pt;}
._16{width:260.394667pt;}
._1f{width:262.298656pt;}
._2b{width:265.744000pt;}
._65{width:277.576000pt;}
._39{width:280.840000pt;}
._1d{width:283.061333pt;}
._28{width:288.093333pt;}
._66{width:293.760000pt;}
._64{width:298.792000pt;}
._26{width:305.728000pt;}
._15{width:336.373327pt;}
._54{width:378.083474pt;}
._5f{width:400.931474pt;}
._36{width:439.951421pt;}
._25{width:455.783988pt;}
._60{width:457.640000pt;}
._32{width:466.482657pt;}
._33{width:489.554657pt;}
._27{width:501.522654pt;}
._1c{width:502.701327pt;}
._10{width:567.175791pt;}
._2f{width:578.725324pt;}
._22{width:581.762667pt;}
._21{width:590.693321pt;}
._2d{width:609.819200pt;}
._30{width:625.056000pt;}
._3d{width:626.370667pt;}
._46{width:647.042667pt;}
._44{width:665.765319pt;}
._45{width:681.949319pt;}
._47{width:700.898667pt;}
._42{width:719.621333pt;}
._9{width:1628.373385pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y59{bottom:100.389600pt;}
.y15f{bottom:100.394933pt;}
.y164{bottom:100.405600pt;}
.y27c{bottom:100.422936pt;}
.y175{bottom:100.776265pt;}
.yb3{bottom:100.813599pt;}
.y8f{bottom:100.813639pt;}
.y14f{bottom:100.928304pt;}
.y1cf{bottom:101.052287pt;}
.y1da{bottom:101.450938pt;}
.y16d{bottom:101.834941pt;}
.ye7{bottom:101.986938pt;}
.y1b6{bottom:102.110921pt;}
.y20d{bottom:102.111064pt;}
.y2a2{bottom:103.330263pt;}
.y309{bottom:103.657620pt;}
.y38d{bottom:103.997606pt;}
.y34b{bottom:104.008954pt;}
.y4f{bottom:108.854533pt;}
.y2c7{bottom:111.660285pt;}
.y15e{bottom:113.722933pt;}
.y163{bottom:113.733600pt;}
.y27b{bottom:113.750936pt;}
.y2a1{bottom:116.658263pt;}
.y308{bottom:116.985620pt;}
.y38c{bottom:117.325606pt;}
.y34a{bottom:117.336954pt;}
.y174{bottom:117.442932pt;}
.yb2{bottom:117.480265pt;}
.y8e{bottom:117.480306pt;}
.y14e{bottom:117.594971pt;}
.y1ce{bottom:117.718953pt;}
.y1d9{bottom:118.117605pt;}
.y58{bottom:118.250936pt;}
.y16c{bottom:118.501607pt;}
.ye6{bottom:118.653605pt;}
.y1b5{bottom:118.777588pt;}
.y20c{bottom:118.777730pt;}
.y22{bottom:123.790666pt;}
.y2c6{bottom:124.988285pt;}
.y4e{bottom:125.521200pt;}
.y162{bottom:127.061600pt;}
.y2a0{bottom:129.986263pt;}
.y307{bottom:130.313620pt;}
.y38b{bottom:130.653606pt;}
.y349{bottom:130.664954pt;}
.y15d{bottom:131.584269pt;}
.y57{bottom:133.764936pt;}
.y173{bottom:134.109599pt;}
.yb1{bottom:134.146932pt;}
.y8d{bottom:134.146973pt;}
.y14d{bottom:134.261637pt;}
.y1cd{bottom:134.385620pt;}
.y1e2{bottom:134.784271pt;}
.y16b{bottom:135.168274pt;}
.y11b{bottom:135.320231pt;}
.ye5{bottom:135.320272pt;}
.y1b4{bottom:135.444255pt;}
.y20b{bottom:135.444397pt;}
.y2c5{bottom:138.316285pt;}
.y161{bottom:140.389600pt;}
.y4d{bottom:142.187866pt;}
.y29f{bottom:143.314263pt;}
.y306{bottom:143.641620pt;}
.y38a{bottom:143.981606pt;}
.y348{bottom:143.992954pt;}
.y24c{bottom:146.803639pt;}
.y172{bottom:150.776265pt;}
.yb0{bottom:150.813599pt;}
.y8c{bottom:150.813639pt;}
.y14c{bottom:150.928304pt;}
.y1cc{bottom:151.052287pt;}
.y1e1{bottom:151.450938pt;}
.y1d8{bottom:151.456271pt;}
.y56{bottom:151.626272pt;}
.y2c4{bottom:151.644285pt;}
.y16a{bottom:151.834941pt;}
.y11a{bottom:151.986898pt;}
.ye4{bottom:151.986938pt;}
.y1b3{bottom:152.110921pt;}
.y20a{bottom:152.111064pt;}
.y29e{bottom:156.642263pt;}
.y305{bottom:156.969620pt;}
.y389{bottom:157.309606pt;}
.y347{bottom:157.320954pt;}
.y160{bottom:158.250936pt;}
.y4c{bottom:158.854533pt;}
.y24b{bottom:160.131639pt;}
.y2c3{bottom:164.972285pt;}
.y55{bottom:167.140262pt;}
.y171{bottom:167.442932pt;}
.yaf{bottom:167.480265pt;}
.y8b{bottom:167.480306pt;}
.y14b{bottom:167.594971pt;}
.y1cb{bottom:167.718953pt;}
.y1d7{bottom:168.117605pt;}
.y169{bottom:168.501607pt;}
.y119{bottom:168.653564pt;}
.ye3{bottom:168.653605pt;}
.y1b2{bottom:168.777588pt;}
.y209{bottom:168.777730pt;}
.y29d{bottom:169.970263pt;}
.y304{bottom:170.297620pt;}
.y388{bottom:170.637606pt;}
.y346{bottom:170.648954pt;}
.y19{bottom:175.052000pt;}
.y4b{bottom:175.521200pt;}
.y249{bottom:175.545593pt;}
.y24a{bottom:177.244973pt;}
.y2c2{bottom:178.300285pt;}
.y29c{bottom:183.298263pt;}
.y303{bottom:183.625620pt;}
.y387{bottom:183.965606pt;}
.y345{bottom:183.976954pt;}
.y170{bottom:184.109599pt;}
.yae{bottom:184.146932pt;}
.y8a{bottom:184.146973pt;}
.y14a{bottom:184.261637pt;}
.y1ca{bottom:184.385620pt;}
.y1e0{bottom:184.784271pt;}
.y54{bottom:185.001607pt;}
.y168{bottom:185.168274pt;}
.y118{bottom:185.320231pt;}
.ye2{bottom:185.320272pt;}
.y1b1{bottom:185.444255pt;}
.y208{bottom:185.444397pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y2c1{bottom:191.628285pt;}
.y4a{bottom:192.187866pt;}
.y302{bottom:196.953620pt;}
.y386{bottom:197.293606pt;}
.y344{bottom:197.304954pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y53{bottom:200.515608pt;}
.y16f{bottom:200.776265pt;}
.yad{bottom:200.813599pt;}
.y89{bottom:200.813639pt;}
.y149{bottom:200.928304pt;}
.y1c9{bottom:201.052287pt;}
.y1d6{bottom:201.450928pt;}
.y1df{bottom:201.450938pt;}
.y279{bottom:201.669579pt;}
.y167{bottom:201.834941pt;}
.y117{bottom:201.986898pt;}
.ye1{bottom:201.986938pt;}
.y1b0{bottom:202.110921pt;}
.y207{bottom:202.111064pt;}
.y2c0{bottom:204.956285pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y49{bottom:208.854533pt;}
.y248{bottom:208.878927pt;}
.y29b{bottom:209.965597pt;}
.y301{bottom:210.281620pt;}
.y15c{bottom:210.320272pt;}
.y385{bottom:210.621606pt;}
.y343{bottom:210.632954pt;}
.yac{bottom:217.480265pt;}
.y88{bottom:217.480306pt;}
.y148{bottom:217.594971pt;}
.y1c8{bottom:217.718953pt;}
.y1d5{bottom:218.117594pt;}
.y1de{bottom:218.117605pt;}
.y2bf{bottom:218.284285pt;}
.y278{bottom:218.374913pt;}
.y52{bottom:218.376933pt;}
.y166{bottom:218.501607pt;}
.y116{bottom:218.653564pt;}
.ye0{bottom:218.653605pt;}
.y1af{bottom:218.777588pt;}
.y206{bottom:218.777730pt;}
.y300{bottom:223.609620pt;}
.y384{bottom:223.949606pt;}
.y342{bottom:223.960954pt;}
.y48{bottom:225.521200pt;}
.y15b{bottom:226.986938pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y2be{bottom:231.612285pt;}
.y16e{bottom:234.109599pt;}
.yab{bottom:234.146932pt;}
.y87{bottom:234.146973pt;}
.y147{bottom:234.261637pt;}
.y1c7{bottom:234.385620pt;}
.y1d4{bottom:234.784261pt;}
.y1dd{bottom:234.784271pt;}
.y277{bottom:235.012246pt;}
.y165{bottom:235.168274pt;}
.y115{bottom:235.320231pt;}
.ydf{bottom:235.320272pt;}
.y1ae{bottom:235.444255pt;}
.y205{bottom:235.444397pt;}
.y29a{bottom:236.632263pt;}
.y2ff{bottom:236.937620pt;}
.y383{bottom:237.277606pt;}
.y341{bottom:237.288954pt;}
.y51{bottom:240.599592pt;}
.y47{bottom:242.187866pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y2bd{bottom:244.940285pt;}
.y2fe{bottom:250.265620pt;}
.y382{bottom:250.605606pt;}
.y340{bottom:250.616954pt;}
.yaa{bottom:250.813599pt;}
.y86{bottom:250.813639pt;}
.y146{bottom:250.928304pt;}
.y1c6{bottom:251.052287pt;}
.y1d3{bottom:251.450928pt;}
.y1dc{bottom:251.450938pt;}
.y276{bottom:251.649579pt;}
.y1ff{bottom:251.834941pt;}
.y114{bottom:251.986898pt;}
.yde{bottom:251.986938pt;}
.y1ad{bottom:252.110921pt;}
.y204{bottom:252.111064pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y50{bottom:253.927592pt;}
.y2bc{bottom:258.268285pt;}
.y46{bottom:258.854533pt;}
.y2fd{bottom:263.593620pt;}
.y381{bottom:263.933606pt;}
.y33f{bottom:263.944954pt;}
.y299{bottom:266.752950pt;}
.ya9{bottom:267.480265pt;}
.y85{bottom:267.480306pt;}
.y145{bottom:267.594971pt;}
.y1c5{bottom:267.718953pt;}
.y1d2{bottom:268.117594pt;}
.y1db{bottom:268.117605pt;}
.y275{bottom:268.286913pt;}
.y1fe{bottom:268.501607pt;}
.y113{bottom:268.653564pt;}
.ydd{bottom:268.653605pt;}
.y1ac{bottom:268.777588pt;}
.y203{bottom:268.777730pt;}
.y2bb{bottom:271.596285pt;}
.y45{bottom:275.521200pt;}
.y18b{bottom:275.590668pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y2fc{bottom:276.921620pt;}
.y380{bottom:277.261606pt;}
.y33e{bottom:277.272954pt;}
.y298{bottom:280.080950pt;}
.ya8{bottom:284.146932pt;}
.y84{bottom:284.146973pt;}
.y144{bottom:284.261637pt;}
.y1c4{bottom:284.385620pt;}
.y274{bottom:284.924246pt;}
.y2ba{bottom:284.924285pt;}
.y1fd{bottom:285.168274pt;}
.y112{bottom:285.320231pt;}
.ydc{bottom:285.320272pt;}
.y1ab{bottom:285.444255pt;}
.y215{bottom:285.444397pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2fb{bottom:290.249620pt;}
.y37f{bottom:290.589606pt;}
.y33d{bottom:290.600954pt;}
.y43{bottom:292.187866pt;}
.y297{bottom:293.408950pt;}
.y2b9{bottom:298.252285pt;}
.y199{bottom:300.363348pt;}
.ya7{bottom:300.813599pt;}
.y83{bottom:300.813639pt;}
.y143{bottom:300.928304pt;}
.y1c3{bottom:301.052287pt;}
.y273{bottom:301.561579pt;}
.y1fc{bottom:301.834941pt;}
.y111{bottom:301.986898pt;}
.ydb{bottom:301.986938pt;}
.y1aa{bottom:302.110921pt;}
.y202{bottom:302.110942pt;}
.y214{bottom:302.111064pt;}
.y2fa{bottom:303.577620pt;}
.y37e{bottom:303.917606pt;}
.y33c{bottom:303.928954pt;}
.y296{bottom:306.736950pt;}
.y42{bottom:308.854533pt;}
.y10{bottom:309.452000pt;}
.y2b8{bottom:311.580285pt;}
.y2f9{bottom:316.905620pt;}
.y198{bottom:317.068681pt;}
.y37d{bottom:317.245606pt;}
.y33b{bottom:317.256954pt;}
.ya6{bottom:317.480265pt;}
.y82{bottom:317.480306pt;}
.y142{bottom:317.594971pt;}
.y1c2{bottom:317.718953pt;}
.y272{bottom:318.198913pt;}
.y1fb{bottom:318.501607pt;}
.y110{bottom:318.653564pt;}
.yda{bottom:318.653605pt;}
.y1a9{bottom:318.777588pt;}
.y213{bottom:318.777730pt;}
.y295{bottom:320.064950pt;}
.y2b7{bottom:324.908285pt;}
.y41{bottom:325.521200pt;}
.y2f8{bottom:330.233620pt;}
.y37c{bottom:330.573606pt;}
.y33a{bottom:330.584954pt;}
.y294{bottom:333.392950pt;}
.y197{bottom:333.706015pt;}
.ya5{bottom:334.146932pt;}
.y81{bottom:334.146973pt;}
.y141{bottom:334.261637pt;}
.y1c1{bottom:334.385620pt;}
.y271{bottom:334.836246pt;}
.y1fa{bottom:335.168274pt;}
.y10f{bottom:335.320231pt;}
.yd9{bottom:335.320272pt;}
.y1a8{bottom:335.444255pt;}
.y212{bottom:335.444397pt;}
.y2b6{bottom:338.236285pt;}
.y1ea{bottom:339.667572pt;}
.y40{bottom:342.187866pt;}
.y2f7{bottom:343.561620pt;}
.yf{bottom:343.809333pt;}
.y37b{bottom:343.901606pt;}
.y339{bottom:343.912954pt;}
.y196{bottom:350.343348pt;}
.ya4{bottom:350.813599pt;}
.y80{bottom:350.813639pt;}
.y140{bottom:350.928304pt;}
.y1c0{bottom:351.052287pt;}
.y270{bottom:351.473579pt;}
.y2b5{bottom:351.564285pt;}
.y10e{bottom:351.986898pt;}
.yd8{bottom:351.986938pt;}
.y1a7{bottom:352.110921pt;}
.y211{bottom:352.111064pt;}
.y1e9{bottom:352.995572pt;}
.y2f6{bottom:356.889620pt;}
.y3bb{bottom:357.048288pt;}
.y37a{bottom:357.229606pt;}
.y338{bottom:357.240954pt;}
.y3f{bottom:358.854533pt;}
.y293{bottom:360.060284pt;}
.ye{bottom:362.706666pt;}
.y2b4{bottom:364.892285pt;}
.y195{bottom:366.980681pt;}
.ya3{bottom:367.480265pt;}
.y7f{bottom:367.480306pt;}
.y13f{bottom:367.594971pt;}
.y1bf{bottom:367.718953pt;}
.y26f{bottom:368.110913pt;}
.y10d{bottom:368.653564pt;}
.yd7{bottom:368.653605pt;}
.y1a6{bottom:368.777588pt;}
.y210{bottom:368.777730pt;}
.y1e8{bottom:370.108905pt;}
.y2f5{bottom:370.217620pt;}
.y3ba{bottom:370.376288pt;}
.y379{bottom:370.557606pt;}
.y337{bottom:370.568954pt;}
.y292{bottom:373.388284pt;}
.y3e{bottom:375.521200pt;}
.y201{bottom:376.533732pt;}
.y152{bottom:376.986898pt;}
.y2b3{bottom:378.220285pt;}
.y27e{bottom:379.872399pt;}
.y2f4{bottom:383.545620pt;}
.y378{bottom:383.885606pt;}
.y336{bottom:383.896954pt;}
.ya2{bottom:384.146932pt;}
.y7e{bottom:384.146973pt;}
.y13e{bottom:384.261637pt;}
.y26e{bottom:384.748246pt;}
.y10c{bottom:385.320231pt;}
.yd6{bottom:385.320272pt;}
.y1a5{bottom:385.444255pt;}
.y20f{bottom:385.444397pt;}
.y291{bottom:386.716284pt;}
.y2b2{bottom:391.548285pt;}
.y194{bottom:391.936681pt;}
.y3d{bottom:392.187866pt;}
.y27d{bottom:393.200399pt;}
.y151{bottom:393.653564pt;}
.y1f9{bottom:394.922383pt;}
.y2f3{bottom:396.873620pt;}
.y3b9{bottom:397.122954pt;}
.y377{bottom:397.213606pt;}
.y335{bottom:397.224954pt;}
.y290{bottom:400.044284pt;}
.ya1{bottom:400.813599pt;}
.y7d{bottom:400.813639pt;}
.y13d{bottom:400.928304pt;}
.y1be{bottom:401.057620pt;}
.y26d{bottom:401.385579pt;}
.y10b{bottom:401.986898pt;}
.yd5{bottom:401.986938pt;}
.y1a4{bottom:402.110921pt;}
.y20e{bottom:402.111064pt;}
.y2b1{bottom:404.876285pt;}
.y3c{bottom:408.854533pt;}
.y2f2{bottom:410.201620pt;}
.y150{bottom:410.320231pt;}
.y3b8{bottom:410.450954pt;}
.y376{bottom:410.541606pt;}
.y334{bottom:410.552954pt;}
.y1f8{bottom:411.627716pt;}
.y28f{bottom:413.372284pt;}
.y193{bottom:413.640015pt;}
.ya0{bottom:417.480265pt;}
.y7c{bottom:417.480306pt;}
.y13c{bottom:417.594971pt;}
.y1bd{bottom:417.718953pt;}
.y26c{bottom:418.022913pt;}
.y2b0{bottom:418.204285pt;}
.y10a{bottom:418.653564pt;}
.yd4{bottom:418.653605pt;}
.y1a3{bottom:418.777588pt;}
.y2f1{bottom:423.529620pt;}
.y3b7{bottom:423.778954pt;}
.y375{bottom:423.869606pt;}
.y333{bottom:423.880954pt;}
.y3b{bottom:425.521200pt;}
.y28e{bottom:426.700284pt;}
.y1f7{bottom:428.265050pt;}
.yd{bottom:430.990669pt;}
.y2af{bottom:431.532285pt;}
.y192{bottom:432.837476pt;}
.y9f{bottom:434.146932pt;}
.y7b{bottom:434.146973pt;}
.y13b{bottom:434.261637pt;}
.y26b{bottom:434.660246pt;}
.y109{bottom:435.320231pt;}
.yd3{bottom:435.320272pt;}
.y1a2{bottom:435.444255pt;}
.y2f0{bottom:436.857620pt;}
.y3b6{bottom:437.106954pt;}
.y374{bottom:437.197606pt;}
.y332{bottom:437.208954pt;}
.y28d{bottom:440.028284pt;}
.y44{bottom:442.187866pt;}
.y21e{bottom:444.110151pt;}
.y2ae{bottom:444.860285pt;}
.y1f6{bottom:444.902383pt;}
.yc{bottom:446.990669pt;}
.y191{bottom:449.474809pt;}
.y2ef{bottom:450.185620pt;}
.y3b5{bottom:450.434954pt;}
.y373{bottom:450.525606pt;}
.y331{bottom:450.536954pt;}
.y9e{bottom:450.813599pt;}
.y7a{bottom:450.813639pt;}
.y13a{bottom:450.928304pt;}
.y26a{bottom:451.297579pt;}
.y108{bottom:451.986898pt;}
.yd2{bottom:451.986938pt;}
.y1a1{bottom:452.110921pt;}
.y28c{bottom:453.356284pt;}
.y21d{bottom:457.472957pt;}
.y2ad{bottom:458.188285pt;}
.y3a{bottom:458.854533pt;}
.y1f5{bottom:461.539716pt;}
.y1d1{bottom:461.774946pt;}
.yb{bottom:462.990669pt;}
.y2ee{bottom:463.513620pt;}
.y3b4{bottom:463.762954pt;}
.y372{bottom:463.853606pt;}
.y330{bottom:463.864954pt;}
.y190{bottom:466.112143pt;}
.y28b{bottom:466.684284pt;}
.y9d{bottom:467.480265pt;}
.y79{bottom:467.480306pt;}
.y139{bottom:467.594971pt;}
.y269{bottom:467.934913pt;}
.y107{bottom:468.653564pt;}
.yd1{bottom:468.653605pt;}
.y1bb{bottom:468.777588pt;}
.y21c{bottom:470.800957pt;}
.y2ac{bottom:471.516285pt;}
.y1d0{bottom:475.102946pt;}
.y2ed{bottom:476.841620pt;}
.y3b3{bottom:477.090954pt;}
.y371{bottom:477.181606pt;}
.y32f{bottom:477.192954pt;}
.y1f4{bottom:478.177050pt;}
.ya{bottom:478.990666pt;}
.y18f{bottom:482.749476pt;}
.y9c{bottom:484.146932pt;}
.y78{bottom:484.146973pt;}
.y138{bottom:484.261637pt;}
.y268{bottom:484.572246pt;}
.y2ab{bottom:484.844285pt;}
.y106{bottom:485.320231pt;}
.yd0{bottom:485.320272pt;}
.y1ba{bottom:485.444255pt;}
.y1a0{bottom:485.449588pt;}
.y21b{bottom:487.914291pt;}
.y2ec{bottom:490.169620pt;}
.y3b2{bottom:490.418954pt;}
.y370{bottom:490.509606pt;}
.y32e{bottom:490.520954pt;}
.y28a{bottom:493.351617pt;}
.y1f3{bottom:494.814383pt;}
.y9{bottom:494.990666pt;}
.y2aa{bottom:498.172285pt;}
.y18e{bottom:499.386809pt;}
.y9b{bottom:500.813599pt;}
.y77{bottom:500.813639pt;}
.y137{bottom:500.928304pt;}
.y267{bottom:501.209579pt;}
.y105{bottom:501.986898pt;}
.ycf{bottom:501.986938pt;}
.y19f{bottom:502.110921pt;}
.y2eb{bottom:503.497620pt;}
.y3b1{bottom:503.746954pt;}
.y36f{bottom:503.837606pt;}
.y32d{bottom:503.848954pt;}
.y289{bottom:506.679617pt;}
.y39{bottom:508.854574pt;}
.y1f2{bottom:511.451716pt;}
.y2a9{bottom:511.500285pt;}
.y239{bottom:512.494417pt;}
.y2ea{bottom:516.825620pt;}
.y3b0{bottom:517.074954pt;}
.y36e{bottom:517.165606pt;}
.y32c{bottom:517.176954pt;}
.y9a{bottom:517.480265pt;}
.y76{bottom:517.480306pt;}
.y136{bottom:517.594971pt;}
.y266{bottom:517.846913pt;}
.y104{bottom:518.653564pt;}
.yce{bottom:518.653605pt;}
.y1b9{bottom:518.777588pt;}
.y288{bottom:520.007617pt;}
.y18d{bottom:524.342809pt;}
.y1f1{bottom:528.089050pt;}
.y238{bottom:529.199750pt;}
.y2e9{bottom:530.153620pt;}
.y3af{bottom:530.402954pt;}
.y36d{bottom:530.493606pt;}
.y32b{bottom:530.504954pt;}
.y287{bottom:533.335617pt;}
.y99{bottom:534.146932pt;}
.y75{bottom:534.146973pt;}
.y135{bottom:534.261637pt;}
.y265{bottom:534.484246pt;}
.y103{bottom:535.320231pt;}
.ycd{bottom:535.320272pt;}
.y19e{bottom:535.444255pt;}
.y2a8{bottom:541.500285pt;}
.y38{bottom:542.187907pt;}
.y2e8{bottom:543.481620pt;}
.y3ae{bottom:543.730954pt;}
.y36c{bottom:543.821606pt;}
.y32a{bottom:543.832954pt;}
.y1f0{bottom:544.726383pt;}
.y237{bottom:545.837084pt;}
.y18c{bottom:546.046143pt;}
.y286{bottom:546.663617pt;}
.y98{bottom:550.813599pt;}
.y74{bottom:550.813639pt;}
.y134{bottom:550.928304pt;}
.y264{bottom:551.121579pt;}
.y102{bottom:551.986898pt;}
.ycc{bottom:551.986938pt;}
.y1b8{bottom:552.110921pt;}
.y2e7{bottom:556.809620pt;}
.y3ad{bottom:557.058954pt;}
.y36b{bottom:557.149606pt;}
.y329{bottom:557.160954pt;}
.y37{bottom:558.854574pt;}
.y15a{bottom:560.320272pt;}
.y1ef{bottom:561.363716pt;}
.y236{bottom:562.474417pt;}
.y97{bottom:567.480265pt;}
.y73{bottom:567.480306pt;}
.y133{bottom:567.594971pt;}
.y263{bottom:567.758913pt;}
.y101{bottom:568.653564pt;}
.ycb{bottom:568.653605pt;}
.y18a{bottom:568.682001pt;}
.y1b7{bottom:568.777588pt;}
.y2e6{bottom:570.137620pt;}
.y3ac{bottom:570.386954pt;}
.y36a{bottom:570.477606pt;}
.y328{bottom:570.488954pt;}
.y285{bottom:573.330950pt;}
.y8{bottom:573.786667pt;}
.y36{bottom:575.521240pt;}
.y159{bottom:576.986938pt;}
.y235{bottom:579.111750pt;}
.y2e5{bottom:583.465620pt;}
.y3ab{bottom:583.714954pt;}
.y369{bottom:583.805606pt;}
.y327{bottom:583.816954pt;}
.y96{bottom:584.146932pt;}
.y72{bottom:584.146973pt;}
.y132{bottom:584.261637pt;}
.y262{bottom:584.396246pt;}
.y100{bottom:585.320231pt;}
.yca{bottom:585.320272pt;}
.y19d{bottom:585.444255pt;}
.y1ee{bottom:586.331050pt;}
.y284{bottom:586.658950pt;}
.y35{bottom:592.187907pt;}
.y7{bottom:592.685334pt;}
.y1e7{bottom:595.200239pt;}
.y234{bottom:595.749084pt;}
.y2e4{bottom:596.793620pt;}
.y3aa{bottom:597.042954pt;}
.y368{bottom:597.133606pt;}
.y326{bottom:597.144954pt;}
.y283{bottom:599.986950pt;}
.y2a7{bottom:600.149597pt;}
.y95{bottom:600.813599pt;}
.y71{bottom:600.813639pt;}
.y131{bottom:600.928304pt;}
.y261{bottom:601.033579pt;}
.yff{bottom:601.986898pt;}
.yc9{bottom:601.986938pt;}
.y19c{bottom:602.110921pt;}
.y1ed{bottom:608.034383pt;}
.y1e6{bottom:608.528239pt;}
.y34{bottom:608.854574pt;}
.y177{bottom:609.214979pt;}
.y2e3{bottom:610.121620pt;}
.y3a9{bottom:610.370954pt;}
.y367{bottom:610.461606pt;}
.y325{bottom:610.472954pt;}
.y233{bottom:612.386417pt;}
.y282{bottom:613.314950pt;}
.y2a6{bottom:613.477597pt;}
.y1ec{bottom:616.673058pt;}
.y94{bottom:617.480265pt;}
.y70{bottom:617.480306pt;}
.y130{bottom:617.594971pt;}
.y260{bottom:617.670913pt;}
.yfe{bottom:618.653564pt;}
.yfa{bottom:618.653605pt;}
.y19b{bottom:618.777588pt;}
.y1e5{bottom:621.856239pt;}
.y2e2{bottom:623.449620pt;}
.y3a8{bottom:623.698954pt;}
.y366{bottom:623.789606pt;}
.y324{bottom:623.800954pt;}
.y33{bottom:625.521240pt;}
.y281{bottom:626.642950pt;}
.y2a5{bottom:626.805597pt;}
.y232{bottom:629.023750pt;}
.y1eb{bottom:630.001058pt;}
.y189{bottom:634.097999pt;}
.y93{bottom:634.146932pt;}
.y6f{bottom:634.146973pt;}
.y12f{bottom:634.261637pt;}
.y25f{bottom:634.308246pt;}
.y1e4{bottom:635.184239pt;}
.yfd{bottom:635.320231pt;}
.yf9{bottom:635.320272pt;}
.yc8{bottom:635.325605pt;}
.y19a{bottom:635.444255pt;}
.y2e1{bottom:636.777620pt;}
.y3a7{bottom:637.026954pt;}
.y365{bottom:637.117606pt;}
.y323{bottom:637.128954pt;}
.y280{bottom:639.970950pt;}
.y2a4{bottom:640.133597pt;}
.y32{bottom:642.187907pt;}
.y6{bottom:645.598667pt;}
.y231{bottom:645.661084pt;}
.y2e0{bottom:650.105620pt;}
.y3a6{bottom:650.354954pt;}
.y364{bottom:650.445606pt;}
.y322{bottom:650.456954pt;}
.y188{bottom:650.803333pt;}
.y92{bottom:650.813599pt;}
.y6e{bottom:650.813639pt;}
.y12e{bottom:650.928304pt;}
.y25e{bottom:650.945579pt;}
.yfc{bottom:651.986898pt;}
.yc7{bottom:651.986938pt;}
.y27f{bottom:653.298950pt;}
.y2a3{bottom:653.461597pt;}
.y31{bottom:658.854574pt;}
.y230{bottom:662.298417pt;}
.y2df{bottom:663.433620pt;}
.y3a5{bottom:663.682954pt;}
.y363{bottom:663.773606pt;}
.y321{bottom:663.784954pt;}
.y187{bottom:667.440666pt;}
.y91{bottom:667.480265pt;}
.y6d{bottom:667.480306pt;}
.y25d{bottom:667.582913pt;}
.y12d{bottom:667.594971pt;}
.yfb{bottom:668.653564pt;}
.y158{bottom:668.653605pt;}
.yf8{bottom:668.658898pt;}
.y3{bottom:668.977329pt;}
.y30{bottom:675.521240pt;}
.y2de{bottom:676.761620pt;}
.y3a4{bottom:677.010954pt;}
.y362{bottom:677.101606pt;}
.y320{bottom:677.112954pt;}
.y22f{bottom:678.935750pt;}
.y200{bottom:680.702922pt;}
.y1bc{bottom:684.062907pt;}
.y186{bottom:684.077999pt;}
.y6c{bottom:684.146973pt;}
.y25c{bottom:684.220246pt;}
.y12c{bottom:684.261637pt;}
.yc6{bottom:685.320231pt;}
.y157{bottom:685.320272pt;}
.y2dd{bottom:690.089620pt;}
.y3a3{bottom:690.338954pt;}
.y361{bottom:690.429606pt;}
.y31f{bottom:690.440954pt;}
.y2f{bottom:692.187907pt;}
.y22e{bottom:695.517027pt;}
.y27a{bottom:696.814904pt;}
.y185{bottom:700.715333pt;}
.y6b{bottom:700.813639pt;}
.y90{bottom:700.818973pt;}
.y25b{bottom:700.857579pt;}
.y12b{bottom:700.928304pt;}
.yc5{bottom:701.986898pt;}
.y156{bottom:701.986938pt;}
.y2dc{bottom:703.417620pt;}
.y3a2{bottom:703.666954pt;}
.y360{bottom:703.757606pt;}
.y31e{bottom:703.768954pt;}
.y2e{bottom:708.854574pt;}
.y1e3{bottom:710.142904pt;}
.y22d{bottom:712.154360pt;}
.y2db{bottom:716.745620pt;}
.y3a1{bottom:716.994954pt;}
.y35f{bottom:717.085606pt;}
.y31d{bottom:717.096954pt;}
.y184{bottom:717.352666pt;}
.y6a{bottom:717.480306pt;}
.y25a{bottom:717.494913pt;}
.y12a{bottom:717.594971pt;}
.yc4{bottom:718.653564pt;}
.yf7{bottom:718.653605pt;}
.y2d{bottom:725.521240pt;}
.y22c{bottom:728.791693pt;}
.y2da{bottom:730.073620pt;}
.y3a0{bottom:730.322954pt;}
.y35e{bottom:730.413606pt;}
.y31c{bottom:730.424954pt;}
.y183{bottom:733.989999pt;}
.y259{bottom:734.132246pt;}
.y69{bottom:734.146973pt;}
.y129{bottom:734.261637pt;}
.yc3{bottom:735.320231pt;}
.yf6{bottom:735.320272pt;}
.y2c{bottom:742.187907pt;}
.y2d9{bottom:743.401620pt;}
.y39f{bottom:743.650954pt;}
.y35d{bottom:743.741606pt;}
.y31b{bottom:743.752954pt;}
.y22b{bottom:745.429027pt;}
.y258{bottom:750.769579pt;}
.y247{bottom:750.813599pt;}
.y68{bottom:750.813639pt;}
.y128{bottom:750.928304pt;}
.yc2{bottom:751.986898pt;}
.yf5{bottom:751.986938pt;}
.y2d8{bottom:756.729620pt;}
.y39e{bottom:756.978954pt;}
.y35c{bottom:757.069606pt;}
.y31a{bottom:757.080954pt;}
.y182{bottom:758.945999pt;}
.y22a{bottom:762.066360pt;}
.y257{bottom:767.406913pt;}
.y246{bottom:767.480265pt;}
.y67{bottom:767.480306pt;}
.y127{bottom:767.594971pt;}
.yc1{bottom:768.653564pt;}
.yf4{bottom:768.653605pt;}
.y2d7{bottom:770.057620pt;}
.y39d{bottom:770.306954pt;}
.y35b{bottom:770.397606pt;}
.y319{bottom:770.408954pt;}
.y229{bottom:778.703693pt;}
.y181{bottom:780.649333pt;}
.y2b{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y2d6{bottom:783.385620pt;}
.y39c{bottom:783.634954pt;}
.y35a{bottom:783.725606pt;}
.y318{bottom:783.736954pt;}
.y256{bottom:784.044246pt;}
.y245{bottom:784.146932pt;}
.y66{bottom:784.146973pt;}
.y126{bottom:784.261637pt;}
.yc0{bottom:785.320231pt;}
.yf3{bottom:785.320272pt;}
.y2a{bottom:794.789469pt;}
.y228{bottom:795.341027pt;}
.y2d5{bottom:796.713620pt;}
.y39b{bottom:796.962954pt;}
.y359{bottom:797.053606pt;}
.y317{bottom:797.064954pt;}
.y180{bottom:799.838688pt;}
.y255{bottom:800.681579pt;}
.y244{bottom:800.813599pt;}
.y65{bottom:800.813639pt;}
.y125{bottom:800.928304pt;}
.ybf{bottom:801.986898pt;}
.yf2{bottom:801.986938pt;}
.y2d4{bottom:810.041620pt;}
.y39a{bottom:810.290954pt;}
.y155{bottom:810.320272pt;}
.y358{bottom:810.381606pt;}
.y316{bottom:810.392954pt;}
.y227{bottom:811.978360pt;}
.y17f{bottom:816.476021pt;}
.y254{bottom:817.318913pt;}
.y243{bottom:817.480265pt;}
.y64{bottom:817.480306pt;}
.y124{bottom:817.594971pt;}
.ybe{bottom:818.653564pt;}
.yf1{bottom:818.653605pt;}
.y2d3{bottom:823.369620pt;}
.y399{bottom:823.618954pt;}
.y357{bottom:823.709606pt;}
.y315{bottom:823.720954pt;}
.y154{bottom:826.986938pt;}
.y226{bottom:828.615693pt;}
.y29{bottom:832.656169pt;}
.y17e{bottom:833.113355pt;}
.y253{bottom:833.956246pt;}
.y242{bottom:834.146932pt;}
.y63{bottom:834.146973pt;}
.y123{bottom:834.261637pt;}
.ybd{bottom:835.320231pt;}
.yf0{bottom:835.320272pt;}
.y2d2{bottom:836.697620pt;}
.y398{bottom:836.946954pt;}
.y356{bottom:837.037606pt;}
.y314{bottom:837.048954pt;}
.y153{bottom:843.653605pt;}
.y225{bottom:845.253027pt;}
.y17d{bottom:849.750688pt;}
.y2d1{bottom:850.025620pt;}
.y397{bottom:850.274954pt;}
.y355{bottom:850.365606pt;}
.y313{bottom:850.376954pt;}
.y252{bottom:850.593579pt;}
.y241{bottom:850.813599pt;}
.y62{bottom:850.813639pt;}
.y122{bottom:850.928304pt;}
.ybc{bottom:851.986898pt;}
.yef{bottom:851.986938pt;}
.y1{bottom:859.312000pt;}
.y224{bottom:861.890360pt;}
.y2d0{bottom:863.353620pt;}
.y396{bottom:863.602954pt;}
.y354{bottom:863.693606pt;}
.y312{bottom:863.704954pt;}
.y17c{bottom:866.388021pt;}
.y251{bottom:867.230913pt;}
.y240{bottom:867.480265pt;}
.y61{bottom:867.480306pt;}
.y121{bottom:867.594971pt;}
.ybb{bottom:868.653564pt;}
.yee{bottom:868.653605pt;}
.y28{bottom:872.377441pt;}
.y2cf{bottom:876.681620pt;}
.y395{bottom:876.930954pt;}
.y353{bottom:877.021606pt;}
.y311{bottom:877.032954pt;}
.y223{bottom:878.527693pt;}
.y17b{bottom:883.025355pt;}
.y250{bottom:883.868246pt;}
.y23f{bottom:884.146932pt;}
.y60{bottom:884.146973pt;}
.y120{bottom:884.261637pt;}
.yba{bottom:885.320231pt;}
.yed{bottom:885.320272pt;}
.y2ce{bottom:890.009620pt;}
.y394{bottom:890.258954pt;}
.y352{bottom:890.349606pt;}
.y310{bottom:890.360954pt;}
.y222{bottom:895.165027pt;}
.y27{bottom:896.377441pt;}
.y17a{bottom:899.662688pt;}
.y24f{bottom:900.505579pt;}
.y23e{bottom:900.813599pt;}
.y5f{bottom:900.813639pt;}
.y11f{bottom:900.928304pt;}
.yb9{bottom:901.986898pt;}
.yec{bottom:901.986938pt;}
.y21a{bottom:902.340306pt;}
.y2cd{bottom:903.337620pt;}
.y393{bottom:903.586954pt;}
.y351{bottom:903.677606pt;}
.y30f{bottom:903.688954pt;}
.y219{bottom:915.668306pt;}
.y2cc{bottom:916.665620pt;}
.y392{bottom:916.914954pt;}
.y350{bottom:917.005606pt;}
.y30e{bottom:917.016954pt;}
.y24e{bottom:917.142913pt;}
.y23d{bottom:917.480265pt;}
.y5e{bottom:917.480306pt;}
.y11e{bottom:917.594971pt;}
.yb8{bottom:918.653564pt;}
.yeb{bottom:918.653605pt;}
.y221{bottom:920.132360pt;}
.y179{bottom:924.618688pt;}
.y218{bottom:928.996306pt;}
.y2cb{bottom:929.993620pt;}
.y391{bottom:930.242954pt;}
.y34f{bottom:930.333606pt;}
.y30d{bottom:930.344954pt;}
.y23c{bottom:934.146932pt;}
.y5d{bottom:934.146973pt;}
.yb7{bottom:935.320231pt;}
.yea{bottom:935.320272pt;}
.y220{bottom:941.835693pt;}
.y24d{bottom:942.098913pt;}
.y217{bottom:942.324306pt;}
.y2ca{bottom:943.321620pt;}
.y390{bottom:943.570954pt;}
.y34e{bottom:943.661606pt;}
.y30c{bottom:943.672954pt;}
.y178{bottom:946.322021pt;}
.y23b{bottom:950.813599pt;}
.y5c{bottom:950.813639pt;}
.y11d{bottom:950.933637pt;}
.yb6{bottom:951.986898pt;}
.ye9{bottom:951.986938pt;}
.y216{bottom:955.652306pt;}
.y26{bottom:956.561849pt;}
.y2c9{bottom:956.649620pt;}
.y38f{bottom:956.898954pt;}
.y34d{bottom:956.989606pt;}
.y30b{bottom:957.000954pt;}
.y21f{bottom:963.802246pt;}
.y23a{bottom:967.480265pt;}
.y5b{bottom:967.480306pt;}
.y11c{bottom:967.594971pt;}
.yb5{bottom:968.653564pt;}
.ye8{bottom:968.653605pt;}
.y176{bottom:968.980306pt;}
.y2c8{bottom:969.977620pt;}
.y38e{bottom:970.226954pt;}
.y34c{bottom:970.317606pt;}
.y30a{bottom:970.328954pt;}
.y25{bottom:986.299161pt;}
.y24{bottom:1001.406494pt;}
.y5a{bottom:1002.206543pt;}
.yb4{bottom:1002.206706pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h15{height:29.448532pt;}
.hc{height:30.080000pt;}
.hd{height:39.712000pt;}
.h7{height:40.853333pt;}
.h14{height:42.069333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1c{height:46.376000pt;}
.h1a{height:47.253333pt;}
.h1e{height:47.441957pt;}
.h1f{height:47.789931pt;}
.h1d{height:47.826667pt;}
.h2{height:49.024000pt;}
.he{height:49.298667pt;}
.h12{height:49.493333pt;}
.h16{height:52.448000pt;}
.h11{height:52.746667pt;}
.h17{height:54.560000pt;}
.h1b{height:55.978667pt;}
.h19{height:55.978829pt;}
.h18{height:56.266667pt;}
.h10{height:57.658667pt;}
.h13{height:63.296000pt;}
.h5{height:69.450667pt;}
.hf{height:75.605333pt;}
.h4{height:105.826671pt;}
.ha{height:1054.488000pt;}
.hb{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.xb{left:83.124801pt;}
.xa{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x17{left:95.378813pt;}
.x4{left:180.874667pt;}
.xe{left:200.357463pt;}
.xd{left:209.718526pt;}
.xf{left:238.110802pt;}
.x11{left:242.071153pt;}
.x13{left:247.544542pt;}
.x14{left:320.473086pt;}
.x15{left:323.306419pt;}
.x10{left:327.197998pt;}
.x3{left:404.408000pt;}
.x8{left:408.191468pt;}
.x9{left:423.311468pt;}
.x16{left:435.524924pt;}
.x12{left:443.733195pt;}
.x5{left:647.307210pt;}
.xc{left:709.519613pt;}
}




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