
    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_27bbb59e89fe0f66476c899d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_fded7ad1ea8bb1b66752dae9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3dfa66b80a615f2a281c50c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e57f329f3c6a8249c6fdc36f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4928a9e6143653b91aa590a1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_d18de190827fb3d28df718e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f805e9d8308eff0e75db512.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a0fcccacb33c7a0402cfd18.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758000;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_3cd2e318d2934bd43ac8a208.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46829aa604e0e859cca3d89f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_38b7c091003374bc789d0c2a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.445000;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_6417f04373bd8dc487c7c7d5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.443000;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;}
.m25{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.m1b{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);}
.mb{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);}
.me{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);}
.m1d{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);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1{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);}
.m16{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);}
.ma{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);}
.md{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);}
.m6{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);}
.m1a{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);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1e{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);}
.m4{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);}
.m5{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);}
.m11{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);}
.m9{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);}
.m10{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);}
.m18{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);}
.m17{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);}
.m12{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);}
.m1c{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);}
.m19{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);}
.m22{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);}
.mf{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);}
.m24{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);}
.m14{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);}
.m26{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);}
.m29{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);}
.m8{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);}
.m1f{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);}
.m27{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);}
.m7{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);}
.m2a{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);}
.m2{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);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-21.702000px;}
.v8{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-10.464000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.486808px;}
.v3{vertical-align:15.882609px;}
.va{vertical-align:20.052000px;}
.v1{vertical-align:21.702000px;}
.v9{vertical-align:28.482000px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.578820px;}
.ls24{letter-spacing:0.659496px;}
.lsd{letter-spacing:1.317000px;}
.lsf{letter-spacing:2.085432px;}
.ls11{letter-spacing:2.091432px;}
.ls15{letter-spacing:2.239716px;}
.ls17{letter-spacing:2.245716px;}
.lsa{letter-spacing:2.988000px;}
.ls22{letter-spacing:3.666000px;}
.ls23{letter-spacing:7.829496px;}
.ls21{letter-spacing:11.147934px;}
.ls3{letter-spacing:11.955000px;}
.ls14{letter-spacing:12.395778px;}
.ls1c{letter-spacing:12.948000px;}
.lsb{letter-spacing:14.705804px;}
.ls8{letter-spacing:14.763000px;}
.ls1e{letter-spacing:14.854212px;}
.ls7{letter-spacing:14.883000px;}
.lsc{letter-spacing:14.943000px;}
.ls1d{letter-spacing:15.178212px;}
.ls5{letter-spacing:15.237426px;}
.ls9{letter-spacing:15.303000px;}
.ls6{letter-spacing:16.131426px;}
.ls1a{letter-spacing:17.242380px;}
.ls12{letter-spacing:18.099000px;}
.ls13{letter-spacing:19.479426px;}
.lse{letter-spacing:25.928952px;}
.ls18{letter-spacing:27.336000px;}
.ls16{letter-spacing:27.342000px;}
.ls10{letter-spacing:28.761000px;}
.ls1{letter-spacing:62.760000px;}
.ls2{letter-spacing:64.321920px;}
.ls0{letter-spacing:72.360000px;}
.ls19{letter-spacing:93.536532px;}
.ls1f{letter-spacing:109.824000px;}
.ls20{letter-spacing:109.830000px;}
.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;}
}
.wsc{word-spacing:-68.051038px;}
.ws8e{word-spacing:-14.944500px;}
.ws127{word-spacing:-14.395474px;}
.ws1a5{word-spacing:-13.449000px;}
.ws163{word-spacing:-12.098204px;}
.ws165{word-spacing:-11.642840px;}
.ws10{word-spacing:-11.358000px;}
.ws4{word-spacing:-10.461000px;}
.wsad{word-spacing:-9.295430px;}
.wsb5{word-spacing:-9.109682px;}
.ws16c{word-spacing:-8.603411px;}
.wsc1{word-spacing:-5.678671px;}
.wsc5{word-spacing:-5.200507px;}
.wsc2{word-spacing:-4.782300px;}
.wsfd{word-spacing:-3.705877px;}
.ws117{word-spacing:-3.347209px;}
.ws188{word-spacing:-3.108277px;}
.ws7f{word-spacing:-2.988900px;}
.ws178{word-spacing:-2.749489px;}
.ws177{word-spacing:-2.450719px;}
.ws9a{word-spacing:-2.271325px;}
.wsc7{word-spacing:-2.211906px;}
.ws9c{word-spacing:-2.152008px;}
.ws9d{word-spacing:-2.151888px;}
.wsb7{word-spacing:-2.092469px;}
.ws183{word-spacing:-2.091871px;}
.ws1a2{word-spacing:-1.990452px;}
.ws13a{word-spacing:-1.853118px;}
.wse2{word-spacing:-1.793101px;}
.ws1a3{word-spacing:-1.775429px;}
.ws116{word-spacing:-1.733741px;}
.ws97{word-spacing:-1.733682px;}
.wsf2{word-spacing:-1.673784px;}
.wsf8{word-spacing:-1.614305px;}
.ws1a1{word-spacing:-1.613988px;}
.wsf9{word-spacing:-1.613767px;}
.ws18b{word-spacing:-1.613707px;}
.ws125{word-spacing:-1.554288px;}
.ws9e{word-spacing:-1.494271px;}
.ws9f{word-spacing:-1.374894px;}
.ws84{word-spacing:-1.324686px;}
.wsf4{word-spacing:-1.314877px;}
.ws81{word-spacing:-1.269827px;}
.ws80{word-spacing:-1.255577px;}
.ws82{word-spacing:-1.255517px;}
.wsf7{word-spacing:-1.136081px;}
.wsf6{word-spacing:-1.076124px;}
.ws51{word-spacing:-1.033470px;}
.ws53{word-spacing:-1.025640px;}
.ws52{word-spacing:-1.025148px;}
.ws55{word-spacing:-1.021908px;}
.ws17a{word-spacing:-1.016166px;}
.ws50{word-spacing:-1.016106px;}
.ws54{word-spacing:-0.965148px;}
.ws4e{word-spacing:-0.903246px;}
.ws16f{word-spacing:-0.903000px;}
.ws4f{word-spacing:-0.896670px;}
.ws170{word-spacing:-0.840654px;}
.wsc9{word-spacing:-0.836713px;}
.ws9b{word-spacing:-0.777293px;}
.ws102{word-spacing:-0.657319px;}
.ws1cb{word-spacing:-0.538229px;}
.ws104{word-spacing:-0.537882px;}
.ws1bc{word-spacing:-0.484218px;}
.ws18c{word-spacing:-0.478523px;}
.ws190{word-spacing:-0.477925px;}
.wse6{word-spacing:-0.418506px;}
.ws17c{word-spacing:-0.370096px;}
.ws18a{word-spacing:-0.365484px;}
.ws5e{word-spacing:-0.358489px;}
.ws1bb{word-spacing:-0.322830px;}
.ws189{word-spacing:-0.315175px;}
.ws5b{word-spacing:-0.299069px;}
.ws1ba{word-spacing:-0.289524px;}
.ws1b{word-spacing:-0.268819px;}
.ws3b{word-spacing:-0.257999px;}
.ws103{word-spacing:-0.254116px;}
.ws3a{word-spacing:-0.239112px;}
.ws15a{word-spacing:-0.235428px;}
.ws1d2{word-spacing:-0.230189px;}
.ws159{word-spacing:-0.229788px;}
.ws1b0{word-spacing:-0.215399px;}
.ws70{word-spacing:-0.207479px;}
.wsd1{word-spacing:-0.179693px;}
.ws37{word-spacing:-0.179095px;}
.ws1e{word-spacing:-0.161388px;}
.wse7{word-spacing:-0.159511px;}
.ws79{word-spacing:-0.140195px;}
.wsea{word-spacing:-0.134741px;}
.ws101{word-spacing:-0.134681px;}
.wse8{word-spacing:-0.132870px;}
.ws1b9{word-spacing:-0.130380px;}
.ws143{word-spacing:-0.130079px;}
.ws154{word-spacing:-0.129581px;}
.ws18f{word-spacing:-0.126864px;}
.ws168{word-spacing:-0.124500px;}
.ws90{word-spacing:-0.123000px;}
.ws45{word-spacing:-0.119676px;}
.ws46{word-spacing:-0.119078px;}
.wsb0{word-spacing:-0.108022px;}
.ws1b5{word-spacing:-0.107431px;}
.wse9{word-spacing:-0.065148px;}
.ws49{word-spacing:-0.059718px;}
.ws18{word-spacing:-0.054011px;}
.ws42{word-spacing:-0.027594px;}
.ws44{word-spacing:-0.025014px;}
.ws12{word-spacing:-0.023784px;}
.ws11{word-spacing:-0.022506px;}
.ws88{word-spacing:-0.022319px;}
.ws59{word-spacing:-0.017466px;}
.wsfc{word-spacing:-0.017046px;}
.wsb3{word-spacing:-0.016717px;}
.wsf{word-spacing:-0.016639px;}
.ws15c{word-spacing:-0.016068px;}
.ws171{word-spacing:-0.014916px;}
.wsd3{word-spacing:-0.014279px;}
.ws14b{word-spacing:-0.013511px;}
.ws85{word-spacing:-0.013494px;}
.ws4a{word-spacing:-0.012678px;}
.wsb1{word-spacing:-0.012365px;}
.ws4b{word-spacing:-0.012324px;}
.wsab{word-spacing:-0.012264px;}
.ws14a{word-spacing:-0.011172px;}
.wsb9{word-spacing:-0.010434px;}
.wsf3{word-spacing:-0.009444px;}
.ws7e{word-spacing:-0.007434px;}
.ws15b{word-spacing:-0.006654px;}
.ws149{word-spacing:-0.005568px;}
.ws43{word-spacing:-0.005148px;}
.ws2{word-spacing:-0.005052px;}
.ws13d{word-spacing:-0.003246px;}
.wsb2{word-spacing:-0.001805px;}
.ws1ce{word-spacing:-0.001524px;}
.wse{word-spacing:-0.000323px;}
.ws3c{word-spacing:-0.000299px;}
.ws1{word-spacing:0.000000px;}
.ws41{word-spacing:0.000299px;}
.wsd{word-spacing:0.000323px;}
.wsbf{word-spacing:0.001092px;}
.ws47{word-spacing:0.002940px;}
.ws1bf{word-spacing:0.004230px;}
.ws1a9{word-spacing:0.005316px;}
.wsd5{word-spacing:0.005580px;}
.ws1ae{word-spacing:0.005766px;}
.ws1ab{word-spacing:0.007272px;}
.wsc0{word-spacing:0.007470px;}
.ws16e{word-spacing:0.009576px;}
.wsee{word-spacing:0.031825px;}
.ws16{word-spacing:0.054011px;}
.ws5f{word-spacing:0.059718px;}
.ws58{word-spacing:0.091979px;}
.ws83{word-spacing:0.102983px;}
.ws57{word-spacing:0.105528px;}
.ws1a{word-spacing:0.107377px;}
.ws2a{word-spacing:0.110172px;}
.ws28{word-spacing:0.113136px;}
.ws29{word-spacing:0.114852px;}
.ws11c{word-spacing:0.119078px;}
.ws21{word-spacing:0.119676px;}
.ws13{word-spacing:0.143412px;}
.wsfa{word-spacing:0.151693px;}
.wsef{word-spacing:0.154542px;}
.ws2d{word-spacing:0.157997px;}
.ws17f{word-spacing:0.158922px;}
.ws15{word-spacing:0.161388px;}
.ws30{word-spacing:0.168852px;}
.ws14e{word-spacing:0.169297px;}
.ws115{word-spacing:0.176491px;}
.ws31{word-spacing:0.179095px;}
.ws18e{word-spacing:0.179693px;}
.ws15e{word-spacing:0.213666px;}
.ws19{word-spacing:0.214807px;}
.ws1d{word-spacing:0.215399px;}
.ws175{word-spacing:0.224076px;}
.ws15f{word-spacing:0.226572px;}
.ws2e{word-spacing:0.228852px;}
.ws2c{word-spacing:0.233628px;}
.ws2f{word-spacing:0.239112px;}
.wsbe{word-spacing:0.268819px;}
.ws65{word-spacing:0.277986px;}
.ws182{word-spacing:0.280734px;}
.ws18d{word-spacing:0.281971px;}
.ws66{word-spacing:0.282846px;}
.ws118{word-spacing:0.283205px;}
.ws11a{word-spacing:0.285901px;}
.ws64{word-spacing:0.288852px;}
.ws71{word-spacing:0.290346px;}
.ws63{word-spacing:0.293683px;}
.ws67{word-spacing:0.298531px;}
.ws72{word-spacing:0.299129px;}
.ws1b1{word-spacing:0.322776px;}
.ws119{word-spacing:0.346122px;}
.ws34{word-spacing:0.348816px;}
.ws11b{word-spacing:0.348852px;}
.ws20{word-spacing:0.358489px;}
.ws12e{word-spacing:0.359086px;}
.ws1a8{word-spacing:0.376787px;}
.ws35{word-spacing:0.400146px;}
.ws17e{word-spacing:0.404075px;}
.ws32{word-spacing:0.408852px;}
.ws33{word-spacing:0.410754px;}
.ws169{word-spacing:0.417908px;}
.ws36{word-spacing:0.418506px;}
.ws1a7{word-spacing:0.429615px;}
.ws17{word-spacing:0.430207px;}
.ws17d{word-spacing:0.468528px;}
.ws5c{word-spacing:0.478523px;}
.ws5d{word-spacing:0.537882px;}
.wsbd{word-spacing:0.538175px;}
.ws1c6{word-spacing:0.591595px;}
.ws123{word-spacing:0.597900px;}
.ws3f{word-spacing:0.657319px;}
.ws1b3{word-spacing:0.699617px;}
.ws1c8{word-spacing:0.700209px;}
.ws7d{word-spacing:0.717276px;}
.ws151{word-spacing:0.768258px;}
.ws161{word-spacing:0.775500px;}
.ws152{word-spacing:0.776696px;}
.ws61{word-spacing:0.777293px;}
.ws139{word-spacing:0.815287px;}
.ws136{word-spacing:0.816281px;}
.ws137{word-spacing:0.821449px;}
.ws138{word-spacing:0.828852px;}
.ws39{word-spacing:0.836713px;}
.wsdf{word-spacing:0.896730px;}
.ws14d{word-spacing:0.956089px;}
.ws40{word-spacing:0.956149px;}
.ws3d{word-spacing:0.956687px;}
.ws1cd{word-spacing:0.968382px;}
.ws10f{word-spacing:1.016106px;}
.ws173{word-spacing:1.016166px;}
.ws140{word-spacing:1.016704px;}
.ws13f{word-spacing:1.058765px;}
.ws141{word-spacing:1.068852px;}
.wsfb{word-spacing:1.075526px;}
.wsf5{word-spacing:1.076124px;}
.ws142{word-spacing:1.135483px;}
.ws73{word-spacing:1.136081px;}
.wsd7{word-spacing:1.159416px;}
.ws26{word-spacing:1.167714px;}
.ws24{word-spacing:1.183776px;}
.ws1a4{word-spacing:1.183781px;}
.ws69{word-spacing:1.186926px;}
.ws25{word-spacing:1.188852px;}
.wsd8{word-spacing:1.193683px;}
.ws22{word-spacing:1.193808px;}
.ws27{word-spacing:1.195500px;}
.ws23{word-spacing:1.248852px;}
.ws105{word-spacing:1.254920px;}
.ws8c{word-spacing:1.255517px;}
.ws16a{word-spacing:1.294957px;}
.ws60{word-spacing:1.314877px;}
.ws16b{word-spacing:1.315475px;}
.ws48{word-spacing:1.374894px;}
.wsec{word-spacing:1.434971px;}
.ws68{word-spacing:1.494330px;}
.ws1c4{word-spacing:1.506019px;}
.ws1c5{word-spacing:1.506557px;}
.ws98{word-spacing:1.554288px;}
.ws107{word-spacing:1.673724px;}
.ws106{word-spacing:1.673784px;}
.wsa2{word-spacing:1.733682px;}
.ws112{word-spacing:1.767864px;}
.ws113{word-spacing:1.790220px;}
.wsc8{word-spacing:1.793101px;}
.ws1c9{word-spacing:1.828795px;}
.ws94{word-spacing:1.853118px;}
.ws3e{word-spacing:1.853178px;}
.ws1c3{word-spacing:1.883398px;}
.ws8b{word-spacing:1.913075px;}
.ws1b8{word-spacing:1.936817px;}
.ws150{word-spacing:1.972495px;}
.ws135{word-spacing:2.031914px;}
.ws95{word-spacing:2.032512px;}
.ws38{word-spacing:2.091931px;}
.ws1b2{word-spacing:2.151571px;}
.ws1b7{word-spacing:2.205582px;}
.ws180{word-spacing:2.211308px;}
.ws62{word-spacing:2.211906px;}
.ws192{word-spacing:2.211965px;}
.ws1b6{word-spacing:2.259593px;}
.ws2b{word-spacing:2.271325px;}
.wsdb{word-spacing:2.307168px;}
.wsb8{word-spacing:2.331282px;}
.wsdc{word-spacing:2.331581px;}
.ws114{word-spacing:2.337673px;}
.wsd9{word-spacing:2.345743px;}
.wsda{word-spacing:2.353932px;}
.wse0{word-spacing:2.391299px;}
.wsf0{word-spacing:2.432539px;}
.ws6f{word-spacing:2.450719px;}
.ws1c1{word-spacing:2.474993px;}
.ws0{word-spacing:2.506476px;}
.wsf1{word-spacing:2.510676px;}
.ws10c{word-spacing:2.570095px;}
.wsa0{word-spacing:2.570693px;}
.ws99{word-spacing:2.630112px;}
.ws1d3{word-spacing:2.636381px;}
.ws17b{word-spacing:2.690130px;}
.ws144{word-spacing:2.734338px;}
.ws145{word-spacing:2.742852px;}
.ws1c{word-spacing:2.743811px;}
.ws147{word-spacing:2.750087px;}
.ws146{word-spacing:2.798694px;}
.ws1bd{word-spacing:2.851188px;}
.ws196{word-spacing:2.863920px;}
.ws15d{word-spacing:2.868985px;}
.ws14{word-spacing:2.869200px;}
.ws10a{word-spacing:2.869523px;}
.ws195{word-spacing:2.869643px;}
.wsde{word-spacing:2.988900px;}
.ws131{word-spacing:3.033910px;}
.ws133{word-spacing:3.037904px;}
.ws12f{word-spacing:3.048319px;}
.ws130{word-spacing:3.101059px;}
.ws132{word-spacing:3.102852px;}
.ws134{word-spacing:3.108277px;}
.ws5a{word-spacing:3.168294px;}
.ws6a{word-spacing:3.208345px;}
.ws6c{word-spacing:3.218544px;}
.ws6b{word-spacing:3.222852px;}
.ws1af{word-spacing:3.227383px;}
.ws6d{word-spacing:3.227713px;}
.ws1aa{word-spacing:3.227760px;}
.ws1ac{word-spacing:3.227975px;}
.ws109{word-spacing:3.228311px;}
.ws1cc{word-spacing:3.281395px;}
.ws1b4{word-spacing:3.335406px;}
.wsa8{word-spacing:3.347688px;}
.ws122{word-spacing:3.382889px;}
.ws11f{word-spacing:3.385602px;}
.ws121{word-spacing:3.401346px;}
.ws77{word-spacing:3.407107px;}
.ws120{word-spacing:3.412831px;}
.ws74{word-spacing:3.467124px;}
.wsce{word-spacing:3.556950px;}
.ws1f{word-spacing:3.586501px;}
.wsa9{word-spacing:3.586680px;}
.ws172{word-spacing:3.645920px;}
.ws179{word-spacing:3.646518px;}
.wsa1{word-spacing:3.705877px;}
.ws6e{word-spacing:3.765894px;}
.ws7b{word-spacing:3.813176px;}
.wse1{word-spacing:3.825433px;}
.ws7c{word-spacing:3.885331px;}
.ws167{word-spacing:3.927592px;}
.ws13c{word-spacing:3.945288px;}
.ws56{word-spacing:4.004708px;}
.wsb6{word-spacing:4.005305px;}
.ws181{word-spacing:4.124682px;}
.ws108{word-spacing:4.184101px;}
.ws1cf{word-spacing:4.196411px;}
.wsa3{word-spacing:4.244118px;}
.ws1d5{word-spacing:4.249776px;}
.ws166{word-spacing:4.303788px;}
.ws174{word-spacing:4.304076px;}
.ws8f{word-spacing:4.363495px;}
.ws124{word-spacing:4.364093px;}
.ws1ad{word-spacing:4.411218px;}
.wsd2{word-spacing:4.423512px;}
.wsa5{word-spacing:4.459338px;}
.wsa6{word-spacing:4.466677px;}
.wsa7{word-spacing:4.482932px;}
.ws10d{word-spacing:4.483529px;}
.ws8d{word-spacing:4.542889px;}
.ws13e{word-spacing:4.543068px;}
.wscf{word-spacing:4.602308px;}
.ws91{word-spacing:4.602906px;}
.ws1d4{word-spacing:4.626617px;}
.ws8a{word-spacing:4.662325px;}
.ws11e{word-spacing:4.722283px;}
.ws199{word-spacing:4.760574px;}
.ws19c{word-spacing:4.766653px;}
.wsa{word-spacing:4.770007px;}
.ws19b{word-spacing:4.776852px;}
.ws19d{word-spacing:4.781702px;}
.ws19a{word-spacing:4.782300px;}
.wseb{word-spacing:4.841719px;}
.wsb{word-spacing:4.853988px;}
.ws187{word-spacing:4.901676px;}
.wsd6{word-spacing:4.961694px;}
.ws14f{word-spacing:4.962291px;}
.ws1ca{word-spacing:5.003405px;}
.ws7a{word-spacing:5.010852px;}
.wsaa{word-spacing:5.021113px;}
.ws4d{word-spacing:5.081130px;}
.wsa4{word-spacing:5.141087px;}
.ws158{word-spacing:5.200507px;}
.wsdd{word-spacing:5.260524px;}
.ws197{word-spacing:5.320481px;}
.wsc4{word-spacing:5.379900px;}
.ws89{word-spacing:5.439918px;}
.wsaf{word-spacing:5.486977px;}
.ws10e{word-spacing:5.499277px;}
.ws185{word-spacing:5.499935px;}
.ws1a0{word-spacing:5.540988px;}
.ws184{word-spacing:5.550852px;}
.ws186{word-spacing:5.559294px;}
.wse3{word-spacing:5.618714px;}
.ws157{word-spacing:5.619311px;}
.ws191{word-spacing:5.678731px;}
.wse4{word-spacing:5.858124px;}
.ws155{word-spacing:5.858722px;}
.ws1d0{word-spacing:5.863172px;}
.wsae{word-spacing:5.863818px;}
.wsfe{word-spacing:5.904540px;}
.ws100{word-spacing:5.917484px;}
.ws19f{word-spacing:5.917775px;}
.ws96{word-spacing:5.918082px;}
.wsff{word-spacing:5.918321px;}
.ws194{word-spacing:5.977501px;}
.ws78{word-spacing:6.037518px;}
.ws10b{word-spacing:6.276331px;}
.ws19e{word-spacing:6.293971px;}
.ws153{word-spacing:6.336289px;}
.ws11d{word-spacing:6.455725px;}
.ws87{word-spacing:6.575102px;}
.ws193{word-spacing:6.635119px;}
.ws12d{word-spacing:6.670812px;}
.ws12c{word-spacing:6.724769px;}
.wsed{word-spacing:6.814752px;}
.wscc{word-spacing:6.873932px;}
.ws176{word-spacing:6.933889px;}
.ws148{word-spacing:7.053924px;}
.ws12b{word-spacing:7.101018px;}
.wsd0{word-spacing:7.113283px;}
.ws76{word-spacing:7.292677px;}
.ws111{word-spacing:7.396506px;}
.ws13b{word-spacing:7.651524px;}
.wscd{word-spacing:7.710884px;}
.ws198{word-spacing:7.711482px;}
.ws75{word-spacing:7.712079px;}
.ws110{word-spacing:7.770901px;}
.ws8{word-spacing:7.783193px;}
.ws14c{word-spacing:8.070329px;}
.ws4c{word-spacing:8.189706px;}
.ws160{word-spacing:8.309082px;}
.ws156{word-spacing:9.026119px;}
.ws1be{word-spacing:9.150084px;}
.ws1c0{word-spacing:9.150558px;}
.ws1d1{word-spacing:9.153960px;}
.ws1c2{word-spacing:9.898195px;}
.ws6{word-spacing:12.177022px;}
.wsd4{word-spacing:13.587720px;}
.ws1c7{word-spacing:13.664399px;}
.wsb4{word-spacing:13.981286px;}
.wsac{word-spacing:14.266368px;}
.ws86{word-spacing:15.370644px;}
.ws3{word-spacing:15.482406px;}
.ws7{word-spacing:16.110024px;}
.wsc3{word-spacing:18.000716px;}
.wse5{word-spacing:21.758714px;}
.ws9{word-spacing:26.110196px;}
.ws5{word-spacing:26.834052px;}
.wsc6{word-spacing:28.651934px;}
.wsca{word-spacing:44.698314px;}
.wsba{word-spacing:52.127640px;}
.ws16d{word-spacing:53.669189px;}
.wsbb{word-spacing:86.996833px;}
.wsbc{word-spacing:88.530365px;}
.wscb{word-spacing:91.817453px;}
.ws93{word-spacing:98.459561px;}
.ws1a6{word-spacing:99.363000px;}
.ws128{word-spacing:119.066292px;}
.ws129{word-spacing:119.348740px;}
.ws164{word-spacing:138.087913px;}
.ws12a{word-spacing:173.303522px;}
.ws162{word-spacing:185.210232px;}
.ws92{word-spacing:290.413119px;}
.ws126{word-spacing:531.498029px;}
._1e{margin-left:-14.907240px;}
._c{margin-left:-7.044435px;}
._5{margin-left:-5.920365px;}
._3{margin-left:-4.602589px;}
._16{margin-left:-3.543714px;}
._2{margin-left:-2.301587px;}
._8{margin-left:-1.046368px;}
._1f{width:1.135190px;}
._6{width:3.004340px;}
._22{width:4.782001px;}
._1d{width:7.905432px;}
._30{width:10.188264px;}
._1{width:12.971389px;}
._e{width:14.824200px;}
._9{width:16.245585px;}
._a{width:17.650844px;}
._11{width:19.061247px;}
._0{width:20.922000px;}
._26{width:22.048653px;}
._17{width:23.254180px;}
._d{width:24.539122px;}
._b{width:26.209749px;}
._15{width:28.185427px;}
._12{width:29.500997px;}
._4{width:30.588006px;}
._18{width:32.584189px;}
._1c{width:34.492205px;}
._1b{width:35.913096px;}
._33{width:37.290295px;}
._14{width:38.371874px;}
._34{width:39.698508px;}
._35{width:41.217290px;}
._13{width:42.727059px;}
._32{width:45.990700px;}
._31{width:47.389676px;}
._36{width:49.566578px;}
._7{width:54.422568px;}
._24{width:69.495045px;}
._23{width:81.835453px;}
._2f{width:94.212761px;}
._1a{width:97.970257px;}
._19{width:119.176767px;}
._28{width:132.317477px;}
._2d{width:151.497781px;}
._2c{width:156.406839px;}
._20{width:163.084869px;}
._2e{width:180.238356px;}
._21{width:197.623869px;}
._2a{width:200.787098px;}
._29{width:205.689102px;}
._2b{width:222.584653px;}
._25{width:449.519304px;}
._f{width:1131.590940px;}
._27{width:2618.874000px;}
._10{width:2642.784000px;}
.fc2{color:rgb(8,117,183);}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(26,26,26);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(176,121,21);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:16.630821px;}
.fs8{font-size:24.946320px;}
.fs1d{font-size:25.144860px;}
.fse{font-size:27.307200px;}
.fsb{font-size:27.864000px;}
.fs1e{font-size:30.947520px;}
.fs11{font-size:31.085100px;}
.fsf{font-size:32.768640px;}
.fs1b{font-size:32.906280px;}
.fsc{font-size:33.436800px;}
.fs19{font-size:35.358960px;}
.fs5{font-size:35.868000px;}
.fs13{font-size:37.992900px;}
.fs10{font-size:38.230080px;}
.fsd{font-size:39.009600px;}
.fs12{font-size:41.446800px;}
.fs0{font-size:41.844000px;}
.fs1c{font-size:41.880720px;}
.fs17{font-size:42.367320px;}
.fs1a{font-size:43.518720px;}
.fs14{font-size:44.582400px;}
.fs4{font-size:45.432000px;}
.fs18{font-size:47.340000px;}
.fs6{font-size:47.820000px;}
.fs16{font-size:51.782280px;}
.fs15{font-size:52.941600px;}
.fs7{font-size:53.796000px;}
.fs1f{font-size:56.058000px;}
.fs2{font-size:59.778000px;}
.fsa{font-size:62.286000px;}
.fs1{font-size:87.469200px;}
.fs3{font-size:107.598000px;}
.y0{bottom:0.000000px;}
.y150{bottom:4.515974px;}
.y29e{bottom:6.013495px;}
.y136{bottom:7.884631px;}
.y11f{bottom:8.045401px;}
.y271{bottom:8.456238px;}
.y23e{bottom:10.058245px;}
.y173{bottom:13.214502px;}
.y17{bottom:13.490302px;}
.y162{bottom:14.166695px;}
.y29d{bottom:14.794854px;}
.y135{bottom:16.226981px;}
.y11e{bottom:16.557853px;}
.y270{bottom:20.804675px;}
.y23d{bottom:24.757352px;}
.yba{bottom:28.622918px;}
.y45{bottom:31.890000px;}
.yc4{bottom:31.962472px;}
.y12f{bottom:32.679569px;}
.y16f{bottom:33.276582px;}
.y13d{bottom:33.710415px;}
.y117{bottom:34.397779px;}
.yb9{bottom:38.570263px;}
.y160{bottom:41.409331px;}
.ybb{bottom:43.433325px;}
.y2a4{bottom:45.065397px;}
.y298{bottom:46.225929px;}
.y2a0{bottom:49.722031px;}
.y152{bottom:53.377095px;}
.y239{bottom:55.367740px;}
.ybc{bottom:61.363493px;}
.y153{bottom:62.422859px;}
.y13e{bottom:67.694226px;}
.y118{bottom:69.074527px;}
.y130{bottom:73.667676px;}
.y29f{bottom:75.292420px;}
.y299{bottom:77.801587px;}
.ybd{bottom:79.256552px;}
.y170{bottom:84.609036px;}
.y26d{bottom:86.456744px;}
.y2a5{bottom:86.812150px;}
.y2a1{bottom:89.664641px;}
.y23a{bottom:90.363147px;}
.yef{bottom:91.665000px;}
.yc5{bottom:93.325965px;}
.y154{bottom:93.590852px;}
.y1c0{bottom:94.237500px;}
.y15a{bottom:95.773717px;}
.y22d{bottom:95.961980px;}
.ybe{bottom:97.186720px;}
.y261{bottom:99.508500px;}
.y2ed{bottom:100.615500px;}
.y13f{bottom:101.678036px;}
.y1a7{bottom:102.697500px;}
.y119{bottom:103.751275px;}
.y323{bottom:104.503500px;}
.y15{bottom:104.646000px;}
.y23f{bottom:106.232062px;}
.y206{bottom:106.641000px;}
.y2a9{bottom:107.641500px;}
.y29a{bottom:109.383531px;}
.yee{bottom:110.494500px;}
.y15d{bottom:110.642757px;}
.y44{bottom:112.575000px;}
.y1bf{bottom:113.067000px;}
.y131{bottom:114.655783px;}
.ybf{bottom:115.079735px;}
.y13b{bottom:115.625189px;}
.y2ec{bottom:117.876000px;}
.y124{bottom:117.982813px;}
.y260{bottom:118.338000px;}
.y1d1{bottom:119.781000px;}
.y272{bottom:120.700537px;}
.y1a6{bottom:121.527000px;}
.y2b7{bottom:121.539000px;}
.y322{bottom:121.762500px;}
.y275{bottom:122.341328px;}
.y14{bottom:122.535000px;}
.y26b{bottom:123.258000px;}
.yb7{bottom:123.553500px;}
.y155{bottom:124.758846px;}
.y23b{bottom:125.347961px;}
.y205{bottom:125.470500px;}
.y137{bottom:126.281823px;}
.y7b{bottom:126.471000px;}
.y2a6{bottom:128.552618px;}
.y172{bottom:128.773476px;}
.y120{bottom:128.856739px;}
.yed{bottom:129.324000px;}
.y2a2{bottom:129.607251px;}
.y13a{bottom:131.354136px;}
.y43{bottom:131.404500px;}
.y1be{bottom:131.896500px;}
.yc0{bottom:133.009947px;}
.y123{bottom:134.032477px;}
.y274{bottom:134.089343px;}
.y161{bottom:134.578284px;}
.y2eb{bottom:135.136500px;}
.y14e{bottom:135.261000px;}
.y140{bottom:135.668673px;}
.y25f{bottom:137.167500px;}
.y11a{bottom:138.434989px;}
.y1d0{bottom:138.610500px;}
.y238{bottom:138.835354px;}
.y321{bottom:139.023000px;}
.y2b6{bottom:139.113000px;}
.y1a5{bottom:140.356500px;}
.y13{bottom:140.422500px;}
.y29b{bottom:140.959189px;}
.y263{bottom:141.403500px;}
.y26a{bottom:142.087500px;}
.y204{bottom:144.300000px;}
.ya7{bottom:144.403500px;}
.y7a{bottom:145.300500px;}
.y26e{bottom:146.098470px;}
.y1e6{bottom:146.965500px;}
.y139{bottom:147.083083px;}
.yec{bottom:148.153500px;}
.y273{bottom:149.688084px;}
.y122{bottom:150.082141px;}
.y42{bottom:150.234000px;}
.y1bd{bottom:150.726000px;}
.yc1{bottom:150.902963px;}
.y15b{bottom:152.296791px;}
.y2ea{bottom:152.397000px;}
.y14d{bottom:154.090500px;}
.y132{bottom:155.643890px;}
.y156{bottom:155.926840px;}
.y25e{bottom:155.997000px;}
.y320{bottom:156.283500px;}
.y2b5{bottom:156.687000px;}
.y1cf{bottom:157.440000px;}
.y12{bottom:158.310000px;}
.y1a4{bottom:159.186000px;}
.y23c{bottom:160.343368px;}
.y269{bottom:160.917000px;}
.y138{bottom:161.228213px;}
.y203{bottom:163.129500px;}
.ya6{bottom:163.233000px;}
.y79{bottom:164.130000px;}
.y121{bottom:164.515693px;}
.y1e5{bottom:165.795000px;}
.yeb{bottom:166.983000px;}
.yc2{bottom:168.833130px;}
.y41{bottom:169.063500px;}
.y2a3{bottom:169.549862px;}
.y1bc{bottom:169.555500px;}
.y141{bottom:169.652484px;}
.y2e9{bottom:169.657500px;}
.y2a7{bottom:170.299372px;}
.y15e{bottom:171.289787px;}
.y29c{bottom:172.534847px;}
.y14c{bottom:172.920000px;}
.y11b{bottom:173.111737px;}
.y31f{bottom:173.544000px;}
.y2b4{bottom:174.262500px;}
.y267{bottom:174.591000px;}
.y25d{bottom:174.826500px;}
.y11{bottom:176.199000px;}
.y1ce{bottom:176.269500px;}
.y1a3{bottom:178.015500px;}
.y265{bottom:179.746500px;}
.ya5{bottom:182.062500px;}
.y78{bottom:182.959500px;}
.y1e4{bottom:184.624500px;}
.y268{bottom:185.170500px;}
.y266{bottom:185.634000px;}
.yea{bottom:185.812500px;}
.y115{bottom:186.396000px;}
.y202{bottom:186.442500px;}
.yc3{bottom:186.726190px;}
.y2e8{bottom:186.918000px;}
.y157{bottom:187.094833px;}
.y40{bottom:187.893000px;}
.y1bb{bottom:188.385000px;}
.y31e{bottom:190.804500px;}
.y14b{bottom:191.749500px;}
.y25c{bottom:193.656000px;}
.y10{bottom:194.086500px;}
.y1cd{bottom:195.099000px;}
.y133{bottom:196.631997px;}
.y1a2{bottom:196.845000px;}
.y2b3{bottom:200.802000px;}
.y77{bottom:201.789000px;}
.y1e3{bottom:203.454000px;}
.y142{bottom:203.636294px;}
.y2e7{bottom:204.178500px;}
.y176{bottom:204.642000px;}
.y114{bottom:205.225500px;}
.y201{bottom:205.272000px;}
.ya4{bottom:205.375500px;}
.y26f{bottom:205.731356px;}
.y3f{bottom:206.722500px;}
.y1ba{bottom:207.214500px;}
.y234{bottom:207.772405px;}
.y11c{bottom:207.788485px;}
.y31d{bottom:208.065000px;}
.y15c{bottom:208.819864px;}
.ye9{bottom:209.125500px;}
.y14a{bottom:210.579000px;}
.y22b{bottom:211.591500px;}
.yf{bottom:211.974000px;}
.y25b{bottom:212.485500px;}
.y1cb{bottom:213.928500px;}
.y1a1{bottom:215.674500px;}
.y158{bottom:218.262827px;}
.y2b2{bottom:218.376000px;}
.y1cc{bottom:219.354000px;}
.y76{bottom:220.618500px;}
.y2e6{bottom:221.439000px;}
.y1e2{bottom:222.283500px;}
.y233{bottom:222.471512px;}
.y113{bottom:224.055000px;}
.y200{bottom:224.101500px;}
.y31c{bottom:225.325500px;}
.y3e{bottom:225.552000px;}
.y1b9{bottom:226.044000px;}
.y175{bottom:227.955000px;}
.y149{bottom:229.408500px;}
.ye{bottom:229.863000px;}
.y22a{bottom:230.421000px;}
.ycc{bottom:230.976195px;}
.y25a{bottom:231.315000px;}
.y15f{bottom:231.926455px;}
.y1a0{bottom:234.504000px;}
.y1ca{bottom:234.582000px;}
.yc6{bottom:237.584030px;}
.y134{bottom:237.620105px;}
.y2a8{bottom:237.862500px;}
.y2e5{bottom:238.699500px;}
.ya3{bottom:238.999500px;}
.y75{bottom:239.446500px;}
.y1e1{bottom:241.113000px;}
.y11d{bottom:242.465233px;}
.y31b{bottom:242.586000px;}
.ye8{bottom:242.749500px;}
.y112{bottom:242.884500px;}
.y1ff{bottom:242.931000px;}
.y3d{bottom:244.381500px;}
.y1b8{bottom:244.873500px;}
.y2b1{bottom:244.917000px;}
.y148{bottom:248.236500px;}
.y229{bottom:249.250500px;}
.y159{bottom:249.430820px;}
.y258{bottom:250.144500px;}
.y22f{bottom:250.987072px;}
.y171{bottom:251.758206px;}
.y13c{bottom:252.727813px;}
.y19e{bottom:253.333500px;}
.y1c9{bottom:253.411500px;}
.y259{bottom:255.568500px;}
.y2e4{bottom:255.958500px;}
.ya2{bottom:257.829000px;}
.y125{bottom:257.880991px;}
.y74{bottom:258.276000px;}
.y19f{bottom:258.759000px;}
.y297{bottom:259.762019px;}
.y31a{bottom:259.846500px;}
.y1e0{bottom:259.942500px;}
.ye7{bottom:261.579000px;}
.y111{bottom:261.714000px;}
.y1fe{bottom:261.760500px;}
.y2b0{bottom:262.491000px;}
.y3c{bottom:263.211000px;}
.y1b7{bottom:263.703000px;}
.yc7{bottom:266.502428px;}
.y147{bottom:267.066000px;}
.y228{bottom:268.080000px;}
.y257{bottom:270.796500px;}
.y1c8{bottom:272.239500px;}
.y2e3{bottom:273.219000px;}
.y19d{bottom:273.987000px;}
.y230{bottom:274.331465px;}
.ya1{bottom:276.658500px;}
.y73{bottom:277.105500px;}
.y1df{bottom:278.772000px;}
.y2af{bottom:280.065000px;}
.ye6{bottom:280.408500px;}
.y110{bottom:280.543500px;}
.y235{bottom:280.891338px;}
.y3b{bottom:282.040500px;}
.y1b6{bottom:282.532500px;}
.y1fd{bottom:285.072000px;}
.y146{bottom:285.895500px;}
.y227{bottom:286.909500px;}
.y255{bottom:289.626000px;}
.y2e2{bottom:290.479500px;}
.y1c7{bottom:291.069000px;}
.yc8{bottom:291.708635px;}
.y19c{bottom:292.815000px;}
.ycd{bottom:293.787465px;}
.y319{bottom:294.366000px;}
.y256{bottom:295.051500px;}
.ya0{bottom:295.488000px;}
.y72{bottom:295.935000px;}
.y2ae{bottom:297.639000px;}
.y231{bottom:297.675858px;}
.ye5{bottom:299.238000px;}
.y10f{bottom:299.373000px;}
.yd{bottom:299.892000px;}
.y3a{bottom:300.870000px;}
.y1b5{bottom:301.362000px;}
.y1de{bottom:302.085000px;}
.y276{bottom:304.346213px;}
.y145{bottom:304.725000px;}
.y226{bottom:305.739000px;}
.y2e1{bottom:307.740000px;}
.y1c6{bottom:309.898500px;}
.y254{bottom:310.278000px;}
.y318{bottom:311.626500px;}
.y19b{bottom:311.644500px;}
.y174{bottom:313.876500px;}
.y9f{bottom:314.317500px;}
.y71{bottom:314.764500px;}
.yc9{bottom:316.914797px;}
.yc{bottom:317.779500px;}
.ye4{bottom:318.067500px;}
.y10e{bottom:318.202500px;}
.y1fc{bottom:318.696000px;}
.y39{bottom:319.699500px;}
.y1b4{bottom:320.191500px;}
.y232{bottom:321.009660px;}
.y144{bottom:323.554500px;}
.y225{bottom:324.568500px;}
.y2e0{bottom:325.000500px;}
.y1c5{bottom:328.728000px;}
.y317{bottom:328.887000px;}
.y253{bottom:329.107500px;}
.y199{bottom:330.474000px;}
.y9e{bottom:333.145500px;}
.y70{bottom:333.594000px;}
.yb{bottom:335.667000px;}
.y1dd{bottom:335.709000px;}
.y19a{bottom:335.899500px;}
.y16e{bottom:336.131842px;}
.ye3{bottom:336.897000px;}
.y10d{bottom:337.032000px;}
.y1fa{bottom:337.525500px;}
.y38{bottom:338.529000px;}
.y1b3{bottom:339.021000px;}
.yca{bottom:342.120960px;}
.y2df{bottom:342.261000px;}
.y1fb{bottom:342.951000px;}
.y224{bottom:343.398000px;}
.y316{bottom:346.147500px;}
.y1c4{bottom:347.557500px;}
.y252{bottom:347.937000px;}
.y198{bottom:351.127500px;}
.y9d{bottom:351.975000px;}
.y6f{bottom:352.423500px;}
.ya{bottom:353.556000px;}
.y1dc{bottom:354.538500px;}
.ye2{bottom:355.726500px;}
.y1f9{bottom:356.355000px;}
.y143{bottom:357.120000px;}
.y37{bottom:357.358500px;}
.y1b2{bottom:357.850500px;}
.y2de{bottom:359.521500px;}
.y10c{bottom:360.345000px;}
.y223{bottom:362.227500px;}
.y315{bottom:363.408000px;}
.y251{bottom:366.766500px;}
.ycb{bottom:367.327167px;}
.y236{bottom:368.603460px;}
.y197{bottom:369.957000px;}
.y9c{bottom:370.804500px;}
.y1c3{bottom:370.870500px;}
.y6e{bottom:371.253000px;}
.y1da{bottom:373.366500px;}
.ye1{bottom:374.556000px;}
.y1f8{bottom:375.184500px;}
.y36{bottom:376.188000px;}
.y1b1{bottom:376.680000px;}
.y2dd{bottom:376.782000px;}
.y1db{bottom:378.792000px;}
.y12e{bottom:379.037820px;}
.y314{bottom:380.668500px;}
.y222{bottom:381.057000px;}
.y9{bottom:381.904500px;}
.y196{bottom:388.786500px;}
.y9b{bottom:389.634000px;}
.y250{bottom:390.079500px;}
.y6d{bottom:390.082500px;}
.ye0{bottom:393.385500px;}
.y10b{bottom:393.969000px;}
.y1d9{bottom:394.020000px;}
.y2dc{bottom:394.042500px;}
.y35{bottom:395.017500px;}
.y1b0{bottom:395.508000px;}
.y313{bottom:397.929000px;}
.y1f7{bottom:398.497500px;}
.y8{bottom:399.792000px;}
.y220{bottom:399.886500px;}
.y1c2{bottom:401.298000px;}
.y221{bottom:405.310500px;}
.y195{bottom:407.616000px;}
.y9a{bottom:408.463500px;}
.y6c{bottom:408.912000px;}
.y2db{bottom:411.301500px;}
.ydf{bottom:412.215000px;}
.y10a{bottom:412.797000px;}
.y1d8{bottom:412.849500px;}
.y34{bottom:413.847000px;}
.y1af{bottom:414.337500px;}
.y312{bottom:415.188000px;}
.y1f6{bottom:417.327000px;}
.y1c1{bottom:420.531000px;}
.y21f{bottom:420.538500px;}
.y24f{bottom:423.703500px;}
.y194{bottom:426.445500px;}
.y7{bottom:426.646500px;}
.y99{bottom:427.293000px;}
.y6b{bottom:427.741500px;}
.y2da{bottom:428.562000px;}
.yde{bottom:431.044500px;}
.y109{bottom:431.626500px;}
.y1d6{bottom:431.679000px;}
.y311{bottom:432.448500px;}
.y33{bottom:432.675000px;}
.y1ae{bottom:433.167000px;}
.y1f5{bottom:436.156500px;}
.y1d7{bottom:437.103000px;}
.y21e{bottom:439.368000px;}
.y24e{bottom:442.533000px;}
.y6{bottom:444.534000px;}
.y193{bottom:445.275000px;}
.y2d9{bottom:445.822500px;}
.y98{bottom:446.122500px;}
.y6a{bottom:446.571000px;}
.y310{bottom:449.709000px;}
.ydd{bottom:449.874000px;}
.y108{bottom:450.456000px;}
.y1ad{bottom:451.996500px;}
.y1d5{bottom:452.331000px;}
.y1f4{bottom:454.986000px;}
.y32{bottom:455.988000px;}
.y21c{bottom:458.197500px;}
.y296{bottom:460.675500px;}
.y24d{bottom:461.362500px;}
.y5{bottom:462.423000px;}
.y2d8{bottom:463.083000px;}
.y21d{bottom:463.623000px;}
.y192{bottom:464.103000px;}
.y97{bottom:464.952000px;}
.y69{bottom:465.400500px;}
.y30f{bottom:466.969500px;}
.ydc{bottom:468.702000px;}
.y107{bottom:469.285500px;}
.y1ac{bottom:470.826000px;}
.y1f3{bottom:473.815500px;}
.y21b{bottom:478.851000px;}
.y295{bottom:479.505000px;}
.y24c{bottom:480.192000px;}
.y4{bottom:480.310500px;}
.y2d7{bottom:480.343500px;}
.y191{bottom:482.932500px;}
.y96{bottom:483.781500px;}
.y68{bottom:484.230000px;}
.y1d4{bottom:485.896500px;}
.ydb{bottom:487.531500px;}
.y106{bottom:488.115000px;}
.y1ab{bottom:489.655500px;}
.y1f2{bottom:492.645000px;}
.y2d6{bottom:497.604000px;}
.y21a{bottom:497.680500px;}
.y3{bottom:498.198000px;}
.y294{bottom:498.333000px;}
.y24b{bottom:499.021500px;}
.y27d{bottom:500.897151px;}
.y30e{bottom:501.490500px;}
.y190{bottom:501.762000px;}
.y95{bottom:502.611000px;}
.y67{bottom:503.059500px;}
.yda{bottom:506.361000px;}
.y105{bottom:506.944500px;}
.y1aa{bottom:508.485000px;}
.y1f1{bottom:511.474500px;}
.y27c{bottom:512.788284px;}
.y2d5{bottom:514.864500px;}
.y2{bottom:516.087000px;}
.y219{bottom:516.508500px;}
.y293{bottom:517.162500px;}
.y24a{bottom:517.851000px;}
.y30d{bottom:518.751000px;}
.y18f{bottom:520.591500px;}
.y94{bottom:521.440500px;}
.y66{bottom:521.889000px;}
.yd9{bottom:525.190500px;}
.y104{bottom:525.774000px;}
.y1a9{bottom:527.314500px;}
.y1f0{bottom:530.304000px;}
.y31{bottom:531.138000px;}
.y277{bottom:531.380332px;}
.y2d4{bottom:532.125000px;}
.y1{bottom:533.974500px;}
.y218{bottom:535.338000px;}
.y292{bottom:535.992000px;}
.y30c{bottom:536.011500px;}
.y249{bottom:536.680500px;}
.yb8{bottom:539.246745px;}
.y18e{bottom:539.421000px;}
.y93{bottom:540.270000px;}
.y65{bottom:540.718500px;}
.yb6{bottom:543.838500px;}
.yd8{bottom:544.020000px;}
.y103{bottom:544.603500px;}
.y1ef{bottom:549.133500px;}
.y2d3{bottom:549.384000px;}
.y30{bottom:550.596000px;}
.y30b{bottom:553.272000px;}
.y217{bottom:554.167500px;}
.y291{bottom:554.821500px;}
.y248{bottom:555.510000px;}
.y18d{bottom:558.250500px;}
.y92{bottom:559.099500px;}
.y64{bottom:559.548000px;}
.y1a8{bottom:560.880000px;}
.yb5{bottom:562.668000px;}
.yd7{bottom:562.849500px;}
.y102{bottom:563.433000px;}
.y1ee{bottom:567.963000px;}
.y30a{bottom:570.531000px;}
.y2d2{bottom:571.128000px;}
.y290{bottom:573.651000px;}
.y247{bottom:574.339500px;}
.y18c{bottom:577.080000px;}
.y216{bottom:577.480500px;}
.y91{bottom:577.929000px;}
.y63{bottom:578.377500px;}
.yd6{bottom:581.679000px;}
.y101{bottom:582.262500px;}
.yb3{bottom:583.320000px;}
.y278{bottom:586.119929px;}
.y1ed{bottom:586.792500px;}
.y309{bottom:587.791500px;}
.y2f{bottom:587.985000px;}
.yb4{bottom:588.745500px;}
.y285{bottom:589.661093px;}
.y28f{bottom:592.480500px;}
.y246{bottom:593.169000px;}
.y18b{bottom:595.909500px;}
.y90{bottom:596.758500px;}
.y62{bottom:597.207000px;}
.yd5{bottom:600.508500px;}
.y100{bottom:601.092000px;}
.y284{bottom:602.585034px;}
.yb1{bottom:603.972000px;}
.y2d1{bottom:604.489500px;}
.y308{bottom:605.052000px;}
.y1ec{bottom:605.622000px;}
.y2e{bottom:607.443000px;}
.yb2{bottom:609.397500px;}
.y215{bottom:611.104500px;}
.y28e{bottom:611.310000px;}
.y245{bottom:611.998500px;}
.y2d0{bottom:614.383500px;}
.y18a{bottom:614.739000px;}
.y27e{bottom:615.298824px;}
.y8f{bottom:615.588000px;}
.y61{bottom:616.036500px;}
.y283{bottom:618.305262px;}
.y16d{bottom:618.466500px;}
.yd4{bottom:619.338000px;}
.yff{bottom:619.921500px;}
.y307{bottom:622.312500px;}
.y1eb{bottom:624.451500px;}
.yb0{bottom:624.625500px;}
.y2d{bottom:626.899500px;}
.y214{bottom:629.934000px;}
.y28d{bottom:630.139500px;}
.y244{bottom:630.828000px;}
.y189{bottom:633.568500px;}
.y8e{bottom:634.417500px;}
.y60{bottom:634.866000px;}
.y2cf{bottom:635.014500px;}
.y16c{bottom:637.296000px;}
.yd3{bottom:638.167500px;}
.yfe{bottom:638.751000px;}
.y306{bottom:639.573000px;}
.y279{bottom:640.859525px;}
.y1ea{bottom:643.281000px;}
.yaf{bottom:643.455000px;}
.y2c{bottom:646.356000px;}
.y213{bottom:648.763500px;}
.y28c{bottom:648.969000px;}
.y243{bottom:649.657500px;}
.y282{bottom:651.284833px;}
.y188{bottom:652.398000px;}
.y8d{bottom:653.247000px;}
.y5f{bottom:653.695500px;}
.y2ce{bottom:655.644000px;}
.y16b{bottom:656.125500px;}
.y305{bottom:656.833500px;}
.yd2{bottom:656.997000px;}
.yfd{bottom:657.580500px;}
.y1e9{bottom:662.109000px;}
.yae{bottom:662.284500px;}
.y281{bottom:664.208775px;}
.y2b{bottom:665.814000px;}
.y212{bottom:667.593000px;}
.y28b{bottom:667.798500px;}
.y242{bottom:668.487000px;}
.y8c{bottom:672.076500px;}
.y5e{bottom:672.525000px;}
.y304{bottom:674.094000px;}
.y12d{bottom:674.217000px;}
.y16a{bottom:674.955000px;}
.yd1{bottom:675.826500px;}
.y2cd{bottom:676.273500px;}
.yfc{bottom:676.410000px;}
.y262{bottom:676.560000px;}
.y280{bottom:677.132716px;}
.yad{bottom:681.114000px;}
.y2a{bottom:685.270500px;}
.y1e8{bottom:685.422000px;}
.y211{bottom:686.422500px;}
.y28a{bottom:686.628000px;}
.y8b{bottom:690.906000px;}
.y5d{bottom:691.354500px;}
.y27f{bottom:692.852943px;}
.y12c{bottom:693.046500px;}
.y169{bottom:693.784500px;}
.yd0{bottom:694.656000px;}
.yfb{bottom:695.239500px;}
.y27a{bottom:695.599122px;}
.y2cc{bottom:696.904500px;}
.y187{bottom:697.860000px;}
.yac{bottom:699.943500px;}
.y241{bottom:702.052500px;}
.y29{bottom:704.727000px;}
.y210{bottom:705.252000px;}
.y289{bottom:705.457500px;}
.y184{bottom:706.080000px;}
.y303{bottom:708.613500px;}
.y8a{bottom:709.735500px;}
.y5c{bottom:710.184000px;}
.y12b{bottom:711.876000px;}
.y168{bottom:712.614000px;}
.ycf{bottom:713.485500px;}
.yfa{bottom:714.069000px;}
.y186{bottom:714.298500px;}
.y2cb{bottom:717.534000px;}
.yab{bottom:718.773000px;}
.y1e7{bottom:718.987500px;}
.y240{bottom:721.285500px;}
.y183{bottom:722.517000px;}
.y20f{bottom:724.081500px;}
.y28{bottom:724.185000px;}
.y288{bottom:724.287000px;}
.y302{bottom:725.874000px;}
.y89{bottom:728.565000px;}
.y5b{bottom:729.013500px;}
.y12a{bottom:730.705500px;}
.y185{bottom:730.737000px;}
.y167{bottom:731.443500px;}
.yf9{bottom:732.898500px;}
.y22e{bottom:735.886922px;}
.yaa{bottom:737.602500px;}
.y2ca{bottom:738.165000px;}
.y326{bottom:741.565500px;}
.y20e{bottom:742.911000px;}
.y301{bottom:743.134500px;}
.y27{bottom:743.641500px;}
.yce{bottom:745.840500px;}
.y88{bottom:747.394500px;}
.y5a{bottom:747.843000px;}
.y129{bottom:749.535000px;}
.y166{bottom:750.273000px;}
.y27b{bottom:750.338719px;}
.yf8{bottom:751.728000px;}
.y182{bottom:754.677000px;}
.y287{bottom:756.162000px;}
.ya9{bottom:756.430500px;}
.y2c9{bottom:758.794500px;}
.y325{bottom:758.826000px;}
.y300{bottom:760.395000px;}
.y20d{bottom:761.740500px;}
.y26{bottom:763.099500px;}
.y87{bottom:766.224000px;}
.y59{bottom:766.671000px;}
.y165{bottom:769.102500px;}
.yf7{bottom:770.557500px;}
.y180{bottom:771.115500px;}
.y237{bottom:774.060592px;}
.y286{bottom:775.395000px;}
.y324{bottom:776.086500px;}
.y2ff{bottom:777.655500px;}
.y2c8{bottom:779.424000px;}
.y20c{bottom:780.570000px;}
.y25{bottom:782.556000px;}
.y128{bottom:783.100500px;}
.y86{bottom:785.053500px;}
.y58{bottom:785.500500px;}
.y17f{bottom:787.552500px;}
.yf6{bottom:789.387000px;}
.ya8{bottom:789.997500px;}
.y2fe{bottom:794.916000px;}
.y26c{bottom:797.079229px;}
.y20b{bottom:799.399500px;}
.y2c7{bottom:800.055000px;}
.y24{bottom:802.012500px;}
.y127{bottom:802.333500px;}
.y164{bottom:802.570500px;}
.y85{bottom:803.883000px;}
.y181{bottom:803.991000px;}
.y57{bottom:804.330000px;}
.yf5{bottom:808.216500px;}
.y2fd{bottom:812.176500px;}
.y2c6{bottom:812.433000px;}
.y20a{bottom:818.229000px;}
.y23{bottom:821.470500px;}
.y126{bottom:821.566500px;}
.y163{bottom:821.803500px;}
.y84{bottom:822.712500px;}
.y56{bottom:823.159500px;}
.yf4{bottom:827.046000px;}
.y17e{bottom:827.931000px;}
.y264{bottom:828.585000px;}
.y2fc{bottom:829.437000px;}
.y2c5{bottom:829.693500px;}
.y2c4{bottom:834.574500px;}
.y209{bottom:837.058500px;}
.y22{bottom:840.927000px;}
.y83{bottom:841.540500px;}
.y55{bottom:841.989000px;}
.y116{bottom:843.473882px;}
.y151{bottom:843.579721px;}
.yf3{bottom:845.875500px;}
.y2fb{bottom:846.697500px;}
.y2c3{bottom:855.205500px;}
.y208{bottom:855.888000px;}
.y17d{bottom:859.551000px;}
.y82{bottom:860.370000px;}
.y21{bottom:860.383500px;}
.y54{bottom:860.818500px;}
.y2fa{bottom:863.956500px;}
.yf2{bottom:872.176500px;}
.y2c2{bottom:875.835000px;}
.y81{bottom:879.199500px;}
.y53{bottom:879.648000px;}
.y20{bottom:879.841500px;}
.y2f9{bottom:881.217000px;}
.yf1{bottom:891.006000px;}
.y2c1{bottom:896.466000px;}
.y17c{bottom:896.655000px;}
.y80{bottom:898.029000px;}
.y52{bottom:898.477500px;}
.yf0{bottom:909.835500px;}
.y207{bottom:912.823500px;}
.y17b{bottom:915.484500px;}
.y2f8{bottom:915.738000px;}
.y2c0{bottom:915.790500px;}
.y7f{bottom:916.858500px;}
.y51{bottom:917.307000px;}
.y1f{bottom:918.426000px;}
.y2f7{bottom:932.998500px;}
.y17a{bottom:934.314000px;}
.y7e{bottom:935.688000px;}
.y50{bottom:936.136500px;}
.y2bf{bottom:936.421500px;}
.y1e{bottom:938.905500px;}
.y2f6{bottom:950.259000px;}
.y1d{bottom:950.706000px;}
.y179{bottom:953.143500px;}
.y7d{bottom:954.517500px;}
.y4f{bottom:954.966000px;}
.y1c{bottom:955.045500px;}
.y2be{bottom:957.567000px;}
.y2f5{bottom:967.519500px;}
.y22c{bottom:971.774752px;}
.y177{bottom:971.973000px;}
.y1d3{bottom:973.347000px;}
.y4e{bottom:973.795500px;}
.y178{bottom:977.397000px;}
.y7c{bottom:977.830500px;}
.y2f4{bottom:984.780000px;}
.y2bd{bottom:991.191000px;}
.y2ad{bottom:992.176500px;}
.y4d{bottom:992.625000px;}
.y1d2{bottom:996.660000px;}
.y1b{bottom:999.721500px;}
.y2f3{bottom:1002.040500px;}
.y2ac{bottom:1011.006000px;}
.y4c{bottom:1011.454500px;}
.y2bc{bottom:1017.730500px;}
.y2f2{bottom:1019.299500px;}
.y2ab{bottom:1029.835500px;}
.y4b{bottom:1030.284000px;}
.y2bb{bottom:1035.304500px;}
.y1a{bottom:1036.485000px;}
.y2f1{bottom:1036.560000px;}
.y4a{bottom:1049.113500px;}
.y2ba{bottom:1052.880000px;}
.y2aa{bottom:1053.148500px;}
.y2f0{bottom:1053.820500px;}
.y19{bottom:1064.728500px;}
.y49{bottom:1067.943000px;}
.y2b9{bottom:1070.454000px;}
.y2ef{bottom:1071.081000px;}
.y48{bottom:1086.772500px;}
.y2b8{bottom:1088.028000px;}
.y2ee{bottom:1088.341500px;}
.y18{bottom:1092.972000px;}
.y14f{bottom:1102.066667px;}
.y47{bottom:1105.602000px;}
.y16{bottom:1142.282191px;}
.y46{bottom:1168.366500px;}
.h21{height:14.609997px;}
.h13{height:18.161603px;}
.h38{height:18.318423px;}
.h1e{height:19.880388px;}
.h1c{height:19.893722px;}
.h19{height:20.285754px;}
.h17{height:20.299359px;}
.h39{height:22.545752px;}
.h22{height:22.645981px;}
.h1d{height:23.872466px;}
.h35{height:23.972739px;}
.h18{height:24.359231px;}
.h32{height:25.759555px;}
.h30{height:25.929672px;}
.h9{height:26.111904px;}
.h29{height:26.302320px;}
.h25{height:27.678421px;}
.h1f{height:27.851211px;}
.h14{height:27.990301px;}
.h1a{height:28.419103px;}
.h24{height:30.194641px;}
.h2{height:30.462432px;}
.h36{height:30.510759px;}
.h3{height:30.671652px;}
.h2e{height:30.865255px;}
.h33{height:31.704068px;}
.h27{height:32.478975px;}
.h10{height:33.074496px;}
.ha{height:34.812960px;}
.hf{height:35.052060px;}
.h2c{height:37.724200px;}
.h28{height:38.542932px;}
.hb{height:38.733120px;}
.hc{height:39.163488px;}
.h3a{height:39.414432px;}
.h2a{height:39.432468px;}
.h4{height:39.743818px;}
.h15{height:41.482476px;}
.hd{height:43.040160px;}
.he{height:43.518384px;}
.h6{height:43.817274px;}
.h20{height:46.714500px;}
.h8{height:54.413040px;}
.h5{height:54.668250px;}
.h11{height:54.770496px;}
.h3b{height:62.095500px;}
.h7{height:77.470560px;}
.h2b{height:107.860135px;}
.h2f{height:153.981671px;}
.h37{height:179.491752px;}
.h31{height:252.403143px;}
.h1b{height:272.388997px;}
.h26{height:277.246800px;}
.h16{height:277.943071px;}
.h23{height:278.482437px;}
.h2d{height:397.209639px;}
.h12{height:419.632740px;}
.h34{height:958.488787px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:47.689724px;}
.w2{width:79.647267px;}
.wd{width:190.009074px;}
.w7{width:237.035637px;}
.wb{width:267.192708px;}
.w5{width:290.309347px;}
.w4{width:296.228821px;}
.wc{width:296.473359px;}
.w8{width:297.921881px;}
.w9{width:311.741094px;}
.wa{width:368.082106px;}
.w3{width:498.035460px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6c{left:6.260948px;}
.x70{left:9.156049px;}
.x46{left:11.591417px;}
.x33{left:12.828309px;}
.x1c{left:14.050093px;}
.x18{left:16.557853px;}
.x87{left:18.264223px;}
.x2f{left:19.523170px;}
.x19{left:20.625997px;}
.x2d{left:21.690492px;}
.x89{left:23.068540px;}
.x81{left:24.137937px;}
.x88{left:27.642513px;}
.x1a{left:29.054857px;}
.x45{left:31.653497px;}
.x8a{left:40.483441px;}
.x3{left:45.698648px;}
.x91{left:48.392255px;}
.x12{left:49.410062px;}
.x4{left:52.525500px;}
.x1{left:53.574000px;}
.x13{left:56.537582px;}
.x2{left:59.396168px;}
.x10{left:63.034005px;}
.x82{left:80.044532px;}
.x71{left:83.824457px;}
.x27{left:85.123046px;}
.x25{left:87.485119px;}
.x32{left:91.335456px;}
.x1e{left:92.431525px;}
.x6f{left:93.710165px;}
.x34{left:95.583753px;}
.x8b{left:97.874985px;}
.x22{left:115.584228px;}
.x1b{left:117.941017px;}
.x83{left:127.439138px;}
.x6d{left:131.075787px;}
.x31{left:159.543073px;}
.x72{left:181.516436px;}
.x6e{left:187.236024px;}
.x84{left:201.223768px;}
.xf{left:207.682073px;}
.x85{left:218.393263px;}
.x8c{left:232.035384px;}
.x14{left:235.171008px;}
.x94{left:238.488000px;}
.x23{left:242.542227px;}
.x17{left:247.348020px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x3c{left:250.599000px;}
.x28{left:254.359500px;}
.x24{left:260.237293px;}
.x1d{left:265.543591px;}
.x51{left:267.024000px;}
.x6{left:269.763000px;}
.x42{left:279.037500px;}
.xa{left:281.479500px;}
.x3d{left:284.370000px;}
.x2c{left:287.851573px;}
.x29{left:290.758500px;}
.x58{left:306.796500px;}
.x8{left:308.362500px;}
.x1f{left:312.697500px;}
.x8d{left:317.829000px;}
.x9{left:319.911000px;}
.x67{left:321.618000px;}
.x4a{left:326.443500px;}
.x35{left:328.066500px;}
.x69{left:333.573000px;}
.x68{left:342.255000px;}
.x36{left:346.390500px;}
.x77{left:353.584500px;}
.x2e{left:356.057463px;}
.x4b{left:361.569000px;}
.x8e{left:365.854500px;}
.x47{left:371.122500px;}
.x93{left:372.415500px;}
.x92{left:378.418500px;}
.x43{left:388.362000px;}
.x59{left:396.210000px;}
.x52{left:405.355500px;}
.x44{left:408.142500px;}
.x2a{left:422.013000px;}
.x30{left:432.898104px;}
.x11{left:436.302227px;}
.x4f{left:439.900500px;}
.x8f{left:441.383532px;}
.x4e{left:444.076500px;}
.x48{left:447.996000px;}
.xd{left:449.880000px;}
.x2b{left:458.412000px;}
.xe{left:461.274000px;}
.x5e{left:463.974000px;}
.x15{left:471.700500px;}
.x49{left:472.906500px;}
.x5f{left:480.324000px;}
.x16{left:483.991500px;}
.x37{left:485.553000px;}
.x86{left:517.800796px;}
.x20{left:527.082000px;}
.x21{left:539.373000px;}
.x26{left:541.586793px;}
.x7d{left:582.198000px;}
.x7c{left:587.875500px;}
.x60{left:593.190000px;}
.x73{left:596.953500px;}
.x7e{left:604.779000px;}
.x74{left:610.099500px;}
.xb{left:615.097500px;}
.x4c{left:624.043500px;}
.xc{left:625.254000px;}
.x61{left:628.611000px;}
.x90{left:633.707537px;}
.x4d{left:634.875000px;}
.x79{left:651.570000px;}
.x62{left:653.965500px;}
.x50{left:660.274500px;}
.x63{left:673.870500px;}
.x5a{left:677.382000px;}
.x66{left:686.250000px;}
.x7a{left:690.115500px;}
.x5b{left:692.451000px;}
.x7f{left:696.339000px;}
.x7b{left:702.406500px;}
.x78{left:704.467500px;}
.x80{left:712.195500px;}
.x3e{left:718.308000px;}
.x56{left:724.633500px;}
.x38{left:726.472500px;}
.x53{left:727.485000px;}
.x3f{left:733.363500px;}
.x57{left:734.791500px;}
.x39{left:741.528000px;}
.x54{left:742.593000px;}
.x6a{left:744.349500px;}
.x6b{left:760.191000px;}
.x64{left:768.328500px;}
.x40{left:777.960000px;}
.x3a{left:784.479000px;}
.x5c{left:797.353500px;}
.x5d{left:807.367500px;}
.x41{left:810.295500px;}
.x3b{left:811.491000px;}
.x65{left:812.736000px;}
.x75{left:825.015000px;}
.x55{left:832.488000px;}
.x76{left:837.120000px;}
@media print{
.v7{vertical-align:-19.290667pt;}
.v8{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-9.301333pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.210496pt;}
.v3{vertical-align:14.117875pt;}
.va{vertical-align:17.824000pt;}
.v1{vertical-align:19.290667pt;}
.v9{vertical-align:25.317333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.514507pt;}
.ls24{letter-spacing:0.586219pt;}
.lsd{letter-spacing:1.170667pt;}
.lsf{letter-spacing:1.853717pt;}
.ls11{letter-spacing:1.859051pt;}
.ls15{letter-spacing:1.990859pt;}
.ls17{letter-spacing:1.996192pt;}
.lsa{letter-spacing:2.656000pt;}
.ls22{letter-spacing:3.258667pt;}
.ls23{letter-spacing:6.959552pt;}
.ls21{letter-spacing:9.909275pt;}
.ls3{letter-spacing:10.626667pt;}
.ls14{letter-spacing:11.018469pt;}
.ls1c{letter-spacing:11.509333pt;}
.lsb{letter-spacing:13.071826pt;}
.ls8{letter-spacing:13.122667pt;}
.ls1e{letter-spacing:13.203744pt;}
.ls7{letter-spacing:13.229333pt;}
.lsc{letter-spacing:13.282667pt;}
.ls1d{letter-spacing:13.491744pt;}
.ls5{letter-spacing:13.544379pt;}
.ls9{letter-spacing:13.602667pt;}
.ls6{letter-spacing:14.339045pt;}
.ls1a{letter-spacing:15.326560pt;}
.ls12{letter-spacing:16.088000pt;}
.ls13{letter-spacing:17.315045pt;}
.lse{letter-spacing:23.047957pt;}
.ls18{letter-spacing:24.298667pt;}
.ls16{letter-spacing:24.304000pt;}
.ls10{letter-spacing:25.565333pt;}
.ls1{letter-spacing:55.786667pt;}
.ls2{letter-spacing:57.175040pt;}
.ls0{letter-spacing:64.320000pt;}
.ls19{letter-spacing:83.143584pt;}
.ls1f{letter-spacing:97.621333pt;}
.ls20{letter-spacing:97.626667pt;}
.wsc{word-spacing:-60.489811pt;}
.ws8e{word-spacing:-13.284000pt;}
.ws127{word-spacing:-12.795977pt;}
.ws1a5{word-spacing:-11.954667pt;}
.ws163{word-spacing:-10.753959pt;}
.ws165{word-spacing:-10.349191pt;}
.ws10{word-spacing:-10.096000pt;}
.ws4{word-spacing:-9.298667pt;}
.wsad{word-spacing:-8.262605pt;}
.wsb5{word-spacing:-8.097495pt;}
.ws16c{word-spacing:-7.647476pt;}
.wsc1{word-spacing:-5.047707pt;}
.wsc5{word-spacing:-4.622673pt;}
.wsc2{word-spacing:-4.250933pt;}
.wsfd{word-spacing:-3.294113pt;}
.ws117{word-spacing:-2.975297pt;}
.ws188{word-spacing:-2.762913pt;}
.ws7f{word-spacing:-2.656800pt;}
.ws178{word-spacing:-2.443990pt;}
.ws177{word-spacing:-2.178417pt;}
.ws9a{word-spacing:-2.018955pt;}
.wsc7{word-spacing:-1.966138pt;}
.ws9c{word-spacing:-1.912896pt;}
.ws9d{word-spacing:-1.912790pt;}
.wsb7{word-spacing:-1.859973pt;}
.ws183{word-spacing:-1.859441pt;}
.ws1a2{word-spacing:-1.769291pt;}
.ws13a{word-spacing:-1.647216pt;}
.wse2{word-spacing:-1.593867pt;}
.ws1a3{word-spacing:-1.578159pt;}
.ws116{word-spacing:-1.541103pt;}
.ws97{word-spacing:-1.541050pt;}
.wsf2{word-spacing:-1.487808pt;}
.wsf8{word-spacing:-1.434938pt;}
.ws1a1{word-spacing:-1.434656pt;}
.wsf9{word-spacing:-1.434459pt;}
.ws18b{word-spacing:-1.434406pt;}
.ws125{word-spacing:-1.381589pt;}
.ws9e{word-spacing:-1.328241pt;}
.ws9f{word-spacing:-1.222128pt;}
.ws84{word-spacing:-1.177498pt;}
.wsf4{word-spacing:-1.168779pt;}
.ws81{word-spacing:-1.128735pt;}
.ws80{word-spacing:-1.116069pt;}
.ws82{word-spacing:-1.116015pt;}
.wsf7{word-spacing:-1.009850pt;}
.wsf6{word-spacing:-0.956554pt;}
.ws51{word-spacing:-0.918640pt;}
.ws53{word-spacing:-0.911680pt;}
.ws52{word-spacing:-0.911243pt;}
.ws55{word-spacing:-0.908363pt;}
.ws17a{word-spacing:-0.903259pt;}
.ws50{word-spacing:-0.903206pt;}
.ws54{word-spacing:-0.857909pt;}
.ws4e{word-spacing:-0.802885pt;}
.ws16f{word-spacing:-0.802667pt;}
.ws4f{word-spacing:-0.797040pt;}
.ws170{word-spacing:-0.747248pt;}
.wsc9{word-spacing:-0.743745pt;}
.ws9b{word-spacing:-0.690927pt;}
.ws102{word-spacing:-0.584283pt;}
.ws1cb{word-spacing:-0.478426pt;}
.ws104{word-spacing:-0.478118pt;}
.ws1bc{word-spacing:-0.430416pt;}
.ws18c{word-spacing:-0.425354pt;}
.ws190{word-spacing:-0.424822pt;}
.wse6{word-spacing:-0.372005pt;}
.ws17c{word-spacing:-0.328975pt;}
.ws18a{word-spacing:-0.324875pt;}
.ws5e{word-spacing:-0.318657pt;}
.ws1bb{word-spacing:-0.286960pt;}
.ws189{word-spacing:-0.280155pt;}
.ws5b{word-spacing:-0.265839pt;}
.ws1ba{word-spacing:-0.257355pt;}
.ws1b{word-spacing:-0.238950pt;}
.ws3b{word-spacing:-0.229333pt;}
.ws103{word-spacing:-0.225881pt;}
.ws3a{word-spacing:-0.212544pt;}
.ws15a{word-spacing:-0.209269pt;}
.ws1d2{word-spacing:-0.204612pt;}
.ws159{word-spacing:-0.204256pt;}
.ws1b0{word-spacing:-0.191466pt;}
.ws70{word-spacing:-0.184426pt;}
.wsd1{word-spacing:-0.159727pt;}
.ws37{word-spacing:-0.159195pt;}
.ws1e{word-spacing:-0.143456pt;}
.wse7{word-spacing:-0.141787pt;}
.ws79{word-spacing:-0.124617pt;}
.wsea{word-spacing:-0.119769pt;}
.ws101{word-spacing:-0.119716pt;}
.wse8{word-spacing:-0.118107pt;}
.ws1b9{word-spacing:-0.115893pt;}
.ws143{word-spacing:-0.115626pt;}
.ws154{word-spacing:-0.115183pt;}
.ws18f{word-spacing:-0.112768pt;}
.ws168{word-spacing:-0.110667pt;}
.ws90{word-spacing:-0.109333pt;}
.ws45{word-spacing:-0.106378pt;}
.ws46{word-spacing:-0.105847pt;}
.wsb0{word-spacing:-0.096020pt;}
.ws1b5{word-spacing:-0.095494pt;}
.wse9{word-spacing:-0.057909pt;}
.ws49{word-spacing:-0.053083pt;}
.ws18{word-spacing:-0.048010pt;}
.ws42{word-spacing:-0.024528pt;}
.ws44{word-spacing:-0.022235pt;}
.ws12{word-spacing:-0.021141pt;}
.ws11{word-spacing:-0.020005pt;}
.ws88{word-spacing:-0.019839pt;}
.ws59{word-spacing:-0.015525pt;}
.wsfc{word-spacing:-0.015152pt;}
.wsb3{word-spacing:-0.014859pt;}
.wsf{word-spacing:-0.014790pt;}
.ws15c{word-spacing:-0.014283pt;}
.ws171{word-spacing:-0.013259pt;}
.wsd3{word-spacing:-0.012692pt;}
.ws14b{word-spacing:-0.012010pt;}
.ws85{word-spacing:-0.011995pt;}
.ws4a{word-spacing:-0.011269pt;}
.wsb1{word-spacing:-0.010991pt;}
.ws4b{word-spacing:-0.010955pt;}
.wsab{word-spacing:-0.010901pt;}
.ws14a{word-spacing:-0.009931pt;}
.wsb9{word-spacing:-0.009275pt;}
.wsf3{word-spacing:-0.008395pt;}
.ws7e{word-spacing:-0.006608pt;}
.ws15b{word-spacing:-0.005915pt;}
.ws149{word-spacing:-0.004949pt;}
.ws43{word-spacing:-0.004576pt;}
.ws2{word-spacing:-0.004491pt;}
.ws13d{word-spacing:-0.002885pt;}
.wsb2{word-spacing:-0.001604pt;}
.ws1ce{word-spacing:-0.001355pt;}
.wse{word-spacing:-0.000287pt;}
.ws3c{word-spacing:-0.000266pt;}
.ws1{word-spacing:0.000000pt;}
.ws41{word-spacing:0.000266pt;}
.wsd{word-spacing:0.000287pt;}
.wsbf{word-spacing:0.000971pt;}
.ws47{word-spacing:0.002613pt;}
.ws1bf{word-spacing:0.003760pt;}
.ws1a9{word-spacing:0.004725pt;}
.wsd5{word-spacing:0.004960pt;}
.ws1ae{word-spacing:0.005125pt;}
.ws1ab{word-spacing:0.006464pt;}
.wsc0{word-spacing:0.006640pt;}
.ws16e{word-spacing:0.008512pt;}
.wsee{word-spacing:0.028289pt;}
.ws16{word-spacing:0.048010pt;}
.ws5f{word-spacing:0.053083pt;}
.ws58{word-spacing:0.081759pt;}
.ws83{word-spacing:0.091540pt;}
.ws57{word-spacing:0.093803pt;}
.ws1a{word-spacing:0.095446pt;}
.ws2a{word-spacing:0.097931pt;}
.ws28{word-spacing:0.100566pt;}
.ws29{word-spacing:0.102091pt;}
.ws11c{word-spacing:0.105847pt;}
.ws21{word-spacing:0.106378pt;}
.ws13{word-spacing:0.127477pt;}
.wsfa{word-spacing:0.134838pt;}
.wsef{word-spacing:0.137371pt;}
.ws2d{word-spacing:0.140442pt;}
.ws17f{word-spacing:0.141264pt;}
.ws15{word-spacing:0.143456pt;}
.ws30{word-spacing:0.150091pt;}
.ws14e{word-spacing:0.150487pt;}
.ws115{word-spacing:0.156881pt;}
.ws31{word-spacing:0.159195pt;}
.ws18e{word-spacing:0.159727pt;}
.ws15e{word-spacing:0.189925pt;}
.ws19{word-spacing:0.190940pt;}
.ws1d{word-spacing:0.191466pt;}
.ws175{word-spacing:0.199178pt;}
.ws15f{word-spacing:0.201397pt;}
.ws2e{word-spacing:0.203424pt;}
.ws2c{word-spacing:0.207669pt;}
.ws2f{word-spacing:0.212544pt;}
.wsbe{word-spacing:0.238950pt;}
.ws65{word-spacing:0.247098pt;}
.ws182{word-spacing:0.249541pt;}
.ws18d{word-spacing:0.250641pt;}
.ws66{word-spacing:0.251418pt;}
.ws118{word-spacing:0.251738pt;}
.ws11a{word-spacing:0.254134pt;}
.ws64{word-spacing:0.256757pt;}
.ws71{word-spacing:0.258085pt;}
.ws63{word-spacing:0.261051pt;}
.ws67{word-spacing:0.265361pt;}
.ws72{word-spacing:0.265893pt;}
.ws1b1{word-spacing:0.286912pt;}
.ws119{word-spacing:0.307664pt;}
.ws34{word-spacing:0.310059pt;}
.ws11b{word-spacing:0.310091pt;}
.ws20{word-spacing:0.318657pt;}
.ws12e{word-spacing:0.319188pt;}
.ws1a8{word-spacing:0.334922pt;}
.ws35{word-spacing:0.355685pt;}
.ws17e{word-spacing:0.359178pt;}
.ws32{word-spacing:0.363424pt;}
.ws33{word-spacing:0.365115pt;}
.ws169{word-spacing:0.371474pt;}
.ws36{word-spacing:0.372005pt;}
.ws1a7{word-spacing:0.381880pt;}
.ws17{word-spacing:0.382406pt;}
.ws17d{word-spacing:0.416469pt;}
.ws5c{word-spacing:0.425354pt;}
.ws5d{word-spacing:0.478118pt;}
.wsbd{word-spacing:0.478378pt;}
.ws1c6{word-spacing:0.525862pt;}
.ws123{word-spacing:0.531466pt;}
.ws3f{word-spacing:0.584283pt;}
.ws1b3{word-spacing:0.621882pt;}
.ws1c8{word-spacing:0.622408pt;}
.ws7d{word-spacing:0.637579pt;}
.ws151{word-spacing:0.682896pt;}
.ws161{word-spacing:0.689333pt;}
.ws152{word-spacing:0.690396pt;}
.ws61{word-spacing:0.690927pt;}
.ws139{word-spacing:0.724699pt;}
.ws136{word-spacing:0.725583pt;}
.ws137{word-spacing:0.730177pt;}
.ws138{word-spacing:0.736757pt;}
.ws39{word-spacing:0.743745pt;}
.wsdf{word-spacing:0.797093pt;}
.ws14d{word-spacing:0.849857pt;}
.ws40{word-spacing:0.849910pt;}
.ws3d{word-spacing:0.850389pt;}
.ws1cd{word-spacing:0.860784pt;}
.ws10f{word-spacing:0.903206pt;}
.ws173{word-spacing:0.903259pt;}
.ws140{word-spacing:0.903737pt;}
.ws13f{word-spacing:0.941125pt;}
.ws141{word-spacing:0.950091pt;}
.wsfb{word-spacing:0.956023pt;}
.wsf5{word-spacing:0.956554pt;}
.ws142{word-spacing:1.009318pt;}
.ws73{word-spacing:1.009850pt;}
.wsd7{word-spacing:1.030592pt;}
.ws26{word-spacing:1.037968pt;}
.ws24{word-spacing:1.052245pt;}
.ws1a4{word-spacing:1.052250pt;}
.ws69{word-spacing:1.055045pt;}
.ws25{word-spacing:1.056757pt;}
.wsd8{word-spacing:1.061051pt;}
.ws22{word-spacing:1.061163pt;}
.ws27{word-spacing:1.062667pt;}
.ws23{word-spacing:1.110091pt;}
.ws105{word-spacing:1.115484pt;}
.ws8c{word-spacing:1.116015pt;}
.ws16a{word-spacing:1.151073pt;}
.ws60{word-spacing:1.168779pt;}
.ws16b{word-spacing:1.169311pt;}
.ws48{word-spacing:1.222128pt;}
.wsec{word-spacing:1.275530pt;}
.ws68{word-spacing:1.328294pt;}
.ws1c4{word-spacing:1.338684pt;}
.ws1c5{word-spacing:1.339162pt;}
.ws98{word-spacing:1.381589pt;}
.ws107{word-spacing:1.487755pt;}
.ws106{word-spacing:1.487808pt;}
.wsa2{word-spacing:1.541050pt;}
.ws112{word-spacing:1.571435pt;}
.ws113{word-spacing:1.591307pt;}
.wsc8{word-spacing:1.593867pt;}
.ws1c9{word-spacing:1.625596pt;}
.ws94{word-spacing:1.647216pt;}
.ws3e{word-spacing:1.647269pt;}
.ws1c3{word-spacing:1.674132pt;}
.ws8b{word-spacing:1.700511pt;}
.ws1b8{word-spacing:1.721615pt;}
.ws150{word-spacing:1.753329pt;}
.ws135{word-spacing:1.806146pt;}
.ws95{word-spacing:1.806677pt;}
.ws38{word-spacing:1.859494pt;}
.ws1b2{word-spacing:1.912508pt;}
.ws1b7{word-spacing:1.960518pt;}
.ws180{word-spacing:1.965607pt;}
.ws62{word-spacing:1.966138pt;}
.ws192{word-spacing:1.966191pt;}
.ws1b6{word-spacing:2.008527pt;}
.ws2b{word-spacing:2.018955pt;}
.wsdb{word-spacing:2.050816pt;}
.wsb8{word-spacing:2.072251pt;}
.wsdc{word-spacing:2.072517pt;}
.ws114{word-spacing:2.077931pt;}
.wsd9{word-spacing:2.085105pt;}
.wsda{word-spacing:2.092384pt;}
.wse0{word-spacing:2.125599pt;}
.wsf0{word-spacing:2.162257pt;}
.ws6f{word-spacing:2.178417pt;}
.ws1c1{word-spacing:2.199993pt;}
.ws0{word-spacing:2.227979pt;}
.wsf1{word-spacing:2.231712pt;}
.ws10c{word-spacing:2.284529pt;}
.wsa0{word-spacing:2.285061pt;}
.ws99{word-spacing:2.337878pt;}
.ws1d3{word-spacing:2.343449pt;}
.ws17b{word-spacing:2.391226pt;}
.ws144{word-spacing:2.430523pt;}
.ws145{word-spacing:2.438091pt;}
.ws1c{word-spacing:2.438943pt;}
.ws147{word-spacing:2.444522pt;}
.ws146{word-spacing:2.487728pt;}
.ws1bd{word-spacing:2.534389pt;}
.ws196{word-spacing:2.545707pt;}
.ws15d{word-spacing:2.550209pt;}
.ws14{word-spacing:2.550400pt;}
.ws10a{word-spacing:2.550687pt;}
.ws195{word-spacing:2.550794pt;}
.wsde{word-spacing:2.656800pt;}
.ws131{word-spacing:2.696809pt;}
.ws133{word-spacing:2.700359pt;}
.ws12f{word-spacing:2.709617pt;}
.ws130{word-spacing:2.756497pt;}
.ws132{word-spacing:2.758091pt;}
.ws134{word-spacing:2.762913pt;}
.ws5a{word-spacing:2.816261pt;}
.ws6a{word-spacing:2.851862pt;}
.ws6c{word-spacing:2.860928pt;}
.ws6b{word-spacing:2.864757pt;}
.ws1af{word-spacing:2.868785pt;}
.ws6d{word-spacing:2.869078pt;}
.ws1aa{word-spacing:2.869120pt;}
.ws1ac{word-spacing:2.869311pt;}
.ws109{word-spacing:2.869610pt;}
.ws1cc{word-spacing:2.916795pt;}
.ws1b4{word-spacing:2.964805pt;}
.wsa8{word-spacing:2.975722pt;}
.ws122{word-spacing:3.007013pt;}
.ws11f{word-spacing:3.009424pt;}
.ws121{word-spacing:3.023419pt;}
.ws77{word-spacing:3.028539pt;}
.ws120{word-spacing:3.033627pt;}
.ws74{word-spacing:3.081888pt;}
.wsce{word-spacing:3.161733pt;}
.ws1f{word-spacing:3.188001pt;}
.wsa9{word-spacing:3.188160pt;}
.ws172{word-spacing:3.240818pt;}
.ws179{word-spacing:3.241349pt;}
.wsa1{word-spacing:3.294113pt;}
.ws6e{word-spacing:3.347462pt;}
.ws7b{word-spacing:3.389490pt;}
.wse1{word-spacing:3.400385pt;}
.ws7c{word-spacing:3.453627pt;}
.ws167{word-spacing:3.491193pt;}
.ws13c{word-spacing:3.506923pt;}
.ws56{word-spacing:3.559740pt;}
.wsb6{word-spacing:3.560271pt;}
.ws181{word-spacing:3.666384pt;}
.ws108{word-spacing:3.719201pt;}
.ws1cf{word-spacing:3.730143pt;}
.wsa3{word-spacing:3.772550pt;}
.ws1d5{word-spacing:3.777579pt;}
.ws166{word-spacing:3.825589pt;}
.ws174{word-spacing:3.825845pt;}
.ws8f{word-spacing:3.878662pt;}
.ws124{word-spacing:3.879194pt;}
.ws1ad{word-spacing:3.921083pt;}
.wsd2{word-spacing:3.932011pt;}
.wsa5{word-spacing:3.963856pt;}
.wsa6{word-spacing:3.970380pt;}
.wsa7{word-spacing:3.984828pt;}
.ws10d{word-spacing:3.985359pt;}
.ws8d{word-spacing:4.038123pt;}
.ws13e{word-spacing:4.038283pt;}
.wscf{word-spacing:4.090941pt;}
.ws91{word-spacing:4.091472pt;}
.ws1d4{word-spacing:4.112549pt;}
.ws8a{word-spacing:4.144289pt;}
.ws11e{word-spacing:4.197585pt;}
.ws199{word-spacing:4.231622pt;}
.ws19c{word-spacing:4.237025pt;}
.wsa{word-spacing:4.240006pt;}
.ws19b{word-spacing:4.246091pt;}
.ws19d{word-spacing:4.250402pt;}
.ws19a{word-spacing:4.250933pt;}
.wseb{word-spacing:4.303750pt;}
.wsb{word-spacing:4.314656pt;}
.ws187{word-spacing:4.357046pt;}
.wsd6{word-spacing:4.410394pt;}
.ws14f{word-spacing:4.410926pt;}
.ws1ca{word-spacing:4.447471pt;}
.ws7a{word-spacing:4.454091pt;}
.wsaa{word-spacing:4.463211pt;}
.ws4d{word-spacing:4.516560pt;}
.wsa4{word-spacing:4.569855pt;}
.ws158{word-spacing:4.622673pt;}
.wsdd{word-spacing:4.676021pt;}
.ws197{word-spacing:4.729317pt;}
.wsc4{word-spacing:4.782134pt;}
.ws89{word-spacing:4.835482pt;}
.wsaf{word-spacing:4.877313pt;}
.ws10e{word-spacing:4.888246pt;}
.ws185{word-spacing:4.888831pt;}
.ws1a0{word-spacing:4.925323pt;}
.ws184{word-spacing:4.934091pt;}
.ws186{word-spacing:4.941595pt;}
.wse3{word-spacing:4.994412pt;}
.ws157{word-spacing:4.994943pt;}
.ws191{word-spacing:5.047761pt;}
.wse4{word-spacing:5.207222pt;}
.ws155{word-spacing:5.207753pt;}
.ws1d0{word-spacing:5.211709pt;}
.wsae{word-spacing:5.212282pt;}
.wsfe{word-spacing:5.248480pt;}
.ws100{word-spacing:5.259986pt;}
.ws19f{word-spacing:5.260245pt;}
.ws96{word-spacing:5.260517pt;}
.wsff{word-spacing:5.260730pt;}
.ws194{word-spacing:5.313334pt;}
.ws78{word-spacing:5.366683pt;}
.ws10b{word-spacing:5.578961pt;}
.ws19e{word-spacing:5.594641pt;}
.ws153{word-spacing:5.632257pt;}
.ws11d{word-spacing:5.738422pt;}
.ws87{word-spacing:5.844535pt;}
.ws193{word-spacing:5.897883pt;}
.ws12d{word-spacing:5.929610pt;}
.ws12c{word-spacing:5.977572pt;}
.wsed{word-spacing:6.057557pt;}
.wscc{word-spacing:6.110162pt;}
.ws176{word-spacing:6.163457pt;}
.ws148{word-spacing:6.270154pt;}
.ws12b{word-spacing:6.312016pt;}
.wsd0{word-spacing:6.322918pt;}
.ws76{word-spacing:6.482379pt;}
.ws111{word-spacing:6.574672pt;}
.ws13b{word-spacing:6.801355pt;}
.wscd{word-spacing:6.854119pt;}
.ws198{word-spacing:6.854650pt;}
.ws75{word-spacing:6.855182pt;}
.ws110{word-spacing:6.907467pt;}
.ws8{word-spacing:6.918394pt;}
.ws14c{word-spacing:7.173626pt;}
.ws4c{word-spacing:7.279738pt;}
.ws160{word-spacing:7.385851pt;}
.ws156{word-spacing:8.023217pt;}
.ws1be{word-spacing:8.133408pt;}
.ws1c0{word-spacing:8.133829pt;}
.ws1d1{word-spacing:8.136853pt;}
.ws1c2{word-spacing:8.798396pt;}
.ws6{word-spacing:10.824020pt;}
.wsd4{word-spacing:12.077973pt;}
.ws1c7{word-spacing:12.146133pt;}
.wsb4{word-spacing:12.427810pt;}
.wsac{word-spacing:12.681216pt;}
.ws86{word-spacing:13.662795pt;}
.ws3{word-spacing:13.762138pt;}
.ws7{word-spacing:14.320021pt;}
.wsc3{word-spacing:16.000637pt;}
.wse5{word-spacing:19.341079pt;}
.ws9{word-spacing:23.209063pt;}
.ws5{word-spacing:23.852491pt;}
.wsc6{word-spacing:25.468386pt;}
.wsca{word-spacing:39.731835pt;}
.wsba{word-spacing:46.335680pt;}
.ws16d{word-spacing:47.705946pt;}
.wsbb{word-spacing:77.330518pt;}
.wsbc{word-spacing:78.693658pt;}
.wscb{word-spacing:81.615514pt;}
.ws93{word-spacing:87.519610pt;}
.ws1a6{word-spacing:88.322667pt;}
.ws128{word-spacing:105.836704pt;}
.ws129{word-spacing:106.087769pt;}
.ws164{word-spacing:122.744812pt;}
.ws12a{word-spacing:154.047576pt;}
.ws162{word-spacing:164.631318pt;}
.ws92{word-spacing:258.144995pt;}
.ws126{word-spacing:472.442693pt;}
._1e{margin-left:-13.250880pt;}
._c{margin-left:-6.261720pt;}
._5{margin-left:-5.262546pt;}
._3{margin-left:-4.091190pt;}
._16{margin-left:-3.149968pt;}
._2{margin-left:-2.045855pt;}
._8{margin-left:-0.930105pt;}
._1f{width:1.009058pt;}
._6{width:2.670525pt;}
._22{width:4.250667pt;}
._1d{width:7.027051pt;}
._30{width:9.056235pt;}
._1{width:11.530123pt;}
._e{width:13.177067pt;}
._9{width:14.440520pt;}
._a{width:15.689639pt;}
._11{width:16.943331pt;}
._0{width:18.597333pt;}
._26{width:19.598803pt;}
._17{width:20.670382pt;}
._d{width:21.812553pt;}
._b{width:23.297554pt;}
._15{width:25.053713pt;}
._12{width:26.223109pt;}
._4{width:27.189339pt;}
._18{width:28.963724pt;}
._1c{width:30.659738pt;}
._1b{width:31.922752pt;}
._33{width:33.146929pt;}
._14{width:34.108332pt;}
._34{width:35.287562pt;}
._35{width:36.637591pt;}
._13{width:37.979608pt;}
._32{width:40.880622pt;}
._31{width:42.124157pt;}
._36{width:44.059181pt;}
._7{width:48.375616pt;}
._24{width:61.773373pt;}
._23{width:72.742625pt;}
._2f{width:83.744677pt;}
._1a{width:87.084673pt;}
._19{width:105.934904pt;}
._28{width:117.615536pt;}
._2d{width:134.664695pt;}
._2c{width:139.028302pt;}
._20{width:144.964328pt;}
._2e{width:160.211872pt;}
._21{width:175.665661pt;}
._2a{width:178.477420pt;}
._29{width:182.834757pt;}
._2b{width:197.853025pt;}
._25{width:399.572715pt;}
._f{width:1005.858613pt;}
._27{width:2327.888000pt;}
._10{width:2349.141333pt;}
.fs9{font-size:14.782952pt;}
.fs8{font-size:22.174507pt;}
.fs1d{font-size:22.350987pt;}
.fse{font-size:24.273067pt;}
.fsb{font-size:24.768000pt;}
.fs1e{font-size:27.508907pt;}
.fs11{font-size:27.631200pt;}
.fsf{font-size:29.127680pt;}
.fs1b{font-size:29.250027pt;}
.fsc{font-size:29.721600pt;}
.fs19{font-size:31.430187pt;}
.fs5{font-size:31.882667pt;}
.fs13{font-size:33.771467pt;}
.fs10{font-size:33.982293pt;}
.fsd{font-size:34.675200pt;}
.fs12{font-size:36.841600pt;}
.fs0{font-size:37.194667pt;}
.fs1c{font-size:37.227307pt;}
.fs17{font-size:37.659840pt;}
.fs1a{font-size:38.683307pt;}
.fs14{font-size:39.628800pt;}
.fs4{font-size:40.384000pt;}
.fs18{font-size:42.080000pt;}
.fs6{font-size:42.506667pt;}
.fs16{font-size:46.028693pt;}
.fs15{font-size:47.059200pt;}
.fs7{font-size:47.818667pt;}
.fs1f{font-size:49.829333pt;}
.fs2{font-size:53.136000pt;}
.fsa{font-size:55.365333pt;}
.fs1{font-size:77.750400pt;}
.fs3{font-size:95.642667pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:4.014199pt;}
.y29e{bottom:5.345329pt;}
.y136{bottom:7.008561pt;}
.y11f{bottom:7.151467pt;}
.y271{bottom:7.516656pt;}
.y23e{bottom:8.940663pt;}
.y173{bottom:11.746224pt;}
.y17{bottom:11.991379pt;}
.y162{bottom:12.592618pt;}
.y29d{bottom:13.150981pt;}
.y135{bottom:14.423983pt;}
.y11e{bottom:14.718091pt;}
.y270{bottom:18.493044pt;}
.y23d{bottom:22.006535pt;}
.yba{bottom:25.442593pt;}
.y45{bottom:28.346667pt;}
.yc4{bottom:28.411087pt;}
.y12f{bottom:29.048506pt;}
.y16f{bottom:29.579184pt;}
.y13d{bottom:29.964814pt;}
.y117{bottom:30.575803pt;}
.yb9{bottom:34.284678pt;}
.y160{bottom:36.808294pt;}
.ybb{bottom:38.607400pt;}
.y2a4{bottom:40.058130pt;}
.y298{bottom:41.089714pt;}
.y2a0{bottom:44.197361pt;}
.y152{bottom:47.446306pt;}
.y239{bottom:49.215769pt;}
.ybc{bottom:54.545327pt;}
.y153{bottom:55.486986pt;}
.y13e{bottom:60.172645pt;}
.y118{bottom:61.399579pt;}
.y130{bottom:65.482379pt;}
.y29f{bottom:66.926595pt;}
.y299{bottom:69.156966pt;}
.ybd{bottom:70.450269pt;}
.y170{bottom:75.208032pt;}
.y26d{bottom:76.850439pt;}
.y2a5{bottom:77.166356pt;}
.y2a1{bottom:79.701903pt;}
.y23a{bottom:80.322797pt;}
.yef{bottom:81.480000pt;}
.yc5{bottom:82.956413pt;}
.y154{bottom:83.191869pt;}
.y1c0{bottom:83.766667pt;}
.y15a{bottom:85.132193pt;}
.y22d{bottom:85.299538pt;}
.ybe{bottom:86.388195pt;}
.y261{bottom:88.452000pt;}
.y2ed{bottom:89.436000pt;}
.y13f{bottom:90.380477pt;}
.y1a7{bottom:91.286667pt;}
.y119{bottom:92.223355pt;}
.y323{bottom:92.892000pt;}
.y15{bottom:93.018667pt;}
.y23f{bottom:94.428499pt;}
.y206{bottom:94.792000pt;}
.y2a9{bottom:95.681333pt;}
.y29a{bottom:97.229805pt;}
.yee{bottom:98.217333pt;}
.y15d{bottom:98.349117pt;}
.y44{bottom:100.066667pt;}
.y1bf{bottom:100.504000pt;}
.y131{bottom:101.916252pt;}
.ybf{bottom:102.293098pt;}
.y13b{bottom:102.777946pt;}
.y2ec{bottom:104.778667pt;}
.y124{bottom:104.873611pt;}
.y260{bottom:105.189333pt;}
.y1d1{bottom:106.472000pt;}
.y272{bottom:107.289366pt;}
.y1a6{bottom:108.024000pt;}
.y2b7{bottom:108.034667pt;}
.y322{bottom:108.233333pt;}
.y275{bottom:108.747847pt;}
.y14{bottom:108.920000pt;}
.y26b{bottom:109.562667pt;}
.yb7{bottom:109.825333pt;}
.y155{bottom:110.896752pt;}
.y23b{bottom:111.420410pt;}
.y205{bottom:111.529333pt;}
.y137{bottom:112.250510pt;}
.y7b{bottom:112.418667pt;}
.y2a6{bottom:114.268994pt;}
.y172{bottom:114.465312pt;}
.y120{bottom:114.539323pt;}
.yed{bottom:114.954667pt;}
.y2a2{bottom:115.206446pt;}
.y13a{bottom:116.759232pt;}
.y43{bottom:116.804000pt;}
.y1be{bottom:117.241333pt;}
.yc0{bottom:118.231064pt;}
.y123{bottom:119.139979pt;}
.y274{bottom:119.190527pt;}
.y161{bottom:119.625141pt;}
.y2eb{bottom:120.121333pt;}
.y14e{bottom:120.232000pt;}
.y140{bottom:120.594376pt;}
.y25f{bottom:121.926667pt;}
.y11a{bottom:123.053323pt;}
.y1d0{bottom:123.209333pt;}
.y238{bottom:123.409203pt;}
.y321{bottom:123.576000pt;}
.y2b6{bottom:123.656000pt;}
.y1a5{bottom:124.761333pt;}
.y13{bottom:124.820000pt;}
.y29b{bottom:125.297057pt;}
.y263{bottom:125.692000pt;}
.y26a{bottom:126.300000pt;}
.y204{bottom:128.266667pt;}
.ya7{bottom:128.358667pt;}
.y7a{bottom:129.156000pt;}
.y26e{bottom:129.865306pt;}
.y1e6{bottom:130.636000pt;}
.y139{bottom:130.740518pt;}
.yec{bottom:131.692000pt;}
.y273{bottom:133.056075pt;}
.y122{bottom:133.406347pt;}
.y42{bottom:133.541333pt;}
.y1bd{bottom:133.978667pt;}
.yc1{bottom:134.135967pt;}
.y15b{bottom:135.374925pt;}
.y2ea{bottom:135.464000pt;}
.y14d{bottom:136.969333pt;}
.y132{bottom:138.350125pt;}
.y156{bottom:138.601635pt;}
.y25e{bottom:138.664000pt;}
.y320{bottom:138.918667pt;}
.y2b5{bottom:139.277333pt;}
.y1cf{bottom:139.946667pt;}
.y12{bottom:140.720000pt;}
.y1a4{bottom:141.498667pt;}
.y23c{bottom:142.527438pt;}
.y269{bottom:143.037333pt;}
.y138{bottom:143.313967pt;}
.y203{bottom:145.004000pt;}
.ya6{bottom:145.096000pt;}
.y79{bottom:145.893333pt;}
.y121{bottom:146.236171pt;}
.y1e5{bottom:147.373333pt;}
.yeb{bottom:148.429333pt;}
.yc2{bottom:150.073893pt;}
.y41{bottom:150.278667pt;}
.y2a3{bottom:150.710988pt;}
.y1bc{bottom:150.716000pt;}
.y141{bottom:150.802208pt;}
.y2e9{bottom:150.806667pt;}
.y2a7{bottom:151.377219pt;}
.y15e{bottom:152.257588pt;}
.y29c{bottom:153.364308pt;}
.y14c{bottom:153.706667pt;}
.y11b{bottom:153.877099pt;}
.y31f{bottom:154.261333pt;}
.y2b4{bottom:154.900000pt;}
.y267{bottom:155.192000pt;}
.y25d{bottom:155.401333pt;}
.y11{bottom:156.621333pt;}
.y1ce{bottom:156.684000pt;}
.y1a3{bottom:158.236000pt;}
.y265{bottom:159.774667pt;}
.ya5{bottom:161.833333pt;}
.y78{bottom:162.630667pt;}
.y1e4{bottom:164.110667pt;}
.y268{bottom:164.596000pt;}
.y266{bottom:165.008000pt;}
.yea{bottom:165.166667pt;}
.y115{bottom:165.685333pt;}
.y202{bottom:165.726667pt;}
.yc3{bottom:165.978835pt;}
.y2e8{bottom:166.149333pt;}
.y157{bottom:166.306518pt;}
.y40{bottom:167.016000pt;}
.y1bb{bottom:167.453333pt;}
.y31e{bottom:169.604000pt;}
.y14b{bottom:170.444000pt;}
.y25c{bottom:172.138667pt;}
.y10{bottom:172.521333pt;}
.y1cd{bottom:173.421333pt;}
.y133{bottom:174.783998pt;}
.y1a2{bottom:174.973333pt;}
.y2b3{bottom:178.490667pt;}
.y77{bottom:179.368000pt;}
.y1e3{bottom:180.848000pt;}
.y142{bottom:181.010039pt;}
.y2e7{bottom:181.492000pt;}
.y176{bottom:181.904000pt;}
.y114{bottom:182.422667pt;}
.y201{bottom:182.464000pt;}
.ya4{bottom:182.556000pt;}
.y26f{bottom:182.872316pt;}
.y3f{bottom:183.753333pt;}
.y1ba{bottom:184.190667pt;}
.y234{bottom:184.686583pt;}
.y11c{bottom:184.700875pt;}
.y31d{bottom:184.946667pt;}
.y15c{bottom:185.617657pt;}
.ye9{bottom:185.889333pt;}
.y14a{bottom:187.181333pt;}
.y22b{bottom:188.081333pt;}
.yf{bottom:188.421333pt;}
.y25b{bottom:188.876000pt;}
.y1cb{bottom:190.158667pt;}
.y1a1{bottom:191.710667pt;}
.y158{bottom:194.011402pt;}
.y2b2{bottom:194.112000pt;}
.y1cc{bottom:194.981333pt;}
.y76{bottom:196.105333pt;}
.y2e6{bottom:196.834667pt;}
.y1e2{bottom:197.585333pt;}
.y233{bottom:197.752455pt;}
.y113{bottom:199.160000pt;}
.y200{bottom:199.201333pt;}
.y31c{bottom:200.289333pt;}
.y3e{bottom:200.490667pt;}
.y1b9{bottom:200.928000pt;}
.y175{bottom:202.626667pt;}
.y149{bottom:203.918667pt;}
.ye{bottom:204.322667pt;}
.y22a{bottom:204.818667pt;}
.ycc{bottom:205.312173pt;}
.y25a{bottom:205.613333pt;}
.y15f{bottom:206.156849pt;}
.y1a0{bottom:208.448000pt;}
.y1ca{bottom:208.517333pt;}
.yc6{bottom:211.185804pt;}
.y134{bottom:211.217871pt;}
.y2a8{bottom:211.433333pt;}
.y2e5{bottom:212.177333pt;}
.ya3{bottom:212.444000pt;}
.y75{bottom:212.841333pt;}
.y1e1{bottom:214.322667pt;}
.y11d{bottom:215.524651pt;}
.y31b{bottom:215.632000pt;}
.ye8{bottom:215.777333pt;}
.y112{bottom:215.897333pt;}
.y1ff{bottom:215.938667pt;}
.y3d{bottom:217.228000pt;}
.y1b8{bottom:217.665333pt;}
.y2b1{bottom:217.704000pt;}
.y148{bottom:220.654667pt;}
.y229{bottom:221.556000pt;}
.y159{bottom:221.716285pt;}
.y258{bottom:222.350667pt;}
.y22f{bottom:223.099619pt;}
.y171{bottom:223.785072pt;}
.y13c{bottom:224.646945pt;}
.y19e{bottom:225.185333pt;}
.y1c9{bottom:225.254667pt;}
.y259{bottom:227.172000pt;}
.y2e4{bottom:227.518667pt;}
.ya2{bottom:229.181333pt;}
.y125{bottom:229.227547pt;}
.y74{bottom:229.578667pt;}
.y19f{bottom:230.008000pt;}
.y297{bottom:230.899572pt;}
.y31a{bottom:230.974667pt;}
.y1e0{bottom:231.060000pt;}
.ye7{bottom:232.514667pt;}
.y111{bottom:232.634667pt;}
.y1fe{bottom:232.676000pt;}
.y2b0{bottom:233.325333pt;}
.y3c{bottom:233.965333pt;}
.y1b7{bottom:234.402667pt;}
.yc7{bottom:236.891047pt;}
.y147{bottom:237.392000pt;}
.y228{bottom:238.293333pt;}
.y257{bottom:240.708000pt;}
.y1c8{bottom:241.990667pt;}
.y2e3{bottom:242.861333pt;}
.y19d{bottom:243.544000pt;}
.y230{bottom:243.850191pt;}
.ya1{bottom:245.918667pt;}
.y73{bottom:246.316000pt;}
.y1df{bottom:247.797333pt;}
.y2af{bottom:248.946667pt;}
.ye6{bottom:249.252000pt;}
.y110{bottom:249.372000pt;}
.y235{bottom:249.681190pt;}
.y3b{bottom:250.702667pt;}
.y1b6{bottom:251.140000pt;}
.y1fd{bottom:253.397333pt;}
.y146{bottom:254.129333pt;}
.y227{bottom:255.030667pt;}
.y255{bottom:257.445333pt;}
.y2e2{bottom:258.204000pt;}
.y1c7{bottom:258.728000pt;}
.yc8{bottom:259.296564pt;}
.y19c{bottom:260.280000pt;}
.ycd{bottom:261.144413pt;}
.y319{bottom:261.658667pt;}
.y256{bottom:262.268000pt;}
.ya0{bottom:262.656000pt;}
.y72{bottom:263.053333pt;}
.y2ae{bottom:264.568000pt;}
.y231{bottom:264.600763pt;}
.ye5{bottom:265.989333pt;}
.y10f{bottom:266.109333pt;}
.yd{bottom:266.570667pt;}
.y3a{bottom:267.440000pt;}
.y1b5{bottom:267.877333pt;}
.y1de{bottom:268.520000pt;}
.y276{bottom:270.529967pt;}
.y145{bottom:270.866667pt;}
.y226{bottom:271.768000pt;}
.y2e1{bottom:273.546667pt;}
.y1c6{bottom:275.465333pt;}
.y254{bottom:275.802667pt;}
.y318{bottom:277.001333pt;}
.y19b{bottom:277.017333pt;}
.y174{bottom:279.001333pt;}
.y9f{bottom:279.393333pt;}
.y71{bottom:279.790667pt;}
.yc9{bottom:281.702042pt;}
.yc{bottom:282.470667pt;}
.ye4{bottom:282.726667pt;}
.y10e{bottom:282.846667pt;}
.y1fc{bottom:283.285333pt;}
.y39{bottom:284.177333pt;}
.y1b4{bottom:284.614667pt;}
.y232{bottom:285.341920pt;}
.y144{bottom:287.604000pt;}
.y225{bottom:288.505333pt;}
.y2e0{bottom:288.889333pt;}
.y1c5{bottom:292.202667pt;}
.y317{bottom:292.344000pt;}
.y253{bottom:292.540000pt;}
.y199{bottom:293.754667pt;}
.y9e{bottom:296.129333pt;}
.y70{bottom:296.528000pt;}
.yb{bottom:298.370667pt;}
.y1dd{bottom:298.408000pt;}
.y19a{bottom:298.577333pt;}
.y16e{bottom:298.783860pt;}
.ye3{bottom:299.464000pt;}
.y10d{bottom:299.584000pt;}
.y1fa{bottom:300.022667pt;}
.y38{bottom:300.914667pt;}
.y1b3{bottom:301.352000pt;}
.yca{bottom:304.107520pt;}
.y2df{bottom:304.232000pt;}
.y1fb{bottom:304.845333pt;}
.y224{bottom:305.242667pt;}
.y316{bottom:307.686667pt;}
.y1c4{bottom:308.940000pt;}
.y252{bottom:309.277333pt;}
.y198{bottom:312.113333pt;}
.y9d{bottom:312.866667pt;}
.y6f{bottom:313.265333pt;}
.ya{bottom:314.272000pt;}
.y1dc{bottom:315.145333pt;}
.ye2{bottom:316.201333pt;}
.y1f9{bottom:316.760000pt;}
.y143{bottom:317.440000pt;}
.y37{bottom:317.652000pt;}
.y1b2{bottom:318.089333pt;}
.y2de{bottom:319.574667pt;}
.y10c{bottom:320.306667pt;}
.y223{bottom:321.980000pt;}
.y315{bottom:323.029333pt;}
.y251{bottom:326.014667pt;}
.ycb{bottom:326.513038pt;}
.y236{bottom:327.647520pt;}
.y197{bottom:328.850667pt;}
.y9c{bottom:329.604000pt;}
.y1c3{bottom:329.662667pt;}
.y6e{bottom:330.002667pt;}
.y1da{bottom:331.881333pt;}
.ye1{bottom:332.938667pt;}
.y1f8{bottom:333.497333pt;}
.y36{bottom:334.389333pt;}
.y1b1{bottom:334.826667pt;}
.y2dd{bottom:334.917333pt;}
.y1db{bottom:336.704000pt;}
.y12e{bottom:336.922507pt;}
.y314{bottom:338.372000pt;}
.y222{bottom:338.717333pt;}
.y9{bottom:339.470667pt;}
.y196{bottom:345.588000pt;}
.y9b{bottom:346.341333pt;}
.y250{bottom:346.737333pt;}
.y6d{bottom:346.740000pt;}
.ye0{bottom:349.676000pt;}
.y10b{bottom:350.194667pt;}
.y1d9{bottom:350.240000pt;}
.y2dc{bottom:350.260000pt;}
.y35{bottom:351.126667pt;}
.y1b0{bottom:351.562667pt;}
.y313{bottom:353.714667pt;}
.y1f7{bottom:354.220000pt;}
.y8{bottom:355.370667pt;}
.y220{bottom:355.454667pt;}
.y1c2{bottom:356.709333pt;}
.y221{bottom:360.276000pt;}
.y195{bottom:362.325333pt;}
.y9a{bottom:363.078667pt;}
.y6c{bottom:363.477333pt;}
.y2db{bottom:365.601333pt;}
.ydf{bottom:366.413333pt;}
.y10a{bottom:366.930667pt;}
.y1d8{bottom:366.977333pt;}
.y34{bottom:367.864000pt;}
.y1af{bottom:368.300000pt;}
.y312{bottom:369.056000pt;}
.y1f6{bottom:370.957333pt;}
.y1c1{bottom:373.805333pt;}
.y21f{bottom:373.812000pt;}
.y24f{bottom:376.625333pt;}
.y194{bottom:379.062667pt;}
.y7{bottom:379.241333pt;}
.y99{bottom:379.816000pt;}
.y6b{bottom:380.214667pt;}
.y2da{bottom:380.944000pt;}
.yde{bottom:383.150667pt;}
.y109{bottom:383.668000pt;}
.y1d6{bottom:383.714667pt;}
.y311{bottom:384.398667pt;}
.y33{bottom:384.600000pt;}
.y1ae{bottom:385.037333pt;}
.y1f5{bottom:387.694667pt;}
.y1d7{bottom:388.536000pt;}
.y21e{bottom:390.549333pt;}
.y24e{bottom:393.362667pt;}
.y6{bottom:395.141333pt;}
.y193{bottom:395.800000pt;}
.y2d9{bottom:396.286667pt;}
.y98{bottom:396.553333pt;}
.y6a{bottom:396.952000pt;}
.y310{bottom:399.741333pt;}
.ydd{bottom:399.888000pt;}
.y108{bottom:400.405333pt;}
.y1ad{bottom:401.774667pt;}
.y1d5{bottom:402.072000pt;}
.y1f4{bottom:404.432000pt;}
.y32{bottom:405.322667pt;}
.y21c{bottom:407.286667pt;}
.y296{bottom:409.489333pt;}
.y24d{bottom:410.100000pt;}
.y5{bottom:411.042667pt;}
.y2d8{bottom:411.629333pt;}
.y21d{bottom:412.109333pt;}
.y192{bottom:412.536000pt;}
.y97{bottom:413.290667pt;}
.y69{bottom:413.689333pt;}
.y30f{bottom:415.084000pt;}
.ydc{bottom:416.624000pt;}
.y107{bottom:417.142667pt;}
.y1ac{bottom:418.512000pt;}
.y1f3{bottom:421.169333pt;}
.y21b{bottom:425.645333pt;}
.y295{bottom:426.226667pt;}
.y24c{bottom:426.837333pt;}
.y4{bottom:426.942667pt;}
.y2d7{bottom:426.972000pt;}
.y191{bottom:429.273333pt;}
.y96{bottom:430.028000pt;}
.y68{bottom:430.426667pt;}
.y1d4{bottom:431.908000pt;}
.ydb{bottom:433.361333pt;}
.y106{bottom:433.880000pt;}
.y1ab{bottom:435.249333pt;}
.y1f2{bottom:437.906667pt;}
.y2d6{bottom:442.314667pt;}
.y21a{bottom:442.382667pt;}
.y3{bottom:442.842667pt;}
.y294{bottom:442.962667pt;}
.y24b{bottom:443.574667pt;}
.y27d{bottom:445.241912pt;}
.y30e{bottom:445.769333pt;}
.y190{bottom:446.010667pt;}
.y95{bottom:446.765333pt;}
.y67{bottom:447.164000pt;}
.yda{bottom:450.098667pt;}
.y105{bottom:450.617333pt;}
.y1aa{bottom:451.986667pt;}
.y1f1{bottom:454.644000pt;}
.y27c{bottom:455.811808pt;}
.y2d5{bottom:457.657333pt;}
.y2{bottom:458.744000pt;}
.y219{bottom:459.118667pt;}
.y293{bottom:459.700000pt;}
.y24a{bottom:460.312000pt;}
.y30d{bottom:461.112000pt;}
.y18f{bottom:462.748000pt;}
.y94{bottom:463.502667pt;}
.y66{bottom:463.901333pt;}
.yd9{bottom:466.836000pt;}
.y104{bottom:467.354667pt;}
.y1a9{bottom:468.724000pt;}
.y1f0{bottom:471.381333pt;}
.y31{bottom:472.122667pt;}
.y277{bottom:472.338073pt;}
.y2d4{bottom:473.000000pt;}
.y1{bottom:474.644000pt;}
.y218{bottom:475.856000pt;}
.y292{bottom:476.437333pt;}
.y30c{bottom:476.454667pt;}
.y249{bottom:477.049333pt;}
.yb8{bottom:479.330440pt;}
.y18e{bottom:479.485333pt;}
.y93{bottom:480.240000pt;}
.y65{bottom:480.638667pt;}
.yb6{bottom:483.412000pt;}
.yd8{bottom:483.573333pt;}
.y103{bottom:484.092000pt;}
.y1ef{bottom:488.118667pt;}
.y2d3{bottom:488.341333pt;}
.y30{bottom:489.418667pt;}
.y30b{bottom:491.797333pt;}
.y217{bottom:492.593333pt;}
.y291{bottom:493.174667pt;}
.y248{bottom:493.786667pt;}
.y18d{bottom:496.222667pt;}
.y92{bottom:496.977333pt;}
.y64{bottom:497.376000pt;}
.y1a8{bottom:498.560000pt;}
.yb5{bottom:500.149333pt;}
.yd7{bottom:500.310667pt;}
.y102{bottom:500.829333pt;}
.y1ee{bottom:504.856000pt;}
.y30a{bottom:507.138667pt;}
.y2d2{bottom:507.669333pt;}
.y290{bottom:509.912000pt;}
.y247{bottom:510.524000pt;}
.y18c{bottom:512.960000pt;}
.y216{bottom:513.316000pt;}
.y91{bottom:513.714667pt;}
.y63{bottom:514.113333pt;}
.yd6{bottom:517.048000pt;}
.y101{bottom:517.566667pt;}
.yb3{bottom:518.506667pt;}
.y278{bottom:520.995492pt;}
.y1ed{bottom:521.593333pt;}
.y309{bottom:522.481333pt;}
.y2f{bottom:522.653333pt;}
.yb4{bottom:523.329333pt;}
.y285{bottom:524.143194pt;}
.y28f{bottom:526.649333pt;}
.y246{bottom:527.261333pt;}
.y18b{bottom:529.697333pt;}
.y90{bottom:530.452000pt;}
.y62{bottom:530.850667pt;}
.yd5{bottom:533.785333pt;}
.y100{bottom:534.304000pt;}
.y284{bottom:535.631142pt;}
.yb1{bottom:536.864000pt;}
.y2d1{bottom:537.324000pt;}
.y308{bottom:537.824000pt;}
.y1ec{bottom:538.330667pt;}
.y2e{bottom:539.949333pt;}
.yb2{bottom:541.686667pt;}
.y215{bottom:543.204000pt;}
.y28e{bottom:543.386667pt;}
.y245{bottom:543.998667pt;}
.y2d0{bottom:546.118667pt;}
.y18a{bottom:546.434667pt;}
.y27e{bottom:546.932288pt;}
.y8f{bottom:547.189333pt;}
.y61{bottom:547.588000pt;}
.y283{bottom:549.604677pt;}
.y16d{bottom:549.748000pt;}
.yd4{bottom:550.522667pt;}
.yff{bottom:551.041333pt;}
.y307{bottom:553.166667pt;}
.y1eb{bottom:555.068000pt;}
.yb0{bottom:555.222667pt;}
.y2d{bottom:557.244000pt;}
.y214{bottom:559.941333pt;}
.y28d{bottom:560.124000pt;}
.y244{bottom:560.736000pt;}
.y189{bottom:563.172000pt;}
.y8e{bottom:563.926667pt;}
.y60{bottom:564.325333pt;}
.y2cf{bottom:564.457333pt;}
.y16c{bottom:566.485333pt;}
.yd3{bottom:567.260000pt;}
.yfe{bottom:567.778667pt;}
.y306{bottom:568.509333pt;}
.y279{bottom:569.652911pt;}
.y1ea{bottom:571.805333pt;}
.yaf{bottom:571.960000pt;}
.y2c{bottom:574.538667pt;}
.y213{bottom:576.678667pt;}
.y28c{bottom:576.861333pt;}
.y243{bottom:577.473333pt;}
.y282{bottom:578.919852pt;}
.y188{bottom:579.909333pt;}
.y8d{bottom:580.664000pt;}
.y5f{bottom:581.062667pt;}
.y2ce{bottom:582.794667pt;}
.y16b{bottom:583.222667pt;}
.y305{bottom:583.852000pt;}
.yd2{bottom:583.997333pt;}
.yfd{bottom:584.516000pt;}
.y1e9{bottom:588.541333pt;}
.yae{bottom:588.697333pt;}
.y281{bottom:590.407800pt;}
.y2b{bottom:591.834667pt;}
.y212{bottom:593.416000pt;}
.y28b{bottom:593.598667pt;}
.y242{bottom:594.210667pt;}
.y8c{bottom:597.401333pt;}
.y5e{bottom:597.800000pt;}
.y304{bottom:599.194667pt;}
.y12d{bottom:599.304000pt;}
.y16a{bottom:599.960000pt;}
.yd1{bottom:600.734667pt;}
.y2cd{bottom:601.132000pt;}
.yfc{bottom:601.253333pt;}
.y262{bottom:601.386667pt;}
.y280{bottom:601.895748pt;}
.yad{bottom:605.434667pt;}
.y2a{bottom:609.129333pt;}
.y1e8{bottom:609.264000pt;}
.y211{bottom:610.153333pt;}
.y28a{bottom:610.336000pt;}
.y8b{bottom:614.138667pt;}
.y5d{bottom:614.537333pt;}
.y27f{bottom:615.869283pt;}
.y12c{bottom:616.041333pt;}
.y169{bottom:616.697333pt;}
.yd0{bottom:617.472000pt;}
.yfb{bottom:617.990667pt;}
.y27a{bottom:618.310331pt;}
.y2cc{bottom:619.470667pt;}
.y187{bottom:620.320000pt;}
.yac{bottom:622.172000pt;}
.y241{bottom:624.046667pt;}
.y29{bottom:626.424000pt;}
.y210{bottom:626.890667pt;}
.y289{bottom:627.073333pt;}
.y184{bottom:627.626667pt;}
.y303{bottom:629.878667pt;}
.y8a{bottom:630.876000pt;}
.y5c{bottom:631.274667pt;}
.y12b{bottom:632.778667pt;}
.y168{bottom:633.434667pt;}
.ycf{bottom:634.209333pt;}
.yfa{bottom:634.728000pt;}
.y186{bottom:634.932000pt;}
.y2cb{bottom:637.808000pt;}
.yab{bottom:638.909333pt;}
.y1e7{bottom:639.100000pt;}
.y240{bottom:641.142667pt;}
.y183{bottom:642.237333pt;}
.y20f{bottom:643.628000pt;}
.y28{bottom:643.720000pt;}
.y288{bottom:643.810667pt;}
.y302{bottom:645.221333pt;}
.y89{bottom:647.613333pt;}
.y5b{bottom:648.012000pt;}
.y12a{bottom:649.516000pt;}
.y185{bottom:649.544000pt;}
.y167{bottom:650.172000pt;}
.yf9{bottom:651.465333pt;}
.y22e{bottom:654.121708pt;}
.yaa{bottom:655.646667pt;}
.y2ca{bottom:656.146667pt;}
.y326{bottom:659.169333pt;}
.y20e{bottom:660.365333pt;}
.y301{bottom:660.564000pt;}
.y27{bottom:661.014667pt;}
.yce{bottom:662.969333pt;}
.y88{bottom:664.350667pt;}
.y5a{bottom:664.749333pt;}
.y129{bottom:666.253333pt;}
.y166{bottom:666.909333pt;}
.y27b{bottom:666.967750pt;}
.yf8{bottom:668.202667pt;}
.y182{bottom:670.824000pt;}
.y287{bottom:672.144000pt;}
.ya9{bottom:672.382667pt;}
.y2c9{bottom:674.484000pt;}
.y325{bottom:674.512000pt;}
.y300{bottom:675.906667pt;}
.y20d{bottom:677.102667pt;}
.y26{bottom:678.310667pt;}
.y87{bottom:681.088000pt;}
.y59{bottom:681.485333pt;}
.y165{bottom:683.646667pt;}
.yf7{bottom:684.940000pt;}
.y180{bottom:685.436000pt;}
.y237{bottom:688.053859pt;}
.y286{bottom:689.240000pt;}
.y324{bottom:689.854667pt;}
.y2ff{bottom:691.249333pt;}
.y2c8{bottom:692.821333pt;}
.y20c{bottom:693.840000pt;}
.y25{bottom:695.605333pt;}
.y128{bottom:696.089333pt;}
.y86{bottom:697.825333pt;}
.y58{bottom:698.222667pt;}
.y17f{bottom:700.046667pt;}
.yf6{bottom:701.677333pt;}
.ya8{bottom:702.220000pt;}
.y2fe{bottom:706.592000pt;}
.y26c{bottom:708.514870pt;}
.y20b{bottom:710.577333pt;}
.y2c7{bottom:711.160000pt;}
.y24{bottom:712.900000pt;}
.y127{bottom:713.185333pt;}
.y164{bottom:713.396000pt;}
.y85{bottom:714.562667pt;}
.y181{bottom:714.658667pt;}
.y57{bottom:714.960000pt;}
.yf5{bottom:718.414667pt;}
.y2fd{bottom:721.934667pt;}
.y2c6{bottom:722.162667pt;}
.y20a{bottom:727.314667pt;}
.y23{bottom:730.196000pt;}
.y126{bottom:730.281333pt;}
.y163{bottom:730.492000pt;}
.y84{bottom:731.300000pt;}
.y56{bottom:731.697333pt;}
.yf4{bottom:735.152000pt;}
.y17e{bottom:735.938667pt;}
.y264{bottom:736.520000pt;}
.y2fc{bottom:737.277333pt;}
.y2c5{bottom:737.505333pt;}
.y2c4{bottom:741.844000pt;}
.y209{bottom:744.052000pt;}
.y22{bottom:747.490667pt;}
.y83{bottom:748.036000pt;}
.y55{bottom:748.434667pt;}
.y116{bottom:749.754562pt;}
.y151{bottom:749.848641pt;}
.yf3{bottom:751.889333pt;}
.y2fb{bottom:752.620000pt;}
.y2c3{bottom:760.182667pt;}
.y208{bottom:760.789333pt;}
.y17d{bottom:764.045333pt;}
.y82{bottom:764.773333pt;}
.y21{bottom:764.785333pt;}
.y54{bottom:765.172000pt;}
.y2fa{bottom:767.961333pt;}
.yf2{bottom:775.268000pt;}
.y2c2{bottom:778.520000pt;}
.y81{bottom:781.510667pt;}
.y53{bottom:781.909333pt;}
.y20{bottom:782.081333pt;}
.y2f9{bottom:783.304000pt;}
.yf1{bottom:792.005333pt;}
.y2c1{bottom:796.858667pt;}
.y17c{bottom:797.026667pt;}
.y80{bottom:798.248000pt;}
.y52{bottom:798.646667pt;}
.yf0{bottom:808.742667pt;}
.y207{bottom:811.398667pt;}
.y17b{bottom:813.764000pt;}
.y2f8{bottom:813.989333pt;}
.y2c0{bottom:814.036000pt;}
.y7f{bottom:814.985333pt;}
.y51{bottom:815.384000pt;}
.y1f{bottom:816.378667pt;}
.y2f7{bottom:829.332000pt;}
.y17a{bottom:830.501333pt;}
.y7e{bottom:831.722667pt;}
.y50{bottom:832.121333pt;}
.y2bf{bottom:832.374667pt;}
.y1e{bottom:834.582667pt;}
.y2f6{bottom:844.674667pt;}
.y1d{bottom:845.072000pt;}
.y179{bottom:847.238667pt;}
.y7d{bottom:848.460000pt;}
.y4f{bottom:848.858667pt;}
.y1c{bottom:848.929333pt;}
.y2be{bottom:851.170667pt;}
.y2f5{bottom:860.017333pt;}
.y22c{bottom:863.799779pt;}
.y177{bottom:863.976000pt;}
.y1d3{bottom:865.197333pt;}
.y4e{bottom:865.596000pt;}
.y178{bottom:868.797333pt;}
.y7c{bottom:869.182667pt;}
.y2f4{bottom:875.360000pt;}
.y2bd{bottom:881.058667pt;}
.y2ad{bottom:881.934667pt;}
.y4d{bottom:882.333333pt;}
.y1d2{bottom:885.920000pt;}
.y1b{bottom:888.641333pt;}
.y2f3{bottom:890.702667pt;}
.y2ac{bottom:898.672000pt;}
.y4c{bottom:899.070667pt;}
.y2bc{bottom:904.649333pt;}
.y2f2{bottom:906.044000pt;}
.y2ab{bottom:915.409333pt;}
.y4b{bottom:915.808000pt;}
.y2bb{bottom:920.270667pt;}
.y1a{bottom:921.320000pt;}
.y2f1{bottom:921.386667pt;}
.y4a{bottom:932.545333pt;}
.y2ba{bottom:935.893333pt;}
.y2aa{bottom:936.132000pt;}
.y2f0{bottom:936.729333pt;}
.y19{bottom:946.425333pt;}
.y49{bottom:949.282667pt;}
.y2b9{bottom:951.514667pt;}
.y2ef{bottom:952.072000pt;}
.y48{bottom:966.020000pt;}
.y2b8{bottom:967.136000pt;}
.y2ee{bottom:967.414667pt;}
.y18{bottom:971.530667pt;}
.y14f{bottom:979.614815pt;}
.y47{bottom:982.757333pt;}
.y16{bottom:1015.361947pt;}
.y46{bottom:1038.548000pt;}
.h21{height:12.986664pt;}
.h13{height:16.143647pt;}
.h38{height:16.283043pt;}
.h1e{height:17.671456pt;}
.h1c{height:17.683308pt;}
.h19{height:18.031781pt;}
.h17{height:18.043875pt;}
.h39{height:20.040668pt;}
.h22{height:20.129761pt;}
.h1d{height:21.219970pt;}
.h35{height:21.309101pt;}
.h18{height:21.652650pt;}
.h32{height:22.897382pt;}
.h30{height:23.048597pt;}
.h9{height:23.210581pt;}
.h29{height:23.379840pt;}
.h25{height:24.603041pt;}
.h1f{height:24.756632pt;}
.h14{height:24.880268pt;}
.h1a{height:25.261425pt;}
.h24{height:26.839681pt;}
.h2{height:27.077717pt;}
.h36{height:27.120675pt;}
.h3{height:27.263691pt;}
.h2e{height:27.435782pt;}
.h33{height:28.181393pt;}
.h27{height:28.870200pt;}
.h10{height:29.399552pt;}
.ha{height:30.944853pt;}
.hf{height:31.157387pt;}
.h2c{height:33.532622pt;}
.h28{height:34.260384pt;}
.hb{height:34.429440pt;}
.hc{height:34.811989pt;}
.h3a{height:35.035051pt;}
.h2a{height:35.051083pt;}
.h4{height:35.327838pt;}
.h15{height:36.873312pt;}
.hd{height:38.257920pt;}
.he{height:38.683008pt;}
.h6{height:38.948688pt;}
.h20{height:41.524000pt;}
.h8{height:48.367147pt;}
.h5{height:48.594000pt;}
.h11{height:48.684885pt;}
.h3b{height:55.196000pt;}
.h7{height:68.862720pt;}
.h2b{height:95.875676pt;}
.h2f{height:136.872596pt;}
.h37{height:159.548224pt;}
.h31{height:224.358349pt;}
.h1b{height:242.123553pt;}
.h26{height:246.441600pt;}
.h16{height:247.060507pt;}
.h23{height:247.539944pt;}
.h2d{height:353.075234pt;}
.h12{height:373.006880pt;}
.h34{height:851.990033pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:42.390866pt;}
.w2{width:70.797570pt;}
.wd{width:168.896954pt;}
.w7{width:210.698344pt;}
.wb{width:237.504629pt;}
.w5{width:258.052753pt;}
.w4{width:263.314507pt;}
.wc{width:263.531875pt;}
.w8{width:264.819450pt;}
.w9{width:277.103195pt;}
.wa{width:327.184094pt;}
.w3{width:442.698187pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6c{left:5.565287pt;}
.x70{left:8.138710pt;}
.x46{left:10.303482pt;}
.x33{left:11.402941pt;}
.x1c{left:12.488971pt;}
.x18{left:14.718091pt;}
.x87{left:16.234865pt;}
.x2f{left:17.353929pt;}
.x19{left:18.334219pt;}
.x2d{left:19.280437pt;}
.x89{left:20.505369pt;}
.x81{left:21.455944pt;}
.x88{left:24.571123pt;}
.x1a{left:25.826539pt;}
.x45{left:28.136442pt;}
.x8a{left:35.985281pt;}
.x3{left:40.621020pt;}
.x91{left:43.015338pt;}
.x12{left:43.920055pt;}
.x4{left:46.689333pt;}
.x1{left:47.621333pt;}
.x13{left:50.255629pt;}
.x2{left:52.796594pt;}
.x10{left:56.030227pt;}
.x82{left:71.150696pt;}
.x71{left:74.510628pt;}
.x27{left:75.664930pt;}
.x25{left:77.764550pt;}
.x32{left:81.187072pt;}
.x1e{left:82.161355pt;}
.x6f{left:83.297924pt;}
.x34{left:84.963336pt;}
.x8b{left:86.999986pt;}
.x22{left:102.741536pt;}
.x1b{left:104.836459pt;}
.x83{left:113.279234pt;}
.x6d{left:116.511811pt;}
.x31{left:141.816065pt;}
.x72{left:161.347943pt;}
.x6e{left:166.432021pt;}
.x84{left:178.865572pt;}
.xf{left:184.606287pt;}
.x85{left:194.127345pt;}
.x8c{left:206.253675pt;}
.x14{left:209.040896pt;}
.x94{left:211.989333pt;}
.x23{left:215.593091pt;}
.x17{left:219.864907pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x3c{left:222.754667pt;}
.x28{left:226.097333pt;}
.x24{left:231.322038pt;}
.x1d{left:236.038747pt;}
.x51{left:237.354667pt;}
.x6{left:239.789333pt;}
.x42{left:248.033333pt;}
.xa{left:250.204000pt;}
.x3d{left:252.773333pt;}
.x2c{left:255.868065pt;}
.x29{left:258.452000pt;}
.x58{left:272.708000pt;}
.x8{left:274.100000pt;}
.x1f{left:277.953333pt;}
.x8d{left:282.514667pt;}
.x9{left:284.365333pt;}
.x67{left:285.882667pt;}
.x4a{left:290.172000pt;}
.x35{left:291.614667pt;}
.x69{left:296.509333pt;}
.x68{left:304.226667pt;}
.x36{left:307.902667pt;}
.x77{left:314.297333pt;}
.x2e{left:316.495523pt;}
.x4b{left:321.394667pt;}
.x8e{left:325.204000pt;}
.x47{left:329.886667pt;}
.x93{left:331.036000pt;}
.x92{left:336.372000pt;}
.x43{left:345.210667pt;}
.x59{left:352.186667pt;}
.x52{left:360.316000pt;}
.x44{left:362.793333pt;}
.x2a{left:375.122667pt;}
.x30{left:384.798314pt;}
.x11{left:387.824202pt;}
.x4f{left:391.022667pt;}
.x8f{left:392.340917pt;}
.x4e{left:394.734667pt;}
.x48{left:398.218667pt;}
.xd{left:399.893333pt;}
.x2b{left:407.477333pt;}
.xe{left:410.021333pt;}
.x5e{left:412.421333pt;}
.x15{left:419.289333pt;}
.x49{left:420.361333pt;}
.x5f{left:426.954667pt;}
.x16{left:430.214667pt;}
.x37{left:431.602667pt;}
.x86{left:460.267374pt;}
.x20{left:468.517333pt;}
.x21{left:479.442667pt;}
.x26{left:481.410483pt;}
.x7d{left:517.509333pt;}
.x7c{left:522.556000pt;}
.x60{left:527.280000pt;}
.x73{left:530.625333pt;}
.x7e{left:537.581333pt;}
.x74{left:542.310667pt;}
.xb{left:546.753333pt;}
.x4c{left:554.705333pt;}
.xc{left:555.781333pt;}
.x61{left:558.765333pt;}
.x90{left:563.295589pt;}
.x4d{left:564.333333pt;}
.x79{left:579.173333pt;}
.x62{left:581.302667pt;}
.x50{left:586.910667pt;}
.x63{left:598.996000pt;}
.x5a{left:602.117333pt;}
.x66{left:610.000000pt;}
.x7a{left:613.436000pt;}
.x5b{left:615.512000pt;}
.x7f{left:618.968000pt;}
.x7b{left:624.361333pt;}
.x78{left:626.193333pt;}
.x80{left:633.062667pt;}
.x3e{left:638.496000pt;}
.x56{left:644.118667pt;}
.x38{left:645.753333pt;}
.x53{left:646.653333pt;}
.x3f{left:651.878667pt;}
.x57{left:653.148000pt;}
.x39{left:659.136000pt;}
.x54{left:660.082667pt;}
.x6a{left:661.644000pt;}
.x6b{left:675.725333pt;}
.x64{left:682.958667pt;}
.x40{left:691.520000pt;}
.x3a{left:697.314667pt;}
.x5c{left:708.758667pt;}
.x5d{left:717.660000pt;}
.x41{left:720.262667pt;}
.x3b{left:721.325333pt;}
.x65{left:722.432000pt;}
.x75{left:733.346667pt;}
.x55{left:739.989333pt;}
.x76{left:744.106667pt;}
}




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