
    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_c29d15f1f70adf7f7daa50db.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3b17ab4d76aabbc4f81e5b4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_92ca2494b3568b7ec7074b5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f1740d69962d2bd7a7e1505.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_0eea67d6039fa16123721317.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912000;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_55a6db0ad59f7cbec352ba24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.725000;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_cbad86dcaf619e0c09bc8186.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126000;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_84ee9f86319b31d0a8aea650.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_6eda7c231fabcb7045dbc137.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_59de1cac1d8fcbe3b35a3769.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1372009c409e56e8dae81e7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.883000;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_3d531ee99f85f9208ef9ee73.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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_34e55f2d1ab9cc9e37994339.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881000;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_cbad86dcaf619e0c09bc8186.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.126000;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_84ee9f86319b31d0a8aea650.woff2')format("woff");}.fff{font-family:fff;line-height:0.893000;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_1372009c409e56e8dae81e7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.883000;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_34e55f2d1ab9cc9e37994339.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.881000;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_1372009c409e56e8dae81e7f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.883000;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_6eda7c231fabcb7045dbc137.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3d531ee99f85f9208ef9ee73.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.126000;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_6d6ff48f1810cda88c257d2d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893000;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_34e55f2d1ab9cc9e37994339.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.881000;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_a4af53d019faf5ba52a68a30.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.446000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cbad86dcaf619e0c09bc8186.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.126000;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:ff19;src:url('chunks/assets/font_84ee9f86319b31d0a8aea650.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.893000;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:ff1a;src:url('chunks/assets/font_6eda7c231fabcb7045dbc137.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_34e55f2d1ab9cc9e37994339.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.881000;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:ff1c;src:url('chunks/assets/font_34e55f2d1ab9cc9e37994339.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.881000;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:ff1d;src:url('chunks/assets/font_0e5da7032e0c71d50c146fcf.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.126000;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:ff1e;src:url('chunks/assets/font_1372009c409e56e8dae81e7f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.883000;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:ff1f;src:url('chunks/assets/font_b259b9c16cdb7f40970efe5d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.865000;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:ff20;src:url('chunks/assets/font_7baf611bb0c521f159deb107.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.902344;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;}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m2{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);}
.v15{vertical-align:-73.018252px;}
.v8{vertical-align:-53.190600px;}
.v10{vertical-align:-37.521106px;}
.v4{vertical-align:-24.062850px;}
.v6{vertical-align:-14.157202px;}
.va{vertical-align:-12.299450px;}
.v1{vertical-align:-9.171600px;}
.v7{vertical-align:-6.486579px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.189384px;}
.vb{vertical-align:12.299450px;}
.v3{vertical-align:15.672271px;}
.v17{vertical-align:17.247993px;}
.v18{vertical-align:22.921878px;}
.v11{vertical-align:24.443210px;}
.ve{vertical-align:26.469765px;}
.v2{vertical-align:30.084960px;}
.v9{vertical-align:33.001793px;}
.v12{vertical-align:34.014638px;}
.vd{vertical-align:43.670831px;}
.vf{vertical-align:63.990871px;}
.v16{vertical-align:70.139731px;}
.v13{vertical-align:73.018252px;}
.vc{vertical-align:86.332276px;}
.v14{vertical-align:99.565861px;}
.ls3{letter-spacing:-50.040000px;}
.ls10{letter-spacing:-16.698000px;}
.ls13{letter-spacing:-6.967800px;}
.ls6{letter-spacing:-4.804800px;}
.lsfa{letter-spacing:-3.712500px;}
.lsa7{letter-spacing:-3.641831px;}
.ls7{letter-spacing:-2.402400px;}
.lsd{letter-spacing:-2.046000px;}
.ls11{letter-spacing:-2.019600px;}
.lseb{letter-spacing:-1.357295px;}
.ls33{letter-spacing:-0.275990px;}
.lsf1{letter-spacing:-0.266216px;}
.ls9c{letter-spacing:-0.054491px;}
.ls95{letter-spacing:-0.036327px;}
.ls8f{letter-spacing:-0.027246px;}
.ls5{letter-spacing:-0.026400px;}
.ls98{letter-spacing:-0.025429px;}
.lsf{letter-spacing:-0.025200px;}
.lsa5{letter-spacing:-0.023007px;}
.lsf2{letter-spacing:-0.021469px;}
.ls97{letter-spacing:-0.019072px;}
.lse7{letter-spacing:-0.018983px;}
.ls91{letter-spacing:-0.018164px;}
.lsf0{letter-spacing:-0.018034px;}
.ls29{letter-spacing:-0.017249px;}
.lsa9{letter-spacing:-0.016800px;}
.lse4{letter-spacing:-0.014237px;}
.lse{letter-spacing:-0.013500px;}
.ls31{letter-spacing:-0.012937px;}
.lsee{letter-spacing:-0.012023px;}
.lse5{letter-spacing:-0.009966px;}
.lse3{letter-spacing:-0.009492px;}
.ls8e{letter-spacing:-0.009082px;}
.ls2c{letter-spacing:-0.009056px;}
.ls2b{letter-spacing:-0.008625px;}
.lsef{letter-spacing:-0.008588px;}
.lsa3{letter-spacing:-0.008217px;}
.ls32{letter-spacing:-0.007803px;}
.ls2f{letter-spacing:-0.006982px;}
.ls28{letter-spacing:-0.005134px;}
.ls27{letter-spacing:-0.004910px;}
.lse8{letter-spacing:-0.004746px;}
.ls30{letter-spacing:-0.004312px;}
.lsed{letter-spacing:-0.004294px;}
.ls2d{letter-spacing:-0.003902px;}
.ls2e{letter-spacing:-0.003491px;}
.ls4{letter-spacing:0.000000px;}
.ls8b{letter-spacing:0.001730px;}
.ls57{letter-spacing:0.002595px;}
.lsc4{letter-spacing:0.002712px;}
.lscc{letter-spacing:0.003164px;}
.ls3d{letter-spacing:0.003892px;}
.ls1c{letter-spacing:0.003902px;}
.lsc1{letter-spacing:0.004068px;}
.lsce{letter-spacing:0.004294px;}
.lsdc{letter-spacing:0.004520px;}
.ls14{letter-spacing:0.004910px;}
.ls5c{letter-spacing:0.005190px;}
.ls4f{letter-spacing:0.006055px;}
.ls4b{letter-spacing:0.006487px;}
.lsf5{letter-spacing:0.006750px;}
.ls48{letter-spacing:0.007784px;}
.ls1a{letter-spacing:0.007803px;}
.lsdd{letter-spacing:0.008136px;}
.lsbe{letter-spacing:0.008588px;}
.ls5f{letter-spacing:0.008649px;}
.ls42{letter-spacing:0.009082px;}
.ls7a{letter-spacing:0.009514px;}
.lsf9{letter-spacing:0.009729px;}
.lsbc{letter-spacing:0.009944px;}
.ls3f{letter-spacing:0.011677px;}
.lsbf{letter-spacing:0.011751px;}
.ls15{letter-spacing:0.012321px;}
.ls12{letter-spacing:0.012600px;}
.lsde{letter-spacing:0.012655px;}
.lsc9{letter-spacing:0.012881px;}
.ls43{letter-spacing:0.012974px;}
.lsc7{letter-spacing:0.013107px;}
.ls21{letter-spacing:0.013142px;}
.lsf8{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.013500px;}
.lsc3{letter-spacing:0.013559px;}
.ls84{letter-spacing:0.013839px;}
.lsc2{letter-spacing:0.014463px;}
.ls37{letter-spacing:0.014704px;}
.ls62{letter-spacing:0.016434px;}
.ls8d{letter-spacing:0.016800px;}
.ls59{letter-spacing:0.019461px;}
.lsd7{letter-spacing:0.021469px;}
.ls2{letter-spacing:0.021600px;}
.ls64{letter-spacing:0.023353px;}
.ls1e{letter-spacing:0.023410px;}
.lsf7{letter-spacing:0.024444px;}
.ls4e{letter-spacing:0.025083px;}
.lsa{letter-spacing:0.025200px;}
.ls1f{letter-spacing:0.025874px;}
.ls6b{letter-spacing:0.025948px;}
.ls0{letter-spacing:0.026400px;}
.ls99{letter-spacing:0.027246px;}
.ls69{letter-spacing:0.027678px;}
.ls3c{letter-spacing:0.063141px;}
.lsc8{letter-spacing:1.356391px;}
.lsdf{letter-spacing:1.356843px;}
.lsb3{letter-spacing:1.466222px;}
.lsb1{letter-spacing:1.466448px;}
.lsb5{letter-spacing:1.466674px;}
.ls20{letter-spacing:2.053495px;}
.ls2a{letter-spacing:2.058710px;}
.lsc5{letter-spacing:2.211536px;}
.lsc6{letter-spacing:2.217864px;}
.lsb0{letter-spacing:2.252214px;}
.lsd6{letter-spacing:2.258542px;}
.lsae{letter-spacing:2.264418px;}
.ls6a{letter-spacing:2.543357px;}
.ls6f{letter-spacing:2.643257px;}
.ls39{letter-spacing:2.696884px;}
.ls34{letter-spacing:2.697748px;}
.ls36{letter-spacing:2.715912px;}
.ls67{letter-spacing:2.805866px;}
.ls86{letter-spacing:2.806731px;}
.ls24{letter-spacing:2.934444px;}
.ls23{letter-spacing:2.934854px;}
.ls18{letter-spacing:4.078240px;}
.ls1b{letter-spacing:4.115203px;}
.ls85{letter-spacing:4.232152px;}
.ls6c{letter-spacing:4.255506px;}
.ls25{letter-spacing:4.265519px;}
.ls26{letter-spacing:4.302071px;}
.ls49{letter-spacing:4.303510px;}
.ls66{letter-spacing:4.309997px;}
.ls5b{letter-spacing:4.324701px;}
.ls3b{letter-spacing:4.333350px;}
.ls38{letter-spacing:4.411195px;}
.ls77{letter-spacing:4.499419px;}
.ls6e{letter-spacing:4.502014px;}
.lsc{letter-spacing:4.813200px;}
.ls7c{letter-spacing:6.180863px;}
.ls7e{letter-spacing:6.485754px;}
.ls71{letter-spacing:6.693772px;}
.ls7d{letter-spacing:8.983269px;}
.lse1{letter-spacing:9.527956px;}
.lsd0{letter-spacing:9.528182px;}
.lsd1{letter-spacing:9.536317px;}
.lse2{letter-spacing:9.536543px;}
.lsd5{letter-spacing:9.536769px;}
.lsd4{letter-spacing:9.566600px;}
.ls19{letter-spacing:9.761903px;}
.ls22{letter-spacing:9.978752px;}
.lsac{letter-spacing:10.521633px;}
.lsad{letter-spacing:10.549655px;}
.lsb9{letter-spacing:10.564119px;}
.lsb7{letter-spacing:11.835763px;}
.lsd3{letter-spacing:11.906498px;}
.lscd{letter-spacing:11.906950px;}
.lscf{letter-spacing:11.928193px;}
.lscb{letter-spacing:11.945368px;}
.lsd9{letter-spacing:11.953956px;}
.ls8{letter-spacing:12.000000px;}
.lsf4{letter-spacing:12.000240px;}
.ls17{letter-spacing:12.813806px;}
.ls16{letter-spacing:12.850769px;}
.lsc0{letter-spacing:12.937012px;}
.lsea{letter-spacing:13.031927px;}
.lsaa{letter-spacing:13.164809px;}
.lsbb{letter-spacing:13.178821px;}
.lsb8{letter-spacing:13.179273px;}
.lsab{letter-spacing:13.221759px;}
.lsf6{letter-spacing:13.636410px;}
.lse0{letter-spacing:13.718936px;}
.lsdb{letter-spacing:13.722552px;}
.lsb{letter-spacing:14.058000px;}
.ls9{letter-spacing:14.058120px;}
.lsca{letter-spacing:14.162554px;}
.lsda{letter-spacing:15.062671px;}
.ls7b{letter-spacing:15.130399px;}
.lsbd{letter-spacing:15.387871px;}
.lsba{letter-spacing:15.428549px;}
.ls75{letter-spacing:15.620820px;}
.lsd8{letter-spacing:15.899738px;}
.ls1d{letter-spacing:16.047752px;}
.lsec{letter-spacing:17.099065px;}
.lsa1{letter-spacing:17.773224px;}
.lsd2{letter-spacing:18.166415px;}
.lsb6{letter-spacing:18.503592px;}
.lse9{letter-spacing:19.595349px;}
.ls88{letter-spacing:20.134078px;}
.ls55{letter-spacing:20.134510px;}
.ls53{letter-spacing:20.134943px;}
.ls47{letter-spacing:20.188569px;}
.ls56{letter-spacing:20.189002px;}
.ls89{letter-spacing:20.189434px;}
.ls46{letter-spacing:20.216247px;}
.ls8a{letter-spacing:20.217112px;}
.lsa2{letter-spacing:20.579522px;}
.lsb4{letter-spacing:21.066768px;}
.lsb2{letter-spacing:21.071288px;}
.ls9e{letter-spacing:21.306072px;}
.lsf3{letter-spacing:22.500000px;}
.ls9d{letter-spacing:22.750090px;}
.ls61{letter-spacing:22.785120px;}
.ls5e{letter-spacing:22.859505px;}
.lsaf{letter-spacing:22.903161px;}
.ls92{letter-spacing:22.940809px;}
.lse6{letter-spacing:23.240112px;}
.ls9f{letter-spacing:24.212271px;}
.lsa0{letter-spacing:24.239517px;}
.ls45{letter-spacing:25.193113px;}
.ls68{letter-spacing:25.211277px;}
.ls3a{letter-spacing:25.219926px;}
.ls4d{letter-spacing:25.220359px;}
.ls35{letter-spacing:25.220791px;}
.ls79{letter-spacing:25.229441px;}
.ls52{letter-spacing:25.274418px;}
.ls54{letter-spacing:25.274850px;}
.ls65{letter-spacing:25.302096px;}
.ls44{letter-spacing:25.555091px;}
.ls41{letter-spacing:25.740620px;}
.ls5d{letter-spacing:27.102469px;}
.ls60{letter-spacing:27.180313px;}
.ls74{letter-spacing:27.427254px;}
.ls70{letter-spacing:27.581213px;}
.ls90{letter-spacing:28.126558px;}
.ls78{letter-spacing:28.870839px;}
.ls96{letter-spacing:29.298119px;}
.ls63{letter-spacing:29.447322px;}
.ls94{letter-spacing:29.452511px;}
.ls4c{letter-spacing:29.525166px;}
.ls6d{letter-spacing:29.531653px;}
.ls72{letter-spacing:30.605909px;}
.ls9a{letter-spacing:32.404120px;}
.ls40{letter-spacing:32.590947px;}
.ls93{letter-spacing:33.575681px;}
.ls7f{letter-spacing:33.612441px;}
.lsa6{letter-spacing:34.634368px;}
.ls73{letter-spacing:35.954699px;}
.ls76{letter-spacing:38.507138px;}
.ls3e{letter-spacing:39.363429px;}
.ls9b{letter-spacing:40.450658px;}
.ls81{letter-spacing:42.194378px;}
.ls50{letter-spacing:42.243679px;}
.ls80{letter-spacing:43.777218px;}
.ls4a{letter-spacing:45.127390px;}
.ls82{letter-spacing:45.227723px;}
.ls87{letter-spacing:45.290864px;}
.ls83{letter-spacing:45.564185px;}
.ls5a{letter-spacing:46.369444px;}
.ls8c{letter-spacing:48.170250px;}
.ls51{letter-spacing:51.662878px;}
.ls58{letter-spacing:59.836563px;}
.lsa4{letter-spacing:74.042773px;}
.lsa8{letter-spacing:513.180265px;}
.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;}
}
.wsc4{word-spacing:-513.271084px;}
.wsb5{word-spacing:-74.124943px;}
.ws8e{word-spacing:-40.541477px;}
.ws156{word-spacing:-40.506750px;}
.ws3{word-spacing:-35.028000px;}
.wsb8{word-spacing:-34.716537px;}
.ws71{word-spacing:-33.666500px;}
.ws8d{word-spacing:-32.494938px;}
.ws4{word-spacing:-30.045600px;}
.ws5{word-spacing:-30.024000px;}
.ws75{word-spacing:-29.543330px;}
.ws82{word-spacing:-29.388938px;}
.ws65{word-spacing:-28.217377px;}
.ws157{word-spacing:-26.688000px;}
.ws99{word-spacing:-24.330335px;}
.ws98{word-spacing:-24.303090px;}
.wseb{word-spacing:-23.368800px;}
.wsec{word-spacing:-23.352000px;}
.wsf6{word-spacing:-23.287570px;}
.ws6b{word-spacing:-23.031628px;}
.ws91{word-spacing:-22.840908px;}
.ws96{word-spacing:-21.396891px;}
.ws9e{word-spacing:-20.670341px;}
.ws103{word-spacing:-19.642807px;}
.ws0{word-spacing:-18.778500px;}
.ws6{word-spacing:-18.765000px;}
.ws2{word-spacing:-18.751500px;}
.ws9c{word-spacing:-17.864042px;}
.ws130{word-spacing:-17.146523px;}
.ws10d{word-spacing:-13.079385px;}
.wsd{word-spacing:-2.088897px;}
.ws8a{word-spacing:-0.118064px;}
.wscf{word-spacing:-0.099901px;}
.wsba{word-spacing:-0.098603px;}
.ws6a{word-spacing:-0.090819px;}
.wsb4{word-spacing:-0.082169px;}
.wsb7{word-spacing:-0.073952px;}
.ws69{word-spacing:-0.072655px;}
.ws83{word-spacing:-0.063573px;}
.ws145{word-spacing:-0.055819px;}
.ws81{word-spacing:-0.054491px;}
.ws143{word-spacing:-0.051526px;}
.wsf5{word-spacing:-0.047458px;}
.ws84{word-spacing:-0.044501px;}
.ws38{word-spacing:-0.043123px;}
.ws139{word-spacing:-0.042938px;}
.ws1a{word-spacing:-0.039016px;}
.ws13b{word-spacing:-0.038644px;}
.ws87{word-spacing:-0.038144px;}
.wsf9{word-spacing:-0.037966px;}
.wsb6{word-spacing:-0.034511px;}
.ws13d{word-spacing:-0.034350px;}
.wsf0{word-spacing:-0.033220px;}
.ws5d{word-spacing:-0.030186px;}
.ws146{word-spacing:-0.030057px;}
.wsf7{word-spacing:-0.028475px;}
.wsf1{word-spacing:-0.023254px;}
.ws155{word-spacing:-0.021469px;}
.ws13c{word-spacing:-0.018034px;}
.ws1{word-spacing:0.000000px;}
.ws44{word-spacing:7.487247px;}
.ws43{word-spacing:7.510656px;}
.ws42{word-spacing:7.557476px;}
.ws52{word-spacing:8.434934px;}
.ws30{word-spacing:8.713594px;}
.ws57{word-spacing:8.762672px;}
.ws5c{word-spacing:8.913604px;}
.ws5e{word-spacing:8.926541px;}
.ws2c{word-spacing:9.406853px;}
.ws59{word-spacing:9.409523px;}
.ws2d{word-spacing:9.578526px;}
.ws13{word-spacing:9.598034px;}
.ws12{word-spacing:9.629247px;}
.wsf{word-spacing:9.664362px;}
.ws14{word-spacing:9.679968px;}
.ws11{word-spacing:9.687771px;}
.ws10{word-spacing:9.695575px;}
.ws40{word-spacing:9.703378px;}
.ws15{word-spacing:9.711181px;}
.ws2f{word-spacing:9.718985px;}
.ws2e{word-spacing:9.758001px;}
.ws11d{word-spacing:9.875980px;}
.ws5a{word-spacing:9.931316px;}
.ws5b{word-spacing:9.970127px;}
.ws28{word-spacing:10.620263px;}
.ws154{word-spacing:10.682989px;}
.ws4d{word-spacing:10.698912px;}
.ws36{word-spacing:10.707537px;}
.ws31{word-spacing:10.742036px;}
.wse{word-spacing:10.746348px;}
.ws60{word-spacing:10.789471px;}
.wsc{word-spacing:10.798096px;}
.ws2a{word-spacing:10.912886px;}
.ws5f{word-spacing:10.957653px;}
.ws120{word-spacing:10.962765px;}
.ws13e{word-spacing:11.193952px;}
.ws140{word-spacing:11.198246px;}
.ws141{word-spacing:11.202540px;}
.ws13f{word-spacing:11.211127px;}
.ws3a{word-spacing:11.479446px;}
.ws122{word-spacing:11.821752px;}
.wsed{word-spacing:11.826498px;}
.ws29{word-spacing:11.833673px;}
.wsee{word-spacing:11.873956px;}
.wsef{word-spacing:11.878701px;}
.ws27{word-spacing:12.020952px;}
.ws41{word-spacing:12.091182px;}
.ws2b{word-spacing:12.095083px;}
.ws7{word-spacing:12.157181px;}
.ws4f{word-spacing:12.212543px;}
.ws50{word-spacing:12.216855px;}
.ws8{word-spacing:12.225488px;}
.ws9{word-spacing:12.279777px;}
.ws18{word-spacing:12.282362px;}
.ws17{word-spacing:12.286264px;}
.ws24{word-spacing:12.325280px;}
.ws54{word-spacing:12.393661px;}
.ws55{word-spacing:12.415223px;}
.ws46{word-spacing:12.473542px;}
.ws1c{word-spacing:12.762264px;}
.wsa{word-spacing:12.788138px;}
.ws34{word-spacing:12.807646px;}
.ws22{word-spacing:12.832493px;}
.wsb{word-spacing:12.839475px;}
.ws16{word-spacing:12.879313px;}
.ws11f{word-spacing:12.918028px;}
.ws11e{word-spacing:12.922774px;}
.ws1d{word-spacing:12.949542px;}
.ws153{word-spacing:13.004899px;}
.ws14f{word-spacing:13.005938px;}
.ws10b{word-spacing:13.012944px;}
.ws14e{word-spacing:13.048876px;}
.ws19{word-spacing:13.296788px;}
.ws1b{word-spacing:13.351411px;}
.ws1f{word-spacing:13.538690px;}
.ws1e{word-spacing:13.612821px;}
.ws151{word-spacing:13.645715px;}
.ws14c{word-spacing:13.675772px;}
.ws150{word-spacing:13.714416px;}
.ws152{word-spacing:13.727298px;}
.ws23{word-spacing:13.729870px;}
.ws14b{word-spacing:13.748767px;}
.ws20{word-spacing:13.792296px;}
.ws21{word-spacing:13.800100px;}
.ws4c{word-spacing:13.808108px;}
.ws48{word-spacing:14.213468px;}
.ws14d{word-spacing:14.264024px;}
.ws123{word-spacing:14.294306px;}
.ws121{word-spacing:14.379730px;}
.ws4a{word-spacing:14.407523px;}
.ws4b{word-spacing:14.433397px;}
.ws4e{word-spacing:14.584329px;}
.ws111{word-spacing:14.626511px;}
.ws26{word-spacing:14.642854px;}
.ws25{word-spacing:14.681870px;}
.wsff{word-spacing:14.721427px;}
.ws12c{word-spacing:14.863800px;}
.ws12b{word-spacing:14.911258px;}
.ws101{word-spacing:15.048886px;}
.ws100{word-spacing:15.148548px;}
.ws39{word-spacing:15.175120px;}
.ws37{word-spacing:15.188057px;}
.ws129{word-spacing:15.248209px;}
.ws10c{word-spacing:15.264548px;}
.ws45{word-spacing:15.458297px;}
.ws149{word-spacing:15.822675px;}
.ws142{word-spacing:15.844144px;}
.ws147{word-spacing:15.848438px;}
.ws11c{word-spacing:15.903128px;}
.ws11b{word-spacing:15.926856px;}
.ws11a{word-spacing:15.950585px;}
.ws119{word-spacing:15.969795px;}
.ws56{word-spacing:15.985839px;}
.ws53{word-spacing:16.231643px;}
.ws12d{word-spacing:16.249570px;}
.ws14a{word-spacing:16.410927px;}
.ws58{word-spacing:16.568005px;}
.wsbb{word-spacing:16.647504px;}
.wsbc{word-spacing:16.696806px;}
.ws35{word-spacing:16.740499px;}
.ws106{word-spacing:16.752623px;}
.ws12f{word-spacing:16.852285px;}
.ws115{word-spacing:17.032624px;}
.ws116{word-spacing:17.046862px;}
.ws10a{word-spacing:17.065845px;}
.wsf2{word-spacing:17.350592px;}
.ws9a{word-spacing:17.872692px;}
.ws3d{word-spacing:18.029888px;}
.ws3c{word-spacing:18.034200px;}
.ws148{word-spacing:18.130347px;}
.ws144{word-spacing:18.171025px;}
.ws109{word-spacing:18.185850px;}
.ws118{word-spacing:18.366190px;}
.ws3e{word-spacing:18.387812px;}
.ws117{word-spacing:18.394665px;}
.ws107{word-spacing:18.508564px;}
.ws108{word-spacing:18.522801px;}
.ws47{word-spacing:18.538744px;}
.wsd4{word-spacing:18.636002px;}
.ws3f{word-spacing:18.900980px;}
.ws127{word-spacing:18.978397px;}
.ws51{word-spacing:19.017413px;}
.ws10f{word-spacing:19.097041px;}
.ws10e{word-spacing:19.187211px;}
.ws49{word-spacing:19.371025px;}
.ws3b{word-spacing:19.457272px;}
.ws126{word-spacing:19.505179px;}
.ws102{word-spacing:19.576366px;}
.ws128{word-spacing:19.704502px;}
.ws133{word-spacing:19.894333px;}
.ws134{word-spacing:19.941791px;}
.ws77{word-spacing:20.270739px;}
.wsa9{word-spacing:20.307066px;}
.ws12a{word-spacing:20.402132px;}
.wsd5{word-spacing:20.461025px;}
.wsd6{word-spacing:20.561358px;}
.ws9d{word-spacing:20.634013px;}
.ws104{word-spacing:21.009593px;}
.ws105{word-spacing:21.085525px;}
.ws110{word-spacing:21.180441px;}
.ws7b{word-spacing:21.351481px;}
.ws7a{word-spacing:21.369645px;}
.ws97{word-spacing:21.378727px;}
.ws79{word-spacing:21.460464px;}
.ws125{word-spacing:22.067903px;}
.ws33{word-spacing:22.083486px;}
.ws9b{word-spacing:22.127462px;}
.ws124{word-spacing:22.129598px;}
.ws88{word-spacing:22.559370px;}
.ws90{word-spacing:22.568452px;}
.ws8b{word-spacing:22.577534px;}
.ws7c{word-spacing:22.586616px;}
.wsbf{word-spacing:22.613862px;}
.ws89{word-spacing:22.641107px;}
.ws61{word-spacing:22.713762px;}
.ws62{word-spacing:22.722844px;}
.ws63{word-spacing:22.731926px;}
.ws68{word-spacing:22.813663px;}
.wsfd{word-spacing:22.860449px;}
.ws12e{word-spacing:22.903161px;}
.wsfc{word-spacing:22.926890px;}
.wsfe{word-spacing:22.931636px;}
.wsf3{word-spacing:23.216383px;}
.ws112{word-spacing:23.453672px;}
.wsbd{word-spacing:23.458476px;}
.wsbe{word-spacing:23.467558px;}
.wsde{word-spacing:23.540212px;}
.ws114{word-spacing:23.804861px;}
.ws113{word-spacing:23.833335px;}
.wsc2{word-spacing:24.348499px;}
.wsc1{word-spacing:24.539218px;}
.wse5{word-spacing:24.630037px;}
.ws6c{word-spacing:24.947903px;}
.wsf4{word-spacing:25.515445px;}
.ws93{word-spacing:26.700704px;}
.ws92{word-spacing:26.900505px;}
.wscd{word-spacing:27.336435px;}
.wscc{word-spacing:27.390926px;}
.ws32{word-spacing:27.391975px;}
.wsca{word-spacing:27.427254px;}
.wsc9{word-spacing:27.445417px;}
.wsc8{word-spacing:27.536236px;}
.wscb{word-spacing:27.726956px;}
.wsd1{word-spacing:27.881347px;}
.wsd3{word-spacing:27.990330px;}
.ws64{word-spacing:28.062985px;}
.wsb2{word-spacing:28.217377px;}
.ws78{word-spacing:28.262786px;}
.ws76{word-spacing:28.444423px;}
.wsc6{word-spacing:29.052909px;}
.wsc5{word-spacing:29.080154px;}
.ws74{word-spacing:29.443429px;}
.wse2{word-spacing:29.806704px;}
.wsa7{word-spacing:30.169979px;}
.ws6d{word-spacing:30.506008px;}
.ws8c{word-spacing:32.249728px;}
.ws13a{word-spacing:32.263658px;}
.ws138{word-spacing:32.306596px;}
.ws131{word-spacing:32.375749px;}
.wsa2{word-spacing:32.658412px;}
.wsa3{word-spacing:32.794640px;}
.wsa1{word-spacing:32.821886px;}
.ws70{word-spacing:33.512108px;}
.wsd7{word-spacing:33.621091px;}
.wsd8{word-spacing:33.630172px;}
.wsce{word-spacing:34.047506px;}
.wsd0{word-spacing:34.093348px;}
.wsa8{word-spacing:34.426912px;}
.wsb9{word-spacing:34.494680px;}
.ws132{word-spacing:34.668032px;}
.ws73{word-spacing:35.019699px;}
.ws72{word-spacing:35.056026px;}
.ws6f{word-spacing:35.800740px;}
.ws9f{word-spacing:36.708927px;}
.wsf8{word-spacing:36.931703px;}
.wsfb{word-spacing:36.941195px;}
.wsfa{word-spacing:37.069557px;}
.ws66{word-spacing:37.435477px;}
.wsa5{word-spacing:37.971307px;}
.ws67{word-spacing:37.980389px;}
.wsa4{word-spacing:37.998553px;}
.wsd9{word-spacing:39.314992px;}
.wsda{word-spacing:39.433489px;}
.wsdb{word-spacing:39.533389px;}
.ws8f{word-spacing:40.559641px;}
.wse4{word-spacing:40.977407px;}
.wsb3{word-spacing:41.010707px;}
.wsc3{word-spacing:41.297867px;}
.wsb1{word-spacing:42.067232px;}
.wsac{word-spacing:42.612144px;}
.ws6e{word-spacing:43.783705px;}
.wsb0{word-spacing:44.492091px;}
.ws85{word-spacing:44.501173px;}
.wse3{word-spacing:44.782711px;}
.wsa0{word-spacing:45.037004px;}
.wsdd{word-spacing:45.155068px;}
.wsad{word-spacing:45.164150px;}
.wsdc{word-spacing:45.245887px;}
.wse7{word-spacing:45.699980px;}
.ws86{word-spacing:47.053179px;}
.wsa6{word-spacing:47.289308px;}
.ws7f{word-spacing:47.443700px;}
.ws80{word-spacing:47.988612px;}
.wsea{word-spacing:48.070349px;}
.wse8{word-spacing:48.133922px;}
.wse9{word-spacing:48.161168px;}
.wsae{word-spacing:48.397296px;}
.wsaf{word-spacing:48.515361px;}
.ws7d{word-spacing:49.396302px;}
.ws95{word-spacing:49.677840px;}
.ws94{word-spacing:49.859478px;}
.wse6{word-spacing:50.604191px;}
.wsdf{word-spacing:50.894811px;}
.wsc0{word-spacing:52.593121px;}
.wsab{word-spacing:55.462993px;}
.wsaa{word-spacing:55.508402px;}
.ws7e{word-spacing:59.132069px;}
.wsd2{word-spacing:69.244085px;}
.wse1{word-spacing:69.385503px;}
.wse0{word-spacing:73.894133px;}
.wsc7{word-spacing:547.182794px;}
.ws135{word-spacing:672.820871px;}
.ws136{word-spacing:680.175482px;}
.ws137{word-spacing:683.401261px;}
._2e{margin-left:-513.216592px;}
._34{margin-left:-168.865080px;}
._35{margin-left:-165.140700px;}
._8{margin-left:-131.324784px;}
._2a{margin-left:-74.940934px;}
._29{margin-left:-73.128179px;}
._21{margin-left:-41.447329px;}
._20{margin-left:-40.160817px;}
._2b{margin-left:-35.621711px;}
._19{margin-left:-33.732308px;}
._1c{margin-left:-32.656594px;}
._1f{margin-left:-31.542905px;}
._1d{margin-left:-29.924769px;}
._18{margin-left:-28.048609px;}
._24{margin-left:-24.248599px;}
._1b{margin-left:-23.060171px;}
._22{margin-left:-21.949933px;}
._23{margin-left:-20.586961px;}
._25{margin-left:-18.532641px;}
._26{margin-left:-16.977479px;}
._f{margin-left:-14.893200px;}
._0{margin-left:-13.015200px;}
._c{margin-left:-11.566800px;}
._1{margin-left:-9.587400px;}
._4{margin-left:-7.590000px;}
._2{margin-left:-6.455400px;}
._6{margin-left:-4.953000px;}
._3{margin-left:-3.480000px;}
._5{margin-left:-2.349600px;}
._a{margin-left:-1.000920px;}
._e{width:1.021200px;}
._7{width:2.376000px;}
._2d{width:3.391375px;}
._1e{width:4.420017px;}
._d{width:6.631800px;}
._30{width:7.972920px;}
._11{width:10.702141px;}
._12{width:11.750498px;}
._2c{width:12.875745px;}
._9{width:14.652000px;}
._1a{width:15.747966px;}
._13{width:17.014458px;}
._32{width:21.524850px;}
._10{width:33.285094px;}
._33{width:42.920885px;}
._28{width:73.952387px;}
._27{width:82.169319px;}
._15{width:195.219571px;}
._b{width:235.186021px;}
._14{width:400.357521px;}
._17{width:444.302385px;}
._16{width:471.326520px;}
._2f{width:503.116307px;}
._31{width:679.056833px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(39,93,165);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(63,59,60);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(255,38,0);}
.fc3{color:transparent;}
.fc0{color:rgb(0,94,170);}
.fs10{font-size:23.409838px;}
.fs14{font-size:27.311478px;}
.fs1d{font-size:30.056642px;}
.fsf{font-size:30.186371px;}
.fs1a{font-size:33.220499px;}
.fs13{font-size:34.909408px;}
.fs11{font-size:39.016397px;}
.fs1b{font-size:40.678162px;}
.fs12{font-size:41.069481px;}
.fs1c{font-size:42.938060px;}
.fse{font-size:43.123387px;}
.fs19{font-size:47.457856px;}
.fsc{font-size:49.099467px;}
.fsd{font-size:51.337365px;}
.fs6{font-size:54.000000px;}
.fs18{font-size:57.518523px;}
.fsb{font-size:60.000000px;}
.fs16{font-size:63.573105px;}
.fs21{font-size:64.000020px;}
.fs3{font-size:67.500000px;}
.fs9{font-size:68.929080px;}
.fs17{font-size:82.169319px;}
.fs5{font-size:84.000000px;}
.fs15{font-size:90.818721px;}
.fs1e{font-size:91.665000px;}
.fs8{font-size:94.500000px;}
.fs20{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:114.146556px;}
.fs1f{font-size:122.220000px;}
.fs7{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.fs1{font-size:174.000000px;}
.fs0{font-size:180.000000px;}
.y31{bottom:-1216.663500px;}
.y10b{bottom:-1064.354720px;}
.y16d{bottom:-1064.354570px;}
.ye1{bottom:-973.881110px;}
.y143{bottom:-973.880960px;}
.y10a{bottom:-973.877217px;}
.y16c{bottom:-973.877067px;}
.ye0{bottom:-947.588117px;}
.y142{bottom:-947.587967px;}
.y109{bottom:-947.585198px;}
.y16b{bottom:-947.585048px;}
.ydf{bottom:-921.316531px;}
.y141{bottom:-921.316381px;}
.y108{bottom:-921.313720px;}
.y16a{bottom:-921.313570px;}
.yde{bottom:-895.022566px;}
.y140{bottom:-895.022416px;}
.y107{bottom:-895.021701px;}
.y169{bottom:-895.021551px;}
.ydd{bottom:-868.750872px;}
.y13f{bottom:-868.750722px;}
.y106{bottom:-868.750007px;}
.y168{bottom:-868.749857px;}
.ydc{bottom:-842.479394px;}
.y13e{bottom:-842.479244px;}
.y105{bottom:-842.478530px;}
.y167{bottom:-842.478380px;}
.ydb{bottom:-816.186510px;}
.y13d{bottom:-816.186360px;}
.yda{bottom:-789.914600px;}
.y13c{bottom:-789.914450px;}
.y104{bottom:-789.913735px;}
.y166{bottom:-789.913585px;}
.yd9{bottom:-763.621932px;}
.y13b{bottom:-763.621782px;}
.y103{bottom:-763.621715px;}
.y165{bottom:-763.621565px;}
.yd8{bottom:-737.350238px;}
.y13a{bottom:-737.350088px;}
.yd7{bottom:-711.057137px;}
.y139{bottom:-711.056987px;}
.y102{bottom:-684.785660px;}
.y164{bottom:-684.785510px;}
.yd6{bottom:-684.784578px;}
.y138{bottom:-684.784428px;}
.yd5{bottom:-658.492559px;}
.y137{bottom:-658.492409px;}
.y101{bottom:-658.491694px;}
.y163{bottom:-658.491544px;}
.yd4{bottom:-632.221081px;}
.y136{bottom:-632.220931px;}
.y100{bottom:-632.220000px;}
.y162{bottom:-632.219850px;}
.yd3{bottom:-605.927980px;}
.y135{bottom:-605.927830px;}
.ya5{bottom:-583.144122px;}
.yff{bottom:-579.656503px;}
.y161{bottom:-579.656353px;}
.yd2{bottom:-579.655422px;}
.y134{bottom:-579.655272px;}
.yfe{bottom:-560.001386px;}
.y160{bottom:-560.001236px;}
.yfd{bottom:-560.001169px;}
.y15f{bottom:-560.001019px;}
.yd1{bottom:-553.363402px;}
.y133{bottom:-553.363252px;}
.y90{bottom:-534.400475px;}
.ya4{bottom:-533.641709px;}
.yd0{bottom:-527.091925px;}
.y132{bottom:-527.091775px;}
.yfc{bottom:-527.090195px;}
.y15e{bottom:-527.090045px;}
.y8f{bottom:-523.153998px;}
.ya3{bottom:-521.152868px;}
.y8e{bottom:-511.898692px;}
.ya2{bottom:-508.678299px;}
.yfb{bottom:-500.798175px;}
.y15d{bottom:-500.798025px;}
.ycf{bottom:-500.797959px;}
.y131{bottom:-500.797809px;}
.y8d{bottom:-500.643488px;}
.ya1{bottom:-496.194078px;}
.y8c{bottom:-489.397011px;}
.ya0{bottom:-483.719612px;}
.yfa{bottom:-474.526698px;}
.y15c{bottom:-474.526548px;}
.yce{bottom:-474.526481px;}
.y130{bottom:-474.526331px;}
.y9f{bottom:-471.245043px;}
.y8b{bottom:-468.161824px;}
.y9e{bottom:-458.760823px;}
.y9d{bottom:-446.286356px;}
.ycd{bottom:-440.060777px;}
.y12f{bottom:-440.060627px;}
.y8a{bottom:-439.790126px;}
.y9c{bottom:-433.802136px;}
.y89{bottom:-427.315660px;}
.y9b{bottom:-421.327567px;}
.yf4{bottom:-417.720236px;}
.y156{bottom:-417.720086px;}
.yf6{bottom:-416.513645px;}
.y158{bottom:-416.513495px;}
.y88{bottom:-414.841091px;}
.y9a{bottom:-408.843347px;}
.y87{bottom:-402.356870px;}
.yf8{bottom:-397.033245px;}
.y15a{bottom:-397.033095px;}
.yf9{bottom:-396.507578px;}
.y15b{bottom:-396.507428px;}
.y99{bottom:-396.368880px;}
.yf7{bottom:-390.396775px;}
.y159{bottom:-390.396625px;}
.yf3{bottom:-390.395694px;}
.y155{bottom:-390.395544px;}
.y86{bottom:-389.882404px;}
.y98{bottom:-383.884660px;}
.ycc{bottom:-379.595835px;}
.y12e{bottom:-379.595685px;}
.y85{bottom:-377.398184px;}
.y97{bottom:-371.410091px;}
.yf5{bottom:-368.833816px;}
.y157{bottom:-368.833666px;}
.y84{bottom:-364.923615px;}
.y96{bottom:-358.925870px;}
.ycb{bottom:-353.302950px;}
.y12d{bottom:-353.302800px;}
.y83{bottom:-352.439394px;}
.y95{bottom:-346.451404px;}
.y82{bottom:-339.964928px;}
.y94{bottom:-333.967184px;}
.yf2{bottom:-330.884565px;}
.y154{bottom:-330.884415px;}
.y81{bottom:-327.480708px;}
.yca{bottom:-327.031256px;}
.y12c{bottom:-327.031106px;}
.y93{bottom:-321.492615px;}
.y80{bottom:-315.006241px;}
.y92{bottom:-309.008394px;}
.yf1{bottom:-304.592545px;}
.y153{bottom:-304.592395px;}
.y7f{bottom:-296.589270px;}
.y91{bottom:-296.533928px;}
.yc9{bottom:-292.564687px;}
.y12b{bottom:-292.564537px;}
.y7e{bottom:-253.546072px;}
.yec{bottom:-247.804896px;}
.y14e{bottom:-247.804746px;}
.yee{bottom:-247.045911px;}
.y150{bottom:-247.045761px;}
.yc8{bottom:-232.099745px;}
.y12a{bottom:-232.099595px;}
.y7d{bottom:-231.435172px;}
.yf0{bottom:-227.565944px;}
.y152{bottom:-227.565794px;}
.yef{bottom:-220.948503px;}
.y151{bottom:-220.948353px;}
.yeb{bottom:-220.945476px;}
.y14d{bottom:-220.945326px;}
.y7c{bottom:-219.163590px;}
.y7b{bottom:-206.882153px;}
.yc7{bottom:-205.806428px;}
.y129{bottom:-205.806278px;}
.yed{bottom:-199.366083px;}
.y14f{bottom:-199.365933px;}
.y7a{bottom:-194.610572px;}
.y79{bottom:-182.338888px;}
.yc6{bottom:-179.531274px;}
.y128{bottom:-179.531124px;}
.y78{bottom:-170.057553px;}
.y77{bottom:-157.785869px;}
.yea{bottom:-156.802592px;}
.y14c{bottom:-156.802442px;}
.yc5{bottom:-153.239254px;}
.y127{bottom:-153.239104px;}
.y76{bottom:-145.514288px;}
.y75{bottom:-133.232850px;}
.ye9{bottom:-130.530898px;}
.y14b{bottom:-130.530748px;}
.yc4{bottom:-126.967777px;}
.y126{bottom:-126.967627px;}
.y74{bottom:-120.961269px;}
.y73{bottom:-108.679831px;}
.ye8{bottom:-104.238879px;}
.y14a{bottom:-104.238729px;}
.yc3{bottom:-100.675757px;}
.y125{bottom:-100.675607px;}
.y72{bottom:-96.408250px;}
.y71{bottom:-84.136566px;}
.ye7{bottom:-77.967401px;}
.y149{bottom:-77.967251px;}
.yc2{bottom:-74.404064px;}
.y124{bottom:-74.403914px;}
.y70{bottom:-71.855231px;}
.y6f{bottom:-59.583548px;}
.ye6{bottom:-51.675381px;}
.y148{bottom:-51.675231px;}
.yc1{bottom:-48.112044px;}
.y123{bottom:-48.111894px;}
.y6e{bottom:-47.311966px;}
.y1a1{bottom:-36.564851px;}
.y6d{bottom:-35.030529px;}
.y6c{bottom:-22.758948px;}
.y6b{bottom:-10.487264px;}
.yc0{bottom:-9.346073px;}
.y122{bottom:-9.345923px;}
.y0{bottom:0.000000px;}
.y6a{bottom:9.933097px;}
.y2f{bottom:10.563300px;}
.y2d{bottom:10.563450px;}
.y2b{bottom:10.632450px;}
.y1a0{bottom:12.432051px;}
.ye5{bottom:15.951266px;}
.y147{bottom:15.951416px;}
.y1a2{bottom:24.498930px;}
.y19f{bottom:24.817817px;}
.y5b{bottom:28.200735px;}
.y1b1{bottom:30.455580px;}
.yc{bottom:30.923085px;}
.y42{bottom:31.035240px;}
.y69{bottom:37.056270px;}
.y19e{bottom:37.204318px;}
.ye4{bottom:39.636139px;}
.y146{bottom:39.636289px;}
.y5a{bottom:47.073120px;}
.yd{bottom:49.436460px;}
.y1b0{bottom:49.454460px;}
.y19d{bottom:49.581327px;}
.y41{bottom:49.907640px;}
.y68{bottom:50.178100px;}
.ybf{bottom:51.118653px;}
.y121{bottom:51.118803px;}
.ye3{bottom:60.265179px;}
.y145{bottom:60.265329px;}
.y19c{bottom:61.967714px;}
.y67{bottom:63.299931px;}
.ye2{bottom:63.340042px;}
.y144{bottom:63.340192px;}
.y66{bottom:72.688508px;}
.y19b{bottom:74.353762px;}
.ybe{bottom:77.411538px;}
.y120{bottom:77.411688px;}
.y11{bottom:81.848700px;}
.y59{bottom:84.768930px;}
.y173{bottom:86.109105px;}
.y19a{bottom:86.730658px;}
.y1c3{bottom:96.637485px;}
.y65{bottom:96.834422px;}
.y29{bottom:97.142550px;}
.y3e{bottom:98.349525px;}
.y178{bottom:99.435405px;}
.y24{bottom:101.539395px;}
.ybd{bottom:103.685177px;}
.y11f{bottom:103.685327px;}
.y1af{bottom:106.086675px;}
.y1bf{bottom:106.470480px;}
.yb{bottom:108.868725px;}
.y64{bottom:111.148511px;}
.y172{bottom:117.794715px;}
.yac{bottom:119.811000px;}
.y58{bottom:127.762830px;}
.ybc{bottom:129.977197px;}
.y11e{bottom:129.977347px;}
.y28{bottom:140.136450px;}
.y4b{bottom:141.645645px;}
.y1e{bottom:144.900075px;}
.y23{bottom:146.826150px;}
.y1be{bottom:147.171525px;}
.ya{bottom:147.868725px;}
.y170{bottom:150.218100px;}
.y3f{bottom:151.776750px;}
.y177{bottom:153.954150px;}
.ybb{bottom:156.248891px;}
.y11d{bottom:156.249041px;}
.y1ae{bottom:158.394750px;}
.y10f{bottom:160.964850px;}
.yab{bottom:162.804900px;}
.y63{bottom:166.223236px;}
.y57{bottom:170.756700px;}
.y46{bottom:175.318500px;}
.y171{bottom:181.184250px;}
.yba{bottom:182.540910px;}
.y11c{bottom:182.541060px;}
.y27{bottom:183.130350px;}
.y176{bottom:186.283050px;}
.y9{bottom:186.868800px;}
.y16f{bottom:186.970800px;}
.y22{bottom:187.527150px;}
.y1d{bottom:187.893900px;}
.y1bd{bottom:192.458250px;}
.yaa{bottom:205.798800px;}
.y1ad{bottom:206.403900px;}
.yb9{bottom:208.812172px;}
.y11b{bottom:208.812322px;}
.y56{bottom:213.750600px;}
.y40{bottom:214.071000px;}
.yae{bottom:215.910300px;}
.y175{bottom:218.612100px;}
.y26{bottom:223.831350px;}
.y1c{bottom:228.595050px;}
.y21{bottom:232.813950px;}
.yb8{bottom:235.107435px;}
.y11a{bottom:235.107585px;}
.y1bc{bottom:235.452150px;}
.y179{bottom:235.621350px;}
.y10c{bottom:246.106650px;}
.y199{bottom:248.124318px;}
.ya9{bottom:248.792700px;}
.y1ac{bottom:249.397800px;}
.y10{bottom:249.913350px;}
.y55{bottom:256.744500px;}
.yb7{bottom:261.378912px;}
.y119{bottom:261.379062px;}
.y8{bottom:264.868800px;}
.y1b{bottom:273.881700px;}
.y20{bottom:275.807850px;}
.y3a{bottom:276.396750px;}
.y1bb{bottom:278.446050px;}
.y45{bottom:285.329700px;}
.yb6{bottom:287.670932px;}
.y118{bottom:287.671082px;}
.ya8{bottom:289.493700px;}
.y1ab{bottom:292.391700px;}
.y54{bottom:299.738400px;}
.y7{bottom:303.868800px;}
.yb5{bottom:313.942626px;}
.y117{bottom:313.942776px;}
.y1ba{bottom:319.147050px;}
.y1a{bottom:320.460450px;}
.y39{bottom:321.683400px;}
.y1f{bottom:322.386600px;}
.y16e{bottom:329.025000px;}
.ya7{bottom:334.780500px;}
.y1aa{bottom:335.385600px;}
.yb4{bottom:340.234645px;}
.y116{bottom:340.234795px;}
.y53{bottom:340.439550px;}
.y6{bottom:342.868800px;}
.y1{bottom:351.940650px;}
.y1c1{bottom:364.530450px;}
.y38{bottom:364.677300px;}
.yb3{bottom:366.506988px;}
.y115{bottom:366.507138px;}
.y1b9{bottom:372.283050px;}
.ya6{bottom:375.481500px;}
.y47{bottom:377.264700px;}
.y1a9{bottom:381.964350px;}
.y52{bottom:385.726200px;}
.y110{bottom:387.277200px;}
.yb2{bottom:392.799007px;}
.y114{bottom:392.799157px;}
.y198{bottom:402.255908px;}
.y19{bottom:404.050650px;}
.y1c0{bottom:406.689300px;}
.y37{bottom:407.671200px;}
.y1b8{bottom:413.483100px;}
.yb1{bottom:419.070485px;}
.y113{bottom:419.070635px;}
.y3d{bottom:420.672600px;}
.y5{bottom:420.868800px;}
.y51{bottom:426.427200px;}
.y62{bottom:431.054400px;}
.y1a8{bottom:443.115600px;}
.yb0{bottom:445.362505px;}
.y112{bottom:445.362655px;}
.y61{bottom:446.029200px;}
.y18{bottom:447.044550px;}
.y36{bottom:450.665100px;}
.y174{bottom:450.672150px;}
.y1b7{bottom:454.683150px;}
.y1c2{bottom:464.353950px;}
.y30{bottom:465.534600px;}
.y50{bottom:471.714000px;}
.y18f{bottom:477.668701px;}
.y60{bottom:486.730200px;}
.y1a7{bottom:488.402400px;}
.y35{bottom:491.366250px;}
.y197{bottom:491.397016px;}
.y18e{bottom:491.398146px;}
.y17{bottom:493.623300px;}
.y1b6{bottom:495.883350px;}
.y2e{bottom:500.119800px;}
.y10e{bottom:500.327550px;}
.yaf{bottom:503.609740px;}
.y111{bottom:503.609890px;}
.y18d{bottom:505.137195px;}
.y196{bottom:505.138099px;}
.y4{bottom:508.937400px;}
.y4f{bottom:514.707900px;}
.y3b{bottom:514.861500px;}
.y18c{bottom:518.865623px;}
.y195{bottom:518.866527px;}
.y1a6{bottom:531.396300px;}
.y5f{bottom:532.017000px;}
.y18b{bottom:532.604672px;}
.y194{bottom:532.605576px;}
.y2c{bottom:534.704850px;}
.y34{bottom:536.652900px;}
.y1b5{bottom:537.083400px;}
.y49{bottom:542.707350px;}
.y18a{bottom:546.332987px;}
.y193{bottom:546.333891px;}
.y4e{bottom:555.408900px;}
.y10d{bottom:555.871050px;}
.y3{bottom:558.437400px;}
.y189{bottom:560.072940px;}
.y16{bottom:563.765100px;}
.y2a{bottom:569.979300px;}
.y4a{bottom:570.013350px;}
.y5e{bottom:572.718000px;}
.y188{bottom:573.801368px;}
.y48{bottom:574.207350px;}
.y1a5{bottom:574.390200px;}
.y1b4{bottom:576.674400px;}
.y33{bottom:577.354050px;}
.y187{bottom:587.540304px;}
.y186{bottom:601.268732px;}
.y192{bottom:601.269297px;}
.y15{bottom:606.759000px;}
.y2{bottom:607.937400px;}
.y185{bottom:615.008346px;}
.y1a4{bottom:617.384100px;}
.y5d{bottom:618.004800px;}
.y4d{bottom:619.402800px;}
.y1b3{bottom:619.483500px;}
.y44{bottom:622.482150px;}
.y32{bottom:622.640700px;}
.y184{bottom:628.736661px;}
.y183{bottom:642.476275px;}
.y191{bottom:642.477744px;}
.yad{bottom:651.864450px;}
.y14{bottom:653.337750px;}
.y182{bottom:656.206172px;}
.y1a3{bottom:658.085100px;}
.y5c{bottom:658.705800px;}
.y1b2{bottom:660.683700px;}
.y4c{bottom:662.396700px;}
.y25{bottom:664.061550px;}
.y43{bottom:665.476050px;}
.y3c{bottom:667.460700px;}
.y181{bottom:669.945221px;}
.y180{bottom:683.673536px;}
.y17f{bottom:697.412585px;}
.y17e{bottom:711.141013px;}
.yf{bottom:718.801800px;}
.y17d{bottom:724.880062px;}
.y17c{bottom:738.608377px;}
.y17b{bottom:752.347426px;}
.y190{bottom:752.347652px;}
.y12{bottom:753.898050px;}
.ye{bottom:754.009800px;}
.y17a{bottom:782.784861px;}
.y13{bottom:794.466450px;}
.h15{height:0.000000px;}
.h33{height:4.177661px;}
.h1d{height:21.302953px;}
.h23{height:24.853445px;}
.h24{height:27.077380px;}
.h46{height:28.434035px;}
.h21{height:29.194533px;}
.h47{height:29.642177px;}
.h20{height:31.767561px;}
.h11{height:33.964680px;}
.h13{height:33.982035px;}
.h1b{height:34.755396px;}
.h1f{height:35.504922px;}
.h1e{height:36.694306px;}
.h48{height:39.073635px;}
.h49{height:39.075895px;}
.h4b{height:39.076799px;}
.h22{height:39.242282px;}
.h9{height:39.313477px;}
.h4a{height:42.931732px;}
.h4c{height:42.971733px;}
.h34{height:42.975419px;}
.h1c{height:43.141868px;}
.h44{height:43.184389px;}
.h41{height:43.186649px;}
.h17{height:43.710938px;}
.h32{height:44.119735px;}
.h1a{height:44.680515px;}
.h43{height:47.433449px;}
.h45{height:47.478195px;}
.h42{height:47.478647px;}
.h6{height:49.141846px;}
.h14{height:49.215363px;}
.h12{height:50.387157px;}
.h3f{height:61.154297px;}
.h8{height:61.195312px;}
.h29{height:61.484274px;}
.h4d{height:67.500000px;}
.h52{height:69.937500px;}
.h2d{height:74.774080px;}
.h2f{height:74.775810px;}
.h30{height:74.778405px;}
.h3b{height:76.990057px;}
.h18{height:78.626953px;}
.h7{height:78.679688px;}
.h16{height:81.500641px;}
.h4f{height:82.602380px;}
.h50{height:82.602980px;}
.hb{height:82.621369px;}
.hf{height:82.621549px;}
.he{height:82.621609px;}
.hc{height:82.621969px;}
.h28{height:82.636387px;}
.h26{height:82.645036px;}
.h27{height:82.645901px;}
.h2e{height:87.073530px;}
.h51{height:89.039180px;}
.h37{height:90.424308px;}
.h31{height:90.497828px;}
.h2b{height:90.777204px;}
.h3a{height:90.850724px;}
.h2a{height:90.853319px;}
.h3e{height:90.854184px;}
.h2c{height:90.857643px;}
.h10{height:91.731445px;}
.hd{height:91.792969px;}
.h4{height:96.099609px;}
.h5{height:96.164062px;}
.h35{height:101.522356px;}
.h38{height:107.042404px;}
.h39{height:107.088246px;}
.h3d{height:109.192646px;}
.h4e{height:112.254000px;}
.h36{height:121.842396px;}
.ha{height:126.000000px;}
.h3{height:126.676758px;}
.h3c{height:127.991256px;}
.h2{height:131.132812px;}
.h19{height:194.210250px;}
.h40{height:453.583800px;}
.h25{height:467.954850px;}
.h1{height:766.122150px;}
.h0{height:810.000000px;}
.w2{width:0.000000px;}
.w1{width:142.334505px;}
.w3{width:471.369000px;}
.w4{width:552.952950px;}
.w5{width:587.359800px;}
.w0{width:1440.000000px;}
.x35{left:-558.998195px;}
.x38{left:-546.404557px;}
.x37{left:-536.285406px;}
.x36{left:-364.229231px;}
.x39{left:-363.140703px;}
.x4b{left:-53.259875px;}
.x2f{left:-25.310633px;}
.x2e{left:-14.526552px;}
.x0{left:0.000000px;}
.x11{left:6.892950px;}
.x3a{left:9.637279px;}
.x59{left:18.521978px;}
.x2a{left:22.898849px;}
.x3{left:24.000000px;}
.x5c{left:26.198908px;}
.x5b{left:28.216544px;}
.x2c{left:29.930220px;}
.x3c{left:32.328985px;}
.x6{left:33.385071px;}
.x2b{left:39.679494px;}
.x28{left:40.908407px;}
.x5e{left:42.770145px;}
.x25{left:47.579895px;}
.x31{left:49.883190px;}
.x2d{left:52.570203px;}
.x23{left:53.609595px;}
.x63{left:54.687105px;}
.x32{left:55.883190px;}
.x1c{left:60.209595px;}
.x7{left:62.510400px;}
.x61{left:63.809595px;}
.x8{left:68.510400px;}
.x5f{left:69.809595px;}
.xe{left:71.260215px;}
.xd{left:74.609595px;}
.x57{left:75.969075px;}
.xf{left:77.260215px;}
.x29{left:82.824339px;}
.x9{left:83.935830px;}
.x62{left:85.278375px;}
.x60{left:91.278375px;}
.x55{left:93.475440px;}
.x54{left:96.475440px;}
.x16{left:98.617545px;}
.x27{left:106.268060px;}
.x24{left:127.913445px;}
.x4f{left:133.317870px;}
.x2{left:135.648900px;}
.x4{left:137.137695px;}
.x3d{left:164.413570px;}
.x43{left:172.937556px;}
.x1{left:215.170860px;}
.x44{left:239.668125px;}
.x30{left:244.694131px;}
.x3e{left:259.148740px;}
.x45{left:267.711648px;}
.x5d{left:270.929466px;}
.x46{left:278.921273px;}
.x3f{left:284.779081px;}
.x40{left:295.988706px;}
.x47{left:303.617479px;}
.x48{left:313.698357px;}
.x5a{left:315.666857px;}
.x41{left:320.704372px;}
.x4a{left:322.008270px;}
.x42{left:337.285276px;}
.x49{left:353.029782px;}
.x4d{left:396.394650px;}
.x3b{left:442.511738px;}
.x53{left:453.103350px;}
.x4e{left:490.317900px;}
.x50{left:508.317900px;}
.x22{left:530.490750px;}
.x1f{left:549.891300px;}
.x4c{left:561.117900px;}
.x52{left:595.216200px;}
.x21{left:604.890750px;}
.x56{left:622.303350px;}
.x17{left:741.995850px;}
.xa{left:746.176800px;}
.xb{left:752.176800px;}
.xc{left:767.645550px;}
.x58{left:830.764650px;}
.x10{left:838.855650px;}
.x51{left:871.315200px;}
.x34{left:878.515200px;}
.x1b{left:894.197700px;}
.x66{left:912.984000px;}
.x26{left:938.263050px;}
.x20{left:958.403100px;}
.x64{left:971.256150px;}
.x1d{left:979.485000px;}
.x12{left:981.793350px;}
.x1e{left:990.891150px;}
.x19{left:1001.417550px;}
.x18{left:1005.742500px;}
.x33{left:1028.613000px;}
.x65{left:1074.384000px;}
.x13{left:1124.730900px;}
.x1a{left:1222.050450px;}
.x5{left:1226.775600px;}
.x14{left:1267.668600px;}
.x15{left:1455.290700px;}
@media print{
.v15{vertical-align:-64.905113pt;}
.v8{vertical-align:-47.280533pt;}
.v10{vertical-align:-33.352094pt;}
.v4{vertical-align:-21.389200pt;}
.v6{vertical-align:-12.584180pt;}
.va{vertical-align:-10.932844pt;}
.v1{vertical-align:-8.152533pt;}
.v7{vertical-align:-5.765848pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.057230pt;}
.vb{vertical-align:10.932844pt;}
.v3{vertical-align:13.930907pt;}
.v17{vertical-align:15.331549pt;}
.v18{vertical-align:20.375003pt;}
.v11{vertical-align:21.727298pt;}
.ve{vertical-align:23.528680pt;}
.v2{vertical-align:26.742187pt;}
.v9{vertical-align:29.334927pt;}
.v12{vertical-align:30.235234pt;}
.vd{vertical-align:38.818516pt;}
.vf{vertical-align:56.880774pt;}
.v16{vertical-align:62.346427pt;}
.v13{vertical-align:64.905113pt;}
.vc{vertical-align:76.739801pt;}
.v14{vertical-align:88.502988pt;}
.ls3{letter-spacing:-44.480000pt;}
.ls10{letter-spacing:-14.842667pt;}
.ls13{letter-spacing:-6.193600pt;}
.ls6{letter-spacing:-4.270933pt;}
.lsfa{letter-spacing:-3.300000pt;}
.lsa7{letter-spacing:-3.237183pt;}
.ls7{letter-spacing:-2.135467pt;}
.lsd{letter-spacing:-1.818667pt;}
.ls11{letter-spacing:-1.795200pt;}
.lseb{letter-spacing:-1.206484pt;}
.ls33{letter-spacing:-0.245324pt;}
.lsf1{letter-spacing:-0.236636pt;}
.ls9c{letter-spacing:-0.048437pt;}
.ls95{letter-spacing:-0.032291pt;}
.ls8f{letter-spacing:-0.024218pt;}
.ls5{letter-spacing:-0.023467pt;}
.ls98{letter-spacing:-0.022604pt;}
.lsf{letter-spacing:-0.022400pt;}
.lsa5{letter-spacing:-0.020451pt;}
.lsf2{letter-spacing:-0.019084pt;}
.ls97{letter-spacing:-0.016953pt;}
.lse7{letter-spacing:-0.016874pt;}
.ls91{letter-spacing:-0.016146pt;}
.lsf0{letter-spacing:-0.016030pt;}
.ls29{letter-spacing:-0.015333pt;}
.lsa9{letter-spacing:-0.014933pt;}
.lse4{letter-spacing:-0.012655pt;}
.lse{letter-spacing:-0.012000pt;}
.ls31{letter-spacing:-0.011500pt;}
.lsee{letter-spacing:-0.010687pt;}
.lse5{letter-spacing:-0.008859pt;}
.lse3{letter-spacing:-0.008437pt;}
.ls8e{letter-spacing:-0.008073pt;}
.ls2c{letter-spacing:-0.008050pt;}
.ls2b{letter-spacing:-0.007666pt;}
.lsef{letter-spacing:-0.007633pt;}
.lsa3{letter-spacing:-0.007304pt;}
.ls32{letter-spacing:-0.006936pt;}
.ls2f{letter-spacing:-0.006206pt;}
.ls28{letter-spacing:-0.004563pt;}
.ls27{letter-spacing:-0.004364pt;}
.lse8{letter-spacing:-0.004218pt;}
.ls30{letter-spacing:-0.003833pt;}
.lsed{letter-spacing:-0.003817pt;}
.ls2d{letter-spacing:-0.003468pt;}
.ls2e{letter-spacing:-0.003103pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8b{letter-spacing:0.001538pt;}
.ls57{letter-spacing:0.002307pt;}
.lsc4{letter-spacing:0.002411pt;}
.lscc{letter-spacing:0.002812pt;}
.ls3d{letter-spacing:0.003460pt;}
.ls1c{letter-spacing:0.003468pt;}
.lsc1{letter-spacing:0.003616pt;}
.lsce{letter-spacing:0.003817pt;}
.lsdc{letter-spacing:0.004018pt;}
.ls14{letter-spacing:0.004364pt;}
.ls5c{letter-spacing:0.004613pt;}
.ls4f{letter-spacing:0.005382pt;}
.ls4b{letter-spacing:0.005766pt;}
.lsf5{letter-spacing:0.006000pt;}
.ls48{letter-spacing:0.006920pt;}
.ls1a{letter-spacing:0.006936pt;}
.lsdd{letter-spacing:0.007232pt;}
.lsbe{letter-spacing:0.007633pt;}
.ls5f{letter-spacing:0.007688pt;}
.ls42{letter-spacing:0.008073pt;}
.ls7a{letter-spacing:0.008457pt;}
.lsf9{letter-spacing:0.008648pt;}
.lsbc{letter-spacing:0.008839pt;}
.ls3f{letter-spacing:0.010379pt;}
.lsbf{letter-spacing:0.010446pt;}
.ls15{letter-spacing:0.010952pt;}
.ls12{letter-spacing:0.011200pt;}
.lsde{letter-spacing:0.011249pt;}
.lsc9{letter-spacing:0.011450pt;}
.ls43{letter-spacing:0.011533pt;}
.lsc7{letter-spacing:0.011651pt;}
.ls21{letter-spacing:0.011682pt;}
.lsf8{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.012000pt;}
.lsc3{letter-spacing:0.012053pt;}
.ls84{letter-spacing:0.012301pt;}
.lsc2{letter-spacing:0.012856pt;}
.ls37{letter-spacing:0.013070pt;}
.ls62{letter-spacing:0.014608pt;}
.ls8d{letter-spacing:0.014933pt;}
.ls59{letter-spacing:0.017299pt;}
.lsd7{letter-spacing:0.019084pt;}
.ls2{letter-spacing:0.019200pt;}
.ls64{letter-spacing:0.020759pt;}
.ls1e{letter-spacing:0.020809pt;}
.lsf7{letter-spacing:0.021728pt;}
.ls4e{letter-spacing:0.022296pt;}
.lsa{letter-spacing:0.022400pt;}
.ls1f{letter-spacing:0.022999pt;}
.ls6b{letter-spacing:0.023065pt;}
.ls0{letter-spacing:0.023467pt;}
.ls99{letter-spacing:0.024218pt;}
.ls69{letter-spacing:0.024603pt;}
.ls3c{letter-spacing:0.056125pt;}
.lsc8{letter-spacing:1.205681pt;}
.lsdf{letter-spacing:1.206082pt;}
.lsb3{letter-spacing:1.303308pt;}
.lsb1{letter-spacing:1.303509pt;}
.lsb5{letter-spacing:1.303710pt;}
.ls20{letter-spacing:1.825329pt;}
.ls2a{letter-spacing:1.829965pt;}
.lsc5{letter-spacing:1.965810pt;}
.lsc6{letter-spacing:1.971434pt;}
.lsb0{letter-spacing:2.001968pt;}
.lsd6{letter-spacing:2.007593pt;}
.lsae{letter-spacing:2.012816pt;}
.ls6a{letter-spacing:2.260761pt;}
.ls6f{letter-spacing:2.349562pt;}
.ls39{letter-spacing:2.397230pt;}
.ls34{letter-spacing:2.397999pt;}
.ls36{letter-spacing:2.414144pt;}
.ls67{letter-spacing:2.494103pt;}
.ls86{letter-spacing:2.494872pt;}
.ls24{letter-spacing:2.608394pt;}
.ls23{letter-spacing:2.608760pt;}
.ls18{letter-spacing:3.625102pt;}
.ls1b{letter-spacing:3.657958pt;}
.ls85{letter-spacing:3.761913pt;}
.ls6c{letter-spacing:3.782672pt;}
.ls25{letter-spacing:3.791572pt;}
.ls26{letter-spacing:3.824063pt;}
.ls49{letter-spacing:3.825342pt;}
.ls66{letter-spacing:3.831108pt;}
.ls5b{letter-spacing:3.844179pt;}
.ls3b{letter-spacing:3.851867pt;}
.ls38{letter-spacing:3.921062pt;}
.ls77{letter-spacing:3.999483pt;}
.ls6e{letter-spacing:4.001790pt;}
.lsc{letter-spacing:4.278400pt;}
.ls7c{letter-spacing:5.494100pt;}
.ls7e{letter-spacing:5.765115pt;}
.ls71{letter-spacing:5.950020pt;}
.ls7d{letter-spacing:7.985128pt;}
.lse1{letter-spacing:8.469294pt;}
.lsd0{letter-spacing:8.469495pt;}
.lsd1{letter-spacing:8.476726pt;}
.lse2{letter-spacing:8.476927pt;}
.lsd5{letter-spacing:8.477128pt;}
.lsd4{letter-spacing:8.503644pt;}
.ls19{letter-spacing:8.677247pt;}
.ls22{letter-spacing:8.870001pt;}
.lsac{letter-spacing:9.352562pt;}
.lsad{letter-spacing:9.377471pt;}
.lsb9{letter-spacing:9.390328pt;}
.lsb7{letter-spacing:10.520678pt;}
.lsd3{letter-spacing:10.583554pt;}
.lscd{letter-spacing:10.583956pt;}
.lscf{letter-spacing:10.602838pt;}
.lscb{letter-spacing:10.618105pt;}
.lsd9{letter-spacing:10.625739pt;}
.ls8{letter-spacing:10.666667pt;}
.lsf4{letter-spacing:10.666880pt;}
.ls17{letter-spacing:11.390050pt;}
.ls16{letter-spacing:11.422906pt;}
.lsc0{letter-spacing:11.499566pt;}
.lsea{letter-spacing:11.583935pt;}
.lsaa{letter-spacing:11.702053pt;}
.lsbb{letter-spacing:11.714507pt;}
.lsb8{letter-spacing:11.714909pt;}
.lsab{letter-spacing:11.752674pt;}
.lsf6{letter-spacing:12.121253pt;}
.lse0{letter-spacing:12.194610pt;}
.lsdb{letter-spacing:12.197824pt;}
.lsb{letter-spacing:12.496000pt;}
.ls9{letter-spacing:12.496107pt;}
.lsca{letter-spacing:12.588937pt;}
.lsda{letter-spacing:13.389041pt;}
.ls7b{letter-spacing:13.449243pt;}
.lsbd{letter-spacing:13.678107pt;}
.lsba{letter-spacing:13.714266pt;}
.ls75{letter-spacing:13.885173pt;}
.lsd8{letter-spacing:14.133100pt;}
.ls1d{letter-spacing:14.264669pt;}
.lsec{letter-spacing:15.199169pt;}
.lsa1{letter-spacing:15.798421pt;}
.lsd2{letter-spacing:16.147925pt;}
.lsb6{letter-spacing:16.447637pt;}
.lse9{letter-spacing:17.418088pt;}
.ls88{letter-spacing:17.896958pt;}
.ls55{letter-spacing:17.897343pt;}
.ls53{letter-spacing:17.897727pt;}
.ls47{letter-spacing:17.945395pt;}
.ls56{letter-spacing:17.945779pt;}
.ls89{letter-spacing:17.946164pt;}
.ls46{letter-spacing:17.969998pt;}
.ls8a{letter-spacing:17.970766pt;}
.lsa2{letter-spacing:18.292909pt;}
.lsb4{letter-spacing:18.726016pt;}
.lsb2{letter-spacing:18.730034pt;}
.ls9e{letter-spacing:18.938731pt;}
.lsf3{letter-spacing:20.000000pt;}
.ls9d{letter-spacing:20.222302pt;}
.ls61{letter-spacing:20.253440pt;}
.ls5e{letter-spacing:20.319560pt;}
.lsaf{letter-spacing:20.358366pt;}
.ls92{letter-spacing:20.391830pt;}
.lse6{letter-spacing:20.657877pt;}
.ls9f{letter-spacing:21.522019pt;}
.lsa0{letter-spacing:21.546237pt;}
.ls45{letter-spacing:22.393878pt;}
.ls68{letter-spacing:22.410024pt;}
.ls3a{letter-spacing:22.417712pt;}
.ls4d{letter-spacing:22.418097pt;}
.ls35{letter-spacing:22.418481pt;}
.ls79{letter-spacing:22.426170pt;}
.ls52{letter-spacing:22.466149pt;}
.ls54{letter-spacing:22.466533pt;}
.ls65{letter-spacing:22.490752pt;}
.ls44{letter-spacing:22.715636pt;}
.ls41{letter-spacing:22.880551pt;}
.ls5d{letter-spacing:24.091083pt;}
.ls60{letter-spacing:24.160279pt;}
.ls74{letter-spacing:24.379781pt;}
.ls70{letter-spacing:24.516634pt;}
.ls90{letter-spacing:25.001385pt;}
.ls78{letter-spacing:25.662968pt;}
.ls96{letter-spacing:26.042773pt;}
.ls63{letter-spacing:26.175397pt;}
.ls94{letter-spacing:26.180010pt;}
.ls4c{letter-spacing:26.244592pt;}
.ls6d{letter-spacing:26.250358pt;}
.ls72{letter-spacing:27.205252pt;}
.ls9a{letter-spacing:28.803662pt;}
.ls40{letter-spacing:28.969730pt;}
.ls93{letter-spacing:29.845050pt;}
.ls7f{letter-spacing:29.877725pt;}
.lsa6{letter-spacing:30.786105pt;}
.ls73{letter-spacing:31.959733pt;}
.ls76{letter-spacing:34.228567pt;}
.ls3e{letter-spacing:34.989714pt;}
.ls9b{letter-spacing:35.956141pt;}
.ls81{letter-spacing:37.506114pt;}
.ls50{letter-spacing:37.549937pt;}
.ls80{letter-spacing:38.913083pt;}
.ls4a{letter-spacing:40.113236pt;}
.ls82{letter-spacing:40.202420pt;}
.ls87{letter-spacing:40.258546pt;}
.ls83{letter-spacing:40.501498pt;}
.ls5a{letter-spacing:41.217284pt;}
.ls8c{letter-spacing:42.818000pt;}
.ls51{letter-spacing:45.922558pt;}
.ls58{letter-spacing:53.188056pt;}
.lsa4{letter-spacing:65.815799pt;}
.lsa8{letter-spacing:456.160235pt;}
.wsc4{word-spacing:-456.240963pt;}
.wsb5{word-spacing:-65.888838pt;}
.ws8e{word-spacing:-36.036868pt;}
.ws156{word-spacing:-36.006000pt;}
.ws3{word-spacing:-31.136000pt;}
.wsb8{word-spacing:-30.859144pt;}
.ws71{word-spacing:-29.925778pt;}
.ws8d{word-spacing:-28.884390pt;}
.ws4{word-spacing:-26.707200pt;}
.ws5{word-spacing:-26.688000pt;}
.ws75{word-spacing:-26.260738pt;}
.ws82{word-spacing:-26.123501pt;}
.ws65{word-spacing:-25.082113pt;}
.ws157{word-spacing:-23.722667pt;}
.ws99{word-spacing:-21.626965pt;}
.ws98{word-spacing:-21.602746pt;}
.wseb{word-spacing:-20.772267pt;}
.wsec{word-spacing:-20.757333pt;}
.wsf6{word-spacing:-20.700062pt;}
.ws6b{word-spacing:-20.472558pt;}
.ws91{word-spacing:-20.303030pt;}
.ws96{word-spacing:-19.019458pt;}
.ws9e{word-spacing:-18.373636pt;}
.ws103{word-spacing:-17.460272pt;}
.ws0{word-spacing:-16.692000pt;}
.ws6{word-spacing:-16.680000pt;}
.ws2{word-spacing:-16.668000pt;}
.ws9c{word-spacing:-15.879149pt;}
.ws130{word-spacing:-15.241354pt;}
.ws10d{word-spacing:-11.626120pt;}
.wsd{word-spacing:-1.856797pt;}
.ws8a{word-spacing:-0.104946pt;}
.wscf{word-spacing:-0.088801pt;}
.wsba{word-spacing:-0.087647pt;}
.ws6a{word-spacing:-0.080728pt;}
.wsb4{word-spacing:-0.073039pt;}
.wsb7{word-spacing:-0.065735pt;}
.ws69{word-spacing:-0.064582pt;}
.ws83{word-spacing:-0.056509pt;}
.ws145{word-spacing:-0.049617pt;}
.ws81{word-spacing:-0.048437pt;}
.ws143{word-spacing:-0.045801pt;}
.wsf5{word-spacing:-0.042185pt;}
.ws84{word-spacing:-0.039557pt;}
.ws38{word-spacing:-0.038332pt;}
.ws139{word-spacing:-0.038167pt;}
.ws1a{word-spacing:-0.034681pt;}
.ws13b{word-spacing:-0.034350pt;}
.ws87{word-spacing:-0.033906pt;}
.wsf9{word-spacing:-0.033748pt;}
.wsb6{word-spacing:-0.030677pt;}
.ws13d{word-spacing:-0.030534pt;}
.wsf0{word-spacing:-0.029529pt;}
.ws5d{word-spacing:-0.026832pt;}
.ws146{word-spacing:-0.026717pt;}
.wsf7{word-spacing:-0.025311pt;}
.wsf1{word-spacing:-0.020671pt;}
.ws155{word-spacing:-0.019084pt;}
.ws13c{word-spacing:-0.016030pt;}
.ws1{word-spacing:0.000000pt;}
.ws44{word-spacing:6.655330pt;}
.ws43{word-spacing:6.676139pt;}
.ws42{word-spacing:6.717757pt;}
.ws52{word-spacing:7.497719pt;}
.ws30{word-spacing:7.745417pt;}
.ws57{word-spacing:7.789042pt;}
.ws5c{word-spacing:7.923204pt;}
.ws5e{word-spacing:7.934703pt;}
.ws2c{word-spacing:8.361647pt;}
.ws59{word-spacing:8.364020pt;}
.ws2d{word-spacing:8.514245pt;}
.ws13{word-spacing:8.531586pt;}
.ws12{word-spacing:8.559331pt;}
.wsf{word-spacing:8.590544pt;}
.ws14{word-spacing:8.604416pt;}
.ws11{word-spacing:8.611352pt;}
.ws10{word-spacing:8.618289pt;}
.ws40{word-spacing:8.625225pt;}
.ws15{word-spacing:8.632161pt;}
.ws2f{word-spacing:8.639097pt;}
.ws2e{word-spacing:8.673779pt;}
.ws11d{word-spacing:8.778649pt;}
.ws5a{word-spacing:8.827836pt;}
.ws5b{word-spacing:8.862335pt;}
.ws28{word-spacing:9.440234pt;}
.ws154{word-spacing:9.495991pt;}
.ws4d{word-spacing:9.510144pt;}
.ws36{word-spacing:9.517811pt;}
.ws31{word-spacing:9.548476pt;}
.wse{word-spacing:9.552309pt;}
.ws60{word-spacing:9.590641pt;}
.wsc{word-spacing:9.598308pt;}
.ws2a{word-spacing:9.700343pt;}
.ws5f{word-spacing:9.740136pt;}
.ws120{word-spacing:9.744680pt;}
.ws13e{word-spacing:9.950180pt;}
.ws140{word-spacing:9.953997pt;}
.ws141{word-spacing:9.957813pt;}
.ws13f{word-spacing:9.965447pt;}
.ws3a{word-spacing:10.203952pt;}
.ws122{word-spacing:10.508224pt;}
.wsed{word-spacing:10.512442pt;}
.ws29{word-spacing:10.518821pt;}
.wsee{word-spacing:10.554627pt;}
.wsef{word-spacing:10.558846pt;}
.ws27{word-spacing:10.685291pt;}
.ws41{word-spacing:10.747717pt;}
.ws2b{word-spacing:10.751185pt;}
.ws7{word-spacing:10.806383pt;}
.ws4f{word-spacing:10.855594pt;}
.ws50{word-spacing:10.859427pt;}
.ws8{word-spacing:10.867101pt;}
.ws9{word-spacing:10.915357pt;}
.ws18{word-spacing:10.917655pt;}
.ws17{word-spacing:10.921123pt;}
.ws24{word-spacing:10.955804pt;}
.ws54{word-spacing:11.016588pt;}
.ws55{word-spacing:11.035754pt;}
.ws46{word-spacing:11.087593pt;}
.ws1c{word-spacing:11.344234pt;}
.wsa{word-spacing:11.367233pt;}
.ws34{word-spacing:11.384574pt;}
.ws22{word-spacing:11.406661pt;}
.wsb{word-spacing:11.412867pt;}
.ws16{word-spacing:11.448278pt;}
.ws11f{word-spacing:11.482692pt;}
.ws11e{word-spacing:11.486910pt;}
.ws1d{word-spacing:11.510704pt;}
.ws153{word-spacing:11.559910pt;}
.ws14f{word-spacing:11.560834pt;}
.ws10b{word-spacing:11.567061pt;}
.ws14e{word-spacing:11.599001pt;}
.ws19{word-spacing:11.819367pt;}
.ws1b{word-spacing:11.867921pt;}
.ws1f{word-spacing:12.034391pt;}
.ws1e{word-spacing:12.100285pt;}
.ws151{word-spacing:12.129525pt;}
.ws14c{word-spacing:12.156242pt;}
.ws150{word-spacing:12.190592pt;}
.ws152{word-spacing:12.202043pt;}
.ws23{word-spacing:12.204329pt;}
.ws14b{word-spacing:12.221126pt;}
.ws20{word-spacing:12.259819pt;}
.ws21{word-spacing:12.266755pt;}
.ws4c{word-spacing:12.273874pt;}
.ws48{word-spacing:12.634194pt;}
.ws14d{word-spacing:12.679132pt;}
.ws123{word-spacing:12.706050pt;}
.ws121{word-spacing:12.781983pt;}
.ws4a{word-spacing:12.806688pt;}
.ws4b{word-spacing:12.829687pt;}
.ws4e{word-spacing:12.963848pt;}
.ws111{word-spacing:13.001343pt;}
.ws26{word-spacing:13.015870pt;}
.ws25{word-spacing:13.050551pt;}
.wsff{word-spacing:13.085713pt;}
.ws12c{word-spacing:13.212267pt;}
.ws12b{word-spacing:13.254452pt;}
.ws101{word-spacing:13.376788pt;}
.ws100{word-spacing:13.465376pt;}
.ws39{word-spacing:13.488995pt;}
.ws37{word-spacing:13.500495pt;}
.ws129{word-spacing:13.553964pt;}
.ws10c{word-spacing:13.568487pt;}
.ws45{word-spacing:13.740708pt;}
.ws149{word-spacing:14.064600pt;}
.ws142{word-spacing:14.083684pt;}
.ws147{word-spacing:14.087500pt;}
.ws11c{word-spacing:14.136113pt;}
.ws11b{word-spacing:14.157206pt;}
.ws11a{word-spacing:14.178298pt;}
.ws119{word-spacing:14.195373pt;}
.ws56{word-spacing:14.209635pt;}
.ws53{word-spacing:14.428127pt;}
.ws12d{word-spacing:14.444062pt;}
.ws14a{word-spacing:14.587490pt;}
.ws58{word-spacing:14.727116pt;}
.wsbb{word-spacing:14.797781pt;}
.wsbc{word-spacing:14.841605pt;}
.ws35{word-spacing:14.880443pt;}
.ws106{word-spacing:14.891221pt;}
.ws12f{word-spacing:14.979809pt;}
.ws115{word-spacing:15.140111pt;}
.ws116{word-spacing:15.152766pt;}
.ws10a{word-spacing:15.169640pt;}
.wsf2{word-spacing:15.422749pt;}
.ws9a{word-spacing:15.886837pt;}
.ws3d{word-spacing:16.026567pt;}
.ws3c{word-spacing:16.030400pt;}
.ws148{word-spacing:16.115864pt;}
.ws144{word-spacing:16.152023pt;}
.ws109{word-spacing:16.165200pt;}
.ws118{word-spacing:16.325502pt;}
.ws3e{word-spacing:16.344722pt;}
.ws117{word-spacing:16.350813pt;}
.ws107{word-spacing:16.452057pt;}
.ws108{word-spacing:16.464712pt;}
.ws47{word-spacing:16.478883pt;}
.wsd4{word-spacing:16.565335pt;}
.ws3f{word-spacing:16.800871pt;}
.ws127{word-spacing:16.869686pt;}
.ws51{word-spacing:16.904368pt;}
.ws10f{word-spacing:16.975148pt;}
.ws10e{word-spacing:17.055299pt;}
.ws49{word-spacing:17.218689pt;}
.ws3b{word-spacing:17.295353pt;}
.ws126{word-spacing:17.337937pt;}
.ws102{word-spacing:17.401214pt;}
.ws128{word-spacing:17.515113pt;}
.ws133{word-spacing:17.683852pt;}
.ws134{word-spacing:17.726036pt;}
.ws77{word-spacing:18.018434pt;}
.wsa9{word-spacing:18.050725pt;}
.ws12a{word-spacing:18.135229pt;}
.wsd5{word-spacing:18.187578pt;}
.wsd6{word-spacing:18.276763pt;}
.ws9d{word-spacing:18.341345pt;}
.ws104{word-spacing:18.675194pt;}
.ws105{word-spacing:18.742689pt;}
.ws110{word-spacing:18.827059pt;}
.ws7b{word-spacing:18.979094pt;}
.ws7a{word-spacing:18.995240pt;}
.ws97{word-spacing:19.003313pt;}
.ws79{word-spacing:19.075968pt;}
.ws125{word-spacing:19.615914pt;}
.ws33{word-spacing:19.629766pt;}
.ws9b{word-spacing:19.668855pt;}
.ws124{word-spacing:19.670754pt;}
.ws88{word-spacing:20.052774pt;}
.ws90{word-spacing:20.060846pt;}
.ws8b{word-spacing:20.068919pt;}
.ws7c{word-spacing:20.076992pt;}
.wsbf{word-spacing:20.101210pt;}
.ws89{word-spacing:20.125429pt;}
.ws61{word-spacing:20.190011pt;}
.ws62{word-spacing:20.198084pt;}
.ws63{word-spacing:20.206156pt;}
.ws68{word-spacing:20.278811pt;}
.wsfd{word-spacing:20.320399pt;}
.ws12e{word-spacing:20.358366pt;}
.wsfc{word-spacing:20.379458pt;}
.wsfe{word-spacing:20.383676pt;}
.wsf3{word-spacing:20.636785pt;}
.ws112{word-spacing:20.847709pt;}
.wsbd{word-spacing:20.851978pt;}
.wsbe{word-spacing:20.860051pt;}
.wsde{word-spacing:20.924633pt;}
.ws114{word-spacing:21.159876pt;}
.ws113{word-spacing:21.185187pt;}
.wsc2{word-spacing:21.643110pt;}
.wsc1{word-spacing:21.812639pt;}
.wse5{word-spacing:21.893366pt;}
.ws6c{word-spacing:22.175913pt;}
.wsf4{word-spacing:22.680396pt;}
.ws93{word-spacing:23.733959pt;}
.ws92{word-spacing:23.911560pt;}
.wscd{word-spacing:24.299053pt;}
.wscc{word-spacing:24.347490pt;}
.ws32{word-spacing:24.348422pt;}
.wsca{word-spacing:24.379781pt;}
.wsc9{word-spacing:24.395927pt;}
.wsc8{word-spacing:24.476654pt;}
.wscb{word-spacing:24.646183pt;}
.wsd1{word-spacing:24.783420pt;}
.wsd3{word-spacing:24.880293pt;}
.ws64{word-spacing:24.944875pt;}
.wsb2{word-spacing:25.082113pt;}
.ws78{word-spacing:25.122476pt;}
.ws76{word-spacing:25.283932pt;}
.wsc6{word-spacing:25.824808pt;}
.wsc5{word-spacing:25.849026pt;}
.ws74{word-spacing:26.171937pt;}
.wse2{word-spacing:26.494848pt;}
.wsa7{word-spacing:26.817759pt;}
.ws6d{word-spacing:27.116452pt;}
.ws8c{word-spacing:28.666425pt;}
.ws13a{word-spacing:28.678807pt;}
.ws138{word-spacing:28.716975pt;}
.ws131{word-spacing:28.778444pt;}
.wsa2{word-spacing:29.029700pt;}
.wsa3{word-spacing:29.150791pt;}
.wsa1{word-spacing:29.175010pt;}
.ws70{word-spacing:29.788540pt;}
.wsd7{word-spacing:29.885414pt;}
.wsd8{word-spacing:29.893487pt;}
.wsce{word-spacing:30.264450pt;}
.wsd0{word-spacing:30.305198pt;}
.wsa8{word-spacing:30.601700pt;}
.wsb9{word-spacing:30.661938pt;}
.ws132{word-spacing:30.816028pt;}
.ws73{word-spacing:31.128621pt;}
.ws72{word-spacing:31.160912pt;}
.ws6f{word-spacing:31.822880pt;}
.ws9f{word-spacing:32.630157pt;}
.wsf8{word-spacing:32.828181pt;}
.wsfb{word-spacing:32.836618pt;}
.wsfa{word-spacing:32.950718pt;}
.ws66{word-spacing:33.275979pt;}
.wsa5{word-spacing:33.752273pt;}
.ws67{word-spacing:33.760346pt;}
.wsa4{word-spacing:33.776491pt;}
.wsd9{word-spacing:34.946659pt;}
.wsda{word-spacing:35.051990pt;}
.wsdb{word-spacing:35.140790pt;}
.ws8f{word-spacing:36.053014pt;}
.wse4{word-spacing:36.424362pt;}
.wsb3{word-spacing:36.453962pt;}
.wsc3{word-spacing:36.709215pt;}
.wsb1{word-spacing:37.393095pt;}
.wsac{word-spacing:37.877461pt;}
.ws6e{word-spacing:38.918849pt;}
.wsb0{word-spacing:39.548526pt;}
.ws85{word-spacing:39.556598pt;}
.wse3{word-spacing:39.806855pt;}
.wsa0{word-spacing:40.032892pt;}
.wsdd{word-spacing:40.137838pt;}
.wsad{word-spacing:40.145911pt;}
.wsdc{word-spacing:40.218566pt;}
.wse7{word-spacing:40.622205pt;}
.ws86{word-spacing:41.825048pt;}
.wsa6{word-spacing:42.034940pt;}
.ws7f{word-spacing:42.172178pt;}
.ws80{word-spacing:42.656544pt;}
.wsea{word-spacing:42.729199pt;}
.wse8{word-spacing:42.785709pt;}
.wse9{word-spacing:42.809927pt;}
.wsae{word-spacing:43.019819pt;}
.wsaf{word-spacing:43.124765pt;}
.ws7d{word-spacing:43.907824pt;}
.ws95{word-spacing:44.158080pt;}
.ws94{word-spacing:44.319536pt;}
.wse6{word-spacing:44.981503pt;}
.wsdf{word-spacing:45.239832pt;}
.wsc0{word-spacing:46.749441pt;}
.wsab{word-spacing:49.300438pt;}
.wsaa{word-spacing:49.340802pt;}
.ws7e{word-spacing:52.561839pt;}
.wsd2{word-spacing:61.550298pt;}
.wse1{word-spacing:61.676003pt;}
.wse0{word-spacing:65.683674pt;}
.wsc7{word-spacing:486.384706pt;}
.ws135{word-spacing:598.062996pt;}
.ws136{word-spacing:604.600429pt;}
.ws137{word-spacing:607.467787pt;}
._2e{margin-left:-456.192527pt;}
._34{margin-left:-150.102293pt;}
._35{margin-left:-146.791733pt;}
._8{margin-left:-116.733141pt;}
._2a{margin-left:-66.614163pt;}
._29{margin-left:-65.002826pt;}
._21{margin-left:-36.842070pt;}
._20{margin-left:-35.698504pt;}
._2b{margin-left:-31.663743pt;}
._19{margin-left:-29.984273pt;}
._1c{margin-left:-29.028084pt;}
._1f{margin-left:-28.038137pt;}
._1d{margin-left:-26.599794pt;}
._18{margin-left:-24.932097pt;}
._24{margin-left:-21.554310pt;}
._1b{margin-left:-20.497929pt;}
._22{margin-left:-19.511052pt;}
._23{margin-left:-18.299521pt;}
._25{margin-left:-16.473459pt;}
._26{margin-left:-15.091092pt;}
._f{margin-left:-13.238400pt;}
._0{margin-left:-11.569067pt;}
._c{margin-left:-10.281600pt;}
._1{margin-left:-8.522133pt;}
._4{margin-left:-6.746667pt;}
._2{margin-left:-5.738133pt;}
._6{margin-left:-4.402667pt;}
._3{margin-left:-3.093333pt;}
._5{margin-left:-2.088533pt;}
._a{margin-left:-0.889707pt;}
._e{width:0.907733pt;}
._7{width:2.112000pt;}
._2d{width:3.014555pt;}
._1e{width:3.928904pt;}
._d{width:5.894933pt;}
._30{width:7.087040pt;}
._11{width:9.513014pt;}
._12{width:10.444887pt;}
._2c{width:11.445107pt;}
._9{width:13.024000pt;}
._1a{width:13.998192pt;}
._13{width:15.123962pt;}
._32{width:19.133200pt;}
._10{width:29.586750pt;}
._33{width:38.151898pt;}
._28{width:65.735455pt;}
._27{width:73.039395pt;}
._15{width:173.528508pt;}
._b{width:209.054241pt;}
._14{width:355.873352pt;}
._17{width:394.935453pt;}
._16{width:418.956907pt;}
._2f{width:447.214495pt;}
._31{width:603.606074pt;}
.fs10{font-size:20.808745pt;}
.fs14{font-size:24.276869pt;}
.fs1d{font-size:26.717015pt;}
.fsf{font-size:26.832329pt;}
.fs1a{font-size:29.529333pt;}
.fs13{font-size:31.030585pt;}
.fs11{font-size:34.681242pt;}
.fs1b{font-size:36.158366pt;}
.fs12{font-size:36.506206pt;}
.fs1c{font-size:38.167165pt;}
.fse{font-size:38.331899pt;}
.fs19{font-size:42.184761pt;}
.fsc{font-size:43.643970pt;}
.fsd{font-size:45.633213pt;}
.fs6{font-size:48.000000pt;}
.fs18{font-size:51.127576pt;}
.fsb{font-size:53.333333pt;}
.fs16{font-size:56.509426pt;}
.fs21{font-size:56.888907pt;}
.fs3{font-size:60.000000pt;}
.fs9{font-size:61.270293pt;}
.fs17{font-size:73.039395pt;}
.fs5{font-size:74.666667pt;}
.fs15{font-size:80.727752pt;}
.fs1e{font-size:81.480000pt;}
.fs8{font-size:84.000000pt;}
.fs20{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:101.463606pt;}
.fs1f{font-size:108.640000pt;}
.fs7{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.fs1{font-size:154.666667pt;}
.fs0{font-size:160.000000pt;}
.y31{bottom:-1081.478667pt;}
.y10b{bottom:-946.093084pt;}
.y16d{bottom:-946.092951pt;}
.ye1{bottom:-865.672097pt;}
.y143{bottom:-865.671964pt;}
.y10a{bottom:-865.668638pt;}
.y16c{bottom:-865.668504pt;}
.ye0{bottom:-842.300548pt;}
.y142{bottom:-842.300415pt;}
.y109{bottom:-842.297954pt;}
.y16b{bottom:-842.297820pt;}
.ydf{bottom:-818.948028pt;}
.y141{bottom:-818.947895pt;}
.y108{bottom:-818.945529pt;}
.y16a{bottom:-818.945396pt;}
.yde{bottom:-795.575614pt;}
.y140{bottom:-795.575480pt;}
.y107{bottom:-795.574845pt;}
.y169{bottom:-795.574712pt;}
.ydd{bottom:-772.222997pt;}
.y13f{bottom:-772.222864pt;}
.y106{bottom:-772.222228pt;}
.y168{bottom:-772.222095pt;}
.ydc{bottom:-748.870573pt;}
.y13e{bottom:-748.870440pt;}
.y105{bottom:-748.869804pt;}
.y167{bottom:-748.869671pt;}
.ydb{bottom:-725.499120pt;}
.y13d{bottom:-725.498987pt;}
.yda{bottom:-702.146311pt;}
.y13c{bottom:-702.146178pt;}
.y104{bottom:-702.145542pt;}
.y166{bottom:-702.145409pt;}
.yd9{bottom:-678.775050pt;}
.y13b{bottom:-678.774917pt;}
.y103{bottom:-678.774858pt;}
.y165{bottom:-678.774725pt;}
.yd8{bottom:-655.422434pt;}
.y13a{bottom:-655.422300pt;}
.yd7{bottom:-632.050788pt;}
.y139{bottom:-632.050655pt;}
.y102{bottom:-608.698364pt;}
.y164{bottom:-608.698231pt;}
.yd6{bottom:-608.697403pt;}
.y138{bottom:-608.697270pt;}
.yd5{bottom:-585.326719pt;}
.y137{bottom:-585.326585pt;}
.y101{bottom:-585.325950pt;}
.y163{bottom:-585.325817pt;}
.yd4{bottom:-561.974294pt;}
.y136{bottom:-561.974161pt;}
.y100{bottom:-561.973333pt;}
.y162{bottom:-561.973200pt;}
.yd3{bottom:-538.602649pt;}
.y135{bottom:-538.602516pt;}
.ya5{bottom:-518.350331pt;}
.yff{bottom:-515.250225pt;}
.y161{bottom:-515.250092pt;}
.yd2{bottom:-515.249264pt;}
.y134{bottom:-515.249130pt;}
.yfe{bottom:-497.779009pt;}
.y160{bottom:-497.778876pt;}
.yfd{bottom:-497.778817pt;}
.y15f{bottom:-497.778684pt;}
.yd1{bottom:-491.878580pt;}
.y133{bottom:-491.878446pt;}
.y90{bottom:-475.022644pt;}
.ya4{bottom:-474.348185pt;}
.yd0{bottom:-468.526155pt;}
.y132{bottom:-468.526022pt;}
.yfc{bottom:-468.524618pt;}
.y15e{bottom:-468.524484pt;}
.y8f{bottom:-465.025776pt;}
.ya3{bottom:-463.246994pt;}
.y8e{bottom:-455.021059pt;}
.ya2{bottom:-452.158488pt;}
.yfb{bottom:-445.153933pt;}
.y15d{bottom:-445.153800pt;}
.ycf{bottom:-445.153741pt;}
.y131{bottom:-445.153608pt;}
.y8d{bottom:-445.016434pt;}
.ya1{bottom:-441.061403pt;}
.y8c{bottom:-435.019566pt;}
.ya0{bottom:-429.972989pt;}
.yfa{bottom:-421.801509pt;}
.y15c{bottom:-421.801376pt;}
.yce{bottom:-421.801317pt;}
.y130{bottom:-421.801183pt;}
.y9f{bottom:-418.884483pt;}
.y8b{bottom:-416.143843pt;}
.y9e{bottom:-407.787398pt;}
.y9d{bottom:-396.698983pt;}
.ycd{bottom:-391.165135pt;}
.y12f{bottom:-391.165002pt;}
.y8a{bottom:-390.924557pt;}
.y9c{bottom:-385.601899pt;}
.y89{bottom:-379.836142pt;}
.y9b{bottom:-374.513393pt;}
.yf4{bottom:-371.306877pt;}
.y156{bottom:-371.306743pt;}
.yf6{bottom:-370.234351pt;}
.y158{bottom:-370.234218pt;}
.y88{bottom:-368.747636pt;}
.y9a{bottom:-363.416308pt;}
.y87{bottom:-357.650552pt;}
.yf8{bottom:-352.918440pt;}
.y15a{bottom:-352.918307pt;}
.yf9{bottom:-352.451180pt;}
.y15b{bottom:-352.451047pt;}
.y99{bottom:-352.327894pt;}
.yf7{bottom:-347.019356pt;}
.y159{bottom:-347.019223pt;}
.yf3{bottom:-347.018395pt;}
.y155{bottom:-347.018262pt;}
.y86{bottom:-346.562137pt;}
.y98{bottom:-341.230809pt;}
.ycc{bottom:-337.418520pt;}
.y12e{bottom:-337.418386pt;}
.y85{bottom:-335.465052pt;}
.y97{bottom:-330.142303pt;}
.yf5{bottom:-327.852281pt;}
.y157{bottom:-327.852148pt;}
.y84{bottom:-324.376546pt;}
.y96{bottom:-319.045218pt;}
.ycb{bottom:-314.047067pt;}
.y12d{bottom:-314.046933pt;}
.y83{bottom:-313.279462pt;}
.y95{bottom:-307.956804pt;}
.y82{bottom:-302.191047pt;}
.y94{bottom:-296.859719pt;}
.yf2{bottom:-294.119613pt;}
.y154{bottom:-294.119480pt;}
.y81{bottom:-291.093962pt;}
.yca{bottom:-290.694450pt;}
.y12c{bottom:-290.694317pt;}
.y93{bottom:-285.771213pt;}
.y80{bottom:-280.005548pt;}
.y92{bottom:-274.674128pt;}
.yf1{bottom:-270.748929pt;}
.y153{bottom:-270.748796pt;}
.y7f{bottom:-263.634906pt;}
.y91{bottom:-263.585714pt;}
.yc9{bottom:-260.057499pt;}
.y12b{bottom:-260.057366pt;}
.y7e{bottom:-225.374286pt;}
.yec{bottom:-220.271019pt;}
.y14e{bottom:-220.270886pt;}
.yee{bottom:-219.596366pt;}
.y150{bottom:-219.596232pt;}
.yc8{bottom:-206.310884pt;}
.y12a{bottom:-206.310751pt;}
.y7d{bottom:-205.720152pt;}
.yf0{bottom:-202.280840pt;}
.y152{bottom:-202.280706pt;}
.yef{bottom:-196.398670pt;}
.y151{bottom:-196.398536pt;}
.yeb{bottom:-196.395979pt;}
.y14d{bottom:-196.395845pt;}
.y7c{bottom:-194.812080pt;}
.y7b{bottom:-183.895247pt;}
.yc7{bottom:-182.939047pt;}
.y129{bottom:-182.938913pt;}
.yed{bottom:-177.214296pt;}
.y14f{bottom:-177.214163pt;}
.y7a{bottom:-172.987175pt;}
.y79{bottom:-162.079011pt;}
.yc6{bottom:-159.583355pt;}
.y128{bottom:-159.583222pt;}
.y78{bottom:-151.162269pt;}
.y77{bottom:-140.254106pt;}
.yea{bottom:-139.380082pt;}
.y14c{bottom:-139.379948pt;}
.yc5{bottom:-136.212671pt;}
.y127{bottom:-136.212537pt;}
.y76{bottom:-129.346034pt;}
.y75{bottom:-118.429200pt;}
.ye9{bottom:-116.027465pt;}
.y14b{bottom:-116.027332pt;}
.yc4{bottom:-112.860246pt;}
.y126{bottom:-112.860113pt;}
.y74{bottom:-107.521128pt;}
.y73{bottom:-96.604294pt;}
.ye8{bottom:-92.656781pt;}
.y14a{bottom:-92.656648pt;}
.yc3{bottom:-89.489562pt;}
.y125{bottom:-89.489429pt;}
.y72{bottom:-85.696222pt;}
.y71{bottom:-74.788059pt;}
.ye7{bottom:-69.304357pt;}
.y149{bottom:-69.304223pt;}
.yc2{bottom:-66.136946pt;}
.y124{bottom:-66.136812pt;}
.y70{bottom:-63.871317pt;}
.y6f{bottom:-52.963153pt;}
.ye6{bottom:-45.933672pt;}
.y148{bottom:-45.933539pt;}
.yc1{bottom:-42.766261pt;}
.y123{bottom:-42.766128pt;}
.y6e{bottom:-42.055081pt;}
.y1a1{bottom:-32.502090pt;}
.y6d{bottom:-31.138248pt;}
.y6c{bottom:-20.230176pt;}
.y6b{bottom:-9.322012pt;}
.yc0{bottom:-8.307620pt;}
.y122{bottom:-8.307487pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:8.829420pt;}
.y2f{bottom:9.389600pt;}
.y2d{bottom:9.389733pt;}
.y2b{bottom:9.451067pt;}
.y1a0{bottom:11.050712pt;}
.ye5{bottom:14.178903pt;}
.y147{bottom:14.179036pt;}
.y1a2{bottom:21.776827pt;}
.y19f{bottom:22.060282pt;}
.y5b{bottom:25.067320pt;}
.y1b1{bottom:27.071627pt;}
.yc{bottom:27.487187pt;}
.y42{bottom:27.586880pt;}
.y69{bottom:32.938907pt;}
.y19e{bottom:33.070505pt;}
.ye4{bottom:35.232124pt;}
.y146{bottom:35.232257pt;}
.y5a{bottom:41.842773pt;}
.yd{bottom:43.943520pt;}
.y1b0{bottom:43.959520pt;}
.y19d{bottom:44.072290pt;}
.y41{bottom:44.362347pt;}
.y68{bottom:44.602756pt;}
.ybf{bottom:45.438803pt;}
.y121{bottom:45.438936pt;}
.ye3{bottom:53.569048pt;}
.y145{bottom:53.569182pt;}
.y19c{bottom:55.082412pt;}
.y67{bottom:56.266605pt;}
.ye2{bottom:56.302259pt;}
.y144{bottom:56.302393pt;}
.y66{bottom:64.612007pt;}
.y19b{bottom:66.092233pt;}
.ybe{bottom:68.810256pt;}
.y120{bottom:68.810389pt;}
.y11{bottom:72.754400pt;}
.y59{bottom:75.350160pt;}
.y173{bottom:76.541427pt;}
.y19a{bottom:77.093918pt;}
.y1c3{bottom:85.899987pt;}
.y65{bottom:86.075042pt;}
.y29{bottom:86.348933pt;}
.y3e{bottom:87.421800pt;}
.y178{bottom:88.387027pt;}
.y24{bottom:90.257240pt;}
.ybd{bottom:92.164602pt;}
.y11f{bottom:92.164735pt;}
.y1af{bottom:94.299267pt;}
.y1bf{bottom:94.640427pt;}
.yb{bottom:96.772200pt;}
.y64{bottom:98.798677pt;}
.y172{bottom:104.706413pt;}
.yac{bottom:106.498667pt;}
.y58{bottom:113.566960pt;}
.ybc{bottom:115.535286pt;}
.y11e{bottom:115.535420pt;}
.y28{bottom:124.565733pt;}
.y4b{bottom:125.907240pt;}
.y1e{bottom:128.800067pt;}
.y23{bottom:130.512133pt;}
.y1be{bottom:130.819133pt;}
.ya{bottom:131.438867pt;}
.y170{bottom:133.527200pt;}
.y3f{bottom:134.912667pt;}
.y177{bottom:136.848133pt;}
.ybb{bottom:138.887903pt;}
.y11d{bottom:138.888036pt;}
.y1ae{bottom:140.795333pt;}
.y10f{bottom:143.079867pt;}
.yab{bottom:144.715467pt;}
.y63{bottom:147.753988pt;}
.y57{bottom:151.783733pt;}
.y46{bottom:155.838667pt;}
.y171{bottom:161.052667pt;}
.yba{bottom:162.258587pt;}
.y11c{bottom:162.258720pt;}
.y27{bottom:162.782533pt;}
.y176{bottom:165.584933pt;}
.y9{bottom:166.105600pt;}
.y16f{bottom:166.196267pt;}
.y22{bottom:166.690800pt;}
.y1d{bottom:167.016800pt;}
.y1bd{bottom:171.074000pt;}
.yaa{bottom:182.932267pt;}
.y1ad{bottom:183.470133pt;}
.yb9{bottom:185.610819pt;}
.y11b{bottom:185.610953pt;}
.y56{bottom:190.000533pt;}
.y40{bottom:190.285333pt;}
.yae{bottom:191.920267pt;}
.y175{bottom:194.321867pt;}
.y26{bottom:198.961200pt;}
.y1c{bottom:203.195600pt;}
.y21{bottom:206.945733pt;}
.yb8{bottom:208.984387pt;}
.y11a{bottom:208.984520pt;}
.y1bc{bottom:209.290800pt;}
.y179{bottom:209.441200pt;}
.y10c{bottom:218.761467pt;}
.y199{bottom:220.554949pt;}
.ya9{bottom:221.149067pt;}
.y1ac{bottom:221.686933pt;}
.y10{bottom:222.145200pt;}
.y55{bottom:228.217333pt;}
.yb7{bottom:232.336811pt;}
.y119{bottom:232.336944pt;}
.y8{bottom:235.438933pt;}
.y1b{bottom:243.450400pt;}
.y20{bottom:245.162533pt;}
.y3a{bottom:245.686000pt;}
.y1bb{bottom:247.507600pt;}
.y45{bottom:253.626400pt;}
.yb6{bottom:255.707495pt;}
.y118{bottom:255.707628pt;}
.ya8{bottom:257.327733pt;}
.y1ab{bottom:259.903733pt;}
.y54{bottom:266.434133pt;}
.y7{bottom:270.105600pt;}
.yb5{bottom:279.060112pt;}
.y117{bottom:279.060245pt;}
.y1ba{bottom:283.686267pt;}
.y1a{bottom:284.853733pt;}
.y39{bottom:285.940800pt;}
.y1f{bottom:286.565867pt;}
.y16e{bottom:292.466667pt;}
.ya7{bottom:297.582667pt;}
.y1aa{bottom:298.120533pt;}
.yb4{bottom:302.430796pt;}
.y116{bottom:302.430929pt;}
.y53{bottom:302.612933pt;}
.y6{bottom:304.772267pt;}
.y1{bottom:312.836133pt;}
.y1c1{bottom:324.027067pt;}
.y38{bottom:324.157600pt;}
.yb3{bottom:325.783989pt;}
.y115{bottom:325.784122pt;}
.y1b9{bottom:330.918267pt;}
.ya6{bottom:333.761333pt;}
.y47{bottom:335.346400pt;}
.y1a9{bottom:339.523867pt;}
.y52{bottom:342.867733pt;}
.y110{bottom:344.246400pt;}
.yb2{bottom:349.154673pt;}
.y114{bottom:349.154807pt;}
.y198{bottom:357.560807pt;}
.y19{bottom:359.156133pt;}
.y1c0{bottom:361.501600pt;}
.y37{bottom:362.374400pt;}
.y1b8{bottom:367.540533pt;}
.yb1{bottom:372.507098pt;}
.y113{bottom:372.507231pt;}
.y3d{bottom:373.931200pt;}
.y5{bottom:374.105600pt;}
.y51{bottom:379.046400pt;}
.y62{bottom:383.159467pt;}
.y1a8{bottom:393.880533pt;}
.yb0{bottom:395.877782pt;}
.y112{bottom:395.877915pt;}
.y61{bottom:396.470400pt;}
.y18{bottom:397.372933pt;}
.y36{bottom:400.591200pt;}
.y174{bottom:400.597467pt;}
.y1b7{bottom:404.162800pt;}
.y1c2{bottom:412.759067pt;}
.y30{bottom:413.808533pt;}
.y50{bottom:419.301333pt;}
.y18f{bottom:424.594401pt;}
.y60{bottom:432.649067pt;}
.y1a7{bottom:434.135467pt;}
.y35{bottom:436.770000pt;}
.y197{bottom:436.797347pt;}
.y18e{bottom:436.798352pt;}
.y17{bottom:438.776267pt;}
.y1b6{bottom:440.785200pt;}
.y2e{bottom:444.550933pt;}
.y10e{bottom:444.735600pt;}
.yaf{bottom:447.653102pt;}
.y111{bottom:447.653236pt;}
.y18d{bottom:449.010840pt;}
.y196{bottom:449.011644pt;}
.y4{bottom:452.388800pt;}
.y4f{bottom:457.518133pt;}
.y3b{bottom:457.654667pt;}
.y18c{bottom:461.213887pt;}
.y195{bottom:461.214690pt;}
.y1a6{bottom:472.352267pt;}
.y5f{bottom:472.904000pt;}
.y18b{bottom:473.426375pt;}
.y194{bottom:473.427179pt;}
.y2c{bottom:475.293200pt;}
.y34{bottom:477.024800pt;}
.y1b5{bottom:477.407467pt;}
.y49{bottom:482.406533pt;}
.y18a{bottom:485.629322pt;}
.y193{bottom:485.630125pt;}
.y4e{bottom:493.696800pt;}
.y10d{bottom:494.107600pt;}
.y3{bottom:496.388800pt;}
.y189{bottom:497.842613pt;}
.y16{bottom:501.124533pt;}
.y2a{bottom:506.648267pt;}
.y4a{bottom:506.678533pt;}
.y5e{bottom:509.082667pt;}
.y188{bottom:510.045660pt;}
.y48{bottom:510.406533pt;}
.y1a5{bottom:510.569067pt;}
.y1b4{bottom:512.599467pt;}
.y33{bottom:513.203600pt;}
.y187{bottom:522.258048pt;}
.y186{bottom:534.461095pt;}
.y192{bottom:534.461597pt;}
.y15{bottom:539.341333pt;}
.y2{bottom:540.388800pt;}
.y185{bottom:546.674085pt;}
.y1a4{bottom:548.785867pt;}
.y5d{bottom:549.337600pt;}
.y4d{bottom:550.580267pt;}
.y1b3{bottom:550.652000pt;}
.y44{bottom:553.317467pt;}
.y32{bottom:553.458400pt;}
.y184{bottom:558.877032pt;}
.y183{bottom:571.090022pt;}
.y191{bottom:571.091328pt;}
.yad{bottom:579.435067pt;}
.y14{bottom:580.744667pt;}
.y182{bottom:583.294375pt;}
.y1a3{bottom:584.964533pt;}
.y5c{bottom:585.516267pt;}
.y1b2{bottom:587.274400pt;}
.y4c{bottom:588.797067pt;}
.y25{bottom:590.276933pt;}
.y43{bottom:591.534267pt;}
.y3c{bottom:593.298400pt;}
.y181{bottom:595.506863pt;}
.y180{bottom:607.709810pt;}
.y17f{bottom:619.922298pt;}
.y17e{bottom:632.125345pt;}
.yf{bottom:638.934933pt;}
.y17d{bottom:644.337833pt;}
.y17c{bottom:656.540780pt;}
.y17b{bottom:668.753268pt;}
.y190{bottom:668.753469pt;}
.y12{bottom:670.131600pt;}
.ye{bottom:670.230933pt;}
.y17a{bottom:695.808765pt;}
.y13{bottom:706.192400pt;}
.h15{height:0.000000pt;}
.h33{height:3.713477pt;}
.h1d{height:18.935958pt;}
.h23{height:22.091951pt;}
.h24{height:24.068782pt;}
.h46{height:25.274698pt;}
.h21{height:25.950696pt;}
.h47{height:26.348602pt;}
.h20{height:28.237832pt;}
.h11{height:30.190827pt;}
.h13{height:30.206253pt;}
.h1b{height:30.893685pt;}
.h1f{height:31.559930pt;}
.h1e{height:32.617161pt;}
.h48{height:34.732120pt;}
.h49{height:34.734129pt;}
.h4b{height:34.734932pt;}
.h22{height:34.882028pt;}
.h9{height:34.945312pt;}
.h4a{height:38.161540pt;}
.h4c{height:38.197096pt;}
.h34{height:38.200372pt;}
.h1c{height:38.348327pt;}
.h44{height:38.386124pt;}
.h41{height:38.388132pt;}
.h17{height:38.854167pt;}
.h32{height:39.217542pt;}
.h1a{height:39.716013pt;}
.h43{height:42.163066pt;}
.h45{height:42.202840pt;}
.h42{height:42.203242pt;}
.h6{height:43.681641pt;}
.h14{height:43.746989pt;}
.h12{height:44.788584pt;}
.h3f{height:54.359375pt;}
.h8{height:54.395833pt;}
.h29{height:54.652688pt;}
.h4d{height:60.000000pt;}
.h52{height:62.166667pt;}
.h2d{height:66.465849pt;}
.h2f{height:66.467387pt;}
.h30{height:66.469693pt;}
.h3b{height:68.435606pt;}
.h18{height:69.890625pt;}
.h7{height:69.937500pt;}
.h16{height:72.445015pt;}
.h4f{height:73.424337pt;}
.h50{height:73.424871pt;}
.hb{height:73.441217pt;}
.hf{height:73.441377pt;}
.he{height:73.441430pt;}
.hc{height:73.441750pt;}
.h28{height:73.454566pt;}
.h26{height:73.462254pt;}
.h27{height:73.463023pt;}
.h2e{height:77.398693pt;}
.h51{height:79.145937pt;}
.h37{height:80.377163pt;}
.h31{height:80.442514pt;}
.h2b{height:80.690848pt;}
.h3a{height:80.756199pt;}
.h2a{height:80.758505pt;}
.h3e{height:80.759274pt;}
.h2c{height:80.762350pt;}
.h10{height:81.539062pt;}
.hd{height:81.593750pt;}
.h4{height:85.421875pt;}
.h5{height:85.479167pt;}
.h35{height:90.242094pt;}
.h38{height:95.148804pt;}
.h39{height:95.189552pt;}
.h3d{height:97.060129pt;}
.h4e{height:99.781333pt;}
.h36{height:108.304352pt;}
.ha{height:112.000000pt;}
.h3{height:112.601562pt;}
.h3c{height:113.770005pt;}
.h2{height:116.562500pt;}
.h19{height:172.631333pt;}
.h40{height:403.185600pt;}
.h25{height:415.959867pt;}
.h1{height:680.997467pt;}
.h0{height:720.000000pt;}
.w2{width:0.000000pt;}
.w1{width:126.519560pt;}
.w3{width:418.994667pt;}
.w4{width:491.513733pt;}
.w5{width:522.097600pt;}
.w0{width:1280.000000pt;}
.x35{left:-496.887284pt;}
.x38{left:-485.692940pt;}
.x37{left:-476.698138pt;}
.x36{left:-323.759316pt;}
.x39{left:-322.791736pt;}
.x4b{left:-47.342111pt;}
.x2f{left:-22.498340pt;}
.x2e{left:-12.912491pt;}
.x0{left:0.000000pt;}
.x11{left:6.127067pt;}
.x3a{left:8.566470pt;}
.x59{left:16.463980pt;}
.x2a{left:20.354533pt;}
.x3{left:21.333333pt;}
.x5c{left:23.287918pt;}
.x5b{left:25.081373pt;}
.x2c{left:26.604640pt;}
.x3c{left:28.736875pt;}
.x6{left:29.675619pt;}
.x2b{left:35.270661pt;}
.x28{left:36.363029pt;}
.x5e{left:38.017907pt;}
.x25{left:42.293240pt;}
.x31{left:44.340613pt;}
.x2d{left:46.729070pt;}
.x23{left:47.652973pt;}
.x63{left:48.610760pt;}
.x32{left:49.673947pt;}
.x1c{left:53.519640pt;}
.x7{left:55.564800pt;}
.x61{left:56.719640pt;}
.x8{left:60.898133pt;}
.x5f{left:62.052973pt;}
.xe{left:63.342413pt;}
.xd{left:66.319640pt;}
.x57{left:67.528067pt;}
.xf{left:68.675747pt;}
.x29{left:73.621635pt;}
.x9{left:74.609627pt;}
.x62{left:75.803000pt;}
.x60{left:81.136333pt;}
.x55{left:83.089280pt;}
.x54{left:85.755947pt;}
.x16{left:87.660040pt;}
.x27{left:94.460498pt;}
.x24{left:113.700840pt;}
.x4f{left:118.504773pt;}
.x2{left:120.576800pt;}
.x4{left:121.900173pt;}
.x3d{left:146.145396pt;}
.x43{left:153.722272pt;}
.x1{left:191.262987pt;}
.x44{left:213.038333pt;}
.x30{left:217.505895pt;}
.x3e{left:230.354436pt;}
.x45{left:237.965910pt;}
.x5d{left:240.826192pt;}
.x46{left:247.930021pt;}
.x3f{left:253.136961pt;}
.x40{left:263.101072pt;}
.x47{left:269.882203pt;}
.x48{left:278.842984pt;}
.x5a{left:280.592762pt;}
.x41{left:285.070553pt;}
.x4a{left:286.229573pt;}
.x42{left:299.809134pt;}
.x49{left:313.804251pt;}
.x4d{left:352.350800pt;}
.x3b{left:393.343767pt;}
.x53{left:402.758533pt;}
.x4e{left:435.838133pt;}
.x50{left:451.838133pt;}
.x22{left:471.547333pt;}
.x1f{left:488.792267pt;}
.x4c{left:498.771467pt;}
.x52{left:529.081067pt;}
.x21{left:537.680667pt;}
.x56{left:553.158533pt;}
.x17{left:659.551867pt;}
.xa{left:663.268267pt;}
.xb{left:668.601600pt;}
.xc{left:682.351600pt;}
.x58{left:738.457467pt;}
.x10{left:745.649467pt;}
.x51{left:774.502400pt;}
.x34{left:780.902400pt;}
.x1b{left:794.842400pt;}
.x66{left:811.541333pt;}
.x26{left:834.011600pt;}
.x20{left:851.913867pt;}
.x64{left:863.338800pt;}
.x1d{left:870.653333pt;}
.x12{left:872.705200pt;}
.x1e{left:880.792133pt;}
.x19{left:890.148933pt;}
.x18{left:893.993333pt;}
.x33{left:914.322667pt;}
.x65{left:955.008000pt;}
.x13{left:999.760800pt;}
.x1a{left:1086.267067pt;}
.x5{left:1090.467200pt;}
.x14{left:1126.816533pt;}
.x15{left:1293.591733pt;}
}




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