
    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_482f4e83940e741ca1328839.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_08c76d1ccc15c94e2b8b3eb6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_51314b64df600fc4582ce52d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_9acabdc284166e844c8f00aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_fc7d473fdcb4ba427d56fe08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.457000;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_c32161aee7d2e44197e315b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_9c6150042eed276123ae9f98.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6bb32814d563553a04fe716e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_786546c5b6fb380ac961ea3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_9024134aa5aabca49513d3d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.510000;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_5cbea63dc3b4dcb861b466a4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1f7e763d1418d7fcec12a75d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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_8c56dfa5c1b6c3f3fcf743d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_97af534d069461d334de0cf6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_c11767f99c1e59f3213455b4.woff2')format("woff");}.fff{font-family:fff;line-height:0.478000;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_0cf04b84ab9ce4162da879e1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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_cfbfd98d55b83fc9da116568.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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_8486a6c21916176808476aa0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.688000;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_496d151bd82ec8f1c7d1cbe6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.714000;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_6db2b7dfa5962382c18ffbe4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c406b0f850610d6ea382767a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.023000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,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);}
.m7{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-8.842200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.491400px;}
.v3{vertical-align:32.657400px;}
.v2{vertical-align:41.501400px;}
.v4{vertical-align:55.783020px;}
.ls39{letter-spacing:-1.993300px;}
.ls37{letter-spacing:-1.922740px;}
.ls30{letter-spacing:-1.910981px;}
.ls3a{letter-spacing:-1.905101px;}
.ls35{letter-spacing:-1.893341px;}
.ls49{letter-spacing:-1.881581px;}
.ls46{letter-spacing:-1.869821px;}
.ls36{letter-spacing:-1.863941px;}
.ls45{letter-spacing:-1.858061px;}
.ls3b{letter-spacing:-1.852181px;}
.ls33{letter-spacing:-1.846301px;}
.ls3d{letter-spacing:-1.840421px;}
.ls3c{letter-spacing:-1.834541px;}
.ls34{letter-spacing:-1.828661px;}
.ls4a{letter-spacing:-1.822781px;}
.ls4c{letter-spacing:-1.816901px;}
.ls48{letter-spacing:-1.811022px;}
.ls3e{letter-spacing:-1.805142px;}
.ls40{letter-spacing:-1.799262px;}
.ls38{letter-spacing:-1.793382px;}
.ls42{letter-spacing:-1.781622px;}
.ls31{letter-spacing:-1.775742px;}
.ls3f{letter-spacing:-1.769862px;}
.ls4b{letter-spacing:-1.758102px;}
.ls43{letter-spacing:-1.734582px;}
.ls32{letter-spacing:-1.728702px;}
.ls44{letter-spacing:-1.699303px;}
.ls47{letter-spacing:-1.693423px;}
.ls81{letter-spacing:-1.353583px;}
.ls84{letter-spacing:-1.286384px;}
.ls7e{letter-spacing:-1.252784px;}
.ls80{letter-spacing:-1.219185px;}
.ls83{letter-spacing:-1.180785px;}
.ls85{letter-spacing:-1.166385px;}
.ls95{letter-spacing:-1.164228px;}
.ls82{letter-spacing:-1.161585px;}
.ls7f{letter-spacing:-1.156786px;}
.lsb6{letter-spacing:-1.138485px;}
.ls96{letter-spacing:-1.134828px;}
.ls91{letter-spacing:-1.128943px;}
.ls92{letter-spacing:-1.111309px;}
.ls90{letter-spacing:-1.105429px;}
.ls93{letter-spacing:-1.099549px;}
.lsa3{letter-spacing:-1.076029px;}
.ls8c{letter-spacing:-1.064269px;}
.ls94{letter-spacing:-1.058389px;}
.ls8e{letter-spacing:-1.052509px;}
.ls8b{letter-spacing:-1.040749px;}
.ls8d{letter-spacing:-1.028990px;}
.ls8f{letter-spacing:-0.934910px;}
.ls97{letter-spacing:-0.905511px;}
.lsf{letter-spacing:-0.834008px;}
.ls2b{letter-spacing:-0.823192px;}
.ls11{letter-spacing:-0.810008px;}
.lsb2{letter-spacing:-0.787490px;}
.ls12{letter-spacing:-0.762008px;}
.ls67{letter-spacing:-0.723233px;}
.ls4e{letter-spacing:-0.646793px;}
.lsb7{letter-spacing:-0.008400px;}
.lse{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.004200px;}
.ls29{letter-spacing:0.029438px;}
.ls6e{letter-spacing:0.035292px;}
.ls6d{letter-spacing:0.041112px;}
.ls66{letter-spacing:0.041172px;}
.lsb3{letter-spacing:0.049494px;}
.lsb0{letter-spacing:0.057158px;}
.lsaf{letter-spacing:0.058484px;}
.lsae{letter-spacing:0.058547px;}
.lsb4{letter-spacing:0.094472px;}
.ls73{letter-spacing:0.117613px;}
.ls5e{letter-spacing:0.152931px;}
.ls87{letter-spacing:0.153600px;}
.ls58{letter-spacing:0.164125px;}
.lsc{letter-spacing:0.176398px;}
.ls6a{letter-spacing:0.194040px;}
.ls88{letter-spacing:0.249590px;}
.ls2{letter-spacing:0.300003px;}
.lsa4{letter-spacing:0.436795px;}
.ls2f{letter-spacing:0.452755px;}
.ls9c{letter-spacing:0.479994px;}
.lsaa{letter-spacing:0.489594px;}
.ls2e{letter-spacing:0.499795px;}
.lsa9{letter-spacing:0.503994px;}
.lsa7{letter-spacing:0.513594px;}
.ls4{letter-spacing:0.516005px;}
.lsa6{letter-spacing:0.518394px;}
.ls79{letter-spacing:0.523193px;}
.ls9e{letter-spacing:0.532793px;}
.ls8{letter-spacing:0.534005px;}
.ls2c{letter-spacing:0.535075px;}
.ls19{letter-spacing:0.535080px;}
.ls9a{letter-spacing:0.537593px;}
.lsab{letter-spacing:0.539993px;}
.lsa{letter-spacing:0.540005px;}
.ls15{letter-spacing:0.540962px;}
.ls78{letter-spacing:0.542393px;}
.ls3{letter-spacing:0.546005px;}
.lsb{letter-spacing:0.564006px;}
.lsa2{letter-spacing:0.571193px;}
.ls5{letter-spacing:0.582006px;}
.ls1b{letter-spacing:0.582114px;}
.ls7{letter-spacing:0.588006px;}
.lsac{letter-spacing:0.589492px;}
.lsa0{letter-spacing:0.590390px;}
.ls1a{letter-spacing:0.593874px;}
.ls1{letter-spacing:0.594006px;}
.ls16{letter-spacing:0.599754px;}
.ls24{letter-spacing:0.605634px;}
.ls6{letter-spacing:0.606006px;}
.ls21{letter-spacing:0.611514px;}
.ls9{letter-spacing:0.612006px;}
.ls1c{letter-spacing:0.617394px;}
.lsa8{letter-spacing:0.619192px;}
.ls20{letter-spacing:0.623274px;}
.ls61{letter-spacing:0.629154px;}
.ls9d{letter-spacing:0.630302px;}
.ls26{letter-spacing:0.635034px;}
.ls27{letter-spacing:0.640913px;}
.ls14{letter-spacing:0.646793px;}
.ls17{letter-spacing:0.652673px;}
.lsa5{letter-spacing:0.652792px;}
.ls63{letter-spacing:0.658553px;}
.ls22{letter-spacing:0.664433px;}
.ls23{letter-spacing:0.670313px;}
.ls69{letter-spacing:0.682067px;}
.ls62{letter-spacing:0.693833px;}
.ls10{letter-spacing:0.708007px;}
.ls4d{letter-spacing:0.711473px;}
.ls18{letter-spacing:0.793813px;}
.ls64{letter-spacing:0.805552px;}
.ls2d{letter-spacing:0.876111px;}
.ls0{letter-spacing:1.224012px;}
.ls5a{letter-spacing:2.580670px;}
.ls57{letter-spacing:4.253847px;}
.ls5b{letter-spacing:4.594587px;}
.ls7a{letter-spacing:11.663863px;}
.ls7b{letter-spacing:11.899047px;}
.ls77{letter-spacing:12.220588px;}
.ls76{letter-spacing:12.494270px;}
.ls59{letter-spacing:13.035822px;}
.ls5c{letter-spacing:13.229862px;}
.lsad{letter-spacing:13.504277px;}
.ls75{letter-spacing:14.438220px;}
.ls1e{letter-spacing:14.652818px;}
.ls1f{letter-spacing:14.735111px;}
.ls1d{letter-spacing:15.270222px;}
.ls8a{letter-spacing:15.417203px;}
.ls41{letter-spacing:15.423083px;}
.ls54{letter-spacing:16.357990px;}
.ls55{letter-spacing:16.440313px;}
.ls53{letter-spacing:16.469749px;}
.ls72{letter-spacing:17.539860px;}
.ls89{letter-spacing:17.539861px;}
.ls2a{letter-spacing:17.563387px;}
.ls28{letter-spacing:17.798591px;}
.ls74{letter-spacing:18.351298px;}
.lsb1{letter-spacing:18.515280px;}
.ls9f{letter-spacing:19.540560px;}
.ls99{letter-spacing:19.636550px;}
.ls9b{letter-spacing:19.703728px;}
.ls13{letter-spacing:19.838891px;}
.lsa1{letter-spacing:19.881300px;}
.ls7c{letter-spacing:20.262273px;}
.lsd{letter-spacing:20.873787px;}
.ls52{letter-spacing:20.914945px;}
.ls51{letter-spacing:20.967907px;}
.ls50{letter-spacing:21.255985px;}
.ls60{letter-spacing:21.879251px;}
.ls6f{letter-spacing:23.666760px;}
.ls65{letter-spacing:24.342960px;}
.ls25{letter-spacing:24.454662px;}
.ls98{letter-spacing:24.642831px;}
.ls5f{letter-spacing:25.136742px;}
.ls86{letter-spacing:25.154398px;}
.ls70{letter-spacing:25.618871px;}
.ls71{letter-spacing:25.618931px;}
.ls7d{letter-spacing:27.406400px;}
.ls6b{letter-spacing:28.000271px;}
.ls6c{letter-spacing:28.341311px;}
.ls4f{letter-spacing:29.470267px;}
.ls68{letter-spacing:40.183510px;}
.ls56{letter-spacing:121.401462px;}
.ls5d{letter-spacing:529.795260px;}
.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;}
}
.ws15b{word-spacing:-40.242309px;}
.ws1fc{word-spacing:-27.465200px;}
.ws1f9{word-spacing:-20.321073px;}
.ws2b9{word-spacing:-18.577080px;}
.ws222{word-spacing:-17.598660px;}
.ws86{word-spacing:-15.481882px;}
.ws234{word-spacing:-15.476002px;}
.ws62{word-spacing:-0.934910px;}
.ws15a{word-spacing:-0.864351px;}
.ws15c{word-spacing:-0.693833px;}
.ws295{word-spacing:-0.662297px;}
.ws61{word-spacing:-0.593874px;}
.ws27{word-spacing:-0.061800px;}
.ws36{word-spacing:-0.058799px;}
.wsa1{word-spacing:-0.055201px;}
.ws51{word-spacing:-0.047999px;}
.ws44{word-spacing:-0.044999px;}
.ws4c{word-spacing:-0.041999px;}
.ws11d{word-spacing:-0.041159px;}
.ws52{word-spacing:0.000000px;}
.wsbb{word-spacing:0.587994px;}
.ws2c9{word-spacing:0.742490px;}
.ws240{word-spacing:0.876111px;}
.ws28d{word-spacing:1.017230px;}
.ws2eb{word-spacing:1.093485px;}
.ws24b{word-spacing:1.105429px;}
.ws7a{word-spacing:1.769862px;}
.ws72{word-spacing:1.787502px;}
.ws2ba{word-spacing:10.772856px;}
.ws2f0{word-spacing:10.795356px;}
.ws2c8{word-spacing:10.835856px;}
.ws2b3{word-spacing:10.858355px;}
.ws2ea{word-spacing:10.885354px;}
.ws2ec{word-spacing:10.907854px;}
.ws2bb{word-spacing:10.934854px;}
.ws2dc{word-spacing:10.943854px;}
.ws2dd{word-spacing:11.033853px;}
.ws2f4{word-spacing:11.038353px;}
.ws2c7{word-spacing:11.074353px;}
.ws2f3{word-spacing:11.159851px;}
.ws2ed{word-spacing:11.164352px;}
.ws2b4{word-spacing:11.353349px;}
.ws2b2{word-spacing:11.393848px;}
.ws2ce{word-spacing:11.443347px;}
.ws2c6{word-spacing:11.461347px;}
.ws25c{word-spacing:11.539055px;}
.ws211{word-spacing:11.673454px;}
.ws2ef{word-spacing:11.699844px;}
.ws212{word-spacing:11.759853px;}
.ws25f{word-spacing:11.764653px;}
.ws262{word-spacing:11.788653px;}
.ws260{word-spacing:11.817452px;}
.ws2cd{word-spacing:11.821343px;}
.ws25e{word-spacing:11.851051px;}
.ws261{word-spacing:11.879851px;}
.ws43{word-spacing:11.884342px;}
.ws210{word-spacing:12.335846px;}
.ws4e{word-spacing:12.377223px;}
.ws25d{word-spacing:12.393446px;}
.ws48{word-spacing:12.448622px;}
.ws4a{word-spacing:12.503221px;}
.ws4d{word-spacing:12.528421px;}
.ws49{word-spacing:12.532621px;}
.ws4b{word-spacing:12.692219px;}
.ws2d8{word-spacing:13.148825px;}
.ws2d7{word-spacing:13.157824px;}
.ws2d3{word-spacing:13.166825px;}
.ws2e4{word-spacing:13.171325px;}
.ws2c1{word-spacing:13.180324px;}
.ws2e2{word-spacing:13.207324px;}
.ws2cf{word-spacing:13.211824px;}
.ws2db{word-spacing:13.216324px;}
.ws2df{word-spacing:13.220823px;}
.ws2ca{word-spacing:13.225323px;}
.ws2f1{word-spacing:13.229824px;}
.ws2c0{word-spacing:13.234324px;}
.ws2e8{word-spacing:13.238824px;}
.ws2cc{word-spacing:13.243323px;}
.ws2c3{word-spacing:13.247823px;}
.ws2d4{word-spacing:13.261324px;}
.ws2d6{word-spacing:13.270323px;}
.ws2f5{word-spacing:13.274823px;}
.ws2e9{word-spacing:13.283823px;}
.ws2d9{word-spacing:13.288322px;}
.ws2c2{word-spacing:13.292822px;}
.ws2da{word-spacing:13.297323px;}
.ws2d5{word-spacing:13.306323px;}
.ws2d0{word-spacing:13.310822px;}
.ws2e0{word-spacing:13.315322px;}
.ws2c4{word-spacing:13.328823px;}
.ws2ee{word-spacing:13.333322px;}
.ws2e5{word-spacing:13.337822px;}
.ws47{word-spacing:13.342322px;}
.ws2f2{word-spacing:13.364822px;}
.ws2a8{word-spacing:13.369322px;}
.ws2c5{word-spacing:13.373822px;}
.ws2e3{word-spacing:13.387321px;}
.ws2b7{word-spacing:13.405321px;}
.ws2e1{word-spacing:13.409821px;}
.ws2de{word-spacing:13.414322px;}
.ws2bd{word-spacing:13.418822px;}
.ws2af{word-spacing:13.432321px;}
.ws2b1{word-spacing:13.445820px;}
.ws2a4{word-spacing:13.463821px;}
.ws2a9{word-spacing:13.468320px;}
.ws2ac{word-spacing:13.490820px;}
.ws2b6{word-spacing:13.504320px;}
.ws2cb{word-spacing:13.513319px;}
.ws2d2{word-spacing:13.535819px;}
.ws46{word-spacing:13.562819px;}
.ws2ae{word-spacing:13.576319px;}
.ws2bf{word-spacing:13.580818px;}
.ws2e6{word-spacing:13.594319px;}
.ws2d1{word-spacing:13.607818px;}
.ws2f6{word-spacing:13.621319px;}
.ws2a7{word-spacing:13.630318px;}
.ws2b0{word-spacing:13.643819px;}
.ws45{word-spacing:13.684318px;}
.ws2b5{word-spacing:13.706818px;}
.ws2ad{word-spacing:13.711318px;}
.ws2e7{word-spacing:13.733817px;}
.ws2ab{word-spacing:13.751817px;}
.wse7{word-spacing:13.756616px;}
.ws4f{word-spacing:13.775828px;}
.ws259{word-spacing:13.785428px;}
.ws1af{word-spacing:13.809428px;}
.ws2bc{word-spacing:13.814816px;}
.ws2aa{word-spacing:13.819310px;}
.ws28f{word-spacing:13.838227px;}
.ws20e{word-spacing:13.843026px;}
.ws1b1{word-spacing:13.847827px;}
.ws1ae{word-spacing:13.876627px;}
.ws2b8{word-spacing:13.882315px;}
.ws25b{word-spacing:13.919826px;}
.ws2be{word-spacing:13.931815px;}
.ws1b0{word-spacing:13.943826px;}
.ws217{word-spacing:13.948625px;}
.ws21a{word-spacing:13.987026px;}
.ws290{word-spacing:13.996626px;}
.ws218{word-spacing:14.015824px;}
.ws20c{word-spacing:14.030224px;}
.ws50{word-spacing:14.063824px;}
.ws20b{word-spacing:14.068625px;}
.ws2f7{word-spacing:14.102223px;}
.ws257{word-spacing:14.131023px;}
.ws20f{word-spacing:14.155023px;}
.ws215{word-spacing:14.159823px;}
.ws25a{word-spacing:14.198222px;}
.ws20d{word-spacing:14.212623px;}
.ws28e{word-spacing:14.222222px;}
.ws1ac{word-spacing:14.231822px;}
.ws219{word-spacing:14.231857px;}
.wse8{word-spacing:14.251021px;}
.ws258{word-spacing:14.299021px;}
.ws1ad{word-spacing:14.371020px;}
.ws269{word-spacing:14.447013px;}
.ws216{word-spacing:14.558236px;}
.ws271{word-spacing:14.576394px;}
.ws26a{word-spacing:14.588153px;}
.ws235{word-spacing:14.594011px;}
.ws272{word-spacing:14.676331px;}
.ws119{word-spacing:14.741008px;}
.ws207{word-spacing:14.805689px;}
.ws233{word-spacing:14.829203px;}
.ws54{word-spacing:14.876248px;}
.wsbc{word-spacing:14.888008px;}
.ws8{word-spacing:14.928149px;}
.ws1e{word-spacing:14.934149px;}
.ws10{word-spacing:14.952150px;}
.ws20{word-spacing:14.970150px;}
.ws270{word-spacing:15.058527px;}
.ws22{word-spacing:15.072151px;}
.ws11{word-spacing:15.084151px;}
.ws12{word-spacing:15.126151px;}
.ws1f{word-spacing:15.138151px;}
.ws14{word-spacing:15.186152px;}
.ws13{word-spacing:15.198152px;}
.ws23{word-spacing:15.270153px;}
.ws239{word-spacing:15.399562px;}
.ws21{word-spacing:15.408154px;}
.ws7{word-spacing:15.444154px;}
.ws1b{word-spacing:15.498155px;}
.ws27a{word-spacing:15.499522px;}
.ws22e{word-spacing:15.523042px;}
.ws229{word-spacing:15.528922px;}
.ws115{word-spacing:15.693533px;}
.ws26f{word-spacing:15.693559px;}
.ws1c{word-spacing:15.780158px;}
.ws114{word-spacing:15.822929px;}
.ws1a{word-spacing:15.834158px;}
.ws116{word-spacing:15.864124px;}
.ws112{word-spacing:16.328594px;}
.ws11a{word-spacing:16.334473px;}
.ws1c6{word-spacing:16.372499px;}
.ws208{word-spacing:16.449779px;}
.ws228{word-spacing:16.477379px;}
.ws200{word-spacing:16.493232px;}
.ws10e{word-spacing:16.516751px;}
.ws1bb{word-spacing:16.521539px;}
.ws24{word-spacing:16.524165px;}
.ws1c7{word-spacing:16.527059px;}
.ws22f{word-spacing:16.634350px;}
.ws133{word-spacing:16.670581px;}
.ws1d{word-spacing:16.740167px;}
.ws28c{word-spacing:16.763708px;}
.ws106{word-spacing:16.804868px;}
.ws23a{word-spacing:16.825142px;}
.ws24a{word-spacing:16.851908px;}
.ws230{word-spacing:16.857789px;}
.ws2d{word-spacing:16.875428px;}
.ws223{word-spacing:16.904827px;}
.ws245{word-spacing:16.922467px;}
.ws2a6{word-spacing:17.090772px;}
.wsfc{word-spacing:17.128265px;}
.wse3{word-spacing:17.140025px;}
.ws232{word-spacing:17.145906px;}
.ws26b{word-spacing:17.198824px;}
.ws221{word-spacing:17.234105px;}
.ws23d{word-spacing:17.287023px;}
.ws1aa{word-spacing:17.310543px;}
.wse2{word-spacing:17.316423px;}
.ws3d{word-spacing:17.328183px;}
.ws26{word-spacing:17.352174px;}
.ws152{word-spacing:17.363462px;}
.wsdd{word-spacing:17.381103px;}
.ws227{word-spacing:17.398742px;}
.ws9{word-spacing:17.448174px;}
.ws2a5{word-spacing:17.459767px;}
.ws25{word-spacing:17.472175px;}
.ws181{word-spacing:17.486941px;}
.ws1f5{word-spacing:17.504582px;}
.ws197{word-spacing:17.510461px;}
.ws198{word-spacing:17.551582px;}
.ws276{word-spacing:17.551621px;}
.ws231{word-spacing:17.557501px;}
.ws1c3{word-spacing:17.598660px;}
.ws28b{word-spacing:17.610420px;}
.ws83{word-spacing:17.639819px;}
.wsd6{word-spacing:17.645701px;}
.ws263{word-spacing:17.651580px;}
.ws1c0{word-spacing:17.669220px;}
.wsaf{word-spacing:17.686859px;}
.ws2a0{word-spacing:17.692739px;}
.ws264{word-spacing:17.704500px;}
.ws3b{word-spacing:17.710379px;}
.ws2a1{word-spacing:17.716259px;}
.ws80{word-spacing:17.722140px;}
.ws1ab{word-spacing:17.739780px;}
.ws33{word-spacing:17.745659px;}
.ws1e2{word-spacing:17.757419px;}
.ws199{word-spacing:17.780938px;}
.ws196{word-spacing:17.786818px;}
.ws226{word-spacing:17.804452px;}
.ws8b{word-spacing:17.822099px;}
.ws26e{word-spacing:17.851498px;}
.ws1c1{word-spacing:17.851525px;}
.ws7c{word-spacing:17.892657px;}
.ws265{word-spacing:17.939698px;}
.ws1e3{word-spacing:17.963217px;}
.wsd5{word-spacing:17.986737px;}
.ws1c2{word-spacing:18.021980px;}
.ws8d{word-spacing:18.063175px;}
.wsc8{word-spacing:18.074935px;}
.wsa2{word-spacing:18.121976px;}
.ws29a{word-spacing:18.124573px;}
.ws5f{word-spacing:18.139615px;}
.ws130{word-spacing:18.180775px;}
.ws1c8{word-spacing:18.186654px;}
.ws59{word-spacing:18.192534px;}
.ws105{word-spacing:18.216054px;}
.ws1bf{word-spacing:18.239574px;}
.ws297{word-spacing:18.258941px;}
.ws292{word-spacing:18.287772px;}
.ws220{word-spacing:18.327774px;}
.ws29d{word-spacing:18.335770px;}
.ws213{word-spacing:18.359770px;}
.ws21f{word-spacing:18.363080px;}
.ws8c{word-spacing:18.380692px;}
.ws214{word-spacing:18.431769px;}
.ws29c{word-spacing:18.470169px;}
.ws296{word-spacing:18.489368px;}
.ws2a3{word-spacing:18.496739px;}
.ws298{word-spacing:18.498969px;}
.ws291{word-spacing:18.513369px;}
.ws293{word-spacing:18.518168px;}
.ws282{word-spacing:18.527692px;}
.ws11c{word-spacing:18.552958px;}
.ws16e{word-spacing:18.580610px;}
.ws5{word-spacing:18.600186px;}
.ws28a{word-spacing:18.601800px;}
.wsa9{word-spacing:18.621771px;}
.ws12f{word-spacing:18.651181px;}
.ws1cd{word-spacing:18.686449px;}
.ws294{word-spacing:18.690966px;}
.ws58{word-spacing:18.709970px;}
.ws137{word-spacing:18.721728px;}
.ws183{word-spacing:18.751128px;}
.ws132{word-spacing:18.762481px;}
.wsaa{word-spacing:18.762889px;}
.ws23f{word-spacing:18.774648px;}
.ws299{word-spacing:18.791766px;}
.wsb0{word-spacing:18.804048px;}
.ws117{word-spacing:18.821668px;}
.ws206{word-spacing:18.898127px;}
.ws27f{word-spacing:18.915768px;}
.ws23c{word-spacing:18.945167px;}
.ws84{word-spacing:18.992206px;}
.ws85{word-spacing:19.009845px;}
.ws1f7{word-spacing:19.062766px;}
.ws170{word-spacing:19.086279px;}
.ws171{word-spacing:19.098045px;}
.ws138{word-spacing:19.103924px;}
.wsfd{word-spacing:19.145085px;}
.ws128{word-spacing:19.168604px;}
.ws1a5{word-spacing:19.186244px;}
.ws5e{word-spacing:19.209765px;}
.ws118{word-spacing:19.239164px;}
.ws184{word-spacing:19.256803px;}
.ws22a{word-spacing:19.356763px;}
.ws277{word-spacing:19.433202px;}
.ws241{word-spacing:19.521409px;}
.ws20a{word-spacing:19.544920px;}
.ws56{word-spacing:19.580200px;}
.ws242{word-spacing:19.621354px;}
.ws4{word-spacing:19.628578px;}
.ws29e{word-spacing:19.660555px;}
.ws121{word-spacing:19.703680px;}
.ws1c5{word-spacing:19.738959px;}
.ws3{word-spacing:19.773780px;}
.ws76{word-spacing:19.774239px;}
.ws1e7{word-spacing:19.780118px;}
.ws55{word-spacing:19.785998px;}
.ws38{word-spacing:19.821278px;}
.ws1be{word-spacing:19.856558px;}
.ws1fa{word-spacing:19.891836px;}
.ws163{word-spacing:19.903597px;}
.ws29b{word-spacing:19.905380px;}
.ws5a{word-spacing:19.921236px;}
.ws2{word-spacing:19.938781px;}
.ws75{word-spacing:19.980036px;}
.ws37{word-spacing:19.985916px;}
.ws88{word-spacing:19.997657px;}
.ws27d{word-spacing:20.050595px;}
.ws22b{word-spacing:20.062356px;}
.ws21d{word-spacing:20.068235px;}
.ws8a{word-spacing:20.074115px;}
.ws89{word-spacing:20.115253px;}
.ws1e6{word-spacing:20.132914px;}
.wsc7{word-spacing:20.144675px;}
.ws1f8{word-spacing:20.185833px;}
.ws39{word-spacing:20.232874px;}
.ws195{word-spacing:20.291674px;}
.ws203{word-spacing:20.315193px;}
.wsfb{word-spacing:20.321073px;}
.ws1c9{word-spacing:20.344592px;}
.ws1d9{word-spacing:20.403380px;}
.ws1ca{word-spacing:20.403440px;}
.ws202{word-spacing:20.421031px;}
.ws1b7{word-spacing:20.503351px;}
.ws30{word-spacing:20.544510px;}
.ws1ff{word-spacing:20.597429px;}
.ws1da{word-spacing:20.620950px;}
.ws17a{word-spacing:20.626829px;}
.ws19c{word-spacing:20.662109px;}
.ws1d7{word-spacing:20.691488px;}
.wsfa{word-spacing:20.691514px;}
.wsc6{word-spacing:20.756188px;}
.ws1dc{word-spacing:20.756207px;}
.ws35{word-spacing:20.773828px;}
.ws1e4{word-spacing:20.803227px;}
.ws2f{word-spacing:20.844387px;}
.ws1d8{word-spacing:20.873787px;}
.ws13f{word-spacing:20.879668px;}
.ws5d{word-spacing:20.903187px;}
.ws2e{word-spacing:20.909067px;}
.ws266{word-spacing:20.938467px;}
.wsf2{word-spacing:20.967834px;}
.wsf4{word-spacing:21.085465px;}
.ws71{word-spacing:21.156024px;}
.wsf1{word-spacing:21.185423px;}
.wsf7{word-spacing:21.208944px;}
.ws31{word-spacing:21.226583px;}
.ws21c{word-spacing:21.255983px;}
.ws1cb{word-spacing:21.291263px;}
.ws10b{word-spacing:21.297143px;}
.wsf6{word-spacing:21.320641px;}
.ws27e{word-spacing:21.338302px;}
.ws1dd{word-spacing:21.344182px;}
.ws73{word-spacing:21.402981px;}
.ws18b{word-spacing:21.432381px;}
.wsf3{word-spacing:21.473541px;}
.ws113{word-spacing:21.479420px;}
.ws24c{word-spacing:21.526461px;}
.ws1a1{word-spacing:21.567619px;}
.ws23e{word-spacing:21.579380px;}
.ws21e{word-spacing:21.585260px;}
.ws246{word-spacing:21.602914px;}
.ws165{word-spacing:21.608780px;}
.ws164{word-spacing:21.620540px;}
.wscb{word-spacing:21.661698px;}
.ws1e0{word-spacing:21.691098px;}
.ws10f{word-spacing:21.738139px;}
.wsbd{word-spacing:21.744018px;}
.ws12b{word-spacing:21.785178px;}
.ws94{word-spacing:21.802818px;}
.ws129{word-spacing:21.820458px;}
.ws252{word-spacing:21.861616px;}
.wsca{word-spacing:21.938005px;}
.ws11b{word-spacing:21.954958px;}
.ws103{word-spacing:21.961576px;}
.wscf{word-spacing:21.996856px;}
.ws70{word-spacing:22.014496px;}
.ws1ec{word-spacing:22.085055px;}
.wsbe{word-spacing:22.102694px;}
.ws1d4{word-spacing:22.120335px;}
.wsc4{word-spacing:22.232054px;}
.ws12a{word-spacing:22.273212px;}
.ws6f{word-spacing:22.320252px;}
.ws139{word-spacing:22.326133px;}
.ws248{word-spacing:22.390812px;}
.ws190{word-spacing:22.455490px;}
.ws192{word-spacing:22.543689px;}
.ws160{word-spacing:22.555449px;}
.wscc{word-spacing:22.608369px;}
.ws15f{word-spacing:22.614250px;}
.ws104{word-spacing:22.637769px;}
.ws191{word-spacing:22.655422px;}
.ws27c{word-spacing:22.661288px;}
.ws6e{word-spacing:22.678929px;}
.ws247{word-spacing:22.696569px;}
.ws93{word-spacing:22.708329px;}
.ws14f{word-spacing:22.720088px;}
.ws1d3{word-spacing:22.731874px;}
.ws6{word-spacing:22.776228px;}
.ws1fe{word-spacing:22.796528px;}
.ws16b{word-spacing:22.837686px;}
.wsd7{word-spacing:22.849447px;}
.ws92{word-spacing:22.861206px;}
.ws253{word-spacing:22.884727px;}
.ws16d{word-spacing:22.920006px;}
.ws249{word-spacing:22.949406px;}
.ws289{word-spacing:22.955286px;}
.ws205{word-spacing:22.978805px;}
.wsf{word-spacing:23.052231px;}
.ws3e{word-spacing:23.114044px;}
.wsa{word-spacing:23.154232px;}
.ws3a{word-spacing:23.172844px;}
.ws12d{word-spacing:23.178724px;}
.wsd{word-spacing:23.208232px;}
.wsff{word-spacing:23.225763px;}
.ws180{word-spacing:23.261043px;}
.wsab{word-spacing:23.266923px;}
.wsb{word-spacing:23.268233px;}
.ws134{word-spacing:23.290443px;}
.ws68{word-spacing:23.308082px;}
.ws1a0{word-spacing:23.319843px;}
.ws17c{word-spacing:23.325723px;}
.ws15{word-spacing:23.370234px;}
.ws18a{word-spacing:23.378642px;}
.wse{word-spacing:23.382234px;}
.ws18{word-spacing:23.418234px;}
.ws17{word-spacing:23.460235px;}
.ws12e{word-spacing:23.460961px;}
.ws16c{word-spacing:23.460980px;}
.ws9f{word-spacing:23.472720px;}
.ws1f2{word-spacing:23.484480px;}
.wsa7{word-spacing:23.513879px;}
.wsc{word-spacing:23.514235px;}
.ws156{word-spacing:23.525639px;}
.ws19f{word-spacing:23.525641px;}
.ws16{word-spacing:23.538235px;}
.ws1f0{word-spacing:23.584463px;}
.wsd0{word-spacing:23.625598px;}
.ws0{word-spacing:23.649600px;}
.ws12c{word-spacing:23.660878px;}
.ws19e{word-spacing:23.666759px;}
.ws179{word-spacing:23.678519px;}
.ws256{word-spacing:23.690278px;}
.ws14e{word-spacing:23.796117px;}
.ws16a{word-spacing:23.801960px;}
.ws209{word-spacing:23.831396px;}
.ws10c{word-spacing:23.860796px;}
.wsc1{word-spacing:23.866676px;}
.wsc0{word-spacing:23.931379px;}
.ws26c{word-spacing:23.990155px;}
.ws27b{word-spacing:24.001916px;}
.ws22c{word-spacing:24.019555px;}
.wsc3{word-spacing:24.043074px;}
.ws14c{word-spacing:24.048993px;}
.ws225{word-spacing:24.090115px;}
.wsbf{word-spacing:24.095951px;}
.wsc2{word-spacing:24.096043px;}
.wsf8{word-spacing:24.125393px;}
.ws87{word-spacing:24.160674px;}
.wsf5{word-spacing:24.190073px;}
.wsae{word-spacing:24.201834px;}
.ws169{word-spacing:24.284152px;}
.ws26d{word-spacing:24.342952px;}
.ws278{word-spacing:24.413511px;}
.ws2b{word-spacing:24.501710px;}
.ws22d{word-spacing:24.542826px;}
.wscd{word-spacing:24.542869px;}
.ws19{word-spacing:24.546245px;}
.wse1{word-spacing:24.548749px;}
.wsad{word-spacing:24.560510px;}
.ws13b{word-spacing:24.648709px;}
.wsf9{word-spacing:24.683991px;}
.ws237{word-spacing:24.695748px;}
.ws1a9{word-spacing:24.707508px;}
.ws2c{word-spacing:24.725148px;}
.ws34{word-spacing:24.789827px;}
.ws8e{word-spacing:24.872146px;}
.wsa3{word-spacing:24.878027px;}
.ws66{word-spacing:24.901546px;}
.ws18d{word-spacing:24.925065px;}
.ws13c{word-spacing:24.954429px;}
.ws1de{word-spacing:24.954465px;}
.ws1df{word-spacing:25.001505px;}
.wse0{word-spacing:25.083825px;}
.ws13d{word-spacing:25.195543px;}
.ws126{word-spacing:25.219062px;}
.ws1c4{word-spacing:25.230823px;}
.wsb8{word-spacing:25.301381px;}
.ws14d{word-spacing:25.307250px;}
.ws268{word-spacing:25.348422px;}
.ws1fb{word-spacing:25.360181px;}
.ws19b{word-spacing:25.424860px;}
.ws111{word-spacing:25.436621px;}
.wsdb{word-spacing:25.477779px;}
.wsda{word-spacing:25.524820px;}
.wsdc{word-spacing:25.560100px;}
.ws122{word-spacing:25.607139px;}
.ws125{word-spacing:25.642447px;}
.ws1b6{word-spacing:25.671819px;}
.ws2a{word-spacing:25.689458px;}
.ws10d{word-spacing:25.701218px;}
.ws254{word-spacing:25.718857px;}
.ws161{word-spacing:25.824697px;}
.ws24e{word-spacing:25.889375px;}
.ws124{word-spacing:25.948175px;}
.ws147{word-spacing:25.965814px;}
.ws151{word-spacing:25.983454px;}
.ws1b5{word-spacing:26.018734px;}
.ws23b{word-spacing:26.083413px;}
.ws1eb{word-spacing:26.089294px;}
.ws19a{word-spacing:26.106934px;}
.ws1db{word-spacing:26.112814px;}
.wsd1{word-spacing:26.165733px;}
.ws123{word-spacing:26.206842px;}
.ws283{word-spacing:26.206893px;}
.ws1a7{word-spacing:26.212772px;}
.wsd3{word-spacing:26.230414px;}
.ws13a{word-spacing:26.353892px;}
.ws189{word-spacing:26.365643px;}
.ws5c{word-spacing:26.383291px;}
.wsd2{word-spacing:26.400931px;}
.wsd4{word-spacing:26.412691px;}
.ws280{word-spacing:26.418570px;}
.ws9d{word-spacing:26.471490px;}
.ws273{word-spacing:26.483274px;}
.ws7d{word-spacing:26.542049px;}
.ws275{word-spacing:26.577329px;}
.ws7e{word-spacing:26.671408px;}
.ws284{word-spacing:26.683167px;}
.ws15e{word-spacing:26.759606px;}
.ws41{word-spacing:26.830166px;}
.ws21b{word-spacing:26.918365px;}
.ws15d{word-spacing:26.924251px;}
.ws3f{word-spacing:26.965405px;}
.ws102{word-spacing:26.994805px;}
.ws188{word-spacing:27.012444px;}
.ws1fd{word-spacing:27.035964px;}
.ws18e{word-spacing:27.065363px;}
.ws18f{word-spacing:27.088884px;}
.ws1ed{word-spacing:27.100643px;}
.wsb6{word-spacing:27.124163px;}
.ws1b3{word-spacing:27.271161px;}
.ws57{word-spacing:27.347602px;}
.ws9a{word-spacing:27.388760px;}
.wseb{word-spacing:27.412281px;}
.wsa6{word-spacing:27.429920px;}
.wsed{word-spacing:27.465200px;}
.ws60{word-spacing:27.471080px;}
.ws286{word-spacing:27.553398px;}
.ws24f{word-spacing:27.670998px;}
.ws1bc{word-spacing:27.682757px;}
.ws6c{word-spacing:27.688637px;}
.ws1a2{word-spacing:27.712157px;}
.wsb2{word-spacing:27.735677px;}
.ws63{word-spacing:27.753317px;}
.ws1b4{word-spacing:27.859155px;}
.ws110{word-spacing:27.906196px;}
.wsec{word-spacing:27.970879px;}
.ws177{word-spacing:27.988514px;}
.ws28{word-spacing:28.006154px;}
.ws1a4{word-spacing:28.070864px;}
.wsdf{word-spacing:28.129632px;}
.ws10a{word-spacing:28.141393px;}
.ws135{word-spacing:28.194312px;}
.wsde{word-spacing:28.211938px;}
.ws108{word-spacing:28.217831px;}
.ws154{word-spacing:28.235472px;}
.ws1a3{word-spacing:28.247191px;}
.ws178{word-spacing:28.258992px;}
.wsa5{word-spacing:28.282511px;}
.ws53{word-spacing:28.364830px;}
.ws99{word-spacing:28.453030px;}
.ws144{word-spacing:28.764667px;}
.ws127{word-spacing:28.782306px;}
.ws255{word-spacing:28.788187px;}
.ws109{word-spacing:28.876374px;}
.ws6d{word-spacing:28.894025px;}
.ws201{word-spacing:28.929305px;}
.ws9c{word-spacing:29.023384px;}
.ws193{word-spacing:29.052784px;}
.ws64{word-spacing:29.170382px;}
.ws1f1{word-spacing:29.229182px;}
.ws158{word-spacing:29.264462px;}
.wsfe{word-spacing:29.293862px;}
.wse9{word-spacing:29.299740px;}
.ws150{word-spacing:29.393819px;}
.wsee{word-spacing:29.429100px;}
.wsba{word-spacing:29.470260px;}
.ws1ee{word-spacing:29.482019px;}
.ws285{word-spacing:29.534937px;}
.wsef{word-spacing:29.534978px;}
.ws173{word-spacing:29.640769px;}
.wsea{word-spacing:29.640778px;}
.wsf0{word-spacing:29.670178px;}
.ws143{word-spacing:29.687816px;}
.ws1cf{word-spacing:29.758377px;}
.ws11e{word-spacing:29.781896px;}
.ws274{word-spacing:29.799535px;}
.ws100{word-spacing:29.805415px;}
.ws90{word-spacing:29.805416px;}
.ws11f{word-spacing:29.928877px;}
.ws182{word-spacing:29.934775px;}
.ws1b2{word-spacing:29.981813px;}
.ws162{word-spacing:30.028854px;}
.ws8f{word-spacing:30.052373px;}
.ws1e1{word-spacing:30.064133px;}
.ws174{word-spacing:30.099414px;}
.ws136{word-spacing:30.122932px;}
.ws120{word-spacing:30.181731px;}
.ws14b{word-spacing:30.217012px;}
.ws17e{word-spacing:30.322851px;}
.ws40{word-spacing:30.369890px;}
.ws279{word-spacing:30.440450px;}
.ws91{word-spacing:30.505129px;}
.wsc5{word-spacing:30.616848px;}
.ws140{word-spacing:30.652127px;}
.ws1e8{word-spacing:30.710926px;}
.ws142{word-spacing:30.740326px;}
.ws17f{word-spacing:30.740346px;}
.ws141{word-spacing:30.740349px;}
.ws204{word-spacing:30.863806px;}
.ws167{word-spacing:30.957884px;}
.ws155{word-spacing:31.081362px;}
.wsd9{word-spacing:31.110761px;}
.ws1d1{word-spacing:31.322441px;}
.wsb9{word-spacing:31.416521px;}
.ws236{word-spacing:31.504718px;}
.ws5b{word-spacing:31.692877px;}
.ws166{word-spacing:31.839875px;}
.ws1a8{word-spacing:32.192671px;}
.ws288{word-spacing:32.316149px;}
.ws101{word-spacing:32.363191px;}
.ws3c{word-spacing:32.463149px;}
.ws42{word-spacing:32.492548px;}
.ws1bd{word-spacing:32.521947px;}
.ws1ef{word-spacing:32.845344px;}
.ws13e{word-spacing:32.957064px;}
.ws77{word-spacing:33.192261px;}
.ws97{word-spacing:33.286341px;}
.ws185{word-spacing:33.386299px;}
.wsa8{word-spacing:33.433338px;}
.ws186{word-spacing:33.450980px;}
.wsce{word-spacing:33.550936px;}
.ws243{word-spacing:33.727336px;}
.ws175{word-spacing:33.739095px;}
.ws32{word-spacing:33.833175px;}
.ws9e{word-spacing:33.980173px;}
.ws1ea{word-spacing:34.062492px;}
.ws176{word-spacing:34.091892px;}
.ws29{word-spacing:34.109532px;}
.ws244{word-spacing:34.180090px;}
.ws82{word-spacing:34.356490px;}
.ws131{word-spacing:34.368249px;}
.wsac{word-spacing:34.450570px;}
.ws79{word-spacing:34.468189px;}
.ws1f3{word-spacing:34.562287px;}
.ws95{word-spacing:34.591700px;}
.ws1a6{word-spacing:34.603447px;}
.ws78{word-spacing:34.621094px;}
.wsc9{word-spacing:34.668125px;}
.ws7b{word-spacing:34.738687px;}
.ws1f4{word-spacing:34.791606px;}
.ws81{word-spacing:34.885683px;}
.ws96{word-spacing:34.932724px;}
.ws250{word-spacing:35.109121px;}
.wse4{word-spacing:35.167920px;}
.ws65{word-spacing:35.203202px;}
.ws187{word-spacing:35.467799px;}
.ws107{word-spacing:35.585397px;}
.ws17d{word-spacing:35.767674px;}
.ws18c{word-spacing:35.773556px;}
.ws17b{word-spacing:36.185152px;}
.ws281{word-spacing:36.396829px;}
.ws157{word-spacing:36.661425px;}
.ws194{word-spacing:36.831945px;}
.ws1b8{word-spacing:37.125953px;}
.ws1ba{word-spacing:37.131821px;}
.ws146{word-spacing:37.202379px;}
.ws145{word-spacing:37.367019px;}
.ws1b9{word-spacing:37.408160px;}
.ws19d{word-spacing:37.425818px;}
.ws1ce{word-spacing:37.572817px;}
.ws159{word-spacing:37.684537px;}
.ws267{word-spacing:37.972652px;}
.ws98{word-spacing:38.031453px;}
.ws6a{word-spacing:38.484194px;}
.wsb3{word-spacing:38.554767px;}
.ws6b{word-spacing:38.684125px;}
.ws69{word-spacing:38.695884px;}
.ws24d{word-spacing:39.131001px;}
.wsa4{word-spacing:39.325038px;}
.wsd8{word-spacing:39.536718px;}
.ws153{word-spacing:39.595517px;}
.ws238{word-spacing:39.813073px;}
.wsb1{word-spacing:40.242309px;}
.wsb5{word-spacing:40.906741px;}
.wse5{word-spacing:40.959661px;}
.ws1e5{word-spacing:41.194858px;}
.wse6{word-spacing:41.206619px;}
.ws287{word-spacing:42.370846px;}
.wsb7{word-spacing:42.941201px;}
.ws1{word-spacing:43.200180px;}
.ws251{word-spacing:44.052511px;}
.ws168{word-spacing:44.205388px;}
.ws7f{word-spacing:44.240669px;}
.ws1e9{word-spacing:44.270069px;}
.ws16f{word-spacing:44.581706px;}
.ws224{word-spacing:45.628334px;}
.ws1f6{word-spacing:46.128129px;}
.ws9b{word-spacing:47.492274px;}
.wsb4{word-spacing:47.515795px;}
.ws1d5{word-spacing:49.032821px;}
.ws1d6{word-spacing:49.262189px;}
.ws172{word-spacing:49.538494px;}
.ws1cc{word-spacing:50.097089px;}
.ws74{word-spacing:53.248738px;}
.ws2a2{word-spacing:55.835909px;}
.ws148{word-spacing:59.193308px;}
.ws14a{word-spacing:59.340354px;}
.ws1d2{word-spacing:59.416794px;}
.ws1d0{word-spacing:60.598660px;}
.ws149{word-spacing:60.686850px;}
.ws67{word-spacing:61.274854px;}
.wsa0{word-spacing:65.708325px;}
.ws29f{word-spacing:90.939139px;}
._21{margin-left:-39.607275px;}
._22{margin-left:-38.584193px;}
._28{margin-left:-28.392207px;}
._27{margin-left:-20.945476px;}
._30{margin-left:-18.954487px;}
._18{margin-left:-17.773467px;}
._19{margin-left:-16.414096px;}
._2c{margin-left:-14.558739px;}
._1e{margin-left:-5.621223px;}
._15{margin-left:-3.998580px;}
._3{margin-left:-2.028020px;}
._7{margin-left:-1.020010px;}
._5{width:1.668017px;}
._1b{width:2.669495px;}
._2b{width:5.191975px;}
._0{width:8.923200px;}
._2f{width:10.169787px;}
._29{width:11.229687px;}
._2d{width:12.657240px;}
._12{width:13.765243px;}
._8{width:14.832148px;}
._4{width:16.734167px;}
._b{width:18.654942px;}
._1a{width:20.003996px;}
._e{width:21.295256px;}
._c{width:22.457377px;}
._1f{width:23.931354px;}
._6{width:24.990250px;}
._d{width:26.190634px;}
._11{width:28.031560px;}
._9{width:29.577984px;}
._13{width:30.583676px;}
._10{width:32.159278px;}
._f{width:33.950774px;}
._a{width:35.834241px;}
._14{width:37.055377px;}
._24{width:38.135611px;}
._20{width:39.168132px;}
._16{width:40.389330px;}
._1c{width:42.466841px;}
._2{width:44.625786px;}
._23{width:45.659620px;}
._2a{width:46.827843px;}
._26{width:50.204810px;}
._17{width:52.476351px;}
._2e{width:57.082460px;}
._25{width:61.662932px;}
._31{width:65.861121px;}
._32{width:1610.327030px;}
._1d{width:1634.816330px;}
._1{width:1956.177600px;}
.fc5{color:rgb(41,40,41);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(19,20,19);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.995200px;}
.fse{font-size:31.995000px;}
.fsc{font-size:39.194400px;}
.fsd{font-size:41.158800px;}
.fs9{font-size:41.999400px;}
.fsf{font-size:42.000000px;}
.fs3{font-size:43.996200px;}
.fs7{font-size:44.999400px;}
.fsa{font-size:47.999400px;}
.fsb{font-size:55.200600px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs10{font-size:65.999400px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y3f{bottom:65.394085px;}
.y3e{bottom:77.384914px;}
.y294{bottom:81.483300px;}
.y22a{bottom:89.291370px;}
.y271{bottom:89.291925px;}
.y113{bottom:89.292975px;}
.y183{bottom:89.293275px;}
.yc4{bottom:89.295960px;}
.y1a9{bottom:89.298660px;}
.y158{bottom:89.301795px;}
.y1d4{bottom:89.302245px;}
.y1b5{bottom:89.302680px;}
.y12a{bottom:89.303280px;}
.yf9{bottom:89.315745px;}
.yac{bottom:89.318295px;}
.y77{bottom:89.318895px;}
.y3d{bottom:89.375743px;}
.y293{bottom:93.483750px;}
.y3c{bottom:101.366571px;}
.y229{bottom:102.812565px;}
.y270{bottom:102.813120px;}
.y112{bottom:107.320875px;}
.y182{bottom:107.321175px;}
.yc3{bottom:107.323845px;}
.y1a8{bottom:107.326560px;}
.y157{bottom:107.329695px;}
.y1d3{bottom:107.330130px;}
.y1b4{bottom:107.330580px;}
.y129{bottom:107.331165px;}
.yf8{bottom:107.343645px;}
.yab{bottom:107.346180px;}
.y76{bottom:107.346780px;}
.y3b{bottom:113.357400px;}
.y228{bottom:116.333715px;}
.y26f{bottom:116.690370px;}
.y292{bottom:118.800300px;}
.y181{bottom:125.263815px;}
.yc2{bottom:125.266485px;}
.y1a7{bottom:125.269185px;}
.y156{bottom:125.272335px;}
.y1d2{bottom:125.272770px;}
.y1b3{bottom:125.273205px;}
.yf7{bottom:125.286285px;}
.y111{bottom:125.348775px;}
.y128{bottom:125.359065px;}
.yaa{bottom:125.374080px;}
.y75{bottom:125.374680px;}
.y26e{bottom:130.211565px;}
.y291{bottom:136.800450px;}
.y3a{bottom:138.782161px;}
.y10f{bottom:140.825100px;}
.y110{bottom:143.291400px;}
.y180{bottom:143.291700px;}
.y10e{bottom:143.292150px;}
.yc1{bottom:143.294385px;}
.y1a6{bottom:143.297085px;}
.y155{bottom:143.300235px;}
.y1d1{bottom:143.300670px;}
.y1b2{bottom:143.301105px;}
.y127{bottom:143.301705px;}
.yf6{bottom:143.314185px;}
.ya9{bottom:143.316720px;}
.y74{bottom:143.317320px;}
.y26d{bottom:143.647260px;}
.y35{bottom:146.071754px;}
.y39{bottom:152.304480px;}
.y290{bottom:154.799550px;}
.y26c{bottom:157.508205px;}
.y227{bottom:157.577355px;}
.y17f{bottom:161.319600px;}
.y10d{bottom:161.320050px;}
.yc0{bottom:161.322285px;}
.y1a5{bottom:161.324985px;}
.y154{bottom:161.328120px;}
.y1d0{bottom:161.328570px;}
.y1b1{bottom:161.329005px;}
.y126{bottom:161.329605px;}
.yf5{bottom:161.342070px;}
.ya8{bottom:161.344620px;}
.y73{bottom:161.345220px;}
.y34{bottom:164.020270px;}
.y38{bottom:165.826800px;}
.y12e{bottom:170.248800px;}
.y37{bottom:170.844150px;}
.y26b{bottom:171.029400px;}
.y28f{bottom:172.799700px;}
.y10c{bottom:176.881800px;}
.y17e{bottom:179.262900px;}
.ybf{bottom:179.264925px;}
.y1a4{bottom:179.267625px;}
.y153{bottom:179.270760px;}
.y1cf{bottom:179.271195px;}
.y1b0{bottom:179.271645px;}
.yf4{bottom:179.284710px;}
.y36{bottom:179.347950px;}
.y10b{bottom:179.356905px;}
.y125{bottom:179.357490px;}
.ya7{bottom:179.372505px;}
.y72{bottom:179.373105px;}
.y33{bottom:182.042286px;}
.y226{bottom:184.535370px;}
.y26a{bottom:184.890330px;}
.y28e{bottom:190.799850px;}
.ybe{bottom:197.292810px;}
.y1a3{bottom:197.295510px;}
.y152{bottom:197.298660px;}
.y1ce{bottom:197.299095px;}
.y10a{bottom:197.299530px;}
.y124{bottom:197.300130px;}
.yf3{bottom:197.312610px;}
.ya6{bottom:197.315145px;}
.y71{bottom:197.315745px;}
.y225{bottom:198.056565px;}
.y223{bottom:198.056670px;}
.y269{bottom:198.411525px;}
.y32{bottom:200.064303px;}
.y224{bottom:203.073915px;}
.y28d{bottom:208.800000px;}
.y220{bottom:211.577295px;}
.y222{bottom:211.577865px;}
.y268{bottom:211.932720px;}
.ybd{bottom:215.320710px;}
.y1a2{bottom:215.323410px;}
.y151{bottom:215.326560px;}
.y1cd{bottom:215.326995px;}
.y109{bottom:215.327430px;}
.y123{bottom:215.328030px;}
.yf2{bottom:215.340510px;}
.ya5{bottom:215.343045px;}
.y70{bottom:215.343645px;}
.y17d{bottom:215.345655px;}
.y221{bottom:216.510165px;}
.y27{bottom:217.983420px;}
.y31{bottom:218.012819px;}
.y21f{bottom:225.014115px;}
.y267{bottom:225.793665px;}
.y28c{bottom:226.800150px;}
.y21e{bottom:230.031450px;}
.ybc{bottom:233.263350px;}
.y1a1{bottom:233.266050px;}
.y150{bottom:233.269185px;}
.y1cc{bottom:233.269635px;}
.y1af{bottom:233.270070px;}
.yf1{bottom:233.283135px;}
.y108{bottom:233.355330px;}
.y122{bottom:233.355930px;}
.y1e6{bottom:233.366655px;}
.ya4{bottom:233.370945px;}
.y6f{bottom:233.371545px;}
.y17c{bottom:233.373555px;}
.y26{bottom:236.005436px;}
.y30{bottom:236.034836px;}
.y21d{bottom:238.536030px;}
.y266{bottom:239.229360px;}
.yba{bottom:248.825115px;}
.y296{bottom:248.900730px;}
.ybb{bottom:251.291250px;}
.yb9{bottom:251.291565px;}
.y1a0{bottom:251.293950px;}
.y14f{bottom:251.297085px;}
.y1cb{bottom:251.297520px;}
.y107{bottom:251.297970px;}
.y121{bottom:251.298570px;}
.y1e5{bottom:251.309295px;}
.yf0{bottom:251.311035px;}
.ya3{bottom:251.313585px;}
.y6e{bottom:251.314185px;}
.y17b{bottom:251.316195px;}
.y265{bottom:252.750555px;}
.y25{bottom:254.027452px;}
.y2f{bottom:254.056852px;}
.y21c{bottom:265.578420px;}
.y264{bottom:266.611500px;}
.y295{bottom:268.698900px;}
.yb8{bottom:269.319465px;}
.y19f{bottom:269.321835px;}
.y14e{bottom:269.324985px;}
.y1ca{bottom:269.325420px;}
.y106{bottom:269.325855px;}
.y120{bottom:269.326455px;}
.y1e4{bottom:269.337195px;}
.yef{bottom:269.338935px;}
.ya2{bottom:269.341470px;}
.y6d{bottom:269.342070px;}
.y17a{bottom:269.344095px;}
.y24{bottom:271.975969px;}
.y2e{bottom:272.005368px;}
.y21b{bottom:279.014115px;}
.y263{bottom:280.132695px;}
.y19e{bottom:287.264475px;}
.y14d{bottom:287.267625px;}
.y1c9{bottom:287.268060px;}
.y1ae{bottom:287.268495px;}
.yee{bottom:287.281575px;}
.y105{bottom:287.353755px;}
.y11f{bottom:287.354355px;}
.y1e3{bottom:287.365095px;}
.ya1{bottom:287.369370px;}
.y6c{bottom:287.369970px;}
.y179{bottom:287.371980px;}
.y23{bottom:289.997985px;}
.y2d{bottom:290.027385px;}
.y21a{bottom:292.535430px;}
.y262{bottom:293.653890px;}
.y19d{bottom:305.292375px;}
.y14c{bottom:305.295510px;}
.y1c8{bottom:305.295960px;}
.y104{bottom:305.296395px;}
.y11e{bottom:305.296995px;}
.y1e2{bottom:305.307720px;}
.yed{bottom:305.309460px;}
.ya0{bottom:305.312010px;}
.y6b{bottom:305.312610px;}
.y178{bottom:305.314620px;}
.yb6{bottom:306.991995px;}
.y261{bottom:307.514820px;}
.y22{bottom:308.020001px;}
.y2c{bottom:308.049401px;}
.y260{bottom:320.950515px;}
.yb4{bottom:323.234550px;}
.y19c{bottom:323.320275px;}
.y14b{bottom:323.323410px;}
.y1c7{bottom:323.323845px;}
.y103{bottom:323.324295px;}
.y11d{bottom:323.324895px;}
.y1e1{bottom:323.335620px;}
.yec{bottom:323.337360px;}
.y9f{bottom:323.339910px;}
.y6a{bottom:323.340510px;}
.y177{bottom:323.342520px;}
.y21{bottom:325.968518px;}
.y2b{bottom:325.997918px;}
.y219{bottom:329.276385px;}
.y25f{bottom:334.471710px;}
.yb5{bottom:340.072350px;}
.y19b{bottom:341.262915px;}
.y14a{bottom:341.266050px;}
.y1c6{bottom:341.266485px;}
.y102{bottom:341.266935px;}
.y11c{bottom:341.267520px;}
.y1e0{bottom:341.278260px;}
.yeb{bottom:341.280000px;}
.y9e{bottom:341.282535px;}
.y69{bottom:341.283135px;}
.y176{bottom:341.285160px;}
.y218{bottom:342.797580px;}
.y20{bottom:343.990534px;}
.y2a{bottom:344.019934px;}
.yb3{bottom:346.704900px;}
.yb7{bottom:346.705350px;}
.y25e{bottom:348.332655px;}
.y19a{bottom:359.291250px;}
.y149{bottom:359.293950px;}
.y1c5{bottom:359.294385px;}
.y101{bottom:359.294820px;}
.y11b{bottom:359.295420px;}
.y1df{bottom:359.306160px;}
.yea{bottom:359.307900px;}
.y9d{bottom:359.310435px;}
.y68{bottom:359.311035px;}
.y175{bottom:359.313060px;}
.y25d{bottom:361.853850px;}
.y1f{bottom:362.012550px;}
.y29{bottom:362.041950px;}
.y217{bottom:370.520580px;}
.y25c{bottom:375.375045px;}
.y148{bottom:377.321835px;}
.y1c4{bottom:377.322285px;}
.y100{bottom:377.322720px;}
.y11a{bottom:377.323320px;}
.y1de{bottom:377.334045px;}
.ye9{bottom:377.335800px;}
.y9c{bottom:377.338335px;}
.y67{bottom:377.338935px;}
.y174{bottom:377.340945px;}
.y1e{bottom:379.955850px;}
.y28{bottom:379.990467px;}
.y216{bottom:384.041775px;}
.y25b{bottom:389.235990px;}
.yb1{bottom:392.881800px;}
.yb2{bottom:395.262915px;}
.yb0{bottom:395.263350px;}
.y147{bottom:395.264475px;}
.y1c3{bottom:395.264925px;}
.yff{bottom:395.265360px;}
.y119{bottom:395.265960px;}
.y199{bottom:395.267925px;}
.y1dd{bottom:395.276685px;}
.ye8{bottom:395.278425px;}
.y9b{bottom:395.280975px;}
.y66{bottom:395.281575px;}
.y173{bottom:395.283585px;}
.y25a{bottom:402.671685px;}
.yae{bottom:410.825085px;}
.y215{bottom:411.764775px;}
.yaf{bottom:413.291250px;}
.y146{bottom:413.292375px;}
.y1c2{bottom:413.292810px;}
.yfe{bottom:413.293260px;}
.y118{bottom:413.293845px;}
.y198{bottom:413.295825px;}
.y1dc{bottom:413.304585px;}
.ye7{bottom:413.306325px;}
.y9a{bottom:413.308860px;}
.y65{bottom:413.309460px;}
.y172{bottom:413.311485px;}
.y259{bottom:416.532615px;}
.y214{bottom:425.285970px;}
.y1d{bottom:425.701845px;}
.y258{bottom:430.053810px;}
.y145{bottom:431.320275px;}
.y1c1{bottom:431.320710px;}
.yfd{bottom:431.321145px;}
.y117{bottom:431.321745px;}
.y197{bottom:431.323710px;}
.y1db{bottom:431.332485px;}
.ye6{bottom:431.334225px;}
.y99{bottom:431.336760px;}
.y64{bottom:431.337360px;}
.y171{bottom:431.339385px;}
.y257{bottom:443.575005px;}
.y1c{bottom:443.642025px;}
.y144{bottom:449.262915px;}
.y1c0{bottom:449.263350px;}
.yfc{bottom:449.263785px;}
.y116{bottom:449.264385px;}
.y196{bottom:449.266350px;}
.y1da{bottom:449.275125px;}
.ye5{bottom:449.276865px;}
.y98{bottom:449.279400px;}
.y63{bottom:449.280000px;}
.y170{bottom:449.282010px;}
.y213{bottom:453.093360px;}
.y256{bottom:457.096200px;}
.y212{bottom:466.529055px;}
.y143{bottom:467.291070px;}
.y1bf{bottom:467.291250px;}
.yfb{bottom:467.291685px;}
.y115{bottom:467.292285px;}
.y195{bottom:467.294250px;}
.y1d9{bottom:467.303010px;}
.ye4{bottom:467.304750px;}
.y97{bottom:467.307300px;}
.y62{bottom:467.307900px;}
.y16f{bottom:467.309910px;}
.y1b{bottom:469.157280px;}
.y255{bottom:470.872770px;}
.y211{bottom:480.050250px;}
.y254{bottom:484.393965px;}
.yfa{bottom:485.319585px;}
.y114{bottom:485.320185px;}
.y194{bottom:485.322150px;}
.y1d8{bottom:485.330910px;}
.ye3{bottom:485.332650px;}
.y96{bottom:485.335200px;}
.y61{bottom:485.335800px;}
.y16e{bottom:485.337810px;}
.y1a{bottom:487.187460px;}
.y210{bottom:493.571445px;}
.y253{bottom:497.915160px;}
.y1ad{bottom:503.262915px;}
.y193{bottom:503.264775px;}
.y1d7{bottom:503.273550px;}
.ye2{bottom:503.275290px;}
.y95{bottom:503.277825px;}
.y60{bottom:503.278425px;}
.y16d{bottom:503.280450px;}
.y19{bottom:505.217640px;}
.y20f{bottom:507.092625px;}
.y252{bottom:511.776105px;}
.y1be{bottom:521.291685px;}
.y192{bottom:521.292675px;}
.y142{bottom:521.295960px;}
.y1d6{bottom:521.301450px;}
.ye1{bottom:521.303190px;}
.y94{bottom:521.305725px;}
.y5f{bottom:521.306325px;}
.y16c{bottom:521.308335px;}
.y18{bottom:523.157820px;}
.y251{bottom:525.297285px;}
.y20e{bottom:534.815640px;}
.y12c{bottom:534.898080px;}
.y250{bottom:538.732995px;}
.y1bd{bottom:539.319585px;}
.y191{bottom:539.320575px;}
.y141{bottom:539.323845px;}
.y1ac{bottom:539.325765px;}
.y1d5{bottom:539.329335px;}
.ye0{bottom:539.331075px;}
.y93{bottom:539.333625px;}
.y5e{bottom:539.334225px;}
.y16b{bottom:539.336235px;}
.y17{bottom:541.188000px;}
.y20d{bottom:548.336835px;}
.y12b{bottom:549.949500px;}
.y24f{bottom:552.593925px;}
.y190{bottom:557.263215px;}
.y140{bottom:557.266485px;}
.y1ab{bottom:557.268405px;}
.ydf{bottom:557.273715px;}
.y92{bottom:557.276265px;}
.y5d{bottom:557.276865px;}
.y16a{bottom:557.278875px;}
.y16{bottom:559.218180px;}
.y20c{bottom:561.772530px;}
.y24e{bottom:566.115120px;}
.y18f{bottom:575.291100px;}
.y20b{bottom:575.293725px;}
.y13f{bottom:575.294385px;}
.y1aa{bottom:575.296305px;}
.yde{bottom:575.301615px;}
.y91{bottom:575.304150px;}
.y5c{bottom:575.304750px;}
.y169{bottom:575.306775px;}
.y15{bottom:577.158360px;}
.y24d{bottom:579.636315px;}
.y1f1{bottom:586.771110px;}
.y13e{bottom:593.322285px;}
.ydd{bottom:593.329515px;}
.y90{bottom:593.332050px;}
.y5b{bottom:593.332650px;}
.y168{bottom:593.334675px;}
.y24c{bottom:593.497260px;}
.y14{bottom:595.188540px;}
.y1f0{bottom:601.738515px;}
.y20a{bottom:603.016725px;}
.y24b{bottom:607.018455px;}
.y13d{bottom:611.264925px;}
.ydc{bottom:611.272155px;}
.y8f{bottom:611.274690px;}
.y5a{bottom:611.275290px;}
.y167{bottom:611.277300px;}
.y209{bottom:616.537920px;}
.y1ef{bottom:616.789935px;}
.y13{bottom:617.643765px;}
.y24a{bottom:620.455275px;}
.y1bb{bottom:629.205795px;}
.y13c{bottom:629.292810px;}
.ydb{bottom:629.300040px;}
.y8e{bottom:629.302590px;}
.y59{bottom:629.303190px;}
.y166{bottom:629.305200px;}
.y208{bottom:630.059115px;}
.y1ee{bottom:631.757340px;}
.y249{bottom:634.316205px;}
.y12{bottom:635.673945px;}
.y207{bottom:643.580310px;}
.y1ba{bottom:644.257215px;}
.y1ed{bottom:646.808760px;}
.y13b{bottom:647.320710px;}
.yda{bottom:647.327940px;}
.y8d{bottom:647.330475px;}
.y58{bottom:647.331075px;}
.y165{bottom:647.333100px;}
.y248{bottom:647.837400px;}
.y11{bottom:653.704125px;}
.y206{bottom:657.016005px;}
.y1b9{bottom:659.224620px;}
.y1eb{bottom:659.735235px;}
.y247{bottom:661.358595px;}
.y1ea{bottom:661.775835px;}
.y1ec{bottom:661.776165px;}
.y13a{bottom:665.263350px;}
.yd9{bottom:665.270580px;}
.y8c{bottom:665.273115px;}
.y57{bottom:665.273715px;}
.y164{bottom:665.275740px;}
.y10{bottom:671.644305px;}
.y1b8{bottom:674.276040px;}
.y246{bottom:675.219540px;}
.y1e9{bottom:676.743240px;}
.y139{bottom:683.291250px;}
.yd8{bottom:683.298480px;}
.y8b{bottom:683.301015px;}
.y56{bottom:683.301615px;}
.y163{bottom:683.303625px;}
.y205{bottom:684.823380px;}
.y245{bottom:688.740735px;}
.y1b7{bottom:689.243445px;}
.yf{bottom:689.674485px;}
.y1e8{bottom:691.794660px;}
.y204{bottom:698.259075px;}
.y138{bottom:701.319585px;}
.yd7{bottom:701.326365px;}
.y8a{bottom:701.328915px;}
.y55{bottom:701.329515px;}
.y162{bottom:701.331525px;}
.y244{bottom:702.601680px;}
.y1b6{bottom:704.210865px;}
.y28b{bottom:705.827985px;}
.y1e7{bottom:706.762065px;}
.ye{bottom:707.704665px;}
.y243{bottom:716.037375px;}
.y28a{bottom:719.263680px;}
.yd6{bottom:719.269005px;}
.y89{bottom:719.271555px;}
.y54{bottom:719.272155px;}
.y161{bottom:719.274165px;}
.yd{bottom:725.644845px;}
.y203{bottom:726.066465px;}
.y242{bottom:729.898305px;}
.y289{bottom:732.784875px;}
.y137{bottom:737.294730px;}
.yd5{bottom:737.296905px;}
.y88{bottom:737.299440px;}
.y53{bottom:737.300040px;}
.y160{bottom:737.302065px;}
.y202{bottom:739.587660px;}
.y241{bottom:743.419500px;}
.yc{bottom:743.675025px;}
.y288{bottom:746.306070px;}
.y201{bottom:753.023355px;}
.y136{bottom:755.322630px;}
.yd4{bottom:755.324805px;}
.y87{bottom:755.327340px;}
.y52{bottom:755.327940px;}
.y15f{bottom:755.329950px;}
.y240{bottom:756.940695px;}
.y287{bottom:759.827265px;}
.yb{bottom:761.705205px;}
.y23f{bottom:770.461890px;}
.y286{bottom:773.264085px;}
.y135{bottom:773.265270px;}
.yd3{bottom:773.267430px;}
.y86{bottom:773.269980px;}
.y51{bottom:773.270580px;}
.y15e{bottom:773.272590px;}
.ya{bottom:779.645385px;}
.y23e{bottom:784.322835px;}
.y285{bottom:786.785280px;}
.y200{bottom:788.655000px;}
.y134{bottom:791.293170px;}
.yd2{bottom:791.295330px;}
.y85{bottom:791.297880px;}
.y50{bottom:791.298480px;}
.y15d{bottom:791.300490px;}
.y9{bottom:797.675565px;}
.y23d{bottom:797.758530px;}
.y284{bottom:800.306475px;}
.y1ff{bottom:802.176195px;}
.y133{bottom:809.321055px;}
.yd1{bottom:809.323230px;}
.y84{bottom:809.325765px;}
.y4f{bottom:809.326365px;}
.y15c{bottom:809.328390px;}
.y23c{bottom:811.619475px;}
.y283{bottom:813.827670px;}
.y1fe{bottom:815.697390px;}
.y8{bottom:820.205790px;}
.y23b{bottom:825.140670px;}
.y132{bottom:827.263695px;}
.y282{bottom:827.264490px;}
.yd0{bottom:827.265870px;}
.y83{bottom:827.268405px;}
.y4e{bottom:827.269005px;}
.y15b{bottom:827.271030px;}
.y1fd{bottom:833.640900px;}
.y7{bottom:838.145970px;}
.y23a{bottom:839.001600px;}
.y281{bottom:840.785685px;}
.y131{bottom:845.291595px;}
.ycf{bottom:845.293770px;}
.y82{bottom:845.296305px;}
.y4d{bottom:845.296905px;}
.y15a{bottom:845.298915px;}
.y1fc{bottom:847.162095px;}
.y239{bottom:852.522795px;}
.y280{bottom:854.306880px;}
.y6{bottom:856.176150px;}
.y130{bottom:863.319495px;}
.yce{bottom:863.321655px;}
.y81{bottom:863.324205px;}
.y4c{bottom:863.324805px;}
.y159{bottom:863.326815px;}
.y238{bottom:866.383740px;}
.y27f{bottom:867.828060px;}
.y237{bottom:879.904935px;}
.y1fb{bottom:880.582500px;}
.ycd{bottom:881.264295px;}
.y27e{bottom:881.264880px;}
.y80{bottom:881.266830px;}
.y4b{bottom:881.267430px;}
.y5{bottom:883.133550px;}
.y236{bottom:893.340630px;}
.y27d{bottom:894.786075px;}
.ycc{bottom:899.292195px;}
.y7f{bottom:899.294730px;}
.y4a{bottom:899.295330px;}
.y18d{bottom:900.907800px;}
.y235{bottom:907.201575px;}
.y27c{bottom:908.307270px;}
.y18c{bottom:915.959205px;}
.ycb{bottom:917.320095px;}
.y7e{bottom:917.322630px;}
.y49{bottom:917.323230px;}
.y1fa{bottom:917.323245px;}
.y234{bottom:920.722770px;}
.y27b{bottom:921.828465px;}
.y18b{bottom:930.926625px;}
.y233{bottom:934.583700px;}
.yca{bottom:935.262720px;}
.y27a{bottom:935.264160px;}
.y7d{bottom:935.265270px;}
.y48{bottom:935.265870px;}
.y1f9{bottom:935.265885px;}
.y3{bottom:940.960350px;}
.y18a{bottom:945.978030px;}
.y232{bottom:948.104895px;}
.y4{bottom:948.273750px;}
.y279{bottom:948.785355px;}
.yc9{bottom:953.290980px;}
.y7c{bottom:953.293170px;}
.y47{bottom:953.293770px;}
.y1f8{bottom:953.293785px;}
.y189{bottom:960.945450px;}
.y231{bottom:961.541715px;}
.y278{bottom:962.306550px;}
.yc8{bottom:971.319495px;}
.y7b{bottom:971.321055px;}
.y46{bottom:971.321655px;}
.y1f7{bottom:971.321670px;}
.y230{bottom:975.402660px;}
.y277{bottom:975.827745px;}
.y188{bottom:975.911655px;}
.y2{bottom:976.932000px;}
.y22f{bottom:988.923855px;}
.yc7{bottom:989.262720px;}
.y276{bottom:989.263440px;}
.y7a{bottom:989.263695px;}
.y45{bottom:989.264295px;}
.y1f6{bottom:989.264310px;}
.y187{bottom:990.963075px;}
.y22e{bottom:1002.445050px;}
.y275{bottom:1002.784635px;}
.y186{bottom:1005.930480px;}
.y79{bottom:1007.291595px;}
.y44{bottom:1007.292195px;}
.y1f5{bottom:1007.292210px;}
.y274{bottom:1016.305830px;}
.y22d{bottom:1016.305980px;}
.y185{bottom:1020.981900px;}
.y78{bottom:1025.319495px;}
.y43{bottom:1025.320095px;}
.y1f4{bottom:1025.320110px;}
.yc6{bottom:1025.320680px;}
.y273{bottom:1029.827025px;}
.y22c{bottom:1029.827175px;}
.y1{bottom:1033.908300px;}
.y184{bottom:1035.949305px;}
.y42{bottom:1043.262720px;}
.y1f3{bottom:1043.262735px;}
.y22b{bottom:1043.262885px;}
.yc5{bottom:1043.263320px;}
.y41{bottom:1112.827987px;}
.y12f{bottom:1127.787600px;}
.y1bc{bottom:1127.788740px;}
.y1f2{bottom:1127.789130px;}
.y12d{bottom:1127.790240px;}
.y18e{bottom:1127.791365px;}
.y40{bottom:1127.791800px;}
.yad{bottom:1127.791815px;}
.y272{bottom:1127.791830px;}
.ha{height:21.626539px;}
.h15{height:22.716450px;}
.hf{height:28.376746px;}
.h12{height:29.798971px;}
.hb{height:30.281567px;}
.h13{height:30.869100px;}
.h5{height:31.721260px;}
.h16{height:32.130000px;}
.h9{height:32.444567px;}
.hd{height:34.607567px;}
.he{height:39.799633px;}
.hc{height:42.287471px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557800px;}
.h4{height:47.586433px;}
.h17{height:49.631549px;}
.h14{height:54.290371px;}
.h11{height:55.783020px;}
.h2{height:56.238000px;}
.h10{height:84.072166px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.xb{left:89.036250px;}
.x1{left:91.077150px;}
.x1f{left:92.947950px;}
.x8{left:94.818900px;}
.xd{left:97.030035px;}
.x17{left:103.578000px;}
.xe{left:106.979550px;}
.x18{left:114.037800px;}
.xf{left:119.395200px;}
.x21{left:123.222000px;}
.x22{left:127.303950px;}
.x1b{left:155.622000px;}
.x3{left:166.847250px;}
.x1c{left:167.952750px;}
.x4{left:172.459800px;}
.x12{left:175.351200px;}
.x14{left:203.754495px;}
.x20{left:207.921300px;}
.x13{left:210.897600px;}
.x15{left:225.949500px;}
.x16{left:250.185750px;}
.x5{left:254.692800px;}
.xc{left:270.680250px;}
.x6{left:280.204650px;}
.x1d{left:291.514965px;}
.x19{left:301.889700px;}
.x1e{left:305.036115px;}
.x1a{left:315.836100px;}
.x10{left:383.782650px;}
.x11{left:391.266135px;}
.x7{left:417.118050px;}
.x9{left:457.077854px;}
.xa{left:469.043532px;}
.x25{left:477.596820px;}
.x23{left:479.621655px;}
.x24{left:485.548035px;}
@media print{
.v1{vertical-align:-7.859733pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.770133pt;}
.v3{vertical-align:29.028800pt;}
.v2{vertical-align:36.890133pt;}
.v4{vertical-align:49.584907pt;}
.ls39{letter-spacing:-1.771822pt;}
.ls37{letter-spacing:-1.709103pt;}
.ls30{letter-spacing:-1.698649pt;}
.ls3a{letter-spacing:-1.693423pt;}
.ls35{letter-spacing:-1.682969pt;}
.ls49{letter-spacing:-1.672516pt;}
.ls46{letter-spacing:-1.662063pt;}
.ls36{letter-spacing:-1.656836pt;}
.ls45{letter-spacing:-1.651610pt;}
.ls3b{letter-spacing:-1.646383pt;}
.ls33{letter-spacing:-1.641157pt;}
.ls3d{letter-spacing:-1.635930pt;}
.ls3c{letter-spacing:-1.630703pt;}
.ls34{letter-spacing:-1.625477pt;}
.ls4a{letter-spacing:-1.620250pt;}
.ls4c{letter-spacing:-1.615024pt;}
.ls48{letter-spacing:-1.609797pt;}
.ls3e{letter-spacing:-1.604570pt;}
.ls40{letter-spacing:-1.599344pt;}
.ls38{letter-spacing:-1.594117pt;}
.ls42{letter-spacing:-1.583664pt;}
.ls31{letter-spacing:-1.578437pt;}
.ls3f{letter-spacing:-1.573211pt;}
.ls4b{letter-spacing:-1.562757pt;}
.ls43{letter-spacing:-1.541851pt;}
.ls32{letter-spacing:-1.536624pt;}
.ls44{letter-spacing:-1.510491pt;}
.ls47{letter-spacing:-1.505265pt;}
.ls81{letter-spacing:-1.203185pt;}
.ls84{letter-spacing:-1.143452pt;}
.ls7e{letter-spacing:-1.113586pt;}
.ls80{letter-spacing:-1.083720pt;}
.ls83{letter-spacing:-1.049587pt;}
.ls85{letter-spacing:-1.036787pt;}
.ls95{letter-spacing:-1.034869pt;}
.ls82{letter-spacing:-1.032520pt;}
.ls7f{letter-spacing:-1.028254pt;}
.lsb6{letter-spacing:-1.011987pt;}
.ls96{letter-spacing:-1.008736pt;}
.ls91{letter-spacing:-1.003505pt;}
.ls92{letter-spacing:-0.987830pt;}
.ls90{letter-spacing:-0.982603pt;}
.ls93{letter-spacing:-0.977377pt;}
.lsa3{letter-spacing:-0.956470pt;}
.ls8c{letter-spacing:-0.946017pt;}
.ls94{letter-spacing:-0.940790pt;}
.ls8e{letter-spacing:-0.935564pt;}
.ls8b{letter-spacing:-0.925111pt;}
.ls8d{letter-spacing:-0.914657pt;}
.ls8f{letter-spacing:-0.831032pt;}
.ls97{letter-spacing:-0.804898pt;}
.lsf{letter-spacing:-0.741341pt;}
.ls2b{letter-spacing:-0.731726pt;}
.ls11{letter-spacing:-0.720007pt;}
.lsb2{letter-spacing:-0.699991pt;}
.ls12{letter-spacing:-0.677340pt;}
.ls67{letter-spacing:-0.642873pt;}
.ls4e{letter-spacing:-0.574927pt;}
.lsb7{letter-spacing:-0.007467pt;}
.lse{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.003733pt;}
.ls29{letter-spacing:0.026167pt;}
.ls6e{letter-spacing:0.031371pt;}
.ls6d{letter-spacing:0.036544pt;}
.ls66{letter-spacing:0.036597pt;}
.lsb3{letter-spacing:0.043995pt;}
.lsb0{letter-spacing:0.050807pt;}
.lsaf{letter-spacing:0.051986pt;}
.lsae{letter-spacing:0.052042pt;}
.lsb4{letter-spacing:0.083975pt;}
.ls73{letter-spacing:0.104545pt;}
.ls5e{letter-spacing:0.135939pt;}
.ls87{letter-spacing:0.136533pt;}
.ls58{letter-spacing:0.145889pt;}
.lsc{letter-spacing:0.156798pt;}
.ls6a{letter-spacing:0.172480pt;}
.ls88{letter-spacing:0.221858pt;}
.ls2{letter-spacing:0.266669pt;}
.lsa4{letter-spacing:0.388262pt;}
.ls2f{letter-spacing:0.402449pt;}
.ls9c{letter-spacing:0.426661pt;}
.lsaa{letter-spacing:0.435195pt;}
.ls2e{letter-spacing:0.444262pt;}
.lsa9{letter-spacing:0.447994pt;}
.lsa7{letter-spacing:0.456528pt;}
.ls4{letter-spacing:0.458671pt;}
.lsa6{letter-spacing:0.460794pt;}
.ls79{letter-spacing:0.465061pt;}
.ls9e{letter-spacing:0.473594pt;}
.ls8{letter-spacing:0.474671pt;}
.ls2c{letter-spacing:0.475622pt;}
.ls19{letter-spacing:0.475627pt;}
.ls9a{letter-spacing:0.477861pt;}
.lsab{letter-spacing:0.479994pt;}
.lsa{letter-spacing:0.480005pt;}
.ls15{letter-spacing:0.480855pt;}
.ls78{letter-spacing:0.482127pt;}
.ls3{letter-spacing:0.485338pt;}
.lsb{letter-spacing:0.501338pt;}
.lsa2{letter-spacing:0.507727pt;}
.ls5{letter-spacing:0.517339pt;}
.ls1b{letter-spacing:0.517435pt;}
.ls7{letter-spacing:0.522672pt;}
.lsac{letter-spacing:0.523993pt;}
.lsa0{letter-spacing:0.524791pt;}
.ls1a{letter-spacing:0.527888pt;}
.ls1{letter-spacing:0.528005pt;}
.ls16{letter-spacing:0.533115pt;}
.ls24{letter-spacing:0.538341pt;}
.ls6{letter-spacing:0.538672pt;}
.ls21{letter-spacing:0.543568pt;}
.ls9{letter-spacing:0.544005pt;}
.ls1c{letter-spacing:0.548794pt;}
.lsa8{letter-spacing:0.550393pt;}
.ls20{letter-spacing:0.554021pt;}
.ls61{letter-spacing:0.559248pt;}
.ls9d{letter-spacing:0.560268pt;}
.ls26{letter-spacing:0.564474pt;}
.ls27{letter-spacing:0.569701pt;}
.ls14{letter-spacing:0.574927pt;}
.ls17{letter-spacing:0.580154pt;}
.lsa5{letter-spacing:0.580259pt;}
.ls63{letter-spacing:0.585381pt;}
.ls22{letter-spacing:0.590607pt;}
.ls23{letter-spacing:0.595834pt;}
.ls69{letter-spacing:0.606282pt;}
.ls62{letter-spacing:0.616740pt;}
.ls10{letter-spacing:0.629340pt;}
.ls4d{letter-spacing:0.632420pt;}
.ls18{letter-spacing:0.705612pt;}
.ls64{letter-spacing:0.716046pt;}
.ls2d{letter-spacing:0.778765pt;}
.ls0{letter-spacing:1.088011pt;}
.ls5a{letter-spacing:2.293929pt;}
.ls57{letter-spacing:3.781197pt;}
.ls5b{letter-spacing:4.084077pt;}
.ls7a{letter-spacing:10.367878pt;}
.ls7b{letter-spacing:10.576931pt;}
.ls77{letter-spacing:10.862745pt;}
.ls76{letter-spacing:11.106018pt;}
.ls59{letter-spacing:11.587397pt;}
.ls5c{letter-spacing:11.759877pt;}
.lsad{letter-spacing:12.003802pt;}
.ls75{letter-spacing:12.833973pt;}
.ls1e{letter-spacing:13.024727pt;}
.ls1f{letter-spacing:13.097876pt;}
.ls1d{letter-spacing:13.573531pt;}
.ls8a{letter-spacing:13.704180pt;}
.ls41{letter-spacing:13.709407pt;}
.ls54{letter-spacing:14.540435pt;}
.ls55{letter-spacing:14.613612pt;}
.ls53{letter-spacing:14.639777pt;}
.ls72{letter-spacing:15.590987pt;}
.ls89{letter-spacing:15.590988pt;}
.ls2a{letter-spacing:15.611900pt;}
.ls28{letter-spacing:15.820970pt;}
.ls74{letter-spacing:16.312265pt;}
.lsb1{letter-spacing:16.458027pt;}
.ls9f{letter-spacing:17.369387pt;}
.ls99{letter-spacing:17.454711pt;}
.ls9b{letter-spacing:17.514425pt;}
.ls13{letter-spacing:17.634570pt;}
.lsa1{letter-spacing:17.672267pt;}
.ls7c{letter-spacing:18.010910pt;}
.lsd{letter-spacing:18.554477pt;}
.ls52{letter-spacing:18.591062pt;}
.ls51{letter-spacing:18.638140pt;}
.ls50{letter-spacing:18.894209pt;}
.ls60{letter-spacing:19.448223pt;}
.ls6f{letter-spacing:21.037120pt;}
.ls65{letter-spacing:21.638187pt;}
.ls25{letter-spacing:21.737477pt;}
.ls98{letter-spacing:21.904739pt;}
.ls5f{letter-spacing:22.343771pt;}
.ls86{letter-spacing:22.359465pt;}
.ls70{letter-spacing:22.772330pt;}
.ls71{letter-spacing:22.772383pt;}
.ls7d{letter-spacing:24.361245pt;}
.ls6b{letter-spacing:24.889130pt;}
.ls6c{letter-spacing:25.192276pt;}
.ls4f{letter-spacing:26.195793pt;}
.ls68{letter-spacing:35.718676pt;}
.ls56{letter-spacing:107.912411pt;}
.ls5d{letter-spacing:470.929120pt;}
.ws15b{word-spacing:-35.770942pt;}
.ws1fc{word-spacing:-24.413511pt;}
.ws1f9{word-spacing:-18.063176pt;}
.ws2b9{word-spacing:-16.512960pt;}
.ws222{word-spacing:-15.643254pt;}
.ws86{word-spacing:-13.761673pt;}
.ws234{word-spacing:-13.756446pt;}
.ws62{word-spacing:-0.831032pt;}
.ws15a{word-spacing:-0.768312pt;}
.ws15c{word-spacing:-0.616740pt;}
.ws295{word-spacing:-0.588708pt;}
.ws61{word-spacing:-0.527888pt;}
.ws27{word-spacing:-0.054933pt;}
.ws36{word-spacing:-0.052266pt;}
.wsa1{word-spacing:-0.049067pt;}
.ws51{word-spacing:-0.042666pt;}
.ws44{word-spacing:-0.039999pt;}
.ws4c{word-spacing:-0.037333pt;}
.ws11d{word-spacing:-0.036586pt;}
.ws52{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.522661pt;}
.ws2c9{word-spacing:0.659991pt;}
.ws240{word-spacing:0.778765pt;}
.ws28d{word-spacing:0.904204pt;}
.ws2eb{word-spacing:0.971987pt;}
.ws24b{word-spacing:0.982603pt;}
.ws7a{word-spacing:1.573211pt;}
.ws72{word-spacing:1.588890pt;}
.ws2ba{word-spacing:9.575872pt;}
.ws2f0{word-spacing:9.595872pt;}
.ws2c8{word-spacing:9.631872pt;}
.ws2b3{word-spacing:9.651871pt;}
.ws2ea{word-spacing:9.675871pt;}
.ws2ec{word-spacing:9.695870pt;}
.ws2bb{word-spacing:9.719870pt;}
.ws2dc{word-spacing:9.727870pt;}
.ws2dd{word-spacing:9.807869pt;}
.ws2f4{word-spacing:9.811869pt;}
.ws2c7{word-spacing:9.843869pt;}
.ws2f3{word-spacing:9.919868pt;}
.ws2ed{word-spacing:9.923868pt;}
.ws2b4{word-spacing:10.091865pt;}
.ws2b2{word-spacing:10.127865pt;}
.ws2ce{word-spacing:10.171864pt;}
.ws2c6{word-spacing:10.187864pt;}
.ws25c{word-spacing:10.256938pt;}
.ws211{word-spacing:10.376404pt;}
.ws2ef{word-spacing:10.399861pt;}
.ws212{word-spacing:10.453203pt;}
.ws25f{word-spacing:10.457470pt;}
.ws262{word-spacing:10.478803pt;}
.ws260{word-spacing:10.504402pt;}
.ws2cd{word-spacing:10.507860pt;}
.ws25e{word-spacing:10.534268pt;}
.ws261{word-spacing:10.559868pt;}
.ws43{word-spacing:10.563859pt;}
.ws210{word-spacing:10.965196pt;}
.ws4e{word-spacing:11.001976pt;}
.ws25d{word-spacing:11.016396pt;}
.ws48{word-spacing:11.065442pt;}
.ws4a{word-spacing:11.113975pt;}
.ws4d{word-spacing:11.136374pt;}
.ws49{word-spacing:11.140108pt;}
.ws4b{word-spacing:11.281972pt;}
.ws2d8{word-spacing:11.687845pt;}
.ws2d7{word-spacing:11.695844pt;}
.ws2d3{word-spacing:11.703844pt;}
.ws2e4{word-spacing:11.707844pt;}
.ws2c1{word-spacing:11.715843pt;}
.ws2e2{word-spacing:11.739843pt;}
.ws2cf{word-spacing:11.743844pt;}
.ws2db{word-spacing:11.747844pt;}
.ws2df{word-spacing:11.751843pt;}
.ws2ca{word-spacing:11.755843pt;}
.ws2f1{word-spacing:11.759843pt;}
.ws2c0{word-spacing:11.763844pt;}
.ws2e8{word-spacing:11.767843pt;}
.ws2cc{word-spacing:11.771843pt;}
.ws2c3{word-spacing:11.775843pt;}
.ws2d4{word-spacing:11.787843pt;}
.ws2d6{word-spacing:11.795842pt;}
.ws2f5{word-spacing:11.799843pt;}
.ws2e9{word-spacing:11.807843pt;}
.ws2d9{word-spacing:11.811842pt;}
.ws2c2{word-spacing:11.815842pt;}
.ws2da{word-spacing:11.819842pt;}
.ws2d5{word-spacing:11.827843pt;}
.ws2d0{word-spacing:11.831842pt;}
.ws2e0{word-spacing:11.835842pt;}
.ws2c4{word-spacing:11.847842pt;}
.ws2ee{word-spacing:11.851842pt;}
.ws2e5{word-spacing:11.855842pt;}
.ws47{word-spacing:11.859842pt;}
.ws2f2{word-spacing:11.879842pt;}
.ws2a8{word-spacing:11.883842pt;}
.ws2c5{word-spacing:11.887842pt;}
.ws2e3{word-spacing:11.899841pt;}
.ws2b7{word-spacing:11.915841pt;}
.ws2e1{word-spacing:11.919841pt;}
.ws2de{word-spacing:11.923841pt;}
.ws2bd{word-spacing:11.927841pt;}
.ws2af{word-spacing:11.939841pt;}
.ws2b1{word-spacing:11.951840pt;}
.ws2a4{word-spacing:11.967841pt;}
.ws2a9{word-spacing:11.971840pt;}
.ws2ac{word-spacing:11.991840pt;}
.ws2b6{word-spacing:12.003840pt;}
.ws2cb{word-spacing:12.011839pt;}
.ws2d2{word-spacing:12.031839pt;}
.ws46{word-spacing:12.055839pt;}
.ws2ae{word-spacing:12.067839pt;}
.ws2bf{word-spacing:12.071839pt;}
.ws2e6{word-spacing:12.083839pt;}
.ws2d1{word-spacing:12.095838pt;}
.ws2f6{word-spacing:12.107839pt;}
.ws2a7{word-spacing:12.115838pt;}
.ws2b0{word-spacing:12.127839pt;}
.ws45{word-spacing:12.163838pt;}
.ws2b5{word-spacing:12.183838pt;}
.ws2ad{word-spacing:12.187838pt;}
.ws2e7{word-spacing:12.207838pt;}
.ws2ab{word-spacing:12.223837pt;}
.wse7{word-spacing:12.228103pt;}
.ws4f{word-spacing:12.245180pt;}
.ws259{word-spacing:12.253714pt;}
.ws1af{word-spacing:12.275047pt;}
.ws2bc{word-spacing:12.279836pt;}
.ws2aa{word-spacing:12.283831pt;}
.ws28f{word-spacing:12.300646pt;}
.ws20e{word-spacing:12.304912pt;}
.ws1b1{word-spacing:12.309179pt;}
.ws1ae{word-spacing:12.334780pt;}
.ws2b8{word-spacing:12.339835pt;}
.ws25b{word-spacing:12.373179pt;}
.ws2be{word-spacing:12.383835pt;}
.ws1b0{word-spacing:12.394512pt;}
.ws217{word-spacing:12.398778pt;}
.ws21a{word-spacing:12.432912pt;}
.ws290{word-spacing:12.441445pt;}
.ws218{word-spacing:12.458511pt;}
.ws20c{word-spacing:12.471310pt;}
.ws50{word-spacing:12.501177pt;}
.ws20b{word-spacing:12.505444pt;}
.ws2f7{word-spacing:12.535310pt;}
.ws257{word-spacing:12.560909pt;}
.ws20f{word-spacing:12.582242pt;}
.ws215{word-spacing:12.586509pt;}
.ws25a{word-spacing:12.620642pt;}
.ws20d{word-spacing:12.633443pt;}
.ws28e{word-spacing:12.641975pt;}
.ws1ac{word-spacing:12.650509pt;}
.ws219{word-spacing:12.650540pt;}
.wse8{word-spacing:12.667575pt;}
.ws258{word-spacing:12.710241pt;}
.ws1ad{word-spacing:12.774240pt;}
.ws269{word-spacing:12.841789pt;}
.ws216{word-spacing:12.940655pt;}
.ws271{word-spacing:12.956794pt;}
.ws26a{word-spacing:12.967247pt;}
.ws235{word-spacing:12.972454pt;}
.ws272{word-spacing:13.045627pt;}
.ws119{word-spacing:13.103118pt;}
.ws207{word-spacing:13.160612pt;}
.ws233{word-spacing:13.181513pt;}
.ws54{word-spacing:13.223332pt;}
.wsbc{word-spacing:13.233785pt;}
.ws8{word-spacing:13.269466pt;}
.ws1e{word-spacing:13.274799pt;}
.ws10{word-spacing:13.290800pt;}
.ws20{word-spacing:13.306800pt;}
.ws270{word-spacing:13.385357pt;}
.ws22{word-spacing:13.397467pt;}
.ws11{word-spacing:13.408134pt;}
.ws12{word-spacing:13.445468pt;}
.ws1f{word-spacing:13.456135pt;}
.ws14{word-spacing:13.498802pt;}
.ws13{word-spacing:13.509468pt;}
.ws23{word-spacing:13.573469pt;}
.ws239{word-spacing:13.688500pt;}
.ws21{word-spacing:13.696137pt;}
.ws7{word-spacing:13.728137pt;}
.ws1b{word-spacing:13.776138pt;}
.ws27a{word-spacing:13.777353pt;}
.ws22e{word-spacing:13.798259pt;}
.ws229{word-spacing:13.803486pt;}
.ws115{word-spacing:13.949808pt;}
.ws26f{word-spacing:13.949830pt;}
.ws1c{word-spacing:14.026807pt;}
.ws114{word-spacing:14.064826pt;}
.ws1a{word-spacing:14.074807pt;}
.ws116{word-spacing:14.101444pt;}
.ws112{word-spacing:14.514306pt;}
.ws11a{word-spacing:14.519532pt;}
.ws1c6{word-spacing:14.553332pt;}
.ws208{word-spacing:14.622026pt;}
.ws228{word-spacing:14.646559pt;}
.ws200{word-spacing:14.660650pt;}
.ws10e{word-spacing:14.681556pt;}
.ws1bb{word-spacing:14.685812pt;}
.ws24{word-spacing:14.688147pt;}
.ws1c7{word-spacing:14.690719pt;}
.ws22f{word-spacing:14.786089pt;}
.ws133{word-spacing:14.818294pt;}
.ws1d{word-spacing:14.880149pt;}
.ws28c{word-spacing:14.901074pt;}
.ws106{word-spacing:14.937660pt;}
.ws23a{word-spacing:14.955682pt;}
.ws24a{word-spacing:14.979474pt;}
.ws230{word-spacing:14.984701pt;}
.ws2d{word-spacing:15.000380pt;}
.ws223{word-spacing:15.026513pt;}
.ws245{word-spacing:15.042193pt;}
.ws2a6{word-spacing:15.191797pt;}
.wsfc{word-spacing:15.225124pt;}
.wse3{word-spacing:15.235578pt;}
.ws232{word-spacing:15.240805pt;}
.ws26b{word-spacing:15.287844pt;}
.ws221{word-spacing:15.319204pt;}
.ws23d{word-spacing:15.366243pt;}
.ws1aa{word-spacing:15.387149pt;}
.wse2{word-spacing:15.392376pt;}
.ws3d{word-spacing:15.402829pt;}
.ws26{word-spacing:15.424154pt;}
.ws152{word-spacing:15.434189pt;}
.wsdd{word-spacing:15.449870pt;}
.ws227{word-spacing:15.465548pt;}
.ws9{word-spacing:15.509488pt;}
.ws2a5{word-spacing:15.519793pt;}
.ws25{word-spacing:15.530822pt;}
.ws181{word-spacing:15.543948pt;}
.ws1f5{word-spacing:15.559628pt;}
.ws197{word-spacing:15.564854pt;}
.ws198{word-spacing:15.601406pt;}
.ws276{word-spacing:15.601441pt;}
.ws231{word-spacing:15.606668pt;}
.ws1c3{word-spacing:15.643253pt;}
.ws28b{word-spacing:15.653707pt;}
.ws83{word-spacing:15.679839pt;}
.wsd6{word-spacing:15.685067pt;}
.ws263{word-spacing:15.690294pt;}
.ws1c0{word-spacing:15.705973pt;}
.wsaf{word-spacing:15.721652pt;}
.ws2a0{word-spacing:15.726879pt;}
.ws264{word-spacing:15.737333pt;}
.ws3b{word-spacing:15.742559pt;}
.ws2a1{word-spacing:15.747785pt;}
.ws80{word-spacing:15.753013pt;}
.ws1ab{word-spacing:15.768693pt;}
.ws33{word-spacing:15.773919pt;}
.ws1e2{word-spacing:15.784372pt;}
.ws199{word-spacing:15.805278pt;}
.ws196{word-spacing:15.810505pt;}
.ws226{word-spacing:15.826180pt;}
.ws8b{word-spacing:15.841866pt;}
.ws26e{word-spacing:15.867999pt;}
.ws1c1{word-spacing:15.868022pt;}
.ws7c{word-spacing:15.904584pt;}
.ws265{word-spacing:15.946398pt;}
.ws1e3{word-spacing:15.967304pt;}
.wsd5{word-spacing:15.988211pt;}
.ws1c2{word-spacing:16.019538pt;}
.ws8d{word-spacing:16.056156pt;}
.wsc8{word-spacing:16.066609pt;}
.wsa2{word-spacing:16.108423pt;}
.ws29a{word-spacing:16.110732pt;}
.ws5f{word-spacing:16.124102pt;}
.ws130{word-spacing:16.160689pt;}
.ws1c8{word-spacing:16.165915pt;}
.ws59{word-spacing:16.171141pt;}
.ws105{word-spacing:16.192048pt;}
.ws1bf{word-spacing:16.212955pt;}
.ws297{word-spacing:16.230170pt;}
.ws292{word-spacing:16.255797pt;}
.ws220{word-spacing:16.291354pt;}
.ws29d{word-spacing:16.298463pt;}
.ws213{word-spacing:16.319796pt;}
.ws21f{word-spacing:16.322738pt;}
.ws8c{word-spacing:16.338393pt;}
.ws214{word-spacing:16.383795pt;}
.ws29c{word-spacing:16.417928pt;}
.ws296{word-spacing:16.434994pt;}
.ws2a3{word-spacing:16.441546pt;}
.ws298{word-spacing:16.443528pt;}
.ws291{word-spacing:16.456328pt;}
.ws293{word-spacing:16.460594pt;}
.ws282{word-spacing:16.469059pt;}
.ws11c{word-spacing:16.491518pt;}
.ws16e{word-spacing:16.516098pt;}
.ws5{word-spacing:16.533499pt;}
.ws28a{word-spacing:16.534933pt;}
.wsa9{word-spacing:16.552685pt;}
.ws12f{word-spacing:16.578827pt;}
.ws1cd{word-spacing:16.610177pt;}
.ws294{word-spacing:16.614192pt;}
.ws58{word-spacing:16.631084pt;}
.ws137{word-spacing:16.641536pt;}
.ws183{word-spacing:16.667669pt;}
.ws132{word-spacing:16.677761pt;}
.wsaa{word-spacing:16.678124pt;}
.ws23f{word-spacing:16.688576pt;}
.ws299{word-spacing:16.703792pt;}
.wsb0{word-spacing:16.714709pt;}
.ws117{word-spacing:16.730371pt;}
.ws206{word-spacing:16.798335pt;}
.ws27f{word-spacing:16.814016pt;}
.ws23c{word-spacing:16.840148pt;}
.ws84{word-spacing:16.881961pt;}
.ws85{word-spacing:16.897640pt;}
.ws1f7{word-spacing:16.944681pt;}
.ws170{word-spacing:16.965582pt;}
.ws171{word-spacing:16.976040pt;}
.ws138{word-spacing:16.981266pt;}
.wsfd{word-spacing:17.017854pt;}
.ws128{word-spacing:17.038759pt;}
.ws1a5{word-spacing:17.054439pt;}
.ws5e{word-spacing:17.075346pt;}
.ws118{word-spacing:17.101479pt;}
.ws184{word-spacing:17.117159pt;}
.ws22a{word-spacing:17.206012pt;}
.ws277{word-spacing:17.273957pt;}
.ws241{word-spacing:17.352363pt;}
.ws20a{word-spacing:17.373262pt;}
.ws56{word-spacing:17.404622pt;}
.ws242{word-spacing:17.441203pt;}
.ws4{word-spacing:17.447625pt;}
.ws29e{word-spacing:17.476049pt;}
.ws121{word-spacing:17.514382pt;}
.ws1c5{word-spacing:17.545741pt;}
.ws3{word-spacing:17.576693pt;}
.ws76{word-spacing:17.577101pt;}
.ws1e7{word-spacing:17.582327pt;}
.ws55{word-spacing:17.587554pt;}
.ws38{word-spacing:17.618914pt;}
.ws1be{word-spacing:17.650274pt;}
.ws1fa{word-spacing:17.681632pt;}
.ws163{word-spacing:17.692086pt;}
.ws29b{word-spacing:17.693672pt;}
.ws5a{word-spacing:17.707765pt;}
.ws2{word-spacing:17.723361pt;}
.ws75{word-spacing:17.760032pt;}
.ws37{word-spacing:17.765259pt;}
.ws88{word-spacing:17.775695pt;}
.ws27d{word-spacing:17.822751pt;}
.ws22b{word-spacing:17.833205pt;}
.ws21d{word-spacing:17.838431pt;}
.ws8a{word-spacing:17.843658pt;}
.ws89{word-spacing:17.880225pt;}
.ws1e6{word-spacing:17.895924pt;}
.wsc7{word-spacing:17.906378pt;}
.ws1f8{word-spacing:17.942963pt;}
.ws39{word-spacing:17.984776pt;}
.ws195{word-spacing:18.037043pt;}
.ws203{word-spacing:18.057949pt;}
.wsfb{word-spacing:18.063176pt;}
.ws1c9{word-spacing:18.084082pt;}
.ws1d9{word-spacing:18.136338pt;}
.ws1ca{word-spacing:18.136391pt;}
.ws202{word-spacing:18.152028pt;}
.ws1b7{word-spacing:18.225201pt;}
.ws30{word-spacing:18.261787pt;}
.ws1ff{word-spacing:18.308826pt;}
.ws1da{word-spacing:18.329733pt;}
.ws17a{word-spacing:18.334959pt;}
.ws19c{word-spacing:18.366319pt;}
.ws1d7{word-spacing:18.392434pt;}
.wsfa{word-spacing:18.392457pt;}
.wsc6{word-spacing:18.449945pt;}
.ws1dc{word-spacing:18.449962pt;}
.ws35{word-spacing:18.465625pt;}
.ws1e4{word-spacing:18.491757pt;}
.ws2f{word-spacing:18.528344pt;}
.ws1d8{word-spacing:18.554477pt;}
.ws13f{word-spacing:18.559704pt;}
.ws5d{word-spacing:18.580610pt;}
.ws2e{word-spacing:18.585837pt;}
.ws266{word-spacing:18.611971pt;}
.wsf2{word-spacing:18.638075pt;}
.wsf4{word-spacing:18.742636pt;}
.ws71{word-spacing:18.805354pt;}
.wsf1{word-spacing:18.831487pt;}
.wsf7{word-spacing:18.852395pt;}
.ws31{word-spacing:18.868074pt;}
.ws21c{word-spacing:18.894207pt;}
.ws1cb{word-spacing:18.925567pt;}
.ws10b{word-spacing:18.930794pt;}
.wsf6{word-spacing:18.951681pt;}
.ws27e{word-spacing:18.967379pt;}
.ws1dd{word-spacing:18.972606pt;}
.ws73{word-spacing:19.024872pt;}
.ws18b{word-spacing:19.051006pt;}
.wsf3{word-spacing:19.087592pt;}
.ws113{word-spacing:19.092818pt;}
.ws24c{word-spacing:19.134632pt;}
.ws1a1{word-spacing:19.171217pt;}
.ws23e{word-spacing:19.181671pt;}
.ws21e{word-spacing:19.186898pt;}
.ws246{word-spacing:19.202590pt;}
.ws165{word-spacing:19.207804pt;}
.ws164{word-spacing:19.218258pt;}
.wscb{word-spacing:19.254843pt;}
.ws1e0{word-spacing:19.280976pt;}
.ws10f{word-spacing:19.322790pt;}
.wsbd{word-spacing:19.328016pt;}
.ws12b{word-spacing:19.364602pt;}
.ws94{word-spacing:19.380282pt;}
.ws129{word-spacing:19.395963pt;}
.ws252{word-spacing:19.432548pt;}
.wsca{word-spacing:19.500449pt;}
.ws11b{word-spacing:19.515518pt;}
.ws103{word-spacing:19.521401pt;}
.wscf{word-spacing:19.552761pt;}
.ws70{word-spacing:19.568441pt;}
.ws1ec{word-spacing:19.631160pt;}
.wsbe{word-spacing:19.646839pt;}
.ws1d4{word-spacing:19.662520pt;}
.wsc4{word-spacing:19.761826pt;}
.ws12a{word-spacing:19.798411pt;}
.ws6f{word-spacing:19.840224pt;}
.ws139{word-spacing:19.845451pt;}
.ws248{word-spacing:19.902944pt;}
.ws190{word-spacing:19.960436pt;}
.ws192{word-spacing:20.038835pt;}
.ws160{word-spacing:20.049288pt;}
.wscc{word-spacing:20.096328pt;}
.ws15f{word-spacing:20.101555pt;}
.ws104{word-spacing:20.122461pt;}
.ws191{word-spacing:20.138153pt;}
.ws27c{word-spacing:20.143367pt;}
.ws6e{word-spacing:20.159048pt;}
.ws247{word-spacing:20.174728pt;}
.ws93{word-spacing:20.185181pt;}
.ws14f{word-spacing:20.195633pt;}
.ws1d3{word-spacing:20.206110pt;}
.ws6{word-spacing:20.245536pt;}
.ws1fe{word-spacing:20.263580pt;}
.ws16b{word-spacing:20.300166pt;}
.wsd7{word-spacing:20.310620pt;}
.ws92{word-spacing:20.321072pt;}
.ws253{word-spacing:20.341980pt;}
.ws16d{word-spacing:20.373338pt;}
.ws249{word-spacing:20.399472pt;}
.ws289{word-spacing:20.404699pt;}
.ws205{word-spacing:20.425604pt;}
.wsf{word-spacing:20.490872pt;}
.ws3e{word-spacing:20.545817pt;}
.wsa{word-spacing:20.581539pt;}
.ws3a{word-spacing:20.598083pt;}
.ws12d{word-spacing:20.603310pt;}
.wsd{word-spacing:20.629540pt;}
.wsff{word-spacing:20.645123pt;}
.ws180{word-spacing:20.676483pt;}
.wsab{word-spacing:20.681709pt;}
.wsb{word-spacing:20.682873pt;}
.ws134{word-spacing:20.702616pt;}
.ws68{word-spacing:20.718295pt;}
.ws1a0{word-spacing:20.728749pt;}
.ws17c{word-spacing:20.733976pt;}
.ws15{word-spacing:20.773541pt;}
.ws18a{word-spacing:20.781015pt;}
.wse{word-spacing:20.784208pt;}
.ws18{word-spacing:20.816208pt;}
.ws17{word-spacing:20.853542pt;}
.ws12e{word-spacing:20.854187pt;}
.ws16c{word-spacing:20.854205pt;}
.ws9f{word-spacing:20.864640pt;}
.ws1f2{word-spacing:20.875093pt;}
.wsa7{word-spacing:20.901226pt;}
.wsc{word-spacing:20.901542pt;}
.ws156{word-spacing:20.911679pt;}
.ws19f{word-spacing:20.911680pt;}
.ws16{word-spacing:20.922876pt;}
.ws1f0{word-spacing:20.963967pt;}
.wsd0{word-spacing:21.000532pt;}
.ws0{word-spacing:21.021867pt;}
.ws12c{word-spacing:21.031892pt;}
.ws19e{word-spacing:21.037119pt;}
.ws179{word-spacing:21.047572pt;}
.ws256{word-spacing:21.058025pt;}
.ws14e{word-spacing:21.152104pt;}
.ws16a{word-spacing:21.157298pt;}
.ws209{word-spacing:21.183463pt;}
.ws10c{word-spacing:21.209596pt;}
.wsc1{word-spacing:21.214823pt;}
.wsc0{word-spacing:21.272337pt;}
.ws26c{word-spacing:21.324582pt;}
.ws27b{word-spacing:21.335036pt;}
.ws22c{word-spacing:21.350715pt;}
.wsc3{word-spacing:21.371621pt;}
.ws14c{word-spacing:21.376883pt;}
.ws225{word-spacing:21.413435pt;}
.wsbf{word-spacing:21.418624pt;}
.wsc2{word-spacing:21.418705pt;}
.wsf8{word-spacing:21.444794pt;}
.ws87{word-spacing:21.476155pt;}
.wsf5{word-spacing:21.502287pt;}
.wsae{word-spacing:21.512741pt;}
.ws169{word-spacing:21.585913pt;}
.ws26d{word-spacing:21.638179pt;}
.ws278{word-spacing:21.700899pt;}
.ws2b{word-spacing:21.779298pt;}
.ws22d{word-spacing:21.815845pt;}
.wscd{word-spacing:21.815884pt;}
.ws19{word-spacing:21.818885pt;}
.wse1{word-spacing:21.821111pt;}
.wsad{word-spacing:21.831564pt;}
.ws13b{word-spacing:21.909964pt;}
.wsf9{word-spacing:21.941325pt;}
.ws237{word-spacing:21.951776pt;}
.ws1a9{word-spacing:21.962230pt;}
.ws2c{word-spacing:21.977909pt;}
.ws34{word-spacing:22.035402pt;}
.ws8e{word-spacing:22.108574pt;}
.wsa3{word-spacing:22.113802pt;}
.ws66{word-spacing:22.134708pt;}
.ws18d{word-spacing:22.155613pt;}
.ws13c{word-spacing:22.181715pt;}
.ws1de{word-spacing:22.181746pt;}
.ws1df{word-spacing:22.223560pt;}
.wse0{word-spacing:22.296733pt;}
.ws13d{word-spacing:22.396038pt;}
.ws126{word-spacing:22.416944pt;}
.ws1c4{word-spacing:22.427398pt;}
.wsb8{word-spacing:22.490117pt;}
.ws14d{word-spacing:22.495333pt;}
.ws268{word-spacing:22.531931pt;}
.ws1fb{word-spacing:22.542383pt;}
.ws19b{word-spacing:22.599876pt;}
.ws111{word-spacing:22.610330pt;}
.wsdb{word-spacing:22.646915pt;}
.wsda{word-spacing:22.688729pt;}
.wsdc{word-spacing:22.720089pt;}
.ws122{word-spacing:22.761901pt;}
.ws125{word-spacing:22.793286pt;}
.ws1b6{word-spacing:22.819394pt;}
.ws2a{word-spacing:22.835074pt;}
.ws10d{word-spacing:22.845527pt;}
.ws254{word-spacing:22.861206pt;}
.ws161{word-spacing:22.955286pt;}
.ws24e{word-spacing:23.012778pt;}
.ws124{word-spacing:23.065044pt;}
.ws147{word-spacing:23.080724pt;}
.ws151{word-spacing:23.096404pt;}
.ws1b5{word-spacing:23.127764pt;}
.ws23b{word-spacing:23.185256pt;}
.ws1eb{word-spacing:23.190484pt;}
.ws19a{word-spacing:23.206163pt;}
.ws1db{word-spacing:23.211390pt;}
.wsd1{word-spacing:23.258429pt;}
.ws123{word-spacing:23.294971pt;}
.ws283{word-spacing:23.295016pt;}
.ws1a7{word-spacing:23.300242pt;}
.wsd3{word-spacing:23.315923pt;}
.ws13a{word-spacing:23.425681pt;}
.ws189{word-spacing:23.436127pt;}
.ws5c{word-spacing:23.451815pt;}
.wsd2{word-spacing:23.467494pt;}
.wsd4{word-spacing:23.477948pt;}
.ws280{word-spacing:23.483173pt;}
.ws9d{word-spacing:23.530214pt;}
.ws273{word-spacing:23.540688pt;}
.ws7d{word-spacing:23.592932pt;}
.ws275{word-spacing:23.624292pt;}
.ws7e{word-spacing:23.707919pt;}
.ws284{word-spacing:23.718371pt;}
.ws15e{word-spacing:23.786317pt;}
.ws41{word-spacing:23.849037pt;}
.ws21b{word-spacing:23.927435pt;}
.ws15d{word-spacing:23.932668pt;}
.ws3f{word-spacing:23.969249pt;}
.ws102{word-spacing:23.995382pt;}
.ws188{word-spacing:24.011061pt;}
.ws1fd{word-spacing:24.031968pt;}
.ws18e{word-spacing:24.058101pt;}
.ws18f{word-spacing:24.079008pt;}
.ws1ed{word-spacing:24.089460pt;}
.wsb6{word-spacing:24.110367pt;}
.ws1b3{word-spacing:24.241032pt;}
.ws57{word-spacing:24.308979pt;}
.ws9a{word-spacing:24.345564pt;}
.wseb{word-spacing:24.366472pt;}
.wsa6{word-spacing:24.382151pt;}
.wsed{word-spacing:24.413511pt;}
.ws60{word-spacing:24.418738pt;}
.ws286{word-spacing:24.491910pt;}
.ws24f{word-spacing:24.596443pt;}
.ws1bc{word-spacing:24.606895pt;}
.ws6c{word-spacing:24.612122pt;}
.ws1a2{word-spacing:24.633028pt;}
.wsb2{word-spacing:24.653935pt;}
.ws63{word-spacing:24.669615pt;}
.ws1b4{word-spacing:24.763693pt;}
.ws110{word-spacing:24.805507pt;}
.wsec{word-spacing:24.863003pt;}
.ws177{word-spacing:24.878679pt;}
.ws28{word-spacing:24.894359pt;}
.ws1a4{word-spacing:24.951879pt;}
.wsdf{word-spacing:25.004118pt;}
.ws10a{word-spacing:25.014572pt;}
.ws135{word-spacing:25.061611pt;}
.wsde{word-spacing:25.077278pt;}
.ws108{word-spacing:25.082517pt;}
.ws154{word-spacing:25.098198pt;}
.ws1a3{word-spacing:25.108614pt;}
.ws178{word-spacing:25.119104pt;}
.wsa5{word-spacing:25.140010pt;}
.ws53{word-spacing:25.213182pt;}
.ws99{word-spacing:25.291582pt;}
.ws144{word-spacing:25.568593pt;}
.ws127{word-spacing:25.584272pt;}
.ws255{word-spacing:25.589499pt;}
.ws109{word-spacing:25.667888pt;}
.ws6d{word-spacing:25.683577pt;}
.ws201{word-spacing:25.714938pt;}
.ws9c{word-spacing:25.798564pt;}
.ws193{word-spacing:25.824697pt;}
.ws64{word-spacing:25.929228pt;}
.ws1f1{word-spacing:25.981495pt;}
.ws158{word-spacing:26.012855pt;}
.wsfe{word-spacing:26.038988pt;}
.wse9{word-spacing:26.044214pt;}
.ws150{word-spacing:26.127840pt;}
.wsee{word-spacing:26.159200pt;}
.wsba{word-spacing:26.195787pt;}
.ws1ee{word-spacing:26.206239pt;}
.ws285{word-spacing:26.253278pt;}
.wsef{word-spacing:26.253314pt;}
.ws173{word-spacing:26.347350pt;}
.wsea{word-spacing:26.347358pt;}
.wsf0{word-spacing:26.373491pt;}
.ws143{word-spacing:26.389170pt;}
.ws1cf{word-spacing:26.451891pt;}
.ws11e{word-spacing:26.472797pt;}
.ws274{word-spacing:26.488476pt;}
.ws100{word-spacing:26.493702pt;}
.ws90{word-spacing:26.493704pt;}
.ws11f{word-spacing:26.603446pt;}
.ws182{word-spacing:26.608689pt;}
.ws1b2{word-spacing:26.650501pt;}
.ws162{word-spacing:26.692315pt;}
.ws8f{word-spacing:26.713220pt;}
.ws1e1{word-spacing:26.723673pt;}
.ws174{word-spacing:26.755035pt;}
.ws136{word-spacing:26.775940pt;}
.ws120{word-spacing:26.828206pt;}
.ws14b{word-spacing:26.859566pt;}
.ws17e{word-spacing:26.953645pt;}
.ws40{word-spacing:26.995458pt;}
.ws279{word-spacing:27.058178pt;}
.ws91{word-spacing:27.115670pt;}
.wsc5{word-spacing:27.214976pt;}
.ws140{word-spacing:27.246335pt;}
.ws1e8{word-spacing:27.298601pt;}
.ws142{word-spacing:27.324734pt;}
.ws17f{word-spacing:27.324752pt;}
.ws141{word-spacing:27.324755pt;}
.ws204{word-spacing:27.434494pt;}
.ws167{word-spacing:27.518119pt;}
.ws155{word-spacing:27.627877pt;}
.wsd9{word-spacing:27.654010pt;}
.ws1d1{word-spacing:27.842170pt;}
.wsb9{word-spacing:27.925796pt;}
.ws236{word-spacing:28.004194pt;}
.ws5b{word-spacing:28.171446pt;}
.ws166{word-spacing:28.302111pt;}
.ws1a8{word-spacing:28.615708pt;}
.ws288{word-spacing:28.725466pt;}
.ws101{word-spacing:28.767281pt;}
.ws3c{word-spacing:28.856132pt;}
.ws42{word-spacing:28.882265pt;}
.ws1bd{word-spacing:28.908397pt;}
.ws1ef{word-spacing:29.195861pt;}
.ws13e{word-spacing:29.295168pt;}
.ws77{word-spacing:29.504232pt;}
.ws97{word-spacing:29.587859pt;}
.ws185{word-spacing:29.676710pt;}
.wsa8{word-spacing:29.718522pt;}
.ws186{word-spacing:29.734204pt;}
.wsce{word-spacing:29.823055pt;}
.ws243{word-spacing:29.979855pt;}
.ws175{word-spacing:29.990307pt;}
.ws32{word-spacing:30.073933pt;}
.ws9e{word-spacing:30.204598pt;}
.ws1ea{word-spacing:30.277771pt;}
.ws176{word-spacing:30.303904pt;}
.ws29{word-spacing:30.319584pt;}
.ws244{word-spacing:30.382302pt;}
.ws82{word-spacing:30.539102pt;}
.ws131{word-spacing:30.549555pt;}
.wsac{word-spacing:30.622729pt;}
.ws79{word-spacing:30.638390pt;}
.ws1f3{word-spacing:30.722033pt;}
.ws95{word-spacing:30.748178pt;}
.ws1a6{word-spacing:30.758619pt;}
.ws78{word-spacing:30.774306pt;}
.wsc9{word-spacing:30.816111pt;}
.ws7b{word-spacing:30.878833pt;}
.ws1f4{word-spacing:30.925872pt;}
.ws81{word-spacing:31.009496pt;}
.ws96{word-spacing:31.051310pt;}
.ws250{word-spacing:31.208107pt;}
.wse4{word-spacing:31.260373pt;}
.ws65{word-spacing:31.291735pt;}
.ws187{word-spacing:31.526932pt;}
.ws107{word-spacing:31.631464pt;}
.ws17d{word-spacing:31.793488pt;}
.ws18c{word-spacing:31.798717pt;}
.ws17b{word-spacing:32.164579pt;}
.ws281{word-spacing:32.352737pt;}
.ws157{word-spacing:32.587933pt;}
.ws194{word-spacing:32.739507pt;}
.ws1b8{word-spacing:33.000847pt;}
.ws1ba{word-spacing:33.006063pt;}
.ws146{word-spacing:33.068782pt;}
.ws145{word-spacing:33.215128pt;}
.ws1b9{word-spacing:33.251698pt;}
.ws19d{word-spacing:33.267394pt;}
.ws1ce{word-spacing:33.398059pt;}
.ws159{word-spacing:33.497366pt;}
.ws267{word-spacing:33.753468pt;}
.ws98{word-spacing:33.805736pt;}
.ws6a{word-spacing:34.208173pt;}
.wsb3{word-spacing:34.270904pt;}
.ws6b{word-spacing:34.385889pt;}
.ws69{word-spacing:34.396341pt;}
.ws24d{word-spacing:34.783112pt;}
.wsa4{word-spacing:34.955589pt;}
.wsd8{word-spacing:35.143749pt;}
.ws153{word-spacing:35.196015pt;}
.ws238{word-spacing:35.389398pt;}
.wsb1{word-spacing:35.770942pt;}
.wsb5{word-spacing:36.361548pt;}
.wse5{word-spacing:36.408587pt;}
.ws1e5{word-spacing:36.617652pt;}
.wse6{word-spacing:36.628106pt;}
.ws287{word-spacing:37.662975pt;}
.wsb7{word-spacing:38.169957pt;}
.ws1{word-spacing:38.400160pt;}
.ws251{word-spacing:39.157788pt;}
.ws168{word-spacing:39.293679pt;}
.ws7f{word-spacing:39.325039pt;}
.ws1e9{word-spacing:39.351173pt;}
.ws16f{word-spacing:39.628183pt;}
.ws224{word-spacing:40.558519pt;}
.ws1f6{word-spacing:41.002782pt;}
.ws9b{word-spacing:42.215355pt;}
.wsb4{word-spacing:42.236262pt;}
.ws1d5{word-spacing:43.584730pt;}
.ws1d6{word-spacing:43.788612pt;}
.ws172{word-spacing:44.034217pt;}
.ws1cc{word-spacing:44.530746pt;}
.ws74{word-spacing:47.332211pt;}
.ws2a2{word-spacing:49.631919pt;}
.ws148{word-spacing:52.616273pt;}
.ws14a{word-spacing:52.746981pt;}
.ws1d2{word-spacing:52.814928pt;}
.ws1d0{word-spacing:53.865476pt;}
.ws149{word-spacing:53.943867pt;}
.ws67{word-spacing:54.466537pt;}
.wsa0{word-spacing:58.407400pt;}
.ws29f{word-spacing:80.834790pt;}
._21{margin-left:-35.206466pt;}
._22{margin-left:-34.297061pt;}
._28{margin-left:-25.237517pt;}
._27{margin-left:-18.618200pt;}
._30{margin-left:-16.848433pt;}
._18{margin-left:-15.798638pt;}
._19{margin-left:-14.590307pt;}
._2c{margin-left:-12.941101pt;}
._1e{margin-left:-4.996642pt;}
._15{margin-left:-3.554294pt;}
._3{margin-left:-1.802685pt;}
._7{margin-left:-0.906676pt;}
._5{width:1.482681pt;}
._1b{width:2.372884pt;}
._2b{width:4.615089pt;}
._0{width:7.931733pt;}
._2f{width:9.039811pt;}
._29{width:9.981944pt;}
._2d{width:11.250880pt;}
._12{width:12.235772pt;}
._8{width:13.184132pt;}
._4{width:14.874815pt;}
._b{width:16.582171pt;}
._1a{width:17.781330pt;}
._e{width:18.929117pt;}
._c{width:19.962113pt;}
._1f{width:21.272315pt;}
._6{width:22.213555pt;}
._d{width:23.280564pt;}
._11{width:24.916942pt;}
._9{width:26.291542pt;}
._13{width:27.185490pt;}
._10{width:28.586025pt;}
._f{width:30.178465pt;}
._a{width:31.852658pt;}
._14{width:32.938113pt;}
._24{width:33.898321pt;}
._20{width:34.816117pt;}
._16{width:35.901627pt;}
._1c{width:37.748303pt;}
._2{width:39.667365pt;}
._23{width:40.586329pt;}
._2a{width:41.624750pt;}
._26{width:44.626498pt;}
._17{width:46.645645pt;}
._2e{width:50.739964pt;}
._25{width:54.811495pt;}
._31{width:58.543219pt;}
._32{width:1431.401804pt;}
._1d{width:1453.170071pt;}
._1{width:1738.824533pt;}
.fs8{font-size:26.662400pt;}
.fse{font-size:28.440000pt;}
.fsc{font-size:34.839467pt;}
.fsd{font-size:36.585600pt;}
.fs9{font-size:37.332800pt;}
.fsf{font-size:37.333333pt;}
.fs3{font-size:39.107733pt;}
.fs7{font-size:39.999467pt;}
.fsa{font-size:42.666133pt;}
.fsb{font-size:49.067200pt;}
.fs6{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs10{font-size:58.666133pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:58.128076pt;}
.y3e{bottom:68.786590pt;}
.y294{bottom:72.429600pt;}
.y22a{bottom:79.370107pt;}
.y271{bottom:79.370600pt;}
.y113{bottom:79.371533pt;}
.y183{bottom:79.371800pt;}
.yc4{bottom:79.374187pt;}
.y1a9{bottom:79.376587pt;}
.y158{bottom:79.379373pt;}
.y1d4{bottom:79.379773pt;}
.y1b5{bottom:79.380160pt;}
.y12a{bottom:79.380693pt;}
.yf9{bottom:79.391773pt;}
.yac{bottom:79.394040pt;}
.y77{bottom:79.394573pt;}
.y3d{bottom:79.445105pt;}
.y293{bottom:83.096667pt;}
.y3c{bottom:90.103619pt;}
.y229{bottom:91.388947pt;}
.y270{bottom:91.389440pt;}
.y112{bottom:95.396333pt;}
.y182{bottom:95.396600pt;}
.yc3{bottom:95.398973pt;}
.y1a8{bottom:95.401387pt;}
.y157{bottom:95.404173pt;}
.y1d3{bottom:95.404560pt;}
.y1b4{bottom:95.404960pt;}
.y129{bottom:95.405480pt;}
.yf8{bottom:95.416573pt;}
.yab{bottom:95.418827pt;}
.y76{bottom:95.419360pt;}
.y3b{bottom:100.762133pt;}
.y228{bottom:103.407747pt;}
.y26f{bottom:103.724773pt;}
.y292{bottom:105.600267pt;}
.y181{bottom:111.345613pt;}
.yc2{bottom:111.347987pt;}
.y1a7{bottom:111.350387pt;}
.y156{bottom:111.353187pt;}
.y1d2{bottom:111.353573pt;}
.y1b3{bottom:111.353960pt;}
.yf7{bottom:111.365587pt;}
.y111{bottom:111.421133pt;}
.y128{bottom:111.430280pt;}
.yaa{bottom:111.443627pt;}
.y75{bottom:111.444160pt;}
.y26e{bottom:115.743613pt;}
.y291{bottom:121.600400pt;}
.y3a{bottom:123.361921pt;}
.y10f{bottom:125.177867pt;}
.y110{bottom:127.370133pt;}
.y180{bottom:127.370400pt;}
.y10e{bottom:127.370800pt;}
.yc1{bottom:127.372787pt;}
.y1a6{bottom:127.375187pt;}
.y155{bottom:127.377987pt;}
.y1d1{bottom:127.378373pt;}
.y1b2{bottom:127.378760pt;}
.y127{bottom:127.379293pt;}
.yf6{bottom:127.390387pt;}
.ya9{bottom:127.392640pt;}
.y74{bottom:127.393173pt;}
.y26d{bottom:127.686453pt;}
.y35{bottom:129.841559pt;}
.y39{bottom:135.381760pt;}
.y290{bottom:137.599600pt;}
.y26c{bottom:140.007293pt;}
.y227{bottom:140.068760pt;}
.y17f{bottom:143.395200pt;}
.y10d{bottom:143.395600pt;}
.yc0{bottom:143.397587pt;}
.y1a5{bottom:143.399987pt;}
.y154{bottom:143.402773pt;}
.y1d0{bottom:143.403173pt;}
.y1b1{bottom:143.403560pt;}
.y126{bottom:143.404093pt;}
.yf5{bottom:143.415173pt;}
.ya8{bottom:143.417440pt;}
.y73{bottom:143.417973pt;}
.y34{bottom:145.795796pt;}
.y38{bottom:147.401600pt;}
.y12e{bottom:151.332267pt;}
.y37{bottom:151.861467pt;}
.y26b{bottom:152.026133pt;}
.y28f{bottom:153.599733pt;}
.y10c{bottom:157.228267pt;}
.y17e{bottom:159.344800pt;}
.ybf{bottom:159.346600pt;}
.y1a4{bottom:159.349000pt;}
.y153{bottom:159.351787pt;}
.y1cf{bottom:159.352173pt;}
.y1b0{bottom:159.352573pt;}
.yf4{bottom:159.364187pt;}
.y36{bottom:159.420400pt;}
.y10b{bottom:159.428360pt;}
.y125{bottom:159.428880pt;}
.ya7{bottom:159.442227pt;}
.y72{bottom:159.442760pt;}
.y33{bottom:161.815366pt;}
.y226{bottom:164.031440pt;}
.y26a{bottom:164.346960pt;}
.y28e{bottom:169.599867pt;}
.ybe{bottom:175.371387pt;}
.y1a3{bottom:175.373787pt;}
.y152{bottom:175.376587pt;}
.y1ce{bottom:175.376973pt;}
.y10a{bottom:175.377360pt;}
.y124{bottom:175.377893pt;}
.yf3{bottom:175.388987pt;}
.ya6{bottom:175.391240pt;}
.y71{bottom:175.391773pt;}
.y225{bottom:176.050280pt;}
.y223{bottom:176.050373pt;}
.y269{bottom:176.365800pt;}
.y32{bottom:177.834936pt;}
.y224{bottom:180.510147pt;}
.y28d{bottom:185.600000pt;}
.y220{bottom:188.068707pt;}
.y222{bottom:188.069213pt;}
.y268{bottom:188.384640pt;}
.ybd{bottom:191.396187pt;}
.y1a2{bottom:191.398587pt;}
.y151{bottom:191.401387pt;}
.y1cd{bottom:191.401773pt;}
.y109{bottom:191.402160pt;}
.y123{bottom:191.402693pt;}
.yf2{bottom:191.413787pt;}
.ya5{bottom:191.416040pt;}
.y70{bottom:191.416573pt;}
.y17d{bottom:191.418360pt;}
.y221{bottom:192.453480pt;}
.y27{bottom:193.763040pt;}
.y31{bottom:193.789173pt;}
.y21f{bottom:200.012547pt;}
.y267{bottom:200.705480pt;}
.y28c{bottom:201.600133pt;}
.y21e{bottom:204.472400pt;}
.ybc{bottom:207.345200pt;}
.y1a1{bottom:207.347600pt;}
.y150{bottom:207.350387pt;}
.y1cc{bottom:207.350787pt;}
.y1af{bottom:207.351173pt;}
.yf1{bottom:207.362787pt;}
.y108{bottom:207.426960pt;}
.y122{bottom:207.427493pt;}
.y1e6{bottom:207.437027pt;}
.ya4{bottom:207.440840pt;}
.y6f{bottom:207.441373pt;}
.y17c{bottom:207.443160pt;}
.y26{bottom:209.782610pt;}
.y30{bottom:209.808743pt;}
.y21d{bottom:212.032027pt;}
.y266{bottom:212.648320pt;}
.yba{bottom:221.177880pt;}
.y296{bottom:221.245093pt;}
.ybb{bottom:223.370000pt;}
.yb9{bottom:223.370280pt;}
.y1a0{bottom:223.372400pt;}
.y14f{bottom:223.375187pt;}
.y1cb{bottom:223.375573pt;}
.y107{bottom:223.375973pt;}
.y121{bottom:223.376507pt;}
.y1e5{bottom:223.386040pt;}
.yf0{bottom:223.387587pt;}
.ya3{bottom:223.389853pt;}
.y6e{bottom:223.390387pt;}
.y17b{bottom:223.392173pt;}
.y265{bottom:224.667160pt;}
.y25{bottom:225.802179pt;}
.y2f{bottom:225.828313pt;}
.y21c{bottom:236.069707pt;}
.y264{bottom:236.988000pt;}
.y295{bottom:238.843467pt;}
.yb8{bottom:239.395080pt;}
.y19f{bottom:239.397187pt;}
.y14e{bottom:239.399987pt;}
.y1ca{bottom:239.400373pt;}
.y106{bottom:239.400760pt;}
.y120{bottom:239.401293pt;}
.y1e4{bottom:239.410840pt;}
.yef{bottom:239.412387pt;}
.ya2{bottom:239.414640pt;}
.y6d{bottom:239.415173pt;}
.y17a{bottom:239.416973pt;}
.y24{bottom:241.756417pt;}
.y2e{bottom:241.782550pt;}
.y21b{bottom:248.012547pt;}
.y263{bottom:249.006840pt;}
.y19e{bottom:255.346200pt;}
.y14d{bottom:255.349000pt;}
.y1c9{bottom:255.349387pt;}
.y1ae{bottom:255.349773pt;}
.yee{bottom:255.361400pt;}
.y105{bottom:255.425560pt;}
.y11f{bottom:255.426093pt;}
.y1e3{bottom:255.435640pt;}
.ya1{bottom:255.439440pt;}
.y6c{bottom:255.439973pt;}
.y179{bottom:255.441760pt;}
.y23{bottom:257.775987pt;}
.y2d{bottom:257.802120pt;}
.y21a{bottom:260.031493pt;}
.y262{bottom:261.025680pt;}
.y19d{bottom:271.371000pt;}
.y14c{bottom:271.373787pt;}
.y1c8{bottom:271.374187pt;}
.y104{bottom:271.374573pt;}
.y11e{bottom:271.375107pt;}
.y1e2{bottom:271.384640pt;}
.yed{bottom:271.386187pt;}
.ya0{bottom:271.388453pt;}
.y6b{bottom:271.388987pt;}
.y178{bottom:271.390773pt;}
.yb6{bottom:272.881773pt;}
.y261{bottom:273.346507pt;}
.y22{bottom:273.795556pt;}
.y2c{bottom:273.821689pt;}
.y260{bottom:285.289347pt;}
.yb4{bottom:287.319600pt;}
.y19c{bottom:287.395800pt;}
.y14b{bottom:287.398587pt;}
.y1c7{bottom:287.398973pt;}
.y103{bottom:287.399373pt;}
.y11d{bottom:287.399907pt;}
.y1e1{bottom:287.409440pt;}
.yec{bottom:287.410987pt;}
.y9f{bottom:287.413253pt;}
.y6a{bottom:287.413787pt;}
.y177{bottom:287.415573pt;}
.y21{bottom:289.749794pt;}
.y2b{bottom:289.775927pt;}
.y219{bottom:292.690120pt;}
.y25f{bottom:297.308187pt;}
.yb5{bottom:302.286533pt;}
.y19b{bottom:303.344813pt;}
.y14a{bottom:303.347600pt;}
.y1c6{bottom:303.347987pt;}
.y102{bottom:303.348387pt;}
.y11c{bottom:303.348907pt;}
.y1e0{bottom:303.358453pt;}
.yeb{bottom:303.360000pt;}
.y9e{bottom:303.362253pt;}
.y69{bottom:303.362787pt;}
.y176{bottom:303.364587pt;}
.y218{bottom:304.708960pt;}
.y20{bottom:305.769363pt;}
.y2a{bottom:305.795497pt;}
.yb3{bottom:308.182133pt;}
.yb7{bottom:308.182533pt;}
.y25e{bottom:309.629027pt;}
.y19a{bottom:319.370000pt;}
.y149{bottom:319.372400pt;}
.y1c5{bottom:319.372787pt;}
.y101{bottom:319.373173pt;}
.y11b{bottom:319.373707pt;}
.y1df{bottom:319.383253pt;}
.yea{bottom:319.384800pt;}
.y9d{bottom:319.387053pt;}
.y68{bottom:319.387587pt;}
.y175{bottom:319.389387pt;}
.y25d{bottom:321.647867pt;}
.y1f{bottom:321.788933pt;}
.y29{bottom:321.815066pt;}
.y217{bottom:329.351627pt;}
.y25c{bottom:333.666707pt;}
.y148{bottom:335.397187pt;}
.y1c4{bottom:335.397587pt;}
.y100{bottom:335.397973pt;}
.y11a{bottom:335.398507pt;}
.y1de{bottom:335.408040pt;}
.ye9{bottom:335.409600pt;}
.y9c{bottom:335.411853pt;}
.y67{bottom:335.412387pt;}
.y174{bottom:335.414173pt;}
.y1e{bottom:337.738533pt;}
.y28{bottom:337.769304pt;}
.y216{bottom:341.370467pt;}
.y25b{bottom:345.987547pt;}
.yb1{bottom:349.228267pt;}
.yb2{bottom:351.344813pt;}
.yb0{bottom:351.345200pt;}
.y147{bottom:351.346200pt;}
.y1c3{bottom:351.346600pt;}
.yff{bottom:351.346987pt;}
.y119{bottom:351.347520pt;}
.y199{bottom:351.349267pt;}
.y1dd{bottom:351.357053pt;}
.ye8{bottom:351.358600pt;}
.y9b{bottom:351.360867pt;}
.y66{bottom:351.361400pt;}
.y173{bottom:351.363187pt;}
.y25a{bottom:357.930387pt;}
.yae{bottom:365.177853pt;}
.y215{bottom:366.013133pt;}
.yaf{bottom:367.370000pt;}
.y146{bottom:367.371000pt;}
.y1c2{bottom:367.371387pt;}
.yfe{bottom:367.371787pt;}
.y118{bottom:367.372307pt;}
.y198{bottom:367.374067pt;}
.y1dc{bottom:367.381853pt;}
.ye7{bottom:367.383400pt;}
.y9a{bottom:367.385653pt;}
.y65{bottom:367.386187pt;}
.y172{bottom:367.387987pt;}
.y259{bottom:370.251213pt;}
.y214{bottom:378.031973pt;}
.y1d{bottom:378.401640pt;}
.y258{bottom:382.270053pt;}
.y145{bottom:383.395800pt;}
.y1c1{bottom:383.396187pt;}
.yfd{bottom:383.396573pt;}
.y117{bottom:383.397107pt;}
.y197{bottom:383.398853pt;}
.y1db{bottom:383.406653pt;}
.ye6{bottom:383.408200pt;}
.y99{bottom:383.410453pt;}
.y64{bottom:383.410987pt;}
.y171{bottom:383.412787pt;}
.y257{bottom:394.288893pt;}
.y1c{bottom:394.348466pt;}
.y144{bottom:399.344813pt;}
.y1c0{bottom:399.345200pt;}
.yfc{bottom:399.345587pt;}
.y116{bottom:399.346120pt;}
.y196{bottom:399.347867pt;}
.y1da{bottom:399.355667pt;}
.ye5{bottom:399.357213pt;}
.y98{bottom:399.359467pt;}
.y63{bottom:399.360000pt;}
.y170{bottom:399.361787pt;}
.y213{bottom:402.749653pt;}
.y256{bottom:406.307733pt;}
.y212{bottom:414.692493pt;}
.y143{bottom:415.369840pt;}
.y1bf{bottom:415.370000pt;}
.yfb{bottom:415.370387pt;}
.y115{bottom:415.370920pt;}
.y195{bottom:415.372667pt;}
.y1d9{bottom:415.380453pt;}
.ye4{bottom:415.382000pt;}
.y97{bottom:415.384267pt;}
.y62{bottom:415.384800pt;}
.y16f{bottom:415.386587pt;}
.y1b{bottom:417.028693pt;}
.y255{bottom:418.553573pt;}
.y211{bottom:426.711333pt;}
.y254{bottom:430.572413pt;}
.yfa{bottom:431.395187pt;}
.y114{bottom:431.395720pt;}
.y194{bottom:431.397467pt;}
.y1d8{bottom:431.405253pt;}
.ye3{bottom:431.406800pt;}
.y96{bottom:431.409067pt;}
.y61{bottom:431.409600pt;}
.y16e{bottom:431.411387pt;}
.y1a{bottom:433.055520pt;}
.y210{bottom:438.730173pt;}
.y253{bottom:442.591253pt;}
.y1ad{bottom:447.344813pt;}
.y193{bottom:447.346467pt;}
.y1d7{bottom:447.354267pt;}
.ye2{bottom:447.355813pt;}
.y95{bottom:447.358067pt;}
.y60{bottom:447.358600pt;}
.y16d{bottom:447.360400pt;}
.y19{bottom:449.082347pt;}
.y20f{bottom:450.749000pt;}
.y252{bottom:454.912093pt;}
.y1be{bottom:463.370387pt;}
.y192{bottom:463.371267pt;}
.y142{bottom:463.374187pt;}
.y1d6{bottom:463.379067pt;}
.ye1{bottom:463.380613pt;}
.y94{bottom:463.382867pt;}
.y5f{bottom:463.383400pt;}
.y16c{bottom:463.385187pt;}
.y18{bottom:465.029173pt;}
.y251{bottom:466.930920pt;}
.y20e{bottom:475.391680pt;}
.y12c{bottom:475.464960pt;}
.y250{bottom:478.873773pt;}
.y1bd{bottom:479.395187pt;}
.y191{bottom:479.396067pt;}
.y141{bottom:479.398973pt;}
.y1ac{bottom:479.400680pt;}
.y1d5{bottom:479.403853pt;}
.ye0{bottom:479.405400pt;}
.y93{bottom:479.407667pt;}
.y5e{bottom:479.408200pt;}
.y16b{bottom:479.409987pt;}
.y17{bottom:481.056000pt;}
.y20d{bottom:487.410520pt;}
.y12b{bottom:488.844000pt;}
.y24f{bottom:491.194600pt;}
.y190{bottom:495.345080pt;}
.y140{bottom:495.347987pt;}
.y1ab{bottom:495.349693pt;}
.ydf{bottom:495.354413pt;}
.y92{bottom:495.356680pt;}
.y5d{bottom:495.357213pt;}
.y16a{bottom:495.359000pt;}
.y16{bottom:497.082827pt;}
.y20c{bottom:499.353360pt;}
.y24e{bottom:503.213440pt;}
.y18f{bottom:511.369867pt;}
.y20b{bottom:511.372200pt;}
.y13f{bottom:511.372787pt;}
.y1aa{bottom:511.374493pt;}
.yde{bottom:511.379213pt;}
.y91{bottom:511.381467pt;}
.y5c{bottom:511.382000pt;}
.y169{bottom:511.383800pt;}
.y15{bottom:513.029653pt;}
.y24d{bottom:515.232280pt;}
.y1f1{bottom:521.574320pt;}
.y13e{bottom:527.397587pt;}
.ydd{bottom:527.404013pt;}
.y90{bottom:527.406267pt;}
.y5b{bottom:527.406800pt;}
.y168{bottom:527.408600pt;}
.y24c{bottom:527.553120pt;}
.y14{bottom:529.056480pt;}
.y1f0{bottom:534.878680pt;}
.y20a{bottom:536.014867pt;}
.y24b{bottom:539.571960pt;}
.y13d{bottom:543.346600pt;}
.ydc{bottom:543.353027pt;}
.y8f{bottom:543.355280pt;}
.y5a{bottom:543.355813pt;}
.y167{bottom:543.357600pt;}
.y209{bottom:548.033707pt;}
.y1ef{bottom:548.257720pt;}
.y13{bottom:549.016680pt;}
.y24a{bottom:551.515800pt;}
.y1bb{bottom:559.294040pt;}
.y13c{bottom:559.371387pt;}
.ydb{bottom:559.377813pt;}
.y8e{bottom:559.380080pt;}
.y59{bottom:559.380613pt;}
.y166{bottom:559.382400pt;}
.y208{bottom:560.052547pt;}
.y1ee{bottom:561.562080pt;}
.y249{bottom:563.836627pt;}
.y12{bottom:565.043507pt;}
.y207{bottom:572.071387pt;}
.y1ba{bottom:572.673080pt;}
.y1ed{bottom:574.941120pt;}
.y13b{bottom:575.396187pt;}
.yda{bottom:575.402613pt;}
.y8d{bottom:575.404867pt;}
.y58{bottom:575.405400pt;}
.y165{bottom:575.407200pt;}
.y248{bottom:575.855467pt;}
.y11{bottom:581.070334pt;}
.y206{bottom:584.014227pt;}
.y1b9{bottom:585.977440pt;}
.y1eb{bottom:586.431320pt;}
.y247{bottom:587.874307pt;}
.y1ea{bottom:588.245187pt;}
.y1ec{bottom:588.245480pt;}
.y13a{bottom:591.345200pt;}
.yd9{bottom:591.351627pt;}
.y8c{bottom:591.353880pt;}
.y57{bottom:591.354413pt;}
.y164{bottom:591.356213pt;}
.y10{bottom:597.017160pt;}
.y1b8{bottom:599.356480pt;}
.y246{bottom:600.195147pt;}
.y1e9{bottom:601.549547pt;}
.y139{bottom:607.370000pt;}
.yd8{bottom:607.376427pt;}
.y8b{bottom:607.378680pt;}
.y56{bottom:607.379213pt;}
.y163{bottom:607.381000pt;}
.y205{bottom:608.731893pt;}
.y245{bottom:612.213987pt;}
.y1b7{bottom:612.660840pt;}
.yf{bottom:613.043987pt;}
.y1e8{bottom:614.928587pt;}
.y204{bottom:620.674733pt;}
.y138{bottom:623.395187pt;}
.yd7{bottom:623.401213pt;}
.y8a{bottom:623.403480pt;}
.y55{bottom:623.404013pt;}
.y162{bottom:623.405800pt;}
.y244{bottom:624.534827pt;}
.y1b6{bottom:625.965213pt;}
.y28b{bottom:627.402653pt;}
.y1e7{bottom:628.232947pt;}
.ye{bottom:629.070814pt;}
.y243{bottom:636.477667pt;}
.y28a{bottom:639.345493pt;}
.yd6{bottom:639.350227pt;}
.y89{bottom:639.352493pt;}
.y54{bottom:639.353027pt;}
.y161{bottom:639.354813pt;}
.yd{bottom:645.017640pt;}
.y203{bottom:645.392413pt;}
.y242{bottom:648.798493pt;}
.y289{bottom:651.364333pt;}
.y137{bottom:655.373093pt;}
.yd5{bottom:655.375027pt;}
.y88{bottom:655.377280pt;}
.y53{bottom:655.377813pt;}
.y160{bottom:655.379613pt;}
.y202{bottom:657.411253pt;}
.y241{bottom:660.817333pt;}
.yc{bottom:661.044467pt;}
.y288{bottom:663.383173pt;}
.y201{bottom:669.354093pt;}
.y136{bottom:671.397893pt;}
.yd4{bottom:671.399827pt;}
.y87{bottom:671.402080pt;}
.y52{bottom:671.402613pt;}
.y15f{bottom:671.404400pt;}
.y240{bottom:672.836173pt;}
.y287{bottom:675.402013pt;}
.yb{bottom:677.071294pt;}
.y23f{bottom:684.855013pt;}
.y286{bottom:687.345853pt;}
.y135{bottom:687.346907pt;}
.yd3{bottom:687.348827pt;}
.y86{bottom:687.351093pt;}
.y51{bottom:687.351627pt;}
.y15e{bottom:687.353413pt;}
.ya{bottom:693.018120pt;}
.y23e{bottom:697.175853pt;}
.y285{bottom:699.364693pt;}
.y200{bottom:701.026667pt;}
.y134{bottom:703.371707pt;}
.yd2{bottom:703.373627pt;}
.y85{bottom:703.375893pt;}
.y50{bottom:703.376427pt;}
.y15d{bottom:703.378213pt;}
.y9{bottom:709.044947pt;}
.y23d{bottom:709.118693pt;}
.y284{bottom:711.383533pt;}
.y1ff{bottom:713.045507pt;}
.y133{bottom:719.396493pt;}
.yd1{bottom:719.398427pt;}
.y84{bottom:719.400680pt;}
.y4f{bottom:719.401213pt;}
.y15c{bottom:719.403013pt;}
.y23c{bottom:721.439533pt;}
.y283{bottom:723.402373pt;}
.y1fe{bottom:725.064347pt;}
.y8{bottom:729.071814pt;}
.y23b{bottom:733.458373pt;}
.y132{bottom:735.345507pt;}
.y282{bottom:735.346213pt;}
.yd0{bottom:735.347440pt;}
.y83{bottom:735.349693pt;}
.y4e{bottom:735.350227pt;}
.y15b{bottom:735.352027pt;}
.y1fd{bottom:741.014133pt;}
.y7{bottom:745.018640pt;}
.y23a{bottom:745.779200pt;}
.y281{bottom:747.365053pt;}
.y131{bottom:751.370307pt;}
.ycf{bottom:751.372240pt;}
.y82{bottom:751.374493pt;}
.y4d{bottom:751.375027pt;}
.y15a{bottom:751.376813pt;}
.y1fc{bottom:753.032973pt;}
.y239{bottom:757.798040pt;}
.y280{bottom:759.383893pt;}
.y6{bottom:761.045467pt;}
.y130{bottom:767.395107pt;}
.yce{bottom:767.397027pt;}
.y81{bottom:767.399293pt;}
.y4c{bottom:767.399827pt;}
.y159{bottom:767.401613pt;}
.y238{bottom:770.118880pt;}
.y27f{bottom:771.402720pt;}
.y237{bottom:782.137720pt;}
.y1fb{bottom:782.740000pt;}
.ycd{bottom:783.346040pt;}
.y27e{bottom:783.346560pt;}
.y80{bottom:783.348293pt;}
.y4b{bottom:783.348827pt;}
.y5{bottom:785.007600pt;}
.y236{bottom:794.080560pt;}
.y27d{bottom:795.365400pt;}
.ycc{bottom:799.370840pt;}
.y7f{bottom:799.373093pt;}
.y4a{bottom:799.373627pt;}
.y18d{bottom:800.806933pt;}
.y235{bottom:806.401400pt;}
.y27c{bottom:807.384240pt;}
.y18c{bottom:814.185960pt;}
.ycb{bottom:815.395640pt;}
.y7e{bottom:815.397893pt;}
.y49{bottom:815.398427pt;}
.y1fa{bottom:815.398440pt;}
.y234{bottom:818.420240pt;}
.y27b{bottom:819.403080pt;}
.y18b{bottom:827.490333pt;}
.y233{bottom:830.741067pt;}
.yca{bottom:831.344640pt;}
.y27a{bottom:831.345920pt;}
.y7d{bottom:831.346907pt;}
.y48{bottom:831.347440pt;}
.y1f9{bottom:831.347453pt;}
.y3{bottom:836.409200pt;}
.y18a{bottom:840.869360pt;}
.y232{bottom:842.759907pt;}
.y4{bottom:842.910000pt;}
.y279{bottom:843.364760pt;}
.yc9{bottom:847.369760pt;}
.y7c{bottom:847.371707pt;}
.y47{bottom:847.372240pt;}
.y1f8{bottom:847.372253pt;}
.y189{bottom:854.173733pt;}
.y231{bottom:854.703747pt;}
.y278{bottom:855.383600pt;}
.yc8{bottom:863.395107pt;}
.y7b{bottom:863.396493pt;}
.y46{bottom:863.397027pt;}
.y1f7{bottom:863.397040pt;}
.y230{bottom:867.024587pt;}
.y277{bottom:867.402440pt;}
.y188{bottom:867.477027pt;}
.y2{bottom:868.384000pt;}
.y22f{bottom:879.043427pt;}
.yc7{bottom:879.344640pt;}
.y276{bottom:879.345280pt;}
.y7a{bottom:879.345507pt;}
.y45{bottom:879.346040pt;}
.y1f6{bottom:879.346053pt;}
.y187{bottom:880.856067pt;}
.y22e{bottom:891.062267pt;}
.y275{bottom:891.364120pt;}
.y186{bottom:894.160427pt;}
.y79{bottom:895.370307pt;}
.y44{bottom:895.370840pt;}
.y1f5{bottom:895.370853pt;}
.y274{bottom:903.382960pt;}
.y22d{bottom:903.383093pt;}
.y185{bottom:907.539467pt;}
.y78{bottom:911.395107pt;}
.y43{bottom:911.395640pt;}
.y1f4{bottom:911.395653pt;}
.yc6{bottom:911.396160pt;}
.y273{bottom:915.401800pt;}
.y22c{bottom:915.401933pt;}
.y1{bottom:919.029600pt;}
.y184{bottom:920.843827pt;}
.y42{bottom:927.344640pt;}
.y1f3{bottom:927.344653pt;}
.y22b{bottom:927.344787pt;}
.yc5{bottom:927.345173pt;}
.y41{bottom:989.180433pt;}
.y12f{bottom:1002.477867pt;}
.y1bc{bottom:1002.478880pt;}
.y1f2{bottom:1002.479227pt;}
.y12d{bottom:1002.480213pt;}
.y18e{bottom:1002.481213pt;}
.y40{bottom:1002.481600pt;}
.yad{bottom:1002.481613pt;}
.y272{bottom:1002.481627pt;}
.ha{height:19.223590pt;}
.h15{height:20.192400pt;}
.hf{height:25.223774pt;}
.h12{height:26.487974pt;}
.hb{height:26.916949pt;}
.h13{height:27.439200pt;}
.h5{height:28.196676pt;}
.h16{height:28.560000pt;}
.h9{height:28.839615pt;}
.hd{height:30.762282pt;}
.he{height:35.377451pt;}
.hc{height:37.588863pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606933pt;}
.h4{height:42.299051pt;}
.h17{height:44.116932pt;}
.h14{height:48.258108pt;}
.h11{height:49.584907pt;}
.h2{height:49.989333pt;}
.h10{height:74.730814pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.xb{left:79.143333pt;}
.x1{left:80.957467pt;}
.x1f{left:82.620400pt;}
.x8{left:84.283467pt;}
.xd{left:86.248920pt;}
.x17{left:92.069333pt;}
.xe{left:95.092933pt;}
.x18{left:101.366933pt;}
.xf{left:106.129067pt;}
.x21{left:109.530667pt;}
.x22{left:113.159067pt;}
.x1b{left:138.330667pt;}
.x3{left:148.308667pt;}
.x1c{left:149.291333pt;}
.x4{left:153.297600pt;}
.x12{left:155.867733pt;}
.x14{left:181.115107pt;}
.x20{left:184.818933pt;}
.x13{left:187.464533pt;}
.x15{left:200.844000pt;}
.x16{left:222.387333pt;}
.x5{left:226.393600pt;}
.xc{left:240.604667pt;}
.x6{left:249.070800pt;}
.x1d{left:259.124413pt;}
.x19{left:268.346400pt;}
.x1e{left:271.143213pt;}
.x1a{left:280.743200pt;}
.x10{left:341.140133pt;}
.x11{left:347.792120pt;}
.x7{left:370.771600pt;}
.x9{left:406.291425pt;}
.xa{left:416.927584pt;}
.x25{left:424.530507pt;}
.x23{left:426.330360pt;}
.x24{left:431.598253pt;}
}




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