
    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_250c91ec6302797c946fd1dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_19a66d7b848276c52539db6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_22e83f2c02eec903f66d8cdc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_d2690abb6790dfd9764a80dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_24c349fc939ca2dffdbfc4f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_a1d1ec43db11cd400e970297.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dbf1418b04ae14c317deb7da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_87b673319cb78ed3a01d43f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_f6d8fc14955d5cddad6fefc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.161000;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_067dbff7fdcafa7226fa36ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_8d58e9e8e648ec6cb8feb00e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4c671a587ff9e4f1da86301a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_1d35a5020bfabb53fa308814.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.161000;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_2492c3b1fa5aa037fb03ba25.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_8d83e50dc7fb0129afef6b8a.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;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_16f248d8eb2abf5db38defdd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.978000;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_43526a1eb788d8b0849b234b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.143000;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_5075f5781346b98aa3ecc894.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.159000;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_7f365ae717ebf8ebba32f805.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_50e48d225e03f93320b085b0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e0d18d35aa06732a9b0bd86e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2a442bd379026c27daadf545.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b77797cea0a52fac1a6e1092.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_0aee676a6e4dbf4cdee77a7f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244981,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m7{transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245260,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1e{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);}
.m27{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);}
.m5{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m4{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m26{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);}
.m25{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);}
.m1d{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);}
.mb{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);}
.m3{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m2c{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);}
.ma{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);}
.m2d{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);}
.m15{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);}
.m14{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);}
.m2e{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);}
.m20{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);}
.m22{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);}
.m10{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);}
.m24{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);}
.m21{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);}
.m1a{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);}
.m8{transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m17{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);}
.m2b{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);}
.m18{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);}
.m13{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);}
.m1f{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);}
.m16{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);}
.md{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);}
.m28{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);}
.m19{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);}
.me{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);}
.m2f{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);}
.m9{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);}
.m2{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.184000px;}
.ls4{letter-spacing:-1.560084px;}
.ls3{letter-spacing:-0.597780px;}
.ls2{letter-spacing:-0.000191px;}
.ls1{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000195px;}
.ls5{letter-spacing:0.000328px;}
.ls3f{letter-spacing:0.000391px;}
.ls32{letter-spacing:0.000416px;}
.ls34{letter-spacing:0.000557px;}
.ls24{letter-spacing:0.000668px;}
.ls21{letter-spacing:0.000849px;}
.ls12{letter-spacing:0.000947px;}
.ls29{letter-spacing:0.001101px;}
.ls35{letter-spacing:0.001781px;}
.ls13{letter-spacing:0.002239px;}
.ls14{letter-spacing:0.002241px;}
.ls10{letter-spacing:0.002275px;}
.lsa{letter-spacing:0.002911px;}
.ls4a{letter-spacing:0.004330px;}
.ls28{letter-spacing:0.182618px;}
.ls23{letter-spacing:0.185441px;}
.ls45{letter-spacing:0.185737px;}
.ls26{letter-spacing:0.188624px;}
.lsc{letter-spacing:0.201864px;}
.ls9{letter-spacing:0.203530px;}
.ls7{letter-spacing:0.204330px;}
.ls16{letter-spacing:0.207888px;}
.ls31{letter-spacing:0.209012px;}
.ls19{letter-spacing:1.626445px;}
.lsd{letter-spacing:2.988532px;}
.ls36{letter-spacing:12.670709px;}
.ls20{letter-spacing:15.135868px;}
.ls1f{letter-spacing:15.349829px;}
.ls1e{letter-spacing:16.456462px;}
.ls48{letter-spacing:17.342147px;}
.ls49{letter-spacing:17.527890px;}
.ls47{letter-spacing:17.534013px;}
.ls22{letter-spacing:17.962584px;}
.ls42{letter-spacing:18.397489px;}
.ls37{letter-spacing:18.426668px;}
.ls27{letter-spacing:18.506650px;}
.ls41{letter-spacing:18.587794px;}
.ls1d{letter-spacing:18.617441px;}
.ls2a{letter-spacing:18.681117px;}
.ls1c{letter-spacing:18.843498px;}
.ls43{letter-spacing:19.034853px;}
.ls39{letter-spacing:19.247743px;}
.ls2d{letter-spacing:19.353910px;}
.ls3e{letter-spacing:19.530041px;}
.ls3c{letter-spacing:19.534020px;}
.ls30{letter-spacing:19.659546px;}
.ls2b{letter-spacing:19.681912px;}
.ls2f{letter-spacing:19.707852px;}
.ls3d{letter-spacing:19.734905px;}
.ls6{letter-spacing:19.845499px;}
.lsb{letter-spacing:19.896612px;}
.ls2e{letter-spacing:19.913589px;}
.ls0{letter-spacing:19.921672px;}
.ls40{letter-spacing:19.975083px;}
.lsf{letter-spacing:19.977939px;}
.ls18{letter-spacing:19.981054px;}
.ls2c{letter-spacing:20.129847px;}
.ls4b{letter-spacing:20.157272px;}
.ls15{letter-spacing:20.159984px;}
.ls17{letter-spacing:20.182683px;}
.lse{letter-spacing:20.195046px;}
.ls11{letter-spacing:20.219384px;}
.ls38{letter-spacing:20.339625px;}
.ls4c{letter-spacing:20.492064px;}
.ls46{letter-spacing:20.564265px;}
.ls3a{letter-spacing:21.250368px;}
.ls3b{letter-spacing:21.262786px;}
.ls33{letter-spacing:23.851389px;}
.ls8{letter-spacing:27.804330px;}
.ls25{letter-spacing:71.730557px;}
.ls1b{letter-spacing:96.929441px;}
.ls1a{letter-spacing:121.943441px;}
.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;}
}
.ws80{word-spacing:-49.733299px;}
.ws16a{word-spacing:-49.135543px;}
.ws16e{word-spacing:-48.897366px;}
.ws141{word-spacing:-46.153647px;}
.wsc6{word-spacing:-34.370970px;}
.wsd{word-spacing:-33.045278px;}
.ws47{word-spacing:-33.043952px;}
.wsd1{word-spacing:-31.832513px;}
.ws5b{word-spacing:-30.551309px;}
.wsa{word-spacing:-29.889000px;}
.ws8c{word-spacing:-29.887800px;}
.ws3f{word-spacing:-29.739756px;}
.ws1e{word-spacing:-29.738429px;}
.wse3{word-spacing:-28.228020px;}
.ws1a{word-spacing:-28.226761px;}
.wsd2{word-spacing:-27.646998px;}
.ws4e{word-spacing:-26.234381px;}
.ws0{word-spacing:-26.234052px;}
.ws8d{word-spacing:-23.825290px;}
.ws8e{word-spacing:-23.130700px;}
.ws7f{word-spacing:-19.923207px;}
.wsce{word-spacing:-18.431332px;}
.ws12a{word-spacing:-17.890911px;}
.ws182{word-spacing:-17.338469px;}
.ws164{word-spacing:-17.075664px;}
.ws5c{word-spacing:-16.318739px;}
.ws162{word-spacing:-16.199188px;}
.wsfc{word-spacing:-16.029686px;}
.ws187{word-spacing:-15.722143px;}
.ws65{word-spacing:-15.720983px;}
.wsf7{word-spacing:-15.692952px;}
.ws63{word-spacing:-15.541656px;}
.ws8b{word-spacing:-15.481880px;}
.wsb3{word-spacing:-15.472378px;}
.wsbf{word-spacing:-15.441766px;}
.ws97{word-spacing:-15.302554px;}
.ws120{word-spacing:-15.183002px;}
.ws9c{word-spacing:-15.007071px;}
.ws163{word-spacing:-15.004374px;}
.ws5a{word-spacing:-14.884124px;}
.ws12b{word-spacing:-14.764573px;}
.ws5f{word-spacing:-14.704798px;}
.ws31{word-spacing:-14.466390px;}
.ws127{word-spacing:-14.465695px;}
.wsc8{word-spacing:-14.424978px;}
.wsb0{word-spacing:-14.346144px;}
.ws10a{word-spacing:-14.274793px;}
.ws10b{word-spacing:-14.205133px;}
.wsc5{word-spacing:-14.197516px;}
.wsc7{word-spacing:-14.194008px;}
.ws17a{word-spacing:-14.188607px;}
.wse9{word-spacing:-14.176008px;}
.ws181{word-spacing:-14.166817px;}
.ws30{word-spacing:-14.143599px;}
.ws2{word-spacing:-14.080594px;}
.ws94{word-spacing:-14.047266px;}
.ws93{word-spacing:-13.987490px;}
.wsa6{word-spacing:-13.867939px;}
.ws98{word-spacing:-13.748388px;}
.wseb{word-spacing:-13.746288px;}
.ws9d{word-spacing:-13.709423px;}
.ws3e{word-spacing:-13.659414px;}
.wsd6{word-spacing:-13.605615px;}
.ws174{word-spacing:-13.509756px;}
.ws171{word-spacing:-13.509286px;}
.ws194{word-spacing:-13.455488px;}
.ws11f{word-spacing:-13.438469px;}
.ws12c{word-spacing:-13.398345px;}
.ws12d{word-spacing:-13.392463px;}
.ws110{word-spacing:-13.329959px;}
.ws137{word-spacing:-13.294521px;}
.ws67{word-spacing:-13.290180px;}
.ws128{word-spacing:-13.276161px;}
.ws1b{word-spacing:-13.230351px;}
.wsad{word-spacing:-13.212881px;}
.ws179{word-spacing:-13.180084px;}
.ws57{word-spacing:-13.156837px;}
.ws60{word-spacing:-13.150632px;}
.ws101{word-spacing:-13.135992px;}
.ws6b{word-spacing:-13.135367px;}
.ws138{word-spacing:-13.127404px;}
.ws16b{word-spacing:-13.119261px;}
.ws73{word-spacing:-13.117343px;}
.ws9a{word-spacing:-13.116697px;}
.ws99{word-spacing:-13.116310px;}
.ws6e{word-spacing:-13.111343px;}
.ws55{word-spacing:-13.073643px;}
.ws85{word-spacing:-13.031081px;}
.wsc1{word-spacing:-12.971305px;}
.wsfb{word-spacing:-12.916875px;}
.ws166{word-spacing:-12.915188px;}
.wsb1{word-spacing:-12.913684px;}
.wsbe{word-spacing:-12.911530px;}
.ws146{word-spacing:-12.898345px;}
.wsf5{word-spacing:-12.876625px;}
.ws50{word-spacing:-12.846637px;}
.ws109{word-spacing:-12.837674px;}
.wsde{word-spacing:-12.744841px;}
.ws136{word-spacing:-12.695972px;}
.ws18a{word-spacing:-12.672427px;}
.wsf8{word-spacing:-12.612652px;}
.wsfa{word-spacing:-12.610110px;}
.ws66{word-spacing:-12.567283px;}
.wsaa{word-spacing:-12.552876px;}
.ws1c{word-spacing:-12.529727px;}
.wsab{word-spacing:-12.493100px;}
.ws70{word-spacing:-12.373549px;}
.ws123{word-spacing:-12.313774px;}
.ws9e{word-spacing:-12.253998px;}
.wse8{word-spacing:-12.194222px;}
.ws69{word-spacing:-12.134447px;}
.wsfe{word-spacing:-12.039522px;}
.wsc2{word-spacing:-12.014896px;}
.ws135{word-spacing:-11.948591px;}
.ws111{word-spacing:-11.716018px;}
.ws185{word-spacing:-11.656242px;}
.wsb9{word-spacing:-11.536691px;}
.ws124{word-spacing:-11.399881px;}
.ws5e{word-spacing:-11.357364px;}
.ws165{word-spacing:-11.305745px;}
.ws8a{word-spacing:-11.297588px;}
.ws7e{word-spacing:-11.237813px;}
.ws23{word-spacing:-11.236713px;}
.ws25{word-spacing:-11.231534px;}
.ws139{word-spacing:-11.178037px;}
.wsb7{word-spacing:-11.118262px;}
.wsc0{word-spacing:-11.058486px;}
.ws126{word-spacing:-10.998710px;}
.ws186{word-spacing:-10.938935px;}
.ws46{word-spacing:-10.879159px;}
.ws7a{word-spacing:-10.776049px;}
.ws149{word-spacing:-10.759608px;}
.ws3{word-spacing:-10.759500px;}
.ws32{word-spacing:-10.754300px;}
.wsff{word-spacing:-10.699832px;}
.wse0{word-spacing:-10.646703px;}
.wsbb{word-spacing:-10.640057px;}
.wsd7{word-spacing:-10.635944px;}
.wsa0{word-spacing:-10.590625px;}
.ws151{word-spacing:-10.580281px;}
.ws14b{word-spacing:-10.460730px;}
.ws144{word-spacing:-10.451129px;}
.ws150{word-spacing:-10.400954px;}
.ws19{word-spacing:-10.378644px;}
.wsc3{word-spacing:-10.365387px;}
.ws52{word-spacing:-10.341179px;}
.ws17c{word-spacing:-10.323913px;}
.ws62{word-spacing:-10.281403px;}
.ws17d{word-spacing:-10.270115px;}
.ws143{word-spacing:-10.233482px;}
.ws4b{word-spacing:-10.221628px;}
.ws14d{word-spacing:-10.182190px;}
.wsdc{word-spacing:-10.162518px;}
.ws4d{word-spacing:-10.161852px;}
.ws4c{word-spacing:-10.102076px;}
.ws53{word-spacing:-10.042301px;}
.wsa1{word-spacing:-10.021099px;}
.ws75{word-spacing:-10.000822px;}
.wsf{word-spacing:-9.998248px;}
.ws4{word-spacing:-9.994821px;}
.wsb{word-spacing:-9.989474px;}
.ws7{word-spacing:-9.989078px;}
.wse{word-spacing:-9.988157px;}
.ws6{word-spacing:-9.985328px;}
.ws49{word-spacing:-9.982525px;}
.ws148{word-spacing:-9.963051px;}
.ws54{word-spacing:-9.922750px;}
.ws56{word-spacing:-9.920631px;}
.ws134{word-spacing:-9.893526px;}
.ws58{word-spacing:-9.862974px;}
.ws5d{word-spacing:-9.803198px;}
.ws168{word-spacing:-9.756555px;}
.ws14a{word-spacing:-9.746008px;}
.ws9{word-spacing:-9.745604px;}
.wsf4{word-spacing:-9.745458px;}
.ws86{word-spacing:-9.743423px;}
.ws4f{word-spacing:-9.683647px;}
.ws35{word-spacing:-9.624534px;}
.ws61{word-spacing:-9.623872px;}
.ws19d{word-spacing:-9.570074px;}
.ws84{word-spacing:-9.564096px;}
.ws100{word-spacing:-9.518131px;}
.wsd3{word-spacing:-9.516937px;}
.ws72{word-spacing:-9.504320px;}
.wsd5{word-spacing:-9.463139px;}
.wsf9{word-spacing:-9.459812px;}
.ws81{word-spacing:-9.444545px;}
.ws26{word-spacing:-9.409930px;}
.ws42{word-spacing:-9.409340px;}
.ws33{word-spacing:-9.355542px;}
.ws193{word-spacing:-9.330971px;}
.ws6f{word-spacing:-9.324994px;}
.wsdf{word-spacing:-9.301743px;}
.ws102{word-spacing:-9.265218px;}
.ws2f{word-spacing:-9.247945px;}
.ws11b{word-spacing:-9.243921px;}
.ws125{word-spacing:-9.237921px;}
.ws5{word-spacing:-9.216952px;}
.ws177{word-spacing:-9.213884px;}
.ws18f{word-spacing:-9.211420px;}
.ws152{word-spacing:-9.205442px;}
.ws2d{word-spacing:-9.194147px;}
.ws19a{word-spacing:-9.151644px;}
.ws10f{word-spacing:-9.145667px;}
.wse1{word-spacing:-9.140348px;}
.ws12{word-spacing:-9.101984px;}
.wsdd{word-spacing:-9.097309px;}
.ws2c{word-spacing:-9.086550px;}
.wsbd{word-spacing:-9.085891px;}
.ws18{word-spacing:-9.035808px;}
.ws36{word-spacing:-9.032751px;}
.ws192{word-spacing:-9.032093px;}
.ws45{word-spacing:-9.026116px;}
.ws1f{word-spacing:-8.982189px;}
.ws41{word-spacing:-8.978953px;}
.ws1d{word-spacing:-8.976205px;}
.ws8{word-spacing:-8.966355px;}
.ws64{word-spacing:-8.966340px;}
.ws16{word-spacing:-8.930107px;}
.ws22{word-spacing:-8.926750px;}
.ws14{word-spacing:-8.925989px;}
.ws158{word-spacing:-8.925155px;}
.ws20{word-spacing:-8.923452px;}
.wsfd{word-spacing:-8.906564px;}
.wse2{word-spacing:-8.871356px;}
.ws195{word-spacing:-8.852766px;}
.ws95{word-spacing:-8.846789px;}
.wsb8{word-spacing:-8.827527px;}
.ws3c{word-spacing:-8.817558px;}
.ws183{word-spacing:-8.787013px;}
.wsc{word-spacing:-8.731640px;}
.ws7d{word-spacing:-8.727238px;}
.wsb5{word-spacing:-8.684743px;}
.ws11d{word-spacing:-8.667462px;}
.ws7c{word-spacing:-8.607686px;}
.ws17{word-spacing:-8.504924px;}
.ws199{word-spacing:-8.494113px;}
.ws170{word-spacing:-8.479745px;}
.ws1{word-spacing:-8.478594px;}
.ws29{word-spacing:-8.478592px;}
.ws27{word-spacing:-8.478420px;}
.ws16f{word-spacing:-8.473863px;}
.ws76{word-spacing:-8.393139px;}
.ws145{word-spacing:-8.387171px;}
.ws154{word-spacing:-8.368584px;}
.ws115{word-spacing:-8.358038px;}
.ws142{word-spacing:-8.171977px;}
.ws105{word-spacing:-8.129482px;}
.ws114{word-spacing:-8.096661px;}
.ws106{word-spacing:-8.064793px;}
.ws24{word-spacing:-8.064057px;}
.ws6a{word-spacing:-8.009930px;}
.wsbc{word-spacing:-7.890792px;}
.ws10c{word-spacing:-7.890379px;}
.ws2a{word-spacing:-7.871271px;}
.wsc4{word-spacing:-7.848830px;}
.wsae{word-spacing:-7.830604px;}
.ws48{word-spacing:-7.770828px;}
.wsdb{word-spacing:-7.687791px;}
.ws7b{word-spacing:-7.651277px;}
.ws79{word-spacing:-7.591501px;}
.ws153{word-spacing:-7.468103px;}
.ws87{word-spacing:-7.412174px;}
.ws51{word-spacing:-7.352399px;}
.wsac{word-spacing:-7.289292px;}
.ws43{word-spacing:-7.273050px;}
.ws176{word-spacing:-7.257404px;}
.ws2e{word-spacing:-7.252677px;}
.ws19b{word-spacing:-7.232848px;}
.wse4{word-spacing:-7.192846px;}
.ws18c{word-spacing:-7.182073px;}
.ws71{word-spacing:-7.173072px;}
.ws92{word-spacing:-7.053521px;}
.ws169{word-spacing:-7.042744px;}
.wsf1{word-spacing:-6.993745px;}
.wsf3{word-spacing:-6.880172px;}
.ws16c{word-spacing:-6.874194px;}
.ws147{word-spacing:-6.814418px;}
.ws19c{word-spacing:-6.700845px;}
.ws108{word-spacing:-6.694867px;}
.ws3b{word-spacing:-6.665622px;}
.ws167{word-spacing:-6.635092px;}
.wsf2{word-spacing:-6.575316px;}
.ws10e{word-spacing:-6.515540px;}
.wse7{word-spacing:-6.510541px;}
.ws16d{word-spacing:-6.396630px;}
.ws96{word-spacing:-6.336214px;}
.ws172{word-spacing:-6.277666px;}
.ws173{word-spacing:-6.276438px;}
.ws11e{word-spacing:-6.216662px;}
.ws40{word-spacing:-6.181436px;}
.ws104{word-spacing:-6.156887px;}
.ws2b{word-spacing:-6.127638px;}
.ws107{word-spacing:-6.097111px;}
.ws178{word-spacing:-5.977560px;}
.ws68{word-spacing:-5.917784px;}
.ws17e{word-spacing:-5.858009px;}
.ws15{word-spacing:-5.804312px;}
.ws21{word-spacing:-5.804155px;}
.ws112{word-spacing:-5.798233px;}
.wsb4{word-spacing:-5.738458px;}
.wsf6{word-spacing:-5.559131px;}
.ws59{word-spacing:-5.499355px;}
.ws78{word-spacing:-5.439580px;}
.ws184{word-spacing:-5.379804px;}
.ws14e{word-spacing:-5.260253px;}
.ws6c{word-spacing:-5.200477px;}
.ws88{word-spacing:-5.140702px;}
.wscb{word-spacing:-5.115504px;}
.wscd{word-spacing:-5.112572px;}
.wsef{word-spacing:-5.080926px;}
.wsa3{word-spacing:-4.901599px;}
.ws82{word-spacing:-4.722272px;}
.ws83{word-spacing:-4.662497px;}
.wse5{word-spacing:-4.621283px;}
.wsa2{word-spacing:-4.542946px;}
.ws11c{word-spacing:-4.483170px;}
.wsd4{word-spacing:-4.459887px;}
.ws9f{word-spacing:-4.423394px;}
.wsba{word-spacing:-4.303843px;}
.ws89{word-spacing:-4.244068px;}
.wsb2{word-spacing:-4.004965px;}
.ws37{word-spacing:-3.921903px;}
.ws197{word-spacing:-3.825638px;}
.ws180{word-spacing:-3.646312px;}
.ws198{word-spacing:-3.592514px;}
.wsf0{word-spacing:-3.586536px;}
.ws103{word-spacing:-3.526760px;}
.ws14f{word-spacing:-3.466985px;}
.wscf{word-spacing:-3.418445px;}
.ws18e{word-spacing:-3.407209px;}
.wsb6{word-spacing:-3.347434px;}
.ws19f{word-spacing:-3.341397px;}
.ws113{word-spacing:-3.287658px;}
.wsa7{word-spacing:-3.243767px;}
.wsa8{word-spacing:-3.227882px;}
.ws3d{word-spacing:-3.114927px;}
.ws188{word-spacing:-3.108331px;}
.ws13{word-spacing:-3.016844px;}
.wse6{word-spacing:-2.988780px;}
.ws196{word-spacing:-2.869229px;}
.ws10{word-spacing:-2.805095px;}
.ws14c{word-spacing:-2.749678px;}
.ws11{word-spacing:-2.745417px;}
.ws17b{word-spacing:-2.689902px;}
.ws34{word-spacing:-2.523145px;}
.ws190{word-spacing:-2.450800px;}
.ws91{word-spacing:-2.391024px;}
.ws191{word-spacing:-2.337226px;}
.wsa9{word-spacing:-2.331248px;}
.ws8f{word-spacing:-2.292757px;}
.ws90{word-spacing:-2.271473px;}
.ws6d{word-spacing:-1.972595px;}
.wsd8{word-spacing:-1.877564px;}
.wsda{word-spacing:-1.823766px;}
.ws4a{word-spacing:-1.793268px;}
.ws38{word-spacing:-1.774807px;}
.ws3a{word-spacing:-1.769967px;}
.wsa5{word-spacing:-1.613941px;}
.wscc{word-spacing:-1.447177px;}
.ws18d{word-spacing:-1.255288px;}
.ws175{word-spacing:-1.231983px;}
.wsca{word-spacing:-0.973751px;}
.wsd0{word-spacing:-0.909193px;}
.ws9b{word-spacing:-0.615689px;}
.ws39{word-spacing:-0.508323px;}
.wsed{word-spacing:-0.383657px;}
.wsee{word-spacing:-0.375481px;}
.wsc9{word-spacing:-0.005378px;}
.ws28{word-spacing:0.000000px;}
.wsea{word-spacing:0.041843px;}
.ws74{word-spacing:0.119551px;}
.ws77{word-spacing:1.673717px;}
.ws19e{word-spacing:1.912819px;}
.wsec{word-spacing:2.151922px;}
.ws189{word-spacing:2.510575px;}
.ws129{word-spacing:2.869229px;}
.ws10d{word-spacing:3.227882px;}
.wsaf{word-spacing:3.646312px;}
.ws18b{word-spacing:4.542946px;}
.wsa4{word-spacing:6.216662px;}
.ws17f{word-spacing:6.874194px;}
.ws159{word-spacing:9.623872px;}
.wsd9{word-spacing:19.749393px;}
.ws44{word-spacing:37.636395px;}
.ws157{word-spacing:39.880754px;}
.ws11a{word-spacing:39.934552px;}
.ws15d{word-spacing:41.992255px;}
.ws161{word-spacing:42.893464px;}
.ws13a{word-spacing:43.600460px;}
.ws13c{word-spacing:44.066269px;}
.ws130{word-spacing:45.421989px;}
.ws133{word-spacing:45.906175px;}
.ws15c{word-spacing:46.062190px;}
.ws140{word-spacing:46.067570px;}
.ws15b{word-spacing:47.691082px;}
.ws118{word-spacing:50.360682px;}
.ws131{word-spacing:51.275255px;}
.ws119{word-spacing:56.655095px;}
.ws160{word-spacing:57.515869px;}
.ws132{word-spacing:58.430442px;}
.ws13f{word-spacing:58.645636px;}
.ws12f{word-spacing:60.407351px;}
.ws15f{word-spacing:64.724855px;}
.ws15e{word-spacing:65.542591px;}
.ws13e{word-spacing:67.898961px;}
.ws117{word-spacing:71.245221px;}
.ws13d{word-spacing:72.374988px;}
.ws13b{word-spacing:73.122785px;}
.ws155{word-spacing:73.332119px;}
.ws122{word-spacing:73.338119px;}
.ws12e{word-spacing:84.311078px;}
.ws116{word-spacing:89.453078px;}
.ws15a{word-spacing:97.223078px;}
.ws121{word-spacing:97.229078px;}
.ws156{word-spacing:185.204753px;}
._1c{margin-left:-31.392637px;}
._23{margin-left:-30.270615px;}
._21{margin-left:-29.004881px;}
._1d{margin-left:-27.895254px;}
._2f{margin-left:-26.257588px;}
._20{margin-left:-24.289597px;}
._1b{margin-left:-22.774504px;}
._30{margin-left:-21.674821px;}
._22{margin-left:-19.845499px;}
._4d{margin-left:-18.340677px;}
._2e{margin-left:-8.428360px;}
._1a{margin-left:-6.515540px;}
._d{margin-left:-5.085976px;}
._0{margin-left:-3.921240px;}
._6{margin-left:-2.893391px;}
._1{margin-left:-1.394790px;}
._2{width:1.483943px;}
._e{width:2.893391px;}
._29{width:5.021150px;}
._a{width:14.386585px;}
._14{width:15.492328px;}
._7{width:16.654864px;}
._2d{width:18.351109px;}
._9{width:19.405531px;}
._12{width:21.204675px;}
._1e{width:22.535401px;}
._13{width:23.801136px;}
._5{width:24.952061px;}
._4{width:26.381821px;}
._c{width:27.702208px;}
._27{width:28.709711px;}
._10{width:29.861281px;}
._1f{width:31.313932px;}
._18{width:32.647925px;}
._f{width:33.772934px;}
._59{width:35.566482px;}
._28{width:38.037233px;}
._17{width:39.402568px;}
._b{width:40.936614px;}
._24{width:42.918881px;}
._33{width:44.264593px;}
._3{width:45.507456px;}
._32{width:46.565192px;}
._2c{width:47.975373px;}
._31{width:48.996119px;}
._26{width:50.271280px;}
._2b{width:52.905695px;}
._19{width:62.047073px;}
._5a{width:64.497872px;}
._2a{width:66.894601px;}
._5b{width:70.415657px;}
._16{width:75.272790px;}
._50{width:77.842316px;}
._55{width:78.922253px;}
._54{width:81.934963px;}
._35{width:84.136729px;}
._3c{width:85.912076px;}
._38{width:89.197747px;}
._51{width:90.815668px;}
._37{width:92.210458px;}
._52{width:93.282457px;}
._4a{width:96.087911px;}
._58{width:97.966886px;}
._44{width:99.092684px;}
._53{width:100.441613px;}
._3f{width:103.077734px;}
._56{width:105.610228px;}
._46{width:106.951219px;}
._3b{width:108.403776px;}
._4c{width:109.479744px;}
._45{width:111.039898px;}
._57{width:113.945011px;}
._49{width:115.343770px;}
._48{width:119.916634px;}
._41{width:126.426240px;}
._40{width:127.609805px;}
._4b{width:131.106701px;}
._43{width:133.086468px;}
._3a{width:134.227008px;}
._4f{width:137.293517px;}
._47{width:141.543590px;}
._42{width:142.834752px;}
._39{width:153.971021px;}
._3e{width:156.983731px;}
._36{width:164.461709px;}
._3d{width:166.290854px;}
._4e{width:170.805952px;}
._34{width:177.644108px;}
._15{width:568.539113px;}
._25{width:581.783122px;}
._8{width:593.979673px;}
._11{width:607.187122px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs0{font-size:47.820000px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.796000px;}
.fs6{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:59.778000px;}
.fs7{font-size:65.454600px;}
.fs2{font-size:71.730000px;}
.fs1{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:66.190500px;}
.y1e{bottom:100.207500px;}
.y208{bottom:101.647500px;}
.y15a{bottom:112.855500px;}
.y11a{bottom:113.868000px;}
.y1d{bottom:116.644500px;}
.y22b{bottom:117.235500px;}
.y8e{bottom:117.364500px;}
.y260{bottom:118.329000px;}
.y181{bottom:118.369500px;}
.y206{bottom:118.426500px;}
.y1c2{bottom:118.572000px;}
.yb4{bottom:118.719000px;}
.y43{bottom:118.759500px;}
.y1a3{bottom:118.789500px;}
.y142{bottom:118.840500px;}
.y268{bottom:118.887000px;}
.y207{bottom:119.868000px;}
.y1df{bottom:122.938500px;}
.y119{bottom:130.306500px;}
.y159{bottom:131.535000px;}
.y1c{bottom:133.083000px;}
.y8d{bottom:134.521500px;}
.y205{bottom:136.647000px;}
.y1c1{bottom:136.938000px;}
.yb3{bottom:137.230500px;}
.y1a2{bottom:137.371500px;}
.y141{bottom:137.475000px;}
.y267{bottom:137.566500px;}
.y25f{bottom:140.704500px;}
.y180{bottom:140.782500px;}
.y42{bottom:141.562500px;}
.y118{bottom:146.745000px;}
.y1b{bottom:149.521500px;}
.y158{bottom:150.216000px;}
.y8c{bottom:151.678500px;}
.y22a{bottom:152.572500px;}
.y204{bottom:154.867500px;}
.y1c0{bottom:155.304000px;}
.yb2{bottom:155.742000px;}
.y1a1{bottom:155.955000px;}
.y1de{bottom:155.964000px;}
.y140{bottom:156.109500px;}
.y25e{bottom:158.826000px;}
.y17f{bottom:158.944500px;}
.y41{bottom:160.114500px;}
.y117{bottom:163.183500px;}
.y1a{bottom:165.960000px;}
.y23d{bottom:167.293500px;}
.ycf{bottom:168.195000px;}
.y8b{bottom:168.835500px;}
.y157{bottom:168.895500px;}
.y228{bottom:169.011000px;}
.y229{bottom:170.308500px;}
.y1dd{bottom:172.402500px;}
.y203{bottom:173.088000px;}
.y1bf{bottom:173.668500px;}
.yf1{bottom:173.673000px;}
.yb1{bottom:174.253500px;}
.y1a0{bottom:174.537000px;}
.y13f{bottom:174.744000px;}
.y25d{bottom:176.949000px;}
.y17e{bottom:177.106500px;}
.y40{bottom:178.666500px;}
.y116{bottom:179.622000px;}
.y19{bottom:182.398500px;}
.y23c{bottom:185.973000px;}
.y8a{bottom:185.992500px;}
.yce{bottom:186.874500px;}
.y156{bottom:187.575000px;}
.y1dc{bottom:188.841000px;}
.y202{bottom:191.307000px;}
.y66{bottom:191.827500px;}
.yf0{bottom:192.352500px;}
.yb0{bottom:192.765000px;}
.y19f{bottom:193.119000px;}
.y13e{bottom:193.378500px;}
.y17d{bottom:195.268500px;}
.y115{bottom:196.060500px;}
.y1be{bottom:196.287000px;}
.y3f{bottom:197.218500px;}
.y18{bottom:198.837000px;}
.y25c{bottom:199.323000px;}
.y227{bottom:202.038000px;}
.y89{bottom:203.149500px;}
.y23b{bottom:204.654000px;}
.y1db{bottom:205.279500px;}
.ycd{bottom:205.555500px;}
.y155{bottom:206.256000px;}
.y65{bottom:210.507000px;}
.yef{bottom:211.032000px;}
.yaf{bottom:211.276500px;}
.y13d{bottom:212.013000px;}
.y114{bottom:212.499000px;}
.y17c{bottom:213.430500px;}
.y1bd{bottom:214.651500px;}
.y17{bottom:215.275500px;}
.y3e{bottom:215.770500px;}
.y25b{bottom:217.446000px;}
.y226{bottom:218.476500px;}
.y88{bottom:220.306500px;}
.y1da{bottom:221.718000px;}
.y23a{bottom:223.333500px;}
.ycc{bottom:224.235000px;}
.y154{bottom:224.935500px;}
.y113{bottom:228.937500px;}
.y201{bottom:229.026000px;}
.y64{bottom:229.188000px;}
.yee{bottom:229.711500px;}
.yae{bottom:229.788000px;}
.y13c{bottom:230.647500px;}
.y19d{bottom:231.564000px;}
.y17b{bottom:231.592500px;}
.y16{bottom:231.714000px;}
.y19e{bottom:232.860000px;}
.y1bb{bottom:233.017500px;}
.y3d{bottom:234.322500px;}
.y1bc{bottom:234.459000px;}
.y225{bottom:234.913500px;}
.y25a{bottom:235.569000px;}
.y87{bottom:237.463500px;}
.y1d9{bottom:238.156500px;}
.y239{bottom:242.013000px;}
.ycb{bottom:242.914500px;}
.y153{bottom:243.615000px;}
.y112{bottom:245.376000px;}
.y1ff{bottom:245.464500px;}
.y200{bottom:246.762000px;}
.y63{bottom:247.867500px;}
.y15{bottom:248.152500px;}
.yad{bottom:248.298000px;}
.yed{bottom:248.392500px;}
.y13b{bottom:249.282000px;}
.y17a{bottom:249.754500px;}
.y224{bottom:251.352000px;}
.y1ba{bottom:251.383500px;}
.y3c{bottom:252.874500px;}
.y1d8{bottom:254.595000px;}
.y86{bottom:254.619000px;}
.y259{bottom:257.943000px;}
.y238{bottom:260.692500px;}
.yca{bottom:261.595500px;}
.y111{bottom:261.813000px;}
.y152{bottom:262.296000px;}
.y19c{bottom:264.589500px;}
.y14{bottom:264.591000px;}
.y62{bottom:266.547000px;}
.yac{bottom:266.809500px;}
.y223{bottom:267.790500px;}
.y13a{bottom:267.916500px;}
.y1b9{bottom:269.749500px;}
.y1d7{bottom:271.033500px;}
.yec{bottom:271.324500px;}
.y85{bottom:271.776000px;}
.y1d6{bottom:272.329500px;}
.y258{bottom:276.066000px;}
.y110{bottom:278.251500px;}
.y1fe{bottom:278.491500px;}
.y237{bottom:279.373500px;}
.yc9{bottom:280.275000px;}
.y19b{bottom:281.028000px;}
.y13{bottom:281.029500px;}
.y61{bottom:285.228000px;}
.yab{bottom:285.321000px;}
.y179{bottom:286.078500px;}
.y139{bottom:286.549500px;}
.y1b8{bottom:288.114000px;}
.y84{bottom:288.933000px;}
.yeb{bottom:290.004000px;}
.y3b{bottom:290.478000px;}
.y10f{bottom:294.690000px;}
.y1fd{bottom:294.930000px;}
.y12{bottom:297.466500px;}
.y236{bottom:298.053000px;}
.y257{bottom:298.440000px;}
.yc8{bottom:298.954500px;}
.y222{bottom:299.083500px;}
.yaa{bottom:303.832500px;}
.y151{bottom:303.907500px;}
.y1d5{bottom:304.806000px;}
.y138{bottom:305.184000px;}
.y83{bottom:306.090000px;}
.y60{bottom:308.158500px;}
.yea{bottom:308.683500px;}
.y1b7{bottom:310.732500px;}
.y10e{bottom:311.128500px;}
.y1fc{bottom:311.367000px;}
.y11{bottom:313.905000px;}
.y221{bottom:316.111500px;}
.y256{bottom:316.563000px;}
.y235{bottom:316.732500px;}
.yc7{bottom:317.634000px;}
.ya9{bottom:322.344000px;}
.y150{bottom:322.587000px;}
.y82{bottom:323.247000px;}
.y1d4{bottom:323.487000px;}
.y178{bottom:323.680500px;}
.y137{bottom:323.818500px;}
.y5f{bottom:326.839500px;}
.ye9{bottom:327.364500px;}
.y10d{bottom:327.567000px;}
.y1fb{bottom:327.805500px;}
.y1b6{bottom:329.097000px;}
.y19a{bottom:330.343500px;}
.y220{bottom:333.141000px;}
.y234{bottom:335.413500px;}
.yc6{bottom:336.315000px;}
.y255{bottom:338.937000px;}
.y176{bottom:340.119000px;}
.y81{bottom:340.404000px;}
.ya8{bottom:340.855500px;}
.y14f{bottom:341.266500px;}
.y177{bottom:341.415000px;}
.y1d3{bottom:342.166500px;}
.y136{bottom:342.453000px;}
.y10c{bottom:344.005500px;}
.y1fa{bottom:344.244000px;}
.y5e{bottom:345.519000px;}
.ye8{bottom:346.044000px;}
.y1b5{bottom:347.463000px;}
.y21f{bottom:350.170500px;}
.y233{bottom:354.093000px;}
.yc5{bottom:354.994500px;}
.y3a{bottom:355.194000px;}
.y10{bottom:355.630500px;}
.y254{bottom:357.060000px;}
.y80{bottom:357.561000px;}
.ya7{bottom:359.367000px;}
.y14e{bottom:359.947500px;}
.y10b{bottom:360.444000px;}
.y1d2{bottom:360.846000px;}
.y134{bottom:361.087500px;}
.y135{bottom:362.527500px;}
.y199{bottom:363.189000px;}
.y5d{bottom:364.198500px;}
.ye7{bottom:364.723500px;}
.y1b3{bottom:365.829000px;}
.y21e{bottom:367.200000px;}
.y1b4{bottom:367.269000px;}
.y232{bottom:372.772500px;}
.y175{bottom:373.144500px;}
.yf{bottom:374.124000px;}
.y7f{bottom:374.718000px;}
.y1f9{bottom:376.728000px;}
.y10a{bottom:376.882500px;}
.ya6{bottom:377.878500px;}
.y14d{bottom:378.627000px;}
.y253{bottom:379.434000px;}
.y1d0{bottom:379.527000px;}
.y133{bottom:379.722000px;}
.y1d1{bottom:380.967000px;}
.y198{bottom:381.771000px;}
.y5c{bottom:382.879500px;}
.ye6{bottom:383.403000px;}
.y1b2{bottom:384.193500px;}
.y21d{bottom:384.229500px;}
.yc4{bottom:387.577500px;}
.y174{bottom:389.583000px;}
.y231{bottom:391.453500px;}
.y7e{bottom:391.875000px;}
.y109{bottom:393.321000px;}
.y39{bottom:393.562500px;}
.y1f8{bottom:394.947000px;}
.ya5{bottom:396.390000px;}
.ye{bottom:396.870000px;}
.y14c{bottom:397.306500px;}
.y252{bottom:397.557000px;}
.y1cf{bottom:398.206500px;}
.y132{bottom:398.356500px;}
.y197{bottom:400.353000px;}
.y21c{bottom:401.257500px;}
.y5b{bottom:401.559000px;}
.ye5{bottom:402.084000px;}
.y1b1{bottom:402.559500px;}
.y173{bottom:406.021500px;}
.y108{bottom:409.759500px;}
.y38{bottom:409.999500px;}
.y230{bottom:410.133000px;}
.y1f7{bottom:413.167500px;}
.y7d{bottom:413.284500px;}
.ya4{bottom:414.901500px;}
.y14b{bottom:415.987500px;}
.y1ce{bottom:416.886000px;}
.y131{bottom:416.991000px;}
.y196{bottom:418.936500px;}
.y251{bottom:419.932500px;}
.y5a{bottom:420.238500px;}
.ye4{bottom:420.763500px;}
.y172{bottom:422.460000px;}
.y21b{bottom:422.539500px;}
.y1b0{bottom:425.178000px;}
.y107{bottom:426.198000px;}
.y37{bottom:426.438000px;}
.y22f{bottom:428.812500px;}
.y7c{bottom:430.441500px;}
.y1f6{bottom:431.388000px;}
.yc3{bottom:433.065000px;}
.y14a{bottom:434.667000px;}
.y1cd{bottom:435.565500px;}
.y195{bottom:437.518500px;}
.ya3{bottom:437.665500px;}
.y250{bottom:438.054000px;}
.y171{bottom:438.898500px;}
.y59{bottom:438.919500px;}
.ye3{bottom:439.443000px;}
.y21a{bottom:439.567500px;}
.y130{bottom:439.876500px;}
.y106{bottom:442.635000px;}
.y36{bottom:442.876500px;}
.y1af{bottom:443.542500px;}
.yd{bottom:444.126000px;}
.y22e{bottom:447.492000px;}
.y7b{bottom:447.598500px;}
.y1f5{bottom:449.608500px;}
.yc2{bottom:451.744500px;}
.y149{bottom:453.346500px;}
.y1cc{bottom:454.246500px;}
.y194{bottom:456.100500px;}
.ya2{bottom:456.177000px;}
.y219{bottom:456.597000px;}
.y58{bottom:457.599000px;}
.ye2{bottom:458.124000px;}
.y12f{bottom:458.511000px;}
.y105{bottom:459.073500px;}
.y35{bottom:459.315000px;}
.y24f{bottom:460.429500px;}
.y1ae{bottom:461.908500px;}
.yc{bottom:462.619500px;}
.y7a{bottom:464.755500px;}
.y1f3{bottom:467.829000px;}
.y1f4{bottom:469.269000px;}
.yc1{bottom:470.424000px;}
.y170{bottom:471.322500px;}
.y148{bottom:472.027500px;}
.y1cb{bottom:472.926000px;}
.y218{bottom:473.626500px;}
.y193{bottom:474.684000px;}
.ya1{bottom:474.688500px;}
.y104{bottom:475.512000px;}
.y34{bottom:475.753500px;}
.y57{bottom:476.278500px;}
.ye1{bottom:476.803500px;}
.y12e{bottom:477.145500px;}
.y24e{bottom:478.551000px;}
.y1ad{bottom:480.274500px;}
.y79{bottom:481.912500px;}
.y22d{bottom:485.223000px;}
.yb{bottom:485.365500px;}
.y1f2{bottom:486.048000px;}
.yc0{bottom:489.105000px;}
.y16f{bottom:489.484500px;}
.ya0{bottom:490.501500px;}
.y217{bottom:490.656000px;}
.y147{bottom:490.707000px;}
.y1ca{bottom:491.605500px;}
.y103{bottom:491.950500px;}
.y33{bottom:492.192000px;}
.y9f{bottom:493.200000px;}
.y191{bottom:493.266000px;}
.y192{bottom:494.707500px;}
.y56{bottom:494.958000px;}
.y12d{bottom:495.780000px;}
.y102{bottom:497.664000px;}
.y1ab{bottom:498.639000px;}
.y78{bottom:499.069500px;}
.ye0{bottom:499.735500px;}
.y1ac{bottom:500.080500px;}
.y24d{bottom:500.926500px;}
.y1f1{bottom:504.268500px;}
.y16e{bottom:507.646500px;}
.ybf{bottom:507.784500px;}
.y32{bottom:508.630500px;}
.y1c9{bottom:510.286500px;}
.y9e{bottom:511.711500px;}
.y190{bottom:511.849500px;}
.y216{bottom:511.936500px;}
.y55{bottom:513.639000px;}
.y12c{bottom:514.414500px;}
.y77{bottom:516.226500px;}
.y1aa{bottom:517.005000px;}
.ydf{bottom:518.415000px;}
.y24c{bottom:519.048000px;}
.y1f0{bottom:522.489000px;}
.y31{bottom:525.069000px;}
.y16d{bottom:525.808500px;}
.ybe{bottom:526.464000px;}
.y16c{bottom:527.250000px;}
.y215{bottom:528.966000px;}
.y9d{bottom:530.223000px;}
.y18f{bottom:530.431500px;}
.y54{bottom:532.318500px;}
.ya{bottom:532.621500px;}
.y12b{bottom:533.049000px;}
.y146{bottom:533.758500px;}
.y1a9{bottom:535.371000px;}
.yde{bottom:537.096000px;}
.y76{bottom:537.636000px;}
.y1ee{bottom:540.709500px;}
.y24b{bottom:541.423500px;}
.y30{bottom:541.507500px;}
.y1ef{bottom:542.149500px;}
.y16b{bottom:543.970500px;}
.y16a{bottom:545.412000px;}
.y9c{bottom:548.734500px;}
.y18e{bottom:549.013500px;}
.y53{bottom:550.998000px;}
.y9{bottom:551.115000px;}
.y12a{bottom:551.683500px;}
.y75{bottom:554.793000px;}
.y101{bottom:554.880000px;}
.ydd{bottom:555.775500px;}
.y2f{bottom:557.946000px;}
.y1a8{bottom:557.988000px;}
.y1ed{bottom:558.928500px;}
.y24a{bottom:559.546500px;}
.y169{bottom:562.132500px;}
.ybd{bottom:564.195000px;}
.y9b{bottom:567.246000px;}
.y18d{bottom:567.597000px;}
.y52{bottom:569.679000px;}
.y129{bottom:570.316500px;}
.y74{bottom:571.950000px;}
.y100{bottom:573.559500px;}
.y8{bottom:573.861000px;}
.y2e{bottom:574.383000px;}
.ydc{bottom:574.455000px;}
.y1a7{bottom:576.354000px;}
.y249{bottom:577.668000px;}
.y168{bottom:580.294500px;}
.y9a{bottom:585.757500px;}
.y18c{bottom:586.179000px;}
.y51{bottom:588.358500px;}
.y128{bottom:588.951000px;}
.y73{bottom:589.107000px;}
.y2d{bottom:590.821500px;}
.yff{bottom:592.239000px;}
.ydb{bottom:593.134500px;}
.y1a6{bottom:594.720000px;}
.y1ec{bottom:596.647500px;}
.y167{bottom:598.456500px;}
.y248{bottom:600.043500px;}
.y99{bottom:604.269000px;}
.y1c8{bottom:605.761500px;}
.y72{bottom:606.264000px;}
.y50{bottom:607.038000px;}
.y2c{bottom:607.260000px;}
.y127{bottom:607.585500px;}
.y18b{bottom:609.013500px;}
.yfd{bottom:610.920000px;}
.ybc{bottom:611.290500px;}
.yda{bottom:611.815500px;}
.yfe{bottom:612.360000px;}
.y1ea{bottom:613.086000px;}
.y1eb{bottom:614.383500px;}
.y166{bottom:616.618500px;}
.y247{bottom:618.165000px;}
.y7{bottom:621.117000px;}
.y71{bottom:623.421000px;}
.y2b{bottom:623.698500px;}
.y214{bottom:624.441000px;}
.y4f{bottom:625.719000px;}
.y126{bottom:626.220000px;}
.y98{bottom:627.033000px;}
.y18a{bottom:627.595500px;}
.yfc{bottom:629.599500px;}
.ybb{bottom:629.970000px;}
.yd9{bottom:630.495000px;}
.y165{bottom:634.780500px;}
.y1c7{bottom:638.787000px;}
.y6{bottom:639.610500px;}
.y2a{bottom:640.137000px;}
.y246{bottom:640.540500px;}
.y70{bottom:640.578000px;}
.y212{bottom:640.879500px;}
.y213{bottom:642.175500px;}
.y4e{bottom:644.398500px;}
.y125{bottom:644.854500px;}
.y97{bottom:645.544500px;}
.y1e9{bottom:646.113000px;}
.yfb{bottom:648.279000px;}
.yba{bottom:648.649500px;}
.yd8{bottom:649.174500px;}
.y266{bottom:650.322000px;}
.y164{bottom:652.942500px;}
.y1c6{bottom:655.225500px;}
.y29{bottom:656.575500px;}
.y210{bottom:657.318000px;}
.y6f{bottom:657.735000px;}
.y211{bottom:658.614000px;}
.y245{bottom:658.662000px;}
.y5{bottom:662.356500px;}
.y1e8{bottom:662.550000px;}
.y4d{bottom:663.078000px;}
.y124{bottom:663.489000px;}
.y96{bottom:664.056000px;}
.yfa{bottom:666.960000px;}
.yb9{bottom:667.330500px;}
.y265{bottom:669.003000px;}
.y163{bottom:671.104500px;}
.y1c5{bottom:671.664000px;}
.yd7{bottom:672.106500px;}
.y28{bottom:673.014000px;}
.y20f{bottom:673.756500px;}
.y6e{bottom:674.892000px;}
.y20e{bottom:675.052500px;}
.y244{bottom:676.785000px;}
.y1e7{bottom:678.988500px;}
.y4c{bottom:681.757500px;}
.y123{bottom:682.123500px;}
.y95{bottom:682.567500px;}
.yf9{bottom:685.639500px;}
.yb8{bottom:686.010000px;}
.y264{bottom:687.682500px;}
.y1c4{bottom:688.102500px;}
.y162{bottom:689.266500px;}
.y27{bottom:689.452500px;}
.y1a5{bottom:690.195000px;}
.yd6{bottom:690.787500px;}
.y20d{bottom:691.491000px;}
.y1e6{bottom:695.427000px;}
.y6d{bottom:696.300000px;}
.y243{bottom:699.159000px;}
.y4b{bottom:700.438500px;}
.y94{bottom:701.079000px;}
.yf8{bottom:704.319000px;}
.y1c3{bottom:704.541000px;}
.yb7{bottom:704.689500px;}
.y122{bottom:705.009000px;}
.y26{bottom:705.891000px;}
.y1a4{bottom:706.633500px;}
.y161{bottom:707.428500px;}
.yd5{bottom:709.467000px;}
.y263{bottom:710.614500px;}
.y1e5{bottom:711.865500px;}
.y6c{bottom:713.457000px;}
.y242{bottom:717.282000px;}
.y4a{bottom:719.118000px;}
.y25{bottom:722.329500px;}
.yf7{bottom:723.000000px;}
.y189{bottom:723.070500px;}
.y20c{bottom:723.220500px;}
.yb6{bottom:723.370500px;}
.y121{bottom:723.643500px;}
.y93{bottom:723.841500px;}
.y15f{bottom:725.589000px;}
.y160{bottom:727.030500px;}
.yd4{bottom:728.146500px;}
.y262{bottom:729.294000px;}
.y6b{bottom:730.614000px;}
.y4{bottom:735.861000px;}
.y49{bottom:737.797500px;}
.y187{bottom:739.509000px;}
.y241{bottom:739.657500px;}
.y20b{bottom:739.659000px;}
.y188{bottom:740.806500px;}
.yf6{bottom:741.679500px;}
.yb5{bottom:742.050000px;}
.y120{bottom:742.278000px;}
.y92{bottom:742.353000px;}
.y22c{bottom:743.490000px;}
.y15e{bottom:743.751000px;}
.y1e4{bottom:744.349500px;}
.yd3{bottom:746.826000px;}
.y6a{bottom:747.771000px;}
.y261{bottom:752.226000px;}
.y20a{bottom:756.097500px;}
.y145{bottom:756.478500px;}
.y240{bottom:757.779000px;}
.yf5{bottom:760.359000px;}
.y48{bottom:760.729500px;}
.y91{bottom:760.864500px;}
.y11e{bottom:760.912500px;}
.y15d{bottom:761.913000px;}
.y3{bottom:761.919000px;}
.y11f{bottom:762.352500px;}
.y1e3{bottom:762.568500px;}
.y24{bottom:764.206500px;}
.y69{bottom:764.928000px;}
.yd2{bottom:765.507000px;}
.y186{bottom:772.536000px;}
.y144{bottom:775.158000px;}
.yf3{bottom:779.038500px;}
.y90{bottom:779.376000px;}
.y47{bottom:779.410500px;}
.y11d{bottom:779.547000px;}
.y15c{bottom:780.075000px;}
.y23f{bottom:780.154500px;}
.y1e2{bottom:780.789000px;}
.y68{bottom:782.085000px;}
.yd1{bottom:784.186500px;}
.yf4{bottom:784.462500px;}
.y185{bottom:788.974500px;}
.y143{bottom:793.837500px;}
.yf2{bottom:797.719500px;}
.y8f{bottom:797.887500px;}
.y46{bottom:798.090000px;}
.y11c{bottom:798.181500px;}
.y15b{bottom:798.237000px;}
.y23e{bottom:798.276000px;}
.y1e1{bottom:799.009500px;}
.y67{bottom:799.242000px;}
.y23{bottom:802.573500px;}
.yd0{bottom:802.866000px;}
.y184{bottom:805.413000px;}
.y45{bottom:816.769500px;}
.y11b{bottom:816.816000px;}
.y1e0{bottom:817.230000px;}
.y22{bottom:819.012000px;}
.y183{bottom:821.851500px;}
.y21{bottom:835.449000px;}
.y182{bottom:838.288500px;}
.y209{bottom:839.586000px;}
.y2{bottom:849.939000px;}
.y20{bottom:864.277500px;}
.y1{bottom:864.285000px;}
.y44{bottom:882.210000px;}
.h12{height:24.245146px;}
.he{height:32.553698px;}
.h2{height:35.865000px;}
.h8{height:35.865450px;}
.h15{height:37.874074px;}
.h6{height:38.141364px;}
.ha{height:38.143066px;}
.h14{height:40.402598px;}
.h16{height:41.855155px;}
.hd{height:44.891476px;}
.h13{height:46.505417px;}
.h17{height:47.045155px;}
.h7{height:49.008156px;}
.h9{height:49.010342px;}
.h10{height:49.090950px;}
.h11{height:50.923679px;}
.h4{height:51.215220px;}
.hf{height:53.379611px;}
.hc{height:54.336020px;}
.h5{height:54.338202px;}
.hb{height:58.450958px;}
.h3{height:64.557000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x14{left:83.835000px;}
.x11{left:85.584000px;}
.x29{left:92.802000px;}
.x18{left:94.551000px;}
.x37{left:96.702000px;}
.x4f{left:103.477500px;}
.x5b{left:105.397500px;}
.x15{left:108.000000px;}
.x5c{left:109.299000px;}
.x5d{left:112.371000px;}
.x27{left:114.496500px;}
.x19{left:116.967000px;}
.x95{left:121.063500px;}
.xdc{left:122.454000px;}
.xae{left:124.135500px;}
.xdd{left:126.217500px;}
.x69{left:127.723500px;}
.xde{left:129.289500px;}
.x6a{left:130.794000px;}
.x96{left:131.892000px;}
.x97{left:134.964000px;}
.xdf{left:136.438500px;}
.x8a{left:138.294000px;}
.xf3{left:140.230500px;}
.x8b{left:142.180500px;}
.x3{left:143.602500px;}
.x12{left:145.656000px;}
.xa4{left:147.078000px;}
.x8c{left:149.137500px;}
.x74{left:150.991500px;}
.xf{left:154.623000px;}
.x38{left:155.790000px;}
.xc3{left:158.656500px;}
.x28{left:160.590000px;}
.x39{left:163.179000px;}
.x50{left:164.691000px;}
.x32{left:166.747500px;}
.xd2{left:170.016000px;}
.x3a{left:171.315000px;}
.xd3{left:173.088000px;}
.xcd{left:174.316500px;}
.xe4{left:176.739000px;}
.xa5{left:178.560000px;}
.x3b{left:182.938500px;}
.xa6{left:185.086500px;}
.xe7{left:186.154500px;}
.x2d{left:187.512000px;}
.xc4{left:189.132000px;}
.x8{left:192.123000px;}
.xe8{left:194.557500px;}
.x16{left:197.170500px;}
.x2a{left:198.312000px;}
.xe9{left:200.700000px;}
.x51{left:201.858000px;}
.xaf{left:204.040500px;}
.x1a{left:206.137500px;}
.x1{left:207.793500px;}
.xe5{left:209.200500px;}
.xb{left:210.237000px;}
.x13{left:211.789500px;}
.xce{left:214.063500px;}
.xc5{left:215.673000px;}
.x4{left:217.270500px;}
.x52{left:219.091500px;}
.xeb{left:220.794000px;}
.x75{left:222.378000px;}
.x17{left:223.776000px;}
.xf6{left:224.955000px;}
.x53{left:226.002000px;}
.xb6{left:227.670000px;}
.x10{left:229.536000px;}
.xf1{left:230.673000px;}
.x2{left:232.288500px;}
.xb7{left:234.636000px;}
.x6b{left:236.731500px;}
.xb0{left:237.876000px;}
.x7{left:239.610000px;}
.xf2{left:240.684000px;}
.x76{left:242.886000px;}
.x98{left:244.551000px;}
.xd4{left:246.135000px;}
.xd{left:248.244000px;}
.x6{left:252.501000px;}
.xf7{left:255.082500px;}
.xa{left:256.308000px;}
.x5{left:257.793000px;}
.x9{left:259.515000px;}
.x6c{left:262.128000px;}
.x8d{left:263.662500px;}
.x5e{left:266.416500px;}
.x8e{left:267.547500px;}
.x46{left:270.367500px;}
.xf9{left:272.425500px;}
.x8f{left:274.122000px;}
.xe{left:275.269500px;}
.x99{left:277.227000px;}
.xbb{left:279.438000px;}
.x90{left:280.648500px;}
.x9a{left:283.371000px;}
.xe2{left:285.595500px;}
.xf5{left:286.776000px;}
.xc{left:287.829000px;}
.x2e{left:290.005500px;}
.x5f{left:291.726000px;}
.xbf{left:293.751000px;}
.xd7{left:294.843000px;}
.x9b{left:295.920000px;}
.x91{left:297.673500px;}
.x60{left:299.529000px;}
.xbc{left:300.786000px;}
.x2b{left:302.812500px;}
.x2c{left:304.126500px;}
.x61{left:305.671500px;}
.x48{left:307.891500px;}
.x35{left:310.846500px;}
.x23{left:312.697500px;}
.x54{left:314.485500px;}
.xc6{left:316.662000px;}
.x55{left:318.402000px;}
.x24{left:319.962000px;}
.x49{left:322.089000px;}
.xc7{left:323.572500px;}
.xcf{left:324.808500px;}
.x30{left:326.974500px;}
.xe0{left:328.377000px;}
.xe1{left:331.449000px;}
.xa7{left:332.667000px;}
.xb1{left:334.969500px;}
.x33{left:336.001500px;}
.x56{left:339.237000px;}
.x6d{left:341.667000px;}
.xe3{left:342.930000px;}
.x25{left:346.069500px;}
.xf4{left:348.342000px;}
.x26{left:353.125500px;}
.x2f{left:354.309000px;}
.x1f{left:357.012000px;}
.xb2{left:359.524500px;}
.xb8{left:363.112500px;}
.x20{left:364.276500px;}
.x77{left:367.408500px;}
.x47{left:368.902500px;}
.xec{left:370.387500px;}
.xc8{left:372.963000px;}
.x4a{left:374.305500px;}
.x62{left:375.751500px;}
.x3c{left:377.107500px;}
.x6e{left:378.843000px;}
.x78{left:381.285000px;}
.x6f{left:382.761000px;}
.x79{left:384.357000px;}
.x70{left:385.831500px;}
.xef{left:387.666000px;}
.x21{left:388.857000px;}
.xa8{left:390.291000px;}
.x7a{left:391.755000px;}
.xed{left:393.046500px;}
.x9c{left:394.176000px;}
.x22{left:395.914500px;}
.x7b{left:397.899000px;}
.xee{left:399.178500px;}
.xe6{left:403.134000px;}
.x57{left:404.361000px;}
.xd5{left:406.477500px;}
.x45{left:407.578500px;}
.x84{left:410.329500px;}
.xc9{left:411.774000px;}
.xa9{left:412.867500px;}
.xca{left:414.846000px;}
.x9d{left:416.787000px;}
.xaa{left:419.779500px;}
.x9e{left:422.929500px;}
.x36{left:424.438500px;}
.xb3{left:425.556000px;}
.x63{left:427.068000px;}
.xd8{left:429.814500px;}
.xb9{left:431.457000px;}
.x92{left:434.119500px;}
.x93{left:437.190000px;}
.x64{left:438.381000px;}
.xd9{left:440.883000px;}
.x3d{left:442.227000px;}
.x65{left:445.293000px;}
.x58{left:446.485500px;}
.xda{left:447.795000px;}
.x59{left:449.557500px;}
.x94{left:451.105500px;}
.x66{left:452.266500px;}
.xdb{left:454.683000px;}
.x67{left:460.069500px;}
.x3e{left:462.235500px;}
.xd0{left:463.606500px;}
.x68{left:466.212000px;}
.x1b{left:467.652000px;}
.x3f{left:469.293000px;}
.xab{left:471.916500px;}
.x40{left:473.377500px;}
.x1c{left:474.709500px;}
.x41{left:476.698500px;}
.x34{left:478.191000px;}
.xd6{left:479.509500px;}
.x9f{left:481.303500px;}
.x4b{left:483.378000px;}
.x42{left:484.867500px;}
.xb4{left:486.138000px;}
.xea{left:487.461000px;}
.xf0{left:490.219500px;}
.x43{left:491.509500px;}
.x44{left:497.641500px;}
.xd1{left:498.663000px;}
.x1d{left:500.328000px;}
.xcb{left:501.376500px;}
.x85{left:504.555000px;}
.x1e{left:506.970000px;}
.xb5{left:509.245500px;}
.x86{left:511.005000px;}
.xa0{left:513.738000px;}
.xac{left:516.370500px;}
.x87{left:517.533000px;}
.xa1{left:520.266000px;}
.xba{left:521.286000px;}
.xad{left:523.359000px;}
.x7c{left:525.001500px;}
.xa2{left:527.254500px;}
.x88{left:528.822000px;}
.xbd{left:531.415500px;}
.x7d{left:532.788000px;}
.xbe{left:534.487500px;}
.x89{left:535.734000px;}
.xc0{left:537.525000px;}
.x7e{left:538.932000px;}
.xa3{left:540.048000px;}
.xc1{left:541.441500px;}
.x7f{left:542.824500px;}
.x4c{left:544.437000px;}
.x5a{left:545.977500px;}
.x71{left:547.554000px;}
.xcc{left:549.030000px;}
.x31{left:551.266500px;}
.xc2{left:552.346500px;}
.x80{left:553.684500px;}
.x4d{left:556.186500px;}
.x72{left:558.067500px;}
.x81{left:559.828500px;}
.xf8{left:561.990000px;}
.x4e{left:563.098500px;}
.x73{left:564.978000px;}
.x82{left:575.401500px;}
.x83{left:582.313500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.608000pt;}
.ls4{letter-spacing:-1.386741pt;}
.ls3{letter-spacing:-0.531360pt;}
.ls2{letter-spacing:-0.000170pt;}
.ls1{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000174pt;}
.ls5{letter-spacing:0.000292pt;}
.ls3f{letter-spacing:0.000348pt;}
.ls32{letter-spacing:0.000370pt;}
.ls34{letter-spacing:0.000495pt;}
.ls24{letter-spacing:0.000594pt;}
.ls21{letter-spacing:0.000755pt;}
.ls12{letter-spacing:0.000842pt;}
.ls29{letter-spacing:0.000978pt;}
.ls35{letter-spacing:0.001583pt;}
.ls13{letter-spacing:0.001990pt;}
.ls14{letter-spacing:0.001992pt;}
.ls10{letter-spacing:0.002022pt;}
.lsa{letter-spacing:0.002587pt;}
.ls4a{letter-spacing:0.003849pt;}
.ls28{letter-spacing:0.162328pt;}
.ls23{letter-spacing:0.164837pt;}
.ls45{letter-spacing:0.165099pt;}
.ls26{letter-spacing:0.167666pt;}
.lsc{letter-spacing:0.179435pt;}
.ls9{letter-spacing:0.180915pt;}
.ls7{letter-spacing:0.181627pt;}
.ls16{letter-spacing:0.184789pt;}
.ls31{letter-spacing:0.185789pt;}
.ls19{letter-spacing:1.445729pt;}
.lsd{letter-spacing:2.656473pt;}
.ls36{letter-spacing:11.262852pt;}
.ls20{letter-spacing:13.454105pt;}
.ls1f{letter-spacing:13.644292pt;}
.ls1e{letter-spacing:14.627966pt;}
.ls48{letter-spacing:15.415242pt;}
.ls49{letter-spacing:15.580347pt;}
.ls47{letter-spacing:15.585789pt;}
.ls22{letter-spacing:15.966741pt;}
.ls42{letter-spacing:16.353324pt;}
.ls37{letter-spacing:16.379261pt;}
.ls27{letter-spacing:16.450355pt;}
.ls41{letter-spacing:16.522484pt;}
.ls1d{letter-spacing:16.548837pt;}
.ls2a{letter-spacing:16.605437pt;}
.ls1c{letter-spacing:16.749776pt;}
.ls43{letter-spacing:16.919869pt;}
.ls39{letter-spacing:17.109105pt;}
.ls2d{letter-spacing:17.203476pt;}
.ls3e{letter-spacing:17.360036pt;}
.ls3c{letter-spacing:17.363573pt;}
.ls30{letter-spacing:17.475152pt;}
.ls2b{letter-spacing:17.495033pt;}
.ls2f{letter-spacing:17.518091pt;}
.ls3d{letter-spacing:17.542138pt;}
.ls6{letter-spacing:17.640444pt;}
.lsb{letter-spacing:17.685877pt;}
.ls2e{letter-spacing:17.700968pt;}
.ls0{letter-spacing:17.708153pt;}
.ls40{letter-spacing:17.755629pt;}
.lsf{letter-spacing:17.758168pt;}
.ls18{letter-spacing:17.760937pt;}
.ls2c{letter-spacing:17.893197pt;}
.ls4b{letter-spacing:17.917575pt;}
.ls15{letter-spacing:17.919986pt;}
.ls17{letter-spacing:17.940163pt;}
.lse{letter-spacing:17.951152pt;}
.ls11{letter-spacing:17.972786pt;}
.ls38{letter-spacing:18.079666pt;}
.ls4c{letter-spacing:18.215168pt;}
.ls46{letter-spacing:18.279346pt;}
.ls3a{letter-spacing:18.889216pt;}
.ls3b{letter-spacing:18.900254pt;}
.ls33{letter-spacing:21.201235pt;}
.ls8{letter-spacing:24.714960pt;}
.ls25{letter-spacing:63.760495pt;}
.ls1b{letter-spacing:86.159503pt;}
.ls1a{letter-spacing:108.394170pt;}
.ws80{word-spacing:-44.207377pt;}
.ws16a{word-spacing:-43.676038pt;}
.ws16e{word-spacing:-43.464325pt;}
.ws141{word-spacing:-41.025464pt;}
.wsc6{word-spacing:-30.551973pt;}
.wsd{word-spacing:-29.373581pt;}
.ws47{word-spacing:-29.372401pt;}
.wsd1{word-spacing:-28.295567pt;}
.ws5b{word-spacing:-27.156719pt;}
.wsa{word-spacing:-26.568000pt;}
.ws8c{word-spacing:-26.566933pt;}
.ws3f{word-spacing:-26.435338pt;}
.ws1e{word-spacing:-26.434159pt;}
.wse3{word-spacing:-25.091574pt;}
.ws1a{word-spacing:-25.090454pt;}
.wsd2{word-spacing:-24.575109pt;}
.ws4e{word-spacing:-23.319450pt;}
.ws0{word-spacing:-23.319157pt;}
.ws8d{word-spacing:-21.178036pt;}
.ws8e{word-spacing:-20.560622pt;}
.ws7f{word-spacing:-17.709518pt;}
.wsce{word-spacing:-16.383406pt;}
.ws12a{word-spacing:-15.903032pt;}
.ws182{word-spacing:-15.411973pt;}
.ws164{word-spacing:-15.178368pt;}
.ws5c{word-spacing:-14.505546pt;}
.ws162{word-spacing:-14.399278pt;}
.wsfc{word-spacing:-14.248610pt;}
.ws187{word-spacing:-13.975238pt;}
.ws65{word-spacing:-13.974207pt;}
.wsf7{word-spacing:-13.949290pt;}
.ws63{word-spacing:-13.814805pt;}
.ws8b{word-spacing:-13.761671pt;}
.wsb3{word-spacing:-13.753225pt;}
.wsbf{word-spacing:-13.726014pt;}
.ws97{word-spacing:-13.602270pt;}
.ws120{word-spacing:-13.496002pt;}
.ws9c{word-spacing:-13.339619pt;}
.ws163{word-spacing:-13.337221pt;}
.ws5a{word-spacing:-13.230333pt;}
.ws12b{word-spacing:-13.124065pt;}
.ws5f{word-spacing:-13.070931pt;}
.ws31{word-spacing:-12.859013pt;}
.ws127{word-spacing:-12.858396pt;}
.wsc8{word-spacing:-12.822203pt;}
.wsb0{word-spacing:-12.752128pt;}
.ws10a{word-spacing:-12.688705pt;}
.ws10b{word-spacing:-12.626785pt;}
.wsc5{word-spacing:-12.620015pt;}
.wsc7{word-spacing:-12.616896pt;}
.ws17a{word-spacing:-12.612096pt;}
.wse9{word-spacing:-12.600896pt;}
.ws181{word-spacing:-12.592726pt;}
.ws30{word-spacing:-12.572088pt;}
.ws2{word-spacing:-12.516083pt;}
.ws94{word-spacing:-12.486459pt;}
.ws93{word-spacing:-12.433325pt;}
.wsa6{word-spacing:-12.327057pt;}
.ws98{word-spacing:-12.220789pt;}
.wseb{word-spacing:-12.218922pt;}
.ws9d{word-spacing:-12.186154pt;}
.ws3e{word-spacing:-12.141701pt;}
.wsd6{word-spacing:-12.093880pt;}
.ws174{word-spacing:-12.008672pt;}
.ws171{word-spacing:-12.008254pt;}
.ws194{word-spacing:-11.960433pt;}
.ws11f{word-spacing:-11.945306pt;}
.ws12c{word-spacing:-11.909640pt;}
.ws12d{word-spacing:-11.904412pt;}
.ws110{word-spacing:-11.848852pt;}
.ws137{word-spacing:-11.817352pt;}
.ws67{word-spacing:-11.813493pt;}
.ws128{word-spacing:-11.801032pt;}
.ws1b{word-spacing:-11.760312pt;}
.wsad{word-spacing:-11.744783pt;}
.ws179{word-spacing:-11.715630pt;}
.ws57{word-spacing:-11.694966pt;}
.ws60{word-spacing:-11.689451pt;}
.ws101{word-spacing:-11.676438pt;}
.ws6b{word-spacing:-11.675882pt;}
.ws138{word-spacing:-11.668803pt;}
.ws16b{word-spacing:-11.661565pt;}
.ws73{word-spacing:-11.659861pt;}
.ws9a{word-spacing:-11.659286pt;}
.ws99{word-spacing:-11.658942pt;}
.ws6e{word-spacing:-11.654527pt;}
.ws55{word-spacing:-11.621016pt;}
.ws85{word-spacing:-11.583183pt;}
.wsc1{word-spacing:-11.530049pt;}
.wsfb{word-spacing:-11.481667pt;}
.ws166{word-spacing:-11.480167pt;}
.wsb1{word-spacing:-11.478831pt;}
.wsbe{word-spacing:-11.476915pt;}
.ws146{word-spacing:-11.465196pt;}
.wsf5{word-spacing:-11.445889pt;}
.ws50{word-spacing:-11.419233pt;}
.ws109{word-spacing:-11.411266pt;}
.wsde{word-spacing:-11.328748pt;}
.ws136{word-spacing:-11.285309pt;}
.ws18a{word-spacing:-11.264380pt;}
.wsf8{word-spacing:-11.211246pt;}
.wsfa{word-spacing:-11.208987pt;}
.ws66{word-spacing:-11.170918pt;}
.wsaa{word-spacing:-11.158112pt;}
.ws1c{word-spacing:-11.137535pt;}
.wsab{word-spacing:-11.104978pt;}
.ws70{word-spacing:-10.998710pt;}
.ws123{word-spacing:-10.945577pt;}
.ws9e{word-spacing:-10.892443pt;}
.wse8{word-spacing:-10.839309pt;}
.ws69{word-spacing:-10.786175pt;}
.wsfe{word-spacing:-10.701797pt;}
.wsc2{word-spacing:-10.679907pt;}
.ws135{word-spacing:-10.620970pt;}
.ws111{word-spacing:-10.414238pt;}
.ws185{word-spacing:-10.361104pt;}
.wsb9{word-spacing:-10.254836pt;}
.ws124{word-spacing:-10.133228pt;}
.ws5e{word-spacing:-10.095435pt;}
.ws165{word-spacing:-10.049551pt;}
.ws8a{word-spacing:-10.042301pt;}
.ws7e{word-spacing:-9.989167pt;}
.ws23{word-spacing:-9.988189pt;}
.ws25{word-spacing:-9.983586pt;}
.ws139{word-spacing:-9.936033pt;}
.wsb7{word-spacing:-9.882899pt;}
.wsc0{word-spacing:-9.829765pt;}
.ws126{word-spacing:-9.776631pt;}
.ws186{word-spacing:-9.723498pt;}
.ws46{word-spacing:-9.670364pt;}
.ws7a{word-spacing:-9.578710pt;}
.ws149{word-spacing:-9.564096pt;}
.ws3{word-spacing:-9.564000pt;}
.ws32{word-spacing:-9.559378pt;}
.wsff{word-spacing:-9.510962pt;}
.wse0{word-spacing:-9.463736pt;}
.wsbb{word-spacing:-9.457828pt;}
.wsd7{word-spacing:-9.454172pt;}
.wsa0{word-spacing:-9.413889pt;}
.ws151{word-spacing:-9.404694pt;}
.ws14b{word-spacing:-9.298427pt;}
.ws144{word-spacing:-9.289893pt;}
.ws150{word-spacing:-9.245293pt;}
.ws19{word-spacing:-9.225462pt;}
.wsc3{word-spacing:-9.213677pt;}
.ws52{word-spacing:-9.192159pt;}
.ws17c{word-spacing:-9.176812pt;}
.ws62{word-spacing:-9.139025pt;}
.ws17d{word-spacing:-9.128991pt;}
.ws143{word-spacing:-9.096428pt;}
.ws4b{word-spacing:-9.085891pt;}
.ws14d{word-spacing:-9.050835pt;}
.wsdc{word-spacing:-9.033349pt;}
.ws4d{word-spacing:-9.032757pt;}
.ws4c{word-spacing:-8.979623pt;}
.ws53{word-spacing:-8.926490pt;}
.wsa1{word-spacing:-8.907644pt;}
.ws75{word-spacing:-8.889619pt;}
.wsf{word-spacing:-8.887331pt;}
.ws4{word-spacing:-8.884285pt;}
.wsb{word-spacing:-8.879532pt;}
.ws7{word-spacing:-8.879180pt;}
.wse{word-spacing:-8.878362pt;}
.ws6{word-spacing:-8.875847pt;}
.ws49{word-spacing:-8.873356pt;}
.ws148{word-spacing:-8.856046pt;}
.ws54{word-spacing:-8.820222pt;}
.ws56{word-spacing:-8.818338pt;}
.ws134{word-spacing:-8.794245pt;}
.ws58{word-spacing:-8.767088pt;}
.ws5d{word-spacing:-8.713954pt;}
.ws168{word-spacing:-8.672493pt;}
.ws14a{word-spacing:-8.663118pt;}
.ws9{word-spacing:-8.662759pt;}
.wsf4{word-spacing:-8.662629pt;}
.ws86{word-spacing:-8.660820pt;}
.ws4f{word-spacing:-8.607686pt;}
.ws35{word-spacing:-8.555141pt;}
.ws61{word-spacing:-8.554553pt;}
.ws19d{word-spacing:-8.506732pt;}
.ws84{word-spacing:-8.501419pt;}
.ws100{word-spacing:-8.460561pt;}
.wsd3{word-spacing:-8.459500pt;}
.ws72{word-spacing:-8.448285pt;}
.wsd5{word-spacing:-8.411679pt;}
.wsf9{word-spacing:-8.408722pt;}
.ws81{word-spacing:-8.395151pt;}
.ws26{word-spacing:-8.364382pt;}
.ws42{word-spacing:-8.363858pt;}
.ws33{word-spacing:-8.316037pt;}
.ws193{word-spacing:-8.294197pt;}
.ws6f{word-spacing:-8.288883pt;}
.wsdf{word-spacing:-8.268216pt;}
.ws102{word-spacing:-8.235749pt;}
.ws2f{word-spacing:-8.220396pt;}
.ws11b{word-spacing:-8.216818pt;}
.ws125{word-spacing:-8.211485pt;}
.ws5{word-spacing:-8.192846pt;}
.ws177{word-spacing:-8.190119pt;}
.ws18f{word-spacing:-8.187929pt;}
.ws152{word-spacing:-8.182615pt;}
.ws2d{word-spacing:-8.172575pt;}
.ws19a{word-spacing:-8.134795pt;}
.ws10f{word-spacing:-8.129482pt;}
.wse1{word-spacing:-8.124754pt;}
.ws12{word-spacing:-8.090652pt;}
.wsdd{word-spacing:-8.086497pt;}
.ws2c{word-spacing:-8.076933pt;}
.wsbd{word-spacing:-8.076348pt;}
.ws18{word-spacing:-8.031829pt;}
.ws36{word-spacing:-8.029112pt;}
.ws192{word-spacing:-8.028527pt;}
.ws45{word-spacing:-8.023214pt;}
.ws1f{word-spacing:-7.984168pt;}
.ws41{word-spacing:-7.981292pt;}
.ws1d{word-spacing:-7.978849pt;}
.ws8{word-spacing:-7.970094pt;}
.ws64{word-spacing:-7.970080pt;}
.ws16{word-spacing:-7.937873pt;}
.ws22{word-spacing:-7.934889pt;}
.ws14{word-spacing:-7.934212pt;}
.ws158{word-spacing:-7.933471pt;}
.ws20{word-spacing:-7.931958pt;}
.wsfd{word-spacing:-7.916946pt;}
.wse2{word-spacing:-7.885650pt;}
.ws195{word-spacing:-7.869126pt;}
.ws95{word-spacing:-7.863812pt;}
.wsb8{word-spacing:-7.846690pt;}
.ws3c{word-spacing:-7.837829pt;}
.ws183{word-spacing:-7.810678pt;}
.wsc{word-spacing:-7.761458pt;}
.ws7d{word-spacing:-7.757545pt;}
.wsb5{word-spacing:-7.719772pt;}
.ws11d{word-spacing:-7.704411pt;}
.ws7c{word-spacing:-7.651277pt;}
.ws17{word-spacing:-7.559933pt;}
.ws199{word-spacing:-7.550322pt;}
.ws170{word-spacing:-7.537551pt;}
.ws1{word-spacing:-7.536528pt;}
.ws29{word-spacing:-7.536527pt;}
.ws27{word-spacing:-7.536373pt;}
.ws16f{word-spacing:-7.532323pt;}
.ws76{word-spacing:-7.460568pt;}
.ws145{word-spacing:-7.455263pt;}
.ws154{word-spacing:-7.438741pt;}
.ws115{word-spacing:-7.429367pt;}
.ws142{word-spacing:-7.263980pt;}
.ws105{word-spacing:-7.226206pt;}
.ws114{word-spacing:-7.197032pt;}
.ws106{word-spacing:-7.168705pt;}
.ws24{word-spacing:-7.168050pt;}
.ws6a{word-spacing:-7.119938pt;}
.wsbc{word-spacing:-7.014037pt;}
.ws10c{word-spacing:-7.013670pt;}
.ws2a{word-spacing:-6.996685pt;}
.wsc4{word-spacing:-6.976738pt;}
.wsae{word-spacing:-6.960537pt;}
.ws48{word-spacing:-6.907403pt;}
.wsdb{word-spacing:-6.833592pt;}
.ws7b{word-spacing:-6.801135pt;}
.ws79{word-spacing:-6.748001pt;}
.ws153{word-spacing:-6.638314pt;}
.ws87{word-spacing:-6.588599pt;}
.ws51{word-spacing:-6.535466pt;}
.wsac{word-spacing:-6.479370pt;}
.ws43{word-spacing:-6.464934pt;}
.ws176{word-spacing:-6.451026pt;}
.ws2e{word-spacing:-6.446824pt;}
.ws19b{word-spacing:-6.429198pt;}
.wse4{word-spacing:-6.393641pt;}
.ws18c{word-spacing:-6.384065pt;}
.ws71{word-spacing:-6.376064pt;}
.ws92{word-spacing:-6.269796pt;}
.ws169{word-spacing:-6.260216pt;}
.wsf1{word-spacing:-6.216662pt;}
.wsf3{word-spacing:-6.115708pt;}
.ws16c{word-spacing:-6.110395pt;}
.ws147{word-spacing:-6.057261pt;}
.ws19c{word-spacing:-5.956306pt;}
.ws108{word-spacing:-5.950993pt;}
.ws3b{word-spacing:-5.924997pt;}
.ws167{word-spacing:-5.897859pt;}
.wsf2{word-spacing:-5.844725pt;}
.ws10e{word-spacing:-5.791591pt;}
.wse7{word-spacing:-5.787147pt;}
.ws16d{word-spacing:-5.685893pt;}
.ws96{word-spacing:-5.632190pt;}
.ws172{word-spacing:-5.580148pt;}
.ws173{word-spacing:-5.579056pt;}
.ws11e{word-spacing:-5.525922pt;}
.ws40{word-spacing:-5.494610pt;}
.ws104{word-spacing:-5.472788pt;}
.ws2b{word-spacing:-5.446789pt;}
.ws107{word-spacing:-5.419654pt;}
.ws178{word-spacing:-5.313387pt;}
.ws68{word-spacing:-5.260253pt;}
.ws17e{word-spacing:-5.207119pt;}
.ws15{word-spacing:-5.159388pt;}
.ws21{word-spacing:-5.159249pt;}
.ws112{word-spacing:-5.153985pt;}
.wsb4{word-spacing:-5.100851pt;}
.wsf6{word-spacing:-4.941450pt;}
.ws59{word-spacing:-4.888316pt;}
.ws78{word-spacing:-4.835182pt;}
.ws184{word-spacing:-4.782048pt;}
.ws14e{word-spacing:-4.675780pt;}
.ws6c{word-spacing:-4.622646pt;}
.ws88{word-spacing:-4.569513pt;}
.wscb{word-spacing:-4.547115pt;}
.wscd{word-spacing:-4.544509pt;}
.wsef{word-spacing:-4.516379pt;}
.wsa3{word-spacing:-4.356977pt;}
.ws82{word-spacing:-4.197575pt;}
.ws83{word-spacing:-4.144442pt;}
.wse5{word-spacing:-4.107807pt;}
.wsa2{word-spacing:-4.038174pt;}
.ws11c{word-spacing:-3.985040pt;}
.wsd4{word-spacing:-3.964344pt;}
.ws9f{word-spacing:-3.931906pt;}
.wsba{word-spacing:-3.825638pt;}
.ws89{word-spacing:-3.772505pt;}
.wsb2{word-spacing:-3.559969pt;}
.ws37{word-spacing:-3.486136pt;}
.ws197{word-spacing:-3.400567pt;}
.ws180{word-spacing:-3.241166pt;}
.ws198{word-spacing:-3.193345pt;}
.wsf0{word-spacing:-3.188032pt;}
.ws103{word-spacing:-3.134898pt;}
.ws14f{word-spacing:-3.081764pt;}
.wscf{word-spacing:-3.038618pt;}
.ws18e{word-spacing:-3.028630pt;}
.wsb6{word-spacing:-2.975497pt;}
.ws19f{word-spacing:-2.970131pt;}
.ws113{word-spacing:-2.922363pt;}
.wsa7{word-spacing:-2.883349pt;}
.wsa8{word-spacing:-2.869229pt;}
.ws3d{word-spacing:-2.768824pt;}
.ws188{word-spacing:-2.762961pt;}
.ws13{word-spacing:-2.681639pt;}
.wse6{word-spacing:-2.656693pt;}
.ws196{word-spacing:-2.550426pt;}
.ws10{word-spacing:-2.493418pt;}
.ws14c{word-spacing:-2.444158pt;}
.ws11{word-spacing:-2.440371pt;}
.ws17b{word-spacing:-2.391024pt;}
.ws34{word-spacing:-2.242796pt;}
.ws190{word-spacing:-2.178489pt;}
.ws91{word-spacing:-2.125355pt;}
.ws191{word-spacing:-2.077534pt;}
.wsa9{word-spacing:-2.072221pt;}
.ws8f{word-spacing:-2.038007pt;}
.ws90{word-spacing:-2.019087pt;}
.ws6d{word-spacing:-1.753418pt;}
.wsd8{word-spacing:-1.668946pt;}
.wsda{word-spacing:-1.621125pt;}
.ws4a{word-spacing:-1.594016pt;}
.ws38{word-spacing:-1.577607pt;}
.ws3a{word-spacing:-1.573304pt;}
.wsa5{word-spacing:-1.434614pt;}
.wscc{word-spacing:-1.286380pt;}
.ws18d{word-spacing:-1.115811pt;}
.ws175{word-spacing:-1.095096pt;}
.wsca{word-spacing:-0.865556pt;}
.wsd0{word-spacing:-0.808172pt;}
.ws9b{word-spacing:-0.547279pt;}
.ws39{word-spacing:-0.451843pt;}
.wsed{word-spacing:-0.341028pt;}
.wsee{word-spacing:-0.333761pt;}
.wsc9{word-spacing:-0.004780pt;}
.ws28{word-spacing:0.000000pt;}
.wsea{word-spacing:0.037194pt;}
.ws74{word-spacing:0.106268pt;}
.ws77{word-spacing:1.487748pt;}
.ws19e{word-spacing:1.700284pt;}
.wsec{word-spacing:1.912819pt;}
.ws189{word-spacing:2.231622pt;}
.ws129{word-spacing:2.550426pt;}
.ws10d{word-spacing:2.869229pt;}
.wsaf{word-spacing:3.241166pt;}
.ws18b{word-spacing:4.038174pt;}
.wsa4{word-spacing:5.525922pt;}
.ws17f{word-spacing:6.110395pt;}
.ws159{word-spacing:8.554553pt;}
.wsd9{word-spacing:17.555016pt;}
.ws44{word-spacing:33.454573pt;}
.ws157{word-spacing:35.449559pt;}
.ws11a{word-spacing:35.497380pt;}
.ws15d{word-spacing:37.326449pt;}
.ws161{word-spacing:38.127524pt;}
.ws13a{word-spacing:38.755965pt;}
.ws13c{word-spacing:39.170017pt;}
.ws130{word-spacing:40.375101pt;}
.ws133{word-spacing:40.805489pt;}
.ws15c{word-spacing:40.944169pt;}
.ws140{word-spacing:40.948951pt;}
.ws15b{word-spacing:42.392073pt;}
.ws118{word-spacing:44.765051pt;}
.ws131{word-spacing:45.578004pt;}
.ws119{word-spacing:50.360084pt;}
.ws160{word-spacing:51.125217pt;}
.ws132{word-spacing:51.938171pt;}
.ws13f{word-spacing:52.129454pt;}
.ws12f{word-spacing:53.695423pt;}
.ws15f{word-spacing:57.533204pt;}
.ws15e{word-spacing:58.260081pt;}
.ws13e{word-spacing:60.354632pt;}
.ws117{word-spacing:63.329085pt;}
.ws13d{word-spacing:64.333322pt;}
.ws13b{word-spacing:64.998031pt;}
.ws155{word-spacing:65.184106pt;}
.ws122{word-spacing:65.189439pt;}
.ws12e{word-spacing:74.943181pt;}
.ws116{word-spacing:79.513847pt;}
.ws15a{word-spacing:86.420514pt;}
.ws121{word-spacing:86.425847pt;}
.ws156{word-spacing:164.626447pt;}
._1c{margin-left:-27.904566pt;}
._23{margin-left:-26.907214pt;}
._21{margin-left:-25.782116pt;}
._1d{margin-left:-24.795781pt;}
._2f{margin-left:-23.340078pt;}
._20{margin-left:-21.590753pt;}
._1b{margin-left:-20.244003pt;}
._30{margin-left:-19.266508pt;}
._22{margin-left:-17.640444pt;}
._4d{margin-left:-16.302824pt;}
._2e{margin-left:-7.491875pt;}
._1a{margin-left:-5.791591pt;}
._d{margin-left:-4.520867pt;}
._0{margin-left:-3.485547pt;}
._6{margin-left:-2.571903pt;}
._1{margin-left:-1.239813pt;}
._2{width:1.319060pt;}
._e{width:2.571903pt;}
._29{width:4.463245pt;}
._a{width:12.788076pt;}
._14{width:13.770958pt;}
._7{width:14.804323pt;}
._2d{width:16.312097pt;}
._9{width:17.249361pt;}
._12{width:18.848600pt;}
._1e{width:20.031468pt;}
._13{width:21.156565pt;}
._5{width:22.179610pt;}
._4{width:23.450507pt;}
._c{width:24.624185pt;}
._27{width:25.519744pt;}
._10{width:26.543361pt;}
._1f{width:27.834606pt;}
._18{width:29.020378pt;}
._f{width:30.020386pt;}
._59{width:31.614651pt;}
._28{width:33.810874pt;}
._17{width:35.024505pt;}
._b{width:36.388101pt;}
._24{width:38.150116pt;}
._33{width:39.346305pt;}
._3{width:40.451072pt;}
._32{width:41.391282pt;}
._2c{width:42.644776pt;}
._31{width:43.552106pt;}
._26{width:44.685582pt;}
._2b{width:47.027284pt;}
._19{width:55.152954pt;}
._5a{width:57.331442pt;}
._2a{width:59.461868pt;}
._5b{width:62.591695pt;}
._16{width:66.909147pt;}
._50{width:69.193170pt;}
._55{width:70.153114pt;}
._54{width:72.831078pt;}
._35{width:74.788204pt;}
._3c{width:76.366290pt;}
._38{width:79.286886pt;}
._51{width:80.725038pt;}
._37{width:81.964851pt;}
._52{width:82.917740pt;}
._4a{width:85.411476pt;}
._58{width:87.081677pt;}
._44{width:88.082386pt;}
._53{width:89.281434pt;}
._3f{width:91.624653pt;}
._56{width:93.875758pt;}
._46{width:95.067750pt;}
._3b{width:96.358912pt;}
._4c{width:97.315328pt;}
._45{width:98.702131pt;}
._57{width:101.284454pt;}
._49{width:102.527795pt;}
._48{width:106.592563pt;}
._41{width:112.378880pt;}
._40{width:113.430938pt;}
._4b{width:116.539290pt;}
._43{width:118.299083pt;}
._3a{width:119.312896pt;}
._4f{width:122.038682pt;}
._47{width:125.816525pt;}
._42{width:126.964224pt;}
._39{width:136.863130pt;}
._3e{width:139.541094pt;}
._36{width:146.188186pt;}
._3d{width:147.814093pt;}
._4e{width:151.827513pt;}
._34{width:157.905874pt;}
._15{width:505.368101pt;}
._25{width:517.140553pt;}
._8{width:527.981931pt;}
._11{width:539.721886pt;}
.fsa{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs0{font-size:42.506667pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.818667pt;}
.fs6{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.136000pt;}
.fs7{font-size:58.181867pt;}
.fs2{font-size:63.760000pt;}
.fs1{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.836000pt;}
.y1e{bottom:89.073333pt;}
.y208{bottom:90.353333pt;}
.y15a{bottom:100.316000pt;}
.y11a{bottom:101.216000pt;}
.y1d{bottom:103.684000pt;}
.y22b{bottom:104.209333pt;}
.y8e{bottom:104.324000pt;}
.y260{bottom:105.181333pt;}
.y181{bottom:105.217333pt;}
.y206{bottom:105.268000pt;}
.y1c2{bottom:105.397333pt;}
.yb4{bottom:105.528000pt;}
.y43{bottom:105.564000pt;}
.y1a3{bottom:105.590667pt;}
.y142{bottom:105.636000pt;}
.y268{bottom:105.677333pt;}
.y207{bottom:106.549333pt;}
.y1df{bottom:109.278667pt;}
.y119{bottom:115.828000pt;}
.y159{bottom:116.920000pt;}
.y1c{bottom:118.296000pt;}
.y8d{bottom:119.574667pt;}
.y205{bottom:121.464000pt;}
.y1c1{bottom:121.722667pt;}
.yb3{bottom:121.982667pt;}
.y1a2{bottom:122.108000pt;}
.y141{bottom:122.200000pt;}
.y267{bottom:122.281333pt;}
.y25f{bottom:125.070667pt;}
.y180{bottom:125.140000pt;}
.y42{bottom:125.833333pt;}
.y118{bottom:130.440000pt;}
.y1b{bottom:132.908000pt;}
.y158{bottom:133.525333pt;}
.y8c{bottom:134.825333pt;}
.y22a{bottom:135.620000pt;}
.y204{bottom:137.660000pt;}
.y1c0{bottom:138.048000pt;}
.yb2{bottom:138.437333pt;}
.y1a1{bottom:138.626667pt;}
.y1de{bottom:138.634667pt;}
.y140{bottom:138.764000pt;}
.y25e{bottom:141.178667pt;}
.y17f{bottom:141.284000pt;}
.y41{bottom:142.324000pt;}
.y117{bottom:145.052000pt;}
.y1a{bottom:147.520000pt;}
.y23d{bottom:148.705333pt;}
.ycf{bottom:149.506667pt;}
.y8b{bottom:150.076000pt;}
.y157{bottom:150.129333pt;}
.y228{bottom:150.232000pt;}
.y229{bottom:151.385333pt;}
.y1dd{bottom:153.246667pt;}
.y203{bottom:153.856000pt;}
.y1bf{bottom:154.372000pt;}
.yf1{bottom:154.376000pt;}
.yb1{bottom:154.892000pt;}
.y1a0{bottom:155.144000pt;}
.y13f{bottom:155.328000pt;}
.y25d{bottom:157.288000pt;}
.y17e{bottom:157.428000pt;}
.y40{bottom:158.814667pt;}
.y116{bottom:159.664000pt;}
.y19{bottom:162.132000pt;}
.y23c{bottom:165.309333pt;}
.y8a{bottom:165.326667pt;}
.yce{bottom:166.110667pt;}
.y156{bottom:166.733333pt;}
.y1dc{bottom:167.858667pt;}
.y202{bottom:170.050667pt;}
.y66{bottom:170.513333pt;}
.yf0{bottom:170.980000pt;}
.yb0{bottom:171.346667pt;}
.y19f{bottom:171.661333pt;}
.y13e{bottom:171.892000pt;}
.y17d{bottom:173.572000pt;}
.y115{bottom:174.276000pt;}
.y1be{bottom:174.477333pt;}
.y3f{bottom:175.305333pt;}
.y18{bottom:176.744000pt;}
.y25c{bottom:177.176000pt;}
.y227{bottom:179.589333pt;}
.y89{bottom:180.577333pt;}
.y23b{bottom:181.914667pt;}
.y1db{bottom:182.470667pt;}
.ycd{bottom:182.716000pt;}
.y155{bottom:183.338667pt;}
.y65{bottom:187.117333pt;}
.yef{bottom:187.584000pt;}
.yaf{bottom:187.801333pt;}
.y13d{bottom:188.456000pt;}
.y114{bottom:188.888000pt;}
.y17c{bottom:189.716000pt;}
.y1bd{bottom:190.801333pt;}
.y17{bottom:191.356000pt;}
.y3e{bottom:191.796000pt;}
.y25b{bottom:193.285333pt;}
.y226{bottom:194.201333pt;}
.y88{bottom:195.828000pt;}
.y1da{bottom:197.082667pt;}
.y23a{bottom:198.518667pt;}
.ycc{bottom:199.320000pt;}
.y154{bottom:199.942667pt;}
.y113{bottom:203.500000pt;}
.y201{bottom:203.578667pt;}
.y64{bottom:203.722667pt;}
.yee{bottom:204.188000pt;}
.yae{bottom:204.256000pt;}
.y13c{bottom:205.020000pt;}
.y19d{bottom:205.834667pt;}
.y17b{bottom:205.860000pt;}
.y16{bottom:205.968000pt;}
.y19e{bottom:206.986667pt;}
.y1bb{bottom:207.126667pt;}
.y3d{bottom:208.286667pt;}
.y1bc{bottom:208.408000pt;}
.y225{bottom:208.812000pt;}
.y25a{bottom:209.394667pt;}
.y87{bottom:211.078667pt;}
.y1d9{bottom:211.694667pt;}
.y239{bottom:215.122667pt;}
.ycb{bottom:215.924000pt;}
.y153{bottom:216.546667pt;}
.y112{bottom:218.112000pt;}
.y1ff{bottom:218.190667pt;}
.y200{bottom:219.344000pt;}
.y63{bottom:220.326667pt;}
.y15{bottom:220.580000pt;}
.yad{bottom:220.709333pt;}
.yed{bottom:220.793333pt;}
.y13b{bottom:221.584000pt;}
.y17a{bottom:222.004000pt;}
.y224{bottom:223.424000pt;}
.y1ba{bottom:223.452000pt;}
.y3c{bottom:224.777333pt;}
.y1d8{bottom:226.306667pt;}
.y86{bottom:226.328000pt;}
.y259{bottom:229.282667pt;}
.y238{bottom:231.726667pt;}
.yca{bottom:232.529333pt;}
.y111{bottom:232.722667pt;}
.y152{bottom:233.152000pt;}
.y19c{bottom:235.190667pt;}
.y14{bottom:235.192000pt;}
.y62{bottom:236.930667pt;}
.yac{bottom:237.164000pt;}
.y223{bottom:238.036000pt;}
.y13a{bottom:238.148000pt;}
.y1b9{bottom:239.777333pt;}
.y1d7{bottom:240.918667pt;}
.yec{bottom:241.177333pt;}
.y85{bottom:241.578667pt;}
.y1d6{bottom:242.070667pt;}
.y258{bottom:245.392000pt;}
.y110{bottom:247.334667pt;}
.y1fe{bottom:247.548000pt;}
.y237{bottom:248.332000pt;}
.yc9{bottom:249.133333pt;}
.y19b{bottom:249.802667pt;}
.y13{bottom:249.804000pt;}
.y61{bottom:253.536000pt;}
.yab{bottom:253.618667pt;}
.y179{bottom:254.292000pt;}
.y139{bottom:254.710667pt;}
.y1b8{bottom:256.101333pt;}
.y84{bottom:256.829333pt;}
.yeb{bottom:257.781333pt;}
.y3b{bottom:258.202667pt;}
.y10f{bottom:261.946667pt;}
.y1fd{bottom:262.160000pt;}
.y12{bottom:264.414667pt;}
.y236{bottom:264.936000pt;}
.y257{bottom:265.280000pt;}
.yc8{bottom:265.737333pt;}
.y222{bottom:265.852000pt;}
.yaa{bottom:270.073333pt;}
.y151{bottom:270.140000pt;}
.y1d5{bottom:270.938667pt;}
.y138{bottom:271.274667pt;}
.y83{bottom:272.080000pt;}
.y60{bottom:273.918667pt;}
.yea{bottom:274.385333pt;}
.y1b7{bottom:276.206667pt;}
.y10e{bottom:276.558667pt;}
.y1fc{bottom:276.770667pt;}
.y11{bottom:279.026667pt;}
.y221{bottom:280.988000pt;}
.y256{bottom:281.389333pt;}
.y235{bottom:281.540000pt;}
.yc7{bottom:282.341333pt;}
.ya9{bottom:286.528000pt;}
.y150{bottom:286.744000pt;}
.y82{bottom:287.330667pt;}
.y1d4{bottom:287.544000pt;}
.y178{bottom:287.716000pt;}
.y137{bottom:287.838667pt;}
.y5f{bottom:290.524000pt;}
.ye9{bottom:290.990667pt;}
.y10d{bottom:291.170667pt;}
.y1fb{bottom:291.382667pt;}
.y1b6{bottom:292.530667pt;}
.y19a{bottom:293.638667pt;}
.y220{bottom:296.125333pt;}
.y234{bottom:298.145333pt;}
.yc6{bottom:298.946667pt;}
.y255{bottom:301.277333pt;}
.y176{bottom:302.328000pt;}
.y81{bottom:302.581333pt;}
.ya8{bottom:302.982667pt;}
.y14f{bottom:303.348000pt;}
.y177{bottom:303.480000pt;}
.y1d3{bottom:304.148000pt;}
.y136{bottom:304.402667pt;}
.y10c{bottom:305.782667pt;}
.y1fa{bottom:305.994667pt;}
.y5e{bottom:307.128000pt;}
.ye8{bottom:307.594667pt;}
.y1b5{bottom:308.856000pt;}
.y21f{bottom:311.262667pt;}
.y233{bottom:314.749333pt;}
.yc5{bottom:315.550667pt;}
.y3a{bottom:315.728000pt;}
.y10{bottom:316.116000pt;}
.y254{bottom:317.386667pt;}
.y80{bottom:317.832000pt;}
.ya7{bottom:319.437333pt;}
.y14e{bottom:319.953333pt;}
.y10b{bottom:320.394667pt;}
.y1d2{bottom:320.752000pt;}
.y134{bottom:320.966667pt;}
.y135{bottom:322.246667pt;}
.y199{bottom:322.834667pt;}
.y5d{bottom:323.732000pt;}
.ye7{bottom:324.198667pt;}
.y1b3{bottom:325.181333pt;}
.y21e{bottom:326.400000pt;}
.y1b4{bottom:326.461333pt;}
.y232{bottom:331.353333pt;}
.y175{bottom:331.684000pt;}
.yf{bottom:332.554667pt;}
.y7f{bottom:333.082667pt;}
.y1f9{bottom:334.869333pt;}
.y10a{bottom:335.006667pt;}
.ya6{bottom:335.892000pt;}
.y14d{bottom:336.557333pt;}
.y253{bottom:337.274667pt;}
.y1d0{bottom:337.357333pt;}
.y133{bottom:337.530667pt;}
.y1d1{bottom:338.637333pt;}
.y198{bottom:339.352000pt;}
.y5c{bottom:340.337333pt;}
.ye6{bottom:340.802667pt;}
.y1b2{bottom:341.505333pt;}
.y21d{bottom:341.537333pt;}
.yc4{bottom:344.513333pt;}
.y174{bottom:346.296000pt;}
.y231{bottom:347.958667pt;}
.y7e{bottom:348.333333pt;}
.y109{bottom:349.618667pt;}
.y39{bottom:349.833333pt;}
.y1f8{bottom:351.064000pt;}
.ya5{bottom:352.346667pt;}
.ye{bottom:352.773333pt;}
.y14c{bottom:353.161333pt;}
.y252{bottom:353.384000pt;}
.y1cf{bottom:353.961333pt;}
.y132{bottom:354.094667pt;}
.y197{bottom:355.869333pt;}
.y21c{bottom:356.673333pt;}
.y5b{bottom:356.941333pt;}
.ye5{bottom:357.408000pt;}
.y1b1{bottom:357.830667pt;}
.y173{bottom:360.908000pt;}
.y108{bottom:364.230667pt;}
.y38{bottom:364.444000pt;}
.y230{bottom:364.562667pt;}
.y1f7{bottom:367.260000pt;}
.y7d{bottom:367.364000pt;}
.ya4{bottom:368.801333pt;}
.y14b{bottom:369.766667pt;}
.y1ce{bottom:370.565333pt;}
.y131{bottom:370.658667pt;}
.y196{bottom:372.388000pt;}
.y251{bottom:373.273333pt;}
.y5a{bottom:373.545333pt;}
.ye4{bottom:374.012000pt;}
.y172{bottom:375.520000pt;}
.y21b{bottom:375.590667pt;}
.y1b0{bottom:377.936000pt;}
.y107{bottom:378.842667pt;}
.y37{bottom:379.056000pt;}
.y22f{bottom:381.166667pt;}
.y7c{bottom:382.614667pt;}
.y1f6{bottom:383.456000pt;}
.yc3{bottom:384.946667pt;}
.y14a{bottom:386.370667pt;}
.y1cd{bottom:387.169333pt;}
.y195{bottom:388.905333pt;}
.ya3{bottom:389.036000pt;}
.y250{bottom:389.381333pt;}
.y171{bottom:390.132000pt;}
.y59{bottom:390.150667pt;}
.ye3{bottom:390.616000pt;}
.y21a{bottom:390.726667pt;}
.y130{bottom:391.001333pt;}
.y106{bottom:393.453333pt;}
.y36{bottom:393.668000pt;}
.y1af{bottom:394.260000pt;}
.yd{bottom:394.778667pt;}
.y22e{bottom:397.770667pt;}
.y7b{bottom:397.865333pt;}
.y1f5{bottom:399.652000pt;}
.yc2{bottom:401.550667pt;}
.y149{bottom:402.974667pt;}
.y1cc{bottom:403.774667pt;}
.y194{bottom:405.422667pt;}
.ya2{bottom:405.490667pt;}
.y219{bottom:405.864000pt;}
.y58{bottom:406.754667pt;}
.ye2{bottom:407.221333pt;}
.y12f{bottom:407.565333pt;}
.y105{bottom:408.065333pt;}
.y35{bottom:408.280000pt;}
.y24f{bottom:409.270667pt;}
.y1ae{bottom:410.585333pt;}
.yc{bottom:411.217333pt;}
.y7a{bottom:413.116000pt;}
.y1f3{bottom:415.848000pt;}
.y1f4{bottom:417.128000pt;}
.yc1{bottom:418.154667pt;}
.y170{bottom:418.953333pt;}
.y148{bottom:419.580000pt;}
.y1cb{bottom:420.378667pt;}
.y218{bottom:421.001333pt;}
.y193{bottom:421.941333pt;}
.ya1{bottom:421.945333pt;}
.y104{bottom:422.677333pt;}
.y34{bottom:422.892000pt;}
.y57{bottom:423.358667pt;}
.ye1{bottom:423.825333pt;}
.y12e{bottom:424.129333pt;}
.y24e{bottom:425.378667pt;}
.y1ad{bottom:426.910667pt;}
.y79{bottom:428.366667pt;}
.y22d{bottom:431.309333pt;}
.yb{bottom:431.436000pt;}
.y1f2{bottom:432.042667pt;}
.yc0{bottom:434.760000pt;}
.y16f{bottom:435.097333pt;}
.ya0{bottom:436.001333pt;}
.y217{bottom:436.138667pt;}
.y147{bottom:436.184000pt;}
.y1ca{bottom:436.982667pt;}
.y103{bottom:437.289333pt;}
.y33{bottom:437.504000pt;}
.y9f{bottom:438.400000pt;}
.y191{bottom:438.458667pt;}
.y192{bottom:439.740000pt;}
.y56{bottom:439.962667pt;}
.y12d{bottom:440.693333pt;}
.y102{bottom:442.368000pt;}
.y1ab{bottom:443.234667pt;}
.y78{bottom:443.617333pt;}
.ye0{bottom:444.209333pt;}
.y1ac{bottom:444.516000pt;}
.y24d{bottom:445.268000pt;}
.y1f1{bottom:448.238667pt;}
.y16e{bottom:451.241333pt;}
.ybf{bottom:451.364000pt;}
.y32{bottom:452.116000pt;}
.y1c9{bottom:453.588000pt;}
.y9e{bottom:454.854667pt;}
.y190{bottom:454.977333pt;}
.y216{bottom:455.054667pt;}
.y55{bottom:456.568000pt;}
.y12c{bottom:457.257333pt;}
.y77{bottom:458.868000pt;}
.y1aa{bottom:459.560000pt;}
.ydf{bottom:460.813333pt;}
.y24c{bottom:461.376000pt;}
.y1f0{bottom:464.434667pt;}
.y31{bottom:466.728000pt;}
.y16d{bottom:467.385333pt;}
.ybe{bottom:467.968000pt;}
.y16c{bottom:468.666667pt;}
.y215{bottom:470.192000pt;}
.y9d{bottom:471.309333pt;}
.y18f{bottom:471.494667pt;}
.y54{bottom:473.172000pt;}
.ya{bottom:473.441333pt;}
.y12b{bottom:473.821333pt;}
.y146{bottom:474.452000pt;}
.y1a9{bottom:475.885333pt;}
.yde{bottom:477.418667pt;}
.y76{bottom:477.898667pt;}
.y1ee{bottom:480.630667pt;}
.y24b{bottom:481.265333pt;}
.y30{bottom:481.340000pt;}
.y1ef{bottom:481.910667pt;}
.y16b{bottom:483.529333pt;}
.y16a{bottom:484.810667pt;}
.y9c{bottom:487.764000pt;}
.y18e{bottom:488.012000pt;}
.y53{bottom:489.776000pt;}
.y9{bottom:489.880000pt;}
.y12a{bottom:490.385333pt;}
.y75{bottom:493.149333pt;}
.y101{bottom:493.226667pt;}
.ydd{bottom:494.022667pt;}
.y2f{bottom:495.952000pt;}
.y1a8{bottom:495.989333pt;}
.y1ed{bottom:496.825333pt;}
.y24a{bottom:497.374667pt;}
.y169{bottom:499.673333pt;}
.ybd{bottom:501.506667pt;}
.y9b{bottom:504.218667pt;}
.y18d{bottom:504.530667pt;}
.y52{bottom:506.381333pt;}
.y129{bottom:506.948000pt;}
.y74{bottom:508.400000pt;}
.y100{bottom:509.830667pt;}
.y8{bottom:510.098667pt;}
.y2e{bottom:510.562667pt;}
.ydc{bottom:510.626667pt;}
.y1a7{bottom:512.314667pt;}
.y249{bottom:513.482667pt;}
.y168{bottom:515.817333pt;}
.y9a{bottom:520.673333pt;}
.y18c{bottom:521.048000pt;}
.y51{bottom:522.985333pt;}
.y128{bottom:523.512000pt;}
.y73{bottom:523.650667pt;}
.y2d{bottom:525.174667pt;}
.yff{bottom:526.434667pt;}
.ydb{bottom:527.230667pt;}
.y1a6{bottom:528.640000pt;}
.y1ec{bottom:530.353333pt;}
.y167{bottom:531.961333pt;}
.y248{bottom:533.372000pt;}
.y99{bottom:537.128000pt;}
.y1c8{bottom:538.454667pt;}
.y72{bottom:538.901333pt;}
.y50{bottom:539.589333pt;}
.y2c{bottom:539.786667pt;}
.y127{bottom:540.076000pt;}
.y18b{bottom:541.345333pt;}
.yfd{bottom:543.040000pt;}
.ybc{bottom:543.369333pt;}
.yda{bottom:543.836000pt;}
.yfe{bottom:544.320000pt;}
.y1ea{bottom:544.965333pt;}
.y1eb{bottom:546.118667pt;}
.y166{bottom:548.105333pt;}
.y247{bottom:549.480000pt;}
.y7{bottom:552.104000pt;}
.y71{bottom:554.152000pt;}
.y2b{bottom:554.398667pt;}
.y214{bottom:555.058667pt;}
.y4f{bottom:556.194667pt;}
.y126{bottom:556.640000pt;}
.y98{bottom:557.362667pt;}
.y18a{bottom:557.862667pt;}
.yfc{bottom:559.644000pt;}
.ybb{bottom:559.973333pt;}
.yd9{bottom:560.440000pt;}
.y165{bottom:564.249333pt;}
.y1c7{bottom:567.810667pt;}
.y6{bottom:568.542667pt;}
.y2a{bottom:569.010667pt;}
.y246{bottom:569.369333pt;}
.y70{bottom:569.402667pt;}
.y212{bottom:569.670667pt;}
.y213{bottom:570.822667pt;}
.y4e{bottom:572.798667pt;}
.y125{bottom:573.204000pt;}
.y97{bottom:573.817333pt;}
.y1e9{bottom:574.322667pt;}
.yfb{bottom:576.248000pt;}
.yba{bottom:576.577333pt;}
.yd8{bottom:577.044000pt;}
.y266{bottom:578.064000pt;}
.y164{bottom:580.393333pt;}
.y1c6{bottom:582.422667pt;}
.y29{bottom:583.622667pt;}
.y210{bottom:584.282667pt;}
.y6f{bottom:584.653333pt;}
.y211{bottom:585.434667pt;}
.y245{bottom:585.477333pt;}
.y5{bottom:588.761333pt;}
.y1e8{bottom:588.933333pt;}
.y4d{bottom:589.402667pt;}
.y124{bottom:589.768000pt;}
.y96{bottom:590.272000pt;}
.yfa{bottom:592.853333pt;}
.yb9{bottom:593.182667pt;}
.y265{bottom:594.669333pt;}
.y163{bottom:596.537333pt;}
.y1c5{bottom:597.034667pt;}
.yd7{bottom:597.428000pt;}
.y28{bottom:598.234667pt;}
.y20f{bottom:598.894667pt;}
.y6e{bottom:599.904000pt;}
.y20e{bottom:600.046667pt;}
.y244{bottom:601.586667pt;}
.y1e7{bottom:603.545333pt;}
.y4c{bottom:606.006667pt;}
.y123{bottom:606.332000pt;}
.y95{bottom:606.726667pt;}
.yf9{bottom:609.457333pt;}
.yb8{bottom:609.786667pt;}
.y264{bottom:611.273333pt;}
.y1c4{bottom:611.646667pt;}
.y162{bottom:612.681333pt;}
.y27{bottom:612.846667pt;}
.y1a5{bottom:613.506667pt;}
.yd6{bottom:614.033333pt;}
.y20d{bottom:614.658667pt;}
.y1e6{bottom:618.157333pt;}
.y6d{bottom:618.933333pt;}
.y243{bottom:621.474667pt;}
.y4b{bottom:622.612000pt;}
.y94{bottom:623.181333pt;}
.yf8{bottom:626.061333pt;}
.y1c3{bottom:626.258667pt;}
.yb7{bottom:626.390667pt;}
.y122{bottom:626.674667pt;}
.y26{bottom:627.458667pt;}
.y1a4{bottom:628.118667pt;}
.y161{bottom:628.825333pt;}
.yd5{bottom:630.637333pt;}
.y263{bottom:631.657333pt;}
.y1e5{bottom:632.769333pt;}
.y6c{bottom:634.184000pt;}
.y242{bottom:637.584000pt;}
.y4a{bottom:639.216000pt;}
.y25{bottom:642.070667pt;}
.yf7{bottom:642.666667pt;}
.y189{bottom:642.729333pt;}
.y20c{bottom:642.862667pt;}
.yb6{bottom:642.996000pt;}
.y121{bottom:643.238667pt;}
.y93{bottom:643.414667pt;}
.y15f{bottom:644.968000pt;}
.y160{bottom:646.249333pt;}
.yd4{bottom:647.241333pt;}
.y262{bottom:648.261333pt;}
.y6b{bottom:649.434667pt;}
.y4{bottom:654.098667pt;}
.y49{bottom:655.820000pt;}
.y187{bottom:657.341333pt;}
.y241{bottom:657.473333pt;}
.y20b{bottom:657.474667pt;}
.y188{bottom:658.494667pt;}
.yf6{bottom:659.270667pt;}
.yb5{bottom:659.600000pt;}
.y120{bottom:659.802667pt;}
.y92{bottom:659.869333pt;}
.y22c{bottom:660.880000pt;}
.y15e{bottom:661.112000pt;}
.y1e4{bottom:661.644000pt;}
.yd3{bottom:663.845333pt;}
.y6a{bottom:664.685333pt;}
.y261{bottom:668.645333pt;}
.y20a{bottom:672.086667pt;}
.y145{bottom:672.425333pt;}
.y240{bottom:673.581333pt;}
.yf5{bottom:675.874667pt;}
.y48{bottom:676.204000pt;}
.y91{bottom:676.324000pt;}
.y11e{bottom:676.366667pt;}
.y15d{bottom:677.256000pt;}
.y3{bottom:677.261333pt;}
.y11f{bottom:677.646667pt;}
.y1e3{bottom:677.838667pt;}
.y24{bottom:679.294667pt;}
.y69{bottom:679.936000pt;}
.yd2{bottom:680.450667pt;}
.y186{bottom:686.698667pt;}
.y144{bottom:689.029333pt;}
.yf3{bottom:692.478667pt;}
.y90{bottom:692.778667pt;}
.y47{bottom:692.809333pt;}
.y11d{bottom:692.930667pt;}
.y15c{bottom:693.400000pt;}
.y23f{bottom:693.470667pt;}
.y1e2{bottom:694.034667pt;}
.y68{bottom:695.186667pt;}
.yd1{bottom:697.054667pt;}
.yf4{bottom:697.300000pt;}
.y185{bottom:701.310667pt;}
.y143{bottom:705.633333pt;}
.yf2{bottom:709.084000pt;}
.y8f{bottom:709.233333pt;}
.y46{bottom:709.413333pt;}
.y11c{bottom:709.494667pt;}
.y15b{bottom:709.544000pt;}
.y23e{bottom:709.578667pt;}
.y1e1{bottom:710.230667pt;}
.y67{bottom:710.437333pt;}
.y23{bottom:713.398667pt;}
.yd0{bottom:713.658667pt;}
.y184{bottom:715.922667pt;}
.y45{bottom:726.017333pt;}
.y11b{bottom:726.058667pt;}
.y1e0{bottom:726.426667pt;}
.y22{bottom:728.010667pt;}
.y183{bottom:730.534667pt;}
.y21{bottom:742.621333pt;}
.y182{bottom:745.145333pt;}
.y209{bottom:746.298667pt;}
.y2{bottom:755.501333pt;}
.y20{bottom:768.246667pt;}
.y1{bottom:768.253333pt;}
.y44{bottom:784.186667pt;}
.h12{height:21.551241pt;}
.he{height:28.936621pt;}
.h2{height:31.880000pt;}
.h8{height:31.880400pt;}
.h15{height:33.665843pt;}
.h6{height:33.903435pt;}
.ha{height:33.904947pt;}
.h14{height:35.913421pt;}
.h16{height:37.204582pt;}
.hd{height:39.903534pt;}
.h13{height:41.338148pt;}
.h17{height:41.817916pt;}
.h7{height:43.562805pt;}
.h9{height:43.564749pt;}
.h10{height:43.636400pt;}
.h11{height:45.265492pt;}
.h4{height:45.524640pt;}
.hf{height:47.448543pt;}
.hc{height:48.298685pt;}
.h5{height:48.300624pt;}
.hb{height:51.956407pt;}
.h3{height:57.384000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x14{left:74.520000pt;}
.x11{left:76.074667pt;}
.x29{left:82.490667pt;}
.x18{left:84.045333pt;}
.x37{left:85.957333pt;}
.x4f{left:91.980000pt;}
.x5b{left:93.686667pt;}
.x15{left:96.000000pt;}
.x5c{left:97.154667pt;}
.x5d{left:99.885333pt;}
.x27{left:101.774667pt;}
.x19{left:103.970667pt;}
.x95{left:107.612000pt;}
.xdc{left:108.848000pt;}
.xae{left:110.342667pt;}
.xdd{left:112.193333pt;}
.x69{left:113.532000pt;}
.xde{left:114.924000pt;}
.x6a{left:116.261333pt;}
.x96{left:117.237333pt;}
.x97{left:119.968000pt;}
.xdf{left:121.278667pt;}
.x8a{left:122.928000pt;}
.xf3{left:124.649333pt;}
.x8b{left:126.382667pt;}
.x3{left:127.646667pt;}
.x12{left:129.472000pt;}
.xa4{left:130.736000pt;}
.x8c{left:132.566667pt;}
.x74{left:134.214667pt;}
.xf{left:137.442667pt;}
.x38{left:138.480000pt;}
.xc3{left:141.028000pt;}
.x28{left:142.746667pt;}
.x39{left:145.048000pt;}
.x50{left:146.392000pt;}
.x32{left:148.220000pt;}
.xd2{left:151.125333pt;}
.x3a{left:152.280000pt;}
.xd3{left:153.856000pt;}
.xcd{left:154.948000pt;}
.xe4{left:157.101333pt;}
.xa5{left:158.720000pt;}
.x3b{left:162.612000pt;}
.xa6{left:164.521333pt;}
.xe7{left:165.470667pt;}
.x2d{left:166.677333pt;}
.xc4{left:168.117333pt;}
.x8{left:170.776000pt;}
.xe8{left:172.940000pt;}
.x16{left:175.262667pt;}
.x2a{left:176.277333pt;}
.xe9{left:178.400000pt;}
.x51{left:179.429333pt;}
.xaf{left:181.369333pt;}
.x1a{left:183.233333pt;}
.x1{left:184.705333pt;}
.xe5{left:185.956000pt;}
.xb{left:186.877333pt;}
.x13{left:188.257333pt;}
.xce{left:190.278667pt;}
.xc5{left:191.709333pt;}
.x4{left:193.129333pt;}
.x52{left:194.748000pt;}
.xeb{left:196.261333pt;}
.x75{left:197.669333pt;}
.x17{left:198.912000pt;}
.xf6{left:199.960000pt;}
.x53{left:200.890667pt;}
.xb6{left:202.373333pt;}
.x10{left:204.032000pt;}
.xf1{left:205.042667pt;}
.x2{left:206.478667pt;}
.xb7{left:208.565333pt;}
.x6b{left:210.428000pt;}
.xb0{left:211.445333pt;}
.x7{left:212.986667pt;}
.xf2{left:213.941333pt;}
.x76{left:215.898667pt;}
.x98{left:217.378667pt;}
.xd4{left:218.786667pt;}
.xd{left:220.661333pt;}
.x6{left:224.445333pt;}
.xf7{left:226.740000pt;}
.xa{left:227.829333pt;}
.x5{left:229.149333pt;}
.x9{left:230.680000pt;}
.x6c{left:233.002667pt;}
.x8d{left:234.366667pt;}
.x5e{left:236.814667pt;}
.x8e{left:237.820000pt;}
.x46{left:240.326667pt;}
.xf9{left:242.156000pt;}
.x8f{left:243.664000pt;}
.xe{left:244.684000pt;}
.x99{left:246.424000pt;}
.xbb{left:248.389333pt;}
.x90{left:249.465333pt;}
.x9a{left:251.885333pt;}
.xe2{left:253.862667pt;}
.xf5{left:254.912000pt;}
.xc{left:255.848000pt;}
.x2e{left:257.782667pt;}
.x5f{left:259.312000pt;}
.xbf{left:261.112000pt;}
.xd7{left:262.082667pt;}
.x9b{left:263.040000pt;}
.x91{left:264.598667pt;}
.x60{left:266.248000pt;}
.xbc{left:267.365333pt;}
.x2b{left:269.166667pt;}
.x2c{left:270.334667pt;}
.x61{left:271.708000pt;}
.x48{left:273.681333pt;}
.x35{left:276.308000pt;}
.x23{left:277.953333pt;}
.x54{left:279.542667pt;}
.xc6{left:281.477333pt;}
.x55{left:283.024000pt;}
.x24{left:284.410667pt;}
.x49{left:286.301333pt;}
.xc7{left:287.620000pt;}
.xcf{left:288.718667pt;}
.x30{left:290.644000pt;}
.xe0{left:291.890667pt;}
.xe1{left:294.621333pt;}
.xa7{left:295.704000pt;}
.xb1{left:297.750667pt;}
.x33{left:298.668000pt;}
.x56{left:301.544000pt;}
.x6d{left:303.704000pt;}
.xe3{left:304.826667pt;}
.x25{left:307.617333pt;}
.xf4{left:309.637333pt;}
.x26{left:313.889333pt;}
.x2f{left:314.941333pt;}
.x1f{left:317.344000pt;}
.xb2{left:319.577333pt;}
.xb8{left:322.766667pt;}
.x20{left:323.801333pt;}
.x77{left:326.585333pt;}
.x47{left:327.913333pt;}
.xec{left:329.233333pt;}
.xc8{left:331.522667pt;}
.x4a{left:332.716000pt;}
.x62{left:334.001333pt;}
.x3c{left:335.206667pt;}
.x6e{left:336.749333pt;}
.x78{left:338.920000pt;}
.x6f{left:340.232000pt;}
.x79{left:341.650667pt;}
.x70{left:342.961333pt;}
.xef{left:344.592000pt;}
.x21{left:345.650667pt;}
.xa8{left:346.925333pt;}
.x7a{left:348.226667pt;}
.xed{left:349.374667pt;}
.x9c{left:350.378667pt;}
.x22{left:351.924000pt;}
.x7b{left:353.688000pt;}
.xee{left:354.825333pt;}
.xe6{left:358.341333pt;}
.x57{left:359.432000pt;}
.xd5{left:361.313333pt;}
.x45{left:362.292000pt;}
.x84{left:364.737333pt;}
.xc9{left:366.021333pt;}
.xa9{left:366.993333pt;}
.xca{left:368.752000pt;}
.x9d{left:370.477333pt;}
.xaa{left:373.137333pt;}
.x9e{left:375.937333pt;}
.x36{left:377.278667pt;}
.xb3{left:378.272000pt;}
.x63{left:379.616000pt;}
.xd8{left:382.057333pt;}
.xb9{left:383.517333pt;}
.x92{left:385.884000pt;}
.x93{left:388.613333pt;}
.x64{left:389.672000pt;}
.xd9{left:391.896000pt;}
.x3d{left:393.090667pt;}
.x65{left:395.816000pt;}
.x58{left:396.876000pt;}
.xda{left:398.040000pt;}
.x59{left:399.606667pt;}
.x94{left:400.982667pt;}
.x66{left:402.014667pt;}
.xdb{left:404.162667pt;}
.x67{left:408.950667pt;}
.x3e{left:410.876000pt;}
.xd0{left:412.094667pt;}
.x68{left:414.410667pt;}
.x1b{left:415.690667pt;}
.x3f{left:417.149333pt;}
.xab{left:419.481333pt;}
.x40{left:420.780000pt;}
.x1c{left:421.964000pt;}
.x41{left:423.732000pt;}
.x34{left:425.058667pt;}
.xd6{left:426.230667pt;}
.x9f{left:427.825333pt;}
.x4b{left:429.669333pt;}
.x42{left:430.993333pt;}
.xb4{left:432.122667pt;}
.xea{left:433.298667pt;}
.xf0{left:435.750667pt;}
.x43{left:436.897333pt;}
.x44{left:442.348000pt;}
.xd1{left:443.256000pt;}
.x1d{left:444.736000pt;}
.xcb{left:445.668000pt;}
.x85{left:448.493333pt;}
.x1e{left:450.640000pt;}
.xb5{left:452.662667pt;}
.x86{left:454.226667pt;}
.xa0{left:456.656000pt;}
.xac{left:458.996000pt;}
.x87{left:460.029333pt;}
.xa1{left:462.458667pt;}
.xba{left:463.365333pt;}
.xad{left:465.208000pt;}
.x7c{left:466.668000pt;}
.xa2{left:468.670667pt;}
.x88{left:470.064000pt;}
.xbd{left:472.369333pt;}
.x7d{left:473.589333pt;}
.xbe{left:475.100000pt;}
.x89{left:476.208000pt;}
.xc0{left:477.800000pt;}
.x7e{left:479.050667pt;}
.xa3{left:480.042667pt;}
.xc1{left:481.281333pt;}
.x7f{left:482.510667pt;}
.x4c{left:483.944000pt;}
.x5a{left:485.313333pt;}
.x71{left:486.714667pt;}
.xcc{left:488.026667pt;}
.x31{left:490.014667pt;}
.xc2{left:490.974667pt;}
.x80{left:492.164000pt;}
.x4d{left:494.388000pt;}
.x72{left:496.060000pt;}
.x81{left:497.625333pt;}
.xf8{left:499.546667pt;}
.x4e{left:500.532000pt;}
.x73{left:502.202667pt;}
.x82{left:511.468000pt;}
.x83{left:517.612000pt;}
}




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