
    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_2b01941d18f840b177157f12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b7d3b8022505bfed3cbd9a5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f3c00bb4b2b3b591fb999180.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_34101975318c7337c54add87.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7a767e802e916f138cafee7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_efd974408e31603a372bab74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_630e36a2b73a9908c2660cf7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ca7829866a4850257d9f664c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_40fe806364d257e835a6110d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206543;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_e2afe3cceb17336e7c199665.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.211426;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_d661607d631d24dec1be7603.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.055176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_489690e7ded48eea373ad5fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3f49973728c556423ebba1b2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_262bca33b92a9ae10fc37b91.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_be019a084a86adc7b770d4bb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8629db2338d88b536fd396c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2ac845142fa3940a3978a0ca.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_dafff7edb5d5d95eb6a42f01.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ef68581bf805fa81c9f085d4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_186f6c8067b9de75f09cd79b.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m6{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);}
.m2{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);}
.m1{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);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m23{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);}
.m13{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);}
.ma{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);}
.md{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);}
.m18{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);}
.m19{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);}
.me{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);}
.m12{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);}
.m2b{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);}
.m24{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m28{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);}
.m16{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);}
.m1a{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);}
.m1c{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);}
.m1b{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);}
.mc{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);}
.m27{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);}
.mb{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);}
.m5{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);}
.m1e{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);}
.m9{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);}
.m26{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);}
.m29{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);}
.m4{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);}
.m20{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);}
.m1d{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);}
.m14{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);}
.m2a{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);}
.m10{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);}
.m22{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);}
.m25{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);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-7.596000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:28.392000px;}
.v3{vertical-align:40.322484px;}
.v5{vertical-align:50.832000px;}
.v7{vertical-align:56.784000px;}
.ls6a{letter-spacing:-0.343886px;}
.ls68{letter-spacing:-0.273546px;}
.ls2f{letter-spacing:-0.222444px;}
.ls2d{letter-spacing:-0.186372px;}
.ls2e{letter-spacing:-0.180360px;}
.ls6d{letter-spacing:-0.171943px;}
.ls28{letter-spacing:-0.144288px;}
.ls52{letter-spacing:-0.140681px;}
.ls34{letter-spacing:-0.126252px;}
.ls51{letter-spacing:-0.125050px;}
.ls4f{letter-spacing:-0.117234px;}
.ls2a{letter-spacing:-0.114228px;}
.ls4b{letter-spacing:-0.112039px;}
.ls4e{letter-spacing:-0.109418px;}
.ls2c{letter-spacing:-0.108216px;}
.ls38{letter-spacing:-0.096192px;}
.ls69{letter-spacing:-0.093787px;}
.ls21{letter-spacing:-0.090972px;}
.ls67{letter-spacing:-0.085972px;}
.ls6f{letter-spacing:-0.078156px;}
.ls27{letter-spacing:-0.066132px;}
.ls6e{letter-spacing:-0.054709px;}
.ls36{letter-spacing:-0.054108px;}
.ls50{letter-spacing:-0.046894px;}
.ls26{letter-spacing:-0.042084px;}
.ls24{letter-spacing:-0.037800px;}
.ls39{letter-spacing:-0.036072px;}
.ls53{letter-spacing:-0.028080px;}
.ls6b{letter-spacing:-0.023447px;}
.ls23{letter-spacing:-0.021600px;}
.ls4d{letter-spacing:-0.015631px;}
.ls22{letter-spacing:-0.014364px;}
.ls29{letter-spacing:-0.012024px;}
.ls70{letter-spacing:-0.007816px;}
.ls54{letter-spacing:-0.007020px;}
.ls4c{letter-spacing:-0.006224px;}
.lsb{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000607px;}
.ls82{letter-spacing:0.000656px;}
.ls9d{letter-spacing:0.000676px;}
.ls1e{letter-spacing:0.000706px;}
.ls91{letter-spacing:0.000800px;}
.ls85{letter-spacing:0.000983px;}
.ls1f{letter-spacing:0.000998px;}
.ls94{letter-spacing:0.001133px;}
.ls9b{letter-spacing:0.001155px;}
.ls89{letter-spacing:0.001283px;}
.ls7c{letter-spacing:0.001354px;}
.ls83{letter-spacing:0.001444px;}
.ls77{letter-spacing:0.001456px;}
.ls8a{letter-spacing:0.001656px;}
.lsf{letter-spacing:0.001883px;}
.ls64{letter-spacing:0.002422px;}
.ls61{letter-spacing:0.002693px;}
.ls8c{letter-spacing:0.002841px;}
.ls7a{letter-spacing:0.002850px;}
.ls63{letter-spacing:0.004044px;}
.ls88{letter-spacing:0.004072px;}
.ls8e{letter-spacing:0.004754px;}
.ls9c{letter-spacing:0.004800px;}
.ls18{letter-spacing:0.006012px;}
.ls43{letter-spacing:0.007020px;}
.ls41{letter-spacing:0.015631px;}
.ls14{letter-spacing:0.016200px;}
.ls46{letter-spacing:0.021060px;}
.ls45{letter-spacing:0.028080px;}
.ls19{letter-spacing:0.030060px;}
.ls3f{letter-spacing:0.031262px;}
.ls48{letter-spacing:0.035100px;}
.ls1c{letter-spacing:0.036072px;}
.ls16{letter-spacing:0.037800px;}
.ls1a{letter-spacing:0.042084px;}
.ls42{letter-spacing:0.042120px;}
.ls11{letter-spacing:0.043092px;}
.ls5b{letter-spacing:0.046894px;}
.ls1b{letter-spacing:0.048096px;}
.ls15{letter-spacing:0.048600px;}
.ls59{letter-spacing:0.054709px;}
.ls44{letter-spacing:0.056160px;}
.ls5a{letter-spacing:0.062525px;}
.ls57{letter-spacing:0.063180px;}
.ls17{letter-spacing:0.066132px;}
.ls3a{letter-spacing:0.068468px;}
.ls5f{letter-spacing:0.070340px;}
.ls3d{letter-spacing:0.078156px;}
.ls58{letter-spacing:0.084240px;}
.ls40{letter-spacing:0.085972px;}
.ls2b{letter-spacing:0.096192px;}
.ls3e{letter-spacing:0.101603px;}
.ls47{letter-spacing:0.105300px;}
.ls37{letter-spacing:0.114228px;}
.ls56{letter-spacing:0.119340px;}
.ls25{letter-spacing:0.120240px;}
.ls55{letter-spacing:0.126360px;}
.ls5c{letter-spacing:0.132865px;}
.ls30{letter-spacing:0.138276px;}
.ls6c{letter-spacing:0.148496px;}
.ls35{letter-spacing:0.150300px;}
.ls33{letter-spacing:0.156312px;}
.ls31{letter-spacing:0.168336px;}
.ls13{letter-spacing:0.172368px;}
.ls32{letter-spacing:0.180360px;}
.ls12{letter-spacing:0.181944px;}
.ls60{letter-spacing:0.187574px;}
.ls5e{letter-spacing:0.203206px;}
.ls3c{letter-spacing:0.236527px;}
.ls3b{letter-spacing:0.248976px;}
.ls5d{letter-spacing:0.250099px;}
.ls73{letter-spacing:0.572693px;}
.ls75{letter-spacing:0.578693px;}
.ls78{letter-spacing:1.219103px;}
.ls7b{letter-spacing:1.243573px;}
.lsc{letter-spacing:1.275394px;}
.ls62{letter-spacing:1.382752px;}
.ls65{letter-spacing:1.542297px;}
.ls10{letter-spacing:1.554824px;}
.ls84{letter-spacing:1.567458px;}
.ls20{letter-spacing:1.586420px;}
.ls4{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls8b{letter-spacing:3.559200px;}
.ls6{letter-spacing:10.461300px;}
.lsa{letter-spacing:11.954850px;}
.ls8{letter-spacing:12.144746px;}
.ls76{letter-spacing:12.524693px;}
.ls74{letter-spacing:12.530693px;}
.ls5{letter-spacing:12.969300px;}
.ls98{letter-spacing:13.385694px;}
.ls8d{letter-spacing:13.448400px;}
.ls72{letter-spacing:13.450800px;}
.ls8f{letter-spacing:13.454400px;}
.ls9a{letter-spacing:13.481053px;}
.ls4a{letter-spacing:13.506682px;}
.ls49{letter-spacing:13.511619px;}
.ls9e{letter-spacing:13.553427px;}
.ls93{letter-spacing:13.581012px;}
.ls97{letter-spacing:13.604945px;}
.ls99{letter-spacing:13.675020px;}
.ls86{letter-spacing:14.793431px;}
.lsd{letter-spacing:14.824349px;}
.ls7f{letter-spacing:14.870649px;}
.ls1{letter-spacing:14.944200px;}
.ls7e{letter-spacing:14.948100px;}
.ls66{letter-spacing:15.213117px;}
.ls81{letter-spacing:15.227241px;}
.ls1d{letter-spacing:15.242778px;}
.ls87{letter-spacing:15.663483px;}
.ls96{letter-spacing:16.592233px;}
.ls90{letter-spacing:16.676400px;}
.ls92{letter-spacing:16.960604px;}
.ls7d{letter-spacing:17.714924px;}
.ls9f{letter-spacing:19.603341px;}
.ls95{letter-spacing:19.638635px;}
.ls80{letter-spacing:19.994178px;}
.ls0{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.ls79{letter-spacing:198.328282px;}
.ls71{letter-spacing:1104.101996px;}
.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;}
}
.ws9f{word-spacing:-19.687496px;}
.ws9e{word-spacing:-19.539000px;}
.ws82{word-spacing:-17.550000px;}
.ws81{word-spacing:-15.809976px;}
.ws4f{word-spacing:-15.072084px;}
.ws4e{word-spacing:-15.017976px;}
.ws2c{word-spacing:-14.943900px;}
.wsa1{word-spacing:-13.449600px;}
.ws4d{word-spacing:-12.151944px;}
.ws17{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws50{word-spacing:-9.000000px;}
.ws168{word-spacing:-3.765888px;}
.ws8f{word-spacing:-3.704594px;}
.ws92{word-spacing:-3.634254px;}
.ws166{word-spacing:-3.389299px;}
.ws132{word-spacing:-3.287658px;}
.ws8e{word-spacing:-3.180949px;}
.ws8c{word-spacing:-3.040268px;}
.ws8d{word-spacing:-3.024637px;}
.ws7c{word-spacing:-2.825640px;}
.ws33{word-spacing:-2.689902px;}
.ws134{word-spacing:-2.630126px;}
.ws162{word-spacing:-2.582323px;}
.ws135{word-spacing:-2.570351px;}
.ws111{word-spacing:-2.510575px;}
.wsa2{word-spacing:-2.450800px;}
.ws3b{word-spacing:-2.271473px;}
.ws10c{word-spacing:-2.211697px;}
.ws192{word-spacing:-2.205734px;}
.ws94{word-spacing:-2.172737px;}
.ws15e{word-spacing:-2.032370px;}
.ws18b{word-spacing:-1.990541px;}
.ws37{word-spacing:-1.972595px;}
.ws7{word-spacing:-1.908367px;}
.ws15b{word-spacing:-1.793268px;}
.ws59{word-spacing:-1.733492px;}
.ws12a{word-spacing:-1.673717px;}
.ws80{word-spacing:-1.671336px;}
.ws42{word-spacing:-1.613941px;}
.ws7f{word-spacing:-1.611216px;}
.ws144{word-spacing:-1.554166px;}
.ws143{word-spacing:-1.494390px;}
.ws6{word-spacing:-1.322630px;}
.ws150{word-spacing:-1.315063px;}
.ws11c{word-spacing:-1.135736px;}
.ws1b2{word-spacing:-1.129766px;}
.ws38{word-spacing:-0.896634px;}
.ws159{word-spacing:-0.777083px;}
.ws120{word-spacing:-0.615176px;}
.ws121{word-spacing:-0.603940px;}
.ws11f{word-spacing:-0.597756px;}
.ws19c{word-spacing:-0.591782px;}
.ws122{word-spacing:-0.587805px;}
.wsb4{word-spacing:-0.547092px;}
.ws1f{word-spacing:-0.537984px;}
.ws152{word-spacing:-0.537980px;}
.wsba{word-spacing:-0.531461px;}
.ws1d{word-spacing:-0.484186px;}
.ws15d{word-spacing:-0.478205px;}
.wsb3{word-spacing:-0.476752px;}
.ws31{word-spacing:-0.418429px;}
.wsac{word-spacing:-0.398596px;}
.ws16a{word-spacing:-0.379230px;}
.ws16b{word-spacing:-0.376589px;}
.ws93{word-spacing:-0.375149px;}
.ws114{word-spacing:-0.358654px;}
.ws85{word-spacing:-0.348566px;}
.ws15c{word-spacing:-0.306896px;}
.ws4b{word-spacing:-0.298878px;}
.wsa0{word-spacing:-0.268992px;}
.ws5b{word-spacing:-0.263340px;}
.ws44{word-spacing:-0.252929px;}
.ws34{word-spacing:-0.239102px;}
.ws179{word-spacing:-0.237668px;}
.ws45{word-spacing:-0.234900px;}
.ws13d{word-spacing:-0.227429px;}
.ws141{word-spacing:-0.222275px;}
.ws83{word-spacing:-0.215194px;}
.ws97{word-spacing:-0.196560px;}
.ws29{word-spacing:-0.179327px;}
.ws28{word-spacing:-0.167379px;}
.ws6c{word-spacing:-0.162324px;}
.ws1b{word-spacing:-0.161395px;}
.ws74{word-spacing:-0.144288px;}
.ws155{word-spacing:-0.143137px;}
.ws199{word-spacing:-0.134559px;}
.ws1b3{word-spacing:-0.122752px;}
.ws27{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws84{word-spacing:-0.105815px;}
.ws133{word-spacing:-0.098828px;}
.wsec{word-spacing:-0.095641px;}
.ws1a3{word-spacing:-0.079467px;}
.ws72{word-spacing:-0.078156px;}
.ws5a{word-spacing:-0.076608px;}
.ws73{word-spacing:-0.066132px;}
.ws75{word-spacing:-0.060120px;}
.ws4{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws71{word-spacing:-0.048096px;}
.ws15{word-spacing:-0.047821px;}
.ws1c5{word-spacing:-0.027907px;}
.ws77{word-spacing:-0.024048px;}
.wsc4{word-spacing:-0.022400px;}
.ws43{word-spacing:-0.022166px;}
.wsc3{word-spacing:-0.020525px;}
.ws1a8{word-spacing:-0.013258px;}
.ws1af{word-spacing:-0.012576px;}
.ws19f{word-spacing:-0.010992px;}
.ws11b{word-spacing:-0.009845px;}
.ws17e{word-spacing:-0.008794px;}
.ws1ad{word-spacing:-0.008410px;}
.ws16c{word-spacing:-0.007690px;}
.ws1b7{word-spacing:-0.007594px;}
.ws1a1{word-spacing:-0.007133px;}
.ws13e{word-spacing:-0.006870px;}
.ws1cc{word-spacing:-0.006816px;}
.ws1c9{word-spacing:-0.006749px;}
.ws13f{word-spacing:-0.006528px;}
.ws16e{word-spacing:-0.006480px;}
.ws6a{word-spacing:-0.006012px;}
.wsc2{word-spacing:-0.005914px;}
.ws1b1{word-spacing:-0.005866px;}
.wsc0{word-spacing:-0.005614px;}
.ws55{word-spacing:-0.005482px;}
.ws182{word-spacing:-0.004090px;}
.ws119{word-spacing:-0.003592px;}
.ws17b{word-spacing:-0.003466px;}
.wsa3{word-spacing:-0.003431px;}
.ws1b4{word-spacing:-0.002957px;}
.ws2{word-spacing:-0.002434px;}
.ws19d{word-spacing:-0.002314px;}
.wsa4{word-spacing:-0.001991px;}
.wsa5{word-spacing:-0.001500px;}
.wsc1{word-spacing:-0.001489px;}
.ws1bd{word-spacing:-0.001488px;}
.wsbf{word-spacing:-0.000900px;}
.ws1a6{word-spacing:-0.000653px;}
.ws1b6{word-spacing:-0.000394px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.000059px;}
.ws32{word-spacing:0.000230px;}
.ws1a7{word-spacing:0.001286px;}
.ws1ae{word-spacing:0.001709px;}
.ws1a0{word-spacing:0.002736px;}
.wsa{word-spacing:0.004195px;}
.ws17f{word-spacing:0.014621px;}
.wsb1{word-spacing:0.039078px;}
.ws3e{word-spacing:0.039548px;}
.wsb8{word-spacing:0.046894px;}
.wsbb{word-spacing:0.047368px;}
.ws10b{word-spacing:0.052148px;}
.ws108{word-spacing:0.052276px;}
.ws54{word-spacing:0.053798px;}
.wsb9{word-spacing:0.054709px;}
.ws109{word-spacing:0.055031px;}
.ws10a{word-spacing:0.055715px;}
.ws2d{word-spacing:0.059776px;}
.wsbc{word-spacing:0.060070px;}
.ws6e{word-spacing:0.060120px;}
.ws174{word-spacing:0.063382px;}
.ws178{word-spacing:0.072436px;}
.ws173{word-spacing:0.073356px;}
.ws2e{word-spacing:0.077907px;}
.wsb2{word-spacing:0.078156px;}
.ws6b{word-spacing:0.084168px;}
.ws68{word-spacing:0.090180px;}
.ws23{word-spacing:0.107597px;}
.ws175{word-spacing:0.111008px;}
.wsa6{word-spacing:0.112320px;}
.wsa7{word-spacing:0.119340px;}
.ws2a{word-spacing:0.119551px;}
.ws60{word-spacing:0.129600px;}
.ws9c{word-spacing:0.133380px;}
.ws61{word-spacing:0.140400px;}
.wsaa{word-spacing:0.140681px;}
.ws76{word-spacing:0.144288px;}
.wsaf{word-spacing:0.148496px;}
.ws196{word-spacing:0.152823px;}
.wsa9{word-spacing:0.154440px;}
.ws10f{word-spacing:0.159040px;}
.ws167{word-spacing:0.161395px;}
.ws170{word-spacing:0.171809px;}
.wsb0{word-spacing:0.171943px;}
.wsa8{word-spacing:0.175500px;}
.ws107{word-spacing:0.178934px;}
.ws2b{word-spacing:0.179327px;}
.wsb6{word-spacing:0.179759px;}
.ws98{word-spacing:0.182520px;}
.ws16{word-spacing:0.191282px;}
.ws131{word-spacing:0.196086px;}
.ws95{word-spacing:0.196560px;}
.wsb7{word-spacing:0.203206px;}
.ws9d{word-spacing:0.203580px;}
.ws69{word-spacing:0.204408px;}
.ws171{word-spacing:0.207230px;}
.wsb{word-spacing:0.209214px;}
.ws99{word-spacing:0.210600px;}
.wsab{word-spacing:0.211021px;}
.ws51{word-spacing:0.215194px;}
.ws9b{word-spacing:0.217620px;}
.wsae{word-spacing:0.218837px;}
.ws123{word-spacing:0.230889px;}
.ws96{word-spacing:0.231660px;}
.ws88{word-spacing:0.234468px;}
.ws125{word-spacing:0.234797px;}
.ws41{word-spacing:0.239102px;}
.ws124{word-spacing:0.240236px;}
.ws89{word-spacing:0.242284px;}
.ws9a{word-spacing:0.245700px;}
.ws1c2{word-spacing:0.253027px;}
.ws1e{word-spacing:0.268992px;}
.ws6f{word-spacing:0.270540px;}
.ws6d{word-spacing:0.276552px;}
.wsd{word-spacing:0.292900px;}
.wsb5{word-spacing:0.296993px;}
.ws58{word-spacing:0.298878px;}
.ws21{word-spacing:0.298977px;}
.ws16f{word-spacing:0.301358px;}
.ws70{word-spacing:0.312624px;}
.ws22{word-spacing:0.322790px;}
.ws62{word-spacing:0.330660px;}
.wsfe{word-spacing:0.358654px;}
.ws165{word-spacing:0.376589px;}
.wsad{word-spacing:0.398596px;}
.ws14f{word-spacing:0.418429px;}
.ws180{word-spacing:0.430387px;}
.ws115{word-spacing:0.478205px;}
.ws164{word-spacing:0.484186px;}
.ws64{word-spacing:0.517032px;}
.wsff{word-spacing:0.537980px;}
.ws1bf{word-spacing:0.537984px;}
.ws15f{word-spacing:0.562500px;}
.wsc8{word-spacing:0.579376px;}
.wse6{word-spacing:0.582526px;}
.wsd9{word-spacing:0.582944px;}
.wsc7{word-spacing:0.583244px;}
.wse9{word-spacing:0.585676px;}
.wsce{word-spacing:0.586094px;}
.wsd1{word-spacing:0.586394px;}
.wse2{word-spacing:0.591475px;}
.wsdf{word-spacing:0.591993px;}
.wse1{word-spacing:0.593100px;}
.wsd0{word-spacing:0.594625px;}
.wsc9{word-spacing:0.594843px;}
.ws65{word-spacing:0.595188px;}
.wscd{word-spacing:0.598500px;}
.wscb{word-spacing:0.598800px;}
.wsc6{word-spacing:0.599100px;}
.wsd2{word-spacing:0.603754px;}
.wse4{word-spacing:0.606386px;}
.wse8{word-spacing:0.606904px;}
.wsdd{word-spacing:0.609754px;}
.wsde{word-spacing:0.610054px;}
.wsca{word-spacing:0.615435px;}
.wsdb{word-spacing:0.615854px;}
.wse3{word-spacing:0.619004px;}
.ws47{word-spacing:0.717307px;}
.ws14e{word-spacing:0.742389px;}
.ws1be{word-spacing:0.753178px;}
.ws2f{word-spacing:0.777083px;}
.ws53{word-spacing:0.806976px;}
.ws63{word-spacing:0.853704px;}
.ws186{word-spacing:0.860774px;}
.ws185{word-spacing:0.880049px;}
.ws19{word-spacing:0.914573px;}
.ws126{word-spacing:0.956410px;}
.ws103{word-spacing:1.075961px;}
.ws7a{word-spacing:1.124244px;}
.ws52{word-spacing:1.129766px;}
.ws147{word-spacing:1.135736px;}
.ws7b{word-spacing:1.172340px;}
.ws184{word-spacing:1.183565px;}
.ws138{word-spacing:1.195512px;}
.ws1ba{word-spacing:1.237363px;}
.ws3a{word-spacing:1.255288px;}
.ws3f{word-spacing:1.315063px;}
.ws142{word-spacing:1.374839px;}
.ws1ac{word-spacing:1.398758px;}
.ws49{word-spacing:1.434614px;}
.ws188{word-spacing:1.452557px;}
.ws113{word-spacing:1.613941px;}
.ws160{word-spacing:1.673717px;}
.ws110{word-spacing:1.733492px;}
.ws1ab{word-spacing:1.775347px;}
.ws13a{word-spacing:1.793268px;}
.ws13b{word-spacing:1.808445px;}
.ws13c{word-spacing:1.813087px;}
.ws139{word-spacing:1.853044px;}
.ws136{word-spacing:1.912819px;}
.ws78{word-spacing:1.929852px;}
.ws19e{word-spacing:1.936742px;}
.ws140{word-spacing:1.972595px;}
.ws1c8{word-spacing:1.990541px;}
.wsc{word-spacing:2.008454px;}
.ws79{word-spacing:2.014020px;}
.ws3d{word-spacing:2.032370px;}
.ws105{word-spacing:2.056649px;}
.ws106{word-spacing:2.092146px;}
.ws130{word-spacing:2.105598px;}
.ws118{word-spacing:2.151922px;}
.ws67{word-spacing:2.182356px;}
.ws149{word-spacing:2.271473px;}
.ws36{word-spacing:2.450800px;}
.ws137{word-spacing:2.510575px;}
.wsee{word-spacing:2.528525px;}
.ws7e{word-spacing:2.561112px;}
.ws3c{word-spacing:2.570351px;}
.ws1a{word-spacing:2.636122px;}
.ws11d{word-spacing:2.689902px;}
.ws7d{word-spacing:2.705400px;}
.ws24{word-spacing:2.743718px;}
.ws101{word-spacing:2.749678px;}
.ws66{word-spacing:2.759508px;}
.wsed{word-spacing:2.797517px;}
.ws148{word-spacing:2.809453px;}
.ws91{word-spacing:2.844878px;}
.ws151{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws117{word-spacing:2.903522px;}
.ws116{word-spacing:2.929004px;}
.ws187{word-spacing:2.958912px;}
.ws46{word-spacing:2.988780px;}
.ws1cd{word-spacing:3.012710px;}
.ws14c{word-spacing:3.048556px;}
.ws161{word-spacing:3.066509px;}
.ws90{word-spacing:3.071531px;}
.ws19a{word-spacing:3.099245px;}
.ws12c{word-spacing:3.108331px;}
.ws1a4{word-spacing:3.175812px;}
.ws1c0{word-spacing:3.196667px;}
.ws1c1{word-spacing:3.199516px;}
.ws18d{word-spacing:3.218035px;}
.ws1ce{word-spacing:3.218563px;}
.ws25{word-spacing:3.219667px;}
.ws1b0{word-spacing:3.220339px;}
.ws1a5{word-spacing:3.221347px;}
.ws1b9{word-spacing:3.223555px;}
.ws1a9{word-spacing:3.224035px;}
.ws177{word-spacing:3.224112px;}
.ws17d{word-spacing:3.224784px;}
.ws19b{word-spacing:3.224986px;}
.ws17c{word-spacing:3.225062px;}
.ws17a{word-spacing:3.225571px;}
.ws194{word-spacing:3.227290px;}
.ws1cb{word-spacing:3.227414px;}
.ws16d{word-spacing:3.227510px;}
.ws112{word-spacing:3.227882px;}
.ws172{word-spacing:3.227904px;}
.ws1b8{word-spacing:3.227933px;}
.ws193{word-spacing:3.228518px;}
.ws183{word-spacing:3.229440px;}
.ws1c4{word-spacing:3.230112px;}
.ws18c{word-spacing:3.230602px;}
.ws18e{word-spacing:3.281702px;}
.ws1b5{word-spacing:3.294476px;}
.ws86{word-spacing:3.321630px;}
.ws4c{word-spacing:3.347434px;}
.ws1aa{word-spacing:3.374168px;}
.ws197{word-spacing:3.438765px;}
.ws198{word-spacing:3.443098px;}
.ws1a2{word-spacing:3.462413px;}
.ws40{word-spacing:3.526760px;}
.ws11a{word-spacing:3.582762px;}
.ws26{word-spacing:3.586536px;}
.ws1c3{word-spacing:3.609530px;}
.ws48{word-spacing:3.706087px;}
.ws5e{word-spacing:3.758400px;}
.ws5d{word-spacing:3.763800px;}
.ws18f{word-spacing:3.765888px;}
.ws5c{word-spacing:3.801600px;}
.ws5f{word-spacing:3.817800px;}
.ws100{word-spacing:3.825638px;}
.ws128{word-spacing:3.862818px;}
.ws87{word-spacing:3.884353px;}
.ws129{word-spacing:3.885414px;}
.ws127{word-spacing:3.894064px;}
.ws14a{word-spacing:4.004965px;}
.ws195{word-spacing:4.250074px;}
.ws169{word-spacing:4.411469px;}
.ws30{word-spacing:4.423394px;}
.ws153{word-spacing:4.722272px;}
.wsef{word-spacing:4.729460px;}
.wsf0{word-spacing:4.734259px;}
.ws1c6{word-spacing:4.841856px;}
.ws190{word-spacing:4.895654px;}
.ws15a{word-spacing:4.901599px;}
.ws146{word-spacing:5.021150px;}
.ws181{word-spacing:5.057050px;}
.ws4a{word-spacing:5.080926px;}
.ws39{word-spacing:5.200477px;}
.ws1bb{word-spacing:5.206673px;}
.ws176{word-spacing:5.218445px;}
.ws1ca{word-spacing:5.272243px;}
.ws18a{word-spacing:5.433638px;}
.ws14b{word-spacing:5.678682px;}
.ws163{word-spacing:5.702630px;}
.ws57{word-spacing:5.976000px;}
.wseb{word-spacing:6.025396px;}
.ws102{word-spacing:6.037336px;}
.ws13{word-spacing:6.067206px;}
.ws1c7{word-spacing:6.133018px;}
.ws14{word-spacing:6.150892px;}
.wsfd{word-spacing:6.156887px;}
.ws191{word-spacing:6.186816px;}
.ws158{word-spacing:6.395989px;}
.ws157{word-spacing:6.515540px;}
.ws154{word-spacing:6.635092px;}
.ws145{word-spacing:6.814418px;}
.ws12e{word-spacing:6.933970px;}
.ws12d{word-spacing:6.993745px;}
.ws10d{word-spacing:7.053521px;}
.ws104{word-spacing:7.173072px;}
.ws11e{word-spacing:7.412174px;}
.ws8b{word-spacing:7.510792px;}
.ws8a{word-spacing:7.659288px;}
.ws35{word-spacing:7.770828px;}
.ws189{word-spacing:8.069760px;}
.ws12b{word-spacing:8.488135px;}
.ws11{word-spacing:8.661460px;}
.ws156{word-spacing:9.683647px;}
.ws12f{word-spacing:10.450502px;}
.ws56{word-spacing:11.906719px;}
.wsbe{word-spacing:11.907329px;}
.ws14d{word-spacing:11.955120px;}
.ws1bc{word-spacing:13.826189px;}
.ws8{word-spacing:15.483541px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws10{word-spacing:17.699504px;}
.ws10e{word-spacing:25.165528px;}
.ws1{word-spacing:26.791603px;}
.ws12{word-spacing:27.448877px;}
.wsf2{word-spacing:73.204917px;}
.wscc{word-spacing:75.113100px;}
.wse5{word-spacing:84.754500px;}
.wse7{word-spacing:84.754800px;}
.wsc5{word-spacing:84.772621px;}
.wsd8{word-spacing:87.071100px;}
.wsd4{word-spacing:96.712800px;}
.wsdc{word-spacing:99.016800px;}
.wsd6{word-spacing:99.023100px;}
.wscf{word-spacing:107.033100px;}
.wsea{word-spacing:108.664800px;}
.wsd5{word-spacing:108.670800px;}
.wsd7{word-spacing:110.974800px;}
.wse0{word-spacing:110.975100px;}
.wsd3{word-spacing:118.985100px;}
.wsda{word-spacing:118.991100px;}
.wsfb{word-spacing:169.476206px;}
.wsfc{word-spacing:203.141909px;}
.wsf3{word-spacing:237.237997px;}
.wsfa{word-spacing:243.454675px;}
.wsf8{word-spacing:248.523658px;}
.wsf4{word-spacing:248.571479px;}
.wsf9{word-spacing:249.185532px;}
.wsf7{word-spacing:249.671353px;}
.wsf6{word-spacing:260.526629px;}
.wsf1{word-spacing:267.329810px;}
.wsf5{word-spacing:313.360022px;}
.wsbd{word-spacing:414.220123px;}
._4{margin-left:-23.623330px;}
._7b{margin-left:-20.959104px;}
._a{margin-left:-16.934440px;}
._8{margin-left:-15.359565px;}
._1{margin-left:-11.943245px;}
._4c{margin-left:-8.460758px;}
._11{margin-left:-7.111613px;}
._0{margin-left:-5.917824px;}
._d{margin-left:-4.798406px;}
._7{margin-left:-3.765852px;}
._e{margin-left:-2.683568px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:3.000787px;}
._7d{width:4.142477px;}
._7c{width:11.651923px;}
._9{width:12.971268px;}
._b{width:14.185687px;}
._12{width:15.547738px;}
._10{width:17.424329px;}
._13{width:18.766830px;}
._18{width:20.625290px;}
._17{width:22.175064px;}
._f{width:24.209280px;}
._79{width:25.763284px;}
._66{width:27.114280px;}
._77{width:28.139937px;}
._23{width:30.336523px;}
._c{width:32.637384px;}
._78{width:35.082571px;}
._76{width:38.615038px;}
._74{width:40.587632px;}
._16{width:42.567794px;}
._75{width:44.592598px;}
._3{width:54.408293px;}
._1e{width:62.244792px;}
._32{width:72.348389px;}
._67{width:75.530297px;}
._65{width:79.796587px;}
._20{width:82.021697px;}
._27{width:89.729081px;}
._60{width:91.754887px;}
._5e{width:103.659066px;}
._30{width:105.300161px;}
._56{width:106.448656px;}
._64{width:111.135074px;}
._5f{width:115.056364px;}
._5c{width:118.403806px;}
._62{width:119.742782px;}
._61{width:123.090224px;}
._57{width:124.716125px;}
._63{width:126.389846px;}
._3c{width:127.728823px;}
._59{width:130.358956px;}
._3b{width:135.093195px;}
._22{width:136.989413px;}
._44{width:139.731793px;}
._53{width:142.314106px;}
._55{width:144.657315px;}
._58{width:147.335269px;}
._5b{width:148.626425px;}
._2a{width:151.090711px;}
._25{width:154.123622px;}
._31{width:156.149666px;}
._54{width:160.444878px;}
._5a{width:162.255296px;}
._4a{width:163.642093px;}
._33{width:166.490297px;}
._1f{width:167.937948px;}
._5d{width:171.915057px;}
._68{width:174.784293px;}
._1a{width:178.520299px;}
._21{width:180.269810px;}
._40{width:182.913795px;}
._3a{width:188.891370px;}
._2d{width:191.253734px;}
._42{width:192.908300px;}
._26{width:195.263738px;}
._2c{width:196.502201px;}
._2e{width:198.522242px;}
._37{width:199.820998px;}
._2f{width:210.678506px;}
._50{width:213.135960px;}
._2b{width:214.760664px;}
._49{width:218.779245px;}
._4e{width:225.091110px;}
._4f{width:231.068685px;}
._29{width:234.630324px;}
._3f{width:236.664149px;}
._71{width:238.146588px;}
._51{width:246.706022px;}
._47{width:248.619299px;}
._52{width:252.683597px;}
._39{width:256.940084px;}
._69{width:260.478808px;}
._1d{width:266.866668px;}
._3e{width:268.895234px;}
._6a{width:272.481779px;}
._24{width:273.978854px;}
._46{width:280.850384px;}
._6e{width:286.426462px;}
._36{width:287.688730px;}
._28{width:289.099034px;}
._6b{width:296.535541px;}
._1c{width:298.802412px;}
._6c{width:303.708631px;}
._38{width:309.399282px;}
._72{width:320.254558px;}
._6d{width:327.618931px;}
._34{width:332.161888px;}
._73{width:333.596506px;}
._6f{width:341.056519px;}
._35{width:351.290128px;}
._70{width:352.290832px;}
._3d{width:367.405670px;}
._48{width:369.079391px;}
._43{width:395.811106px;}
._45{width:402.027784px;}
._41{width:431.198350px;}
._14{width:724.497321px;}
._4d{width:740.603246px;}
._1b{width:898.406234px;}
._19{width:2119.643306px;}
._7a{width:2505.363000px;}
._15{width:2529.273000px;}
._4b{width:2757.046285px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(140,45,105);}
.fs7{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs13{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs12{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs11{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fse{font-size:62.244000px;}
.fs14{font-size:62.286600px;}
.fs10{font-size:70.200000px;}
.fsf{font-size:78.156000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:128.507760px;}
.yd5{bottom:-669.167265px;}
.y87{bottom:-657.575550px;}
.ya2{bottom:-568.383138px;}
.ya1{bottom:-549.123696px;}
.ya0{bottom:-529.954434px;}
.y9f{bottom:-510.694992px;}
.yeb{bottom:-503.840980px;}
.y9e{bottom:-491.435550px;}
.yea{bottom:-475.058080px;}
.y9d{bottom:-452.555343px;}
.ye9{bottom:-450.138039px;}
.y9c{bottom:-432.305424px;}
.ye8{bottom:-425.100764px;}
.y9b{bottom:-422.224803px;}
.ye7{bottom:-400.063490px;}
.y9a{bottom:-391.805586px;}
.y99{bottom:-381.726468px;}
.ye6{bottom:-375.141495px;}
.y98{bottom:-351.395928px;}
.ye5{bottom:-350.104221px;}
.y97{bottom:-331.146009px;}
.ye4{bottom:-325.066946px;}
.y96{bottom:-310.896090px;}
.ye3{bottom:-300.146905px;}
.y95{bottom:-290.646171px;}
.y94{bottom:-280.565550px;}
.ye2{bottom:-275.109631px;}
.ye1{bottom:-250.189590px;}
.y93{bottom:-250.144518px;}
.y92{bottom:-240.065400px;}
.ye0{bottom:-225.152316px;}
.y91{bottom:-208.835550px;}
.ydf{bottom:-200.115041px;}
.y90{bottom:-187.865550px;}
.y8e{bottom:-176.974245px;}
.yde{bottom:-169.343070px;}
.ybe{bottom:-158.002065px;}
.y8f{bottom:-156.004389px;}
.ydd{bottom:-121.608240px;}
.y8d{bottom:-114.694434px;}
.ydc{bottom:-99.026655px;}
.y8c{bottom:-95.434992px;}
.ycd{bottom:-83.355480px;}
.ydb{bottom:-76.562655px;}
.y8b{bottom:-76.175550px;}
.ycc{bottom:-60.891480px;}
.yda{bottom:-54.098655px;}
.y8a{bottom:-39.456000px;}
.ycb{bottom:-38.194065px;}
.yd9{bottom:-31.517070px;}
.y89{bottom:-22.085550px;}
.yca{bottom:-9.058222px;}
.yd8{bottom:-2.267265px;}
.y0{bottom:0.000000px;}
.y88{bottom:0.325125px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:15.759303px;}
.y4e{bottom:31.890000px;}
.yfc{bottom:89.542500px;}
.y139{bottom:96.699000px;}
.y1d1{bottom:98.985000px;}
.y25{bottom:102.823500px;}
.y207{bottom:102.840000px;}
.y23d{bottom:103.557000px;}
.y4d{bottom:104.076000px;}
.y181{bottom:104.902500px;}
.y1b0{bottom:105.799500px;}
.y16f{bottom:106.695000px;}
.yfb{bottom:108.372000px;}
.y138{bottom:115.528500px;}
.y1d0{bottom:116.559000px;}
.y206{bottom:120.100500px;}
.y24{bottom:120.711000px;}
.y23c{bottom:120.817500px;}
.y4c{bottom:122.905500px;}
.y180{bottom:123.732000px;}
.y1ae{bottom:124.627500px;}
.y16e{bottom:125.524500px;}
.yfa{bottom:127.201500px;}
.y1af{bottom:130.053000px;}
.yd1{bottom:130.732500px;}
.y1cf{bottom:134.133000px;}
.y137{bottom:134.358000px;}
.y205{bottom:137.361000px;}
.y23b{bottom:138.078000px;}
.y23{bottom:138.600000px;}
.y4b{bottom:141.735000px;}
.y17f{bottom:142.561500px;}
.y1ad{bottom:143.457000px;}
.y16d{bottom:144.354000px;}
.y83{bottom:145.233000px;}
.yf9{bottom:146.031000px;}
.yd0{bottom:149.965500px;}
.y1ce{bottom:151.707000px;}
.y136{bottom:153.187500px;}
.y204{bottom:154.621500px;}
.y23a{bottom:155.338500px;}
.y22{bottom:156.487500px;}
.y4a{bottom:160.564500px;}
.y17d{bottom:161.391000px;}
.y1ac{bottom:162.286500px;}
.y16c{bottom:163.183500px;}
.y82{bottom:164.062500px;}
.yf8{bottom:164.860500px;}
.y17e{bottom:166.815000px;}
.ycf{bottom:169.198500px;}
.y1cd{bottom:169.281000px;}
.y203{bottom:171.882000px;}
.y135{bottom:172.017000px;}
.y239{bottom:172.599000px;}
.y21{bottom:174.375000px;}
.y49{bottom:179.392500px;}
.y17b{bottom:180.220500px;}
.y1ab{bottom:181.116000px;}
.y16b{bottom:182.013000px;}
.y81{bottom:182.892000px;}
.yf7{bottom:183.690000px;}
.y17c{bottom:185.644500px;}
.y1cc{bottom:186.855000px;}
.yce{bottom:188.431500px;}
.y202{bottom:189.141000px;}
.y238{bottom:189.858000px;}
.y134{bottom:190.846500px;}
.y20{bottom:192.264000px;}
.yba{bottom:196.275000px;}
.y48{bottom:198.222000px;}
.y17a{bottom:199.050000px;}
.y1aa{bottom:199.945500px;}
.y16a{bottom:200.842500px;}
.y80{bottom:201.721500px;}
.yf6{bottom:202.519500px;}
.y201{bottom:206.401500px;}
.y237{bottom:207.118500px;}
.y133{bottom:209.676000px;}
.y1f{bottom:210.151500px;}
.ybb{bottom:210.861000px;}
.yb9{bottom:215.104500px;}
.y47{bottom:217.051500px;}
.y179{bottom:217.878000px;}
.y1a8{bottom:218.775000px;}
.y169{bottom:219.672000px;}
.y7f{bottom:220.551000px;}
.yf5{bottom:221.347500px;}
.y1cb{bottom:222.361500px;}
.y200{bottom:223.662000px;}
.y1a9{bottom:224.200500px;}
.y236{bottom:224.379000px;}
.y1e{bottom:228.039000px;}
.y132{bottom:228.505500px;}
.yb8{bottom:233.934000px;}
.y46{bottom:235.881000px;}
.y178{bottom:236.707500px;}
.y168{bottom:238.501500px;}
.y7e{bottom:239.380500px;}
.yf4{bottom:240.177000px;}
.y1ff{bottom:240.922500px;}
.y1ca{bottom:241.191000px;}
.y235{bottom:241.639500px;}
.y1a7{bottom:242.088000px;}
.y131{bottom:247.335000px;}
.yb7{bottom:252.763500px;}
.y45{bottom:254.710500px;}
.y177{bottom:255.537000px;}
.y167{bottom:257.331000px;}
.y1fe{bottom:258.183000px;}
.y7d{bottom:258.210000px;}
.y234{bottom:258.900000px;}
.yf3{bottom:259.006500px;}
.y1c9{bottom:260.020500px;}
.y130{bottom:266.164500px;}
.yb6{bottom:271.593000px;}
.y44{bottom:273.540000px;}
.y176{bottom:274.366500px;}
.y1fd{bottom:275.443500px;}
.y1a6{bottom:275.712000px;}
.y166{bottom:276.160500px;}
.y7c{bottom:277.039500px;}
.yf2{bottom:277.836000px;}
.y1c8{bottom:278.850000px;}
.y12f{bottom:284.994000px;}
.yb5{bottom:290.422500px;}
.y43{bottom:292.369500px;}
.y1fc{bottom:292.704000px;}
.y175{bottom:293.196000px;}
.y233{bottom:293.421000px;}
.y1a5{bottom:294.541500px;}
.y165{bottom:294.990000px;}
.y7b{bottom:295.869000px;}
.yf1{bottom:296.665500px;}
.y1c7{bottom:297.679500px;}
.y12e{bottom:303.823500px;}
.y1d{bottom:307.299000px;}
.yb4{bottom:309.252000px;}
.y1fb{bottom:309.964500px;}
.y232{bottom:310.681500px;}
.y42{bottom:311.199000px;}
.y174{bottom:312.025500px;}
.y1a4{bottom:313.371000px;}
.y164{bottom:313.819500px;}
.y7a{bottom:314.698500px;}
.y1c6{bottom:316.509000px;}
.yf0{bottom:319.978500px;}
.y12d{bottom:322.651500px;}
.y1c{bottom:325.186500px;}
.y1fa{bottom:327.225000px;}
.y231{bottom:327.940500px;}
.y173{bottom:330.855000px;}
.y1a3{bottom:332.200500px;}
.yb3{bottom:332.563500px;}
.y163{bottom:332.649000px;}
.y79{bottom:333.528000px;}
.y41{bottom:334.512000px;}
.y1c5{bottom:335.338500px;}
.y12b{bottom:341.481000px;}
.y1b{bottom:343.074000px;}
.y1f9{bottom:344.484000px;}
.y230{bottom:345.201000px;}
.y12c{bottom:346.906500px;}
.y172{bottom:349.684500px;}
.y1a2{bottom:351.030000px;}
.y162{bottom:351.478500px;}
.y78{bottom:352.356000px;}
.y1c3{bottom:354.168000px;}
.yef{bottom:359.373000px;}
.y1c4{bottom:359.592000px;}
.y1a{bottom:360.963000px;}
.y1f8{bottom:361.744500px;}
.y22f{bottom:362.461500px;}
.y12a{bottom:364.794000px;}
.y1a1{bottom:369.859500px;}
.y161{bottom:370.308000px;}
.y77{bottom:371.185500px;}
.y171{bottom:372.997500px;}
.yee{bottom:378.606000px;}
.y1f7{bottom:379.005000px;}
.y22e{bottom:379.722000px;}
.yb2{bottom:387.664500px;}
.y1a0{bottom:388.689000px;}
.y160{bottom:389.137500px;}
.y76{bottom:390.015000px;}
.y1c2{bottom:391.827000px;}
.y170{bottom:393.172500px;}
.y1f6{bottom:396.265500px;}
.y22d{bottom:396.982500px;}
.yed{bottom:397.837500px;}
.y19{bottom:399.024000px;}
.yb1{bottom:401.862000px;}
.y129{bottom:406.446000px;}
.y19f{bottom:407.518500px;}
.y15f{bottom:407.967000px;}
.y75{bottom:408.844500px;}
.y40{bottom:409.662000px;}
.y1c1{bottom:410.656500px;}
.y1f5{bottom:413.526000px;}
.y22c{bottom:414.243000px;}
.yb0{bottom:416.058000px;}
.y18{bottom:416.913000px;}
.yec{bottom:417.070500px;}
.y128{bottom:420.642000px;}
.y19e{bottom:426.348000px;}
.y15e{bottom:426.796500px;}
.y74{bottom:427.674000px;}
.y1bf{bottom:429.486000px;}
.yaf{bottom:430.255500px;}
.y1f4{bottom:430.786500px;}
.y22b{bottom:431.503500px;}
.y17{bottom:434.800500px;}
.y127{bottom:434.839500px;}
.y1c0{bottom:434.910000px;}
.yd2{bottom:439.500000px;}
.yae{bottom:444.451500px;}
.y19d{bottom:445.177500px;}
.y15d{bottom:445.626000px;}
.y3f{bottom:447.052500px;}
.y1f3{bottom:448.047000px;}
.y1be{bottom:448.315500px;}
.y22a{bottom:448.764000px;}
.y126{bottom:449.035500px;}
.y73{bottom:450.987000px;}
.yad{bottom:458.649000px;}
.y125{bottom:463.233000px;}
.y19c{bottom:464.007000px;}
.y15c{bottom:464.454000px;}
.y1f2{bottom:465.307500px;}
.y229{bottom:466.024500px;}
.y3e{bottom:466.509000px;}
.y1bd{bottom:467.145000px;}
.y16{bottom:470.622000px;}
.y72{bottom:471.162000px;}
.yac{bottom:472.845000px;}
.y86{bottom:476.425035px;}
.y123{bottom:477.429000px;}
.y1f1{bottom:482.566500px;}
.y19b{bottom:482.836500px;}
.y15b{bottom:483.283500px;}
.y124{bottom:484.527000px;}
.y3d{bottom:485.965500px;}
.y1bc{bottom:485.974500px;}
.y85{bottom:486.234450px;}
.y122{bottom:491.626500px;}
.yab{bottom:494.244000px;}
.y1f0{bottom:499.827000px;}
.y228{bottom:500.544000px;}
.y19a{bottom:501.666000px;}
.y15a{bottom:502.113000px;}
.y71{bottom:504.786000px;}
.y1ba{bottom:504.804000px;}
.y3c{bottom:505.423500px;}
.y121{bottom:505.822500px;}
.y15{bottom:506.442000px;}
.y1bb{bottom:510.228000px;}
.ya8{bottom:514.080000px;}
.yaa{bottom:515.643000px;}
.y1ef{bottom:517.087500px;}
.y227{bottom:517.804500px;}
.y120{bottom:520.020000px;}
.y199{bottom:520.495500px;}
.y159{bottom:520.942500px;}
.y70{bottom:523.615500px;}
.y1b9{bottom:523.633500px;}
.y14{bottom:524.329500px;}
.y3b{bottom:524.880000px;}
.y11f{bottom:534.216000px;}
.y1ee{bottom:534.348000px;}
.y226{bottom:535.065000px;}
.ya9{bottom:537.042000px;}
.y198{bottom:539.323500px;}
.y158{bottom:539.772000px;}
.y13{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y1b7{bottom:542.463000px;}
.y3a{bottom:544.336500px;}
.y1b8{bottom:547.887000px;}
.y11e{bottom:548.413500px;}
.y1ed{bottom:551.608500px;}
.y225{bottom:552.325500px;}
.y197{bottom:558.153000px;}
.y157{bottom:558.601500px;}
.y12{bottom:560.106000px;}
.y6e{bottom:561.274500px;}
.y1b6{bottom:561.292500px;}
.y11d{bottom:562.609500px;}
.y39{bottom:563.794500px;}
.ya7{bottom:567.093000px;}
.y1ec{bottom:568.869000px;}
.y224{bottom:569.586000px;}
.y11c{bottom:576.807000px;}
.y196{bottom:576.982500px;}
.y156{bottom:577.431000px;}
.y11{bottom:577.993500px;}
.y6d{bottom:580.104000px;}
.y1b5{bottom:580.122000px;}
.y38{bottom:583.251000px;}
.y1eb{bottom:586.129500px;}
.ya6{bottom:586.326000px;}
.y223{bottom:586.846500px;}
.y11b{bottom:591.003000px;}
.y195{bottom:595.812000px;}
.y10{bottom:595.882500px;}
.y155{bottom:596.260500px;}
.y6c{bottom:598.932000px;}
.y37{bottom:602.709000px;}
.y1ea{bottom:603.390000px;}
.y1b4{bottom:603.433500px;}
.y222{bottom:604.107000px;}
.y11a{bottom:605.200500px;}
.ya5{bottom:605.559000px;}
.yf{bottom:613.770000px;}
.y194{bottom:614.641500px;}
.y154{bottom:615.090000px;}
.y6b{bottom:617.761500px;}
.y119{bottom:619.396500px;}
.y1e9{bottom:620.650500px;}
.y221{bottom:621.366000px;}
.y36{bottom:622.165500px;}
.ye{bottom:631.657500px;}
.y193{bottom:633.471000px;}
.y118{bottom:633.594000px;}
.y153{bottom:633.919500px;}
.y6a{bottom:636.591000px;}
.y1b3{bottom:637.057500px;}
.y1e8{bottom:637.909500px;}
.y220{bottom:638.626500px;}
.y35{bottom:641.622000px;}
.ya4{bottom:642.724500px;}
.yd{bottom:649.546500px;}
.y192{bottom:652.300500px;}
.y152{bottom:652.749000px;}
.y116{bottom:654.993000px;}
.y1e7{bottom:655.170000px;}
.y69{bottom:655.420500px;}
.y21f{bottom:655.887000px;}
.y34{bottom:661.080000px;}
.y115{bottom:661.867500px;}
.ya3{bottom:661.957500px;}
.yc{bottom:667.434000px;}
.y117{bottom:669.189000px;}
.y191{bottom:671.130000px;}
.y151{bottom:671.578500px;}
.y1e6{bottom:672.430500px;}
.y21e{bottom:673.147500px;}
.y68{bottom:674.250000px;}
.y33{bottom:680.536500px;}
.y84{bottom:684.387000px;}
.y1e5{bottom:689.691000px;}
.y9{bottom:689.805055px;}
.y190{bottom:689.959500px;}
.y150{bottom:690.408000px;}
.y67{bottom:693.079500px;}
.y114{bottom:699.240000px;}
.y32{bottom:699.993000px;}
.y1e4{bottom:706.951500px;}
.y21d{bottom:707.668500px;}
.y18f{bottom:708.789000px;}
.y14f{bottom:709.237500px;}
.y66{bottom:711.909000px;}
.yd7{bottom:713.538735px;}
.y113{bottom:718.473000px;}
.y31{bottom:719.451000px;}
.y1e3{bottom:724.212000px;}
.y21c{bottom:724.929000px;}
.y18e{bottom:727.618500px;}
.y14e{bottom:728.067000px;}
.y65{bottom:730.738500px;}
.yd6{bottom:736.002735px;}
.y112{bottom:737.706000px;}
.y1e2{bottom:741.472500px;}
.y21b{bottom:742.189500px;}
.y18d{bottom:746.448000px;}
.y14d{bottom:746.896500px;}
.y64{bottom:749.568000px;}
.y30{bottom:758.035500px;}
.y1e1{bottom:758.733000px;}
.y21a{bottom:759.450000px;}
.y18c{bottom:765.277500px;}
.y14c{bottom:765.726000px;}
.y63{bottom:768.397500px;}
.y2f{bottom:774.175500px;}
.y1e0{bottom:775.992000px;}
.y219{bottom:776.709000px;}
.y111{bottom:782.932500px;}
.y18b{bottom:784.107000px;}
.y14b{bottom:784.555500px;}
.y62{bottom:787.227000px;}
.y2e{bottom:790.315500px;}
.y218{bottom:793.969500px;}
.y110{bottom:797.130000px;}
.y1df{bottom:797.736000px;}
.y18a{bottom:802.936500px;}
.y14a{bottom:803.385000px;}
.yd4{bottom:805.033496px;}
.y61{bottom:806.056500px;}
.y2d{bottom:806.455500px;}
.y2c{bottom:810.795000px;}
.y217{bottom:811.230000px;}
.y10f{bottom:811.326000px;}
.yd3{bottom:817.785735px;}
.y189{bottom:821.766000px;}
.y149{bottom:822.214500px;}
.y2b{bottom:822.594000px;}
.y60{bottom:824.886000px;}
.y216{bottom:828.490500px;}
.y10e{bottom:829.498500px;}
.y1de{bottom:831.360000px;}
.y2a{bottom:838.734000px;}
.y187{bottom:840.595500px;}
.y148{bottom:841.044000px;}
.y10d{bottom:843.694500px;}
.y5e{bottom:843.715500px;}
.y215{bottom:845.751000px;}
.y188{bottom:846.019500px;}
.y5f{bottom:849.139500px;}
.y10c{bottom:857.892000px;}
.y1dd{bottom:857.901000px;}
.y29{bottom:859.213500px;}
.y186{bottom:859.425000px;}
.y147{bottom:859.873500px;}
.y5d{bottom:862.545000px;}
.y214{bottom:863.011500px;}
.y10b{bottom:872.088000px;}
.y28{bottom:875.353500px;}
.y1dc{bottom:875.475000px;}
.y185{bottom:878.254500px;}
.y146{bottom:878.703000px;}
.y213{bottom:880.272000px;}
.y5c{bottom:881.374500px;}
.y10a{bottom:886.285500px;}
.y27{bottom:887.152500px;}
.y1db{bottom:893.049000px;}
.y184{bottom:897.084000px;}
.y145{bottom:897.532500px;}
.y5b{bottom:900.204000px;}
.y109{bottom:900.481500px;}
.y26{bottom:907.632000px;}
.y108{bottom:914.679000px;}
.y212{bottom:914.793000px;}
.y183{bottom:915.913500px;}
.y144{bottom:916.362000px;}
.y5a{bottom:919.033500px;}
.y1da{bottom:919.590000px;}
.y107{bottom:928.875000px;}
.y211{bottom:932.052000px;}
.y143{bottom:935.191500px;}
.y59{bottom:937.863000px;}
.y182{bottom:939.226500px;}
.y106{bottom:943.071000px;}
.y1d9{bottom:946.129500px;}
.y8{bottom:947.824500px;}
.y210{bottom:949.312500px;}
.y142{bottom:954.021000px;}
.y58{bottom:956.692500px;}
.y105{bottom:957.268500px;}
.yc9{bottom:966.137176px;}
.y20f{bottom:966.573000px;}
.y7{bottom:966.654000px;}
.y104{bottom:971.464500px;}
.y1d8{bottom:972.670500px;}
.y141{bottom:972.849000px;}
.y57{bottom:975.522000px;}
.y1b2{bottom:978.274500px;}
.y20e{bottom:983.833500px;}
.y103{bottom:985.662000px;}
.y1d7{bottom:990.244500px;}
.yc8{bottom:991.057216px;}
.y140{bottom:991.678500px;}
.y56{bottom:994.351500px;}
.y102{bottom:999.858000px;}
.y20d{bottom:1001.094000px;}
.y1d6{bottom:1007.818500px;}
.y13f{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y55{bottom:1013.181000px;}
.y101{bottom:1014.055500px;}
.yc7{bottom:1016.094491px;}
.y20c{bottom:1018.354500px;}
.y13e{bottom:1029.337500px;}
.y54{bottom:1032.010500px;}
.y1d5{bottom:1034.359500px;}
.y100{bottom:1035.454500px;}
.y20b{bottom:1035.615000px;}
.yc6{bottom:1041.131766px;}
.y5{bottom:1041.199500px;}
.yff{bottom:1044.145500px;}
.y13d{bottom:1048.167000px;}
.y53{bottom:1050.840000px;}
.y1d4{bottom:1051.933500px;}
.y20a{bottom:1052.875500px;}
.yc5{bottom:1066.053760px;}
.y13c{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y1d3{bottom:1069.507500px;}
.y52{bottom:1069.669500px;}
.y209{bottom:1070.134500px;}
.y13b{bottom:1085.826000px;}
.yfe{bottom:1086.904500px;}
.y1d2{bottom:1087.081500px;}
.y208{bottom:1087.395000px;}
.y51{bottom:1088.499000px;}
.yc4{bottom:1091.091035px;}
.y3{bottom:1097.688000px;}
.y13a{bottom:1104.655500px;}
.yfd{bottom:1106.137500px;}
.y50{bottom:1107.327000px;}
.y1b1{bottom:1110.081000px;}
.yc3{bottom:1116.013029px;}
.yc2{bottom:1141.050304px;}
.y1{bottom:1141.174500px;}
.yc1{bottom:1171.937555px;}
.y4f{bottom:1173.397500px;}
.yc0{bottom:1220.259456px;}
.ybf{bottom:1245.296731px;}
.ybd{bottom:1316.198696px;}
.ybc{bottom:1328.950935px;}
.h23{height:25.070054px;}
.h8{height:25.508090px;}
.h1d{height:27.855430px;}
.h2b{height:31.526842px;}
.hd{height:32.565965px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h24{height:37.334628px;}
.hc{height:37.993262px;}
.hb{height:38.035105px;}
.h14{height:41.250077px;}
.h2c{height:41.482876px;}
.he{height:43.421105px;}
.hf{height:43.468925px;}
.h18{height:43.622227px;}
.h4{height:43.815515px;}
.h16{height:44.536816px;}
.h11{height:48.848947px;}
.h10{height:48.902746px;}
.h19{height:50.229492px;}
.h2{height:50.930649px;}
.h13{height:54.276245px;}
.h12{height:54.336020px;}
.h17{height:55.922168px;}
.h21{height:56.708895px;}
.h1f{height:57.897861px;}
.h7{height:62.997506px;}
.h22{height:65.298340px;}
.h2a{height:71.813105px;}
.h20{height:72.698818px;}
.h27{height:72.754925px;}
.h6{height:78.115277px;}
.h26{height:85.549756px;}
.h3{height:87.128261px;}
.h1a{height:96.244652px;}
.h1b{height:96.599360px;}
.h5{height:97.805491px;}
.h29{height:100.205105px;}
.h28{height:100.252925px;}
.h1c{height:136.921844px;}
.h15{height:435.214500px;}
.h25{height:680.099550px;}
.h1e{height:908.739000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:195.622827px;}
.w5{width:640.050450px;}
.w6{width:649.515750px;}
.w4{width:793.130850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x43{left:-252.372900px;}
.x4b{left:-246.548250px;}
.x0{left:0.000000px;}
.x20{left:2.468850px;}
.x4c{left:7.692750px;}
.x27{left:13.718850px;}
.x4{left:29.274117px;}
.x29{left:31.898850px;}
.x22{left:34.328850px;}
.x23{left:36.039858px;}
.x2c{left:39.006537px;}
.x2b{left:40.897311px;}
.x44{left:43.284546px;}
.x2a{left:46.928850px;}
.x4d{left:49.110613px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:59.946413px;}
.x3a{left:68.617500px;}
.x2f{left:85.890000px;}
.x37{left:97.740000px;}
.x38{left:112.236000px;}
.x34{left:115.524000px;}
.x3c{left:117.903000px;}
.x3b{left:119.559000px;}
.x4a{left:121.699500px;}
.x42{left:126.432000px;}
.x39{left:128.400000px;}
.x31{left:137.793000px;}
.x30{left:143.107500px;}
.x24{left:150.340002px;}
.xd1{left:152.116500px;}
.x26{left:172.748850px;}
.x25{left:175.448850px;}
.x2e{left:198.038256px;}
.xd2{left:225.172500px;}
.x2d{left:229.898850px;}
.xa9{left:248.655000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xc1{left:255.280500px;}
.x52{left:260.844000px;}
.x35{left:264.535500px;}
.x5a{left:267.429000px;}
.x68{left:269.091000px;}
.x6{left:271.221000px;}
.x65{left:273.502500px;}
.x62{left:275.731500px;}
.x5d{left:278.440500px;}
.xb{left:282.786000px;}
.x36{left:286.162500px;}
.x66{left:287.592000px;}
.x63{left:289.146000px;}
.x61{left:292.194000px;}
.x3d{left:294.952500px;}
.x5f{left:298.087500px;}
.x50{left:301.704000px;}
.x53{left:302.946000px;}
.x3e{left:304.182000px;}
.x55{left:305.935500px;}
.x54{left:307.788000px;}
.x8{left:310.051500px;}
.xc8{left:313.767000px;}
.x51{left:314.893500px;}
.x9c{left:320.301000px;}
.xaf{left:324.921000px;}
.x85{left:326.098500px;}
.x89{left:331.083000px;}
.x9d{left:335.244000px;}
.x8a{left:336.534000px;}
.xb9{left:338.442000px;}
.x6f{left:339.711000px;}
.x86{left:341.043000px;}
.x4e{left:345.765000px;}
.xd4{left:348.153000px;}
.x8b{left:351.478500px;}
.xba{left:353.386500px;}
.x4f{left:354.996000px;}
.x48{left:357.270000px;}
.xb5{left:359.037000px;}
.xa6{left:366.738000px;}
.x49{left:371.776500px;}
.x77{left:373.747500px;}
.xb6{left:377.650500px;}
.x72{left:378.819000px;}
.xc{left:385.656000px;}
.x16{left:387.166500px;}
.x78{left:388.692000px;}
.xc7{left:392.037000px;}
.xd{left:393.129000px;}
.xe{left:396.808500px;}
.x99{left:398.227500px;}
.x80{left:401.685000px;}
.xf{left:404.280000px;}
.x81{left:409.156500px;}
.x9a{left:413.172000px;}
.x3f{left:414.223500px;}
.x6d{left:416.242500px;}
.x82{left:424.228500px;}
.x6e{left:431.187000px;}
.xd7{left:436.069500px;}
.x70{left:443.947500px;}
.xa3{left:446.832000px;}
.xb0{left:448.771500px;}
.xb1{left:455.577000px;}
.x12{left:469.264500px;}
.x8c{left:471.493500px;}
.xcd{left:474.795000px;}
.x13{left:476.737500px;}
.x56{left:478.245000px;}
.x14{left:480.397500px;}
.xc3{left:483.088500px;}
.x8d{left:486.436500px;}
.x15{left:487.870500px;}
.xc9{left:490.362000px;}
.xc4{left:492.319500px;}
.x9{left:494.967000px;}
.xcc{left:500.799000px;}
.x1e{left:520.447500px;}
.xce{left:523.030500px;}
.x92{left:525.876000px;}
.xca{left:527.631000px;}
.xa7{left:531.508500px;}
.xa{left:538.381500px;}
.x93{left:540.819000px;}
.x28{left:543.458715px;}
.x94{left:544.552500px;}
.xa8{left:548.604000px;}
.x73{left:550.825500px;}
.x79{left:553.738500px;}
.xa0{left:557.415000px;}
.x95{left:559.495500px;}
.xaa{left:563.761500px;}
.x74{left:565.768500px;}
.x1f{left:568.686000px;}
.x7a{left:572.385000px;}
.x7b{left:579.142500px;}
.xbb{left:581.919000px;}
.x91{left:584.251500px;}
.x58{left:587.049000px;}
.x57{left:591.757500px;}
.x7c{left:594.087000px;}
.x1a{left:600.109500px;}
.xa1{left:604.668000px;}
.xb2{left:606.081000px;}
.x1b{left:607.582500px;}
.x96{left:609.144000px;}
.x8f{left:610.369500px;}
.x1c{left:614.941500px;}
.xae{left:616.768500px;}
.x90{left:625.314000px;}
.x1d{left:629.886000px;}
.x83{left:631.275000px;}
.x40{left:634.125000px;}
.x32{left:636.480000px;}
.x41{left:643.356000px;}
.xbd{left:644.715000px;}
.x84{left:646.219500px;}
.xab{left:649.066500px;}
.xb7{left:651.003000px;}
.xbe{left:653.944500px;}
.xa2{left:656.194500px;}
.xcf{left:657.853500px;}
.xac{left:660.076500px;}
.xb8{left:669.507000px;}
.x9b{left:677.847000px;}
.xbf{left:684.640500px;}
.xd3{left:686.529000px;}
.xc5{left:687.567000px;}
.x45{left:692.280932px;}
.x5b{left:695.074500px;}
.xc6{left:696.798000px;}
.x69{left:708.525000px;}
.x87{left:710.182500px;}
.x17{left:711.969000px;}
.x33{left:713.356500px;}
.x9e{left:718.314000px;}
.x88{left:725.127000px;}
.x97{left:728.400000px;}
.x9f{left:733.258500px;}
.xd5{left:737.926500px;}
.x98{left:743.343000px;}
.xd0{left:751.312500px;}
.x59{left:755.877000px;}
.xcb{left:757.645500px;}
.xd8{left:759.784500px;}
.x18{left:763.923000px;}
.xb4{left:765.138000px;}
.x64{left:771.981000px;}
.x60{left:773.475000px;}
.xc0{left:774.963000px;}
.x5e{left:776.464500px;}
.x67{left:777.958500px;}
.x5c{left:780.946500px;}
.x46{left:782.773500px;}
.xbc{left:784.453500px;}
.xd9{left:786.684000px;}
.x21{left:787.718715px;}
.x6a{left:789.145500px;}
.x47{left:791.080500px;}
.x19{left:792.736500px;}
.xad{left:794.401500px;}
.xd6{left:795.498000px;}
.x7d{left:796.723500px;}
.x75{left:798.657000px;}
.x6c{left:802.722000px;}
.x6b{left:804.088500px;}
.x7f{left:805.786500px;}
.xb3{left:808.552500px;}
.x7e{left:811.668000px;}
.x76{left:813.600000px;}
.x8e{left:815.263500px;}
.x71{left:816.951000px;}
.xa4{left:821.416500px;}
.x10{left:825.169500px;}
.xa5{left:828.222000px;}
.x11{left:832.642500px;}
.xc2{left:835.332000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-6.752000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:25.237333pt;}
.v3{vertical-align:35.842208pt;}
.v5{vertical-align:45.184000pt;}
.v7{vertical-align:50.474667pt;}
.ls6a{letter-spacing:-0.305677pt;}
.ls68{letter-spacing:-0.243152pt;}
.ls2f{letter-spacing:-0.197728pt;}
.ls2d{letter-spacing:-0.165664pt;}
.ls2e{letter-spacing:-0.160320pt;}
.ls6d{letter-spacing:-0.152838pt;}
.ls28{letter-spacing:-0.128256pt;}
.ls52{letter-spacing:-0.125050pt;}
.ls34{letter-spacing:-0.112224pt;}
.ls51{letter-spacing:-0.111155pt;}
.ls4f{letter-spacing:-0.104208pt;}
.ls2a{letter-spacing:-0.101536pt;}
.ls4b{letter-spacing:-0.099590pt;}
.ls4e{letter-spacing:-0.097261pt;}
.ls2c{letter-spacing:-0.096192pt;}
.ls38{letter-spacing:-0.085504pt;}
.ls69{letter-spacing:-0.083366pt;}
.ls21{letter-spacing:-0.080864pt;}
.ls67{letter-spacing:-0.076419pt;}
.ls6f{letter-spacing:-0.069472pt;}
.ls27{letter-spacing:-0.058784pt;}
.ls6e{letter-spacing:-0.048630pt;}
.ls36{letter-spacing:-0.048096pt;}
.ls50{letter-spacing:-0.041683pt;}
.ls26{letter-spacing:-0.037408pt;}
.ls24{letter-spacing:-0.033600pt;}
.ls39{letter-spacing:-0.032064pt;}
.ls53{letter-spacing:-0.024960pt;}
.ls6b{letter-spacing:-0.020842pt;}
.ls23{letter-spacing:-0.019200pt;}
.ls4d{letter-spacing:-0.013894pt;}
.ls22{letter-spacing:-0.012768pt;}
.ls29{letter-spacing:-0.010688pt;}
.ls70{letter-spacing:-0.006947pt;}
.ls54{letter-spacing:-0.006240pt;}
.ls4c{letter-spacing:-0.005533pt;}
.lsb{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000540pt;}
.ls82{letter-spacing:0.000583pt;}
.ls9d{letter-spacing:0.000600pt;}
.ls1e{letter-spacing:0.000627pt;}
.ls91{letter-spacing:0.000711pt;}
.ls85{letter-spacing:0.000874pt;}
.ls1f{letter-spacing:0.000887pt;}
.ls94{letter-spacing:0.001007pt;}
.ls9b{letter-spacing:0.001026pt;}
.ls89{letter-spacing:0.001140pt;}
.ls7c{letter-spacing:0.001203pt;}
.ls83{letter-spacing:0.001284pt;}
.ls77{letter-spacing:0.001294pt;}
.ls8a{letter-spacing:0.001472pt;}
.lsf{letter-spacing:0.001674pt;}
.ls64{letter-spacing:0.002153pt;}
.ls61{letter-spacing:0.002394pt;}
.ls8c{letter-spacing:0.002525pt;}
.ls7a{letter-spacing:0.002533pt;}
.ls63{letter-spacing:0.003595pt;}
.ls88{letter-spacing:0.003620pt;}
.ls8e{letter-spacing:0.004226pt;}
.ls9c{letter-spacing:0.004267pt;}
.ls18{letter-spacing:0.005344pt;}
.ls43{letter-spacing:0.006240pt;}
.ls41{letter-spacing:0.013894pt;}
.ls14{letter-spacing:0.014400pt;}
.ls46{letter-spacing:0.018720pt;}
.ls45{letter-spacing:0.024960pt;}
.ls19{letter-spacing:0.026720pt;}
.ls3f{letter-spacing:0.027789pt;}
.ls48{letter-spacing:0.031200pt;}
.ls1c{letter-spacing:0.032064pt;}
.ls16{letter-spacing:0.033600pt;}
.ls1a{letter-spacing:0.037408pt;}
.ls42{letter-spacing:0.037440pt;}
.ls11{letter-spacing:0.038304pt;}
.ls5b{letter-spacing:0.041683pt;}
.ls1b{letter-spacing:0.042752pt;}
.ls15{letter-spacing:0.043200pt;}
.ls59{letter-spacing:0.048630pt;}
.ls44{letter-spacing:0.049920pt;}
.ls5a{letter-spacing:0.055578pt;}
.ls57{letter-spacing:0.056160pt;}
.ls17{letter-spacing:0.058784pt;}
.ls3a{letter-spacing:0.060861pt;}
.ls5f{letter-spacing:0.062525pt;}
.ls3d{letter-spacing:0.069472pt;}
.ls58{letter-spacing:0.074880pt;}
.ls40{letter-spacing:0.076419pt;}
.ls2b{letter-spacing:0.085504pt;}
.ls3e{letter-spacing:0.090314pt;}
.ls47{letter-spacing:0.093600pt;}
.ls37{letter-spacing:0.101536pt;}
.ls56{letter-spacing:0.106080pt;}
.ls25{letter-spacing:0.106880pt;}
.ls55{letter-spacing:0.112320pt;}
.ls5c{letter-spacing:0.118102pt;}
.ls30{letter-spacing:0.122912pt;}
.ls6c{letter-spacing:0.131997pt;}
.ls35{letter-spacing:0.133600pt;}
.ls33{letter-spacing:0.138944pt;}
.ls31{letter-spacing:0.149632pt;}
.ls13{letter-spacing:0.153216pt;}
.ls32{letter-spacing:0.160320pt;}
.ls12{letter-spacing:0.161728pt;}
.ls60{letter-spacing:0.166733pt;}
.ls5e{letter-spacing:0.180627pt;}
.ls3c{letter-spacing:0.210246pt;}
.ls3b{letter-spacing:0.221312pt;}
.ls5d{letter-spacing:0.222310pt;}
.ls73{letter-spacing:0.509060pt;}
.ls75{letter-spacing:0.514393pt;}
.ls78{letter-spacing:1.083647pt;}
.ls7b{letter-spacing:1.105398pt;}
.lsc{letter-spacing:1.133683pt;}
.ls62{letter-spacing:1.229113pt;}
.ls65{letter-spacing:1.370931pt;}
.ls10{letter-spacing:1.382066pt;}
.ls84{letter-spacing:1.393296pt;}
.ls20{letter-spacing:1.410151pt;}
.ls4{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls8b{letter-spacing:3.163733pt;}
.ls6{letter-spacing:9.298933pt;}
.lsa{letter-spacing:10.626533pt;}
.ls8{letter-spacing:10.795330pt;}
.ls76{letter-spacing:11.133060pt;}
.ls74{letter-spacing:11.138393pt;}
.ls5{letter-spacing:11.528267pt;}
.ls98{letter-spacing:11.898395pt;}
.ls8d{letter-spacing:11.954133pt;}
.ls72{letter-spacing:11.956267pt;}
.ls8f{letter-spacing:11.959467pt;}
.ls9a{letter-spacing:11.983158pt;}
.ls4a{letter-spacing:12.005940pt;}
.ls49{letter-spacing:12.010328pt;}
.ls9e{letter-spacing:12.047491pt;}
.ls93{letter-spacing:12.072011pt;}
.ls97{letter-spacing:12.093285pt;}
.ls99{letter-spacing:12.155573pt;}
.ls86{letter-spacing:13.149717pt;}
.lsd{letter-spacing:13.177199pt;}
.ls7f{letter-spacing:13.218354pt;}
.ls1{letter-spacing:13.283733pt;}
.ls7e{letter-spacing:13.287200pt;}
.ls66{letter-spacing:13.522771pt;}
.ls81{letter-spacing:13.535325pt;}
.ls1d{letter-spacing:13.549136pt;}
.ls87{letter-spacing:13.923096pt;}
.ls96{letter-spacing:14.748651pt;}
.ls90{letter-spacing:14.823467pt;}
.ls92{letter-spacing:15.076093pt;}
.ls7d{letter-spacing:15.746599pt;}
.ls9f{letter-spacing:17.425192pt;}
.ls95{letter-spacing:17.456565pt;}
.ls80{letter-spacing:17.772603pt;}
.ls0{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ls79{letter-spacing:176.291806pt;}
.ls71{letter-spacing:981.423997pt;}
.ws9f{word-spacing:-17.499997pt;}
.ws9e{word-spacing:-17.368000pt;}
.ws82{word-spacing:-15.600000pt;}
.ws81{word-spacing:-14.053312pt;}
.ws4f{word-spacing:-13.397408pt;}
.ws4e{word-spacing:-13.349312pt;}
.ws2c{word-spacing:-13.283467pt;}
.wsa1{word-spacing:-11.955200pt;}
.ws4d{word-spacing:-10.801728pt;}
.ws17{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws50{word-spacing:-8.000000pt;}
.ws168{word-spacing:-3.347456pt;}
.ws8f{word-spacing:-3.292973pt;}
.ws92{word-spacing:-3.230448pt;}
.ws166{word-spacing:-3.012710pt;}
.ws132{word-spacing:-2.922363pt;}
.ws8e{word-spacing:-2.827510pt;}
.ws8c{word-spacing:-2.702461pt;}
.ws8d{word-spacing:-2.688566pt;}
.ws7c{word-spacing:-2.511680pt;}
.ws33{word-spacing:-2.391024pt;}
.ws134{word-spacing:-2.337890pt;}
.ws162{word-spacing:-2.295398pt;}
.ws135{word-spacing:-2.284756pt;}
.ws111{word-spacing:-2.231622pt;}
.wsa2{word-spacing:-2.178489pt;}
.ws3b{word-spacing:-2.019087pt;}
.ws10c{word-spacing:-1.965953pt;}
.ws192{word-spacing:-1.960653pt;}
.ws94{word-spacing:-1.931322pt;}
.ws15e{word-spacing:-1.806551pt;}
.ws18b{word-spacing:-1.769370pt;}
.ws37{word-spacing:-1.753418pt;}
.ws7{word-spacing:-1.696326pt;}
.ws15b{word-spacing:-1.594016pt;}
.ws59{word-spacing:-1.540882pt;}
.ws12a{word-spacing:-1.487748pt;}
.ws80{word-spacing:-1.485632pt;}
.ws42{word-spacing:-1.434614pt;}
.ws7f{word-spacing:-1.432192pt;}
.ws144{word-spacing:-1.381481pt;}
.ws143{word-spacing:-1.328347pt;}
.ws6{word-spacing:-1.175671pt;}
.ws150{word-spacing:-1.168945pt;}
.ws11c{word-spacing:-1.009543pt;}
.ws1b2{word-spacing:-1.004237pt;}
.ws38{word-spacing:-0.797008pt;}
.ws159{word-spacing:-0.690740pt;}
.ws120{word-spacing:-0.546823pt;}
.ws121{word-spacing:-0.536836pt;}
.ws11f{word-spacing:-0.531339pt;}
.ws19c{word-spacing:-0.526029pt;}
.ws122{word-spacing:-0.522494pt;}
.wsb4{word-spacing:-0.486304pt;}
.ws1f{word-spacing:-0.478208pt;}
.ws152{word-spacing:-0.478205pt;}
.wsba{word-spacing:-0.472410pt;}
.ws1d{word-spacing:-0.430387pt;}
.ws15d{word-spacing:-0.425071pt;}
.wsb3{word-spacing:-0.423779pt;}
.ws31{word-spacing:-0.371937pt;}
.wsac{word-spacing:-0.354307pt;}
.ws16a{word-spacing:-0.337093pt;}
.ws16b{word-spacing:-0.334746pt;}
.ws93{word-spacing:-0.333466pt;}
.ws114{word-spacing:-0.318803pt;}
.ws85{word-spacing:-0.309837pt;}
.ws15c{word-spacing:-0.272796pt;}
.ws4b{word-spacing:-0.265669pt;}
.wsa0{word-spacing:-0.239104pt;}
.ws5b{word-spacing:-0.234080pt;}
.ws44{word-spacing:-0.224826pt;}
.ws34{word-spacing:-0.212535pt;}
.ws179{word-spacing:-0.211260pt;}
.ws45{word-spacing:-0.208800pt;}
.ws13d{word-spacing:-0.202159pt;}
.ws141{word-spacing:-0.197578pt;}
.ws83{word-spacing:-0.191283pt;}
.ws97{word-spacing:-0.174720pt;}
.ws29{word-spacing:-0.159402pt;}
.ws28{word-spacing:-0.148782pt;}
.ws6c{word-spacing:-0.144288pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws74{word-spacing:-0.128256pt;}
.ws155{word-spacing:-0.127233pt;}
.ws199{word-spacing:-0.119608pt;}
.ws1b3{word-spacing:-0.109113pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws84{word-spacing:-0.094058pt;}
.ws133{word-spacing:-0.087848pt;}
.wsec{word-spacing:-0.085014pt;}
.ws1a3{word-spacing:-0.070637pt;}
.ws72{word-spacing:-0.069472pt;}
.ws5a{word-spacing:-0.068096pt;}
.ws73{word-spacing:-0.058784pt;}
.ws75{word-spacing:-0.053440pt;}
.ws4{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws71{word-spacing:-0.042752pt;}
.ws15{word-spacing:-0.042507pt;}
.ws1c5{word-spacing:-0.024806pt;}
.ws77{word-spacing:-0.021376pt;}
.wsc4{word-spacing:-0.019911pt;}
.ws43{word-spacing:-0.019703pt;}
.wsc3{word-spacing:-0.018245pt;}
.ws1a8{word-spacing:-0.011785pt;}
.ws1af{word-spacing:-0.011179pt;}
.ws19f{word-spacing:-0.009771pt;}
.ws11b{word-spacing:-0.008751pt;}
.ws17e{word-spacing:-0.007817pt;}
.ws1ad{word-spacing:-0.007475pt;}
.ws16c{word-spacing:-0.006835pt;}
.ws1b7{word-spacing:-0.006750pt;}
.ws1a1{word-spacing:-0.006340pt;}
.ws13e{word-spacing:-0.006107pt;}
.ws1cc{word-spacing:-0.006059pt;}
.ws1c9{word-spacing:-0.005999pt;}
.ws13f{word-spacing:-0.005803pt;}
.ws16e{word-spacing:-0.005760pt;}
.ws6a{word-spacing:-0.005344pt;}
.wsc2{word-spacing:-0.005257pt;}
.ws1b1{word-spacing:-0.005214pt;}
.wsc0{word-spacing:-0.004990pt;}
.ws55{word-spacing:-0.004873pt;}
.ws182{word-spacing:-0.003635pt;}
.ws119{word-spacing:-0.003193pt;}
.ws17b{word-spacing:-0.003081pt;}
.wsa3{word-spacing:-0.003050pt;}
.ws1b4{word-spacing:-0.002628pt;}
.ws2{word-spacing:-0.002163pt;}
.ws19d{word-spacing:-0.002057pt;}
.wsa4{word-spacing:-0.001770pt;}
.wsa5{word-spacing:-0.001333pt;}
.wsc1{word-spacing:-0.001324pt;}
.ws1bd{word-spacing:-0.001323pt;}
.wsbf{word-spacing:-0.000800pt;}
.ws1a6{word-spacing:-0.000580pt;}
.ws1b6{word-spacing:-0.000350pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000052pt;}
.ws32{word-spacing:0.000205pt;}
.ws1a7{word-spacing:0.001143pt;}
.ws1ae{word-spacing:0.001519pt;}
.ws1a0{word-spacing:0.002432pt;}
.wsa{word-spacing:0.003729pt;}
.ws17f{word-spacing:0.012996pt;}
.wsb1{word-spacing:0.034736pt;}
.ws3e{word-spacing:0.035154pt;}
.wsb8{word-spacing:0.041683pt;}
.wsbb{word-spacing:0.042105pt;}
.ws10b{word-spacing:0.046354pt;}
.ws108{word-spacing:0.046468pt;}
.ws54{word-spacing:0.047821pt;}
.wsb9{word-spacing:0.048630pt;}
.ws109{word-spacing:0.048916pt;}
.ws10a{word-spacing:0.049525pt;}
.ws2d{word-spacing:0.053134pt;}
.wsbc{word-spacing:0.053396pt;}
.ws6e{word-spacing:0.053440pt;}
.ws174{word-spacing:0.056339pt;}
.ws178{word-spacing:0.064388pt;}
.ws173{word-spacing:0.065205pt;}
.ws2e{word-spacing:0.069251pt;}
.wsb2{word-spacing:0.069472pt;}
.ws6b{word-spacing:0.074816pt;}
.ws68{word-spacing:0.080160pt;}
.ws23{word-spacing:0.095642pt;}
.ws175{word-spacing:0.098674pt;}
.wsa6{word-spacing:0.099840pt;}
.wsa7{word-spacing:0.106080pt;}
.ws2a{word-spacing:0.106268pt;}
.ws60{word-spacing:0.115200pt;}
.ws9c{word-spacing:0.118560pt;}
.ws61{word-spacing:0.124800pt;}
.wsaa{word-spacing:0.125050pt;}
.ws76{word-spacing:0.128256pt;}
.wsaf{word-spacing:0.131997pt;}
.ws196{word-spacing:0.135842pt;}
.wsa9{word-spacing:0.137280pt;}
.ws10f{word-spacing:0.141368pt;}
.ws167{word-spacing:0.143462pt;}
.ws170{word-spacing:0.152719pt;}
.wsb0{word-spacing:0.152838pt;}
.wsa8{word-spacing:0.156000pt;}
.ws107{word-spacing:0.159052pt;}
.ws2b{word-spacing:0.159402pt;}
.wsb6{word-spacing:0.159786pt;}
.ws98{word-spacing:0.162240pt;}
.ws16{word-spacing:0.170029pt;}
.ws131{word-spacing:0.174298pt;}
.ws95{word-spacing:0.174720pt;}
.wsb7{word-spacing:0.180627pt;}
.ws9d{word-spacing:0.180960pt;}
.ws69{word-spacing:0.181696pt;}
.ws171{word-spacing:0.184204pt;}
.wsb{word-spacing:0.185968pt;}
.ws99{word-spacing:0.187200pt;}
.wsab{word-spacing:0.187574pt;}
.ws51{word-spacing:0.191283pt;}
.ws9b{word-spacing:0.193440pt;}
.wsae{word-spacing:0.194522pt;}
.ws123{word-spacing:0.205235pt;}
.ws96{word-spacing:0.205920pt;}
.ws88{word-spacing:0.208416pt;}
.ws125{word-spacing:0.208708pt;}
.ws41{word-spacing:0.212535pt;}
.ws124{word-spacing:0.213543pt;}
.ws89{word-spacing:0.215363pt;}
.ws9a{word-spacing:0.218400pt;}
.ws1c2{word-spacing:0.224913pt;}
.ws1e{word-spacing:0.239104pt;}
.ws6f{word-spacing:0.240480pt;}
.ws6d{word-spacing:0.245824pt;}
.wsd{word-spacing:0.260355pt;}
.wsb5{word-spacing:0.263994pt;}
.ws58{word-spacing:0.265669pt;}
.ws21{word-spacing:0.265757pt;}
.ws16f{word-spacing:0.267874pt;}
.ws70{word-spacing:0.277888pt;}
.ws22{word-spacing:0.286925pt;}
.ws62{word-spacing:0.293920pt;}
.wsfe{word-spacing:0.318803pt;}
.ws165{word-spacing:0.334746pt;}
.wsad{word-spacing:0.354307pt;}
.ws14f{word-spacing:0.371937pt;}
.ws180{word-spacing:0.382566pt;}
.ws115{word-spacing:0.425071pt;}
.ws164{word-spacing:0.430387pt;}
.ws64{word-spacing:0.459584pt;}
.wsff{word-spacing:0.478205pt;}
.ws1bf{word-spacing:0.478208pt;}
.ws15f{word-spacing:0.500000pt;}
.wsc8{word-spacing:0.515001pt;}
.wse6{word-spacing:0.517801pt;}
.wsd9{word-spacing:0.518173pt;}
.wsc7{word-spacing:0.518439pt;}
.wse9{word-spacing:0.520601pt;}
.wsce{word-spacing:0.520973pt;}
.wsd1{word-spacing:0.521239pt;}
.wse2{word-spacing:0.525756pt;}
.wsdf{word-spacing:0.526216pt;}
.wse1{word-spacing:0.527200pt;}
.wsd0{word-spacing:0.528556pt;}
.wsc9{word-spacing:0.528749pt;}
.ws65{word-spacing:0.529056pt;}
.wscd{word-spacing:0.532000pt;}
.wscb{word-spacing:0.532267pt;}
.wsc6{word-spacing:0.532533pt;}
.wsd2{word-spacing:0.536670pt;}
.wse4{word-spacing:0.539010pt;}
.wse8{word-spacing:0.539470pt;}
.wsdd{word-spacing:0.542004pt;}
.wsde{word-spacing:0.542270pt;}
.wsca{word-spacing:0.547053pt;}
.wsdb{word-spacing:0.547426pt;}
.wse3{word-spacing:0.550226pt;}
.ws47{word-spacing:0.637606pt;}
.ws14e{word-spacing:0.659902pt;}
.ws1be{word-spacing:0.669491pt;}
.ws2f{word-spacing:0.690740pt;}
.ws53{word-spacing:0.717312pt;}
.ws63{word-spacing:0.758848pt;}
.ws186{word-spacing:0.765133pt;}
.ws185{word-spacing:0.782266pt;}
.ws19{word-spacing:0.812954pt;}
.ws126{word-spacing:0.850142pt;}
.ws103{word-spacing:0.956410pt;}
.ws7a{word-spacing:0.999328pt;}
.ws52{word-spacing:1.004237pt;}
.ws147{word-spacing:1.009543pt;}
.ws7b{word-spacing:1.042080pt;}
.ws184{word-spacing:1.052058pt;}
.ws138{word-spacing:1.062677pt;}
.ws1ba{word-spacing:1.099878pt;}
.ws3a{word-spacing:1.115811pt;}
.ws3f{word-spacing:1.168945pt;}
.ws142{word-spacing:1.222079pt;}
.ws1ac{word-spacing:1.243341pt;}
.ws49{word-spacing:1.275213pt;}
.ws188{word-spacing:1.291162pt;}
.ws113{word-spacing:1.434614pt;}
.ws160{word-spacing:1.487748pt;}
.ws110{word-spacing:1.540882pt;}
.ws1ab{word-spacing:1.578086pt;}
.ws13a{word-spacing:1.594016pt;}
.ws13b{word-spacing:1.607507pt;}
.ws13c{word-spacing:1.611633pt;}
.ws139{word-spacing:1.647150pt;}
.ws136{word-spacing:1.700284pt;}
.ws78{word-spacing:1.715424pt;}
.ws19e{word-spacing:1.721549pt;}
.ws140{word-spacing:1.753418pt;}
.ws1c8{word-spacing:1.769370pt;}
.wsc{word-spacing:1.785293pt;}
.ws79{word-spacing:1.790240pt;}
.ws3d{word-spacing:1.806551pt;}
.ws105{word-spacing:1.828133pt;}
.ws106{word-spacing:1.859685pt;}
.ws130{word-spacing:1.871643pt;}
.ws118{word-spacing:1.912819pt;}
.ws67{word-spacing:1.939872pt;}
.ws149{word-spacing:2.019087pt;}
.ws36{word-spacing:2.178489pt;}
.ws137{word-spacing:2.231622pt;}
.wsee{word-spacing:2.247578pt;}
.ws7e{word-spacing:2.276544pt;}
.ws3c{word-spacing:2.284756pt;}
.ws1a{word-spacing:2.343219pt;}
.ws11d{word-spacing:2.391024pt;}
.ws7d{word-spacing:2.404800pt;}
.ws24{word-spacing:2.438861pt;}
.ws101{word-spacing:2.444158pt;}
.ws66{word-spacing:2.452896pt;}
.wsed{word-spacing:2.486682pt;}
.ws148{word-spacing:2.497292pt;}
.ws91{word-spacing:2.528781pt;}
.ws151{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws117{word-spacing:2.580908pt;}
.ws116{word-spacing:2.603559pt;}
.ws187{word-spacing:2.630144pt;}
.ws46{word-spacing:2.656693pt;}
.ws1cd{word-spacing:2.677965pt;}
.ws14c{word-spacing:2.709827pt;}
.ws161{word-spacing:2.725786pt;}
.ws90{word-spacing:2.730250pt;}
.ws19a{word-spacing:2.754884pt;}
.ws12c{word-spacing:2.762961pt;}
.ws1a4{word-spacing:2.822944pt;}
.ws1c0{word-spacing:2.841482pt;}
.ws1c1{word-spacing:2.844014pt;}
.ws18d{word-spacing:2.860476pt;}
.ws1ce{word-spacing:2.860945pt;}
.ws25{word-spacing:2.861926pt;}
.ws1b0{word-spacing:2.862524pt;}
.ws1a5{word-spacing:2.863420pt;}
.ws1b9{word-spacing:2.865382pt;}
.ws1a9{word-spacing:2.865809pt;}
.ws177{word-spacing:2.865877pt;}
.ws17d{word-spacing:2.866475pt;}
.ws19b{word-spacing:2.866654pt;}
.ws17c{word-spacing:2.866722pt;}
.ws17a{word-spacing:2.867174pt;}
.ws194{word-spacing:2.868702pt;}
.ws1cb{word-spacing:2.868813pt;}
.ws16d{word-spacing:2.868898pt;}
.ws112{word-spacing:2.869229pt;}
.ws172{word-spacing:2.869248pt;}
.ws1b8{word-spacing:2.869274pt;}
.ws193{word-spacing:2.869794pt;}
.ws183{word-spacing:2.870613pt;}
.ws1c4{word-spacing:2.871211pt;}
.ws18c{word-spacing:2.871646pt;}
.ws18e{word-spacing:2.917069pt;}
.ws1b5{word-spacing:2.928423pt;}
.ws86{word-spacing:2.952560pt;}
.ws4c{word-spacing:2.975497pt;}
.ws1aa{word-spacing:2.999261pt;}
.ws197{word-spacing:3.056680pt;}
.ws198{word-spacing:3.060531pt;}
.ws1a2{word-spacing:3.077700pt;}
.ws40{word-spacing:3.134898pt;}
.ws11a{word-spacing:3.184677pt;}
.ws26{word-spacing:3.188032pt;}
.ws1c3{word-spacing:3.208471pt;}
.ws48{word-spacing:3.294300pt;}
.ws5e{word-spacing:3.340800pt;}
.ws5d{word-spacing:3.345600pt;}
.ws18f{word-spacing:3.347456pt;}
.ws5c{word-spacing:3.379200pt;}
.ws5f{word-spacing:3.393600pt;}
.ws100{word-spacing:3.400567pt;}
.ws128{word-spacing:3.433616pt;}
.ws87{word-spacing:3.452758pt;}
.ws129{word-spacing:3.453701pt;}
.ws127{word-spacing:3.461390pt;}
.ws14a{word-spacing:3.559969pt;}
.ws195{word-spacing:3.777843pt;}
.ws169{word-spacing:3.921306pt;}
.ws30{word-spacing:3.931906pt;}
.ws153{word-spacing:4.197575pt;}
.wsef{word-spacing:4.203964pt;}
.wsf0{word-spacing:4.208230pt;}
.ws1c6{word-spacing:4.303872pt;}
.ws190{word-spacing:4.351693pt;}
.ws15a{word-spacing:4.356977pt;}
.ws146{word-spacing:4.463245pt;}
.ws181{word-spacing:4.495155pt;}
.ws4a{word-spacing:4.516379pt;}
.ws39{word-spacing:4.622646pt;}
.ws1bb{word-spacing:4.628154pt;}
.ws176{word-spacing:4.638618pt;}
.ws1ca{word-spacing:4.686438pt;}
.ws18a{word-spacing:4.829901pt;}
.ws14b{word-spacing:5.047717pt;}
.ws163{word-spacing:5.069005pt;}
.ws57{word-spacing:5.312000pt;}
.wseb{word-spacing:5.355907pt;}
.ws102{word-spacing:5.366521pt;}
.ws13{word-spacing:5.393072pt;}
.ws1c7{word-spacing:5.451571pt;}
.ws14{word-spacing:5.467459pt;}
.wsfd{word-spacing:5.472788pt;}
.ws191{word-spacing:5.499392pt;}
.ws158{word-spacing:5.685324pt;}
.ws157{word-spacing:5.791591pt;}
.ws154{word-spacing:5.897859pt;}
.ws145{word-spacing:6.057261pt;}
.ws12e{word-spacing:6.163529pt;}
.ws12d{word-spacing:6.216662pt;}
.ws10d{word-spacing:6.269796pt;}
.ws104{word-spacing:6.376064pt;}
.ws11e{word-spacing:6.588599pt;}
.ws8b{word-spacing:6.676259pt;}
.ws8a{word-spacing:6.808256pt;}
.ws35{word-spacing:6.907403pt;}
.ws189{word-spacing:7.173120pt;}
.ws12b{word-spacing:7.545009pt;}
.ws11{word-spacing:7.699075pt;}
.ws156{word-spacing:8.607686pt;}
.ws12f{word-spacing:9.289335pt;}
.ws56{word-spacing:10.583750pt;}
.wsbe{word-spacing:10.584293pt;}
.ws14d{word-spacing:10.626773pt;}
.ws1bc{word-spacing:12.289946pt;}
.ws8{word-spacing:13.763148pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws10{word-spacing:15.732893pt;}
.ws10e{word-spacing:22.369358pt;}
.ws1{word-spacing:23.814758pt;}
.ws12{word-spacing:24.399002pt;}
.wsf2{word-spacing:65.071037pt;}
.wscc{word-spacing:66.767200pt;}
.wse5{word-spacing:75.337333pt;}
.wse7{word-spacing:75.337600pt;}
.wsc5{word-spacing:75.353441pt;}
.wsd8{word-spacing:77.396533pt;}
.wsd4{word-spacing:85.966933pt;}
.wsdc{word-spacing:88.014933pt;}
.wsd6{word-spacing:88.020533pt;}
.wscf{word-spacing:95.140533pt;}
.wsea{word-spacing:96.590933pt;}
.wsd5{word-spacing:96.596267pt;}
.wsd7{word-spacing:98.644267pt;}
.wse0{word-spacing:98.644533pt;}
.wsd3{word-spacing:105.764533pt;}
.wsda{word-spacing:105.769867pt;}
.wsfb{word-spacing:150.645517pt;}
.wsfc{word-spacing:180.570586pt;}
.wsf3{word-spacing:210.878219pt;}
.wsfa{word-spacing:216.404155pt;}
.wsf8{word-spacing:220.909918pt;}
.wsf4{word-spacing:220.952426pt;}
.wsf9{word-spacing:221.498251pt;}
.wsf7{word-spacing:221.930091pt;}
.wsf6{word-spacing:231.579226pt;}
.wsf1{word-spacing:237.626498pt;}
.wsf5{word-spacing:278.542242pt;}
.wsbd{word-spacing:368.195665pt;}
._4{margin-left:-20.998515pt;}
._7b{margin-left:-18.630315pt;}
._a{margin-left:-15.052835pt;}
._8{margin-left:-13.652947pt;}
._1{margin-left:-10.616218pt;}
._4c{margin-left:-7.520674pt;}
._11{margin-left:-6.321433pt;}
._0{margin-left:-5.260288pt;}
._d{margin-left:-4.265250pt;}
._7{margin-left:-3.347424pt;}
._e{margin-left:-2.385394pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.667366pt;}
._7d{width:3.682202pt;}
._7c{width:10.357265pt;}
._9{width:11.530016pt;}
._b{width:12.609500pt;}
._12{width:13.820211pt;}
._10{width:15.488293pt;}
._13{width:16.681627pt;}
._18{width:18.333591pt;}
._17{width:19.711168pt;}
._f{width:21.519360pt;}
._79{width:22.900697pt;}
._66{width:24.101582pt;}
._77{width:25.013277pt;}
._23{width:26.965798pt;}
._c{width:29.011008pt;}
._78{width:31.184508pt;}
._76{width:34.324478pt;}
._74{width:36.077895pt;}
._16{width:37.838039pt;}
._75{width:39.637865pt;}
._3{width:48.362927pt;}
._1e{width:55.328704pt;}
._32{width:64.309679pt;}
._67{width:67.138042pt;}
._65{width:70.930299pt;}
._20{width:72.908175pt;}
._27{width:79.759183pt;}
._60{width:81.559899pt;}
._5e{width:92.141392pt;}
._30{width:93.600143pt;}
._56{width:94.621027pt;}
._64{width:98.786733pt;}
._5f{width:102.272323pt;}
._5c{width:105.247827pt;}
._62{width:106.438029pt;}
._61{width:109.413533pt;}
._57{width:110.858778pt;}
._63{width:112.346530pt;}
._3c{width:113.536731pt;}
._59{width:115.874627pt;}
._3b{width:120.082840pt;}
._22{width:121.768367pt;}
._44{width:124.206038pt;}
._53{width:126.501427pt;}
._55{width:128.584280pt;}
._58{width:130.964683pt;}
._5b{width:132.112378pt;}
._2a{width:134.302854pt;}
._25{width:136.998775pt;}
._31{width:138.799703pt;}
._54{width:142.617669pt;}
._5a{width:144.226930pt;}
._4a{width:145.459638pt;}
._33{width:147.991375pt;}
._1f{width:149.278176pt;}
._5d{width:152.813384pt;}
._68{width:155.363816pt;}
._1a{width:158.684710pt;}
._21{width:160.239831pt;}
._40{width:162.590040pt;}
._3a{width:167.903440pt;}
._2d{width:170.003319pt;}
._42{width:171.474045pt;}
._26{width:173.567767pt;}
._2c{width:174.668623pt;}
._2e{width:176.464215pt;}
._37{width:177.618665pt;}
._2f{width:187.269783pt;}
._50{width:189.454187pt;}
._2b{width:190.898368pt;}
._49{width:194.470440pt;}
._4e{width:200.080987pt;}
._4f{width:205.394387pt;}
._29{width:208.560288pt;}
._3f{width:210.368133pt;}
._71{width:211.685856pt;}
._51{width:219.294241pt;}
._47{width:220.994933pt;}
._52{width:224.607641pt;}
._39{width:228.391186pt;}
._69{width:231.536718pt;}
._1d{width:237.214816pt;}
._3e{width:239.017986pt;}
._6a{width:242.206026pt;}
._24{width:243.536759pt;}
._46{width:249.644786pt;}
._6e{width:254.601300pt;}
._36{width:255.723315pt;}
._28{width:256.976919pt;}
._6b{width:263.587147pt;}
._1c{width:265.602144pt;}
._6c{width:269.963227pt;}
._38{width:275.021584pt;}
._72{width:284.670718pt;}
._6d{width:291.216827pt;}
._34{width:295.255011pt;}
._73{width:296.530227pt;}
._6f{width:303.161350pt;}
._35{width:312.257891pt;}
._70{width:313.147406pt;}
._3d{width:326.582818pt;}
._48{width:328.070570pt;}
._43{width:351.832094pt;}
._45{width:357.358030pt;}
._41{width:383.287422pt;}
._14{width:643.997619pt;}
._4d{width:658.313997pt;}
._1b{width:798.583319pt;}
._19{width:1884.127383pt;}
._7a{width:2226.989333pt;}
._15{width:2248.242667pt;}
._4b{width:2450.707809pt;}
.fs7{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs13{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs12{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs11{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fse{font-size:55.328000pt;}
.fs14{font-size:55.365867pt;}
.fs10{font-size:62.400000pt;}
.fsf{font-size:69.472000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:114.229120pt;}
.yd5{bottom:-594.815347pt;}
.y87{bottom:-584.511600pt;}
.ya2{bottom:-505.229456pt;}
.ya1{bottom:-488.109952pt;}
.ya0{bottom:-471.070608pt;}
.y9f{bottom:-453.951104pt;}
.yeb{bottom:-447.858649pt;}
.y9e{bottom:-436.831600pt;}
.yea{bottom:-422.273849pt;}
.y9d{bottom:-402.271416pt;}
.ye9{bottom:-400.122701pt;}
.y9c{bottom:-384.271488pt;}
.ye8{bottom:-377.867346pt;}
.y9b{bottom:-375.310936pt;}
.ye7{bottom:-355.611991pt;}
.y9a{bottom:-348.271632pt;}
.y99{bottom:-339.312416pt;}
.ye6{bottom:-333.459107pt;}
.y98{bottom:-312.351936pt;}
.ye5{bottom:-311.203752pt;}
.y97{bottom:-294.352008pt;}
.ye4{bottom:-288.948397pt;}
.y96{bottom:-276.352080pt;}
.ye3{bottom:-266.797249pt;}
.y95{bottom:-258.352152pt;}
.y94{bottom:-249.391600pt;}
.ye2{bottom:-244.541894pt;}
.ye1{bottom:-222.390747pt;}
.y93{bottom:-222.350683pt;}
.y92{bottom:-213.391467pt;}
.ye0{bottom:-200.135392pt;}
.y91{bottom:-185.631600pt;}
.ydf{bottom:-177.880037pt;}
.y90{bottom:-166.991600pt;}
.y8e{bottom:-157.310440pt;}
.yde{bottom:-150.527173pt;}
.ybe{bottom:-140.446280pt;}
.y8f{bottom:-138.670568pt;}
.ydd{bottom:-108.096213pt;}
.y8d{bottom:-101.950608pt;}
.ydc{bottom:-88.023693pt;}
.y8c{bottom:-84.831104pt;}
.ycd{bottom:-74.093760pt;}
.ydb{bottom:-68.055693pt;}
.y8b{bottom:-67.711600pt;}
.ycc{bottom:-54.125760pt;}
.yda{bottom:-48.087693pt;}
.y8a{bottom:-35.072000pt;}
.ycb{bottom:-33.950280pt;}
.yd9{bottom:-28.015173pt;}
.y89{bottom:-19.631600pt;}
.yca{bottom:-8.051753pt;}
.yd8{bottom:-2.015347pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:0.289000pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:14.008270pt;}
.y4e{bottom:28.346667pt;}
.yfc{bottom:79.593333pt;}
.y139{bottom:85.954667pt;}
.y1d1{bottom:87.986667pt;}
.y25{bottom:91.398667pt;}
.y207{bottom:91.413333pt;}
.y23d{bottom:92.050667pt;}
.y4d{bottom:92.512000pt;}
.y181{bottom:93.246667pt;}
.y1b0{bottom:94.044000pt;}
.y16f{bottom:94.840000pt;}
.yfb{bottom:96.330667pt;}
.y138{bottom:102.692000pt;}
.y1d0{bottom:103.608000pt;}
.y206{bottom:106.756000pt;}
.y24{bottom:107.298667pt;}
.y23c{bottom:107.393333pt;}
.y4c{bottom:109.249333pt;}
.y180{bottom:109.984000pt;}
.y1ae{bottom:110.780000pt;}
.y16e{bottom:111.577333pt;}
.yfa{bottom:113.068000pt;}
.y1af{bottom:115.602667pt;}
.yd1{bottom:116.206667pt;}
.y1cf{bottom:119.229333pt;}
.y137{bottom:119.429333pt;}
.y205{bottom:122.098667pt;}
.y23b{bottom:122.736000pt;}
.y23{bottom:123.200000pt;}
.y4b{bottom:125.986667pt;}
.y17f{bottom:126.721333pt;}
.y1ad{bottom:127.517333pt;}
.y16d{bottom:128.314667pt;}
.y83{bottom:129.096000pt;}
.yf9{bottom:129.805333pt;}
.yd0{bottom:133.302667pt;}
.y1ce{bottom:134.850667pt;}
.y136{bottom:136.166667pt;}
.y204{bottom:137.441333pt;}
.y23a{bottom:138.078667pt;}
.y22{bottom:139.100000pt;}
.y4a{bottom:142.724000pt;}
.y17d{bottom:143.458667pt;}
.y1ac{bottom:144.254667pt;}
.y16c{bottom:145.052000pt;}
.y82{bottom:145.833333pt;}
.yf8{bottom:146.542667pt;}
.y17e{bottom:148.280000pt;}
.ycf{bottom:150.398667pt;}
.y1cd{bottom:150.472000pt;}
.y203{bottom:152.784000pt;}
.y135{bottom:152.904000pt;}
.y239{bottom:153.421333pt;}
.y21{bottom:155.000000pt;}
.y49{bottom:159.460000pt;}
.y17b{bottom:160.196000pt;}
.y1ab{bottom:160.992000pt;}
.y16b{bottom:161.789333pt;}
.y81{bottom:162.570667pt;}
.yf7{bottom:163.280000pt;}
.y17c{bottom:165.017333pt;}
.y1cc{bottom:166.093333pt;}
.yce{bottom:167.494667pt;}
.y202{bottom:168.125333pt;}
.y238{bottom:168.762667pt;}
.y134{bottom:169.641333pt;}
.y20{bottom:170.901333pt;}
.yba{bottom:174.466667pt;}
.y48{bottom:176.197333pt;}
.y17a{bottom:176.933333pt;}
.y1aa{bottom:177.729333pt;}
.y16a{bottom:178.526667pt;}
.y80{bottom:179.308000pt;}
.yf6{bottom:180.017333pt;}
.y201{bottom:183.468000pt;}
.y237{bottom:184.105333pt;}
.y133{bottom:186.378667pt;}
.y1f{bottom:186.801333pt;}
.ybb{bottom:187.432000pt;}
.yb9{bottom:191.204000pt;}
.y47{bottom:192.934667pt;}
.y179{bottom:193.669333pt;}
.y1a8{bottom:194.466667pt;}
.y169{bottom:195.264000pt;}
.y7f{bottom:196.045333pt;}
.yf5{bottom:196.753333pt;}
.y1cb{bottom:197.654667pt;}
.y200{bottom:198.810667pt;}
.y1a9{bottom:199.289333pt;}
.y236{bottom:199.448000pt;}
.y1e{bottom:202.701333pt;}
.y132{bottom:203.116000pt;}
.yb8{bottom:207.941333pt;}
.y46{bottom:209.672000pt;}
.y178{bottom:210.406667pt;}
.y168{bottom:212.001333pt;}
.y7e{bottom:212.782667pt;}
.yf4{bottom:213.490667pt;}
.y1ff{bottom:214.153333pt;}
.y1ca{bottom:214.392000pt;}
.y235{bottom:214.790667pt;}
.y1a7{bottom:215.189333pt;}
.y131{bottom:219.853333pt;}
.yb7{bottom:224.678667pt;}
.y45{bottom:226.409333pt;}
.y177{bottom:227.144000pt;}
.y167{bottom:228.738667pt;}
.y1fe{bottom:229.496000pt;}
.y7d{bottom:229.520000pt;}
.y234{bottom:230.133333pt;}
.yf3{bottom:230.228000pt;}
.y1c9{bottom:231.129333pt;}
.y130{bottom:236.590667pt;}
.yb6{bottom:241.416000pt;}
.y44{bottom:243.146667pt;}
.y176{bottom:243.881333pt;}
.y1fd{bottom:244.838667pt;}
.y1a6{bottom:245.077333pt;}
.y166{bottom:245.476000pt;}
.y7c{bottom:246.257333pt;}
.yf2{bottom:246.965333pt;}
.y1c8{bottom:247.866667pt;}
.y12f{bottom:253.328000pt;}
.yb5{bottom:258.153333pt;}
.y43{bottom:259.884000pt;}
.y1fc{bottom:260.181333pt;}
.y175{bottom:260.618667pt;}
.y233{bottom:260.818667pt;}
.y1a5{bottom:261.814667pt;}
.y165{bottom:262.213333pt;}
.y7b{bottom:262.994667pt;}
.yf1{bottom:263.702667pt;}
.y1c7{bottom:264.604000pt;}
.y12e{bottom:270.065333pt;}
.y1d{bottom:273.154667pt;}
.yb4{bottom:274.890667pt;}
.y1fb{bottom:275.524000pt;}
.y232{bottom:276.161333pt;}
.y42{bottom:276.621333pt;}
.y174{bottom:277.356000pt;}
.y1a4{bottom:278.552000pt;}
.y164{bottom:278.950667pt;}
.y7a{bottom:279.732000pt;}
.y1c6{bottom:281.341333pt;}
.yf0{bottom:284.425333pt;}
.y12d{bottom:286.801333pt;}
.y1c{bottom:289.054667pt;}
.y1fa{bottom:290.866667pt;}
.y231{bottom:291.502667pt;}
.y173{bottom:294.093333pt;}
.y1a3{bottom:295.289333pt;}
.yb3{bottom:295.612000pt;}
.y163{bottom:295.688000pt;}
.y79{bottom:296.469333pt;}
.y41{bottom:297.344000pt;}
.y1c5{bottom:298.078667pt;}
.y12b{bottom:303.538667pt;}
.y1b{bottom:304.954667pt;}
.y1f9{bottom:306.208000pt;}
.y230{bottom:306.845333pt;}
.y12c{bottom:308.361333pt;}
.y172{bottom:310.830667pt;}
.y1a2{bottom:312.026667pt;}
.y162{bottom:312.425333pt;}
.y78{bottom:313.205333pt;}
.y1c3{bottom:314.816000pt;}
.yef{bottom:319.442667pt;}
.y1c4{bottom:319.637333pt;}
.y1a{bottom:320.856000pt;}
.y1f8{bottom:321.550667pt;}
.y22f{bottom:322.188000pt;}
.y12a{bottom:324.261333pt;}
.y1a1{bottom:328.764000pt;}
.y161{bottom:329.162667pt;}
.y77{bottom:329.942667pt;}
.y171{bottom:331.553333pt;}
.yee{bottom:336.538667pt;}
.y1f7{bottom:336.893333pt;}
.y22e{bottom:337.530667pt;}
.yb2{bottom:344.590667pt;}
.y1a0{bottom:345.501333pt;}
.y160{bottom:345.900000pt;}
.y76{bottom:346.680000pt;}
.y1c2{bottom:348.290667pt;}
.y170{bottom:349.486667pt;}
.y1f6{bottom:352.236000pt;}
.y22d{bottom:352.873333pt;}
.yed{bottom:353.633333pt;}
.y19{bottom:354.688000pt;}
.yb1{bottom:357.210667pt;}
.y129{bottom:361.285333pt;}
.y19f{bottom:362.238667pt;}
.y15f{bottom:362.637333pt;}
.y75{bottom:363.417333pt;}
.y40{bottom:364.144000pt;}
.y1c1{bottom:365.028000pt;}
.y1f5{bottom:367.578667pt;}
.y22c{bottom:368.216000pt;}
.yb0{bottom:369.829333pt;}
.y18{bottom:370.589333pt;}
.yec{bottom:370.729333pt;}
.y128{bottom:373.904000pt;}
.y19e{bottom:378.976000pt;}
.y15e{bottom:379.374667pt;}
.y74{bottom:380.154667pt;}
.y1bf{bottom:381.765333pt;}
.yaf{bottom:382.449333pt;}
.y1f4{bottom:382.921333pt;}
.y22b{bottom:383.558667pt;}
.y17{bottom:386.489333pt;}
.y127{bottom:386.524000pt;}
.y1c0{bottom:386.586667pt;}
.yd2{bottom:390.666667pt;}
.yae{bottom:395.068000pt;}
.y19d{bottom:395.713333pt;}
.y15d{bottom:396.112000pt;}
.y3f{bottom:397.380000pt;}
.y1f3{bottom:398.264000pt;}
.y1be{bottom:398.502667pt;}
.y22a{bottom:398.901333pt;}
.y126{bottom:399.142667pt;}
.y73{bottom:400.877333pt;}
.yad{bottom:407.688000pt;}
.y125{bottom:411.762667pt;}
.y19c{bottom:412.450667pt;}
.y15c{bottom:412.848000pt;}
.y1f2{bottom:413.606667pt;}
.y229{bottom:414.244000pt;}
.y3e{bottom:414.674667pt;}
.y1bd{bottom:415.240000pt;}
.y16{bottom:418.330667pt;}
.y72{bottom:418.810667pt;}
.yac{bottom:420.306667pt;}
.y86{bottom:423.488920pt;}
.y123{bottom:424.381333pt;}
.y1f1{bottom:428.948000pt;}
.y19b{bottom:429.188000pt;}
.y15b{bottom:429.585333pt;}
.y124{bottom:430.690667pt;}
.y3d{bottom:431.969333pt;}
.y1bc{bottom:431.977333pt;}
.y85{bottom:432.208400pt;}
.y122{bottom:437.001333pt;}
.yab{bottom:439.328000pt;}
.y1f0{bottom:444.290667pt;}
.y228{bottom:444.928000pt;}
.y19a{bottom:445.925333pt;}
.y15a{bottom:446.322667pt;}
.y71{bottom:448.698667pt;}
.y1ba{bottom:448.714667pt;}
.y3c{bottom:449.265333pt;}
.y121{bottom:449.620000pt;}
.y15{bottom:450.170667pt;}
.y1bb{bottom:453.536000pt;}
.ya8{bottom:456.960000pt;}
.yaa{bottom:458.349333pt;}
.y1ef{bottom:459.633333pt;}
.y227{bottom:460.270667pt;}
.y120{bottom:462.240000pt;}
.y199{bottom:462.662667pt;}
.y159{bottom:463.060000pt;}
.y70{bottom:465.436000pt;}
.y1b9{bottom:465.452000pt;}
.y14{bottom:466.070667pt;}
.y3b{bottom:466.560000pt;}
.y11f{bottom:474.858667pt;}
.y1ee{bottom:474.976000pt;}
.y226{bottom:475.613333pt;}
.ya9{bottom:477.370667pt;}
.y198{bottom:479.398667pt;}
.y158{bottom:479.797333pt;}
.y13{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y1b7{bottom:482.189333pt;}
.y3a{bottom:483.854667pt;}
.y1b8{bottom:487.010667pt;}
.y11e{bottom:487.478667pt;}
.y1ed{bottom:490.318667pt;}
.y225{bottom:490.956000pt;}
.y197{bottom:496.136000pt;}
.y157{bottom:496.534667pt;}
.y12{bottom:497.872000pt;}
.y6e{bottom:498.910667pt;}
.y1b6{bottom:498.926667pt;}
.y11d{bottom:500.097333pt;}
.y39{bottom:501.150667pt;}
.ya7{bottom:504.082667pt;}
.y1ec{bottom:505.661333pt;}
.y224{bottom:506.298667pt;}
.y11c{bottom:512.717333pt;}
.y196{bottom:512.873333pt;}
.y156{bottom:513.272000pt;}
.y11{bottom:513.772000pt;}
.y6d{bottom:515.648000pt;}
.y1b5{bottom:515.664000pt;}
.y38{bottom:518.445333pt;}
.y1eb{bottom:521.004000pt;}
.ya6{bottom:521.178667pt;}
.y223{bottom:521.641333pt;}
.y11b{bottom:525.336000pt;}
.y195{bottom:529.610667pt;}
.y10{bottom:529.673333pt;}
.y155{bottom:530.009333pt;}
.y6c{bottom:532.384000pt;}
.y37{bottom:535.741333pt;}
.y1ea{bottom:536.346667pt;}
.y1b4{bottom:536.385333pt;}
.y222{bottom:536.984000pt;}
.y11a{bottom:537.956000pt;}
.ya5{bottom:538.274667pt;}
.yf{bottom:545.573333pt;}
.y194{bottom:546.348000pt;}
.y154{bottom:546.746667pt;}
.y6b{bottom:549.121333pt;}
.y119{bottom:550.574667pt;}
.y1e9{bottom:551.689333pt;}
.y221{bottom:552.325333pt;}
.y36{bottom:553.036000pt;}
.ye{bottom:561.473333pt;}
.y193{bottom:563.085333pt;}
.y118{bottom:563.194667pt;}
.y153{bottom:563.484000pt;}
.y6a{bottom:565.858667pt;}
.y1b3{bottom:566.273333pt;}
.y1e8{bottom:567.030667pt;}
.y220{bottom:567.668000pt;}
.y35{bottom:570.330667pt;}
.ya4{bottom:571.310667pt;}
.yd{bottom:577.374667pt;}
.y192{bottom:579.822667pt;}
.y152{bottom:580.221333pt;}
.y116{bottom:582.216000pt;}
.y1e7{bottom:582.373333pt;}
.y69{bottom:582.596000pt;}
.y21f{bottom:583.010667pt;}
.y34{bottom:587.626667pt;}
.y115{bottom:588.326667pt;}
.ya3{bottom:588.406667pt;}
.yc{bottom:593.274667pt;}
.y117{bottom:594.834667pt;}
.y191{bottom:596.560000pt;}
.y151{bottom:596.958667pt;}
.y1e6{bottom:597.716000pt;}
.y21e{bottom:598.353333pt;}
.y68{bottom:599.333333pt;}
.y33{bottom:604.921333pt;}
.y84{bottom:608.344000pt;}
.y1e5{bottom:613.058667pt;}
.y9{bottom:613.160048pt;}
.y190{bottom:613.297333pt;}
.y150{bottom:613.696000pt;}
.y67{bottom:616.070667pt;}
.y114{bottom:621.546667pt;}
.y32{bottom:622.216000pt;}
.y1e4{bottom:628.401333pt;}
.y21d{bottom:629.038667pt;}
.y18f{bottom:630.034667pt;}
.y14f{bottom:630.433333pt;}
.y66{bottom:632.808000pt;}
.yd7{bottom:634.256653pt;}
.y113{bottom:638.642667pt;}
.y31{bottom:639.512000pt;}
.y1e3{bottom:643.744000pt;}
.y21c{bottom:644.381333pt;}
.y18e{bottom:646.772000pt;}
.y14e{bottom:647.170667pt;}
.y65{bottom:649.545333pt;}
.yd6{bottom:654.224653pt;}
.y112{bottom:655.738667pt;}
.y1e2{bottom:659.086667pt;}
.y21b{bottom:659.724000pt;}
.y18d{bottom:663.509333pt;}
.y14d{bottom:663.908000pt;}
.y64{bottom:666.282667pt;}
.y30{bottom:673.809333pt;}
.y1e1{bottom:674.429333pt;}
.y21a{bottom:675.066667pt;}
.y18c{bottom:680.246667pt;}
.y14c{bottom:680.645333pt;}
.y63{bottom:683.020000pt;}
.y2f{bottom:688.156000pt;}
.y1e0{bottom:689.770667pt;}
.y219{bottom:690.408000pt;}
.y111{bottom:695.940000pt;}
.y18b{bottom:696.984000pt;}
.y14b{bottom:697.382667pt;}
.y62{bottom:699.757333pt;}
.y2e{bottom:702.502667pt;}
.y218{bottom:705.750667pt;}
.y110{bottom:708.560000pt;}
.y1df{bottom:709.098667pt;}
.y18a{bottom:713.721333pt;}
.y14a{bottom:714.120000pt;}
.yd4{bottom:715.585329pt;}
.y61{bottom:716.494667pt;}
.y2d{bottom:716.849333pt;}
.y2c{bottom:720.706667pt;}
.y217{bottom:721.093333pt;}
.y10f{bottom:721.178667pt;}
.yd3{bottom:726.920653pt;}
.y189{bottom:730.458667pt;}
.y149{bottom:730.857333pt;}
.y2b{bottom:731.194667pt;}
.y60{bottom:733.232000pt;}
.y216{bottom:736.436000pt;}
.y10e{bottom:737.332000pt;}
.y1de{bottom:738.986667pt;}
.y2a{bottom:745.541333pt;}
.y187{bottom:747.196000pt;}
.y148{bottom:747.594667pt;}
.y10d{bottom:749.950667pt;}
.y5e{bottom:749.969333pt;}
.y215{bottom:751.778667pt;}
.y188{bottom:752.017333pt;}
.y5f{bottom:754.790667pt;}
.y10c{bottom:762.570667pt;}
.y1dd{bottom:762.578667pt;}
.y29{bottom:763.745333pt;}
.y186{bottom:763.933333pt;}
.y147{bottom:764.332000pt;}
.y5d{bottom:766.706667pt;}
.y214{bottom:767.121333pt;}
.y10b{bottom:775.189333pt;}
.y28{bottom:778.092000pt;}
.y1dc{bottom:778.200000pt;}
.y185{bottom:780.670667pt;}
.y146{bottom:781.069333pt;}
.y213{bottom:782.464000pt;}
.y5c{bottom:783.444000pt;}
.y10a{bottom:787.809333pt;}
.y27{bottom:788.580000pt;}
.y1db{bottom:793.821333pt;}
.y184{bottom:797.408000pt;}
.y145{bottom:797.806667pt;}
.y5b{bottom:800.181333pt;}
.y109{bottom:800.428000pt;}
.y26{bottom:806.784000pt;}
.y108{bottom:813.048000pt;}
.y212{bottom:813.149333pt;}
.y183{bottom:814.145333pt;}
.y144{bottom:814.544000pt;}
.y5a{bottom:816.918667pt;}
.y1da{bottom:817.413333pt;}
.y107{bottom:825.666667pt;}
.y211{bottom:828.490667pt;}
.y143{bottom:831.281333pt;}
.y59{bottom:833.656000pt;}
.y182{bottom:834.868000pt;}
.y106{bottom:838.285333pt;}
.y1d9{bottom:841.004000pt;}
.y8{bottom:842.510667pt;}
.y210{bottom:843.833333pt;}
.y142{bottom:848.018667pt;}
.y58{bottom:850.393333pt;}
.y105{bottom:850.905333pt;}
.yc9{bottom:858.788601pt;}
.y20f{bottom:859.176000pt;}
.y7{bottom:859.248000pt;}
.y104{bottom:863.524000pt;}
.y1d8{bottom:864.596000pt;}
.y141{bottom:864.754667pt;}
.y57{bottom:867.130667pt;}
.y1b2{bottom:869.577333pt;}
.y20e{bottom:874.518667pt;}
.y103{bottom:876.144000pt;}
.y1d7{bottom:880.217333pt;}
.yc8{bottom:880.939748pt;}
.y140{bottom:881.492000pt;}
.y56{bottom:883.868000pt;}
.y102{bottom:888.762667pt;}
.y20d{bottom:889.861333pt;}
.y1d6{bottom:895.838667pt;}
.y13f{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y55{bottom:900.605333pt;}
.y101{bottom:901.382667pt;}
.yc7{bottom:903.195103pt;}
.y20c{bottom:905.204000pt;}
.y13e{bottom:914.966667pt;}
.y54{bottom:917.342667pt;}
.y1d5{bottom:919.430667pt;}
.y100{bottom:920.404000pt;}
.y20b{bottom:920.546667pt;}
.yc6{bottom:925.450458pt;}
.y5{bottom:925.510667pt;}
.yff{bottom:928.129333pt;}
.y13d{bottom:931.704000pt;}
.y53{bottom:934.080000pt;}
.y1d4{bottom:935.052000pt;}
.y20a{bottom:935.889333pt;}
.yc5{bottom:947.603342pt;}
.y13c{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y1d3{bottom:950.673333pt;}
.y52{bottom:950.817333pt;}
.y209{bottom:951.230667pt;}
.y13b{bottom:965.178667pt;}
.yfe{bottom:966.137333pt;}
.y1d2{bottom:966.294667pt;}
.y208{bottom:966.573333pt;}
.y51{bottom:967.554667pt;}
.yc4{bottom:969.858698pt;}
.y3{bottom:975.722667pt;}
.y13a{bottom:981.916000pt;}
.yfd{bottom:983.233333pt;}
.y50{bottom:984.290667pt;}
.y1b1{bottom:986.738667pt;}
.yc3{bottom:992.011582pt;}
.yc2{bottom:1014.266937pt;}
.y1{bottom:1014.377333pt;}
.yc1{bottom:1041.722271pt;}
.y4f{bottom:1043.020000pt;}
.yc0{bottom:1084.675072pt;}
.ybf{bottom:1106.930427pt;}
.ybd{bottom:1169.954396pt;}
.ybc{bottom:1181.289720pt;}
.h23{height:22.284493pt;}
.h8{height:22.673858pt;}
.h1d{height:24.760382pt;}
.h2b{height:28.023859pt;}
.hd{height:28.947524pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h24{height:33.186336pt;}
.hc{height:33.771789pt;}
.hb{height:33.808982pt;}
.h14{height:36.666735pt;}
.h2c{height:36.873667pt;}
.he{height:38.596538pt;}
.hf{height:38.639045pt;}
.h18{height:38.775312pt;}
.h4{height:38.947124pt;}
.h16{height:39.588281pt;}
.h11{height:43.421286pt;}
.h10{height:43.469107pt;}
.h19{height:44.648438pt;}
.h2{height:45.271688pt;}
.h13{height:48.245551pt;}
.h12{height:48.298685pt;}
.h17{height:49.708594pt;}
.h21{height:50.407906pt;}
.h1f{height:51.464766pt;}
.h7{height:55.997783pt;}
.h22{height:58.042969pt;}
.h2a{height:63.833871pt;}
.h20{height:64.621172pt;}
.h27{height:64.671045pt;}
.h6{height:69.435802pt;}
.h26{height:76.044227pt;}
.h3{height:77.447343pt;}
.h1a{height:85.550802pt;}
.h1b{height:85.866098pt;}
.h5{height:86.938214pt;}
.h29{height:89.071204pt;}
.h28{height:89.113711pt;}
.h1c{height:121.708306pt;}
.h15{height:386.857333pt;}
.h25{height:604.532933pt;}
.h1e{height:807.768000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:173.886958pt;}
.w5{width:568.933733pt;}
.w6{width:577.347333pt;}
.w4{width:705.005200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x43{left:-224.331467pt;}
.x4b{left:-219.154000pt;}
.x0{left:0.000000pt;}
.x20{left:2.194533pt;}
.x4c{left:6.838000pt;}
.x27{left:12.194533pt;}
.x4{left:26.021437pt;}
.x29{left:28.354533pt;}
.x22{left:30.514533pt;}
.x23{left:32.035429pt;}
.x2c{left:34.672477pt;}
.x2b{left:36.353165pt;}
.x44{left:38.475152pt;}
.x2a{left:41.714533pt;}
.x4d{left:43.653878pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:53.285701pt;}
.x3a{left:60.993333pt;}
.x2f{left:76.346667pt;}
.x37{left:86.880000pt;}
.x38{left:99.765333pt;}
.x34{left:102.688000pt;}
.x3c{left:104.802667pt;}
.x3b{left:106.274667pt;}
.x4a{left:108.177333pt;}
.x42{left:112.384000pt;}
.x39{left:114.133333pt;}
.x31{left:122.482667pt;}
.x30{left:127.206667pt;}
.x24{left:133.635557pt;}
.xd1{left:135.214667pt;}
.x26{left:153.554533pt;}
.x25{left:155.954533pt;}
.x2e{left:176.034005pt;}
.xd2{left:200.153333pt;}
.x2d{left:204.354533pt;}
.xa9{left:221.026667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xc1{left:226.916000pt;}
.x52{left:231.861333pt;}
.x35{left:235.142667pt;}
.x5a{left:237.714667pt;}
.x68{left:239.192000pt;}
.x6{left:241.085333pt;}
.x65{left:243.113333pt;}
.x62{left:245.094667pt;}
.x5d{left:247.502667pt;}
.xb{left:251.365333pt;}
.x36{left:254.366667pt;}
.x66{left:255.637333pt;}
.x63{left:257.018667pt;}
.x61{left:259.728000pt;}
.x3d{left:262.180000pt;}
.x5f{left:264.966667pt;}
.x50{left:268.181333pt;}
.x53{left:269.285333pt;}
.x3e{left:270.384000pt;}
.x55{left:271.942667pt;}
.x54{left:273.589333pt;}
.x8{left:275.601333pt;}
.xc8{left:278.904000pt;}
.x51{left:279.905333pt;}
.x9c{left:284.712000pt;}
.xaf{left:288.818667pt;}
.x85{left:289.865333pt;}
.x89{left:294.296000pt;}
.x9d{left:297.994667pt;}
.x8a{left:299.141333pt;}
.xb9{left:300.837333pt;}
.x6f{left:301.965333pt;}
.x86{left:303.149333pt;}
.x4e{left:307.346667pt;}
.xd4{left:309.469333pt;}
.x8b{left:312.425333pt;}
.xba{left:314.121333pt;}
.x4f{left:315.552000pt;}
.x48{left:317.573333pt;}
.xb5{left:319.144000pt;}
.xa6{left:325.989333pt;}
.x49{left:330.468000pt;}
.x77{left:332.220000pt;}
.xb6{left:335.689333pt;}
.x72{left:336.728000pt;}
.xc{left:342.805333pt;}
.x16{left:344.148000pt;}
.x78{left:345.504000pt;}
.xc7{left:348.477333pt;}
.xd{left:349.448000pt;}
.xe{left:352.718667pt;}
.x99{left:353.980000pt;}
.x80{left:357.053333pt;}
.xf{left:359.360000pt;}
.x81{left:363.694667pt;}
.x9a{left:367.264000pt;}
.x3f{left:368.198667pt;}
.x6d{left:369.993333pt;}
.x82{left:377.092000pt;}
.x6e{left:383.277333pt;}
.xd7{left:387.617333pt;}
.x70{left:394.620000pt;}
.xa3{left:397.184000pt;}
.xb0{left:398.908000pt;}
.xb1{left:404.957333pt;}
.x12{left:417.124000pt;}
.x8c{left:419.105333pt;}
.xcd{left:422.040000pt;}
.x13{left:423.766667pt;}
.x56{left:425.106667pt;}
.x14{left:427.020000pt;}
.xc3{left:429.412000pt;}
.x8d{left:432.388000pt;}
.x15{left:433.662667pt;}
.xc9{left:435.877333pt;}
.xc4{left:437.617333pt;}
.x9{left:439.970667pt;}
.xcc{left:445.154667pt;}
.x1e{left:462.620000pt;}
.xce{left:464.916000pt;}
.x92{left:467.445333pt;}
.xca{left:469.005333pt;}
.xa7{left:472.452000pt;}
.xa{left:478.561333pt;}
.x93{left:480.728000pt;}
.x28{left:483.074413pt;}
.x94{left:484.046667pt;}
.xa8{left:487.648000pt;}
.x73{left:489.622667pt;}
.x79{left:492.212000pt;}
.xa0{left:495.480000pt;}
.x95{left:497.329333pt;}
.xaa{left:501.121333pt;}
.x74{left:502.905333pt;}
.x1f{left:505.498667pt;}
.x7a{left:508.786667pt;}
.x7b{left:514.793333pt;}
.xbb{left:517.261333pt;}
.x91{left:519.334667pt;}
.x58{left:521.821333pt;}
.x57{left:526.006667pt;}
.x7c{left:528.077333pt;}
.x1a{left:533.430667pt;}
.xa1{left:537.482667pt;}
.xb2{left:538.738667pt;}
.x1b{left:540.073333pt;}
.x96{left:541.461333pt;}
.x8f{left:542.550667pt;}
.x1c{left:546.614667pt;}
.xae{left:548.238667pt;}
.x90{left:555.834667pt;}
.x1d{left:559.898667pt;}
.x83{left:561.133333pt;}
.x40{left:563.666667pt;}
.x32{left:565.760000pt;}
.x41{left:571.872000pt;}
.xbd{left:573.080000pt;}
.x84{left:574.417333pt;}
.xab{left:576.948000pt;}
.xb7{left:578.669333pt;}
.xbe{left:581.284000pt;}
.xa2{left:583.284000pt;}
.xcf{left:584.758667pt;}
.xac{left:586.734667pt;}
.xb8{left:595.117333pt;}
.x9b{left:602.530667pt;}
.xbf{left:608.569333pt;}
.xd3{left:610.248000pt;}
.xc5{left:611.170667pt;}
.x45{left:615.360828pt;}
.x5b{left:617.844000pt;}
.xc6{left:619.376000pt;}
.x69{left:629.800000pt;}
.x87{left:631.273333pt;}
.x17{left:632.861333pt;}
.x33{left:634.094667pt;}
.x9e{left:638.501333pt;}
.x88{left:644.557333pt;}
.x97{left:647.466667pt;}
.x9f{left:651.785333pt;}
.xd5{left:655.934667pt;}
.x98{left:660.749333pt;}
.xd0{left:667.833333pt;}
.x59{left:671.890667pt;}
.xcb{left:673.462667pt;}
.xd8{left:675.364000pt;}
.x18{left:679.042667pt;}
.xb4{left:680.122667pt;}
.x64{left:686.205333pt;}
.x60{left:687.533333pt;}
.xc0{left:688.856000pt;}
.x5e{left:690.190667pt;}
.x67{left:691.518667pt;}
.x5c{left:694.174667pt;}
.x46{left:695.798667pt;}
.xbc{left:697.292000pt;}
.xd9{left:699.274667pt;}
.x21{left:700.194413pt;}
.x6a{left:701.462667pt;}
.x47{left:703.182667pt;}
.x19{left:704.654667pt;}
.xad{left:706.134667pt;}
.xd6{left:707.109333pt;}
.x7d{left:708.198667pt;}
.x75{left:709.917333pt;}
.x6c{left:713.530667pt;}
.x6b{left:714.745333pt;}
.x7f{left:716.254667pt;}
.xb3{left:718.713333pt;}
.x7e{left:721.482667pt;}
.x76{left:723.200000pt;}
.x8e{left:724.678667pt;}
.x71{left:726.178667pt;}
.xa4{left:730.148000pt;}
.x10{left:733.484000pt;}
.xa5{left:736.197333pt;}
.x11{left:740.126667pt;}
.xc2{left:742.517333pt;}
}




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