
    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_79323ef2f3a5e4e17f22d8ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b8b745318a351c52012435a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.161000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae65b66112459bf99a4f485d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_4fbb585293042caa7bece5a8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cfb0884288f2f68c6de644ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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_6ce4ee1405cfb48e26b08959.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_70899034a9f040cf9066ace0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_63d751582662aacbae96c155.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.183105;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_eaed331dbaa15f7031e8e942.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.174316;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_084e1943beaa90d3a2e71b29.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9f76219e7ad71f39c85adfc8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_efdb6e966138b0340f68f75f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.670000;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;}
.m5{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);}
.mf{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);}
.m15{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);}
.m19{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);}
.m17{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);}
.m27{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);}
.m4{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);}
.m18{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);}
.m23{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);}
.m9{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);}
.m21{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);}
.m2d{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);}
.m7{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);}
.m1d{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);}
.m24{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);}
.mc{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);}
.m1c{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);}
.m22{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);}
.m3{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);}
.mb{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);}
.m2c{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m16{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);}
.m1e{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);}
.md{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);}
.m26{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);}
.m10{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);}
.m1f{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);}
.m6{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);}
.ma{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);}
.m8{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);}
.m25{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);}
.m12{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);}
.m11{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);}
.m13{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);}
.m1a{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);}
.m20{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);}
.m14{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);}
.me{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);}
.m28{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);}
.m1b{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-17.358000px;}
.v1{vertical-align:-11.958000px;}
.v2{vertical-align:-10.920000px;}
.v4{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.110000px;}
.v6{vertical-align:17.358000px;}
.v3{vertical-align:21.702000px;}
.v9{vertical-align:27.144000px;}
.v7{vertical-align:29.628000px;}
.va{vertical-align:44.502000px;}
.ls45{letter-spacing:-4.166316px;}
.ls3d{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.108216px;}
.ls42{letter-spacing:-0.066132px;}
.ls44{letter-spacing:-0.060120px;}
.ls43{letter-spacing:-0.048096px;}
.ls3b{letter-spacing:-0.036072px;}
.ls40{letter-spacing:-0.030060px;}
.ls48{letter-spacing:-0.028800px;}
.ls39{letter-spacing:-0.028728px;}
.ls3f{letter-spacing:-0.024048px;}
.ls3e{letter-spacing:-0.018036px;}
.ls41{letter-spacing:-0.012024px;}
.ls3c{letter-spacing:-0.006012px;}
.ls3a{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls70{letter-spacing:0.000435px;}
.ls57{letter-spacing:0.000608px;}
.ls76{letter-spacing:0.000676px;}
.ls74{letter-spacing:0.001036px;}
.ls73{letter-spacing:0.001155px;}
.ls75{letter-spacing:0.001303px;}
.ls10{letter-spacing:0.002939px;}
.ls6b{letter-spacing:0.005682px;}
.ls4e{letter-spacing:0.005686px;}
.ls2f{letter-spacing:0.006012px;}
.ls30{letter-spacing:0.012024px;}
.ls34{letter-spacing:0.018036px;}
.ls27{letter-spacing:0.021600px;}
.ls2c{letter-spacing:0.030060px;}
.ls25{letter-spacing:0.032400px;}
.ls32{letter-spacing:0.036072px;}
.ls31{letter-spacing:0.042084px;}
.ls2a{letter-spacing:0.048096px;}
.ls33{letter-spacing:0.054108px;}
.ls26{letter-spacing:0.059400px;}
.ls2d{letter-spacing:0.060120px;}
.ls2b{letter-spacing:0.066132px;}
.ls35{letter-spacing:0.072144px;}
.ls29{letter-spacing:0.078156px;}
.ls36{letter-spacing:0.097200px;}
.ls2e{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.126252px;}
.ls47{letter-spacing:0.162324px;}
.ls37{letter-spacing:0.180360px;}
.ls24{letter-spacing:0.181944px;}
.ls23{letter-spacing:0.191520px;}
.ls49{letter-spacing:0.192384px;}
.ls38{letter-spacing:1.560915px;}
.ls68{letter-spacing:11.951700px;}
.ls7{letter-spacing:11.954850px;}
.ls62{letter-spacing:11.955746px;}
.ls64{letter-spacing:11.957700px;}
.ls65{letter-spacing:12.125742px;}
.ls66{letter-spacing:12.126211px;}
.ls53{letter-spacing:12.940277px;}
.ls54{letter-spacing:12.944853px;}
.ls71{letter-spacing:13.808164px;}
.lsd{letter-spacing:13.867939px;}
.lsc{letter-spacing:13.927715px;}
.ls4d{letter-spacing:14.561180px;}
.ls4c{letter-spacing:14.694876px;}
.ls1b{letter-spacing:14.704798px;}
.ls4{letter-spacing:14.764573px;}
.ls4a{letter-spacing:14.844845px;}
.ls61{letter-spacing:14.850845px;}
.ls51{letter-spacing:14.938766px;}
.ls6c{letter-spacing:14.941200px;}
.lsf{letter-spacing:14.943900px;}
.ls52{letter-spacing:14.944200px;}
.ls4b{letter-spacing:14.944766px;}
.ls67{letter-spacing:14.947200px;}
.ls14{letter-spacing:14.972016px;}
.ls16{letter-spacing:15.003676px;}
.ls18{letter-spacing:15.063451px;}
.ls6e{letter-spacing:15.123227px;}
.ls4f{letter-spacing:15.194178px;}
.ls50{letter-spacing:15.194553px;}
.ls15{letter-spacing:15.242778px;}
.lsa{letter-spacing:15.362329px;}
.ls63{letter-spacing:15.391200px;}
.ls69{letter-spacing:15.747041px;}
.ls6a{letter-spacing:15.750128px;}
.ls72{letter-spacing:16.138352px;}
.ls58{letter-spacing:16.158884px;}
.ls59{letter-spacing:16.165141px;}
.ls1e{letter-spacing:16.737168px;}
.ls8{letter-spacing:17.334924px;}
.ls21{letter-spacing:17.394700px;}
.lsb{letter-spacing:17.633802px;}
.ls55{letter-spacing:17.670649px;}
.ls56{letter-spacing:17.676906px;}
.ls5{letter-spacing:17.693578px;}
.ls6d{letter-spacing:17.929200px;}
.ls12{letter-spacing:17.932680px;}
.ls60{letter-spacing:17.935200px;}
.ls6f{letter-spacing:18.530436px;}
.ls1a{letter-spacing:19.187968px;}
.ls5c{letter-spacing:19.247743px;}
.ls13{letter-spacing:19.835760px;}
.ls5f{letter-spacing:20.263928px;}
.ls9{letter-spacing:20.323704px;}
.lse{letter-spacing:20.383480px;}
.ls5a{letter-spacing:21.417708px;}
.ls5b{letter-spacing:21.423965px;}
.ls19{letter-spacing:21.937645px;}
.ls6{letter-spacing:22.057196px;}
.ls5d{letter-spacing:22.823590px;}
.ls5e{letter-spacing:22.829847px;}
.ls17{letter-spacing:22.834279px;}
.ls11{letter-spacing:24.328669px;}
.ls22{letter-spacing:25.404630px;}
.ls1{letter-spacing:28.453654px;}
.ls3{letter-spacing:30.126902px;}
.ls2{letter-spacing:30.186678px;}
.ls20{letter-spacing:33.073904px;}
.ls1d{letter-spacing:33.085862px;}
.ls1f{letter-spacing:34.034693px;}
.ls1c{letter-spacing:34.820806px;}
.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;}
}
.wsb8{word-spacing:-54.000000px;}
.ws103{word-spacing:-45.088735px;}
.ws11b{word-spacing:-36.071079px;}
.ws47{word-spacing:-29.887800px;}
.ws43{word-spacing:-14.943900px;}
.ws10d{word-spacing:-13.449600px;}
.wsb6{word-spacing:-12.161520px;}
.wsb7{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.wsba{word-spacing:-10.863684px;}
.wsa{word-spacing:-10.460700px;}
.wsbb{word-spacing:-9.097200px;}
.wsbc{word-spacing:-8.971200px;}
.ws153{word-spacing:-3.355785px;}
.ws152{word-spacing:-3.347434px;}
.ws13a{word-spacing:-3.287658px;}
.ws13b{word-spacing:-3.274647px;}
.wsd9{word-spacing:-2.825640px;}
.ws130{word-spacing:-2.809453px;}
.wseb{word-spacing:-2.801592px;}
.wsda{word-spacing:-2.795580px;}
.wsd8{word-spacing:-2.783556px;}
.ws12f{word-spacing:-2.776342px;}
.wsea{word-spacing:-2.765520px;}
.ws12e{word-spacing:-2.749678px;}
.ws16c{word-spacing:-2.474726px;}
.ws8f{word-spacing:-2.450800px;}
.wsca{word-spacing:-2.422836px;}
.ws62{word-spacing:-2.331248px;}
.ws6f{word-spacing:-2.271473px;}
.ws134{word-spacing:-2.211697px;}
.wsdb{word-spacing:-2.122236px;}
.wsc8{word-spacing:-2.110212px;}
.wsc9{word-spacing:-2.104200px;}
.ws151{word-spacing:-2.092146px;}
.wsdc{word-spacing:-2.056104px;}
.wsdd{word-spacing:-2.050092px;}
.ws18f{word-spacing:-2.044339px;}
.ws112{word-spacing:-2.032370px;}
.ws7a{word-spacing:-1.972595px;}
.ws13{word-spacing:-1.936742px;}
.ws138{word-spacing:-1.912819px;}
.ws13c{word-spacing:-1.853044px;}
.ws129{word-spacing:-1.793268px;}
.ws5d{word-spacing:-1.733492px;}
.wsf5{word-spacing:-1.707408px;}
.wsf6{word-spacing:-1.695384px;}
.ws5c{word-spacing:-1.673717px;}
.ws165{word-spacing:-1.613952px;}
.ws164{word-spacing:-1.560154px;}
.ws40{word-spacing:-1.554166px;}
.ws42{word-spacing:-1.494390px;}
.ws8e{word-spacing:-1.374839px;}
.ws18a{word-spacing:-1.344960px;}
.wsa3{word-spacing:-1.255288px;}
.ws54{word-spacing:-1.195512px;}
.ws161{word-spacing:-1.183565px;}
.ws56{word-spacing:-1.135736px;}
.ws55{word-spacing:-1.075961px;}
.ws52{word-spacing:-1.036953px;}
.ws51{word-spacing:-1.016185px;}
.wsfb{word-spacing:-1.004004px;}
.ws53{word-spacing:-0.956410px;}
.wsa4{word-spacing:-0.896634px;}
.ws8d{word-spacing:-0.777083px;}
.ws9f{word-spacing:-0.717307px;}
.wsfd{word-spacing:-0.691380px;}
.wsfa{word-spacing:-0.667332px;}
.ws44{word-spacing:-0.657532px;}
.ws143{word-spacing:-0.645581px;}
.ws45{word-spacing:-0.597756px;}
.wsf{word-spacing:-0.537984px;}
.ws124{word-spacing:-0.537980px;}
.wsfc{word-spacing:-0.517032px;}
.ws15b{word-spacing:-0.484186px;}
.ws13d{word-spacing:-0.478205px;}
.ws15{word-spacing:-0.430387px;}
.wsab{word-spacing:-0.418429px;}
.ws16{word-spacing:-0.415531px;}
.wsc5{word-spacing:-0.390780px;}
.ws163{word-spacing:-0.376589px;}
.ws3d{word-spacing:-0.358654px;}
.wsed{word-spacing:-0.336672px;}
.ws162{word-spacing:-0.322790px;}
.wsf1{word-spacing:-0.300600px;}
.ws21{word-spacing:-0.298878px;}
.wsbf{word-spacing:-0.277704px;}
.wsd7{word-spacing:-0.276552px;}
.ws159{word-spacing:-0.268992px;}
.wsd6{word-spacing:-0.258516px;}
.wsf0{word-spacing:-0.246492px;}
.ws2a{word-spacing:-0.239102px;}
.ws5b{word-spacing:-0.227981px;}
.ws166{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.179327px;}
.ws9a{word-spacing:-0.174427px;}
.ws14{word-spacing:-0.161395px;}
.ws113{word-spacing:-0.137784px;}
.ws28{word-spacing:-0.119551px;}
.ws11{word-spacing:-0.107597px;}
.ws70{word-spacing:-0.092232px;}
.ws86{word-spacing:-0.091034px;}
.wsc0{word-spacing:-0.081396px;}
.ws87{word-spacing:-0.081286px;}
.ws88{word-spacing:-0.069692px;}
.ws90{word-spacing:-0.062777px;}
.wsb9{word-spacing:-0.060120px;}
.ws31{word-spacing:-0.059776px;}
.wsbe{word-spacing:-0.057456px;}
.ws1c{word-spacing:-0.053798px;}
.ws146{word-spacing:-0.033270px;}
.ws150{word-spacing:-0.028916px;}
.ws175{word-spacing:-0.011760px;}
.ws14f{word-spacing:-0.011731px;}
.ws184{word-spacing:-0.010877px;}
.ws19c{word-spacing:-0.010512px;}
.ws16b{word-spacing:-0.010397px;}
.ws1a5{word-spacing:-0.009888px;}
.ws190{word-spacing:-0.009302px;}
.ws179{word-spacing:-0.008976px;}
.ws196{word-spacing:-0.006422px;}
.ws15d{word-spacing:-0.005683px;}
.ws19e{word-spacing:-0.005501px;}
.wsbd{word-spacing:-0.004550px;}
.ws193{word-spacing:-0.004176px;}
.ws19a{word-spacing:-0.004042px;}
.ws1a2{word-spacing:-0.003898px;}
.ws17e{word-spacing:-0.003859px;}
.ws11c{word-spacing:-0.003713px;}
.ws89{word-spacing:-0.003628px;}
.ws183{word-spacing:-0.003302px;}
.ws92{word-spacing:-0.002806px;}
.ws91{word-spacing:-0.001409px;}
.ws8a{word-spacing:-0.001242px;}
.ws122{word-spacing:-0.001084px;}
.ws118{word-spacing:-0.000784px;}
.ws0{word-spacing:0.000000px;}
.ws11d{word-spacing:0.002287px;}
.ws145{word-spacing:0.003330px;}
.ws2f{word-spacing:0.003599px;}
.wscd{word-spacing:0.030060px;}
.ws116{word-spacing:0.047821px;}
.ws1e{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.ws133{word-spacing:0.076709px;}
.ws1d{word-spacing:0.081028px;}
.wsec{word-spacing:0.102204px;}
.ws12{word-spacing:0.107597px;}
.wsf3{word-spacing:0.108216px;}
.ws3b{word-spacing:0.119551px;}
.wsc3{word-spacing:0.124200px;}
.ws11a{word-spacing:0.143462px;}
.wsf2{word-spacing:0.144288px;}
.wsc2{word-spacing:0.151200px;}
.wsf4{word-spacing:0.156312px;}
.ws110{word-spacing:0.161395px;}
.wsc4{word-spacing:0.162000px;}
.ws34{word-spacing:0.179327px;}
.ws119{word-spacing:0.191282px;}
.ws50{word-spacing:0.202305px;}
.ws5f{word-spacing:0.210183px;}
.ws18{word-spacing:0.215194px;}
.ws5e{word-spacing:0.221889px;}
.ws85{word-spacing:0.232902px;}
.ws2e{word-spacing:0.239102px;}
.ws111{word-spacing:0.258509px;}
.ws141{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws16f{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.ws17f{word-spacing:0.376589px;}
.wsc6{word-spacing:0.378756px;}
.wsce{word-spacing:0.402804px;}
.ws2d{word-spacing:0.418429px;}
.wse7{word-spacing:0.450900px;}
.wse6{word-spacing:0.462924px;}
.wse1{word-spacing:0.474948px;}
.wsa2{word-spacing:0.478205px;}
.wsc7{word-spacing:0.492984px;}
.wse0{word-spacing:0.523044px;}
.ws8b{word-spacing:0.537980px;}
.ws188{word-spacing:0.537984px;}
.wsb3{word-spacing:0.597756px;}
.ws198{word-spacing:0.645581px;}
.ws96{word-spacing:0.657532px;}
.ws71{word-spacing:0.717307px;}
.ws105{word-spacing:0.777083px;}
.ws15a{word-spacing:0.806976px;}
.wsd3{word-spacing:0.817632px;}
.wsb1{word-spacing:0.836858px;}
.ws102{word-spacing:0.896634px;}
.ws83{word-spacing:0.956410px;}
.ws19d{word-spacing:0.968371px;}
.ws128{word-spacing:0.998298px;}
.ws126{word-spacing:1.002377px;}
.ws127{word-spacing:1.016185px;}
.ws94{word-spacing:1.075961px;}
.ws15c{word-spacing:1.129766px;}
.ws95{word-spacing:1.135736px;}
.wscf{word-spacing:1.148292px;}
.wsd1{word-spacing:1.178352px;}
.ws191{word-spacing:1.183565px;}
.ws65{word-spacing:1.195512px;}
.wsd0{word-spacing:1.196388px;}
.wsd2{word-spacing:1.202400px;}
.ws12c{word-spacing:1.255288px;}
.ws19{word-spacing:1.291162px;}
.ws14d{word-spacing:1.313180px;}
.wsa5{word-spacing:1.315063px;}
.ws194{word-spacing:1.364209px;}
.ws6b{word-spacing:1.374839px;}
.ws9{word-spacing:1.380812px;}
.ws10{word-spacing:1.398758px;}
.wsaa{word-spacing:1.434614px;}
.ws120{word-spacing:1.434618px;}
.ws32{word-spacing:1.494390px;}
.ws17c{word-spacing:1.506355px;}
.ws74{word-spacing:1.554166px;}
.ws1a4{word-spacing:1.560154px;}
.ws3e{word-spacing:1.613941px;}
.ws147{word-spacing:1.663328px;}
.ws181{word-spacing:1.667750px;}
.ws115{word-spacing:1.673717px;}
.ws2b{word-spacing:1.733492px;}
.ws46{word-spacing:1.793268px;}
.ws67{word-spacing:1.853044px;}
.ws15e{word-spacing:1.882944px;}
.ws64{word-spacing:1.912819px;}
.ws17{word-spacing:1.936742px;}
.ws149{word-spacing:1.958884px;}
.ws75{word-spacing:1.972595px;}
.ws6e{word-spacing:2.032370px;}
.ws18d{word-spacing:2.044339px;}
.ws7d{word-spacing:2.092146px;}
.ws9e{word-spacing:2.151922px;}
.ws156{word-spacing:2.151936px;}
.ws140{word-spacing:2.198073px;}
.ws13f{word-spacing:2.198298px;}
.wse9{word-spacing:2.200392px;}
.ws19b{word-spacing:2.205734px;}
.wsa0{word-spacing:2.211697px;}
.ws13e{word-spacing:2.214009px;}
.wse2{word-spacing:2.218428px;}
.wse3{word-spacing:2.248488px;}
.wscb{word-spacing:2.260512px;}
.ws4a{word-spacing:2.271473px;}
.wse8{word-spacing:2.272536px;}
.ws68{word-spacing:2.331248px;}
.ws185{word-spacing:2.367130px;}
.wscc{word-spacing:2.368728px;}
.ws93{word-spacing:2.391024px;}
.ws174{word-spacing:2.420928px;}
.ws9c{word-spacing:2.450800px;}
.ws157{word-spacing:2.474726px;}
.ws2{word-spacing:2.510568px;}
.ws66{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws170{word-spacing:2.528525px;}
.wsaf{word-spacing:2.570351px;}
.wsde{word-spacing:2.585160px;}
.wsb2{word-spacing:2.630126px;}
.wsb4{word-spacing:2.689902px;}
.ws125{word-spacing:2.696494px;}
.ws72{word-spacing:2.749678px;}
.ws19f{word-spacing:2.797517px;}
.wsae{word-spacing:2.809453px;}
.wsad{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.ws69{word-spacing:2.929004px;}
.wsdf{word-spacing:2.987964px;}
.ws3c{word-spacing:2.988780px;}
.ws17a{word-spacing:3.012710px;}
.ws41{word-spacing:3.048556px;}
.ws107{word-spacing:3.108331px;}
.ws189{word-spacing:3.120307px;}
.ws135{word-spacing:3.168107px;}
.ws173{word-spacing:3.174106px;}
.wsff{word-spacing:3.174336px;}
.ws176{word-spacing:3.217814px;}
.ws1a1{word-spacing:3.218122px;}
.ws1f{word-spacing:3.219667px;}
.ws177{word-spacing:3.219686px;}
.ws192{word-spacing:3.220109px;}
.ws1a3{word-spacing:3.221059px;}
.ws17d{word-spacing:3.221213px;}
.ws154{word-spacing:3.223565px;}
.ws142{word-spacing:3.224822px;}
.ws36{word-spacing:3.227882px;}
.ws155{word-spacing:3.227904px;}
.ws158{word-spacing:3.281702px;}
.wsb0{word-spacing:3.287658px;}
.wsfe{word-spacing:3.330648px;}
.ws187{word-spacing:3.335501px;}
.ws144{word-spacing:3.337752px;}
.ws57{word-spacing:3.347434px;}
.ws180{word-spacing:3.389299px;}
.ws97{word-spacing:3.407209px;}
.ws16a{word-spacing:3.443098px;}
.ws33{word-spacing:3.466985px;}
.ws1a6{word-spacing:3.496896px;}
.ws100{word-spacing:3.504996px;}
.ws37{word-spacing:3.526760px;}
.ws178{word-spacing:3.550694px;}
.ws20{word-spacing:3.586536px;}
.ws186{word-spacing:3.604493px;}
.ws98{word-spacing:3.646312px;}
.ws197{word-spacing:3.658291px;}
.ws99{word-spacing:3.706087px;}
.ws1b{word-spacing:3.712090px;}
.ws1a{word-spacing:3.765888px;}
.ws11f{word-spacing:3.777827px;}
.ws169{word-spacing:3.819686px;}
.ws4b{word-spacing:3.825638px;}
.ws16d{word-spacing:3.873485px;}
.ws3f{word-spacing:3.885414px;}
.ws63{word-spacing:3.945190px;}
.wsa9{word-spacing:4.064741px;}
.ws76{word-spacing:4.124516px;}
.ws8c{word-spacing:4.184292px;}
.ws17b{word-spacing:4.196275px;}
.ws12d{word-spacing:4.244068px;}
.ws16e{word-spacing:4.250074px;}
.ws58{word-spacing:4.298021px;}
.ws59{word-spacing:4.298298px;}
.ws5a{word-spacing:4.303843px;}
.ws131{word-spacing:4.351014px;}
.wsd{word-spacing:4.357670px;}
.ws73{word-spacing:4.363619px;}
.ws9d{word-spacing:4.483170px;}
.ws6a{word-spacing:4.542946px;}
.ws77{word-spacing:4.602721px;}
.ws2c{word-spacing:4.662497px;}
.ws4c{word-spacing:4.722272px;}
.ws199{word-spacing:4.734259px;}
.wsa6{word-spacing:4.782048px;}
.ws82{word-spacing:4.901599px;}
.wsac{word-spacing:4.961375px;}
.wse{word-spacing:5.003251px;}
.ws10b{word-spacing:5.021150px;}
.ws10a{word-spacing:5.080926px;}
.ws6d{word-spacing:5.140702px;}
.ws61{word-spacing:5.200477px;}
.wsa1{word-spacing:5.260253px;}
.ws60{word-spacing:5.320028px;}
.ws1a0{word-spacing:5.433638px;}
.ws7{word-spacing:5.481407px;}
.wsd4{word-spacing:5.488956px;}
.ws6c{word-spacing:5.499355px;}
.wsef{word-spacing:5.513004px;}
.ws18c{word-spacing:5.541235px;}
.ws136{word-spacing:5.559131px;}
.ws7e{word-spacing:5.618906px;}
.ws167{word-spacing:5.648832px;}
.ws81{word-spacing:5.678682px;}
.ws14b{word-spacing:5.738458px;}
.ws79{word-spacing:5.798233px;}
.wsee{word-spacing:5.855688px;}
.ws25{word-spacing:5.858009px;}
.wsd5{word-spacing:5.885748px;}
.ws109{word-spacing:5.917784px;}
.ws49{word-spacing:5.977560px;}
.ws48{word-spacing:6.037336px;}
.ws4f{word-spacing:6.097111px;}
.ws24{word-spacing:6.156887px;}
.ws195{word-spacing:6.186816px;}
.ws172{word-spacing:6.240614px;}
.ws101{word-spacing:6.276438px;}
.ws39{word-spacing:6.336214px;}
.ws84{word-spacing:6.455765px;}
.ws11e{word-spacing:6.455781px;}
.ws160{word-spacing:6.563405px;}
.ws106{word-spacing:6.570247px;}
.ws104{word-spacing:6.572323px;}
.ws108{word-spacing:6.576247px;}
.wsf9{word-spacing:6.583140px;}
.ws4e{word-spacing:6.635092px;}
.ws4d{word-spacing:6.694867px;}
.ws132{word-spacing:6.754643px;}
.ws23{word-spacing:6.874194px;}
.wsf8{word-spacing:6.883740px;}
.wsf7{word-spacing:6.931836px;}
.ws9b{word-spacing:6.933970px;}
.ws18b{word-spacing:6.993792px;}
.ws35{word-spacing:7.173072px;}
.ws7c{word-spacing:7.232848px;}
.ws14e{word-spacing:7.471950px;}
.ws148{word-spacing:7.531726px;}
.ws18e{word-spacing:7.585574px;}
.ws14a{word-spacing:7.711052px;}
.ws14c{word-spacing:7.770828px;}
.ws139{word-spacing:7.830604px;}
.ws114{word-spacing:7.890379px;}
.ws15f{word-spacing:8.284954px;}
.ws182{word-spacing:8.392550px;}
.ws38{word-spacing:8.488135px;}
.wsb5{word-spacing:8.667462px;}
.ws80{word-spacing:8.846789px;}
.ws7f{word-spacing:8.906564px;}
.wsa7{word-spacing:9.205442px;}
.ws137{word-spacing:9.384769px;}
.wsa8{word-spacing:9.623872px;}
.ws5{word-spacing:9.833058px;}
.ws12a{word-spacing:9.853262px;}
.ws12b{word-spacing:9.862974px;}
.ws171{word-spacing:9.952704px;}
.ws22{word-spacing:10.042301px;}
.ws7b{word-spacing:10.998710px;}
.wsc1{word-spacing:11.615688px;}
.ws6{word-spacing:11.841512px;}
.wsc{word-spacing:12.180625px;}
.wse4{word-spacing:13.052052px;}
.ws168{word-spacing:14.740762px;}
.ws3{word-spacing:15.481836px;}
.ws8{word-spacing:16.067635px;}
.wse5{word-spacing:16.292520px;}
.ws78{word-spacing:17.813129px;}
.ws4{word-spacing:22.339429px;}
.ws10f{word-spacing:281.473229px;}
.ws10e{word-spacing:304.337549px;}
.ws123{word-spacing:305.668573px;}
.ws10c{word-spacing:328.256766px;}
.ws121{word-spacing:339.959614px;}
.ws117{word-spacing:354.905614px;}
._3d{margin-left:-19.528819px;}
._15{margin-left:-14.190686px;}
._3a{margin-left:-10.930310px;}
._39{margin-left:-7.802053px;}
._a{margin-left:-6.778598px;}
._7{margin-left:-5.308087px;}
._0{margin-left:-3.849538px;}
._18{margin-left:-2.546471px;}
._2{margin-left:-1.506341px;}
._1f{width:1.254456px;}
._3c{width:2.345078px;}
._21{width:3.646613px;}
._1b{width:4.793999px;}
._1{width:10.460700px;}
._3{width:12.974377px;}
._12{width:14.314457px;}
._c{width:15.332515px;}
._b{width:16.991303px;}
._10{width:18.889090px;}
._8{width:20.066803px;}
._9{width:21.088958px;}
._f{width:22.296299px;}
._11{width:24.197176px;}
._4{width:25.314894px;}
._d{width:27.383386px;}
._19{width:29.170493px;}
._3b{width:30.241332px;}
._5{width:31.256572px;}
._17{width:33.115682px;}
._1a{width:34.442696px;}
._16{width:36.534842px;}
._32{width:38.495486px;}
._e{width:39.631223px;}
._1c{width:40.837908px;}
._1d{width:45.728334px;}
._1e{width:48.059582px;}
._6{width:69.371260px;}
._33{width:85.271198px;}
._2b{width:173.392243px;}
._37{width:176.337506px;}
._34{width:191.283506px;}
._2c{width:227.782426px;}
._38{width:229.348368px;}
._35{width:244.294368px;}
._36{width:246.201891px;}
._24{width:293.610928px;}
._30{width:316.818778px;}
._2a{width:317.948544px;}
._2e{width:326.556288px;}
._31{width:328.170240px;}
._28{width:344.157030px;}
._2d{width:346.192704px;}
._25{width:359.889923px;}
._26{width:369.513767px;}
._29{width:370.769051px;}
._2f{width:403.003814px;}
._27{width:428.972386px;}
._23{width:434.830378px;}
._13{width:881.285837px;}
._20{width:2081.717064px;}
._22{width:2513.312929px;}
._14{width:2537.222929px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.865600px;}
.fsf{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:45.429600px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:107.596800px;}
.y11c{bottom:-762.145050px;}
.y13f{bottom:-678.714492px;}
.y13e{bottom:-659.455050px;}
.y13d{bottom:-659.440551px;}
.y13c{bottom:-640.271289px;}
.y13b{bottom:-621.011847px;}
.y13a{bottom:-601.842585px;}
.y139{bottom:-582.583143px;}
.y138{bottom:-563.323701px;}
.y137{bottom:-544.154439px;}
.y136{bottom:-524.894997px;}
.y135{bottom:-505.725735px;}
.y134{bottom:-486.466293px;}
.y133{bottom:-467.206851px;}
.y132{bottom:-443.536104px;}
.y131{bottom:-406.276734px;}
.y130{bottom:-387.017292px;}
.y12f{bottom:-367.848030px;}
.y12e{bottom:-348.588588px;}
.y12d{bottom:-329.419326px;}
.y12c{bottom:-310.159884px;}
.y12b{bottom:-290.900442px;}
.y12a{bottom:-271.729677px;}
.y129{bottom:-252.470235px;}
.y128{bottom:-233.300973px;}
.y127{bottom:-214.041531px;}
.y126{bottom:-194.782089px;}
.y125{bottom:-175.611324px;}
.y124{bottom:-156.351882px;}
.y123{bottom:-137.182620px;}
.y122{bottom:-117.923178px;}
.y121{bottom:-98.663736px;}
.y120{bottom:-79.494474px;}
.y11f{bottom:-55.735050px;}
.y11e{bottom:-18.925050px;}
.y0{bottom:0.000000px;}
.y11d{bottom:3.574950px;}
.y66{bottom:31.890000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.ye4{bottom:103.621500px;}
.y39{bottom:104.646000px;}
.y1eb{bottom:104.971500px;}
.y106{bottom:105.549000px;}
.y118{bottom:108.837000px;}
.y65{bottom:115.515000px;}
.y16b{bottom:115.980000px;}
.y2cd{bottom:116.458500px;}
.y252{bottom:118.609500px;}
.y24b{bottom:118.699500px;}
.yb9{bottom:119.148000px;}
.y9d{bottom:119.596500px;}
.y22e{bottom:119.721000px;}
.y299{bottom:120.717000px;}
.yb6{bottom:120.942000px;}
.ye3{bottom:122.449500px;}
.y38{bottom:122.535000px;}
.y1ea{bottom:123.801000px;}
.y105{bottom:124.378500px;}
.y117{bottom:127.666500px;}
.y282{bottom:129.438000px;}
.y2cc{bottom:133.719000px;}
.y64{bottom:134.344500px;}
.y16a{bottom:134.809500px;}
.y242{bottom:135.247500px;}
.y24a{bottom:137.529000px;}
.yb8{bottom:137.977500px;}
.y9c{bottom:138.426000px;}
.y23{bottom:139.264499px;}
.yb5{bottom:139.771500px;}
.y37{bottom:140.422500px;}
.ye2{bottom:141.279000px;}
.y1e9{bottom:142.630500px;}
.y104{bottom:143.208000px;}
.y251{bottom:145.150500px;}
.y147{bottom:145.762500px;}
.y116{bottom:146.496000px;}
.y281{bottom:148.267500px;}
.y2cb{bottom:150.978000px;}
.y63{bottom:153.174000px;}
.y169{bottom:153.639000px;}
.y298{bottom:155.238000px;}
.y249{bottom:156.358500px;}
.y241{bottom:156.807000px;}
.y9b{bottom:157.255500px;}
.y36{bottom:158.310000px;}
.yb4{bottom:158.599500px;}
.y1e8{bottom:158.730000px;}
.ye1{bottom:160.108500px;}
.y22d{bottom:160.482000px;}
.yb7{bottom:161.290500px;}
.y1e7{bottom:161.460000px;}
.y103{bottom:162.037500px;}
.y250{bottom:162.724500px;}
.y115{bottom:165.325500px;}
.y280{bottom:167.097000px;}
.y2ca{bottom:168.238500px;}
.y62{bottom:172.003500px;}
.y168{bottom:172.468500px;}
.y297{bottom:172.498500px;}
.y22c{bottom:174.678000px;}
.y248{bottom:175.188000px;}
.y240{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.yb3{bottom:177.429000px;}
.ye0{bottom:178.938000px;}
.y22b{bottom:179.017500px;}
.y146{bottom:179.386500px;}
.y1e6{bottom:180.289500px;}
.y24f{bottom:180.298500px;}
.y102{bottom:180.867000px;}
.y114{bottom:184.155000px;}
.y2c9{bottom:185.499000px;}
.y27f{bottom:185.925000px;}
.y1a7{bottom:188.361000px;}
.y22a{bottom:188.875500px;}
.y296{bottom:189.759000px;}
.y61{bottom:190.833000px;}
.y167{bottom:191.298000px;}
.y247{bottom:194.017500px;}
.y34{bottom:194.086500px;}
.y23f{bottom:194.466000px;}
.y99{bottom:194.914500px;}
.yb2{bottom:196.258500px;}
.y1a{bottom:196.933500px;}
.ydf{bottom:197.767500px;}
.y24e{bottom:197.872500px;}
.y145{bottom:198.216000px;}
.y1e5{bottom:199.119000px;}
.y101{bottom:199.696500px;}
.y1a6{bottom:200.316000px;}
.y2c8{bottom:202.759500px;}
.y113{bottom:202.984500px;}
.y229{bottom:203.071500px;}
.y27e{bottom:204.754500px;}
.y1a3{bottom:206.760000px;}
.y295{bottom:207.019500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y60{bottom:209.662500px;}
.y166{bottom:210.127500px;}
.y33{bottom:211.974000px;}
.y1a5{bottom:212.272500px;}
.y23e{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.yb1{bottom:215.088000px;}
.y24d{bottom:215.448000px;}
.yde{bottom:216.597000px;}
.y144{bottom:217.045500px;}
.y246{bottom:217.330500px;}
.y1e4{bottom:217.948500px;}
.y100{bottom:218.526000px;}
.y2c7{bottom:220.020000px;}
.y112{bottom:221.814000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1a4{bottom:224.227500px;}
.y228{bottom:224.232000px;}
.y294{bottom:224.278500px;}
.y5f{bottom:228.492000px;}
.y165{bottom:228.957000px;}
.y32{bottom:229.863000px;}
.y226{bottom:231.018000px;}
.y23d{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.y27d{bottom:232.752000px;}
.yb0{bottom:233.917500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ydd{bottom:235.426500px;}
.y143{bottom:235.875000px;}
.y1e3{bottom:236.778000px;}
.y2c6{bottom:237.280500px;}
.yff{bottom:237.355500px;}
.y225{bottom:238.429500px;}
.y111{bottom:240.643500px;}
.y293{bottom:241.539000px;}
.y1a2{bottom:243.384000px;}
.y5e{bottom:247.321500px;}
.y164{bottom:247.786500px;}
.y23c{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.y227{bottom:252.625500px;}
.yaf{bottom:252.747000px;}
.ydc{bottom:254.256000px;}
.y2c5{bottom:254.541000px;}
.y142{bottom:254.704500px;}
.y1a1{bottom:255.339000px;}
.y1e2{bottom:255.607500px;}
.yfe{bottom:256.185000px;}
.y292{bottom:258.799500px;}
.y27c{bottom:259.054500px;}
.y110{bottom:259.473000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y19e{bottom:261.622500px;}
.y198{bottom:262.245000px;}
.y5d{bottom:266.151000px;}
.y163{bottom:266.616000px;}
.y1a0{bottom:267.295500px;}
.y23b{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.yae{bottom:271.576500px;}
.y2c4{bottom:271.801500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.ydb{bottom:273.085500px;}
.y141{bottom:273.534000px;}
.y224{bottom:274.024500px;}
.y197{bottom:274.200000px;}
.y21c{bottom:274.207500px;}
.y1e1{bottom:274.437000px;}
.yfd{bottom:275.014500px;}
.y291{bottom:276.060000px;}
.y27b{bottom:277.884000px;}
.y10f{bottom:278.301000px;}
.y19f{bottom:279.250500px;}
.y222{bottom:280.810500px;}
.y5c{bottom:284.980500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y162{bottom:285.445500px;}
.y221{bottom:288.222000px;}
.y21b{bottom:288.405000px;}
.y23a{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.yad{bottom:290.406000px;}
.yda{bottom:291.915000px;}
.y244{bottom:293.095500px;}
.y1e0{bottom:293.266500px;}
.y290{bottom:293.320500px;}
.yfc{bottom:293.844000px;}
.y27a{bottom:296.713500px;}
.y10e{bottom:297.130500px;}
.y31{bottom:297.166500px;}
.y19d{bottom:298.407000px;}
.y223{bottom:302.418000px;}
.y5b{bottom:303.810000px;}
.y140{bottom:304.128000px;}
.y2c3{bottom:306.321000px;}
.y239{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.y161{bottom:308.758500px;}
.yac{bottom:309.235500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y19c{bottom:310.362000px;}
.y28f{bottom:310.581000px;}
.yd9{bottom:310.744500px;}
.y1df{bottom:312.096000px;}
.yfb{bottom:312.673500px;}
.y30{bottom:315.054000px;}
.y199{bottom:315.283500px;}
.y279{bottom:315.543000px;}
.y10d{bottom:315.960000px;}
.y19b{bottom:322.318500px;}
.y5a{bottom:322.639500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2c2{bottom:323.581500px;}
.y21e{bottom:323.817000px;}
.y220{bottom:324.129000px;}
.y238{bottom:326.272500px;}
.y119{bottom:326.557500px;}
.y92{bottom:326.719500px;}
.y28e{bottom:327.841500px;}
.yab{bottom:328.065000px;}
.y1de{bottom:328.195500px;}
.y1dd{bottom:330.925500px;}
.y21d{bottom:331.228500px;}
.yfa{bottom:331.503000px;}
.y2f{bottom:332.941500px;}
.y19a{bottom:334.273500px;}
.y278{bottom:334.372500px;}
.y10c{bottom:334.789500px;}
.yd8{bottom:336.145500px;}
.y21f{bottom:338.326500px;}
.y2c1{bottom:340.842000px;}
.y59{bottom:341.469000px;}
.y160{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.yaa{bottom:346.894500px;}
.y11{bottom:348.133500px;}
.y1dc{bottom:349.755000px;}
.yf9{bottom:350.332500px;}
.y2e{bottom:350.830500px;}
.y277{bottom:353.202000px;}
.y196{bottom:353.430000px;}
.y10b{bottom:358.102500px;}
.y218{bottom:360.037500px;}
.y58{bottom:360.298500px;}
.y21a{bottom:360.349500px;}
.y28d{bottom:362.361000px;}
.y15f{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y195{bottom:365.386500px;}
.ya9{bottom:365.724000px;}
.y217{bottom:367.449000px;}
.y1db{bottom:368.584500px;}
.yf8{bottom:369.162000px;}
.yd7{bottom:370.513500px;}
.y192{bottom:371.829000px;}
.y276{bottom:372.030000px;}
.y11b{bottom:374.015085px;}
.y219{bottom:374.547000px;}
.y2c0{bottom:375.363000px;}
.y194{bottom:377.341500px;}
.y2d{bottom:377.685000px;}
.y10a{bottom:378.277500px;}
.y57{bottom:379.128000px;}
.y28c{bottom:379.621500px;}
.y15e{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y11a{bottom:383.644950px;}
.ya8{bottom:384.553500px;}
.y10{bottom:386.785499px;}
.yd6{bottom:387.036000px;}
.y1da{bottom:387.414000px;}
.yf7{bottom:387.990000px;}
.y193{bottom:389.296500px;}
.yd5{bottom:389.343000px;}
.y275{bottom:390.859500px;}
.y210{bottom:391.975500px;}
.y2bf{bottom:392.623500px;}
.y2c{bottom:395.572500px;}
.y216{bottom:396.258000px;}
.y18c{bottom:396.580500px;}
.y28b{bottom:396.882000px;}
.y56{bottom:397.957500px;}
.y15d{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.ya7{bottom:403.383000px;}
.y1d9{bottom:403.513500px;}
.y20f{bottom:406.171500px;}
.y1d8{bottom:406.242000px;}
.yf6{bottom:406.819500px;}
.yf{bottom:408.044999px;}
.y191{bottom:408.453000px;}
.y18b{bottom:408.535500px;}
.y274{bottom:409.689000px;}
.y2be{bottom:409.884000px;}
.y212{bottom:410.143500px;}
.y215{bottom:410.455500px;}
.y109{bottom:411.901500px;}
.y2b{bottom:413.460000px;}
.y28a{bottom:414.142500px;}
.yd4{bottom:417.138000px;}
.y211{bottom:417.553500px;}
.y237{bottom:417.690000px;}
.y190{bottom:420.409500px;}
.y15c{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.y55{bottom:421.270500px;}
.ya6{bottom:422.212500px;}
.y214{bottom:424.651500px;}
.y1d7{bottom:425.071500px;}
.y18d{bottom:425.233500px;}
.yf5{bottom:425.649000px;}
.y2bd{bottom:427.144500px;}
.y108{bottom:428.424000px;}
.y273{bottom:428.518500px;}
.y107{bottom:430.731000px;}
.y2a{bottom:431.349000px;}
.y289{bottom:431.403000px;}
.y18f{bottom:432.364500px;}
.yd3{bottom:435.967500px;}
.y213{bottom:438.849000px;}
.y15b{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.ya5{bottom:441.042000px;}
.y1d6{bottom:443.901000px;}
.y18e{bottom:444.319500px;}
.y2bc{bottom:444.403500px;}
.yf4{bottom:444.478500px;}
.y272{bottom:447.348000px;}
.y288{bottom:448.663500px;}
.y29{bottom:449.236500px;}
.yd2{bottom:454.797000px;}
.y15a{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.ya4{bottom:459.871500px;}
.y20e{bottom:460.248000px;}
.y2bb{bottom:461.664000px;}
.y1d5{bottom:462.730500px;}
.yf3{bottom:463.308000px;}
.y18a{bottom:463.476000px;}
.y287{bottom:465.924000px;}
.y271{bottom:466.177500px;}
.y28{bottom:467.124000px;}
.y20c{bottom:467.346000px;}
.yd1{bottom:473.626500px;}
.y20d{bottom:474.444000px;}
.y159{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.ya3{bottom:478.701000px;}
.y2ba{bottom:478.924500px;}
.y1d4{bottom:481.560000px;}
.yf2{bottom:482.137500px;}
.y286{bottom:483.184500px;}
.ye{bottom:484.864502px;}
.y270{bottom:485.007000px;}
.y27{bottom:485.013000px;}
.yd0{bottom:492.456000px;}
.y189{bottom:494.946000px;}
.y158{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.y54{bottom:496.420500px;}
.ya2{bottom:497.530500px;}
.y1d3{bottom:500.389500px;}
.y285{bottom:500.445000px;}
.yf1{bottom:500.967000px;}
.yd{bottom:502.864502px;}
.y26{bottom:502.900500px;}
.y26f{bottom:503.836500px;}
.y20b{bottom:507.483000px;}
.ycf{bottom:511.285500px;}
.y2b9{bottom:513.445500px;}
.y157{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.y1d2{bottom:516.489000px;}
.y284{bottom:517.704000px;}
.y1d1{bottom:519.219000px;}
.yf0{bottom:519.796500px;}
.y25{bottom:520.788000px;}
.ya1{bottom:520.843500px;}
.yc{bottom:520.864502px;}
.y26e{bottom:522.666000px;}
.yce{bottom:530.115000px;}
.y2b8{bottom:530.706000px;}
.y188{bottom:532.051500px;}
.y156{bottom:533.395500px;}
.y53{bottom:533.809500px;}
.y87{bottom:533.844000px;}
.y283{bottom:534.964500px;}
.ya0{bottom:536.533500px;}
.y1d0{bottom:538.048500px;}
.yef{bottom:538.626000px;}
.y24{bottom:538.677000px;}
.yb{bottom:538.864499px;}
.y26d{bottom:541.495500px;}
.y2b7{bottom:547.966500px;}
.y20a{bottom:548.508000px;}
.ycd{bottom:548.944500px;}
.y187{bottom:550.881000px;}
.y155{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.y52{bottom:553.266000px;}
.y1cf{bottom:554.148000px;}
.y9f{bottom:556.708500px;}
.ya{bottom:556.864499px;}
.y1ce{bottom:556.878000px;}
.yee{bottom:557.455500px;}
.y26c{bottom:560.325000px;}
.y209{bottom:562.704000px;}
.y2b6{bottom:565.227000px;}
.y208{bottom:567.043500px;}
.ycc{bottom:567.774000px;}
.y186{bottom:569.710500px;}
.y154{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.y51{bottom:572.724000px;}
.y1cd{bottom:575.707500px;}
.yed{bottom:576.285000px;}
.y207{bottom:576.901500px;}
.y26b{bottom:579.154500px;}
.y2b5{bottom:582.487500px;}
.ycb{bottom:586.603500px;}
.y185{bottom:588.538500px;}
.y153{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y206{bottom:591.097500px;}
.y50{bottom:592.180500px;}
.y1cc{bottom:594.537000px;}
.yec{bottom:595.114500px;}
.y26a{bottom:597.984000px;}
.y2b4{bottom:599.746500px;}
.yca{bottom:605.433000px;}
.y184{bottom:607.368000px;}
.y152{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.y4f{bottom:611.638500px;}
.y205{bottom:612.258000px;}
.y1cb{bottom:613.366500px;}
.yeb{bottom:613.944000px;}
.y269{bottom:616.813500px;}
.y2b3{bottom:617.007000px;}
.yc9{bottom:624.262500px;}
.y183{bottom:626.197500px;}
.y203{bottom:626.454000px;}
.y151{bottom:627.543000px;}
.y82{bottom:627.991500px;}
.y4e{bottom:628.164000px;}
.y4d{bottom:631.095000px;}
.y245{bottom:632.026500px;}
.y1ca{bottom:632.196000px;}
.yea{bottom:632.773500px;}
.y2b2{bottom:634.267500px;}
.y268{bottom:635.643000px;}
.y204{bottom:640.651500px;}
.yc8{bottom:643.092000px;}
.y182{bottom:645.027000px;}
.y9{bottom:645.510000px;}
.y150{bottom:646.372500px;}
.y81{bottom:646.821000px;}
.y1c9{bottom:648.295500px;}
.y4c{bottom:650.551500px;}
.y1c8{bottom:651.025500px;}
.y2b1{bottom:651.528000px;}
.y267{bottom:654.472500px;}
.ye9{bottom:659.074500px;}
.yc7{bottom:661.921500px;}
.y202{bottom:662.050500px;}
.y181{bottom:663.856500px;}
.y14f{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y2b0{bottom:668.788500px;}
.y4b{bottom:670.009500px;}
.y1fa{bottom:671.635500px;}
.y266{bottom:673.302000px;}
.y1c7{bottom:674.338500px;}
.y201{bottom:676.246500px;}
.y1ff{bottom:676.248000px;}
.ye8{bottom:677.904000px;}
.yc6{bottom:680.751000px;}
.y180{bottom:682.686000px;}
.y14e{bottom:684.031500px;}
.y7f{bottom:684.480000px;}
.y1f9{bottom:685.831500px;}
.y2af{bottom:686.049000px;}
.y4a{bottom:689.466000px;}
.y200{bottom:690.444000px;}
.y265{bottom:692.131500px;}
.yc5{bottom:699.580500px;}
.y17f{bottom:701.515500px;}
.y14d{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.y24c{bottom:707.344500px;}
.y49{bottom:708.922500px;}
.y264{bottom:710.961000px;}
.y1fe{bottom:711.843000px;}
.ye7{bottom:713.172000px;}
.y1c6{bottom:719.650500px;}
.y17e{bottom:720.345000px;}
.y2ae{bottom:720.570000px;}
.y14c{bottom:721.690500px;}
.y7d{bottom:722.139000px;}
.yc4{bottom:724.981500px;}
.y1fc{bottom:725.731500px;}
.y1fb{bottom:726.040500px;}
.y7{bottom:726.298500px;}
.y48{bottom:728.380500px;}
.ye6{bottom:729.694500px;}
.y263{bottom:729.790500px;}
.ye5{bottom:732.001500px;}
.y1c5{bottom:736.089000px;}
.y2ad{bottom:737.829000px;}
.y17d{bottom:739.174500px;}
.y1fd{bottom:740.236500px;}
.y14b{bottom:740.520000px;}
.y7c{bottom:740.968500px;}
.y1c2{bottom:744.906000px;}
.y47{bottom:747.837000px;}
.y262{bottom:748.620000px;}
.yc3{bottom:750.382500px;}
.y1c4{bottom:752.527500px;}
.y3{bottom:752.599495px;}
.y2ac{bottom:755.089500px;}
.y236{bottom:756.619500px;}
.y17c{bottom:758.004000px;}
.y14a{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.y1f8{bottom:761.635500px;}
.y46{bottom:767.295000px;}
.y261{bottom:767.449500px;}
.y1f7{bottom:768.426000px;}
.y1f6{bottom:768.733500px;}
.y1c3{bottom:768.966000px;}
.yc2{bottom:769.212000px;}
.y2ab{bottom:772.350000px;}
.y243{bottom:775.897500px;}
.y17b{bottom:776.833500px;}
.y149{bottom:778.179000px;}
.y7a{bottom:778.627500px;}
.y1f2{bottom:785.850000px;}
.y260{bottom:786.279000px;}
.y45{bottom:786.751500px;}
.yc1{bottom:788.041500px;}
.y2aa{bottom:789.610500px;}
.y1c1{bottom:792.606000px;}
.y17a{bottom:795.663000px;}
.y235{bottom:797.008500px;}
.y1f5{bottom:797.232000px;}
.y79{bottom:797.457000px;}
.y1f1{bottom:800.047500px;}
.y148{bottom:801.490500px;}
.y44{bottom:806.208000px;}
.yc0{bottom:806.871000px;}
.y1c0{bottom:809.044500px;}
.y1f3{bottom:811.428000px;}
.y25f{bottom:812.580000px;}
.y179{bottom:814.492500px;}
.y234{bottom:815.838000px;}
.y1b7{bottom:816.078000px;}
.y78{bottom:816.286500px;}
.y1bd{bottom:817.657500px;}
.y2a9{bottom:824.131500px;}
.y1bf{bottom:825.483000px;}
.y1f4{bottom:825.625500px;}
.y43{bottom:825.666000px;}
.ybf{bottom:825.700500px;}
.y1b6{bottom:832.516500px;}
.y178{bottom:833.322000px;}
.y233{bottom:834.667500px;}
.y77{bottom:835.114500px;}
.y25e{bottom:838.881000px;}
.y2a8{bottom:841.392000px;}
.y1be{bottom:841.921500px;}
.ybe{bottom:844.530000px;}
.y42{bottom:845.122500px;}
.y1f0{bottom:847.024500px;}
.y177{bottom:852.151500px;}
.y232{bottom:853.497000px;}
.y76{bottom:853.944000px;}
.y1ee{bottom:854.122500px;}
.y2a7{bottom:858.652500px;}
.y1ef{bottom:861.220500px;}
.y25d{bottom:862.194000px;}
.y41{bottom:864.580500px;}
.y1bc{bottom:865.561500px;}
.ybd{bottom:867.843000px;}
.y9e{bottom:870.039000px;}
.y176{bottom:870.981000px;}
.y231{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.y2a6{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y25c{bottom:881.023500px;}
.y1bb{bottom:882.000000px;}
.y1b8{bottom:888.861000px;}
.y175{bottom:889.810500px;}
.y230{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.y2a5{bottom:893.172000px;}
.y1ed{bottom:894.259500px;}
.y1ba{bottom:898.438500px;}
.ybc{bottom:901.467000px;}
.y40{bottom:903.165000px;}
.y25b{bottom:904.336500px;}
.y174{bottom:908.640000px;}
.y73{bottom:910.432500px;}
.y22f{bottom:914.467500px;}
.y1b9{bottom:914.877000px;}
.ybb{bottom:917.989500px;}
.y3f{bottom:919.305000px;}
.yba{bottom:920.296500px;}
.y2d0{bottom:923.136000px;}
.y173{bottom:927.469500px;}
.y2a4{bottom:927.693000px;}
.y72{bottom:929.262000px;}
.y1b5{bottom:938.518500px;}
.y2cf{bottom:940.395000px;}
.y25a{bottom:941.098500px;}
.y2a3{bottom:944.953500px;}
.y1ec{bottom:945.361500px;}
.y172{bottom:946.299000px;}
.y71{bottom:948.091500px;}
.y1b4{bottom:954.957000px;}
.y2ce{bottom:957.655500px;}
.y2a2{bottom:962.214000px;}
.y1b1{bottom:963.774000px;}
.y171{bottom:965.128500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y259{bottom:967.639500px;}
.y3e{bottom:968.320500px;}
.y1b3{bottom:971.394000px;}
.y2a1{bottom:979.474500px;}
.y170{bottom:983.958000px;}
.y258{bottom:985.213500px;}
.y6f{bottom:985.750500px;}
.y1b2{bottom:987.832500px;}
.y1ab{bottom:995.353500px;}
.y2a0{bottom:996.735000px;}
.y16f{bottom:1002.787500px;}
.y6e{bottom:1004.580000px;}
.y3d{bottom:1008.240000px;}
.y1b0{bottom:1011.474000px;}
.y257{bottom:1011.753000px;}
.y1aa{bottom:1011.792000px;}
.y29f{bottom:1013.995500px;}
.y16e{bottom:1021.617000px;}
.y6d{bottom:1023.409500px;}
.y1af{bottom:1027.912500px;}
.y256{bottom:1029.327000px;}
.y29e{bottom:1031.254500px;}
.y1ac{bottom:1034.649000px;}
.y3c{bottom:1036.485000px;}
.y6c{bottom:1042.239000px;}
.y1ae{bottom:1044.351000px;}
.y16d{bottom:1044.928500px;}
.y29d{bottom:1048.515000px;}
.y255{bottom:1055.868000px;}
.y1ad{bottom:1060.789500px;}
.y6b{bottom:1061.068500px;}
.y3b{bottom:1064.728500px;}
.y16c{bottom:1065.103500px;}
.y29c{bottom:1065.775500px;}
.y254{bottom:1073.442000px;}
.y6a{bottom:1079.898000px;}
.y29b{bottom:1083.036000px;}
.y1a9{bottom:1084.429500px;}
.y3a{bottom:1092.972000px;}
.y69{bottom:1098.727500px;}
.y253{bottom:1099.983000px;}
.y29a{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y1a8{bottom:1119.037500px;}
.y67{bottom:1177.662000px;}
.h1f{height:28.154308px;}
.h1e{height:28.512893px;}
.h12{height:30.670772px;}
.h28{height:31.131341px;}
.h7{height:32.130000px;}
.h1d{height:32.150391px;}
.h14{height:33.299897px;}
.ha{height:36.319550px;}
.h9{height:37.449306px;}
.h20{height:39.432893px;}
.h16{height:39.614278px;}
.h15{height:40.659492px;}
.he{height:41.508281px;}
.h19{height:42.760020px;}
.hf{height:42.799437px;}
.h1c{height:43.269961px;}
.h18{height:43.718555px;}
.hb{height:43.815515px;}
.h6{height:45.900000px;}
.h11{height:46.697011px;}
.h26{height:47.235341px;}
.h23{height:47.241341px;}
.h10{height:48.149568px;}
.h3{height:48.195000px;}
.h27{height:48.489341px;}
.h25{height:48.495341px;}
.h1b{height:49.306641px;}
.h13{height:51.885221px;}
.hd{height:53.499162px;}
.h1a{height:53.691152px;}
.h2{height:55.080000px;}
.h22{height:61.128893px;}
.h21{height:61.134893px;}
.h5{height:64.260000px;}
.h24{height:71.136281px;}
.h29{height:75.633341px;}
.hc{height:96.299136px;}
.h4{height:119.055004px;}
.h17{height:337.254000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:565.035000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x16{left:-191.946000px;}
.x0{left:0.000000px;}
.x18{left:3.624000px;}
.x19{left:35.483894px;}
.x5{left:53.574000px;}
.x3c{left:62.575500px;}
.x62{left:82.248000px;}
.x30{left:84.364500px;}
.x35{left:86.346000px;}
.x60{left:96.067500px;}
.x1{left:102.045000px;}
.x2a{left:103.705500px;}
.x2{left:106.297500px;}
.x36{left:108.751500px;}
.x3d{left:113.163000px;}
.x29{left:115.798500px;}
.x2b{left:121.132500px;}
.x31{left:124.564500px;}
.x4{left:203.484001px;}
.x22{left:247.513500px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x1e{left:254.173500px;}
.xf{left:262.287000px;}
.x10{left:268.713000px;}
.x6b{left:280.314000px;}
.xa{left:281.479500px;}
.x11{left:284.184000px;}
.x5a{left:285.627000px;}
.x4e{left:293.563500px;}
.x6a{left:295.792500px;}
.x47{left:299.742000px;}
.x3f{left:301.309500px;}
.x4f{left:303.715500px;}
.x48{left:306.688500px;}
.x66{left:314.874000px;}
.x33{left:317.784000px;}
.x3e{left:321.550500px;}
.x74{left:323.640000px;}
.x49{left:324.655500px;}
.x63{left:326.433000px;}
.x34{left:329.841000px;}
.x32{left:333.528000px;}
.x75{left:336.391500px;}
.x3b{left:338.274000px;}
.x2f{left:346.536000px;}
.x37{left:350.944500px;}
.x1f{left:355.701000px;}
.x4c{left:364.489500px;}
.x40{left:371.773500px;}
.x4d{left:374.548500px;}
.x41{left:381.955500px;}
.x72{left:384.354000px;}
.x73{left:386.233500px;}
.x42{left:419.497500px;}
.x5b{left:432.496500px;}
.x43{left:437.862000px;}
.x5c{left:439.959000px;}
.x6e{left:441.040500px;}
.x5f{left:445.695000px;}
.x3{left:454.959000px;}
.x1a{left:457.134000px;}
.x6c{left:480.178500px;}
.x1b{left:482.514000px;}
.x5d{left:490.110000px;}
.x27{left:496.767000px;}
.x28{left:507.784500px;}
.x3a{left:509.547000px;}
.x38{left:517.698000px;}
.x2e{left:519.432000px;}
.x6f{left:521.109000px;}
.x2c{left:525.771000px;}
.x39{left:536.566500px;}
.x2d{left:540.448500px;}
.x1c{left:543.354000px;}
.x5e{left:555.049500px;}
.x17{left:568.373850px;}
.x1d{left:580.794000px;}
.x67{left:587.194500px;}
.x12{left:588.201000px;}
.x50{left:594.589500px;}
.xb{left:599.614500px;}
.x13{left:604.227000px;}
.x51{left:613.893000px;}
.x14{left:620.361000px;}
.xc{left:634.062000px;}
.x15{left:636.387000px;}
.x23{left:647.142000px;}
.x64{left:651.613500px;}
.x24{left:654.411000px;}
.x70{left:655.504500px;}
.x58{left:657.463500px;}
.x55{left:661.311000px;}
.x69{left:667.119000px;}
.x56{left:671.487000px;}
.x59{left:678.082500px;}
.x4a{left:680.292000px;}
.x61{left:681.429000px;}
.xd{left:691.642500px;}
.x4b{left:698.259000px;}
.x68{left:702.655500px;}
.x71{left:706.947000px;}
.x65{left:722.889000px;}
.x25{left:724.596000px;}
.x26{left:735.604500px;}
.xe{left:739.969500px;}
.x8{left:744.495000px;}
.x44{left:746.811000px;}
.x20{left:748.200000px;}
.x6d{left:756.960000px;}
.x9{left:768.792000px;}
.x52{left:773.713500px;}
.x53{left:781.743000px;}
.x45{left:791.691000px;}
.x57{left:793.956000px;}
.x21{left:796.066500px;}
.x46{left:801.831000px;}
.x54{left:831.894000px;}
@media print{
.v8{vertical-align:-15.429333pt;}
.v1{vertical-align:-10.629333pt;}
.v2{vertical-align:-9.706667pt;}
.v4{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.320000pt;}
.v6{vertical-align:15.429333pt;}
.v3{vertical-align:19.290667pt;}
.v9{vertical-align:24.128000pt;}
.v7{vertical-align:26.336000pt;}
.va{vertical-align:39.557333pt;}
.ls45{letter-spacing:-3.703392pt;}
.ls3d{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.096192pt;}
.ls42{letter-spacing:-0.058784pt;}
.ls44{letter-spacing:-0.053440pt;}
.ls43{letter-spacing:-0.042752pt;}
.ls3b{letter-spacing:-0.032064pt;}
.ls40{letter-spacing:-0.026720pt;}
.ls48{letter-spacing:-0.025600pt;}
.ls39{letter-spacing:-0.025536pt;}
.ls3f{letter-spacing:-0.021376pt;}
.ls3e{letter-spacing:-0.016032pt;}
.ls41{letter-spacing:-0.010688pt;}
.ls3c{letter-spacing:-0.005344pt;}
.ls3a{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls70{letter-spacing:0.000387pt;}
.ls57{letter-spacing:0.000540pt;}
.ls76{letter-spacing:0.000600pt;}
.ls74{letter-spacing:0.000921pt;}
.ls73{letter-spacing:0.001026pt;}
.ls75{letter-spacing:0.001158pt;}
.ls10{letter-spacing:0.002613pt;}
.ls6b{letter-spacing:0.005051pt;}
.ls4e{letter-spacing:0.005055pt;}
.ls2f{letter-spacing:0.005344pt;}
.ls30{letter-spacing:0.010688pt;}
.ls34{letter-spacing:0.016032pt;}
.ls27{letter-spacing:0.019200pt;}
.ls2c{letter-spacing:0.026720pt;}
.ls25{letter-spacing:0.028800pt;}
.ls32{letter-spacing:0.032064pt;}
.ls31{letter-spacing:0.037408pt;}
.ls2a{letter-spacing:0.042752pt;}
.ls33{letter-spacing:0.048096pt;}
.ls26{letter-spacing:0.052800pt;}
.ls2d{letter-spacing:0.053440pt;}
.ls2b{letter-spacing:0.058784pt;}
.ls35{letter-spacing:0.064128pt;}
.ls29{letter-spacing:0.069472pt;}
.ls36{letter-spacing:0.086400pt;}
.ls2e{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.112224pt;}
.ls47{letter-spacing:0.144288pt;}
.ls37{letter-spacing:0.160320pt;}
.ls24{letter-spacing:0.161728pt;}
.ls23{letter-spacing:0.170240pt;}
.ls49{letter-spacing:0.171008pt;}
.ls38{letter-spacing:1.387480pt;}
.ls68{letter-spacing:10.623733pt;}
.ls7{letter-spacing:10.626533pt;}
.ls62{letter-spacing:10.627330pt;}
.ls64{letter-spacing:10.629067pt;}
.ls65{letter-spacing:10.778438pt;}
.ls66{letter-spacing:10.778854pt;}
.ls53{letter-spacing:11.502468pt;}
.ls54{letter-spacing:11.506536pt;}
.ls71{letter-spacing:12.273923pt;}
.lsd{letter-spacing:12.327057pt;}
.lsc{letter-spacing:12.380191pt;}
.ls4d{letter-spacing:12.943271pt;}
.ls4c{letter-spacing:13.062112pt;}
.ls1b{letter-spacing:13.070931pt;}
.ls4{letter-spacing:13.124065pt;}
.ls4a{letter-spacing:13.195418pt;}
.ls61{letter-spacing:13.200751pt;}
.ls51{letter-spacing:13.278903pt;}
.ls6c{letter-spacing:13.281067pt;}
.lsf{letter-spacing:13.283467pt;}
.ls52{letter-spacing:13.283733pt;}
.ls4b{letter-spacing:13.284237pt;}
.ls67{letter-spacing:13.286400pt;}
.ls14{letter-spacing:13.308459pt;}
.ls16{letter-spacing:13.336601pt;}
.ls18{letter-spacing:13.389734pt;}
.ls6e{letter-spacing:13.442868pt;}
.ls4f{letter-spacing:13.505936pt;}
.ls50{letter-spacing:13.506269pt;}
.ls15{letter-spacing:13.549136pt;}
.lsa{letter-spacing:13.655404pt;}
.ls63{letter-spacing:13.681067pt;}
.ls69{letter-spacing:13.997369pt;}
.ls6a{letter-spacing:14.000114pt;}
.ls72{letter-spacing:14.345201pt;}
.ls58{letter-spacing:14.363452pt;}
.ls59{letter-spacing:14.369014pt;}
.ls1e{letter-spacing:14.877483pt;}
.ls8{letter-spacing:15.408821pt;}
.ls21{letter-spacing:15.461955pt;}
.lsb{letter-spacing:15.674491pt;}
.ls55{letter-spacing:15.707243pt;}
.ls56{letter-spacing:15.712805pt;}
.ls5{letter-spacing:15.727625pt;}
.ls6d{letter-spacing:15.937067pt;}
.ls12{letter-spacing:15.940160pt;}
.ls60{letter-spacing:15.942400pt;}
.ls6f{letter-spacing:16.471499pt;}
.ls1a{letter-spacing:17.055971pt;}
.ls5c{letter-spacing:17.109105pt;}
.ls13{letter-spacing:17.631786pt;}
.ls5f{letter-spacing:18.012381pt;}
.ls9{letter-spacing:18.065515pt;}
.lse{letter-spacing:18.118649pt;}
.ls5a{letter-spacing:19.037962pt;}
.ls5b{letter-spacing:19.043524pt;}
.ls19{letter-spacing:19.500129pt;}
.ls6{letter-spacing:19.606397pt;}
.ls5d{letter-spacing:20.287635pt;}
.ls5e{letter-spacing:20.293197pt;}
.ls17{letter-spacing:20.297137pt;}
.ls11{letter-spacing:21.625484pt;}
.ls22{letter-spacing:22.581893pt;}
.ls1{letter-spacing:25.292137pt;}
.ls3{letter-spacing:26.779469pt;}
.ls2{letter-spacing:26.832603pt;}
.ls20{letter-spacing:29.399026pt;}
.ls1d{letter-spacing:29.409655pt;}
.ls1f{letter-spacing:30.253061pt;}
.ls1c{letter-spacing:30.951827pt;}
.wsb8{word-spacing:-48.000000pt;}
.ws103{word-spacing:-40.078876pt;}
.ws11b{word-spacing:-32.063181pt;}
.ws47{word-spacing:-26.566933pt;}
.ws43{word-spacing:-13.283467pt;}
.ws10d{word-spacing:-11.955200pt;}
.wsb6{word-spacing:-10.810240pt;}
.wsb7{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.wsba{word-spacing:-9.656608pt;}
.wsa{word-spacing:-9.298400pt;}
.wsbb{word-spacing:-8.086400pt;}
.wsbc{word-spacing:-7.974400pt;}
.ws153{word-spacing:-2.982920pt;}
.ws152{word-spacing:-2.975497pt;}
.ws13a{word-spacing:-2.922363pt;}
.ws13b{word-spacing:-2.910797pt;}
.wsd9{word-spacing:-2.511680pt;}
.ws130{word-spacing:-2.497292pt;}
.wseb{word-spacing:-2.490304pt;}
.wsda{word-spacing:-2.484960pt;}
.wsd8{word-spacing:-2.474272pt;}
.ws12f{word-spacing:-2.467860pt;}
.wsea{word-spacing:-2.458240pt;}
.ws12e{word-spacing:-2.444158pt;}
.ws16c{word-spacing:-2.199757pt;}
.ws8f{word-spacing:-2.178489pt;}
.wsca{word-spacing:-2.153632pt;}
.ws62{word-spacing:-2.072221pt;}
.ws6f{word-spacing:-2.019087pt;}
.ws134{word-spacing:-1.965953pt;}
.wsdb{word-spacing:-1.886432pt;}
.wsc8{word-spacing:-1.875744pt;}
.wsc9{word-spacing:-1.870400pt;}
.ws151{word-spacing:-1.859685pt;}
.wsdc{word-spacing:-1.827648pt;}
.wsdd{word-spacing:-1.822304pt;}
.ws18f{word-spacing:-1.817190pt;}
.ws112{word-spacing:-1.806551pt;}
.ws7a{word-spacing:-1.753418pt;}
.ws13{word-spacing:-1.721549pt;}
.ws138{word-spacing:-1.700284pt;}
.ws13c{word-spacing:-1.647150pt;}
.ws129{word-spacing:-1.594016pt;}
.ws5d{word-spacing:-1.540882pt;}
.wsf5{word-spacing:-1.517696pt;}
.wsf6{word-spacing:-1.507008pt;}
.ws5c{word-spacing:-1.487748pt;}
.ws165{word-spacing:-1.434624pt;}
.ws164{word-spacing:-1.386803pt;}
.ws40{word-spacing:-1.381481pt;}
.ws42{word-spacing:-1.328347pt;}
.ws8e{word-spacing:-1.222079pt;}
.ws18a{word-spacing:-1.195520pt;}
.wsa3{word-spacing:-1.115811pt;}
.ws54{word-spacing:-1.062677pt;}
.ws161{word-spacing:-1.052058pt;}
.ws56{word-spacing:-1.009543pt;}
.ws55{word-spacing:-0.956410pt;}
.ws52{word-spacing:-0.921736pt;}
.ws51{word-spacing:-0.903276pt;}
.wsfb{word-spacing:-0.892448pt;}
.ws53{word-spacing:-0.850142pt;}
.wsa4{word-spacing:-0.797008pt;}
.ws8d{word-spacing:-0.690740pt;}
.ws9f{word-spacing:-0.637606pt;}
.wsfd{word-spacing:-0.614560pt;}
.wsfa{word-spacing:-0.593184pt;}
.ws44{word-spacing:-0.584473pt;}
.ws143{word-spacing:-0.573850pt;}
.ws45{word-spacing:-0.531339pt;}
.wsf{word-spacing:-0.478208pt;}
.ws124{word-spacing:-0.478205pt;}
.wsfc{word-spacing:-0.459584pt;}
.ws15b{word-spacing:-0.430387pt;}
.ws13d{word-spacing:-0.425071pt;}
.ws15{word-spacing:-0.382566pt;}
.wsab{word-spacing:-0.371937pt;}
.ws16{word-spacing:-0.369361pt;}
.wsc5{word-spacing:-0.347360pt;}
.ws163{word-spacing:-0.334746pt;}
.ws3d{word-spacing:-0.318803pt;}
.wsed{word-spacing:-0.299264pt;}
.ws162{word-spacing:-0.286925pt;}
.wsf1{word-spacing:-0.267200pt;}
.ws21{word-spacing:-0.265669pt;}
.wsbf{word-spacing:-0.246848pt;}
.wsd7{word-spacing:-0.245824pt;}
.ws159{word-spacing:-0.239104pt;}
.wsd6{word-spacing:-0.229792pt;}
.wsf0{word-spacing:-0.219104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws5b{word-spacing:-0.202650pt;}
.ws166{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.159402pt;}
.ws9a{word-spacing:-0.155046pt;}
.ws14{word-spacing:-0.143462pt;}
.ws113{word-spacing:-0.122475pt;}
.ws28{word-spacing:-0.106268pt;}
.ws11{word-spacing:-0.095642pt;}
.ws70{word-spacing:-0.081984pt;}
.ws86{word-spacing:-0.080919pt;}
.wsc0{word-spacing:-0.072352pt;}
.ws87{word-spacing:-0.072255pt;}
.ws88{word-spacing:-0.061949pt;}
.ws90{word-spacing:-0.055802pt;}
.wsb9{word-spacing:-0.053440pt;}
.ws31{word-spacing:-0.053134pt;}
.wsbe{word-spacing:-0.051072pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws146{word-spacing:-0.029574pt;}
.ws150{word-spacing:-0.025703pt;}
.ws175{word-spacing:-0.010453pt;}
.ws14f{word-spacing:-0.010428pt;}
.ws184{word-spacing:-0.009668pt;}
.ws19c{word-spacing:-0.009344pt;}
.ws16b{word-spacing:-0.009242pt;}
.ws1a5{word-spacing:-0.008789pt;}
.ws190{word-spacing:-0.008269pt;}
.ws179{word-spacing:-0.007979pt;}
.ws196{word-spacing:-0.005709pt;}
.ws15d{word-spacing:-0.005052pt;}
.ws19e{word-spacing:-0.004890pt;}
.wsbd{word-spacing:-0.004045pt;}
.ws193{word-spacing:-0.003712pt;}
.ws19a{word-spacing:-0.003593pt;}
.ws1a2{word-spacing:-0.003465pt;}
.ws17e{word-spacing:-0.003430pt;}
.ws11c{word-spacing:-0.003300pt;}
.ws89{word-spacing:-0.003225pt;}
.ws183{word-spacing:-0.002935pt;}
.ws92{word-spacing:-0.002494pt;}
.ws91{word-spacing:-0.001252pt;}
.ws8a{word-spacing:-0.001104pt;}
.ws122{word-spacing:-0.000963pt;}
.ws118{word-spacing:-0.000697pt;}
.ws0{word-spacing:0.000000pt;}
.ws11d{word-spacing:0.002033pt;}
.ws145{word-spacing:0.002960pt;}
.ws2f{word-spacing:0.003199pt;}
.wscd{word-spacing:0.026720pt;}
.ws116{word-spacing:0.042507pt;}
.ws1e{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.ws133{word-spacing:0.068186pt;}
.ws1d{word-spacing:0.072025pt;}
.wsec{word-spacing:0.090848pt;}
.ws12{word-spacing:0.095642pt;}
.wsf3{word-spacing:0.096192pt;}
.ws3b{word-spacing:0.106268pt;}
.wsc3{word-spacing:0.110400pt;}
.ws11a{word-spacing:0.127522pt;}
.wsf2{word-spacing:0.128256pt;}
.wsc2{word-spacing:0.134400pt;}
.wsf4{word-spacing:0.138944pt;}
.ws110{word-spacing:0.143462pt;}
.wsc4{word-spacing:0.144000pt;}
.ws34{word-spacing:0.159402pt;}
.ws119{word-spacing:0.170029pt;}
.ws50{word-spacing:0.179827pt;}
.ws5f{word-spacing:0.186830pt;}
.ws18{word-spacing:0.191283pt;}
.ws5e{word-spacing:0.197235pt;}
.ws85{word-spacing:0.207024pt;}
.ws2e{word-spacing:0.212535pt;}
.ws111{word-spacing:0.229786pt;}
.ws141{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws16f{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.ws17f{word-spacing:0.334746pt;}
.wsc6{word-spacing:0.336672pt;}
.wsce{word-spacing:0.358048pt;}
.ws2d{word-spacing:0.371937pt;}
.wse7{word-spacing:0.400800pt;}
.wse6{word-spacing:0.411488pt;}
.wse1{word-spacing:0.422176pt;}
.wsa2{word-spacing:0.425071pt;}
.wsc7{word-spacing:0.438208pt;}
.wse0{word-spacing:0.464928pt;}
.ws8b{word-spacing:0.478205pt;}
.ws188{word-spacing:0.478208pt;}
.wsb3{word-spacing:0.531339pt;}
.ws198{word-spacing:0.573850pt;}
.ws96{word-spacing:0.584473pt;}
.ws71{word-spacing:0.637606pt;}
.ws105{word-spacing:0.690740pt;}
.ws15a{word-spacing:0.717312pt;}
.wsd3{word-spacing:0.726784pt;}
.wsb1{word-spacing:0.743874pt;}
.ws102{word-spacing:0.797008pt;}
.ws83{word-spacing:0.850142pt;}
.ws19d{word-spacing:0.860774pt;}
.ws128{word-spacing:0.887376pt;}
.ws126{word-spacing:0.891001pt;}
.ws127{word-spacing:0.903276pt;}
.ws94{word-spacing:0.956410pt;}
.ws15c{word-spacing:1.004237pt;}
.ws95{word-spacing:1.009543pt;}
.wscf{word-spacing:1.020704pt;}
.wsd1{word-spacing:1.047424pt;}
.ws191{word-spacing:1.052058pt;}
.ws65{word-spacing:1.062677pt;}
.wsd0{word-spacing:1.063456pt;}
.wsd2{word-spacing:1.068800pt;}
.ws12c{word-spacing:1.115811pt;}
.ws19{word-spacing:1.147699pt;}
.ws14d{word-spacing:1.167271pt;}
.wsa5{word-spacing:1.168945pt;}
.ws194{word-spacing:1.212630pt;}
.ws6b{word-spacing:1.222079pt;}
.ws9{word-spacing:1.227389pt;}
.ws10{word-spacing:1.243341pt;}
.wsaa{word-spacing:1.275213pt;}
.ws120{word-spacing:1.275216pt;}
.ws32{word-spacing:1.328347pt;}
.ws17c{word-spacing:1.338982pt;}
.ws74{word-spacing:1.381481pt;}
.ws1a4{word-spacing:1.386803pt;}
.ws3e{word-spacing:1.434614pt;}
.ws147{word-spacing:1.478514pt;}
.ws181{word-spacing:1.482445pt;}
.ws115{word-spacing:1.487748pt;}
.ws2b{word-spacing:1.540882pt;}
.ws46{word-spacing:1.594016pt;}
.ws67{word-spacing:1.647150pt;}
.ws15e{word-spacing:1.673728pt;}
.ws64{word-spacing:1.700284pt;}
.ws17{word-spacing:1.721549pt;}
.ws149{word-spacing:1.741230pt;}
.ws75{word-spacing:1.753418pt;}
.ws6e{word-spacing:1.806551pt;}
.ws18d{word-spacing:1.817190pt;}
.ws7d{word-spacing:1.859685pt;}
.ws9e{word-spacing:1.912819pt;}
.ws156{word-spacing:1.912832pt;}
.ws140{word-spacing:1.953842pt;}
.ws13f{word-spacing:1.954043pt;}
.wse9{word-spacing:1.955904pt;}
.ws19b{word-spacing:1.960653pt;}
.wsa0{word-spacing:1.965953pt;}
.ws13e{word-spacing:1.968008pt;}
.wse2{word-spacing:1.971936pt;}
.wse3{word-spacing:1.998656pt;}
.wscb{word-spacing:2.009344pt;}
.ws4a{word-spacing:2.019087pt;}
.wse8{word-spacing:2.020032pt;}
.ws68{word-spacing:2.072221pt;}
.ws185{word-spacing:2.104115pt;}
.wscc{word-spacing:2.105536pt;}
.ws93{word-spacing:2.125355pt;}
.ws174{word-spacing:2.151936pt;}
.ws9c{word-spacing:2.178489pt;}
.ws157{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231616pt;}
.ws66{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws170{word-spacing:2.247578pt;}
.wsaf{word-spacing:2.284756pt;}
.wsde{word-spacing:2.297920pt;}
.wsb2{word-spacing:2.337890pt;}
.wsb4{word-spacing:2.391024pt;}
.ws125{word-spacing:2.396884pt;}
.ws72{word-spacing:2.444158pt;}
.ws19f{word-spacing:2.486682pt;}
.wsae{word-spacing:2.497292pt;}
.wsad{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.ws69{word-spacing:2.603559pt;}
.wsdf{word-spacing:2.655968pt;}
.ws3c{word-spacing:2.656693pt;}
.ws17a{word-spacing:2.677965pt;}
.ws41{word-spacing:2.709827pt;}
.ws107{word-spacing:2.762961pt;}
.ws189{word-spacing:2.773606pt;}
.ws135{word-spacing:2.816095pt;}
.ws173{word-spacing:2.821427pt;}
.wsff{word-spacing:2.821632pt;}
.ws176{word-spacing:2.860279pt;}
.ws1a1{word-spacing:2.860553pt;}
.ws1f{word-spacing:2.861926pt;}
.ws177{word-spacing:2.861943pt;}
.ws192{word-spacing:2.862319pt;}
.ws1a3{word-spacing:2.863164pt;}
.ws17d{word-spacing:2.863300pt;}
.ws154{word-spacing:2.865391pt;}
.ws142{word-spacing:2.866509pt;}
.ws36{word-spacing:2.869229pt;}
.ws155{word-spacing:2.869248pt;}
.ws158{word-spacing:2.917069pt;}
.wsb0{word-spacing:2.922363pt;}
.wsfe{word-spacing:2.960576pt;}
.ws187{word-spacing:2.964890pt;}
.ws144{word-spacing:2.966891pt;}
.ws57{word-spacing:2.975497pt;}
.ws180{word-spacing:3.012710pt;}
.ws97{word-spacing:3.028630pt;}
.ws16a{word-spacing:3.060531pt;}
.ws33{word-spacing:3.081764pt;}
.ws1a6{word-spacing:3.108352pt;}
.ws100{word-spacing:3.115552pt;}
.ws37{word-spacing:3.134898pt;}
.ws178{word-spacing:3.156173pt;}
.ws20{word-spacing:3.188032pt;}
.ws186{word-spacing:3.203994pt;}
.ws98{word-spacing:3.241166pt;}
.ws197{word-spacing:3.251814pt;}
.ws99{word-spacing:3.294300pt;}
.ws1b{word-spacing:3.299635pt;}
.ws1a{word-spacing:3.347456pt;}
.ws11f{word-spacing:3.358069pt;}
.ws169{word-spacing:3.395277pt;}
.ws4b{word-spacing:3.400567pt;}
.ws16d{word-spacing:3.443098pt;}
.ws3f{word-spacing:3.453701pt;}
.ws63{word-spacing:3.506835pt;}
.wsa9{word-spacing:3.613103pt;}
.ws76{word-spacing:3.666237pt;}
.ws8c{word-spacing:3.719371pt;}
.ws17b{word-spacing:3.730022pt;}
.ws12d{word-spacing:3.772505pt;}
.ws16e{word-spacing:3.777843pt;}
.ws58{word-spacing:3.820463pt;}
.ws59{word-spacing:3.820710pt;}
.ws5a{word-spacing:3.825638pt;}
.ws131{word-spacing:3.867568pt;}
.wsd{word-spacing:3.873485pt;}
.ws73{word-spacing:3.878772pt;}
.ws9d{word-spacing:3.985040pt;}
.ws6a{word-spacing:4.038174pt;}
.ws77{word-spacing:4.091308pt;}
.ws2c{word-spacing:4.144442pt;}
.ws4c{word-spacing:4.197575pt;}
.ws199{word-spacing:4.208230pt;}
.wsa6{word-spacing:4.250709pt;}
.ws82{word-spacing:4.356977pt;}
.wsac{word-spacing:4.410111pt;}
.wse{word-spacing:4.447334pt;}
.ws10b{word-spacing:4.463245pt;}
.ws10a{word-spacing:4.516379pt;}
.ws6d{word-spacing:4.569513pt;}
.ws61{word-spacing:4.622646pt;}
.wsa1{word-spacing:4.675780pt;}
.ws60{word-spacing:4.728914pt;}
.ws1a0{word-spacing:4.829901pt;}
.ws7{word-spacing:4.872362pt;}
.wsd4{word-spacing:4.879072pt;}
.ws6c{word-spacing:4.888316pt;}
.wsef{word-spacing:4.900448pt;}
.ws18c{word-spacing:4.925542pt;}
.ws136{word-spacing:4.941450pt;}
.ws7e{word-spacing:4.994583pt;}
.ws167{word-spacing:5.021184pt;}
.ws81{word-spacing:5.047717pt;}
.ws14b{word-spacing:5.100851pt;}
.ws79{word-spacing:5.153985pt;}
.wsee{word-spacing:5.205056pt;}
.ws25{word-spacing:5.207119pt;}
.wsd5{word-spacing:5.231776pt;}
.ws109{word-spacing:5.260253pt;}
.ws49{word-spacing:5.313387pt;}
.ws48{word-spacing:5.366521pt;}
.ws4f{word-spacing:5.419654pt;}
.ws24{word-spacing:5.472788pt;}
.ws195{word-spacing:5.499392pt;}
.ws172{word-spacing:5.547213pt;}
.ws101{word-spacing:5.579056pt;}
.ws39{word-spacing:5.632190pt;}
.ws84{word-spacing:5.738458pt;}
.ws11e{word-spacing:5.738472pt;}
.ws160{word-spacing:5.834138pt;}
.ws106{word-spacing:5.840220pt;}
.ws104{word-spacing:5.842065pt;}
.ws108{word-spacing:5.845553pt;}
.wsf9{word-spacing:5.851680pt;}
.ws4e{word-spacing:5.897859pt;}
.ws4d{word-spacing:5.950993pt;}
.ws132{word-spacing:6.004127pt;}
.ws23{word-spacing:6.110395pt;}
.wsf8{word-spacing:6.118880pt;}
.wsf7{word-spacing:6.161632pt;}
.ws9b{word-spacing:6.163529pt;}
.ws18b{word-spacing:6.216704pt;}
.ws35{word-spacing:6.376064pt;}
.ws7c{word-spacing:6.429198pt;}
.ws14e{word-spacing:6.641733pt;}
.ws148{word-spacing:6.694867pt;}
.ws18e{word-spacing:6.742733pt;}
.ws14a{word-spacing:6.854269pt;}
.ws14c{word-spacing:6.907403pt;}
.ws139{word-spacing:6.960537pt;}
.ws114{word-spacing:7.013670pt;}
.ws15f{word-spacing:7.364403pt;}
.ws182{word-spacing:7.460045pt;}
.ws38{word-spacing:7.545009pt;}
.wsb5{word-spacing:7.704411pt;}
.ws80{word-spacing:7.863812pt;}
.ws7f{word-spacing:7.916946pt;}
.wsa7{word-spacing:8.182615pt;}
.ws137{word-spacing:8.342017pt;}
.wsa8{word-spacing:8.554553pt;}
.ws5{word-spacing:8.740496pt;}
.ws12a{word-spacing:8.758455pt;}
.ws12b{word-spacing:8.767088pt;}
.ws171{word-spacing:8.846848pt;}
.ws22{word-spacing:8.926490pt;}
.ws7b{word-spacing:9.776631pt;}
.wsc1{word-spacing:10.325056pt;}
.ws6{word-spacing:10.525789pt;}
.wsc{word-spacing:10.827223pt;}
.wse4{word-spacing:11.601824pt;}
.ws168{word-spacing:13.102899pt;}
.ws3{word-spacing:13.761632pt;}
.ws8{word-spacing:14.282342pt;}
.wse5{word-spacing:14.482240pt;}
.ws78{word-spacing:15.833892pt;}
.ws4{word-spacing:19.857270pt;}
.ws10f{word-spacing:250.198426pt;}
.ws10e{word-spacing:270.522266pt;}
.ws123{word-spacing:271.705398pt;}
.ws10c{word-spacing:291.783792pt;}
.ws121{word-spacing:302.186323pt;}
.ws117{word-spacing:315.471657pt;}
._3d{margin-left:-17.358950pt;}
._15{margin-left:-12.613943pt;}
._3a{margin-left:-9.715831pt;}
._39{margin-left:-6.935159pt;}
._a{margin-left:-6.025421pt;}
._7{margin-left:-4.718299pt;}
._0{margin-left:-3.421811pt;}
._18{margin-left:-2.263530pt;}
._2{margin-left:-1.338970pt;}
._1f{width:1.115072pt;}
._3c{width:2.084514pt;}
._21{width:3.241434pt;}
._1b{width:4.261332pt;}
._1{width:9.298400pt;}
._3{width:11.532780pt;}
._12{width:12.723962pt;}
._c{width:13.628902pt;}
._b{width:15.103380pt;}
._10{width:16.790302pt;}
._8{width:17.837158pt;}
._9{width:18.745741pt;}
._f{width:19.818932pt;}
._11{width:21.508601pt;}
._4{width:22.502128pt;}
._d{width:24.340787pt;}
._19{width:25.929327pt;}
._3b{width:26.881184pt;}
._5{width:27.783619pt;}
._17{width:29.436162pt;}
._1a{width:30.615730pt;}
._16{width:32.475415pt;}
._32{width:34.218210pt;}
._e{width:35.227754pt;}
._1c{width:36.300363pt;}
._1d{width:40.647408pt;}
._1e{width:42.719629pt;}
._6{width:61.663342pt;}
._33{width:75.796621pt;}
._2b{width:154.126438pt;}
._37{width:156.744450pt;}
._34{width:170.029783pt;}
._2c{width:202.473267pt;}
._38{width:203.865216pt;}
._35{width:217.150549pt;}
._36{width:218.846125pt;}
._24{width:260.987491pt;}
._30{width:281.616691pt;}
._2a{width:282.620928pt;}
._2e{width:290.272256pt;}
._31{width:291.706880pt;}
._28{width:305.917360pt;}
._2d{width:307.726848pt;}
._25{width:319.902154pt;}
._26{width:328.456682pt;}
._29{width:329.572490pt;}
._2f{width:358.225613pt;}
._27{width:381.308787pt;}
._23{width:386.515891pt;}
._13{width:783.365189pt;}
._20{width:1850.415168pt;}
._22{width:2234.055937pt;}
._14{width:2255.309270pt;}
.fs10{font-size:31.880533pt;}
.fsf{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:40.381867pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:95.641600pt;}
.y11c{bottom:-677.462267pt;}
.y13f{bottom:-603.301771pt;}
.y13e{bottom:-586.182267pt;}
.y13d{bottom:-586.169379pt;}
.y13c{bottom:-569.130035pt;}
.y13b{bottom:-552.010531pt;}
.y13a{bottom:-534.971187pt;}
.y139{bottom:-517.851683pt;}
.y138{bottom:-500.732179pt;}
.y137{bottom:-483.692835pt;}
.y136{bottom:-466.573331pt;}
.y135{bottom:-449.533987pt;}
.y134{bottom:-432.414483pt;}
.y133{bottom:-415.294979pt;}
.y132{bottom:-394.254315pt;}
.y131{bottom:-361.134875pt;}
.y130{bottom:-344.015371pt;}
.y12f{bottom:-326.976027pt;}
.y12e{bottom:-309.856523pt;}
.y12d{bottom:-292.817179pt;}
.y12c{bottom:-275.697675pt;}
.y12b{bottom:-258.578171pt;}
.y12a{bottom:-241.537491pt;}
.y129{bottom:-224.417987pt;}
.y128{bottom:-207.378643pt;}
.y127{bottom:-190.259139pt;}
.y126{bottom:-173.139635pt;}
.y125{bottom:-156.098955pt;}
.y124{bottom:-138.979451pt;}
.y123{bottom:-121.940107pt;}
.y122{bottom:-104.820603pt;}
.y121{bottom:-87.701099pt;}
.y120{bottom:-70.661755pt;}
.y11f{bottom:-49.542267pt;}
.y11e{bottom:-16.822267pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:3.177733pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.ye4{bottom:92.108000pt;}
.y39{bottom:93.018667pt;}
.y1eb{bottom:93.308000pt;}
.y106{bottom:93.821333pt;}
.y118{bottom:96.744000pt;}
.y65{bottom:102.680000pt;}
.y16b{bottom:103.093333pt;}
.y2cd{bottom:103.518667pt;}
.y252{bottom:105.430667pt;}
.y24b{bottom:105.510667pt;}
.yb9{bottom:105.909333pt;}
.y9d{bottom:106.308000pt;}
.y22e{bottom:106.418667pt;}
.y299{bottom:107.304000pt;}
.yb6{bottom:107.504000pt;}
.ye3{bottom:108.844000pt;}
.y38{bottom:108.920000pt;}
.y1ea{bottom:110.045333pt;}
.y105{bottom:110.558667pt;}
.y117{bottom:113.481333pt;}
.y282{bottom:115.056000pt;}
.y2cc{bottom:118.861333pt;}
.y64{bottom:119.417333pt;}
.y16a{bottom:119.830667pt;}
.y242{bottom:120.220000pt;}
.y24a{bottom:122.248000pt;}
.yb8{bottom:122.646667pt;}
.y9c{bottom:123.045333pt;}
.y23{bottom:123.790666pt;}
.yb5{bottom:124.241333pt;}
.y37{bottom:124.820000pt;}
.ye2{bottom:125.581333pt;}
.y1e9{bottom:126.782667pt;}
.y104{bottom:127.296000pt;}
.y251{bottom:129.022667pt;}
.y147{bottom:129.566667pt;}
.y116{bottom:130.218667pt;}
.y281{bottom:131.793333pt;}
.y2cb{bottom:134.202667pt;}
.y63{bottom:136.154667pt;}
.y169{bottom:136.568000pt;}
.y298{bottom:137.989333pt;}
.y249{bottom:138.985333pt;}
.y241{bottom:139.384000pt;}
.y9b{bottom:139.782667pt;}
.y36{bottom:140.720000pt;}
.yb4{bottom:140.977333pt;}
.y1e8{bottom:141.093333pt;}
.ye1{bottom:142.318667pt;}
.y22d{bottom:142.650667pt;}
.yb7{bottom:143.369333pt;}
.y1e7{bottom:143.520000pt;}
.y103{bottom:144.033333pt;}
.y250{bottom:144.644000pt;}
.y115{bottom:146.956000pt;}
.y280{bottom:148.530667pt;}
.y2ca{bottom:149.545333pt;}
.y62{bottom:152.892000pt;}
.y168{bottom:153.305333pt;}
.y297{bottom:153.332000pt;}
.y22c{bottom:155.269333pt;}
.y248{bottom:155.722667pt;}
.y240{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.yb3{bottom:157.714667pt;}
.ye0{bottom:159.056000pt;}
.y22b{bottom:159.126667pt;}
.y146{bottom:159.454667pt;}
.y1e6{bottom:160.257333pt;}
.y24f{bottom:160.265333pt;}
.y102{bottom:160.770667pt;}
.y114{bottom:163.693333pt;}
.y2c9{bottom:164.888000pt;}
.y27f{bottom:165.266667pt;}
.y1a7{bottom:167.432000pt;}
.y22a{bottom:167.889333pt;}
.y296{bottom:168.674667pt;}
.y61{bottom:169.629333pt;}
.y167{bottom:170.042667pt;}
.y247{bottom:172.460000pt;}
.y34{bottom:172.521333pt;}
.y23f{bottom:172.858667pt;}
.y99{bottom:173.257333pt;}
.yb2{bottom:174.452000pt;}
.y1a{bottom:175.052000pt;}
.ydf{bottom:175.793333pt;}
.y24e{bottom:175.886667pt;}
.y145{bottom:176.192000pt;}
.y1e5{bottom:176.994667pt;}
.y101{bottom:177.508000pt;}
.y1a6{bottom:178.058667pt;}
.y2c8{bottom:180.230667pt;}
.y113{bottom:180.430667pt;}
.y229{bottom:180.508000pt;}
.y27e{bottom:182.004000pt;}
.y1a3{bottom:183.786667pt;}
.y295{bottom:184.017333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y60{bottom:186.366667pt;}
.y166{bottom:186.780000pt;}
.y33{bottom:188.421333pt;}
.y1a5{bottom:188.686667pt;}
.y23e{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.yb1{bottom:191.189333pt;}
.y24d{bottom:191.509333pt;}
.yde{bottom:192.530667pt;}
.y144{bottom:192.929333pt;}
.y246{bottom:193.182667pt;}
.y1e4{bottom:193.732000pt;}
.y100{bottom:194.245333pt;}
.y2c7{bottom:195.573333pt;}
.y112{bottom:197.168000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1a4{bottom:199.313333pt;}
.y228{bottom:199.317333pt;}
.y294{bottom:199.358667pt;}
.y5f{bottom:203.104000pt;}
.y165{bottom:203.517333pt;}
.y32{bottom:204.322667pt;}
.y226{bottom:205.349333pt;}
.y23d{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.y27d{bottom:206.890667pt;}
.yb0{bottom:207.926667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ydd{bottom:209.268000pt;}
.y143{bottom:209.666667pt;}
.y1e3{bottom:210.469333pt;}
.y2c6{bottom:210.916000pt;}
.yff{bottom:210.982667pt;}
.y225{bottom:211.937333pt;}
.y111{bottom:213.905333pt;}
.y293{bottom:214.701333pt;}
.y1a2{bottom:216.341333pt;}
.y5e{bottom:219.841333pt;}
.y164{bottom:220.254667pt;}
.y23c{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.y227{bottom:224.556000pt;}
.yaf{bottom:224.664000pt;}
.ydc{bottom:226.005333pt;}
.y2c5{bottom:226.258667pt;}
.y142{bottom:226.404000pt;}
.y1a1{bottom:226.968000pt;}
.y1e2{bottom:227.206667pt;}
.yfe{bottom:227.720000pt;}
.y292{bottom:230.044000pt;}
.y27c{bottom:230.270667pt;}
.y110{bottom:230.642667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y19e{bottom:232.553333pt;}
.y198{bottom:233.106667pt;}
.y5d{bottom:236.578667pt;}
.y163{bottom:236.992000pt;}
.y1a0{bottom:237.596000pt;}
.y23b{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.yae{bottom:241.401333pt;}
.y2c4{bottom:241.601333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.ydb{bottom:242.742667pt;}
.y141{bottom:243.141333pt;}
.y224{bottom:243.577333pt;}
.y197{bottom:243.733333pt;}
.y21c{bottom:243.740000pt;}
.y1e1{bottom:243.944000pt;}
.yfd{bottom:244.457333pt;}
.y291{bottom:245.386667pt;}
.y27b{bottom:247.008000pt;}
.y10f{bottom:247.378667pt;}
.y19f{bottom:248.222667pt;}
.y222{bottom:249.609333pt;}
.y5c{bottom:253.316000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y162{bottom:253.729333pt;}
.y221{bottom:256.197333pt;}
.y21b{bottom:256.360000pt;}
.y23a{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.yad{bottom:258.138667pt;}
.yda{bottom:259.480000pt;}
.y244{bottom:260.529333pt;}
.y1e0{bottom:260.681333pt;}
.y290{bottom:260.729333pt;}
.yfc{bottom:261.194667pt;}
.y27a{bottom:263.745333pt;}
.y10e{bottom:264.116000pt;}
.y31{bottom:264.148000pt;}
.y19d{bottom:265.250667pt;}
.y223{bottom:268.816000pt;}
.y5b{bottom:270.053333pt;}
.y140{bottom:270.336000pt;}
.y2c3{bottom:272.285333pt;}
.y239{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.y161{bottom:274.452000pt;}
.yac{bottom:274.876000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y19c{bottom:275.877333pt;}
.y28f{bottom:276.072000pt;}
.yd9{bottom:276.217333pt;}
.y1df{bottom:277.418667pt;}
.yfb{bottom:277.932000pt;}
.y30{bottom:280.048000pt;}
.y199{bottom:280.252000pt;}
.y279{bottom:280.482667pt;}
.y10d{bottom:280.853333pt;}
.y19b{bottom:286.505333pt;}
.y5a{bottom:286.790667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2c2{bottom:287.628000pt;}
.y21e{bottom:287.837333pt;}
.y220{bottom:288.114667pt;}
.y238{bottom:290.020000pt;}
.y119{bottom:290.273333pt;}
.y92{bottom:290.417333pt;}
.y28e{bottom:291.414667pt;}
.yab{bottom:291.613333pt;}
.y1de{bottom:291.729333pt;}
.y1dd{bottom:294.156000pt;}
.y21d{bottom:294.425333pt;}
.yfa{bottom:294.669333pt;}
.y2f{bottom:295.948000pt;}
.y19a{bottom:297.132000pt;}
.y278{bottom:297.220000pt;}
.y10c{bottom:297.590667pt;}
.yd8{bottom:298.796000pt;}
.y21f{bottom:300.734667pt;}
.y2c1{bottom:302.970667pt;}
.y59{bottom:303.528000pt;}
.y160{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.yaa{bottom:308.350667pt;}
.y11{bottom:309.452000pt;}
.y1dc{bottom:310.893333pt;}
.yf9{bottom:311.406667pt;}
.y2e{bottom:311.849333pt;}
.y277{bottom:313.957333pt;}
.y196{bottom:314.160000pt;}
.y10b{bottom:318.313333pt;}
.y218{bottom:320.033333pt;}
.y58{bottom:320.265333pt;}
.y21a{bottom:320.310667pt;}
.y28d{bottom:322.098667pt;}
.y15f{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y195{bottom:324.788000pt;}
.ya9{bottom:325.088000pt;}
.y217{bottom:326.621333pt;}
.y1db{bottom:327.630667pt;}
.yf8{bottom:328.144000pt;}
.yd7{bottom:329.345333pt;}
.y192{bottom:330.514667pt;}
.y276{bottom:330.693333pt;}
.y11b{bottom:332.457853pt;}
.y219{bottom:332.930667pt;}
.y2c0{bottom:333.656000pt;}
.y194{bottom:335.414667pt;}
.y2d{bottom:335.720000pt;}
.y10a{bottom:336.246667pt;}
.y57{bottom:337.002667pt;}
.y28c{bottom:337.441333pt;}
.y15e{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y11a{bottom:341.017733pt;}
.ya8{bottom:341.825333pt;}
.y10{bottom:343.809333pt;}
.yd6{bottom:344.032000pt;}
.y1da{bottom:344.368000pt;}
.yf7{bottom:344.880000pt;}
.y193{bottom:346.041333pt;}
.yd5{bottom:346.082667pt;}
.y275{bottom:347.430667pt;}
.y210{bottom:348.422667pt;}
.y2bf{bottom:348.998667pt;}
.y2c{bottom:351.620000pt;}
.y216{bottom:352.229333pt;}
.y18c{bottom:352.516000pt;}
.y28b{bottom:352.784000pt;}
.y56{bottom:353.740000pt;}
.y15d{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.ya7{bottom:358.562667pt;}
.y1d9{bottom:358.678667pt;}
.y20f{bottom:361.041333pt;}
.y1d8{bottom:361.104000pt;}
.yf6{bottom:361.617333pt;}
.yf{bottom:362.706666pt;}
.y191{bottom:363.069333pt;}
.y18b{bottom:363.142667pt;}
.y274{bottom:364.168000pt;}
.y2be{bottom:364.341333pt;}
.y212{bottom:364.572000pt;}
.y215{bottom:364.849333pt;}
.y109{bottom:366.134667pt;}
.y2b{bottom:367.520000pt;}
.y28a{bottom:368.126667pt;}
.yd4{bottom:370.789333pt;}
.y211{bottom:371.158667pt;}
.y237{bottom:371.280000pt;}
.y190{bottom:373.697333pt;}
.y15c{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.y55{bottom:374.462667pt;}
.ya6{bottom:375.300000pt;}
.y214{bottom:377.468000pt;}
.y1d7{bottom:377.841333pt;}
.y18d{bottom:377.985333pt;}
.yf5{bottom:378.354667pt;}
.y2bd{bottom:379.684000pt;}
.y108{bottom:380.821333pt;}
.y273{bottom:380.905333pt;}
.y107{bottom:382.872000pt;}
.y2a{bottom:383.421333pt;}
.y289{bottom:383.469333pt;}
.y18f{bottom:384.324000pt;}
.yd3{bottom:387.526667pt;}
.y213{bottom:390.088000pt;}
.y15b{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.ya5{bottom:392.037333pt;}
.y1d6{bottom:394.578667pt;}
.y18e{bottom:394.950667pt;}
.y2bc{bottom:395.025333pt;}
.yf4{bottom:395.092000pt;}
.y272{bottom:397.642667pt;}
.y288{bottom:398.812000pt;}
.y29{bottom:399.321333pt;}
.yd2{bottom:404.264000pt;}
.y15a{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.ya4{bottom:408.774667pt;}
.y20e{bottom:409.109333pt;}
.y2bb{bottom:410.368000pt;}
.y1d5{bottom:411.316000pt;}
.yf3{bottom:411.829333pt;}
.y18a{bottom:411.978667pt;}
.y287{bottom:414.154667pt;}
.y271{bottom:414.380000pt;}
.y28{bottom:415.221333pt;}
.y20c{bottom:415.418667pt;}
.yd1{bottom:421.001333pt;}
.y20d{bottom:421.728000pt;}
.y159{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.ya3{bottom:425.512000pt;}
.y2ba{bottom:425.710667pt;}
.y1d4{bottom:428.053333pt;}
.yf2{bottom:428.566667pt;}
.y286{bottom:429.497333pt;}
.ye{bottom:430.990669pt;}
.y270{bottom:431.117333pt;}
.y27{bottom:431.122667pt;}
.yd0{bottom:437.738667pt;}
.y189{bottom:439.952000pt;}
.y158{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.y54{bottom:441.262667pt;}
.ya2{bottom:442.249333pt;}
.y1d3{bottom:444.790667pt;}
.y285{bottom:444.840000pt;}
.yf1{bottom:445.304000pt;}
.yd{bottom:446.990669pt;}
.y26{bottom:447.022667pt;}
.y26f{bottom:447.854667pt;}
.y20b{bottom:451.096000pt;}
.ycf{bottom:454.476000pt;}
.y2b9{bottom:456.396000pt;}
.y157{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.y1d2{bottom:459.101333pt;}
.y284{bottom:460.181333pt;}
.y1d1{bottom:461.528000pt;}
.yf0{bottom:462.041333pt;}
.y25{bottom:462.922667pt;}
.ya1{bottom:462.972000pt;}
.yc{bottom:462.990669pt;}
.y26e{bottom:464.592000pt;}
.yce{bottom:471.213333pt;}
.y2b8{bottom:471.738667pt;}
.y188{bottom:472.934667pt;}
.y156{bottom:474.129333pt;}
.y53{bottom:474.497333pt;}
.y87{bottom:474.528000pt;}
.y283{bottom:475.524000pt;}
.ya0{bottom:476.918667pt;}
.y1d0{bottom:478.265333pt;}
.yef{bottom:478.778667pt;}
.y24{bottom:478.824000pt;}
.yb{bottom:478.990666pt;}
.y26d{bottom:481.329333pt;}
.y2b7{bottom:487.081333pt;}
.y20a{bottom:487.562667pt;}
.ycd{bottom:487.950667pt;}
.y187{bottom:489.672000pt;}
.y155{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.y52{bottom:491.792000pt;}
.y1cf{bottom:492.576000pt;}
.y9f{bottom:494.852000pt;}
.ya{bottom:494.990666pt;}
.y1ce{bottom:495.002667pt;}
.yee{bottom:495.516000pt;}
.y26c{bottom:498.066667pt;}
.y209{bottom:500.181333pt;}
.y2b6{bottom:502.424000pt;}
.y208{bottom:504.038667pt;}
.ycc{bottom:504.688000pt;}
.y186{bottom:506.409333pt;}
.y154{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.y51{bottom:509.088000pt;}
.y1cd{bottom:511.740000pt;}
.yed{bottom:512.253333pt;}
.y207{bottom:512.801333pt;}
.y26b{bottom:514.804000pt;}
.y2b5{bottom:517.766667pt;}
.ycb{bottom:521.425333pt;}
.y185{bottom:523.145333pt;}
.y153{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y206{bottom:525.420000pt;}
.y50{bottom:526.382667pt;}
.y1cc{bottom:528.477333pt;}
.yec{bottom:528.990667pt;}
.y26a{bottom:531.541333pt;}
.y2b4{bottom:533.108000pt;}
.yca{bottom:538.162667pt;}
.y184{bottom:539.882667pt;}
.y152{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.y4f{bottom:543.678667pt;}
.y205{bottom:544.229333pt;}
.y1cb{bottom:545.214667pt;}
.yeb{bottom:545.728000pt;}
.y269{bottom:548.278667pt;}
.y2b3{bottom:548.450667pt;}
.yc9{bottom:554.900000pt;}
.y183{bottom:556.620000pt;}
.y203{bottom:556.848000pt;}
.y151{bottom:557.816000pt;}
.y82{bottom:558.214667pt;}
.y4e{bottom:558.368000pt;}
.y4d{bottom:560.973333pt;}
.y245{bottom:561.801333pt;}
.y1ca{bottom:561.952000pt;}
.yea{bottom:562.465333pt;}
.y2b2{bottom:563.793333pt;}
.y268{bottom:565.016000pt;}
.y204{bottom:569.468000pt;}
.yc8{bottom:571.637333pt;}
.y182{bottom:573.357333pt;}
.y9{bottom:573.786667pt;}
.y150{bottom:574.553333pt;}
.y81{bottom:574.952000pt;}
.y1c9{bottom:576.262667pt;}
.y4c{bottom:578.268000pt;}
.y1c8{bottom:578.689333pt;}
.y2b1{bottom:579.136000pt;}
.y267{bottom:581.753333pt;}
.ye9{bottom:585.844000pt;}
.yc7{bottom:588.374667pt;}
.y202{bottom:588.489333pt;}
.y181{bottom:590.094667pt;}
.y14f{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y2b0{bottom:594.478667pt;}
.y4b{bottom:595.564000pt;}
.y1fa{bottom:597.009333pt;}
.y266{bottom:598.490667pt;}
.y1c7{bottom:599.412000pt;}
.y201{bottom:601.108000pt;}
.y1ff{bottom:601.109333pt;}
.ye8{bottom:602.581333pt;}
.yc6{bottom:605.112000pt;}
.y180{bottom:606.832000pt;}
.y14e{bottom:608.028000pt;}
.y7f{bottom:608.426667pt;}
.y1f9{bottom:609.628000pt;}
.y2af{bottom:609.821333pt;}
.y4a{bottom:612.858667pt;}
.y200{bottom:613.728000pt;}
.y265{bottom:615.228000pt;}
.yc5{bottom:621.849333pt;}
.y17f{bottom:623.569333pt;}
.y14d{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.y24c{bottom:628.750667pt;}
.y49{bottom:630.153333pt;}
.y264{bottom:631.965333pt;}
.y1fe{bottom:632.749333pt;}
.ye7{bottom:633.930667pt;}
.y1c6{bottom:639.689333pt;}
.y17e{bottom:640.306667pt;}
.y2ae{bottom:640.506667pt;}
.y14c{bottom:641.502667pt;}
.y7d{bottom:641.901333pt;}
.yc4{bottom:644.428000pt;}
.y1fc{bottom:645.094667pt;}
.y1fb{bottom:645.369333pt;}
.y7{bottom:645.598667pt;}
.y48{bottom:647.449333pt;}
.ye6{bottom:648.617333pt;}
.y263{bottom:648.702667pt;}
.ye5{bottom:650.668000pt;}
.y1c5{bottom:654.301333pt;}
.y2ad{bottom:655.848000pt;}
.y17d{bottom:657.044000pt;}
.y1fd{bottom:657.988000pt;}
.y14b{bottom:658.240000pt;}
.y7c{bottom:658.638667pt;}
.y1c2{bottom:662.138667pt;}
.y47{bottom:664.744000pt;}
.y262{bottom:665.440000pt;}
.yc3{bottom:667.006667pt;}
.y1c4{bottom:668.913333pt;}
.y3{bottom:668.977329pt;}
.y2ac{bottom:671.190667pt;}
.y236{bottom:672.550667pt;}
.y17c{bottom:673.781333pt;}
.y14a{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.y1f8{bottom:677.009333pt;}
.y46{bottom:682.040000pt;}
.y261{bottom:682.177333pt;}
.y1f7{bottom:683.045333pt;}
.y1f6{bottom:683.318667pt;}
.y1c3{bottom:683.525333pt;}
.yc2{bottom:683.744000pt;}
.y2ab{bottom:686.533333pt;}
.y243{bottom:689.686667pt;}
.y17b{bottom:690.518667pt;}
.y149{bottom:691.714667pt;}
.y7a{bottom:692.113333pt;}
.y1f2{bottom:698.533333pt;}
.y260{bottom:698.914667pt;}
.y45{bottom:699.334667pt;}
.yc1{bottom:700.481333pt;}
.y2aa{bottom:701.876000pt;}
.y1c1{bottom:704.538667pt;}
.y17a{bottom:707.256000pt;}
.y235{bottom:708.452000pt;}
.y1f5{bottom:708.650667pt;}
.y79{bottom:708.850667pt;}
.y1f1{bottom:711.153333pt;}
.y148{bottom:712.436000pt;}
.y44{bottom:716.629333pt;}
.yc0{bottom:717.218667pt;}
.y1c0{bottom:719.150667pt;}
.y1f3{bottom:721.269333pt;}
.y25f{bottom:722.293333pt;}
.y179{bottom:723.993333pt;}
.y234{bottom:725.189333pt;}
.y1b7{bottom:725.402667pt;}
.y78{bottom:725.588000pt;}
.y1bd{bottom:726.806667pt;}
.y2a9{bottom:732.561333pt;}
.y1bf{bottom:733.762667pt;}
.y1f4{bottom:733.889333pt;}
.y43{bottom:733.925333pt;}
.ybf{bottom:733.956000pt;}
.y1b6{bottom:740.014667pt;}
.y178{bottom:740.730667pt;}
.y233{bottom:741.926667pt;}
.y77{bottom:742.324000pt;}
.y25e{bottom:745.672000pt;}
.y2a8{bottom:747.904000pt;}
.y1be{bottom:748.374667pt;}
.ybe{bottom:750.693333pt;}
.y42{bottom:751.220000pt;}
.y1f0{bottom:752.910667pt;}
.y177{bottom:757.468000pt;}
.y232{bottom:758.664000pt;}
.y76{bottom:759.061333pt;}
.y1ee{bottom:759.220000pt;}
.y2a7{bottom:763.246667pt;}
.y1ef{bottom:765.529333pt;}
.y25d{bottom:766.394667pt;}
.y41{bottom:768.516000pt;}
.y1bc{bottom:769.388000pt;}
.ybd{bottom:771.416000pt;}
.y9e{bottom:773.368000pt;}
.y176{bottom:774.205333pt;}
.y231{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.y2a6{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y25c{bottom:783.132000pt;}
.y1bb{bottom:784.000000pt;}
.y1b8{bottom:790.098667pt;}
.y175{bottom:790.942667pt;}
.y230{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.y2a5{bottom:793.930667pt;}
.y1ed{bottom:794.897333pt;}
.y1ba{bottom:798.612000pt;}
.ybc{bottom:801.304000pt;}
.y40{bottom:802.813333pt;}
.y25b{bottom:803.854667pt;}
.y174{bottom:807.680000pt;}
.y73{bottom:809.273333pt;}
.y22f{bottom:812.860000pt;}
.y1b9{bottom:813.224000pt;}
.ybb{bottom:815.990667pt;}
.y3f{bottom:817.160000pt;}
.yba{bottom:818.041333pt;}
.y2d0{bottom:820.565333pt;}
.y173{bottom:824.417333pt;}
.y2a4{bottom:824.616000pt;}
.y72{bottom:826.010667pt;}
.y1b5{bottom:834.238667pt;}
.y2cf{bottom:835.906667pt;}
.y25a{bottom:836.532000pt;}
.y2a3{bottom:839.958667pt;}
.y1ec{bottom:840.321333pt;}
.y172{bottom:841.154667pt;}
.y71{bottom:842.748000pt;}
.y1b4{bottom:848.850667pt;}
.y2ce{bottom:851.249333pt;}
.y2a2{bottom:855.301333pt;}
.y1b1{bottom:856.688000pt;}
.y171{bottom:857.892000pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y259{bottom:860.124000pt;}
.y3e{bottom:860.729333pt;}
.y1b3{bottom:863.461333pt;}
.y2a1{bottom:870.644000pt;}
.y170{bottom:874.629333pt;}
.y258{bottom:875.745333pt;}
.y6f{bottom:876.222667pt;}
.y1b2{bottom:878.073333pt;}
.y1ab{bottom:884.758667pt;}
.y2a0{bottom:885.986667pt;}
.y16f{bottom:891.366667pt;}
.y6e{bottom:892.960000pt;}
.y3d{bottom:896.213333pt;}
.y1b0{bottom:899.088000pt;}
.y257{bottom:899.336000pt;}
.y1aa{bottom:899.370667pt;}
.y29f{bottom:901.329333pt;}
.y16e{bottom:908.104000pt;}
.y6d{bottom:909.697333pt;}
.y1af{bottom:913.700000pt;}
.y256{bottom:914.957333pt;}
.y29e{bottom:916.670667pt;}
.y1ac{bottom:919.688000pt;}
.y3c{bottom:921.320000pt;}
.y6c{bottom:926.434667pt;}
.y1ae{bottom:928.312000pt;}
.y16d{bottom:928.825333pt;}
.y29d{bottom:932.013333pt;}
.y255{bottom:938.549333pt;}
.y1ad{bottom:942.924000pt;}
.y6b{bottom:943.172000pt;}
.y3b{bottom:946.425333pt;}
.y16c{bottom:946.758667pt;}
.y29c{bottom:947.356000pt;}
.y254{bottom:954.170667pt;}
.y6a{bottom:959.909333pt;}
.y29b{bottom:962.698667pt;}
.y1a9{bottom:963.937333pt;}
.y3a{bottom:971.530667pt;}
.y69{bottom:976.646667pt;}
.y253{bottom:977.762667pt;}
.y29a{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y1a8{bottom:994.700000pt;}
.y67{bottom:1046.810667pt;}
.h1f{height:25.026051pt;}
.h1e{height:25.344794pt;}
.h12{height:27.262909pt;}
.h28{height:27.672303pt;}
.h7{height:28.560000pt;}
.h1d{height:28.578125pt;}
.h14{height:29.599908pt;}
.ha{height:32.284045pt;}
.h9{height:33.288272pt;}
.h20{height:35.051460pt;}
.h16{height:35.212691pt;}
.h15{height:36.141771pt;}
.he{height:36.896250pt;}
.h19{height:38.008906pt;}
.hf{height:38.043944pt;}
.h1c{height:38.462187pt;}
.h18{height:38.860937pt;}
.hb{height:38.947124pt;}
.h6{height:40.800000pt;}
.h11{height:41.508454pt;}
.h26{height:41.986970pt;}
.h23{height:41.992303pt;}
.h10{height:42.799616pt;}
.h3{height:42.840000pt;}
.h27{height:43.101636pt;}
.h25{height:43.106970pt;}
.h1b{height:43.828125pt;}
.h13{height:46.120196pt;}
.hd{height:47.554811pt;}
.h1a{height:47.725469pt;}
.h2{height:48.960000pt;}
.h22{height:54.336794pt;}
.h21{height:54.342127pt;}
.h5{height:57.120000pt;}
.h24{height:63.232250pt;}
.h29{height:67.229636pt;}
.hc{height:85.599232pt;}
.h4{height:105.826671pt;}
.h17{height:299.781333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:502.253333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x16{left:-170.618667pt;}
.x0{left:0.000000pt;}
.x18{left:3.221333pt;}
.x19{left:31.541239pt;}
.x5{left:47.621333pt;}
.x3c{left:55.622667pt;}
.x62{left:73.109333pt;}
.x30{left:74.990667pt;}
.x35{left:76.752000pt;}
.x60{left:85.393333pt;}
.x1{left:90.706667pt;}
.x2a{left:92.182667pt;}
.x2{left:94.486667pt;}
.x36{left:96.668000pt;}
.x3d{left:100.589333pt;}
.x29{left:102.932000pt;}
.x2b{left:107.673333pt;}
.x31{left:110.724000pt;}
.x4{left:180.874667pt;}
.x22{left:220.012000pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x1e{left:225.932000pt;}
.xf{left:233.144000pt;}
.x10{left:238.856000pt;}
.x6b{left:249.168000pt;}
.xa{left:250.204000pt;}
.x11{left:252.608000pt;}
.x5a{left:253.890667pt;}
.x4e{left:260.945333pt;}
.x6a{left:262.926667pt;}
.x47{left:266.437333pt;}
.x3f{left:267.830667pt;}
.x4f{left:269.969333pt;}
.x48{left:272.612000pt;}
.x66{left:279.888000pt;}
.x33{left:282.474667pt;}
.x3e{left:285.822667pt;}
.x74{left:287.680000pt;}
.x49{left:288.582667pt;}
.x63{left:290.162667pt;}
.x34{left:293.192000pt;}
.x32{left:296.469333pt;}
.x75{left:299.014667pt;}
.x3b{left:300.688000pt;}
.x2f{left:308.032000pt;}
.x37{left:311.950667pt;}
.x1f{left:316.178667pt;}
.x4c{left:323.990667pt;}
.x40{left:330.465333pt;}
.x4d{left:332.932000pt;}
.x41{left:339.516000pt;}
.x72{left:341.648000pt;}
.x73{left:343.318667pt;}
.x42{left:372.886667pt;}
.x5b{left:384.441333pt;}
.x43{left:389.210667pt;}
.x5c{left:391.074667pt;}
.x6e{left:392.036000pt;}
.x5f{left:396.173333pt;}
.x3{left:404.408000pt;}
.x1a{left:406.341333pt;}
.x6c{left:426.825333pt;}
.x1b{left:428.901333pt;}
.x5d{left:435.653333pt;}
.x27{left:441.570667pt;}
.x28{left:451.364000pt;}
.x3a{left:452.930667pt;}
.x38{left:460.176000pt;}
.x2e{left:461.717333pt;}
.x6f{left:463.208000pt;}
.x2c{left:467.352000pt;}
.x39{left:476.948000pt;}
.x2d{left:480.398667pt;}
.x1c{left:482.981333pt;}
.x5e{left:493.377333pt;}
.x17{left:505.221200pt;}
.x1d{left:516.261333pt;}
.x67{left:521.950667pt;}
.x12{left:522.845333pt;}
.x50{left:528.524000pt;}
.xb{left:532.990667pt;}
.x13{left:537.090667pt;}
.x51{left:545.682667pt;}
.x14{left:551.432000pt;}
.xc{left:563.610667pt;}
.x15{left:565.677333pt;}
.x23{left:575.237333pt;}
.x64{left:579.212000pt;}
.x24{left:581.698667pt;}
.x70{left:582.670667pt;}
.x58{left:584.412000pt;}
.x55{left:587.832000pt;}
.x69{left:592.994667pt;}
.x56{left:596.877333pt;}
.x59{left:602.740000pt;}
.x4a{left:604.704000pt;}
.x61{left:605.714667pt;}
.xd{left:614.793333pt;}
.x4b{left:620.674667pt;}
.x68{left:624.582667pt;}
.x71{left:628.397333pt;}
.x65{left:642.568000pt;}
.x25{left:644.085333pt;}
.x26{left:653.870667pt;}
.xe{left:657.750667pt;}
.x8{left:661.773333pt;}
.x44{left:663.832000pt;}
.x20{left:665.066667pt;}
.x6d{left:672.853333pt;}
.x9{left:683.370667pt;}
.x52{left:687.745333pt;}
.x53{left:694.882667pt;}
.x45{left:703.725333pt;}
.x57{left:705.738667pt;}
.x21{left:707.614667pt;}
.x46{left:712.738667pt;}
.x54{left:739.461333pt;}
}




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