
    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_e991294894889c69cde43864.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_9387685ac2558b328edca0f4.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_e5cf037de352e9f054dc5c50.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_740d4b6e7e8420841409a302.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_1a0af0d4ff9b8a2bd7c760bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_74e86d1aab51220d5d5a0410.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_243993076dcf5b330dc9d593.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_b0cae09e74a431501e759cee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200684;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_b35de73f0a3bcfbd9ac08dac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.216309;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_bda2e9750fa0055df127b9e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_7ef9abc9eb0498830696e2ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.987000;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_63120e4605887e061ceeb460.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;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_9fb6199dba0243d133fecfb2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c39b7c22f2de13e95a96f92e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6042f04d8469fcd254fd4c9d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_90f559d4058c704d749f0911.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200684;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_eda0b0f5fc05517bcff1e0a8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.216309;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_bda2e9750fa0055df127b9e5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.708008;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_9199dec053721d2f118082e0.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_e3e162b5934b20abc7c3c494.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_a14d8308bc9a983e2a749619.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.682617;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_6042f04d8469fcd254fd4c9d.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_ba81e358c4fa5f1985727aa3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.200684;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_41c9c8319e7a5034c0e079a3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.216309;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_bda2e9750fa0055df127b9e5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.708008;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_a8d2db6f1976817c647e898e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.926270;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_c2e1815964b5497d760b47e4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e34361d95a232b55091c50b5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.740000;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_a0d4014b1978cead945c9791.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.695000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m24{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);}
.m26{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);}
.m1f{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);}
.m6{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);}
.m9{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);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1e{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);}
.mf{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);}
.md{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);}
.m15{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);}
.m11{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);}
.m25{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);}
.ma{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);}
.mb{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);}
.m1b{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);}
.m23{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);}
.m13{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);}
.m16{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);}
.m28{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);}
.me{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);}
.m21{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);}
.m18{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);}
.m1{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);}
.m22{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);}
.m1d{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);}
.m5{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);}
.m4{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);}
.m7{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);}
.m20{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);}
.m19{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);}
.m8{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);}
.m17{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);}
.m1a{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);}
.m10{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);}
.mc{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.248000px;}
.v4{vertical-align:10.794600px;}
.v8{vertical-align:11.994000px;}
.v5{vertical-align:15.096240px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:30.578400px;}
.ls8{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.000335px;}
.ls1{letter-spacing:0.000583px;}
.ls3c{letter-spacing:0.000800px;}
.ls4a{letter-spacing:0.001012px;}
.ls1d{letter-spacing:0.001133px;}
.ls39{letter-spacing:0.001155px;}
.ls4d{letter-spacing:0.001357px;}
.ls41{letter-spacing:0.002552px;}
.ls47{letter-spacing:0.002841px;}
.ls1e{letter-spacing:0.003178px;}
.ls14{letter-spacing:0.003389px;}
.ls4c{letter-spacing:0.003437px;}
.lse{letter-spacing:0.003589px;}
.ls43{letter-spacing:0.003668px;}
.ls4b{letter-spacing:0.004078px;}
.ls2{letter-spacing:0.004200px;}
.ls3e{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.005550px;}
.ls30{letter-spacing:0.011520px;}
.ls2f{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.179280px;}
.ls25{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.358560px;}
.ls28{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.583279px;}
.ls21{letter-spacing:0.635550px;}
.ls20{letter-spacing:0.641250px;}
.ls9{letter-spacing:1.275394px;}
.ls31{letter-spacing:1.420741px;}
.ls2b{letter-spacing:1.792800px;}
.ls2a{letter-spacing:1.852560px;}
.ls6{letter-spacing:1.861130px;}
.ls29{letter-spacing:2.151360px;}
.ls12{letter-spacing:2.283034px;}
.ls11{letter-spacing:2.289034px;}
.ls32{letter-spacing:2.540912px;}
.ls33{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls10{letter-spacing:3.359510px;}
.ls24{letter-spacing:3.735634px;}
.ls23{letter-spacing:3.741634px;}
.ls2c{letter-spacing:8.246880px;}
.ls7{letter-spacing:11.954850px;}
.ls46{letter-spacing:12.356522px;}
.ls22{letter-spacing:12.778260px;}
.ls3a{letter-spacing:12.956522px;}
.ls42{letter-spacing:13.230242px;}
.ls44{letter-spacing:13.292749px;}
.ls3d{letter-spacing:13.448400px;}
.ls34{letter-spacing:13.450800px;}
.ls45{letter-spacing:13.451510px;}
.ls40{letter-spacing:13.454400px;}
.ls4e{letter-spacing:13.454592px;}
.ls3f{letter-spacing:13.532291px;}
.ls4f{letter-spacing:13.541337px;}
.ls52{letter-spacing:13.680835px;}
.ls3b{letter-spacing:13.756282px;}
.ls38{letter-spacing:14.676051px;}
.lsa{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.003676px;}
.ls48{letter-spacing:15.185694px;}
.ls36{letter-spacing:15.259139px;}
.ls37{letter-spacing:15.265261px;}
.ls50{letter-spacing:15.968047px;}
.lsd{letter-spacing:16.438290px;}
.lsc{letter-spacing:16.498066px;}
.ls51{letter-spacing:21.615106px;}
.ls2d{letter-spacing:49.899600px;}
.ls1b{letter-spacing:55.397520px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls3{letter-spacing:72.355200px;}
.ls19{letter-spacing:83.424960px;}
.ls1c{letter-spacing:84.201840px;}
.ls13{letter-spacing:139.644538px;}
.ls2e{letter-spacing:238.502160px;}
.lsf{letter-spacing:846.025200px;}
.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;}
}
.ws6e{word-spacing:-59.760000px;}
.ws37{word-spacing:-14.943900px;}
.ws85{word-spacing:-14.940000px;}
.ws6d{word-spacing:-13.500000px;}
.ws6f{word-spacing:-13.449600px;}
.wsa1{word-spacing:-12.104640px;}
.ws63{word-spacing:-12.060000px;}
.ws22{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws11{word-spacing:-3.108331px;}
.wsb2{word-spacing:-2.630126px;}
.wsb4{word-spacing:-2.271473px;}
.ws112{word-spacing:-2.259533px;}
.wsaf{word-spacing:-2.092146px;}
.wsb9{word-spacing:-2.044339px;}
.ws26{word-spacing:-2.032370px;}
.ws65{word-spacing:-1.972595px;}
.wscc{word-spacing:-1.936742px;}
.ws9{word-spacing:-1.908367px;}
.ws27{word-spacing:-1.853044px;}
.ws8b{word-spacing:-1.721549px;}
.wsa5{word-spacing:-1.673717px;}
.ws84{word-spacing:-1.613941px;}
.wsa7{word-spacing:-1.554166px;}
.ws8c{word-spacing:-1.506355px;}
.ws8a{word-spacing:-1.494390px;}
.wse4{word-spacing:-1.452557px;}
.ws50{word-spacing:-1.434614px;}
.wsb{word-spacing:-1.374839px;}
.ws8{word-spacing:-1.322630px;}
.wsa6{word-spacing:-1.315063px;}
.wsae{word-spacing:-1.195512px;}
.ws30{word-spacing:-1.135736px;}
.wse5{word-spacing:-1.075968px;}
.ws83{word-spacing:-1.075961px;}
.wsa8{word-spacing:-1.016185px;}
.wsef{word-spacing:-0.968371px;}
.ws64{word-spacing:-0.956410px;}
.ws42{word-spacing:-0.896634px;}
.ws19{word-spacing:-0.836858px;}
.ws5b{word-spacing:-0.717307px;}
.wsbc{word-spacing:-0.699379px;}
.ws7f{word-spacing:-0.597756px;}
.ws121{word-spacing:-0.537984px;}
.wsab{word-spacing:-0.537980px;}
.wsbe{word-spacing:-0.484186px;}
.ws6a{word-spacing:-0.478205px;}
.ws32{word-spacing:-0.358654px;}
.ws105{word-spacing:-0.322790px;}
.ws14{word-spacing:-0.298878px;}
.wsb8{word-spacing:-0.268992px;}
.wsf{word-spacing:-0.239102px;}
.wsd2{word-spacing:-0.236194px;}
.wsc3{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.wsd9{word-spacing:-0.161395px;}
.wsa{word-spacing:-0.119551px;}
.wsc8{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws47{word-spacing:-0.050033px;}
.ws9b{word-spacing:-0.048419px;}
.ws23{word-spacing:-0.047821px;}
.ws11b{word-spacing:-0.028474px;}
.ws7c{word-spacing:-0.027488px;}
.ws6{word-spacing:-0.002950px;}
.wse6{word-spacing:-0.002026px;}
.ws4{word-spacing:-0.001792px;}
.ws5{word-spacing:-0.001483px;}
.ws0{word-spacing:0.000000px;}
.ws11a{word-spacing:0.001670px;}
.ws3{word-spacing:0.003592px;}
.wsc5{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.ws56{word-spacing:0.096837px;}
.wsf0{word-spacing:0.107597px;}
.ws29{word-spacing:0.119551px;}
.ws2f{word-spacing:0.123128px;}
.ws54{word-spacing:0.145256px;}
.ws86{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws55{word-spacing:0.193674px;}
.wsbf{word-spacing:0.215194px;}
.ws12{word-spacing:0.239102px;}
.wscf{word-spacing:0.268992px;}
.ws36{word-spacing:0.298878px;}
.wsc1{word-spacing:0.322790px;}
.ws68{word-spacing:0.358654px;}
.wsd0{word-spacing:0.376589px;}
.ws4d{word-spacing:0.418429px;}
.ws3a{word-spacing:0.478205px;}
.ws31{word-spacing:0.537980px;}
.wsf3{word-spacing:0.537984px;}
.ws6c{word-spacing:0.597756px;}
.wsac{word-spacing:0.717307px;}
.ws69{word-spacing:0.777083px;}
.ws62{word-spacing:0.836858px;}
.wsaa{word-spacing:0.896634px;}
.ws10e{word-spacing:0.968371px;}
.ws38{word-spacing:1.016185px;}
.ws122{word-spacing:1.075968px;}
.wsf6{word-spacing:1.129766px;}
.ws39{word-spacing:1.135736px;}
.ws1a{word-spacing:1.195512px;}
.wsec{word-spacing:1.237363px;}
.ws88{word-spacing:1.315063px;}
.wse8{word-spacing:1.344960px;}
.ws20{word-spacing:1.374839px;}
.ws10b{word-spacing:1.398758px;}
.ws2c{word-spacing:1.434614px;}
.ws82{word-spacing:1.494390px;}
.wsf2{word-spacing:1.506355px;}
.ws34{word-spacing:1.554166px;}
.ws7e{word-spacing:1.613941px;}
.wsf8{word-spacing:1.667750px;}
.wsd{word-spacing:1.673717px;}
.ws95{word-spacing:1.793268px;}
.wsd6{word-spacing:1.829146px;}
.ws24{word-spacing:1.853044px;}
.ws107{word-spacing:1.936742px;}
.wsca{word-spacing:2.044339px;}
.wse7{word-spacing:2.313331px;}
.ws1e{word-spacing:2.331248px;}
.wse3{word-spacing:2.367130px;}
.ws89{word-spacing:2.391024px;}
.ws57{word-spacing:2.450800px;}
.wsbb{word-spacing:2.474726px;}
.ws87{word-spacing:2.510575px;}
.ws17{word-spacing:2.570351px;}
.ws113{word-spacing:2.636122px;}
.wsb0{word-spacing:2.689902px;}
.ws3b{word-spacing:2.809453px;}
.wse1{word-spacing:2.851315px;}
.ws1d{word-spacing:2.869229px;}
.wsd4{word-spacing:2.905114px;}
.ws28{word-spacing:2.988780px;}
.ws40{word-spacing:3.048556px;}
.ws41{word-spacing:3.108331px;}
.wsfc{word-spacing:3.223987px;}
.wsf1{word-spacing:3.224400px;}
.wsd7{word-spacing:3.224736px;}
.ws101{word-spacing:3.224957px;}
.wsf5{word-spacing:3.224986px;}
.ws1b{word-spacing:3.227882px;}
.wsdb{word-spacing:3.227904px;}
.ws115{word-spacing:3.228480px;}
.wsfb{word-spacing:3.229219px;}
.wsfe{word-spacing:3.229296px;}
.ws106{word-spacing:3.232800px;}
.ws1c{word-spacing:3.407209px;}
.ws3d{word-spacing:3.526760px;}
.ws123{word-spacing:3.550694px;}
.ws15{word-spacing:3.586536px;}
.ws3f{word-spacing:3.706087px;}
.wsdd{word-spacing:3.712090px;}
.ws60{word-spacing:3.765863px;}
.ws81{word-spacing:3.825638px;}
.ws97{word-spacing:3.885414px;}
.ws3c{word-spacing:3.945190px;}
.ws70{word-spacing:4.064741px;}
.ws45{word-spacing:4.244068px;}
.wsfd{word-spacing:4.357670px;}
.wsa9{word-spacing:4.423394px;}
.ws51{word-spacing:4.602721px;}
.wsd5{word-spacing:4.626662px;}
.wsb3{word-spacing:4.662497px;}
.ws67{word-spacing:4.722272px;}
.ws96{word-spacing:4.782048px;}
.ws5e{word-spacing:4.841824px;}
.wsc2{word-spacing:4.895654px;}
.wse{word-spacing:4.901599px;}
.ws61{word-spacing:5.080926px;}
.ws13{word-spacing:5.200477px;}
.ws109{word-spacing:5.379840px;}
.ws35{word-spacing:5.499355px;}
.wsb1{word-spacing:5.559131px;}
.ws52{word-spacing:5.858009px;}
.wsf7{word-spacing:5.917824px;}
.ws2a{word-spacing:5.977560px;}
.ws25{word-spacing:6.037336px;}
.ws33{word-spacing:6.276438px;}
.ws117{word-spacing:6.455808px;}
.ws66{word-spacing:6.635092px;}
.ws44{word-spacing:6.694867px;}
.wsb6{word-spacing:6.724800px;}
.ws18{word-spacing:6.754643px;}
.wsb7{word-spacing:6.778598px;}
.ws2d{word-spacing:6.993745px;}
.ws4e{word-spacing:7.232848px;}
.wsad{word-spacing:7.471950px;}
.ws100{word-spacing:7.746970px;}
.ws4c{word-spacing:7.770828px;}
.wsc{word-spacing:8.129482px;}
.ws118{word-spacing:8.177357px;}
.ws16{word-spacing:8.308808px;}
.ws125{word-spacing:8.392550px;}
.wsf9{word-spacing:8.446349px;}
.ws10d{word-spacing:8.984333px;}
.ws58{word-spacing:9.026116px;}
.ws11c{word-spacing:9.091930px;}
.ws4b{word-spacing:9.444545px;}
.ws119{word-spacing:9.629914px;}
.ws43{word-spacing:9.803198px;}
.ws48{word-spacing:9.982525px;}
.ws2e{word-spacing:10.460730px;}
.ws80{word-spacing:10.998710px;}
.wscd{word-spacing:11.459059px;}
.wsfa{word-spacing:11.566656px;}
.ws21{word-spacing:11.904248px;}
.ws120{word-spacing:11.943245px;}
.ws11e{word-spacing:11.968836px;}
.ws10f{word-spacing:13.180608px;}
.wsda{word-spacing:13.234406px;}
.ws103{word-spacing:13.342003px;}
.ws110{word-spacing:13.385846px;}
.ws10c{word-spacing:13.385962px;}
.wse2{word-spacing:13.386499px;}
.wsf4{word-spacing:13.387315px;}
.wsc4{word-spacing:13.390157px;}
.wsee{word-spacing:13.392499px;}
.ws10a{word-spacing:13.393459px;}
.ws116{word-spacing:13.394285px;}
.wsc7{word-spacing:13.395802px;}
.wsc6{word-spacing:13.449600px;}
.wsba{word-spacing:13.557197px;}
.wsc0{word-spacing:13.610995px;}
.wsce{word-spacing:13.664794px;}
.wsd1{word-spacing:13.772390px;}
.ws6b{word-spacing:14.226593px;}
.ws111{word-spacing:14.256576px;}
.ws5c{word-spacing:14.465695px;}
.wsed{word-spacing:14.633165px;}
.ws5a{word-spacing:14.704798px;}
.wsde{word-spacing:14.877970px;}
.ws3e{word-spacing:14.884124px;}
.ws5d{word-spacing:15.123227px;}
.ws108{word-spacing:15.386342px;}
.wsb5{word-spacing:15.762931px;}
.wsdc{word-spacing:16.139520px;}
.wsd3{word-spacing:16.408512px;}
.ws104{word-spacing:16.615306px;}
.wse0{word-spacing:16.618608px;}
.wse9{word-spacing:16.620883px;}
.wsd8{word-spacing:16.621622px;}
.ws124{word-spacing:16.621661px;}
.wseb{word-spacing:16.621718px;}
.ws126{word-spacing:16.621853px;}
.wscb{word-spacing:16.623706px;}
.ws114{word-spacing:16.624646px;}
.wsbd{word-spacing:16.677504px;}
.wsc9{word-spacing:16.731302px;}
.wsea{word-spacing:16.838899px;}
.wsff{word-spacing:16.892698px;}
.ws5f{word-spacing:19.367294px;}
.ws11d{word-spacing:22.487731px;}
.ws11f{word-spacing:25.339046px;}
.ws102{word-spacing:26.092224px;}
.wsdf{word-spacing:28.297958px;}
.wsa3{word-spacing:79.454857px;}
.ws98{word-spacing:98.592258px;}
.ws9f{word-spacing:99.693815px;}
.ws9c{word-spacing:114.122546px;}
.wsa4{word-spacing:118.334961px;}
.wsa2{word-spacing:123.935305px;}
.ws9a{word-spacing:127.793929px;}
.ws9e{word-spacing:143.548105px;}
.ws99{word-spacing:197.487098px;}
.wsa0{word-spacing:209.752554px;}
.ws9d{word-spacing:253.810092px;}
.ws72{word-spacing:308.364519px;}
.ws79{word-spacing:313.092482px;}
.ws53{word-spacing:342.754986px;}
.ws7d{word-spacing:344.677212px;}
.ws74{word-spacing:359.039635px;}
.ws77{word-spacing:365.506280px;}
.ws46{word-spacing:414.469329px;}
.ws49{word-spacing:423.373747px;}
.ws7b{word-spacing:471.117969px;}
.ws7a{word-spacing:472.497898px;}
.ws71{word-spacing:474.929800px;}
.ws73{word-spacing:486.552730px;}
.ws75{word-spacing:487.932659px;}
.ws76{word-spacing:489.005937px;}
.ws78{word-spacing:497.438836px;}
.ws59{word-spacing:498.275401px;}
.ws8d{word-spacing:654.878880px;}
.ws94{word-spacing:663.226675px;}
.ws93{word-spacing:664.679232px;}
.ws4f{word-spacing:673.260077px;}
.ws8f{word-spacing:679.473792px;}
.ws90{word-spacing:680.926349px;}
.ws91{word-spacing:682.056115px;}
.ws92{word-spacing:690.932851px;}
.ws4a{word-spacing:754.514490px;}
.ws8e{word-spacing:780.668582px;}
._65{margin-left:-20.915654px;}
._66{margin-left:-7.639373px;}
._0{margin-left:-6.635092px;}
._4{margin-left:-4.949453px;}
._12{margin-left:-3.392198px;}
._7{margin-left:-2.047382px;}
._3{margin-left:-1.022170px;}
._8{width:1.091170px;}
._1{width:3.000787px;}
._3a{width:4.048190px;}
._40{width:5.309058px;}
._37{width:6.573600px;}
._36{width:7.589520px;}
._3b{width:8.665200px;}
._38{width:11.294640px;}
._39{width:12.534110px;}
._13{width:13.852928px;}
._5{width:15.709133px;}
._6{width:17.645875px;}
._c{width:18.724774px;}
._f{width:19.800735px;}
._d{width:21.578992px;}
._16{width:22.595177px;}
._a{width:23.790689px;}
._9{width:25.165528px;}
._e{width:26.376051px;}
._11{width:28.273859px;}
._10{width:29.349820px;}
._19{width:30.963761px;}
._35{width:33.053067px;}
._b{width:34.296453px;}
._63{width:35.931120px;}
._18{width:37.978502px;}
._67{width:39.972211px;}
._23{width:42.802419px;}
._3e{width:47.222724px;}
._17{width:50.331055px;}
._68{width:52.722432px;}
._2{width:54.402293px;}
._69{width:61.868160px;}
._64{width:88.767360px;}
._41{width:100.837031px;}
._31{width:106.486216px;}
._33{width:126.425394px;}
._60{width:135.959316px;}
._61{width:145.307451px;}
._59{width:151.501674px;}
._5a{width:156.198275px;}
._5c{width:162.734780px;}
._62{width:165.591475px;}
._52{width:180.224640px;}
._5e{width:189.364988px;}
._5f{width:200.214651px;}
._20{width:216.444413px;}
._58{width:231.333120px;}
._1f{width:242.164960px;}
._5d{width:265.914732px;}
._53{width:273.259962px;}
._5b{width:276.764394px;}
._42{width:316.174043px;}
._2e{width:321.692913px;}
._4a{width:334.556110px;}
._48{width:337.418185px;}
._4b{width:340.229151px;}
._4d{width:342.859268px;}
._30{width:348.323121px;}
._2c{width:367.835800px;}
._4c{width:369.055401px;}
._32{width:370.450403px;}
._1b{width:384.149627px;}
._4e{width:403.143690px;}
._21{width:412.286779px;}
._28{width:442.075255px;}
._2f{width:444.709116px;}
._2a{width:451.793583px;}
._25{width:483.652996px;}
._1e{width:490.614862px;}
._43{width:493.707917px;}
._49{width:503.876708px;}
._47{width:506.738637px;}
._55{width:514.205107px;}
._44{width:519.231669px;}
._45{width:522.093598px;}
._46{width:525.675067px;}
._56{width:528.425155px;}
._57{width:530.882611px;}
._29{width:588.188667px;}
._26{width:608.766555px;}
._4f{width:610.089840px;}
._27{width:625.726853px;}
._1c{width:628.404400px;}
._22{width:671.098535px;}
._3c{width:695.344320px;}
._14{width:717.498482px;}
._2d{width:726.907841px;}
._1d{width:752.839208px;}
._54{width:773.997581px;}
._51{width:804.389707px;}
._50{width:827.301950px;}
._1a{width:871.666424px;}
._2b{width:882.476675px;}
._24{width:901.892517px;}
._3f{width:1528.132496px;}
._34{width:1551.914816px;}
._3d{width:1922.198700px;}
._15{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs12{font-size:36.000000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:48.418560px;}
.fs9{font-size:50.032512px;}
.fs13{font-size:50.452200px;}
.fsa{font-size:51.108480px;}
.fs11{font-size:53.255100px;}
.fs5{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsf{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:62.286600px;}
.fsd{font-size:72.000000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y22f{bottom:-779.293140px;}
.y1d7{bottom:-766.633740px;}
.y22e{bottom:-746.903220px;}
.y1d6{bottom:-746.300400px;}
.y1d5{bottom:-726.131400px;}
.y22d{bottom:-714.677640px;}
.y1d4{bottom:-696.789240px;}
.y22c{bottom:-682.452060px;}
.y1d3{bottom:-667.641300px;}
.y22b{bottom:-649.345020px;}
.y1d2{bottom:-647.472300px;}
.y1d1{bottom:-618.130140px;}
.y22a{bottom:-612.982500px;}
.y229{bottom:-593.542500px;}
.y1d0{bottom:-588.982200px;}
.y228{bottom:-573.913500px;}
.y1cf{bottom:-568.633920px;}
.y1ce{bottom:-548.479860px;}
.y227{bottom:-535.935480px;}
.y1cd{bottom:-519.137700px;}
.y226{bottom:-515.602140px;}
.y15e{bottom:-508.801500px;}
.y1cc{bottom:-498.968700px;}
.y225{bottom:-495.433140px;}
.y15d{bottom:-488.629440px;}
.y224{bottom:-475.099800px;}
.y1cb{bottom:-469.820760px;}
.y15c{bottom:-468.296100px;}
.y223{bottom:-454.945740px;}
.y1ca{bottom:-449.472480px;}
.y15b{bottom:-439.133220px;}
.y222{bottom:-434.776740px;}
.y1c9{bottom:-429.318420px;}
.y221{bottom:-414.443400px;}
.y15a{bottom:-400.797180px;}
.y1c8{bottom:-399.976260px;}
.y220{bottom:-394.274400px;}
.y159{bottom:-380.628180px;}
.y1c7{bottom:-379.822200px;}
.y21f{bottom:-373.941060px;}
.y158{bottom:-360.294840px;}
.y1c6{bottom:-359.473920px;}
.y21e{bottom:-353.772060px;}
.y157{bottom:-340.125840px;}
.y21d{bottom:-333.438720px;}
.y1c5{bottom:-330.311040px;}
.y156{bottom:-319.971780px;}
.y21c{bottom:-313.284660px;}
.y1c4{bottom:-310.156980px;}
.y155{bottom:-299.638440px;}
.y21b{bottom:-293.115660px;}
.y1c3{bottom:-289.808700px;}
.y154{bottom:-279.469440px;}
.y21a{bottom:-272.782320px;}
.y1c2{bottom:-260.660760px;}
.y153{bottom:-259.136100px;}
.y219{bottom:-252.613320px;}
.y1c1{bottom:-240.312480px;}
.y152{bottom:-238.967100px;}
.y218{bottom:-232.279980px;}
.y151{bottom:-218.633760px;}
.y217{bottom:-212.110980px;}
.y1c0{bottom:-211.149600px;}
.y150{bottom:-198.479700px;}
.y216{bottom:-191.777640px;}
.y1bf{bottom:-181.822380px;}
.y14f{bottom:-178.310700px;}
.y215{bottom:-171.623580px;}
.y1be{bottom:-161.653380px;}
.y14e{bottom:-157.977360px;}
.y214{bottom:-151.454580px;}
.y1bd{bottom:-141.499320px;}
.y14d{bottom:-137.808360px;}
.y213{bottom:-131.121240px;}
.y1bc{bottom:-121.151040px;}
.y14c{bottom:-117.475020px;}
.y212{bottom:-110.952240px;}
.y1bb{bottom:-100.996980px;}
.y14b{bottom:-97.306020px;}
.y211{bottom:-90.618900px;}
.y1ba{bottom:-80.648700px;}
.y14a{bottom:-76.972680px;}
.y149{bottom:-56.818620px;}
.y210{bottom:-53.002500px;}
.y1b9{bottom:-43.035000px;}
.y20f{bottom:-33.562500px;}
.y148{bottom:-19.192500px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.y147{bottom:5.278500px;}
.y20c{bottom:7.118580px;}
.y1b6{bottom:9.520500px;}
.ye{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y20b{bottom:22.773000px;}
.y1b5{bottom:43.000500px;}
.y1b8{bottom:50.560500px;}
.y20e{bottom:59.498220px;}
.y30{bottom:63.780000px;}
.y20d{bottom:75.153000px;}
.y1b7{bottom:84.040500px;}
.y2fd{bottom:108.957000px;}
.y2f{bottom:109.854000px;}
.y29a{bottom:110.898000px;}
.y13c{bottom:121.095000px;}
.y2c9{bottom:125.634000px;}
.y2fc{bottom:128.325000px;}
.y2e{bottom:130.119000px;}
.y299{bottom:131.161500px;}
.y13b{bottom:141.360000px;}
.y62{bottom:143.386500px;}
.y2c8{bottom:145.002000px;}
.y2fb{bottom:147.691500px;}
.y2d{bottom:150.382500px;}
.y1a4{bottom:150.520500px;}
.y298{bottom:151.426500px;}
.y61{bottom:163.650000px;}
.y24f{bottom:163.686000px;}
.y2c7{bottom:164.370000px;}
.y2fa{bottom:167.059500px;}
.y2c{bottom:170.647500px;}
.y297{bottom:171.690000px;}
.y173{bottom:171.816000px;}
.y1a3{bottom:172.278000px;}
.y208{bottom:177.321000px;}
.y27d{bottom:178.512000px;}
.y13a{bottom:179.556000px;}
.yde{bottom:180.524550px;}
.y2c6{bottom:183.736500px;}
.y60{bottom:183.913500px;}
.y24e{bottom:183.949500px;}
.y2f9{bottom:186.427500px;}
.y2b{bottom:190.911000px;}
.y296{bottom:191.953500px;}
.y172{bottom:192.079500px;}
.y8d{bottom:192.966525px;}
.ydd{bottom:195.319200px;}
.y207{bottom:197.586000px;}
.y27c{bottom:198.775500px;}
.y139{bottom:199.821000px;}
.y8c{bottom:200.609730px;}
.y2c5{bottom:203.104500px;}
.y5f{bottom:204.178500px;}
.y24d{bottom:204.213000px;}
.y2f8{bottom:205.794000px;}
.yda{bottom:210.113850px;}
.y1a2{bottom:210.475500px;}
.y2a{bottom:211.174500px;}
.y295{bottom:212.218500px;}
.y206{bottom:217.849500px;}
.y27b{bottom:219.040500px;}
.y171{bottom:221.310000px;}
.y2c4{bottom:222.471000px;}
.y5e{bottom:224.442000px;}
.yd9{bottom:224.908500px;}
.y2f7{bottom:225.162000px;}
.y8b{bottom:230.239530px;}
.y29{bottom:231.439500px;}
.y294{bottom:232.482000px;}
.y138{bottom:238.017000px;}
.y205{bottom:238.114500px;}
.y27a{bottom:239.304000px;}
.ydc{bottom:239.701800px;}
.y2c3{bottom:241.839000px;}
.y2f6{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.y8a{bottom:245.527335px;}
.y1a1{bottom:245.683500px;}
.y24c{bottom:251.185500px;}
.y28{bottom:251.703000px;}
.y146{bottom:252.612000px;}
.y293{bottom:252.747000px;}
.y87{bottom:253.171935px;}
.ydb{bottom:254.496450px;}
.y1db{bottom:255.382500px;}
.y170{bottom:256.129500px;}
.y112{bottom:256.782000px;}
.yad{bottom:257.283000px;}
.y137{bottom:258.282000px;}
.y204{bottom:258.378000px;}
.y279{bottom:259.569000px;}
.y89{bottom:260.815140px;}
.y2c2{bottom:261.207000px;}
.y2f5{bottom:263.896500px;}
.y5c{bottom:264.970500px;}
.y1a0{bottom:265.947000px;}
.y24b{bottom:267.697500px;}
.y27{bottom:271.968000px;}
.y292{bottom:273.010500px;}
.y1da{bottom:275.646000px;}
.yd8{bottom:275.773800px;}
.y88{bottom:276.102945px;}
.y16f{bottom:276.394500px;}
.y111{bottom:277.047000px;}
.yac{bottom:277.546500px;}
.y203{bottom:278.641500px;}
.y278{bottom:279.832500px;}
.y2c1{bottom:280.573500px;}
.yd4{bottom:283.170450px;}
.y2f4{bottom:283.264500px;}
.y24a{bottom:284.211000px;}
.y5b{bottom:285.234000px;}
.y19f{bottom:286.212000px;}
.yd7{bottom:290.568450px;}
.y26{bottom:292.231500px;}
.y291{bottom:293.274000px;}
.y1d9{bottom:295.911000px;}
.y136{bottom:296.478000px;}
.y16e{bottom:296.658000px;}
.y110{bottom:297.310500px;}
.yab{bottom:297.810000px;}
.yd2{bottom:297.965100px;}
.y86{bottom:298.157895px;}
.y20a{bottom:298.546500px;}
.y202{bottom:298.906500px;}
.y2c0{bottom:299.941500px;}
.y277{bottom:300.096000px;}
.y249{bottom:300.724500px;}
.y2f3{bottom:302.631000px;}
.yd6{bottom:305.363100px;}
.y5a{bottom:305.499000px;}
.y19e{bottom:306.475500px;}
.y1b4{bottom:310.309500px;}
.y25{bottom:312.495000px;}
.yd3{bottom:312.759750px;}
.y290{bottom:313.539000px;}
.y135{bottom:316.743000px;}
.y16d{bottom:316.923000px;}
.y248{bottom:317.238000px;}
.y10f{bottom:317.574000px;}
.yaa{bottom:318.075000px;}
.y201{bottom:319.170000px;}
.y2bf{bottom:319.308000px;}
.yd5{bottom:320.157750px;}
.y85{bottom:320.214240px;}
.y276{bottom:320.361000px;}
.y2f2{bottom:321.999000px;}
.y59{bottom:325.762500px;}
.y19d{bottom:326.739000px;}
.y1d8{bottom:330.910500px;}
.y24{bottom:332.760000px;}
.y247{bottom:333.750000px;}
.y28f{bottom:333.802500px;}
.y16c{bottom:337.186500px;}
.y10e{bottom:337.839000px;}
.ya9{bottom:338.338500px;}
.y2be{bottom:338.676000px;}
.y200{bottom:339.435000px;}
.y275{bottom:340.624500px;}
.y2f1{bottom:341.367000px;}
.yd1{bottom:341.501250px;}
.y84{bottom:342.269190px;}
.y58{bottom:346.027500px;}
.y19c{bottom:347.004000px;}
.y246{bottom:350.263500px;}
.y23{bottom:353.023500px;}
.y1b3{bottom:353.340000px;}
.y28e{bottom:354.067500px;}
.y134{bottom:354.939000px;}
.y16b{bottom:357.450000px;}
.y2bd{bottom:358.044000px;}
.y10d{bottom:358.102500px;}
.ya8{bottom:358.603500px;}
.y1ff{bottom:359.698500px;}
.y2f0{bottom:360.733500px;}
.y274{bottom:360.889500px;}
.y83{bottom:364.324140px;}
.y57{bottom:366.291000px;}
.y245{bottom:366.777000px;}
.y19b{bottom:367.267500px;}
.yd0{bottom:371.431500px;}
.y22{bottom:373.287000px;}
.y28d{bottom:374.331000px;}
.y133{bottom:375.204000px;}
.y2bc{bottom:377.410500px;}
.y16a{bottom:377.715000px;}
.ya7{bottom:378.867000px;}
.y1fe{bottom:379.962000px;}
.y2ef{bottom:380.101500px;}
.y273{bottom:381.153000px;}
.y244{bottom:383.215500px;}
.y56{bottom:386.554500px;}
.y10c{bottom:387.333000px;}
.y19a{bottom:387.532500px;}
.y21{bottom:393.552000px;}
.y28c{bottom:394.594500px;}
.y82{bottom:394.761000px;}
.y132{bottom:395.467500px;}
.y2bb{bottom:396.778500px;}
.y169{bottom:397.978500px;}
.ya6{bottom:399.130500px;}
.y2ee{bottom:399.468000px;}
.y1fd{bottom:400.227000px;}
.y272{bottom:401.416500px;}
.y55{bottom:406.819500px;}
.y243{bottom:407.556000px;}
.y199{bottom:407.796000px;}
.ycf{bottom:408.535500px;}
.y20{bottom:413.815500px;}
.y28b{bottom:414.859500px;}
.y131{bottom:415.731000px;}
.y2ba{bottom:416.145000px;}
.y168{bottom:418.243500px;}
.y2ed{bottom:418.836000px;}
.ya5{bottom:419.395500px;}
.y1fc{bottom:420.490500px;}
.y54{bottom:427.083000px;}
.y198{bottom:428.059500px;}
.yce{bottom:428.800500px;}
.y10b{bottom:429.982050px;}
.y81{bottom:431.865000px;}
.y28a{bottom:435.123000px;}
.y2b9{bottom:435.513000px;}
.y130{bottom:435.996000px;}
.y2ec{bottom:438.204000px;}
.y167{bottom:438.507000px;}
.y242{bottom:439.174500px;}
.ya4{bottom:439.659000px;}
.y1fb{bottom:440.755500px;}
.y1f{bottom:443.046000px;}
.y10a{bottom:444.776700px;}
.y53{bottom:447.348000px;}
.y271{bottom:447.510150px;}
.y197{bottom:448.324500px;}
.ycd{bottom:449.064000px;}
.y80{bottom:452.130000px;}
.y2b8{bottom:454.881000px;}
.y289{bottom:455.388000px;}
.y2eb{bottom:457.570500px;}
.y241{bottom:458.407500px;}
.y166{bottom:458.770500px;}
.y109{bottom:459.570000px;}
.ya3{bottom:459.924000px;}
.y1fa{bottom:461.019000px;}
.y270{bottom:462.304800px;}
.y12f{bottom:465.226500px;}
.y52{bottom:467.611500px;}
.y196{bottom:468.588000px;}
.ycc{bottom:469.327500px;}
.y26f{bottom:469.701450px;}
.y7f{bottom:472.393500px;}
.y2b7{bottom:474.247500px;}
.y288{bottom:475.651500px;}
.y2ea{bottom:476.938500px;}
.y240{bottom:477.640500px;}
.y165{bottom:479.035500px;}
.y106{bottom:480.847350px;}
.y1f9{bottom:481.282500px;}
.y51{bottom:487.875000px;}
.y108{bottom:488.111700px;}
.ya2{bottom:489.154500px;}
.ycb{bottom:489.592500px;}
.y26e{bottom:491.894100px;}
.y7e{bottom:492.658500px;}
.y2b6{bottom:493.615500px;}
.y105{bottom:495.642000px;}
.y287{bottom:495.915000px;}
.y2e9{bottom:496.305000px;}
.y195{bottom:497.818500px;}
.y26d{bottom:499.290750px;}
.y164{bottom:499.299000px;}
.y12e{bottom:500.046000px;}
.y1f8{bottom:501.547500px;}
.y107{bottom:502.906350px;}
.y50{bottom:508.140000px;}
.yca{bottom:509.856000px;}
.y104{bottom:510.436650px;}
.y7d{bottom:512.922000px;}
.y2b5{bottom:512.982000px;}
.y23f{bottom:514.744500px;}
.y2e8{bottom:515.673000px;}
.y286{bottom:516.180000px;}
.y1e{bottom:519.454500px;}
.y163{bottom:519.564000px;}
.y26c{bottom:521.549550px;}
.y1f7{bottom:521.811000px;}
.y4f{bottom:528.403500px;}
.y12d{bottom:529.276500px;}
.y102{bottom:531.712650px;}
.ya1{bottom:532.237575px;}
.y2b4{bottom:532.350000px;}
.y194{bottom:532.638000px;}
.y23e{bottom:535.009500px;}
.y2e7{bottom:535.041000px;}
.y26b{bottom:536.344200px;}
.y285{bottom:536.443500px;}
.yc9{bottom:539.086500px;}
.y103{bottom:539.110650px;}
.y1d{bottom:539.719500px;}
.y162{bottom:539.827500px;}
.y7c{bottom:542.152500px;}
.y26a{bottom:543.742200px;}
.y101{bottom:546.507300px;}
.ya0{bottom:547.854150px;}
.y4e{bottom:548.667000px;}
.y1f6{bottom:551.041500px;}
.y2b3{bottom:551.718000px;}
.y193{bottom:552.903000px;}
.y2e6{bottom:554.407500px;}
.y23d{bottom:555.273000px;}
.y284{bottom:556.708500px;}
.y161{bottom:560.091000px;}
.y9f{bottom:563.470725px;}
.y12c{bottom:564.096000px;}
.y269{bottom:565.933500px;}
.y100{bottom:567.784650px;}
.y4d{bottom:568.932000px;}
.y2b2{bottom:571.084500px;}
.y192{bottom:573.166500px;}
.y268{bottom:573.331500px;}
.y2e5{bottom:573.775500px;}
.yc8{bottom:573.906000px;}
.y23c{bottom:575.536500px;}
.y7b{bottom:576.972000px;}
.y1c{bottom:577.915500px;}
.y160{bottom:580.356000px;}
.yff{bottom:582.579300px;}
.y12b{bottom:584.359500px;}
.y1f5{bottom:585.861000px;}
.y9e{bottom:585.928725px;}
.y4c{bottom:589.195500px;}
.y2b1{bottom:590.452500px;}
.y2e4{bottom:593.142000px;}
.y191{bottom:593.430000px;}
.y9b{bottom:593.737725px;}
.yc7{bottom:594.171000px;}
.y23b{bottom:595.801500px;}
.y7a{bottom:597.235500px;}
.y1b{bottom:598.180500px;}
.y9d{bottom:601.545300px;}
.y266{bottom:602.005500px;}
.yfe{bottom:603.855300px;}
.y12a{bottom:604.623000px;}
.y1f4{bottom:606.126000px;}
.y9a{bottom:609.354300px;}
.y265{bottom:609.402150px;}
.y4b{bottom:609.460500px;}
.y2b0{bottom:609.820500px;}
.y2e3{bottom:612.510000px;}
.y190{bottom:613.695000px;}
.yc6{bottom:614.434500px;}
.y15f{bottom:615.355500px;}
.y23a{bottom:616.065000px;}
.y267{bottom:616.798800px;}
.y9c{bottom:617.161875px;}
.y79{bottom:617.500500px;}
.y1a{bottom:618.444000px;}
.yfd{bottom:618.649950px;}
.y129{bottom:624.888000px;}
.y1f3{bottom:626.389500px;}
.y2af{bottom:629.187000px;}
.y4a{bottom:629.724000px;}
.y2e2{bottom:631.878000px;}
.y18f{bottom:633.958500px;}
.yc5{bottom:634.698000px;}
.y239{bottom:636.330000px;}
.y78{bottom:637.764000px;}
.y145{bottom:637.785000px;}
.y19{bottom:638.707500px;}
.y99{bottom:639.621300px;}
.yfc{bottom:639.925950px;}
.y1f2{bottom:646.653000px;}
.y264{bottom:646.729500px;}
.y2ae{bottom:648.555000px;}
.y49{bottom:649.987500px;}
.y2e1{bottom:651.244500px;}
.y18e{bottom:654.223500px;}
.yfb{bottom:654.720600px;}
.yc4{bottom:654.963000px;}
.y98{bottom:655.237875px;}
.y238{bottom:656.593500px;}
.y128{bottom:657.106500px;}
.y77{bottom:658.029000px;}
.y18{bottom:658.972500px;}
.yf8{bottom:662.118600px;}
.y1b2{bottom:663.976500px;}
.y1f1{bottom:666.918000px;}
.y2ad{bottom:667.921500px;}
.yfa{bottom:669.515250px;}
.y48{bottom:670.252500px;}
.y2e0{bottom:670.612500px;}
.y18d{bottom:674.487000px;}
.yc3{bottom:675.226500px;}
.y237{bottom:676.857000px;}
.y127{bottom:677.371500px;}
.y97{bottom:677.695875px;}
.y76{bottom:678.292500px;}
.y17{bottom:679.236000px;}
.y263{bottom:679.941000px;}
.yf9{bottom:684.309900px;}
.y1f0{bottom:687.181500px;}
.y2ac{bottom:687.289500px;}
.y2df{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y96{bottom:693.312450px;}
.y18c{bottom:694.750500px;}
.yc2{bottom:695.491500px;}
.y236{bottom:697.122000px;}
.y75{bottom:698.556000px;}
.y126{bottom:699.129000px;}
.y16{bottom:699.501000px;}
.y262{bottom:700.206000px;}
.y1b1{bottom:702.172500px;}
.yf7{bottom:705.653400px;}
.y2ab{bottom:706.657500px;}
.y283{bottom:707.523000px;}
.y2de{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y18b{bottom:715.015500px;}
.yc1{bottom:715.755000px;}
.y95{bottom:715.770450px;}
.y1ef{bottom:716.412000px;}
.y235{bottom:717.385500px;}
.y74{bottom:718.821000px;}
.y15{bottom:719.764500px;}
.y261{bottom:720.469500px;}
.y125{bottom:720.888000px;}
.y1b0{bottom:722.437500px;}
.y2aa{bottom:726.024000px;}
.y2dd{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y94{bottom:731.387025px;}
.yf6{bottom:735.583500px;}
.yc0{bottom:736.018500px;}
.y234{bottom:737.650500px;}
.y73{bottom:739.084500px;}
.y14{bottom:740.028000px;}
.y260{bottom:740.733000px;}
.y124{bottom:741.151500px;}
.y282{bottom:742.342500px;}
.y2a9{bottom:745.392000px;}
.y91{bottom:747.003600px;}
.y2dc{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.y1af{bottom:753.162000px;}
.ybf{bottom:756.283500px;}
.y233{bottom:757.914000px;}
.y72{bottom:759.349500px;}
.y1ee{bottom:759.496350px;}
.y13{bottom:760.293000px;}
.y25f{bottom:760.998000px;}
.y18a{bottom:761.986500px;}
.y281{bottom:762.606000px;}
.y93{bottom:762.620175px;}
.y2a8{bottom:764.758500px;}
.y1ed{bottom:767.303925px;}
.y2db{bottom:767.449500px;}
.y43{bottom:771.573000px;}
.yf5{bottom:772.689000px;}
.y123{bottom:773.371500px;}
.y232{bottom:778.177500px;}
.y92{bottom:778.236750px;}
.y189{bottom:778.500000px;}
.y187{bottom:778.968000px;}
.y71{bottom:779.613000px;}
.y12{bottom:780.556500px;}
.y25e{bottom:781.261500px;}
.y280{bottom:782.871000px;}
.y2a7{bottom:784.126500px;}
.ybe{bottom:785.514000px;}
.y2da{bottom:786.816000px;}
.y1ae{bottom:791.359500px;}
.y42{bottom:791.836500px;}
.yf4{bottom:792.952500px;}
.y122{bottom:793.635000px;}
.y188{bottom:795.013500px;}
.y1eb{bottom:797.570925px;}
.y90{bottom:800.696175px;}
.y11{bottom:800.821500px;}
.y25d{bottom:801.526500px;}
.y27f{bottom:803.134500px;}
.y2a6{bottom:803.494500px;}
.y1ea{bottom:805.379925px;}
.y2d9{bottom:806.184000px;}
.y70{bottom:808.843500px;}
.y1ad{bottom:811.623000px;}
.y41{bottom:812.101500px;}
.y231{bottom:813.178500px;}
.y1ec{bottom:813.187500px;}
.yf3{bottom:813.216000px;}
.y121{bottom:813.900000px;}
.y8f{bottom:816.311325px;}
.y186{bottom:818.728500px;}
.y10{bottom:821.085000px;}
.y25c{bottom:821.790000px;}
.y2a5{bottom:822.861000px;}
.y27e{bottom:823.398000px;}
.y2d8{bottom:825.552000px;}
.ybd{bottom:828.229350px;}
.y1ac{bottom:831.886500px;}
.y40{bottom:832.365000px;}
.y230{bottom:832.411500px;}
.yf2{bottom:833.481000px;}
.y185{bottom:835.242000px;}
.y183{bottom:835.710000px;}
.y1e9{bottom:835.716750px;}
.y25b{bottom:842.053500px;}
.y2a4{bottom:842.229000px;}
.y120{bottom:843.130500px;}
.y6f{bottom:843.663000px;}
.y2d7{bottom:844.918500px;}
.y8e{bottom:847.087500px;}
.ybc{bottom:849.572850px;}
.y184{bottom:851.754000px;}
.y3f{bottom:852.628500px;}
.y209{bottom:854.841000px;}
.yd{bottom:856.516555px;}
.yc{bottom:856.911000px;}
.y1e8{bottom:858.247425px;}
.y2a3{bottom:861.595500px;}
.y25a{bottom:862.318500px;}
.y1ab{bottom:862.612500px;}
.yf1{bottom:862.711500px;}
.y6e{bottom:863.926500px;}
.y2d6{bottom:864.286500px;}
.ybb{bottom:870.850200px;}
.y3e{bottom:872.893500px;}
.y182{bottom:875.470500px;}
.y1e7{bottom:880.705425px;}
.y259{bottom:882.582000px;}
.y2d5{bottom:883.653000px;}
.y6d{bottom:884.191500px;}
.y1aa{bottom:884.370000px;}
.yb9{bottom:885.644850px;}
.y11f{bottom:885.778500px;}
.y1e6{bottom:888.514425px;}
.y2a2{bottom:889.930500px;}
.y181{bottom:891.984000px;}
.y17f{bottom:892.452000px;}
.y3d{bottom:893.157000px;}
.yb{bottom:896.283000px;}
.y144{bottom:897.820500px;}
.yba{bottom:900.439500px;}
.y11e{bottom:900.573150px;}
.y2d4{bottom:903.021000px;}
.y6c{bottom:904.455000px;}
.yee{bottom:905.359200px;}
.y180{bottom:908.496000px;}
.y300{bottom:908.805000px;}
.yf0{bottom:912.757200px;}
.y3c{bottom:913.422000px;}
.ya{bottom:914.439000px;}
.y143{bottom:918.084000px;}
.y1e5{bottom:918.781425px;}
.yed{bottom:920.153850px;}
.yb8{bottom:921.783000px;}
.y11d{bottom:921.850500px;}
.y2d3{bottom:922.389000px;}
.y1a9{bottom:922.567500px;}
.y6b{bottom:924.718500px;}
.y1e4{bottom:926.589000px;}
.yef{bottom:927.551850px;}
.y2ff{bottom:928.173000px;}
.y2a1{bottom:929.382000px;}
.y258{bottom:929.553000px;}
.y17e{bottom:932.212500px;}
.y3b{bottom:933.685500px;}
.yec{bottom:934.948500px;}
.y11c{bottom:936.643800px;}
.y9{bottom:937.479000px;}
.y142{bottom:938.349000px;}
.y2d2{bottom:941.755500px;}
.y1a8{bottom:942.831000px;}
.yb7{bottom:943.126500px;}
.y6a{bottom:944.983500px;}
.y257{bottom:946.066500px;}
.y2fe{bottom:947.539500px;}
.y8{bottom:950.754000px;}
.y2a0{bottom:953.547000px;}
.y3a{bottom:953.949000px;}
.y17d{bottom:955.927500px;}
.yeb{bottom:956.225850px;}
.y1e3{bottom:956.856000px;}
.y11b{bottom:957.988650px;}
.y141{bottom:958.612500px;}
.y2d1{bottom:961.123500px;}
.y256{bottom:962.580000px;}
.y1a7{bottom:963.096000px;}
.yb6{bottom:964.403850px;}
.y69{bottom:965.247000px;}
.y29f{bottom:968.745000px;}
.ye9{bottom:971.020500px;}
.y17c{bottom:972.441000px;}
.y1e1{bottom:972.472575px;}
.y17a{bottom:972.909000px;}
.y7{bottom:973.792500px;}
.y39{bottom:974.214000px;}
.y140{bottom:978.876000px;}
.y255{bottom:979.093500px;}
.yb5{bottom:979.198500px;}
.y11a{bottom:979.332150px;}
.y2d0{bottom:980.490000px;}
.y29e{bottom:983.943000px;}
.y68{bottom:985.512000px;}
.yea{bottom:985.813800px;}
.y1e2{bottom:988.089150px;}
.y17b{bottom:988.953000px;}
.y1a6{bottom:993.820500px;}
.yb2{bottom:993.991800px;}
.y38{bottom:994.477500px;}
.y254{bottom:995.605500px;}
.y6{bottom:996.034500px;}
.y13f{bottom:999.141000px;}
.y2cf{bottom:999.858000px;}
.y117{bottom:1000.609500px;}
.y179{bottom:1005.466500px;}
.y67{bottom:1005.775500px;}
.ye8{bottom:1007.091150px;}
.y119{bottom:1008.006150px;}
.yb4{bottom:1008.786450px;}
.y1e0{bottom:1010.547150px;}
.y253{bottom:1012.119000px;}
.ye3{bottom:1014.487800px;}
.y37{bottom:1014.742500px;}
.y116{bottom:1015.404150px;}
.y1a5{bottom:1015.579500px;}
.y1df{bottom:1018.356150px;}
.y2ce{bottom:1019.226000px;}
.ye7{bottom:1021.885800px;}
.y178{bottom:1021.980000px;}
.y176{bottom:1022.448000px;}
.y118{bottom:1022.800800px;}
.y29d{bottom:1023.304500px;}
.yb3{bottom:1023.581100px;}
.y66{bottom:1026.039000px;}
.y252{bottom:1028.632500px;}
.ye2{bottom:1029.282450px;}
.y115{bottom:1030.197450px;}
.y36{bottom:1035.006000px;}
.ye6{bottom:1036.680450px;}
.y13e{bottom:1037.337000px;}
.y177{bottom:1038.493500px;}
.y29c{bottom:1038.502500px;}
.y2cd{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.ye1{bottom:1044.077100px;}
.yb1{bottom:1044.925950px;}
.y251{bottom:1045.146000px;}
.y65{bottom:1046.304000px;}
.y1de{bottom:1048.623150px;}
.y114{bottom:1051.474800px;}
.ye5{bottom:1051.475100px;}
.y35{bottom:1055.269500px;}
.y1dd{bottom:1056.430725px;}
.y13d{bottom:1057.602000px;}
.y2cc{bottom:1057.960500px;}
.y113{bottom:1058.871450px;}
.ye0{bottom:1058.871750px;}
.y250{bottom:1061.584500px;}
.y175{bottom:1062.208500px;}
.y29b{bottom:1062.667500px;}
.yb0{bottom:1066.269450px;}
.ye4{bottom:1066.269750px;}
.y64{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y2cb{bottom:1077.327000px;}
.y174{bottom:1085.923500px;}
.y1dc{bottom:1086.768975px;}
.y63{bottom:1086.832500px;}
.yaf{bottom:1087.612950px;}
.ydf{bottom:1087.613250px;}
.y33{bottom:1095.798000px;}
.y2ca{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.yae{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h9{height:25.508090px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h19{height:35.006619px;}
.h10{height:36.173506px;}
.h14{height:36.951431px;}
.h7{height:37.993262px;}
.h26{height:38.896243px;}
.h1b{height:39.434227px;}
.h27{height:41.723369px;}
.h2a{height:42.500452px;}
.h24{height:43.010859px;}
.hc{height:43.217759px;}
.he{height:43.421105px;}
.h4{height:43.815515px;}
.h1a{height:43.964052px;}
.h11{height:45.429521px;}
.h12{height:45.679683px;}
.h16{height:46.406500px;}
.h28{height:46.714950px;}
.h8{height:48.848947px;}
.h35{height:49.117939px;}
.h20{height:49.938188px;}
.h2f{height:49.939453px;}
.h22{height:50.229492px;}
.h2{height:50.931027px;}
.hd{height:54.276245px;}
.hf{height:54.575123px;}
.h1d{height:54.758652px;}
.h23{height:55.266328px;}
.h25{height:55.278568px;}
.h6{height:55.352206px;}
.h30{height:55.587305px;}
.h32{height:57.517262px;}
.h31{height:57.523262px;}
.h36{height:60.842947px;}
.h33{height:62.952077px;}
.h34{height:64.593219px;}
.h2d{height:66.563617px;}
.h2e{height:66.565057px;}
.h21{height:66.585938px;}
.h15{height:68.181731px;}
.h3{height:69.505289px;}
.h1c{height:73.550652px;}
.h1e{height:73.556052px;}
.h13{height:76.007921px;}
.h18{height:77.636800px;}
.h17{height:77.642500px;}
.h5{height:77.792486px;}
.h1f{height:236.394000px;}
.h2c{height:271.002000px;}
.h2b{height:276.166500px;}
.h29{height:280.647000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w8{width:182.834250px;}
.w2{width:211.537947px;}
.w4{width:247.038000px;}
.w6{width:425.442000px;}
.w9{width:441.760500px;}
.w5{width:609.471000px;}
.w7{width:624.594750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa5{left:-207.813120px;}
.xa7{left:-175.964640px;}
.xb0{left:-48.163620px;}
.xcb{left:-31.358370px;}
.xb6{left:-16.315140px;}
.xb7{left:-11.265420px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.xa6{left:31.228500px;}
.xb2{left:48.129000px;}
.xd0{left:52.705410px;}
.x2{left:57.111683px;}
.xcd{left:70.872450px;}
.x9f{left:112.815000px;}
.x1{left:114.802500px;}
.xb5{left:120.138000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.xd7{left:127.993500px;}
.x52{left:133.919700px;}
.x1a{left:136.105500px;}
.x84{left:137.158350px;}
.x2f{left:138.567840px;}
.x61{left:141.716700px;}
.x1b{left:143.577000px;}
.x4{left:146.170500px;}
.x1c{left:147.238500px;}
.x53{left:149.128800px;}
.x3f{left:153.110625px;}
.x3e{left:154.464375px;}
.xb1{left:157.573500px;}
.xe2{left:161.126250px;}
.x1d{left:162.183000px;}
.x85{left:168.551250px;}
.xcc{left:173.114250px;}
.xbf{left:182.485650px;}
.xeb{left:184.572000px;}
.x8{left:188.353500px;}
.xbe{left:190.931625px;}
.xc1{left:193.372650px;}
.xba{left:194.445675px;}
.xdb{left:196.912500px;}
.x2e{left:198.106500px;}
.x9{left:201.399000px;}
.xd1{left:203.905500px;}
.xdc{left:208.065000px;}
.xc2{left:209.238000px;}
.xdd{left:210.519000px;}
.xa{left:212.079000px;}
.xde{left:213.088500px;}
.xd2{left:215.037000px;}
.xc8{left:218.080500px;}
.xb{left:219.550500px;}
.xc{left:223.362000px;}
.x9c{left:225.537600px;}
.x5c{left:227.451750px;}
.x62{left:229.316850px;}
.xd{left:230.833500px;}
.x31{left:232.341135px;}
.x9e{left:234.060150px;}
.x6c{left:236.470500px;}
.xab{left:238.321500px;}
.x99{left:241.782150px;}
.x7a{left:244.567050px;}
.xa3{left:246.009000px;}
.x63{left:247.782150px;}
.x2a{left:249.960000px;}
.xa4{left:252.087000px;}
.x37{left:254.336100px;}
.x6d{left:256.612500px;}
.x60{left:258.501000px;}
.x5a{left:259.522350px;}
.x51{left:261.681000px;}
.x32{left:262.947435px;}
.x2b{left:264.904500px;}
.x5e{left:267.421500px;}
.x64{left:270.344700px;}
.x45{left:272.115225px;}
.x9d{left:275.565900px;}
.x4c{left:277.474650px;}
.x5f{left:282.366000px;}
.xb8{left:283.752000px;}
.x46{left:285.089850px;}
.x30{left:287.425500px;}
.x54{left:288.664800px;}
.x47{left:290.494875px;}
.x4d{left:292.085175px;}
.x75{left:293.947350px;}
.x4e{left:296.422875px;}
.x48{left:299.738850px;}
.x50{left:300.910500px;}
.x26{left:306.192000px;}
.x95{left:308.987700px;}
.x88{left:310.452450px;}
.x98{left:312.090000px;}
.x49{left:315.627600px;}
.xce{left:316.995000px;}
.x5b{left:318.452550px;}
.x27{left:321.135000px;}
.x89{left:322.744200px;}
.x93{left:325.437450px;}
.xd6{left:326.448000px;}
.x28{left:328.615500px;}
.x96{left:330.787500px;}
.xe3{left:331.875600px;}
.x20{left:333.256500px;}
.x39{left:334.758000px;}
.x8b{left:337.772400px;}
.xe1{left:341.655000px;}
.x29{left:343.558500px;}
.x8c{left:346.529850px;}
.x21{left:348.201000px;}
.x3a{left:349.702500px;}
.x8d{left:351.674700px;}
.xa8{left:354.228000px;}
.x3b{left:357.294000px;}
.x24{left:358.798500px;}
.xb4{left:363.138000px;}
.xc3{left:366.967500px;}
.x3c{left:372.237000px;}
.x25{left:373.743000px;}
.xc4{left:382.317000px;}
.xe{left:384.865500px;}
.xc5{left:390.738000px;}
.xf{left:392.337000px;}
.x12{left:394.218000px;}
.x10{left:399.958500px;}
.x13{left:401.689500px;}
.x74{left:405.483000px;}
.x11{left:407.430000px;}
.x14{left:409.192500px;}
.x3d{left:414.457500px;}
.x65{left:416.325600px;}
.x69{left:417.505500px;}
.x72{left:419.684400px;}
.x73{left:421.354350px;}
.x15{left:424.135500px;}
.x78{left:425.197050px;}
.x7b{left:429.996300px;}
.xb3{left:435.082500px;}
.xe4{left:439.227600px;}
.xad{left:440.728500px;}
.xaf{left:443.515500px;}
.x6a{left:447.857550px;}
.xcf{left:448.938000px;}
.x6b{left:450.369900px;}
.x79{left:452.213250px;}
.x6e{left:455.374350px;}
.x34{left:458.128860px;}
.x76{left:467.156400px;}
.x35{left:468.460230px;}
.x33{left:477.935070px;}
.x41{left:480.897675px;}
.xc0{left:483.585300px;}
.x4a{left:485.279550px;}
.x40{left:488.078250px;}
.x9a{left:492.775500px;}
.x38{left:494.419785px;}
.x2c{left:495.786000px;}
.x7f{left:497.812200px;}
.x1e{left:500.421000px;}
.xac{left:501.978000px;}
.x8e{left:505.424850px;}
.x97{left:506.606100px;}
.x77{left:508.995600px;}
.x2d{left:510.730500px;}
.x4b{left:512.475675px;}
.x86{left:513.856950px;}
.x1f{left:515.364000px;}
.x7d{left:518.164800px;}
.x66{left:519.429150px;}
.x44{left:524.645175px;}
.x7c{left:526.632000px;}
.x7e{left:528.164250px;}
.x67{left:531.533250px;}
.xae{left:532.594500px;}
.x87{left:535.936200px;}
.x43{left:544.335825px;}
.x94{left:545.964000px;}
.x36{left:549.024270px;}
.x42{left:552.026550px;}
.x22{left:554.784000px;}
.xda{left:564.318000px;}
.x8a{left:567.589650px;}
.x23{left:569.728500px;}
.x16{left:573.552000px;}
.x4f{left:575.677275px;}
.x9b{left:576.956100px;}
.x17{left:581.023500px;}
.x57{left:585.266550px;}
.x6f{left:586.653750px;}
.xa9{left:593.478000px;}
.xbb{left:596.324175px;}
.xd3{left:597.382500px;}
.xdf{left:600.975000px;}
.xb9{left:604.533600px;}
.xd4{left:605.599500px;}
.xaa{left:608.421000px;}
.x59{left:609.670500px;}
.x58{left:611.352600px;}
.xbd{left:614.039775px;}
.xe0{left:616.018500px;}
.x8f{left:619.707750px;}
.x55{left:623.020650px;}
.xe5{left:624.324000px;}
.xbc{left:625.558050px;}
.x56{left:627.003150px;}
.xf0{left:628.441500px;}
.x90{left:631.811850px;}
.x5d{left:636.917550px;}
.xea{left:641.865000px;}
.x68{left:649.570500px;}
.xd8{left:653.296500px;}
.xf1{left:655.341000px;}
.xec{left:656.800500px;}
.xd9{left:661.717500px;}
.xed{left:663.978000px;}
.xca{left:667.699500px;}
.xf3{left:670.518000px;}
.xc6{left:675.838500px;}
.x70{left:678.702150px;}
.xc7{left:683.407500px;}
.x71{left:684.754200px;}
.xc9{left:690.454500px;}
.xe6{left:695.103000px;}
.xf4{left:697.417500px;}
.x6{left:701.339982px;}
.xef{left:702.972000px;}
.xa0{left:705.936000px;}
.xd5{left:710.943000px;}
.x80{left:719.968500px;}
.xe7{left:722.002500px;}
.xa1{left:728.502000px;}
.xf5{left:730.230000px;}
.x81{left:734.913000px;}
.x82{left:738.588000px;}
.xa2{left:743.445000px;}
.x91{left:746.974950px;}
.xe8{left:749.550000px;}
.x83{left:753.532500px;}
.xf2{left:755.142000px;}
.x18{left:756.418500px;}
.x92{left:759.079050px;}
.xee{left:762.201000px;}
.x19{left:771.361500px;}
.xe9{left:776.449500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.109333pt;}
.v4{vertical-align:9.595200pt;}
.v8{vertical-align:10.661333pt;}
.v5{vertical-align:13.418880pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:27.180800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.000298pt;}
.ls1{letter-spacing:0.000518pt;}
.ls3c{letter-spacing:0.000711pt;}
.ls4a{letter-spacing:0.000900pt;}
.ls1d{letter-spacing:0.001007pt;}
.ls39{letter-spacing:0.001026pt;}
.ls4d{letter-spacing:0.001207pt;}
.ls41{letter-spacing:0.002269pt;}
.ls47{letter-spacing:0.002525pt;}
.ls1e{letter-spacing:0.002825pt;}
.ls14{letter-spacing:0.003012pt;}
.ls4c{letter-spacing:0.003055pt;}
.lse{letter-spacing:0.003190pt;}
.ls43{letter-spacing:0.003261pt;}
.ls4b{letter-spacing:0.003625pt;}
.ls2{letter-spacing:0.003733pt;}
.ls3e{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.004934pt;}
.ls30{letter-spacing:0.010240pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.159360pt;}
.ls25{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.318720pt;}
.ls28{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.518470pt;}
.ls21{letter-spacing:0.564933pt;}
.ls20{letter-spacing:0.570000pt;}
.ls9{letter-spacing:1.133683pt;}
.ls31{letter-spacing:1.262881pt;}
.ls2b{letter-spacing:1.593600pt;}
.ls2a{letter-spacing:1.646720pt;}
.ls6{letter-spacing:1.654338pt;}
.ls29{letter-spacing:1.912320pt;}
.ls12{letter-spacing:2.029363pt;}
.ls11{letter-spacing:2.034697pt;}
.ls32{letter-spacing:2.258589pt;}
.ls33{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls10{letter-spacing:2.986231pt;}
.ls24{letter-spacing:3.320563pt;}
.ls23{letter-spacing:3.325897pt;}
.ls2c{letter-spacing:7.330560pt;}
.ls7{letter-spacing:10.626533pt;}
.ls46{letter-spacing:10.983576pt;}
.ls22{letter-spacing:11.358453pt;}
.ls3a{letter-spacing:11.516909pt;}
.ls42{letter-spacing:11.760215pt;}
.ls44{letter-spacing:11.815777pt;}
.ls3d{letter-spacing:11.954133pt;}
.ls34{letter-spacing:11.956267pt;}
.ls45{letter-spacing:11.956898pt;}
.ls40{letter-spacing:11.959467pt;}
.ls4e{letter-spacing:11.959637pt;}
.ls3f{letter-spacing:12.028703pt;}
.ls4f{letter-spacing:12.036744pt;}
.ls52{letter-spacing:12.160742pt;}
.ls3b{letter-spacing:12.227807pt;}
.ls38{letter-spacing:13.045378pt;}
.lsa{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.336601pt;}
.ls48{letter-spacing:13.498395pt;}
.ls36{letter-spacing:13.563679pt;}
.ls37{letter-spacing:13.569121pt;}
.ls50{letter-spacing:14.193820pt;}
.lsd{letter-spacing:14.611813pt;}
.lsc{letter-spacing:14.664947pt;}
.ls51{letter-spacing:19.213427pt;}
.ls2d{letter-spacing:44.355200pt;}
.ls1b{letter-spacing:49.242240pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls3{letter-spacing:64.315733pt;}
.ls19{letter-spacing:74.155520pt;}
.ls1c{letter-spacing:74.846080pt;}
.ls13{letter-spacing:124.128479pt;}
.ls2e{letter-spacing:212.001920pt;}
.lsf{letter-spacing:752.022400pt;}
.ws6e{word-spacing:-53.120000pt;}
.ws37{word-spacing:-13.283467pt;}
.ws85{word-spacing:-13.280000pt;}
.ws6d{word-spacing:-12.000000pt;}
.ws6f{word-spacing:-11.955200pt;}
.wsa1{word-spacing:-10.759680pt;}
.ws63{word-spacing:-10.720000pt;}
.ws22{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws11{word-spacing:-2.762961pt;}
.wsb2{word-spacing:-2.337890pt;}
.wsb4{word-spacing:-2.019087pt;}
.ws112{word-spacing:-2.008474pt;}
.wsaf{word-spacing:-1.859685pt;}
.wsb9{word-spacing:-1.817190pt;}
.ws26{word-spacing:-1.806551pt;}
.ws65{word-spacing:-1.753418pt;}
.wscc{word-spacing:-1.721549pt;}
.ws9{word-spacing:-1.696326pt;}
.ws27{word-spacing:-1.647150pt;}
.ws8b{word-spacing:-1.530266pt;}
.wsa5{word-spacing:-1.487748pt;}
.ws84{word-spacing:-1.434614pt;}
.wsa7{word-spacing:-1.381481pt;}
.ws8c{word-spacing:-1.338982pt;}
.ws8a{word-spacing:-1.328347pt;}
.wse4{word-spacing:-1.291162pt;}
.ws50{word-spacing:-1.275213pt;}
.wsb{word-spacing:-1.222079pt;}
.ws8{word-spacing:-1.175671pt;}
.wsa6{word-spacing:-1.168945pt;}
.wsae{word-spacing:-1.062677pt;}
.ws30{word-spacing:-1.009543pt;}
.wse5{word-spacing:-0.956416pt;}
.ws83{word-spacing:-0.956410pt;}
.wsa8{word-spacing:-0.903276pt;}
.wsef{word-spacing:-0.860774pt;}
.ws64{word-spacing:-0.850142pt;}
.ws42{word-spacing:-0.797008pt;}
.ws19{word-spacing:-0.743874pt;}
.ws5b{word-spacing:-0.637606pt;}
.wsbc{word-spacing:-0.621670pt;}
.ws7f{word-spacing:-0.531339pt;}
.ws121{word-spacing:-0.478208pt;}
.wsab{word-spacing:-0.478205pt;}
.wsbe{word-spacing:-0.430387pt;}
.ws6a{word-spacing:-0.425071pt;}
.ws32{word-spacing:-0.318803pt;}
.ws105{word-spacing:-0.286925pt;}
.ws14{word-spacing:-0.265669pt;}
.wsb8{word-spacing:-0.239104pt;}
.wsf{word-spacing:-0.212535pt;}
.wsd2{word-spacing:-0.209950pt;}
.wsc3{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.wsd9{word-spacing:-0.143462pt;}
.wsa{word-spacing:-0.106268pt;}
.wsc8{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws47{word-spacing:-0.044473pt;}
.ws9b{word-spacing:-0.043039pt;}
.ws23{word-spacing:-0.042507pt;}
.ws11b{word-spacing:-0.025310pt;}
.ws7c{word-spacing:-0.024433pt;}
.ws6{word-spacing:-0.002622pt;}
.wse6{word-spacing:-0.001801pt;}
.ws4{word-spacing:-0.001593pt;}
.ws5{word-spacing:-0.001318pt;}
.ws0{word-spacing:0.000000pt;}
.ws11a{word-spacing:0.001485pt;}
.ws3{word-spacing:0.003193pt;}
.wsc5{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.ws56{word-spacing:0.086077pt;}
.wsf0{word-spacing:0.095642pt;}
.ws29{word-spacing:0.106268pt;}
.ws2f{word-spacing:0.109447pt;}
.ws54{word-spacing:0.129116pt;}
.ws86{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws55{word-spacing:0.172155pt;}
.wsbf{word-spacing:0.191283pt;}
.ws12{word-spacing:0.212535pt;}
.wscf{word-spacing:0.239104pt;}
.ws36{word-spacing:0.265669pt;}
.wsc1{word-spacing:0.286925pt;}
.ws68{word-spacing:0.318803pt;}
.wsd0{word-spacing:0.334746pt;}
.ws4d{word-spacing:0.371937pt;}
.ws3a{word-spacing:0.425071pt;}
.ws31{word-spacing:0.478205pt;}
.wsf3{word-spacing:0.478208pt;}
.ws6c{word-spacing:0.531339pt;}
.wsac{word-spacing:0.637606pt;}
.ws69{word-spacing:0.690740pt;}
.ws62{word-spacing:0.743874pt;}
.wsaa{word-spacing:0.797008pt;}
.ws10e{word-spacing:0.860774pt;}
.ws38{word-spacing:0.903276pt;}
.ws122{word-spacing:0.956416pt;}
.wsf6{word-spacing:1.004237pt;}
.ws39{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.062677pt;}
.wsec{word-spacing:1.099878pt;}
.ws88{word-spacing:1.168945pt;}
.wse8{word-spacing:1.195520pt;}
.ws20{word-spacing:1.222079pt;}
.ws10b{word-spacing:1.243341pt;}
.ws2c{word-spacing:1.275213pt;}
.ws82{word-spacing:1.328347pt;}
.wsf2{word-spacing:1.338982pt;}
.ws34{word-spacing:1.381481pt;}
.ws7e{word-spacing:1.434614pt;}
.wsf8{word-spacing:1.482445pt;}
.wsd{word-spacing:1.487748pt;}
.ws95{word-spacing:1.594016pt;}
.wsd6{word-spacing:1.625907pt;}
.ws24{word-spacing:1.647150pt;}
.ws107{word-spacing:1.721549pt;}
.wsca{word-spacing:1.817190pt;}
.wse7{word-spacing:2.056294pt;}
.ws1e{word-spacing:2.072221pt;}
.wse3{word-spacing:2.104115pt;}
.ws89{word-spacing:2.125355pt;}
.ws57{word-spacing:2.178489pt;}
.wsbb{word-spacing:2.199757pt;}
.ws87{word-spacing:2.231622pt;}
.ws17{word-spacing:2.284756pt;}
.ws113{word-spacing:2.343219pt;}
.wsb0{word-spacing:2.391024pt;}
.ws3b{word-spacing:2.497292pt;}
.wse1{word-spacing:2.534502pt;}
.ws1d{word-spacing:2.550426pt;}
.wsd4{word-spacing:2.582323pt;}
.ws28{word-spacing:2.656693pt;}
.ws40{word-spacing:2.709827pt;}
.ws41{word-spacing:2.762961pt;}
.wsfc{word-spacing:2.865766pt;}
.wsf1{word-spacing:2.866133pt;}
.wsd7{word-spacing:2.866432pt;}
.ws101{word-spacing:2.866628pt;}
.wsf5{word-spacing:2.866654pt;}
.ws1b{word-spacing:2.869229pt;}
.wsdb{word-spacing:2.869248pt;}
.ws115{word-spacing:2.869760pt;}
.wsfb{word-spacing:2.870417pt;}
.wsfe{word-spacing:2.870485pt;}
.ws106{word-spacing:2.873600pt;}
.ws1c{word-spacing:3.028630pt;}
.ws3d{word-spacing:3.134898pt;}
.ws123{word-spacing:3.156173pt;}
.ws15{word-spacing:3.188032pt;}
.ws3f{word-spacing:3.294300pt;}
.wsdd{word-spacing:3.299635pt;}
.ws60{word-spacing:3.347434pt;}
.ws81{word-spacing:3.400567pt;}
.ws97{word-spacing:3.453701pt;}
.ws3c{word-spacing:3.506835pt;}
.ws70{word-spacing:3.613103pt;}
.ws45{word-spacing:3.772505pt;}
.wsfd{word-spacing:3.873485pt;}
.wsa9{word-spacing:3.931906pt;}
.ws51{word-spacing:4.091308pt;}
.wsd5{word-spacing:4.112589pt;}
.wsb3{word-spacing:4.144442pt;}
.ws67{word-spacing:4.197575pt;}
.ws96{word-spacing:4.250709pt;}
.ws5e{word-spacing:4.303843pt;}
.wsc2{word-spacing:4.351693pt;}
.wse{word-spacing:4.356977pt;}
.ws61{word-spacing:4.516379pt;}
.ws13{word-spacing:4.622646pt;}
.ws109{word-spacing:4.782080pt;}
.ws35{word-spacing:4.888316pt;}
.wsb1{word-spacing:4.941450pt;}
.ws52{word-spacing:5.207119pt;}
.wsf7{word-spacing:5.260288pt;}
.ws2a{word-spacing:5.313387pt;}
.ws25{word-spacing:5.366521pt;}
.ws33{word-spacing:5.579056pt;}
.ws117{word-spacing:5.738496pt;}
.ws66{word-spacing:5.897859pt;}
.ws44{word-spacing:5.950993pt;}
.wsb6{word-spacing:5.977600pt;}
.ws18{word-spacing:6.004127pt;}
.wsb7{word-spacing:6.025421pt;}
.ws2d{word-spacing:6.216662pt;}
.ws4e{word-spacing:6.429198pt;}
.wsad{word-spacing:6.641733pt;}
.ws100{word-spacing:6.886195pt;}
.ws4c{word-spacing:6.907403pt;}
.wsc{word-spacing:7.226206pt;}
.ws118{word-spacing:7.268762pt;}
.ws16{word-spacing:7.385607pt;}
.ws125{word-spacing:7.460045pt;}
.wsf9{word-spacing:7.507866pt;}
.ws10d{word-spacing:7.986074pt;}
.ws58{word-spacing:8.023214pt;}
.ws11c{word-spacing:8.081715pt;}
.ws4b{word-spacing:8.395151pt;}
.ws119{word-spacing:8.559923pt;}
.ws43{word-spacing:8.713954pt;}
.ws48{word-spacing:8.873356pt;}
.ws2e{word-spacing:9.298427pt;}
.ws80{word-spacing:9.776631pt;}
.wscd{word-spacing:10.185830pt;}
.wsfa{word-spacing:10.281472pt;}
.ws21{word-spacing:10.581554pt;}
.ws120{word-spacing:10.616218pt;}
.ws11e{word-spacing:10.638965pt;}
.ws10f{word-spacing:11.716096pt;}
.wsda{word-spacing:11.763917pt;}
.ws103{word-spacing:11.859558pt;}
.ws110{word-spacing:11.898530pt;}
.ws10c{word-spacing:11.898633pt;}
.wse2{word-spacing:11.899110pt;}
.wsf4{word-spacing:11.899836pt;}
.wsc4{word-spacing:11.902362pt;}
.wsee{word-spacing:11.904444pt;}
.ws10a{word-spacing:11.905297pt;}
.ws116{word-spacing:11.906031pt;}
.wsc7{word-spacing:11.907379pt;}
.wsc6{word-spacing:11.955200pt;}
.wsba{word-spacing:12.050842pt;}
.wsc0{word-spacing:12.098662pt;}
.wsce{word-spacing:12.146483pt;}
.wsd1{word-spacing:12.242125pt;}
.ws6b{word-spacing:12.645860pt;}
.ws111{word-spacing:12.672512pt;}
.ws5c{word-spacing:12.858396pt;}
.wsed{word-spacing:13.007258pt;}
.ws5a{word-spacing:13.070931pt;}
.wsde{word-spacing:13.224862pt;}
.ws3e{word-spacing:13.230333pt;}
.ws5d{word-spacing:13.442868pt;}
.ws108{word-spacing:13.676749pt;}
.wsb5{word-spacing:14.011494pt;}
.wsdc{word-spacing:14.346240pt;}
.wsd3{word-spacing:14.585344pt;}
.ws104{word-spacing:14.769161pt;}
.wse0{word-spacing:14.772096pt;}
.wse9{word-spacing:14.774118pt;}
.wsd8{word-spacing:14.774775pt;}
.ws124{word-spacing:14.774810pt;}
.wseb{word-spacing:14.774861pt;}
.ws126{word-spacing:14.774980pt;}
.wscb{word-spacing:14.776627pt;}
.ws114{word-spacing:14.777463pt;}
.wsbd{word-spacing:14.824448pt;}
.wsc9{word-spacing:14.872269pt;}
.wsea{word-spacing:14.967910pt;}
.wsff{word-spacing:15.015731pt;}
.ws5f{word-spacing:17.215373pt;}
.ws11d{word-spacing:19.989094pt;}
.ws11f{word-spacing:22.523597pt;}
.ws102{word-spacing:23.193088pt;}
.wsdf{word-spacing:25.153741pt;}
.wsa3{word-spacing:70.626540pt;}
.ws98{word-spacing:87.637563pt;}
.ws9f{word-spacing:88.616724pt;}
.ws9c{word-spacing:101.442263pt;}
.wsa4{word-spacing:105.186632pt;}
.wsa2{word-spacing:110.164716pt;}
.ws9a{word-spacing:113.594604pt;}
.ws9e{word-spacing:127.598316pt;}
.ws99{word-spacing:175.544087pt;}
.wsa0{word-spacing:186.446715pt;}
.ws9d{word-spacing:225.608970pt;}
.ws72{word-spacing:274.101795pt;}
.ws79{word-spacing:278.304428pt;}
.ws53{word-spacing:304.671099pt;}
.ws7d{word-spacing:306.379744pt;}
.ws74{word-spacing:319.146342pt;}
.ws77{word-spacing:324.894471pt;}
.ws46{word-spacing:368.417182pt;}
.ws49{word-spacing:376.332220pt;}
.ws7b{word-spacing:418.771528pt;}
.ws7a{word-spacing:419.998131pt;}
.ws71{word-spacing:422.159823pt;}
.ws73{word-spacing:432.491315pt;}
.ws75{word-spacing:433.717919pt;}
.ws76{word-spacing:434.671944pt;}
.ws78{word-spacing:442.167854pt;}
.ws59{word-spacing:442.911468pt;}
.ws8d{word-spacing:582.114560pt;}
.ws94{word-spacing:589.534822pt;}
.ws93{word-spacing:590.825984pt;}
.ws4f{word-spacing:598.453402pt;}
.ws8f{word-spacing:603.976704pt;}
.ws90{word-spacing:605.267866pt;}
.ws91{word-spacing:606.272102pt;}
.ws92{word-spacing:614.162534pt;}
.ws4a{word-spacing:670.679547pt;}
.ws8e{word-spacing:693.927629pt;}
._65{margin-left:-18.591693pt;}
._66{margin-left:-6.790554pt;}
._0{margin-left:-5.897859pt;}
._4{margin-left:-4.399514pt;}
._12{margin-left:-3.015287pt;}
._7{margin-left:-1.819895pt;}
._3{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._1{width:2.667366pt;}
._3a{width:3.598391pt;}
._40{width:4.719163pt;}
._37{width:5.843200pt;}
._36{width:6.746240pt;}
._3b{width:7.702400pt;}
._38{width:10.039680pt;}
._39{width:11.141431pt;}
._13{width:12.313713pt;}
._5{width:13.963674pt;}
._6{width:15.685222pt;}
._c{width:16.644244pt;}
._f{width:17.600653pt;}
._d{width:19.181326pt;}
._16{width:20.084602pt;}
._a{width:21.147279pt;}
._9{width:22.369358pt;}
._e{width:23.445379pt;}
._11{width:25.132319pt;}
._10{width:26.088729pt;}
._19{width:27.523343pt;}
._35{width:29.380504pt;}
._b{width:30.485736pt;}
._63{width:31.938773pt;}
._18{width:33.758668pt;}
._67{width:35.530854pt;}
._23{width:38.046595pt;}
._3e{width:41.975755pt;}
._17{width:44.738716pt;}
._68{width:46.864384pt;}
._2{width:48.357594pt;}
._69{width:54.993920pt;}
._64{width:78.904320pt;}
._41{width:89.632916pt;}
._31{width:94.654414pt;}
._33{width:112.378128pt;}
._60{width:120.852726pt;}
._61{width:129.162179pt;}
._59{width:134.668155pt;}
._5a{width:138.842911pt;}
._5c{width:144.653138pt;}
._62{width:147.192422pt;}
._52{width:160.199680pt;}
._5e{width:168.324434pt;}
._5f{width:177.968579pt;}
._20{width:192.395034pt;}
._58{width:205.629440pt;}
._1f{width:215.257742pt;}
._5d{width:236.368650pt;}
._53{width:242.897744pt;}
._5b{width:246.012795pt;}
._42{width:281.043594pt;}
._2e{width:285.949256pt;}
._4a{width:297.383209pt;}
._48{width:299.927276pt;}
._4b{width:302.425912pt;}
._4d{width:304.763794pt;}
._30{width:309.620552pt;}
._2c{width:326.965156pt;}
._4c{width:328.049245pt;}
._32{width:329.289247pt;}
._1b{width:341.466335pt;}
._4e{width:358.349947pt;}
._21{width:366.477137pt;}
._28{width:392.955782pt;}
._2f{width:395.296992pt;}
._2a{width:401.594296pt;}
._25{width:429.913774pt;}
._1e{width:436.102099pt;}
._43{width:438.851482pt;}
._49{width:447.890407pt;}
._47{width:450.434344pt;}
._55{width:457.071206pt;}
._44{width:461.539261pt;}
._45{width:464.083198pt;}
._46{width:467.266726pt;}
._56{width:469.711249pt;}
._57{width:471.895654pt;}
._29{width:522.834371pt;}
._26{width:541.125827pt;}
._4f{width:542.302080pt;}
._27{width:556.201647pt;}
._1c{width:558.581689pt;}
._22{width:596.532031pt;}
._3c{width:618.083840pt;}
._14{width:637.776429pt;}
._2d{width:646.140303pt;}
._1d{width:669.190407pt;}
._54{width:687.997850pt;}
._51{width:715.013073pt;}
._50{width:735.379511pt;}
._1a{width:774.814599pt;}
._2b{width:784.423711pt;}
._24{width:801.682237pt;}
._3f{width:1358.339996pt;}
._34{width:1379.479836pt;}
._3d{width:1708.621067pt;}
._15{width:1729.874400pt;}
.fs12{font-size:32.000000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:43.038720pt;}
.fs9{font-size:44.473344pt;}
.fs13{font-size:44.846400pt;}
.fsa{font-size:45.429760pt;}
.fs11{font-size:47.337867pt;}
.fs5{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:55.365867pt;}
.fsd{font-size:64.000000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y22f{bottom:-692.705013pt;}
.y1d7{bottom:-681.452213pt;}
.y22e{bottom:-663.913973pt;}
.y1d6{bottom:-663.378133pt;}
.y1d5{bottom:-645.450133pt;}
.y22d{bottom:-635.269013pt;}
.y1d4{bottom:-619.368213pt;}
.y22c{bottom:-606.624053pt;}
.y1d3{bottom:-593.458933pt;}
.y22b{bottom:-577.195573pt;}
.y1d2{bottom:-575.530933pt;}
.y1d1{bottom:-549.449013pt;}
.y22a{bottom:-544.873333pt;}
.y229{bottom:-527.593333pt;}
.y1d0{bottom:-523.539733pt;}
.y228{bottom:-510.145333pt;}
.y1cf{bottom:-505.452373pt;}
.y1ce{bottom:-487.537653pt;}
.y227{bottom:-476.387093pt;}
.y1cd{bottom:-461.455733pt;}
.y226{bottom:-458.313013pt;}
.y15e{bottom:-452.268000pt;}
.y1cc{bottom:-443.527733pt;}
.y225{bottom:-440.385013pt;}
.y15d{bottom:-434.337280pt;}
.y224{bottom:-422.310933pt;}
.y1cb{bottom:-417.618453pt;}
.y15c{bottom:-416.263200pt;}
.y223{bottom:-404.396213pt;}
.y1ca{bottom:-399.531093pt;}
.y15b{bottom:-390.340640pt;}
.y222{bottom:-386.468213pt;}
.y1c9{bottom:-381.616373pt;}
.y221{bottom:-368.394133pt;}
.y15a{bottom:-356.264160pt;}
.y1c8{bottom:-355.534453pt;}
.y220{bottom:-350.466133pt;}
.y159{bottom:-338.336160pt;}
.y1c7{bottom:-337.619733pt;}
.y21f{bottom:-332.392053pt;}
.y158{bottom:-320.262080pt;}
.y1c6{bottom:-319.532373pt;}
.y21e{bottom:-314.464053pt;}
.y157{bottom:-302.334080pt;}
.y21d{bottom:-296.389973pt;}
.y1c5{bottom:-293.609813pt;}
.y156{bottom:-284.419360pt;}
.y21c{bottom:-278.475253pt;}
.y1c4{bottom:-275.695093pt;}
.y155{bottom:-266.345280pt;}
.y21b{bottom:-260.547253pt;}
.y1c3{bottom:-257.607733pt;}
.y154{bottom:-248.417280pt;}
.y21a{bottom:-242.473173pt;}
.y1c2{bottom:-231.698453pt;}
.y153{bottom:-230.343200pt;}
.y219{bottom:-224.545173pt;}
.y1c1{bottom:-213.611093pt;}
.y152{bottom:-212.415200pt;}
.y218{bottom:-206.471093pt;}
.y151{bottom:-194.341120pt;}
.y217{bottom:-188.543093pt;}
.y1c0{bottom:-187.688533pt;}
.y150{bottom:-176.426400pt;}
.y216{bottom:-170.469013pt;}
.y1bf{bottom:-161.619893pt;}
.y14f{bottom:-158.498400pt;}
.y215{bottom:-152.554293pt;}
.y1be{bottom:-143.691893pt;}
.y14e{bottom:-140.424320pt;}
.y214{bottom:-134.626293pt;}
.y1bd{bottom:-125.777173pt;}
.y14d{bottom:-122.496320pt;}
.y213{bottom:-116.552213pt;}
.y1bc{bottom:-107.689813pt;}
.y14c{bottom:-104.422240pt;}
.y212{bottom:-98.624213pt;}
.y1bb{bottom:-89.775093pt;}
.y14b{bottom:-86.494240pt;}
.y211{bottom:-80.550133pt;}
.y1ba{bottom:-71.687733pt;}
.y14a{bottom:-68.420160pt;}
.y149{bottom:-50.505440pt;}
.y210{bottom:-47.113333pt;}
.y1b9{bottom:-38.253333pt;}
.y20f{bottom:-29.833333pt;}
.y148{bottom:-17.060000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.y147{bottom:4.692000pt;}
.y20c{bottom:6.327627pt;}
.y1b6{bottom:8.462667pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y20b{bottom:20.242667pt;}
.y1b5{bottom:38.222667pt;}
.y1b8{bottom:44.942667pt;}
.y20e{bottom:52.887307pt;}
.y30{bottom:56.693333pt;}
.y20d{bottom:66.802667pt;}
.y1b7{bottom:74.702667pt;}
.y2fd{bottom:96.850667pt;}
.y2f{bottom:97.648000pt;}
.y29a{bottom:98.576000pt;}
.y13c{bottom:107.640000pt;}
.y2c9{bottom:111.674667pt;}
.y2fc{bottom:114.066667pt;}
.y2e{bottom:115.661333pt;}
.y299{bottom:116.588000pt;}
.y13b{bottom:125.653333pt;}
.y62{bottom:127.454667pt;}
.y2c8{bottom:128.890667pt;}
.y2fb{bottom:131.281333pt;}
.y2d{bottom:133.673333pt;}
.y1a4{bottom:133.796000pt;}
.y298{bottom:134.601333pt;}
.y61{bottom:145.466667pt;}
.y24f{bottom:145.498667pt;}
.y2c7{bottom:146.106667pt;}
.y2fa{bottom:148.497333pt;}
.y2c{bottom:151.686667pt;}
.y297{bottom:152.613333pt;}
.y173{bottom:152.725333pt;}
.y1a3{bottom:153.136000pt;}
.y208{bottom:157.618667pt;}
.y27d{bottom:158.677333pt;}
.y13a{bottom:159.605333pt;}
.yde{bottom:160.466267pt;}
.y2c6{bottom:163.321333pt;}
.y60{bottom:163.478667pt;}
.y24e{bottom:163.510667pt;}
.y2f9{bottom:165.713333pt;}
.y2b{bottom:169.698667pt;}
.y296{bottom:170.625333pt;}
.y172{bottom:170.737333pt;}
.y8d{bottom:171.525800pt;}
.ydd{bottom:173.617067pt;}
.y207{bottom:175.632000pt;}
.y27c{bottom:176.689333pt;}
.y139{bottom:177.618667pt;}
.y8c{bottom:178.319760pt;}
.y2c5{bottom:180.537333pt;}
.y5f{bottom:181.492000pt;}
.y24d{bottom:181.522667pt;}
.y2f8{bottom:182.928000pt;}
.yda{bottom:186.767867pt;}
.y1a2{bottom:187.089333pt;}
.y2a{bottom:187.710667pt;}
.y295{bottom:188.638667pt;}
.y206{bottom:193.644000pt;}
.y27b{bottom:194.702667pt;}
.y171{bottom:196.720000pt;}
.y2c4{bottom:197.752000pt;}
.y5e{bottom:199.504000pt;}
.yd9{bottom:199.918667pt;}
.y2f7{bottom:200.144000pt;}
.y8b{bottom:204.657360pt;}
.y29{bottom:205.724000pt;}
.y294{bottom:206.650667pt;}
.y138{bottom:211.570667pt;}
.y205{bottom:211.657333pt;}
.y27a{bottom:212.714667pt;}
.ydc{bottom:213.068267pt;}
.y2c3{bottom:214.968000pt;}
.y2f6{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.y8a{bottom:218.246520pt;}
.y1a1{bottom:218.385333pt;}
.y24c{bottom:223.276000pt;}
.y28{bottom:223.736000pt;}
.y146{bottom:224.544000pt;}
.y293{bottom:224.664000pt;}
.y87{bottom:225.041720pt;}
.ydb{bottom:226.219067pt;}
.y1db{bottom:227.006667pt;}
.y170{bottom:227.670667pt;}
.y112{bottom:228.250667pt;}
.yad{bottom:228.696000pt;}
.y137{bottom:229.584000pt;}
.y204{bottom:229.669333pt;}
.y279{bottom:230.728000pt;}
.y89{bottom:231.835680pt;}
.y2c2{bottom:232.184000pt;}
.y2f5{bottom:234.574667pt;}
.y5c{bottom:235.529333pt;}
.y1a0{bottom:236.397333pt;}
.y24b{bottom:237.953333pt;}
.y27{bottom:241.749333pt;}
.y292{bottom:242.676000pt;}
.y1da{bottom:245.018667pt;}
.yd8{bottom:245.132267pt;}
.y88{bottom:245.424840pt;}
.y16f{bottom:245.684000pt;}
.y111{bottom:246.264000pt;}
.yac{bottom:246.708000pt;}
.y203{bottom:247.681333pt;}
.y278{bottom:248.740000pt;}
.y2c1{bottom:249.398667pt;}
.yd4{bottom:251.707067pt;}
.y2f4{bottom:251.790667pt;}
.y24a{bottom:252.632000pt;}
.y5b{bottom:253.541333pt;}
.y19f{bottom:254.410667pt;}
.yd7{bottom:258.283067pt;}
.y26{bottom:259.761333pt;}
.y291{bottom:260.688000pt;}
.y1d9{bottom:263.032000pt;}
.y136{bottom:263.536000pt;}
.y16e{bottom:263.696000pt;}
.y110{bottom:264.276000pt;}
.yab{bottom:264.720000pt;}
.yd2{bottom:264.857867pt;}
.y86{bottom:265.029240pt;}
.y20a{bottom:265.374667pt;}
.y202{bottom:265.694667pt;}
.y2c0{bottom:266.614667pt;}
.y277{bottom:266.752000pt;}
.y249{bottom:267.310667pt;}
.y2f3{bottom:269.005333pt;}
.yd6{bottom:271.433867pt;}
.y5a{bottom:271.554667pt;}
.y19e{bottom:272.422667pt;}
.y1b4{bottom:275.830667pt;}
.y25{bottom:277.773333pt;}
.yd3{bottom:278.008667pt;}
.y290{bottom:278.701333pt;}
.y135{bottom:281.549333pt;}
.y16d{bottom:281.709333pt;}
.y248{bottom:281.989333pt;}
.y10f{bottom:282.288000pt;}
.yaa{bottom:282.733333pt;}
.y201{bottom:283.706667pt;}
.y2bf{bottom:283.829333pt;}
.yd5{bottom:284.584667pt;}
.y85{bottom:284.634880pt;}
.y276{bottom:284.765333pt;}
.y2f2{bottom:286.221333pt;}
.y59{bottom:289.566667pt;}
.y19d{bottom:290.434667pt;}
.y1d8{bottom:294.142667pt;}
.y24{bottom:295.786667pt;}
.y247{bottom:296.666667pt;}
.y28f{bottom:296.713333pt;}
.y16c{bottom:299.721333pt;}
.y10e{bottom:300.301333pt;}
.ya9{bottom:300.745333pt;}
.y2be{bottom:301.045333pt;}
.y200{bottom:301.720000pt;}
.y275{bottom:302.777333pt;}
.y2f1{bottom:303.437333pt;}
.yd1{bottom:303.556667pt;}
.y84{bottom:304.239280pt;}
.y58{bottom:307.580000pt;}
.y19c{bottom:308.448000pt;}
.y246{bottom:311.345333pt;}
.y23{bottom:313.798667pt;}
.y1b3{bottom:314.080000pt;}
.y28e{bottom:314.726667pt;}
.y134{bottom:315.501333pt;}
.y16b{bottom:317.733333pt;}
.y2bd{bottom:318.261333pt;}
.y10d{bottom:318.313333pt;}
.ya8{bottom:318.758667pt;}
.y1ff{bottom:319.732000pt;}
.y2f0{bottom:320.652000pt;}
.y274{bottom:320.790667pt;}
.y83{bottom:323.843680pt;}
.y57{bottom:325.592000pt;}
.y245{bottom:326.024000pt;}
.y19b{bottom:326.460000pt;}
.yd0{bottom:330.161333pt;}
.y22{bottom:331.810667pt;}
.y28d{bottom:332.738667pt;}
.y133{bottom:333.514667pt;}
.y2bc{bottom:335.476000pt;}
.y16a{bottom:335.746667pt;}
.ya7{bottom:336.770667pt;}
.y1fe{bottom:337.744000pt;}
.y2ef{bottom:337.868000pt;}
.y273{bottom:338.802667pt;}
.y244{bottom:340.636000pt;}
.y56{bottom:343.604000pt;}
.y10c{bottom:344.296000pt;}
.y19a{bottom:344.473333pt;}
.y21{bottom:349.824000pt;}
.y28c{bottom:350.750667pt;}
.y82{bottom:350.898667pt;}
.y132{bottom:351.526667pt;}
.y2bb{bottom:352.692000pt;}
.y169{bottom:353.758667pt;}
.ya6{bottom:354.782667pt;}
.y2ee{bottom:355.082667pt;}
.y1fd{bottom:355.757333pt;}
.y272{bottom:356.814667pt;}
.y55{bottom:361.617333pt;}
.y243{bottom:362.272000pt;}
.y199{bottom:362.485333pt;}
.ycf{bottom:363.142667pt;}
.y20{bottom:367.836000pt;}
.y28b{bottom:368.764000pt;}
.y131{bottom:369.538667pt;}
.y2ba{bottom:369.906667pt;}
.y168{bottom:371.772000pt;}
.y2ed{bottom:372.298667pt;}
.ya5{bottom:372.796000pt;}
.y1fc{bottom:373.769333pt;}
.y54{bottom:379.629333pt;}
.y198{bottom:380.497333pt;}
.yce{bottom:381.156000pt;}
.y10b{bottom:382.206267pt;}
.y81{bottom:383.880000pt;}
.y28a{bottom:386.776000pt;}
.y2b9{bottom:387.122667pt;}
.y130{bottom:387.552000pt;}
.y2ec{bottom:389.514667pt;}
.y167{bottom:389.784000pt;}
.y242{bottom:390.377333pt;}
.ya4{bottom:390.808000pt;}
.y1fb{bottom:391.782667pt;}
.y1f{bottom:393.818667pt;}
.y10a{bottom:395.357067pt;}
.y53{bottom:397.642667pt;}
.y271{bottom:397.786800pt;}
.y197{bottom:398.510667pt;}
.ycd{bottom:399.168000pt;}
.y80{bottom:401.893333pt;}
.y2b8{bottom:404.338667pt;}
.y289{bottom:404.789333pt;}
.y2eb{bottom:406.729333pt;}
.y241{bottom:407.473333pt;}
.y166{bottom:407.796000pt;}
.y109{bottom:408.506667pt;}
.ya3{bottom:408.821333pt;}
.y1fa{bottom:409.794667pt;}
.y270{bottom:410.937600pt;}
.y12f{bottom:413.534667pt;}
.y52{bottom:415.654667pt;}
.y196{bottom:416.522667pt;}
.ycc{bottom:417.180000pt;}
.y26f{bottom:417.512400pt;}
.y7f{bottom:419.905333pt;}
.y2b7{bottom:421.553333pt;}
.y288{bottom:422.801333pt;}
.y2ea{bottom:423.945333pt;}
.y240{bottom:424.569333pt;}
.y165{bottom:425.809333pt;}
.y106{bottom:427.419867pt;}
.y1f9{bottom:427.806667pt;}
.y51{bottom:433.666667pt;}
.y108{bottom:433.877067pt;}
.ya2{bottom:434.804000pt;}
.ycb{bottom:435.193333pt;}
.y26e{bottom:437.239200pt;}
.y7e{bottom:437.918667pt;}
.y2b6{bottom:438.769333pt;}
.y105{bottom:440.570667pt;}
.y287{bottom:440.813333pt;}
.y2e9{bottom:441.160000pt;}
.y195{bottom:442.505333pt;}
.y26d{bottom:443.814000pt;}
.y164{bottom:443.821333pt;}
.y12e{bottom:444.485333pt;}
.y1f8{bottom:445.820000pt;}
.y107{bottom:447.027867pt;}
.y50{bottom:451.680000pt;}
.yca{bottom:453.205333pt;}
.y104{bottom:453.721467pt;}
.y7d{bottom:455.930667pt;}
.y2b5{bottom:455.984000pt;}
.y23f{bottom:457.550667pt;}
.y2e8{bottom:458.376000pt;}
.y286{bottom:458.826667pt;}
.y1e{bottom:461.737333pt;}
.y163{bottom:461.834667pt;}
.y26c{bottom:463.599600pt;}
.y1f7{bottom:463.832000pt;}
.y4f{bottom:469.692000pt;}
.y12d{bottom:470.468000pt;}
.y102{bottom:472.633467pt;}
.ya1{bottom:473.100067pt;}
.y2b4{bottom:473.200000pt;}
.y194{bottom:473.456000pt;}
.y23e{bottom:475.564000pt;}
.y2e7{bottom:475.592000pt;}
.y26b{bottom:476.750400pt;}
.y285{bottom:476.838667pt;}
.yc9{bottom:479.188000pt;}
.y103{bottom:479.209467pt;}
.y1d{bottom:479.750667pt;}
.y162{bottom:479.846667pt;}
.y7c{bottom:481.913333pt;}
.y26a{bottom:483.326400pt;}
.y101{bottom:485.784267pt;}
.ya0{bottom:486.981467pt;}
.y4e{bottom:487.704000pt;}
.y1f6{bottom:489.814667pt;}
.y2b3{bottom:490.416000pt;}
.y193{bottom:491.469333pt;}
.y2e6{bottom:492.806667pt;}
.y23d{bottom:493.576000pt;}
.y284{bottom:494.852000pt;}
.y161{bottom:497.858667pt;}
.y9f{bottom:500.862867pt;}
.y12c{bottom:501.418667pt;}
.y269{bottom:503.052000pt;}
.y100{bottom:504.697467pt;}
.y4d{bottom:505.717333pt;}
.y2b2{bottom:507.630667pt;}
.y192{bottom:509.481333pt;}
.y268{bottom:509.628000pt;}
.y2e5{bottom:510.022667pt;}
.yc8{bottom:510.138667pt;}
.y23c{bottom:511.588000pt;}
.y7b{bottom:512.864000pt;}
.y1c{bottom:513.702667pt;}
.y160{bottom:515.872000pt;}
.yff{bottom:517.848267pt;}
.y12b{bottom:519.430667pt;}
.y1f5{bottom:520.765333pt;}
.y9e{bottom:520.825533pt;}
.y4c{bottom:523.729333pt;}
.y2b1{bottom:524.846667pt;}
.y2e4{bottom:527.237333pt;}
.y191{bottom:527.493333pt;}
.y9b{bottom:527.766867pt;}
.yc7{bottom:528.152000pt;}
.y23b{bottom:529.601333pt;}
.y7a{bottom:530.876000pt;}
.y1b{bottom:531.716000pt;}
.y9d{bottom:534.706933pt;}
.y266{bottom:535.116000pt;}
.yfe{bottom:536.760267pt;}
.y12a{bottom:537.442667pt;}
.y1f4{bottom:538.778667pt;}
.y9a{bottom:541.648267pt;}
.y265{bottom:541.690800pt;}
.y4b{bottom:541.742667pt;}
.y2b0{bottom:542.062667pt;}
.y2e3{bottom:544.453333pt;}
.y190{bottom:545.506667pt;}
.yc6{bottom:546.164000pt;}
.y15f{bottom:546.982667pt;}
.y23a{bottom:547.613333pt;}
.y267{bottom:548.265600pt;}
.y9c{bottom:548.588333pt;}
.y79{bottom:548.889333pt;}
.y1a{bottom:549.728000pt;}
.yfd{bottom:549.911067pt;}
.y129{bottom:555.456000pt;}
.y1f3{bottom:556.790667pt;}
.y2af{bottom:559.277333pt;}
.y4a{bottom:559.754667pt;}
.y2e2{bottom:561.669333pt;}
.y18f{bottom:563.518667pt;}
.yc5{bottom:564.176000pt;}
.y239{bottom:565.626667pt;}
.y78{bottom:566.901333pt;}
.y145{bottom:566.920000pt;}
.y19{bottom:567.740000pt;}
.y99{bottom:568.552267pt;}
.yfc{bottom:568.823067pt;}
.y1f2{bottom:574.802667pt;}
.y264{bottom:574.870667pt;}
.y2ae{bottom:576.493333pt;}
.y49{bottom:577.766667pt;}
.y2e1{bottom:578.884000pt;}
.y18e{bottom:581.532000pt;}
.yfb{bottom:581.973867pt;}
.yc4{bottom:582.189333pt;}
.y98{bottom:582.433667pt;}
.y238{bottom:583.638667pt;}
.y128{bottom:584.094667pt;}
.y77{bottom:584.914667pt;}
.y18{bottom:585.753333pt;}
.yf8{bottom:588.549867pt;}
.y1b2{bottom:590.201333pt;}
.y1f1{bottom:592.816000pt;}
.y2ad{bottom:593.708000pt;}
.yfa{bottom:595.124667pt;}
.y48{bottom:595.780000pt;}
.y2e0{bottom:596.100000pt;}
.y18d{bottom:599.544000pt;}
.yc3{bottom:600.201333pt;}
.y237{bottom:601.650667pt;}
.y127{bottom:602.108000pt;}
.y97{bottom:602.396333pt;}
.y76{bottom:602.926667pt;}
.y17{bottom:603.765333pt;}
.y263{bottom:604.392000pt;}
.yf9{bottom:608.275467pt;}
.y1f0{bottom:610.828000pt;}
.y2ac{bottom:610.924000pt;}
.y2df{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y96{bottom:616.277733pt;}
.y18c{bottom:617.556000pt;}
.yc2{bottom:618.214667pt;}
.y236{bottom:619.664000pt;}
.y75{bottom:620.938667pt;}
.y126{bottom:621.448000pt;}
.y16{bottom:621.778667pt;}
.y262{bottom:622.405333pt;}
.y1b1{bottom:624.153333pt;}
.yf7{bottom:627.247467pt;}
.y2ab{bottom:628.140000pt;}
.y283{bottom:628.909333pt;}
.y2de{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y18b{bottom:635.569333pt;}
.yc1{bottom:636.226667pt;}
.y95{bottom:636.240400pt;}
.y1ef{bottom:636.810667pt;}
.y235{bottom:637.676000pt;}
.y74{bottom:638.952000pt;}
.y15{bottom:639.790667pt;}
.y261{bottom:640.417333pt;}
.y125{bottom:640.789333pt;}
.y1b0{bottom:642.166667pt;}
.y2aa{bottom:645.354667pt;}
.y2dd{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y94{bottom:650.121800pt;}
.yf6{bottom:653.852000pt;}
.yc0{bottom:654.238667pt;}
.y234{bottom:655.689333pt;}
.y73{bottom:656.964000pt;}
.y14{bottom:657.802667pt;}
.y260{bottom:658.429333pt;}
.y124{bottom:658.801333pt;}
.y282{bottom:659.860000pt;}
.y2a9{bottom:662.570667pt;}
.y91{bottom:664.003200pt;}
.y2dc{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.y1af{bottom:669.477333pt;}
.ybf{bottom:672.252000pt;}
.y233{bottom:673.701333pt;}
.y72{bottom:674.977333pt;}
.y1ee{bottom:675.107867pt;}
.y13{bottom:675.816000pt;}
.y25f{bottom:676.442667pt;}
.y18a{bottom:677.321333pt;}
.y281{bottom:677.872000pt;}
.y93{bottom:677.884600pt;}
.y2a8{bottom:679.785333pt;}
.y1ed{bottom:682.047933pt;}
.y2db{bottom:682.177333pt;}
.y43{bottom:685.842667pt;}
.yf5{bottom:686.834667pt;}
.y123{bottom:687.441333pt;}
.y232{bottom:691.713333pt;}
.y92{bottom:691.766000pt;}
.y189{bottom:692.000000pt;}
.y187{bottom:692.416000pt;}
.y71{bottom:692.989333pt;}
.y12{bottom:693.828000pt;}
.y25e{bottom:694.454667pt;}
.y280{bottom:695.885333pt;}
.y2a7{bottom:697.001333pt;}
.ybe{bottom:698.234667pt;}
.y2da{bottom:699.392000pt;}
.y1ae{bottom:703.430667pt;}
.y42{bottom:703.854667pt;}
.yf4{bottom:704.846667pt;}
.y122{bottom:705.453333pt;}
.y188{bottom:706.678667pt;}
.y1eb{bottom:708.951933pt;}
.y90{bottom:711.729933pt;}
.y11{bottom:711.841333pt;}
.y25d{bottom:712.468000pt;}
.y27f{bottom:713.897333pt;}
.y2a6{bottom:714.217333pt;}
.y1ea{bottom:715.893267pt;}
.y2d9{bottom:716.608000pt;}
.y70{bottom:718.972000pt;}
.y1ad{bottom:721.442667pt;}
.y41{bottom:721.868000pt;}
.y231{bottom:722.825333pt;}
.y1ec{bottom:722.833333pt;}
.yf3{bottom:722.858667pt;}
.y121{bottom:723.466667pt;}
.y8f{bottom:725.610067pt;}
.y186{bottom:727.758667pt;}
.y10{bottom:729.853333pt;}
.y25c{bottom:730.480000pt;}
.y2a5{bottom:731.432000pt;}
.y27e{bottom:731.909333pt;}
.y2d8{bottom:733.824000pt;}
.ybd{bottom:736.203867pt;}
.y1ac{bottom:739.454667pt;}
.y40{bottom:739.880000pt;}
.y230{bottom:739.921333pt;}
.yf2{bottom:740.872000pt;}
.y185{bottom:742.437333pt;}
.y183{bottom:742.853333pt;}
.y1e9{bottom:742.859333pt;}
.y25b{bottom:748.492000pt;}
.y2a4{bottom:748.648000pt;}
.y120{bottom:749.449333pt;}
.y6f{bottom:749.922667pt;}
.y2d7{bottom:751.038667pt;}
.y8e{bottom:752.966667pt;}
.ybc{bottom:755.175867pt;}
.y184{bottom:757.114667pt;}
.y3f{bottom:757.892000pt;}
.y209{bottom:759.858667pt;}
.yd{bottom:761.348048pt;}
.yc{bottom:761.698667pt;}
.y1e8{bottom:762.886600pt;}
.y2a3{bottom:765.862667pt;}
.y25a{bottom:766.505333pt;}
.y1ab{bottom:766.766667pt;}
.yf1{bottom:766.854667pt;}
.y6e{bottom:767.934667pt;}
.y2d6{bottom:768.254667pt;}
.ybb{bottom:774.089067pt;}
.y3e{bottom:775.905333pt;}
.y182{bottom:778.196000pt;}
.y1e7{bottom:782.849267pt;}
.y259{bottom:784.517333pt;}
.y2d5{bottom:785.469333pt;}
.y6d{bottom:785.948000pt;}
.y1aa{bottom:786.106667pt;}
.yb9{bottom:787.239867pt;}
.y11f{bottom:787.358667pt;}
.y1e6{bottom:789.790600pt;}
.y2a2{bottom:791.049333pt;}
.y181{bottom:792.874667pt;}
.y17f{bottom:793.290667pt;}
.y3d{bottom:793.917333pt;}
.yb{bottom:796.696000pt;}
.y144{bottom:798.062667pt;}
.yba{bottom:800.390667pt;}
.y11e{bottom:800.509467pt;}
.y2d4{bottom:802.685333pt;}
.y6c{bottom:803.960000pt;}
.yee{bottom:804.763733pt;}
.y180{bottom:807.552000pt;}
.y300{bottom:807.826667pt;}
.yf0{bottom:811.339733pt;}
.y3c{bottom:811.930667pt;}
.ya{bottom:812.834667pt;}
.y143{bottom:816.074667pt;}
.y1e5{bottom:816.694600pt;}
.yed{bottom:817.914533pt;}
.yb8{bottom:819.362667pt;}
.y11d{bottom:819.422667pt;}
.y2d3{bottom:819.901333pt;}
.y1a9{bottom:820.060000pt;}
.y6b{bottom:821.972000pt;}
.y1e4{bottom:823.634667pt;}
.yef{bottom:824.490533pt;}
.y2ff{bottom:825.042667pt;}
.y2a1{bottom:826.117333pt;}
.y258{bottom:826.269333pt;}
.y17e{bottom:828.633333pt;}
.y3b{bottom:829.942667pt;}
.yec{bottom:831.065333pt;}
.y11c{bottom:832.572267pt;}
.y9{bottom:833.314667pt;}
.y142{bottom:834.088000pt;}
.y2d2{bottom:837.116000pt;}
.y1a8{bottom:838.072000pt;}
.yb7{bottom:838.334667pt;}
.y6a{bottom:839.985333pt;}
.y257{bottom:840.948000pt;}
.y2fe{bottom:842.257333pt;}
.y8{bottom:845.114667pt;}
.y2a0{bottom:847.597333pt;}
.y3a{bottom:847.954667pt;}
.y17d{bottom:849.713333pt;}
.yeb{bottom:849.978533pt;}
.y1e3{bottom:850.538667pt;}
.y11b{bottom:851.545467pt;}
.y141{bottom:852.100000pt;}
.y2d1{bottom:854.332000pt;}
.y256{bottom:855.626667pt;}
.y1a7{bottom:856.085333pt;}
.yb6{bottom:857.247867pt;}
.y69{bottom:857.997333pt;}
.y29f{bottom:861.106667pt;}
.ye9{bottom:863.129333pt;}
.y17c{bottom:864.392000pt;}
.y1e1{bottom:864.420067pt;}
.y17a{bottom:864.808000pt;}
.y7{bottom:865.593333pt;}
.y39{bottom:865.968000pt;}
.y140{bottom:870.112000pt;}
.y255{bottom:870.305333pt;}
.yb5{bottom:870.398667pt;}
.y11a{bottom:870.517467pt;}
.y2d0{bottom:871.546667pt;}
.y29e{bottom:874.616000pt;}
.y68{bottom:876.010667pt;}
.yea{bottom:876.278933pt;}
.y1e2{bottom:878.301467pt;}
.y17b{bottom:879.069333pt;}
.y1a6{bottom:883.396000pt;}
.yb2{bottom:883.548267pt;}
.y38{bottom:883.980000pt;}
.y254{bottom:884.982667pt;}
.y6{bottom:885.364000pt;}
.y13f{bottom:888.125333pt;}
.y2cf{bottom:888.762667pt;}
.y117{bottom:889.430667pt;}
.y179{bottom:893.748000pt;}
.y67{bottom:894.022667pt;}
.ye8{bottom:895.192133pt;}
.y119{bottom:896.005467pt;}
.yb4{bottom:896.699067pt;}
.y1e0{bottom:898.264133pt;}
.y253{bottom:899.661333pt;}
.ye3{bottom:901.766933pt;}
.y37{bottom:901.993333pt;}
.y116{bottom:902.581467pt;}
.y1a5{bottom:902.737333pt;}
.y1df{bottom:905.205467pt;}
.y2ce{bottom:905.978667pt;}
.ye7{bottom:908.342933pt;}
.y178{bottom:908.426667pt;}
.y176{bottom:908.842667pt;}
.y118{bottom:909.156267pt;}
.y29d{bottom:909.604000pt;}
.yb3{bottom:909.849867pt;}
.y66{bottom:912.034667pt;}
.y252{bottom:914.340000pt;}
.ye2{bottom:914.917733pt;}
.y115{bottom:915.731067pt;}
.y36{bottom:920.005333pt;}
.ye6{bottom:921.493733pt;}
.y13e{bottom:922.077333pt;}
.y177{bottom:923.105333pt;}
.y29c{bottom:923.113333pt;}
.y2cd{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.ye1{bottom:928.068533pt;}
.yb1{bottom:928.823067pt;}
.y251{bottom:929.018667pt;}
.y65{bottom:930.048000pt;}
.y1de{bottom:932.109467pt;}
.y114{bottom:934.644267pt;}
.ye5{bottom:934.644533pt;}
.y35{bottom:938.017333pt;}
.y1dd{bottom:939.049533pt;}
.y13d{bottom:940.090667pt;}
.y2cc{bottom:940.409333pt;}
.y113{bottom:941.219067pt;}
.ye0{bottom:941.219333pt;}
.y250{bottom:943.630667pt;}
.y175{bottom:944.185333pt;}
.y29b{bottom:944.593333pt;}
.yb0{bottom:947.795067pt;}
.ye4{bottom:947.795333pt;}
.y64{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y2cb{bottom:957.624000pt;}
.y174{bottom:965.265333pt;}
.y1dc{bottom:966.016867pt;}
.y63{bottom:966.073333pt;}
.yaf{bottom:966.767067pt;}
.ydf{bottom:966.767333pt;}
.y33{bottom:974.042667pt;}
.y2ca{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.yae{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h19{height:31.116995pt;}
.h10{height:32.154228pt;}
.h14{height:32.845716pt;}
.h7{height:33.771789pt;}
.h26{height:34.574438pt;}
.h1b{height:35.052646pt;}
.h27{height:37.087439pt;}
.h2a{height:37.778179pt;}
.h24{height:38.231875pt;}
.hc{height:38.415786pt;}
.he{height:38.596538pt;}
.h4{height:38.947124pt;}
.h1a{height:39.079158pt;}
.h11{height:40.381796pt;}
.h12{height:40.604163pt;}
.h16{height:41.250222pt;}
.h28{height:41.524400pt;}
.h8{height:43.421286pt;}
.h35{height:43.660390pt;}
.h20{height:44.389500pt;}
.h2f{height:44.390625pt;}
.h22{height:44.648438pt;}
.h2{height:45.272024pt;}
.hd{height:48.245551pt;}
.hf{height:48.511220pt;}
.h1d{height:48.674358pt;}
.h23{height:49.125625pt;}
.h25{height:49.136505pt;}
.h6{height:49.201961pt;}
.h30{height:49.410937pt;}
.h32{height:51.126455pt;}
.h31{height:51.131789pt;}
.h36{height:54.082620pt;}
.h33{height:55.957402pt;}
.h34{height:57.416195pt;}
.h2d{height:59.167660pt;}
.h2e{height:59.168940pt;}
.h21{height:59.187500pt;}
.h15{height:60.605983pt;}
.h3{height:61.782479pt;}
.h1c{height:65.378358pt;}
.h1e{height:65.383158pt;}
.h13{height:67.562596pt;}
.h18{height:69.010489pt;}
.h17{height:69.015555pt;}
.h5{height:69.148877pt;}
.h1f{height:210.128000pt;}
.h2c{height:240.890667pt;}
.h2b{height:245.481333pt;}
.h29{height:249.464000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w8{width:162.519333pt;}
.w2{width:188.033730pt;}
.w4{width:219.589333pt;}
.w6{width:378.170667pt;}
.w9{width:392.676000pt;}
.w5{width:541.752000pt;}
.w7{width:555.195333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa5{left:-184.722773pt;}
.xa7{left:-156.413013pt;}
.xb0{left:-42.812107pt;}
.xcb{left:-27.874107pt;}
.xb6{left:-14.502347pt;}
.xb7{left:-10.013707pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.xa6{left:27.758667pt;}
.xb2{left:42.781333pt;}
.xd0{left:46.849253pt;}
.x2{left:50.765941pt;}
.xcd{left:62.997733pt;}
.x9f{left:100.280000pt;}
.x1{left:102.046667pt;}
.xb5{left:106.789333pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.xd7{left:113.772000pt;}
.x52{left:119.039733pt;}
.x1a{left:120.982667pt;}
.x84{left:121.918533pt;}
.x2f{left:123.171413pt;}
.x61{left:125.970400pt;}
.x1b{left:127.624000pt;}
.x4{left:129.929333pt;}
.x1c{left:130.878667pt;}
.x53{left:132.558933pt;}
.x3f{left:136.098333pt;}
.x3e{left:137.301667pt;}
.xb1{left:140.065333pt;}
.xe2{left:143.223333pt;}
.x1d{left:144.162667pt;}
.x85{left:149.823333pt;}
.xcc{left:153.879333pt;}
.xbf{left:162.209467pt;}
.xeb{left:164.064000pt;}
.x8{left:167.425333pt;}
.xbe{left:169.717000pt;}
.xc1{left:171.886800pt;}
.xba{left:172.840600pt;}
.xdb{left:175.033333pt;}
.x2e{left:176.094667pt;}
.x9{left:179.021333pt;}
.xd1{left:181.249333pt;}
.xdc{left:184.946667pt;}
.xc2{left:185.989333pt;}
.xdd{left:187.128000pt;}
.xa{left:188.514667pt;}
.xde{left:189.412000pt;}
.xd2{left:191.144000pt;}
.xc8{left:193.849333pt;}
.xb{left:195.156000pt;}
.xc{left:198.544000pt;}
.x9c{left:200.477867pt;}
.x5c{left:202.179333pt;}
.x62{left:203.837200pt;}
.xd{left:205.185333pt;}
.x31{left:206.525453pt;}
.x9e{left:208.053467pt;}
.x6c{left:210.196000pt;}
.xab{left:211.841333pt;}
.x99{left:214.917467pt;}
.x7a{left:217.392933pt;}
.xa3{left:218.674667pt;}
.x63{left:220.250800pt;}
.x2a{left:222.186667pt;}
.xa4{left:224.077333pt;}
.x37{left:226.076533pt;}
.x6d{left:228.100000pt;}
.x60{left:229.778667pt;}
.x5a{left:230.686533pt;}
.x51{left:232.605333pt;}
.x32{left:233.731053pt;}
.x2b{left:235.470667pt;}
.x5e{left:237.708000pt;}
.x64{left:240.306400pt;}
.x45{left:241.880200pt;}
.x9d{left:244.947467pt;}
.x4c{left:246.644133pt;}
.x5f{left:250.992000pt;}
.xb8{left:252.224000pt;}
.x46{left:253.413200pt;}
.x30{left:255.489333pt;}
.x54{left:256.590933pt;}
.x47{left:258.217667pt;}
.x4d{left:259.631267pt;}
.x75{left:261.286533pt;}
.x4e{left:263.487000pt;}
.x48{left:266.434533pt;}
.x50{left:267.476000pt;}
.x26{left:272.170667pt;}
.x95{left:274.655733pt;}
.x88{left:275.957733pt;}
.x98{left:277.413333pt;}
.x49{left:280.557867pt;}
.xce{left:281.773333pt;}
.x5b{left:283.068933pt;}
.x27{left:285.453333pt;}
.x89{left:286.883733pt;}
.x93{left:289.277733pt;}
.xd6{left:290.176000pt;}
.x28{left:292.102667pt;}
.x96{left:294.033333pt;}
.xe3{left:295.000533pt;}
.x20{left:296.228000pt;}
.x39{left:297.562667pt;}
.x8b{left:300.242133pt;}
.xe1{left:303.693333pt;}
.x29{left:305.385333pt;}
.x8c{left:308.026533pt;}
.x21{left:309.512000pt;}
.x3a{left:310.846667pt;}
.x8d{left:312.599733pt;}
.xa8{left:314.869333pt;}
.x3b{left:317.594667pt;}
.x24{left:318.932000pt;}
.xb4{left:322.789333pt;}
.xc3{left:326.193333pt;}
.x3c{left:330.877333pt;}
.x25{left:332.216000pt;}
.xc4{left:339.837333pt;}
.xe{left:342.102667pt;}
.xc5{left:347.322667pt;}
.xf{left:348.744000pt;}
.x12{left:350.416000pt;}
.x10{left:355.518667pt;}
.x13{left:357.057333pt;}
.x74{left:360.429333pt;}
.x11{left:362.160000pt;}
.x14{left:363.726667pt;}
.x3d{left:368.406667pt;}
.x65{left:370.067200pt;}
.x69{left:371.116000pt;}
.x72{left:373.052800pt;}
.x73{left:374.537200pt;}
.x15{left:377.009333pt;}
.x78{left:377.952933pt;}
.x7b{left:382.218933pt;}
.xb3{left:386.740000pt;}
.xe4{left:390.424533pt;}
.xad{left:391.758667pt;}
.xaf{left:394.236000pt;}
.x6a{left:398.095600pt;}
.xcf{left:399.056000pt;}
.x6b{left:400.328800pt;}
.x79{left:401.967333pt;}
.x6e{left:404.777200pt;}
.x34{left:407.225653pt;}
.x76{left:415.250133pt;}
.x35{left:416.409093pt;}
.x33{left:424.831173pt;}
.x41{left:427.464600pt;}
.xc0{left:429.853600pt;}
.x4a{left:431.359600pt;}
.x40{left:433.847333pt;}
.x9a{left:438.022667pt;}
.x38{left:439.484253pt;}
.x2c{left:440.698667pt;}
.x7f{left:442.499733pt;}
.x1e{left:444.818667pt;}
.xac{left:446.202667pt;}
.x8e{left:449.266533pt;}
.x97{left:450.316533pt;}
.x77{left:452.440533pt;}
.x2d{left:453.982667pt;}
.x4b{left:455.533933pt;}
.x86{left:456.761733pt;}
.x1f{left:458.101333pt;}
.x7d{left:460.590933pt;}
.x66{left:461.714800pt;}
.x44{left:466.351267pt;}
.x7c{left:468.117333pt;}
.x7e{left:469.479333pt;}
.x67{left:472.474000pt;}
.xae{left:473.417333pt;}
.x87{left:476.387733pt;}
.x43{left:483.854067pt;}
.x94{left:485.301333pt;}
.x36{left:488.021573pt;}
.x42{left:490.690267pt;}
.x22{left:493.141333pt;}
.xda{left:501.616000pt;}
.x8a{left:504.524133pt;}
.x23{left:506.425333pt;}
.x16{left:509.824000pt;}
.x4f{left:511.713133pt;}
.x9b{left:512.849867pt;}
.x17{left:516.465333pt;}
.x57{left:520.236933pt;}
.x6f{left:521.470000pt;}
.xa9{left:527.536000pt;}
.xbb{left:530.065933pt;}
.xd3{left:531.006667pt;}
.xdf{left:534.200000pt;}
.xb9{left:537.363200pt;}
.xd4{left:538.310667pt;}
.xaa{left:540.818667pt;}
.x59{left:541.929333pt;}
.x58{left:543.424533pt;}
.xbd{left:545.813133pt;}
.xe0{left:547.572000pt;}
.x8f{left:550.851333pt;}
.x55{left:553.796133pt;}
.xe5{left:554.954667pt;}
.xbc{left:556.051600pt;}
.x56{left:557.336133pt;}
.xf0{left:558.614667pt;}
.x90{left:561.610533pt;}
.x5d{left:566.148933pt;}
.xea{left:570.546667pt;}
.x68{left:577.396000pt;}
.xd8{left:580.708000pt;}
.xf1{left:582.525333pt;}
.xec{left:583.822667pt;}
.xd9{left:588.193333pt;}
.xed{left:590.202667pt;}
.xca{left:593.510667pt;}
.xf3{left:596.016000pt;}
.xc6{left:600.745333pt;}
.x70{left:603.290800pt;}
.xc7{left:607.473333pt;}
.x71{left:608.670400pt;}
.xc9{left:613.737333pt;}
.xe6{left:617.869333pt;}
.xf4{left:619.926667pt;}
.x6{left:623.413317pt;}
.xef{left:624.864000pt;}
.xa0{left:627.498667pt;}
.xd5{left:631.949333pt;}
.x80{left:639.972000pt;}
.xe7{left:641.780000pt;}
.xa1{left:647.557333pt;}
.xf5{left:649.093333pt;}
.x81{left:653.256000pt;}
.x82{left:656.522667pt;}
.xa2{left:660.840000pt;}
.x91{left:663.977733pt;}
.xe8{left:666.266667pt;}
.x83{left:669.806667pt;}
.xf2{left:671.237333pt;}
.x18{left:672.372000pt;}
.x92{left:674.736933pt;}
.xee{left:677.512000pt;}
.x19{left:685.654667pt;}
.xe9{left:690.177333pt;}
}




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