
    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_048d698695705b37f45595b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_226f58320a6f4b083da64a7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_868a828c0aa22f07e443eadc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_ec009d333f489fcf71fb5bef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_97f5492d5bcbeb371fcd0dd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_e17f9647d9ac8b96c69a5261.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_307312d22488009d7d0a4a28.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_d1104d067588f0d59de6f45f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_d866f719b10d79dbe02a7d57.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.514000;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_18fd02103ee91124c7e3ba74.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_5a73099cc0d1e6275f2c89e5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_af1cec91e54c2e43f41bd97c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_6412fb58917524a1af8e9e8d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.206055;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_4a56ef0129c0485512ac87b5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_7e06e62e59c268e7ded55392.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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_faecd3abcaf945d351a14067.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f2da373ecd062ce0727a8e3e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.703613;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_c925abccfad8747b99c39bf5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.481000;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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_d1a9ce93388769b0efeef0d1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_06c1da7ebe94d10bdf5cf963.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.206055;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_e436d7a88f30f980faf277e6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;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_eacd64513b6711114b4401c5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;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_db18f48511bdb4743af3ba0a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;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_a737e38d188e455bc0872bcf.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.726000;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;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls54{letter-spacing:-1.707408px;}
.ls7a{letter-spacing:-0.343886px;}
.ls83{letter-spacing:-0.231462px;}
.ls61{letter-spacing:-0.215771px;}
.ls7f{letter-spacing:-0.205009px;}
.ls4a{letter-spacing:-0.198396px;}
.ls7c{letter-spacing:-0.178556px;}
.ls32{letter-spacing:-0.165330px;}
.ls8f{letter-spacing:-0.158717px;}
.ls50{letter-spacing:-0.156312px;}
.ls60{letter-spacing:-0.151623px;}
.ls6b{letter-spacing:-0.139959px;}
.ls94{letter-spacing:-0.138877px;}
.ls4c{letter-spacing:-0.138276px;}
.ls31{letter-spacing:-0.132264px;}
.ls7d{letter-spacing:-0.125651px;}
.ls62{letter-spacing:-0.122464px;}
.ls52{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.119038px;}
.ls53{letter-spacing:-0.114228px;}
.ls7b{letter-spacing:-0.112424px;}
.lsa6{letter-spacing:-0.108216px;}
.ls68{letter-spacing:-0.104970px;}
.lsa1{letter-spacing:-0.102204px;}
.ls2a{letter-spacing:-0.100069px;}
.ls84{letter-spacing:-0.099198px;}
.lsa2{letter-spacing:-0.096192px;}
.ls81{letter-spacing:-0.092585px;}
.ls45{letter-spacing:-0.090972px;}
.ls4e{letter-spacing:-0.090180px;}
.ls5e{letter-spacing:-0.088243px;}
.ls90{letter-spacing:-0.085972px;}
.lsa8{letter-spacing:-0.084168px;}
.lsa0{letter-spacing:-0.078156px;}
.ls63{letter-spacing:-0.075811px;}
.ls93{letter-spacing:-0.072745px;}
.ls6c{letter-spacing:-0.069980px;}
.lsaa{letter-spacing:-0.066132px;}
.ls69{letter-spacing:-0.064148px;}
.ls49{letter-spacing:-0.060120px;}
.ls2d{letter-spacing:-0.059519px;}
.ls33{letter-spacing:-0.059400px;}
.ls4d{letter-spacing:-0.054108px;}
.ls2e{letter-spacing:-0.052906px;}
.ls4f{letter-spacing:-0.048096px;}
.ls78{letter-spacing:-0.046292px;}
.lsa9{letter-spacing:-0.042084px;}
.ls2c{letter-spacing:-0.039679px;}
.ls4b{letter-spacing:-0.036072px;}
.ls34{letter-spacing:-0.035640px;}
.ls80{letter-spacing:-0.033066px;}
.ls47{letter-spacing:-0.030060px;}
.ls36{letter-spacing:-0.029700px;}
.ls65{letter-spacing:-0.029158px;}
.ls79{letter-spacing:-0.026453px;}
.lsa7{letter-spacing:-0.024048px;}
.ls37{letter-spacing:-0.023760px;}
.ls67{letter-spacing:-0.023327px;}
.ls2f{letter-spacing:-0.019840px;}
.ls51{letter-spacing:-0.018036px;}
.ls35{letter-spacing:-0.017820px;}
.ls64{letter-spacing:-0.017495px;}
.ls2b{letter-spacing:-0.015800px;}
.ls46{letter-spacing:-0.014364px;}
.ls5f{letter-spacing:-0.013933px;}
.ls8e{letter-spacing:-0.013226px;}
.lsa3{letter-spacing:-0.006012px;}
.lsd{letter-spacing:0.000000px;}
.lsc1{letter-spacing:0.000419px;}
.ls9f{letter-spacing:0.000435px;}
.lsc6{letter-spacing:0.000496px;}
.ls26{letter-spacing:0.000676px;}
.ls44{letter-spacing:0.000820px;}
.lsbf{letter-spacing:0.000989px;}
.ls24{letter-spacing:0.001036px;}
.lsb1{letter-spacing:0.001155px;}
.lsc4{letter-spacing:0.001188px;}
.lsb9{letter-spacing:0.001301px;}
.lsbd{letter-spacing:0.001565px;}
.ls28{letter-spacing:0.001584px;}
.lsc5{letter-spacing:0.001746px;}
.ls6{letter-spacing:0.001933px;}
.lsba{letter-spacing:0.002053px;}
.lsc0{letter-spacing:0.002697px;}
.ls8{letter-spacing:0.003488px;}
.lsab{letter-spacing:0.004200px;}
.lsb6{letter-spacing:0.004376px;}
.lsbe{letter-spacing:0.004800px;}
.ls22{letter-spacing:0.005940px;}
.ls41{letter-spacing:0.006012px;}
.ls59{letter-spacing:0.011663px;}
.ls3c{letter-spacing:0.012024px;}
.ls71{letter-spacing:0.013226px;}
.ls5d{letter-spacing:0.017495px;}
.ls20{letter-spacing:0.017820px;}
.ls3f{letter-spacing:0.018036px;}
.ls76{letter-spacing:0.019840px;}
.ls5a{letter-spacing:0.023327px;}
.ls1e{letter-spacing:0.023760px;}
.ls9c{letter-spacing:0.024048px;}
.ls73{letter-spacing:0.026453px;}
.ls19{letter-spacing:0.029700px;}
.ls40{letter-spacing:0.030060px;}
.ls15{letter-spacing:0.033066px;}
.ls1a{letter-spacing:0.035640px;}
.ls3e{letter-spacing:0.036072px;}
.ls74{letter-spacing:0.039679px;}
.ls23{letter-spacing:0.041580px;}
.ls8a{letter-spacing:0.046292px;}
.ls21{letter-spacing:0.047520px;}
.lsa5{letter-spacing:0.048096px;}
.ls5c{letter-spacing:0.052485px;}
.ls14{letter-spacing:0.052906px;}
.ls55{letter-spacing:0.055732px;}
.ls39{letter-spacing:0.057456px;}
.ls6a{letter-spacing:0.058316px;}
.ls18{letter-spacing:0.059519px;}
.ls42{letter-spacing:0.060120px;}
.ls10{letter-spacing:0.063202px;}
.ls17{letter-spacing:0.066132px;}
.ls1b{letter-spacing:0.071280px;}
.lsa4{letter-spacing:0.072144px;}
.ls13{letter-spacing:0.072745px;}
.ls89{letter-spacing:0.079358px;}
.ls1c{letter-spacing:0.089100px;}
.ls72{letter-spacing:0.105811px;}
.ls58{letter-spacing:0.110801px;}
.ls92{letter-spacing:0.112424px;}
.ls16{letter-spacing:0.125651px;}
.ls1d{letter-spacing:0.136620px;}
.ls48{letter-spacing:0.144288px;}
.ls66{letter-spacing:0.157454px;}
.ls1f{letter-spacing:0.160380px;}
.ls57{letter-spacing:0.162553px;}
.ls3b{letter-spacing:0.167580px;}
.ls75{letter-spacing:0.171943px;}
.ls9b{letter-spacing:0.172368px;}
.ls5b{letter-spacing:0.174949px;}
.ls56{letter-spacing:0.176486px;}
.ls3d{letter-spacing:0.180360px;}
.ls3a{letter-spacing:0.181944px;}
.ls12{letter-spacing:0.184338px;}
.ls70{letter-spacing:0.189605px;}
.ls82{letter-spacing:0.198396px;}
.ls11{letter-spacing:0.200138px;}
.ls91{letter-spacing:0.390179px;}
.ls86{letter-spacing:0.642088px;}
.ls85{letter-spacing:0.648088px;}
.lse{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.998354px;}
.ls7e{letter-spacing:6.831436px;}
.ls4{letter-spacing:10.461299px;}
.ls3{letter-spacing:10.461300px;}
.ls9d{letter-spacing:10.610880px;}
.lsb4{letter-spacing:11.695298px;}
.lsc{letter-spacing:11.954850px;}
.ls25{letter-spacing:12.621208px;}
.ls8b{letter-spacing:13.125380px;}
.lsc3{letter-spacing:13.421829px;}
.ls9e{letter-spacing:13.429457px;}
.lsb3{letter-spacing:13.448400px;}
.ls77{letter-spacing:13.449600px;}
.ls29{letter-spacing:13.449859px;}
.lsb5{letter-spacing:13.454400px;}
.lsc7{letter-spacing:13.585694px;}
.ls8c{letter-spacing:13.588654px;}
.ls8d{letter-spacing:13.588866px;}
.ls43{letter-spacing:13.594918px;}
.lsbb{letter-spacing:13.614101px;}
.ls27{letter-spacing:13.712421px;}
.lsb2{letter-spacing:13.932753px;}
.lsac{letter-spacing:14.884124px;}
.ls6f{letter-spacing:14.943337px;}
.lsb{letter-spacing:14.943900px;}
.ls0{letter-spacing:14.944200px;}
.ls97{letter-spacing:14.956168px;}
.lsb0{letter-spacing:15.124645px;}
.lsb8{letter-spacing:15.279812px;}
.lsae{letter-spacing:15.314241px;}
.ls98{letter-spacing:15.367078px;}
.ls88{letter-spacing:15.550285px;}
.lsaf{letter-spacing:15.900310px;}
.ls6d{letter-spacing:15.929847px;}
.ls99{letter-spacing:16.498066px;}
.lsc2{letter-spacing:16.626871px;}
.lsad{letter-spacing:16.659259px;}
.lsbc{letter-spacing:17.973929px;}
.lsa{letter-spacing:18.030447px;}
.ls96{letter-spacing:18.138520px;}
.ls6e{letter-spacing:18.402372px;}
.ls9a{letter-spacing:19.350285px;}
.ls38{letter-spacing:19.671024px;}
.lsb7{letter-spacing:20.738635px;}
.lsf{letter-spacing:20.918082px;}
.ls95{letter-spacing:21.991462px;}
.ls87{letter-spacing:22.114991px;}
.ls5{letter-spacing:62.743200px;}
.ls7{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.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;}
}
.wsd0{word-spacing:-66.132000px;}
.wsd1{word-spacing:-16.731396px;}
.ws178{word-spacing:-16.533000px;}
.ws3a{word-spacing:-16.480094px;}
.ws77{word-spacing:-15.030000px;}
.ws2{word-spacing:-14.943900px;}
.ws3b{word-spacing:-14.850000px;}
.wsa6{word-spacing:-14.736554px;}
.wsa5{word-spacing:-14.579100px;}
.ws4{word-spacing:-14.355754px;}
.ws24{word-spacing:-13.449600px;}
.ws39{word-spacing:-13.367138px;}
.ws76{word-spacing:-12.151944px;}
.ws34{word-spacing:-11.955150px;}
.wsa4{word-spacing:-11.787386px;}
.ws6{word-spacing:-11.357400px;}
.wsd{word-spacing:-10.460700px;}
.ws1bb{word-spacing:-3.523032px;}
.ws1a8{word-spacing:-3.511008px;}
.ws1ba{word-spacing:-3.414816px;}
.ws7d{word-spacing:-3.347434px;}
.ws185{word-spacing:-3.266921px;}
.ws186{word-spacing:-3.114817px;}
.ws1ca{word-spacing:-3.048556px;}
.wsf0{word-spacing:-2.969327px;}
.ws1a1{word-spacing:-2.851315px;}
.ws72{word-spacing:-2.749678px;}
.ws8f{word-spacing:-2.735460px;}
.ws184{word-spacing:-2.724638px;}
.wse2{word-spacing:-2.711412px;}
.ws48{word-spacing:-2.704799px;}
.ws8e{word-spacing:-2.651292px;}
.wsef{word-spacing:-2.579148px;}
.ws1f4{word-spacing:-2.474726px;}
.ws99{word-spacing:-2.410812px;}
.ws1a4{word-spacing:-2.350692px;}
.ws90{word-spacing:-2.338668px;}
.ws1a5{word-spacing:-2.326644px;}
.ws1d5{word-spacing:-2.259533px;}
.ws183{word-spacing:-2.222035px;}
.wsa0{word-spacing:-2.211697px;}
.ws182{word-spacing:-2.188969px;}
.ws1a0{word-spacing:-2.151922px;}
.ws181{word-spacing:-2.116224px;}
.ws19f{word-spacing:-2.092146px;}
.ws1f3{word-spacing:-1.936742px;}
.ws9{word-spacing:-1.908367px;}
.ws18a{word-spacing:-1.878149px;}
.ws18c{word-spacing:-1.845083px;}
.ws18b{word-spacing:-1.805404px;}
.ws1d6{word-spacing:-1.775347px;}
.ws18d{word-spacing:-1.739272px;}
.ws1cb{word-spacing:-1.733492px;}
.ws8b{word-spacing:-1.677348px;}
.ws9e{word-spacing:-1.617228px;}
.ws19e{word-spacing:-1.613941px;}
.wsc6{word-spacing:-1.554166px;}
.ws65{word-spacing:-1.494390px;}
.ws8{word-spacing:-1.322630px;}
.wsc4{word-spacing:-1.255288px;}
.wsf1{word-spacing:-1.163923px;}
.ws175{word-spacing:-1.135736px;}
.wsea{word-spacing:-1.064725px;}
.wse9{word-spacing:-1.044886px;}
.wsb6{word-spacing:-0.944726px;}
.ws9a{word-spacing:-0.943884px;}
.wsb7{word-spacing:-0.933062px;}
.ws9b{word-spacing:-0.871740px;}
.ws177{word-spacing:-0.836858px;}
.ws3f{word-spacing:-0.806976px;}
.ws41{word-spacing:-0.753178px;}
.ws66{word-spacing:-0.657532px;}
.ws5d{word-spacing:-0.629640px;}
.ws5e{word-spacing:-0.611820px;}
.ws5f{word-spacing:-0.599940px;}
.ws2a{word-spacing:-0.597756px;}
.wsb9{word-spacing:-0.594827px;}
.ws0{word-spacing:-0.537984px;}
.wsc5{word-spacing:-0.537980px;}
.wsb8{word-spacing:-0.507353px;}
.ws17a{word-spacing:-0.430387px;}
.ws49{word-spacing:-0.423245px;}
.wscb{word-spacing:-0.418429px;}
.wsd7{word-spacing:-0.403405px;}
.wsac{word-spacing:-0.373225px;}
.ws74{word-spacing:-0.358654px;}
.wse3{word-spacing:-0.357113px;}
.ws189{word-spacing:-0.350500px;}
.ws1c1{word-spacing:-0.330660px;}
.ws17c{word-spacing:-0.322790px;}
.ws1b6{word-spacing:-0.318636px;}
.ws97{word-spacing:-0.306612px;}
.ws64{word-spacing:-0.298878px;}
.wsb{word-spacing:-0.292900px;}
.ws1e1{word-spacing:-0.268992px;}
.wsbe{word-spacing:-0.244929px;}
.ws83{word-spacing:-0.240480px;}
.ws63{word-spacing:-0.239102px;}
.wsb5{word-spacing:-0.239097px;}
.ws20{word-spacing:-0.215194px;}
.ws1b4{word-spacing:-0.210420px;}
.wsbf{word-spacing:-0.192444px;}
.wsd9{word-spacing:-0.185170px;}
.ws67{word-spacing:-0.179327px;}
.ws1b7{word-spacing:-0.162324px;}
.ws1c{word-spacing:-0.161395px;}
.ws30{word-spacing:-0.119551px;}
.wsa8{word-spacing:-0.107597px;}
.wsde{word-spacing:-0.092585px;}
.ws42{word-spacing:-0.084269px;}
.ws81{word-spacing:-0.076608px;}
.wsa9{word-spacing:-0.074310px;}
.ws8a{word-spacing:-0.072144px;}
.ws5{word-spacing:-0.059776px;}
.ws86{word-spacing:-0.054108px;}
.ws22{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws1eb{word-spacing:-0.034282px;}
.ws1ee{word-spacing:-0.025526px;}
.ws1d4{word-spacing:-0.007075px;}
.ws1e0{word-spacing:-0.004742px;}
.ws1da{word-spacing:-0.003667px;}
.ws1df{word-spacing:-0.002957px;}
.ws33{word-spacing:-0.002857px;}
.ws3{word-spacing:-0.002476px;}
.ws1e4{word-spacing:-0.001075px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.000506px;}
.ws1b3{word-spacing:0.018036px;}
.ws1b1{word-spacing:0.024048px;}
.ws4a{word-spacing:0.033066px;}
.ws27{word-spacing:0.053798px;}
.ws85{word-spacing:0.054108px;}
.ws75{word-spacing:0.059776px;}
.ws88{word-spacing:0.060120px;}
.ws87{word-spacing:0.072144px;}
.ws84{word-spacing:0.078156px;}
.ws1ae{word-spacing:0.096192px;}
.ws187{word-spacing:0.105811px;}
.ws54{word-spacing:0.106920px;}
.ws1f{word-spacing:0.107597px;}
.ws4b{word-spacing:0.119038px;}
.ws7a{word-spacing:0.119551px;}
.ws1b0{word-spacing:0.120240px;}
.ws53{word-spacing:0.124740px;}
.wsd6{word-spacing:0.125651px;}
.ws1b2{word-spacing:0.126252px;}
.ws1af{word-spacing:0.138276px;}
.wsd5{word-spacing:0.145490px;}
.ws89{word-spacing:0.150300px;}
.ws1b{word-spacing:0.161395px;}
.ws1ad{word-spacing:0.168336px;}
.ws55{word-spacing:0.172260px;}
.wsc9{word-spacing:0.179327px;}
.wsf3{word-spacing:0.198396px;}
.wsf{word-spacing:0.209214px;}
.ws1d9{word-spacing:0.215194px;}
.ws7f{word-spacing:0.239102px;}
.ws96{word-spacing:0.246492px;}
.ws40{word-spacing:0.268992px;}
.ws11{word-spacing:0.292900px;}
.ws70{word-spacing:0.298878px;}
.ws1d1{word-spacing:0.322790px;}
.ws71{word-spacing:0.358654px;}
.ws1f2{word-spacing:0.376589px;}
.ws167{word-spacing:0.418429px;}
.ws179{word-spacing:0.430387px;}
.wsd8{word-spacing:0.443084px;}
.ws1bd{word-spacing:0.474948px;}
.ws19b{word-spacing:0.478205px;}
.ws4e{word-spacing:0.515830px;}
.ws1be{word-spacing:0.535068px;}
.ws7{word-spacing:0.562186px;}
.wsab{word-spacing:0.588996px;}
.ws173{word-spacing:0.597756px;}
.ws78{word-spacing:0.645581px;}
.ws1c9{word-spacing:0.657532px;}
.ws17d{word-spacing:0.699379px;}
.ws16c{word-spacing:0.717307px;}
.wsb1{word-spacing:0.769776px;}
.wsa1{word-spacing:0.777083px;}
.ws94{word-spacing:0.811620px;}
.ws1b5{word-spacing:0.829656px;}
.ws93{word-spacing:0.859716px;}
.ws26{word-spacing:0.914573px;}
.ws6f{word-spacing:0.956410px;}
.wsc1{word-spacing:1.016185px;}
.ws1f8{word-spacing:1.022170px;}
.ws4f{word-spacing:1.058112px;}
.wsa3{word-spacing:1.075961px;}
.wsc0{word-spacing:1.125507px;}
.ws1b8{word-spacing:1.148292px;}
.wsb3{word-spacing:1.154665px;}
.wsb4{word-spacing:1.166328px;}
.ws1d0{word-spacing:1.183565px;}
.ws19a{word-spacing:1.195512px;}
.ws9c{word-spacing:1.208412px;}
.wsb2{word-spacing:1.212981px;}
.ws9d{word-spacing:1.286568px;}
.ws2e{word-spacing:1.315063px;}
.ws1ec{word-spacing:1.344960px;}
.ws197{word-spacing:1.374839px;}
.ws1d3{word-spacing:1.398758px;}
.ws38{word-spacing:1.494390px;}
.ws1ab{word-spacing:1.533060px;}
.wscf{word-spacing:1.554166px;}
.ws1ac{word-spacing:1.575144px;}
.ws46{word-spacing:1.607008px;}
.ws1c5{word-spacing:1.613941px;}
.ws1ed{word-spacing:1.613952px;}
.ws1ce{word-spacing:1.667750px;}
.wscc{word-spacing:1.673717px;}
.ws190{word-spacing:1.679753px;}
.ws191{word-spacing:1.719432px;}
.ws1c8{word-spacing:1.733492px;}
.wsed{word-spacing:1.772338px;}
.ws1e3{word-spacing:1.829146px;}
.wsc2{word-spacing:1.853044px;}
.wsee{word-spacing:1.878149px;}
.ws92{word-spacing:1.881756px;}
.ws21{word-spacing:1.882944px;}
.ws32{word-spacing:1.912819px;}
.ws1cd{word-spacing:1.936742px;}
.ws164{word-spacing:1.972595px;}
.ws10{word-spacing:2.008454px;}
.ws2b{word-spacing:2.092146px;}
.wse4{word-spacing:2.109611px;}
.ws1e{word-spacing:2.151936px;}
.wsbc{word-spacing:2.163538px;}
.wse5{word-spacing:2.188969px;}
.ws1f6{word-spacing:2.205734px;}
.ws6d{word-spacing:2.271473px;}
.wsbd{word-spacing:2.320993px;}
.ws1ef{word-spacing:2.367130px;}
.ws50{word-spacing:2.413818px;}
.wsd4{word-spacing:2.440271px;}
.ws176{word-spacing:2.450800px;}
.wsd3{word-spacing:2.460110px;}
.ws1f0{word-spacing:2.474726px;}
.ws57{word-spacing:2.542320px;}
.ws95{word-spacing:2.549088px;}
.ws174{word-spacing:2.630126px;}
.ws199{word-spacing:2.689902px;}
.ws1e9{word-spacing:2.797517px;}
.wsbb{word-spacing:2.822514px;}
.wse1{word-spacing:2.856902px;}
.ws1a{word-spacing:2.869236px;}
.ws51{word-spacing:2.940300px;}
.ws1b9{word-spacing:2.945880px;}
.ws52{word-spacing:2.970000px;}
.ws198{word-spacing:2.988780px;}
.ws56{word-spacing:3.029400px;}
.ws7b{word-spacing:3.048556px;}
.ws1cf{word-spacing:3.066509px;}
.wsf2{word-spacing:3.161110px;}
.wsc3{word-spacing:3.168107px;}
.ws3c{word-spacing:3.174106px;}
.wsb0{word-spacing:3.178244px;}
.ws28{word-spacing:3.219667px;}
.ws1ea{word-spacing:3.220992px;}
.ws1a2{word-spacing:3.227882px;}
.ws1db{word-spacing:3.227904px;}
.ws1e7{word-spacing:3.229066px;}
.ws1d8{word-spacing:3.229200px;}
.wseb{word-spacing:3.247081px;}
.wsec{word-spacing:3.266921px;}
.ws1cc{word-spacing:3.287658px;}
.ws17b{word-spacing:3.335501px;}
.wsaf{word-spacing:3.353193px;}
.ws4c{word-spacing:3.385958px;}
.ws4d{word-spacing:3.399185px;}
.ws170{word-spacing:3.407209px;}
.ws1d7{word-spacing:3.443098px;}
.wsc7{word-spacing:3.466985px;}
.wsa7{word-spacing:3.496896px;}
.ws1e5{word-spacing:3.550694px;}
.ws29{word-spacing:3.586536px;}
.ws19c{word-spacing:3.646312px;}
.ws7e{word-spacing:3.706087px;}
.ws1c0{word-spacing:3.709404px;}
.ws16a{word-spacing:3.765863px;}
.ws1de{word-spacing:3.819686px;}
.ws1bf{word-spacing:3.847680px;}
.ws23{word-spacing:3.927283px;}
.wsca{word-spacing:3.945190px;}
.ws80{word-spacing:4.124516px;}
.ws1d{word-spacing:4.142477px;}
.ws172{word-spacing:4.184292px;}
.ws2f{word-spacing:4.244068px;}
.ws31{word-spacing:4.303843px;}
.ws19d{word-spacing:4.363619px;}
.ws16b{word-spacing:4.423394px;}
.ws1e6{word-spacing:4.519066px;}
.ws1c7{word-spacing:4.542946px;}
.ws25{word-spacing:4.572864px;}
.wsad{word-spacing:4.612827px;}
.ws1d2{word-spacing:4.680461px;}
.ws68{word-spacing:4.722272px;}
.ws17e{word-spacing:4.774730px;}
.ws69{word-spacing:4.782048px;}
.ws1a7{word-spacing:4.803588px;}
.wsa2{word-spacing:4.841824px;}
.wsae{word-spacing:4.951062px;}
.ws169{word-spacing:4.961375px;}
.ws194{word-spacing:5.021150px;}
.ws195{word-spacing:5.080926px;}
.ws9f{word-spacing:5.110200px;}
.ws3d{word-spacing:5.164646px;}
.ws1c4{word-spacing:5.194368px;}
.ws37{word-spacing:5.200477px;}
.ws3e{word-spacing:5.218445px;}
.ws180{word-spacing:5.257494px;}
.ws17f{word-spacing:5.264107px;}
.ws2c{word-spacing:5.379804px;}
.ws1e8{word-spacing:5.433638px;}
.ws73{word-spacing:5.499355px;}
.ws1f7{word-spacing:5.595034px;}
.ws196{word-spacing:5.618906px;}
.wsda{word-spacing:5.660899px;}
.ws1dc{word-spacing:5.756429px;}
.wsdc{word-spacing:5.766710px;}
.wscd{word-spacing:5.798233px;}
.wsdb{word-spacing:5.819616px;}
.ws1a6{word-spacing:5.831640px;}
.ws1c3{word-spacing:5.873724px;}
.ws1c2{word-spacing:5.891760px;}
.ws36{word-spacing:5.917784px;}
.wse6{word-spacing:5.965106px;}
.ws35{word-spacing:5.977560px;}
.ws6a{word-spacing:6.037336px;}
.ws17{word-spacing:6.067206px;}
.wse7{word-spacing:6.130436px;}
.ws18{word-spacing:6.150892px;}
.ws2d{word-spacing:6.216662px;}
.wse8{word-spacing:6.269314px;}
.ws188{word-spacing:6.322219px;}
.ws171{word-spacing:6.395989px;}
.ws6e{word-spacing:6.455765px;}
.ws1a9{word-spacing:6.667308px;}
.ws1aa{word-spacing:6.703380px;}
.wsdd{word-spacing:6.950473px;}
.ws6c{word-spacing:6.993745px;}
.ws6b{word-spacing:7.053521px;}
.ws7c{word-spacing:7.113296px;}
.ws1f5{word-spacing:7.155187px;}
.ws16e{word-spacing:7.173072px;}
.ws47{word-spacing:7.175322px;}
.ws8d{word-spacing:7.274520px;}
.ws59{word-spacing:7.276500px;}
.ws58{word-spacing:7.306200px;}
.ws8c{word-spacing:7.328628px;}
.ws5a{word-spacing:7.359660px;}
.ws165{word-spacing:7.412174px;}
.ws168{word-spacing:7.471950px;}
.wsce{word-spacing:7.651277px;}
.wsc8{word-spacing:7.830604px;}
.ws79{word-spacing:7.890379px;}
.ws1e2{word-spacing:7.908365px;}
.ws166{word-spacing:8.069706px;}
.ws1c6{word-spacing:8.189257px;}
.ws18f{word-spacing:8.332632px;}
.ws193{word-spacing:8.428360px;}
.ws18e{word-spacing:8.431830px;}
.ws15{word-spacing:8.661460px;}
.wse0{word-spacing:8.702971px;}
.ws98{word-spacing:8.819604px;}
.ws16f{word-spacing:9.026116px;}
.ws16d{word-spacing:9.145667px;}
.wsba{word-spacing:9.931283px;}
.ws5b{word-spacing:10.115820px;}
.ws5c{word-spacing:10.127700px;}
.ws60{word-spacing:10.846440px;}
.ws62{word-spacing:10.911780px;}
.ws61{word-spacing:10.917720px;}
.ws1f1{word-spacing:11.136269px;}
.wsaa{word-spacing:11.271862px;}
.ws1a3{word-spacing:11.615688px;}
.ws82{word-spacing:11.620476px;}
.wsdf{word-spacing:12.346844px;}
.wsd2{word-spacing:12.777257px;}
.ws43{word-spacing:12.782524px;}
.ws1bc{word-spacing:13.406760px;}
.wsa{word-spacing:15.129541px;}
.wse{word-spacing:15.481836px;}
.ws12{word-spacing:16.142252px;}
.ws13{word-spacing:16.151321px;}
.ws44{word-spacing:17.167867px;}
.ws45{word-spacing:17.187707px;}
.ws91{word-spacing:17.699328px;}
.ws14{word-spacing:17.699504px;}
.ws1dd{word-spacing:21.035174px;}
.ws16{word-spacing:27.448877px;}
.ws192{word-spacing:28.569024px;}
.wsf7{word-spacing:59.482800px;}
.ws12f{word-spacing:68.622624px;}
.ws11e{word-spacing:69.640963px;}
.ws135{word-spacing:69.855350px;}
.ws137{word-spacing:70.963085px;}
.ws162{word-spacing:70.986883px;}
.ws136{word-spacing:71.016682px;}
.ws130{word-spacing:71.231069px;}
.wsf6{word-spacing:71.284666px;}
.ws132{word-spacing:71.391859px;}
.ws109{word-spacing:71.499053px;}
.ws160{word-spacing:71.713440px;}
.ws149{word-spacing:72.493594px;}
.wsf9{word-spacing:72.707981px;}
.ws119{word-spacing:72.922368px;}
.wsfa{word-spacing:72.952166px;}
.ws11f{word-spacing:73.136755px;}
.ws13a{word-spacing:73.464336px;}
.ws11d{word-spacing:74.137296px;}
.ws163{word-spacing:74.375482px;}
.ws117{word-spacing:74.482675px;}
.ws104{word-spacing:74.566070px;}
.wsfd{word-spacing:74.589869px;}
.ws10d{word-spacing:77.335306px;}
.ws10c{word-spacing:77.442499px;}
.ws158{word-spacing:77.984467px;}
.ws133{word-spacing:78.651427px;}
.wsfb{word-spacing:78.764621px;}
.ws161{word-spacing:79.086202px;}
.ws15a{word-spacing:79.139798px;}
.wsfe{word-spacing:79.759162px;}
.ws153{word-spacing:79.943750px;}
.ws147{word-spacing:80.187936px;}
.ws116{word-spacing:80.241533px;}
.ws142{word-spacing:80.563114px;}
.ws10f{word-spacing:80.938291px;}
.ws105{word-spacing:81.748243px;}
.ws10e{word-spacing:81.825638px;}
.ws107{word-spacing:81.917011px;}
.ws110{word-spacing:81.918269px;}
.ws144{word-spacing:81.918374px;}
.ws15e{word-spacing:81.918470px;}
.ws14f{word-spacing:81.919123px;}
.ws10b{word-spacing:81.919229px;}
.ws14a{word-spacing:81.919373px;}
.ws13e{word-spacing:81.944688px;}
.ws145{word-spacing:81.944794px;}
.ws12b{word-spacing:81.945370px;}
.ws15b{word-spacing:81.945859px;}
.ws127{word-spacing:81.946445px;}
.ws129{word-spacing:81.946656px;}
.ws154{word-spacing:81.946762px;}
.ws152{word-spacing:81.947366px;}
.ws148{word-spacing:81.947702px;}
.ws138{word-spacing:81.947770px;}
.ws15c{word-spacing:81.948317px;}
.wsf4{word-spacing:81.948701px;}
.ws12a{word-spacing:81.969312px;}
.ws12e{word-spacing:81.970387px;}
.ws155{word-spacing:81.970608px;}
.ws120{word-spacing:81.992429px;}
.ws111{word-spacing:82.046026px;}
.ws113{word-spacing:82.123421px;}
.ws15d{word-spacing:82.153219px;}
.ws11c{word-spacing:82.474800px;}
.ws151{word-spacing:82.605792px;}
.ws13c{word-spacing:82.957171px;}
.ws131{word-spacing:83.040566px;}
.ws134{word-spacing:83.147760px;}
.ws128{word-spacing:83.362147px;}
.ws121{word-spacing:83.576534px;}
.ws102{word-spacing:83.767123px;}
.ws140{word-spacing:83.790922px;}
.ws118{word-spacing:83.844518px;}
.ws150{word-spacing:84.035107px;}
.ws14b{word-spacing:84.624672px;}
.ws100{word-spacing:84.708067px;}
.ws112{word-spacing:85.649011px;}
.ws159{word-spacing:85.970592px;}
.ws139{word-spacing:86.131382px;}
.ws14c{word-spacing:86.184979px;}
.ws146{word-spacing:86.399366px;}
.ws103{word-spacing:86.560157px;}
.ws13d{word-spacing:87.048528px;}
.wsfc{word-spacing:87.691690px;}
.ws143{word-spacing:88.203859px;}
.ws141{word-spacing:90.490723px;}
.ws108{word-spacing:91.806845px;}
.ws14d{word-spacing:91.836643px;}
.ws13b{word-spacing:91.860442px;}
.ws15f{word-spacing:91.997434px;}
.ws14e{word-spacing:92.021232px;}
.ws115{word-spacing:92.128426px;}
.ws124{word-spacing:92.158224px;}
.ws13f{word-spacing:92.289216px;}
.ws106{word-spacing:93.259958px;}
.ws157{word-spacing:94.415290px;}
.ws12c{word-spacing:95.546822px;}
.ws10a{word-spacing:95.630218px;}
.ws126{word-spacing:96.678355px;}
.ws101{word-spacing:98.077872px;}
.ws125{word-spacing:98.423251px;}
.ws123{word-spacing:99.638179px;}
.ws122{word-spacing:100.525526px;}
.ws11b{word-spacing:132.074400px;}
.ws12d{word-spacing:140.413824px;}
.ws156{word-spacing:141.079776px;}
.ws11a{word-spacing:153.863424px;}
.wsff{word-spacing:162.847757px;}
.wsf5{word-spacing:162.901555px;}
.wsf8{word-spacing:176.297357px;}
.ws114{word-spacing:176.351155px;}
._0{margin-left:-11.835648px;}
._20{margin-left:-7.926398px;}
._1{margin-left:-6.635400px;}
._7{margin-left:-5.492143px;}
._b{margin-left:-4.399495px;}
._4{margin-left:-3.001945px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:2.969536px;}
._8{width:12.124337px;}
._9{width:13.453032px;}
._10{width:14.547898px;}
._c{width:15.955795px;}
._e{width:17.107891px;}
._11{width:18.470660px;}
._12{width:20.383480px;}
._3c{width:21.646334px;}
._f{width:22.699493px;}
._3d{width:23.790689px;}
._1e{width:24.814441px;}
._17{width:26.181713px;}
._3f{width:27.243070px;}
._1b{width:28.512961px;}
._d{width:30.203232px;}
._19{width:31.501741px;}
._a{width:32.637384px;}
._3b{width:34.258986px;}
._1d{width:36.224014px;}
._15{width:37.247766px;}
._1c{width:38.495486px;}
._3a{width:41.730936px;}
._3{width:54.472273px;}
._26{width:60.469402px;}
._40{width:61.868160px;}
._22{width:75.178694px;}
._25{width:78.545664px;}
._24{width:79.890624px;}
._21{width:83.279923px;}
._23{width:90.488909px;}
._33{width:108.027187px;}
._34{width:110.932301px;}
._30{width:112.869043px;}
._35{width:115.343770px;}
._36{width:117.054553px;}
._2e{width:118.840666px;}
._2d{width:120.185626px;}
._2c{width:121.195822px;}
._37{width:122.229965px;}
._38{width:125.834458px;}
._31{width:131.148526px;}
._32{width:135.571968px;}
._27{width:137.885299px;}
._2f{width:154.634573px;}
._28{width:162.847757px;}
._2a{width:167.313024px;}
._2b{width:176.297357px;}
._29{width:189.746957px;}
._13{width:1013.210638px;}
._1a{width:2081.546674px;}
._3e{width:2122.195310px;}
._18{width:2145.958154px;}
._1f{width:2334.523958px;}
._16{width:2360.663086px;}
._39{width:2532.908700px;}
._14{width:2556.818700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs10{font-size:46.443600px;}
.fs4{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs12{font-size:52.380000px;}
.fsa{font-size:52.668000px;}
.fs9{font-size:53.798400px;}
.fs14{font-size:54.000000px;}
.fs13{font-size:56.058000px;}
.fs11{font-size:58.316400px;}
.fsc{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsb{font-size:66.132000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y10b{bottom:-553.693305px;}
.y121{bottom:-461.910356px;}
.y97{bottom:-448.700550px;}
.y120{bottom:-440.824167px;}
.y11f{bottom:-419.638781px;}
.y11e{bottom:-398.453395px;}
.yab{bottom:-379.661748px;}
.y11d{bottom:-377.367207px;}
.y1f6{bottom:-377.225550px;}
.yaa{bottom:-360.492486px;}
.y11c{bottom:-356.181821px;}
.y1c5{bottom:-353.668755px;}
.ya9{bottom:-341.233044px;}
.y11b{bottom:-335.095632px;}
.y20f{bottom:-322.229250px;}
.ya8{bottom:-322.063782px;}
.y11a{bottom:-313.910246px;}
.y20e{bottom:-302.969808px;}
.ya7{bottom:-302.804340px;}
.yc2{bottom:-296.578034px;}
.y119{bottom:-292.724860px;}
.y20d{bottom:-283.800546px;}
.ya6{bottom:-283.544898px;}
.y1d2{bottom:-272.085746px;}
.y118{bottom:-271.637018px;}
.y20c{bottom:-264.541104px;}
.ya5{bottom:-264.375636px;}
.y1d1{bottom:-250.900360px;}
.y117{bottom:-250.451632px;}
.y20b{bottom:-245.371842px;}
.ya4{bottom:-245.116194px;}
.yd1{bottom:-241.662003px;}
.y53{bottom:-238.051605px;}
.y1d0{bottom:-229.714973px;}
.y116{bottom:-229.266246px;}
.y20a{bottom:-226.112400px;}
.ya3{bottom:-225.945429px;}
.yd0{bottom:-223.067819px;}
.y1cf{bottom:-208.628785px;}
.y115{bottom:-208.180058px;}
.y209{bottom:-206.852958px;}
.ya2{bottom:-206.685987px;}
.ycf{bottom:-204.386161px;}
.y208{bottom:-187.683696px;}
.y1ce{bottom:-187.443399px;}
.ya1{bottom:-187.426545px;}
.y114{bottom:-186.994672px;}
.yce{bottom:-185.704502px;}
.y207{bottom:-168.424254px;}
.ya0{bottom:-168.257283px;}
.ycd{bottom:-167.110318px;}
.y1cd{bottom:-166.357211px;}
.y113{bottom:-165.908483px;}
.y206{bottom:-149.254992px;}
.y9f{bottom:-148.997841px;}
.ycc{bottom:-148.428659px;}
.y66{bottom:-147.466605px;}
.y112{bottom:-144.723097px;}
.y205{bottom:-129.995550px;}
.ycb{bottom:-129.834475px;}
.y9e{bottom:-129.828579px;}
.y65{bottom:-128.261100px;}
.y1cc{bottom:-125.371904px;}
.y111{bottom:-123.537711px;}
.y9d{bottom:-110.569137px;}
.y64{bottom:-109.253100px;}
.yca{bottom:-106.787833px;}
.y1cb{bottom:-104.186518px;}
.y110{bottom:-102.451523px;}
.y204{bottom:-92.820375px;}
.y63{bottom:-90.245100px;}
.y1ca{bottom:-83.100329px;}
.y10f{bottom:-76.413701px;}
.y203{bottom:-73.560933px;}
.y9c{bottom:-73.398444px;}
.y62{bottom:-71.237100px;}
.yc9{bottom:-70.731737px;}
.y1c9{bottom:-61.914943px;}
.y202{bottom:-54.301491px;}
.y9b{bottom:-54.139002px;}
.y61{bottom:-52.129605px;}
.yc8{bottom:-52.050079px;}
.y1c8{bottom:-40.828022px;}
.y10e{bottom:-35.428394px;}
.y201{bottom:-35.042049px;}
.y9a{bottom:-34.879560px;}
.yc7{bottom:-33.368420px;}
.y60{bottom:-33.121605px;}
.y1c7{bottom:-19.642636px;}
.y200{bottom:-15.872787px;}
.y99{bottom:-15.620118px;}
.yc6{bottom:-14.774236px;}
.y10d{bottom:-14.243008px;}
.y5f{bottom:-14.113605px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y1c6{bottom:6.790324px;}
.y1ff{bottom:8.157177px;}
.y98{bottom:8.319666px;}
.yc5{bottom:8.534829px;}
.y5e{bottom:10.541890px;}
.y10c{bottom:12.189953px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y4a{bottom:31.890000px;}
.y218{bottom:90.139500px;}
.ybe{bottom:91.018500px;}
.y20{bottom:102.823500px;}
.y28f{bottom:103.557000px;}
.y1f2{bottom:106.246500px;}
.y259{bottom:107.817000px;}
.y217{bottom:108.969000px;}
.y49{bottom:109.671000px;}
.ybd{bottom:109.848000px;}
.yd5{bottom:114.667500px;}
.y107{bottom:120.145500px;}
.y1f{bottom:120.711000px;}
.y28e{bottom:120.817500px;}
.y1f1{bottom:125.076000px;}
.y258{bottom:125.077500px;}
.y6e{bottom:126.697500px;}
.y216{bottom:127.798500px;}
.y48{bottom:128.500500px;}
.ybc{bottom:128.677500px;}
.y1d8{bottom:129.223500px;}
.yd4{bottom:133.900500px;}
.y15e{bottom:133.975500px;}
.y28d{bottom:138.078000px;}
.y1e{bottom:138.600000px;}
.y106{bottom:138.975000px;}
.y198{bottom:139.564500px;}
.y257{bottom:142.336500px;}
.y1f0{bottom:143.905500px;}
.y6d{bottom:145.930500px;}
.y215{bottom:146.628000px;}
.y47{bottom:147.330000px;}
.ybb{bottom:147.507000px;}
.y1d7{bottom:148.455000px;}
.y123{bottom:149.734500px;}
.y15d{bottom:150.414000px;}
.yd3{bottom:153.133500px;}
.y28c{bottom:155.338500px;}
.y197{bottom:156.003000px;}
.y1d{bottom:156.487500px;}
.y105{bottom:157.804500px;}
.y256{bottom:159.597000px;}
.y1ef{bottom:162.735000px;}
.y6c{bottom:165.163500px;}
.y214{bottom:165.457500px;}
.y46{bottom:166.159500px;}
.yba{bottom:166.336500px;}
.y15c{bottom:166.852500px;}
.y1d6{bottom:167.688000px;}
.y122{bottom:168.967500px;}
.yd2{bottom:172.366500px;}
.y196{bottom:172.441500px;}
.y28b{bottom:172.599000px;}
.y1c{bottom:174.375000px;}
.y104{bottom:176.634000px;}
.y255{bottom:176.857500px;}
.y1ee{bottom:181.564500px;}
.y1c1{bottom:182.269500px;}
.y15b{bottom:183.291000px;}
.y6b{bottom:184.396500px;}
.y45{bottom:184.989000px;}
.yb9{bottom:185.164500px;}
.y1d5{bottom:186.921000px;}
.y195{bottom:188.880000px;}
.y28a{bottom:189.858000px;}
.y108{bottom:191.395500px;}
.y1b{bottom:192.264000px;}
.y254{bottom:194.118000px;}
.ybf{bottom:194.796000px;}
.y103{bottom:195.463500px;}
.y213{bottom:199.023000px;}
.y15a{bottom:199.729500px;}
.y22c{bottom:200.394000px;}
.y1c0{bottom:201.099000px;}
.y6a{bottom:203.629500px;}
.y44{bottom:203.818500px;}
.yb8{bottom:203.994000px;}
.y1ed{bottom:204.877500px;}
.y194{bottom:205.318500px;}
.y1d4{bottom:206.154000px;}
.y289{bottom:207.118500px;}
.y1a{bottom:210.151500px;}
.y253{bottom:211.378500px;}
.y102{bottom:214.291500px;}
.y159{bottom:216.168000px;}
.y212{bottom:218.256000px;}
.y22b{bottom:219.223500px;}
.y1bf{bottom:219.928500px;}
.y193{bottom:221.757000px;}
.y43{bottom:222.648000px;}
.yb7{bottom:222.823500px;}
.y69{bottom:222.862500px;}
.y288{bottom:224.379000px;}
.y1d3{bottom:225.387000px;}
.y19{bottom:228.039000px;}
.y252{bottom:228.639000px;}
.y158{bottom:232.606500px;}
.y101{bottom:233.121000px;}
.y211{bottom:237.489000px;}
.y22a{bottom:238.053000px;}
.y192{bottom:238.195500px;}
.y1ec{bottom:238.501500px;}
.y1be{bottom:238.758000px;}
.y42{bottom:241.477500px;}
.y287{bottom:241.639500px;}
.yb6{bottom:241.653000px;}
.y68{bottom:242.095500px;}
.y251{bottom:245.899500px;}
.y1c2{bottom:247.816500px;}
.y157{bottom:249.043500px;}
.y100{bottom:251.950500px;}
.y191{bottom:254.632500px;}
.y210{bottom:256.722000px;}
.y229{bottom:256.882500px;}
.y1eb{bottom:257.331000px;}
.y1bd{bottom:257.587500px;}
.y286{bottom:258.900000px;}
.y41{bottom:260.305500px;}
.yb5{bottom:260.482500px;}
.y67{bottom:261.327000px;}
.y250{bottom:263.160000px;}
.y156{bottom:265.482000px;}
.yff{bottom:270.780000px;}
.y190{bottom:271.071000px;}
.y228{bottom:275.712000px;}
.y1ea{bottom:276.160500px;}
.y1bc{bottom:276.417000px;}
.y40{bottom:279.135000px;}
.y1f3{bottom:279.151500px;}
.yb4{bottom:279.312000px;}
.y24e{bottom:280.419000px;}
.y24f{bottom:280.420500px;}
.y155{bottom:281.920500px;}
.y50{bottom:283.756500px;}
.y18f{bottom:287.509500px;}
.y285{bottom:293.421000px;}
.yfe{bottom:294.093000px;}
.y227{bottom:294.541500px;}
.y1e9{bottom:294.990000px;}
.y1bb{bottom:295.246500px;}
.y24d{bottom:297.679500px;}
.y3f{bottom:297.964500px;}
.yb3{bottom:298.141500px;}
.y154{bottom:298.359000px;}
.y18e{bottom:303.948000px;}
.y18{bottom:307.299000px;}
.y284{bottom:310.681500px;}
.y226{bottom:313.371000px;}
.y1e8{bottom:313.819500px;}
.y153{bottom:314.797500px;}
.y24c{bottom:314.940000px;}
.y3e{bottom:316.794000px;}
.yb2{bottom:316.971000px;}
.y1ba{bottom:318.559500px;}
.y18d{bottom:320.386500px;}
.y17{bottom:325.186500px;}
.yfd{bottom:327.717000px;}
.y283{bottom:327.940500px;}
.y152{bottom:331.236000px;}
.y225{bottom:332.200500px;}
.y1e7{bottom:332.649000px;}
.yb1{bottom:335.800500px;}
.y18c{bottom:336.825000px;}
.y3d{bottom:340.107000px;}
.y16{bottom:343.074000px;}
.y282{bottom:345.201000px;}
.yfc{bottom:346.546500px;}
.y151{bottom:347.674500px;}
.y24b{bottom:349.461000px;}
.y224{bottom:351.030000px;}
.y1e6{bottom:351.478500px;}
.y1b9{bottom:352.183500px;}
.y18b{bottom:353.263500px;}
.yb0{bottom:354.630000px;}
.y15{bottom:360.963000px;}
.y281{bottom:362.461500px;}
.y150{bottom:364.113000px;}
.yfb{bottom:365.376000px;}
.y24a{bottom:366.721500px;}
.y18a{bottom:369.702000px;}
.y223{bottom:369.859500px;}
.y1e5{bottom:370.308000px;}
.y1b8{bottom:371.013000px;}
.yaf{bottom:373.459500px;}
.y280{bottom:379.722000px;}
.y14f{bottom:380.551500px;}
.y249{bottom:383.982000px;}
.yfa{bottom:384.205500px;}
.y189{bottom:386.140500px;}
.y222{bottom:388.689000px;}
.y1e4{bottom:389.137500px;}
.y1b7{bottom:389.842500px;}
.y27f{bottom:396.982500px;}
.y14e{bottom:396.990000px;}
.y14{bottom:399.024000px;}
.y248{bottom:401.242500px;}
.y188{bottom:402.579000px;}
.yf9{bottom:403.035000px;}
.yae{bottom:407.025000px;}
.y221{bottom:407.518500px;}
.y1e3{bottom:407.967000px;}
.y1b6{bottom:408.672000px;}
.y14d{bottom:413.428500px;}
.y27e{bottom:414.243000px;}
.y3c{bottom:414.907500px;}
.y13{bottom:416.913000px;}
.y247{bottom:418.503000px;}
.y186{bottom:419.016000px;}
.y187{bottom:419.017500px;}
.yf8{bottom:421.864500px;}
.y93{bottom:425.002500px;}
.yad{bottom:426.258000px;}
.y220{bottom:426.348000px;}
.y1e2{bottom:426.796500px;}
.y1b5{bottom:427.501500px;}
.y14c{bottom:429.865500px;}
.y27d{bottom:431.503500px;}
.y12{bottom:434.800500px;}
.y185{bottom:435.454500px;}
.y246{bottom:435.762000px;}
.yf7{bottom:440.694000px;}
.y92{bottom:443.832000px;}
.y21f{bottom:445.177500px;}
.yac{bottom:445.491000px;}
.y1e1{bottom:445.626000px;}
.y14b{bottom:446.304000px;}
.y1b4{bottom:446.331000px;}
.y27c{bottom:448.764000px;}
.y184{bottom:451.893000px;}
.y3b{bottom:452.298000px;}
.y245{bottom:453.022500px;}
.yf6{bottom:459.523500px;}
.y91{bottom:462.661500px;}
.y14a{bottom:462.742500px;}
.y21e{bottom:464.007000px;}
.y1e0{bottom:464.454000px;}
.y1b3{bottom:465.160500px;}
.y27b{bottom:466.024500px;}
.y94{bottom:467.920500px;}
.y183{bottom:468.331500px;}
.y244{bottom:470.283000px;}
.y11{bottom:470.622000px;}
.y3a{bottom:471.754500px;}
.yf5{bottom:478.353000px;}
.y149{bottom:479.181000px;}
.y90{bottom:481.491000px;}
.y21d{bottom:482.836500px;}
.y1df{bottom:483.283500px;}
.y1b2{bottom:483.990000px;}
.y182{bottom:484.770000px;}
.y243{bottom:487.543500px;}
.y39{bottom:491.211000px;}
.y148{bottom:495.619500px;}
.yf4{bottom:497.182500px;}
.y8e{bottom:500.320500px;}
.y27a{bottom:500.544000px;}
.y181{bottom:501.208500px;}
.y21c{bottom:501.666000px;}
.y1de{bottom:502.113000px;}
.y1b1{bottom:502.819500px;}
.y242{bottom:504.804000px;}
.y8f{bottom:505.744500px;}
.y10{bottom:506.442000px;}
.y38{bottom:510.669000px;}
.y147{bottom:512.058000px;}
.yf3{bottom:516.012000px;}
.y180{bottom:517.647000px;}
.y279{bottom:517.804500px;}
.y21b{bottom:520.495500px;}
.y1dd{bottom:520.942500px;}
.y1af{bottom:521.649000px;}
.y241{bottom:522.064500px;}
.y8d{bottom:523.633500px;}
.yf{bottom:524.329500px;}
.y1b0{bottom:527.073000px;}
.y146{bottom:528.496500px;}
.y37{bottom:530.125500px;}
.y17f{bottom:534.085500px;}
.yf2{bottom:534.841500px;}
.y278{bottom:535.065000px;}
.y21a{bottom:539.323500px;}
.y240{bottom:539.325000px;}
.y1dc{bottom:539.772000px;}
.y1ae{bottom:540.477000px;}
.ye{bottom:542.218500px;}
.y8c{bottom:543.807000px;}
.y145{bottom:544.935000px;}
.y36{bottom:549.582000px;}
.y17e{bottom:550.524000px;}
.y277{bottom:552.325500px;}
.yf1{bottom:553.671000px;}
.y23f{bottom:556.585500px;}
.y1db{bottom:558.601500px;}
.y1ad{bottom:559.306500px;}
.yd{bottom:560.106000px;}
.y144{bottom:561.373500px;}
.y219{bottom:562.636500px;}
.y17d{bottom:566.962500px;}
.y1fe{bottom:567.597825px;}
.y35{bottom:569.040000px;}
.y276{bottom:569.586000px;}
.yf0{bottom:572.500500px;}
.y23e{bottom:573.846000px;}
.y8b{bottom:577.431000px;}
.y143{bottom:577.812000px;}
.yc{bottom:577.993500px;}
.y1ac{bottom:578.136000px;}
.y17c{bottom:583.401000px;}
.y275{bottom:586.846500px;}
.y1fd{bottom:586.857267px;}
.y34{bottom:588.496500px;}
.y23d{bottom:591.105000px;}
.yef{bottom:591.330000px;}
.y142{bottom:594.249000px;}
.yb{bottom:595.882500px;}
.y8a{bottom:596.260500px;}
.y1aa{bottom:596.965500px;}
.y17b{bottom:599.838000px;}
.y1ab{bottom:602.391000px;}
.y274{bottom:604.107000px;}
.y1fc{bottom:606.026529px;}
.y33{bottom:607.954500px;}
.y141{bottom:610.687500px;}
.y23c{bottom:612.849000px;}
.ya{bottom:613.770000px;}
.yee{bottom:614.641500px;}
.y89{bottom:615.090000px;}
.y1a9{bottom:615.795000px;}
.y17a{bottom:616.276500px;}
.y1da{bottom:620.515500px;}
.y273{bottom:621.366000px;}
.y1fb{bottom:625.285971px;}
.y140{bottom:627.126000px;}
.y32{bottom:627.411000px;}
.y179{bottom:632.715000px;}
.y88{bottom:633.919500px;}
.y1a8{bottom:634.624500px;}
.y7{bottom:636.141055px;}
.y272{bottom:638.626500px;}
.y13f{bottom:643.564500px;}
.y1fa{bottom:644.455233px;}
.y23b{bottom:646.473000px;}
.y31{bottom:646.867500px;}
.yed{bottom:648.265500px;}
.y178{bottom:649.153500px;}
.y87{bottom:652.749000px;}
.y1a7{bottom:653.454000px;}
.y271{bottom:655.887000px;}
.y13e{bottom:660.003000px;}
.y1f9{bottom:663.714675px;}
.y177{bottom:665.592000px;}
.y30{bottom:666.325500px;}
.yec{bottom:667.095000px;}
.y86{bottom:671.578500px;}
.y1a6{bottom:672.283500px;}
.y23a{bottom:673.014000px;}
.y270{bottom:673.147500px;}
.y13d{bottom:676.441500px;}
.y176{bottom:682.030500px;}
.y1f8{bottom:682.974117px;}
.y96{bottom:685.389585px;}
.y2f{bottom:685.782000px;}
.yeb{bottom:685.924500px;}
.y85{bottom:690.408000px;}
.y1a4{bottom:691.113000px;}
.y13c{bottom:692.880000px;}
.y10a{bottom:693.805844px;}
.y95{bottom:695.019450px;}
.y1a5{bottom:696.538500px;}
.y175{bottom:698.469000px;}
.y239{bottom:699.553500px;}
.y1f7{bottom:702.144882px;}
.y109{bottom:704.398695px;}
.yea{bottom:704.754000px;}
.y2e{bottom:705.238500px;}
.y26f{bottom:707.668500px;}
.y84{bottom:709.237500px;}
.y13b{bottom:709.318500px;}
.y1a3{bottom:709.942500px;}
.y174{bottom:714.907500px;}
.ye9{bottom:723.583500px;}
.y2d{bottom:724.696500px;}
.y26e{bottom:724.929000px;}
.y13a{bottom:725.757000px;}
.y238{bottom:726.094500px;}
.y83{bottom:728.067000px;}
.y1a2{bottom:728.772000px;}
.y173{bottom:731.346000px;}
.yc4{bottom:731.815643px;}
.y26d{bottom:742.189500px;}
.y139{bottom:742.195500px;}
.ye8{bottom:742.413000px;}
.y2c{bottom:744.153000px;}
.y82{bottom:746.896500px;}
.y1a1{bottom:747.601500px;}
.y172{bottom:747.784500px;}
.yc3{bottom:750.411286px;}
.y237{bottom:752.635500px;}
.y1f5{bottom:756.864585px;}
.y137{bottom:758.632500px;}
.y138{bottom:758.634000px;}
.y5d{bottom:758.982533px;}
.y26c{bottom:759.450000px;}
.ye7{bottom:761.242500px;}
.y2b{bottom:763.611000px;}
.y171{bottom:764.221500px;}
.y81{bottom:765.726000px;}
.y1a0{bottom:766.431000px;}
.y1f4{bottom:766.494450px;}
.y236{bottom:770.209500px;}
.y136{bottom:775.071000px;}
.y26b{bottom:776.709000px;}
.y5c{bottom:780.068721px;}
.ye6{bottom:780.072000px;}
.y170{bottom:780.660000px;}
.y2a{bottom:783.067500px;}
.y80{bottom:784.555500px;}
.y19f{bottom:785.260500px;}
.y235{bottom:787.783500px;}
.y135{bottom:791.509500px;}
.y26a{bottom:793.969500px;}
.y16f{bottom:797.098500px;}
.ye5{bottom:798.901500px;}
.y5b{bottom:801.254107px;}
.y7f{bottom:803.385000px;}
.yc1{bottom:803.489397px;}
.y19e{bottom:804.090000px;}
.y234{bottom:805.357500px;}
.y134{bottom:807.948000px;}
.y269{bottom:811.230000px;}
.yc0{bottom:812.830367px;}
.y16e{bottom:813.537000px;}
.ye4{bottom:817.731000px;}
.y29{bottom:821.653500px;}
.y7e{bottom:822.214500px;}
.y5a{bottom:822.439494px;}
.y19d{bottom:822.919500px;}
.y233{bottom:822.931500px;}
.y133{bottom:824.386500px;}
.y268{bottom:828.490500px;}
.y16d{bottom:829.975500px;}
.ye3{bottom:836.560500px;}
.y28{bottom:837.792000px;}
.y232{bottom:840.505500px;}
.y132{bottom:840.825000px;}
.y7d{bottom:841.044000px;}
.y19c{bottom:841.749000px;}
.y59{bottom:843.525682px;}
.y267{bottom:845.751000px;}
.y16c{bottom:846.414000px;}
.ye2{bottom:855.390000px;}
.y131{bottom:857.263500px;}
.y231{bottom:858.079500px;}
.y27{bottom:858.271500px;}
.y7c{bottom:859.873500px;}
.y19b{bottom:860.578500px;}
.y16b{bottom:862.852500px;}
.y266{bottom:863.011500px;}
.y58{bottom:864.711068px;}
.y26{bottom:870.072000px;}
.y130{bottom:873.702000px;}
.ye1{bottom:874.219500px;}
.y7b{bottom:878.703000px;}
.y16a{bottom:879.291000px;}
.y19a{bottom:879.408000px;}
.y265{bottom:880.272000px;}
.y230{bottom:884.620500px;}
.y57{bottom:885.797256px;}
.y12f{bottom:890.140500px;}
.y25{bottom:890.551500px;}
.ye0{bottom:893.049000px;}
.y1c4{bottom:893.830394px;}
.y169{bottom:895.729500px;}
.y7a{bottom:897.532500px;}
.y22f{bottom:902.194500px;}
.y199{bottom:902.721000px;}
.y1c3{bottom:904.423245px;}
.y12e{bottom:906.579000px;}
.y24{bottom:906.690000px;}
.y56{bottom:906.982643px;}
.ydf{bottom:911.878500px;}
.y168{bottom:912.168000px;}
.y290{bottom:914.791500px;}
.y264{bottom:914.793000px;}
.y79{bottom:916.362000px;}
.y22e{bottom:919.768500px;}
.y23{bottom:922.830000px;}
.y12d{bottom:923.017500px;}
.y55{bottom:928.168029px;}
.y167{bottom:928.606500px;}
.yde{bottom:930.708000px;}
.y263{bottom:932.052000px;}
.y22{bottom:934.629000px;}
.y78{bottom:935.191500px;}
.y22d{bottom:937.342500px;}
.y12c{bottom:939.454500px;}
.y166{bottom:945.043500px;}
.y54{bottom:949.255870px;}
.y262{bottom:949.312500px;}
.ydd{bottom:949.537500px;}
.y77{bottom:954.021000px;}
.y21{bottom:955.108500px;}
.y12b{bottom:955.893000px;}
.y165{bottom:961.482000px;}
.y261{bottom:966.573000px;}
.ydc{bottom:968.367000px;}
.y12a{bottom:972.331500px;}
.y76{bottom:972.849000px;}
.y164{bottom:977.920500px;}
.y260{bottom:983.833500px;}
.ydb{bottom:987.196500px;}
.y75{bottom:991.678500px;}
.y163{bottom:994.359000px;}
.y6{bottom:995.302500px;}
.y129{bottom:995.973000px;}
.y25f{bottom:1001.094000px;}
.yda{bottom:1006.026000px;}
.y52{bottom:1009.447544px;}
.y74{bottom:1010.508000px;}
.y162{bottom:1010.797500px;}
.y25e{bottom:1018.354500px;}
.y128{bottom:1019.613000px;}
.y51{bottom:1020.040395px;}
.yd9{bottom:1024.855500px;}
.y73{bottom:1029.337500px;}
.y161{bottom:1034.439000px;}
.y25d{bottom:1035.615000px;}
.y127{bottom:1036.051500px;}
.y5{bottom:1041.199500px;}
.yd8{bottom:1043.685000px;}
.y72{bottom:1048.167000px;}
.y4f{bottom:1050.840000px;}
.y25c{bottom:1052.875500px;}
.y160{bottom:1058.079000px;}
.yd7{bottom:1062.513000px;}
.y71{bottom:1066.996500px;}
.y126{bottom:1067.671500px;}
.y4{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y25b{bottom:1070.134500px;}
.y1d9{bottom:1072.422000px;}
.y15f{bottom:1074.517500px;}
.yd6{bottom:1081.342500px;}
.y70{bottom:1085.826000px;}
.y125{bottom:1086.904500px;}
.y25a{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y6f{bottom:1104.655500px;}
.y124{bottom:1106.137500px;}
.y4c{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h27{height:25.608038px;}
.hf{height:26.110157px;}
.h10{height:26.296208px;}
.hd{height:26.302208px;}
.h1d{height:26.461718px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.he{height:34.813397px;}
.h17{height:35.052500px;}
.hc{height:38.202476px;}
.h12{height:38.896243px;}
.h13{height:39.165235px;}
.h28{height:39.434227px;}
.h24{height:42.940005px;}
.h22{height:42.951259px;}
.h15{height:43.217759px;}
.h16{height:43.516637px;}
.h11{height:43.660208px;}
.h4{height:43.815515px;}
.h1f{height:44.279648px;}
.h26{height:48.694852px;}
.h1a{height:48.707613px;}
.h14{height:49.117939px;}
.h2{height:50.930649px;}
.h23{height:53.931280px;}
.h6{height:54.541601px;}
.h18{height:54.575123px;}
.h1c{height:54.933398px;}
.h20{height:55.599258px;}
.h1b{height:61.159184px;}
.h5{height:77.792486px;}
.h3{height:94.491000px;}
.h2a{height:557.082000px;}
.h1e{height:651.681000px;}
.h25{height:663.663000px;}
.h21{height:716.754825px;}
.h19{height:743.438850px;}
.h29{height:871.780800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w5{width:496.117500px;}
.w9{width:516.090000px;}
.w4{width:526.650300px;}
.w6{width:566.877749px;}
.w7{width:708.756015px;}
.w8{width:746.909790px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1d{left:-208.261350px;}
.x4e{left:-183.549000px;}
.xc7{left:-180.394500px;}
.x9b{left:-79.345035px;}
.x67{left:-76.085296px;}
.xba{left:-64.314360px;}
.x6a{left:-45.180520px;}
.xbc{left:-29.267707px;}
.x0{left:0.000000px;}
.x1e{left:6.866046px;}
.x50{left:12.021360px;}
.xc8{left:15.175860px;}
.x4{left:29.274117px;}
.x1f{left:41.912699px;}
.x51{left:43.881954px;}
.xc9{left:47.035500px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:58.555600px;}
.xb9{left:73.001160px;}
.x9e{left:85.890000px;}
.x9a{left:92.077335px;}
.x68{left:113.617953px;}
.x9c{left:135.782361px;}
.x9f{left:143.140500px;}
.x6b{left:144.522380px;}
.xbe{left:150.810571px;}
.x9d{left:170.829014px;}
.xbd{left:185.857224px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x16{left:255.480000px;}
.xb6{left:258.660000px;}
.xa5{left:262.068000px;}
.xa6{left:263.170500px;}
.xa7{left:264.682500px;}
.xab{left:265.887000px;}
.xa8{left:266.916000px;}
.xaa{left:268.308000px;}
.xa9{left:269.511000px;}
.x6{left:271.221000px;}
.x2a{left:274.054500px;}
.xb7{left:280.851000px;}
.x9{left:282.786000px;}
.x2b{left:287.505000px;}
.x6c{left:290.782500px;}
.xb8{left:292.668000px;}
.x70{left:295.282500px;}
.x6d{left:297.508500px;}
.xa0{left:301.690500px;}
.x84{left:307.041000px;}
.x21{left:308.218500px;}
.x8{left:309.451500px;}
.xce{left:310.732500px;}
.x22{left:311.863500px;}
.x85{left:314.512500px;}
.x78{left:316.614000px;}
.x23{left:318.588000px;}
.xb2{left:319.765500px;}
.x79{left:324.085500px;}
.xb3{left:326.572500px;}
.xa3{left:328.939500px;}
.xc5{left:332.059500px;}
.x5e{left:333.147000px;}
.x37{left:335.710500px;}
.x5f{left:340.468500px;}
.xb4{left:341.956500px;}
.x38{left:343.182000px;}
.xc2{left:344.808000px;}
.x39{left:346.992000px;}
.xb5{left:351.051000px;}
.x17{left:356.037000px;}
.xa2{left:357.708000px;}
.x76{left:360.555000px;}
.x3a{left:361.936500px;}
.x3d{left:363.264000px;}
.x3b{left:365.748000px;}
.x3e{left:370.737000px;}
.xc6{left:373.380000px;}
.x3f{left:374.404500px;}
.x77{left:375.499500px;}
.x3c{left:380.691000px;}
.x40{left:381.877500px;}
.x41{left:385.546500px;}
.xa{left:391.861500px;}
.x42{left:393.018000px;}
.x55{left:395.481000px;}
.x43{left:396.687000px;}
.xb{left:399.333000px;}
.xc{left:402.994500px;}
.xd{left:410.466000px;}
.x44{left:411.630000px;}
.x56{left:414.112500px;}
.x45{left:415.299000px;}
.x6e{left:418.396500px;}
.xa1{left:422.368500px;}
.x6f{left:426.615000px;}
.x46{left:430.243500px;}
.x72{left:439.519500px;}
.x47{left:447.060000px;}
.x60{left:452.596500px;}
.x48{left:454.531500px;}
.x49{left:458.193000px;}
.xca{left:460.593000px;}
.x7a{left:463.969500px;}
.x61{left:467.541000px;}
.x62{left:471.351000px;}
.x4a{left:473.137500px;}
.x12{left:475.839000px;}
.x7b{left:478.912500px;}
.x4f{left:480.020991px;}
.x7c{left:482.574000px;}
.x63{left:486.295500px;}
.x13{left:490.783500px;}
.x89{left:493.417500px;}
.x14{left:494.560500px;}
.x7d{left:497.518500px;}
.x52{left:508.072500px;}
.x15{left:509.503500px;}
.x8a{left:512.157000px;}
.x20{left:514.835858px;}
.x64{left:524.212500px;}
.x73{left:527.581500px;}
.x8b{left:530.896500px;}
.x57{left:531.961500px;}
.x5b{left:535.812000px;}
.x74{left:542.526000px;}
.x8c{left:545.841000px;}
.x58{left:546.904500px;}
.x59{left:550.591500px;}
.x5c{left:558.094500px;}
.x8d{left:560.137500px;}
.x5a{left:565.536000px;}
.x24{left:569.244000px;}
.x5d{left:573.037500px;}
.x8e{left:575.082000px;}
.x25{left:577.462500px;}
.x18{left:596.272500px;}
.x1c{left:599.920500px;}
.x69{left:601.974065px;}
.xbf{left:604.296000px;}
.xa4{left:610.174500px;}
.x19{left:611.215500px;}
.x1a{left:615.027000px;}
.x82{left:620.736000px;}
.x8f{left:625.342500px;}
.x83{left:628.207500px;}
.x1b{left:629.971500px;}
.x90{left:643.989000px;}
.x91{left:647.691000px;}
.x98{left:660.321000px;}
.x92{left:662.635500px;}
.x26{left:663.766500px;}
.x65{left:665.623500px;}
.xc0{left:671.694000px;}
.x99{left:675.265500px;}
.x27{left:677.215500px;}
.xd0{left:678.742500px;}
.x66{left:680.568000px;}
.x93{left:684.984000px;}
.xac{left:687.744000px;}
.x10{left:688.876500px;}
.x2f{left:691.074000px;}
.xad{left:694.551000px;}
.x30{left:697.800000px;}
.x35{left:698.844000px;}
.x94{left:699.928500px;}
.x11{left:703.821000px;}
.x96{left:706.608000px;}
.xae{left:709.935000px;}
.x36{left:713.788500px;}
.xc1{left:715.398000px;}
.x95{left:718.575000px;}
.x97{left:721.552500px;}
.x2c{left:723.094500px;}
.xbb{left:725.309987px;}
.xcb{left:726.615000px;}
.x71{left:727.959000px;}
.x2d{left:731.313000px;}
.xd4{left:732.640500px;}
.xd5{left:733.866000px;}
.x7e{left:734.899500px;}
.xcc{left:737.896500px;}
.x86{left:741.708000px;}
.x87{left:745.425000px;}
.xd9{left:748.596000px;}
.x7f{left:749.842500px;}
.xd2{left:751.105500px;}
.x80{left:753.504000px;}
.x4b{left:754.912500px;}
.x88{left:756.613500px;}
.xd6{left:760.764000px;}
.xcd{left:764.124000px;}
.x4c{left:765.456000px;}
.xaf{left:767.235000px;}
.x81{left:768.448500px;}
.x28{left:770.263500px;}
.x75{left:772.173000px;}
.xb0{left:774.040500px;}
.x29{left:776.235000px;}
.xd3{left:778.003500px;}
.x31{left:782.617500px;}
.xd1{left:787.828500px;}
.x32{left:789.343500px;}
.xb1{left:797.434500px;}
.x53{left:798.871500px;}
.x33{left:800.139000px;}
.xd7{left:810.295500px;}
.x54{left:812.320500px;}
.x34{left:815.082000px;}
.xcf{left:816.463500px;}
.x2e{left:819.147000px;}
.xc3{left:820.497000px;}
.xe{left:825.519000px;}
.x4d{left:829.119000px;}
.xc4{left:831.028500px;}
.xf{left:832.990500px;}
.xd8{left:837.195000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls54{letter-spacing:-1.517696pt;}
.ls7a{letter-spacing:-0.305677pt;}
.ls83{letter-spacing:-0.205744pt;}
.ls61{letter-spacing:-0.191796pt;}
.ls7f{letter-spacing:-0.182230pt;}
.ls4a{letter-spacing:-0.176352pt;}
.ls7c{letter-spacing:-0.158717pt;}
.ls32{letter-spacing:-0.146960pt;}
.ls8f{letter-spacing:-0.141082pt;}
.ls50{letter-spacing:-0.138944pt;}
.ls60{letter-spacing:-0.134776pt;}
.ls6b{letter-spacing:-0.124408pt;}
.ls94{letter-spacing:-0.123446pt;}
.ls4c{letter-spacing:-0.122912pt;}
.ls31{letter-spacing:-0.117568pt;}
.ls7d{letter-spacing:-0.111690pt;}
.ls62{letter-spacing:-0.108857pt;}
.ls52{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.105811pt;}
.ls53{letter-spacing:-0.101536pt;}
.ls7b{letter-spacing:-0.099933pt;}
.lsa6{letter-spacing:-0.096192pt;}
.ls68{letter-spacing:-0.093306pt;}
.lsa1{letter-spacing:-0.090848pt;}
.ls2a{letter-spacing:-0.088950pt;}
.ls84{letter-spacing:-0.088176pt;}
.lsa2{letter-spacing:-0.085504pt;}
.ls81{letter-spacing:-0.082298pt;}
.ls45{letter-spacing:-0.080864pt;}
.ls4e{letter-spacing:-0.080160pt;}
.ls5e{letter-spacing:-0.078438pt;}
.ls90{letter-spacing:-0.076419pt;}
.lsa8{letter-spacing:-0.074816pt;}
.lsa0{letter-spacing:-0.069472pt;}
.ls63{letter-spacing:-0.067388pt;}
.ls93{letter-spacing:-0.064662pt;}
.ls6c{letter-spacing:-0.062204pt;}
.lsaa{letter-spacing:-0.058784pt;}
.ls69{letter-spacing:-0.057020pt;}
.ls49{letter-spacing:-0.053440pt;}
.ls2d{letter-spacing:-0.052906pt;}
.ls33{letter-spacing:-0.052800pt;}
.ls4d{letter-spacing:-0.048096pt;}
.ls2e{letter-spacing:-0.047027pt;}
.ls4f{letter-spacing:-0.042752pt;}
.ls78{letter-spacing:-0.041149pt;}
.lsa9{letter-spacing:-0.037408pt;}
.ls2c{letter-spacing:-0.035270pt;}
.ls4b{letter-spacing:-0.032064pt;}
.ls34{letter-spacing:-0.031680pt;}
.ls80{letter-spacing:-0.029392pt;}
.ls47{letter-spacing:-0.026720pt;}
.ls36{letter-spacing:-0.026400pt;}
.ls65{letter-spacing:-0.025918pt;}
.ls79{letter-spacing:-0.023514pt;}
.lsa7{letter-spacing:-0.021376pt;}
.ls37{letter-spacing:-0.021120pt;}
.ls67{letter-spacing:-0.020735pt;}
.ls2f{letter-spacing:-0.017635pt;}
.ls51{letter-spacing:-0.016032pt;}
.ls35{letter-spacing:-0.015840pt;}
.ls64{letter-spacing:-0.015551pt;}
.ls2b{letter-spacing:-0.014045pt;}
.ls46{letter-spacing:-0.012768pt;}
.ls5f{letter-spacing:-0.012385pt;}
.ls8e{letter-spacing:-0.011757pt;}
.lsa3{letter-spacing:-0.005344pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc1{letter-spacing:0.000372pt;}
.ls9f{letter-spacing:0.000387pt;}
.lsc6{letter-spacing:0.000441pt;}
.ls26{letter-spacing:0.000600pt;}
.ls44{letter-spacing:0.000729pt;}
.lsbf{letter-spacing:0.000879pt;}
.ls24{letter-spacing:0.000921pt;}
.lsb1{letter-spacing:0.001026pt;}
.lsc4{letter-spacing:0.001056pt;}
.lsb9{letter-spacing:0.001156pt;}
.lsbd{letter-spacing:0.001391pt;}
.ls28{letter-spacing:0.001408pt;}
.lsc5{letter-spacing:0.001552pt;}
.ls6{letter-spacing:0.001718pt;}
.lsba{letter-spacing:0.001825pt;}
.lsc0{letter-spacing:0.002397pt;}
.ls8{letter-spacing:0.003100pt;}
.lsab{letter-spacing:0.003733pt;}
.lsb6{letter-spacing:0.003890pt;}
.lsbe{letter-spacing:0.004267pt;}
.ls22{letter-spacing:0.005280pt;}
.ls41{letter-spacing:0.005344pt;}
.ls59{letter-spacing:0.010367pt;}
.ls3c{letter-spacing:0.010688pt;}
.ls71{letter-spacing:0.011757pt;}
.ls5d{letter-spacing:0.015551pt;}
.ls20{letter-spacing:0.015840pt;}
.ls3f{letter-spacing:0.016032pt;}
.ls76{letter-spacing:0.017635pt;}
.ls5a{letter-spacing:0.020735pt;}
.ls1e{letter-spacing:0.021120pt;}
.ls9c{letter-spacing:0.021376pt;}
.ls73{letter-spacing:0.023514pt;}
.ls19{letter-spacing:0.026400pt;}
.ls40{letter-spacing:0.026720pt;}
.ls15{letter-spacing:0.029392pt;}
.ls1a{letter-spacing:0.031680pt;}
.ls3e{letter-spacing:0.032064pt;}
.ls74{letter-spacing:0.035270pt;}
.ls23{letter-spacing:0.036960pt;}
.ls8a{letter-spacing:0.041149pt;}
.ls21{letter-spacing:0.042240pt;}
.lsa5{letter-spacing:0.042752pt;}
.ls5c{letter-spacing:0.046653pt;}
.ls14{letter-spacing:0.047027pt;}
.ls55{letter-spacing:0.049540pt;}
.ls39{letter-spacing:0.051072pt;}
.ls6a{letter-spacing:0.051837pt;}
.ls18{letter-spacing:0.052906pt;}
.ls42{letter-spacing:0.053440pt;}
.ls10{letter-spacing:0.056179pt;}
.ls17{letter-spacing:0.058784pt;}
.ls1b{letter-spacing:0.063360pt;}
.lsa4{letter-spacing:0.064128pt;}
.ls13{letter-spacing:0.064662pt;}
.ls89{letter-spacing:0.070541pt;}
.ls1c{letter-spacing:0.079200pt;}
.ls72{letter-spacing:0.094054pt;}
.ls58{letter-spacing:0.098490pt;}
.ls92{letter-spacing:0.099933pt;}
.ls16{letter-spacing:0.111690pt;}
.ls1d{letter-spacing:0.121440pt;}
.ls48{letter-spacing:0.128256pt;}
.ls66{letter-spacing:0.139959pt;}
.ls1f{letter-spacing:0.142560pt;}
.ls57{letter-spacing:0.144491pt;}
.ls3b{letter-spacing:0.148960pt;}
.ls75{letter-spacing:0.152838pt;}
.ls9b{letter-spacing:0.153216pt;}
.ls5b{letter-spacing:0.155510pt;}
.ls56{letter-spacing:0.156876pt;}
.ls3d{letter-spacing:0.160320pt;}
.ls3a{letter-spacing:0.161728pt;}
.ls12{letter-spacing:0.163856pt;}
.ls70{letter-spacing:0.168538pt;}
.ls82{letter-spacing:0.176352pt;}
.ls11{letter-spacing:0.177901pt;}
.ls91{letter-spacing:0.346826pt;}
.ls86{letter-spacing:0.570745pt;}
.ls85{letter-spacing:0.576078pt;}
.lse{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.665203pt;}
.ls7e{letter-spacing:6.072387pt;}
.ls4{letter-spacing:9.298932pt;}
.ls3{letter-spacing:9.298933pt;}
.ls9d{letter-spacing:9.431893pt;}
.lsb4{letter-spacing:10.395820pt;}
.lsc{letter-spacing:10.626533pt;}
.ls25{letter-spacing:11.218852pt;}
.ls8b{letter-spacing:11.667005pt;}
.lsc3{letter-spacing:11.930514pt;}
.ls9e{letter-spacing:11.937295pt;}
.lsb3{letter-spacing:11.954133pt;}
.ls77{letter-spacing:11.955200pt;}
.ls29{letter-spacing:11.955430pt;}
.lsb5{letter-spacing:11.959467pt;}
.lsc7{letter-spacing:12.076173pt;}
.ls8c{letter-spacing:12.078804pt;}
.ls8d{letter-spacing:12.078992pt;}
.ls43{letter-spacing:12.084371pt;}
.lsbb{letter-spacing:12.101423pt;}
.ls27{letter-spacing:12.188818pt;}
.lsb2{letter-spacing:12.384669pt;}
.lsac{letter-spacing:13.230333pt;}
.ls6f{letter-spacing:13.282966pt;}
.lsb{letter-spacing:13.283467pt;}
.ls0{letter-spacing:13.283733pt;}
.ls97{letter-spacing:13.294371pt;}
.lsb0{letter-spacing:13.444129pt;}
.lsb8{letter-spacing:13.582055pt;}
.lsae{letter-spacing:13.612659pt;}
.ls98{letter-spacing:13.659625pt;}
.ls88{letter-spacing:13.822476pt;}
.lsaf{letter-spacing:14.133609pt;}
.ls6d{letter-spacing:14.159864pt;}
.ls99{letter-spacing:14.664947pt;}
.lsc2{letter-spacing:14.779441pt;}
.lsad{letter-spacing:14.808230pt;}
.lsbc{letter-spacing:15.976826pt;}
.lsa{letter-spacing:16.027064pt;}
.ls96{letter-spacing:16.123129pt;}
.ls6e{letter-spacing:16.357664pt;}
.ls9a{letter-spacing:17.200253pt;}
.ls38{letter-spacing:17.485354pt;}
.lsb7{letter-spacing:18.434342pt;}
.lsf{letter-spacing:18.593851pt;}
.ls95{letter-spacing:19.547966pt;}
.ls87{letter-spacing:19.657770pt;}
.ls5{letter-spacing:55.771733pt;}
.ls7{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.wsd0{word-spacing:-58.784000pt;}
.wsd1{word-spacing:-14.872352pt;}
.ws178{word-spacing:-14.696000pt;}
.ws3a{word-spacing:-14.648973pt;}
.ws77{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.283467pt;}
.ws3b{word-spacing:-13.200000pt;}
.wsa6{word-spacing:-13.099159pt;}
.wsa5{word-spacing:-12.959200pt;}
.ws4{word-spacing:-12.760670pt;}
.ws24{word-spacing:-11.955200pt;}
.ws39{word-spacing:-11.881901pt;}
.ws76{word-spacing:-10.801728pt;}
.ws34{word-spacing:-10.626800pt;}
.wsa4{word-spacing:-10.477676pt;}
.ws6{word-spacing:-10.095467pt;}
.wsd{word-spacing:-9.298400pt;}
.ws1bb{word-spacing:-3.131584pt;}
.ws1a8{word-spacing:-3.120896pt;}
.ws1ba{word-spacing:-3.035392pt;}
.ws7d{word-spacing:-2.975497pt;}
.ws185{word-spacing:-2.903930pt;}
.ws186{word-spacing:-2.768726pt;}
.ws1ca{word-spacing:-2.709827pt;}
.wsf0{word-spacing:-2.639402pt;}
.ws1a1{word-spacing:-2.534502pt;}
.ws72{word-spacing:-2.444158pt;}
.ws8f{word-spacing:-2.431520pt;}
.ws184{word-spacing:-2.421901pt;}
.wse2{word-spacing:-2.410144pt;}
.ws48{word-spacing:-2.404266pt;}
.ws8e{word-spacing:-2.356704pt;}
.wsef{word-spacing:-2.292576pt;}
.ws1f4{word-spacing:-2.199757pt;}
.ws99{word-spacing:-2.142944pt;}
.ws1a4{word-spacing:-2.089504pt;}
.ws90{word-spacing:-2.078816pt;}
.ws1a5{word-spacing:-2.068128pt;}
.ws1d5{word-spacing:-2.008474pt;}
.ws183{word-spacing:-1.975142pt;}
.wsa0{word-spacing:-1.965953pt;}
.ws182{word-spacing:-1.945750pt;}
.ws1a0{word-spacing:-1.912819pt;}
.ws181{word-spacing:-1.881088pt;}
.ws19f{word-spacing:-1.859685pt;}
.ws1f3{word-spacing:-1.721549pt;}
.ws9{word-spacing:-1.696326pt;}
.ws18a{word-spacing:-1.669466pt;}
.ws18c{word-spacing:-1.640074pt;}
.ws18b{word-spacing:-1.604803pt;}
.ws1d6{word-spacing:-1.578086pt;}
.ws18d{word-spacing:-1.546019pt;}
.ws1cb{word-spacing:-1.540882pt;}
.ws8b{word-spacing:-1.490976pt;}
.ws9e{word-spacing:-1.437536pt;}
.ws19e{word-spacing:-1.434614pt;}
.wsc6{word-spacing:-1.381481pt;}
.ws65{word-spacing:-1.328347pt;}
.ws8{word-spacing:-1.175671pt;}
.wsc4{word-spacing:-1.115811pt;}
.wsf1{word-spacing:-1.034598pt;}
.ws175{word-spacing:-1.009543pt;}
.wsea{word-spacing:-0.946422pt;}
.wse9{word-spacing:-0.928787pt;}
.wsb6{word-spacing:-0.839756pt;}
.ws9a{word-spacing:-0.839008pt;}
.wsb7{word-spacing:-0.829389pt;}
.ws9b{word-spacing:-0.774880pt;}
.ws177{word-spacing:-0.743874pt;}
.ws3f{word-spacing:-0.717312pt;}
.ws41{word-spacing:-0.669491pt;}
.ws66{word-spacing:-0.584473pt;}
.ws5d{word-spacing:-0.559680pt;}
.ws5e{word-spacing:-0.543840pt;}
.ws5f{word-spacing:-0.533280pt;}
.ws2a{word-spacing:-0.531339pt;}
.wsb9{word-spacing:-0.528735pt;}
.ws0{word-spacing:-0.478208pt;}
.wsc5{word-spacing:-0.478205pt;}
.wsb8{word-spacing:-0.450980pt;}
.ws17a{word-spacing:-0.382566pt;}
.ws49{word-spacing:-0.376218pt;}
.wscb{word-spacing:-0.371937pt;}
.wsd7{word-spacing:-0.358582pt;}
.wsac{word-spacing:-0.331756pt;}
.ws74{word-spacing:-0.318803pt;}
.wse3{word-spacing:-0.317434pt;}
.ws189{word-spacing:-0.311555pt;}
.ws1c1{word-spacing:-0.293920pt;}
.ws17c{word-spacing:-0.286925pt;}
.ws1b6{word-spacing:-0.283232pt;}
.ws97{word-spacing:-0.272544pt;}
.ws64{word-spacing:-0.265669pt;}
.wsb{word-spacing:-0.260355pt;}
.ws1e1{word-spacing:-0.239104pt;}
.wsbe{word-spacing:-0.217715pt;}
.ws83{word-spacing:-0.213760pt;}
.ws63{word-spacing:-0.212535pt;}
.wsb5{word-spacing:-0.212531pt;}
.ws20{word-spacing:-0.191283pt;}
.ws1b4{word-spacing:-0.187040pt;}
.wsbf{word-spacing:-0.171061pt;}
.wsd9{word-spacing:-0.164595pt;}
.ws67{word-spacing:-0.159402pt;}
.ws1b7{word-spacing:-0.144288pt;}
.ws1c{word-spacing:-0.143462pt;}
.ws30{word-spacing:-0.106268pt;}
.wsa8{word-spacing:-0.095642pt;}
.wsde{word-spacing:-0.082298pt;}
.ws42{word-spacing:-0.074906pt;}
.ws81{word-spacing:-0.068096pt;}
.wsa9{word-spacing:-0.066053pt;}
.ws8a{word-spacing:-0.064128pt;}
.ws5{word-spacing:-0.053134pt;}
.ws86{word-spacing:-0.048096pt;}
.ws22{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws1eb{word-spacing:-0.030473pt;}
.ws1ee{word-spacing:-0.022690pt;}
.ws1d4{word-spacing:-0.006289pt;}
.ws1e0{word-spacing:-0.004215pt;}
.ws1da{word-spacing:-0.003260pt;}
.ws1df{word-spacing:-0.002628pt;}
.ws33{word-spacing:-0.002540pt;}
.ws3{word-spacing:-0.002201pt;}
.ws1e4{word-spacing:-0.000956pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.000450pt;}
.ws1b3{word-spacing:0.016032pt;}
.ws1b1{word-spacing:0.021376pt;}
.ws4a{word-spacing:0.029392pt;}
.ws27{word-spacing:0.047821pt;}
.ws85{word-spacing:0.048096pt;}
.ws75{word-spacing:0.053134pt;}
.ws88{word-spacing:0.053440pt;}
.ws87{word-spacing:0.064128pt;}
.ws84{word-spacing:0.069472pt;}
.ws1ae{word-spacing:0.085504pt;}
.ws187{word-spacing:0.094054pt;}
.ws54{word-spacing:0.095040pt;}
.ws1f{word-spacing:0.095642pt;}
.ws4b{word-spacing:0.105811pt;}
.ws7a{word-spacing:0.106268pt;}
.ws1b0{word-spacing:0.106880pt;}
.ws53{word-spacing:0.110880pt;}
.wsd6{word-spacing:0.111690pt;}
.ws1b2{word-spacing:0.112224pt;}
.ws1af{word-spacing:0.122912pt;}
.wsd5{word-spacing:0.129325pt;}
.ws89{word-spacing:0.133600pt;}
.ws1b{word-spacing:0.143462pt;}
.ws1ad{word-spacing:0.149632pt;}
.ws55{word-spacing:0.153120pt;}
.wsc9{word-spacing:0.159402pt;}
.wsf3{word-spacing:0.176352pt;}
.wsf{word-spacing:0.185968pt;}
.ws1d9{word-spacing:0.191283pt;}
.ws7f{word-spacing:0.212535pt;}
.ws96{word-spacing:0.219104pt;}
.ws40{word-spacing:0.239104pt;}
.ws11{word-spacing:0.260355pt;}
.ws70{word-spacing:0.265669pt;}
.ws1d1{word-spacing:0.286925pt;}
.ws71{word-spacing:0.318803pt;}
.ws1f2{word-spacing:0.334746pt;}
.ws167{word-spacing:0.371937pt;}
.ws179{word-spacing:0.382566pt;}
.wsd8{word-spacing:0.393853pt;}
.ws1bd{word-spacing:0.422176pt;}
.ws19b{word-spacing:0.425071pt;}
.ws4e{word-spacing:0.458515pt;}
.ws1be{word-spacing:0.475616pt;}
.ws7{word-spacing:0.499721pt;}
.wsab{word-spacing:0.523552pt;}
.ws173{word-spacing:0.531339pt;}
.ws78{word-spacing:0.573850pt;}
.ws1c9{word-spacing:0.584473pt;}
.ws17d{word-spacing:0.621670pt;}
.ws16c{word-spacing:0.637606pt;}
.wsb1{word-spacing:0.684246pt;}
.wsa1{word-spacing:0.690740pt;}
.ws94{word-spacing:0.721440pt;}
.ws1b5{word-spacing:0.737472pt;}
.ws93{word-spacing:0.764192pt;}
.ws26{word-spacing:0.812954pt;}
.ws6f{word-spacing:0.850142pt;}
.wsc1{word-spacing:0.903276pt;}
.ws1f8{word-spacing:0.908595pt;}
.ws4f{word-spacing:0.940544pt;}
.wsa3{word-spacing:0.956410pt;}
.wsc0{word-spacing:1.000450pt;}
.ws1b8{word-spacing:1.020704pt;}
.wsb3{word-spacing:1.026369pt;}
.wsb4{word-spacing:1.036736pt;}
.ws1d0{word-spacing:1.052058pt;}
.ws19a{word-spacing:1.062677pt;}
.ws9c{word-spacing:1.074144pt;}
.wsb2{word-spacing:1.078205pt;}
.ws9d{word-spacing:1.143616pt;}
.ws2e{word-spacing:1.168945pt;}
.ws1ec{word-spacing:1.195520pt;}
.ws197{word-spacing:1.222079pt;}
.ws1d3{word-spacing:1.243341pt;}
.ws38{word-spacing:1.328347pt;}
.ws1ab{word-spacing:1.362720pt;}
.wscf{word-spacing:1.381481pt;}
.ws1ac{word-spacing:1.400128pt;}
.ws46{word-spacing:1.428451pt;}
.ws1c5{word-spacing:1.434614pt;}
.ws1ed{word-spacing:1.434624pt;}
.ws1ce{word-spacing:1.482445pt;}
.wscc{word-spacing:1.487748pt;}
.ws190{word-spacing:1.493114pt;}
.ws191{word-spacing:1.528384pt;}
.ws1c8{word-spacing:1.540882pt;}
.wsed{word-spacing:1.575411pt;}
.ws1e3{word-spacing:1.625907pt;}
.wsc2{word-spacing:1.647150pt;}
.wsee{word-spacing:1.669466pt;}
.ws92{word-spacing:1.672672pt;}
.ws21{word-spacing:1.673728pt;}
.ws32{word-spacing:1.700284pt;}
.ws1cd{word-spacing:1.721549pt;}
.ws164{word-spacing:1.753418pt;}
.ws10{word-spacing:1.785293pt;}
.ws2b{word-spacing:1.859685pt;}
.wse4{word-spacing:1.875210pt;}
.ws1e{word-spacing:1.912832pt;}
.wsbc{word-spacing:1.923145pt;}
.wse5{word-spacing:1.945750pt;}
.ws1f6{word-spacing:1.960653pt;}
.ws6d{word-spacing:2.019087pt;}
.wsbd{word-spacing:2.063105pt;}
.ws1ef{word-spacing:2.104115pt;}
.ws50{word-spacing:2.145616pt;}
.wsd4{word-spacing:2.169130pt;}
.ws176{word-spacing:2.178489pt;}
.wsd3{word-spacing:2.186765pt;}
.ws1f0{word-spacing:2.199757pt;}
.ws57{word-spacing:2.259840pt;}
.ws95{word-spacing:2.265856pt;}
.ws174{word-spacing:2.337890pt;}
.ws199{word-spacing:2.391024pt;}
.ws1e9{word-spacing:2.486682pt;}
.wsbb{word-spacing:2.508901pt;}
.wse1{word-spacing:2.539469pt;}
.ws1a{word-spacing:2.550432pt;}
.ws51{word-spacing:2.613600pt;}
.ws1b9{word-spacing:2.618560pt;}
.ws52{word-spacing:2.640000pt;}
.ws198{word-spacing:2.656693pt;}
.ws56{word-spacing:2.692800pt;}
.ws7b{word-spacing:2.709827pt;}
.ws1cf{word-spacing:2.725786pt;}
.wsf2{word-spacing:2.809875pt;}
.wsc3{word-spacing:2.816095pt;}
.ws3c{word-spacing:2.821427pt;}
.wsb0{word-spacing:2.825106pt;}
.ws28{word-spacing:2.861926pt;}
.ws1ea{word-spacing:2.863104pt;}
.ws1a2{word-spacing:2.869229pt;}
.ws1db{word-spacing:2.869248pt;}
.ws1e7{word-spacing:2.870281pt;}
.ws1d8{word-spacing:2.870400pt;}
.wseb{word-spacing:2.886294pt;}
.wsec{word-spacing:2.903930pt;}
.ws1cc{word-spacing:2.922363pt;}
.ws17b{word-spacing:2.964890pt;}
.wsaf{word-spacing:2.980616pt;}
.ws4c{word-spacing:3.009741pt;}
.ws4d{word-spacing:3.021498pt;}
.ws170{word-spacing:3.028630pt;}
.ws1d7{word-spacing:3.060531pt;}
.wsc7{word-spacing:3.081764pt;}
.wsa7{word-spacing:3.108352pt;}
.ws1e5{word-spacing:3.156173pt;}
.ws29{word-spacing:3.188032pt;}
.ws19c{word-spacing:3.241166pt;}
.ws7e{word-spacing:3.294300pt;}
.ws1c0{word-spacing:3.297248pt;}
.ws16a{word-spacing:3.347434pt;}
.ws1de{word-spacing:3.395277pt;}
.ws1bf{word-spacing:3.420160pt;}
.ws23{word-spacing:3.490918pt;}
.wsca{word-spacing:3.506835pt;}
.ws80{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.682202pt;}
.ws172{word-spacing:3.719371pt;}
.ws2f{word-spacing:3.772505pt;}
.ws31{word-spacing:3.825638pt;}
.ws19d{word-spacing:3.878772pt;}
.ws16b{word-spacing:3.931906pt;}
.ws1e6{word-spacing:4.016947pt;}
.ws1c7{word-spacing:4.038174pt;}
.ws25{word-spacing:4.064768pt;}
.wsad{word-spacing:4.100291pt;}
.ws1d2{word-spacing:4.160410pt;}
.ws68{word-spacing:4.197575pt;}
.ws17e{word-spacing:4.244205pt;}
.ws69{word-spacing:4.250709pt;}
.ws1a7{word-spacing:4.269856pt;}
.wsa2{word-spacing:4.303843pt;}
.wsae{word-spacing:4.400944pt;}
.ws169{word-spacing:4.410111pt;}
.ws194{word-spacing:4.463245pt;}
.ws195{word-spacing:4.516379pt;}
.ws9f{word-spacing:4.542400pt;}
.ws3d{word-spacing:4.590797pt;}
.ws1c4{word-spacing:4.617216pt;}
.ws37{word-spacing:4.622646pt;}
.ws3e{word-spacing:4.638618pt;}
.ws180{word-spacing:4.673328pt;}
.ws17f{word-spacing:4.679206pt;}
.ws2c{word-spacing:4.782048pt;}
.ws1e8{word-spacing:4.829901pt;}
.ws73{word-spacing:4.888316pt;}
.ws1f7{word-spacing:4.973363pt;}
.ws196{word-spacing:4.994583pt;}
.wsda{word-spacing:5.031910pt;}
.ws1dc{word-spacing:5.116826pt;}
.wsdc{word-spacing:5.125965pt;}
.wscd{word-spacing:5.153985pt;}
.wsdb{word-spacing:5.172992pt;}
.ws1a6{word-spacing:5.183680pt;}
.ws1c3{word-spacing:5.221088pt;}
.ws1c2{word-spacing:5.237120pt;}
.ws36{word-spacing:5.260253pt;}
.wse6{word-spacing:5.302317pt;}
.ws35{word-spacing:5.313387pt;}
.ws6a{word-spacing:5.366521pt;}
.ws17{word-spacing:5.393072pt;}
.wse7{word-spacing:5.449277pt;}
.ws18{word-spacing:5.467459pt;}
.ws2d{word-spacing:5.525922pt;}
.wse8{word-spacing:5.572723pt;}
.ws188{word-spacing:5.619750pt;}
.ws171{word-spacing:5.685324pt;}
.ws6e{word-spacing:5.738458pt;}
.ws1a9{word-spacing:5.926496pt;}
.ws1aa{word-spacing:5.958560pt;}
.wsdd{word-spacing:6.178198pt;}
.ws6c{word-spacing:6.216662pt;}
.ws6b{word-spacing:6.269796pt;}
.ws7c{word-spacing:6.322930pt;}
.ws1f5{word-spacing:6.360166pt;}
.ws16e{word-spacing:6.376064pt;}
.ws47{word-spacing:6.378064pt;}
.ws8d{word-spacing:6.466240pt;}
.ws59{word-spacing:6.468000pt;}
.ws58{word-spacing:6.494400pt;}
.ws8c{word-spacing:6.514336pt;}
.ws5a{word-spacing:6.541920pt;}
.ws165{word-spacing:6.588599pt;}
.ws168{word-spacing:6.641733pt;}
.wsce{word-spacing:6.801135pt;}
.wsc8{word-spacing:6.960537pt;}
.ws79{word-spacing:7.013670pt;}
.ws1e2{word-spacing:7.029658pt;}
.ws166{word-spacing:7.173072pt;}
.ws1c6{word-spacing:7.279340pt;}
.ws18f{word-spacing:7.406784pt;}
.ws193{word-spacing:7.491875pt;}
.ws18e{word-spacing:7.494960pt;}
.ws15{word-spacing:7.699075pt;}
.wse0{word-spacing:7.735974pt;}
.ws98{word-spacing:7.839648pt;}
.ws16f{word-spacing:8.023214pt;}
.ws16d{word-spacing:8.129482pt;}
.wsba{word-spacing:8.827807pt;}
.ws5b{word-spacing:8.991840pt;}
.ws5c{word-spacing:9.002400pt;}
.ws60{word-spacing:9.641280pt;}
.ws62{word-spacing:9.699360pt;}
.ws61{word-spacing:9.704640pt;}
.ws1f1{word-spacing:9.898906pt;}
.wsaa{word-spacing:10.019433pt;}
.ws1a3{word-spacing:10.325056pt;}
.ws82{word-spacing:10.329312pt;}
.wsdf{word-spacing:10.974973pt;}
.wsd2{word-spacing:11.357562pt;}
.ws43{word-spacing:11.362243pt;}
.ws1bc{word-spacing:11.917120pt;}
.wsa{word-spacing:13.448481pt;}
.wse{word-spacing:13.761632pt;}
.ws12{word-spacing:14.348669pt;}
.ws13{word-spacing:14.356730pt;}
.ws44{word-spacing:15.260326pt;}
.ws45{word-spacing:15.277962pt;}
.ws91{word-spacing:15.732736pt;}
.ws14{word-spacing:15.732893pt;}
.ws1dd{word-spacing:18.697933pt;}
.ws16{word-spacing:24.399002pt;}
.ws192{word-spacing:25.394688pt;}
.wsf7{word-spacing:52.873600pt;}
.ws12f{word-spacing:60.997888pt;}
.ws11e{word-spacing:61.903078pt;}
.ws135{word-spacing:62.093645pt;}
.ws137{word-spacing:63.078298pt;}
.ws162{word-spacing:63.099452pt;}
.ws136{word-spacing:63.125939pt;}
.ws130{word-spacing:63.316506pt;}
.wsf6{word-spacing:63.364147pt;}
.ws132{word-spacing:63.459430pt;}
.ws109{word-spacing:63.554714pt;}
.ws160{word-spacing:63.745280pt;}
.ws149{word-spacing:64.438750pt;}
.wsf9{word-spacing:64.629316pt;}
.ws119{word-spacing:64.819883pt;}
.wsfa{word-spacing:64.846370pt;}
.ws11f{word-spacing:65.010449pt;}
.ws13a{word-spacing:65.301632pt;}
.ws11d{word-spacing:65.899819pt;}
.ws163{word-spacing:66.111539pt;}
.ws117{word-spacing:66.206822pt;}
.ws104{word-spacing:66.280951pt;}
.wsfd{word-spacing:66.302106pt;}
.ws10d{word-spacing:68.742494pt;}
.ws10c{word-spacing:68.837777pt;}
.ws158{word-spacing:69.319526pt;}
.ws133{word-spacing:69.912380pt;}
.wsfb{word-spacing:70.012996pt;}
.ws161{word-spacing:70.298846pt;}
.ws15a{word-spacing:70.346487pt;}
.wsfe{word-spacing:70.897033pt;}
.ws153{word-spacing:71.061111pt;}
.ws147{word-spacing:71.278165pt;}
.ws116{word-spacing:71.325807pt;}
.ws142{word-spacing:71.611657pt;}
.ws10f{word-spacing:71.945148pt;}
.ws105{word-spacing:72.665105pt;}
.ws10e{word-spacing:72.733901pt;}
.ws107{word-spacing:72.815121pt;}
.ws110{word-spacing:72.816239pt;}
.ws144{word-spacing:72.816333pt;}
.ws15e{word-spacing:72.816418pt;}
.ws14f{word-spacing:72.816998pt;}
.ws10b{word-spacing:72.817092pt;}
.ws14a{word-spacing:72.817220pt;}
.ws13e{word-spacing:72.839723pt;}
.ws145{word-spacing:72.839817pt;}
.ws12b{word-spacing:72.840329pt;}
.ws15b{word-spacing:72.840764pt;}
.ws127{word-spacing:72.841284pt;}
.ws129{word-spacing:72.841472pt;}
.ws154{word-spacing:72.841566pt;}
.ws152{word-spacing:72.842103pt;}
.ws148{word-spacing:72.842402pt;}
.ws138{word-spacing:72.842462pt;}
.ws15c{word-spacing:72.842948pt;}
.wsf4{word-spacing:72.843290pt;}
.ws12a{word-spacing:72.861611pt;}
.ws12e{word-spacing:72.862566pt;}
.ws155{word-spacing:72.862763pt;}
.ws120{word-spacing:72.882159pt;}
.ws111{word-spacing:72.929801pt;}
.ws113{word-spacing:72.998596pt;}
.ws15d{word-spacing:73.025084pt;}
.ws11c{word-spacing:73.310933pt;}
.ws151{word-spacing:73.427371pt;}
.ws13c{word-spacing:73.739708pt;}
.ws131{word-spacing:73.813837pt;}
.ws134{word-spacing:73.909120pt;}
.ws128{word-spacing:74.099686pt;}
.ws121{word-spacing:74.290253pt;}
.ws102{word-spacing:74.459665pt;}
.ws140{word-spacing:74.480819pt;}
.ws118{word-spacing:74.528461pt;}
.ws150{word-spacing:74.697873pt;}
.ws14b{word-spacing:75.221931pt;}
.ws100{word-spacing:75.296060pt;}
.ws112{word-spacing:76.132454pt;}
.ws159{word-spacing:76.418304pt;}
.ws139{word-spacing:76.561229pt;}
.ws14c{word-spacing:76.608870pt;}
.ws146{word-spacing:76.799437pt;}
.ws103{word-spacing:76.942362pt;}
.ws13d{word-spacing:77.376469pt;}
.wsfc{word-spacing:77.948169pt;}
.ws143{word-spacing:78.403430pt;}
.ws141{word-spacing:80.436198pt;}
.ws108{word-spacing:81.606084pt;}
.ws14d{word-spacing:81.632572pt;}
.ws13b{word-spacing:81.653726pt;}
.ws15f{word-spacing:81.775497pt;}
.ws14e{word-spacing:81.796651pt;}
.ws115{word-spacing:81.891934pt;}
.ws124{word-spacing:81.918421pt;}
.ws13f{word-spacing:82.034859pt;}
.ws106{word-spacing:82.897741pt;}
.ws157{word-spacing:83.924702pt;}
.ws12c{word-spacing:84.930509pt;}
.ws10a{word-spacing:85.004638pt;}
.ws126{word-spacing:85.936316pt;}
.ws101{word-spacing:87.180331pt;}
.ws125{word-spacing:87.487334pt;}
.ws123{word-spacing:88.567270pt;}
.ws122{word-spacing:89.356023pt;}
.ws11b{word-spacing:117.399467pt;}
.ws12d{word-spacing:124.812288pt;}
.ws156{word-spacing:125.404245pt;}
.ws11a{word-spacing:136.767488pt;}
.wsff{word-spacing:144.753562pt;}
.wsf5{word-spacing:144.801382pt;}
.wsf8{word-spacing:156.708762pt;}
.ws114{word-spacing:156.756582pt;}
._0{margin-left:-10.520576pt;}
._20{margin-left:-7.045687pt;}
._1{margin-left:-5.898133pt;}
._7{margin-left:-4.881905pt;}
._b{margin-left:-3.910662pt;}
._4{margin-left:-2.668396pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.639587pt;}
._8{width:10.777188pt;}
._9{width:11.958251pt;}
._10{width:12.931465pt;}
._c{width:14.182929pt;}
._e{width:15.207014pt;}
._11{width:16.418365pt;}
._12{width:18.118649pt;}
._3c{width:19.241186pt;}
._f{width:20.177327pt;}
._3d{width:21.147279pt;}
._1e{width:22.057281pt;}
._17{width:23.272634pt;}
._3f{width:24.216062pt;}
._1b{width:25.344854pt;}
._d{width:26.847317pt;}
._19{width:28.001548pt;}
._a{width:29.011008pt;}
._3b{width:30.452432pt;}
._1d{width:32.199123pt;}
._15{width:33.109125pt;}
._1c{width:34.218210pt;}
._3a{width:37.094165pt;}
._3{width:48.419798pt;}
._26{width:53.750579pt;}
._40{width:54.993920pt;}
._22{width:66.825506pt;}
._25{width:69.818368pt;}
._24{width:71.013888pt;}
._21{width:74.026598pt;}
._23{width:80.434586pt;}
._33{width:96.024166pt;}
._34{width:98.606490pt;}
._30{width:100.328038pt;}
._35{width:102.527795pt;}
._36{width:104.048492pt;}
._2e{width:105.636147pt;}
._2d{width:106.831667pt;}
._2c{width:107.729619pt;}
._37{width:108.648858pt;}
._38{width:111.852851pt;}
._31{width:116.576467pt;}
._32{width:120.508416pt;}
._27{width:122.564710pt;}
._2f{width:137.452954pt;}
._28{width:144.753562pt;}
._2a{width:148.722688pt;}
._2b{width:156.708762pt;}
._29{width:168.663962pt;}
._13{width:900.631678pt;}
._1a{width:1850.263710pt;}
._3e{width:1886.395831pt;}
._18{width:1907.518359pt;}
._1f{width:2075.132407pt;}
._16{width:2098.367188pt;}
._39{width:2251.474400pt;}
._14{width:2272.727733pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs10{font-size:41.283200pt;}
.fs4{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs12{font-size:46.560000pt;}
.fsa{font-size:46.816000pt;}
.fs9{font-size:47.820800pt;}
.fs14{font-size:48.000000pt;}
.fs13{font-size:49.829333pt;}
.fs11{font-size:51.836800pt;}
.fsc{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsb{font-size:58.784000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y10b{bottom:-492.171827pt;}
.y121{bottom:-410.586983pt;}
.y97{bottom:-398.844933pt;}
.y120{bottom:-391.843704pt;}
.y11f{bottom:-373.012250pt;}
.y11e{bottom:-354.180795pt;}
.yab{bottom:-337.477109pt;}
.y11d{bottom:-335.437517pt;}
.y1f6{bottom:-335.311600pt;}
.yaa{bottom:-320.437765pt;}
.y11c{bottom:-316.606063pt;}
.y1c5{bottom:-314.372227pt;}
.ya9{bottom:-303.318261pt;}
.y11b{bottom:-297.862784pt;}
.y20f{bottom:-286.426000pt;}
.ya8{bottom:-286.278917pt;}
.y11a{bottom:-279.031330pt;}
.y20e{bottom:-269.306496pt;}
.ya7{bottom:-269.159413pt;}
.yc2{bottom:-263.624919pt;}
.y119{bottom:-260.199875pt;}
.y20d{bottom:-252.267152pt;}
.ya6{bottom:-252.039909pt;}
.y1d2{bottom:-241.853996pt;}
.y118{bottom:-241.455127pt;}
.y20c{bottom:-235.147648pt;}
.ya5{bottom:-235.000565pt;}
.y1d1{bottom:-223.022542pt;}
.y117{bottom:-222.623673pt;}
.y20b{bottom:-218.108304pt;}
.ya4{bottom:-217.881061pt;}
.yd1{bottom:-214.810670pt;}
.y53{bottom:-211.601427pt;}
.y1d0{bottom:-204.191087pt;}
.y116{bottom:-203.792219pt;}
.y20a{bottom:-200.988800pt;}
.ya3{bottom:-200.840381pt;}
.yd0{bottom:-198.282506pt;}
.y1cf{bottom:-185.447809pt;}
.y115{bottom:-185.048940pt;}
.y209{bottom:-183.869296pt;}
.ya2{bottom:-183.720877pt;}
.ycf{bottom:-181.676587pt;}
.y208{bottom:-166.829952pt;}
.y1ce{bottom:-166.616355pt;}
.ya1{bottom:-166.601373pt;}
.y114{bottom:-166.217486pt;}
.yce{bottom:-165.070668pt;}
.y207{bottom:-149.710448pt;}
.ya0{bottom:-149.562029pt;}
.ycd{bottom:-148.542505pt;}
.y1cd{bottom:-147.873076pt;}
.y113{bottom:-147.474207pt;}
.y206{bottom:-132.671104pt;}
.y9f{bottom:-132.442525pt;}
.ycc{bottom:-131.936586pt;}
.y66{bottom:-131.081427pt;}
.y112{bottom:-128.642753pt;}
.y205{bottom:-115.551600pt;}
.ycb{bottom:-115.408422pt;}
.y9e{bottom:-115.403181pt;}
.y65{bottom:-114.009867pt;}
.y1cc{bottom:-111.441692pt;}
.y111{bottom:-109.811299pt;}
.y9d{bottom:-98.283677pt;}
.y64{bottom:-97.113867pt;}
.yca{bottom:-94.922519pt;}
.y1cb{bottom:-92.610238pt;}
.y110{bottom:-91.068020pt;}
.y204{bottom:-82.507000pt;}
.y63{bottom:-80.217867pt;}
.y1ca{bottom:-73.866959pt;}
.y10f{bottom:-67.923290pt;}
.y203{bottom:-65.387496pt;}
.y9c{bottom:-65.243061pt;}
.y62{bottom:-63.321867pt;}
.yc9{bottom:-62.872656pt;}
.y1c9{bottom:-55.035505pt;}
.y202{bottom:-48.267992pt;}
.y9b{bottom:-48.123557pt;}
.y61{bottom:-46.337427pt;}
.yc8{bottom:-46.266737pt;}
.y1c8{bottom:-36.291575pt;}
.y10e{bottom:-31.491906pt;}
.y201{bottom:-31.148488pt;}
.y9a{bottom:-31.004053pt;}
.yc7{bottom:-29.660818pt;}
.y60{bottom:-29.441427pt;}
.y1c7{bottom:-17.460121pt;}
.y200{bottom:-14.109144pt;}
.y99{bottom:-13.884549pt;}
.yc6{bottom:-13.132654pt;}
.y10d{bottom:-12.660451pt;}
.y5f{bottom:-12.545427pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y1c6{bottom:6.035844pt;}
.y1ff{bottom:7.250824pt;}
.y98{bottom:7.395259pt;}
.yc5{bottom:7.586515pt;}
.y5e{bottom:9.370569pt;}
.y10c{bottom:10.835513pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y4a{bottom:28.346667pt;}
.y218{bottom:80.124000pt;}
.ybe{bottom:80.905333pt;}
.y20{bottom:91.398667pt;}
.y28f{bottom:92.050667pt;}
.y1f2{bottom:94.441333pt;}
.y259{bottom:95.837333pt;}
.y217{bottom:96.861333pt;}
.y49{bottom:97.485333pt;}
.ybd{bottom:97.642667pt;}
.yd5{bottom:101.926667pt;}
.y107{bottom:106.796000pt;}
.y1f{bottom:107.298667pt;}
.y28e{bottom:107.393333pt;}
.y1f1{bottom:111.178667pt;}
.y258{bottom:111.180000pt;}
.y6e{bottom:112.620000pt;}
.y216{bottom:113.598667pt;}
.y48{bottom:114.222667pt;}
.ybc{bottom:114.380000pt;}
.y1d8{bottom:114.865333pt;}
.yd4{bottom:119.022667pt;}
.y15e{bottom:119.089333pt;}
.y28d{bottom:122.736000pt;}
.y1e{bottom:123.200000pt;}
.y106{bottom:123.533333pt;}
.y198{bottom:124.057333pt;}
.y257{bottom:126.521333pt;}
.y1f0{bottom:127.916000pt;}
.y6d{bottom:129.716000pt;}
.y215{bottom:130.336000pt;}
.y47{bottom:130.960000pt;}
.ybb{bottom:131.117333pt;}
.y1d7{bottom:131.960000pt;}
.y123{bottom:133.097333pt;}
.y15d{bottom:133.701333pt;}
.yd3{bottom:136.118667pt;}
.y28c{bottom:138.078667pt;}
.y197{bottom:138.669333pt;}
.y1d{bottom:139.100000pt;}
.y105{bottom:140.270667pt;}
.y256{bottom:141.864000pt;}
.y1ef{bottom:144.653333pt;}
.y6c{bottom:146.812000pt;}
.y214{bottom:147.073333pt;}
.y46{bottom:147.697333pt;}
.yba{bottom:147.854667pt;}
.y15c{bottom:148.313333pt;}
.y1d6{bottom:149.056000pt;}
.y122{bottom:150.193333pt;}
.yd2{bottom:153.214667pt;}
.y196{bottom:153.281333pt;}
.y28b{bottom:153.421333pt;}
.y1c{bottom:155.000000pt;}
.y104{bottom:157.008000pt;}
.y255{bottom:157.206667pt;}
.y1ee{bottom:161.390667pt;}
.y1c1{bottom:162.017333pt;}
.y15b{bottom:162.925333pt;}
.y6b{bottom:163.908000pt;}
.y45{bottom:164.434667pt;}
.yb9{bottom:164.590667pt;}
.y1d5{bottom:166.152000pt;}
.y195{bottom:167.893333pt;}
.y28a{bottom:168.762667pt;}
.y108{bottom:170.129333pt;}
.y1b{bottom:170.901333pt;}
.y254{bottom:172.549333pt;}
.ybf{bottom:173.152000pt;}
.y103{bottom:173.745333pt;}
.y213{bottom:176.909333pt;}
.y15a{bottom:177.537333pt;}
.y22c{bottom:178.128000pt;}
.y1c0{bottom:178.754667pt;}
.y6a{bottom:181.004000pt;}
.y44{bottom:181.172000pt;}
.yb8{bottom:181.328000pt;}
.y1ed{bottom:182.113333pt;}
.y194{bottom:182.505333pt;}
.y1d4{bottom:183.248000pt;}
.y289{bottom:184.105333pt;}
.y1a{bottom:186.801333pt;}
.y253{bottom:187.892000pt;}
.y102{bottom:190.481333pt;}
.y159{bottom:192.149333pt;}
.y212{bottom:194.005333pt;}
.y22b{bottom:194.865333pt;}
.y1bf{bottom:195.492000pt;}
.y193{bottom:197.117333pt;}
.y43{bottom:197.909333pt;}
.yb7{bottom:198.065333pt;}
.y69{bottom:198.100000pt;}
.y288{bottom:199.448000pt;}
.y1d3{bottom:200.344000pt;}
.y19{bottom:202.701333pt;}
.y252{bottom:203.234667pt;}
.y158{bottom:206.761333pt;}
.y101{bottom:207.218667pt;}
.y211{bottom:211.101333pt;}
.y22a{bottom:211.602667pt;}
.y192{bottom:211.729333pt;}
.y1ec{bottom:212.001333pt;}
.y1be{bottom:212.229333pt;}
.y42{bottom:214.646667pt;}
.y287{bottom:214.790667pt;}
.yb6{bottom:214.802667pt;}
.y68{bottom:215.196000pt;}
.y251{bottom:218.577333pt;}
.y1c2{bottom:220.281333pt;}
.y157{bottom:221.372000pt;}
.y100{bottom:223.956000pt;}
.y191{bottom:226.340000pt;}
.y210{bottom:228.197333pt;}
.y229{bottom:228.340000pt;}
.y1eb{bottom:228.738667pt;}
.y1bd{bottom:228.966667pt;}
.y286{bottom:230.133333pt;}
.y41{bottom:231.382667pt;}
.yb5{bottom:231.540000pt;}
.y67{bottom:232.290667pt;}
.y250{bottom:233.920000pt;}
.y156{bottom:235.984000pt;}
.yff{bottom:240.693333pt;}
.y190{bottom:240.952000pt;}
.y228{bottom:245.077333pt;}
.y1ea{bottom:245.476000pt;}
.y1bc{bottom:245.704000pt;}
.y40{bottom:248.120000pt;}
.y1f3{bottom:248.134667pt;}
.yb4{bottom:248.277333pt;}
.y24e{bottom:249.261333pt;}
.y24f{bottom:249.262667pt;}
.y155{bottom:250.596000pt;}
.y50{bottom:252.228000pt;}
.y18f{bottom:255.564000pt;}
.y285{bottom:260.818667pt;}
.yfe{bottom:261.416000pt;}
.y227{bottom:261.814667pt;}
.y1e9{bottom:262.213333pt;}
.y1bb{bottom:262.441333pt;}
.y24d{bottom:264.604000pt;}
.y3f{bottom:264.857333pt;}
.yb3{bottom:265.014667pt;}
.y154{bottom:265.208000pt;}
.y18e{bottom:270.176000pt;}
.y18{bottom:273.154667pt;}
.y284{bottom:276.161333pt;}
.y226{bottom:278.552000pt;}
.y1e8{bottom:278.950667pt;}
.y153{bottom:279.820000pt;}
.y24c{bottom:279.946667pt;}
.y3e{bottom:281.594667pt;}
.yb2{bottom:281.752000pt;}
.y1ba{bottom:283.164000pt;}
.y18d{bottom:284.788000pt;}
.y17{bottom:289.054667pt;}
.yfd{bottom:291.304000pt;}
.y283{bottom:291.502667pt;}
.y152{bottom:294.432000pt;}
.y225{bottom:295.289333pt;}
.y1e7{bottom:295.688000pt;}
.yb1{bottom:298.489333pt;}
.y18c{bottom:299.400000pt;}
.y3d{bottom:302.317333pt;}
.y16{bottom:304.954667pt;}
.y282{bottom:306.845333pt;}
.yfc{bottom:308.041333pt;}
.y151{bottom:309.044000pt;}
.y24b{bottom:310.632000pt;}
.y224{bottom:312.026667pt;}
.y1e6{bottom:312.425333pt;}
.y1b9{bottom:313.052000pt;}
.y18b{bottom:314.012000pt;}
.yb0{bottom:315.226667pt;}
.y15{bottom:320.856000pt;}
.y281{bottom:322.188000pt;}
.y150{bottom:323.656000pt;}
.yfb{bottom:324.778667pt;}
.y24a{bottom:325.974667pt;}
.y18a{bottom:328.624000pt;}
.y223{bottom:328.764000pt;}
.y1e5{bottom:329.162667pt;}
.y1b8{bottom:329.789333pt;}
.yaf{bottom:331.964000pt;}
.y280{bottom:337.530667pt;}
.y14f{bottom:338.268000pt;}
.y249{bottom:341.317333pt;}
.yfa{bottom:341.516000pt;}
.y189{bottom:343.236000pt;}
.y222{bottom:345.501333pt;}
.y1e4{bottom:345.900000pt;}
.y1b7{bottom:346.526667pt;}
.y27f{bottom:352.873333pt;}
.y14e{bottom:352.880000pt;}
.y14{bottom:354.688000pt;}
.y248{bottom:356.660000pt;}
.y188{bottom:357.848000pt;}
.yf9{bottom:358.253333pt;}
.yae{bottom:361.800000pt;}
.y221{bottom:362.238667pt;}
.y1e3{bottom:362.637333pt;}
.y1b6{bottom:363.264000pt;}
.y14d{bottom:367.492000pt;}
.y27e{bottom:368.216000pt;}
.y3c{bottom:368.806667pt;}
.y13{bottom:370.589333pt;}
.y247{bottom:372.002667pt;}
.y186{bottom:372.458667pt;}
.y187{bottom:372.460000pt;}
.yf8{bottom:374.990667pt;}
.y93{bottom:377.780000pt;}
.yad{bottom:378.896000pt;}
.y220{bottom:378.976000pt;}
.y1e2{bottom:379.374667pt;}
.y1b5{bottom:380.001333pt;}
.y14c{bottom:382.102667pt;}
.y27d{bottom:383.558667pt;}
.y12{bottom:386.489333pt;}
.y185{bottom:387.070667pt;}
.y246{bottom:387.344000pt;}
.yf7{bottom:391.728000pt;}
.y92{bottom:394.517333pt;}
.y21f{bottom:395.713333pt;}
.yac{bottom:395.992000pt;}
.y1e1{bottom:396.112000pt;}
.y14b{bottom:396.714667pt;}
.y1b4{bottom:396.738667pt;}
.y27c{bottom:398.901333pt;}
.y184{bottom:401.682667pt;}
.y3b{bottom:402.042667pt;}
.y245{bottom:402.686667pt;}
.yf6{bottom:408.465333pt;}
.y91{bottom:411.254667pt;}
.y14a{bottom:411.326667pt;}
.y21e{bottom:412.450667pt;}
.y1e0{bottom:412.848000pt;}
.y1b3{bottom:413.476000pt;}
.y27b{bottom:414.244000pt;}
.y94{bottom:415.929333pt;}
.y183{bottom:416.294667pt;}
.y244{bottom:418.029333pt;}
.y11{bottom:418.330667pt;}
.y3a{bottom:419.337333pt;}
.yf5{bottom:425.202667pt;}
.y149{bottom:425.938667pt;}
.y90{bottom:427.992000pt;}
.y21d{bottom:429.188000pt;}
.y1df{bottom:429.585333pt;}
.y1b2{bottom:430.213333pt;}
.y182{bottom:430.906667pt;}
.y243{bottom:433.372000pt;}
.y39{bottom:436.632000pt;}
.y148{bottom:440.550667pt;}
.yf4{bottom:441.940000pt;}
.y8e{bottom:444.729333pt;}
.y27a{bottom:444.928000pt;}
.y181{bottom:445.518667pt;}
.y21c{bottom:445.925333pt;}
.y1de{bottom:446.322667pt;}
.y1b1{bottom:446.950667pt;}
.y242{bottom:448.714667pt;}
.y8f{bottom:449.550667pt;}
.y10{bottom:450.170667pt;}
.y38{bottom:453.928000pt;}
.y147{bottom:455.162667pt;}
.yf3{bottom:458.677333pt;}
.y180{bottom:460.130667pt;}
.y279{bottom:460.270667pt;}
.y21b{bottom:462.662667pt;}
.y1dd{bottom:463.060000pt;}
.y1af{bottom:463.688000pt;}
.y241{bottom:464.057333pt;}
.y8d{bottom:465.452000pt;}
.yf{bottom:466.070667pt;}
.y1b0{bottom:468.509333pt;}
.y146{bottom:469.774667pt;}
.y37{bottom:471.222667pt;}
.y17f{bottom:474.742667pt;}
.yf2{bottom:475.414667pt;}
.y278{bottom:475.613333pt;}
.y21a{bottom:479.398667pt;}
.y240{bottom:479.400000pt;}
.y1dc{bottom:479.797333pt;}
.y1ae{bottom:480.424000pt;}
.ye{bottom:481.972000pt;}
.y8c{bottom:483.384000pt;}
.y145{bottom:484.386667pt;}
.y36{bottom:488.517333pt;}
.y17e{bottom:489.354667pt;}
.y277{bottom:490.956000pt;}
.yf1{bottom:492.152000pt;}
.y23f{bottom:494.742667pt;}
.y1db{bottom:496.534667pt;}
.y1ad{bottom:497.161333pt;}
.yd{bottom:497.872000pt;}
.y144{bottom:498.998667pt;}
.y219{bottom:500.121333pt;}
.y17d{bottom:503.966667pt;}
.y1fe{bottom:504.531400pt;}
.y35{bottom:505.813333pt;}
.y276{bottom:506.298667pt;}
.yf0{bottom:508.889333pt;}
.y23e{bottom:510.085333pt;}
.y8b{bottom:513.272000pt;}
.y143{bottom:513.610667pt;}
.yc{bottom:513.772000pt;}
.y1ac{bottom:513.898667pt;}
.y17c{bottom:518.578667pt;}
.y275{bottom:521.641333pt;}
.y1fd{bottom:521.650904pt;}
.y34{bottom:523.108000pt;}
.y23d{bottom:525.426667pt;}
.yef{bottom:525.626667pt;}
.y142{bottom:528.221333pt;}
.yb{bottom:529.673333pt;}
.y8a{bottom:530.009333pt;}
.y1aa{bottom:530.636000pt;}
.y17b{bottom:533.189333pt;}
.y1ab{bottom:535.458667pt;}
.y274{bottom:536.984000pt;}
.y1fc{bottom:538.690248pt;}
.y33{bottom:540.404000pt;}
.y141{bottom:542.833333pt;}
.y23c{bottom:544.754667pt;}
.ya{bottom:545.573333pt;}
.yee{bottom:546.348000pt;}
.y89{bottom:546.746667pt;}
.y1a9{bottom:547.373333pt;}
.y17a{bottom:547.801333pt;}
.y1da{bottom:551.569333pt;}
.y273{bottom:552.325333pt;}
.y1fb{bottom:555.809752pt;}
.y140{bottom:557.445333pt;}
.y32{bottom:557.698667pt;}
.y179{bottom:562.413333pt;}
.y88{bottom:563.484000pt;}
.y1a8{bottom:564.110667pt;}
.y7{bottom:565.458715pt;}
.y272{bottom:567.668000pt;}
.y13f{bottom:572.057333pt;}
.y1fa{bottom:572.849096pt;}
.y23b{bottom:574.642667pt;}
.y31{bottom:574.993333pt;}
.yed{bottom:576.236000pt;}
.y178{bottom:577.025333pt;}
.y87{bottom:580.221333pt;}
.y1a7{bottom:580.848000pt;}
.y271{bottom:583.010667pt;}
.y13e{bottom:586.669333pt;}
.y1f9{bottom:589.968600pt;}
.y177{bottom:591.637333pt;}
.y30{bottom:592.289333pt;}
.yec{bottom:592.973333pt;}
.y86{bottom:596.958667pt;}
.y1a6{bottom:597.585333pt;}
.y23a{bottom:598.234667pt;}
.y270{bottom:598.353333pt;}
.y13d{bottom:601.281333pt;}
.y176{bottom:606.249333pt;}
.y1f8{bottom:607.088104pt;}
.y96{bottom:609.235187pt;}
.y2f{bottom:609.584000pt;}
.yeb{bottom:609.710667pt;}
.y85{bottom:613.696000pt;}
.y1a4{bottom:614.322667pt;}
.y13c{bottom:615.893333pt;}
.y10a{bottom:616.716305pt;}
.y95{bottom:617.795067pt;}
.y1a5{bottom:619.145333pt;}
.y175{bottom:620.861333pt;}
.y239{bottom:621.825333pt;}
.y1f7{bottom:624.128784pt;}
.y109{bottom:626.132173pt;}
.yea{bottom:626.448000pt;}
.y2e{bottom:626.878667pt;}
.y26f{bottom:629.038667pt;}
.y84{bottom:630.433333pt;}
.y13b{bottom:630.505333pt;}
.y1a3{bottom:631.060000pt;}
.y174{bottom:635.473333pt;}
.ye9{bottom:643.185333pt;}
.y2d{bottom:644.174667pt;}
.y26e{bottom:644.381333pt;}
.y13a{bottom:645.117333pt;}
.y238{bottom:645.417333pt;}
.y83{bottom:647.170667pt;}
.y1a2{bottom:647.797333pt;}
.y173{bottom:650.085333pt;}
.yc4{bottom:650.502794pt;}
.y26d{bottom:659.724000pt;}
.y139{bottom:659.729333pt;}
.ye8{bottom:659.922667pt;}
.y2c{bottom:661.469333pt;}
.y82{bottom:663.908000pt;}
.y1a1{bottom:664.534667pt;}
.y172{bottom:664.697333pt;}
.yc3{bottom:667.032254pt;}
.y237{bottom:669.009333pt;}
.y1f5{bottom:672.768520pt;}
.y137{bottom:674.340000pt;}
.y138{bottom:674.341333pt;}
.y5d{bottom:674.651141pt;}
.y26c{bottom:675.066667pt;}
.ye7{bottom:676.660000pt;}
.y2b{bottom:678.765333pt;}
.y171{bottom:679.308000pt;}
.y81{bottom:680.645333pt;}
.y1a0{bottom:681.272000pt;}
.y1f4{bottom:681.328400pt;}
.y236{bottom:684.630667pt;}
.y136{bottom:688.952000pt;}
.y26b{bottom:690.408000pt;}
.y5c{bottom:693.394419pt;}
.ye6{bottom:693.397333pt;}
.y170{bottom:693.920000pt;}
.y2a{bottom:696.060000pt;}
.y80{bottom:697.382667pt;}
.y19f{bottom:698.009333pt;}
.y235{bottom:700.252000pt;}
.y135{bottom:703.564000pt;}
.y26a{bottom:705.750667pt;}
.y16f{bottom:708.532000pt;}
.ye5{bottom:710.134667pt;}
.y5b{bottom:712.225873pt;}
.y7f{bottom:714.120000pt;}
.yc1{bottom:714.212798pt;}
.y19e{bottom:714.746667pt;}
.y234{bottom:715.873333pt;}
.y134{bottom:718.176000pt;}
.y269{bottom:721.093333pt;}
.yc0{bottom:722.515881pt;}
.y16e{bottom:723.144000pt;}
.ye4{bottom:726.872000pt;}
.y29{bottom:730.358667pt;}
.y7e{bottom:730.857333pt;}
.y5a{bottom:731.057328pt;}
.y19d{bottom:731.484000pt;}
.y233{bottom:731.494667pt;}
.y133{bottom:732.788000pt;}
.y268{bottom:736.436000pt;}
.y16d{bottom:737.756000pt;}
.ye3{bottom:743.609333pt;}
.y28{bottom:744.704000pt;}
.y232{bottom:747.116000pt;}
.y132{bottom:747.400000pt;}
.y7d{bottom:747.594667pt;}
.y19c{bottom:748.221333pt;}
.y59{bottom:749.800606pt;}
.y267{bottom:751.778667pt;}
.y16c{bottom:752.368000pt;}
.ye2{bottom:760.346667pt;}
.y131{bottom:762.012000pt;}
.y231{bottom:762.737333pt;}
.y27{bottom:762.908000pt;}
.y7c{bottom:764.332000pt;}
.y19b{bottom:764.958667pt;}
.y16b{bottom:766.980000pt;}
.y266{bottom:767.121333pt;}
.y58{bottom:768.632061pt;}
.y26{bottom:773.397333pt;}
.y130{bottom:776.624000pt;}
.ye1{bottom:777.084000pt;}
.y7b{bottom:781.069333pt;}
.y16a{bottom:781.592000pt;}
.y19a{bottom:781.696000pt;}
.y265{bottom:782.464000pt;}
.y230{bottom:786.329333pt;}
.y57{bottom:787.375339pt;}
.y12f{bottom:791.236000pt;}
.y25{bottom:791.601333pt;}
.ye0{bottom:793.821333pt;}
.y1c4{bottom:794.515905pt;}
.y169{bottom:796.204000pt;}
.y7a{bottom:797.806667pt;}
.y22f{bottom:801.950667pt;}
.y199{bottom:802.418667pt;}
.y1c3{bottom:803.931773pt;}
.y12e{bottom:805.848000pt;}
.y24{bottom:805.946667pt;}
.y56{bottom:806.206793pt;}
.ydf{bottom:810.558667pt;}
.y168{bottom:810.816000pt;}
.y290{bottom:813.148000pt;}
.y264{bottom:813.149333pt;}
.y79{bottom:814.544000pt;}
.y22e{bottom:817.572000pt;}
.y23{bottom:820.293333pt;}
.y12d{bottom:820.460000pt;}
.y55{bottom:825.038248pt;}
.y167{bottom:825.428000pt;}
.yde{bottom:827.296000pt;}
.y263{bottom:828.490667pt;}
.y22{bottom:830.781333pt;}
.y78{bottom:831.281333pt;}
.y22d{bottom:833.193333pt;}
.y12c{bottom:835.070667pt;}
.y166{bottom:840.038667pt;}
.y54{bottom:843.782996pt;}
.y262{bottom:843.833333pt;}
.ydd{bottom:844.033333pt;}
.y77{bottom:848.018667pt;}
.y21{bottom:848.985333pt;}
.y12b{bottom:849.682667pt;}
.y165{bottom:854.650667pt;}
.y261{bottom:859.176000pt;}
.ydc{bottom:860.770667pt;}
.y12a{bottom:864.294667pt;}
.y76{bottom:864.754667pt;}
.y164{bottom:869.262667pt;}
.y260{bottom:874.518667pt;}
.ydb{bottom:877.508000pt;}
.y75{bottom:881.492000pt;}
.y163{bottom:883.874667pt;}
.y6{bottom:884.713333pt;}
.y129{bottom:885.309333pt;}
.y25f{bottom:889.861333pt;}
.yda{bottom:894.245333pt;}
.y52{bottom:897.286705pt;}
.y74{bottom:898.229333pt;}
.y162{bottom:898.486667pt;}
.y25e{bottom:905.204000pt;}
.y128{bottom:906.322667pt;}
.y51{bottom:906.702573pt;}
.yd9{bottom:910.982667pt;}
.y73{bottom:914.966667pt;}
.y161{bottom:919.501333pt;}
.y25d{bottom:920.546667pt;}
.y127{bottom:920.934667pt;}
.y5{bottom:925.510667pt;}
.yd8{bottom:927.720000pt;}
.y72{bottom:931.704000pt;}
.y4f{bottom:934.080000pt;}
.y25c{bottom:935.889333pt;}
.y160{bottom:940.514667pt;}
.yd7{bottom:944.456000pt;}
.y71{bottom:948.441333pt;}
.y126{bottom:949.041333pt;}
.y4{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y25b{bottom:951.230667pt;}
.y1d9{bottom:953.264000pt;}
.y15f{bottom:955.126667pt;}
.yd6{bottom:961.193333pt;}
.y70{bottom:965.178667pt;}
.y125{bottom:966.137333pt;}
.y25a{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y6f{bottom:981.916000pt;}
.y124{bottom:983.233333pt;}
.y4c{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h27{height:22.762701pt;}
.hf{height:23.209028pt;}
.h10{height:23.374407pt;}
.hd{height:23.379740pt;}
.h1d{height:23.521527pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.he{height:30.945242pt;}
.h17{height:31.157778pt;}
.hc{height:33.957757pt;}
.h12{height:34.574438pt;}
.h13{height:34.813542pt;}
.h28{height:35.052646pt;}
.h24{height:38.168894pt;}
.h22{height:38.178897pt;}
.h15{height:38.415786pt;}
.h16{height:38.681455pt;}
.h11{height:38.809074pt;}
.h4{height:38.947124pt;}
.h1f{height:39.359687pt;}
.h26{height:43.284313pt;}
.h1a{height:43.295656pt;}
.h14{height:43.660390pt;}
.h2{height:45.271688pt;}
.h23{height:47.938916pt;}
.h6{height:48.481423pt;}
.h18{height:48.511220pt;}
.h1c{height:48.829687pt;}
.h20{height:49.421563pt;}
.h1b{height:54.363719pt;}
.h5{height:69.148877pt;}
.h3{height:83.992000pt;}
.h2a{height:495.184000pt;}
.h1e{height:579.272000pt;}
.h25{height:589.922667pt;}
.h21{height:637.115400pt;}
.h19{height:660.834533pt;}
.h29{height:774.916267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w5{width:440.993333pt;}
.w9{width:458.746667pt;}
.w4{width:468.133600pt;}
.w6{width:503.891332pt;}
.w7{width:630.005347pt;}
.w8{width:663.919813pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1d{left:-185.121200pt;}
.x4e{left:-163.154667pt;}
.xc7{left:-160.350667pt;}
.x9b{left:-70.528920pt;}
.x67{left:-67.631375pt;}
.xba{left:-57.168320pt;}
.x6a{left:-40.160463pt;}
.xbc{left:-26.015739pt;}
.x0{left:0.000000pt;}
.x1e{left:6.103152pt;}
.x50{left:10.685653pt;}
.xc8{left:13.489653pt;}
.x4{left:26.021437pt;}
.x1f{left:37.255733pt;}
.x51{left:39.006181pt;}
.xc9{left:41.809333pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:52.049422pt;}
.xb9{left:64.889920pt;}
.x9e{left:76.346667pt;}
.x9a{left:81.846520pt;}
.x68{left:100.993736pt;}
.x9c{left:120.695432pt;}
.x9f{left:127.236000pt;}
.x6b{left:128.464337pt;}
.xbe{left:134.053841pt;}
.x9d{left:151.848013pt;}
.xbd{left:165.206422pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x16{left:227.093333pt;}
.xb6{left:229.920000pt;}
.xa5{left:232.949333pt;}
.xa6{left:233.929333pt;}
.xa7{left:235.273333pt;}
.xab{left:236.344000pt;}
.xa8{left:237.258667pt;}
.xaa{left:238.496000pt;}
.xa9{left:239.565333pt;}
.x6{left:241.085333pt;}
.x2a{left:243.604000pt;}
.xb7{left:249.645333pt;}
.x9{left:251.365333pt;}
.x2b{left:255.560000pt;}
.x6c{left:258.473333pt;}
.xb8{left:260.149333pt;}
.x70{left:262.473333pt;}
.x6d{left:264.452000pt;}
.xa0{left:268.169333pt;}
.x84{left:272.925333pt;}
.x21{left:273.972000pt;}
.x8{left:275.068000pt;}
.xce{left:276.206667pt;}
.x22{left:277.212000pt;}
.x85{left:279.566667pt;}
.x78{left:281.434667pt;}
.x23{left:283.189333pt;}
.xb2{left:284.236000pt;}
.x79{left:288.076000pt;}
.xb3{left:290.286667pt;}
.xa3{left:292.390667pt;}
.xc5{left:295.164000pt;}
.x5e{left:296.130667pt;}
.x37{left:298.409333pt;}
.x5f{left:302.638667pt;}
.xb4{left:303.961333pt;}
.x38{left:305.050667pt;}
.xc2{left:306.496000pt;}
.x39{left:308.437333pt;}
.xb5{left:312.045333pt;}
.x17{left:316.477333pt;}
.xa2{left:317.962667pt;}
.x76{left:320.493333pt;}
.x3a{left:321.721333pt;}
.x3d{left:322.901333pt;}
.x3b{left:325.109333pt;}
.x3e{left:329.544000pt;}
.xc6{left:331.893333pt;}
.x3f{left:332.804000pt;}
.x77{left:333.777333pt;}
.x3c{left:338.392000pt;}
.x40{left:339.446667pt;}
.x41{left:342.708000pt;}
.xa{left:348.321333pt;}
.x42{left:349.349333pt;}
.x55{left:351.538667pt;}
.x43{left:352.610667pt;}
.xb{left:354.962667pt;}
.xc{left:358.217333pt;}
.xd{left:364.858667pt;}
.x44{left:365.893333pt;}
.x56{left:368.100000pt;}
.x45{left:369.154667pt;}
.x6e{left:371.908000pt;}
.xa1{left:375.438667pt;}
.x6f{left:379.213333pt;}
.x46{left:382.438667pt;}
.x72{left:390.684000pt;}
.x47{left:397.386667pt;}
.x60{left:402.308000pt;}
.x48{left:404.028000pt;}
.x49{left:407.282667pt;}
.xca{left:409.416000pt;}
.x7a{left:412.417333pt;}
.x61{left:415.592000pt;}
.x62{left:418.978667pt;}
.x4a{left:420.566667pt;}
.x12{left:422.968000pt;}
.x7b{left:425.700000pt;}
.x4f{left:426.685325pt;}
.x7c{left:428.954667pt;}
.x63{left:432.262667pt;}
.x13{left:436.252000pt;}
.x89{left:438.593333pt;}
.x14{left:439.609333pt;}
.x7d{left:442.238667pt;}
.x52{left:451.620000pt;}
.x15{left:452.892000pt;}
.x8a{left:455.250667pt;}
.x20{left:457.631874pt;}
.x64{left:465.966667pt;}
.x73{left:468.961333pt;}
.x8b{left:471.908000pt;}
.x57{left:472.854667pt;}
.x5b{left:476.277333pt;}
.x74{left:482.245333pt;}
.x8c{left:485.192000pt;}
.x58{left:486.137333pt;}
.x59{left:489.414667pt;}
.x5c{left:496.084000pt;}
.x8d{left:497.900000pt;}
.x5a{left:502.698667pt;}
.x24{left:505.994667pt;}
.x5d{left:509.366667pt;}
.x8e{left:511.184000pt;}
.x25{left:513.300000pt;}
.x18{left:530.020000pt;}
.x1c{left:533.262667pt;}
.x69{left:535.088058pt;}
.xbf{left:537.152000pt;}
.xa4{left:542.377333pt;}
.x19{left:543.302667pt;}
.x1a{left:546.690667pt;}
.x82{left:551.765333pt;}
.x8f{left:555.860000pt;}
.x83{left:558.406667pt;}
.x1b{left:559.974667pt;}
.x90{left:572.434667pt;}
.x91{left:575.725333pt;}
.x98{left:586.952000pt;}
.x92{left:589.009333pt;}
.x26{left:590.014667pt;}
.x65{left:591.665333pt;}
.xc0{left:597.061333pt;}
.x99{left:600.236000pt;}
.x27{left:601.969333pt;}
.xd0{left:603.326667pt;}
.x66{left:604.949333pt;}
.x93{left:608.874667pt;}
.xac{left:611.328000pt;}
.x10{left:612.334667pt;}
.x2f{left:614.288000pt;}
.xad{left:617.378667pt;}
.x30{left:620.266667pt;}
.x35{left:621.194667pt;}
.x94{left:622.158667pt;}
.x11{left:625.618667pt;}
.x96{left:628.096000pt;}
.xae{left:631.053333pt;}
.x36{left:634.478667pt;}
.xc1{left:635.909333pt;}
.x95{left:638.733333pt;}
.x97{left:641.380000pt;}
.x2c{left:642.750667pt;}
.xbb{left:644.719988pt;}
.xcb{left:645.880000pt;}
.x71{left:647.074667pt;}
.x2d{left:650.056000pt;}
.xd4{left:651.236000pt;}
.xd5{left:652.325333pt;}
.x7e{left:653.244000pt;}
.xcc{left:655.908000pt;}
.x86{left:659.296000pt;}
.x87{left:662.600000pt;}
.xd9{left:665.418667pt;}
.x7f{left:666.526667pt;}
.xd2{left:667.649333pt;}
.x80{left:669.781333pt;}
.x4b{left:671.033333pt;}
.x88{left:672.545333pt;}
.xd6{left:676.234667pt;}
.xcd{left:679.221333pt;}
.x4c{left:680.405333pt;}
.xaf{left:681.986667pt;}
.x81{left:683.065333pt;}
.x28{left:684.678667pt;}
.x75{left:686.376000pt;}
.xb0{left:688.036000pt;}
.x29{left:689.986667pt;}
.xd3{left:691.558667pt;}
.x31{left:695.660000pt;}
.xd1{left:700.292000pt;}
.x32{left:701.638667pt;}
.xb1{left:708.830667pt;}
.x53{left:710.108000pt;}
.x33{left:711.234667pt;}
.xd7{left:720.262667pt;}
.x54{left:722.062667pt;}
.x34{left:724.517333pt;}
.xcf{left:725.745333pt;}
.x2e{left:728.130667pt;}
.xc3{left:729.330667pt;}
.xe{left:733.794667pt;}
.x4d{left:736.994667pt;}
.xc4{left:738.692000pt;}
.xf{left:740.436000pt;}
.xd8{left:744.173333pt;}
}




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