
    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_b060dfecb804bde338a2aad9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_2b4e5ebee8f634a064c34a31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_d37b6d0eed0172bc507e668b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_10f9f350d71c244779e88d80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_9d4b64d1c3b97b7b83463179.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_afb6f89ff66f1b73a675ab19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.717000;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_9152be93781c2595ff594493.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.418000;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_c4902325defa91c82987d508.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.017000;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_b0f819bae70043ae54c302bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_9110677c85892727f48746ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_30207066e02856223f998b45.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.799000;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_051b458a4d7f0c37953b943e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_5597516db17c2471d007f566.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_5eab5a4300de20ca25bc1b39.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b0216246b8d5101989387ab1.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5934529241305ffc8ba0d2d9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c0e2cfa8990f3a6855ac3c7c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.590000;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_e84c138a33027f38b23e821c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.998000;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_044e9154e6cd3bf3ff2c0017.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;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_b0f819bae70043ae54c302bc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.973000;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_abe77dc4ed7d8b387dcfb87f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5934529241305ffc8ba0d2d9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9110677c85892727f48746ed.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.969000;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_e84c138a33027f38b23e821c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.998000;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_10f9f350d71c244779e88d80.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.964000;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_ca6827a165026ffd18a45fe5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.656000;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_9152be93781c2595ff594493.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.418000;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_5eab5a4300de20ca25bc1b39.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_5597516db17c2471d007f566.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938000;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_6db9e63a226529d4531c9ff1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938000;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_30207066e02856223f998b45.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.799000;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_ca6827a165026ffd18a45fe5.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.656000;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.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(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-7.483200px;}
.v5{vertical-align:-6.462600px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.034986px;}
.v3{vertical-align:4.084749px;}
.v2{vertical-align:5.103000px;}
.v6{vertical-align:7.483800px;}
.v9{vertical-align:9.526373px;}
.v1{vertical-align:12.243600px;}
.v7{vertical-align:19.750800px;}
.ls1a{letter-spacing:-2.068774px;}
.ls1b{letter-spacing:-2.063974px;}
.ls3f{letter-spacing:-1.371600px;}
.ls41{letter-spacing:-1.328400px;}
.ls42{letter-spacing:-1.285200px;}
.ls45{letter-spacing:-1.216638px;}
.ls3e{letter-spacing:-1.209600px;}
.ls40{letter-spacing:-1.150200px;}
.ls43{letter-spacing:-1.144800px;}
.lsb{letter-spacing:-1.128600px;}
.ls46{letter-spacing:-1.117800px;}
.ls7a{letter-spacing:-1.112400px;}
.ls44{letter-spacing:-1.085400px;}
.ls3c{letter-spacing:-1.036800px;}
.ls77{letter-spacing:-1.031400px;}
.ls19{letter-spacing:-0.999000px;}
.ls79{letter-spacing:-0.993600px;}
.ls15{letter-spacing:-0.988200px;}
.ls16{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.945000px;}
.ls11{letter-spacing:-0.939600px;}
.ls7f{letter-spacing:-0.918000px;}
.ls18{letter-spacing:-0.917878px;}
.lsa{letter-spacing:-0.914278px;}
.ls78{letter-spacing:-0.912600px;}
.ls7e{letter-spacing:-0.907200px;}
.ls81{letter-spacing:-0.874800px;}
.ls35{letter-spacing:-0.869400px;}
.ls34{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.842400px;}
.ls7d{letter-spacing:-0.826200px;}
.ls10{letter-spacing:-0.815400px;}
.lsc{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.804600px;}
.ls17{letter-spacing:-0.799200px;}
.ls38{letter-spacing:-0.793800px;}
.ls80{letter-spacing:-0.783000px;}
.ls36{letter-spacing:-0.777600px;}
.ls32{letter-spacing:-0.772200px;}
.ls7c{letter-spacing:-0.761400px;}
.ls7b{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.750600px;}
.ls39{letter-spacing:-0.745200px;}
.lsf{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.696600px;}
.ls13{letter-spacing:-0.615518px;}
.lse{letter-spacing:-0.611918px;}
.ls7{letter-spacing:-0.003600px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003200px;}
.ls31{letter-spacing:0.038400px;}
.ls51{letter-spacing:0.048600px;}
.ls6f{letter-spacing:0.054000px;}
.ls6a{letter-spacing:0.108000px;}
.ls59{letter-spacing:0.115199px;}
.ls28{letter-spacing:0.119400px;}
.ls1f{letter-spacing:0.124200px;}
.ls71{letter-spacing:0.151200px;}
.ls24{letter-spacing:0.213600px;}
.ls29{letter-spacing:0.216600px;}
.ls63{letter-spacing:0.219600px;}
.ls84{letter-spacing:0.292496px;}
.ls4e{letter-spacing:0.372600px;}
.ls60{letter-spacing:0.415800px;}
.ls47{letter-spacing:0.491400px;}
.ls49{letter-spacing:0.496800px;}
.ls74{letter-spacing:0.502200px;}
.ls75{letter-spacing:0.529200px;}
.ls62{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.550800px;}
.ls82{letter-spacing:0.553493px;}
.ls76{letter-spacing:0.556200px;}
.ls4a{letter-spacing:0.561600px;}
.ls4d{letter-spacing:0.572400px;}
.ls4c{letter-spacing:0.593921px;}
.ls61{letter-spacing:0.594000px;}
.ls8b{letter-spacing:0.634492px;}
.ls48{letter-spacing:0.664200px;}
.ls86{letter-spacing:0.665991px;}
.ls87{letter-spacing:0.697491px;}
.ls5f{letter-spacing:0.831600px;}
.ls89{letter-spacing:0.895488px;}
.ls88{letter-spacing:0.971987px;}
.ls55{letter-spacing:7.603105px;}
.ls5c{letter-spacing:7.939101px;}
.ls54{letter-spacing:8.073499px;}
.ls1c{letter-spacing:8.116200px;}
.ls1d{letter-spacing:9.104400px;}
.ls27{letter-spacing:9.423000px;}
.ls69{letter-spacing:11.178000px;}
.ls5b{letter-spacing:11.447857px;}
.ls83{letter-spacing:11.524346px;}
.ls73{letter-spacing:11.826000px;}
.ls33{letter-spacing:12.036600px;}
.ls70{letter-spacing:12.150000px;}
.ls6e{letter-spacing:12.204000px;}
.ls5{letter-spacing:12.538800px;}
.ls6d{letter-spacing:12.852000px;}
.ls53{letter-spacing:12.879000px;}
.ls2c{letter-spacing:13.041437px;}
.ls5a{letter-spacing:13.300634px;}
.ls2f{letter-spacing:13.382233px;}
.ls3d{letter-spacing:13.397400px;}
.ls20{letter-spacing:13.478400px;}
.ls1{letter-spacing:13.484275px;}
.ls37{letter-spacing:13.591800px;}
.ls4{letter-spacing:13.737600px;}
.ls4f{letter-spacing:13.899600px;}
.ls68{letter-spacing:14.256000px;}
.ls67{letter-spacing:14.418000px;}
.ls23{letter-spacing:14.887800px;}
.ls64{letter-spacing:14.904000px;}
.ls50{letter-spacing:15.093000px;}
.ls66{letter-spacing:15.174000px;}
.ls22{letter-spacing:15.228000px;}
.ls6b{letter-spacing:15.606000px;}
.ls2d{letter-spacing:15.955001px;}
.ls2e{letter-spacing:16.275536px;}
.ls30{letter-spacing:16.276136px;}
.ls2b{letter-spacing:16.615736px;}
.ls58{letter-spacing:16.890989px;}
.ls65{letter-spacing:16.956000px;}
.ls5d{letter-spacing:17.820000px;}
.ls21{letter-spacing:17.950200px;}
.ls2a{letter-spacing:17.950800px;}
.ls52{letter-spacing:18.662400px;}
.ls8a{letter-spacing:18.764750px;}
.ls1e{letter-spacing:19.002600px;}
.ls3a{letter-spacing:19.170000px;}
.ls72{letter-spacing:19.307400px;}
.ls6{letter-spacing:20.013562px;}
.ls5e{letter-spacing:20.109600px;}
.ls6c{letter-spacing:20.358000px;}
.ls2{letter-spacing:20.703600px;}
.ls25{letter-spacing:20.881800px;}
.ls26{letter-spacing:22.345200px;}
.ls3{letter-spacing:23.731618px;}
.ls85{letter-spacing:26.248150px;}
.ls57{letter-spacing:28.198087px;}
.ls56{letter-spacing:31.266809px;}
.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;}
}
.ws228{word-spacing:-26.293149px;}
.wsff{word-spacing:-20.163600px;}
.ws9d{word-spacing:-19.224000px;}
.wsfd{word-spacing:-17.874000px;}
.ws3{word-spacing:-16.980000px;}
.ws2{word-spacing:-15.282000px;}
.ws90{word-spacing:-13.645800px;}
.wsb5{word-spacing:-13.451400px;}
.ws0{word-spacing:-12.735000px;}
.ws7b{word-spacing:-12.090600px;}
.ws1bd{word-spacing:-1.016986px;}
.ws227{word-spacing:-0.679491px;}
.ws1bf{word-spacing:-0.598492px;}
.ws12c{word-spacing:-0.583200px;}
.ws106{word-spacing:-0.469800px;}
.ws8{word-spacing:-0.054000px;}
.ws24{word-spacing:-0.047999px;}
.ws197{word-spacing:-0.044999px;}
.ws1a{word-spacing:-0.032396px;}
.ws4{word-spacing:0.000000px;}
.ws3c{word-spacing:0.575923px;}
.ws4e{word-spacing:0.579523px;}
.ws3b{word-spacing:0.642600px;}
.wsf5{word-spacing:0.718200px;}
.ws8c{word-spacing:0.723600px;}
.wsf7{word-spacing:0.756000px;}
.ws82{word-spacing:0.815400px;}
.ws38{word-spacing:0.878283px;}
.ws5e{word-spacing:0.881882px;}
.ws3f{word-spacing:0.891000px;}
.ws5d{word-spacing:0.934200px;}
.ws179{word-spacing:0.982800px;}
.ws67{word-spacing:2.015975px;}
.ws65{word-spacing:2.020775px;}
.ws126{word-spacing:7.651104px;}
.ws11c{word-spacing:7.723103px;}
.ws10b{word-spacing:8.039900px;}
.wsd9{word-spacing:8.063899px;}
.ws127{word-spacing:8.087899px;}
.ws52{word-spacing:8.094600px;}
.ws2f{word-spacing:8.737200px;}
.ws2e{word-spacing:9.088200px;}
.ws101{word-spacing:9.455400px;}
.wsb2{word-spacing:9.487800px;}
.wsb1{word-spacing:9.498600px;}
.ws84{word-spacing:9.639000px;}
.ws14d{word-spacing:9.720000px;}
.ws49{word-spacing:10.411200px;}
.ws15c{word-spacing:10.422000px;}
.wse8{word-spacing:10.508400px;}
.ws17e{word-spacing:10.962000px;}
.ws79{word-spacing:10.972800px;}
.ws181{word-spacing:11.016000px;}
.ws204{word-spacing:11.020353px;}
.ws1ce{word-spacing:11.029353px;}
.ws1dc{word-spacing:11.042853px;}
.ws1c5{word-spacing:11.051853px;}
.ws1ba{word-spacing:11.056353px;}
.ws215{word-spacing:11.083352px;}
.ws1e0{word-spacing:11.105852px;}
.ws1c2{word-spacing:11.110352px;}
.ws1ef{word-spacing:11.114852px;}
.ws224{word-spacing:11.119352px;}
.ws1f6{word-spacing:11.123852px;}
.ws1c6{word-spacing:11.137351px;}
.ws20c{word-spacing:11.146351px;}
.ws19d{word-spacing:11.159851px;}
.ws11f{word-spacing:11.164660px;}
.ws1cc{word-spacing:11.173351px;}
.ws222{word-spacing:11.177851px;}
.ws1a1{word-spacing:11.204851px;}
.ws1c7{word-spacing:11.209351px;}
.ws1f8{word-spacing:11.218350px;}
.ws11e{word-spacing:11.227060px;}
.ws1ee{word-spacing:11.227350px;}
.ws177{word-spacing:11.232000px;}
.ws1c9{word-spacing:11.236350px;}
.ws1a2{word-spacing:11.249850px;}
.ws220{word-spacing:11.254350px;}
.ws20b{word-spacing:11.258850px;}
.ws11d{word-spacing:11.284659px;}
.ws1c8{word-spacing:11.285850px;}
.ws23{word-spacing:11.289459px;}
.ws206{word-spacing:11.317349px;}
.ws209{word-spacing:11.321849px;}
.ws8a{word-spacing:11.323800px;}
.ws1aa{word-spacing:11.339849px;}
.ws1b9{word-spacing:11.371348px;}
.ws1ac{word-spacing:11.384848px;}
.ws21d{word-spacing:11.389348px;}
.ws1fd{word-spacing:11.393848px;}
.ws1d{word-spacing:11.399857px;}
.ws22{word-spacing:11.419057px;}
.ws1ec{word-spacing:11.420848px;}
.ws1f5{word-spacing:11.425348px;}
.ws19c{word-spacing:11.429848px;}
.ws1e{word-spacing:11.443057px;}
.ws1d0{word-spacing:11.452347px;}
.ws1dd{word-spacing:11.456847px;}
.ws1e6{word-spacing:11.461347px;}
.ws219{word-spacing:11.465847px;}
.ws1a5{word-spacing:11.474847px;}
.ws218{word-spacing:11.479347px;}
.ws35{word-spacing:11.496600px;}
.ws194{word-spacing:11.502000px;}
.ws1b{word-spacing:11.510256px;}
.ws213{word-spacing:11.524346px;}
.ws21{word-spacing:11.529456px;}
.ws20f{word-spacing:11.533346px;}
.ws120{word-spacing:11.543856px;}
.ws7f{word-spacing:11.550600px;}
.ws20a{word-spacing:11.555846px;}
.ws14e{word-spacing:11.556000px;}
.ws128{word-spacing:11.563055px;}
.ws1a0{word-spacing:11.564846px;}
.ws1f3{word-spacing:11.582846px;}
.ws4d{word-spacing:11.583000px;}
.ws1da{word-spacing:11.587345px;}
.ws19b{word-spacing:11.609845px;}
.ws21c{word-spacing:11.618845px;}
.ws1fe{word-spacing:11.636845px;}
.ws1fb{word-spacing:11.645845px;}
.ws1f{word-spacing:11.649454px;}
.ws19a{word-spacing:11.654845px;}
.ws5f{word-spacing:11.664000px;}
.ws202{word-spacing:11.690844px;}
.ws1eb{word-spacing:11.699844px;}
.ws207{word-spacing:11.704344px;}
.ws64{word-spacing:11.711854px;}
.ws1b5{word-spacing:11.759853px;}
.ws1c{word-spacing:11.764653px;}
.ws214{word-spacing:11.767343px;}
.ws66{word-spacing:11.769453px;}
.wse1{word-spacing:11.807852px;}
.ws11b{word-spacing:11.822252px;}
.ws16a{word-spacing:11.826000px;}
.wsd2{word-spacing:11.842200px;}
.ws1e5{word-spacing:11.843842px;}
.ws69{word-spacing:11.884651px;}
.ws1b7{word-spacing:11.903851px;}
.wsec{word-spacing:11.912400px;}
.ws68{word-spacing:11.937451px;}
.ws1fc{word-spacing:11.942841px;}
.ws223{word-spacing:11.947341px;}
.ws1b6{word-spacing:11.951851px;}
.ws211{word-spacing:11.956341px;}
.wsd7{word-spacing:11.956651px;}
.ws91{word-spacing:11.961000px;}
.ws20{word-spacing:12.009450px;}
.wsd6{word-spacing:12.028650px;}
.ws123{word-spacing:12.091049px;}
.ws1b8{word-spacing:12.140838px;}
.ws122{word-spacing:12.153448px;}
.wsdb{word-spacing:12.158248px;}
.ws10a{word-spacing:12.167848px;}
.ws1ff{word-spacing:12.172338px;}
.ws212{word-spacing:12.176838px;}
.wsdf{word-spacing:12.201447px;}
.ws8e{word-spacing:12.214800px;}
.ws48{word-spacing:12.252600px;}
.ws124{word-spacing:12.278247px;}
.ws208{word-spacing:12.284836px;}
.ws14f{word-spacing:12.312000px;}
.ws1af{word-spacing:12.329836px;}
.ws81{word-spacing:12.333600px;}
.ws71{word-spacing:12.403800px;}
.ws200{word-spacing:12.410835px;}
.ws1e7{word-spacing:12.455834px;}
.wse0{word-spacing:12.460644px;}
.wsa3{word-spacing:12.463200px;}
.ws110{word-spacing:12.494244px;}
.ws1e8{word-spacing:12.518833px;}
.ws141{word-spacing:12.528000px;}
.ws1ae{word-spacing:12.554833px;}
.ws1ed{word-spacing:12.568332px;}
.ws1e9{word-spacing:12.572832px;}
.ws61{word-spacing:12.576600px;}
.ws76{word-spacing:12.630600px;}
.ws10f{word-spacing:12.647842px;}
.ws1d5{word-spacing:12.676331px;}
.ws8f{word-spacing:12.684600px;}
.ws150{word-spacing:12.706200px;}
.ws4a{word-spacing:12.852000px;}
.ws159{word-spacing:12.900600px;}
.ws83{word-spacing:12.943800px;}
.ws6c{word-spacing:13.014000px;}
.ws105{word-spacing:13.041000px;}
.ws96{word-spacing:13.057200px;}
.ws9{word-spacing:13.143600px;}
.wsb{word-spacing:13.170600px;}
.ws17{word-spacing:13.181400px;}
.ws112{word-spacing:13.190235px;}
.wsd{word-spacing:13.213800px;}
.ws173{word-spacing:13.224600px;}
.ws153{word-spacing:13.230000px;}
.wsc{word-spacing:13.235400px;}
.ws1f2{word-spacing:13.238823px;}
.ws121{word-spacing:13.247834px;}
.ws7{word-spacing:13.251600px;}
.ws16{word-spacing:13.267800px;}
.wsd8{word-spacing:13.271834px;}
.ws15{word-spacing:13.289400px;}
.wse{word-spacing:13.294800px;}
.ws14{word-spacing:13.300200px;}
.wsbf{word-spacing:13.305600px;}
.ws18{word-spacing:13.348800px;}
.ws9f{word-spacing:13.365000px;}
.ws13{word-spacing:13.386600px;}
.ws192{word-spacing:13.392000px;}
.ws12{word-spacing:13.413600px;}
.ws205{word-spacing:13.414321px;}
.ws19{word-spacing:13.440600px;}
.wsa{word-spacing:13.446000px;}
.ws27{word-spacing:13.456800px;}
.ws180{word-spacing:13.494600px;}
.ws33{word-spacing:13.500000px;}
.ws104{word-spacing:13.505400px;}
.ws7a{word-spacing:13.521600px;}
.ws137{word-spacing:13.532400px;}
.ws3a{word-spacing:13.543200px;}
.ws1a3{word-spacing:13.544819px;}
.ws10{word-spacing:13.554000px;}
.ws11{word-spacing:13.575600px;}
.ws140{word-spacing:13.581000px;}
.ws4b{word-spacing:13.591800px;}
.ws136{word-spacing:13.618800px;}
.ws142{word-spacing:13.656600px;}
.wsf{word-spacing:13.667400px;}
.ws133{word-spacing:13.705200px;}
.ws134{word-spacing:13.721400px;}
.ws172{word-spacing:13.786200px;}
.wsfa{word-spacing:13.797000px;}
.ws164{word-spacing:13.824000px;}
.ws158{word-spacing:13.937400px;}
.ws170{word-spacing:13.986000px;}
.wsf0{word-spacing:13.996800px;}
.wsa4{word-spacing:14.013000px;}
.ws85{word-spacing:14.034600px;}
.ws4c{word-spacing:14.083200px;}
.wsf8{word-spacing:14.088600px;}
.ws17d{word-spacing:14.094000px;}
.ws103{word-spacing:14.131800px;}
.ws62{word-spacing:14.137200px;}
.ws13f{word-spacing:14.202000px;}
.ws1a8{word-spacing:14.219810px;}
.ws15b{word-spacing:14.256000px;}
.wsd4{word-spacing:14.270222px;}
.ws191{word-spacing:14.293800px;}
.ws109{word-spacing:14.294221px;}
.ws125{word-spacing:14.299021px;}
.wsf9{word-spacing:14.304600px;}
.wse9{word-spacing:14.320800px;}
.wsd3{word-spacing:14.347021px;}
.ws50{word-spacing:14.358600px;}
.ws87{word-spacing:14.364000px;}
.ws34{word-spacing:14.423400px;}
.ws171{word-spacing:14.434200px;}
.ws63{word-spacing:14.515200px;}
.ws9e{word-spacing:14.526000px;}
.ws92{word-spacing:14.558400px;}
.ws1d3{word-spacing:14.575306px;}
.ws1a9{word-spacing:14.579806px;}
.wsb7{word-spacing:14.580000px;}
.ws1ad{word-spacing:14.624805px;}
.ws166{word-spacing:14.634000px;}
.ws1d4{word-spacing:14.638305px;}
.wsed{word-spacing:14.650200px;}
.ws1e4{word-spacing:14.665304px;}
.ws1ab{word-spacing:14.669804px;}
.ws1d2{word-spacing:14.674304px;}
.ws95{word-spacing:14.742000px;}
.ws163{word-spacing:14.796000px;}
.wsd0{word-spacing:14.898600px;}
.ws1f4{word-spacing:14.899301px;}
.ws154{word-spacing:14.904000px;}
.ws29{word-spacing:14.925600px;}
.ws2a{word-spacing:14.941800px;}
.wsbe{word-spacing:14.974200px;}
.ws10c{word-spacing:14.999813px;}
.ws1cd{word-spacing:15.016300px;}
.wsbd{word-spacing:15.022800px;}
.ws188{word-spacing:15.066000px;}
.wse4{word-spacing:15.093000px;}
.wsba{word-spacing:15.114600px;}
.ws221{word-spacing:15.196297px;}
.ws43{word-spacing:15.238800px;}
.ws13d{word-spacing:15.276600px;}
.wsb9{word-spacing:15.346800px;}
.wse6{word-spacing:15.352200px;}
.wsc7{word-spacing:15.363000px;}
.wsab{word-spacing:15.368400px;}
.ws13e{word-spacing:15.390000px;}
.wsb4{word-spacing:15.422400px;}
.wsa6{word-spacing:15.465600px;}
.ws16b{word-spacing:15.492600px;}
.ws135{word-spacing:15.519600px;}
.ws6d{word-spacing:15.535800px;}
.ws46{word-spacing:15.552000px;}
.wsad{word-spacing:15.579000px;}
.ws111{word-spacing:15.639749px;}
.wsda{word-spacing:15.652604px;}
.ws1f7{word-spacing:15.655291px;}
.ws161{word-spacing:15.660000px;}
.ws74{word-spacing:15.665400px;}
.wse5{word-spacing:15.670800px;}
.ws1ca{word-spacing:15.727290px;}
.ws88{word-spacing:15.751800px;}
.ws151{word-spacing:15.773400px;}
.ws45{word-spacing:15.778800px;}
.ws21e{word-spacing:15.808289px;}
.ws86{word-spacing:15.811200px;}
.ws5c{word-spacing:15.816600px;}
.ws21f{word-spacing:15.848789px;}
.ws1e2{word-spacing:15.880288px;}
.ws40{word-spacing:15.892200px;}
.wsdc{word-spacing:15.911801px;}
.ws60{word-spacing:15.919200px;}
.ws152{word-spacing:15.930000px;}
.ws56{word-spacing:15.984000px;}
.ws1e3{word-spacing:15.997287px;}
.wsea{word-spacing:16.027200px;}
.ws1e1{word-spacing:16.028786px;}
.ws44{word-spacing:16.048800px;}
.ws165{word-spacing:16.081200px;}
.ws17c{word-spacing:16.092000px;}
.ws17b{word-spacing:16.140600px;}
.ws1cb{word-spacing:16.154785px;}
.ws7e{word-spacing:16.173000px;}
.ws17a{word-spacing:16.194600px;}
.ws138{word-spacing:16.200000px;}
.ws13a{word-spacing:16.254000px;}
.ws1df{word-spacing:16.312283px;}
.ws32{word-spacing:16.340400px;}
.ws139{word-spacing:16.362000px;}
.wsc3{word-spacing:16.378200px;}
.wse7{word-spacing:16.405200px;}
.ws201{word-spacing:16.555279px;}
.ws1cf{word-spacing:16.564279px;}
.ws1c1{word-spacing:16.618278px;}
.wsb3{word-spacing:16.632000px;}
.wsd5{word-spacing:16.650992px;}
.ws1a7{word-spacing:16.694777px;}
.ws1c0{word-spacing:16.717277px;}
.ws131{word-spacing:16.799400px;}
.wscf{word-spacing:16.858800px;}
.ws58{word-spacing:16.939800px;}
.ws72{word-spacing:16.945200px;}
.ws16c{word-spacing:16.950600px;}
.ws1a6{word-spacing:16.964774px;}
.wsc6{word-spacing:16.966800px;}
.ws113{word-spacing:17.010987px;}
.ws130{word-spacing:17.074800px;}
.wsa5{word-spacing:17.172000px;}
.wscd{word-spacing:17.215200px;}
.wsa0{word-spacing:17.274600px;}
.ws8b{word-spacing:17.285400px;}
.ws117{word-spacing:17.289384px;}
.ws118{word-spacing:17.318184px;}
.ws1f0{word-spacing:17.320269px;}
.ws12f{word-spacing:17.323200px;}
.ws14b{word-spacing:17.334000px;}
.ws21a{word-spacing:17.356269px;}
.wsf3{word-spacing:17.366400px;}
.ws162{word-spacing:17.388000px;}
.ws7d{word-spacing:17.409600px;}
.ws20d{word-spacing:17.437268px;}
.ws21b{word-spacing:17.473267px;}
.ws1f1{word-spacing:17.495767px;}
.ws119{word-spacing:17.514981px;}
.ws143{word-spacing:17.544600px;}
.ws216{word-spacing:17.549766px;}
.ws11a{word-spacing:17.562980px;}
.wsc1{word-spacing:17.652600px;}
.ws217{word-spacing:17.729764px;}
.wsc4{word-spacing:17.798400px;}
.ws146{word-spacing:17.852400px;}
.ws1db{word-spacing:17.918761px;}
.wsa1{word-spacing:17.960400px;}
.wsc0{word-spacing:17.998200px;}
.ws75{word-spacing:18.036000px;}
.wsde{word-spacing:18.062174px;}
.ws28{word-spacing:18.138600px;}
.wsa2{word-spacing:18.149400px;}
.ws17f{word-spacing:18.171000px;}
.ws1b2{word-spacing:18.179758px;}
.ws8d{word-spacing:18.219600px;}
.wsdd{word-spacing:18.244572px;}
.ws1b1{word-spacing:18.269756px;}
.ws70{word-spacing:18.300600px;}
.ws210{word-spacing:18.301256px;}
.ws1d1{word-spacing:18.305756px;}
.ws13c{word-spacing:18.306000px;}
.ws1b0{word-spacing:18.314756px;}
.ws9b{word-spacing:18.408600px;}
.ws176{word-spacing:18.414000px;}
.ws1c3{word-spacing:18.418254px;}
.ws1c4{word-spacing:18.517253px;}
.ws149{word-spacing:18.549000px;}
.ws78{word-spacing:18.576000px;}
.ws157{word-spacing:18.630000px;}
.ws132{word-spacing:18.635400px;}
.wseb{word-spacing:18.640800px;}
.wsf4{word-spacing:18.678600px;}
.ws31{word-spacing:18.684000px;}
.ws198{word-spacing:18.719750px;}
.ws30{word-spacing:18.732600px;}
.ws148{word-spacing:18.738000px;}
.ws1f9{word-spacing:18.787249px;}
.ws147{word-spacing:18.846000px;}
.ws196{word-spacing:18.854749px;}
.wsca{word-spacing:18.900000px;}
.wsc5{word-spacing:18.981000px;}
.wsc9{word-spacing:18.986400px;}
.ws195{word-spacing:18.989747px;}
.wsfe{word-spacing:19.013400px;}
.ws51{word-spacing:19.067400px;}
.ws1d7{word-spacing:19.174244px;}
.ws12e{word-spacing:19.213200px;}
.ws1fa{word-spacing:19.232744px;}
.ws14a{word-spacing:19.251000px;}
.wscb{word-spacing:19.283400px;}
.ws1d8{word-spacing:19.336242px;}
.ws100{word-spacing:19.353600px;}
.wsfb{word-spacing:19.359000px;}
.ws1d6{word-spacing:19.439741px;}
.wsfc{word-spacing:19.504800px;}
.ws97{word-spacing:19.548000px;}
.ws55{word-spacing:19.661400px;}
.ws1a4{word-spacing:19.664738px;}
.ws9a{word-spacing:19.774800px;}
.ws13b{word-spacing:19.823400px;}
.wsee{word-spacing:19.920600px;}
.ws190{word-spacing:19.974600px;}
.ws15a{word-spacing:19.980000px;}
.ws73{word-spacing:20.007000px;}
.ws2c{word-spacing:20.163600px;}
.wsbb{word-spacing:20.190600px;}
.ws9c{word-spacing:20.287800px;}
.ws2d{word-spacing:20.363400px;}
.ws5b{word-spacing:20.368800px;}
.ws2b{word-spacing:20.385000px;}
.ws16e{word-spacing:20.412000px;}
.wse3{word-spacing:20.460600px;}
.ws77{word-spacing:20.714400px;}
.ws1ea{word-spacing:20.789723px;}
.ws167{word-spacing:20.790000px;}
.ws6f{word-spacing:20.968200px;}
.wsac{word-spacing:21.022200px;}
.ws7c{word-spacing:21.027600px;}
.ws1de{word-spacing:21.028220px;}
.ws155{word-spacing:21.060000px;}
.ws203{word-spacing:21.100219px;}
.ws98{word-spacing:21.151800px;}
.ws42{word-spacing:21.189600px;}
.wsce{word-spacing:21.281400px;}
.ws59{word-spacing:21.297600px;}
.ws16f{word-spacing:21.373200px;}
.ws80{word-spacing:21.389400px;}
.wsa7{word-spacing:21.497400px;}
.ws89{word-spacing:21.589200px;}
.wsbc{word-spacing:21.610800px;}
.wsb8{word-spacing:21.621600px;}
.wsae{word-spacing:21.702600px;}
.ws199{word-spacing:21.734710px;}
.wsa9{word-spacing:21.789000px;}
.ws99{word-spacing:21.805200px;}
.wse2{word-spacing:22.080600px;}
.ws14c{word-spacing:22.194000px;}
.ws5a{word-spacing:22.210200px;}
.ws15f{word-spacing:22.345200px;}
.wsb0{word-spacing:22.383000px;}
.wsc2{word-spacing:22.469400px;}
.ws18e{word-spacing:22.518000px;}
.wsaa{word-spacing:22.566600px;}
.wsa8{word-spacing:22.588200px;}
.ws41{word-spacing:22.728600px;}
.ws156{word-spacing:22.750200px;}
.ws1b3{word-spacing:22.769802px;}
.ws6a{word-spacing:22.797402px;}
.ws18c{word-spacing:22.842000px;}
.ws169{word-spacing:23.166000px;}
.ws19f{word-spacing:23.534686px;}
.ws37{word-spacing:23.554800px;}
.wsd1{word-spacing:23.662800px;}
.ws182{word-spacing:23.706000px;}
.ws20e{word-spacing:23.741683px;}
.ws19e{word-spacing:23.759683px;}
.ws57{word-spacing:23.889600px;}
.ws15e{word-spacing:23.976000px;}
.ws6e{word-spacing:24.013800px;}
.wscc{word-spacing:24.116400px;}
.wsaf{word-spacing:24.267600px;}
.ws102{word-spacing:24.429600px;}
.ws12d{word-spacing:24.661800px;}
.ws114{word-spacing:24.729291px;}
.ws193{word-spacing:24.732000px;}
.ws115{word-spacing:24.844489px;}
.ws226{word-spacing:24.875668px;}
.ws187{word-spacing:24.894000px;}
.ws225{word-spacing:24.934168px;}
.ws94{word-spacing:25.023600px;}
.ws116{word-spacing:25.046087px;}
.ws93{word-spacing:25.288200px;}
.ws16d{word-spacing:25.536600px;}
.ws183{word-spacing:25.920000px;}
.ws174{word-spacing:26.152200px;}
.ws15d{word-spacing:26.190000px;}
.ws4f{word-spacing:26.211600px;}
.wsf6{word-spacing:26.362800px;}
.ws129{word-spacing:26.497800px;}
.ws12a{word-spacing:26.681400px;}
.ws39{word-spacing:26.767800px;}
.ws53{word-spacing:26.956800px;}
.ws47{word-spacing:27.108000px;}
.ws1be{word-spacing:27.130138px;}
.ws1bb{word-spacing:27.589132px;}
.ws12b{word-spacing:27.594000px;}
.wsb6{word-spacing:27.610200px;}
.wsef{word-spacing:27.772200px;}
.ws1bc{word-spacing:27.868128px;}
.ws54{word-spacing:27.880200px;}
.wsc8{word-spacing:28.198800px;}
.ws175{word-spacing:28.836000px;}
.ws18d{word-spacing:28.884600px;}
.ws185{word-spacing:28.998000px;}
.ws25{word-spacing:29.268000px;}
.ws5{word-spacing:29.748149px;}
.ws160{word-spacing:29.862000px;}
.ws6{word-spacing:29.928150px;}
.ws26{word-spacing:30.229200px;}
.wsf2{word-spacing:30.601800px;}
.ws10e{word-spacing:30.815615px;}
.ws10d{word-spacing:30.926013px;}
.ws1d9{word-spacing:30.946087px;}
.ws108{word-spacing:31.487400px;}
.ws107{word-spacing:31.827600px;}
.wsf1{word-spacing:32.173200px;}
.ws178{word-spacing:34.290000px;}
.ws18b{word-spacing:34.452000px;}
.ws189{word-spacing:34.614000px;}
.ws18a{word-spacing:34.673400px;}
.ws3e{word-spacing:35.175600px;}
.ws3d{word-spacing:35.251200px;}
.ws168{word-spacing:35.964000px;}
.ws36{word-spacing:39.619800px;}
.ws145{word-spacing:40.878000px;}
.ws144{word-spacing:41.358600px;}
.ws18f{word-spacing:45.414000px;}
.ws184{word-spacing:51.678000px;}
.ws186{word-spacing:70.686000px;}
.ws6b{word-spacing:185.365800px;}
.ws1b4{word-spacing:185.382000px;}
.ws1{word-spacing:959.525969px;}
._21{margin-left:-25.100719px;}
._1a{margin-left:-21.838044px;}
._17{margin-left:-20.001156px;}
._19{margin-left:-18.350334px;}
._16{margin-left:-14.341783px;}
._15{margin-left:-12.879000px;}
._3{margin-left:-5.956726px;}
._e{margin-left:-2.404282px;}
._5{margin-left:-1.315184px;}
._0{width:1.998000px;}
._1c{width:6.981916px;}
._14{width:8.083565px;}
._1b{width:9.255600px;}
._6{width:10.785465px;}
._4{width:12.566243px;}
._2{width:14.364000px;}
._b{width:15.697800px;}
._13{width:16.938099px;}
._a{width:18.257400px;}
._8{width:19.423800px;}
._9{width:21.394800px;}
._10{width:22.979564px;}
._f{width:25.009397px;}
._18{width:26.533060px;}
._1d{width:27.972000px;}
._1e{width:30.240000px;}
._7{width:31.541400px;}
._1f{width:33.426000px;}
._d{width:36.400118px;}
._c{width:39.984584px;}
._20{width:47.283411px;}
._1{width:60.000021px;}
._12{width:1194.421098px;}
._11{width:1843.452907px;}
.fc5{color:rgb(244,107,23);}
.fc3{color:rgb(83,172,228);}
.fc1{color:rgb(0,174,239);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:28.684800px;}
.fs10{font-size:29.995200px;}
.fs7{font-size:31.995000px;}
.fsa{font-size:32.270400px;}
.fsf{font-size:33.598800px;}
.fs6{font-size:35.995200px;}
.fse{font-size:37.800000px;}
.fsb{font-size:41.831400px;}
.fs11{font-size:44.999400px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:47.061000px;}
.fs8{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000600px;}
.fsd{font-size:68.999400px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y2{bottom:62.419464px;}
.y71{bottom:72.538500px;}
.y72{bottom:73.558950px;}
.y1{bottom:87.919464px;}
.y70{bottom:91.417200px;}
.y6e{bottom:160.469250px;}
.y56{bottom:162.676350px;}
.yd9{bottom:162.676950px;}
.yc0{bottom:162.677700px;}
.y6d{bottom:162.679650px;}
.y126{bottom:162.679707px;}
.y6f{bottom:162.680250px;}
.y185{bottom:162.683700px;}
.y1c9{bottom:162.690995px;}
.y57{bottom:168.718050px;}
.y125{bottom:176.201138px;}
.y184{bottom:176.371650px;}
.y1c8{bottom:176.382063px;}
.y55{bottom:178.664400px;}
.ybf{bottom:178.665750px;}
.y183{bottom:178.666950px;}
.y6c{bottom:178.667700px;}
.y110{bottom:178.748100px;}
.yd8{bottom:178.750050px;}
.y124{bottom:189.722569px;}
.y1c7{bottom:189.983131px;}
.y69{bottom:194.399400px;}
.y6b{bottom:194.399850px;}
.y54{bottom:194.567400px;}
.y182{bottom:194.569950px;}
.y180{bottom:194.573400px;}
.ybe{bottom:194.653800px;}
.y10f{bottom:194.736150px;}
.yd7{bottom:194.823150px;}
.y6a{bottom:200.352750px;}
.y181{bottom:200.607900px;}
.y122{bottom:201.203100px;}
.y121{bottom:203.243887px;}
.y123{bottom:203.244000px;}
.y1c6{bottom:203.584200px;}
.y17d{bottom:208.261350px;}
.y1c5{bottom:208.601550px;}
.y68{bottom:210.302400px;}
.y66{bottom:210.303750px;}
.y53{bottom:210.470400px;}
.ybd{bottom:210.556800px;}
.y17e{bottom:210.557400px;}
.y17c{bottom:210.559500px;}
.y10e{bottom:210.724200px;}
.yd6{bottom:210.896250px;}
.y67{bottom:216.340050px;}
.y17f{bottom:216.510150px;}
.y120{bottom:216.680119px;}
.y1c4{bottom:217.110631px;}
.y65{bottom:226.290450px;}
.y52{bottom:226.373400px;}
.y17b{bottom:226.462500px;}
.ybc{bottom:226.543500px;}
.y10d{bottom:226.712250px;}
.yd5{bottom:226.969350px;}
.y11f{bottom:228.245700px;}
.y11e{bottom:230.201550px;}
.y1c3{bottom:230.711700px;}
.y1c2{bottom:235.644000px;}
.y62{bottom:242.188800px;}
.y64{bottom:242.192100px;}
.y51{bottom:242.276400px;}
.y17a{bottom:242.446500px;}
.y10c{bottom:242.700300px;}
.yd4{bottom:243.043050px;}
.y1c1{bottom:244.148283px;}
.y63{bottom:248.144850px;}
.y178{bottom:256.138500px;}
.y1c0{bottom:257.839350px;}
.y61{bottom:258.091800px;}
.ybb{bottom:258.176850px;}
.y4e{bottom:258.178800px;}
.y50{bottom:258.179400px;}
.y179{bottom:258.349500px;}
.y177{bottom:258.352950px;}
.y10b{bottom:258.772050px;}
.yd3{bottom:259.113600px;}
.y1bf{bottom:262.771500px;}
.y4f{bottom:264.217200px;}
.y1be{bottom:271.280731px;}
.y175{bottom:272.125950px;}
.y60{bottom:274.079850px;}
.yba{bottom:274.164900px;}
.y4b{bottom:274.166250px;}
.y4d{bottom:274.166850px;}
.y174{bottom:274.336350px;}
.y176{bottom:274.336950px;}
.y10a{bottom:274.760100px;}
.yd2{bottom:275.186700px;}
.y4c{bottom:280.119600px;}
.y1bd{bottom:284.881800px;}
.y172{bottom:288.028200px;}
.y1bc{bottom:289.899150px;}
.y5f{bottom:289.982850px;}
.yb9{bottom:290.067900px;}
.y48{bottom:290.068500px;}
.y4a{bottom:290.069250px;}
.y173{bottom:290.239350px;}
.y171{bottom:290.259150px;}
.y109{bottom:290.748150px;}
.yd1{bottom:291.259800px;}
.ycf{bottom:291.259950px;}
.y49{bottom:296.022000px;}
.yd0{bottom:297.212550px;}
.y1bb{bottom:298.413513px;}
.y5e{bottom:305.885850px;}
.y47{bottom:305.971500px;}
.y45{bottom:305.973000px;}
.yb8{bottom:306.055950px;}
.y170{bottom:306.243150px;}
.y108{bottom:306.736200px;}
.yce{bottom:307.248000px;}
.y46{bottom:311.924250px;}
.y1ba{bottom:312.014581px;}
.y106{bottom:320.513400px;}
.y5d{bottom:321.873900px;}
.y44{bottom:321.874650px;}
.yb7{bottom:322.044000px;}
.y16f{bottom:322.146150px;}
.y105{bottom:322.723650px;}
.y107{bottom:322.724250px;}
.ycd{bottom:323.321100px;}
.y1b9{bottom:325.615650px;}
.y5c{bottom:327.826650px;}
.y1b8{bottom:330.633000px;}
.y41{bottom:337.774200px;}
.y5a{bottom:337.774950px;}
.y43{bottom:337.776300px;}
.yb6{bottom:337.945650px;}
.y16e{bottom:338.130150px;}
.y104{bottom:338.456550px;}
.y1b7{bottom:339.142231px;}
.ycc{bottom:339.394200px;}
.y5b{bottom:343.729050px;}
.y42{bottom:343.814100px;}
.yb3{bottom:351.637650px;}
.y1b6{bottom:352.743300px;}
.y40{bottom:353.677200px;}
.y59{bottom:353.677950px;}
.yb2{bottom:353.933100px;}
.yb4{bottom:353.933700px;}
.y16d{bottom:354.114150px;}
.y103{bottom:354.528300px;}
.ycb{bottom:355.465950px;}
.y1b5{bottom:357.760500px;}
.yb5{bottom:359.886450px;}
.y1b4{bottom:366.269731px;}
.y101{bottom:368.220300px;}
.y3f{bottom:369.665250px;}
.y58{bottom:369.666000px;}
.yb1{bottom:369.834300px;}
.y16c{bottom:370.017150px;}
.y100{bottom:370.514550px;}
.y102{bottom:370.516350px;}
.yca{bottom:371.537700px;}
.y1b3{bottom:379.870800px;}
.y1b2{bottom:384.888150px;}
.y16b{bottom:385.744650px;}
.yb0{bottom:385.822350px;}
.yff{bottom:386.502600px;}
.yc9{bottom:387.609450px;}
.y1b1{bottom:393.397231px;}
.yaf{bottom:401.553900px;}
.y16a{bottom:401.728650px;}
.yfe{bottom:402.490650px;}
.yc8{bottom:403.681200px;}
.y1b0{bottom:406.998300px;}
.y1af{bottom:412.015650px;}
.yae{bottom:417.541950px;}
.y169{bottom:417.631650px;}
.yfd{bottom:418.478700px;}
.yc7{bottom:419.754300px;}
.y1ae{bottom:420.524731px;}
.y3e{bottom:424.600800px;}
.yad{bottom:433.444950px;}
.y168{bottom:433.615650px;}
.y166{bottom:433.618350px;}
.y1ad{bottom:434.125800px;}
.yfc{bottom:434.551800px;}
.yc6{bottom:435.485850px;}
.y20f{bottom:435.571605px;}
.y1ac{bottom:439.143150px;}
.y167{bottom:439.568400px;}
.y3c{bottom:441.014100px;}
.y3d{bottom:442.204500px;}
.yab{bottom:447.136950px;}
.yfa{bottom:448.242300px;}
.y20e{bottom:449.092800px;}
.yc5{bottom:449.262900px;}
.yac{bottom:449.433000px;}
.yaa{bottom:449.433600px;}
.y165{bottom:449.521350px;}
.yf9{bottom:450.537150px;}
.yfb{bottom:450.538500px;}
.yc2{bottom:451.557450px;}
.yc4{bottom:451.558950px;}
.y1ab{bottom:452.782650px;}
.y20d{bottom:454.025100px;}
.yc3{bottom:457.511700px;}
.y22d{bottom:462.529050px;}
.y20c{bottom:462.529155px;}
.ya8{bottom:463.124250px;}
.y3b{bottom:465.080250px;}
.ya7{bottom:465.333450px;}
.ya9{bottom:465.335250px;}
.y164{bottom:465.505350px;}
.y162{bottom:465.508200px;}
.yf8{bottom:466.525200px;}
.y22c{bottom:467.546400px;}
.yc1{bottom:467.629200px;}
.y163{bottom:471.458250px;}
.y22b{bottom:476.050305px;}
.y20b{bottom:476.050350px;}
.y3a{bottom:480.896850px;}
.y20a{bottom:481.067550px;}
.ya6{bottom:481.321500px;}
.y161{bottom:481.411200px;}
.yf7{bottom:482.513250px;}
.y1aa{bottom:487.140150px;}
.y209{bottom:489.571500px;}
.y39{bottom:494.333700px;}
.y208{bottom:494.588850px;}
.y15f{bottom:495.099150px;}
.y36{bottom:496.629150px;}
.y38{bottom:496.629750px;}
.ya5{bottom:497.224500px;}
.y160{bottom:497.395200px;}
.y15e{bottom:497.414400px;}
.yf6{bottom:498.501300px;}
.y37{bottom:502.582500px;}
.y1a9{bottom:502.962150px;}
.y207{bottom:503.093354px;}
.y34{bottom:510.151050px;}
.yf4{bottom:512.277000px;}
.y33{bottom:512.361450px;}
.y35{bottom:512.362050px;}
.ye7{bottom:512.532019px;}
.ye9{bottom:512.532150px;}
.y15d{bottom:513.141900px;}
.ya4{bottom:513.212550px;}
.yf5{bottom:514.573050px;}
.yf3{bottom:514.574550px;}
.y206{bottom:516.529050px;}
.ye8{bottom:517.889550px;}
.y205{bottom:521.546250px;}
.y1a8{bottom:523.455150px;}
.y31{bottom:525.883350px;}
.ye6{bottom:526.052775px;}
.y30{bottom:528.093150px;}
.y32{bottom:528.094350px;}
.ya3{bottom:529.115550px;}
.y15c{bottom:529.125900px;}
.y22a{bottom:530.050305px;}
.y204{bottom:530.050411px;}
.yf2{bottom:530.561250px;}
.ye5{bottom:539.489007px;}
.y229{bottom:543.571500px;}
.y203{bottom:543.571605px;}
.y2f{bottom:543.824700px;}
.ya2{bottom:544.932150px;}
.y15b{bottom:545.028900px;}
.yef{bottom:546.547200px;}
.yf1{bottom:546.547950px;}
.y228{bottom:548.588850px;}
.yf0{bottom:552.500550px;}
.ye4{bottom:553.010438px;}
.y202{bottom:557.092800px;}
.y227{bottom:557.093354px;}
.ya1{bottom:558.623400px;}
.y1a7{bottom:559.594650px;}
.y2e{bottom:559.642650px;}
.yed{bottom:560.324250px;}
.ya0{bottom:560.833950px;}
.y15a{bottom:561.012900px;}
.y201{bottom:562.024950px;}
.yee{bottom:562.535250px;}
.yec{bottom:562.536000px;}
.ye3{bottom:566.531869px;}
.y200{bottom:570.529005px;}
.y226{bottom:570.529050px;}
.y2d{bottom:575.375550px;}
.y1a6{bottom:575.497650px;}
.y225{bottom:575.546250px;}
.y9f{bottom:576.822000px;}
.y159{bottom:576.915900px;}
.ye1{bottom:578.012400px;}
.yea{bottom:578.522700px;}
.ye0{bottom:580.053187px;}
.ye2{bottom:580.053300px;}
.y1ff{bottom:584.050200px;}
.y224{bottom:584.050411px;}
.yeb{bottom:584.560500px;}
.y1fe{bottom:589.067550px;}
.y2c{bottom:591.108450px;}
.y1a5{bottom:591.319650px;}
.y9e{bottom:592.725000px;}
.y158{bottom:592.899900px;}
.ydf{bottom:593.489419px;}
.y223{bottom:597.571605px;}
.y1fd{bottom:597.572159px;}
.y10{bottom:602.313020px;}
.ydd{bottom:605.055000px;}
.ydc{bottom:607.010588px;}
.yde{bottom:607.010850px;}
.y1a4{bottom:607.222650px;}
.y9d{bottom:608.710350px;}
.y157{bottom:608.802900px;}
.y222{bottom:611.092800px;}
.y1fc{bottom:611.093354px;}
.y2b{bottom:613.388850px;}
.y115{bottom:614.833875px;}
.y221{bottom:616.024950px;}
.ydb{bottom:620.532019px;}
.y1a3{bottom:623.125650px;}
.yf{bottom:624.063020px;}
.y220{bottom:624.529005px;}
.y1fb{bottom:624.529050px;}
.y9c{bottom:624.613350px;}
.y156{bottom:624.786900px;}
.y114{bottom:628.355306px;}
.y1fa{bottom:629.546250px;}
.yda{bottom:634.053450px;}
.y21f{bottom:638.050200px;}
.y1f9{bottom:638.050305px;}
.y9a{bottom:638.390400px;}
.y1a2{bottom:638.947650px;}
.y99{bottom:640.600950px;}
.y9b{bottom:640.601400px;}
.y155{bottom:640.689900px;}
.y113{bottom:641.876737px;}
.y21e{bottom:643.067550px;}
.ye{bottom:643.563020px;}
.y11d{bottom:643.832737px;}
.y1f8{bottom:651.571500px;}
.y21d{bottom:651.571605px;}
.y152{bottom:654.377850px;}
.y1a1{bottom:654.850650px;}
.y112{bottom:655.398168px;}
.y98{bottom:656.587650px;}
.y1f7{bottom:656.588850px;}
.y153{bottom:656.673900px;}
.y151{bottom:656.676600px;}
.y2a{bottom:657.184050px;}
.y11c{bottom:657.268969px;}
.y29{bottom:662.456550px;}
.y154{bottom:662.626650px;}
.y21c{bottom:665.092800px;}
.y1f6{bottom:665.093309px;}
.y111{bottom:668.834400px;}
.y21b{bottom:670.024950px;}
.y1a0{bottom:670.672650px;}
.y119{bottom:670.790006px;}
.y11b{bottom:670.790400px;}
.y97{bottom:672.320550px;}
.y150{bottom:672.579600px;}
.y11a{bottom:676.147800px;}
.y1f5{bottom:678.529005px;}
.yd{bottom:681.063020px;}
.y118{bottom:684.311437px;}
.y14e{bottom:686.267550px;}
.y19f{bottom:686.575650px;}
.y28{bottom:687.117900px;}
.y96{bottom:688.223550px;}
.y14d{bottom:688.563000px;}
.y14f{bottom:688.563600px;}
.y1f4{bottom:692.050200px;}
.y27{bottom:692.390400px;}
.y1f3{bottom:697.067550px;}
.y117{bottom:697.832868px;}
.y19e{bottom:702.478650px;}
.yc{bottom:702.813020px;}
.y95{bottom:704.210250px;}
.y14c{bottom:704.466000px;}
.y14a{bottom:704.472150px;}
.y26{bottom:705.061838px;}
.y1f2{bottom:705.571500px;}
.y21a{bottom:705.571605px;}
.y14b{bottom:710.503800px;}
.y1f1{bottom:710.588850px;}
.y116{bottom:711.269100px;}
.y19d{bottom:718.300650px;}
.y219{bottom:719.092800px;}
.y1f0{bottom:719.093204px;}
.y25{bottom:720.113250px;}
.y149{bottom:720.456150px;}
.y218{bottom:724.024950px;}
.y24{bottom:725.470650px;}
.y1ef{bottom:732.528900px;}
.y217{bottom:732.529111px;}
.y19c{bottom:734.203650px;}
.y94{bottom:736.101300px;}
.y148{bottom:736.359150px;}
.y1ee{bottom:737.546250px;}
.y23{bottom:738.056550px;}
.yb{bottom:740.313020px;}
.y22{bottom:743.413950px;}
.y1ed{bottom:746.050305px;}
.y91{bottom:749.791950px;}
.y19b{bottom:750.025650px;}
.y147{bottom:750.047100px;}
.y90{bottom:752.084100px;}
.y92{bottom:752.088000px;}
.y146{bottom:752.343150px;}
.y21{bottom:756.084900px;}
.y93{bottom:758.040750px;}
.y1ec{bottom:759.571500px;}
.y20{bottom:761.442300px;}
.ya{bottom:762.062997px;}
.y1eb{bottom:764.588700px;}
.y19a{bottom:765.928650px;}
.y8f{bottom:767.987100px;}
.y144{bottom:768.080850px;}
.y1ea{bottom:773.092184px;}
.y216{bottom:773.092229px;}
.y145{bottom:774.028050px;}
.y1f{bottom:774.113100px;}
.y1e{bottom:779.470650px;}
.y199{bottom:781.750650px;}
.y8e{bottom:783.975150px;}
.y143{bottom:783.983850px;}
.y1e9{bottom:786.529005px;}
.y215{bottom:786.529050px;}
.y214{bottom:791.546250px;}
.y1d{bottom:792.142237px;}
.y198{bottom:797.653650px;}
.y8d{bottom:799.708050px;}
.y142{bottom:799.967850px;}
.y1e8{bottom:800.050200px;}
.y213{bottom:800.050305px;}
.y9{bottom:801.062997px;}
.y1e7{bottom:805.067550px;}
.y1c{bottom:807.108450px;}
.y1b{bottom:812.466000px;}
.y197{bottom:813.556650px;}
.y212{bottom:813.571500px;}
.y1e6{bottom:813.572009px;}
.y8c{bottom:815.611050px;}
.y141{bottom:815.870850px;}
.y211{bottom:818.588700px;}
.y1e5{bottom:827.093204px;}
.y196{bottom:829.378650px;}
.y1a{bottom:829.984050px;}
.y8b{bottom:831.599100px;}
.y13e{bottom:831.854250px;}
.y140{bottom:831.854850px;}
.y13f{bottom:837.807750px;}
.y1e4{bottom:840.528900px;}
.y195{bottom:845.281650px;}
.y89{bottom:845.291100px;}
.y1e3{bottom:845.546250px;}
.y88{bottom:847.586550px;}
.y8a{bottom:847.587150px;}
.y13d{bottom:847.757250px;}
.y13b{bottom:847.759950px;}
.y13c{bottom:853.795050px;}
.y1e2{bottom:854.050305px;}
.y194{bottom:861.103650px;}
.y85{bottom:861.278550px;}
.y18{bottom:862.639200px;}
.y84{bottom:863.488950px;}
.y86{bottom:863.489550px;}
.y13a{bottom:863.743950px;}
.y1e1{bottom:867.571500px;}
.y19{bottom:868.591950px;}
.y87{bottom:869.527350px;}
.y1e0{bottom:872.588700px;}
.y138{bottom:877.435950px;}
.y16{bottom:879.136800px;}
.y83{bottom:879.477000px;}
.y81{bottom:879.478350px;}
.y139{bottom:879.646950px;}
.y137{bottom:879.650400px;}
.y1df{bottom:881.093204px;}
.y17{bottom:885.089550px;}
.y82{bottom:885.429750px;}
.y135{bottom:893.423400px;}
.y193{bottom:894.273150px;}
.y1de{bottom:894.528900px;}
.y80{bottom:895.380000px;}
.y136{bottom:895.634400px;}
.y134{bottom:895.641900px;}
.y1dd{bottom:899.546250px;}
.y191{bottom:907.880100px;}
.y1dc{bottom:908.050305px;}
.y190{bottom:910.158600px;}
.y192{bottom:910.176150px;}
.y7f{bottom:911.366700px;}
.y133{bottom:911.544900px;}
.y15{bottom:917.234400px;}
.y1db{bottom:921.571500px;}
.y7e{bottom:925.058100px;}
.y18f{bottom:925.980600px;}
.y1da{bottom:926.588700px;}
.y7d{bottom:927.270600px;}
.y132{bottom:927.528900px;}
.y1d9{bottom:935.092650px;}
.y210{bottom:935.093204px;}
.y14{bottom:935.178150px;}
.y8{bottom:937.817995px;}
.y1d8{bottom:940.024950px;}
.y130{bottom:941.045400px;}
.y131{bottom:943.256400px;}
.y7c{bottom:943.257300px;}
.y12f{bottom:943.262550px;}
.y1d7{bottom:948.528900px;}
.y13{bottom:953.206050px;}
.y1d6{bottom:953.546250px;}
.y7b{bottom:959.160300px;}
.y12e{bottom:959.246550px;}
.y18e{bottom:959.663100px;}
.y7{bottom:961.517999px;}
.y1d5{bottom:962.050155px;}
.y7a{bottom:975.147000px;}
.y12d{bottom:975.149550px;}
.y18d{bottom:975.566100px;}
.y1d4{bottom:975.571350px;}
.y1d3{bottom:980.588700px;}
.y12b{bottom:988.837500px;}
.y1d2{bottom:989.093054px;}
.y12a{bottom:991.132950px;}
.y12c{bottom:991.133550px;}
.y79{bottom:991.133700px;}
.y18c{bottom:991.388100px;}
.y6{bottom:999.458997px;}
.y1d1{bottom:1002.528750px;}
.y78{bottom:1007.036700px;}
.y129{bottom:1007.039400px;}
.y18b{bottom:1007.285700px;}
.y1d0{bottom:1007.546100px;}
.y12{bottom:1009.416285px;}
.y1cf{bottom:1016.050305px;}
.y5{bottom:1017.159002px;}
.y77{bottom:1023.024750px;}
.y128{bottom:1023.026100px;}
.y18a{bottom:1023.188700px;}
.y1ce{bottom:1029.571500px;}
.y1cd{bottom:1034.588700px;}
.y188{bottom:1036.799700px;}
.y76{bottom:1038.926400px;}
.y127{bottom:1038.929100px;}
.y187{bottom:1039.010100px;}
.y189{bottom:1039.010700px;}
.y11{bottom:1042.497450px;}
.y1cc{bottom:1043.093054px;}
.y186{bottom:1054.908750px;}
.y74{bottom:1054.913100px;}
.y1cb{bottom:1056.528750px;}
.y75{bottom:1060.865850px;}
.y1ca{bottom:1061.546100px;}
.y4{bottom:1066.338001px;}
.y3{bottom:1102.338001px;}
.y73{bottom:1135.105200px;}
.h1d{height:22.876425px;}
.h24{height:22.946328px;}
.h20{height:23.292360px;}
.hd{height:24.476175px;}
.h10{height:25.628582px;}
.h11{height:25.772563px;}
.h16{height:28.480963px;}
.hb{height:29.372083px;}
.h15{height:30.871573px;}
.h13{height:30.964800px;}
.h25{height:32.219570px;}
.h26{height:32.444567px;}
.h12{height:34.731018px;}
.h14{height:34.943563px;}
.h1f{height:34.944087px;}
.h22{height:35.951551px;}
.h1e{height:35.954251px;}
.h2{height:36.495000px;}
.h1c{height:38.661600px;}
.hf{height:38.664000px;}
.h18{height:38.669400px;}
.h19{height:38.671200px;}
.h1a{height:38.674200px;}
.he{height:39.359508px;}
.h21{height:40.446000px;}
.h1b{height:40.450800px;}
.h5{height:40.608000px;}
.h27{height:40.935954px;}
.hc{height:41.310000px;}
.h4{height:43.794000px;}
.h9{height:44.064000px;}
.h23{height:46.815600px;}
.h6{height:47.220000px;}
.h7{height:48.660000px;}
.h17{height:53.612534px;}
.ha{height:66.100090px;}
.h8{height:91.800459px;}
.h3{height:94.440000px;}
.h0{height:1214.958000px;}
.h1{height:1215.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4a{left:58.507050px;}
.x4b{left:59.697600px;}
.x4c{left:72.283500px;}
.x4{left:79.511850px;}
.x2a{left:80.872350px;}
.x1c{left:82.913400px;}
.x1e{left:84.784200px;}
.xac{left:85.804650px;}
.x1f{left:87.590550px;}
.xb0{left:89.291250px;}
.xad{left:90.311850px;}
.x8a{left:99.666150px;}
.x2b{left:106.469700px;}
.x5a{left:112.251900px;}
.x2d{left:117.779550px;}
.x5b{left:120.670800px;}
.x11{left:122.796900px;}
.xae{left:127.048235px;}
.x86{left:128.069250px;}
.x72{left:129.684900px;}
.x87{left:134.277150px;}
.x8b{left:136.147950px;}
.x2e{left:141.420450px;}
.x94{left:149.754300px;}
.x31{left:153.496050px;}
.x12{left:158.173200px;}
.xaf{left:160.553663px;}
.x5{left:169.568400px;}
.x95{left:177.222000px;}
.x2{left:180.000000px;}
.x1{left:186.000000px;}
.x79{left:188.957400px;}
.x5f{left:190.318050px;}
.x3{left:195.000000px;}
.x9e{left:198.226650px;}
.x36{left:200.097600px;}
.x77{left:205.710150px;}
.x50{left:208.941600px;}
.x78{left:210.387300px;}
.x71{left:213.448800px;}
.x92{left:217.275600px;}
.x51{left:223.313250px;}
.x93{left:224.588850px;}
.xb2{left:227.140162px;}
.x4d{left:228.330600px;}
.x37{left:236.069250px;}
.x4e{left:241.341600px;}
.x56{left:246.529050px;}
.x24{left:247.634550px;}
.x5c{left:248.825100px;}
.x8e{left:254.267700px;}
.x25{left:257.244000px;}
.x60{left:261.751050px;}
.x73{left:269.744850px;}
.x54{left:270.765300px;}
.x61{left:271.870800px;}
.x6{left:275.782650px;}
.x85{left:277.908600px;}
.x55{left:279.014100px;}
.x32{left:280.459800px;}
.x74{left:283.011000px;}
.x75{left:284.286600px;}
.x13{left:285.307050px;}
.x76{left:290.919600px;}
.x8f{left:293.725950px;}
.x9c{left:297.892800px;}
.x57{left:298.913250px;}
.x9a{left:301.549500px;}
.x7{left:303.590400px;}
.x90{left:305.801400px;}
.x9b{left:308.012550px;}
.xa0{left:313.625100px;}
.x2f{left:314.900700px;}
.x33{left:316.261350px;}
.x91{left:318.387300px;}
.x14{left:321.873900px;}
.x88{left:323.744850px;}
.x30{left:326.211000px;}
.x89{left:327.911700px;}
.x63{left:329.017200px;}
.x9f{left:331.823550px;}
.x64{left:333.694350px;}
.x38{left:336.500700px;}
.x26{left:345.429750px;}
.x2c{left:349.766850px;}
.x8c{left:352.233000px;}
.x27{left:355.039200px;}
.x98{left:363.628200px;}
.xb1{left:365.498022px;}
.x8d{left:368.050350px;}
.x99{left:370.261350px;}
.x8{left:374.428200px;}
.x39{left:375.448650px;}
.x96{left:381.146400px;}
.x9{left:383.697450px;}
.x58{left:385.313250px;}
.x3a{left:386.844000px;}
.x62{left:388.459650px;}
.x97{left:395.603100px;}
.x52{left:403.086450px;}
.x34{left:404.872350px;}
.x53{left:407.763600px;}
.x59{left:409.464450px;}
.x5d{left:411.505350px;}
.x15{left:413.036100px;}
.x5e{left:420.264450px;}
.x9d{left:425.962050px;}
.x35{left:434.040750px;}
.x16{left:440.929050px;}
.x4f{left:442.119600px;}
.xa{left:443.225100px;}
.xb{left:471.117900px;}
.x3c{left:472.477950px;}
.x6a{left:475.540050px;}
.xa6{left:478.346400px;}
.xa7{left:481.492800px;}
.xa8{left:483.278550px;}
.x17{left:496.289550px;}
.x3b{left:499.521150px;}
.x48{left:508.280250px;}
.x49{left:514.828200px;}
.xb5{left:516.699073px;}
.x7d{left:521.206200px;}
.x18{left:524.097450px;}
.x7e{left:525.288000px;}
.x6b{left:528.179400px;}
.x6c{left:532.856550px;}
.x7f{left:535.833000px;}
.x80{left:539.914800px;}
.x44{left:541.615650px;}
.x65{left:558.283350px;}
.xc{left:561.429750px;}
.x45{left:566.021850px;}
.xa9{left:567.118733px;}
.x46{left:568.232850px;}
.x66{left:570.869100px;}
.xd{left:589.237650px;}
.xab{left:590.503575px;}
.x3d{left:594.935250px;}
.xb4{left:597.230442px;}
.x28{left:600.888000px;}
.x29{left:608.966700px;}
.x19{left:612.028200px;}
.x1a{left:637.710000px;}
.x7b{left:649.870650px;}
.xe{left:654.547800px;}
.x7c{left:656.503800px;}
.x6d{left:657.949500px;}
.x6e{left:659.565150px;}
.xa5{left:662.711550px;}
.x7a{left:671.980950px;}
.xf{left:682.440750px;}
.x1d{left:684.564279px;}
.xb7{left:695.962368px;}
.x40{left:699.533700px;}
.xaa{left:703.277020px;}
.xa1{left:717.477000px;}
.x3e{left:722.919450px;}
.x41{left:725.980950px;}
.xa3{left:727.256400px;}
.xa2{left:729.977850px;}
.xa4{left:735.335250px;}
.x3f{left:739.332150px;}
.x22{left:744.009300px;}
.x23{left:752.513250px;}
.x68{left:758.210850px;}
.x47{left:764.078550px;}
.x69{left:773.092650px;}
.xb6{left:779.129948px;}
.x1b{left:785.508300px;}
.x81{left:791.801400px;}
.x82{left:795.798150px;}
.x10{left:798.774600px;}
.x42{left:800.475450px;}
.x67{left:806.853300px;}
.x83{left:808.128900px;}
.xb3{left:809.659337px;}
.x20{left:811.105350px;}
.x84{left:812.210850px;}
.x21{left:818.248650px;}
.x6f{left:820.204500px;}
.x70{left:824.201400px;}
.x43{left:826.922550px;}
@media print{
.v4{vertical-align:-6.651733pt;}
.v5{vertical-align:-5.744533pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:0.919988pt;}
.v3{vertical-align:3.630888pt;}
.v2{vertical-align:4.536000pt;}
.v6{vertical-align:6.652267pt;}
.v9{vertical-align:8.467887pt;}
.v1{vertical-align:10.883200pt;}
.v7{vertical-align:17.556267pt;}
.ls1a{letter-spacing:-1.838910pt;}
.ls1b{letter-spacing:-1.834644pt;}
.ls3f{letter-spacing:-1.219200pt;}
.ls41{letter-spacing:-1.180800pt;}
.ls42{letter-spacing:-1.142400pt;}
.ls45{letter-spacing:-1.081456pt;}
.ls3e{letter-spacing:-1.075200pt;}
.ls40{letter-spacing:-1.022400pt;}
.ls43{letter-spacing:-1.017600pt;}
.lsb{letter-spacing:-1.003200pt;}
.ls46{letter-spacing:-0.993600pt;}
.ls7a{letter-spacing:-0.988800pt;}
.ls44{letter-spacing:-0.964800pt;}
.ls3c{letter-spacing:-0.921600pt;}
.ls77{letter-spacing:-0.916800pt;}
.ls19{letter-spacing:-0.888000pt;}
.ls79{letter-spacing:-0.883200pt;}
.ls15{letter-spacing:-0.878400pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.840000pt;}
.ls11{letter-spacing:-0.835200pt;}
.ls7f{letter-spacing:-0.816000pt;}
.ls18{letter-spacing:-0.815891pt;}
.lsa{letter-spacing:-0.812692pt;}
.ls78{letter-spacing:-0.811200pt;}
.ls7e{letter-spacing:-0.806400pt;}
.ls81{letter-spacing:-0.777600pt;}
.ls35{letter-spacing:-0.772800pt;}
.ls34{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.748800pt;}
.ls7d{letter-spacing:-0.734400pt;}
.ls10{letter-spacing:-0.724800pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.715200pt;}
.ls17{letter-spacing:-0.710400pt;}
.ls38{letter-spacing:-0.705600pt;}
.ls80{letter-spacing:-0.696000pt;}
.ls36{letter-spacing:-0.691200pt;}
.ls32{letter-spacing:-0.686400pt;}
.ls7c{letter-spacing:-0.676800pt;}
.ls7b{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.667200pt;}
.ls39{letter-spacing:-0.662400pt;}
.lsf{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.619200pt;}
.ls13{letter-spacing:-0.547127pt;}
.lse{letter-spacing:-0.543927pt;}
.ls7{letter-spacing:-0.003200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002844pt;}
.ls31{letter-spacing:0.034133pt;}
.ls51{letter-spacing:0.043200pt;}
.ls6f{letter-spacing:0.048000pt;}
.ls6a{letter-spacing:0.096000pt;}
.ls59{letter-spacing:0.102399pt;}
.ls28{letter-spacing:0.106133pt;}
.ls1f{letter-spacing:0.110400pt;}
.ls71{letter-spacing:0.134400pt;}
.ls24{letter-spacing:0.189867pt;}
.ls29{letter-spacing:0.192533pt;}
.ls63{letter-spacing:0.195200pt;}
.ls84{letter-spacing:0.259997pt;}
.ls4e{letter-spacing:0.331200pt;}
.ls60{letter-spacing:0.369600pt;}
.ls47{letter-spacing:0.436800pt;}
.ls49{letter-spacing:0.441600pt;}
.ls74{letter-spacing:0.446400pt;}
.ls75{letter-spacing:0.470400pt;}
.ls62{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.489600pt;}
.ls82{letter-spacing:0.491993pt;}
.ls76{letter-spacing:0.494400pt;}
.ls4a{letter-spacing:0.499200pt;}
.ls4d{letter-spacing:0.508800pt;}
.ls4c{letter-spacing:0.527930pt;}
.ls61{letter-spacing:0.528000pt;}
.ls8b{letter-spacing:0.563992pt;}
.ls48{letter-spacing:0.590400pt;}
.ls86{letter-spacing:0.591992pt;}
.ls87{letter-spacing:0.619992pt;}
.ls5f{letter-spacing:0.739200pt;}
.ls89{letter-spacing:0.795989pt;}
.ls88{letter-spacing:0.863988pt;}
.ls55{letter-spacing:6.758316pt;}
.ls5c{letter-spacing:7.056978pt;}
.ls54{letter-spacing:7.176444pt;}
.ls1c{letter-spacing:7.214400pt;}
.ls1d{letter-spacing:8.092800pt;}
.ls27{letter-spacing:8.376000pt;}
.ls69{letter-spacing:9.936000pt;}
.ls5b{letter-spacing:10.175873pt;}
.ls83{letter-spacing:10.243863pt;}
.ls73{letter-spacing:10.512000pt;}
.ls33{letter-spacing:10.699200pt;}
.ls70{letter-spacing:10.800000pt;}
.ls6e{letter-spacing:10.848000pt;}
.ls5{letter-spacing:11.145600pt;}
.ls6d{letter-spacing:11.424000pt;}
.ls53{letter-spacing:11.448000pt;}
.ls2c{letter-spacing:11.592388pt;}
.ls5a{letter-spacing:11.822786pt;}
.ls2f{letter-spacing:11.895318pt;}
.ls3d{letter-spacing:11.908800pt;}
.ls20{letter-spacing:11.980800pt;}
.ls1{letter-spacing:11.986022pt;}
.ls37{letter-spacing:12.081600pt;}
.ls4{letter-spacing:12.211200pt;}
.ls4f{letter-spacing:12.355200pt;}
.ls68{letter-spacing:12.672000pt;}
.ls67{letter-spacing:12.816000pt;}
.ls23{letter-spacing:13.233600pt;}
.ls64{letter-spacing:13.248000pt;}
.ls50{letter-spacing:13.416000pt;}
.ls66{letter-spacing:13.488000pt;}
.ls22{letter-spacing:13.536000pt;}
.ls6b{letter-spacing:13.872000pt;}
.ls2d{letter-spacing:14.182223pt;}
.ls2e{letter-spacing:14.467143pt;}
.ls30{letter-spacing:14.467677pt;}
.ls2b{letter-spacing:14.769543pt;}
.ls58{letter-spacing:15.014212pt;}
.ls65{letter-spacing:15.072000pt;}
.ls5d{letter-spacing:15.840000pt;}
.ls21{letter-spacing:15.955733pt;}
.ls2a{letter-spacing:15.956267pt;}
.ls52{letter-spacing:16.588800pt;}
.ls8a{letter-spacing:16.679778pt;}
.ls1e{letter-spacing:16.891200pt;}
.ls3a{letter-spacing:17.040000pt;}
.ls72{letter-spacing:17.162133pt;}
.ls6{letter-spacing:17.789833pt;}
.ls5e{letter-spacing:17.875200pt;}
.ls6c{letter-spacing:18.096000pt;}
.ls2{letter-spacing:18.403200pt;}
.ls25{letter-spacing:18.561600pt;}
.ls26{letter-spacing:19.862400pt;}
.ls3{letter-spacing:21.094771pt;}
.ls85{letter-spacing:23.331689pt;}
.ls57{letter-spacing:25.064966pt;}
.ls56{letter-spacing:27.792719pt;}
.ws228{word-spacing:-23.371688pt;}
.wsff{word-spacing:-17.923200pt;}
.ws9d{word-spacing:-17.088000pt;}
.wsfd{word-spacing:-15.888000pt;}
.ws3{word-spacing:-15.093333pt;}
.ws2{word-spacing:-13.584000pt;}
.ws90{word-spacing:-12.129600pt;}
.wsb5{word-spacing:-11.956800pt;}
.ws0{word-spacing:-11.320000pt;}
.ws7b{word-spacing:-10.747200pt;}
.ws1bd{word-spacing:-0.903988pt;}
.ws227{word-spacing:-0.603992pt;}
.ws1bf{word-spacing:-0.531993pt;}
.ws12c{word-spacing:-0.518400pt;}
.ws106{word-spacing:-0.417600pt;}
.ws8{word-spacing:-0.048000pt;}
.ws24{word-spacing:-0.042666pt;}
.ws197{word-spacing:-0.039999pt;}
.ws1a{word-spacing:-0.028796pt;}
.ws4{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.511932pt;}
.ws4e{word-spacing:0.515131pt;}
.ws3b{word-spacing:0.571200pt;}
.wsf5{word-spacing:0.638400pt;}
.ws8c{word-spacing:0.643200pt;}
.wsf7{word-spacing:0.672000pt;}
.ws82{word-spacing:0.724800pt;}
.ws38{word-spacing:0.780696pt;}
.ws5e{word-spacing:0.783895pt;}
.ws3f{word-spacing:0.792000pt;}
.ws5d{word-spacing:0.830400pt;}
.ws179{word-spacing:0.873600pt;}
.ws67{word-spacing:1.791978pt;}
.ws65{word-spacing:1.796244pt;}
.ws126{word-spacing:6.800982pt;}
.ws11c{word-spacing:6.864981pt;}
.ws10b{word-spacing:7.146577pt;}
.wsd9{word-spacing:7.167910pt;}
.ws127{word-spacing:7.189243pt;}
.ws52{word-spacing:7.195200pt;}
.ws2f{word-spacing:7.766400pt;}
.ws2e{word-spacing:8.078400pt;}
.ws101{word-spacing:8.404800pt;}
.wsb2{word-spacing:8.433600pt;}
.wsb1{word-spacing:8.443200pt;}
.ws84{word-spacing:8.568000pt;}
.ws14d{word-spacing:8.640000pt;}
.ws49{word-spacing:9.254400pt;}
.ws15c{word-spacing:9.264000pt;}
.wse8{word-spacing:9.340800pt;}
.ws17e{word-spacing:9.744000pt;}
.ws79{word-spacing:9.753600pt;}
.ws181{word-spacing:9.792000pt;}
.ws204{word-spacing:9.795869pt;}
.ws1ce{word-spacing:9.803869pt;}
.ws1dc{word-spacing:9.815869pt;}
.ws1c5{word-spacing:9.823869pt;}
.ws1ba{word-spacing:9.827869pt;}
.ws215{word-spacing:9.851869pt;}
.ws1e0{word-spacing:9.871868pt;}
.ws1c2{word-spacing:9.875868pt;}
.ws1ef{word-spacing:9.879868pt;}
.ws224{word-spacing:9.883868pt;}
.ws1f6{word-spacing:9.887868pt;}
.ws1c6{word-spacing:9.899868pt;}
.ws20c{word-spacing:9.907868pt;}
.ws19d{word-spacing:9.919868pt;}
.ws11f{word-spacing:9.924143pt;}
.ws1cc{word-spacing:9.931868pt;}
.ws222{word-spacing:9.935868pt;}
.ws1a1{word-spacing:9.959867pt;}
.ws1c7{word-spacing:9.963867pt;}
.ws1f8{word-spacing:9.971867pt;}
.ws11e{word-spacing:9.979609pt;}
.ws1ee{word-spacing:9.979867pt;}
.ws177{word-spacing:9.984000pt;}
.ws1c9{word-spacing:9.987867pt;}
.ws1a2{word-spacing:9.999867pt;}
.ws220{word-spacing:10.003867pt;}
.ws20b{word-spacing:10.007867pt;}
.ws11d{word-spacing:10.030808pt;}
.ws1c8{word-spacing:10.031866pt;}
.ws23{word-spacing:10.035075pt;}
.ws206{word-spacing:10.059866pt;}
.ws209{word-spacing:10.063866pt;}
.ws8a{word-spacing:10.065600pt;}
.ws1aa{word-spacing:10.079866pt;}
.ws1b9{word-spacing:10.107865pt;}
.ws1ac{word-spacing:10.119865pt;}
.ws21d{word-spacing:10.123865pt;}
.ws1fd{word-spacing:10.127865pt;}
.ws1d{word-spacing:10.133207pt;}
.ws22{word-spacing:10.150273pt;}
.ws1ec{word-spacing:10.151865pt;}
.ws1f5{word-spacing:10.155865pt;}
.ws19c{word-spacing:10.159865pt;}
.ws1e{word-spacing:10.171606pt;}
.ws1d0{word-spacing:10.179864pt;}
.ws1dd{word-spacing:10.183864pt;}
.ws1e6{word-spacing:10.187864pt;}
.ws219{word-spacing:10.191864pt;}
.ws1a5{word-spacing:10.199864pt;}
.ws218{word-spacing:10.203864pt;}
.ws35{word-spacing:10.219200pt;}
.ws194{word-spacing:10.224000pt;}
.ws1b{word-spacing:10.231339pt;}
.ws213{word-spacing:10.243863pt;}
.ws21{word-spacing:10.248405pt;}
.ws20f{word-spacing:10.251863pt;}
.ws120{word-spacing:10.261205pt;}
.ws7f{word-spacing:10.267200pt;}
.ws20a{word-spacing:10.271863pt;}
.ws14e{word-spacing:10.272000pt;}
.ws128{word-spacing:10.278272pt;}
.ws1a0{word-spacing:10.279863pt;}
.ws1f3{word-spacing:10.295863pt;}
.ws4d{word-spacing:10.296000pt;}
.ws1da{word-spacing:10.299863pt;}
.ws19b{word-spacing:10.319862pt;}
.ws21c{word-spacing:10.327862pt;}
.ws1fe{word-spacing:10.343862pt;}
.ws1fb{word-spacing:10.351862pt;}
.ws1f{word-spacing:10.355071pt;}
.ws19a{word-spacing:10.359862pt;}
.ws5f{word-spacing:10.368000pt;}
.ws202{word-spacing:10.391861pt;}
.ws1eb{word-spacing:10.399861pt;}
.ws207{word-spacing:10.403861pt;}
.ws64{word-spacing:10.410537pt;}
.ws1b5{word-spacing:10.453203pt;}
.ws1c{word-spacing:10.457469pt;}
.ws214{word-spacing:10.459861pt;}
.ws66{word-spacing:10.461736pt;}
.wse1{word-spacing:10.495869pt;}
.ws11b{word-spacing:10.508669pt;}
.ws16a{word-spacing:10.512000pt;}
.wsd2{word-spacing:10.526400pt;}
.ws1e5{word-spacing:10.527860pt;}
.ws69{word-spacing:10.564135pt;}
.ws1b7{word-spacing:10.581201pt;}
.wsec{word-spacing:10.588800pt;}
.ws68{word-spacing:10.611067pt;}
.ws1fc{word-spacing:10.615858pt;}
.ws223{word-spacing:10.619858pt;}
.ws1b6{word-spacing:10.623867pt;}
.ws211{word-spacing:10.627858pt;}
.wsd7{word-spacing:10.628134pt;}
.ws91{word-spacing:10.632000pt;}
.ws20{word-spacing:10.675067pt;}
.wsd6{word-spacing:10.692133pt;}
.ws123{word-spacing:10.747599pt;}
.ws1b8{word-spacing:10.791856pt;}
.ws122{word-spacing:10.803065pt;}
.wsdb{word-spacing:10.807332pt;}
.ws10a{word-spacing:10.815865pt;}
.ws1ff{word-spacing:10.819856pt;}
.ws212{word-spacing:10.823856pt;}
.wsdf{word-spacing:10.845731pt;}
.ws8e{word-spacing:10.857600pt;}
.ws48{word-spacing:10.891200pt;}
.ws124{word-spacing:10.913997pt;}
.ws208{word-spacing:10.919854pt;}
.ws14f{word-spacing:10.944000pt;}
.ws1af{word-spacing:10.959854pt;}
.ws81{word-spacing:10.963200pt;}
.ws71{word-spacing:11.025600pt;}
.ws200{word-spacing:11.031853pt;}
.ws1e7{word-spacing:11.071852pt;}
.wse0{word-spacing:11.076128pt;}
.wsa3{word-spacing:11.078400pt;}
.ws110{word-spacing:11.105995pt;}
.ws1e8{word-spacing:11.127852pt;}
.ws141{word-spacing:11.136000pt;}
.ws1ae{word-spacing:11.159851pt;}
.ws1ed{word-spacing:11.171851pt;}
.ws1e9{word-spacing:11.175851pt;}
.ws61{word-spacing:11.179200pt;}
.ws76{word-spacing:11.227200pt;}
.ws10f{word-spacing:11.242526pt;}
.ws1d5{word-spacing:11.267850pt;}
.ws8f{word-spacing:11.275200pt;}
.ws150{word-spacing:11.294400pt;}
.ws4a{word-spacing:11.424000pt;}
.ws159{word-spacing:11.467200pt;}
.ws83{word-spacing:11.505600pt;}
.ws6c{word-spacing:11.568000pt;}
.ws105{word-spacing:11.592000pt;}
.ws96{word-spacing:11.606400pt;}
.ws9{word-spacing:11.683200pt;}
.wsb{word-spacing:11.707200pt;}
.ws17{word-spacing:11.716800pt;}
.ws112{word-spacing:11.724653pt;}
.wsd{word-spacing:11.745600pt;}
.ws173{word-spacing:11.755200pt;}
.ws153{word-spacing:11.760000pt;}
.wsc{word-spacing:11.764800pt;}
.ws1f2{word-spacing:11.767843pt;}
.ws121{word-spacing:11.775853pt;}
.ws7{word-spacing:11.779200pt;}
.ws16{word-spacing:11.793600pt;}
.wsd8{word-spacing:11.797186pt;}
.ws15{word-spacing:11.812800pt;}
.wse{word-spacing:11.817600pt;}
.ws14{word-spacing:11.822400pt;}
.wsbf{word-spacing:11.827200pt;}
.ws18{word-spacing:11.865600pt;}
.ws9f{word-spacing:11.880000pt;}
.ws13{word-spacing:11.899200pt;}
.ws192{word-spacing:11.904000pt;}
.ws12{word-spacing:11.923200pt;}
.ws205{word-spacing:11.923841pt;}
.ws19{word-spacing:11.947200pt;}
.wsa{word-spacing:11.952000pt;}
.ws27{word-spacing:11.961600pt;}
.ws180{word-spacing:11.995200pt;}
.ws33{word-spacing:12.000000pt;}
.ws104{word-spacing:12.004800pt;}
.ws7a{word-spacing:12.019200pt;}
.ws137{word-spacing:12.028800pt;}
.ws3a{word-spacing:12.038400pt;}
.ws1a3{word-spacing:12.039839pt;}
.ws10{word-spacing:12.048000pt;}
.ws11{word-spacing:12.067200pt;}
.ws140{word-spacing:12.072000pt;}
.ws4b{word-spacing:12.081600pt;}
.ws136{word-spacing:12.105600pt;}
.ws142{word-spacing:12.139200pt;}
.wsf{word-spacing:12.148800pt;}
.ws133{word-spacing:12.182400pt;}
.ws134{word-spacing:12.196800pt;}
.ws172{word-spacing:12.254400pt;}
.wsfa{word-spacing:12.264000pt;}
.ws164{word-spacing:12.288000pt;}
.ws158{word-spacing:12.388800pt;}
.ws170{word-spacing:12.432000pt;}
.wsf0{word-spacing:12.441600pt;}
.wsa4{word-spacing:12.456000pt;}
.ws85{word-spacing:12.475200pt;}
.ws4c{word-spacing:12.518400pt;}
.wsf8{word-spacing:12.523200pt;}
.ws17d{word-spacing:12.528000pt;}
.ws103{word-spacing:12.561600pt;}
.ws62{word-spacing:12.566400pt;}
.ws13f{word-spacing:12.624000pt;}
.ws1a8{word-spacing:12.639831pt;}
.ws15b{word-spacing:12.672000pt;}
.wsd4{word-spacing:12.684641pt;}
.ws191{word-spacing:12.705600pt;}
.ws109{word-spacing:12.705975pt;}
.ws125{word-spacing:12.710241pt;}
.wsf9{word-spacing:12.715200pt;}
.wse9{word-spacing:12.729600pt;}
.wsd3{word-spacing:12.752907pt;}
.ws50{word-spacing:12.763200pt;}
.ws87{word-spacing:12.768000pt;}
.ws34{word-spacing:12.820800pt;}
.ws171{word-spacing:12.830400pt;}
.ws63{word-spacing:12.902400pt;}
.ws9e{word-spacing:12.912000pt;}
.ws92{word-spacing:12.940800pt;}
.ws1d3{word-spacing:12.955827pt;}
.ws1a9{word-spacing:12.959827pt;}
.wsb7{word-spacing:12.960000pt;}
.ws1ad{word-spacing:12.999827pt;}
.ws166{word-spacing:13.008000pt;}
.ws1d4{word-spacing:13.011827pt;}
.wsed{word-spacing:13.022400pt;}
.ws1e4{word-spacing:13.035826pt;}
.ws1ab{word-spacing:13.039826pt;}
.ws1d2{word-spacing:13.043826pt;}
.ws95{word-spacing:13.104000pt;}
.ws163{word-spacing:13.152000pt;}
.wsd0{word-spacing:13.243200pt;}
.ws1f4{word-spacing:13.243823pt;}
.ws154{word-spacing:13.248000pt;}
.ws29{word-spacing:13.267200pt;}
.ws2a{word-spacing:13.281600pt;}
.wsbe{word-spacing:13.310400pt;}
.ws10c{word-spacing:13.333167pt;}
.ws1cd{word-spacing:13.347822pt;}
.wsbd{word-spacing:13.353600pt;}
.ws188{word-spacing:13.392000pt;}
.wse4{word-spacing:13.416000pt;}
.wsba{word-spacing:13.435200pt;}
.ws221{word-spacing:13.507820pt;}
.ws43{word-spacing:13.545600pt;}
.ws13d{word-spacing:13.579200pt;}
.wsb9{word-spacing:13.641600pt;}
.wse6{word-spacing:13.646400pt;}
.wsc7{word-spacing:13.656000pt;}
.wsab{word-spacing:13.660800pt;}
.ws13e{word-spacing:13.680000pt;}
.wsb4{word-spacing:13.708800pt;}
.wsa6{word-spacing:13.747200pt;}
.ws16b{word-spacing:13.771200pt;}
.ws135{word-spacing:13.795200pt;}
.ws6d{word-spacing:13.809600pt;}
.ws46{word-spacing:13.824000pt;}
.wsad{word-spacing:13.848000pt;}
.ws111{word-spacing:13.901999pt;}
.wsda{word-spacing:13.913426pt;}
.ws1f7{word-spacing:13.915814pt;}
.ws161{word-spacing:13.920000pt;}
.ws74{word-spacing:13.924800pt;}
.wse5{word-spacing:13.929600pt;}
.ws1ca{word-spacing:13.979814pt;}
.ws88{word-spacing:14.001600pt;}
.ws151{word-spacing:14.020800pt;}
.ws45{word-spacing:14.025600pt;}
.ws21e{word-spacing:14.051813pt;}
.ws86{word-spacing:14.054400pt;}
.ws5c{word-spacing:14.059200pt;}
.ws21f{word-spacing:14.087812pt;}
.ws1e2{word-spacing:14.115812pt;}
.ws40{word-spacing:14.126400pt;}
.wsdc{word-spacing:14.143823pt;}
.ws60{word-spacing:14.150400pt;}
.ws152{word-spacing:14.160000pt;}
.ws56{word-spacing:14.208000pt;}
.ws1e3{word-spacing:14.219810pt;}
.wsea{word-spacing:14.246400pt;}
.ws1e1{word-spacing:14.247810pt;}
.ws44{word-spacing:14.265600pt;}
.ws165{word-spacing:14.294400pt;}
.ws17c{word-spacing:14.304000pt;}
.ws17b{word-spacing:14.347200pt;}
.ws1cb{word-spacing:14.359809pt;}
.ws7e{word-spacing:14.376000pt;}
.ws17a{word-spacing:14.395200pt;}
.ws138{word-spacing:14.400000pt;}
.ws13a{word-spacing:14.448000pt;}
.ws1df{word-spacing:14.499807pt;}
.ws32{word-spacing:14.524800pt;}
.ws139{word-spacing:14.544000pt;}
.wsc3{word-spacing:14.558400pt;}
.wse7{word-spacing:14.582400pt;}
.ws201{word-spacing:14.715804pt;}
.ws1cf{word-spacing:14.723804pt;}
.ws1c1{word-spacing:14.771803pt;}
.wsb3{word-spacing:14.784000pt;}
.wsd5{word-spacing:14.800882pt;}
.ws1a7{word-spacing:14.839802pt;}
.ws1c0{word-spacing:14.859802pt;}
.ws131{word-spacing:14.932800pt;}
.wscf{word-spacing:14.985600pt;}
.ws58{word-spacing:15.057600pt;}
.ws72{word-spacing:15.062400pt;}
.ws16c{word-spacing:15.067200pt;}
.ws1a6{word-spacing:15.079799pt;}
.wsc6{word-spacing:15.081600pt;}
.ws113{word-spacing:15.120878pt;}
.ws130{word-spacing:15.177600pt;}
.wsa5{word-spacing:15.264000pt;}
.wscd{word-spacing:15.302400pt;}
.wsa0{word-spacing:15.355200pt;}
.ws8b{word-spacing:15.364800pt;}
.ws117{word-spacing:15.368341pt;}
.ws118{word-spacing:15.393941pt;}
.ws1f0{word-spacing:15.395795pt;}
.ws12f{word-spacing:15.398400pt;}
.ws14b{word-spacing:15.408000pt;}
.ws21a{word-spacing:15.427794pt;}
.wsf3{word-spacing:15.436800pt;}
.ws162{word-spacing:15.456000pt;}
.ws7d{word-spacing:15.475200pt;}
.ws20d{word-spacing:15.499793pt;}
.ws21b{word-spacing:15.531793pt;}
.ws1f1{word-spacing:15.551793pt;}
.ws119{word-spacing:15.568872pt;}
.ws143{word-spacing:15.595200pt;}
.ws216{word-spacing:15.599792pt;}
.ws11a{word-spacing:15.611538pt;}
.wsc1{word-spacing:15.691200pt;}
.ws217{word-spacing:15.759790pt;}
.wsc4{word-spacing:15.820800pt;}
.ws146{word-spacing:15.868800pt;}
.ws1db{word-spacing:15.927788pt;}
.wsa1{word-spacing:15.964800pt;}
.wsc0{word-spacing:15.998400pt;}
.ws75{word-spacing:16.032000pt;}
.wsde{word-spacing:16.055266pt;}
.ws28{word-spacing:16.123200pt;}
.wsa2{word-spacing:16.132800pt;}
.ws17f{word-spacing:16.152000pt;}
.ws1b2{word-spacing:16.159785pt;}
.ws8d{word-spacing:16.195200pt;}
.wsdd{word-spacing:16.217397pt;}
.ws1b1{word-spacing:16.239783pt;}
.ws70{word-spacing:16.267200pt;}
.ws210{word-spacing:16.267783pt;}
.ws1d1{word-spacing:16.271783pt;}
.ws13c{word-spacing:16.272000pt;}
.ws1b0{word-spacing:16.279783pt;}
.ws9b{word-spacing:16.363200pt;}
.ws176{word-spacing:16.368000pt;}
.ws1c3{word-spacing:16.371782pt;}
.ws1c4{word-spacing:16.459781pt;}
.ws149{word-spacing:16.488000pt;}
.ws78{word-spacing:16.512000pt;}
.ws157{word-spacing:16.560000pt;}
.ws132{word-spacing:16.564800pt;}
.wseb{word-spacing:16.569600pt;}
.wsf4{word-spacing:16.603200pt;}
.ws31{word-spacing:16.608000pt;}
.ws198{word-spacing:16.639778pt;}
.ws30{word-spacing:16.651200pt;}
.ws148{word-spacing:16.656000pt;}
.ws1f9{word-spacing:16.699777pt;}
.ws147{word-spacing:16.752000pt;}
.ws196{word-spacing:16.759777pt;}
.wsca{word-spacing:16.800000pt;}
.wsc5{word-spacing:16.872000pt;}
.wsc9{word-spacing:16.876800pt;}
.ws195{word-spacing:16.879775pt;}
.wsfe{word-spacing:16.900800pt;}
.ws51{word-spacing:16.948800pt;}
.ws1d7{word-spacing:17.043773pt;}
.ws12e{word-spacing:17.078400pt;}
.ws1fa{word-spacing:17.095772pt;}
.ws14a{word-spacing:17.112000pt;}
.wscb{word-spacing:17.140800pt;}
.ws1d8{word-spacing:17.187771pt;}
.ws100{word-spacing:17.203200pt;}
.wsfb{word-spacing:17.208000pt;}
.ws1d6{word-spacing:17.279770pt;}
.wsfc{word-spacing:17.337600pt;}
.ws97{word-spacing:17.376000pt;}
.ws55{word-spacing:17.476800pt;}
.ws1a4{word-spacing:17.479767pt;}
.ws9a{word-spacing:17.577600pt;}
.ws13b{word-spacing:17.620800pt;}
.wsee{word-spacing:17.707200pt;}
.ws190{word-spacing:17.755200pt;}
.ws15a{word-spacing:17.760000pt;}
.ws73{word-spacing:17.784000pt;}
.ws2c{word-spacing:17.923200pt;}
.wsbb{word-spacing:17.947200pt;}
.ws9c{word-spacing:18.033600pt;}
.ws2d{word-spacing:18.100800pt;}
.ws5b{word-spacing:18.105600pt;}
.ws2b{word-spacing:18.120000pt;}
.ws16e{word-spacing:18.144000pt;}
.wse3{word-spacing:18.187200pt;}
.ws77{word-spacing:18.412800pt;}
.ws1ea{word-spacing:18.479754pt;}
.ws167{word-spacing:18.480000pt;}
.ws6f{word-spacing:18.638400pt;}
.wsac{word-spacing:18.686400pt;}
.ws7c{word-spacing:18.691200pt;}
.ws1de{word-spacing:18.691751pt;}
.ws155{word-spacing:18.720000pt;}
.ws203{word-spacing:18.755750pt;}
.ws98{word-spacing:18.801600pt;}
.ws42{word-spacing:18.835200pt;}
.wsce{word-spacing:18.916800pt;}
.ws59{word-spacing:18.931200pt;}
.ws16f{word-spacing:18.998400pt;}
.ws80{word-spacing:19.012800pt;}
.wsa7{word-spacing:19.108800pt;}
.ws89{word-spacing:19.190400pt;}
.wsbc{word-spacing:19.209600pt;}
.wsb8{word-spacing:19.219200pt;}
.wsae{word-spacing:19.291200pt;}
.ws199{word-spacing:19.319742pt;}
.wsa9{word-spacing:19.368000pt;}
.ws99{word-spacing:19.382400pt;}
.wse2{word-spacing:19.627200pt;}
.ws14c{word-spacing:19.728000pt;}
.ws5a{word-spacing:19.742400pt;}
.ws15f{word-spacing:19.862400pt;}
.wsb0{word-spacing:19.896000pt;}
.wsc2{word-spacing:19.972800pt;}
.ws18e{word-spacing:20.016000pt;}
.wsaa{word-spacing:20.059200pt;}
.wsa8{word-spacing:20.078400pt;}
.ws41{word-spacing:20.203200pt;}
.ws156{word-spacing:20.222400pt;}
.ws1b3{word-spacing:20.239824pt;}
.ws6a{word-spacing:20.264357pt;}
.ws18c{word-spacing:20.304000pt;}
.ws169{word-spacing:20.592000pt;}
.ws19f{word-spacing:20.919721pt;}
.ws37{word-spacing:20.937600pt;}
.wsd1{word-spacing:21.033600pt;}
.ws182{word-spacing:21.072000pt;}
.ws20e{word-spacing:21.103719pt;}
.ws19e{word-spacing:21.119718pt;}
.ws57{word-spacing:21.235200pt;}
.ws15e{word-spacing:21.312000pt;}
.ws6e{word-spacing:21.345600pt;}
.wscc{word-spacing:21.436800pt;}
.wsaf{word-spacing:21.571200pt;}
.ws102{word-spacing:21.715200pt;}
.ws12d{word-spacing:21.921600pt;}
.ws114{word-spacing:21.981592pt;}
.ws193{word-spacing:21.984000pt;}
.ws115{word-spacing:22.083991pt;}
.ws226{word-spacing:22.111705pt;}
.ws187{word-spacing:22.128000pt;}
.ws225{word-spacing:22.163704pt;}
.ws94{word-spacing:22.243200pt;}
.ws116{word-spacing:22.263188pt;}
.ws93{word-spacing:22.478400pt;}
.ws16d{word-spacing:22.699200pt;}
.ws183{word-spacing:23.040000pt;}
.ws174{word-spacing:23.246400pt;}
.ws15d{word-spacing:23.280000pt;}
.ws4f{word-spacing:23.299200pt;}
.wsf6{word-spacing:23.433600pt;}
.ws129{word-spacing:23.553600pt;}
.ws12a{word-spacing:23.716800pt;}
.ws39{word-spacing:23.793600pt;}
.ws53{word-spacing:23.961600pt;}
.ws47{word-spacing:24.096000pt;}
.ws1be{word-spacing:24.115678pt;}
.ws1bb{word-spacing:24.523673pt;}
.ws12b{word-spacing:24.528000pt;}
.wsb6{word-spacing:24.542400pt;}
.wsef{word-spacing:24.686400pt;}
.ws1bc{word-spacing:24.771670pt;}
.ws54{word-spacing:24.782400pt;}
.wsc8{word-spacing:25.065600pt;}
.ws175{word-spacing:25.632000pt;}
.ws18d{word-spacing:25.675200pt;}
.ws185{word-spacing:25.776000pt;}
.ws25{word-spacing:26.016000pt;}
.ws5{word-spacing:26.442799pt;}
.ws160{word-spacing:26.544000pt;}
.ws6{word-spacing:26.602800pt;}
.ws26{word-spacing:26.870400pt;}
.wsf2{word-spacing:27.201600pt;}
.ws10e{word-spacing:27.391658pt;}
.ws10d{word-spacing:27.489790pt;}
.ws1d9{word-spacing:27.507633pt;}
.ws108{word-spacing:27.988800pt;}
.ws107{word-spacing:28.291200pt;}
.wsf1{word-spacing:28.598400pt;}
.ws178{word-spacing:30.480000pt;}
.ws18b{word-spacing:30.624000pt;}
.ws189{word-spacing:30.768000pt;}
.ws18a{word-spacing:30.820800pt;}
.ws3e{word-spacing:31.267200pt;}
.ws3d{word-spacing:31.334400pt;}
.ws168{word-spacing:31.968000pt;}
.ws36{word-spacing:35.217600pt;}
.ws145{word-spacing:36.336000pt;}
.ws144{word-spacing:36.763200pt;}
.ws18f{word-spacing:40.368000pt;}
.ws184{word-spacing:45.936000pt;}
.ws186{word-spacing:62.832000pt;}
.ws6b{word-spacing:164.769600pt;}
.ws1b4{word-spacing:164.784000pt;}
.ws1{word-spacing:852.911973pt;}
._21{margin-left:-22.311750pt;}
._1a{margin-left:-19.411595pt;}
._17{margin-left:-17.778805pt;}
._19{margin-left:-16.311408pt;}
._16{margin-left:-12.748251pt;}
._15{margin-left:-11.448000pt;}
._3{margin-left:-5.294867pt;}
._e{margin-left:-2.137140pt;}
._5{margin-left:-1.169052pt;}
._0{width:1.776000pt;}
._1c{width:6.206148pt;}
._14{width:7.185391pt;}
._1b{width:8.227200pt;}
._6{width:9.587080pt;}
._4{width:11.169994pt;}
._2{width:12.768000pt;}
._b{width:13.953600pt;}
._13{width:15.056088pt;}
._a{width:16.228800pt;}
._8{width:17.265600pt;}
._9{width:19.017600pt;}
._10{width:20.426279pt;}
._f{width:22.230575pt;}
._18{width:23.584943pt;}
._1d{width:24.864000pt;}
._1e{width:26.880000pt;}
._7{width:28.036800pt;}
._1f{width:29.712000pt;}
._d{width:32.355660pt;}
._c{width:35.541852pt;}
._20{width:42.029699pt;}
._1{width:53.333352pt;}
._12{width:1061.707643pt;}
._11{width:1638.624806pt;}
.fsc{font-size:25.497600pt;}
.fs10{font-size:26.662400pt;}
.fs7{font-size:28.440000pt;}
.fsa{font-size:28.684800pt;}
.fsf{font-size:29.865600pt;}
.fs6{font-size:31.995733pt;}
.fse{font-size:33.600000pt;}
.fsb{font-size:37.183467pt;}
.fs11{font-size:39.999467pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:41.832000pt;}
.fs8{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.667200pt;}
.fsd{font-size:61.332800pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:55.483968pt;}
.y71{bottom:64.478667pt;}
.y72{bottom:65.385733pt;}
.y1{bottom:78.150635pt;}
.y70{bottom:81.259733pt;}
.y6e{bottom:142.639333pt;}
.y56{bottom:144.601200pt;}
.yd9{bottom:144.601733pt;}
.yc0{bottom:144.602400pt;}
.y6d{bottom:144.604133pt;}
.y126{bottom:144.604184pt;}
.y6f{bottom:144.604667pt;}
.y185{bottom:144.607733pt;}
.y1c9{bottom:144.614218pt;}
.y57{bottom:149.971600pt;}
.y125{bottom:156.623234pt;}
.y184{bottom:156.774800pt;}
.y1c8{bottom:156.784056pt;}
.y55{bottom:158.812800pt;}
.ybf{bottom:158.814000pt;}
.y183{bottom:158.815067pt;}
.y6c{bottom:158.815733pt;}
.y110{bottom:158.887200pt;}
.yd8{bottom:158.888933pt;}
.y124{bottom:168.642284pt;}
.y1c7{bottom:168.873895pt;}
.y69{bottom:172.799467pt;}
.y6b{bottom:172.799867pt;}
.y54{bottom:172.948800pt;}
.y182{bottom:172.951067pt;}
.y180{bottom:172.954133pt;}
.ybe{bottom:173.025600pt;}
.y10f{bottom:173.098800pt;}
.yd7{bottom:173.176133pt;}
.y6a{bottom:178.091333pt;}
.y181{bottom:178.318133pt;}
.y122{bottom:178.847200pt;}
.y121{bottom:180.661233pt;}
.y123{bottom:180.661333pt;}
.y1c6{bottom:180.963733pt;}
.y17d{bottom:185.121200pt;}
.y1c5{bottom:185.423600pt;}
.y68{bottom:186.935467pt;}
.y66{bottom:186.936667pt;}
.y53{bottom:187.084800pt;}
.ybd{bottom:187.161600pt;}
.y17e{bottom:187.162133pt;}
.y17c{bottom:187.164000pt;}
.y10e{bottom:187.310400pt;}
.yd6{bottom:187.463333pt;}
.y67{bottom:192.302267pt;}
.y17f{bottom:192.453467pt;}
.y120{bottom:192.604550pt;}
.y1c4{bottom:192.987228pt;}
.y65{bottom:201.147067pt;}
.y52{bottom:201.220800pt;}
.y17b{bottom:201.300000pt;}
.ybc{bottom:201.372000pt;}
.y10d{bottom:201.522000pt;}
.yd5{bottom:201.750533pt;}
.y11f{bottom:202.885067pt;}
.y11e{bottom:204.623600pt;}
.y1c3{bottom:205.077067pt;}
.y1c2{bottom:209.461333pt;}
.y62{bottom:215.278933pt;}
.y64{bottom:215.281867pt;}
.y51{bottom:215.356800pt;}
.y17a{bottom:215.508000pt;}
.y10c{bottom:215.733600pt;}
.yd4{bottom:216.038267pt;}
.y1c1{bottom:217.020696pt;}
.y63{bottom:220.573200pt;}
.y178{bottom:227.678667pt;}
.y1c0{bottom:229.190533pt;}
.y61{bottom:229.414933pt;}
.ybb{bottom:229.490533pt;}
.y4e{bottom:229.492267pt;}
.y50{bottom:229.492800pt;}
.y179{bottom:229.644000pt;}
.y177{bottom:229.647067pt;}
.y10b{bottom:230.019600pt;}
.yd3{bottom:230.323200pt;}
.y1bf{bottom:233.574667pt;}
.y4f{bottom:234.859733pt;}
.y1be{bottom:241.138428pt;}
.y175{bottom:241.889733pt;}
.y60{bottom:243.626533pt;}
.yba{bottom:243.702133pt;}
.y4b{bottom:243.703333pt;}
.y4d{bottom:243.703867pt;}
.y174{bottom:243.854533pt;}
.y176{bottom:243.855067pt;}
.y10a{bottom:244.231200pt;}
.yd2{bottom:244.610400pt;}
.y4c{bottom:248.995200pt;}
.y1bd{bottom:253.228267pt;}
.y172{bottom:256.025067pt;}
.y1bc{bottom:257.688133pt;}
.y5f{bottom:257.762533pt;}
.yb9{bottom:257.838133pt;}
.y48{bottom:257.838667pt;}
.y4a{bottom:257.839333pt;}
.y173{bottom:257.990533pt;}
.y171{bottom:258.008133pt;}
.y109{bottom:258.442800pt;}
.yd1{bottom:258.897600pt;}
.ycf{bottom:258.897733pt;}
.y49{bottom:263.130667pt;}
.yd0{bottom:264.188933pt;}
.y1bb{bottom:265.256456pt;}
.y5e{bottom:271.898533pt;}
.y47{bottom:271.974667pt;}
.y45{bottom:271.976000pt;}
.yb8{bottom:272.049733pt;}
.y170{bottom:272.216133pt;}
.y108{bottom:272.654400pt;}
.yce{bottom:273.109333pt;}
.y46{bottom:277.266000pt;}
.y1ba{bottom:277.346295pt;}
.y106{bottom:284.900800pt;}
.y5d{bottom:286.110133pt;}
.y44{bottom:286.110800pt;}
.yb7{bottom:286.261333pt;}
.y16f{bottom:286.352133pt;}
.y105{bottom:286.865467pt;}
.y107{bottom:286.866000pt;}
.ycd{bottom:287.396533pt;}
.y1b9{bottom:289.436133pt;}
.y5c{bottom:291.401467pt;}
.y1b8{bottom:293.896000pt;}
.y41{bottom:300.243733pt;}
.y5a{bottom:300.244400pt;}
.y43{bottom:300.245600pt;}
.yb6{bottom:300.396133pt;}
.y16e{bottom:300.560133pt;}
.y104{bottom:300.850267pt;}
.y1b7{bottom:301.459761pt;}
.ycc{bottom:301.683733pt;}
.y5b{bottom:305.536933pt;}
.y42{bottom:305.612533pt;}
.yb3{bottom:312.566800pt;}
.y1b6{bottom:313.549600pt;}
.y40{bottom:314.379733pt;}
.y59{bottom:314.380400pt;}
.yb2{bottom:314.607200pt;}
.yb4{bottom:314.607733pt;}
.y16d{bottom:314.768133pt;}
.y103{bottom:315.136267pt;}
.ycb{bottom:315.969733pt;}
.y1b5{bottom:318.009333pt;}
.yb5{bottom:319.899067pt;}
.y1b4{bottom:325.573095pt;}
.y101{bottom:327.306933pt;}
.y3f{bottom:328.591333pt;}
.y58{bottom:328.592000pt;}
.yb1{bottom:328.741600pt;}
.y16c{bottom:328.904133pt;}
.y100{bottom:329.346267pt;}
.y102{bottom:329.347867pt;}
.yca{bottom:330.255733pt;}
.y1b3{bottom:337.662933pt;}
.y1b2{bottom:342.122800pt;}
.y16b{bottom:342.884133pt;}
.yb0{bottom:342.953200pt;}
.yff{bottom:343.557867pt;}
.yc9{bottom:344.541733pt;}
.y1b1{bottom:349.686428pt;}
.yaf{bottom:356.936800pt;}
.y16a{bottom:357.092133pt;}
.yfe{bottom:357.769467pt;}
.yc8{bottom:358.827733pt;}
.y1b0{bottom:361.776267pt;}
.y1af{bottom:366.236133pt;}
.yae{bottom:371.148400pt;}
.y169{bottom:371.228133pt;}
.yfd{bottom:371.981067pt;}
.yc7{bottom:373.114933pt;}
.y1ae{bottom:373.799761pt;}
.y3e{bottom:377.422933pt;}
.yad{bottom:385.284400pt;}
.y168{bottom:385.436133pt;}
.y166{bottom:385.438533pt;}
.y1ad{bottom:385.889600pt;}
.yfc{bottom:386.268267pt;}
.yc6{bottom:387.098533pt;}
.y20f{bottom:387.174760pt;}
.y1ac{bottom:390.349467pt;}
.y167{bottom:390.727467pt;}
.y3c{bottom:392.012533pt;}
.y3d{bottom:393.070667pt;}
.yab{bottom:397.455067pt;}
.yfa{bottom:398.437600pt;}
.y20e{bottom:399.193600pt;}
.yc5{bottom:399.344800pt;}
.yac{bottom:399.496000pt;}
.yaa{bottom:399.496533pt;}
.y165{bottom:399.574533pt;}
.yf9{bottom:400.477467pt;}
.yfb{bottom:400.478667pt;}
.yc2{bottom:401.384400pt;}
.yc4{bottom:401.385733pt;}
.y1ab{bottom:402.473467pt;}
.y20d{bottom:403.577867pt;}
.yc3{bottom:406.677067pt;}
.y22d{bottom:411.136933pt;}
.y20c{bottom:411.137027pt;}
.ya8{bottom:411.666000pt;}
.y3b{bottom:413.404667pt;}
.ya7{bottom:413.629733pt;}
.ya9{bottom:413.631333pt;}
.y164{bottom:413.782533pt;}
.y162{bottom:413.785067pt;}
.yf8{bottom:414.689067pt;}
.y22c{bottom:415.596800pt;}
.yc1{bottom:415.670400pt;}
.y163{bottom:419.074000pt;}
.y22b{bottom:423.155827pt;}
.y20b{bottom:423.155867pt;}
.y3a{bottom:427.463867pt;}
.y20a{bottom:427.615600pt;}
.ya6{bottom:427.841333pt;}
.y161{bottom:427.921067pt;}
.yf7{bottom:428.900667pt;}
.y1aa{bottom:433.013467pt;}
.y209{bottom:435.174667pt;}
.y39{bottom:439.407733pt;}
.y208{bottom:439.634533pt;}
.y15f{bottom:440.088133pt;}
.y36{bottom:441.448133pt;}
.y38{bottom:441.448667pt;}
.ya5{bottom:441.977333pt;}
.y160{bottom:442.129067pt;}
.y15e{bottom:442.146133pt;}
.yf6{bottom:443.112267pt;}
.y37{bottom:446.740000pt;}
.y1a9{bottom:447.077467pt;}
.y207{bottom:447.194093pt;}
.y34{bottom:453.467600pt;}
.yf4{bottom:455.357333pt;}
.y33{bottom:455.432400pt;}
.y35{bottom:455.432933pt;}
.ye7{bottom:455.584017pt;}
.ye9{bottom:455.584133pt;}
.y15d{bottom:456.126133pt;}
.ya4{bottom:456.188933pt;}
.yf5{bottom:457.398267pt;}
.yf3{bottom:457.399600pt;}
.y206{bottom:459.136933pt;}
.ye8{bottom:460.346267pt;}
.y205{bottom:463.596667pt;}
.y1a8{bottom:465.293467pt;}
.y31{bottom:467.451867pt;}
.ye6{bottom:467.602467pt;}
.y30{bottom:469.416133pt;}
.y32{bottom:469.417200pt;}
.ya3{bottom:470.324933pt;}
.y15c{bottom:470.334133pt;}
.y22a{bottom:471.155827pt;}
.y204{bottom:471.155921pt;}
.yf2{bottom:471.610000pt;}
.ye5{bottom:479.545784pt;}
.y229{bottom:483.174667pt;}
.y203{bottom:483.174760pt;}
.y2f{bottom:483.399733pt;}
.ya2{bottom:484.384133pt;}
.y15b{bottom:484.470133pt;}
.yef{bottom:485.819733pt;}
.yf1{bottom:485.820400pt;}
.y228{bottom:487.634533pt;}
.yf0{bottom:491.111600pt;}
.ye4{bottom:491.564834pt;}
.y202{bottom:495.193600pt;}
.y227{bottom:495.194093pt;}
.ya1{bottom:496.554133pt;}
.y1a7{bottom:497.417467pt;}
.y2e{bottom:497.460133pt;}
.yed{bottom:498.066000pt;}
.ya0{bottom:498.519067pt;}
.y15a{bottom:498.678133pt;}
.y201{bottom:499.577733pt;}
.yee{bottom:500.031333pt;}
.yec{bottom:500.032000pt;}
.ye3{bottom:503.583884pt;}
.y200{bottom:507.136894pt;}
.y226{bottom:507.136933pt;}
.y2d{bottom:511.444933pt;}
.y1a6{bottom:511.553467pt;}
.y225{bottom:511.596667pt;}
.y9f{bottom:512.730667pt;}
.y159{bottom:512.814133pt;}
.ye1{bottom:513.788800pt;}
.yea{bottom:514.242400pt;}
.ye0{bottom:515.602833pt;}
.ye2{bottom:515.602933pt;}
.y1ff{bottom:519.155733pt;}
.y224{bottom:519.155921pt;}
.yeb{bottom:519.609333pt;}
.y1fe{bottom:523.615600pt;}
.y2c{bottom:525.429733pt;}
.y1a5{bottom:525.617467pt;}
.y9e{bottom:526.866667pt;}
.y158{bottom:527.022133pt;}
.ydf{bottom:527.546150pt;}
.y223{bottom:531.174760pt;}
.y1fd{bottom:531.175253pt;}
.y10{bottom:535.389351pt;}
.ydd{bottom:537.826667pt;}
.ydc{bottom:539.564967pt;}
.yde{bottom:539.565200pt;}
.y1a4{bottom:539.753467pt;}
.y9d{bottom:541.075867pt;}
.y157{bottom:541.158133pt;}
.y222{bottom:543.193600pt;}
.y1fc{bottom:543.194093pt;}
.y2b{bottom:545.234533pt;}
.y115{bottom:546.519000pt;}
.y221{bottom:547.577733pt;}
.ydb{bottom:551.584017pt;}
.y1a3{bottom:553.889467pt;}
.yf{bottom:554.722685pt;}
.y220{bottom:555.136894pt;}
.y1fb{bottom:555.136933pt;}
.y9c{bottom:555.211867pt;}
.y156{bottom:555.366133pt;}
.y114{bottom:558.538050pt;}
.y1fa{bottom:559.596667pt;}
.yda{bottom:563.603067pt;}
.y21f{bottom:567.155733pt;}
.y1f9{bottom:567.155827pt;}
.y9a{bottom:567.458133pt;}
.y1a2{bottom:567.953467pt;}
.y99{bottom:569.423067pt;}
.y9b{bottom:569.423467pt;}
.y155{bottom:569.502133pt;}
.y113{bottom:570.557100pt;}
.y21e{bottom:571.615600pt;}
.ye{bottom:572.056018pt;}
.y11d{bottom:572.295766pt;}
.y1f8{bottom:579.174667pt;}
.y21d{bottom:579.174760pt;}
.y152{bottom:581.669200pt;}
.y1a1{bottom:582.089467pt;}
.y112{bottom:582.576149pt;}
.y98{bottom:583.633467pt;}
.y1f7{bottom:583.634533pt;}
.y153{bottom:583.710133pt;}
.y151{bottom:583.712533pt;}
.y2a{bottom:584.163600pt;}
.y11c{bottom:584.239084pt;}
.y29{bottom:588.850267pt;}
.y154{bottom:589.001467pt;}
.y21c{bottom:591.193600pt;}
.y1f6{bottom:591.194053pt;}
.y111{bottom:594.519467pt;}
.y21b{bottom:595.577733pt;}
.y1a0{bottom:596.153467pt;}
.y119{bottom:596.257783pt;}
.y11b{bottom:596.258133pt;}
.y97{bottom:597.618267pt;}
.y150{bottom:597.848533pt;}
.y11a{bottom:601.020267pt;}
.y1f5{bottom:603.136894pt;}
.yd{bottom:605.389351pt;}
.y118{bottom:608.276833pt;}
.y14e{bottom:610.015600pt;}
.y19f{bottom:610.289467pt;}
.y28{bottom:610.771467pt;}
.y96{bottom:611.754267pt;}
.y14d{bottom:612.056000pt;}
.y14f{bottom:612.056533pt;}
.y1f4{bottom:615.155733pt;}
.y27{bottom:615.458133pt;}
.y1f3{bottom:619.615600pt;}
.y117{bottom:620.295883pt;}
.y19e{bottom:624.425467pt;}
.yc{bottom:624.722685pt;}
.y95{bottom:625.964667pt;}
.y14c{bottom:626.192000pt;}
.y14a{bottom:626.197467pt;}
.y26{bottom:626.721634pt;}
.y1f2{bottom:627.174667pt;}
.y21a{bottom:627.174760pt;}
.y14b{bottom:631.558933pt;}
.y1f1{bottom:631.634533pt;}
.y116{bottom:632.239200pt;}
.y19d{bottom:638.489467pt;}
.y219{bottom:639.193600pt;}
.y1f0{bottom:639.193959pt;}
.y25{bottom:640.100667pt;}
.y149{bottom:640.405467pt;}
.y218{bottom:643.577733pt;}
.y24{bottom:644.862800pt;}
.y1ef{bottom:651.136800pt;}
.y217{bottom:651.136987pt;}
.y19c{bottom:652.625467pt;}
.y94{bottom:654.312267pt;}
.y148{bottom:654.541467pt;}
.y1ee{bottom:655.596667pt;}
.y23{bottom:656.050267pt;}
.yb{bottom:658.056018pt;}
.y22{bottom:660.812400pt;}
.y1ed{bottom:663.155827pt;}
.y91{bottom:666.481733pt;}
.y19b{bottom:666.689467pt;}
.y147{bottom:666.708533pt;}
.y90{bottom:668.519200pt;}
.y92{bottom:668.522667pt;}
.y146{bottom:668.749467pt;}
.y21{bottom:672.075467pt;}
.y93{bottom:673.814000pt;}
.y1ec{bottom:675.174667pt;}
.y20{bottom:676.837600pt;}
.ya{bottom:677.389331pt;}
.y1eb{bottom:679.634400pt;}
.y19a{bottom:680.825467pt;}
.y8f{bottom:682.655200pt;}
.y144{bottom:682.738533pt;}
.y1ea{bottom:687.193053pt;}
.y216{bottom:687.193093pt;}
.y145{bottom:688.024933pt;}
.y1f{bottom:688.100533pt;}
.y1e{bottom:692.862800pt;}
.y199{bottom:694.889467pt;}
.y8e{bottom:696.866800pt;}
.y143{bottom:696.874533pt;}
.y1e9{bottom:699.136894pt;}
.y215{bottom:699.136933pt;}
.y214{bottom:703.596667pt;}
.y1d{bottom:704.126433pt;}
.y198{bottom:709.025467pt;}
.y8d{bottom:710.851600pt;}
.y142{bottom:711.082533pt;}
.y1e8{bottom:711.155733pt;}
.y213{bottom:711.155827pt;}
.y9{bottom:712.055998pt;}
.y1e7{bottom:715.615600pt;}
.y1c{bottom:717.429733pt;}
.y1b{bottom:722.192000pt;}
.y197{bottom:723.161467pt;}
.y212{bottom:723.174667pt;}
.y1e6{bottom:723.175119pt;}
.y8c{bottom:724.987600pt;}
.y141{bottom:725.218533pt;}
.y211{bottom:727.634400pt;}
.y1e5{bottom:735.193959pt;}
.y196{bottom:737.225467pt;}
.y1a{bottom:737.763600pt;}
.y8b{bottom:739.199200pt;}
.y13e{bottom:739.426000pt;}
.y140{bottom:739.426533pt;}
.y13f{bottom:744.718000pt;}
.y1e4{bottom:747.136800pt;}
.y195{bottom:751.361467pt;}
.y89{bottom:751.369867pt;}
.y1e3{bottom:751.596667pt;}
.y88{bottom:753.410267pt;}
.y8a{bottom:753.410800pt;}
.y13d{bottom:753.562000pt;}
.y13b{bottom:753.564400pt;}
.y13c{bottom:758.928933pt;}
.y1e2{bottom:759.155827pt;}
.y194{bottom:765.425467pt;}
.y85{bottom:765.580933pt;}
.y18{bottom:766.790400pt;}
.y84{bottom:767.545733pt;}
.y86{bottom:767.546267pt;}
.y13a{bottom:767.772400pt;}
.y1e1{bottom:771.174667pt;}
.y19{bottom:772.081733pt;}
.y87{bottom:772.913200pt;}
.y1e0{bottom:775.634400pt;}
.y138{bottom:779.943067pt;}
.y16{bottom:781.454933pt;}
.y83{bottom:781.757333pt;}
.y81{bottom:781.758533pt;}
.y139{bottom:781.908400pt;}
.y137{bottom:781.911467pt;}
.y1df{bottom:783.193959pt;}
.y17{bottom:786.746267pt;}
.y82{bottom:787.048667pt;}
.y135{bottom:794.154133pt;}
.y193{bottom:794.909467pt;}
.y1de{bottom:795.136800pt;}
.y80{bottom:795.893333pt;}
.y136{bottom:796.119467pt;}
.y134{bottom:796.126133pt;}
.y1dd{bottom:799.596667pt;}
.y191{bottom:807.004533pt;}
.y1dc{bottom:807.155827pt;}
.y190{bottom:809.029867pt;}
.y192{bottom:809.045467pt;}
.y7f{bottom:810.103733pt;}
.y133{bottom:810.262133pt;}
.y15{bottom:815.319467pt;}
.y1db{bottom:819.174667pt;}
.y7e{bottom:822.273867pt;}
.y18f{bottom:823.093867pt;}
.y1da{bottom:823.634400pt;}
.y7d{bottom:824.240533pt;}
.y132{bottom:824.470133pt;}
.y1d9{bottom:831.193467pt;}
.y210{bottom:831.193959pt;}
.y14{bottom:831.269467pt;}
.y8{bottom:833.615995pt;}
.y1d8{bottom:835.577733pt;}
.y130{bottom:836.484800pt;}
.y131{bottom:838.450133pt;}
.y7c{bottom:838.450933pt;}
.y12f{bottom:838.455600pt;}
.y1d7{bottom:843.136800pt;}
.y13{bottom:847.294267pt;}
.y1d6{bottom:847.596667pt;}
.y7b{bottom:852.586933pt;}
.y12e{bottom:852.663600pt;}
.y18e{bottom:853.033867pt;}
.y7{bottom:854.682666pt;}
.y1d5{bottom:855.155694pt;}
.y7a{bottom:866.797333pt;}
.y12d{bottom:866.799600pt;}
.y18d{bottom:867.169867pt;}
.y1d4{bottom:867.174533pt;}
.y1d3{bottom:871.634400pt;}
.y12b{bottom:878.966667pt;}
.y1d2{bottom:879.193826pt;}
.y12a{bottom:881.007067pt;}
.y12c{bottom:881.007600pt;}
.y79{bottom:881.007733pt;}
.y18c{bottom:881.233867pt;}
.y6{bottom:888.407997pt;}
.y1d1{bottom:891.136667pt;}
.y78{bottom:895.143733pt;}
.y129{bottom:895.146133pt;}
.y18b{bottom:895.365067pt;}
.y1d0{bottom:895.596533pt;}
.y12{bottom:897.258920pt;}
.y1cf{bottom:903.155827pt;}
.y5{bottom:904.141335pt;}
.y77{bottom:909.355333pt;}
.y128{bottom:909.356533pt;}
.y18a{bottom:909.501067pt;}
.y1ce{bottom:915.174667pt;}
.y1cd{bottom:919.634400pt;}
.y188{bottom:921.599733pt;}
.y76{bottom:923.490133pt;}
.y127{bottom:923.492533pt;}
.y187{bottom:923.564533pt;}
.y189{bottom:923.565067pt;}
.y11{bottom:926.664400pt;}
.y1cc{bottom:927.193826pt;}
.y186{bottom:937.696667pt;}
.y74{bottom:937.700533pt;}
.y1cb{bottom:939.136667pt;}
.y75{bottom:942.991867pt;}
.y1ca{bottom:943.596533pt;}
.y4{bottom:947.856001pt;}
.y3{bottom:979.856001pt;}
.y73{bottom:1008.982400pt;}
.h1d{height:20.334600pt;}
.h24{height:20.396736pt;}
.h20{height:20.704320pt;}
.hd{height:21.756600pt;}
.h10{height:22.780962pt;}
.h11{height:22.908945pt;}
.h16{height:25.316412pt;}
.hb{height:26.108518pt;}
.h15{height:27.441398pt;}
.h13{height:27.524267pt;}
.h25{height:28.639618pt;}
.h26{height:28.839615pt;}
.h12{height:30.872016pt;}
.h14{height:31.060945pt;}
.h1f{height:31.061411pt;}
.h22{height:31.956934pt;}
.h1e{height:31.959334pt;}
.h2{height:32.440000pt;}
.h1c{height:34.365867pt;}
.hf{height:34.368000pt;}
.h18{height:34.372800pt;}
.h19{height:34.374400pt;}
.h1a{height:34.377067pt;}
.he{height:34.986229pt;}
.h21{height:35.952000pt;}
.h1b{height:35.956267pt;}
.h5{height:36.096000pt;}
.h27{height:36.387515pt;}
.hc{height:36.720000pt;}
.h4{height:38.928000pt;}
.h9{height:39.168000pt;}
.h23{height:41.613867pt;}
.h6{height:41.973333pt;}
.h7{height:43.253333pt;}
.h17{height:47.655586pt;}
.ha{height:58.755635pt;}
.h8{height:81.600408pt;}
.h3{height:83.946667pt;}
.h0{height:1079.962667pt;}
.h1{height:1080.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:52.006267pt;}
.x4b{left:53.064533pt;}
.x4c{left:64.252000pt;}
.x4{left:70.677200pt;}
.x2a{left:71.886533pt;}
.x1c{left:73.700800pt;}
.x1e{left:75.363733pt;}
.xac{left:76.270800pt;}
.x1f{left:77.858267pt;}
.xb0{left:79.370000pt;}
.xad{left:80.277200pt;}
.x8a{left:88.592133pt;}
.x2b{left:94.639733pt;}
.x5a{left:99.779467pt;}
.x2d{left:104.692933pt;}
.x5b{left:107.262933pt;}
.x11{left:109.152800pt;}
.xae{left:112.931765pt;}
.x86{left:113.839333pt;}
.x72{left:115.275467pt;}
.x87{left:119.357467pt;}
.x8b{left:121.020400pt;}
.x2e{left:125.707067pt;}
.x94{left:133.114933pt;}
.x31{left:136.440933pt;}
.x12{left:140.598400pt;}
.xaf{left:142.714367pt;}
.x5{left:150.727467pt;}
.x95{left:157.530667pt;}
.x2{left:160.000000pt;}
.x1{left:165.333333pt;}
.x79{left:167.962133pt;}
.x5f{left:169.171600pt;}
.x3{left:173.333333pt;}
.x9e{left:176.201467pt;}
.x36{left:177.864533pt;}
.x77{left:182.853467pt;}
.x50{left:185.725867pt;}
.x78{left:187.010933pt;}
.x71{left:189.732267pt;}
.x92{left:193.133867pt;}
.x51{left:198.500667pt;}
.x93{left:199.634533pt;}
.xb2{left:201.902366pt;}
.x4d{left:202.960533pt;}
.x37{left:209.839333pt;}
.x4e{left:214.525867pt;}
.x56{left:219.136933pt;}
.x24{left:220.119600pt;}
.x5c{left:221.177867pt;}
.x8e{left:226.015733pt;}
.x25{left:228.661333pt;}
.x60{left:232.667600pt;}
.x73{left:239.773200pt;}
.x54{left:240.680267pt;}
.x61{left:241.662933pt;}
.x6{left:245.140133pt;}
.x85{left:247.029867pt;}
.x55{left:248.012533pt;}
.x32{left:249.297600pt;}
.x74{left:251.565333pt;}
.x75{left:252.699200pt;}
.x13{left:253.606267pt;}
.x76{left:258.595200pt;}
.x8f{left:261.089733pt;}
.x9c{left:264.793600pt;}
.x57{left:265.700667pt;}
.x9a{left:268.044000pt;}
.x7{left:269.858133pt;}
.x90{left:271.823467pt;}
.x9b{left:273.788933pt;}
.xa0{left:278.777867pt;}
.x2f{left:279.911733pt;}
.x33{left:281.121200pt;}
.x91{left:283.010933pt;}
.x14{left:286.110133pt;}
.x88{left:287.773200pt;}
.x30{left:289.965333pt;}
.x89{left:291.477067pt;}
.x63{left:292.459733pt;}
.x9f{left:294.954267pt;}
.x64{left:296.617200pt;}
.x38{left:299.111733pt;}
.x26{left:307.048667pt;}
.x2c{left:310.903867pt;}
.x8c{left:313.096000pt;}
.x27{left:315.590400pt;}
.x98{left:323.225067pt;}
.xb1{left:324.887130pt;}
.x8d{left:327.155867pt;}
.x99{left:329.121200pt;}
.x8{left:332.825067pt;}
.x39{left:333.732133pt;}
.x96{left:338.796800pt;}
.x9{left:341.064400pt;}
.x58{left:342.500667pt;}
.x3a{left:343.861333pt;}
.x62{left:345.297467pt;}
.x97{left:351.647200pt;}
.x52{left:358.299067pt;}
.x34{left:359.886533pt;}
.x53{left:362.456533pt;}
.x59{left:363.968400pt;}
.x5d{left:365.782533pt;}
.x15{left:367.143200pt;}
.x5e{left:373.568400pt;}
.x9d{left:378.632933pt;}
.x35{left:385.814000pt;}
.x16{left:391.936933pt;}
.x4f{left:392.995200pt;}
.xa{left:393.977867pt;}
.xb{left:418.771467pt;}
.x3c{left:419.980400pt;}
.x6a{left:422.702267pt;}
.xa6{left:425.196800pt;}
.xa7{left:427.993600pt;}
.xa8{left:429.580933pt;}
.x17{left:441.146267pt;}
.x3b{left:444.018800pt;}
.x48{left:451.804667pt;}
.x49{left:457.625067pt;}
.xb5{left:459.288065pt;}
.x7d{left:463.294400pt;}
.x18{left:465.864400pt;}
.x7e{left:466.922667pt;}
.x6b{left:469.492800pt;}
.x6c{left:473.650267pt;}
.x7f{left:476.296000pt;}
.x80{left:479.924267pt;}
.x44{left:481.436133pt;}
.x65{left:496.251867pt;}
.xc{left:499.048667pt;}
.x45{left:503.130533pt;}
.xa9{left:504.105541pt;}
.x46{left:505.095867pt;}
.x66{left:507.439200pt;}
.xd{left:523.766800pt;}
.xab{left:524.892067pt;}
.x3d{left:528.831333pt;}
.xb4{left:530.871504pt;}
.x28{left:534.122667pt;}
.x29{left:541.303733pt;}
.x19{left:544.025067pt;}
.x1a{left:566.853333pt;}
.x7b{left:577.662800pt;}
.xe{left:581.820267pt;}
.x7c{left:583.558933pt;}
.x6d{left:584.844000pt;}
.x6e{left:586.280133pt;}
.xa5{left:589.076933pt;}
.x7a{left:597.316400pt;}
.xf{left:606.614000pt;}
.x1d{left:608.501582pt;}
.xb7{left:618.633216pt;}
.x40{left:621.807733pt;}
.xaa{left:625.135129pt;}
.xa1{left:637.757333pt;}
.x3e{left:642.595067pt;}
.x41{left:645.316400pt;}
.xa3{left:646.450133pt;}
.xa2{left:648.869200pt;}
.xa4{left:653.631333pt;}
.x3f{left:657.184133pt;}
.x22{left:661.341600pt;}
.x23{left:668.900667pt;}
.x68{left:673.965200pt;}
.x47{left:679.180933pt;}
.x69{left:687.193467pt;}
.xb6{left:692.559954pt;}
.x1b{left:698.229600pt;}
.x81{left:703.823467pt;}
.x82{left:707.376133pt;}
.x10{left:710.021867pt;}
.x42{left:711.533733pt;}
.x67{left:717.202933pt;}
.x83{left:718.336800pt;}
.xb3{left:719.697188pt;}
.x20{left:720.982533pt;}
.x84{left:721.965200pt;}
.x21{left:727.332133pt;}
.x6f{left:729.070667pt;}
.x70{left:732.623467pt;}
.x43{left:735.042267pt;}
}




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