
    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_fc6611ce8c4e68e8b3a1f400.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.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_1497a02752757339c1efc14f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_6243548d92ead0732178ac79.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51ce8fac226bf2fe88cca084.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_cfd8b86aed7b0165bd2f40b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_addc4989965627d97e0a290f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.203000;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_edd9a77dd1d0854e84993308.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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_dc9e2e9e1498168f0fdf998c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.444000;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_29435f034916e99524dae5a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689000;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_82d2c276c75f2cb5aec8bca9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.719000;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_7c7eeb66fb010156d200262a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_29b2233d51fa61d071b87320.woff2')format("woff");}.fff{font-family:fff;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b0db583d54094bea07aa43ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.772000;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:ff11;src:url('chunks/assets/font_43fe12cacd7c6700bcc1732d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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:ff12;src:url('chunks/assets/font_5ccc321458efd1c794240be6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.664000;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:ff13;src:url('chunks/assets/font_68bfb100a84bf945ef14d7d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.824000;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:ff14;src:url('chunks/assets/font_f23a1a2434d879ab81feb2c5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.655000;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:ff15;src:url('chunks/assets/font_2d593a88172ac5e0243d48d3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940000;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:ff16;src:url('chunks/assets/font_7c2afc34edf3ed39f04c852c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.628000;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:ff17;src:url('chunks/assets/font_0e7e0448efb9eb1b97f65512.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.713000;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:ff18;src:url('chunks/assets/font_b8131b1378718592b3eb0a04.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.681000;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:ff19;src:url('chunks/assets/font_df137786fc7a6882102002bf.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.713000;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:ff1a;src:url('chunks/assets/font_2e7d794538b93b4f314496a6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.681000;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:ff1b;src:url('chunks/assets/font_383a74cdc2cb1da26c0883b2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.713000;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:ff1c;src:url('chunks/assets/font_07b94babaa42fdca4fbc888e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.681000;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:ff1d;src:url('chunks/assets/font_18083443e193b386a6392c2e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.713000;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:ff1e;src:url('chunks/assets/font_f05daa5f2a6410ad94b6dbef.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.877000;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:ff1f;src:url('chunks/assets/font_a576e5a138d7503d4c58a71c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.940000;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:ff20;src:url('chunks/assets/font_8fb89bce06ffe11d9ade739a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.824000;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:ff21;src:url('chunks/assets/font_52380492b94357bba48a11a5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.700000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v7{vertical-align:-23.519987px;}
.v3{vertical-align:-18.000000px;}
.vb{vertical-align:-14.700073px;}
.vc{vertical-align:-12.056950px;}
.v5{vertical-align:-10.949982px;}
.v9{vertical-align:-8.800781px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v8{vertical-align:8.800781px;}
.vd{vertical-align:12.000000px;}
.ve{vertical-align:17.715000px;}
.v4{vertical-align:23.556081px;}
.v1{vertical-align:26.399780px;}
.v6{vertical-align:54.000000px;}
.va{vertical-align:55.819990px;}
.ls31{letter-spacing:-1.530000px;}
.ls33{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-1.050000px;}
.ls32{letter-spacing:-0.630000px;}
.ls2b{letter-spacing:-0.624000px;}
.ls28{letter-spacing:-0.588000px;}
.lsb{letter-spacing:-0.150779px;}
.lsc{letter-spacing:-0.045053px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000022px;}
.ls25{letter-spacing:0.002660px;}
.ls1a{letter-spacing:0.006019px;}
.ls29{letter-spacing:0.006568px;}
.ls13{letter-spacing:0.007463px;}
.lsd{letter-spacing:0.008105px;}
.ls19{letter-spacing:0.010485px;}
.ls1b{letter-spacing:0.012587px;}
.ls18{letter-spacing:0.013150px;}
.ls2a{letter-spacing:0.013228px;}
.ls1e{letter-spacing:0.016961px;}
.ls14{letter-spacing:0.021113px;}
.ls21{letter-spacing:0.022855px;}
.ls23{letter-spacing:0.027478px;}
.ls8{letter-spacing:0.034773px;}
.ls26{letter-spacing:0.035841px;}
.ls5{letter-spacing:0.045053px;}
.ls7{letter-spacing:0.072880px;}
.ls22{letter-spacing:0.223512px;}
.ls9{letter-spacing:0.352800px;}
.ls2c{letter-spacing:0.357156px;}
.ls2e{letter-spacing:0.358420px;}
.lse{letter-spacing:0.625834px;}
.ls4{letter-spacing:0.823190px;}
.ls1{letter-spacing:0.823200px;}
.lsf{letter-spacing:2.995061px;}
.ls1d{letter-spacing:3.002351px;}
.ls20{letter-spacing:3.667680px;}
.ls2{letter-spacing:5.460000px;}
.ls12{letter-spacing:9.822907px;}
.ls11{letter-spacing:13.057996px;}
.ls17{letter-spacing:13.116815px;}
.ls10{letter-spacing:16.145821px;}
.ls1c{letter-spacing:16.410724px;}
.ls24{letter-spacing:17.639839px;}
.ls15{letter-spacing:17.696139px;}
.ls1f{letter-spacing:17.747779px;}
.ls16{letter-spacing:19.068985px;}
.ls27{letter-spacing:19.069718px;}
.lsa{letter-spacing:204.902857px;}
.ls2d{letter-spacing:330.544168px;}
.ls2f{letter-spacing:330.544809px;}
.ls30{letter-spacing:366.544809px;}
.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;}
}
.ws68{word-spacing:-215.084925px;}
.ws4{word-spacing:-21.216000px;}
.ws55{word-spacing:-14.641200px;}
.ws65{word-spacing:-14.170800px;}
.ws1a{word-spacing:-13.818000px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws82{word-spacing:-11.426400px;}
.ws6a{word-spacing:-11.207891px;}
.wsad{word-spacing:-10.512000px;}
.ws6c{word-spacing:-10.293000px;}
.ws5{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.wsba{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.855000px;}
.ws66{word-spacing:-9.672600px;}
.wsfb{word-spacing:-9.315000px;}
.ws117{word-spacing:-9.225000px;}
.ws119{word-spacing:-8.775000px;}
.ws19{word-spacing:-8.148000px;}
.ws6b{word-spacing:-7.266420px;}
.ws6d{word-spacing:-7.205100px;}
.ws6{word-spacing:-6.898500px;}
.ws9d{word-spacing:-6.468000px;}
.ws13{word-spacing:-4.602000px;}
.wsb5{word-spacing:-4.512000px;}
.wsfd{word-spacing:-4.230000px;}
.ws116{word-spacing:-2.700000px;}
.ws105{word-spacing:-2.070000px;}
.ws88{word-spacing:-2.016000px;}
.wsfe{word-spacing:-1.890000px;}
.ws4b{word-spacing:-1.646400px;}
.wsd0{word-spacing:-1.176000px;}
.wsd{word-spacing:-0.823200px;}
.ws4c{word-spacing:-0.646800px;}
.ws3a{word-spacing:-0.529200px;}
.ws5b{word-spacing:-0.411600px;}
.wsae{word-spacing:-0.294000px;}
.ws27{word-spacing:-0.235200px;}
.ws11a{word-spacing:-0.135000px;}
.ws26{word-spacing:-0.117600px;}
.ws8b{word-spacing:-0.058820px;}
.ws3f{word-spacing:-0.058800px;}
.ws103{word-spacing:-0.045000px;}
.ws8a{word-spacing:-0.044702px;}
.ws0{word-spacing:0.000000px;}
.ws62{word-spacing:0.117600px;}
.wsa3{word-spacing:0.176400px;}
.wsed{word-spacing:0.235200px;}
.ws8e{word-spacing:0.294000px;}
.wscc{word-spacing:0.352800px;}
.ws87{word-spacing:0.411600px;}
.ws25{word-spacing:0.470400px;}
.ws71{word-spacing:0.529200px;}
.ws45{word-spacing:0.588000px;}
.ws118{word-spacing:0.630000px;}
.wsb0{word-spacing:0.705600px;}
.wsef{word-spacing:0.764400px;}
.ws3c{word-spacing:0.940800px;}
.ws7f{word-spacing:0.999600px;}
.ws38{word-spacing:1.058400px;}
.ws30{word-spacing:1.117200px;}
.wsf2{word-spacing:1.176000px;}
.ws2e{word-spacing:1.234800px;}
.ws6f{word-spacing:1.293600px;}
.ws18{word-spacing:1.344000px;}
.ws2d{word-spacing:1.352400px;}
.wsf1{word-spacing:1.411200px;}
.ws7c{word-spacing:1.445400px;}
.ws48{word-spacing:1.470000px;}
.ws93{word-spacing:1.528800px;}
.wsa0{word-spacing:1.587600px;}
.ws14{word-spacing:1.638000px;}
.ws57{word-spacing:1.646400px;}
.ws58{word-spacing:1.705200px;}
.wsd9{word-spacing:1.764000px;}
.ws81{word-spacing:1.822800px;}
.ws2c{word-spacing:1.881600px;}
.wsb3{word-spacing:1.940400px;}
.ws16{word-spacing:2.016000px;}
.wsee{word-spacing:2.058000px;}
.ws37{word-spacing:2.116800px;}
.ws43{word-spacing:2.175600px;}
.ws44{word-spacing:2.234400px;}
.ws17{word-spacing:2.268000px;}
.ws1b{word-spacing:2.293200px;}
.ws4a{word-spacing:2.352000px;}
.ws7a{word-spacing:2.410800px;}
.ws80{word-spacing:2.469600px;}
.ws9a{word-spacing:2.496600px;}
.ws34{word-spacing:2.528400px;}
.ws64{word-spacing:2.587200px;}
.ws4e{word-spacing:2.646000px;}
.ws78{word-spacing:2.704800px;}
.ws2b{word-spacing:2.763600px;}
.ws90{word-spacing:2.881200px;}
.ws15{word-spacing:2.898000px;}
.ws99{word-spacing:2.940000px;}
.ws3e{word-spacing:2.998800px;}
.ws3d{word-spacing:3.057600px;}
.ws9e{word-spacing:3.116400px;}
.ws7d{word-spacing:3.175200px;}
.ws54{word-spacing:3.197400px;}
.wsc{word-spacing:3.234000px;}
.ws39{word-spacing:3.292800px;}
.ws94{word-spacing:3.351600px;}
.ws22{word-spacing:3.469200px;}
.ws28{word-spacing:3.528000px;}
.wsd4{word-spacing:3.586800px;}
.ws86{word-spacing:3.645600px;}
.wscf{word-spacing:3.704400px;}
.ws20{word-spacing:3.763200px;}
.ws10{word-spacing:3.822000px;}
.ws21{word-spacing:3.939600px;}
.ws2a{word-spacing:3.998400px;}
.wsd3{word-spacing:4.057200px;}
.wse9{word-spacing:4.116000px;}
.ws6e{word-spacing:4.174800px;}
.wsc7{word-spacing:4.233600px;}
.wscb{word-spacing:4.292400px;}
.ws53{word-spacing:4.336200px;}
.ws24{word-spacing:4.351200px;}
.ws75{word-spacing:4.410000px;}
.ws5e{word-spacing:4.468800px;}
.ws59{word-spacing:4.645200px;}
.wsa7{word-spacing:4.704000px;}
.ws1f{word-spacing:4.762800px;}
.wsd7{word-spacing:4.821600px;}
.ws70{word-spacing:4.880400px;}
.wsa9{word-spacing:4.939200px;}
.wscd{word-spacing:4.998000px;}
.wsea{word-spacing:5.056800px;}
.ws61{word-spacing:5.115600px;}
.ws63{word-spacing:5.174400px;}
.ws52{word-spacing:5.233200px;}
.ws46{word-spacing:5.292000px;}
.ws7e{word-spacing:5.350800px;}
.ws49{word-spacing:5.409600px;}
.wsb4{word-spacing:5.468400px;}
.ws84{word-spacing:5.527200px;}
.ws98{word-spacing:5.586000px;}
.wsb1{word-spacing:5.644800px;}
.ws5d{word-spacing:5.703600px;}
.ws2f{word-spacing:5.762400px;}
.ws12{word-spacing:5.821200px;}
.ws9b{word-spacing:5.869200px;}
.ws3b{word-spacing:5.938800px;}
.ws9f{word-spacing:5.997600px;}
.wsce{word-spacing:6.056400px;}
.wsa6{word-spacing:6.115200px;}
.ws4d{word-spacing:6.174000px;}
.wsca{word-spacing:6.232800px;}
.ws11{word-spacing:6.291600px;}
.ws74{word-spacing:6.350400px;}
.ws41{word-spacing:6.409200px;}
.wsb{word-spacing:6.468000px;}
.ws31{word-spacing:6.526800px;}
.ws8f{word-spacing:6.585600px;}
.ws76{word-spacing:6.644400px;}
.ws60{word-spacing:6.703200px;}
.wsa4{word-spacing:6.762000px;}
.ws35{word-spacing:6.820800px;}
.ws79{word-spacing:6.879600px;}
.ws47{word-spacing:6.938400px;}
.ws36{word-spacing:6.997200px;}
.wsec{word-spacing:7.056000px;}
.ws97{word-spacing:7.114800px;}
.wsc9{word-spacing:7.232400px;}
.wsa5{word-spacing:7.291200px;}
.wsd6{word-spacing:7.350000px;}
.ws56{word-spacing:7.408800px;}
.wsa{word-spacing:7.467600px;}
.wseb{word-spacing:7.526400px;}
.wsaf{word-spacing:7.585200px;}
.ws5a{word-spacing:7.644000px;}
.ws1d{word-spacing:7.702800px;}
.ws29{word-spacing:7.761600px;}
.ws96{word-spacing:7.879200px;}
.ws4f{word-spacing:7.938000px;}
.wsc6{word-spacing:7.996800px;}
.ws40{word-spacing:8.055600px;}
.wsf0{word-spacing:8.114400px;}
.ws8d{word-spacing:8.173200px;}
.wsb2{word-spacing:8.232000px;}
.ws1e{word-spacing:8.290800px;}
.ws51{word-spacing:8.349600px;}
.wsd8{word-spacing:8.408400px;}
.ws85{word-spacing:8.526000px;}
.ws23{word-spacing:8.643600px;}
.wsc8{word-spacing:8.702400px;}
.wsa2{word-spacing:8.761200px;}
.wsd1{word-spacing:8.878800px;}
.ws72{word-spacing:8.996400px;}
.ws1c{word-spacing:9.114000px;}
.ws8c{word-spacing:9.349200px;}
.wsd5{word-spacing:9.525600px;}
.ws77{word-spacing:9.584400px;}
.wsf5{word-spacing:9.643200px;}
.wsaa{word-spacing:9.760800px;}
.wsa1{word-spacing:9.819600px;}
.ws5f{word-spacing:9.937200px;}
.wsc5{word-spacing:9.996000px;}
.ws5c{word-spacing:10.054800px;}
.ws83{word-spacing:10.113600px;}
.ws42{word-spacing:10.231200px;}
.wse{word-spacing:10.466400px;}
.wse8{word-spacing:10.642800px;}
.ws33{word-spacing:10.878000px;}
.wsd2{word-spacing:10.936800px;}
.ws32{word-spacing:11.054400px;}
.ws106{word-spacing:11.113200px;}
.wsf6{word-spacing:11.230800px;}
.ws92{word-spacing:11.407200px;}
.ws7b{word-spacing:11.519400px;}
.ws91{word-spacing:11.701200px;}
.wsa8{word-spacing:12.348000px;}
.wsf{word-spacing:12.465600px;}
.ws95{word-spacing:12.642000px;}
.ws73{word-spacing:13.288800px;}
.wsf3{word-spacing:15.464400px;}
.ws50{word-spacing:15.582000px;}
.wsff{word-spacing:17.820000px;}
.ws9{word-spacing:18.228000px;}
.ws8{word-spacing:18.416400px;}
.wsf4{word-spacing:18.933600px;}
.ws102{word-spacing:21.465000px;}
.ws9c{word-spacing:22.260661px;}
.ws89{word-spacing:22.261210px;}
.wsb6{word-spacing:28.708800px;}
.wsb9{word-spacing:32.740793px;}
.wsf7{word-spacing:33.974991px;}
.wsfa{word-spacing:37.844990px;}
.ws101{word-spacing:66.870000px;}
.ws10d{word-spacing:71.328000px;}
.ws110{word-spacing:78.192000px;}
.wsb8{word-spacing:82.708800px;}
.wsf9{word-spacing:85.770000px;}
.ws115{word-spacing:86.112000px;}
.ws113{word-spacing:110.543993px;}
.ws112{word-spacing:114.192000px;}
.ws114{word-spacing:125.856000px;}
.wsbc{word-spacing:131.568000px;}
.wsdb{word-spacing:137.135993px;}
.ws100{word-spacing:145.034988px;}
.ws111{word-spacing:146.496000px;}
.wsc4{word-spacing:155.327995px;}
.ws10f{word-spacing:159.696000px;}
.wsbd{word-spacing:166.324795px;}
.wsf8{word-spacing:168.210000px;}
.wsb7{word-spacing:168.628786px;}
.ws107{word-spacing:175.300800px;}
.ws10e{word-spacing:187.055989px;}
.wsc1{word-spacing:187.872000px;}
.wsda{word-spacing:191.903993px;}
.ws67{word-spacing:194.585635px;}
.ws69{word-spacing:194.720795px;}
.wsc2{word-spacing:205.872000px;}
.wsbb{word-spacing:207.892795px;}
.wsc3{word-spacing:208.261755px;}
.ws104{word-spacing:210.960000px;}
.wsfc{word-spacing:227.114991px;}
.wse1{word-spacing:256.175979px;}
.ws10b{word-spacing:260.448000px;}
.wsac{word-spacing:260.831991px;}
.wse7{word-spacing:263.184000px;}
.wsde{word-spacing:266.639979px;}
.wse2{word-spacing:270.671980px;}
.wse4{word-spacing:273.648000px;}
.wsdf{word-spacing:284.831982px;}
.ws109{word-spacing:289.967983px;}
.wse0{word-spacing:290.255979px;}
.wse5{word-spacing:291.839978px;}
.wsdd{word-spacing:294.912000px;}
.wse6{word-spacing:297.264000px;}
.ws108{word-spacing:301.392000px;}
.ws10a{word-spacing:303.887983px;}
.wse3{word-spacing:310.223978px;}
.wsdc{word-spacing:312.959979px;}
.ws10c{word-spacing:335.663983px;}
.wsab{word-spacing:649.000775px;}
.wsbe{word-spacing:954.004765px;}
.wsbf{word-spacing:1331.812779px;}
.wsc0{word-spacing:1659.700749px;}
._10{margin-left:-204.902860px;}
._55{margin-left:-16.608000px;}
._e{margin-left:-12.483600px;}
._13{margin-left:-9.925232px;}
._b4{margin-left:-8.556017px;}
._12{margin-left:-7.179480px;}
._7{margin-left:-5.527200px;}
._b{margin-left:-4.371360px;}
._3{margin-left:-3.234000px;}
._1{margin-left:-1.440000px;}
._0{width:1.713600px;}
._2{width:3.009600px;}
._a{width:4.121880px;}
._28{width:5.174400px;}
._54{width:6.309240px;}
._c{width:7.555800px;}
._9{width:9.625560px;}
._5{width:10.819200px;}
._6{width:12.870960px;}
._f{width:13.926840px;}
._8{width:17.219988px;}
._d{width:18.416400px;}
._14{width:25.391999px;}
._25{width:30.900000px;}
._88{width:35.272781px;}
._98{width:37.488000px;}
._4{width:38.625561px;}
._27{width:43.041600px;}
._26{width:45.561600px;}
._5b{width:70.319992px;}
._3d{width:78.335992px;}
._b3{width:80.448000px;}
._9e{width:81.661200px;}
._b2{width:88.704000px;}
._3e{width:98.640000px;}
._9a{width:101.232000px;}
._41{width:102.671993px;}
._84{width:104.867987px;}
._45{width:106.272000px;}
._94{width:108.536381px;}
._75{width:109.976400px;}
._5c{width:114.288000px;}
._9b{width:117.456000px;}
._aa{width:118.572907px;}
._59{width:121.571093px;}
._90{width:123.737981px;}
._71{width:124.760996px;}
._92{width:127.133983px;}
._57{width:136.284507px;}
._7e{width:138.448198px;}
._61{width:140.857407px;}
._48{width:142.080000px;}
._4a{width:146.111993px;}
._86{width:150.227380px;}
._5a{width:152.640000px;}
._35{width:154.238404px;}
._85{width:155.322000px;}
._ad{width:156.610800px;}
._95{width:158.130000px;}
._51{width:159.796781px;}
._ab{width:161.087989px;}
._30{width:162.623990px;}
._60{width:164.356793px;}
._74{width:167.062197px;}
._11{width:171.276900px;}
._36{width:173.903994px;}
._56{width:176.207992px;}
._52{width:180.240007px;}
._80{width:182.571341px;}
._af{width:186.479989px;}
._3c{width:187.679992px;}
._b1{width:188.735989px;}
._40{width:190.176000px;}
._b0{width:191.327989px;}
._3a{width:192.671994px;}
._5f{width:194.928000px;}
._49{width:196.704007px;}
._3b{width:198.912000px;}
._44{width:202.065593px;}
._91{width:206.342994px;}
._2b{width:207.551994px;}
._ae{width:208.799989px;}
._2a{width:211.439994px;}
._ac{width:212.687989px;}
._42{width:213.936000px;}
._39{width:215.039991px;}
._5e{width:216.384000px;}
._32{width:218.927990px;}
._62{width:221.808000px;}
._8f{width:224.988428px;}
._2d{width:226.319994px;}
._81{width:231.632988px;}
._47{width:233.616000px;}
._3f{width:238.559986px;}
._7d{width:240.839990px;}
._83{width:247.950006px;}
._2f{width:250.991994px;}
._18{width:252.734400px;}
._70{width:255.017106px;}
._58{width:257.327986px;}
._16{width:261.455979px;}
._66{width:266.270421px;}
._6f{width:267.435000px;}
._37{width:268.464000px;}
._38{width:269.808000px;}
._a2{width:270.960000px;}
._69{width:273.537621px;}
._46{width:281.471986px;}
._4c{width:282.523186px;}
._96{width:285.344988px;}
._7c{width:288.765000px;}
._87{width:290.702403px;}
._19{width:292.127979px;}
._72{width:293.220000px;}
._17{width:296.140800px;}
._34{width:298.862400px;}
._5d{width:300.767986px;}
._7f{width:303.435000px;}
._31{width:307.343994px;}
._6c{width:308.736000px;}
._20{width:312.143979px;}
._a0{width:314.606400px;}
._6d{width:318.719986px;}
._67{width:325.967982px;}
._23{width:327.407979px;}
._82{width:329.220000px;}
._6e{width:333.278378px;}
._43{width:337.775986px;}
._53{width:338.827186px;}
._65{width:340.224000px;}
._6b{width:342.143986px;}
._73{width:349.215001px;}
._93{width:357.075000px;}
._4b{width:361.199986px;}
._6a{width:365.342400px;}
._63{width:366.638379px;}
._7b{width:370.530000px;}
._a8{width:380.448000px;}
._a7{width:399.566400px;}
._24{width:408.096000px;}
._33{width:421.008000px;}
._2e{width:423.984000px;}
._68{width:429.134393px;}
._2c{width:431.952000px;}
._9d{width:437.136000px;}
._64{width:438.494378px;}
._9f{width:446.256000px;}
._9c{width:450.158400px;}
._a5{width:480.398400px;}
._1c{width:488.304000px;}
._1a{width:515.054400px;}
._4d{width:537.792000px;}
._a4{width:566.544000px;}
._a3{width:569.520000px;}
._29{width:577.886400px;}
._a9{width:595.838400px;}
._76{width:603.899975px;}
._a6{width:613.488000px;}
._1e{width:621.312000px;}
._89{width:623.744975px;}
._1b{width:629.966400px;}
._1d{width:657.600000px;}
._15{width:690.288000px;}
._99{width:703.008000px;}
._1f{width:707.040000px;}
._a1{width:723.422400px;}
._22{width:733.008000px;}
._8a{width:796.410000px;}
._77{width:837.225000px;}
._21{width:840.192000px;}
._4e{width:1001.615965px;}
._8b{width:1045.484963px;}
._78{width:1048.860000px;}
._8c{width:1107.585000px;}
._97{width:1145.025059px;}
._4f{width:1379.424070px;}
._8d{width:1389.060059px;}
._79{width:1411.335000px;}
._8e{width:1687.185059px;}
._50{width:1707.311949px;}
._7a{width:1725.884915px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:30.660000px;}
.fsd{font-size:31.500000px;}
.fs18{font-size:33.600000px;}
.fse{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.800000px;}
.fs17{font-size:44.702399px;}
.fsc{font-size:45.000000px;}
.fs11{font-size:45.053400px;}
.fs12{font-size:45.153600px;}
.fs7{font-size:46.199999px;}
.fsb{font-size:48.000000px;}
.fs13{font-size:50.259600px;}
.fs15{font-size:54.000000px;}
.fs14{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs16{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y14f{bottom:2.294403px;}
.y153{bottom:2.295685px;}
.y175{bottom:2.657043px;}
.y145{bottom:2.735710px;}
.y14c{bottom:2.744476px;}
.yec{bottom:3.519836px;}
.y14a{bottom:4.845703px;}
.y178{bottom:20.774231px;}
.y171{bottom:20.774414px;}
.y141{bottom:20.865761px;}
.y6{bottom:35.925007px;}
.y173{bottom:40.376404px;}
.y143{bottom:40.454109px;}
.y5{bottom:66.525004px;}
.y4d{bottom:75.796800px;}
.y4c{bottom:87.798300px;}
.y4{bottom:97.125005px;}
.yb2{bottom:99.459598px;}
.yf0{bottom:99.460798px;}
.y4b{bottom:99.799800px;}
.y292{bottom:100.638598px;}
.y190{bottom:102.322808px;}
.y1f4{bottom:103.535397px;}
.y11a{bottom:103.841995px;}
.y88{bottom:108.710100px;}
.y268{bottom:108.945900px;}
.y238{bottom:109.962604px;}
.y16e{bottom:110.183556px;}
.yb1{bottom:111.460798px;}
.y4a{bottom:111.801300px;}
.y33c{bottom:113.188222px;}
.y3ac{bottom:113.487579px;}
.yef{bottom:115.841995px;}
.yc5{bottom:115.898105px;}
.y34d{bottom:117.085648px;}
.y1d4{bottom:118.243518px;}
.y291{bottom:121.865398px;}
.y18f{bottom:123.549608px;}
.y49{bottom:123.802800px;}
.y1f3{bottom:124.758600px;}
.y33b{bottom:126.688222px;}
.y3ab{bottom:126.987579px;}
.yb0{bottom:127.841995px;}
.y87{bottom:129.936900px;}
.y22a{bottom:129.945900px;}
.y267{bottom:130.149295px;}
.y34c{bottom:130.585648px;}
.y237{bottom:131.189404px;}
.y16d{bottom:131.406749px;}
.yee{bottom:132.890099px;}
.y48{bottom:135.804300px;}
.y1d3{bottom:136.399518px;}
.yc4{bottom:137.124905px;}
.y23{bottom:139.264499px;}
.y33a{bottom:140.188222px;}
.y3aa{bottom:140.487579px;}
.y290{bottom:143.092198px;}
.y34b{bottom:144.085648px;}
.y18e{bottom:144.776408px;}
.y1f2{bottom:145.983603px;}
.y47{bottom:147.805800px;}
.y1d2{bottom:149.899518px;}
.y86{bottom:151.163700px;}
.y229{bottom:151.169105px;}
.y266{bottom:151.376095px;}
.y236{bottom:152.400000px;}
.y16c{bottom:152.633549px;}
.y339{bottom:153.688222px;}
.y3a9{bottom:153.987579px;}
.y34a{bottom:157.585648px;}
.yc3{bottom:158.340907px;}
.y293{bottom:163.586998px;}
.y28f{bottom:164.318998px;}
.y18d{bottom:166.003208px;}
.y338{bottom:167.188222px;}
.y1f1{bottom:167.210403px;}
.y3a8{bottom:167.487579px;}
.y1d1{bottom:168.043518px;}
.y349{bottom:171.085648px;}
.y85{bottom:172.390500px;}
.y228{bottom:172.395905px;}
.y265{bottom:172.602895px;}
.y235{bottom:173.626800px;}
.y16b{bottom:173.851360px;}
.yc2{bottom:179.567707px;}
.y337{bottom:180.688222px;}
.y3a7{bottom:180.987579px;}
.y348{bottom:184.585648px;}
.y28e{bottom:185.545798px;}
.y2c5{bottom:185.921268px;}
.y1d0{bottom:186.199518px;}
.y18c{bottom:187.230008px;}
.y32{bottom:188.265150px;}
.y1f0{bottom:188.435394px;}
.ye1{bottom:190.379994px;}
.y109{bottom:193.383590px;}
.y84{bottom:193.617300px;}
.y227{bottom:193.619109px;}
.y264{bottom:193.829695px;}
.yaf{bottom:193.845909px;}
.y336{bottom:194.188222px;}
.y3a6{bottom:194.487579px;}
.y140{bottom:194.636993px;}
.y234{bottom:194.853600px;}
.y16a{bottom:195.078160px;}
.y1a{bottom:196.933500px;}
.y146{bottom:197.372704px;}
.y347{bottom:198.085648px;}
.y1cf{bottom:199.699518px;}
.yc1{bottom:200.794507px;}
.y2c4{bottom:203.583768px;}
.y28d{bottom:206.772598px;}
.y335{bottom:207.688222px;}
.y3a5{bottom:207.987579px;}
.y18b{bottom:208.456808px;}
.y31{bottom:209.491950px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1ef{bottom:209.624385px;}
.ye9{bottom:209.639008px;}
.y346{bottom:211.585648px;}
.ye0{bottom:211.606794px;}
.y13f{bottom:211.925400px;}
.y142{bottom:213.302559px;}
.y108{bottom:214.610390px;}
.y83{bottom:214.844100px;}
.y226{bottom:214.845909px;}
.y263{bottom:215.056495px;}
.yae{bottom:215.069091px;}
.y147{bottom:215.502754px;}
.y233{bottom:216.080400px;}
.y169{bottom:216.304960px;}
.y2c6{bottom:217.586998px;}
.y1ce{bottom:217.843518px;}
.y2c3{bottom:221.167518px;}
.y334{bottom:221.188222px;}
.y3a4{bottom:221.487579px;}
.yc0{bottom:222.021307px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y345{bottom:225.085648px;}
.y28c{bottom:227.999398px;}
.y144{bottom:229.462050px;}
.y18a{bottom:229.683608px;}
.y30{bottom:230.715156px;}
.y1ee{bottom:230.851185px;}
.ydf{bottom:232.833594px;}
.y2c2{bottom:234.667518px;}
.y333{bottom:234.688222px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y3a3{bottom:234.987579px;}
.y107{bottom:235.833594px;}
.y1cd{bottom:235.999518px;}
.y225{bottom:236.061900px;}
.y82{bottom:236.070900px;}
.y262{bottom:236.283295px;}
.yad{bottom:236.295891px;}
.y232{bottom:237.307200px;}
.y168{bottom:237.531760px;}
.y344{bottom:238.585648px;}
.y2e7{bottom:239.921268px;}
.ybf{bottom:243.248107px;}
.y332{bottom:248.188222px;}
.y3a2{bottom:248.487579px;}
.y28b{bottom:249.226198px;}
.y1cc{bottom:249.499518px;}
.y189{bottom:250.910408px;}
.y2f{bottom:251.941956px;}
.y1ed{bottom:252.077985px;}
.y343{bottom:252.085648px;}
.y2c1{bottom:252.251268px;}
.y3ae{bottom:252.987602px;}
.yde{bottom:254.060394px;}
.y106{bottom:257.060394px;}
.y224{bottom:257.288700px;}
.y81{bottom:257.292295px;}
.y261{bottom:257.510095px;}
.yac{bottom:257.520905px;}
.y2e6{bottom:257.583768px;}
.y231{bottom:258.534000px;}
.y167{bottom:258.756591px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y13e{bottom:261.462753px;}
.y331{bottom:261.688222px;}
.y3a1{bottom:261.987579px;}
.ybe{bottom:264.474907px;}
.y342{bottom:265.585648px;}
.y3ad{bottom:266.487602px;}
.y1cb{bottom:267.643518px;}
.y2c0{bottom:269.835018px;}
.y28a{bottom:270.452998px;}
.y188{bottom:272.122803px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y2e{bottom:273.159756px;}
.y1ec{bottom:273.304785px;}
.y2e5{bottom:275.167518px;}
.y330{bottom:275.188222px;}
.ydd{bottom:275.285408px;}
.y3a0{bottom:275.487579px;}
.y105{bottom:278.283599px;}
.y223{bottom:278.515500px;}
.y80{bottom:278.519095px;}
.y260{bottom:278.736895px;}
.yab{bottom:278.738705px;}
.y230{bottom:279.760800px;}
.y166{bottom:279.983391px;}
.y13d{bottom:282.678607px;}
.y2bf{bottom:283.335018px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.ybd{bottom:285.696302px;}
.y1ca{bottom:285.799518px;}
.y2e4{bottom:288.667518px;}
.y32f{bottom:288.688222px;}
.y39f{bottom:288.987579px;}
.y289{bottom:291.679798px;}
.y187{bottom:293.349603px;}
.y2d{bottom:294.386556px;}
.y1eb{bottom:294.531585px;}
.ydc{bottom:296.506803px;}
.y1c9{bottom:299.299518px;}
.y104{bottom:299.510399px;}
.y222{bottom:299.742300px;}
.y7f{bottom:299.745895px;}
.y25f{bottom:299.963695px;}
.yaa{bottom:299.965505px;}
.y2be{bottom:300.918768px;}
.y22f{bottom:300.987600px;}
.y165{bottom:301.208542px;}
.y32e{bottom:302.188222px;}
.y39e{bottom:302.487579px;}
.y13c{bottom:303.905407px;}
.y2e3{bottom:306.251268px;}
.ybc{bottom:306.923102px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1c8{bottom:312.799518px;}
.y288{bottom:312.906598px;}
.y186{bottom:314.576403px;}
.y2c{bottom:315.613356px;}
.y32d{bottom:315.688222px;}
.y1ea{bottom:315.758385px;}
.y39d{bottom:315.987579px;}
.ydb{bottom:317.733603px;}
.y2bd{bottom:318.502518px;}
.y103{bottom:320.733603px;}
.y221{bottom:320.969100px;}
.y7e{bottom:320.970909px;}
.y25e{bottom:321.190495px;}
.ya9{bottom:321.192305px;}
.y22e{bottom:322.214400px;}
.y164{bottom:322.435952px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2e2{bottom:323.835018px;}
.y13b{bottom:325.132207px;}
.ybb{bottom:328.149902px;}
.y32c{bottom:329.188222px;}
.y39c{bottom:329.487579px;}
.y1c7{bottom:330.943518px;}
.y287{bottom:334.133398px;}
.y185{bottom:335.803203px;}
.y2bc{bottom:336.086268px;}
.y2b{bottom:336.840156px;}
.y1e9{bottom:336.985185px;}
.y341{bottom:337.810799px;}
.yda{bottom:338.960403px;}
.y2e1{bottom:341.418768px;}
.y102{bottom:341.960403px;}
.y7d{bottom:342.190495px;}
.y220{bottom:342.195900px;}
.y25d{bottom:342.417295px;}
.ya8{bottom:342.419105px;}
.y32b{bottom:342.688222px;}
.y39b{bottom:342.987579px;}
.y22d{bottom:343.435820px;}
.y163{bottom:343.662752px;}
.y13a{bottom:346.359007px;}
.y11{bottom:348.133500px;}
.y1c6{bottom:349.099518px;}
.yba{bottom:349.371321px;}
.y2bb{bottom:353.670018px;}
.y286{bottom:355.360198px;}
.y32a{bottom:356.188222px;}
.y39a{bottom:356.487579px;}
.y184{bottom:357.030003px;}
.y2a{bottom:358.066956px;}
.y1e8{bottom:358.211985px;}
.y2e0{bottom:359.002518px;}
.yd9{bottom:360.181822px;}
.y1c5{bottom:362.599518px;}
.y101{bottom:363.185394px;}
.y21f{bottom:363.410105px;}
.y7c{bottom:363.417295px;}
.y25c{bottom:363.644095px;}
.ya7{bottom:363.645905px;}
.y22c{bottom:364.662620px;}
.y2ba{bottom:367.170018px;}
.y139{bottom:367.585807px;}
.y329{bottom:369.688222px;}
.y399{bottom:369.987579px;}
.yb9{bottom:370.598121px;}
.y2df{bottom:376.586268px;}
.y285{bottom:376.586998px;}
.y183{bottom:378.256803px;}
.y29{bottom:379.291946px;}
.y1e7{bottom:379.438785px;}
.y1c4{bottom:380.743518px;}
.yd8{bottom:381.408622px;}
.y398{bottom:383.487579px;}
.y162{bottom:383.632052px;}
.y21e{bottom:384.636905px;}
.y7b{bottom:384.644095px;}
.y2b9{bottom:384.753768px;}
.ya6{bottom:384.865514px;}
.y25b{bottom:384.870895px;}
.y22b{bottom:385.889420px;}
.y10{bottom:386.785499px;}
.y328{bottom:387.916222px;}
.y138{bottom:388.812607px;}
.yb8{bottom:391.824921px;}
.y2de{bottom:394.170018px;}
.y397{bottom:396.987579px;}
.y284{bottom:397.808393px;}
.y1c3{bottom:398.899518px;}
.y182{bottom:399.483603px;}
.y1e6{bottom:400.665585px;}
.y327{bottom:401.416222px;}
.y2b8{bottom:402.337518px;}
.yd7{bottom:402.631803px;}
.y100{bottom:405.633613px;}
.y21d{bottom:405.863705px;}
.y7a{bottom:405.870895px;}
.ya5{bottom:406.092314px;}
.y25a{bottom:406.095886px;}
.y2dd{bottom:407.670018px;}
.y366{bottom:407.711688px;}
.yf{bottom:408.044999px;}
.y137{bottom:410.021407px;}
.y396{bottom:410.487579px;}
.y1c2{bottom:412.399518px;}
.yb7{bottom:413.042721px;}
.y326{bottom:414.916222px;}
.y2b7{bottom:415.837518px;}
.y283{bottom:419.035193px;}
.y45{bottom:419.941956px;}
.y181{bottom:420.710403px;}
.y1e5{bottom:421.892385px;}
.yd6{bottom:423.858603px;}
.y395{bottom:423.987579px;}
.y2dc{bottom:425.253768px;}
.y365{bottom:425.939688px;}
.yff{bottom:426.860413px;}
.y21c{bottom:427.090505px;}
.y79{bottom:427.092314px;}
.y259{bottom:427.317305px;}
.ya4{bottom:427.319114px;}
.y325{bottom:428.416222px;}
.y1c1{bottom:430.543518px;}
.y136{bottom:431.248207px;}
.y2b6{bottom:433.421268px;}
.yb6{bottom:434.269521px;}
.y394{bottom:437.487579px;}
.y282{bottom:440.261993px;}
.y324{bottom:441.916222px;}
.y180{bottom:441.933585px;}
.y161{bottom:442.364242px;}
.y2db{bottom:442.837518px;}
.y1e4{bottom:443.119185px;}
.y44{bottom:443.941956px;}
.y364{bottom:444.083688px;}
.yd5{bottom:445.085403px;}
.y241{bottom:445.716019px;}
.yfe{bottom:448.083594px;}
.y21b{bottom:448.317305px;}
.y78{bottom:448.319114px;}
.y258{bottom:448.544105px;}
.ya3{bottom:448.545914px;}
.y1c0{bottom:448.687518px;}
.y393{bottom:450.987579px;}
.y2b5{bottom:451.005018px;}
.y135{bottom:452.475007px;}
.y323{bottom:455.416222px;}
.yb5{bottom:455.496321px;}
.y301{bottom:459.987167px;}
.y2da{bottom:460.421268px;}
.y281{bottom:461.461793px;}
.y43{bottom:461.941956px;}
.y363{bottom:462.227688px;}
.y17f{bottom:463.160385px;}
.y1e3{bottom:464.345985px;}
.y392{bottom:464.487579px;}
.yd4{bottom:466.305013px;}
.y1bf{bottom:466.831518px;}
.y246{bottom:468.208516px;}
.y2b4{bottom:468.588768px;}
.y322{bottom:468.916222px;}
.yfd{bottom:469.310394px;}
.y21a{bottom:469.544105px;}
.y77{bottom:469.545914px;}
.ya2{bottom:469.758286px;}
.y257{bottom:469.770905px;}
.y134{bottom:473.701807px;}
.yb4{bottom:476.723121px;}
.y300{bottom:477.987167px;}
.y391{bottom:477.987579px;}
.y2d9{bottom:478.005018px;}
.y42{bottom:479.941956px;}
.y362{bottom:480.371688px;}
.y160{bottom:482.339233px;}
.y321{bottom:482.416222px;}
.y280{bottom:482.688593px;}
.y17e{bottom:484.385422px;}
.ye{bottom:484.864502px;}
.y1be{bottom:484.975518px;}
.y1e2{bottom:485.572785px;}
.y2b3{bottom:486.172518px;}
.y245{bottom:486.436516px;}
.y2ff{bottom:486.987167px;}
.yd3{bottom:487.531813px;}
.yfc{bottom:490.524622px;}
.y76{bottom:490.760095px;}
.y219{bottom:490.770905px;}
.ya1{bottom:490.985086px;}
.y256{bottom:490.994086px;}
.y390{bottom:491.487579px;}
.y133{bottom:494.928607px;}
.y2d8{bottom:495.588768px;}
.y41{bottom:497.941956px;}
.yb3{bottom:497.949921px;}
.y361{bottom:498.515688px;}
.y320{bottom:500.560222px;}
.yd{bottom:502.864502px;}
.y1bd{bottom:503.119518px;}
.y2b2{bottom:503.756268px;}
.y27f{bottom:503.915393px;}
.y244{bottom:504.580516px;}
.y38f{bottom:504.987579px;}
.y1e1{bottom:506.799585px;}
.yd2{bottom:508.758613px;}
.y2fe{bottom:509.487167px;}
.yfb{bottom:511.751422px;}
.y218{bottom:511.981514px;}
.y75{bottom:511.986895px;}
.ya0{bottom:512.211886px;}
.y255{bottom:512.220886px;}
.y2d7{bottom:513.172518px;}
.y31f{bottom:514.060222px;}
.y40{bottom:515.941956px;}
.y132{bottom:516.155407px;}
.y360{bottom:516.659688px;}
.y38e{bottom:518.487579px;}
.yc{bottom:520.864502px;}
.y1bc{bottom:521.263518px;}
.y2b1{bottom:521.340018px;}
.y15f{bottom:522.314269px;}
.y243{bottom:522.724516px;}
.y2fd{bottom:522.987167px;}
.y27e{bottom:525.142193px;}
.y31e{bottom:527.560222px;}
.y1e0{bottom:528.026385px;}
.yd1{bottom:529.985413px;}
.y2d6{bottom:530.756268px;}
.y38d{bottom:531.987579px;}
.yfa{bottom:532.978222px;}
.y217{bottom:533.208314px;}
.y74{bottom:533.213695px;}
.y9f{bottom:533.438686px;}
.y254{bottom:533.445923px;}
.y3f{bottom:533.941956px;}
.y35f{bottom:534.803688px;}
.y2fc{bottom:536.487167px;}
.y131{bottom:537.382207px;}
.yb{bottom:538.864499px;}
.y2b0{bottom:538.923768px;}
.y1bb{bottom:539.407518px;}
.y31d{bottom:541.060222px;}
.y17d{bottom:545.358603px;}
.y38c{bottom:545.487579px;}
.y27d{bottom:546.368993px;}
.y2d5{bottom:548.340018px;}
.y1df{bottom:549.253185px;}
.y242{bottom:549.616516px;}
.yd0{bottom:551.210403px;}
.y3e{bottom:551.941956px;}
.y35e{bottom:552.947688px;}
.yf9{bottom:554.205022px;}
.y216{bottom:554.435114px;}
.y73{bottom:554.440495px;}
.y31c{bottom:554.560222px;}
.y9e{bottom:554.665486px;}
.y2af{bottom:556.507518px;}
.ya{bottom:556.864499px;}
.y1ba{bottom:557.551518px;}
.y130{bottom:558.609007px;}
.y2fb{bottom:558.987167px;}
.y38b{bottom:558.987579px;}
.y15e{bottom:562.280260px;}
.yc7{bottom:562.314743px;}
.y2d4{bottom:565.923768px;}
.y17c{bottom:566.591094px;}
.y27c{bottom:567.595793px;}
.y31b{bottom:568.060222px;}
.y3d{bottom:569.941956px;}
.y1de{bottom:570.479985px;}
.y35d{bottom:571.091688px;}
.y2fa{bottom:572.487167px;}
.y38a{bottom:572.487579px;}
.y240{bottom:573.929260px;}
.y2ae{bottom:574.091268px;}
.yf8{bottom:575.431822px;}
.y215{bottom:575.661914px;}
.y72{bottom:575.667295px;}
.y1b9{bottom:575.707518px;}
.y9d{bottom:575.892286px;}
.y12f{bottom:579.835807px;}
.y31a{bottom:581.560222px;}
.y2d3{bottom:583.507518px;}
.y389{bottom:585.987579px;}
.y3c{bottom:587.941956px;}
.y27b{bottom:588.822593px;}
.y1b8{bottom:589.207518px;}
.y1dd{bottom:591.706785px;}
.y2ad{bottom:591.746268px;}
.ycf{bottom:593.430013px;}
.y2f9{bottom:594.987167px;}
.yf7{bottom:596.658622px;}
.y214{bottom:596.888714px;}
.y71{bottom:596.894095px;}
.y9c{bottom:597.119086px;}
.y35c{bottom:597.983688px;}
.y388{bottom:599.487579px;}
.y319{bottom:599.704222px;}
.y12e{bottom:601.062607px;}
.y2d2{bottom:601.091268px;}
.y15d{bottom:602.249560px;}
.y3b{bottom:605.941956px;}
.y17b{bottom:606.566085px;}
.y1b7{bottom:607.351518px;}
.y2f8{bottom:608.487167px;}
.y2ac{bottom:609.330018px;}
.y27a{bottom:610.049393px;}
.y1dc{bottom:612.933585px;}
.y387{bottom:612.987579px;}
.yce{bottom:614.656813px;}
.y318{bottom:617.860222px;}
.yf6{bottom:617.885422px;}
.y213{bottom:618.115514px;}
.y70{bottom:618.120895px;}
.y9b{bottom:618.345886px;}
.y2d1{bottom:618.746268px;}
.y12d{bottom:622.295407px;}
.y35b{bottom:622.296295px;}
.y15c{bottom:623.476360px;}
.y3a{bottom:623.941956px;}
.y1b6{bottom:625.507518px;}
.y386{bottom:626.487579px;}
.y2ab{bottom:626.913768px;}
.y2f7{bottom:630.987167px;}
.y279{bottom:631.276193px;}
.y317{bottom:631.360222px;}
.y23a{bottom:633.526657px;}
.y1db{bottom:634.160385px;}
.ycd{bottom:635.883613px;}
.y2d0{bottom:636.330018px;}
.y1b5{bottom:639.007518px;}
.yf5{bottom:639.108603px;}
.y212{bottom:639.342314px;}
.y6f{bottom:639.344123px;}
.y9a{bottom:639.569114px;}
.y253{bottom:639.570923px;}
.y385{bottom:639.987579px;}
.y2aa{bottom:640.413768px;}
.y39{bottom:641.941956px;}
.y2f6{bottom:644.487167px;}
.y15b{bottom:644.703160px;}
.y9{bottom:645.510000px;}
.y17a{bottom:646.541122px;}
.y316{bottom:649.516222px;}
.y278{bottom:652.502993px;}
.y384{bottom:653.487579px;}
.y2cf{bottom:653.913768px;}
.y1da{bottom:655.379994px;}
.y23f{bottom:656.019017px;}
.y59{bottom:656.341965px;}
.ycc{bottom:657.110413px;}
.y1b4{bottom:657.151518px;}
.y2f5{bottom:657.987167px;}
.y2a9{bottom:657.997518px;}
.y38{bottom:659.941956px;}
.yf4{bottom:660.335403px;}
.y211{bottom:660.569114px;}
.y6e{bottom:660.570923px;}
.y252{bottom:660.783341px;}
.y99{bottom:660.795914px;}
.y12c{bottom:662.264707px;}
.y315{bottom:663.016222px;}
.y15a{bottom:665.929960px;}
.y8{bottom:666.771000px;}
.y383{bottom:666.987579px;}
.y2ce{bottom:667.413768px;}
.y340{bottom:668.066391px;}
.y58{bottom:669.841965px;}
.y2f4{bottom:671.487167px;}
.y277{bottom:673.729793px;}
.y23e{bottom:674.247017px;}
.y1b3{bottom:675.307518px;}
.y2a8{bottom:675.581268px;}
.y314{bottom:676.516222px;}
.y1d9{bottom:676.606794px;}
.y37{bottom:677.941956px;}
.ycb{bottom:678.335403px;}
.y382{bottom:680.487579px;}
.yf3{bottom:681.556822px;}
.y6d{bottom:681.788723px;}
.y210{bottom:681.795914px;}
.y251{bottom:682.010141px;}
.y98{bottom:682.019095px;}
.y57{bottom:683.341965px;}
.y2cd{bottom:684.997518px;}
.y179{bottom:686.510422px;}
.y159{bottom:687.156760px;}
.y1b2{bottom:688.807518px;}
.y2a7{bottom:689.081268px;}
.y33f{bottom:689.291382px;}
.y313{bottom:690.016222px;}
.y23d{bottom:692.391017px;}
.y2f3{bottom:693.987167px;}
.y381{bottom:693.987579px;}
.y276{bottom:694.956593px;}
.y36{bottom:695.941956px;}
.y56{bottom:696.841965px;}
.y1d8{bottom:697.833594px;}
.yca{bottom:699.558585px;}
.y12b{bottom:702.234007px;}
.y2cc{bottom:702.581268px;}
.yf2{bottom:702.783622px;}
.y6c{bottom:703.015523px;}
.y20f{bottom:703.020905px;}
.y250{bottom:703.236941px;}
.y97{bottom:703.245895px;}
.y2a6{bottom:706.665018px;}
.y1b1{bottom:706.951518px;}
.y2f2{bottom:707.487167px;}
.y380{bottom:707.487579px;}
.y312{bottom:708.160222px;}
.y158{bottom:708.383560px;}
.y55{bottom:710.341965px;}
.y23c{bottom:710.535017px;}
.y35{bottom:713.941956px;}
.y275{bottom:716.183393px;}
.y1d7{bottom:719.060394px;}
.y2cb{bottom:720.165018px;}
.yc9{bottom:720.785385px;}
.y2f1{bottom:720.987167px;}
.y37f{bottom:720.987579px;}
.y12a{bottom:723.460807px;}
.y54{bottom:723.841965px;}
.yf1{bottom:724.010422px;}
.y20e{bottom:724.238705px;}
.y6b{bottom:724.242323px;}
.y2a5{bottom:724.248768px;}
.y96{bottom:724.461886px;}
.y24f{bottom:724.463741px;}
.y1b0{bottom:725.107518px;}
.y7{bottom:726.298500px;}
.y311{bottom:726.304222px;}
.y157{bottom:729.603169px;}
.y34{bottom:731.941956px;}
.y2f0{bottom:734.487167px;}
.y37e{bottom:734.487579px;}
.y274{bottom:737.410193px;}
.y23b{bottom:737.427017px;}
.y2ca{bottom:737.748768px;}
.y1af{bottom:738.607518px;}
.y192{bottom:738.840021px;}
.y1d6{bottom:740.283622px;}
.y2a4{bottom:741.832518px;}
.y53{bottom:741.841965px;}
.yc8{bottom:742.010422px;}
.y310{bottom:744.460222px;}
.y129{bottom:744.687607px;}
.y20d{bottom:745.465505px;}
.y6a{bottom:745.469123px;}
.y95{bottom:745.688686px;}
.y24e{bottom:745.690541px;}
.y37d{bottom:747.987579px;}
.y156{bottom:750.829969px;}
.y52{bottom:750.841965px;}
.y191{bottom:751.587021px;}
.y1ae{bottom:752.107518px;}
.y3{bottom:752.599495px;}
.y35a{bottom:752.601870px;}
.y33{bottom:754.441956px;}
.y2c9{bottom:755.332518px;}
.y30f{bottom:757.960222px;}
.y273{bottom:758.636993px;}
.y2a3{bottom:759.416268px;}
.y37c{bottom:761.487579px;}
.y1d5{bottom:761.510422px;}
.y239{bottom:761.739761px;}
.y51{bottom:764.341965px;}
.y128{bottom:765.912735px;}
.y20c{bottom:766.692305px;}
.y69{bottom:766.695923px;}
.y94{bottom:766.915486px;}
.y24d{bottom:766.917341px;}
.y1ad{bottom:770.251518px;}
.y359{bottom:770.829870px;}
.y155{bottom:772.056769px;}
.y2a2{bottom:772.916268px;}
.y19f{bottom:773.191518px;}
.y37b{bottom:774.987579px;}
.y30e{bottom:776.104222px;}
.y119{bottom:778.879518px;}
.y272{bottom:779.862030px;}
.y2c8{bottom:786.416268px;}
.y127{bottom:787.134108px;}
.y2ef{bottom:787.915486px;}
.y68{bottom:787.917341px;}
.y20b{bottom:787.919105px;}
.y93{bottom:788.142286px;}
.y24c{bottom:788.144141px;}
.y1ac{bottom:788.407518px;}
.y37a{bottom:788.487579px;}
.y358{bottom:788.973870px;}
.y30d{bottom:789.604222px;}
.y2a1{bottom:790.500018px;}
.y152{bottom:791.014526px;}
.y19e{bottom:791.419518px;}
.y151{bottom:793.281714px;}
.y154{bottom:793.283569px;}
.y118{bottom:797.107518px;}
.y1ab{bottom:801.907518px;}
.y379{bottom:801.987579px;}
.y30c{bottom:803.104222px;}
.y2c7{bottom:804.000018px;}
.y357{bottom:807.117870px;}
.y2a0{bottom:808.083768px;}
.y126{bottom:808.360908px;}
.y2ee{bottom:809.142286px;}
.y67{bottom:809.144141px;}
.y20a{bottom:809.145905px;}
.y92{bottom:809.369086px;}
.y24b{bottom:809.370941px;}
.y19d{bottom:809.563518px;}
.yed{bottom:809.675079px;}
.y14e{bottom:812.241028px;}
.y14d{bottom:814.493405px;}
.y150{bottom:814.508514px;}
.y117{bottom:815.251518px;}
.y201{bottom:815.469043px;}
.y378{bottom:815.487579px;}
.y28{bottom:815.679474px;}
.y1aa{bottom:820.051518px;}
.y30b{bottom:821.260222px;}
.y29f{bottom:821.583768px;}
.ye8{bottom:824.825958px;}
.y356{bottom:825.261870px;}
.y19c{bottom:827.719518px;}
.y200{bottom:828.216043px;}
.y377{bottom:828.987579px;}
.y125{bottom:829.587708px;}
.y271{bottom:830.365468px;}
.y209{bottom:830.369086px;}
.y66{bottom:830.370941px;}
.y91{bottom:830.595886px;}
.y116{bottom:833.407518px;}
.y30a{bottom:834.760222px;}
.y1a9{bottom:838.207518px;}
.y29e{bottom:839.167518px;}
.yc6{bottom:840.785065px;}
.y1ff{bottom:840.963043px;}
.y19b{bottom:841.219518px;}
.y376{bottom:842.487579px;}
.y355{bottom:843.417870px;}
.y170{bottom:846.346527px;}
.y115{bottom:846.907518px;}
.y309{bottom:848.260222px;}
.y176{bottom:849.003571px;}
.y124{bottom:850.805508px;}
.y270{bottom:851.592268px;}
.y65{bottom:851.595886px;}
.y1a8{bottom:851.707518px;}
.y90{bottom:851.820923px;}
.ye2{bottom:852.674286px;}
.y375{bottom:855.987579px;}
.y29d{bottom:856.751268px;}
.y19a{bottom:859.375518px;}
.y354{bottom:861.561870px;}
.y308{bottom:861.760222px;}
.y27{bottom:861.908406px;}
.y1fe{bottom:862.009543px;}
.y16f{bottom:864.683533px;}
.y114{bottom:865.063518px;}
.y177{bottom:867.120758px;}
.y172{bottom:867.120941px;}
.y374{bottom:869.487579px;}
.y1a7{bottom:869.851518px;}
.y123{bottom:872.032308px;}
.y208{bottom:872.806541px;}
.y2ed{bottom:872.811923px;}
.y64{bottom:872.813686px;}
.y26f{bottom:872.819068px;}
.y24a{bottom:872.820923px;}
.y8f{bottom:873.045868px;}
.y29c{bottom:874.335018px;}
.y307{bottom:875.260222px;}
.y1fd{bottom:875.509543px;}
.y199{bottom:877.519518px;}
.y2{bottom:879.369000px;}
.y353{bottom:879.705870px;}
.y174{bottom:881.093079px;}
.ye3{bottom:882.983961px;}
.y373{bottom:882.987579px;}
.y113{bottom:883.207518px;}
.y1a6{bottom:887.995518px;}
.y306{bottom:888.760222px;}
.y29b{bottom:891.918768px;}
.y122{bottom:893.259108px;}
.y1fc{bottom:893.737543px;}
.y207{bottom:894.033341px;}
.y2ec{bottom:894.038723px;}
.y63{bottom:894.040486px;}
.y249{bottom:894.042341px;}
.y26e{bottom:894.045868px;}
.y198{bottom:895.663518px;}
.y372{bottom:896.487579px;}
.y352{bottom:897.849870px;}
.yea{bottom:898.628357px;}
.y26{bottom:900.896406px;}
.y112{bottom:901.363518px;}
.y1a5{bottom:906.139518px;}
.y1fb{bottom:907.237543px;}
.y29a{bottom:909.502518px;}
.y371{bottom:909.987579px;}
.ye4{bottom:913.271108px;}
.y197{bottom:913.807518px;}
.y121{bottom:914.485908px;}
.y206{bottom:915.260141px;}
.y8e{bottom:915.261905px;}
.y26d{bottom:915.263668px;}
.y2eb{bottom:915.265523px;}
.y62{bottom:915.267286px;}
.y248{bottom:915.269141px;}
.y305{bottom:915.652222px;}
.y351{bottom:915.993870px;}
.y111{bottom:919.507518px;}
.y370{bottom:923.487579px;}
.y110{bottom:924.151518px;}
.y1a4{bottom:924.283518px;}
.y1fa{bottom:925.381543px;}
.y299{bottom:927.086268px;}
.y304{bottom:929.152222px;}
.y196{bottom:931.951518px;}
.y350{bottom:934.149870px;}
.y120{bottom:935.712708px;}
.y205{bottom:936.486941px;}
.y8d{bottom:936.488705px;}
.y26c{bottom:936.490468px;}
.y2ea{bottom:936.492323px;}
.y61{bottom:936.494086px;}
.y247{bottom:936.495941px;}
.y36f{bottom:936.987579px;}
.y10f{bottom:937.651518px;}
.yeb{bottom:939.728210px;}
.y25{bottom:939.884406px;}
.y1a3{bottom:942.427518px;}
.y1f9{bottom:943.539781px;}
.ye5{bottom:943.558255px;}
.y298{bottom:944.670018px;}
.y195{bottom:950.107518px;}
.y36e{bottom:950.487579px;}
.y303{bottom:953.464783px;}
.y10e{bottom:955.795518px;}
.y11f{bottom:956.937561px;}
.y204{bottom:957.713741px;}
.y8c{bottom:957.715505px;}
.y26b{bottom:957.717268px;}
.y2e9{bottom:957.719123px;}
.y60{bottom:957.720886px;}
.y1a2{bottom:960.571518px;}
.y34f{bottom:961.041870px;}
.y1f8{bottom:961.683781px;}
.y297{bottom:962.253768px;}
.y36d{bottom:963.987579px;}
.y1{bottom:966.726000px;}
.y194{bottom:968.251518px;}
.ye6{bottom:973.867929px;}
.y10d{bottom:973.939518px;}
.y36c{bottom:977.487579px;}
.y11e{bottom:978.158979px;}
.y1a1{bottom:978.715518px;}
.y24{bottom:978.872406px;}
.y203{bottom:978.940541px;}
.y5f{bottom:978.942305px;}
.y26a{bottom:978.944068px;}
.y2e8{bottom:978.945923px;}
.y1f7{bottom:979.827781px;}
.y296{bottom:979.837518px;}
.y34e{bottom:985.354523px;}
.y36b{bottom:990.987579px;}
.y10c{bottom:992.095518px;}
.y193{bottom:995.143518px;}
.y11d{bottom:999.385779px;}
.y302{bottom:999.387634px;}
.y202{bottom:1000.167341px;}
.y5e{bottom:1000.169105px;}
.y269{bottom:1000.170868px;}
.ye7{bottom:1004.155076px;}
.y36a{bottom:1004.487579px;}
.y1a0{bottom:1005.487518px;}
.y295{bottom:1006.050018px;}
.y1f6{bottom:1006.287781px;}
.y149{bottom:1016.589020px;}
.y369{bottom:1017.987579px;}
.y14b{bottom:1018.669464px;}
.y10b{bottom:1018.987518px;}
.y294{bottom:1019.550018px;}
.y1f5{bottom:1019.787781px;}
.y11c{bottom:1020.612579px;}
.y148{bottom:1021.394141px;}
.y5d{bottom:1021.395905px;}
.y33e{bottom:1021.850281px;}
.y368{bottom:1031.487579px;}
.y4e{bottom:1035.298370px;}
.y46{bottom:1035.750183px;}
.y11b{bottom:1041.837708px;}
.y5c{bottom:1042.620941px;}
.y33d{bottom:1043.075134px;}
.y10a{bottom:1043.300079px;}
.y367{bottom:1044.987579px;}
.y50{bottom:1112.297079px;}
.y89{bottom:1126.524628px;}
.y5a{bottom:1126.524719px;}
.y8b{bottom:1126.756989px;}
.y4f{bottom:1126.925079px;}
.y8a{bottom:1127.300079px;}
.y5b{bottom:1127.304719px;}
.h40{height:0.000000px;}
.h45{height:9.298500px;}
.h43{height:11.401500px;}
.h47{height:12.150000px;}
.h46{height:25.880712px;}
.h44{height:26.410090px;}
.h17{height:27.814500px;}
.h25{height:28.483140px;}
.h2a{height:30.636312px;}
.h2c{height:30.704448px;}
.h41{height:30.799953px;}
.h3f{height:31.291679px;}
.h7{height:32.130000px;}
.h2d{height:34.176528px;}
.h13{height:37.086000px;}
.h48{height:39.350446px;}
.h52{height:39.468086px;}
.h16{height:39.735000px;}
.h55{height:39.984000px;}
.h26{height:40.690200px;}
.h3d{height:41.173860px;}
.h33{height:42.384000px;}
.h67{height:42.840000px;}
.h62{height:43.740000px;}
.h66{height:45.529390px;}
.h65{height:45.529436px;}
.h64{height:45.529500px;}
.h3c{height:45.599999px;}
.h15{height:45.696000px;}
.h18{height:45.744000px;}
.h6{height:45.900000px;}
.h32{height:46.656000px;}
.h14{height:47.232000px;}
.h28{height:47.472000px;}
.h51{height:47.699999px;}
.h3{height:48.195000px;}
.h3e{height:49.327623px;}
.h10{height:52.980000px;}
.h31{height:53.406000px;}
.h30{height:53.654399px;}
.h37{height:54.625200px;}
.h2{height:55.080000px;}
.h42{height:55.819990px;}
.h4b{height:55.837054px;}
.h4d{height:55.837233px;}
.h4c{height:55.837237px;}
.hd{height:55.860000px;}
.h1c{height:55.867054px;}
.hf{height:55.867145px;}
.h59{height:55.867186px;}
.h50{height:55.867191px;}
.h5a{height:55.867195px;}
.h22{height:55.867237px;}
.h5c{height:55.867420px;}
.h4e{height:55.867877px;}
.h4a{height:55.873237px;}
.h1b{height:55.874107px;}
.h1e{height:55.874290px;}
.h20{height:55.874382px;}
.h19{height:55.874473px;}
.h35{height:55.875206px;}
.h53{height:55.878810px;}
.h49{height:55.881523px;}
.h24{height:55.881527px;}
.h1f{height:55.881618px;}
.h57{height:55.881710px;}
.h4f{height:55.888168px;}
.h36{height:55.888214px;}
.he{height:55.888763px;}
.h1a{height:55.888946px;}
.h27{height:55.895954px;}
.h39{height:55.896000px;}
.h2f{height:55.903053px;}
.h5d{height:55.903145px;}
.h1d{height:55.903237px;}
.h5f{height:55.910290px;}
.h54{height:55.910382px;}
.h23{height:55.910473px;}
.h5b{height:55.917527px;}
.h5e{height:55.917578px;}
.h38{height:55.925313px;}
.h60{height:55.946427px;}
.h61{height:55.960763px;}
.h58{height:56.004092px;}
.h3b{height:57.000000px;}
.h11{height:58.320000px;}
.hc{height:61.120200px;}
.h2e{height:62.621897px;}
.h3a{height:62.621987px;}
.h29{height:62.636371px;}
.h21{height:62.658081px;}
.hb{height:67.194379px;}
.h12{height:77.142000px;}
.h5{height:78.030000px;}
.h34{height:96.384000px;}
.h63{height:97.740000px;}
.h56{height:100.656000px;}
.h4{height:119.055004px;}
.ha{height:137.088000px;}
.h2b{height:218.849991px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w8{width:9.180000px;}
.w7{width:12.599999px;}
.w6{width:12.643500px;}
.w5{width:266.384995px;}
.w9{width:405.960022px;}
.w4{width:540.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x18{left:-1.441795px;}
.x0{left:0.000000px;}
.x1b{left:38.208000px;}
.x12{left:42.104691px;}
.x1d{left:50.263642px;}
.x5{left:84.933002px;}
.x9{left:93.732302px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:124.428155px;}
.x2b{left:156.172211px;}
.x2d{left:158.588700px;}
.x2f{left:170.644341px;}
.xb{left:176.456703px;}
.x38{left:180.956715px;}
.xd{left:186.206703px;}
.xc{left:188.451903px;}
.x39{left:192.956764px;}
.x49{left:198.956703px;}
.x14{left:200.214592px;}
.x4{left:203.484001px;}
.xf{left:207.320772px;}
.x11{left:210.767357px;}
.x19{left:213.749702px;}
.xe{left:215.858391px;}
.x2a{left:217.166702px;}
.x10{left:219.304976px;}
.x48{left:222.476681px;}
.x13{left:224.068039px;}
.x1a{left:241.762207px;}
.x1c{left:247.999489px;}
.x1f{left:263.779221px;}
.x1e{left:265.455299px;}
.x6{left:267.874054px;}
.x33{left:271.064701px;}
.x7{left:277.624489px;}
.x20{left:284.335510px;}
.x3c{left:288.000453px;}
.x21{left:296.980339px;}
.x3b{left:304.681046px;}
.x31{left:343.356606px;}
.x34{left:352.028701px;}
.x3a{left:361.016777px;}
.x2c{left:362.157005px;}
.x3d{left:365.670451px;}
.x2e{left:368.380348px;}
.x22{left:370.164000px;}
.x41{left:374.940549px;}
.x23{left:382.764153px;}
.x30{left:385.849503px;}
.x24{left:393.577515px;}
.x25{left:402.757370px;}
.x45{left:436.916703px;}
.x47{left:445.916681px;}
.x3{left:454.959000px;}
.x35{left:467.972697px;}
.x3e{left:476.899201px;}
.x36{left:562.436697px;}
.x3f{left:567.517951px;}
.x16{left:568.616682px;}
.x46{left:571.916681px;}
.x42{left:576.799293px;}
.x44{left:636.502950px;}
.x37{left:644.408696px;}
.x40{left:646.155448px;}
.x26{left:647.749512px;}
.x43{left:655.436793px;}
.x27{left:656.929642px;}
.x28{left:691.917023px;}
.x8{left:694.929886px;}
.x17{left:699.146988px;}
.x29{left:701.096832px;}
.x32{left:741.068390px;}
.xa{left:747.224258px;}
@media print{
.v7{vertical-align:-20.906655pt;}
.v3{vertical-align:-16.000000pt;}
.vb{vertical-align:-13.066732pt;}
.vc{vertical-align:-10.717289pt;}
.v5{vertical-align:-9.733317pt;}
.v9{vertical-align:-7.822917pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v8{vertical-align:7.822917pt;}
.vd{vertical-align:10.666667pt;}
.ve{vertical-align:15.746667pt;}
.v4{vertical-align:20.938738pt;}
.v1{vertical-align:23.466471pt;}
.v6{vertical-align:48.000000pt;}
.va{vertical-align:49.617769pt;}
.ls31{letter-spacing:-1.360000pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls2b{letter-spacing:-0.554667pt;}
.ls28{letter-spacing:-0.522667pt;}
.lsb{letter-spacing:-0.134026pt;}
.lsc{letter-spacing:-0.040047pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000020pt;}
.ls25{letter-spacing:0.002364pt;}
.ls1a{letter-spacing:0.005350pt;}
.ls29{letter-spacing:0.005839pt;}
.ls13{letter-spacing:0.006634pt;}
.lsd{letter-spacing:0.007204pt;}
.ls19{letter-spacing:0.009320pt;}
.ls1b{letter-spacing:0.011189pt;}
.ls18{letter-spacing:0.011689pt;}
.ls2a{letter-spacing:0.011758pt;}
.ls1e{letter-spacing:0.015077pt;}
.ls14{letter-spacing:0.018767pt;}
.ls21{letter-spacing:0.020316pt;}
.ls23{letter-spacing:0.024425pt;}
.ls8{letter-spacing:0.030909pt;}
.ls26{letter-spacing:0.031859pt;}
.ls5{letter-spacing:0.040047pt;}
.ls7{letter-spacing:0.064782pt;}
.ls22{letter-spacing:0.198677pt;}
.ls9{letter-spacing:0.313600pt;}
.ls2c{letter-spacing:0.317472pt;}
.ls2e{letter-spacing:0.318595pt;}
.lse{letter-spacing:0.556297pt;}
.ls4{letter-spacing:0.731724pt;}
.ls1{letter-spacing:0.731733pt;}
.lsf{letter-spacing:2.662276pt;}
.ls1d{letter-spacing:2.668756pt;}
.ls20{letter-spacing:3.260160pt;}
.ls2{letter-spacing:4.853333pt;}
.ls12{letter-spacing:8.731473pt;}
.ls11{letter-spacing:11.607107pt;}
.ls17{letter-spacing:11.659391pt;}
.ls10{letter-spacing:14.351841pt;}
.ls1c{letter-spacing:14.587310pt;}
.ls24{letter-spacing:15.679857pt;}
.ls15{letter-spacing:15.729901pt;}
.ls1f{letter-spacing:15.775804pt;}
.ls16{letter-spacing:16.950209pt;}
.ls27{letter-spacing:16.950860pt;}
.lsa{letter-spacing:182.135873pt;}
.ls2d{letter-spacing:293.817038pt;}
.ls2f{letter-spacing:293.817608pt;}
.ls30{letter-spacing:325.817608pt;}
.ws68{word-spacing:-191.186600pt;}
.ws4{word-spacing:-18.858667pt;}
.ws55{word-spacing:-13.014400pt;}
.ws65{word-spacing:-12.596267pt;}
.ws1a{word-spacing:-12.282667pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws82{word-spacing:-10.156800pt;}
.ws6a{word-spacing:-9.962570pt;}
.wsad{word-spacing:-9.344000pt;}
.ws6c{word-spacing:-9.149333pt;}
.ws5{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.wsba{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.760000pt;}
.ws66{word-spacing:-8.597867pt;}
.wsfb{word-spacing:-8.280000pt;}
.ws117{word-spacing:-8.200000pt;}
.ws119{word-spacing:-7.800000pt;}
.ws19{word-spacing:-7.242667pt;}
.ws6b{word-spacing:-6.459040pt;}
.ws6d{word-spacing:-6.404533pt;}
.ws6{word-spacing:-6.132000pt;}
.ws9d{word-spacing:-5.749333pt;}
.ws13{word-spacing:-4.090667pt;}
.wsb5{word-spacing:-4.010667pt;}
.wsfd{word-spacing:-3.760000pt;}
.ws116{word-spacing:-2.400000pt;}
.ws105{word-spacing:-1.840000pt;}
.ws88{word-spacing:-1.792000pt;}
.wsfe{word-spacing:-1.680000pt;}
.ws4b{word-spacing:-1.463467pt;}
.wsd0{word-spacing:-1.045333pt;}
.wsd{word-spacing:-0.731733pt;}
.ws4c{word-spacing:-0.574933pt;}
.ws3a{word-spacing:-0.470400pt;}
.ws5b{word-spacing:-0.365867pt;}
.wsae{word-spacing:-0.261333pt;}
.ws27{word-spacing:-0.209067pt;}
.ws11a{word-spacing:-0.120000pt;}
.ws26{word-spacing:-0.104533pt;}
.ws8b{word-spacing:-0.052284pt;}
.ws3f{word-spacing:-0.052267pt;}
.ws103{word-spacing:-0.040000pt;}
.ws8a{word-spacing:-0.039735pt;}
.ws0{word-spacing:0.000000pt;}
.ws62{word-spacing:0.104533pt;}
.wsa3{word-spacing:0.156800pt;}
.wsed{word-spacing:0.209067pt;}
.ws8e{word-spacing:0.261333pt;}
.wscc{word-spacing:0.313600pt;}
.ws87{word-spacing:0.365867pt;}
.ws25{word-spacing:0.418133pt;}
.ws71{word-spacing:0.470400pt;}
.ws45{word-spacing:0.522667pt;}
.ws118{word-spacing:0.560000pt;}
.wsb0{word-spacing:0.627200pt;}
.wsef{word-spacing:0.679467pt;}
.ws3c{word-spacing:0.836267pt;}
.ws7f{word-spacing:0.888533pt;}
.ws38{word-spacing:0.940800pt;}
.ws30{word-spacing:0.993067pt;}
.wsf2{word-spacing:1.045333pt;}
.ws2e{word-spacing:1.097600pt;}
.ws6f{word-spacing:1.149867pt;}
.ws18{word-spacing:1.194667pt;}
.ws2d{word-spacing:1.202133pt;}
.wsf1{word-spacing:1.254400pt;}
.ws7c{word-spacing:1.284800pt;}
.ws48{word-spacing:1.306667pt;}
.ws93{word-spacing:1.358933pt;}
.wsa0{word-spacing:1.411200pt;}
.ws14{word-spacing:1.456000pt;}
.ws57{word-spacing:1.463467pt;}
.ws58{word-spacing:1.515733pt;}
.wsd9{word-spacing:1.568000pt;}
.ws81{word-spacing:1.620267pt;}
.ws2c{word-spacing:1.672533pt;}
.wsb3{word-spacing:1.724800pt;}
.ws16{word-spacing:1.792000pt;}
.wsee{word-spacing:1.829333pt;}
.ws37{word-spacing:1.881600pt;}
.ws43{word-spacing:1.933867pt;}
.ws44{word-spacing:1.986133pt;}
.ws17{word-spacing:2.016000pt;}
.ws1b{word-spacing:2.038400pt;}
.ws4a{word-spacing:2.090667pt;}
.ws7a{word-spacing:2.142933pt;}
.ws80{word-spacing:2.195200pt;}
.ws9a{word-spacing:2.219200pt;}
.ws34{word-spacing:2.247467pt;}
.ws64{word-spacing:2.299733pt;}
.ws4e{word-spacing:2.352000pt;}
.ws78{word-spacing:2.404267pt;}
.ws2b{word-spacing:2.456533pt;}
.ws90{word-spacing:2.561067pt;}
.ws15{word-spacing:2.576000pt;}
.ws99{word-spacing:2.613333pt;}
.ws3e{word-spacing:2.665600pt;}
.ws3d{word-spacing:2.717867pt;}
.ws9e{word-spacing:2.770133pt;}
.ws7d{word-spacing:2.822400pt;}
.ws54{word-spacing:2.842133pt;}
.wsc{word-spacing:2.874667pt;}
.ws39{word-spacing:2.926933pt;}
.ws94{word-spacing:2.979200pt;}
.ws22{word-spacing:3.083733pt;}
.ws28{word-spacing:3.136000pt;}
.wsd4{word-spacing:3.188267pt;}
.ws86{word-spacing:3.240533pt;}
.wscf{word-spacing:3.292800pt;}
.ws20{word-spacing:3.345067pt;}
.ws10{word-spacing:3.397333pt;}
.ws21{word-spacing:3.501867pt;}
.ws2a{word-spacing:3.554133pt;}
.wsd3{word-spacing:3.606400pt;}
.wse9{word-spacing:3.658667pt;}
.ws6e{word-spacing:3.710933pt;}
.wsc7{word-spacing:3.763200pt;}
.wscb{word-spacing:3.815467pt;}
.ws53{word-spacing:3.854400pt;}
.ws24{word-spacing:3.867733pt;}
.ws75{word-spacing:3.920000pt;}
.ws5e{word-spacing:3.972267pt;}
.ws59{word-spacing:4.129067pt;}
.wsa7{word-spacing:4.181333pt;}
.ws1f{word-spacing:4.233600pt;}
.wsd7{word-spacing:4.285867pt;}
.ws70{word-spacing:4.338133pt;}
.wsa9{word-spacing:4.390400pt;}
.wscd{word-spacing:4.442667pt;}
.wsea{word-spacing:4.494933pt;}
.ws61{word-spacing:4.547200pt;}
.ws63{word-spacing:4.599467pt;}
.ws52{word-spacing:4.651733pt;}
.ws46{word-spacing:4.704000pt;}
.ws7e{word-spacing:4.756267pt;}
.ws49{word-spacing:4.808533pt;}
.wsb4{word-spacing:4.860800pt;}
.ws84{word-spacing:4.913067pt;}
.ws98{word-spacing:4.965333pt;}
.wsb1{word-spacing:5.017600pt;}
.ws5d{word-spacing:5.069867pt;}
.ws2f{word-spacing:5.122133pt;}
.ws12{word-spacing:5.174400pt;}
.ws9b{word-spacing:5.217067pt;}
.ws3b{word-spacing:5.278933pt;}
.ws9f{word-spacing:5.331200pt;}
.wsce{word-spacing:5.383467pt;}
.wsa6{word-spacing:5.435733pt;}
.ws4d{word-spacing:5.488000pt;}
.wsca{word-spacing:5.540267pt;}
.ws11{word-spacing:5.592533pt;}
.ws74{word-spacing:5.644800pt;}
.ws41{word-spacing:5.697067pt;}
.wsb{word-spacing:5.749333pt;}
.ws31{word-spacing:5.801600pt;}
.ws8f{word-spacing:5.853867pt;}
.ws76{word-spacing:5.906133pt;}
.ws60{word-spacing:5.958400pt;}
.wsa4{word-spacing:6.010667pt;}
.ws35{word-spacing:6.062933pt;}
.ws79{word-spacing:6.115200pt;}
.ws47{word-spacing:6.167467pt;}
.ws36{word-spacing:6.219733pt;}
.wsec{word-spacing:6.272000pt;}
.ws97{word-spacing:6.324267pt;}
.wsc9{word-spacing:6.428800pt;}
.wsa5{word-spacing:6.481067pt;}
.wsd6{word-spacing:6.533333pt;}
.ws56{word-spacing:6.585600pt;}
.wsa{word-spacing:6.637867pt;}
.wseb{word-spacing:6.690133pt;}
.wsaf{word-spacing:6.742400pt;}
.ws5a{word-spacing:6.794667pt;}
.ws1d{word-spacing:6.846933pt;}
.ws29{word-spacing:6.899200pt;}
.ws96{word-spacing:7.003733pt;}
.ws4f{word-spacing:7.056000pt;}
.wsc6{word-spacing:7.108267pt;}
.ws40{word-spacing:7.160533pt;}
.wsf0{word-spacing:7.212800pt;}
.ws8d{word-spacing:7.265067pt;}
.wsb2{word-spacing:7.317333pt;}
.ws1e{word-spacing:7.369600pt;}
.ws51{word-spacing:7.421867pt;}
.wsd8{word-spacing:7.474133pt;}
.ws85{word-spacing:7.578667pt;}
.ws23{word-spacing:7.683200pt;}
.wsc8{word-spacing:7.735467pt;}
.wsa2{word-spacing:7.787733pt;}
.wsd1{word-spacing:7.892267pt;}
.ws72{word-spacing:7.996800pt;}
.ws1c{word-spacing:8.101333pt;}
.ws8c{word-spacing:8.310400pt;}
.wsd5{word-spacing:8.467200pt;}
.ws77{word-spacing:8.519467pt;}
.wsf5{word-spacing:8.571733pt;}
.wsaa{word-spacing:8.676267pt;}
.wsa1{word-spacing:8.728533pt;}
.ws5f{word-spacing:8.833067pt;}
.wsc5{word-spacing:8.885333pt;}
.ws5c{word-spacing:8.937600pt;}
.ws83{word-spacing:8.989867pt;}
.ws42{word-spacing:9.094400pt;}
.wse{word-spacing:9.303467pt;}
.wse8{word-spacing:9.460267pt;}
.ws33{word-spacing:9.669333pt;}
.wsd2{word-spacing:9.721600pt;}
.ws32{word-spacing:9.826133pt;}
.ws106{word-spacing:9.878400pt;}
.wsf6{word-spacing:9.982933pt;}
.ws92{word-spacing:10.139733pt;}
.ws7b{word-spacing:10.239467pt;}
.ws91{word-spacing:10.401067pt;}
.wsa8{word-spacing:10.976000pt;}
.wsf{word-spacing:11.080533pt;}
.ws95{word-spacing:11.237333pt;}
.ws73{word-spacing:11.812267pt;}
.wsf3{word-spacing:13.746133pt;}
.ws50{word-spacing:13.850667pt;}
.wsff{word-spacing:15.840000pt;}
.ws9{word-spacing:16.202667pt;}
.ws8{word-spacing:16.370133pt;}
.wsf4{word-spacing:16.829867pt;}
.ws102{word-spacing:19.080000pt;}
.ws9c{word-spacing:19.787254pt;}
.ws89{word-spacing:19.787742pt;}
.wsb6{word-spacing:25.518933pt;}
.wsb9{word-spacing:29.102927pt;}
.wsf7{word-spacing:30.199992pt;}
.wsfa{word-spacing:33.639991pt;}
.ws101{word-spacing:59.440000pt;}
.ws10d{word-spacing:63.402667pt;}
.ws110{word-spacing:69.504000pt;}
.wsb8{word-spacing:73.518933pt;}
.wsf9{word-spacing:76.240000pt;}
.ws115{word-spacing:76.544000pt;}
.ws113{word-spacing:98.261327pt;}
.ws112{word-spacing:101.504000pt;}
.ws114{word-spacing:111.872000pt;}
.wsbc{word-spacing:116.949333pt;}
.wsdb{word-spacing:121.898660pt;}
.ws100{word-spacing:128.919990pt;}
.ws111{word-spacing:130.218667pt;}
.wsc4{word-spacing:138.069329pt;}
.ws10f{word-spacing:141.952000pt;}
.wsbd{word-spacing:147.844262pt;}
.wsf8{word-spacing:149.520000pt;}
.wsb7{word-spacing:149.892254pt;}
.ws107{word-spacing:155.822933pt;}
.ws10e{word-spacing:166.271990pt;}
.wsc1{word-spacing:166.997333pt;}
.wsda{word-spacing:170.581327pt;}
.ws67{word-spacing:172.965009pt;}
.ws69{word-spacing:173.085151pt;}
.wsc2{word-spacing:182.997333pt;}
.wsbb{word-spacing:184.793596pt;}
.wsc3{word-spacing:185.121560pt;}
.ws104{word-spacing:187.520000pt;}
.wsfc{word-spacing:201.879992pt;}
.wse1{word-spacing:227.711981pt;}
.ws10b{word-spacing:231.509333pt;}
.wsac{word-spacing:231.850658pt;}
.wse7{word-spacing:233.941333pt;}
.wsde{word-spacing:237.013314pt;}
.wse2{word-spacing:240.597316pt;}
.wse4{word-spacing:243.242667pt;}
.wsdf{word-spacing:253.183984pt;}
.ws109{word-spacing:257.749318pt;}
.wse0{word-spacing:258.005314pt;}
.wse5{word-spacing:259.413313pt;}
.wsdd{word-spacing:262.144000pt;}
.wse6{word-spacing:264.234667pt;}
.ws108{word-spacing:267.904000pt;}
.ws10a{word-spacing:270.122651pt;}
.wse3{word-spacing:275.754647pt;}
.wsdc{word-spacing:278.186648pt;}
.ws10c{word-spacing:298.367985pt;}
.wsab{word-spacing:576.889577pt;}
.wsbe{word-spacing:848.004235pt;}
.wsbf{word-spacing:1183.833581pt;}
.wsc0{word-spacing:1475.289554pt;}
._10{margin-left:-182.135875pt;}
._55{margin-left:-14.762667pt;}
._e{margin-left:-11.096533pt;}
._13{margin-left:-8.822429pt;}
._b4{margin-left:-7.605348pt;}
._12{margin-left:-6.381760pt;}
._7{margin-left:-4.913067pt;}
._b{margin-left:-3.885653pt;}
._3{margin-left:-2.874667pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.523200pt;}
._2{width:2.675200pt;}
._a{width:3.663893pt;}
._28{width:4.599467pt;}
._54{width:5.608213pt;}
._c{width:6.716267pt;}
._9{width:8.556053pt;}
._5{width:9.617067pt;}
._6{width:11.440853pt;}
._f{width:12.379414pt;}
._8{width:15.306656pt;}
._d{width:16.370133pt;}
._14{width:22.570666pt;}
._25{width:27.466667pt;}
._88{width:31.353583pt;}
._98{width:33.322667pt;}
._4{width:34.333832pt;}
._27{width:38.259200pt;}
._26{width:40.499200pt;}
._5b{width:62.506659pt;}
._3d{width:69.631992pt;}
._b3{width:71.509333pt;}
._9e{width:72.587733pt;}
._b2{width:78.848000pt;}
._3e{width:87.680000pt;}
._9a{width:89.984000pt;}
._41{width:91.263994pt;}
._84{width:93.215989pt;}
._45{width:94.464000pt;}
._94{width:96.476783pt;}
._75{width:97.756800pt;}
._5c{width:101.589333pt;}
._9b{width:104.405333pt;}
._aa{width:105.398140pt;}
._59{width:108.063194pt;}
._90{width:109.989317pt;}
._71{width:110.898663pt;}
._92{width:113.007985pt;}
._57{width:121.141784pt;}
._7e{width:123.065065pt;}
._61{width:125.206584pt;}
._48{width:126.293333pt;}
._4a{width:129.877327pt;}
._86{width:133.535449pt;}
._5a{width:135.680000pt;}
._35{width:137.100803pt;}
._85{width:138.064000pt;}
._ad{width:139.209600pt;}
._95{width:140.560000pt;}
._51{width:142.041583pt;}
._ab{width:143.189324pt;}
._30{width:144.554658pt;}
._60{width:146.094927pt;}
._74{width:148.499731pt;}
._11{width:152.246133pt;}
._36{width:154.581328pt;}
._56{width:156.629326pt;}
._52{width:160.213340pt;}
._80{width:162.285637pt;}
._af{width:165.759990pt;}
._3c{width:166.826659pt;}
._b1{width:167.765324pt;}
._40{width:169.045333pt;}
._b0{width:170.069324pt;}
._3a{width:171.263994pt;}
._5f{width:173.269333pt;}
._49{width:174.848006pt;}
._3b{width:176.810667pt;}
._44{width:179.613860pt;}
._91{width:183.415995pt;}
._2b{width:184.490661pt;}
._ae{width:185.599990pt;}
._2a{width:187.946661pt;}
._ac{width:189.055990pt;}
._42{width:190.165333pt;}
._39{width:191.146658pt;}
._5e{width:192.341333pt;}
._32{width:194.602658pt;}
._62{width:197.162667pt;}
._8f{width:199.989713pt;}
._2d{width:201.173328pt;}
._81{width:205.895990pt;}
._47{width:207.658667pt;}
._3f{width:212.053321pt;}
._7d{width:214.079991pt;}
._83{width:220.400006pt;}
._2f{width:223.103995pt;}
._18{width:224.652800pt;}
._70{width:226.681872pt;}
._58{width:228.735987pt;}
._16{width:232.405314pt;}
._66{width:236.684819pt;}
._6f{width:237.720000pt;}
._37{width:238.634667pt;}
._38{width:239.829333pt;}
._a2{width:240.853333pt;}
._69{width:243.144552pt;}
._46{width:250.197321pt;}
._4c{width:251.131721pt;}
._96{width:253.639990pt;}
._7c{width:256.680000pt;}
._87{width:258.402136pt;}
._19{width:259.669314pt;}
._72{width:260.640000pt;}
._17{width:263.236267pt;}
._34{width:265.655467pt;}
._5d{width:267.349321pt;}
._7f{width:269.720000pt;}
._31{width:273.194661pt;}
._6c{width:274.432000pt;}
._20{width:277.461314pt;}
._a0{width:279.650133pt;}
._6d{width:283.306654pt;}
._67{width:289.749317pt;}
._23{width:291.029314pt;}
._82{width:292.640000pt;}
._6e{width:296.247447pt;}
._43{width:300.245321pt;}
._53{width:301.179721pt;}
._65{width:302.421333pt;}
._6b{width:304.127988pt;}
._73{width:310.413334pt;}
._93{width:317.400000pt;}
._4b{width:321.066654pt;}
._6a{width:324.748800pt;}
._63{width:325.900781pt;}
._7b{width:329.360000pt;}
._a8{width:338.176000pt;}
._a7{width:355.170133pt;}
._24{width:362.752000pt;}
._33{width:374.229333pt;}
._2e{width:376.874667pt;}
._68{width:381.452793pt;}
._2c{width:383.957333pt;}
._9d{width:388.565333pt;}
._64{width:389.772780pt;}
._9f{width:396.672000pt;}
._9c{width:400.140800pt;}
._a5{width:427.020800pt;}
._1c{width:434.048000pt;}
._1a{width:457.826133pt;}
._4d{width:478.037333pt;}
._a4{width:503.594667pt;}
._a3{width:506.240000pt;}
._29{width:513.676800pt;}
._a9{width:529.634133pt;}
._76{width:536.799978pt;}
._a6{width:545.322667pt;}
._1e{width:552.277333pt;}
._89{width:554.439977pt;}
._1b{width:559.970133pt;}
._1d{width:584.533333pt;}
._15{width:613.589333pt;}
._99{width:624.896000pt;}
._1f{width:628.480000pt;}
._a1{width:643.042133pt;}
._22{width:651.562667pt;}
._8a{width:707.920000pt;}
._77{width:744.200000pt;}
._21{width:746.837333pt;}
._4e{width:890.325302pt;}
._8b{width:929.319967pt;}
._78{width:932.320000pt;}
._8c{width:984.520000pt;}
._97{width:1017.800052pt;}
._4f{width:1226.154729pt;}
._8d{width:1234.720052pt;}
._79{width:1254.520000pt;}
._8e{width:1499.720052pt;}
._50{width:1517.610621pt;}
._7a{width:1534.119924pt;}
.fsf{font-size:27.253333pt;}
.fsd{font-size:28.000000pt;}
.fs18{font-size:29.866667pt;}
.fse{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.933333pt;}
.fs17{font-size:39.735466pt;}
.fsc{font-size:40.000000pt;}
.fs11{font-size:40.047467pt;}
.fs12{font-size:40.136533pt;}
.fs7{font-size:41.066666pt;}
.fsb{font-size:42.666667pt;}
.fs13{font-size:44.675200pt;}
.fs15{font-size:48.000000pt;}
.fs14{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs16{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:2.039469pt;}
.y153{bottom:2.040609pt;}
.y175{bottom:2.361816pt;}
.y145{bottom:2.431742pt;}
.y14c{bottom:2.439535pt;}
.yec{bottom:3.128743pt;}
.y14a{bottom:4.307292pt;}
.y178{bottom:18.465983pt;}
.y171{bottom:18.466146pt;}
.y141{bottom:18.547343pt;}
.y6{bottom:31.933340pt;}
.y173{bottom:35.890137pt;}
.y143{bottom:35.959208pt;}
.y5{bottom:59.133337pt;}
.y4d{bottom:67.374933pt;}
.y4c{bottom:78.042933pt;}
.y4{bottom:86.333337pt;}
.yb2{bottom:88.408532pt;}
.yf0{bottom:88.409598pt;}
.y4b{bottom:88.710933pt;}
.y292{bottom:89.456532pt;}
.y190{bottom:90.953607pt;}
.y1f4{bottom:92.031464pt;}
.y11a{bottom:92.303996pt;}
.y88{bottom:96.631200pt;}
.y268{bottom:96.840800pt;}
.y238{bottom:97.744536pt;}
.y16e{bottom:97.940938pt;}
.yb1{bottom:99.076265pt;}
.y4a{bottom:99.378933pt;}
.y33c{bottom:100.611753pt;}
.y3ac{bottom:100.877848pt;}
.yef{bottom:102.970662pt;}
.yc5{bottom:103.020537pt;}
.y34d{bottom:104.076131pt;}
.y1d4{bottom:105.105350pt;}
.y291{bottom:108.324798pt;}
.y18f{bottom:109.821874pt;}
.y49{bottom:110.046933pt;}
.y1f3{bottom:110.896533pt;}
.y33b{bottom:112.611753pt;}
.y3ab{bottom:112.877848pt;}
.yb0{bottom:113.637329pt;}
.y87{bottom:115.499467pt;}
.y22a{bottom:115.507467pt;}
.y267{bottom:115.688263pt;}
.y34c{bottom:116.076131pt;}
.y237{bottom:116.612803pt;}
.y16d{bottom:116.805999pt;}
.yee{bottom:118.124532pt;}
.y48{bottom:120.714933pt;}
.y1d3{bottom:121.244016pt;}
.yc4{bottom:121.888804pt;}
.y23{bottom:123.790666pt;}
.y33a{bottom:124.611753pt;}
.y3aa{bottom:124.877848pt;}
.y290{bottom:127.193065pt;}
.y34b{bottom:128.076131pt;}
.y18e{bottom:128.690140pt;}
.y1f2{bottom:129.763203pt;}
.y47{bottom:131.382933pt;}
.y1d2{bottom:133.244016pt;}
.y86{bottom:134.367733pt;}
.y229{bottom:134.372537pt;}
.y266{bottom:134.556529pt;}
.y236{bottom:135.466667pt;}
.y16c{bottom:135.674266pt;}
.y339{bottom:136.611753pt;}
.y3a9{bottom:136.877848pt;}
.y34a{bottom:140.076131pt;}
.yc3{bottom:140.747473pt;}
.y293{bottom:145.410665pt;}
.y28f{bottom:146.061332pt;}
.y18d{bottom:147.558407pt;}
.y338{bottom:148.611753pt;}
.y1f1{bottom:148.631470pt;}
.y3a8{bottom:148.877848pt;}
.y1d1{bottom:149.372016pt;}
.y349{bottom:152.076131pt;}
.y85{bottom:153.236000pt;}
.y228{bottom:153.240804pt;}
.y265{bottom:153.424796pt;}
.y235{bottom:154.334933pt;}
.y16b{bottom:154.534542pt;}
.yc2{bottom:159.615739pt;}
.y337{bottom:160.611753pt;}
.y3a7{bottom:160.877848pt;}
.y348{bottom:164.076131pt;}
.y28e{bottom:164.929598pt;}
.y2c5{bottom:165.263350pt;}
.y1d0{bottom:165.510683pt;}
.y18c{bottom:166.426674pt;}
.y32{bottom:167.346800pt;}
.y1f0{bottom:167.498128pt;}
.ye1{bottom:169.226662pt;}
.y109{bottom:171.896524pt;}
.y84{bottom:172.104267pt;}
.y227{bottom:172.105875pt;}
.y264{bottom:172.293063pt;}
.yaf{bottom:172.307475pt;}
.y336{bottom:172.611753pt;}
.y3a6{bottom:172.877848pt;}
.y140{bottom:173.010661pt;}
.y234{bottom:173.203200pt;}
.y16a{bottom:173.402809pt;}
.y1a{bottom:175.052000pt;}
.y146{bottom:175.442403pt;}
.y347{bottom:176.076131pt;}
.y1cf{bottom:177.510683pt;}
.yc1{bottom:178.484006pt;}
.y2c4{bottom:180.963350pt;}
.y28d{bottom:183.797865pt;}
.y335{bottom:184.611753pt;}
.y3a5{bottom:184.877848pt;}
.y18b{bottom:185.294940pt;}
.y31{bottom:186.215067pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1ef{bottom:186.332787pt;}
.ye9{bottom:186.345785pt;}
.y346{bottom:188.076131pt;}
.ye0{bottom:188.094928pt;}
.y13f{bottom:188.378133pt;}
.y142{bottom:189.602275pt;}
.y108{bottom:190.764791pt;}
.y83{bottom:190.972533pt;}
.y226{bottom:190.974141pt;}
.y263{bottom:191.161329pt;}
.yae{bottom:191.172525pt;}
.y147{bottom:191.558004pt;}
.y233{bottom:192.071467pt;}
.y169{bottom:192.271076pt;}
.y2c6{bottom:193.410665pt;}
.y1ce{bottom:193.638683pt;}
.y2c3{bottom:196.593350pt;}
.y334{bottom:196.611753pt;}
.y3a4{bottom:196.877848pt;}
.yc0{bottom:197.352273pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y345{bottom:200.076131pt;}
.y28c{bottom:202.666132pt;}
.y144{bottom:203.966267pt;}
.y18a{bottom:204.163207pt;}
.y30{bottom:205.080138pt;}
.y1ee{bottom:205.201053pt;}
.ydf{bottom:206.963195pt;}
.y2c2{bottom:208.593350pt;}
.y333{bottom:208.611753pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y3a3{bottom:208.877848pt;}
.y107{bottom:209.629862pt;}
.y1cd{bottom:209.777350pt;}
.y225{bottom:209.832800pt;}
.y82{bottom:209.840800pt;}
.y262{bottom:210.029596pt;}
.yad{bottom:210.040792pt;}
.y232{bottom:210.939733pt;}
.y168{bottom:211.139342pt;}
.y344{bottom:212.076131pt;}
.y2e7{bottom:213.263350pt;}
.ybf{bottom:216.220539pt;}
.y332{bottom:220.611753pt;}
.y3a2{bottom:220.877848pt;}
.y28b{bottom:221.534398pt;}
.y1cc{bottom:221.777350pt;}
.y189{bottom:223.031474pt;}
.y2f{bottom:223.948405pt;}
.y1ed{bottom:224.069320pt;}
.y343{bottom:224.076131pt;}
.y2c1{bottom:224.223350pt;}
.y3ae{bottom:224.877869pt;}
.yde{bottom:225.831462pt;}
.y106{bottom:228.498128pt;}
.y224{bottom:228.701067pt;}
.y81{bottom:228.704263pt;}
.y261{bottom:228.897863pt;}
.yac{bottom:228.907471pt;}
.y2e6{bottom:228.963350pt;}
.y231{bottom:229.808000pt;}
.y167{bottom:230.005858pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y13e{bottom:232.411336pt;}
.y331{bottom:232.611753pt;}
.y3a1{bottom:232.877848pt;}
.ybe{bottom:235.088806pt;}
.y342{bottom:236.076131pt;}
.y3ad{bottom:236.877869pt;}
.y1cb{bottom:237.905350pt;}
.y2c0{bottom:239.853350pt;}
.y28a{bottom:240.402665pt;}
.y188{bottom:241.886936pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y2e{bottom:242.808672pt;}
.y1ec{bottom:242.937587pt;}
.y2e5{bottom:244.593350pt;}
.y330{bottom:244.611753pt;}
.ydd{bottom:244.698140pt;}
.y3a0{bottom:244.877848pt;}
.y105{bottom:247.363199pt;}
.y223{bottom:247.569333pt;}
.y80{bottom:247.572529pt;}
.y260{bottom:247.766129pt;}
.yab{bottom:247.767737pt;}
.y230{bottom:248.676267pt;}
.y166{bottom:248.874125pt;}
.y13d{bottom:251.269873pt;}
.y2bf{bottom:251.853350pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.ybd{bottom:253.952269pt;}
.y1ca{bottom:254.044016pt;}
.y2e4{bottom:256.593350pt;}
.y32f{bottom:256.611753pt;}
.y39f{bottom:256.877848pt;}
.y289{bottom:259.270932pt;}
.y187{bottom:260.755203pt;}
.y2d{bottom:261.676938pt;}
.y1eb{bottom:261.805853pt;}
.ydc{bottom:263.561603pt;}
.y1c9{bottom:266.044016pt;}
.y104{bottom:266.231466pt;}
.y222{bottom:266.437600pt;}
.y7f{bottom:266.440796pt;}
.y25f{bottom:266.634396pt;}
.yaa{bottom:266.636004pt;}
.y2be{bottom:267.483350pt;}
.y22f{bottom:267.544533pt;}
.y165{bottom:267.740926pt;}
.y32e{bottom:268.611753pt;}
.y39e{bottom:268.877848pt;}
.y13c{bottom:270.138139pt;}
.y2e3{bottom:272.223350pt;}
.ybc{bottom:272.820535pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1c8{bottom:278.044016pt;}
.y288{bottom:278.139198pt;}
.y186{bottom:279.623470pt;}
.y2c{bottom:280.545205pt;}
.y32d{bottom:280.611753pt;}
.y1ea{bottom:280.674120pt;}
.y39d{bottom:280.877848pt;}
.ydb{bottom:282.429870pt;}
.y2bd{bottom:283.113350pt;}
.y103{bottom:285.096536pt;}
.y221{bottom:285.305867pt;}
.y7e{bottom:285.307475pt;}
.y25e{bottom:285.502663pt;}
.ya9{bottom:285.504271pt;}
.y22e{bottom:286.412800pt;}
.y164{bottom:286.609735pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2e2{bottom:287.853350pt;}
.y13b{bottom:289.006406pt;}
.ybb{bottom:291.688802pt;}
.y32c{bottom:292.611753pt;}
.y39c{bottom:292.877848pt;}
.y1c7{bottom:294.172016pt;}
.y287{bottom:297.007465pt;}
.y185{bottom:298.491736pt;}
.y2bc{bottom:298.743350pt;}
.y2b{bottom:299.413472pt;}
.y1e9{bottom:299.542387pt;}
.y341{bottom:300.276265pt;}
.yda{bottom:301.298136pt;}
.y2e1{bottom:303.483350pt;}
.y102{bottom:303.964803pt;}
.y7d{bottom:304.169329pt;}
.y220{bottom:304.174133pt;}
.y25d{bottom:304.370929pt;}
.ya8{bottom:304.372537pt;}
.y32b{bottom:304.611753pt;}
.y39b{bottom:304.877848pt;}
.y22d{bottom:305.276284pt;}
.y163{bottom:305.478002pt;}
.y13a{bottom:307.874673pt;}
.y11{bottom:309.452000pt;}
.y1c6{bottom:310.310683pt;}
.yba{bottom:310.552285pt;}
.y2bb{bottom:314.373350pt;}
.y286{bottom:315.875732pt;}
.y32a{bottom:316.611753pt;}
.y39a{bottom:316.877848pt;}
.y184{bottom:317.360003pt;}
.y2a{bottom:318.281738pt;}
.y1e8{bottom:318.410653pt;}
.y2e0{bottom:319.113350pt;}
.yd9{bottom:320.161619pt;}
.y1c5{bottom:322.310683pt;}
.y101{bottom:322.831462pt;}
.y21f{bottom:323.031204pt;}
.y7c{bottom:323.037596pt;}
.y25c{bottom:323.239196pt;}
.ya7{bottom:323.240804pt;}
.y22c{bottom:324.144551pt;}
.y2ba{bottom:326.373350pt;}
.y139{bottom:326.742939pt;}
.y329{bottom:328.611753pt;}
.y399{bottom:328.877848pt;}
.yb9{bottom:329.420552pt;}
.y2df{bottom:334.743350pt;}
.y285{bottom:334.743998pt;}
.y183{bottom:336.228270pt;}
.y29{bottom:337.148397pt;}
.y1e7{bottom:337.278920pt;}
.y1c4{bottom:338.438683pt;}
.yd8{bottom:339.029886pt;}
.y398{bottom:340.877848pt;}
.y162{bottom:341.006268pt;}
.y21e{bottom:341.899471pt;}
.y7b{bottom:341.905863pt;}
.y2b9{bottom:342.003350pt;}
.ya6{bottom:342.102679pt;}
.y25b{bottom:342.107463pt;}
.y22b{bottom:343.012817pt;}
.y10{bottom:343.809333pt;}
.y328{bottom:344.814419pt;}
.y138{bottom:345.611206pt;}
.yb8{bottom:348.288818pt;}
.y2de{bottom:350.373350pt;}
.y397{bottom:352.877848pt;}
.y284{bottom:353.607461pt;}
.y1c3{bottom:354.577350pt;}
.y182{bottom:355.096536pt;}
.y1e6{bottom:356.147187pt;}
.y327{bottom:356.814419pt;}
.y2b8{bottom:357.633350pt;}
.yd7{bottom:357.894936pt;}
.y100{bottom:360.563211pt;}
.y21d{bottom:360.767737pt;}
.y7a{bottom:360.774129pt;}
.ya5{bottom:360.970946pt;}
.y25a{bottom:360.974121pt;}
.y2dd{bottom:362.373350pt;}
.y366{bottom:362.410390pt;}
.yf{bottom:362.706666pt;}
.y137{bottom:364.463473pt;}
.y396{bottom:364.877848pt;}
.y1c2{bottom:366.577350pt;}
.yb7{bottom:367.149085pt;}
.y326{bottom:368.814419pt;}
.y2b7{bottom:369.633350pt;}
.y283{bottom:372.475727pt;}
.y45{bottom:373.281738pt;}
.y181{bottom:373.964803pt;}
.y1e5{bottom:375.015453pt;}
.yd6{bottom:376.763203pt;}
.y395{bottom:376.877848pt;}
.y2dc{bottom:378.003350pt;}
.y365{bottom:378.613056pt;}
.yff{bottom:379.431478pt;}
.y21c{bottom:379.636004pt;}
.y79{bottom:379.637612pt;}
.y259{bottom:379.837604pt;}
.ya4{bottom:379.839212pt;}
.y325{bottom:380.814419pt;}
.y1c1{bottom:382.705350pt;}
.y136{bottom:383.331739pt;}
.y2b6{bottom:385.263350pt;}
.yb6{bottom:386.017352pt;}
.y394{bottom:388.877848pt;}
.y282{bottom:391.343994pt;}
.y324{bottom:392.814419pt;}
.y180{bottom:392.829853pt;}
.y161{bottom:393.212659pt;}
.y2db{bottom:393.633350pt;}
.y1e4{bottom:393.883720pt;}
.y44{bottom:394.615072pt;}
.y364{bottom:394.741056pt;}
.yd5{bottom:395.631470pt;}
.y241{bottom:396.192017pt;}
.yfe{bottom:398.296528pt;}
.y21b{bottom:398.504271pt;}
.y78{bottom:398.505879pt;}
.y258{bottom:398.705871pt;}
.ya3{bottom:398.707479pt;}
.y1c0{bottom:398.833350pt;}
.y393{bottom:400.877848pt;}
.y2b5{bottom:400.893350pt;}
.y135{bottom:402.200006pt;}
.y323{bottom:404.814419pt;}
.yb5{bottom:404.885618pt;}
.y301{bottom:408.877482pt;}
.y2da{bottom:409.263350pt;}
.y281{bottom:410.188261pt;}
.y43{bottom:410.615072pt;}
.y363{bottom:410.869056pt;}
.y17f{bottom:411.698120pt;}
.y1e3{bottom:412.751987pt;}
.y392{bottom:412.877848pt;}
.yd4{bottom:414.493345pt;}
.y1bf{bottom:414.961350pt;}
.y246{bottom:416.185348pt;}
.y2b4{bottom:416.523350pt;}
.y322{bottom:416.814419pt;}
.yfd{bottom:417.164795pt;}
.y21a{bottom:417.372537pt;}
.y77{bottom:417.374146pt;}
.ya2{bottom:417.562921pt;}
.y257{bottom:417.574137pt;}
.y134{bottom:421.068273pt;}
.yb4{bottom:423.753885pt;}
.y300{bottom:424.877482pt;}
.y391{bottom:424.877848pt;}
.y2d9{bottom:424.893350pt;}
.y42{bottom:426.615072pt;}
.y362{bottom:426.997056pt;}
.y160{bottom:428.745985pt;}
.y321{bottom:428.814419pt;}
.y280{bottom:429.056527pt;}
.y17e{bottom:430.564819pt;}
.ye{bottom:430.990669pt;}
.y1be{bottom:431.089350pt;}
.y1e2{bottom:431.620253pt;}
.y2b3{bottom:432.153350pt;}
.y245{bottom:432.388014pt;}
.y2ff{bottom:432.877482pt;}
.yd3{bottom:433.361611pt;}
.yfc{bottom:436.021886pt;}
.y76{bottom:436.231196pt;}
.y219{bottom:436.240804pt;}
.ya1{bottom:436.431188pt;}
.y256{bottom:436.439188pt;}
.y390{bottom:436.877848pt;}
.y133{bottom:439.936539pt;}
.y2d8{bottom:440.523350pt;}
.y41{bottom:442.615072pt;}
.yb3{bottom:442.622152pt;}
.y361{bottom:443.125056pt;}
.y320{bottom:444.942419pt;}
.yd{bottom:446.990669pt;}
.y1bd{bottom:447.217350pt;}
.y2b2{bottom:447.783350pt;}
.y27f{bottom:447.924794pt;}
.y244{bottom:448.516014pt;}
.y38f{bottom:448.877848pt;}
.y1e1{bottom:450.488520pt;}
.yd2{bottom:452.229878pt;}
.y2fe{bottom:452.877482pt;}
.yfb{bottom:454.890153pt;}
.y218{bottom:455.094679pt;}
.y75{bottom:455.099463pt;}
.ya0{bottom:455.299454pt;}
.y255{bottom:455.307454pt;}
.y2d7{bottom:456.153350pt;}
.y31f{bottom:456.942419pt;}
.y40{bottom:458.615072pt;}
.y132{bottom:458.804806pt;}
.y360{bottom:459.253056pt;}
.y38e{bottom:460.877848pt;}
.yc{bottom:462.990669pt;}
.y1bc{bottom:463.345350pt;}
.y2b1{bottom:463.413350pt;}
.y15f{bottom:464.279351pt;}
.y243{bottom:464.644014pt;}
.y2fd{bottom:464.877482pt;}
.y27e{bottom:466.793061pt;}
.y31e{bottom:468.942419pt;}
.y1e0{bottom:469.356787pt;}
.yd1{bottom:471.098145pt;}
.y2d6{bottom:471.783350pt;}
.y38d{bottom:472.877848pt;}
.yfa{bottom:473.758419pt;}
.y217{bottom:473.962946pt;}
.y74{bottom:473.967729pt;}
.y9f{bottom:474.167721pt;}
.y254{bottom:474.174154pt;}
.y3f{bottom:474.615072pt;}
.y35f{bottom:475.381056pt;}
.y2fc{bottom:476.877482pt;}
.y131{bottom:477.673073pt;}
.yb{bottom:478.990666pt;}
.y2b0{bottom:479.043350pt;}
.y1bb{bottom:479.473350pt;}
.y31d{bottom:480.942419pt;}
.y17d{bottom:484.763203pt;}
.y38c{bottom:484.877848pt;}
.y27d{bottom:485.661327pt;}
.y2d5{bottom:487.413350pt;}
.y1df{bottom:488.225053pt;}
.y242{bottom:488.548014pt;}
.yd0{bottom:489.964803pt;}
.y3e{bottom:490.615072pt;}
.y35e{bottom:491.509056pt;}
.yf9{bottom:492.626686pt;}
.y216{bottom:492.831212pt;}
.y73{bottom:492.835996pt;}
.y31c{bottom:492.942419pt;}
.y9e{bottom:493.035988pt;}
.y2af{bottom:494.673350pt;}
.ya{bottom:494.990666pt;}
.y1ba{bottom:495.601350pt;}
.y130{bottom:496.541339pt;}
.y2fb{bottom:496.877482pt;}
.y38b{bottom:496.877848pt;}
.y15e{bottom:499.804676pt;}
.yc7{bottom:499.835327pt;}
.y2d4{bottom:503.043350pt;}
.y17c{bottom:503.636528pt;}
.y27c{bottom:504.529594pt;}
.y31b{bottom:504.942419pt;}
.y3d{bottom:506.615072pt;}
.y1de{bottom:507.093320pt;}
.y35d{bottom:507.637056pt;}
.y2fa{bottom:508.877482pt;}
.y38a{bottom:508.877848pt;}
.y240{bottom:510.159342pt;}
.y2ae{bottom:510.303350pt;}
.yf8{bottom:511.494953pt;}
.y215{bottom:511.699479pt;}
.y72{bottom:511.704263pt;}
.y1b9{bottom:511.740016pt;}
.y9d{bottom:511.904254pt;}
.y12f{bottom:515.409606pt;}
.y31a{bottom:516.942419pt;}
.y2d3{bottom:518.673350pt;}
.y389{bottom:520.877848pt;}
.y3c{bottom:522.615072pt;}
.y27b{bottom:523.397861pt;}
.y1b8{bottom:523.740016pt;}
.y1dd{bottom:525.961587pt;}
.y2ad{bottom:525.996683pt;}
.ycf{bottom:527.493345pt;}
.y2f9{bottom:528.877482pt;}
.yf7{bottom:530.363219pt;}
.y214{bottom:530.567746pt;}
.y71{bottom:530.572529pt;}
.y9c{bottom:530.772521pt;}
.y35c{bottom:531.541056pt;}
.y388{bottom:532.877848pt;}
.y319{bottom:533.070419pt;}
.y12e{bottom:534.277873pt;}
.y2d2{bottom:534.303350pt;}
.y15d{bottom:535.332942pt;}
.y3b{bottom:538.615072pt;}
.y17b{bottom:539.169853pt;}
.y1b7{bottom:539.868016pt;}
.y2f8{bottom:540.877482pt;}
.y2ac{bottom:541.626683pt;}
.y27a{bottom:542.266127pt;}
.y1dc{bottom:544.829853pt;}
.y387{bottom:544.877848pt;}
.yce{bottom:546.361611pt;}
.y318{bottom:549.209086pt;}
.yf6{bottom:549.231486pt;}
.y213{bottom:549.436012pt;}
.y70{bottom:549.440796pt;}
.y9b{bottom:549.640788pt;}
.y2d1{bottom:549.996683pt;}
.y12d{bottom:553.151473pt;}
.y35b{bottom:553.152262pt;}
.y15c{bottom:554.201209pt;}
.y3a{bottom:554.615072pt;}
.y1b6{bottom:556.006683pt;}
.y386{bottom:556.877848pt;}
.y2ab{bottom:557.256683pt;}
.y2f7{bottom:560.877482pt;}
.y279{bottom:561.134394pt;}
.y317{bottom:561.209086pt;}
.y23a{bottom:563.134806pt;}
.y1db{bottom:563.698120pt;}
.ycd{bottom:565.229878pt;}
.y2d0{bottom:565.626683pt;}
.y1b5{bottom:568.006683pt;}
.yf5{bottom:568.096536pt;}
.y212{bottom:568.304279pt;}
.y6f{bottom:568.305887pt;}
.y9a{bottom:568.505879pt;}
.y253{bottom:568.507487pt;}
.y385{bottom:568.877848pt;}
.y2aa{bottom:569.256683pt;}
.y39{bottom:570.615072pt;}
.y2f6{bottom:572.877482pt;}
.y15b{bottom:573.069476pt;}
.y9{bottom:573.786667pt;}
.y17a{bottom:574.703219pt;}
.y316{bottom:577.347753pt;}
.y278{bottom:580.002661pt;}
.y384{bottom:580.877848pt;}
.y2cf{bottom:581.256683pt;}
.y1da{bottom:582.559995pt;}
.y23f{bottom:583.128015pt;}
.y59{bottom:583.415080pt;}
.ycc{bottom:584.098145pt;}
.y1b4{bottom:584.134683pt;}
.y2f5{bottom:584.877482pt;}
.y2a9{bottom:584.886683pt;}
.y38{bottom:586.615072pt;}
.yf4{bottom:586.964803pt;}
.y211{bottom:587.172546pt;}
.y6e{bottom:587.174154pt;}
.y252{bottom:587.362970pt;}
.y99{bottom:587.374146pt;}
.y12c{bottom:588.679739pt;}
.y315{bottom:589.347753pt;}
.y15a{bottom:591.937742pt;}
.y8{bottom:592.685334pt;}
.y383{bottom:592.877848pt;}
.y2ce{bottom:593.256683pt;}
.y340{bottom:593.836792pt;}
.y58{bottom:595.415080pt;}
.y2f4{bottom:596.877482pt;}
.y277{bottom:598.870927pt;}
.y23e{bottom:599.330682pt;}
.y1b3{bottom:600.273350pt;}
.y2a8{bottom:600.516683pt;}
.y314{bottom:601.347753pt;}
.y1d9{bottom:601.428262pt;}
.y37{bottom:602.615072pt;}
.ycb{bottom:602.964803pt;}
.y382{bottom:604.877848pt;}
.yf3{bottom:605.828286pt;}
.y6d{bottom:606.034420pt;}
.y210{bottom:606.040812pt;}
.y251{bottom:606.231237pt;}
.y98{bottom:606.239196pt;}
.y57{bottom:607.415080pt;}
.y2cd{bottom:608.886683pt;}
.y179{bottom:610.231486pt;}
.y159{bottom:610.806009pt;}
.y1b2{bottom:612.273350pt;}
.y2a7{bottom:612.516683pt;}
.y33f{bottom:612.703451pt;}
.y313{bottom:613.347753pt;}
.y23d{bottom:615.458682pt;}
.y2f3{bottom:616.877482pt;}
.y381{bottom:616.877848pt;}
.y276{bottom:617.739194pt;}
.y36{bottom:618.615072pt;}
.y56{bottom:619.415080pt;}
.y1d8{bottom:620.296528pt;}
.yca{bottom:621.829853pt;}
.y12b{bottom:624.208006pt;}
.y2cc{bottom:624.516683pt;}
.yf2{bottom:624.696553pt;}
.y6c{bottom:624.902687pt;}
.y20f{bottom:624.907471pt;}
.y250{bottom:625.099503pt;}
.y97{bottom:625.107463pt;}
.y2a6{bottom:628.146683pt;}
.y1b1{bottom:628.401350pt;}
.y2f2{bottom:628.877482pt;}
.y380{bottom:628.877848pt;}
.y312{bottom:629.475753pt;}
.y158{bottom:629.674276pt;}
.y55{bottom:631.415080pt;}
.y23c{bottom:631.586682pt;}
.y35{bottom:634.615072pt;}
.y275{bottom:636.607461pt;}
.y1d7{bottom:639.164795pt;}
.y2cb{bottom:640.146683pt;}
.yc9{bottom:640.698120pt;}
.y2f1{bottom:640.877482pt;}
.y37f{bottom:640.877848pt;}
.y12a{bottom:643.076273pt;}
.y54{bottom:643.415080pt;}
.yf1{bottom:643.564819pt;}
.y20e{bottom:643.767737pt;}
.y6b{bottom:643.770954pt;}
.y2a5{bottom:643.776683pt;}
.y96{bottom:643.966121pt;}
.y24f{bottom:643.967770pt;}
.y1b0{bottom:644.540016pt;}
.y7{bottom:645.598667pt;}
.y311{bottom:645.603753pt;}
.y157{bottom:648.536151pt;}
.y34{bottom:650.615072pt;}
.y2f0{bottom:652.877482pt;}
.y37e{bottom:652.877848pt;}
.y274{bottom:655.475727pt;}
.y23b{bottom:655.490682pt;}
.y2ca{bottom:655.776683pt;}
.y1af{bottom:656.540016pt;}
.y192{bottom:656.746685pt;}
.y1d6{bottom:658.029886pt;}
.y2a4{bottom:659.406683pt;}
.y53{bottom:659.415080pt;}
.yc8{bottom:659.564819pt;}
.y310{bottom:661.742419pt;}
.y129{bottom:661.944539pt;}
.y20d{bottom:662.636004pt;}
.y6a{bottom:662.639220pt;}
.y95{bottom:662.834388pt;}
.y24e{bottom:662.836037pt;}
.y37d{bottom:664.877848pt;}
.y156{bottom:667.404417pt;}
.y52{bottom:667.415080pt;}
.y191{bottom:668.077352pt;}
.y1ae{bottom:668.540016pt;}
.y3{bottom:668.977329pt;}
.y35a{bottom:668.979440pt;}
.y33{bottom:670.615072pt;}
.y2c9{bottom:671.406683pt;}
.y30f{bottom:673.742419pt;}
.y273{bottom:674.343994pt;}
.y2a3{bottom:675.036683pt;}
.y37c{bottom:676.877848pt;}
.y1d5{bottom:676.898153pt;}
.y239{bottom:677.102010pt;}
.y51{bottom:679.415080pt;}
.y128{bottom:680.811320pt;}
.y20c{bottom:681.504271pt;}
.y69{bottom:681.507487pt;}
.y94{bottom:681.702654pt;}
.y24d{bottom:681.704303pt;}
.y1ad{bottom:684.668016pt;}
.y359{bottom:685.182107pt;}
.y155{bottom:686.272684pt;}
.y2a2{bottom:687.036683pt;}
.y19f{bottom:687.281350pt;}
.y37b{bottom:688.877848pt;}
.y30e{bottom:689.870419pt;}
.y119{bottom:692.337350pt;}
.y272{bottom:693.210693pt;}
.y2c8{bottom:699.036683pt;}
.y127{bottom:699.674762pt;}
.y2ef{bottom:700.369321pt;}
.y68{bottom:700.370970pt;}
.y20b{bottom:700.372537pt;}
.y93{bottom:700.570921pt;}
.y24c{bottom:700.572570pt;}
.y1ac{bottom:700.806683pt;}
.y37a{bottom:700.877848pt;}
.y358{bottom:701.310107pt;}
.y30d{bottom:701.870419pt;}
.y2a1{bottom:702.666683pt;}
.y152{bottom:703.124023pt;}
.y19e{bottom:703.484016pt;}
.y151{bottom:705.139302pt;}
.y154{bottom:705.140951pt;}
.y118{bottom:708.540016pt;}
.y1ab{bottom:712.806683pt;}
.y379{bottom:712.877848pt;}
.y30c{bottom:713.870419pt;}
.y2c7{bottom:714.666683pt;}
.y357{bottom:717.438107pt;}
.y2a0{bottom:718.296683pt;}
.y126{bottom:718.543029pt;}
.y2ee{bottom:719.237588pt;}
.y67{bottom:719.239237pt;}
.y20a{bottom:719.240804pt;}
.y92{bottom:719.439188pt;}
.y24b{bottom:719.440837pt;}
.y19d{bottom:719.612016pt;}
.yed{bottom:719.711182pt;}
.y14e{bottom:721.992025pt;}
.y14d{bottom:723.994137pt;}
.y150{bottom:724.007568pt;}
.y117{bottom:724.668016pt;}
.y201{bottom:724.861372pt;}
.y378{bottom:724.877848pt;}
.y28{bottom:725.048421pt;}
.y1aa{bottom:728.934683pt;}
.y30b{bottom:730.009086pt;}
.y29f{bottom:730.296683pt;}
.ye8{bottom:733.178630pt;}
.y356{bottom:733.566107pt;}
.y19c{bottom:735.750683pt;}
.y200{bottom:736.192038pt;}
.y377{bottom:736.877848pt;}
.y125{bottom:737.411296pt;}
.y271{bottom:738.102638pt;}
.y209{bottom:738.105854pt;}
.y66{bottom:738.107503pt;}
.y91{bottom:738.307454pt;}
.y116{bottom:740.806683pt;}
.y30a{bottom:742.009086pt;}
.y1a9{bottom:745.073350pt;}
.y29e{bottom:745.926683pt;}
.yc6{bottom:747.364502pt;}
.y1ff{bottom:747.522705pt;}
.y19b{bottom:747.750683pt;}
.y376{bottom:748.877848pt;}
.y355{bottom:749.704773pt;}
.y170{bottom:752.308024pt;}
.y115{bottom:752.806683pt;}
.y309{bottom:754.009086pt;}
.y176{bottom:754.669840pt;}
.y124{bottom:756.271562pt;}
.y270{bottom:756.970905pt;}
.y65{bottom:756.974121pt;}
.y1a8{bottom:757.073350pt;}
.y90{bottom:757.174154pt;}
.ye2{bottom:757.932699pt;}
.y375{bottom:760.877848pt;}
.y29d{bottom:761.556683pt;}
.y19a{bottom:763.889350pt;}
.y354{bottom:765.832773pt;}
.y308{bottom:766.009086pt;}
.y27{bottom:766.140805pt;}
.y1fe{bottom:766.230705pt;}
.y16f{bottom:768.607585pt;}
.y114{bottom:768.945350pt;}
.y177{bottom:770.774007pt;}
.y172{bottom:770.774170pt;}
.y374{bottom:772.877848pt;}
.y1a7{bottom:773.201350pt;}
.y123{bottom:775.139829pt;}
.y208{bottom:775.828037pt;}
.y2ed{bottom:775.832820pt;}
.y64{bottom:775.834388pt;}
.y26f{bottom:775.839171pt;}
.y24a{bottom:775.840820pt;}
.y8f{bottom:776.040771pt;}
.y29c{bottom:777.186683pt;}
.y307{bottom:778.009086pt;}
.y1fd{bottom:778.230705pt;}
.y199{bottom:780.017350pt;}
.y2{bottom:781.661334pt;}
.y353{bottom:781.960773pt;}
.y174{bottom:783.193848pt;}
.ye3{bottom:784.874632pt;}
.y373{bottom:784.877848pt;}
.y113{bottom:785.073350pt;}
.y1a6{bottom:789.329350pt;}
.y306{bottom:790.009086pt;}
.y29b{bottom:792.816683pt;}
.y122{bottom:794.008096pt;}
.y1fc{bottom:794.433372pt;}
.y207{bottom:794.696303pt;}
.y2ec{bottom:794.701087pt;}
.y63{bottom:794.702654pt;}
.y249{bottom:794.704303pt;}
.y26e{bottom:794.707438pt;}
.y198{bottom:796.145350pt;}
.y372{bottom:796.877848pt;}
.y352{bottom:798.088773pt;}
.yea{bottom:798.780762pt;}
.y26{bottom:800.796805pt;}
.y112{bottom:801.212016pt;}
.y1a5{bottom:805.457350pt;}
.y1fb{bottom:806.433372pt;}
.y29a{bottom:808.446683pt;}
.y371{bottom:808.877848pt;}
.ye4{bottom:811.796540pt;}
.y197{bottom:812.273350pt;}
.y121{bottom:812.876362pt;}
.y206{bottom:813.564570pt;}
.y8e{bottom:813.566137pt;}
.y26d{bottom:813.567705pt;}
.y2eb{bottom:813.569354pt;}
.y62{bottom:813.570921pt;}
.y248{bottom:813.572570pt;}
.y305{bottom:813.913086pt;}
.y351{bottom:814.216773pt;}
.y111{bottom:817.340016pt;}
.y370{bottom:820.877848pt;}
.y110{bottom:821.468016pt;}
.y1a4{bottom:821.585350pt;}
.y1fa{bottom:822.561372pt;}
.y299{bottom:824.076683pt;}
.y304{bottom:825.913086pt;}
.y196{bottom:828.401350pt;}
.y350{bottom:830.355440pt;}
.y120{bottom:831.744629pt;}
.y205{bottom:832.432837pt;}
.y8d{bottom:832.434404pt;}
.y26c{bottom:832.435971pt;}
.y2ea{bottom:832.437620pt;}
.y61{bottom:832.439188pt;}
.y247{bottom:832.440837pt;}
.y36f{bottom:832.877848pt;}
.y10f{bottom:833.468016pt;}
.yeb{bottom:835.313965pt;}
.y25{bottom:835.452805pt;}
.y1a3{bottom:837.713350pt;}
.y1f9{bottom:838.702027pt;}
.ye5{bottom:838.718449pt;}
.y298{bottom:839.706683pt;}
.y195{bottom:844.540016pt;}
.y36e{bottom:844.877848pt;}
.y303{bottom:847.524251pt;}
.y10e{bottom:849.596016pt;}
.y11f{bottom:850.611165pt;}
.y204{bottom:851.301103pt;}
.y8c{bottom:851.302671pt;}
.y26b{bottom:851.304238pt;}
.y2e9{bottom:851.305887pt;}
.y60{bottom:851.307454pt;}
.y1a2{bottom:853.841350pt;}
.y34f{bottom:854.259440pt;}
.y1f8{bottom:854.830027pt;}
.y297{bottom:855.336683pt;}
.y36d{bottom:856.877848pt;}
.y1{bottom:859.312000pt;}
.y194{bottom:860.668016pt;}
.ye6{bottom:865.660382pt;}
.y10d{bottom:865.724016pt;}
.y36c{bottom:868.877848pt;}
.y11e{bottom:869.474648pt;}
.y1a1{bottom:869.969350pt;}
.y24{bottom:870.108805pt;}
.y203{bottom:870.169370pt;}
.y5f{bottom:870.170937pt;}
.y26a{bottom:870.172505pt;}
.y2e8{bottom:870.174154pt;}
.y1f7{bottom:870.958027pt;}
.y296{bottom:870.966683pt;}
.y34e{bottom:875.870687pt;}
.y36b{bottom:880.877848pt;}
.y10c{bottom:881.862683pt;}
.y193{bottom:884.572016pt;}
.y11d{bottom:888.342915pt;}
.y302{bottom:888.344564pt;}
.y202{bottom:889.037637pt;}
.y5e{bottom:889.039204pt;}
.y269{bottom:889.040771pt;}
.ye7{bottom:892.582290pt;}
.y36a{bottom:892.877848pt;}
.y1a0{bottom:893.766683pt;}
.y295{bottom:894.266683pt;}
.y1f6{bottom:894.478027pt;}
.y149{bottom:903.634684pt;}
.y369{bottom:904.877848pt;}
.y14b{bottom:905.483968pt;}
.y10b{bottom:905.766683pt;}
.y294{bottom:906.266683pt;}
.y1f5{bottom:906.478027pt;}
.y11c{bottom:907.211182pt;}
.y148{bottom:907.905903pt;}
.y5d{bottom:907.907471pt;}
.y33e{bottom:908.311361pt;}
.y368{bottom:916.877848pt;}
.y4e{bottom:920.265218pt;}
.y46{bottom:920.666829pt;}
.y11b{bottom:926.077962pt;}
.y5c{bottom:926.774170pt;}
.y33d{bottom:927.177897pt;}
.y10a{bottom:927.377848pt;}
.y367{bottom:928.877848pt;}
.y50{bottom:988.708515pt;}
.y89{bottom:1001.355225pt;}
.y5a{bottom:1001.355306pt;}
.y8b{bottom:1001.561768pt;}
.y4f{bottom:1001.711182pt;}
.y8a{bottom:1002.044515pt;}
.y5b{bottom:1002.048639pt;}
.h40{height:0.000000pt;}
.h45{height:8.265333pt;}
.h43{height:10.134666pt;}
.h47{height:10.800000pt;}
.h46{height:23.005077pt;}
.h44{height:23.475636pt;}
.h17{height:24.724000pt;}
.h25{height:25.318347pt;}
.h2a{height:27.232277pt;}
.h2c{height:27.292843pt;}
.h41{height:27.377736pt;}
.h3f{height:27.814826pt;}
.h7{height:28.560000pt;}
.h2d{height:30.379136pt;}
.h13{height:32.965333pt;}
.h48{height:34.978174pt;}
.h52{height:35.082743pt;}
.h16{height:35.320000pt;}
.h55{height:35.541333pt;}
.h26{height:36.169067pt;}
.h3d{height:36.598987pt;}
.h33{height:37.674667pt;}
.h67{height:38.080000pt;}
.h62{height:38.880000pt;}
.h66{height:40.470569pt;}
.h65{height:40.470610pt;}
.h64{height:40.470667pt;}
.h3c{height:40.533333pt;}
.h15{height:40.618667pt;}
.h18{height:40.661333pt;}
.h6{height:40.800000pt;}
.h32{height:41.472000pt;}
.h14{height:41.984000pt;}
.h28{height:42.197333pt;}
.h51{height:42.399999pt;}
.h3{height:42.840000pt;}
.h3e{height:43.846776pt;}
.h10{height:47.093333pt;}
.h31{height:47.472000pt;}
.h30{height:47.692799pt;}
.h37{height:48.555733pt;}
.h2{height:48.960000pt;}
.h42{height:49.617769pt;}
.h4b{height:49.632936pt;}
.h4d{height:49.633096pt;}
.h4c{height:49.633099pt;}
.hd{height:49.653333pt;}
.h1c{height:49.659603pt;}
.hf{height:49.659685pt;}
.h59{height:49.659721pt;}
.h50{height:49.659725pt;}
.h5a{height:49.659729pt;}
.h22{height:49.659766pt;}
.h5c{height:49.659929pt;}
.h4e{height:49.660336pt;}
.h4a{height:49.665099pt;}
.h1b{height:49.665873pt;}
.h1e{height:49.666036pt;}
.h20{height:49.666117pt;}
.h19{height:49.666198pt;}
.h35{height:49.666849pt;}
.h53{height:49.670053pt;}
.h49{height:49.672465pt;}
.h24{height:49.672468pt;}
.h1f{height:49.672550pt;}
.h57{height:49.672631pt;}
.h4f{height:49.678372pt;}
.h36{height:49.678413pt;}
.he{height:49.678901pt;}
.h1a{height:49.679064pt;}
.h27{height:49.685293pt;}
.h39{height:49.685333pt;}
.h2f{height:49.691603pt;}
.h5d{height:49.691685pt;}
.h1d{height:49.691766pt;}
.h5f{height:49.698036pt;}
.h54{height:49.698117pt;}
.h23{height:49.698198pt;}
.h5b{height:49.704468pt;}
.h5e{height:49.704513pt;}
.h38{height:49.711389pt;}
.h60{height:49.730158pt;}
.h61{height:49.742901pt;}
.h58{height:49.781415pt;}
.h3b{height:50.666667pt;}
.h11{height:51.840000pt;}
.hc{height:54.329067pt;}
.h2e{height:55.663909pt;}
.h3a{height:55.663988pt;}
.h29{height:55.676774pt;}
.h21{height:55.696072pt;}
.hb{height:59.728337pt;}
.h12{height:68.570667pt;}
.h5{height:69.360000pt;}
.h34{height:85.674667pt;}
.h63{height:86.880000pt;}
.h56{height:89.472000pt;}
.h4{height:105.826671pt;}
.ha{height:121.856000pt;}
.h2b{height:194.533325pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w8{width:8.160000pt;}
.w7{width:11.199999pt;}
.w6{width:11.238667pt;}
.w5{width:236.786662pt;}
.w9{width:360.853353pt;}
.w4{width:480.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x18{left:-1.281595pt;}
.x0{left:0.000000pt;}
.x1b{left:33.962667pt;}
.x12{left:37.426392pt;}
.x1d{left:44.678793pt;}
.x5{left:75.496002pt;}
.x9{left:83.317602pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:110.602804pt;}
.x2b{left:138.819743pt;}
.x2d{left:140.967733pt;}
.x2f{left:151.683859pt;}
.xb{left:156.850403pt;}
.x38{left:160.850413pt;}
.xd{left:165.517069pt;}
.xc{left:167.512803pt;}
.x39{left:171.517124pt;}
.x49{left:176.850403pt;}
.x14{left:177.968526pt;}
.x4{left:180.874667pt;}
.xf{left:184.285130pt;}
.x11{left:187.348761pt;}
.x19{left:189.999736pt;}
.xe{left:191.874125pt;}
.x2a{left:193.037069pt;}
.x10{left:194.937756pt;}
.x48{left:197.757050pt;}
.x13{left:199.171590pt;}
.x1a{left:214.899740pt;}
.x1c{left:220.443990pt;}
.x1f{left:234.470419pt;}
.x1e{left:235.960266pt;}
.x6{left:238.110270pt;}
.x33{left:240.946401pt;}
.x7{left:246.777323pt;}
.x20{left:252.742676pt;}
.x3c{left:256.000403pt;}
.x21{left:263.982524pt;}
.x3b{left:270.827596pt;}
.x31{left:305.205872pt;}
.x34{left:312.914401pt;}
.x3a{left:320.903802pt;}
.x2c{left:321.917338pt;}
.x3d{left:325.040401pt;}
.x2e{left:327.449198pt;}
.x22{left:329.034667pt;}
.x41{left:333.280488pt;}
.x23{left:340.234802pt;}
.x30{left:342.977336pt;}
.x24{left:349.846680pt;}
.x25{left:358.006551pt;}
.x45{left:388.370403pt;}
.x47{left:396.370383pt;}
.x3{left:404.408000pt;}
.x35{left:415.975731pt;}
.x3e{left:423.910401pt;}
.x36{left:499.943731pt;}
.x3f{left:504.460401pt;}
.x16{left:505.437051pt;}
.x46{left:508.370383pt;}
.x42{left:512.710483pt;}
.x44{left:565.780400pt;}
.x37{left:572.807730pt;}
.x40{left:574.360399pt;}
.x26{left:575.777344pt;}
.x43{left:582.610483pt;}
.x27{left:583.937459pt;}
.x28{left:615.037354pt;}
.x8{left:617.715454pt;}
.x17{left:621.463989pt;}
.x29{left:623.197184pt;}
.x32{left:658.727458pt;}
.xa{left:664.199341pt;}
}




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