
    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_6540392a8383ed791fc59f9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;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_4c1ae50877d8bd8fe43e47af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_eb176dfe0fce95ecd144b348.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.714000;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_b011119e28691c9ade209eee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907000;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_245c20373276f2b6ec6f5af1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_a5bf280d25b3ceb733dfbbb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_98600564b690c00246c639e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_e077547a151ff7f8227237a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_21a2805c00c0e169b08278db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_8969044d201960e630434e78.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bd2ee9133cd938f7e9fe64a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_f5a5ac8d6939138def6f81a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_606c074112ab483a41f1256d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_f5f40d1b639274283908e0c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;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_9449a9a8ccdb9ec933085be8.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_73c24e6dfba5511bff832cee.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2f88a71d6eefa7010f48fd9c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;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_7d8a0898da24d2f2793cd92f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_304b7a9143c11bddc3581533.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.696000;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_0f1feebf21868ee237f26992.woff2')format("woff");}.ff14{font-family:ff14;line-height:2.999000;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_7033539fc000b73467b817ed.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.693000;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_c99f9382fa6e5e20e499b0a7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1eba91b059c7ac5d16f3baf6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.689453;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_d7d09156f73c11bc150947ba.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ba206e609d3ba7577536438d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.684082;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_1ebc455b5f69180327c56479.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.689453;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_bd026bcb5addc1e2376d8360.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_15fc9710f91e42f230f4d904.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_86ba858c41a162524a6e06b0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_dd8a39e2fc008906866f44cc.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_41abd6e943930f372abdf8b4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_071de95461a4f45012c7e1e3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e1ef5619e8272cba52fbd24f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.908203;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:ff22;src:url('chunks/assets/font_8c44ae8494255d227597b52e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.854000;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:ff23;src:url('chunks/assets/font_544c5ec21ef9072837739261.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.709000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vc{vertical-align:-28.392000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.164709px;}
.vb{vertical-align:3.710885px;}
.v7{vertical-align:17.268000px;}
.v1{vertical-align:24.684000px;}
.va{vertical-align:27.798000px;}
.v9{vertical-align:28.986000px;}
.v4{vertical-align:40.770000px;}
.v5{vertical-align:45.312000px;}
.v3{vertical-align:102.216000px;}
.v6{vertical-align:127.206000px;}
.ls4{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000479px;}
.ls40{letter-spacing:0.000493px;}
.ls5{letter-spacing:0.000538px;}
.ls6{letter-spacing:0.000615px;}
.ls15{letter-spacing:0.000777px;}
.lsa{letter-spacing:0.000961px;}
.ls1d{letter-spacing:0.001140px;}
.ls2e{letter-spacing:0.002316px;}
.ls1c{letter-spacing:0.002800px;}
.ls3a{letter-spacing:0.003056px;}
.ls29{letter-spacing:0.003247px;}
.ls23{letter-spacing:0.004172px;}
.ls7{letter-spacing:0.004200px;}
.ls14{letter-spacing:1.886823px;}
.lsb{letter-spacing:2.988615px;}
.ls1f{letter-spacing:2.989140px;}
.ls20{letter-spacing:2.990525px;}
.lse{letter-spacing:2.993251px;}
.ls12{letter-spacing:4.903735px;}
.ls26{letter-spacing:6.086801px;}
.ls13{letter-spacing:6.433202px;}
.ls3{letter-spacing:8.470613px;}
.ls2d{letter-spacing:11.292538px;}
.ls2a{letter-spacing:11.340538px;}
.ls2f{letter-spacing:13.278538px;}
.ls9{letter-spacing:13.280338px;}
.lsc{letter-spacing:13.281269px;}
.ls37{letter-spacing:13.282200px;}
.lsd{letter-spacing:13.284538px;}
.ls3e{letter-spacing:13.320538px;}
.ls36{letter-spacing:13.374538px;}
.ls3d{letter-spacing:14.922538px;}
.ls2b{letter-spacing:15.916200px;}
.ls2c{letter-spacing:15.918538px;}
.ls8{letter-spacing:16.272615px;}
.ls1e{letter-spacing:16.273140px;}
.ls18{letter-spacing:16.602538px;}
.ls1{letter-spacing:16.932141px;}
.ls0{letter-spacing:16.938141px;}
.ls3f{letter-spacing:17.178493px;}
.ls35{letter-spacing:17.538538px;}
.ls34{letter-spacing:17.544538px;}
.ls17{letter-spacing:18.482823px;}
.ls31{letter-spacing:19.834200px;}
.ls33{letter-spacing:19.836538px;}
.ls32{letter-spacing:19.842538px;}
.ls38{letter-spacing:19.918200px;}
.ls27{letter-spacing:22.026668px;}
.ls11{letter-spacing:22.674615px;}
.ls1b{letter-spacing:22.927202px;}
.ls24{letter-spacing:23.533140px;}
.ls25{letter-spacing:23.539140px;}
.ls28{letter-spacing:23.539202px;}
.ls10{letter-spacing:29.837251px;}
.ls2{letter-spacing:29.884200px;}
.ls22{letter-spacing:30.334774px;}
.ls30{letter-spacing:31.221269px;}
.ls1a{letter-spacing:33.349202px;}
.ls16{letter-spacing:59.758200px;}
.lsf{letter-spacing:84.632338px;}
.ls39{letter-spacing:94.288148px;}
.ls3c{letter-spacing:131.338097px;}
.ls21{letter-spacing:305.654338px;}
.ls19{letter-spacing:414.914338px;}
.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;}
}
.wsf0{word-spacing:-50.809387px;}
.ws19{word-spacing:-47.333852px;}
.ws150{word-spacing:-30.545332px;}
.ws8c{word-spacing:-29.881822px;}
.wsf1{word-spacing:-25.397521px;}
.ws131{word-spacing:-16.611639px;}
.ws11f{word-spacing:-16.551864px;}
.wsd7{word-spacing:-16.432312px;}
.ws2e{word-spacing:-16.372537px;}
.wsbd{word-spacing:-16.312761px;}
.ws185{word-spacing:-16.133434px;}
.wsfa{word-spacing:-16.073659px;}
.ws10b{word-spacing:-15.954108px;}
.ws5d{word-spacing:-15.894332px;}
.ws41{word-spacing:-15.829597px;}
.ws42{word-spacing:-15.743520px;}
.ws6c{word-spacing:-15.715005px;}
.wscb{word-spacing:-15.655230px;}
.ws7b{word-spacing:-15.535678px;}
.ws78{word-spacing:-15.416127px;}
.ws52{word-spacing:-15.356352px;}
.ws68{word-spacing:-15.236800px;}
.ws25{word-spacing:-15.117249px;}
.ws49{word-spacing:-14.997698px;}
.wsb7{word-spacing:-14.818371px;}
.wsd8{word-spacing:-14.791266px;}
.ws37{word-spacing:-14.758596px;}
.ws4c{word-spacing:-14.698820px;}
.ws129{word-spacing:-14.639044px;}
.ws4f{word-spacing:-14.579269px;}
.ws4a{word-spacing:-14.519493px;}
.ws7a{word-spacing:-14.459718px;}
.ws79{word-spacing:-14.399942px;}
.ws73{word-spacing:-14.340166px;}
.ws29{word-spacing:-14.280391px;}
.wsd{word-spacing:-14.226593px;}
.wsc6{word-spacing:-14.220615px;}
.ws26{word-spacing:-14.101064px;}
.ws6b{word-spacing:-14.041288px;}
.ws155{word-spacing:-13.987490px;}
.ws4b{word-spacing:-13.981513px;}
.wsf3{word-spacing:-13.921737px;}
.ws94{word-spacing:-13.874158px;}
.wsf8{word-spacing:-13.802186px;}
.ws97{word-spacing:-13.682635px;}
.ws9{word-spacing:-13.569061px;}
.ws12d{word-spacing:-13.563084px;}
.wse6{word-spacing:-13.503308px;}
.ws90{word-spacing:-13.443532px;}
.ws5c{word-spacing:-13.442427px;}
.wsa8{word-spacing:-13.383757px;}
.ws14d{word-spacing:-13.323981px;}
.ws172{word-spacing:-13.270183px;}
.ws55{word-spacing:-13.264206px;}
.ws20{word-spacing:-13.204430px;}
.ws105{word-spacing:-13.084879px;}
.ws44{word-spacing:-13.025103px;}
.ws3f{word-spacing:-12.965328px;}
.ws9e{word-spacing:-12.845776px;}
.ws8f{word-spacing:-12.786001px;}
.ws13d{word-spacing:-12.726225px;}
.wse3{word-spacing:-12.666450px;}
.wsea{word-spacing:-12.487123px;}
.wsff{word-spacing:-12.427347px;}
.ws110{word-spacing:-12.367572px;}
.ws13{word-spacing:-12.313774px;}
.ws99{word-spacing:-12.307796px;}
.ws5a{word-spacing:-12.248020px;}
.ws100{word-spacing:-12.188245px;}
.ws12e{word-spacing:-12.128469px;}
.ws43{word-spacing:-12.008918px;}
.ws24{word-spacing:-11.949142px;}
.ws72{word-spacing:-11.889367px;}
.ws39{word-spacing:-11.829591px;}
.wse5{word-spacing:-11.769816px;}
.ws13c{word-spacing:-11.716018px;}
.ws1f{word-spacing:-11.710040px;}
.ws13b{word-spacing:-11.656242px;}
.ws35{word-spacing:-11.650264px;}
.wsb0{word-spacing:-11.634381px;}
.wsa6{word-spacing:-11.470938px;}
.ws56{word-spacing:-11.411162px;}
.ws107{word-spacing:-11.351386px;}
.wsde{word-spacing:-11.291611px;}
.wsc{word-spacing:-11.237813px;}
.ws112{word-spacing:-11.231835px;}
.ws92{word-spacing:-11.172060px;}
.wsa0{word-spacing:-11.112284px;}
.wsa7{word-spacing:-11.052508px;}
.ws34{word-spacing:-10.992733px;}
.ws7{word-spacing:-10.938935px;}
.ws2d{word-spacing:-10.932957px;}
.ws2a{word-spacing:-10.873182px;}
.ws23{word-spacing:-10.813406px;}
.wsb3{word-spacing:-10.753630px;}
.ws4d{word-spacing:-10.693855px;}
.wse2{word-spacing:-10.634079px;}
.ws46{word-spacing:-10.603034px;}
.ws113{word-spacing:-10.454752px;}
.wsf9{word-spacing:-10.394977px;}
.ws93{word-spacing:-10.335201px;}
.ws121{word-spacing:-10.275426px;}
.ws88{word-spacing:-10.215650px;}
.ws5e{word-spacing:-10.155874px;}
.ws8a{word-spacing:-10.148260px;}
.wsa9{word-spacing:-10.096099px;}
.ws104{word-spacing:-10.036323px;}
.ws8b{word-spacing:-9.978639px;}
.ws4{word-spacing:-9.976548px;}
.ws8e{word-spacing:-9.956952px;}
.wsdf{word-spacing:-9.916772px;}
.ws38{word-spacing:-9.856996px;}
.wsd4{word-spacing:-9.797221px;}
.ws6a{word-spacing:-9.737445px;}
.ws9a{word-spacing:-9.568282px;}
.ws28{word-spacing:-9.558118px;}
.ws16f{word-spacing:-9.504320px;}
.ws102{word-spacing:-9.498343px;}
.ws16{word-spacing:-9.444545px;}
.ws40{word-spacing:-9.438567px;}
.wsa{word-spacing:-9.384769px;}
.wsaf{word-spacing:-9.336381px;}
.wsad{word-spacing:-9.327897px;}
.ws89{word-spacing:-9.324994px;}
.wsae{word-spacing:-9.319016px;}
.wsc8{word-spacing:-9.259240px;}
.ws18{word-spacing:-9.205442px;}
.wsbe{word-spacing:-9.199465px;}
.ws21{word-spacing:-9.139689px;}
.ws17c{word-spacing:-9.079914px;}
.ws103{word-spacing:-9.020138px;}
.ws4e{word-spacing:-8.960362px;}
.ws6e{word-spacing:-8.900587px;}
.ws36{word-spacing:-8.840811px;}
.wsc2{word-spacing:-8.781036px;}
.wsb6{word-spacing:-8.661484px;}
.ws33{word-spacing:-8.601709px;}
.ws8{word-spacing:-8.547911px;}
.ws58{word-spacing:-8.482158px;}
.ws48{word-spacing:-8.469028px;}
.wsf5{word-spacing:-8.422382px;}
.ws62{word-spacing:-8.362606px;}
.ws2f{word-spacing:-8.302831px;}
.ws127{word-spacing:-8.243055px;}
.wsdb{word-spacing:-8.183280px;}
.ws16e{word-spacing:-8.129482px;}
.ws114{word-spacing:-8.123504px;}
.ws10f{word-spacing:-8.063728px;}
.ws122{word-spacing:-8.003953px;}
.ws5b{word-spacing:-7.884402px;}
.wsbb{word-spacing:-7.824626px;}
.wsab{word-spacing:-7.764850px;}
.wsaa{word-spacing:-7.754243px;}
.ws123{word-spacing:-7.705075px;}
.ws6f{word-spacing:-7.645299px;}
.ws74{word-spacing:-7.585524px;}
.ws54{word-spacing:-7.525748px;}
.ws9d{word-spacing:-7.465972px;}
.ws59{word-spacing:-7.406197px;}
.ws9f{word-spacing:-7.346421px;}
.ws115{word-spacing:-7.226870px;}
.ws60{word-spacing:-7.167094px;}
.ws2c{word-spacing:-7.107319px;}
.ws57{word-spacing:-7.047543px;}
.ws98{word-spacing:-6.987768px;}
.ws9c{word-spacing:-6.927992px;}
.wsf6{word-spacing:-6.868216px;}
.ws12c{word-spacing:-6.748665px;}
.wsb9{word-spacing:-6.688890px;}
.wsfd{word-spacing:-6.635733px;}
.ws14{word-spacing:-6.635092px;}
.ws120{word-spacing:-6.629114px;}
.ws1d{word-spacing:-6.569338px;}
.wsb4{word-spacing:-6.509563px;}
.ws51{word-spacing:-6.449787px;}
.wscc{word-spacing:-6.390012px;}
.ws67{word-spacing:-6.330236px;}
.ws70{word-spacing:-6.270460px;}
.ws154{word-spacing:-6.216662px;}
.ws5f{word-spacing:-6.150909px;}
.wsa3{word-spacing:-6.125819px;}
.ws7d{word-spacing:-6.031358px;}
.ws66{word-spacing:-5.997086px;}
.ws22{word-spacing:-5.971582px;}
.wsed{word-spacing:-5.911807px;}
.ws10d{word-spacing:-5.852031px;}
.ws91{word-spacing:-5.792256px;}
.ws32{word-spacing:-5.732480px;}
.wsd0{word-spacing:-5.672704px;}
.wsf{word-spacing:-5.618906px;}
.ws81{word-spacing:-5.612929px;}
.ws11e{word-spacing:-5.553153px;}
.wse7{word-spacing:-5.493378px;}
.ws6d{word-spacing:-5.433602px;}
.wse9{word-spacing:-5.373826px;}
.wsc0{word-spacing:-5.314051px;}
.ws15c{word-spacing:-5.194500px;}
.wsfb{word-spacing:-5.134724px;}
.ws63{word-spacing:-5.074948px;}
.ws7c{word-spacing:-5.015173px;}
.ws17{word-spacing:-4.961375px;}
.wsa5{word-spacing:-4.895622px;}
.ws10c{word-spacing:-4.776070px;}
.wsee{word-spacing:-4.716295px;}
.ws106{word-spacing:-4.656519px;}
.wsfc{word-spacing:-4.596744px;}
.ws6{word-spacing:-4.542946px;}
.ws31{word-spacing:-4.536968px;}
.ws50{word-spacing:-4.417417px;}
.ws7e{word-spacing:-4.357641px;}
.ws119{word-spacing:-4.356457px;}
.wsb2{word-spacing:-4.297866px;}
.ws163{word-spacing:-4.238090px;}
.wse1{word-spacing:-4.178314px;}
.ws111{word-spacing:-4.118539px;}
.wsba{word-spacing:-4.058763px;}
.ws17d{word-spacing:-3.998988px;}
.ws69{word-spacing:-3.939212px;}
.ws30{word-spacing:-3.879436px;}
.ws53{word-spacing:-3.819661px;}
.ws3e{word-spacing:-3.759885px;}
.ws152{word-spacing:-3.640334px;}
.wsb{word-spacing:-3.586536px;}
.wsd3{word-spacing:-3.580558px;}
.ws109{word-spacing:-3.520783px;}
.wsf4{word-spacing:-3.461007px;}
.ws118{word-spacing:-3.401232px;}
.ws171{word-spacing:-3.281680px;}
.ws15{word-spacing:-3.168107px;}
.ws75{word-spacing:-3.162129px;}
.ws87{word-spacing:-3.042578px;}
.ws86{word-spacing:-3.027897px;}
.ws80{word-spacing:-2.982802px;}
.ws10{word-spacing:-2.929004px;}
.ws17b{word-spacing:-2.923027px;}
.wse8{word-spacing:-2.803476px;}
.ws7f{word-spacing:-2.749678px;}
.wsb1{word-spacing:-2.743700px;}
.ws116{word-spacing:-2.682736px;}
.ws61{word-spacing:-2.624149px;}
.ws18b{word-spacing:-2.564373px;}
.ws2b{word-spacing:-2.504598px;}
.wsa4{word-spacing:-2.444822px;}
.ws15a{word-spacing:-2.211697px;}
.ws27{word-spacing:-2.086168px;}
.ws1e{word-spacing:-2.026393px;}
.ws183{word-spacing:-1.906842px;}
.ws9b{word-spacing:-1.787290px;}
.ws77{word-spacing:-1.727515px;}
.ws3a{word-spacing:-1.607964px;}
.ws95{word-spacing:-1.548188px;}
.ws45{word-spacing:-1.428637px;}
.ws101{word-spacing:-1.309086px;}
.ws191{word-spacing:-1.189534px;}
.ws182{word-spacing:-1.129759px;}
.wsc1{word-spacing:-1.010208px;}
.ws128{word-spacing:-0.950432px;}
.wse4{word-spacing:-0.830881px;}
.ws12{word-spacing:-0.717307px;}
.ws153{word-spacing:-0.711330px;}
.ws11{word-spacing:-0.657532px;}
.ws126{word-spacing:-0.651554px;}
.ws143{word-spacing:-0.478205px;}
.ws144{word-spacing:-0.472227px;}
.ws166{word-spacing:-0.418429px;}
.ws165{word-spacing:-0.412452px;}
.wse{word-spacing:-0.358654px;}
.ws124{word-spacing:-0.233125px;}
.wsf7{word-spacing:-0.173349px;}
.wsca{word-spacing:-0.113574px;}
.ws83{word-spacing:-0.059776px;}
.ws65{word-spacing:-0.041123px;}
.ws64{word-spacing:-0.023988px;}
.ws3c{word-spacing:0.000000px;}
.wse0{word-spacing:0.005978px;}
.ws76{word-spacing:0.304856px;}
.ws167{word-spacing:0.478205px;}
.wsa1{word-spacing:0.484182px;}
.ws184{word-spacing:0.543958px;}
.ws117{word-spacing:0.663509px;}
.ws3d{word-spacing:0.783060px;}
.ws10a{word-spacing:0.842836px;}
.ws190{word-spacing:1.081938px;}
.wsc5{word-spacing:1.321041px;}
.ws108{word-spacing:1.500368px;}
.ws125{word-spacing:1.619919px;}
.ws10e{word-spacing:1.918797px;}
.ws16d{word-spacing:2.038348px;}
.ws15f{word-spacing:2.151922px;}
.ws15e{word-spacing:2.337226px;}
.wsa2{word-spacing:2.397002px;}
.ws156{word-spacing:2.450800px;}
.ws12f{word-spacing:2.516553px;}
.ws170{word-spacing:2.576328px;}
.ws157{word-spacing:2.695880px;}
.ws130{word-spacing:2.815431px;}
.ws15d{word-spacing:2.875206px;}
.ws17a{word-spacing:2.934982px;}
.ws16c{word-spacing:3.054533px;}
.ws71{word-spacing:3.114309px;}
.ws168{word-spacing:3.293636px;}
.ws17f{word-spacing:3.413187px;}
.wsc9{word-spacing:3.712065px;}
.ws18f{word-spacing:3.951167px;}
.ws139{word-spacing:4.489148px;}
.ws142{word-spacing:4.602721px;}
.wsb5{word-spacing:4.608699px;}
.wsb8{word-spacing:4.847801px;}
.ws173{word-spacing:5.027128px;}
.wsdc{word-spacing:5.266230px;}
.ws96{word-spacing:5.505333px;}
.ws138{word-spacing:5.565108px;}
.ws179{word-spacing:5.744435px;}
.ws13a{word-spacing:5.917784px;}
.ws147{word-spacing:5.983538px;}
.ws164{word-spacing:6.401967px;}
.ws180{word-spacing:6.461742px;}
.ws16a{word-spacing:6.537255px;}
.wsdd{word-spacing:7.119274px;}
.ws169{word-spacing:7.179050px;}
.ws146{word-spacing:7.537703px;}
.ws189{word-spacing:7.776806px;}
.ws82{word-spacing:8.254443px;}
.ws18e{word-spacing:8.374562px;}
.ws3b{word-spacing:8.434337px;}
.ws13f{word-spacing:9.032093px;}
.ws135{word-spacing:9.145667px;}
.wsc4{word-spacing:9.271196px;}
.ws84{word-spacing:9.922750px;}
.ws136{word-spacing:9.928727px;}
.ws161{word-spacing:10.281403px;}
.ws132{word-spacing:10.586259px;}
.ws14f{word-spacing:10.944912px;}
.ws13e{word-spacing:11.004688px;}
.ws162{word-spacing:11.184015px;}
.wsbf{word-spacing:11.240624px;}
.wsbc{word-spacing:11.276624px;}
.ws133{word-spacing:11.423117px;}
.ws18d{word-spacing:11.542668px;}
.ws137{word-spacing:11.602444px;}
.ws159{word-spacing:11.780134px;}
.ws188{word-spacing:11.901322px;}
.ws177{word-spacing:12.499078px;}
.wsc7{word-spacing:13.220624px;}
.wsc3{word-spacing:13.226624px;}
.wscf{word-spacing:13.275202px;}
.wsd5{word-spacing:13.314824px;}
.wsd6{word-spacing:13.320824px;}
.ws134{word-spacing:14.226593px;}
.ws160{word-spacing:14.286368px;}
.ws12a{word-spacing:14.862824px;}
.ws158{word-spacing:15.667185px;}
.ws151{word-spacing:16.384492px;}
.wsec{word-spacing:16.504043px;}
.ws8d{word-spacing:16.524415px;}
.wsac{word-spacing:16.530415px;}
.ws85{word-spacing:16.557841px;}
.ws14b{word-spacing:16.617617px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.886097px;}
.ws15b{word-spacing:16.916495px;}
.ws14e{word-spacing:16.982248px;}
.ws141{word-spacing:17.215373px;}
.ws176{word-spacing:17.400677px;}
.wsd1{word-spacing:17.478824px;}
.wsd2{word-spacing:17.484824px;}
.ws148{word-spacing:17.819106px;}
.ws14c{word-spacing:18.058209px;}
.ws140{word-spacing:18.715740px;}
.ws47{word-spacing:19.462984px;}
.ws186{word-spacing:20.628560px;}
.ws12b{word-spacing:22.320824px;}
.ws16b{word-spacing:24.095544px;}
.ws1b{word-spacing:24.687323px;}
.ws3{word-spacing:25.034189px;}
.ws5{word-spacing:25.938369px;}
.wscd{word-spacing:26.312538px;}
.ws181{word-spacing:27.735878px;}
.ws14a{word-spacing:28.871615px;}
.ws17e{word-spacing:29.535124px;}
.ws1a{word-spacing:29.947576px;}
.ws149{word-spacing:31.328392px;}
.ws18a{word-spacing:32.165250px;}
.ws175{word-spacing:35.387155px;}
.ws145{word-spacing:37.425503px;}
.ws2{word-spacing:39.974159px;}
.ws178{word-spacing:40.879464px;}
.ws18c{word-spacing:47.544731px;}
.ws187{word-spacing:47.999807px;}
.wseb{word-spacing:76.221573px;}
.wsd9{word-spacing:79.496883px;}
.wsda{word-spacing:79.501813px;}
.ws1c{word-spacing:89.356741px;}
.ws174{word-spacing:93.644134px;}
.ws11d{word-spacing:94.238681px;}
.wsf2{word-spacing:132.266842px;}
.wsfe{word-spacing:139.354154px;}
.ws11c{word-spacing:155.942058px;}
.ws11b{word-spacing:160.182305px;}
.wsef{word-spacing:196.005548px;}
.ws11a{word-spacing:208.514515px;}
.wsce{word-spacing:310.576631px;}
._38{margin-left:-216.025125px;}
._22{margin-left:-197.184170px;}
._23{margin-left:-195.457009px;}
._21{margin-left:-193.729862px;}
._26{margin-left:-180.008530px;}
._24{margin-left:-98.324786px;}
._25{margin-left:-70.772462px;}
._4{margin-left:-12.808258px;}
._1a{margin-left:-7.833025px;}
._1f{margin-left:-6.742733px;}
._5{margin-left:-5.379840px;}
._0{margin-left:-4.256033px;}
._3{margin-left:-3.202064px;}
._1{margin-left:-1.386797px;}
._10{width:1.386797px;}
._6{width:2.496723px;}
._9{width:3.861490px;}
._29{width:5.756351px;}
._55{width:8.743150px;}
._f{width:15.639194px;}
._2a{width:17.527137px;}
._2b{width:19.250973px;}
._2d{width:21.828152px;}
._1d{width:23.790689px;}
._1b{width:25.045976px;}
._a{width:26.070301px;}
._7{width:27.827718px;}
._11{width:29.050942px;}
._13{width:30.366005px;}
._e{width:31.926460px;}
._28{width:33.653663px;}
._20{width:35.040460px;}
._2c{width:36.546809px;}
._b{width:38.716910px;}
._27{width:40.288754px;}
._2e{width:41.663593px;}
._14{width:42.918881px;}
._8{width:44.387453px;}
._d{width:46.256776px;}
._57{width:47.734389px;}
._17{width:48.748157px;}
._12{width:50.271280px;}
._1c{width:52.016731px;}
._c{width:53.413568px;}
._4d{width:54.419749px;}
._18{width:56.129288px;}
._58{width:57.528044px;}
._3a{width:58.711598px;}
._53{width:60.433540px;}
._36{width:63.915385px;}
._51{width:66.458557px;}
._4e{width:69.152878px;}
._16{width:71.312291px;}
._59{width:72.412205px;}
._32{width:74.077813px;}
._34{width:75.145813px;}
._50{width:79.142894px;}
._56{width:81.219967px;}
._4f{width:83.633837px;}
._54{width:94.625199px;}
._52{width:109.621704px;}
._1e{width:116.563200px;}
._19{width:136.690594px;}
._33{width:166.159813px;}
._35{width:169.763543px;}
._37{width:178.474687px;}
._30{width:188.395813px;}
._4a{width:203.364959px;}
._45{width:216.060959px;}
._40{width:228.762479px;}
._4c{width:236.063586px;}
._3b{width:241.464479px;}
._2f{width:291.442494px;}
._49{width:354.635250px;}
._31{width:357.933122px;}
._44{width:367.330771px;}
._2{width:369.653238px;}
._39{width:370.850563px;}
._48{width:377.684538px;}
._3f{width:380.032291px;}
._4b{width:382.399438px;}
._43{width:390.386538px;}
._46{width:395.100959px;}
._3e{width:403.082538px;}
._41{width:407.802959px;}
._3c{width:433.194479px;}
._47{width:442.838538px;}
._42{width:455.534058px;}
._3d{width:468.235579px;}
._15{width:1203.740143px;}
.fc5{color:rgb(254,192,0);}
.fc4{color:rgb(254,255,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.988343px;}
.fs12{font-size:26.542934px;}
.fsd{font-size:37.764448px;}
.fse{font-size:38.168485px;}
.fsb{font-size:38.273127px;}
.fs8{font-size:39.051318px;}
.fs7{font-size:41.122872px;}
.fs9{font-size:41.842800px;}
.fs5{font-size:42.412134px;}
.fs0{font-size:47.820600px;}
.fs10{font-size:49.303884px;}
.fs11{font-size:51.825321px;}
.fsc{font-size:54.050250px;}
.fsa{font-size:55.496632px;}
.fsf{font-size:59.165063px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y94{bottom:0.090728px;}
.y138{bottom:1.338823px;}
.yd6{bottom:1.452873px;}
.y162{bottom:2.059391px;}
.y1f6{bottom:2.615202px;}
.y96{bottom:2.660908px;}
.y191{bottom:2.796252px;}
.y193{bottom:3.132028px;}
.y9c{bottom:3.852919px;}
.y107{bottom:4.262007px;}
.yf8{bottom:5.684163px;}
.y181{bottom:5.713502px;}
.yed{bottom:6.197264px;}
.y137{bottom:10.755077px;}
.y161{bottom:13.509936px;}
.y61{bottom:14.371046px;}
.y98{bottom:18.081985px;}
.y190{bottom:18.343848px;}
.y192{bottom:18.679624px;}
.yd5{bottom:21.881211px;}
.y136{bottom:22.084412px;}
.yf1{bottom:23.422069px;}
.y1ea{bottom:24.764132px;}
.yf9{bottom:26.492238px;}
.y60{bottom:27.094687px;}
.y13a{bottom:29.024407px;}
.y9b{bottom:29.623491px;}
.y95{bottom:30.932883px;}
.y1e9{bottom:32.727012px;}
.y1f0{bottom:33.313436px;}
.y97{bottom:33.503062px;}
.yf0{bottom:34.904007px;}
.y1ef{bottom:40.348595px;}
.y139{bottom:40.353742px;}
.y1e8{bottom:40.689892px;}
.y9a{bottom:41.338886px;}
.yfa{bottom:43.151851px;}
.y17d{bottom:45.382069px;}
.yf5{bottom:47.577823px;}
.yf3{bottom:47.579641px;}
.y1ee{bottom:48.311475px;}
.y1e7{bottom:48.652772px;}
.y1ed{bottom:56.274355px;}
.y187{bottom:57.243153px;}
.y47{bottom:58.093500px;}
.y46{bottom:58.453500px;}
.yf4{bottom:59.059761px;}
.yf2{bottom:59.061579px;}
.yf7{bottom:60.304235px;}
.yd1{bottom:62.712453px;}
.yd4{bottom:62.758700px;}
.yd9{bottom:62.803790px;}
.y106{bottom:64.232070px;}
.yef{bottom:64.239863px;}
.yec{bottom:69.999326px;}
.y67{bottom:70.488704px;}
.y186{bottom:74.992672px;}
.yee{bottom:75.721801px;}
.y180{bottom:75.926960px;}
.yf6{bottom:76.401118px;}
.y17c{bottom:76.496417px;}
.y5d{bottom:77.782184px;}
.y1dd{bottom:82.762194px;}
.y66{bottom:83.212344px;}
.y1e0{bottom:83.349872px;}
.y5f{bottom:84.143949px;}
.y1e6{bottom:84.721036px;}
.y1de{bottom:84.881488px;}
.y1e1{bottom:85.469166px;}
.y1df{bottom:86.357945px;}
.y1e2{bottom:86.945624px;}
.y1f4{bottom:90.383008px;}
.y5a{bottom:90.505714px;}
.y5c{bottom:90.505824px;}
.y1dc{bottom:92.682247px;}
.y1e5{bottom:92.683916px;}
.y5e{bottom:96.867589px;}
.y65{bottom:97.793943px;}
.y1f3{bottom:98.345889px;}
.y1db{bottom:100.645127px;}
.y1e4{bottom:100.646796px;}
.y5b{bottom:103.229464px;}
.yd0{bottom:103.702085px;}
.yd3{bottom:103.747176px;}
.yd8{bottom:103.792267px;}
.yda{bottom:104.803877px;}
.y1ec{bottom:105.027649px;}
.y1f2{bottom:106.308769px;}
.y17f{bottom:107.372875px;}
.y17b{bottom:107.611999px;}
.y1e3{bottom:108.609677px;}
.y64{bottom:110.517584px;}
.y1eb{bottom:112.990529px;}
.y1f1{bottom:114.271649px;}
.y28{bottom:121.180500px;}
.y194{bottom:125.440500px;}
.y230{bottom:126.037500px;}
.y1f5{bottom:126.350361px;}
.y69{bottom:128.777608px;}
.yeb{bottom:130.875292px;}
.y160{bottom:134.945777px;}
.y17a{bottom:138.432991px;}
.y17e{bottom:138.727580px;}
.y27{bottom:139.113000px;}
.yab{bottom:139.114500px;}
.y182{bottom:139.162660px;}
.y22f{bottom:140.832000px;}
.y135{bottom:144.083220px;}
.y12f{bottom:144.270041px;}
.ycf{bottom:144.645472px;}
.yd2{bottom:144.691719px;}
.yd7{bottom:144.736810px;}
.y131{bottom:144.936998px;}
.y133{bottom:145.117730px;}
.y59{bottom:145.685977px;}
.y18d{bottom:150.322500px;}
.y9d{bottom:154.351980px;}
.y24c{bottom:154.531500px;}
.y134{bottom:155.412554px;}
.y12e{bottom:155.599375px;}
.y22e{bottom:155.626500px;}
.y130{bottom:156.266333px;}
.y132{bottom:156.447064px;}
.y45{bottom:157.045500px;}
.y26{bottom:157.047000px;}
.y58{bottom:158.409617px;}
.y15f{bottom:159.096342px;}
.y63{bottom:161.126223px;}
.y55{bottom:164.975031px;}
.y120{bottom:165.550500px;}
.y184{bottom:167.685970px;}
.yaa{bottom:168.655500px;}
.y22d{bottom:170.421000px;}
.y57{bottom:171.133257px;}
.y24b{bottom:172.464000px;}
.y62{bottom:173.849863px;}
.y2bc{bottom:174.978000px;}
.y25{bottom:174.979500px;}
.ye8{bottom:176.050902px;}
.y164{bottom:178.842577px;}
.yea{bottom:181.788858px;}
.ye5{bottom:181.788889px;}
.y15e{bottom:183.246906px;}
.y11f{bottom:183.483000px;}
.y56{bottom:183.856897px;}
.y185{bottom:184.912854px;}
.y22c{bottom:185.215500px;}
.y183{bottom:185.435489px;}
.y44{bottom:185.817000px;}
.y7f{bottom:186.054000px;}
.ya9{bottom:186.588000px;}
.ye7{bottom:187.532841px;}
.y18f{bottom:187.603492px;}
.y163{bottom:190.293122px;}
.y24{bottom:192.912000px;}
.ye9{bottom:193.270796px;}
.ye4{bottom:193.270827px;}
.ye6{bottom:199.014779px;}
.y22b{bottom:200.010000px;}
.y11e{bottom:201.415500px;}
.y18e{bottom:203.151088px;}
.y43{bottom:203.749500px;}
.y7e{bottom:203.988000px;}
.ya8{bottom:204.520500px;}
.y68{bottom:204.991132px;}
.y6a{bottom:205.561426px;}
.y15d{bottom:207.397471px;}
.y23{bottom:210.844500px;}
.y22a{bottom:214.804500px;}
.y2bb{bottom:216.285000px;}
.y24a{bottom:219.319500px;}
.y42{bottom:221.682000px;}
.ya7{bottom:222.453000px;}
.y177{bottom:227.224090px;}
.y22{bottom:228.777000px;}
.y229{bottom:229.599000px;}
.y15c{bottom:231.548718px;}
.y11d{bottom:232.978500px;}
.y7d{bottom:232.995000px;}
.y249{bottom:233.665500px;}
.y2ba{bottom:234.217500px;}
.y14e{bottom:238.224000px;}
.y178{bottom:244.310294px;}
.y228{bottom:244.393500px;}
.y292{bottom:244.404000px;}
.y170{bottom:246.709500px;}
.y1cc{bottom:246.711000px;}
.y248{bottom:248.460000px;}
.y117{bottom:250.609500px;}
.y7c{bottom:250.929000px;}
.ya6{bottom:251.994000px;}
.y2b9{bottom:252.150000px;}
.y172{bottom:254.792258px;}
.y11a{bottom:256.110000px;}
.y14d{bottom:256.156500px;}
.y41{bottom:257.841000px;}
.y227{bottom:259.188000px;}
.y291{bottom:262.336500px;}
.y247{bottom:262.657500px;}
.y16f{bottom:264.643500px;}
.y11c{bottom:264.807000px;}
.y119{bottom:265.077000px;}
.y7b{bottom:268.861500px;}
.y11b{bottom:269.290500px;}
.ya5{bottom:269.926500px;}
.y2b8{bottom:270.082500px;}
.y21{bottom:271.017000px;}
.y226{bottom:273.982500px;}
.y118{bottom:274.042500px;}
.y14c{bottom:274.090500px;}
.y176{bottom:274.200676px;}
.y179{bottom:274.392963px;}
.ycd{bottom:275.197500px;}
.y40{bottom:275.773500px;}
.y246{bottom:277.452000px;}
.yfb{bottom:279.640500px;}
.y290{bottom:280.269000px;}
.y1b0{bottom:282.576000px;}
.ycc{bottom:286.525500px;}
.y7a{bottom:286.794000px;}
.ya4{bottom:287.860500px;}
.y2b7{bottom:288.016500px;}
.y225{bottom:288.777000px;}
.y16e{bottom:291.079500px;}
.y245{bottom:291.648000px;}
.y3f{bottom:293.706000px;}
.y224{bottom:295.726500px;}
.y28f{bottom:298.201500px;}
.y1af{bottom:300.508500px;}
.ye3{bottom:304.522500px;}
.y79{bottom:304.726500px;}
.y2b6{bottom:305.949000px;}
.y244{bottom:306.442500px;}
.y14b{bottom:307.465500px;}
.y16d{bottom:309.012000px;}
.y15a{bottom:310.764456px;}
.y15b{bottom:310.880324px;}
.y116{bottom:311.538000px;}
.y3e{bottom:311.638500px;}
.y28e{bottom:316.135500px;}
.ya3{bottom:317.401500px;}
.y1ae{bottom:318.441000px;}
.y243{bottom:320.640000px;}
.y78{bottom:322.659000px;}
.y14a{bottom:325.398000px;}
.y16c{bottom:326.944500px;}
.y115{bottom:329.470500px;}
.y3d{bottom:329.571000px;}
.y223{bottom:332.712000px;}
.y2b5{bottom:333.574500px;}
.y20{bottom:333.970500px;}
.y28d{bottom:334.068000px;}
.ya2{bottom:335.334000px;}
.y242{bottom:335.584500px;}
.y1cb{bottom:336.373500px;}
.y149{bottom:343.330500px;}
.y16b{bottom:344.878500px;}
.y114{bottom:347.403000px;}
.y3c{bottom:347.505000px;}
.y241{bottom:349.780500px;}
.ycb{bottom:350.419500px;}
.y2b4{bottom:351.507000px;}
.y1f{bottom:351.903000px;}
.y28c{bottom:352.000500px;}
.y26f{bottom:354.306000px;}
.y77{bottom:359.292000px;}
.y148{bottom:361.264500px;}
.y16a{bottom:362.811000px;}
.ya1{bottom:364.875000px;}
.y113{bottom:365.337000px;}
.y3b{bottom:365.437500px;}
.yca{bottom:368.353500px;}
.y2b3{bottom:369.439500px;}
.y28b{bottom:369.933000px;}
.y26e{bottom:372.240000px;}
.y222{bottom:372.537000px;}
.y203{bottom:372.538500px;}
.y76{bottom:377.224500px;}
.y147{bottom:379.197000px;}
.y240{bottom:379.668000px;}
.y169{bottom:380.743500px;}
.ya0{bottom:382.807500px;}
.y112{bottom:383.269500px;}
.y3a{bottom:383.370000px;}
.yc9{bottom:386.286000px;}
.y2b2{bottom:387.372000px;}
.y26d{bottom:390.172500px;}
.y202{bottom:390.471000px;}
.y1ca{bottom:391.972500px;}
.y23f{bottom:393.865500px;}
.y1e{bottom:394.141500px;}
.y75{bottom:395.157000px;}
.y146{bottom:397.129500px;}
.y168{bottom:398.676000px;}
.y1c9{bottom:398.922000px;}
.y111{bottom:401.202000px;}
.y28a{bottom:403.492500px;}
.y2b1{bottom:405.304500px;}
.y26c{bottom:408.105000px;}
.y201{bottom:408.403500px;}
.y74{bottom:413.089500px;}
.y145{bottom:415.062000px;}
.y167{bottom:416.608500px;}
.y173{bottom:418.326548px;}
.y110{bottom:419.134500px;}
.y39{bottom:419.527500px;}
.y9f{bottom:420.505500px;}
.y1c8{bottom:420.964500px;}
.y289{bottom:421.425000px;}
.y2b0{bottom:423.238500px;}
.y23e{bottom:424.444500px;}
.y26b{bottom:426.037500px;}
.y200{bottom:426.336000px;}
.yc8{bottom:429.640500px;}
.y73{bottom:431.023500px;}
.y144{bottom:432.994500px;}
.y166{bottom:434.542500px;}
.y1c7{bottom:435.759000px;}
.y10f{bottom:437.067000px;}
.y38{bottom:437.461500px;}
.y288{bottom:439.357500px;}
.y2af{bottom:441.171000px;}
.y23d{bottom:442.377000px;}
.y1c6{bottom:442.707000px;}
.y26a{bottom:443.970000px;}
.y1ff{bottom:444.268500px;}
.yc5{bottom:447.091500px;}
.y175{bottom:448.707512px;}
.y72{bottom:448.956000px;}
.y143{bottom:450.927000px;}
.y1ad{bottom:453.540000px;}
.y10e{bottom:454.999500px;}
.y37{bottom:455.394000px;}
.y1d{bottom:457.095000px;}
.y287{bottom:457.290000px;}
.y23c{bottom:460.309500px;}
.yc7{bottom:461.289000px;}
.y269{bottom:461.902500px;}
.y1fe{bottom:462.201000px;}
.y1c5{bottom:464.749500px;}
.yc6{bottom:465.772500px;}
.y71{bottom:466.888500px;}
.y9e{bottom:468.787500px;}
.y2ae{bottom:468.796500px;}
.y142{bottom:468.861000px;}
.y174{bottom:469.671454px;}
.y1c4{bottom:471.699000px;}
.y10d{bottom:472.933500px;}
.y1c{bottom:475.029000px;}
.y286{bottom:475.224000px;}
.y23b{bottom:478.243500px;}
.y268{bottom:479.836500px;}
.y1fd{bottom:480.135000px;}
.y221{bottom:481.554000px;}
.y36{bottom:484.164000px;}
.y165{bottom:484.687500px;}
.y70{bottom:484.821000px;}
.y2ad{bottom:486.729000px;}
.y141{bottom:486.793500px;}
.y10c{bottom:490.866000px;}
.y1b{bottom:492.961500px;}
.y285{bottom:493.156500px;}
.y99{bottom:493.669500px;}
.y1c3{bottom:493.740000px;}
.y23a{bottom:496.176000px;}
.y267{bottom:497.769000px;}
.y1fc{bottom:498.067500px;}
.y220{bottom:499.486500px;}
.y1c2{bottom:500.689500px;}
.yc4{bottom:500.722500px;}
.y35{bottom:502.098000px;}
.y6f{bottom:502.753500px;}
.y2ac{bottom:504.661500px;}
.y140{bottom:504.726000px;}
.y1ac{bottom:508.101000px;}
.y10b{bottom:508.798500px;}
.y159{bottom:509.569500px;}
.y1a{bottom:510.894000px;}
.y284{bottom:511.089000px;}
.y239{bottom:514.108500px;}
.y1fb{bottom:516.000000px;}
.y21f{bottom:517.419000px;}
.y18c{bottom:518.583000px;}
.yc3{bottom:518.655000px;}
.y34{bottom:520.030500px;}
.y6e{bottom:520.686000px;}
.y2ab{bottom:522.594000px;}
.y13f{bottom:522.658500px;}
.y1c1{bottom:522.732000px;}
.y1ab{bottom:526.033500px;}
.y10a{bottom:526.731000px;}
.y19{bottom:528.826500px;}
.y1c0{bottom:529.681500px;}
.y238{bottom:532.041000px;}
.y1fa{bottom:533.932500px;}
.y21e{bottom:535.351500px;}
.y18b{bottom:536.515500px;}
.yc2{bottom:536.587500px;}
.y6d{bottom:538.620000px;}
.y266{bottom:539.605500px;}
.y2aa{bottom:540.526500px;}
.y13e{bottom:540.591000px;}
.y1aa{bottom:543.966000px;}
.y283{bottom:544.648500px;}
.y18{bottom:546.759000px;}
.y237{bottom:549.973500px;}
.y1bf{bottom:551.722500px;}
.y1f9{bottom:551.865000px;}
.y21d{bottom:553.284000px;}
.y18a{bottom:554.448000px;}
.yc1{bottom:554.520000px;}
.y33{bottom:556.188000px;}
.y6c{bottom:556.552500px;}
.y13d{bottom:558.523500px;}
.y1a9{bottom:561.898500px;}
.y109{bottom:562.146000px;}
.y282{bottom:562.581000px;}
.y17{bottom:564.691500px;}
.y1be{bottom:566.517000px;}
.y2a9{bottom:568.152000px;}
.y1f8{bottom:569.799000px;}
.y189{bottom:572.380500px;}
.yc0{bottom:572.454000px;}
.y93{bottom:573.318641px;}
.y32{bottom:574.120500px;}
.ye2{bottom:574.501500px;}
.y108{bottom:576.342000px;}
.y13c{bottom:576.457500px;}
.y1a8{bottom:579.832500px;}
.y281{bottom:580.513500px;}
.y21c{bottom:582.619500px;}
.y16{bottom:582.625500px;}
.y236{bottom:586.059000px;}
.y2a8{bottom:586.086000px;}
.y31{bottom:592.053000px;}
.ye1{bottom:592.434000px;}
.y1bd{bottom:596.256000px;}
.y1a7{bottom:597.765000px;}
.y280{bottom:598.446000px;}
.ybf{bottom:598.890000px;}
.y265{bottom:600.550500px;}
.y21b{bottom:600.552000px;}
.y15{bottom:600.558000px;}
.y105{bottom:601.224000px;}
.y2a7{bottom:604.018500px;}
.y6b{bottom:604.300500px;}
.y30{bottom:609.987000px;}
.ye0{bottom:610.366500px;}
.y1a6{bottom:615.697500px;}
.y27f{bottom:616.378500px;}
.ybe{bottom:616.822500px;}
.y264{bottom:618.483000px;}
.y14{bottom:618.490500px;}
.y2a6{bottom:621.951000px;}
.y13b{bottom:622.576500px;}
.y2f{bottom:627.919500px;}
.ydf{bottom:628.299000px;}
.y54{bottom:629.182500px;}
.y21a{bottom:629.886000px;}
.y27e{bottom:634.312500px;}
.ybd{bottom:634.755000px;}
.y1bc{bottom:635.728500px;}
.y263{bottom:636.417000px;}
.y13{bottom:636.423000px;}
.y1f7{bottom:636.520500px;}
.y2a5{bottom:639.883500px;}
.y188{bottom:641.745000px;}
.y2e{bottom:645.852000px;}
.yde{bottom:646.233000px;}
.y12d{bottom:647.458500px;}
.y219{bottom:647.818500px;}
.y235{bottom:652.072500px;}
.y27d{bottom:652.245000px;}
.ybc{bottom:652.689000px;}
.y1bb{bottom:653.661000px;}
.y262{bottom:654.349500px;}
.y12{bottom:654.355500px;}
.y1a5{bottom:657.775500px;}
.y2a4{bottom:657.816000px;}
.y1da{bottom:661.402500px;}
.y2d{bottom:663.784500px;}
.ydd{bottom:664.165500px;}
.y218{bottom:665.752500px;}
.y234{bottom:666.270000px;}
.y171{bottom:666.627000px;}
.ybb{bottom:670.621500px;}
.y1ba{bottom:671.593500px;}
.y261{bottom:672.282000px;}
.y11{bottom:672.289500px;}
.y2a3{bottom:675.748500px;}
.y92{bottom:678.798000px;}
.y2c{bottom:681.717000px;}
.ydc{bottom:682.098000px;}
.y217{bottom:683.685000px;}
.y27c{bottom:685.804500px;}
.yba{bottom:688.554000px;}
.y1b9{bottom:689.526000px;}
.y260{bottom:690.214500px;}
.y10{bottom:690.222000px;}
.y2a2{bottom:693.682500px;}
.y2ce{bottom:695.341500px;}
.y2e2{bottom:695.473500px;}
.y91{bottom:696.730500px;}
.y2b{bottom:699.649500px;}
.y27b{bottom:703.737000px;}
.yb9{bottom:706.486500px;}
.y1b8{bottom:707.458500px;}
.y25f{bottom:708.147000px;}
.yf{bottom:708.154500px;}
.y216{bottom:713.019000px;}
.y2cd{bottom:713.275500px;}
.y2e1{bottom:713.406000px;}
.y90{bottom:714.663000px;}
.y2a{bottom:717.583500px;}
.y1a4{bottom:719.920500px;}
.y2a1{bottom:721.308000px;}
.y27a{bottom:721.669500px;}
.yb8{bottom:724.419000px;}
.y1b7{bottom:725.392500px;}
.ye{bottom:726.087000px;}
.y215{bottom:730.951500px;}
.y2cc{bottom:731.208000px;}
.y2e0{bottom:731.338500px;}
.y8f{bottom:732.595500px;}
.y25e{bottom:734.584500px;}
.y1a3{bottom:737.854500px;}
.y2a0{bottom:739.240500px;}
.y279{bottom:739.602000px;}
.y1b6{bottom:743.325000px;}
.yd{bottom:744.019500px;}
.y2cb{bottom:749.140500px;}
.y2df{bottom:749.271000px;}
.y8e{bottom:750.528000px;}
.yb7{bottom:750.856500px;}
.y25d{bottom:752.517000px;}
.y1a2{bottom:755.787000px;}
.y29f{bottom:757.173000px;}
.y278{bottom:757.534500px;}
.y214{bottom:760.285500px;}
.y1b5{bottom:761.257500px;}
.yc{bottom:761.952000px;}
.ydb{bottom:763.132500px;}
.y2ca{bottom:767.073000px;}
.y2de{bottom:767.203500px;}
.y8d{bottom:768.462000px;}
.yb6{bottom:768.789000px;}
.y25c{bottom:770.449500px;}
.y1a1{bottom:773.719500px;}
.y29e{bottom:775.105500px;}
.y277{bottom:775.467000px;}
.y213{bottom:778.219500px;}
.y1b4{bottom:779.190000px;}
.y29{bottom:779.884500px;}
.yb{bottom:779.886000px;}
.y2c9{bottom:785.005500px;}
.y2dd{bottom:785.136000px;}
.y8c{bottom:786.394500px;}
.yb5{bottom:786.721500px;}
.yce{bottom:788.013691px;}
.y25b{bottom:788.382000px;}
.y1a0{bottom:791.652000px;}
.y29d{bottom:793.038000px;}
.y212{bottom:796.152000px;}
.y1b3{bottom:797.122500px;}
.y2dc{bottom:803.070000px;}
.y8b{bottom:804.327000px;}
.yb4{bottom:804.654000px;}
.y25a{bottom:806.314500px;}
.y19f{bottom:809.584500px;}
.y29c{bottom:810.970500px;}
.y276{bottom:817.489500px;}
.y2c8{bottom:820.872000px;}
.y2db{bottom:821.002500px;}
.y8a{bottom:822.259500px;}
.yb3{bottom:822.586500px;}
.y211{bottom:825.486000px;}
.y29b{bottom:828.904500px;}
.y259{bottom:832.752000px;}
.y12c{bottom:834.682500px;}
.ya{bottom:835.918500px;}
.y1b2{bottom:835.951500px;}
.y2c7{bottom:838.804500px;}
.y2da{bottom:838.935000px;}
.y1d9{bottom:839.785500px;}
.y89{bottom:840.192000px;}
.yb2{bottom:840.520500px;}
.y210{bottom:843.418500px;}
.y29a{bottom:846.837000px;}
.y19e{bottom:849.942000px;}
.y258{bottom:850.684500px;}
.y12b{bottom:852.615000px;}
.y2c6{bottom:856.737000px;}
.y2d9{bottom:856.867500px;}
.y1d8{bottom:857.718000px;}
.y88{bottom:858.126000px;}
.yb1{bottom:858.453000px;}
.y20f{bottom:861.351000px;}
.y53{bottom:866.082000px;}
.y19d{bottom:867.874500px;}
.y257{bottom:868.617000px;}
.y12a{bottom:870.549000px;}
.y9{bottom:871.785000px;}
.y158{bottom:872.106000px;}
.y299{bottom:874.462500px;}
.y2c5{bottom:874.669500px;}
.y2d8{bottom:874.800000px;}
.y1d7{bottom:875.650500px;}
.y87{bottom:876.058500px;}
.y20e{bottom:879.285000px;}
.y275{bottom:879.357000px;}
.y52{bottom:884.014500px;}
.y256{bottom:886.549500px;}
.y129{bottom:888.481500px;}
.y8{bottom:889.717500px;}
.y157{bottom:890.038500px;}
.y1b1{bottom:891.414000px;}
.y298{bottom:892.395000px;}
.y2c4{bottom:892.602000px;}
.y2d7{bottom:892.732500px;}
.y1d6{bottom:893.583000px;}
.y86{bottom:893.991000px;}
.y20d{bottom:897.217500px;}
.y274{bottom:897.291000px;}
.yb0{bottom:897.354000px;}
.y19c{bottom:901.692000px;}
.y51{bottom:901.947000px;}
.y255{bottom:904.483500px;}
.y128{bottom:906.414000px;}
.y156{bottom:907.971000px;}
.y297{bottom:910.327500px;}
.y2c3{bottom:910.534500px;}
.y1d5{bottom:911.517000px;}
.y20c{bottom:915.150000px;}
.y273{bottom:915.223500px;}
.yaf{bottom:918.274500px;}
.y19b{bottom:919.624500px;}
.y50{bottom:919.881000px;}
.y254{bottom:922.416000px;}
.y127{bottom:924.346500px;}
.y7{bottom:925.582500px;}
.y155{bottom:925.903500px;}
.y296{bottom:928.260000px;}
.y2c2{bottom:928.468500px;}
.y1d4{bottom:929.449500px;}
.y85{bottom:930.076500px;}
.y20b{bottom:933.082500px;}
.y272{bottom:933.156000px;}
.y2d6{bottom:933.276000px;}
.y4f{bottom:937.813500px;}
.y253{bottom:940.348500px;}
.y126{bottom:942.279000px;}
.y6{bottom:943.515000px;}
.y154{bottom:943.836000px;}
.y295{bottom:946.192500px;}
.y2c1{bottom:946.401000px;}
.y1d3{bottom:947.382000px;}
.y84{bottom:950.998500px;}
.y271{bottom:951.088500px;}
.y2d5{bottom:951.208500px;}
.y104{bottom:952.677000px;}
.y19a{bottom:953.442000px;}
.y252{bottom:958.281000px;}
.y125{bottom:960.211500px;}
.y153{bottom:961.770000px;}
.y20a{bottom:962.416500px;}
.y294{bottom:964.126500px;}
.y2c0{bottom:964.333500px;}
.y1d2{bottom:965.314500px;}
.y2d4{bottom:969.141000px;}
.y103{bottom:970.609500px;}
.y199{bottom:971.376000px;}
.y251{bottom:976.213500px;}
.y124{bottom:978.145500px;}
.y4e{bottom:979.045500px;}
.y152{bottom:979.702500px;}
.y209{bottom:980.349000px;}
.y293{bottom:982.059000px;}
.y2bf{bottom:982.266000px;}
.yae{bottom:982.684500px;}
.y1d1{bottom:983.247000px;}
.y2d3{bottom:987.073500px;}
.y102{bottom:988.542000px;}
.y198{bottom:989.308500px;}
.y5{bottom:991.212000px;}
.y233{bottom:991.752000px;}
.y270{bottom:993.111000px;}
.y123{bottom:996.078000px;}
.y208{bottom:998.283000px;}
.y2be{bottom:1000.198500px;}
.yad{bottom:1000.617000px;}
.y83{bottom:1001.179500px;}
.y1d0{bottom:1001.181000px;}
.y2d2{bottom:1005.007500px;}
.y4d{bottom:1005.943500px;}
.y101{bottom:1006.476000px;}
.y232{bottom:1009.684500px;}
.y4{bottom:1012.134000px;}
.y151{bottom:1012.626000px;}
.y122{bottom:1014.010500px;}
.y250{bottom:1016.013000px;}
.y207{bottom:1016.215500px;}
.y82{bottom:1019.113500px;}
.y2d1{bottom:1022.940000px;}
.y197{bottom:1023.126000px;}
.y100{bottom:1024.408500px;}
.y231{bottom:1027.617000px;}
.y150{bottom:1030.558500px;}
.y24f{bottom:1033.945500px;}
.y206{bottom:1034.148000px;}
.y81{bottom:1037.046000px;}
.y2d0{bottom:1040.872500px;}
.y196{bottom:1041.058500px;}
.y2bd{bottom:1041.430500px;}
.yff{bottom:1042.341000px;}
.yac{bottom:1045.549500px;}
.y14f{bottom:1048.491000px;}
.y121{bottom:1050.096000px;}
.y205{bottom:1052.080500px;}
.y1cf{bottom:1054.978500px;}
.y2cf{bottom:1058.805000px;}
.y195{bottom:1058.991000px;}
.yfe{bottom:1060.273500px;}
.y4c{bottom:1063.482000px;}
.y24e{bottom:1066.647000px;}
.y204{bottom:1070.013000px;}
.y1ce{bottom:1072.911000px;}
.y3{bottom:1078.083000px;}
.yfd{bottom:1078.206000px;}
.y80{bottom:1081.414500px;}
.y4b{bottom:1081.416000px;}
.y24d{bottom:1084.579500px;}
.y1cd{bottom:1090.843500px;}
.y4a{bottom:1099.348500px;}
.y2{bottom:1110.960000px;}
.yfc{bottom:1114.291500px;}
.y49{bottom:1117.281000px;}
.y48{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.h16{height:2.391024px;}
.he{height:16.246012px;}
.h11{height:16.655969px;}
.h33{height:17.989059px;}
.h35{height:18.429713px;}
.h34{height:21.699944px;}
.h26{height:25.594264px;}
.h25{height:26.221213px;}
.h29{height:26.520388px;}
.h1f{height:26.574407px;}
.h13{height:27.114734px;}
.hf{height:27.850304px;}
.h15{height:28.285733px;}
.h17{height:28.578632px;}
.h28{height:28.685096px;}
.ha{height:29.468978px;}
.h2c{height:34.233458px;}
.h8{height:34.287370px;}
.h2{height:35.865450px;}
.hb{height:35.913271px;}
.h2e{height:36.009488px;}
.h10{height:36.188127px;}
.h21{height:36.605321px;}
.h1d{height:37.503583px;}
.h1c{height:38.533306px;}
.h38{height:39.930101px;}
.h2b{height:41.080429px;}
.hd{height:41.143650px;}
.h7{height:42.380900px;}
.h14{height:44.831700px;}
.h5{height:44.891476px;}
.h23{height:45.553733px;}
.hc{height:50.283571px;}
.h4{height:51.287808px;}
.h18{height:53.262632px;}
.h6{height:60.426194px;}
.h31{height:63.711271px;}
.h37{height:64.305271px;}
.h36{height:64.311271px;}
.h2f{height:64.899271px;}
.h30{height:64.905271px;}
.h3{height:72.511265px;}
.h1a{height:90.203476px;}
.h19{height:104.607024px;}
.h22{height:129.597024px;}
.h32{height:137.957533px;}
.h12{height:163.142243px;}
.h24{height:166.568660px;}
.h9{height:214.616035px;}
.h1e{height:215.905204px;}
.h2d{height:324.364946px;}
.h27{height:328.117594px;}
.h20{height:330.759255px;}
.h1b{height:362.143314px;}
.h2a{height:483.530753px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:55.090650px;}
.w9{width:340.147399px;}
.wc{width:340.159071px;}
.wb{width:340.160743px;}
.wa{width:340.163946px;}
.w5{width:340.167237px;}
.w6{width:353.939984px;}
.w2{width:353.945217px;}
.w8{width:353.946824px;}
.w4{width:353.947433px;}
.w7{width:353.949882px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:2.742180px;}
.x5f{left:4.443926px;}
.x1d{left:6.130623px;}
.x37{left:8.036969px;}
.x2a{left:10.188618px;}
.x1b{left:12.754529px;}
.x7c{left:16.135821px;}
.x4c{left:18.415998px;}
.x34{left:20.296977px;}
.x28{left:22.994631px;}
.x67{left:25.455663px;}
.x61{left:35.221512px;}
.x62{left:38.204378px;}
.x27{left:42.083345px;}
.x45{left:43.718788px;}
.x29{left:47.537263px;}
.x25{left:49.141356px;}
.x26{left:52.296075px;}
.x56{left:53.399436px;}
.x6a{left:58.245686px;}
.x35{left:61.263486px;}
.x11{left:65.788178px;}
.x57{left:68.525532px;}
.x72{left:77.142317px;}
.x68{left:78.337607px;}
.x20{left:81.113431px;}
.x1{left:85.039500px;}
.x50{left:86.232560px;}
.xf{left:88.569000px;}
.x6{left:91.500000px;}
.xb{left:92.928000px;}
.x4b{left:96.066387px;}
.x65{left:97.499501px;}
.x10{left:99.984000px;}
.x36{left:102.229997px;}
.x82{left:106.537500px;}
.x2b{left:107.676530px;}
.x7d{left:109.567500px;}
.x74{left:113.869968px;}
.x21{left:114.927000px;}
.x2c{left:117.160474px;}
.x75{left:121.608912px;}
.x59{left:123.589788px;}
.x2f{left:125.287500px;}
.x7f{left:126.441000px;}
.x58{left:129.362386px;}
.x40{left:131.748990px;}
.x81{left:136.098000px;}
.x4e{left:137.686716px;}
.x80{left:139.779000px;}
.x3e{left:141.605619px;}
.x5c{left:143.151201px;}
.x2{left:145.911000px;}
.x3f{left:147.022398px;}
.x2e{left:152.271000px;}
.x66{left:159.436073px;}
.x52{left:160.859078px;}
.x8{left:163.338000px;}
.x60{left:166.100710px;}
.x48{left:167.114643px;}
.x5a{left:168.206035px;}
.x15{left:169.409944px;}
.x76{left:171.475743px;}
.x16{left:176.339822px;}
.x73{left:178.512543px;}
.x53{left:180.543000px;}
.x49{left:183.596047px;}
.x4a{left:184.648564px;}
.x17{left:186.647540px;}
.x13{left:188.404628px;}
.x14{left:190.464659px;}
.x12{left:191.638574px;}
.x32{left:193.741500px;}
.x42{left:209.428082px;}
.x1e{left:212.245684px;}
.x30{left:214.273500px;}
.x69{left:215.835838px;}
.x41{left:220.449575px;}
.x3{left:222.765000px;}
.x6c{left:224.200585px;}
.x38{left:227.204848px;}
.x39{left:230.673354px;}
.x77{left:233.325910px;}
.x7{left:237.624000px;}
.x31{left:238.815000px;}
.x54{left:241.237500px;}
.x5b{left:243.680739px;}
.x6b{left:244.714562px;}
.x63{left:250.839029px;}
.x33{left:252.583500px;}
.x4f{left:254.076787px;}
.x5d{left:256.850150px;}
.x2d{left:257.989399px;}
.x47{left:262.075291px;}
.x3a{left:268.171358px;}
.x3b{left:271.639864px;}
.x5e{left:272.817620px;}
.x78{left:273.994760px;}
.x51{left:275.188061px;}
.x55{left:278.598000px;}
.x19{left:280.113064px;}
.x18{left:288.065382px;}
.x64{left:289.272520px;}
.x4{left:291.435000px;}
.x1a{left:292.768612px;}
.x43{left:301.046403px;}
.x46{left:303.163390px;}
.x4d{left:306.099067px;}
.x44{left:307.690398px;}
.x3c{left:309.137869px;}
.x3d{left:312.606373px;}
.x7a{left:314.551632px;}
.x79{left:316.019795px;}
.x5{left:318.721500px;}
.x1f{left:322.475446px;}
.x7b{left:326.200282px;}
.xa{left:345.714000px;}
.x9{left:366.691500px;}
.xc{left:453.928500px;}
.x22{left:460.651500px;}
.x83{left:461.817000px;}
.xd{left:468.873000px;}
.xe{left:483.816000px;}
.x6e{left:485.599500px;}
.x6d{left:488.541000px;}
.x23{left:521.160000px;}
.x24{left:555.337137px;}
.x71{left:561.633000px;}
.x6f{left:651.949500px;}
.x70{left:668.212500px;}
.x7e{left:718.293000px;}
@media print{
.vc{vertical-align:-25.237333pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.924185pt;}
.vb{vertical-align:3.298565pt;}
.v7{vertical-align:15.349333pt;}
.v1{vertical-align:21.941333pt;}
.va{vertical-align:24.709333pt;}
.v9{vertical-align:25.765333pt;}
.v4{vertical-align:36.240000pt;}
.v5{vertical-align:40.277333pt;}
.v3{vertical-align:90.858667pt;}
.v6{vertical-align:113.072000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000426pt;}
.ls40{letter-spacing:0.000439pt;}
.ls5{letter-spacing:0.000479pt;}
.ls6{letter-spacing:0.000546pt;}
.ls15{letter-spacing:0.000690pt;}
.lsa{letter-spacing:0.000854pt;}
.ls1d{letter-spacing:0.001014pt;}
.ls2e{letter-spacing:0.002059pt;}
.ls1c{letter-spacing:0.002489pt;}
.ls3a{letter-spacing:0.002717pt;}
.ls29{letter-spacing:0.002886pt;}
.ls23{letter-spacing:0.003709pt;}
.ls7{letter-spacing:0.003733pt;}
.ls14{letter-spacing:1.677176pt;}
.lsb{letter-spacing:2.656546pt;}
.ls1f{letter-spacing:2.657014pt;}
.ls20{letter-spacing:2.658245pt;}
.lse{letter-spacing:2.660667pt;}
.ls12{letter-spacing:4.358875pt;}
.ls26{letter-spacing:5.410490pt;}
.ls13{letter-spacing:5.718401pt;}
.ls3{letter-spacing:7.529433pt;}
.ls2d{letter-spacing:10.037812pt;}
.ls2a{letter-spacing:10.080479pt;}
.ls2f{letter-spacing:11.803145pt;}
.ls9{letter-spacing:11.804745pt;}
.lsc{letter-spacing:11.805573pt;}
.ls37{letter-spacing:11.806400pt;}
.lsd{letter-spacing:11.808479pt;}
.ls3e{letter-spacing:11.840479pt;}
.ls36{letter-spacing:11.888479pt;}
.ls3d{letter-spacing:13.264479pt;}
.ls2b{letter-spacing:14.147733pt;}
.ls2c{letter-spacing:14.149812pt;}
.ls8{letter-spacing:14.464546pt;}
.ls1e{letter-spacing:14.465014pt;}
.ls18{letter-spacing:14.757812pt;}
.ls1{letter-spacing:15.050792pt;}
.ls0{letter-spacing:15.056125pt;}
.ls3f{letter-spacing:15.269772pt;}
.ls35{letter-spacing:15.589812pt;}
.ls34{letter-spacing:15.595145pt;}
.ls17{letter-spacing:16.429176pt;}
.ls31{letter-spacing:17.630400pt;}
.ls33{letter-spacing:17.632479pt;}
.ls32{letter-spacing:17.637812pt;}
.ls38{letter-spacing:17.705067pt;}
.ls27{letter-spacing:19.579261pt;}
.ls11{letter-spacing:20.155213pt;}
.ls1b{letter-spacing:20.379735pt;}
.ls24{letter-spacing:20.918347pt;}
.ls25{letter-spacing:20.923680pt;}
.ls28{letter-spacing:20.923735pt;}
.ls10{letter-spacing:26.522001pt;}
.ls2{letter-spacing:26.563733pt;}
.ls22{letter-spacing:26.964244pt;}
.ls30{letter-spacing:27.752239pt;}
.ls1a{letter-spacing:29.643735pt;}
.ls16{letter-spacing:53.118400pt;}
.lsf{letter-spacing:75.228745pt;}
.ls39{letter-spacing:83.811687pt;}
.ls3c{letter-spacing:116.744975pt;}
.ls21{letter-spacing:271.692745pt;}
.ls19{letter-spacing:368.812745pt;}
.wsf0{word-spacing:-45.163900pt;}
.ws19{word-spacing:-42.074535pt;}
.ws150{word-spacing:-27.151406pt;}
.ws8c{word-spacing:-26.561620pt;}
.wsf1{word-spacing:-22.575574pt;}
.ws131{word-spacing:-14.765902pt;}
.ws11f{word-spacing:-14.712768pt;}
.wsd7{word-spacing:-14.606500pt;}
.ws2e{word-spacing:-14.553366pt;}
.wsbd{word-spacing:-14.500232pt;}
.ws185{word-spacing:-14.340831pt;}
.wsfa{word-spacing:-14.287697pt;}
.ws10b{word-spacing:-14.181429pt;}
.ws5d{word-spacing:-14.128295pt;}
.ws41{word-spacing:-14.070753pt;}
.ws42{word-spacing:-13.994240pt;}
.ws6c{word-spacing:-13.968894pt;}
.wscb{word-spacing:-13.915760pt;}
.ws7b{word-spacing:-13.809492pt;}
.ws78{word-spacing:-13.703224pt;}
.ws52{word-spacing:-13.650090pt;}
.ws68{word-spacing:-13.543823pt;}
.ws25{word-spacing:-13.437555pt;}
.ws49{word-spacing:-13.331287pt;}
.wsb7{word-spacing:-13.171886pt;}
.wsd8{word-spacing:-13.147792pt;}
.ws37{word-spacing:-13.118752pt;}
.ws4c{word-spacing:-13.065618pt;}
.ws129{word-spacing:-13.012484pt;}
.ws4f{word-spacing:-12.959350pt;}
.ws4a{word-spacing:-12.906216pt;}
.ws7a{word-spacing:-12.853082pt;}
.ws79{word-spacing:-12.799948pt;}
.ws73{word-spacing:-12.746815pt;}
.ws29{word-spacing:-12.693681pt;}
.wsd{word-spacing:-12.645860pt;}
.wsc6{word-spacing:-12.640547pt;}
.ws26{word-spacing:-12.534279pt;}
.ws6b{word-spacing:-12.481145pt;}
.ws155{word-spacing:-12.433325pt;}
.ws4b{word-spacing:-12.428011pt;}
.wsf3{word-spacing:-12.374878pt;}
.ws94{word-spacing:-12.332585pt;}
.wsf8{word-spacing:-12.268610pt;}
.ws97{word-spacing:-12.162342pt;}
.ws9{word-spacing:-12.061388pt;}
.ws12d{word-spacing:-12.056074pt;}
.wse6{word-spacing:-12.002940pt;}
.ws90{word-spacing:-11.949807pt;}
.ws5c{word-spacing:-11.948824pt;}
.wsa8{word-spacing:-11.896673pt;}
.ws14d{word-spacing:-11.843539pt;}
.ws172{word-spacing:-11.795718pt;}
.ws55{word-spacing:-11.790405pt;}
.ws20{word-spacing:-11.737271pt;}
.ws105{word-spacing:-11.631003pt;}
.ws44{word-spacing:-11.577870pt;}
.ws3f{word-spacing:-11.524736pt;}
.ws9e{word-spacing:-11.418468pt;}
.ws8f{word-spacing:-11.365334pt;}
.ws13d{word-spacing:-11.312200pt;}
.wse3{word-spacing:-11.259066pt;}
.wsea{word-spacing:-11.099665pt;}
.wsff{word-spacing:-11.046531pt;}
.ws110{word-spacing:-10.993397pt;}
.ws13{word-spacing:-10.945577pt;}
.ws99{word-spacing:-10.940263pt;}
.ws5a{word-spacing:-10.887129pt;}
.ws100{word-spacing:-10.833995pt;}
.ws12e{word-spacing:-10.780862pt;}
.ws43{word-spacing:-10.674594pt;}
.ws24{word-spacing:-10.621460pt;}
.ws72{word-spacing:-10.568326pt;}
.ws39{word-spacing:-10.515192pt;}
.wse5{word-spacing:-10.462058pt;}
.ws13c{word-spacing:-10.414238pt;}
.ws1f{word-spacing:-10.408924pt;}
.ws13b{word-spacing:-10.361104pt;}
.ws35{word-spacing:-10.355791pt;}
.wsb0{word-spacing:-10.341672pt;}
.wsa6{word-spacing:-10.196389pt;}
.ws56{word-spacing:-10.143255pt;}
.ws107{word-spacing:-10.090121pt;}
.wsde{word-spacing:-10.036987pt;}
.wsc{word-spacing:-9.989167pt;}
.ws112{word-spacing:-9.983854pt;}
.ws92{word-spacing:-9.930720pt;}
.wsa0{word-spacing:-9.877586pt;}
.wsa7{word-spacing:-9.824452pt;}
.ws34{word-spacing:-9.771318pt;}
.ws7{word-spacing:-9.723498pt;}
.ws2d{word-spacing:-9.718184pt;}
.ws2a{word-spacing:-9.665050pt;}
.ws23{word-spacing:-9.611916pt;}
.wsb3{word-spacing:-9.558783pt;}
.ws4d{word-spacing:-9.505649pt;}
.wse2{word-spacing:-9.452515pt;}
.ws46{word-spacing:-9.424919pt;}
.ws113{word-spacing:-9.293113pt;}
.wsf9{word-spacing:-9.239979pt;}
.ws93{word-spacing:-9.186846pt;}
.ws121{word-spacing:-9.133712pt;}
.ws88{word-spacing:-9.080578pt;}
.ws5e{word-spacing:-9.027444pt;}
.ws8a{word-spacing:-9.020675pt;}
.wsa9{word-spacing:-8.974310pt;}
.ws104{word-spacing:-8.921176pt;}
.ws8b{word-spacing:-8.869901pt;}
.ws4{word-spacing:-8.868042pt;}
.ws8e{word-spacing:-8.850624pt;}
.wsdf{word-spacing:-8.814908pt;}
.ws38{word-spacing:-8.761775pt;}
.wsd4{word-spacing:-8.708641pt;}
.ws6a{word-spacing:-8.655507pt;}
.ws9a{word-spacing:-8.505139pt;}
.ws28{word-spacing:-8.496105pt;}
.ws16f{word-spacing:-8.448285pt;}
.ws102{word-spacing:-8.442971pt;}
.ws16{word-spacing:-8.395151pt;}
.ws40{word-spacing:-8.389838pt;}
.wsa{word-spacing:-8.342017pt;}
.wsaf{word-spacing:-8.299006pt;}
.wsad{word-spacing:-8.291464pt;}
.ws89{word-spacing:-8.288883pt;}
.wsae{word-spacing:-8.283570pt;}
.wsc8{word-spacing:-8.230436pt;}
.ws18{word-spacing:-8.182615pt;}
.wsbe{word-spacing:-8.177302pt;}
.ws21{word-spacing:-8.124168pt;}
.ws17c{word-spacing:-8.071034pt;}
.ws103{word-spacing:-8.017900pt;}
.ws4e{word-spacing:-7.964767pt;}
.ws6e{word-spacing:-7.911633pt;}
.ws36{word-spacing:-7.858499pt;}
.wsc2{word-spacing:-7.805365pt;}
.wsb6{word-spacing:-7.699097pt;}
.ws33{word-spacing:-7.645963pt;}
.ws8{word-spacing:-7.598143pt;}
.ws58{word-spacing:-7.539696pt;}
.ws48{word-spacing:-7.528025pt;}
.wsf5{word-spacing:-7.486562pt;}
.ws62{word-spacing:-7.433428pt;}
.ws2f{word-spacing:-7.380294pt;}
.ws127{word-spacing:-7.327160pt;}
.wsdb{word-spacing:-7.274026pt;}
.ws16e{word-spacing:-7.226206pt;}
.ws114{word-spacing:-7.220892pt;}
.ws10f{word-spacing:-7.167759pt;}
.ws122{word-spacing:-7.114625pt;}
.ws5b{word-spacing:-7.008357pt;}
.wsbb{word-spacing:-6.955223pt;}
.wsab{word-spacing:-6.902089pt;}
.wsaa{word-spacing:-6.892660pt;}
.ws123{word-spacing:-6.848955pt;}
.ws6f{word-spacing:-6.795822pt;}
.ws74{word-spacing:-6.742688pt;}
.ws54{word-spacing:-6.689554pt;}
.ws9d{word-spacing:-6.636420pt;}
.ws59{word-spacing:-6.583286pt;}
.ws9f{word-spacing:-6.530152pt;}
.ws115{word-spacing:-6.423884pt;}
.ws60{word-spacing:-6.370751pt;}
.ws2c{word-spacing:-6.317617pt;}
.ws57{word-spacing:-6.264483pt;}
.ws98{word-spacing:-6.211349pt;}
.ws9c{word-spacing:-6.158215pt;}
.wsf6{word-spacing:-6.105081pt;}
.ws12c{word-spacing:-5.998814pt;}
.wsb9{word-spacing:-5.945680pt;}
.wsfd{word-spacing:-5.898430pt;}
.ws14{word-spacing:-5.897859pt;}
.ws120{word-spacing:-5.892546pt;}
.ws1d{word-spacing:-5.839412pt;}
.wsb4{word-spacing:-5.786278pt;}
.ws51{word-spacing:-5.733144pt;}
.wscc{word-spacing:-5.680010pt;}
.ws67{word-spacing:-5.626876pt;}
.ws70{word-spacing:-5.573743pt;}
.ws154{word-spacing:-5.525922pt;}
.ws5f{word-spacing:-5.467475pt;}
.wsa3{word-spacing:-5.445172pt;}
.ws7d{word-spacing:-5.361207pt;}
.ws66{word-spacing:-5.330743pt;}
.ws22{word-spacing:-5.308073pt;}
.wsed{word-spacing:-5.254939pt;}
.ws10d{word-spacing:-5.201806pt;}
.ws91{word-spacing:-5.148672pt;}
.ws32{word-spacing:-5.095538pt;}
.wsd0{word-spacing:-5.042404pt;}
.wsf{word-spacing:-4.994583pt;}
.ws81{word-spacing:-4.989270pt;}
.ws11e{word-spacing:-4.936136pt;}
.wse7{word-spacing:-4.883002pt;}
.ws6d{word-spacing:-4.829868pt;}
.wse9{word-spacing:-4.776735pt;}
.wsc0{word-spacing:-4.723601pt;}
.ws15c{word-spacing:-4.617333pt;}
.wsfb{word-spacing:-4.564199pt;}
.ws63{word-spacing:-4.511065pt;}
.ws7c{word-spacing:-4.457931pt;}
.ws17{word-spacing:-4.410111pt;}
.wsa5{word-spacing:-4.351664pt;}
.ws10c{word-spacing:-4.245396pt;}
.wsee{word-spacing:-4.192262pt;}
.ws106{word-spacing:-4.139128pt;}
.wsfc{word-spacing:-4.085994pt;}
.ws6{word-spacing:-4.038174pt;}
.ws31{word-spacing:-4.032860pt;}
.ws50{word-spacing:-3.926593pt;}
.ws7e{word-spacing:-3.873459pt;}
.ws119{word-spacing:-3.872406pt;}
.wsb2{word-spacing:-3.820325pt;}
.ws163{word-spacing:-3.767191pt;}
.wse1{word-spacing:-3.714057pt;}
.ws111{word-spacing:-3.660923pt;}
.wsba{word-spacing:-3.607790pt;}
.ws17d{word-spacing:-3.554656pt;}
.ws69{word-spacing:-3.501522pt;}
.ws30{word-spacing:-3.448388pt;}
.ws53{word-spacing:-3.395254pt;}
.ws3e{word-spacing:-3.342120pt;}
.ws152{word-spacing:-3.235852pt;}
.wsb{word-spacing:-3.188032pt;}
.wsd3{word-spacing:-3.182719pt;}
.ws109{word-spacing:-3.129585pt;}
.wsf4{word-spacing:-3.076451pt;}
.ws118{word-spacing:-3.023317pt;}
.ws171{word-spacing:-2.917049pt;}
.ws15{word-spacing:-2.816095pt;}
.ws75{word-spacing:-2.810782pt;}
.ws87{word-spacing:-2.704514pt;}
.ws86{word-spacing:-2.691464pt;}
.ws80{word-spacing:-2.651380pt;}
.ws10{word-spacing:-2.603559pt;}
.ws17b{word-spacing:-2.598246pt;}
.wse8{word-spacing:-2.491978pt;}
.ws7f{word-spacing:-2.444158pt;}
.wsb1{word-spacing:-2.438844pt;}
.ws116{word-spacing:-2.384654pt;}
.ws61{word-spacing:-2.332577pt;}
.ws18b{word-spacing:-2.279443pt;}
.ws2b{word-spacing:-2.226309pt;}
.wsa4{word-spacing:-2.173175pt;}
.ws15a{word-spacing:-1.965953pt;}
.ws27{word-spacing:-1.854372pt;}
.ws1e{word-spacing:-1.801238pt;}
.ws183{word-spacing:-1.694970pt;}
.ws9b{word-spacing:-1.588703pt;}
.ws77{word-spacing:-1.535569pt;}
.ws3a{word-spacing:-1.429301pt;}
.ws95{word-spacing:-1.376167pt;}
.ws45{word-spacing:-1.269899pt;}
.ws101{word-spacing:-1.163632pt;}
.ws191{word-spacing:-1.057364pt;}
.ws182{word-spacing:-1.004230pt;}
.wsc1{word-spacing:-0.897962pt;}
.ws128{word-spacing:-0.844828pt;}
.wse4{word-spacing:-0.738561pt;}
.ws12{word-spacing:-0.637606pt;}
.ws153{word-spacing:-0.632293pt;}
.ws11{word-spacing:-0.584473pt;}
.ws126{word-spacing:-0.579159pt;}
.ws143{word-spacing:-0.425071pt;}
.ws144{word-spacing:-0.419758pt;}
.ws166{word-spacing:-0.371937pt;}
.ws165{word-spacing:-0.366624pt;}
.wse{word-spacing:-0.318803pt;}
.ws124{word-spacing:-0.207222pt;}
.wsf7{word-spacing:-0.154088pt;}
.wsca{word-spacing:-0.100954pt;}
.ws83{word-spacing:-0.053134pt;}
.ws65{word-spacing:-0.036554pt;}
.ws64{word-spacing:-0.021323pt;}
.ws3c{word-spacing:0.000000pt;}
.wse0{word-spacing:0.005313pt;}
.ws76{word-spacing:0.270983pt;}
.ws167{word-spacing:0.425071pt;}
.wsa1{word-spacing:0.430384pt;}
.ws184{word-spacing:0.483518pt;}
.ws117{word-spacing:0.589786pt;}
.ws3d{word-spacing:0.696054pt;}
.ws10a{word-spacing:0.749188pt;}
.ws190{word-spacing:0.961723pt;}
.wsc5{word-spacing:1.174258pt;}
.ws108{word-spacing:1.333660pt;}
.ws125{word-spacing:1.439928pt;}
.ws10e{word-spacing:1.705597pt;}
.ws16d{word-spacing:1.811865pt;}
.ws15f{word-spacing:1.912819pt;}
.ws15e{word-spacing:2.077534pt;}
.wsa2{word-spacing:2.130668pt;}
.ws156{word-spacing:2.178489pt;}
.ws12f{word-spacing:2.236936pt;}
.ws170{word-spacing:2.290070pt;}
.ws157{word-spacing:2.396337pt;}
.ws130{word-spacing:2.502605pt;}
.ws15d{word-spacing:2.555739pt;}
.ws17a{word-spacing:2.608873pt;}
.ws16c{word-spacing:2.715141pt;}
.ws71{word-spacing:2.768274pt;}
.ws168{word-spacing:2.927676pt;}
.ws17f{word-spacing:3.033944pt;}
.wsc9{word-spacing:3.299613pt;}
.ws18f{word-spacing:3.512149pt;}
.ws139{word-spacing:3.990353pt;}
.ws142{word-spacing:4.091308pt;}
.wsb5{word-spacing:4.096621pt;}
.wsb8{word-spacing:4.309157pt;}
.ws173{word-spacing:4.468558pt;}
.wsdc{word-spacing:4.681094pt;}
.ws96{word-spacing:4.893629pt;}
.ws138{word-spacing:4.946763pt;}
.ws179{word-spacing:5.106165pt;}
.ws13a{word-spacing:5.260253pt;}
.ws147{word-spacing:5.318700pt;}
.ws164{word-spacing:5.690637pt;}
.ws180{word-spacing:5.743771pt;}
.ws16a{word-spacing:5.810893pt;}
.wsdd{word-spacing:6.328244pt;}
.ws169{word-spacing:6.381377pt;}
.ws146{word-spacing:6.700181pt;}
.ws189{word-spacing:6.912716pt;}
.ws82{word-spacing:7.337283pt;}
.ws18e{word-spacing:7.444055pt;}
.ws3b{word-spacing:7.497189pt;}
.ws13f{word-spacing:8.028527pt;}
.ws135{word-spacing:8.129482pt;}
.wsc4{word-spacing:8.241063pt;}
.ws84{word-spacing:8.820222pt;}
.ws136{word-spacing:8.825535pt;}
.ws161{word-spacing:9.139025pt;}
.ws132{word-spacing:9.410008pt;}
.ws14f{word-spacing:9.728811pt;}
.ws13e{word-spacing:9.781945pt;}
.ws162{word-spacing:9.941346pt;}
.wsbf{word-spacing:9.991666pt;}
.wsbc{word-spacing:10.023666pt;}
.ws133{word-spacing:10.153882pt;}
.ws18d{word-spacing:10.260150pt;}
.ws137{word-spacing:10.313284pt;}
.ws159{word-spacing:10.471230pt;}
.ws188{word-spacing:10.578953pt;}
.ws177{word-spacing:11.110292pt;}
.wsc7{word-spacing:11.751666pt;}
.wsc3{word-spacing:11.756999pt;}
.wscf{word-spacing:11.800179pt;}
.wsd5{word-spacing:11.835399pt;}
.wsd6{word-spacing:11.840733pt;}
.ws134{word-spacing:12.645860pt;}
.ws160{word-spacing:12.698994pt;}
.ws12a{word-spacing:13.211399pt;}
.ws158{word-spacing:13.926386pt;}
.ws151{word-spacing:14.563993pt;}
.wsec{word-spacing:14.670261pt;}
.ws8d{word-spacing:14.688369pt;}
.wsac{word-spacing:14.693702pt;}
.ws85{word-spacing:14.718081pt;}
.ws14b{word-spacing:14.771215pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.009864pt;}
.ws15b{word-spacing:15.036884pt;}
.ws14e{word-spacing:15.095332pt;}
.ws141{word-spacing:15.302554pt;}
.ws176{word-spacing:15.467269pt;}
.wsd1{word-spacing:15.536733pt;}
.wsd2{word-spacing:15.542066pt;}
.ws148{word-spacing:15.839206pt;}
.ws14c{word-spacing:16.051741pt;}
.ws140{word-spacing:16.636214pt;}
.ws47{word-spacing:17.300430pt;}
.ws186{word-spacing:18.336497pt;}
.ws12b{word-spacing:19.840733pt;}
.ws16b{word-spacing:21.418262pt;}
.ws1b{word-spacing:21.944287pt;}
.ws3{word-spacing:22.252612pt;}
.ws5{word-spacing:23.056328pt;}
.wscd{word-spacing:23.388923pt;}
.ws181{word-spacing:24.654114pt;}
.ws14a{word-spacing:25.663658pt;}
.ws17e{word-spacing:26.253444pt;}
.ws1a{word-spacing:26.620067pt;}
.ws149{word-spacing:27.847460pt;}
.ws18a{word-spacing:28.591334pt;}
.ws175{word-spacing:31.455249pt;}
.ws145{word-spacing:33.267114pt;}
.ws2{word-spacing:35.532586pt;}
.ws178{word-spacing:36.337301pt;}
.ws18c{word-spacing:42.261983pt;}
.ws187{word-spacing:42.666495pt;}
.wseb{word-spacing:67.752509pt;}
.wsd9{word-spacing:70.663896pt;}
.wsda{word-spacing:70.668278pt;}
.ws1c{word-spacing:79.428215pt;}
.ws174{word-spacing:83.239230pt;}
.ws11d{word-spacing:83.767717pt;}
.wsf2{word-spacing:117.570526pt;}
.wsfe{word-spacing:123.870359pt;}
.ws11c{word-spacing:138.615163pt;}
.ws11b{word-spacing:142.384271pt;}
.wsef{word-spacing:174.227154pt;}
.ws11a{word-spacing:185.346236pt;}
.wsce{word-spacing:276.068116pt;}
._38{margin-left:-192.022333pt;}
._22{margin-left:-175.274818pt;}
._23{margin-left:-173.739564pt;}
._21{margin-left:-172.204322pt;}
._26{margin-left:-160.007582pt;}
._24{margin-left:-87.399810pt;}
._25{margin-left:-62.908855pt;}
._4{margin-left:-11.385118pt;}
._1a{margin-left:-6.962689pt;}
._1f{margin-left:-5.993540pt;}
._5{margin-left:-4.782080pt;}
._0{margin-left:-3.783141pt;}
._3{margin-left:-2.846279pt;}
._1{margin-left:-1.232709pt;}
._10{width:1.232709pt;}
._6{width:2.219309pt;}
._9{width:3.432435pt;}
._29{width:5.116757pt;}
._55{width:7.771689pt;}
._f{width:13.901506pt;}
._2a{width:15.579677pt;}
._2b{width:17.111976pt;}
._2d{width:19.402802pt;}
._1d{width:21.147279pt;}
._1b{width:22.263090pt;}
._a{width:23.173601pt;}
._7{width:24.735749pt;}
._11{width:25.823059pt;}
._13{width:26.992004pt;}
._e{width:28.379075pt;}
._28{width:29.914367pt;}
._20{width:31.147076pt;}
._2c{width:32.486052pt;}
._b{width:34.415031pt;}
._27{width:35.812226pt;}
._2e{width:37.034305pt;}
._14{width:38.150116pt;}
._8{width:39.455514pt;}
._d{width:41.117134pt;}
._57{width:42.430568pt;}
._17{width:43.331695pt;}
._12{width:44.685582pt;}
._1c{width:46.237094pt;}
._c{width:47.478727pt;}
._4d{width:48.373110pt;}
._18{width:49.892701pt;}
._58{width:51.136039pt;}
._3a{width:52.188087pt;}
._53{width:53.718703pt;}
._36{width:56.813675pt;}
._51{width:59.074273pt;}
._4e{width:61.469225pt;}
._16{width:63.388703pt;}
._59{width:64.366404pt;}
._32{width:65.846945pt;}
._34{width:66.796278pt;}
._50{width:70.349239pt;}
._56{width:72.195527pt;}
._4f{width:74.341188pt;}
._54{width:84.111288pt;}
._52{width:97.441515pt;}
._1e{width:103.611733pt;}
._19{width:121.502750pt;}
._33{width:147.697612pt;}
._35{width:150.900927pt;}
._37{width:158.644166pt;}
._30{width:167.462945pt;}
._4a{width:180.768852pt;}
._45{width:192.054185pt;}
._40{width:203.344426pt;}
._4c{width:209.834299pt;}
._3b{width:214.635093pt;}
._2f{width:259.059994pt;}
._49{width:315.231333pt;}
._31{width:318.162776pt;}
._44{width:326.516241pt;}
._2{width:328.580656pt;}
._39{width:329.644945pt;}
._48{width:335.719589pt;}
._3f{width:337.806481pt;}
._4b{width:339.910612pt;}
._43{width:347.010256pt;}
._46{width:351.200852pt;}
._3e{width:358.295589pt;}
._41{width:362.491519pt;}
._3c{width:385.061759pt;}
._47{width:393.634256pt;}
._42{width:404.919163pt;}
._3d{width:416.209404pt;}
._15{width:1069.991238pt;}
.fs6{font-size:21.322972pt;}
.fs12{font-size:23.593719pt;}
.fsd{font-size:33.568398pt;}
.fse{font-size:33.927542pt;}
.fsb{font-size:34.020557pt;}
.fs8{font-size:34.712283pt;}
.fs7{font-size:36.553664pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:37.699675pt;}
.fs0{font-size:42.507200pt;}
.fs10{font-size:43.825675pt;}
.fs11{font-size:46.066952pt;}
.fsc{font-size:48.044667pt;}
.fsa{font-size:49.330339pt;}
.fsf{font-size:52.591167pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:0.080647pt;}
.y138{bottom:1.190065pt;}
.yd6{bottom:1.291443pt;}
.y162{bottom:1.830570pt;}
.y1f6{bottom:2.324624pt;}
.y96{bottom:2.365251pt;}
.y191{bottom:2.485557pt;}
.y193{bottom:2.784025pt;}
.y9c{bottom:3.424817pt;}
.y107{bottom:3.788451pt;}
.yf8{bottom:5.052590pt;}
.y181{bottom:5.078668pt;}
.yed{bottom:5.508679pt;}
.y137{bottom:9.560069pt;}
.y161{bottom:12.008832pt;}
.y61{bottom:12.774264pt;}
.y98{bottom:16.072875pt;}
.y190{bottom:16.305643pt;}
.y192{bottom:16.604111pt;}
.yd5{bottom:19.449965pt;}
.y136{bottom:19.630588pt;}
.yf1{bottom:20.819616pt;}
.y1ea{bottom:22.012562pt;}
.yf9{bottom:23.548656pt;}
.y60{bottom:24.084166pt;}
.y13a{bottom:25.799473pt;}
.y9b{bottom:26.331992pt;}
.y95{bottom:27.495896pt;}
.y1e9{bottom:29.090677pt;}
.y1f0{bottom:29.611943pt;}
.y97{bottom:29.780499pt;}
.yf0{bottom:31.025784pt;}
.y1ef{bottom:35.865417pt;}
.y139{bottom:35.869993pt;}
.y1e8{bottom:36.168793pt;}
.y9a{bottom:36.745677pt;}
.yfa{bottom:38.357201pt;}
.y17d{bottom:40.339616pt;}
.yf5{bottom:42.291399pt;}
.yf3{bottom:42.293014pt;}
.y1ee{bottom:42.943533pt;}
.y1e7{bottom:43.246909pt;}
.y1ed{bottom:50.021649pt;}
.y187{bottom:50.882803pt;}
.y47{bottom:51.638667pt;}
.y46{bottom:51.958667pt;}
.yf4{bottom:52.497566pt;}
.yf2{bottom:52.499181pt;}
.yf7{bottom:53.603764pt;}
.yd1{bottom:55.744403pt;}
.yd4{bottom:55.785511pt;}
.yd9{bottom:55.825591pt;}
.y106{bottom:57.095174pt;}
.yef{bottom:57.102100pt;}
.yec{bottom:62.221623pt;}
.y67{bottom:62.656626pt;}
.y186{bottom:66.660153pt;}
.yee{bottom:67.308267pt;}
.y180{bottom:67.490631pt;}
.yf6{bottom:67.912105pt;}
.y17c{bottom:67.996815pt;}
.y5d{bottom:69.139719pt;}
.y1dd{bottom:73.566394pt;}
.y66{bottom:73.966528pt;}
.y1e0{bottom:74.088775pt;}
.y5f{bottom:74.794621pt;}
.y1e6{bottom:75.307588pt;}
.y1de{bottom:75.450211pt;}
.y1e1{bottom:75.972592pt;}
.y1df{bottom:76.762618pt;}
.y1e2{bottom:77.284999pt;}
.y1f4{bottom:80.340452pt;}
.y5a{bottom:80.449524pt;}
.y5c{bottom:80.449622pt;}
.y1dc{bottom:82.384219pt;}
.y1e5{bottom:82.385703pt;}
.y5e{bottom:86.104524pt;}
.y65{bottom:86.927950pt;}
.y1f3{bottom:87.418568pt;}
.y1db{bottom:89.462335pt;}
.y1e4{bottom:89.463819pt;}
.y5b{bottom:91.759524pt;}
.yd0{bottom:92.179632pt;}
.yd3{bottom:92.219712pt;}
.yd8{bottom:92.259793pt;}
.yda{bottom:93.159002pt;}
.y1ec{bottom:93.357910pt;}
.y1f2{bottom:94.496683pt;}
.y17f{bottom:95.442556pt;}
.y17b{bottom:95.655110pt;}
.y1e3{bottom:96.541935pt;}
.y64{bottom:98.237852pt;}
.y1eb{bottom:100.436026pt;}
.y1f1{bottom:101.574799pt;}
.y28{bottom:107.716000pt;}
.y194{bottom:111.502667pt;}
.y230{bottom:112.033333pt;}
.y1f5{bottom:112.311432pt;}
.y69{bottom:114.468985pt;}
.yeb{bottom:116.333593pt;}
.y160{bottom:119.951802pt;}
.y17a{bottom:123.051548pt;}
.y17e{bottom:123.313404pt;}
.y27{bottom:123.656000pt;}
.yab{bottom:123.657333pt;}
.y182{bottom:123.700142pt;}
.y22f{bottom:125.184000pt;}
.y135{bottom:128.073973pt;}
.y12f{bottom:128.240036pt;}
.ycf{bottom:128.573753pt;}
.yd2{bottom:128.614861pt;}
.yd7{bottom:128.654942pt;}
.y131{bottom:128.832887pt;}
.y133{bottom:128.993538pt;}
.y59{bottom:129.498646pt;}
.y18d{bottom:133.620000pt;}
.y9d{bottom:137.201760pt;}
.y24c{bottom:137.361333pt;}
.y134{bottom:138.144493pt;}
.y12e{bottom:138.310555pt;}
.y22e{bottom:138.334667pt;}
.y130{bottom:138.903407pt;}
.y132{bottom:139.064057pt;}
.y45{bottom:139.596000pt;}
.y26{bottom:139.597333pt;}
.y58{bottom:140.808548pt;}
.y15f{bottom:141.418970pt;}
.y63{bottom:143.223309pt;}
.y55{bottom:146.644472pt;}
.y120{bottom:147.156000pt;}
.y184{bottom:149.054196pt;}
.yaa{bottom:149.916000pt;}
.y22d{bottom:151.485333pt;}
.y57{bottom:152.118451pt;}
.y24b{bottom:153.301333pt;}
.y62{bottom:154.533212pt;}
.y2bc{bottom:155.536000pt;}
.y25{bottom:155.537333pt;}
.ye8{bottom:156.489691pt;}
.y164{bottom:158.971179pt;}
.yea{bottom:161.590096pt;}
.ye5{bottom:161.590123pt;}
.y15e{bottom:162.886139pt;}
.y11f{bottom:163.096000pt;}
.y56{bottom:163.428353pt;}
.y185{bottom:164.366982pt;}
.y22c{bottom:164.636000pt;}
.y183{bottom:164.831546pt;}
.y44{bottom:165.170667pt;}
.y7f{bottom:165.381333pt;}
.ya9{bottom:165.856000pt;}
.ye7{bottom:166.695858pt;}
.y18f{bottom:166.758660pt;}
.y163{bottom:169.149442pt;}
.y24{bottom:171.477333pt;}
.ye9{bottom:171.796264pt;}
.ye4{bottom:171.796291pt;}
.ye6{bottom:176.902025pt;}
.y22b{bottom:177.786667pt;}
.y11e{bottom:179.036000pt;}
.y18e{bottom:180.578745pt;}
.y43{bottom:181.110667pt;}
.y7e{bottom:181.322667pt;}
.ya8{bottom:181.796000pt;}
.y68{bottom:182.214339pt;}
.y6a{bottom:182.721268pt;}
.y15d{bottom:184.353308pt;}
.y23{bottom:187.417333pt;}
.y22a{bottom:190.937333pt;}
.y2bb{bottom:192.253333pt;}
.y24a{bottom:194.950667pt;}
.y42{bottom:197.050667pt;}
.ya7{bottom:197.736000pt;}
.y177{bottom:201.976969pt;}
.y22{bottom:203.357333pt;}
.y229{bottom:204.088000pt;}
.y15c{bottom:205.821083pt;}
.y11d{bottom:207.092000pt;}
.y7d{bottom:207.106667pt;}
.y249{bottom:207.702667pt;}
.y2ba{bottom:208.193333pt;}
.y14e{bottom:211.754667pt;}
.y178{bottom:217.164706pt;}
.y228{bottom:217.238667pt;}
.y292{bottom:217.248000pt;}
.y170{bottom:219.297333pt;}
.y1cc{bottom:219.298667pt;}
.y248{bottom:220.853333pt;}
.y117{bottom:222.764000pt;}
.y7c{bottom:223.048000pt;}
.ya6{bottom:223.994667pt;}
.y2b9{bottom:224.133333pt;}
.y172{bottom:226.482007pt;}
.y11a{bottom:227.653333pt;}
.y14d{bottom:227.694667pt;}
.y41{bottom:229.192000pt;}
.y227{bottom:230.389333pt;}
.y291{bottom:233.188000pt;}
.y247{bottom:233.473333pt;}
.y16f{bottom:235.238667pt;}
.y11c{bottom:235.384000pt;}
.y119{bottom:235.624000pt;}
.y7b{bottom:238.988000pt;}
.y11b{bottom:239.369333pt;}
.ya5{bottom:239.934667pt;}
.y2b8{bottom:240.073333pt;}
.y21{bottom:240.904000pt;}
.y226{bottom:243.540000pt;}
.y118{bottom:243.593333pt;}
.y14c{bottom:243.636000pt;}
.y176{bottom:243.733934pt;}
.y179{bottom:243.904856pt;}
.ycd{bottom:244.620000pt;}
.y40{bottom:245.132000pt;}
.y246{bottom:246.624000pt;}
.yfb{bottom:248.569333pt;}
.y290{bottom:249.128000pt;}
.y1b0{bottom:251.178667pt;}
.ycc{bottom:254.689333pt;}
.y7a{bottom:254.928000pt;}
.ya4{bottom:255.876000pt;}
.y2b7{bottom:256.014667pt;}
.y225{bottom:256.690667pt;}
.y16e{bottom:258.737333pt;}
.y245{bottom:259.242667pt;}
.y3f{bottom:261.072000pt;}
.y224{bottom:262.868000pt;}
.y28f{bottom:265.068000pt;}
.y1af{bottom:267.118667pt;}
.ye3{bottom:270.686667pt;}
.y79{bottom:270.868000pt;}
.y2b6{bottom:271.954667pt;}
.y244{bottom:272.393333pt;}
.y14b{bottom:273.302667pt;}
.y16d{bottom:274.677333pt;}
.y15a{bottom:276.235072pt;}
.y15b{bottom:276.338066pt;}
.y116{bottom:276.922667pt;}
.y3e{bottom:277.012000pt;}
.y28e{bottom:281.009333pt;}
.ya3{bottom:282.134667pt;}
.y1ae{bottom:283.058667pt;}
.y243{bottom:285.013333pt;}
.y78{bottom:286.808000pt;}
.y14a{bottom:289.242667pt;}
.y16c{bottom:290.617333pt;}
.y115{bottom:292.862667pt;}
.y3d{bottom:292.952000pt;}
.y223{bottom:295.744000pt;}
.y2b5{bottom:296.510667pt;}
.y20{bottom:296.862667pt;}
.y28d{bottom:296.949333pt;}
.ya2{bottom:298.074667pt;}
.y242{bottom:298.297333pt;}
.y1cb{bottom:298.998667pt;}
.y149{bottom:305.182667pt;}
.y16b{bottom:306.558667pt;}
.y114{bottom:308.802667pt;}
.y3c{bottom:308.893333pt;}
.y241{bottom:310.916000pt;}
.ycb{bottom:311.484000pt;}
.y2b4{bottom:312.450667pt;}
.y1f{bottom:312.802667pt;}
.y28c{bottom:312.889333pt;}
.y26f{bottom:314.938667pt;}
.y77{bottom:319.370667pt;}
.y148{bottom:321.124000pt;}
.y16a{bottom:322.498667pt;}
.ya1{bottom:324.333333pt;}
.y113{bottom:324.744000pt;}
.y3b{bottom:324.833333pt;}
.yca{bottom:327.425333pt;}
.y2b3{bottom:328.390667pt;}
.y28b{bottom:328.829333pt;}
.y26e{bottom:330.880000pt;}
.y222{bottom:331.144000pt;}
.y203{bottom:331.145333pt;}
.y76{bottom:335.310667pt;}
.y147{bottom:337.064000pt;}
.y240{bottom:337.482667pt;}
.y169{bottom:338.438667pt;}
.ya0{bottom:340.273333pt;}
.y112{bottom:340.684000pt;}
.y3a{bottom:340.773333pt;}
.yc9{bottom:343.365333pt;}
.y2b2{bottom:344.330667pt;}
.y26d{bottom:346.820000pt;}
.y202{bottom:347.085333pt;}
.y1ca{bottom:348.420000pt;}
.y23f{bottom:350.102667pt;}
.y1e{bottom:350.348000pt;}
.y75{bottom:351.250667pt;}
.y146{bottom:353.004000pt;}
.y168{bottom:354.378667pt;}
.y1c9{bottom:354.597333pt;}
.y111{bottom:356.624000pt;}
.y28a{bottom:358.660000pt;}
.y2b1{bottom:360.270667pt;}
.y26c{bottom:362.760000pt;}
.y201{bottom:363.025333pt;}
.y74{bottom:367.190667pt;}
.y145{bottom:368.944000pt;}
.y167{bottom:370.318667pt;}
.y173{bottom:371.845820pt;}
.y110{bottom:372.564000pt;}
.y39{bottom:372.913333pt;}
.y9f{bottom:373.782667pt;}
.y1c8{bottom:374.190667pt;}
.y289{bottom:374.600000pt;}
.y2b0{bottom:376.212000pt;}
.y23e{bottom:377.284000pt;}
.y26b{bottom:378.700000pt;}
.y200{bottom:378.965333pt;}
.yc8{bottom:381.902667pt;}
.y73{bottom:383.132000pt;}
.y144{bottom:384.884000pt;}
.y166{bottom:386.260000pt;}
.y1c7{bottom:387.341333pt;}
.y10f{bottom:388.504000pt;}
.y38{bottom:388.854667pt;}
.y288{bottom:390.540000pt;}
.y2af{bottom:392.152000pt;}
.y23d{bottom:393.224000pt;}
.y1c6{bottom:393.517333pt;}
.y26a{bottom:394.640000pt;}
.y1ff{bottom:394.905333pt;}
.yc5{bottom:397.414667pt;}
.y175{bottom:398.851121pt;}
.y72{bottom:399.072000pt;}
.y143{bottom:400.824000pt;}
.y1ad{bottom:403.146667pt;}
.y10e{bottom:404.444000pt;}
.y37{bottom:404.794667pt;}
.y1d{bottom:406.306667pt;}
.y287{bottom:406.480000pt;}
.y23c{bottom:409.164000pt;}
.yc7{bottom:410.034667pt;}
.y269{bottom:410.580000pt;}
.y1fe{bottom:410.845333pt;}
.y1c5{bottom:413.110667pt;}
.yc6{bottom:414.020000pt;}
.y71{bottom:415.012000pt;}
.y9e{bottom:416.700000pt;}
.y2ae{bottom:416.708000pt;}
.y142{bottom:416.765333pt;}
.y174{bottom:417.485736pt;}
.y1c4{bottom:419.288000pt;}
.y10d{bottom:420.385333pt;}
.y1c{bottom:422.248000pt;}
.y286{bottom:422.421333pt;}
.y23b{bottom:425.105333pt;}
.y268{bottom:426.521333pt;}
.y1fd{bottom:426.786667pt;}
.y221{bottom:428.048000pt;}
.y36{bottom:430.368000pt;}
.y165{bottom:430.833333pt;}
.y70{bottom:430.952000pt;}
.y2ad{bottom:432.648000pt;}
.y141{bottom:432.705333pt;}
.y10c{bottom:436.325333pt;}
.y1b{bottom:438.188000pt;}
.y285{bottom:438.361333pt;}
.y99{bottom:438.817333pt;}
.y1c3{bottom:438.880000pt;}
.y23a{bottom:441.045333pt;}
.y267{bottom:442.461333pt;}
.y1fc{bottom:442.726667pt;}
.y220{bottom:443.988000pt;}
.y1c2{bottom:445.057333pt;}
.yc4{bottom:445.086667pt;}
.y35{bottom:446.309333pt;}
.y6f{bottom:446.892000pt;}
.y2ac{bottom:448.588000pt;}
.y140{bottom:448.645333pt;}
.y1ac{bottom:451.645333pt;}
.y10b{bottom:452.265333pt;}
.y159{bottom:452.950667pt;}
.y1a{bottom:454.128000pt;}
.y284{bottom:454.301333pt;}
.y239{bottom:456.985333pt;}
.y1fb{bottom:458.666667pt;}
.y21f{bottom:459.928000pt;}
.y18c{bottom:460.962667pt;}
.yc3{bottom:461.026667pt;}
.y34{bottom:462.249333pt;}
.y6e{bottom:462.832000pt;}
.y2ab{bottom:464.528000pt;}
.y13f{bottom:464.585333pt;}
.y1c1{bottom:464.650667pt;}
.y1ab{bottom:467.585333pt;}
.y10a{bottom:468.205333pt;}
.y19{bottom:470.068000pt;}
.y1c0{bottom:470.828000pt;}
.y238{bottom:472.925333pt;}
.y1fa{bottom:474.606667pt;}
.y21e{bottom:475.868000pt;}
.y18b{bottom:476.902667pt;}
.yc2{bottom:476.966667pt;}
.y6d{bottom:478.773333pt;}
.y266{bottom:479.649333pt;}
.y2aa{bottom:480.468000pt;}
.y13e{bottom:480.525333pt;}
.y1aa{bottom:483.525333pt;}
.y283{bottom:484.132000pt;}
.y18{bottom:486.008000pt;}
.y237{bottom:488.865333pt;}
.y1bf{bottom:490.420000pt;}
.y1f9{bottom:490.546667pt;}
.y21d{bottom:491.808000pt;}
.y18a{bottom:492.842667pt;}
.yc1{bottom:492.906667pt;}
.y33{bottom:494.389333pt;}
.y6c{bottom:494.713333pt;}
.y13d{bottom:496.465333pt;}
.y1a9{bottom:499.465333pt;}
.y109{bottom:499.685333pt;}
.y282{bottom:500.072000pt;}
.y17{bottom:501.948000pt;}
.y1be{bottom:503.570667pt;}
.y2a9{bottom:505.024000pt;}
.y1f8{bottom:506.488000pt;}
.y189{bottom:508.782667pt;}
.yc0{bottom:508.848000pt;}
.y93{bottom:509.616569pt;}
.y32{bottom:510.329333pt;}
.ye2{bottom:510.668000pt;}
.y108{bottom:512.304000pt;}
.y13c{bottom:512.406667pt;}
.y1a8{bottom:515.406667pt;}
.y281{bottom:516.012000pt;}
.y21c{bottom:517.884000pt;}
.y16{bottom:517.889333pt;}
.y236{bottom:520.941333pt;}
.y2a8{bottom:520.965333pt;}
.y31{bottom:526.269333pt;}
.ye1{bottom:526.608000pt;}
.y1bd{bottom:530.005333pt;}
.y1a7{bottom:531.346667pt;}
.y280{bottom:531.952000pt;}
.ybf{bottom:532.346667pt;}
.y265{bottom:533.822667pt;}
.y21b{bottom:533.824000pt;}
.y15{bottom:533.829333pt;}
.y105{bottom:534.421333pt;}
.y2a7{bottom:536.905333pt;}
.y6b{bottom:537.156000pt;}
.y30{bottom:542.210667pt;}
.ye0{bottom:542.548000pt;}
.y1a6{bottom:547.286667pt;}
.y27f{bottom:547.892000pt;}
.ybe{bottom:548.286667pt;}
.y264{bottom:549.762667pt;}
.y14{bottom:549.769333pt;}
.y2a6{bottom:552.845333pt;}
.y13b{bottom:553.401333pt;}
.y2f{bottom:558.150667pt;}
.ydf{bottom:558.488000pt;}
.y54{bottom:559.273333pt;}
.y21a{bottom:559.898667pt;}
.y27e{bottom:563.833333pt;}
.ybd{bottom:564.226667pt;}
.y1bc{bottom:565.092000pt;}
.y263{bottom:565.704000pt;}
.y13{bottom:565.709333pt;}
.y1f7{bottom:565.796000pt;}
.y2a5{bottom:568.785333pt;}
.y188{bottom:570.440000pt;}
.y2e{bottom:574.090667pt;}
.yde{bottom:574.429333pt;}
.y12d{bottom:575.518667pt;}
.y219{bottom:575.838667pt;}
.y235{bottom:579.620000pt;}
.y27d{bottom:579.773333pt;}
.ybc{bottom:580.168000pt;}
.y1bb{bottom:581.032000pt;}
.y262{bottom:581.644000pt;}
.y12{bottom:581.649333pt;}
.y1a5{bottom:584.689333pt;}
.y2a4{bottom:584.725333pt;}
.y1da{bottom:587.913333pt;}
.y2d{bottom:590.030667pt;}
.ydd{bottom:590.369333pt;}
.y218{bottom:591.780000pt;}
.y234{bottom:592.240000pt;}
.y171{bottom:592.557333pt;}
.ybb{bottom:596.108000pt;}
.y1ba{bottom:596.972000pt;}
.y261{bottom:597.584000pt;}
.y11{bottom:597.590667pt;}
.y2a3{bottom:600.665333pt;}
.y92{bottom:603.376000pt;}
.y2c{bottom:605.970667pt;}
.ydc{bottom:606.309333pt;}
.y217{bottom:607.720000pt;}
.y27c{bottom:609.604000pt;}
.yba{bottom:612.048000pt;}
.y1b9{bottom:612.912000pt;}
.y260{bottom:613.524000pt;}
.y10{bottom:613.530667pt;}
.y2a2{bottom:616.606667pt;}
.y2ce{bottom:618.081333pt;}
.y2e2{bottom:618.198667pt;}
.y91{bottom:619.316000pt;}
.y2b{bottom:621.910667pt;}
.y27b{bottom:625.544000pt;}
.yb9{bottom:627.988000pt;}
.y1b8{bottom:628.852000pt;}
.y25f{bottom:629.464000pt;}
.yf{bottom:629.470667pt;}
.y216{bottom:633.794667pt;}
.y2cd{bottom:634.022667pt;}
.y2e1{bottom:634.138667pt;}
.y90{bottom:635.256000pt;}
.y2a{bottom:637.852000pt;}
.y1a4{bottom:639.929333pt;}
.y2a1{bottom:641.162667pt;}
.y27a{bottom:641.484000pt;}
.yb8{bottom:643.928000pt;}
.y1b7{bottom:644.793333pt;}
.ye{bottom:645.410667pt;}
.y215{bottom:649.734667pt;}
.y2cc{bottom:649.962667pt;}
.y2e0{bottom:650.078667pt;}
.y8f{bottom:651.196000pt;}
.y25e{bottom:652.964000pt;}
.y1a3{bottom:655.870667pt;}
.y2a0{bottom:657.102667pt;}
.y279{bottom:657.424000pt;}
.y1b6{bottom:660.733333pt;}
.yd{bottom:661.350667pt;}
.y2cb{bottom:665.902667pt;}
.y2df{bottom:666.018667pt;}
.y8e{bottom:667.136000pt;}
.yb7{bottom:667.428000pt;}
.y25d{bottom:668.904000pt;}
.y1a2{bottom:671.810667pt;}
.y29f{bottom:673.042667pt;}
.y278{bottom:673.364000pt;}
.y214{bottom:675.809333pt;}
.y1b5{bottom:676.673333pt;}
.yc{bottom:677.290667pt;}
.ydb{bottom:678.340000pt;}
.y2ca{bottom:681.842667pt;}
.y2de{bottom:681.958667pt;}
.y8d{bottom:683.077333pt;}
.yb6{bottom:683.368000pt;}
.y25c{bottom:684.844000pt;}
.y1a1{bottom:687.750667pt;}
.y29e{bottom:688.982667pt;}
.y277{bottom:689.304000pt;}
.y213{bottom:691.750667pt;}
.y1b4{bottom:692.613333pt;}
.y29{bottom:693.230667pt;}
.yb{bottom:693.232000pt;}
.y2c9{bottom:697.782667pt;}
.y2dd{bottom:697.898667pt;}
.y8c{bottom:699.017333pt;}
.yb5{bottom:699.308000pt;}
.yce{bottom:700.456614pt;}
.y25b{bottom:700.784000pt;}
.y1a0{bottom:703.690667pt;}
.y29d{bottom:704.922667pt;}
.y212{bottom:707.690667pt;}
.y1b3{bottom:708.553333pt;}
.y2dc{bottom:713.840000pt;}
.y8b{bottom:714.957333pt;}
.yb4{bottom:715.248000pt;}
.y25a{bottom:716.724000pt;}
.y19f{bottom:719.630667pt;}
.y29c{bottom:720.862667pt;}
.y276{bottom:726.657333pt;}
.y2c8{bottom:729.664000pt;}
.y2db{bottom:729.780000pt;}
.y8a{bottom:730.897333pt;}
.yb3{bottom:731.188000pt;}
.y211{bottom:733.765333pt;}
.y29b{bottom:736.804000pt;}
.y259{bottom:740.224000pt;}
.y12c{bottom:741.940000pt;}
.ya{bottom:743.038667pt;}
.y1b2{bottom:743.068000pt;}
.y2c7{bottom:745.604000pt;}
.y2da{bottom:745.720000pt;}
.y1d9{bottom:746.476000pt;}
.y89{bottom:746.837333pt;}
.yb2{bottom:747.129333pt;}
.y210{bottom:749.705333pt;}
.y29a{bottom:752.744000pt;}
.y19e{bottom:755.504000pt;}
.y258{bottom:756.164000pt;}
.y12b{bottom:757.880000pt;}
.y2c6{bottom:761.544000pt;}
.y2d9{bottom:761.660000pt;}
.y1d8{bottom:762.416000pt;}
.y88{bottom:762.778667pt;}
.yb1{bottom:763.069333pt;}
.y20f{bottom:765.645333pt;}
.y53{bottom:769.850667pt;}
.y19d{bottom:771.444000pt;}
.y257{bottom:772.104000pt;}
.y12a{bottom:773.821333pt;}
.y9{bottom:774.920000pt;}
.y158{bottom:775.205333pt;}
.y299{bottom:777.300000pt;}
.y2c5{bottom:777.484000pt;}
.y2d8{bottom:777.600000pt;}
.y1d7{bottom:778.356000pt;}
.y87{bottom:778.718667pt;}
.y20e{bottom:781.586667pt;}
.y275{bottom:781.650667pt;}
.y52{bottom:785.790667pt;}
.y256{bottom:788.044000pt;}
.y129{bottom:789.761333pt;}
.y8{bottom:790.860000pt;}
.y157{bottom:791.145333pt;}
.y1b1{bottom:792.368000pt;}
.y298{bottom:793.240000pt;}
.y2c4{bottom:793.424000pt;}
.y2d7{bottom:793.540000pt;}
.y1d6{bottom:794.296000pt;}
.y86{bottom:794.658667pt;}
.y20d{bottom:797.526667pt;}
.y274{bottom:797.592000pt;}
.yb0{bottom:797.648000pt;}
.y19c{bottom:801.504000pt;}
.y51{bottom:801.730667pt;}
.y255{bottom:803.985333pt;}
.y128{bottom:805.701333pt;}
.y156{bottom:807.085333pt;}
.y297{bottom:809.180000pt;}
.y2c3{bottom:809.364000pt;}
.y1d5{bottom:810.237333pt;}
.y20c{bottom:813.466667pt;}
.y273{bottom:813.532000pt;}
.yaf{bottom:816.244000pt;}
.y19b{bottom:817.444000pt;}
.y50{bottom:817.672000pt;}
.y254{bottom:819.925333pt;}
.y127{bottom:821.641333pt;}
.y7{bottom:822.740000pt;}
.y155{bottom:823.025333pt;}
.y296{bottom:825.120000pt;}
.y2c2{bottom:825.305333pt;}
.y1d4{bottom:826.177333pt;}
.y85{bottom:826.734667pt;}
.y20b{bottom:829.406667pt;}
.y272{bottom:829.472000pt;}
.y2d6{bottom:829.578667pt;}
.y4f{bottom:833.612000pt;}
.y253{bottom:835.865333pt;}
.y126{bottom:837.581333pt;}
.y6{bottom:838.680000pt;}
.y154{bottom:838.965333pt;}
.y295{bottom:841.060000pt;}
.y2c1{bottom:841.245333pt;}
.y1d3{bottom:842.117333pt;}
.y84{bottom:845.332000pt;}
.y271{bottom:845.412000pt;}
.y2d5{bottom:845.518667pt;}
.y104{bottom:846.824000pt;}
.y19a{bottom:847.504000pt;}
.y252{bottom:851.805333pt;}
.y125{bottom:853.521333pt;}
.y153{bottom:854.906667pt;}
.y20a{bottom:855.481333pt;}
.y294{bottom:857.001333pt;}
.y2c0{bottom:857.185333pt;}
.y1d2{bottom:858.057333pt;}
.y2d4{bottom:861.458667pt;}
.y103{bottom:862.764000pt;}
.y199{bottom:863.445333pt;}
.y251{bottom:867.745333pt;}
.y124{bottom:869.462667pt;}
.y4e{bottom:870.262667pt;}
.y152{bottom:870.846667pt;}
.y209{bottom:871.421333pt;}
.y293{bottom:872.941333pt;}
.y2bf{bottom:873.125333pt;}
.yae{bottom:873.497333pt;}
.y1d1{bottom:873.997333pt;}
.y2d3{bottom:877.398667pt;}
.y102{bottom:878.704000pt;}
.y198{bottom:879.385333pt;}
.y5{bottom:881.077333pt;}
.y233{bottom:881.557333pt;}
.y270{bottom:882.765333pt;}
.y123{bottom:885.402667pt;}
.y208{bottom:887.362667pt;}
.y2be{bottom:889.065333pt;}
.yad{bottom:889.437333pt;}
.y83{bottom:889.937333pt;}
.y1d0{bottom:889.938667pt;}
.y2d2{bottom:893.340000pt;}
.y4d{bottom:894.172000pt;}
.y101{bottom:894.645333pt;}
.y232{bottom:897.497333pt;}
.y4{bottom:899.674667pt;}
.y151{bottom:900.112000pt;}
.y122{bottom:901.342667pt;}
.y250{bottom:903.122667pt;}
.y207{bottom:903.302667pt;}
.y82{bottom:905.878667pt;}
.y2d1{bottom:909.280000pt;}
.y197{bottom:909.445333pt;}
.y100{bottom:910.585333pt;}
.y231{bottom:913.437333pt;}
.y150{bottom:916.052000pt;}
.y24f{bottom:919.062667pt;}
.y206{bottom:919.242667pt;}
.y81{bottom:921.818667pt;}
.y2d0{bottom:925.220000pt;}
.y196{bottom:925.385333pt;}
.y2bd{bottom:925.716000pt;}
.yff{bottom:926.525333pt;}
.yac{bottom:929.377333pt;}
.y14f{bottom:931.992000pt;}
.y121{bottom:933.418667pt;}
.y205{bottom:935.182667pt;}
.y1cf{bottom:937.758667pt;}
.y2cf{bottom:941.160000pt;}
.y195{bottom:941.325333pt;}
.yfe{bottom:942.465333pt;}
.y4c{bottom:945.317333pt;}
.y24e{bottom:948.130667pt;}
.y204{bottom:951.122667pt;}
.y1ce{bottom:953.698667pt;}
.y3{bottom:958.296000pt;}
.yfd{bottom:958.405333pt;}
.y80{bottom:961.257333pt;}
.y4b{bottom:961.258667pt;}
.y24d{bottom:964.070667pt;}
.y1cd{bottom:969.638667pt;}
.y4a{bottom:977.198667pt;}
.y2{bottom:987.520000pt;}
.yfc{bottom:990.481333pt;}
.y49{bottom:993.138667pt;}
.y48{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.h16{height:2.125355pt;}
.he{height:14.440899pt;}
.h11{height:14.805306pt;}
.h33{height:15.990274pt;}
.h35{height:16.381967pt;}
.h34{height:19.288839pt;}
.h26{height:22.750457pt;}
.h25{height:23.307745pt;}
.h29{height:23.573678pt;}
.h1f{height:23.621696pt;}
.h13{height:24.101985pt;}
.hf{height:24.755826pt;}
.h15{height:25.142874pt;}
.h17{height:25.403229pt;}
.h28{height:25.497863pt;}
.ha{height:26.194647pt;}
.h2c{height:30.429741pt;}
.h8{height:30.477662pt;}
.h2{height:31.880400pt;}
.hb{height:31.922907pt;}
.h2e{height:32.008434pt;}
.h10{height:32.167224pt;}
.h21{height:32.538063pt;}
.h1d{height:33.336518pt;}
.h1c{height:34.251827pt;}
.h38{height:35.493423pt;}
.h2b{height:36.515937pt;}
.hd{height:36.572133pt;}
.h7{height:37.671911pt;}
.h14{height:39.850400pt;}
.h5{height:39.903534pt;}
.h23{height:40.492207pt;}
.hc{height:44.696508pt;}
.h4{height:45.589163pt;}
.h18{height:47.344562pt;}
.h6{height:53.712173pt;}
.h31{height:56.632241pt;}
.h37{height:57.160241pt;}
.h36{height:57.165574pt;}
.h2f{height:57.688241pt;}
.h30{height:57.693574pt;}
.h3{height:64.454458pt;}
.h1a{height:80.180867pt;}
.h19{height:92.984021pt;}
.h22{height:115.197355pt;}
.h32{height:122.628918pt;}
.h12{height:145.015327pt;}
.h24{height:148.061031pt;}
.h9{height:190.769809pt;}
.h1e{height:191.915737pt;}
.h2d{height:288.324396pt;}
.h27{height:291.660084pt;}
.h20{height:294.008226pt;}
.h1b{height:321.905168pt;}
.h2a{height:429.805114pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.969467pt;}
.w9{width:302.353243pt;}
.wc{width:302.363618pt;}
.wb{width:302.365105pt;}
.wa{width:302.367952pt;}
.w5{width:302.370877pt;}
.w6{width:314.613319pt;}
.w2{width:314.617971pt;}
.w8{width:314.619399pt;}
.w4{width:314.619941pt;}
.w7{width:314.622118pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.437493pt;}
.x5f{left:3.950157pt;}
.x1d{left:5.449443pt;}
.x37{left:7.143972pt;}
.x2a{left:9.056549pt;}
.x1b{left:11.337359pt;}
.x7c{left:14.342952pt;}
.x4c{left:16.369776pt;}
.x34{left:18.041757pt;}
.x28{left:20.439672pt;}
.x67{left:22.627256pt;}
.x61{left:31.308011pt;}
.x62{left:33.959447pt;}
.x27{left:37.407418pt;}
.x45{left:38.861145pt;}
.x29{left:42.255345pt;}
.x25{left:43.681206pt;}
.x26{left:46.485400pt;}
.x56{left:47.466165pt;}
.x6a{left:51.773943pt;}
.x35{left:54.456432pt;}
.x11{left:58.478381pt;}
.x57{left:60.911584pt;}
.x72{left:68.570948pt;}
.x68{left:69.633429pt;}
.x20{left:72.100828pt;}
.x1{left:75.590667pt;}
.x50{left:76.651165pt;}
.xf{left:78.728000pt;}
.x6{left:81.333333pt;}
.xb{left:82.602667pt;}
.x4b{left:85.392344pt;}
.x65{left:86.666223pt;}
.x10{left:88.874667pt;}
.x36{left:90.871108pt;}
.x82{left:94.700000pt;}
.x2b{left:95.712471pt;}
.x7d{left:97.393333pt;}
.x74{left:101.217749pt;}
.x21{left:102.157333pt;}
.x2c{left:104.142644pt;}
.x75{left:108.096811pt;}
.x59{left:109.857590pt;}
.x2f{left:111.366667pt;}
.x7f{left:112.392000pt;}
.x58{left:114.988788pt;}
.x40{left:117.110214pt;}
.x81{left:120.976000pt;}
.x4e{left:122.388192pt;}
.x80{left:124.248000pt;}
.x3e{left:125.871662pt;}
.x5c{left:127.245512pt;}
.x2{left:129.698667pt;}
.x3f{left:130.686576pt;}
.x2e{left:135.352000pt;}
.x66{left:141.720954pt;}
.x52{left:142.985847pt;}
.x8{left:145.189333pt;}
.x60{left:147.645076pt;}
.x48{left:148.546349pt;}
.x5a{left:149.516476pt;}
.x15{left:150.586617pt;}
.x76{left:152.422883pt;}
.x16{left:156.746508pt;}
.x73{left:158.677816pt;}
.x53{left:160.482667pt;}
.x49{left:163.196486pt;}
.x4a{left:164.132057pt;}
.x17{left:165.908924pt;}
.x13{left:167.470780pt;}
.x14{left:169.301920pt;}
.x12{left:170.345399pt;}
.x32{left:172.214667pt;}
.x42{left:186.158295pt;}
.x1e{left:188.662831pt;}
.x30{left:190.465333pt;}
.x69{left:191.854078pt;}
.x41{left:195.955178pt;}
.x3{left:198.013333pt;}
.x6c{left:199.289409pt;}
.x38{left:201.959865pt;}
.x39{left:205.042981pt;}
.x77{left:207.400809pt;}
.x7{left:211.221333pt;}
.x31{left:212.280000pt;}
.x54{left:214.433333pt;}
.x5b{left:216.605101pt;}
.x6b{left:217.524055pt;}
.x63{left:222.968026pt;}
.x33{left:224.518667pt;}
.x4f{left:225.846033pt;}
.x5d{left:228.311244pt;}
.x2d{left:229.323910pt;}
.x47{left:232.955815pt;}
.x3a{left:238.374541pt;}
.x3b{left:241.457657pt;}
.x5e{left:242.504551pt;}
.x78{left:243.550898pt;}
.x51{left:244.611610pt;}
.x55{left:247.642667pt;}
.x19{left:248.989390pt;}
.x18{left:256.058117pt;}
.x64{left:257.131129pt;}
.x4{left:259.053333pt;}
.x1a{left:260.238767pt;}
.x43{left:267.596803pt;}
.x46{left:269.478569pt;}
.x4d{left:272.088059pt;}
.x44{left:273.502576pt;}
.x3c{left:274.789217pt;}
.x3d{left:277.872332pt;}
.x7a{left:279.601451pt;}
.x79{left:280.906485pt;}
.x5{left:283.308000pt;}
.x1f{left:286.644841pt;}
.x7b{left:289.955806pt;}
.xa{left:307.301333pt;}
.x9{left:325.948000pt;}
.xc{left:403.492000pt;}
.x22{left:409.468000pt;}
.x83{left:410.504000pt;}
.xd{left:416.776000pt;}
.xe{left:430.058667pt;}
.x6e{left:431.644000pt;}
.x6d{left:434.258667pt;}
.x23{left:463.253333pt;}
.x24{left:493.633011pt;}
.x71{left:499.229333pt;}
.x6f{left:579.510667pt;}
.x70{left:593.966667pt;}
.x7e{left:638.482667pt;}
}




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