
    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_569a1a977c8ec851a39996b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ea8ea8ad148b961e395a2d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_565b6931c42e14bcbbb7259b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ffcef85667b9800d6cc6182.woff2')format("woff");}.ff6{font-family:ff6;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: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_dddf857c9a937d2522142f96.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8983c231804c3993a2dce412.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;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_6d81044ba91fcd85eefcca98.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5abd7d3ec7bee5b2780d724d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.040000;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_11bdd06d581023354f84c230.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6b9da26b7f37d607c5748aed.woff2')format("woff");}.fff{font-family:fff;line-height:0.988000;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_1e678125b9715b6c18f0d866.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ca858b9d65192fa74cbcd624.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_451c4c76ca5a3b25cdad599c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_88bd66079ae94869c9de85c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;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_32a39bc238e6027a202a5a9b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.012207;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_f8f62b1bfc3d1972e39f1f64.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938965;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;}
.m9{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);}
.m1c{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);}
.m1f{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);}
.m27{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);}
.m8{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);}
.m1a{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);}
.m7{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);}
.m2{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);}
.m18{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);}
.m14{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);}
.m11{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);}
.mc{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);}
.m1e{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m21{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);}
.m1b{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);}
.m15{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);}
.m17{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);}
.m25{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);}
.m26{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);}
.mb{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);}
.mf{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);}
.m29{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);}
.m6{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);}
.m19{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);}
.m24{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);}
.m28{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);}
.m10{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);}
.m5{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);}
.m1d{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);}
.me{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);}
.m16{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);}
.ma{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);}
.md{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);}
.m12{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);}
.m22{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);}
.m13{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);}
.m2a{transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352058,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352065,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-11.760000px;}
.v4{vertical-align:-10.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.760000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:31.302000px;}
.v3{vertical-align:32.880000px;}
.v7{vertical-align:37.488000px;}
.ls83{letter-spacing:-2.922662px;}
.ls99{letter-spacing:-1.971000px;}
.ls7f{letter-spacing:-1.751837px;}
.ls9b{letter-spacing:-1.512000px;}
.ls97{letter-spacing:-1.485000px;}
.ls96{letter-spacing:-1.458000px;}
.ls98{letter-spacing:-1.441800px;}
.ls9c{letter-spacing:-1.409400px;}
.ls9a{letter-spacing:-1.387800px;}
.ls95{letter-spacing:-0.232200px;}
.ls9e{letter-spacing:-0.205200px;}
.ls92{letter-spacing:-0.118800px;}
.ls7a{letter-spacing:-0.090972px;}
.ls91{letter-spacing:-0.075600px;}
.ls9d{letter-spacing:-0.070200px;}
.ls88{letter-spacing:-0.064800px;}
.ls90{letter-spacing:-0.059400px;}
.ls93{letter-spacing:-0.054000px;}
.ls87{letter-spacing:-0.048600px;}
.ls8d{letter-spacing:-0.043200px;}
.ls94{letter-spacing:-0.037800px;}
.ls8b{letter-spacing:-0.027000px;}
.ls8c{letter-spacing:-0.021600px;}
.ls8a{letter-spacing:-0.016200px;}
.ls89{letter-spacing:-0.010800px;}
.ls7b{letter-spacing:-0.006012px;}
.ls8e{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.000017px;}
.ls60{letter-spacing:0.000259px;}
.lsd{letter-spacing:0.000566px;}
.ls55{letter-spacing:0.000583px;}
.ls14{letter-spacing:0.000612px;}
.ls58{letter-spacing:0.001133px;}
.ls2c{letter-spacing:0.001834px;}
.lsa{letter-spacing:0.001929px;}
.lsa0{letter-spacing:0.002618px;}
.ls48{letter-spacing:0.002725px;}
.ls56{letter-spacing:0.003292px;}
.ls5f{letter-spacing:0.004090px;}
.ls13{letter-spacing:0.004665px;}
.ls21{letter-spacing:0.005151px;}
.ls74{letter-spacing:0.005400px;}
.ls69{letter-spacing:0.006012px;}
.ls6e{letter-spacing:0.010800px;}
.ls6b{letter-spacing:0.016200px;}
.ls61{letter-spacing:0.019152px;}
.ls6a{letter-spacing:0.021600px;}
.ls70{letter-spacing:0.027000px;}
.ls75{letter-spacing:0.032400px;}
.ls63{letter-spacing:0.033516px;}
.ls67{letter-spacing:0.037800px;}
.ls81{letter-spacing:0.039614px;}
.ls78{letter-spacing:0.043200px;}
.ls85{letter-spacing:0.048418px;}
.ls72{letter-spacing:0.048600px;}
.ls71{letter-spacing:0.054000px;}
.ls68{letter-spacing:0.059400px;}
.ls6c{letter-spacing:0.064800px;}
.ls7e{letter-spacing:0.080545px;}
.ls76{letter-spacing:0.081000px;}
.ls77{letter-spacing:0.090000px;}
.ls6f{letter-spacing:0.113400px;}
.ls6d{letter-spacing:0.124200px;}
.ls8f{letter-spacing:0.156600px;}
.ls79{letter-spacing:0.167400px;}
.ls64{letter-spacing:0.172368px;}
.ls62{letter-spacing:0.181944px;}
.ls82{letter-spacing:0.312514px;}
.ls66{letter-spacing:0.316915px;}
.ls86{letter-spacing:0.325718px;}
.ls32{letter-spacing:0.328200px;}
.ls84{letter-spacing:0.330120px;}
.ls7d{letter-spacing:0.333164px;}
.ls80{letter-spacing:0.352128px;}
.ls9f{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.473675px;}
.ls1b{letter-spacing:0.548815px;}
.ls57{letter-spacing:0.642088px;}
.ls16{letter-spacing:0.648088px;}
.ls1d{letter-spacing:0.714017px;}
.ls59{letter-spacing:0.717483px;}
.ls2b{letter-spacing:0.723483px;}
.ls4d{letter-spacing:0.742483px;}
.ls27{letter-spacing:0.744374px;}
.ls31{letter-spacing:0.745625px;}
.ls2a{letter-spacing:0.746725px;}
.ls47{letter-spacing:0.748200px;}
.ls25{letter-spacing:0.748483px;}
.ls26{letter-spacing:0.750374px;}
.ls36{letter-spacing:0.751625px;}
.ls65{letter-spacing:0.856707px;}
.ls18{letter-spacing:1.000483px;}
.ls5d{letter-spacing:1.074422px;}
.ls2f{letter-spacing:1.074775px;}
.ls2d{letter-spacing:1.078483px;}
.ls7c{letter-spacing:1.112987px;}
.ls1a{letter-spacing:1.136095px;}
.ls33{letter-spacing:1.166383px;}
.ls7{letter-spacing:1.275394px;}
.ls3d{letter-spacing:1.460832px;}
.ls39{letter-spacing:1.489625px;}
.ls40{letter-spacing:1.580036px;}
.ls3{letter-spacing:1.861130px;}
.ls1c{letter-spacing:2.509625px;}
.ls29{letter-spacing:2.988571px;}
.ls10{letter-spacing:2.988600px;}
.ls1f{letter-spacing:3.684374px;}
.ls28{letter-spacing:3.732571px;}
.ls73{letter-spacing:5.850000px;}
.ls37{letter-spacing:10.706100px;}
.ls34{letter-spacing:10.712100px;}
.ls51{letter-spacing:11.900815px;}
.ls4a{letter-spacing:11.906815px;}
.ls49{letter-spacing:11.922571px;}
.ls6{letter-spacing:11.954850px;}
.ls3a{letter-spacing:13.083483px;}
.ls1e{letter-spacing:13.089483px;}
.ls35{letter-spacing:13.112725px;}
.ls38{letter-spacing:13.118725px;}
.ls2e{letter-spacing:13.532383px;}
.ls5c{letter-spacing:13.808164px;}
.ls30{letter-spacing:14.583483px;}
.ls5e{letter-spacing:14.645022px;}
.ls20{letter-spacing:14.940825px;}
.ls54{letter-spacing:14.942383px;}
.ls52{letter-spacing:14.942725px;}
.ls12{letter-spacing:14.943634px;}
.ls23{letter-spacing:14.943876px;}
.lsf{letter-spacing:14.943900px;}
.ls11{letter-spacing:14.943986px;}
.ls45{letter-spacing:14.963546px;}
.lsb{letter-spacing:15.003676px;}
.ls42{letter-spacing:15.215845px;}
.ls44{letter-spacing:15.219016px;}
.ls3e{letter-spacing:15.220902px;}
.ls3c{letter-spacing:15.221887px;}
.ls43{letter-spacing:15.223919px;}
.ls3f{letter-spacing:15.225720px;}
.ls41{letter-spacing:15.227005px;}
.ls8{letter-spacing:15.302554px;}
.ls5b{letter-spacing:15.657483px;}
.ls5a{letter-spacing:15.663483px;}
.ls46{letter-spacing:15.687986px;}
.ls4c{letter-spacing:15.693986px;}
.ls19{letter-spacing:16.242571px;}
.ls24{letter-spacing:16.374211px;}
.ls53{letter-spacing:16.379108px;}
.ls22{letter-spacing:16.491586px;}
.ls4f{letter-spacing:17.187986px;}
.ls4b{letter-spacing:17.929200px;}
.ls4e{letter-spacing:17.934571px;}
.ls2{letter-spacing:17.935200px;}
.ls17{letter-spacing:18.069483px;}
.ls9{letter-spacing:18.351109px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.lsc{letter-spacing:302.242387px;}
.ls3b{letter-spacing:337.478725px;}
.lse{letter-spacing:828.605933px;}
.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;}
}
.ws49{word-spacing:-14.943900px;}
.wsd1{word-spacing:-13.548600px;}
.wsd0{word-spacing:-13.537800px;}
.wsce{word-spacing:-13.527000px;}
.wscd{word-spacing:-13.521600px;}
.wscf{word-spacing:-13.483800px;}
.ws5e{word-spacing:-13.449600px;}
.wsc6{word-spacing:-12.151944px;}
.ws2a{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wscc{word-spacing:-11.034676px;}
.ws12{word-spacing:-10.460700px;}
.ws7d{word-spacing:-3.526760px;}
.ws85{word-spacing:-3.466985px;}
.wsa1{word-spacing:-3.287658px;}
.wsf8{word-spacing:-2.694600px;}
.ws3e{word-spacing:-2.689902px;}
.wsf7{word-spacing:-2.397600px;}
.wsc3{word-spacing:-2.367130px;}
.wsf6{word-spacing:-2.311200px;}
.ws90{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.908367px;}
.ws59{word-spacing:-1.853044px;}
.ws83{word-spacing:-1.827611px;}
.ws76{word-spacing:-1.793268px;}
.ws77{word-spacing:-1.733492px;}
.wsd8{word-spacing:-1.560154px;}
.ws4f{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws1e{word-spacing:-1.315063px;}
.ws13f{word-spacing:-1.291162px;}
.ws30{word-spacing:-1.255288px;}
.ws99{word-spacing:-1.195512px;}
.ws58{word-spacing:-1.135736px;}
.ws5c{word-spacing:-1.016185px;}
.ws37{word-spacing:-0.777083px;}
.ws78{word-spacing:-0.657532px;}
.wsa4{word-spacing:-0.597756px;}
.ws103{word-spacing:-0.567000px;}
.ws105{word-spacing:-0.550800px;}
.ws104{word-spacing:-0.545400px;}
.wsa3{word-spacing:-0.537980px;}
.ws6a{word-spacing:-0.478205px;}
.wsbe{word-spacing:-0.418429px;}
.ws2e{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.298878px;}
.wsc2{word-spacing:-0.268992px;}
.wsdc{word-spacing:-0.264528px;}
.ws10b{word-spacing:-0.259200px;}
.ws26{word-spacing:-0.239102px;}
.ws118{word-spacing:-0.232200px;}
.ws14{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws114{word-spacing:-0.129600px;}
.wsda{word-spacing:-0.124488px;}
.ws28{word-spacing:-0.119551px;}
.ws119{word-spacing:-0.108000px;}
.ws5f{word-spacing:-0.107597px;}
.ws67{word-spacing:-0.093789px;}
.ws20{word-spacing:-0.059776px;}
.wsc1{word-spacing:-0.053798px;}
.wsd2{word-spacing:-0.009302px;}
.ws62{word-spacing:-0.006634px;}
.ws137{word-spacing:-0.005453px;}
.ws142{word-spacing:-0.005030px;}
.ws13c{word-spacing:-0.004810px;}
.ws13a{word-spacing:-0.003898px;}
.ws63{word-spacing:-0.003342px;}
.ws1{word-spacing:-0.002977px;}
.ws7f{word-spacing:-0.002888px;}
.ws64{word-spacing:-0.002417px;}
.ws8f{word-spacing:-0.001991px;}
.ws136{word-spacing:-0.000778px;}
.ws92{word-spacing:-0.000470px;}
.ws29{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:0.000631px;}
.ws65{word-spacing:0.001183px;}
.ws8e{word-spacing:0.001424px;}
.ws7c{word-spacing:0.002036px;}
.ws61{word-spacing:0.002641px;}
.ws60{word-spacing:0.053798px;}
.wse3{word-spacing:0.054000px;}
.ws34{word-spacing:0.059776px;}
.ws87{word-spacing:0.106297px;}
.ws13{word-spacing:0.107597px;}
.wse2{word-spacing:0.113400px;}
.wsde{word-spacing:0.118800px;}
.ws2b{word-spacing:0.119551px;}
.ws125{word-spacing:0.124200px;}
.wsed{word-spacing:0.129600px;}
.ws12d{word-spacing:0.135000px;}
.wsdd{word-spacing:0.140400px;}
.ws108{word-spacing:0.145800px;}
.wse8{word-spacing:0.151200px;}
.wsee{word-spacing:0.156600px;}
.ws15{word-spacing:0.161395px;}
.ws120{word-spacing:0.167400px;}
.wse4{word-spacing:0.178200px;}
.ws22{word-spacing:0.179327px;}
.ws110{word-spacing:0.189000px;}
.wsf4{word-spacing:0.199800px;}
.wsf3{word-spacing:0.205200px;}
.ws8{word-spacing:0.209214px;}
.wsd3{word-spacing:0.215194px;}
.wsf5{word-spacing:0.221400px;}
.ws10c{word-spacing:0.232200px;}
.ws102{word-spacing:0.237600px;}
.ws23{word-spacing:0.239102px;}
.ws126{word-spacing:0.243000px;}
.ws131{word-spacing:0.248400px;}
.ws11d{word-spacing:0.253800px;}
.ws84{word-spacing:0.259406px;}
.ws1c{word-spacing:0.268992px;}
.ws86{word-spacing:0.279204px;}
.wsa{word-spacing:0.292900px;}
.ws4b{word-spacing:0.298878px;}
.ws141{word-spacing:0.322790px;}
.ws55{word-spacing:0.358654px;}
.ws21{word-spacing:0.418429px;}
.wsc5{word-spacing:0.430387px;}
.wsa8{word-spacing:0.537980px;}
.ws8b{word-spacing:0.569114px;}
.ws3d{word-spacing:0.597756px;}
.ws132{word-spacing:0.645581px;}
.ws5b{word-spacing:0.657532px;}
.ws98{word-spacing:0.747025px;}
.ws50{word-spacing:0.777083px;}
.ws6b{word-spacing:0.836858px;}
.wsea{word-spacing:0.847800px;}
.wsec{word-spacing:0.880200px;}
.wsad{word-spacing:0.896634px;}
.wse9{word-spacing:0.912600px;}
.wseb{word-spacing:0.918000px;}
.ws5a{word-spacing:0.956410px;}
.ws33{word-spacing:1.016185px;}
.ws68{word-spacing:1.075961px;}
.ws1b{word-spacing:1.129766px;}
.wsb8{word-spacing:1.135736px;}
.ws11c{word-spacing:1.225800px;}
.ws13e{word-spacing:1.237363px;}
.ws11a{word-spacing:1.242000px;}
.ws54{word-spacing:1.255288px;}
.ws134{word-spacing:1.291162px;}
.ws4a{word-spacing:1.315063px;}
.ws11b{word-spacing:1.328400px;}
.ws45{word-spacing:1.374839px;}
.ws43{word-spacing:1.434614px;}
.ws44{word-spacing:1.494390px;}
.ws32{word-spacing:1.793268px;}
.ws3b{word-spacing:1.853044px;}
.wsd4{word-spacing:1.882944px;}
.wsb3{word-spacing:1.912819px;}
.ws10a{word-spacing:1.965600px;}
.ws53{word-spacing:1.972595px;}
.ws109{word-spacing:1.987200px;}
.ws9{word-spacing:2.008454px;}
.ws74{word-spacing:2.032370px;}
.ws13b{word-spacing:2.044339px;}
.ws25{word-spacing:2.092146px;}
.wsa9{word-spacing:2.151922px;}
.ws2c{word-spacing:2.211697px;}
.wsfa{word-spacing:2.214000px;}
.wse7{word-spacing:2.224800px;}
.ws18{word-spacing:2.259533px;}
.ws35{word-spacing:2.271473px;}
.ws12a{word-spacing:2.278800px;}
.wsf9{word-spacing:2.300400px;}
.wsdf{word-spacing:2.316600px;}
.wse1{word-spacing:2.322000px;}
.wse5{word-spacing:2.327400px;}
.ws12c{word-spacing:2.332800px;}
.ws128{word-spacing:2.343600px;}
.ws12b{word-spacing:2.354400px;}
.ws127{word-spacing:2.365200px;}
.wse0{word-spacing:2.386800px;}
.ws91{word-spacing:2.391024px;}
.wse6{word-spacing:2.403000px;}
.wsb4{word-spacing:2.450800px;}
.ws129{word-spacing:2.543400px;}
.ws36{word-spacing:2.570351px;}
.ws39{word-spacing:2.630126px;}
.ws38{word-spacing:2.689902px;}
.ws117{word-spacing:2.700000px;}
.ws130{word-spacing:2.716200px;}
.ws46{word-spacing:2.809453px;}
.ws6c{word-spacing:2.869229px;}
.wsbf{word-spacing:2.929004px;}
.ws138{word-spacing:3.066509px;}
.ws115{word-spacing:3.078000px;}
.ws116{word-spacing:3.105000px;}
.ws69{word-spacing:3.108331px;}
.ws140{word-spacing:3.120307px;}
.ws82{word-spacing:3.154628px;}
.wsd6{word-spacing:3.223344px;}
.wsc4{word-spacing:3.224822px;}
.wsd7{word-spacing:3.226234px;}
.ws56{word-spacing:3.227882px;}
.ws9a{word-spacing:3.227904px;}
.ws2f{word-spacing:3.287658px;}
.ws139{word-spacing:3.335501px;}
.ws122{word-spacing:3.391200px;}
.ws124{word-spacing:3.402000px;}
.ws121{word-spacing:3.423600px;}
.ws123{word-spacing:3.429000px;}
.ws13d{word-spacing:3.443098px;}
.ws1d{word-spacing:3.586536px;}
.wsfe{word-spacing:3.623400px;}
.wsd5{word-spacing:3.658291px;}
.ws48{word-spacing:3.706087px;}
.wsfd{word-spacing:3.715200px;}
.ws3f{word-spacing:3.765863px;}
.ws12f{word-spacing:3.769200px;}
.wsfc{word-spacing:3.774600px;}
.ws12e{word-spacing:3.796200px;}
.wsfb{word-spacing:3.807000px;}
.wsb6{word-spacing:3.825638px;}
.ws17{word-spacing:3.873485px;}
.ws6f{word-spacing:4.124516px;}
.ws10e{word-spacing:4.125600px;}
.ws10d{word-spacing:4.136400px;}
.ws10f{word-spacing:4.147200px;}
.ws41{word-spacing:4.244068px;}
.ws81{word-spacing:4.363619px;}
.ws2d{word-spacing:4.542946px;}
.ws7a{word-spacing:4.569730px;}
.ws4c{word-spacing:4.662497px;}
.ws57{word-spacing:4.722272px;}
.ws133{word-spacing:4.734259px;}
.ws27{word-spacing:4.782048px;}
.ws16{word-spacing:4.841856px;}
.wsa2{word-spacing:5.021150px;}
.ws52{word-spacing:5.080926px;}
.wsc0{word-spacing:5.140702px;}
.wsf2{word-spacing:5.173200px;}
.wsf1{word-spacing:5.194800px;}
.wsbc{word-spacing:5.200477px;}
.wsef{word-spacing:5.221800px;}
.wsf0{word-spacing:5.238000px;}
.ws47{word-spacing:5.379804px;}
.ws3a{word-spacing:5.439580px;}
.ws113{word-spacing:5.551200px;}
.ws112{word-spacing:5.599800px;}
.ws111{word-spacing:5.616000px;}
.ws4e{word-spacing:5.678682px;}
.wsb7{word-spacing:5.798233px;}
.wsbb{word-spacing:5.858009px;}
.ws107{word-spacing:5.913000px;}
.ws135{word-spacing:5.971622px;}
.wsb9{word-spacing:5.977560px;}
.ws106{word-spacing:6.015600px;}
.ws6e{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws19{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.ws6d{word-spacing:6.156887px;}
.ws11e{word-spacing:6.296400px;}
.ws11f{word-spacing:6.345000px;}
.ws4d{word-spacing:6.395989px;}
.ws7e{word-spacing:6.575114px;}
.wsbd{word-spacing:6.575316px;}
.ws88{word-spacing:6.575714px;}
.wsb5{word-spacing:6.635092px;}
.ws100{word-spacing:6.652800px;}
.wsff{word-spacing:6.663600px;}
.ws51{word-spacing:6.694867px;}
.ws101{word-spacing:6.717600px;}
.ws31{word-spacing:6.814418px;}
.ws75{word-spacing:6.874194px;}
.wsd9{word-spacing:7.047590px;}
.ws3c{word-spacing:7.531726px;}
.wsba{word-spacing:7.830604px;}
.ws40{word-spacing:7.890379px;}
.wse{word-spacing:8.661460px;}
.ws79{word-spacing:9.549367px;}
.ws42{word-spacing:9.743423px;}
.wsdb{word-spacing:11.615688px;}
.ws7{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.wsb2{word-spacing:107.596800px;}
.wsaf{word-spacing:110.824704px;}
.wsc7{word-spacing:111.452960px;}
.wsc8{word-spacing:111.698897px;}
.wsc9{word-spacing:117.588306px;}
.wsca{word-spacing:122.161795px;}
.wscb{word-spacing:122.674995px;}
.ws66{word-spacing:146.451308px;}
.wsa5{word-spacing:162.417370px;}
.wsae{word-spacing:168.926976px;}
.ws9b{word-spacing:199.484467px;}
.ws93{word-spacing:209.279136px;}
.ws9d{word-spacing:232.785677px;}
.wsa7{word-spacing:238.057920px;}
.ws9f{word-spacing:255.219610px;}
.ws9e{word-spacing:259.631078px;}
.wsa6{word-spacing:260.491853px;}
.wsb0{word-spacing:269.778000px;}
.wsa0{word-spacing:270.421200px;}
.wsb1{word-spacing:278.137728px;}
.ws9c{word-spacing:283.868400px;}
.ws94{word-spacing:290.941747px;}
.ws72{word-spacing:309.179405px;}
.ws95{word-spacing:313.375680px;}
.ws96{word-spacing:314.774438px;}
.ws73{word-spacing:358.512538px;}
.ws71{word-spacing:524.985600px;}
.wsaa{word-spacing:526.968490px;}
.wsab{word-spacing:595.709683px;}
.wsac{word-spacing:609.159283px;}
.ws70{word-spacing:610.737005px;}
.ws7b{word-spacing:760.959367px;}
.ws80{word-spacing:843.611114px;}
.ws97{word-spacing:853.729373px;}
.ws8a{word-spacing:862.499114px;}
.ws89{word-spacing:884.243114px;}
.ws8c{word-spacing:891.869714px;}
.ws8d{word-spacing:896.501714px;}
.ws5d{word-spacing:986.232269px;}
._18{margin-left:-7.830604px;}
._4{margin-left:-6.637949px;}
._9{margin-left:-5.308087px;}
._14{margin-left:-4.257361px;}
._8{margin-left:-3.096367px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:3.001331px;}
._2d{width:6.338666px;}
._7{width:12.971268px;}
._f{width:14.822886px;}
._a{width:16.063392px;}
._d{width:17.236234px;}
._1{width:18.530436px;}
._c{width:19.829280px;}
._15{width:21.168130px;}
._17{width:22.228956px;}
._5e{width:23.312484px;}
._e{width:24.455788px;}
._12{width:25.524181px;}
._16{width:26.839244px;}
._13{width:29.110717px;}
._5f{width:30.500690px;}
._b{width:31.579661px;}
._0{width:33.355008px;}
._42{width:34.370970px;}
._1a{width:35.636682px;}
._23{width:37.318301px;}
._1b{width:39.033467px;}
._19{width:48.179134px;}
._3{width:54.407749px;}
._67{width:56.502102px;}
._66{width:76.512669px;}
._65{width:91.779811px;}
._64{width:108.193009px;}
._4d{width:112.815245px;}
._62{width:114.910639px;}
._5a{width:124.274304px;}
._4c{width:125.347696px;}
._63{width:129.891007px;}
._3c{width:166.832362px;}
._44{width:167.952751px;}
._4a{width:169.325098px;}
._37{width:179.473238px;}
._22{width:182.268979px;}
._48{width:186.654518px;}
._3b{width:191.040922px;}
._55{width:192.544474px;}
._51{width:195.718579px;}
._38{width:205.164768px;}
._45{width:207.285235px;}
._3f{width:215.785382px;}
._33{width:217.016892px;}
._34{width:225.469094px;}
._40{width:232.225334px;}
._49{width:234.292032px;}
._32{width:245.159309px;}
._1f{width:253.682304px;}
._46{width:256.779763px;}
._50{width:260.088760px;}
._27{width:262.912781px;}
._31{width:264.150144px;}
._56{width:266.339693px;}
._2f{width:271.379875px;}
._47{width:273.995251px;}
._30{width:280.418006px;}
._3e{width:287.175859px;}
._5b{width:288.682214px;}
._57{width:290.134771px;}
._21{width:295.542518px;}
._58{width:300.625459px;}
._36{width:305.041824px;}
._5d{width:306.641386px;}
._54{width:311.062349px;}
._5c{width:312.676301px;}
._53{width:314.021261px;}
._59{width:316.442189px;}
._41{width:319.078310px;}
._35{width:326.825280px;}
._52{width:328.439232px;}
._1c{width:333.301834px;}
._26{width:335.379226px;}
._20{width:337.553098px;}
._28{width:345.421571px;}
._4f{width:353.401690px;}
._1d{width:413.117914px;}
._39{width:418.766746px;}
._1e{width:476.438630px;}
._3a{width:483.755213px;}
._4b{width:491.100631px;}
._4e{width:499.195354px;}
._2b{width:567.035136px;}
._2c{width:575.212493px;}
._29{width:584.196826px;}
._2a{width:609.589670px;}
._43{width:624.976013px;}
._25{width:661.935514px;}
._24{width:699.776534px;}
._10{width:781.914631px;}
._2e{width:882.457900px;}
._3d{width:1845.223238px;}
._61{width:2090.273220px;}
._60{width:2546.967600px;}
._11{width:2570.877600px;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc4{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fs15{font-size:36.611400px;}
.fsb{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs16{font-size:44.016000px;}
.fs8{font-size:45.429600px;}
.fs9{font-size:47.236800px;}
.fs12{font-size:47.337600px;}
.fsd{font-size:47.820600px;}
.fs13{font-size:47.880000px;}
.fse{font-size:53.798400px;}
.fs17{font-size:54.000000px;}
.fsf{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs14{font-size:60.120000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:128.507760px;}
.y264{bottom:-755.092050px;}
.y263{bottom:-737.812050px;}
.y262{bottom:-720.442050px;}
.y261{bottom:-703.161900px;}
.y260{bottom:-685.882050px;}
.y25f{bottom:-668.602050px;}
.y25e{bottom:-651.232050px;}
.y25d{bottom:-633.952050px;}
.y25c{bottom:-616.672050px;}
.y25b{bottom:-599.032050px;}
.y25a{bottom:-580.132500px;}
.y259{bottom:-562.852500px;}
.y258{bottom:-545.482050px;}
.y257{bottom:-528.202050px;}
.y256{bottom:-510.922050px;}
.y255{bottom:-493.642050px;}
.y254{bottom:-476.272500px;}
.y253{bottom:-458.992500px;}
.y252{bottom:-441.712500px;}
.y251{bottom:-424.432500px;}
.y250{bottom:-407.062050px;}
.y24f{bottom:-389.782500px;}
.y24e{bottom:-372.502500px;}
.y24d{bottom:-355.222500px;}
.y24c{bottom:-337.852050px;}
.y24b{bottom:-320.572050px;}
.y24a{bottom:-303.292050px;}
.y249{bottom:-286.012500px;}
.y248{bottom:-268.642050px;}
.y247{bottom:-251.362050px;}
.y246{bottom:-234.082050px;}
.y245{bottom:-216.802050px;}
.y244{bottom:-199.432050px;}
.y243{bottom:-182.152050px;}
.y242{bottom:-164.872050px;}
.y241{bottom:-147.592050px;}
.y240{bottom:-130.222050px;}
.y23f{bottom:-112.942050px;}
.y23e{bottom:-95.662050px;}
.y23d{bottom:-78.382050px;}
.y23c{bottom:-56.242050px;}
.y23b{bottom:-19.431900px;}
.y0{bottom:0.000000px;}
.y23a{bottom:3.068100px;}
.y2a{bottom:3.425340px;}
.y22d{bottom:5.498100px;}
.y29{bottom:14.151273px;}
.y23{bottom:16.704213px;}
.y226{bottom:17.107950px;}
.y6a{bottom:31.890000px;}
.y239{bottom:38.707379px;}
.y227{bottom:50.137950px;}
.y238{bottom:51.397192px;}
.y5{bottom:66.525004px;}
.y237{bottom:76.687685px;}
.y228{bottom:82.987950px;}
.y236{bottom:89.288365px;}
.y21c{bottom:93.336000px;}
.y109{bottom:94.228500px;}
.y287{bottom:94.558500px;}
.y4{bottom:97.125005px;}
.y235{bottom:101.978178px;}
.yd2{bottom:102.211500px;}
.y41{bottom:102.823500px;}
.y2c0{bottom:103.557000px;}
.y21b{bottom:110.910000px;}
.y286{bottom:111.819000px;}
.y69{bottom:112.908000px;}
.y108{bottom:113.058000px;}
.y234{bottom:114.577758px;}
.y1ee{bottom:114.744000px;}
.y229{bottom:116.017950px;}
.y1ed{bottom:117.474000px;}
.y18e{bottom:119.310000px;}
.y40{bottom:120.711000px;}
.y2bf{bottom:120.817500px;}
.yd1{bottom:121.041000px;}
.y9c{bottom:126.403500px;}
.y233{bottom:127.267571px;}
.y21a{bottom:128.484000px;}
.y285{bottom:129.079500px;}
.y164{bottom:131.446500px;}
.y68{bottom:131.737500px;}
.y1ec{bottom:136.303500px;}
.y107{bottom:136.369500px;}
.y2be{bottom:138.078000px;}
.y18d{bottom:138.139500px;}
.y3f{bottom:138.600000px;}
.y21{bottom:139.264499px;}
.y232{bottom:139.868251px;}
.yd0{bottom:139.870500px;}
.y9b{bottom:145.233000px;}
.y219{bottom:146.058000px;}
.y284{bottom:146.340000px;}
.y22a{bottom:148.957950px;}
.y163{bottom:150.276000px;}
.y139{bottom:150.508500px;}
.y67{bottom:150.567000px;}
.y1eb{bottom:152.403000px;}
.y231{bottom:152.558064px;}
.y1ea{bottom:155.133000px;}
.y2bd{bottom:155.338500px;}
.y1bc{bottom:156.369000px;}
.y3e{bottom:156.487500px;}
.y18c{bottom:156.969000px;}
.ycf{bottom:158.700000px;}
.y283{bottom:163.599000px;}
.y9a{bottom:164.062500px;}
.y138{bottom:169.338000px;}
.y66{bottom:169.396500px;}
.y2bc{bottom:172.599000px;}
.y106{bottom:173.365500px;}
.y1e9{bottom:173.962500px;}
.y3d{bottom:174.375000px;}
.y1bb{bottom:175.198500px;}
.y18b{bottom:175.798500px;}
.yce{bottom:177.529500px;}
.y230{bottom:177.848557px;}
.y282{bottom:180.859500px;}
.y218{bottom:181.564500px;}
.y22b{bottom:181.897950px;}
.y99{bottom:182.892000px;}
.y162{bottom:184.797000px;}
.y137{bottom:188.167500px;}
.y65{bottom:188.226000px;}
.y2bb{bottom:189.858000px;}
.y22f{bottom:190.538370px;}
.y105{bottom:192.208500px;}
.y3c{bottom:192.264000px;}
.y1e8{bottom:192.792000px;}
.y1ba{bottom:194.028000px;}
.y18a{bottom:194.628000px;}
.ycd{bottom:196.359000px;}
.y18{bottom:196.933500px;}
.y281{bottom:198.120000px;}
.y217{bottom:200.394000px;}
.y104{bottom:200.428500px;}
.y98{bottom:201.721500px;}
.y22e{bottom:203.137950px;}
.y136{bottom:206.997000px;}
.y64{bottom:207.055500px;}
.y2ba{bottom:207.118500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3b{bottom:210.151500px;}
.y1e7{bottom:211.621500px;}
.y1b9{bottom:212.857500px;}
.y22c{bottom:214.837950px;}
.ycc{bottom:215.188500px;}
.y280{bottom:215.380500px;}
.y216{bottom:219.223500px;}
.y161{bottom:219.316500px;}
.y97{bottom:220.551000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2b9{bottom:224.379000px;}
.y135{bottom:225.826500px;}
.y63{bottom:225.883500px;}
.y1e6{bottom:227.721000px;}
.y3a{bottom:228.039000px;}
.y189{bottom:228.274500px;}
.y1e5{bottom:230.451000px;}
.y1b8{bottom:231.687000px;}
.y103{bottom:232.288500px;}
.y27f{bottom:232.641000px;}
.ycb{bottom:234.018000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y215{bottom:238.053000px;}
.y96{bottom:239.380500px;}
.y2b8{bottom:241.639500px;}
.y160{bottom:242.629500px;}
.y134{bottom:244.656000px;}
.y62{bottom:244.713000px;}
.y225{bottom:245.437950px;}
.y188{bottom:247.104000px;}
.y102{bottom:248.727000px;}
.y1e4{bottom:249.280500px;}
.y27e{bottom:249.901500px;}
.y1b7{bottom:250.516500px;}
.yca{bottom:252.847500px;}
.y214{bottom:256.882500px;}
.y95{bottom:258.210000px;}
.y2b7{bottom:258.900000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y133{bottom:263.485500px;}
.y61{bottom:263.542500px;}
.y187{bottom:265.933500px;}
.y27d{bottom:267.162000px;}
.y1e3{bottom:268.110000px;}
.y1b6{bottom:269.346000px;}
.yc9{bottom:271.677000px;}
.y101{bottom:272.367000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y213{bottom:275.712000px;}
.y2b6{bottom:276.160500px;}
.y15f{bottom:276.253500px;}
.y94{bottom:277.039500px;}
.yff{bottom:280.587000px;}
.y132{bottom:282.315000px;}
.y60{bottom:282.372000px;}
.y27c{bottom:284.422500px;}
.y186{bottom:284.763000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1e2{bottom:286.939500px;}
.y1b5{bottom:288.175500px;}
.y100{bottom:288.805500px;}
.yc8{bottom:290.506500px;}
.y2b5{bottom:293.421000px;}
.y212{bottom:294.541500px;}
.y15e{bottom:295.083000px;}
.y224{bottom:300.158085px;}
.y93{bottom:300.352500px;}
.y131{bottom:301.144500px;}
.y5f{bottom:301.201500px;}
.y27b{bottom:301.681500px;}
.y185{bottom:303.592500px;}
.y1e1{bottom:305.769000px;}
.y39{bottom:307.299000px;}
.yc7{bottom:309.336000px;}
.y223{bottom:309.787950px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2b4{bottom:310.681500px;}
.yfe{bottom:312.447000px;}
.y211{bottom:313.371000px;}
.y15d{bottom:313.912500px;}
.y27a{bottom:318.942000px;}
.y130{bottom:319.974000px;}
.y5e{bottom:320.031000px;}
.y184{bottom:322.422000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1e0{bottom:324.598500px;}
.y38{bottom:325.186500px;}
.y2b3{bottom:327.940500px;}
.yc6{bottom:328.165500px;}
.y1b4{bottom:328.308000px;}
.yfc{bottom:328.884000px;}
.y210{bottom:332.200500px;}
.y92{bottom:333.975000px;}
.y279{bottom:336.202500px;}
.y12f{bottom:338.803500px;}
.y5d{bottom:338.860500px;}
.y37{bottom:343.074000px;}
.y1df{bottom:343.428000px;}
.y2b2{bottom:345.201000px;}
.yfd{bottom:345.322500px;}
.yc5{bottom:346.995000px;}
.y1b3{bottom:347.152500px;}
.yf{bottom:348.133500px;}
.y15c{bottom:348.433500px;}
.y20f{bottom:351.030000px;}
.y91{bottom:352.804500px;}
.y278{bottom:353.463000px;}
.y183{bottom:357.001500px;}
.y5c{bottom:357.690000px;}
.y36{bottom:360.963000px;}
.y12e{bottom:362.115000px;}
.y1de{bottom:362.257500px;}
.y2b1{bottom:362.461500px;}
.y1b2{bottom:363.591000px;}
.yc4{bottom:365.824500px;}
.yf9{bottom:368.964000px;}
.y20e{bottom:369.859500px;}
.y277{bottom:370.723500px;}
.y90{bottom:371.634000px;}
.y182{bottom:375.831000px;}
.yfb{bottom:377.182500px;}
.y2b0{bottom:379.722000px;}
.y15b{bottom:379.888500px;}
.y1b1{bottom:380.029500px;}
.y5b{bottom:381.003000px;}
.y1dd{bottom:381.087000px;}
.y15a{bottom:382.954500px;}
.yc3{bottom:384.654000px;}
.yf8{bottom:385.402500px;}
.ye{bottom:386.785499px;}
.y276{bottom:387.984000px;}
.y20d{bottom:388.689000px;}
.y8f{bottom:390.463500px;}
.yfa{bottom:393.621000px;}
.y12d{bottom:395.739000px;}
.y1b0{bottom:396.468000px;}
.y2af{bottom:396.982500px;}
.y35{bottom:399.024000px;}
.y181{bottom:399.144000px;}
.y1dc{bottom:399.916500px;}
.y159{bottom:401.784000px;}
.yf7{bottom:401.841000px;}
.yc2{bottom:403.483500px;}
.y275{bottom:405.244500px;}
.y20c{bottom:407.518500px;}
.yd{bottom:408.044999px;}
.y8e{bottom:409.293000px;}
.y2ae{bottom:414.243000px;}
.y12c{bottom:414.568500px;}
.y34{bottom:416.913000px;}
.y1db{bottom:418.746000px;}
.y1af{bottom:420.108000px;}
.y158{bottom:420.613500px;}
.y1ad{bottom:422.080500px;}
.yc1{bottom:422.313000px;}
.y274{bottom:422.505000px;}
.yf6{bottom:425.481000px;}
.y20b{bottom:426.348000px;}
.y8d{bottom:428.122500px;}
.y2ad{bottom:431.503500px;}
.y12b{bottom:433.398000px;}
.y33{bottom:434.800500px;}
.y1da{bottom:437.575500px;}
.y180{bottom:437.634000px;}
.y1ac{bottom:438.519000px;}
.y157{bottom:439.443000px;}
.y273{bottom:439.765500px;}
.yc0{bottom:441.142500px;}
.yf4{bottom:441.919500px;}
.y1ae{bottom:443.749500px;}
.y20a{bottom:445.177500px;}
.y8c{bottom:446.952000px;}
.y2ac{bottom:448.764000px;}
.y5a{bottom:455.346000px;}
.y1d9{bottom:456.405000px;}
.y272{bottom:457.024500px;}
.y156{bottom:458.271000px;}
.yf3{bottom:458.358000px;}
.ybf{bottom:459.972000px;}
.y17f{bottom:460.380000px;}
.y209{bottom:464.007000px;}
.y2ab{bottom:466.024500px;}
.y17e{bottom:467.446500px;}
.y12a{bottom:467.919000px;}
.y8b{bottom:470.265000px;}
.y32{bottom:470.622000px;}
.y271{bottom:474.285000px;}
.yf5{bottom:474.796500px;}
.y1d8{bottom:475.234500px;}
.y1ab{bottom:475.368000px;}
.ybe{bottom:478.801500px;}
.y208{bottom:482.836500px;}
.y2aa{bottom:483.283500px;}
.y31{bottom:488.509500px;}
.y155{bottom:490.903500px;}
.y270{bottom:491.545500px;}
.y59{bottom:492.736500px;}
.y1d7{bottom:494.064000px;}
.ybd{bottom:497.631000px;}
.yf2{bottom:498.436500px;}
.y17d{bottom:500.460000px;}
.y2a9{bottom:500.544000px;}
.y207{bottom:501.666000px;}
.y129{bottom:502.440000px;}
.yc{bottom:502.864502px;}
.y8a{bottom:503.889000px;}
.y154{bottom:503.898000px;}
.y30{bottom:506.397000px;}
.y152{bottom:507.006000px;}
.y26f{bottom:508.806000px;}
.y58{bottom:512.193000px;}
.y1aa{bottom:512.472000px;}
.y1d6{bottom:512.893500px;}
.yf0{bottom:514.875000px;}
.ybc{bottom:516.460500px;}
.y17c{bottom:516.898500px;}
.y2a8{bottom:517.804500px;}
.y206{bottom:520.495500px;}
.yb{bottom:520.864502px;}
.y128{bottom:521.269500px;}
.y89{bottom:522.718500px;}
.y153{bottom:523.144500px;}
.y2f{bottom:524.286000px;}
.y26e{bottom:526.066500px;}
.y1a9{bottom:531.301500px;}
.yf1{bottom:531.313500px;}
.y1d5{bottom:531.723000px;}
.y17b{bottom:533.337000px;}
.y2a7{bottom:535.065000px;}
.ybb{bottom:535.290000px;}
.ya{bottom:538.864499px;}
.y205{bottom:539.323500px;}
.y127{bottom:540.099000px;}
.y88{bottom:541.548000px;}
.y2e{bottom:542.173500px;}
.y26d{bottom:543.327000px;}
.y176{bottom:548.416500px;}
.y57{bottom:549.582000px;}
.y17a{bottom:549.774000px;}
.y1a8{bottom:550.131000px;}
.y1d4{bottom:550.552500px;}
.y151{bottom:551.530500px;}
.y2a6{bottom:552.325500px;}
.yba{bottom:554.118000px;}
.yef{bottom:554.955000px;}
.y9{bottom:556.864499px;}
.y204{bottom:558.153000px;}
.y126{bottom:558.928500px;}
.y2d{bottom:560.061000px;}
.y87{bottom:560.377500px;}
.y26c{bottom:560.587500px;}
.y179{bottom:566.212500px;}
.y1a7{bottom:568.960500px;}
.y56{bottom:569.040000px;}
.y2a5{bottom:569.586000px;}
.y150{bottom:570.360000px;}
.yee{bottom:571.392000px;}
.yb9{bottom:572.947500px;}
.y1d3{bottom:573.864000px;}
.y203{bottom:576.982500px;}
.y26b{bottom:577.848000px;}
.y2c{bottom:577.950000px;}
.y86{bottom:579.207000px;}
.y178{bottom:582.651000px;}
.y2a4{bottom:586.846500px;}
.y1a6{bottom:587.790000px;}
.yeb{bottom:587.830500px;}
.y55{bottom:588.496500px;}
.y14f{bottom:589.189500px;}
.yb8{bottom:591.777000px;}
.y26a{bottom:595.107000px;}
.y202{bottom:595.812000px;}
.y2b{bottom:595.837500px;}
.y125{bottom:597.334500px;}
.y85{bottom:598.036500px;}
.y177{bottom:599.089500px;}
.y2a3{bottom:604.107000px;}
.yed{bottom:604.269000px;}
.y1a5{bottom:606.619500px;}
.y54{bottom:607.954500px;}
.yb7{bottom:610.606500px;}
.y1d2{bottom:612.354000px;}
.y269{bottom:612.367500px;}
.y14e{bottom:612.502500px;}
.y201{bottom:614.641500px;}
.y84{bottom:616.866000px;}
.y28{bottom:618.208464px;}
.y122{bottom:620.080500px;}
.yec{bottom:620.707500px;}
.y2a2{bottom:621.366000px;}
.y175{bottom:622.731000px;}
.y1a4{bottom:625.449000px;}
.y53{bottom:627.411000px;}
.y124{bottom:628.300500px;}
.yb6{bottom:629.436000px;}
.y268{bottom:629.628000px;}
.y200{bottom:633.471000px;}
.y1d1{bottom:635.101500px;}
.y83{bottom:635.695500px;}
.y121{bottom:636.519000px;}
.y2a1{bottom:638.626500px;}
.y1a3{bottom:644.278500px;}
.yea{bottom:644.349000px;}
.y11e{bottom:644.739000px;}
.y8{bottom:645.510000px;}
.y14d{bottom:646.126500px;}
.y52{bottom:646.867500px;}
.y267{bottom:646.888500px;}
.yb5{bottom:648.265500px;}
.y1d0{bottom:651.540000px;}
.y1ff{bottom:652.300500px;}
.y120{bottom:652.957500px;}
.y174{bottom:654.349500px;}
.y82{bottom:654.525000px;}
.y2a0{bottom:655.887000px;}
.ye9{bottom:660.787500px;}
.y123{bottom:661.177500px;}
.y1a2{bottom:663.108000px;}
.y14c{bottom:664.956000px;}
.y51{bottom:666.325500px;}
.y7{bottom:666.771000px;}
.yb4{bottom:667.095000px;}
.y1cf{bottom:667.978500px;}
.y266{bottom:668.632500px;}
.ye6{bottom:669.006000px;}
.y11f{bottom:669.396000px;}
.y1fe{bottom:671.130000px;}
.y29f{bottom:673.147500px;}
.y81{bottom:673.354500px;}
.ye8{bottom:677.224500px;}
.y1a1{bottom:681.937500px;}
.y1ce{bottom:684.415500px;}
.y50{bottom:685.782000px;}
.yb3{bottom:685.924500px;}
.y173{bottom:689.959500px;}
.y29e{bottom:690.408000px;}
.y80{bottom:692.184000px;}
.y11d{bottom:693.037500px;}
.ye7{bottom:693.663000px;}
.y1a0{bottom:700.767000px;}
.y1cd{bottom:700.854000px;}
.y265{bottom:702.198000px;}
.yb2{bottom:704.754000px;}
.y4f{bottom:705.238500px;}
.y14b{bottom:706.582500px;}
.y29d{bottom:707.668500px;}
.y172{bottom:708.789000px;}
.y11a{bottom:709.476000px;}
.y7f{bottom:715.495500px;}
.y1cc{bottom:717.292500px;}
.ye5{bottom:717.304500px;}
.y119{bottom:717.694500px;}
.y19f{bottom:719.596500px;}
.yb1{bottom:723.583500px;}
.y222{bottom:724.627500px;}
.y4e{bottom:724.696500px;}
.y29c{bottom:724.929000px;}
.ye4{bottom:725.523000px;}
.y11c{bottom:725.913000px;}
.y6{bottom:726.298500px;}
.y171{bottom:727.618500px;}
.y14a{bottom:729.330000px;}
.y1cb{bottom:733.731000px;}
.y19e{bottom:738.426000px;}
.y29b{bottom:742.189500px;}
.y11b{bottom:742.351500px;}
.yb0{bottom:742.413000px;}
.y4d{bottom:744.153000px;}
.y149{bottom:745.768500px;}
.y170{bottom:746.448000px;}
.y7e{bottom:749.119500px;}
.y1ca{bottom:750.169500px;}
.y3{bottom:752.599495px;}
.ye3{bottom:757.383000px;}
.y29a{bottom:759.450000px;}
.yaf{bottom:761.242500px;}
.y19d{bottom:761.739000px;}
.y148{bottom:762.207000px;}
.y4c{bottom:763.611000px;}
.y16f{bottom:765.277500px;}
.y117{bottom:765.993000px;}
.y1c9{bottom:766.608000px;}
.y7d{bottom:767.949000px;}
.y299{bottom:776.709000px;}
.yae{bottom:780.072000px;}
.y116{bottom:782.431500px;}
.y4b{bottom:783.067500px;}
.y1fd{bottom:784.107000px;}
.y147{bottom:785.847000px;}
.ye2{bottom:789.003000px;}
.y1c8{bottom:790.248000px;}
.y113{bottom:790.650000px;}
.y7c{bottom:791.262000px;}
.y298{bottom:793.969500px;}
.y19c{bottom:795.363000px;}
.y112{bottom:798.870000px;}
.yad{bottom:798.901500px;}
.y16e{bottom:799.798500px;}
.y1fc{bottom:802.936500px;}
.y118{bottom:807.088500px;}
.y146{bottom:809.488500px;}
.y297{bottom:811.230000px;}
.y19b{bottom:814.192500px;}
.y115{bottom:815.308500px;}
.yac{bottom:817.731000px;}
.y4a{bottom:821.653500px;}
.y1fb{bottom:821.766000px;}
.y1c7{bottom:821.868000px;}
.ye1{bottom:822.214500px;}
.y7b{bottom:824.886000px;}
.y296{bottom:828.490500px;}
.y114{bottom:831.745500px;}
.y16d{bottom:834.318000px;}
.yab{bottom:836.560500px;}
.y49{bottom:837.792000px;}
.y1fa{bottom:840.595500px;}
.ye0{bottom:841.044000px;}
.y145{bottom:841.108500px;}
.y7a{bottom:843.715500px;}
.y295{bottom:845.751000px;}
.y19a{bottom:851.211000px;}
.y16c{bottom:853.147500px;}
.y1c6{bottom:853.585500px;}
.y111{bottom:855.387000px;}
.yaa{bottom:855.390000px;}
.y48{bottom:858.271500px;}
.y1f9{bottom:859.425000px;}
.ydf{bottom:859.873500px;}
.y79{bottom:862.545000px;}
.y294{bottom:863.011500px;}
.y199{bottom:870.055500px;}
.y47{bottom:870.072000px;}
.y10d{bottom:871.825500px;}
.y1c5{bottom:872.415000px;}
.ya9{bottom:874.219500px;}
.y144{bottom:876.717000px;}
.y1f8{bottom:878.254500px;}
.yde{bottom:878.703000px;}
.y2{bottom:879.369000px;}
.y10c{bottom:880.044000px;}
.y293{bottom:880.272000px;}
.y78{bottom:881.374500px;}
.y16b{bottom:881.392500px;}
.y198{bottom:886.492500px;}
.y110{bottom:888.264000px;}
.y46{bottom:890.551500px;}
.y1c4{bottom:891.244500px;}
.ya8{bottom:893.049000px;}
.y143{bottom:895.546500px;}
.y1f7{bottom:897.084000px;}
.ydd{bottom:897.532500px;}
.y77{bottom:900.204000px;}
.y10f{bottom:902.079000px;}
.y45{bottom:902.350500px;}
.y197{bottom:902.931000px;}
.y10e{bottom:904.702500px;}
.y16a{bottom:909.636000px;}
.y1c3{bottom:910.074000px;}
.ya7{bottom:911.878500px;}
.y142{bottom:914.376000px;}
.y292{bottom:914.793000px;}
.y1f6{bottom:915.913500px;}
.ydc{bottom:916.362000px;}
.y76{bottom:919.033500px;}
.y196{bottom:919.369500px;}
.y44{bottom:922.830000px;}
.y10b{bottom:928.342500px;}
.y169{bottom:928.465500px;}
.y1c2{bottom:928.903500px;}
.ya6{bottom:930.708000px;}
.y291{bottom:932.052000px;}
.y141{bottom:933.205500px;}
.y43{bottom:934.629000px;}
.y1f5{bottom:934.743000px;}
.ydb{bottom:935.191500px;}
.y195{bottom:935.808000px;}
.y75{bottom:937.863000px;}
.y1c1{bottom:947.733000px;}
.y290{bottom:949.312500px;}
.ya5{bottom:949.537500px;}
.y194{bottom:952.246500px;}
.y1f4{bottom:953.572500px;}
.yda{bottom:954.021000px;}
.y42{bottom:955.108500px;}
.y74{bottom:956.692500px;}
.y168{bottom:956.710500px;}
.y10a{bottom:959.962500px;}
.y28f{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.ya4{bottom:968.367000px;}
.y193{bottom:968.685000px;}
.y140{bottom:971.611500px;}
.y1f3{bottom:972.402000px;}
.yd9{bottom:972.849000px;}
.y73{bottom:975.522000px;}
.y167{bottom:975.540000px;}
.y221{bottom:979.665000px;}
.y28e{bottom:983.833500px;}
.y1c0{bottom:984.751500px;}
.y192{bottom:985.123500px;}
.ya3{bottom:987.196500px;}
.y1f2{bottom:991.231500px;}
.yd8{bottom:991.678500px;}
.y72{bottom:994.351500px;}
.y13f{bottom:994.359000px;}
.y27{bottom:995.302500px;}
.y166{bottom:998.851500px;}
.y28d{bottom:1001.094000px;}
.y191{bottom:1001.562000px;}
.y1bf{bottom:1003.594500px;}
.ya2{bottom:1006.026000px;}
.y1f1{bottom:1010.061000px;}
.yd7{bottom:1010.508000px;}
.y13e{bottom:1010.797500px;}
.y71{bottom:1013.181000px;}
.y220{bottom:1016.427000px;}
.y190{bottom:1018.000500px;}
.y28c{bottom:1018.354500px;}
.y1be{bottom:1019.410500px;}
.ya1{bottom:1024.855500px;}
.y13d{bottom:1027.236000px;}
.y1f0{bottom:1028.890500px;}
.yd6{bottom:1029.337500px;}
.y70{bottom:1032.010500px;}
.y165{bottom:1032.477000px;}
.y18f{bottom:1034.439000px;}
.y28b{bottom:1035.615000px;}
.y26{bottom:1041.199500px;}
.y21f{bottom:1042.966500px;}
.ya0{bottom:1043.685000px;}
.yd5{bottom:1048.167000px;}
.y6f{bottom:1050.840000px;}
.y13c{bottom:1050.876000px;}
.y1ef{bottom:1052.202000px;}
.y28a{bottom:1052.875500px;}
.y21e{bottom:1060.540500px;}
.y9f{bottom:1062.513000px;}
.y1bd{bottom:1066.692000px;}
.yd4{bottom:1066.996500px;}
.y25{bottom:1069.443000px;}
.y6e{bottom:1069.669500px;}
.y289{bottom:1070.134500px;}
.y13b{bottom:1074.517500px;}
.y21d{bottom:1078.116000px;}
.y9e{bottom:1081.342500px;}
.yd3{bottom:1085.826000px;}
.y288{bottom:1087.395000px;}
.y6d{bottom:1088.499000px;}
.y24{bottom:1097.688000px;}
.y9d{bottom:1104.655500px;}
.y13a{bottom:1106.137500px;}
.y6c{bottom:1107.327000px;}
.y22{bottom:1141.174500px;}
.y6b{bottom:1173.397500px;}
.h21{height:16.817382px;}
.he{height:25.508090px;}
.h13{height:26.110157px;}
.h28{height:26.671977px;}
.h11{height:30.461558px;}
.h12{height:30.670772px;}
.h29{height:32.066344px;}
.h7{height:32.130000px;}
.h23{height:33.072749px;}
.h10{height:33.112997px;}
.h1c{height:33.299897px;}
.hf{height:34.199443px;}
.h14{height:34.813397px;}
.h26{height:34.998223px;}
.h19{height:35.052500px;}
.h25{height:35.255391px;}
.h15{height:38.896243px;}
.h16{height:39.165235px;}
.h1f{height:39.434227px;}
.h2c{height:39.471680px;}
.h2b{height:39.761719px;}
.h1e{height:42.500452px;}
.h17{height:43.217759px;}
.h18{height:43.516637px;}
.hb{height:43.815515px;}
.h2a{height:43.945137px;}
.h27{height:44.268047px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.930649px;}
.hd{height:54.541601px;}
.h2{height:55.080000px;}
.h1d{height:65.024177px;}
.h22{height:70.198243px;}
.h1b{height:72.039235px;}
.h1a{height:72.045235px;}
.h20{height:76.922227px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.ha{height:87.128261px;}
.h4{height:119.055004px;}
.h24{height:225.478500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w6{width:707.010300px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x7e{left:-38.675700px;}
.x85{left:-6.815700px;}
.x0{left:0.000000px;}
.x80{left:3.804300px;}
.x7f{left:11.544300px;}
.x81{left:18.024300px;}
.x7{left:29.274117px;}
.x5{left:54.000000px;}
.x6{left:58.056593px;}
.x55{left:68.866500px;}
.x70{left:72.300000px;}
.x5b{left:79.740000px;}
.x28{left:82.137000px;}
.x14{left:85.129500px;}
.x54{left:87.097500px;}
.x37{left:91.456500px;}
.x7d{left:92.951700px;}
.x15{left:96.198000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x36{left:110.259000px;}
.x71{left:112.123500px;}
.x33{left:113.533500px;}
.x32{left:114.765000px;}
.x84{left:166.524300px;}
.x72{left:191.259000px;}
.x31{left:194.473500px;}
.x5a{left:197.425500px;}
.x58{left:200.344500px;}
.x59{left:201.481500px;}
.x4{left:203.484001px;}
.x57{left:206.397000px;}
.x34{left:209.205000px;}
.x56{left:211.158000px;}
.x3a{left:226.179000px;}
.x13{left:238.555500px;}
.xa{left:249.832500px;}
.x8{left:250.897500px;}
.x39{left:254.634000px;}
.x10{left:259.863000px;}
.x6c{left:264.582000px;}
.x69{left:269.847000px;}
.x9{left:271.221000px;}
.x60{left:272.344500px;}
.x6d{left:274.542000px;}
.x63{left:280.480500px;}
.xd{left:282.786000px;}
.x5f{left:285.016500px;}
.x47{left:290.244000px;}
.x64{left:292.771500px;}
.x68{left:297.090000px;}
.x22{left:303.132000px;}
.x2f{left:306.235500px;}
.xb{left:309.436500px;}
.x1c{left:312.291000px;}
.x5d{left:315.127500px;}
.x5e{left:316.891500px;}
.xc{left:321.186000px;}
.x5c{left:326.157000px;}
.x4c{left:327.318000px;}
.x16{left:331.342500px;}
.x41{left:335.187000px;}
.x30{left:346.077000px;}
.x42{left:350.907000px;}
.x3f{left:353.112000px;}
.x2d{left:354.964500px;}
.x38{left:359.698500px;}
.x2e{left:369.586500px;}
.x4d{left:372.444000px;}
.x4e{left:379.476000px;}
.x12{left:381.505500px;}
.x7b{left:391.990500px;}
.x67{left:393.805500px;}
.x48{left:399.823500px;}
.x73{left:407.047500px;}
.x6b{left:410.005500px;}
.x75{left:411.969000px;}
.x74{left:413.473500px;}
.x76{left:424.260000px;}
.x7c{left:429.754500px;}
.xe{left:439.323000px;}
.x65{left:441.703500px;}
.x61{left:450.639000px;}
.x6a{left:453.562500px;}
.x3{left:454.959000px;}
.xf{left:456.492000px;}
.x1d{left:457.927500px;}
.x1e{left:459.766500px;}
.x19{left:461.494500px;}
.x62{left:462.930000px;}
.x29{left:464.257500px;}
.x23{left:465.394500px;}
.x17{left:466.572000px;}
.x18{left:472.549500px;}
.x1a{left:479.098500px;}
.x46{left:481.504500px;}
.x24{left:484.593000px;}
.x50{left:486.039000px;}
.x53{left:488.278500px;}
.x4f{left:491.475000px;}
.x51{left:493.381500px;}
.x52{left:494.539500px;}
.x25{left:505.285500px;}
.x66{left:507.171000px;}
.x1f{left:509.413500px;}
.x82{left:520.674300px;}
.x49{left:524.842500px;}
.x3d{left:529.126500px;}
.x3c{left:531.312000px;}
.x35{left:532.392000px;}
.x3b{left:535.237500px;}
.x6f{left:539.250000px;}
.x6e{left:542.611500px;}
.x3e{left:552.739500px;}
.x11{left:553.872000px;}
.x77{left:576.036000px;}
.x44{left:578.446500px;}
.x78{left:582.462000px;}
.x45{left:586.081500px;}
.x4a{left:594.174000px;}
.x79{left:603.354000px;}
.x7a{left:609.780000px;}
.x4b{left:639.820500px;}
.x43{left:642.198000px;}
.x20{left:659.422500px;}
.x2b{left:662.422500px;}
.x26{left:663.888000px;}
.x2a{left:672.126000px;}
.x27{left:675.051000px;}
.x40{left:686.064000px;}
.x21{left:693.477000px;}
.x1b{left:694.500000px;}
.x2c{left:702.663000px;}
.x83{left:704.094150px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-10.453333pt;}
.v4{vertical-align:-9.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.453333pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:27.824000pt;}
.v3{vertical-align:29.226667pt;}
.v7{vertical-align:33.322667pt;}
.ls83{letter-spacing:-2.597922pt;}
.ls99{letter-spacing:-1.752000pt;}
.ls7f{letter-spacing:-1.557188pt;}
.ls9b{letter-spacing:-1.344000pt;}
.ls97{letter-spacing:-1.320000pt;}
.ls96{letter-spacing:-1.296000pt;}
.ls98{letter-spacing:-1.281600pt;}
.ls9c{letter-spacing:-1.252800pt;}
.ls9a{letter-spacing:-1.233600pt;}
.ls95{letter-spacing:-0.206400pt;}
.ls9e{letter-spacing:-0.182400pt;}
.ls92{letter-spacing:-0.105600pt;}
.ls7a{letter-spacing:-0.080864pt;}
.ls91{letter-spacing:-0.067200pt;}
.ls9d{letter-spacing:-0.062400pt;}
.ls88{letter-spacing:-0.057600pt;}
.ls90{letter-spacing:-0.052800pt;}
.ls93{letter-spacing:-0.048000pt;}
.ls87{letter-spacing:-0.043200pt;}
.ls8d{letter-spacing:-0.038400pt;}
.ls94{letter-spacing:-0.033600pt;}
.ls8b{letter-spacing:-0.024000pt;}
.ls8c{letter-spacing:-0.019200pt;}
.ls8a{letter-spacing:-0.014400pt;}
.ls89{letter-spacing:-0.009600pt;}
.ls7b{letter-spacing:-0.005344pt;}
.ls8e{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.000015pt;}
.ls60{letter-spacing:0.000230pt;}
.lsd{letter-spacing:0.000503pt;}
.ls55{letter-spacing:0.000518pt;}
.ls14{letter-spacing:0.000544pt;}
.ls58{letter-spacing:0.001007pt;}
.ls2c{letter-spacing:0.001630pt;}
.lsa{letter-spacing:0.001714pt;}
.lsa0{letter-spacing:0.002327pt;}
.ls48{letter-spacing:0.002422pt;}
.ls56{letter-spacing:0.002926pt;}
.ls5f{letter-spacing:0.003635pt;}
.ls13{letter-spacing:0.004147pt;}
.ls21{letter-spacing:0.004579pt;}
.ls74{letter-spacing:0.004800pt;}
.ls69{letter-spacing:0.005344pt;}
.ls6e{letter-spacing:0.009600pt;}
.ls6b{letter-spacing:0.014400pt;}
.ls61{letter-spacing:0.017024pt;}
.ls6a{letter-spacing:0.019200pt;}
.ls70{letter-spacing:0.024000pt;}
.ls75{letter-spacing:0.028800pt;}
.ls63{letter-spacing:0.029792pt;}
.ls67{letter-spacing:0.033600pt;}
.ls81{letter-spacing:0.035213pt;}
.ls78{letter-spacing:0.038400pt;}
.ls85{letter-spacing:0.043038pt;}
.ls72{letter-spacing:0.043200pt;}
.ls71{letter-spacing:0.048000pt;}
.ls68{letter-spacing:0.052800pt;}
.ls6c{letter-spacing:0.057600pt;}
.ls7e{letter-spacing:0.071596pt;}
.ls76{letter-spacing:0.072000pt;}
.ls77{letter-spacing:0.080000pt;}
.ls6f{letter-spacing:0.100800pt;}
.ls6d{letter-spacing:0.110400pt;}
.ls8f{letter-spacing:0.139200pt;}
.ls79{letter-spacing:0.148800pt;}
.ls64{letter-spacing:0.153216pt;}
.ls62{letter-spacing:0.161728pt;}
.ls82{letter-spacing:0.277790pt;}
.ls66{letter-spacing:0.281702pt;}
.ls86{letter-spacing:0.289527pt;}
.ls32{letter-spacing:0.291733pt;}
.ls84{letter-spacing:0.293440pt;}
.ls7d{letter-spacing:0.296146pt;}
.ls80{letter-spacing:0.313003pt;}
.ls9f{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.421044pt;}
.ls1b{letter-spacing:0.487835pt;}
.ls57{letter-spacing:0.570745pt;}
.ls16{letter-spacing:0.576078pt;}
.ls1d{letter-spacing:0.634682pt;}
.ls59{letter-spacing:0.637762pt;}
.ls2b{letter-spacing:0.643096pt;}
.ls4d{letter-spacing:0.659985pt;}
.ls27{letter-spacing:0.661666pt;}
.ls31{letter-spacing:0.662778pt;}
.ls2a{letter-spacing:0.663756pt;}
.ls47{letter-spacing:0.665067pt;}
.ls25{letter-spacing:0.665318pt;}
.ls26{letter-spacing:0.666999pt;}
.ls36{letter-spacing:0.668111pt;}
.ls65{letter-spacing:0.761517pt;}
.ls18{letter-spacing:0.889318pt;}
.ls5d{letter-spacing:0.955042pt;}
.ls2f{letter-spacing:0.955356pt;}
.ls2d{letter-spacing:0.958652pt;}
.ls7c{letter-spacing:0.989321pt;}
.ls1a{letter-spacing:1.009862pt;}
.ls33{letter-spacing:1.036785pt;}
.ls7{letter-spacing:1.133683pt;}
.ls3d{letter-spacing:1.298517pt;}
.ls39{letter-spacing:1.324111pt;}
.ls40{letter-spacing:1.404476pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1c{letter-spacing:2.230778pt;}
.ls29{letter-spacing:2.656508pt;}
.ls10{letter-spacing:2.656533pt;}
.ls1f{letter-spacing:3.274999pt;}
.ls28{letter-spacing:3.317841pt;}
.ls73{letter-spacing:5.200000pt;}
.ls37{letter-spacing:9.516533pt;}
.ls34{letter-spacing:9.521867pt;}
.ls51{letter-spacing:10.578502pt;}
.ls4a{letter-spacing:10.583835pt;}
.ls49{letter-spacing:10.597841pt;}
.ls6{letter-spacing:10.626533pt;}
.ls3a{letter-spacing:11.629762pt;}
.ls1e{letter-spacing:11.635096pt;}
.ls35{letter-spacing:11.655756pt;}
.ls38{letter-spacing:11.661089pt;}
.ls2e{letter-spacing:12.028785pt;}
.ls5c{letter-spacing:12.273923pt;}
.ls30{letter-spacing:12.963096pt;}
.ls5e{letter-spacing:13.017797pt;}
.ls20{letter-spacing:13.280733pt;}
.ls54{letter-spacing:13.282118pt;}
.ls52{letter-spacing:13.282422pt;}
.ls12{letter-spacing:13.283230pt;}
.ls23{letter-spacing:13.283445pt;}
.lsf{letter-spacing:13.283467pt;}
.ls11{letter-spacing:13.283543pt;}
.ls45{letter-spacing:13.300929pt;}
.lsb{letter-spacing:13.336601pt;}
.ls42{letter-spacing:13.525195pt;}
.ls44{letter-spacing:13.528014pt;}
.ls3e{letter-spacing:13.529690pt;}
.ls3c{letter-spacing:13.530566pt;}
.ls43{letter-spacing:13.532372pt;}
.ls3f{letter-spacing:13.533973pt;}
.ls41{letter-spacing:13.535116pt;}
.ls8{letter-spacing:13.602270pt;}
.ls5b{letter-spacing:13.917762pt;}
.ls5a{letter-spacing:13.923096pt;}
.ls46{letter-spacing:13.944877pt;}
.ls4c{letter-spacing:13.950210pt;}
.ls19{letter-spacing:14.437841pt;}
.ls24{letter-spacing:14.554854pt;}
.ls53{letter-spacing:14.559207pt;}
.ls22{letter-spacing:14.659188pt;}
.ls4f{letter-spacing:15.278210pt;}
.ls4b{letter-spacing:15.937067pt;}
.ls4e{letter-spacing:15.941841pt;}
.ls2{letter-spacing:15.942400pt;}
.ls17{letter-spacing:16.061762pt;}
.ls9{letter-spacing:16.312097pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.lsc{letter-spacing:268.659900pt;}
.ls3b{letter-spacing:299.981089pt;}
.lse{letter-spacing:736.538607pt;}
.ws49{word-spacing:-13.283467pt;}
.wsd1{word-spacing:-12.043200pt;}
.wsd0{word-spacing:-12.033600pt;}
.wsce{word-spacing:-12.024000pt;}
.wscd{word-spacing:-12.019200pt;}
.wscf{word-spacing:-11.985600pt;}
.ws5e{word-spacing:-11.955200pt;}
.wsc6{word-spacing:-10.801728pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wscc{word-spacing:-9.808601pt;}
.ws12{word-spacing:-9.298400pt;}
.ws7d{word-spacing:-3.134898pt;}
.ws85{word-spacing:-3.081764pt;}
.wsa1{word-spacing:-2.922363pt;}
.wsf8{word-spacing:-2.395200pt;}
.ws3e{word-spacing:-2.391024pt;}
.wsf7{word-spacing:-2.131200pt;}
.wsc3{word-spacing:-2.104115pt;}
.wsf6{word-spacing:-2.054400pt;}
.ws90{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.696326pt;}
.ws59{word-spacing:-1.647150pt;}
.ws83{word-spacing:-1.624543pt;}
.ws76{word-spacing:-1.594016pt;}
.ws77{word-spacing:-1.540882pt;}
.wsd8{word-spacing:-1.386803pt;}
.ws4f{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws1e{word-spacing:-1.168945pt;}
.ws13f{word-spacing:-1.147699pt;}
.ws30{word-spacing:-1.115811pt;}
.ws99{word-spacing:-1.062677pt;}
.ws58{word-spacing:-1.009543pt;}
.ws5c{word-spacing:-0.903276pt;}
.ws37{word-spacing:-0.690740pt;}
.ws78{word-spacing:-0.584473pt;}
.wsa4{word-spacing:-0.531339pt;}
.ws103{word-spacing:-0.504000pt;}
.ws105{word-spacing:-0.489600pt;}
.ws104{word-spacing:-0.484800pt;}
.wsa3{word-spacing:-0.478205pt;}
.ws6a{word-spacing:-0.425071pt;}
.wsbe{word-spacing:-0.371937pt;}
.ws2e{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.265669pt;}
.wsc2{word-spacing:-0.239104pt;}
.wsdc{word-spacing:-0.235136pt;}
.ws10b{word-spacing:-0.230400pt;}
.ws26{word-spacing:-0.212535pt;}
.ws118{word-spacing:-0.206400pt;}
.ws14{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws114{word-spacing:-0.115200pt;}
.wsda{word-spacing:-0.110656pt;}
.ws28{word-spacing:-0.106268pt;}
.ws119{word-spacing:-0.096000pt;}
.ws5f{word-spacing:-0.095642pt;}
.ws67{word-spacing:-0.083368pt;}
.ws20{word-spacing:-0.053134pt;}
.wsc1{word-spacing:-0.047821pt;}
.wsd2{word-spacing:-0.008269pt;}
.ws62{word-spacing:-0.005897pt;}
.ws137{word-spacing:-0.004847pt;}
.ws142{word-spacing:-0.004471pt;}
.ws13c{word-spacing:-0.004275pt;}
.ws13a{word-spacing:-0.003465pt;}
.ws63{word-spacing:-0.002971pt;}
.ws1{word-spacing:-0.002646pt;}
.ws7f{word-spacing:-0.002567pt;}
.ws64{word-spacing:-0.002148pt;}
.ws8f{word-spacing:-0.001770pt;}
.ws136{word-spacing:-0.000691pt;}
.ws92{word-spacing:-0.000418pt;}
.ws29{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:0.000561pt;}
.ws65{word-spacing:0.001052pt;}
.ws8e{word-spacing:0.001266pt;}
.ws7c{word-spacing:0.001810pt;}
.ws61{word-spacing:0.002348pt;}
.ws60{word-spacing:0.047821pt;}
.wse3{word-spacing:0.048000pt;}
.ws34{word-spacing:0.053134pt;}
.ws87{word-spacing:0.094486pt;}
.ws13{word-spacing:0.095642pt;}
.wse2{word-spacing:0.100800pt;}
.wsde{word-spacing:0.105600pt;}
.ws2b{word-spacing:0.106268pt;}
.ws125{word-spacing:0.110400pt;}
.wsed{word-spacing:0.115200pt;}
.ws12d{word-spacing:0.120000pt;}
.wsdd{word-spacing:0.124800pt;}
.ws108{word-spacing:0.129600pt;}
.wse8{word-spacing:0.134400pt;}
.wsee{word-spacing:0.139200pt;}
.ws15{word-spacing:0.143462pt;}
.ws120{word-spacing:0.148800pt;}
.wse4{word-spacing:0.158400pt;}
.ws22{word-spacing:0.159402pt;}
.ws110{word-spacing:0.168000pt;}
.wsf4{word-spacing:0.177600pt;}
.wsf3{word-spacing:0.182400pt;}
.ws8{word-spacing:0.185968pt;}
.wsd3{word-spacing:0.191283pt;}
.wsf5{word-spacing:0.196800pt;}
.ws10c{word-spacing:0.206400pt;}
.ws102{word-spacing:0.211200pt;}
.ws23{word-spacing:0.212535pt;}
.ws126{word-spacing:0.216000pt;}
.ws131{word-spacing:0.220800pt;}
.ws11d{word-spacing:0.225600pt;}
.ws84{word-spacing:0.230583pt;}
.ws1c{word-spacing:0.239104pt;}
.ws86{word-spacing:0.248181pt;}
.wsa{word-spacing:0.260355pt;}
.ws4b{word-spacing:0.265669pt;}
.ws141{word-spacing:0.286925pt;}
.ws55{word-spacing:0.318803pt;}
.ws21{word-spacing:0.371937pt;}
.wsc5{word-spacing:0.382566pt;}
.wsa8{word-spacing:0.478205pt;}
.ws8b{word-spacing:0.505879pt;}
.ws3d{word-spacing:0.531339pt;}
.ws132{word-spacing:0.573850pt;}
.ws5b{word-spacing:0.584473pt;}
.ws98{word-spacing:0.664022pt;}
.ws50{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.743874pt;}
.wsea{word-spacing:0.753600pt;}
.wsec{word-spacing:0.782400pt;}
.wsad{word-spacing:0.797008pt;}
.wse9{word-spacing:0.811200pt;}
.wseb{word-spacing:0.816000pt;}
.ws5a{word-spacing:0.850142pt;}
.ws33{word-spacing:0.903276pt;}
.ws68{word-spacing:0.956410pt;}
.ws1b{word-spacing:1.004237pt;}
.wsb8{word-spacing:1.009543pt;}
.ws11c{word-spacing:1.089600pt;}
.ws13e{word-spacing:1.099878pt;}
.ws11a{word-spacing:1.104000pt;}
.ws54{word-spacing:1.115811pt;}
.ws134{word-spacing:1.147699pt;}
.ws4a{word-spacing:1.168945pt;}
.ws11b{word-spacing:1.180800pt;}
.ws45{word-spacing:1.222079pt;}
.ws43{word-spacing:1.275213pt;}
.ws44{word-spacing:1.328347pt;}
.ws32{word-spacing:1.594016pt;}
.ws3b{word-spacing:1.647150pt;}
.wsd4{word-spacing:1.673728pt;}
.wsb3{word-spacing:1.700284pt;}
.ws10a{word-spacing:1.747200pt;}
.ws53{word-spacing:1.753418pt;}
.ws109{word-spacing:1.766400pt;}
.ws9{word-spacing:1.785293pt;}
.ws74{word-spacing:1.806551pt;}
.ws13b{word-spacing:1.817190pt;}
.ws25{word-spacing:1.859685pt;}
.wsa9{word-spacing:1.912819pt;}
.ws2c{word-spacing:1.965953pt;}
.wsfa{word-spacing:1.968000pt;}
.wse7{word-spacing:1.977600pt;}
.ws18{word-spacing:2.008474pt;}
.ws35{word-spacing:2.019087pt;}
.ws12a{word-spacing:2.025600pt;}
.wsf9{word-spacing:2.044800pt;}
.wsdf{word-spacing:2.059200pt;}
.wse1{word-spacing:2.064000pt;}
.wse5{word-spacing:2.068800pt;}
.ws12c{word-spacing:2.073600pt;}
.ws128{word-spacing:2.083200pt;}
.ws12b{word-spacing:2.092800pt;}
.ws127{word-spacing:2.102400pt;}
.wse0{word-spacing:2.121600pt;}
.ws91{word-spacing:2.125355pt;}
.wse6{word-spacing:2.136000pt;}
.wsb4{word-spacing:2.178489pt;}
.ws129{word-spacing:2.260800pt;}
.ws36{word-spacing:2.284756pt;}
.ws39{word-spacing:2.337890pt;}
.ws38{word-spacing:2.391024pt;}
.ws117{word-spacing:2.400000pt;}
.ws130{word-spacing:2.414400pt;}
.ws46{word-spacing:2.497292pt;}
.ws6c{word-spacing:2.550426pt;}
.wsbf{word-spacing:2.603559pt;}
.ws138{word-spacing:2.725786pt;}
.ws115{word-spacing:2.736000pt;}
.ws116{word-spacing:2.760000pt;}
.ws69{word-spacing:2.762961pt;}
.ws140{word-spacing:2.773606pt;}
.ws82{word-spacing:2.804114pt;}
.wsd6{word-spacing:2.865195pt;}
.wsc4{word-spacing:2.866509pt;}
.wsd7{word-spacing:2.867763pt;}
.ws56{word-spacing:2.869229pt;}
.ws9a{word-spacing:2.869248pt;}
.ws2f{word-spacing:2.922363pt;}
.ws139{word-spacing:2.964890pt;}
.ws122{word-spacing:3.014400pt;}
.ws124{word-spacing:3.024000pt;}
.ws121{word-spacing:3.043200pt;}
.ws123{word-spacing:3.048000pt;}
.ws13d{word-spacing:3.060531pt;}
.ws1d{word-spacing:3.188032pt;}
.wsfe{word-spacing:3.220800pt;}
.wsd5{word-spacing:3.251814pt;}
.ws48{word-spacing:3.294300pt;}
.wsfd{word-spacing:3.302400pt;}
.ws3f{word-spacing:3.347434pt;}
.ws12f{word-spacing:3.350400pt;}
.wsfc{word-spacing:3.355200pt;}
.ws12e{word-spacing:3.374400pt;}
.wsfb{word-spacing:3.384000pt;}
.wsb6{word-spacing:3.400567pt;}
.ws17{word-spacing:3.443098pt;}
.ws6f{word-spacing:3.666237pt;}
.ws10e{word-spacing:3.667200pt;}
.ws10d{word-spacing:3.676800pt;}
.ws10f{word-spacing:3.686400pt;}
.ws41{word-spacing:3.772505pt;}
.ws81{word-spacing:3.878772pt;}
.ws2d{word-spacing:4.038174pt;}
.ws7a{word-spacing:4.061982pt;}
.ws4c{word-spacing:4.144442pt;}
.ws57{word-spacing:4.197575pt;}
.ws133{word-spacing:4.208230pt;}
.ws27{word-spacing:4.250709pt;}
.ws16{word-spacing:4.303872pt;}
.wsa2{word-spacing:4.463245pt;}
.ws52{word-spacing:4.516379pt;}
.wsc0{word-spacing:4.569513pt;}
.wsf2{word-spacing:4.598400pt;}
.wsf1{word-spacing:4.617600pt;}
.wsbc{word-spacing:4.622646pt;}
.wsef{word-spacing:4.641600pt;}
.wsf0{word-spacing:4.656000pt;}
.ws47{word-spacing:4.782048pt;}
.ws3a{word-spacing:4.835182pt;}
.ws113{word-spacing:4.934400pt;}
.ws112{word-spacing:4.977600pt;}
.ws111{word-spacing:4.992000pt;}
.ws4e{word-spacing:5.047717pt;}
.wsb7{word-spacing:5.153985pt;}
.wsbb{word-spacing:5.207119pt;}
.ws107{word-spacing:5.256000pt;}
.ws135{word-spacing:5.308109pt;}
.wsb9{word-spacing:5.313387pt;}
.ws106{word-spacing:5.347200pt;}
.ws6e{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws19{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.ws6d{word-spacing:5.472788pt;}
.ws11e{word-spacing:5.596800pt;}
.ws11f{word-spacing:5.640000pt;}
.ws4d{word-spacing:5.685324pt;}
.ws7e{word-spacing:5.844546pt;}
.wsbd{word-spacing:5.844725pt;}
.ws88{word-spacing:5.845079pt;}
.wsb5{word-spacing:5.897859pt;}
.ws100{word-spacing:5.913600pt;}
.wsff{word-spacing:5.923200pt;}
.ws51{word-spacing:5.950993pt;}
.ws101{word-spacing:5.971200pt;}
.ws31{word-spacing:6.057261pt;}
.ws75{word-spacing:6.110395pt;}
.wsd9{word-spacing:6.264525pt;}
.ws3c{word-spacing:6.694867pt;}
.wsba{word-spacing:6.960537pt;}
.ws40{word-spacing:7.013670pt;}
.wse{word-spacing:7.699075pt;}
.ws79{word-spacing:8.488326pt;}
.ws42{word-spacing:8.660820pt;}
.wsdb{word-spacing:10.325056pt;}
.ws7{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.wsb2{word-spacing:95.641600pt;}
.wsaf{word-spacing:98.510848pt;}
.wsc7{word-spacing:99.069298pt;}
.wsc8{word-spacing:99.287908pt;}
.wsc9{word-spacing:104.522939pt;}
.wsca{word-spacing:108.588262pt;}
.wscb{word-spacing:109.044440pt;}
.ws66{word-spacing:130.178941pt;}
.wsa5{word-spacing:144.370995pt;}
.wsae{word-spacing:150.157312pt;}
.ws9b{word-spacing:177.319526pt;}
.ws93{word-spacing:186.025899pt;}
.ws9d{word-spacing:206.920602pt;}
.wsa7{word-spacing:211.607040pt;}
.ws9f{word-spacing:226.861875pt;}
.ws9e{word-spacing:230.783181pt;}
.wsa6{word-spacing:231.548314pt;}
.wsb0{word-spacing:239.802667pt;}
.wsa0{word-spacing:240.374400pt;}
.wsb1{word-spacing:247.233536pt;}
.ws9c{word-spacing:252.327467pt;}
.ws94{word-spacing:258.614886pt;}
.ws72{word-spacing:274.826138pt;}
.ws95{word-spacing:278.556160pt;}
.ws96{word-spacing:279.799501pt;}
.ws73{word-spacing:318.677811pt;}
.ws71{word-spacing:466.653867pt;}
.wsaa{word-spacing:468.416435pt;}
.wsab{word-spacing:529.519718pt;}
.wsac{word-spacing:541.474918pt;}
.ws70{word-spacing:542.877338pt;}
.ws7b{word-spacing:676.408326pt;}
.ws80{word-spacing:749.876546pt;}
.ws97{word-spacing:758.870554pt;}
.ws8a{word-spacing:766.665879pt;}
.ws89{word-spacing:785.993879pt;}
.ws8c{word-spacing:792.773079pt;}
.ws8d{word-spacing:796.890413pt;}
.ws5d{word-spacing:876.650906pt;}
._18{margin-left:-6.960537pt;}
._4{margin-left:-5.900399pt;}
._9{margin-left:-4.718299pt;}
._14{margin-left:-3.784321pt;}
._8{margin-left:-2.752326pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.667850pt;}
._2d{width:5.634370pt;}
._7{width:11.530016pt;}
._f{width:13.175899pt;}
._a{width:14.278571pt;}
._d{width:15.321097pt;}
._1{width:16.471499pt;}
._c{width:17.626027pt;}
._15{width:18.816115pt;}
._17{width:19.759072pt;}
._5e{width:20.722208pt;}
._e{width:21.738478pt;}
._12{width:22.688161pt;}
._16{width:23.857106pt;}
._13{width:25.876193pt;}
._5f{width:27.111725pt;}
._b{width:28.070810pt;}
._0{width:29.648896pt;}
._42{width:30.551973pt;}
._1a{width:31.677051pt;}
._23{width:33.171823pt;}
._1b{width:34.696415pt;}
._19{width:42.825897pt;}
._3{width:48.362444pt;}
._67{width:50.224091pt;}
._66{width:68.011261pt;}
._65{width:81.582054pt;}
._64{width:96.171564pt;}
._4d{width:100.280218pt;}
._62{width:102.142790pt;}
._5a{width:110.466048pt;}
._4c{width:111.420174pt;}
._63{width:115.458673pt;}
._3c{width:148.295433pt;}
._44{width:149.291334pt;}
._4a{width:150.511198pt;}
._37{width:159.531767pt;}
._22{width:162.016870pt;}
._48{width:165.915127pt;}
._3b{width:169.814153pt;}
._55{width:171.150643pt;}
._51{width:173.972070pt;}
._38{width:182.368683pt;}
._45{width:184.253542pt;}
._3f{width:191.809229pt;}
._33{width:192.903904pt;}
._34{width:200.416973pt;}
._40{width:206.422519pt;}
._49{width:208.259584pt;}
._32{width:217.919386pt;}
._1f{width:225.495381pt;}
._46{width:228.248678pt;}
._50{width:231.190009pt;}
._27{width:233.700250pt;}
._31{width:234.800128pt;}
._56{width:236.746394pt;}
._2f{width:241.226556pt;}
._47{width:243.551334pt;}
._30{width:249.260450pt;}
._3e{width:255.267430pt;}
._5b{width:256.606413pt;}
._57{width:257.897574pt;}
._21{width:262.704461pt;}
._58{width:267.222630pt;}
._36{width:271.148288pt;}
._5d{width:272.570121pt;}
._54{width:276.499866pt;}
._5c{width:277.934490pt;}
._53{width:279.130010pt;}
._59{width:281.281946pt;}
._41{width:283.625165pt;}
._35{width:290.511360pt;}
._52{width:291.945984pt;}
._1c{width:296.268297pt;}
._26{width:298.114867pt;}
._20{width:300.047198pt;}
._28{width:307.041397pt;}
._4f{width:314.134835pt;}
._1d{width:367.215923pt;}
._39{width:372.237107pt;}
._1e{width:423.501005pt;}
._3a{width:430.004634pt;}
._4b{width:436.533894pt;}
._4e{width:443.729203pt;}
._2b{width:504.031232pt;}
._2c{width:511.299994pt;}
._29{width:519.286067pt;}
._2a{width:541.857485pt;}
._43{width:555.534234pt;}
._25{width:588.387123pt;}
._24{width:622.023586pt;}
._10{width:695.035227pt;}
._2e{width:784.407022pt;}
._3d{width:1640.198434pt;}
._61{width:1858.020640pt;}
._60{width:2263.971200pt;}
._11{width:2285.224533pt;}
.fsc{font-size:31.880533pt;}
.fs15{font-size:32.543467pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs16{font-size:39.125333pt;}
.fs8{font-size:40.381867pt;}
.fs9{font-size:41.988267pt;}
.fs12{font-size:42.077867pt;}
.fsd{font-size:42.507200pt;}
.fs13{font-size:42.560000pt;}
.fse{font-size:47.820800pt;}
.fs17{font-size:48.000000pt;}
.fsf{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs14{font-size:53.440000pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:114.229120pt;}
.y264{bottom:-671.192933pt;}
.y263{bottom:-655.832933pt;}
.y262{bottom:-640.392933pt;}
.y261{bottom:-625.032800pt;}
.y260{bottom:-609.672933pt;}
.y25f{bottom:-594.312933pt;}
.y25e{bottom:-578.872933pt;}
.y25d{bottom:-563.512933pt;}
.y25c{bottom:-548.152933pt;}
.y25b{bottom:-532.472933pt;}
.y25a{bottom:-515.673333pt;}
.y259{bottom:-500.313333pt;}
.y258{bottom:-484.872933pt;}
.y257{bottom:-469.512933pt;}
.y256{bottom:-454.152933pt;}
.y255{bottom:-438.792933pt;}
.y254{bottom:-423.353333pt;}
.y253{bottom:-407.993333pt;}
.y252{bottom:-392.633333pt;}
.y251{bottom:-377.273333pt;}
.y250{bottom:-361.832933pt;}
.y24f{bottom:-346.473333pt;}
.y24e{bottom:-331.113333pt;}
.y24d{bottom:-315.753333pt;}
.y24c{bottom:-300.312933pt;}
.y24b{bottom:-284.952933pt;}
.y24a{bottom:-269.592933pt;}
.y249{bottom:-254.233333pt;}
.y248{bottom:-238.792933pt;}
.y247{bottom:-223.432933pt;}
.y246{bottom:-208.072933pt;}
.y245{bottom:-192.712933pt;}
.y244{bottom:-177.272933pt;}
.y243{bottom:-161.912933pt;}
.y242{bottom:-146.552933pt;}
.y241{bottom:-131.192933pt;}
.y240{bottom:-115.752933pt;}
.y23f{bottom:-100.392933pt;}
.y23e{bottom:-85.032933pt;}
.y23d{bottom:-69.672933pt;}
.y23c{bottom:-49.992933pt;}
.y23b{bottom:-17.272800pt;}
.y0{bottom:0.000000pt;}
.y23a{bottom:2.727200pt;}
.y2a{bottom:3.044747pt;}
.y22d{bottom:4.887200pt;}
.y29{bottom:12.578910pt;}
.y23{bottom:14.848190pt;}
.y226{bottom:15.207067pt;}
.y6a{bottom:28.346667pt;}
.y239{bottom:34.406559pt;}
.y227{bottom:44.567067pt;}
.y238{bottom:45.686393pt;}
.y5{bottom:59.133337pt;}
.y237{bottom:68.166831pt;}
.y228{bottom:73.767067pt;}
.y236{bottom:79.367436pt;}
.y21c{bottom:82.965333pt;}
.y109{bottom:83.758667pt;}
.y287{bottom:84.052000pt;}
.y4{bottom:86.333337pt;}
.y235{bottom:90.647269pt;}
.yd2{bottom:90.854667pt;}
.y41{bottom:91.398667pt;}
.y2c0{bottom:92.050667pt;}
.y21b{bottom:98.586667pt;}
.y286{bottom:99.394667pt;}
.y69{bottom:100.362667pt;}
.y108{bottom:100.496000pt;}
.y234{bottom:101.846896pt;}
.y1ee{bottom:101.994667pt;}
.y229{bottom:103.127067pt;}
.y1ed{bottom:104.421333pt;}
.y18e{bottom:106.053333pt;}
.y40{bottom:107.298667pt;}
.y2bf{bottom:107.393333pt;}
.yd1{bottom:107.592000pt;}
.y9c{bottom:112.358667pt;}
.y233{bottom:113.126730pt;}
.y21a{bottom:114.208000pt;}
.y285{bottom:114.737333pt;}
.y164{bottom:116.841333pt;}
.y68{bottom:117.100000pt;}
.y1ec{bottom:121.158667pt;}
.y107{bottom:121.217333pt;}
.y2be{bottom:122.736000pt;}
.y18d{bottom:122.790667pt;}
.y3f{bottom:123.200000pt;}
.y21{bottom:123.790666pt;}
.y232{bottom:124.327334pt;}
.yd0{bottom:124.329333pt;}
.y9b{bottom:129.096000pt;}
.y219{bottom:129.829333pt;}
.y284{bottom:130.080000pt;}
.y22a{bottom:132.407067pt;}
.y163{bottom:133.578667pt;}
.y139{bottom:133.785333pt;}
.y67{bottom:133.837333pt;}
.y1eb{bottom:135.469333pt;}
.y231{bottom:135.607168pt;}
.y1ea{bottom:137.896000pt;}
.y2bd{bottom:138.078667pt;}
.y1bc{bottom:138.994667pt;}
.y3e{bottom:139.100000pt;}
.y18c{bottom:139.528000pt;}
.ycf{bottom:141.066667pt;}
.y283{bottom:145.421333pt;}
.y9a{bottom:145.833333pt;}
.y138{bottom:150.522667pt;}
.y66{bottom:150.574667pt;}
.y2bc{bottom:153.421333pt;}
.y106{bottom:154.102667pt;}
.y1e9{bottom:154.633333pt;}
.y3d{bottom:155.000000pt;}
.y1bb{bottom:155.732000pt;}
.y18b{bottom:156.265333pt;}
.yce{bottom:157.804000pt;}
.y230{bottom:158.087606pt;}
.y282{bottom:160.764000pt;}
.y218{bottom:161.390667pt;}
.y22b{bottom:161.687067pt;}
.y99{bottom:162.570667pt;}
.y162{bottom:164.264000pt;}
.y137{bottom:167.260000pt;}
.y65{bottom:167.312000pt;}
.y2bb{bottom:168.762667pt;}
.y22f{bottom:169.367440pt;}
.y105{bottom:170.852000pt;}
.y3c{bottom:170.901333pt;}
.y1e8{bottom:171.370667pt;}
.y1ba{bottom:172.469333pt;}
.y18a{bottom:173.002667pt;}
.ycd{bottom:174.541333pt;}
.y18{bottom:175.052000pt;}
.y281{bottom:176.106667pt;}
.y217{bottom:178.128000pt;}
.y104{bottom:178.158667pt;}
.y98{bottom:179.308000pt;}
.y22e{bottom:180.567067pt;}
.y136{bottom:183.997333pt;}
.y64{bottom:184.049333pt;}
.y2ba{bottom:184.105333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3b{bottom:186.801333pt;}
.y1e7{bottom:188.108000pt;}
.y1b9{bottom:189.206667pt;}
.y22c{bottom:190.967067pt;}
.ycc{bottom:191.278667pt;}
.y280{bottom:191.449333pt;}
.y216{bottom:194.865333pt;}
.y161{bottom:194.948000pt;}
.y97{bottom:196.045333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2b9{bottom:199.448000pt;}
.y135{bottom:200.734667pt;}
.y63{bottom:200.785333pt;}
.y1e6{bottom:202.418667pt;}
.y3a{bottom:202.701333pt;}
.y189{bottom:202.910667pt;}
.y1e5{bottom:204.845333pt;}
.y1b8{bottom:205.944000pt;}
.y103{bottom:206.478667pt;}
.y27f{bottom:206.792000pt;}
.ycb{bottom:208.016000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y215{bottom:211.602667pt;}
.y96{bottom:212.782667pt;}
.y2b8{bottom:214.790667pt;}
.y160{bottom:215.670667pt;}
.y134{bottom:217.472000pt;}
.y62{bottom:217.522667pt;}
.y225{bottom:218.167067pt;}
.y188{bottom:219.648000pt;}
.y102{bottom:221.090667pt;}
.y1e4{bottom:221.582667pt;}
.y27e{bottom:222.134667pt;}
.y1b7{bottom:222.681333pt;}
.yca{bottom:224.753333pt;}
.y214{bottom:228.340000pt;}
.y95{bottom:229.520000pt;}
.y2b7{bottom:230.133333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y133{bottom:234.209333pt;}
.y61{bottom:234.260000pt;}
.y187{bottom:236.385333pt;}
.y27d{bottom:237.477333pt;}
.y1e3{bottom:238.320000pt;}
.y1b6{bottom:239.418667pt;}
.yc9{bottom:241.490667pt;}
.y101{bottom:242.104000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y213{bottom:245.077333pt;}
.y2b6{bottom:245.476000pt;}
.y15f{bottom:245.558667pt;}
.y94{bottom:246.257333pt;}
.yff{bottom:249.410667pt;}
.y132{bottom:250.946667pt;}
.y60{bottom:250.997333pt;}
.y27c{bottom:252.820000pt;}
.y186{bottom:253.122667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1e2{bottom:255.057333pt;}
.y1b5{bottom:256.156000pt;}
.y100{bottom:256.716000pt;}
.yc8{bottom:258.228000pt;}
.y2b5{bottom:260.818667pt;}
.y212{bottom:261.814667pt;}
.y15e{bottom:262.296000pt;}
.y224{bottom:266.807187pt;}
.y93{bottom:266.980000pt;}
.y131{bottom:267.684000pt;}
.y5f{bottom:267.734667pt;}
.y27b{bottom:268.161333pt;}
.y185{bottom:269.860000pt;}
.y1e1{bottom:271.794667pt;}
.y39{bottom:273.154667pt;}
.yc7{bottom:274.965333pt;}
.y223{bottom:275.367067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2b4{bottom:276.161333pt;}
.yfe{bottom:277.730667pt;}
.y211{bottom:278.552000pt;}
.y15d{bottom:279.033333pt;}
.y27a{bottom:283.504000pt;}
.y130{bottom:284.421333pt;}
.y5e{bottom:284.472000pt;}
.y184{bottom:286.597333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1e0{bottom:288.532000pt;}
.y38{bottom:289.054667pt;}
.y2b3{bottom:291.502667pt;}
.yc6{bottom:291.702667pt;}
.y1b4{bottom:291.829333pt;}
.yfc{bottom:292.341333pt;}
.y210{bottom:295.289333pt;}
.y92{bottom:296.866667pt;}
.y279{bottom:298.846667pt;}
.y12f{bottom:301.158667pt;}
.y5d{bottom:301.209333pt;}
.y37{bottom:304.954667pt;}
.y1df{bottom:305.269333pt;}
.y2b2{bottom:306.845333pt;}
.yfd{bottom:306.953333pt;}
.yc5{bottom:308.440000pt;}
.y1b3{bottom:308.580000pt;}
.yf{bottom:309.452000pt;}
.y15c{bottom:309.718667pt;}
.y20f{bottom:312.026667pt;}
.y91{bottom:313.604000pt;}
.y278{bottom:314.189333pt;}
.y183{bottom:317.334667pt;}
.y5c{bottom:317.946667pt;}
.y36{bottom:320.856000pt;}
.y12e{bottom:321.880000pt;}
.y1de{bottom:322.006667pt;}
.y2b1{bottom:322.188000pt;}
.y1b2{bottom:323.192000pt;}
.yc4{bottom:325.177333pt;}
.yf9{bottom:327.968000pt;}
.y20e{bottom:328.764000pt;}
.y277{bottom:329.532000pt;}
.y90{bottom:330.341333pt;}
.y182{bottom:334.072000pt;}
.yfb{bottom:335.273333pt;}
.y2b0{bottom:337.530667pt;}
.y15b{bottom:337.678667pt;}
.y1b1{bottom:337.804000pt;}
.y5b{bottom:338.669333pt;}
.y1dd{bottom:338.744000pt;}
.y15a{bottom:340.404000pt;}
.yc3{bottom:341.914667pt;}
.yf8{bottom:342.580000pt;}
.ye{bottom:343.809333pt;}
.y276{bottom:344.874667pt;}
.y20d{bottom:345.501333pt;}
.y8f{bottom:347.078667pt;}
.yfa{bottom:349.885333pt;}
.y12d{bottom:351.768000pt;}
.y1b0{bottom:352.416000pt;}
.y2af{bottom:352.873333pt;}
.y35{bottom:354.688000pt;}
.y181{bottom:354.794667pt;}
.y1dc{bottom:355.481333pt;}
.y159{bottom:357.141333pt;}
.yf7{bottom:357.192000pt;}
.yc2{bottom:358.652000pt;}
.y275{bottom:360.217333pt;}
.y20c{bottom:362.238667pt;}
.yd{bottom:362.706666pt;}
.y8e{bottom:363.816000pt;}
.y2ae{bottom:368.216000pt;}
.y12c{bottom:368.505333pt;}
.y34{bottom:370.589333pt;}
.y1db{bottom:372.218667pt;}
.y1af{bottom:373.429333pt;}
.y158{bottom:373.878667pt;}
.y1ad{bottom:375.182667pt;}
.yc1{bottom:375.389333pt;}
.y274{bottom:375.560000pt;}
.yf6{bottom:378.205333pt;}
.y20b{bottom:378.976000pt;}
.y8d{bottom:380.553333pt;}
.y2ad{bottom:383.558667pt;}
.y12b{bottom:385.242667pt;}
.y33{bottom:386.489333pt;}
.y1da{bottom:388.956000pt;}
.y180{bottom:389.008000pt;}
.y1ac{bottom:389.794667pt;}
.y157{bottom:390.616000pt;}
.y273{bottom:390.902667pt;}
.yc0{bottom:392.126667pt;}
.yf4{bottom:392.817333pt;}
.y1ae{bottom:394.444000pt;}
.y20a{bottom:395.713333pt;}
.y8c{bottom:397.290667pt;}
.y2ac{bottom:398.901333pt;}
.y5a{bottom:404.752000pt;}
.y1d9{bottom:405.693333pt;}
.y272{bottom:406.244000pt;}
.y156{bottom:407.352000pt;}
.yf3{bottom:407.429333pt;}
.ybf{bottom:408.864000pt;}
.y17f{bottom:409.226667pt;}
.y209{bottom:412.450667pt;}
.y2ab{bottom:414.244000pt;}
.y17e{bottom:415.508000pt;}
.y12a{bottom:415.928000pt;}
.y8b{bottom:418.013333pt;}
.y32{bottom:418.330667pt;}
.y271{bottom:421.586667pt;}
.yf5{bottom:422.041333pt;}
.y1d8{bottom:422.430667pt;}
.y1ab{bottom:422.549333pt;}
.ybe{bottom:425.601333pt;}
.y208{bottom:429.188000pt;}
.y2aa{bottom:429.585333pt;}
.y31{bottom:434.230667pt;}
.y155{bottom:436.358667pt;}
.y270{bottom:436.929333pt;}
.y59{bottom:437.988000pt;}
.y1d7{bottom:439.168000pt;}
.ybd{bottom:442.338667pt;}
.yf2{bottom:443.054667pt;}
.y17d{bottom:444.853333pt;}
.y2a9{bottom:444.928000pt;}
.y207{bottom:445.925333pt;}
.y129{bottom:446.613333pt;}
.yc{bottom:446.990669pt;}
.y8a{bottom:447.901333pt;}
.y154{bottom:447.909333pt;}
.y30{bottom:450.130667pt;}
.y152{bottom:450.672000pt;}
.y26f{bottom:452.272000pt;}
.y58{bottom:455.282667pt;}
.y1aa{bottom:455.530667pt;}
.y1d6{bottom:455.905333pt;}
.yf0{bottom:457.666667pt;}
.ybc{bottom:459.076000pt;}
.y17c{bottom:459.465333pt;}
.y2a8{bottom:460.270667pt;}
.y206{bottom:462.662667pt;}
.yb{bottom:462.990669pt;}
.y128{bottom:463.350667pt;}
.y89{bottom:464.638667pt;}
.y153{bottom:465.017333pt;}
.y2f{bottom:466.032000pt;}
.y26e{bottom:467.614667pt;}
.y1a9{bottom:472.268000pt;}
.yf1{bottom:472.278667pt;}
.y1d5{bottom:472.642667pt;}
.y17b{bottom:474.077333pt;}
.y2a7{bottom:475.613333pt;}
.ybb{bottom:475.813333pt;}
.ya{bottom:478.990666pt;}
.y205{bottom:479.398667pt;}
.y127{bottom:480.088000pt;}
.y88{bottom:481.376000pt;}
.y2e{bottom:481.932000pt;}
.y26d{bottom:482.957333pt;}
.y176{bottom:487.481333pt;}
.y57{bottom:488.517333pt;}
.y17a{bottom:488.688000pt;}
.y1a8{bottom:489.005333pt;}
.y1d4{bottom:489.380000pt;}
.y151{bottom:490.249333pt;}
.y2a6{bottom:490.956000pt;}
.yba{bottom:492.549333pt;}
.yef{bottom:493.293333pt;}
.y9{bottom:494.990666pt;}
.y204{bottom:496.136000pt;}
.y126{bottom:496.825333pt;}
.y2d{bottom:497.832000pt;}
.y87{bottom:498.113333pt;}
.y26c{bottom:498.300000pt;}
.y179{bottom:503.300000pt;}
.y1a7{bottom:505.742667pt;}
.y56{bottom:505.813333pt;}
.y2a5{bottom:506.298667pt;}
.y150{bottom:506.986667pt;}
.yee{bottom:507.904000pt;}
.yb9{bottom:509.286667pt;}
.y1d3{bottom:510.101333pt;}
.y203{bottom:512.873333pt;}
.y26b{bottom:513.642667pt;}
.y2c{bottom:513.733333pt;}
.y86{bottom:514.850667pt;}
.y178{bottom:517.912000pt;}
.y2a4{bottom:521.641333pt;}
.y1a6{bottom:522.480000pt;}
.yeb{bottom:522.516000pt;}
.y55{bottom:523.108000pt;}
.y14f{bottom:523.724000pt;}
.yb8{bottom:526.024000pt;}
.y26a{bottom:528.984000pt;}
.y202{bottom:529.610667pt;}
.y2b{bottom:529.633333pt;}
.y125{bottom:530.964000pt;}
.y85{bottom:531.588000pt;}
.y177{bottom:532.524000pt;}
.y2a3{bottom:536.984000pt;}
.yed{bottom:537.128000pt;}
.y1a5{bottom:539.217333pt;}
.y54{bottom:540.404000pt;}
.yb7{bottom:542.761333pt;}
.y1d2{bottom:544.314667pt;}
.y269{bottom:544.326667pt;}
.y14e{bottom:544.446667pt;}
.y201{bottom:546.348000pt;}
.y84{bottom:548.325333pt;}
.y28{bottom:549.518634pt;}
.y122{bottom:551.182667pt;}
.yec{bottom:551.740000pt;}
.y2a2{bottom:552.325333pt;}
.y175{bottom:553.538667pt;}
.y1a4{bottom:555.954667pt;}
.y53{bottom:557.698667pt;}
.y124{bottom:558.489333pt;}
.yb6{bottom:559.498667pt;}
.y268{bottom:559.669333pt;}
.y200{bottom:563.085333pt;}
.y1d1{bottom:564.534667pt;}
.y83{bottom:565.062667pt;}
.y121{bottom:565.794667pt;}
.y2a1{bottom:567.668000pt;}
.y1a3{bottom:572.692000pt;}
.yea{bottom:572.754667pt;}
.y11e{bottom:573.101333pt;}
.y8{bottom:573.786667pt;}
.y14d{bottom:574.334667pt;}
.y52{bottom:574.993333pt;}
.y267{bottom:575.012000pt;}
.yb5{bottom:576.236000pt;}
.y1d0{bottom:579.146667pt;}
.y1ff{bottom:579.822667pt;}
.y120{bottom:580.406667pt;}
.y174{bottom:581.644000pt;}
.y82{bottom:581.800000pt;}
.y2a0{bottom:583.010667pt;}
.ye9{bottom:587.366667pt;}
.y123{bottom:587.713333pt;}
.y1a2{bottom:589.429333pt;}
.y14c{bottom:591.072000pt;}
.y51{bottom:592.289333pt;}
.y7{bottom:592.685334pt;}
.yb4{bottom:592.973333pt;}
.y1cf{bottom:593.758667pt;}
.y266{bottom:594.340000pt;}
.ye6{bottom:594.672000pt;}
.y11f{bottom:595.018667pt;}
.y1fe{bottom:596.560000pt;}
.y29f{bottom:598.353333pt;}
.y81{bottom:598.537333pt;}
.ye8{bottom:601.977333pt;}
.y1a1{bottom:606.166667pt;}
.y1ce{bottom:608.369333pt;}
.y50{bottom:609.584000pt;}
.yb3{bottom:609.710667pt;}
.y173{bottom:613.297333pt;}
.y29e{bottom:613.696000pt;}
.y80{bottom:615.274667pt;}
.y11d{bottom:616.033333pt;}
.ye7{bottom:616.589333pt;}
.y1a0{bottom:622.904000pt;}
.y1cd{bottom:622.981333pt;}
.y265{bottom:624.176000pt;}
.yb2{bottom:626.448000pt;}
.y4f{bottom:626.878667pt;}
.y14b{bottom:628.073333pt;}
.y29d{bottom:629.038667pt;}
.y172{bottom:630.034667pt;}
.y11a{bottom:630.645333pt;}
.y7f{bottom:635.996000pt;}
.y1cc{bottom:637.593333pt;}
.ye5{bottom:637.604000pt;}
.y119{bottom:637.950667pt;}
.y19f{bottom:639.641333pt;}
.yb1{bottom:643.185333pt;}
.y222{bottom:644.113333pt;}
.y4e{bottom:644.174667pt;}
.y29c{bottom:644.381333pt;}
.ye4{bottom:644.909333pt;}
.y11c{bottom:645.256000pt;}
.y6{bottom:645.598667pt;}
.y171{bottom:646.772000pt;}
.y14a{bottom:648.293333pt;}
.y1cb{bottom:652.205333pt;}
.y19e{bottom:656.378667pt;}
.y29b{bottom:659.724000pt;}
.y11b{bottom:659.868000pt;}
.yb0{bottom:659.922667pt;}
.y4d{bottom:661.469333pt;}
.y149{bottom:662.905333pt;}
.y170{bottom:663.509333pt;}
.y7e{bottom:665.884000pt;}
.y1ca{bottom:666.817333pt;}
.y3{bottom:668.977329pt;}
.ye3{bottom:673.229333pt;}
.y29a{bottom:675.066667pt;}
.yaf{bottom:676.660000pt;}
.y19d{bottom:677.101333pt;}
.y148{bottom:677.517333pt;}
.y4c{bottom:678.765333pt;}
.y16f{bottom:680.246667pt;}
.y117{bottom:680.882667pt;}
.y1c9{bottom:681.429333pt;}
.y7d{bottom:682.621333pt;}
.y299{bottom:690.408000pt;}
.yae{bottom:693.397333pt;}
.y116{bottom:695.494667pt;}
.y4b{bottom:696.060000pt;}
.y1fd{bottom:696.984000pt;}
.y147{bottom:698.530667pt;}
.ye2{bottom:701.336000pt;}
.y1c8{bottom:702.442667pt;}
.y113{bottom:702.800000pt;}
.y7c{bottom:703.344000pt;}
.y298{bottom:705.750667pt;}
.y19c{bottom:706.989333pt;}
.y112{bottom:710.106667pt;}
.yad{bottom:710.134667pt;}
.y16e{bottom:710.932000pt;}
.y1fc{bottom:713.721333pt;}
.y118{bottom:717.412000pt;}
.y146{bottom:719.545333pt;}
.y297{bottom:721.093333pt;}
.y19b{bottom:723.726667pt;}
.y115{bottom:724.718667pt;}
.yac{bottom:726.872000pt;}
.y4a{bottom:730.358667pt;}
.y1fb{bottom:730.458667pt;}
.y1c7{bottom:730.549333pt;}
.ye1{bottom:730.857333pt;}
.y7b{bottom:733.232000pt;}
.y296{bottom:736.436000pt;}
.y114{bottom:739.329333pt;}
.y16d{bottom:741.616000pt;}
.yab{bottom:743.609333pt;}
.y49{bottom:744.704000pt;}
.y1fa{bottom:747.196000pt;}
.ye0{bottom:747.594667pt;}
.y145{bottom:747.652000pt;}
.y7a{bottom:749.969333pt;}
.y295{bottom:751.778667pt;}
.y19a{bottom:756.632000pt;}
.y16c{bottom:758.353333pt;}
.y1c6{bottom:758.742667pt;}
.y111{bottom:760.344000pt;}
.yaa{bottom:760.346667pt;}
.y48{bottom:762.908000pt;}
.y1f9{bottom:763.933333pt;}
.ydf{bottom:764.332000pt;}
.y79{bottom:766.706667pt;}
.y294{bottom:767.121333pt;}
.y199{bottom:773.382667pt;}
.y47{bottom:773.397333pt;}
.y10d{bottom:774.956000pt;}
.y1c5{bottom:775.480000pt;}
.ya9{bottom:777.084000pt;}
.y144{bottom:779.304000pt;}
.y1f8{bottom:780.670667pt;}
.yde{bottom:781.069333pt;}
.y2{bottom:781.661334pt;}
.y10c{bottom:782.261333pt;}
.y293{bottom:782.464000pt;}
.y78{bottom:783.444000pt;}
.y16b{bottom:783.460000pt;}
.y198{bottom:787.993333pt;}
.y110{bottom:789.568000pt;}
.y46{bottom:791.601333pt;}
.y1c4{bottom:792.217333pt;}
.ya8{bottom:793.821333pt;}
.y143{bottom:796.041333pt;}
.y1f7{bottom:797.408000pt;}
.ydd{bottom:797.806667pt;}
.y77{bottom:800.181333pt;}
.y10f{bottom:801.848000pt;}
.y45{bottom:802.089333pt;}
.y197{bottom:802.605333pt;}
.y10e{bottom:804.180000pt;}
.y16a{bottom:808.565333pt;}
.y1c3{bottom:808.954667pt;}
.ya7{bottom:810.558667pt;}
.y142{bottom:812.778667pt;}
.y292{bottom:813.149333pt;}
.y1f6{bottom:814.145333pt;}
.ydc{bottom:814.544000pt;}
.y76{bottom:816.918667pt;}
.y196{bottom:817.217333pt;}
.y44{bottom:820.293333pt;}
.y10b{bottom:825.193333pt;}
.y169{bottom:825.302667pt;}
.y1c2{bottom:825.692000pt;}
.ya6{bottom:827.296000pt;}
.y291{bottom:828.490667pt;}
.y141{bottom:829.516000pt;}
.y43{bottom:830.781333pt;}
.y1f5{bottom:830.882667pt;}
.ydb{bottom:831.281333pt;}
.y195{bottom:831.829333pt;}
.y75{bottom:833.656000pt;}
.y1c1{bottom:842.429333pt;}
.y290{bottom:843.833333pt;}
.ya5{bottom:844.033333pt;}
.y194{bottom:846.441333pt;}
.y1f4{bottom:847.620000pt;}
.yda{bottom:848.018667pt;}
.y42{bottom:848.985333pt;}
.y74{bottom:850.393333pt;}
.y168{bottom:850.409333pt;}
.y10a{bottom:853.300000pt;}
.y28f{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.ya4{bottom:860.770667pt;}
.y193{bottom:861.053333pt;}
.y140{bottom:863.654667pt;}
.y1f3{bottom:864.357333pt;}
.yd9{bottom:864.754667pt;}
.y73{bottom:867.130667pt;}
.y167{bottom:867.146667pt;}
.y221{bottom:870.813333pt;}
.y28e{bottom:874.518667pt;}
.y1c0{bottom:875.334667pt;}
.y192{bottom:875.665333pt;}
.ya3{bottom:877.508000pt;}
.y1f2{bottom:881.094667pt;}
.yd8{bottom:881.492000pt;}
.y72{bottom:883.868000pt;}
.y13f{bottom:883.874667pt;}
.y27{bottom:884.713333pt;}
.y166{bottom:887.868000pt;}
.y28d{bottom:889.861333pt;}
.y191{bottom:890.277333pt;}
.y1bf{bottom:892.084000pt;}
.ya2{bottom:894.245333pt;}
.y1f1{bottom:897.832000pt;}
.yd7{bottom:898.229333pt;}
.y13e{bottom:898.486667pt;}
.y71{bottom:900.605333pt;}
.y220{bottom:903.490667pt;}
.y190{bottom:904.889333pt;}
.y28c{bottom:905.204000pt;}
.y1be{bottom:906.142667pt;}
.ya1{bottom:910.982667pt;}
.y13d{bottom:913.098667pt;}
.y1f0{bottom:914.569333pt;}
.yd6{bottom:914.966667pt;}
.y70{bottom:917.342667pt;}
.y165{bottom:917.757333pt;}
.y18f{bottom:919.501333pt;}
.y28b{bottom:920.546667pt;}
.y26{bottom:925.510667pt;}
.y21f{bottom:927.081333pt;}
.ya0{bottom:927.720000pt;}
.yd5{bottom:931.704000pt;}
.y6f{bottom:934.080000pt;}
.y13c{bottom:934.112000pt;}
.y1ef{bottom:935.290667pt;}
.y28a{bottom:935.889333pt;}
.y21e{bottom:942.702667pt;}
.y9f{bottom:944.456000pt;}
.y1bd{bottom:948.170667pt;}
.yd4{bottom:948.441333pt;}
.y25{bottom:950.616000pt;}
.y6e{bottom:950.817333pt;}
.y289{bottom:951.230667pt;}
.y13b{bottom:955.126667pt;}
.y21d{bottom:958.325333pt;}
.y9e{bottom:961.193333pt;}
.yd3{bottom:965.178667pt;}
.y288{bottom:966.573333pt;}
.y6d{bottom:967.554667pt;}
.y24{bottom:975.722667pt;}
.y9d{bottom:981.916000pt;}
.y13a{bottom:983.233333pt;}
.y6c{bottom:984.290667pt;}
.y22{bottom:1014.377333pt;}
.y6b{bottom:1043.020000pt;}
.h21{height:14.948784pt;}
.he{height:22.673858pt;}
.h13{height:23.209028pt;}
.h28{height:23.708424pt;}
.h11{height:27.076941pt;}
.h12{height:27.262909pt;}
.h29{height:28.503417pt;}
.h7{height:28.560000pt;}
.h23{height:29.397999pt;}
.h10{height:29.433775pt;}
.h1c{height:29.599908pt;}
.hf{height:30.399505pt;}
.h14{height:30.945242pt;}
.h26{height:31.109531pt;}
.h19{height:31.157778pt;}
.h25{height:31.338125pt;}
.h15{height:34.574438pt;}
.h16{height:34.813542pt;}
.h1f{height:35.052646pt;}
.h2c{height:35.085938pt;}
.h2b{height:35.343750pt;}
.h1e{height:37.778179pt;}
.h17{height:38.415786pt;}
.h18{height:38.681455pt;}
.hb{height:38.947124pt;}
.h2a{height:39.062344pt;}
.h27{height:39.349375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:45.271688pt;}
.hd{height:48.481423pt;}
.h2{height:48.960000pt;}
.h1d{height:57.799269pt;}
.h22{height:62.398438pt;}
.h1b{height:64.034876pt;}
.h1a{height:64.040209pt;}
.h20{height:68.375313pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.ha{height:77.447343pt;}
.h4{height:105.826671pt;}
.h24{height:200.425333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w6{width:628.453600pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7e{left:-34.378400pt;}
.x85{left:-6.058400pt;}
.x0{left:0.000000pt;}
.x80{left:3.381600pt;}
.x7f{left:10.261600pt;}
.x81{left:16.021600pt;}
.x7{left:26.021437pt;}
.x5{left:48.000000pt;}
.x6{left:51.605861pt;}
.x55{left:61.214667pt;}
.x70{left:64.266667pt;}
.x5b{left:70.880000pt;}
.x28{left:73.010667pt;}
.x14{left:75.670667pt;}
.x54{left:77.420000pt;}
.x37{left:81.294667pt;}
.x7d{left:82.623733pt;}
.x15{left:85.509333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x36{left:98.008000pt;}
.x71{left:99.665333pt;}
.x33{left:100.918667pt;}
.x32{left:102.013333pt;}
.x84{left:148.021600pt;}
.x72{left:170.008000pt;}
.x31{left:172.865333pt;}
.x5a{left:175.489333pt;}
.x58{left:178.084000pt;}
.x59{left:179.094667pt;}
.x4{left:180.874667pt;}
.x57{left:183.464000pt;}
.x34{left:185.960000pt;}
.x56{left:187.696000pt;}
.x3a{left:201.048000pt;}
.x13{left:212.049333pt;}
.xa{left:222.073333pt;}
.x8{left:223.020000pt;}
.x39{left:226.341333pt;}
.x10{left:230.989333pt;}
.x6c{left:235.184000pt;}
.x69{left:239.864000pt;}
.x9{left:241.085333pt;}
.x60{left:242.084000pt;}
.x6d{left:244.037333pt;}
.x63{left:249.316000pt;}
.xd{left:251.365333pt;}
.x5f{left:253.348000pt;}
.x47{left:257.994667pt;}
.x64{left:260.241333pt;}
.x68{left:264.080000pt;}
.x22{left:269.450667pt;}
.x2f{left:272.209333pt;}
.xb{left:275.054667pt;}
.x1c{left:277.592000pt;}
.x5d{left:280.113333pt;}
.x5e{left:281.681333pt;}
.xc{left:285.498667pt;}
.x5c{left:289.917333pt;}
.x4c{left:290.949333pt;}
.x16{left:294.526667pt;}
.x41{left:297.944000pt;}
.x30{left:307.624000pt;}
.x42{left:311.917333pt;}
.x3f{left:313.877333pt;}
.x2d{left:315.524000pt;}
.x38{left:319.732000pt;}
.x2e{left:328.521333pt;}
.x4d{left:331.061333pt;}
.x4e{left:337.312000pt;}
.x12{left:339.116000pt;}
.x7b{left:348.436000pt;}
.x67{left:350.049333pt;}
.x48{left:355.398667pt;}
.x73{left:361.820000pt;}
.x6b{left:364.449333pt;}
.x75{left:366.194667pt;}
.x74{left:367.532000pt;}
.x76{left:377.120000pt;}
.x7c{left:382.004000pt;}
.xe{left:390.509333pt;}
.x65{left:392.625333pt;}
.x61{left:400.568000pt;}
.x6a{left:403.166667pt;}
.x3{left:404.408000pt;}
.xf{left:405.770667pt;}
.x1d{left:407.046667pt;}
.x1e{left:408.681333pt;}
.x19{left:410.217333pt;}
.x62{left:411.493333pt;}
.x29{left:412.673333pt;}
.x23{left:413.684000pt;}
.x17{left:414.730667pt;}
.x18{left:420.044000pt;}
.x1a{left:425.865333pt;}
.x46{left:428.004000pt;}
.x24{left:430.749333pt;}
.x50{left:432.034667pt;}
.x53{left:434.025333pt;}
.x4f{left:436.866667pt;}
.x51{left:438.561333pt;}
.x52{left:439.590667pt;}
.x25{left:449.142667pt;}
.x66{left:450.818667pt;}
.x1f{left:452.812000pt;}
.x82{left:462.821600pt;}
.x49{left:466.526667pt;}
.x3d{left:470.334667pt;}
.x3c{left:472.277333pt;}
.x35{left:473.237333pt;}
.x3b{left:475.766667pt;}
.x6f{left:479.333333pt;}
.x6e{left:482.321333pt;}
.x3e{left:491.324000pt;}
.x11{left:492.330667pt;}
.x77{left:512.032000pt;}
.x44{left:514.174667pt;}
.x78{left:517.744000pt;}
.x45{left:520.961333pt;}
.x4a{left:528.154667pt;}
.x79{left:536.314667pt;}
.x7a{left:542.026667pt;}
.x4b{left:568.729333pt;}
.x43{left:570.842667pt;}
.x20{left:586.153333pt;}
.x2b{left:588.820000pt;}
.x26{left:590.122667pt;}
.x2a{left:597.445333pt;}
.x27{left:600.045333pt;}
.x40{left:609.834667pt;}
.x21{left:616.424000pt;}
.x1b{left:617.333333pt;}
.x2c{left:624.589333pt;}
.x83{left:625.861467pt;}
}




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