
    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_c5ee806dd54ec74d5512c55f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5a6283a3429b3055bd95dff4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_42a0f3d889a49d41ca7e591a.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_dd74b6ef98b509799c0bae35.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_0c82551c0e847d9adf3d5f95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cfa62cc2ae646901a5fbe267.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b87ff1cf030500664e459eae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_85b7226439bab15e6ff5c0a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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_dee7240d4934452de17508e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.251000;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_36eb86f358d3a643061dfc62.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.245000;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_8a66d0f0eb4209e33df7510f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_f684c19bd5a9f6aad4f2b689.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.264000;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_cbc4a7857321c1b9e2124455.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.039000;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_da7bdad9181cc0e27233333e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.468000;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_98a72ced03f5802692b115cc.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_710200c918dd898a97e8a2bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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_892a996e569c4de72ea3bec9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.972000;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);}
.m6{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);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.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);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.ls59{letter-spacing:-1.352386px;}
.ls6d{letter-spacing:-1.016986px;}
.ls6c{letter-spacing:-0.940483px;}
.ls70{letter-spacing:-0.935988px;}
.ls11{letter-spacing:-0.917271px;}
.lsb{letter-spacing:-0.912009px;}
.ls40{letter-spacing:-0.911391px;}
.ls6{letter-spacing:-0.894009px;}
.ls49{letter-spacing:-0.893751px;}
.lsa{letter-spacing:-0.888009px;}
.ls72{letter-spacing:-0.886488px;}
.lsd{letter-spacing:-0.882009px;}
.ls47{letter-spacing:-0.881991px;}
.ls6f{letter-spacing:-0.877488px;}
.lsf{letter-spacing:-0.876009px;}
.ls7{letter-spacing:-0.870009px;}
.ls43{letter-spacing:-0.864351px;}
.ls9{letter-spacing:-0.864009px;}
.ls41{letter-spacing:-0.858471px;}
.lsc{letter-spacing:-0.858009px;}
.ls3b{letter-spacing:-0.852591px;}
.ls5{letter-spacing:-0.852009px;}
.ls2d{letter-spacing:-0.846711px;}
.lse{letter-spacing:-0.846008px;}
.ls10{letter-spacing:-0.840831px;}
.ls3d{letter-spacing:-0.838760px;}
.ls6e{letter-spacing:-0.836984px;}
.ls31{letter-spacing:-0.834951px;}
.ls42{letter-spacing:-0.829072px;}
.ls4{letter-spacing:-0.828008px;}
.ls1f{letter-spacing:-0.823192px;}
.ls2e{letter-spacing:-0.817312px;}
.ls8{letter-spacing:-0.816008px;}
.ls22{letter-spacing:-0.811432px;}
.ls46{letter-spacing:-0.805552px;}
.ls48{letter-spacing:-0.799672px;}
.ls30{letter-spacing:-0.793792px;}
.ls69{letter-spacing:-0.787489px;}
.ls1e{letter-spacing:-0.776152px;}
.ls2f{letter-spacing:-0.770272px;}
.ls6a{letter-spacing:-0.751490px;}
.ls3c{letter-spacing:-0.740872px;}
.ls3f{letter-spacing:-0.729012px;}
.ls68{letter-spacing:-0.674991px;}
.ls20{letter-spacing:-0.564474px;}
.ls34{letter-spacing:-0.005880px;}
.ls2{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000146px;}
.ls16{letter-spacing:0.005880px;}
.ls5f{letter-spacing:0.022540px;}
.ls5d{letter-spacing:0.058428px;}
.ls62{letter-spacing:0.058476px;}
.ls4f{letter-spacing:0.058498px;}
.ls5c{letter-spacing:0.058525px;}
.ls63{letter-spacing:0.058621px;}
.ls14{letter-spacing:0.617394px;}
.ls13{letter-spacing:0.646793px;}
.ls4d{letter-spacing:0.652673px;}
.ls12{letter-spacing:0.664433px;}
.ls76{letter-spacing:0.683991px;}
.ls15{letter-spacing:0.693833px;}
.ls2c{letter-spacing:0.705592px;}
.ls4c{letter-spacing:0.711473px;}
.ls7b{letter-spacing:0.764990px;}
.ls61{letter-spacing:0.773986px;}
.ls7a{letter-spacing:0.809989px;}
.ls74{letter-spacing:0.814489px;}
.ls79{letter-spacing:0.845989px;}
.ls5a{letter-spacing:0.863988px;}
.ls45{letter-spacing:0.881991px;}
.ls73{letter-spacing:0.895488px;}
.ls51{letter-spacing:0.904488px;}
.ls2b{letter-spacing:0.905511px;}
.ls1a{letter-spacing:0.917271px;}
.ls54{letter-spacing:0.917988px;}
.ls50{letter-spacing:0.926988px;}
.ls23{letter-spacing:0.929031px;}
.ls57{letter-spacing:0.940487px;}
.ls44{letter-spacing:0.940790px;}
.ls1c{letter-spacing:0.958424px;}
.ls26{letter-spacing:0.958430px;}
.ls60{letter-spacing:0.962987px;}
.ls1b{letter-spacing:0.964310px;}
.ls53{letter-spacing:0.967487px;}
.ls0{letter-spacing:0.970190px;}
.ls5b{letter-spacing:0.971987px;}
.ls24{letter-spacing:0.976070px;}
.ls64{letter-spacing:0.976487px;}
.ls21{letter-spacing:0.981950px;}
.ls18{letter-spacing:0.987830px;}
.ls28{letter-spacing:0.993710px;}
.ls77{letter-spacing:0.994487px;}
.ls67{letter-spacing:0.998987px;}
.ls27{letter-spacing:0.999590px;}
.ls55{letter-spacing:1.003487px;}
.ls32{letter-spacing:1.005470px;}
.ls19{letter-spacing:1.017230px;}
.ls1d{letter-spacing:1.023110px;}
.ls25{letter-spacing:1.028990px;}
.ls52{letter-spacing:1.030486px;}
.ls17{letter-spacing:1.034869px;}
.ls78{letter-spacing:1.034986px;}
.ls56{letter-spacing:1.039486px;}
.ls29{letter-spacing:1.046629px;}
.ls4b{letter-spacing:1.058389px;}
.ls75{letter-spacing:1.120481px;}
.ls58{letter-spacing:1.133985px;}
.ls33{letter-spacing:1.140708px;}
.ls6b{letter-spacing:11.119352px;}
.ls71{letter-spacing:11.371348px;}
.ls65{letter-spacing:13.140142px;}
.ls4e{letter-spacing:13.504320px;}
.ls5e{letter-spacing:13.693342px;}
.ls3{letter-spacing:15.270153px;}
.ls36{letter-spacing:15.887653px;}
.ls35{letter-spacing:18.010207px;}
.ls1{letter-spacing:20.515111px;}
.ls3e{letter-spacing:26.977164px;}
.ls4a{letter-spacing:28.552990px;}
.ls2a{letter-spacing:30.981405px;}
.ls3a{letter-spacing:197.608713px;}
.ls37{letter-spacing:390.479929px;}
.ls38{letter-spacing:467.014902px;}
.ls39{letter-spacing:482.321970px;}
.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;}
}
.wsf1{word-spacing:-27.035963px;}
.ws2e{word-spacing:-20.573910px;}
.ws8{word-spacing:-15.330153px;}
.ws245{word-spacing:-11.416348px;}
.ws268{word-spacing:-10.508400px;}
.ws209{word-spacing:-1.084486px;}
.ws24d{word-spacing:-1.048486px;}
.ws20a{word-spacing:-0.985487px;}
.ws24c{word-spacing:-0.728990px;}
.ws24{word-spacing:-0.061800px;}
.ws23{word-spacing:-0.060001px;}
.ws2f{word-spacing:-0.058799px;}
.ws45{word-spacing:-0.047999px;}
.ws3a{word-spacing:-0.044999px;}
.ws260{word-spacing:-0.043801px;}
.ws46{word-spacing:0.000000px;}
.ws5f{word-spacing:0.505674px;}
.ws233{word-spacing:0.706491px;}
.ws22d{word-spacing:10.804356px;}
.ws231{word-spacing:10.813341px;}
.ws22f{word-spacing:10.817855px;}
.ws230{word-spacing:10.916855px;}
.ws39{word-spacing:11.884342px;}
.ws240{word-spacing:12.037339px;}
.ws23f{word-spacing:12.158833px;}
.ws22e{word-spacing:12.253336px;}
.ws246{word-spacing:12.298336px;}
.ws41{word-spacing:12.427622px;}
.ws40{word-spacing:12.465421px;}
.ws3f{word-spacing:12.566221px;}
.ws232{word-spacing:12.608829px;}
.ws123{word-spacing:12.650220px;}
.ws1f9{word-spacing:12.712345px;}
.ws237{word-spacing:12.811329px;}
.ws244{word-spacing:12.815829px;}
.ws220{word-spacing:12.829329px;}
.ws217{word-spacing:12.833829px;}
.ws264{word-spacing:12.929937px;}
.ws261{word-spacing:13.030678px;}
.ws262{word-spacing:13.135758px;}
.ws22a{word-spacing:13.148825px;}
.ws266{word-spacing:13.148940px;}
.ws253{word-spacing:13.153324px;}
.ws215{word-spacing:13.157824px;}
.ws1fe{word-spacing:13.162324px;}
.ws258{word-spacing:13.184824px;}
.ws235{word-spacing:13.189324px;}
.ws221{word-spacing:13.193824px;}
.ws229{word-spacing:13.198323px;}
.ws23e{word-spacing:13.207319px;}
.ws263{word-spacing:13.210261px;}
.ws23b{word-spacing:13.211824px;}
.ws1fc{word-spacing:13.220823px;}
.ws224{word-spacing:13.229823px;}
.ws1da{word-spacing:13.234324px;}
.ws238{word-spacing:13.238824px;}
.ws1f6{word-spacing:13.243323px;}
.ws1f4{word-spacing:13.247822px;}
.ws243{word-spacing:13.247911px;}
.ws216{word-spacing:13.252323px;}
.ws1f0{word-spacing:13.256823px;}
.ws250{word-spacing:13.261316px;}
.ws21e{word-spacing:13.261323px;}
.ws23a{word-spacing:13.265822px;}
.ws222{word-spacing:13.270323px;}
.ws200{word-spacing:13.274823px;}
.ws3d{word-spacing:13.283823px;}
.ws213{word-spacing:13.288322px;}
.ws201{word-spacing:13.292822px;}
.ws24e{word-spacing:13.297322px;}
.ws1e7{word-spacing:13.301823px;}
.ws256{word-spacing:13.306323px;}
.ws1f7{word-spacing:13.310822px;}
.ws1d5{word-spacing:13.315322px;}
.ws267{word-spacing:13.319744px;}
.ws21f{word-spacing:13.319822px;}
.ws20e{word-spacing:13.324319px;}
.ws1f5{word-spacing:13.324322px;}
.ws22b{word-spacing:13.328769px;}
.ws23c{word-spacing:13.328817px;}
.ws1f1{word-spacing:13.328821px;}
.ws254{word-spacing:13.328865px;}
.ws1fa{word-spacing:13.333321px;}
.ws3b{word-spacing:13.342322px;}
.ws20f{word-spacing:13.346822px;}
.ws1d2{word-spacing:13.351322px;}
.ws1f2{word-spacing:13.355821px;}
.ws242{word-spacing:13.360321px;}
.ws20d{word-spacing:13.364822px;}
.ws1e0{word-spacing:13.369322px;}
.ws1ee{word-spacing:13.373822px;}
.ws1fd{word-spacing:13.378321px;}
.ws1e9{word-spacing:13.382821px;}
.ws223{word-spacing:13.391813px;}
.ws1e2{word-spacing:13.391821px;}
.ws239{word-spacing:13.396322px;}
.ws1e5{word-spacing:13.400821px;}
.ws1f8{word-spacing:13.405321px;}
.ws241{word-spacing:13.409821px;}
.ws227{word-spacing:13.414321px;}
.ws21d{word-spacing:13.418814px;}
.ws21a{word-spacing:13.423320px;}
.ws1ff{word-spacing:13.432321px;}
.ws1d9{word-spacing:13.436821px;}
.ws1db{word-spacing:13.445820px;}
.ws20b{word-spacing:13.459321px;}
.ws1d1{word-spacing:13.463821px;}
.ws226{word-spacing:13.468320px;}
.ws257{word-spacing:13.472820px;}
.ws255{word-spacing:13.477320px;}
.ws212{word-spacing:13.486318px;}
.ws1f3{word-spacing:13.486320px;}
.ws218{word-spacing:13.490819px;}
.ws1d3{word-spacing:13.495320px;}
.ws1d4{word-spacing:13.504320px;}
.ws3e{word-spacing:13.508820px;}
.ws214{word-spacing:13.513319px;}
.ws21b{word-spacing:13.513321px;}
.ws265{word-spacing:13.525624px;}
.ws3c{word-spacing:13.526820px;}
.ws1de{word-spacing:13.531320px;}
.ws21c{word-spacing:13.535819px;}
.ws1eb{word-spacing:13.540319px;}
.ws1dd{word-spacing:13.544819px;}
.ws1ef{word-spacing:13.549319px;}
.ws225{word-spacing:13.553810px;}
.ws219{word-spacing:13.553815px;}
.ws211{word-spacing:13.553823px;}
.ws252{word-spacing:13.553842px;}
.ws228{word-spacing:13.562819px;}
.ws1e3{word-spacing:13.576319px;}
.ws1e8{word-spacing:13.580818px;}
.ws1e4{word-spacing:13.603318px;}
.ws1e6{word-spacing:13.607818px;}
.ws1dc{word-spacing:13.612318px;}
.ws1d7{word-spacing:13.616818px;}
.ws1fb{word-spacing:13.621319px;}
.ws1ec{word-spacing:13.630318px;}
.ws1d6{word-spacing:13.661818px;}
.ws20c{word-spacing:13.684316px;}
.ws251{word-spacing:13.684331px;}
.ws236{word-spacing:13.706817px;}
.ws24f{word-spacing:13.751817px;}
.ws125{word-spacing:13.771027px;}
.ws80{word-spacing:13.799827px;}
.ws1d8{word-spacing:13.801316px;}
.ws1ea{word-spacing:13.814816px;}
.ws1df{word-spacing:13.832815px;}
.ws122{word-spacing:13.833427px;}
.ws156{word-spacing:13.833487px;}
.ws1e1{word-spacing:13.882315px;}
.ws126{word-spacing:13.891026px;}
.ws158{word-spacing:13.895826px;}
.ws210{word-spacing:13.945314px;}
.ws1ed{word-spacing:13.958814px;}
.ws120{word-spacing:13.967825px;}
.ws11e{word-spacing:13.977426px;}
.ws7e{word-spacing:13.982224px;}
.wse9{word-spacing:14.011028px;}
.ws44{word-spacing:14.011061px;}
.ws7f{word-spacing:14.035049px;}
.ws81{word-spacing:14.058959px;}
.wse8{word-spacing:14.059024px;}
.ws42{word-spacing:14.059051px;}
.ws43{word-spacing:14.073424px;}
.ws157{word-spacing:14.126223px;}
.ws11c{word-spacing:14.145424px;}
.ws11b{word-spacing:14.150222px;}
.ws155{word-spacing:14.169423px;}
.ws11d{word-spacing:14.174222px;}
.ws82{word-spacing:14.251021px;}
.ws1aa{word-spacing:14.300014px;}
.ws11f{word-spacing:14.313421px;}
.ws124{word-spacing:14.380620px;}
.ws18b{word-spacing:14.458772px;}
.ws37{word-spacing:14.764530px;}
.ws14f{word-spacing:14.805689px;}
.ws47{word-spacing:14.817449px;}
.ws1c{word-spacing:14.928150px;}
.wsf2{word-spacing:14.970328px;}
.ws1ae{word-spacing:15.182005px;}
.wsc7{word-spacing:15.182006px;}
.ws191{word-spacing:15.317244px;}
.ws1e{word-spacing:15.324187px;}
.ws1b{word-spacing:15.360154px;}
.ws1f{word-spacing:15.444154px;}
.ws5a{word-spacing:15.664160px;}
.ws1d{word-spacing:15.702158px;}
.ws1cd{word-spacing:15.740600px;}
.wscd{word-spacing:15.770000px;}
.ws149{word-spacing:15.781759px;}
.ws18c{word-spacing:15.787639px;}
.ws1b0{word-spacing:15.811158px;}
.wsc5{word-spacing:15.905238px;}
.ws111{word-spacing:15.928758px;}
.ws15d{word-spacing:15.958157px;}
.wsc8{word-spacing:16.034597px;}
.wsfe{word-spacing:16.105155px;}
.ws142{word-spacing:16.134555px;}
.ws1a3{word-spacing:16.152196px;}
.ws118{word-spacing:16.205400px;}
.ws15{word-spacing:16.278163px;}
.ws35{word-spacing:16.287434px;}
.ws16{word-spacing:16.290164px;}
.ws71{word-spacing:16.440312px;}
.ws171{word-spacing:16.475592px;}
.ws166{word-spacing:16.522631px;}
.ws204{word-spacing:16.586785px;}
.ws17{word-spacing:16.608197px;}
.ws208{word-spacing:16.613776px;}
.wsbf{word-spacing:16.616711px;}
.ws101{word-spacing:16.628470px;}
.ws25a{word-spacing:16.631778px;}
.ws259{word-spacing:16.636277px;}
.ws24a{word-spacing:16.654347px;}
.ws1cf{word-spacing:16.699030px;}
.ws25c{word-spacing:16.708277px;}
.ws248{word-spacing:16.726277px;}
.ws1a5{word-spacing:16.728430px;}
.ws9{word-spacing:16.734168px;}
.ws4e{word-spacing:16.751949px;}
.ws1a{word-spacing:16.800130px;}
.wsf3{word-spacing:16.804868px;}
.ws207{word-spacing:16.811775px;}
.wsc{word-spacing:16.818168px;}
.ws10{word-spacing:16.836168px;}
.ws12{word-spacing:16.848169px;}
.wsc1{word-spacing:16.857789px;}
.wsb{word-spacing:16.866170px;}
.ws13{word-spacing:16.878169px;}
.ws19{word-spacing:16.890169px;}
.ws203{word-spacing:16.897275px;}
.ws1b2{word-spacing:16.945987px;}
.ws206{word-spacing:16.964773px;}
.ws25f{word-spacing:16.973753px;}
.ws24b{word-spacing:16.973801px;}
.ws247{word-spacing:16.978249px;}
.ws22c{word-spacing:16.982774px;}
.wsd{word-spacing:16.992171px;}
.wse{word-spacing:17.022170px;}
.ws205{word-spacing:17.063773px;}
.wsa{word-spacing:17.064172px;}
.ws249{word-spacing:17.072772px;}
.ws11{word-spacing:17.100171px;}
.ws25b{word-spacing:17.131250px;}
.wsf{word-spacing:17.136171px;}
.ws141{word-spacing:17.140025px;}
.ws202{word-spacing:17.171771px;}
.ws25d{word-spacing:17.180770px;}
.ws18{word-spacing:17.196172px;}
.ws58{word-spacing:17.239985px;}
.wsca{word-spacing:17.245863px;}
.ws14{word-spacing:17.268173px;}
.ws1b1{word-spacing:17.304663px;}
.wsc0{word-spacing:17.310543px;}
.ws195{word-spacing:17.351704px;}
.ws1b8{word-spacing:17.369342px;}
.ws25e{word-spacing:17.369797px;}
.wsc9{word-spacing:17.398742px;}
.ws10e{word-spacing:17.428142px;}
.ws50{word-spacing:17.439902px;}
.ws94{word-spacing:17.486941px;}
.ws1bd{word-spacing:17.504582px;}
.ws7a{word-spacing:17.545741px;}
.ws7b{word-spacing:17.563382px;}
.ws103{word-spacing:17.610420px;}
.ws104{word-spacing:17.622181px;}
.ws77{word-spacing:17.633940px;}
.wsa4{word-spacing:17.675100px;}
.ws86{word-spacing:17.698619px;}
.ws16d{word-spacing:17.716260px;}
.ws10f{word-spacing:17.739780px;}
.wsb0{word-spacing:17.763299px;}
.wsa1{word-spacing:17.780938px;}
.ws132{word-spacing:17.810338px;}
.ws129{word-spacing:17.816218px;}
.wsaf{word-spacing:17.833858px;}
.ws168{word-spacing:17.910298px;}
.ws115{word-spacing:17.974977px;}
.ws108{word-spacing:18.004377px;}
.ws88{word-spacing:18.039655px;}
.ws177{word-spacing:18.080816px;}
.ws160{word-spacing:18.121976px;}
.ws1ce{word-spacing:18.151376px;}
.ws189{word-spacing:18.204294px;}
.wsb3{word-spacing:18.216053px;}
.wsfa{word-spacing:18.227814px;}
.ws186{word-spacing:18.304254px;}
.ws150{word-spacing:18.316013px;}
.ws25{word-spacing:18.339533px;}
.ws180{word-spacing:18.380693px;}
.wseb{word-spacing:18.463012px;}
.ws1bf{word-spacing:18.468892px;}
.wsb7{word-spacing:18.486531px;}
.ws1d0{word-spacing:18.496740px;}
.ws19a{word-spacing:18.510050px;}
.ws1c7{word-spacing:18.515931px;}
.ws16f{word-spacing:18.574730px;}
.ws1af{word-spacing:18.598250px;}
.ws7{word-spacing:18.600171px;}
.ws148{word-spacing:18.621771px;}
.wsb9{word-spacing:18.645290px;}
.ws9b{word-spacing:18.651170px;}
.ws197{word-spacing:18.657050px;}
.ws12c{word-spacing:18.727609px;}
.ws89{word-spacing:18.745248px;}
.ws99{word-spacing:18.757009px;}
.wscc{word-spacing:18.804047px;}
.ws1a1{word-spacing:18.809929px;}
.ws9c{word-spacing:18.839327px;}
.ws185{word-spacing:18.909887px;}
.ws1b9{word-spacing:19.039245px;}
.ws85{word-spacing:19.127444px;}
.ws33{word-spacing:19.145085px;}
.ws1b4{word-spacing:19.156844px;}
.wsf6{word-spacing:19.186244px;}
.ws12e{word-spacing:19.192124px;}
.ws19f{word-spacing:19.233285px;}
.ws13e{word-spacing:19.292084px;}
.ws10a{word-spacing:19.297964px;}
.ws56{word-spacing:19.368522px;}
.ws10b{word-spacing:19.392042px;}
.ws117{word-spacing:19.403802px;}
.wsd8{word-spacing:19.415562px;}
.ws199{word-spacing:19.450841px;}
.ws139{word-spacing:19.480241px;}
.ws1a9{word-spacing:19.580200px;}
.ws4{word-spacing:19.582379px;}
.ws1c0{word-spacing:19.691919px;}
.ws179{word-spacing:19.733079px;}
.wsdc{word-spacing:19.744838px;}
.ws5{word-spacing:19.767180px;}
.wsd2{word-spacing:19.785998px;}
.ws19e{word-spacing:19.803638px;}
.wsbd{word-spacing:19.885957px;}
.wsfd{word-spacing:19.891836px;}
.wsb4{word-spacing:19.909478px;}
.wsae{word-spacing:19.927116px;}
.ws6{word-spacing:19.978383px;}
.ws2d{word-spacing:20.021196px;}
.wsbc{word-spacing:20.032956px;}
.ws3{word-spacing:20.044383px;}
.ws1b7{word-spacing:20.079995px;}
.ws17a{word-spacing:20.115275px;}
.ws55{word-spacing:20.162314px;}
.wsce{word-spacing:20.215233px;}
.ws36{word-spacing:20.274033px;}
.ws7c{word-spacing:20.332832px;}
.ws17c{word-spacing:20.426911px;}
.ws18a{word-spacing:20.450431px;}
.ws10c{word-spacing:20.562151px;}
.ws116{word-spacing:20.662109px;}
.ws1a8{word-spacing:20.667989px;}
.ws184{word-spacing:20.673870px;}
.wse4{word-spacing:20.709150px;}
.ws12b{word-spacing:20.856148px;}
.ws16b{word-spacing:20.879667px;}
.ws152{word-spacing:20.914947px;}
.wsaa{word-spacing:20.967867px;}
.ws4b{word-spacing:21.014905px;}
.ws18d{word-spacing:21.038425px;}
.wsef{word-spacing:21.050185px;}
.ws181{word-spacing:21.108985px;}
.ws1c9{word-spacing:21.167784px;}
.ws193{word-spacing:21.197184px;}
.ws4a{word-spacing:21.203064px;}
.wsd9{word-spacing:21.244223px;}
.wsfb{word-spacing:21.250103px;}
.ws15f{word-spacing:21.267744px;}
.ws54{word-spacing:21.350063px;}
.ws153{word-spacing:21.379462px;}
.ws10d{word-spacing:21.414741px;}
.ws17f{word-spacing:21.526461px;}
.ws63{word-spacing:21.561741px;}
.ws98{word-spacing:21.649940px;}
.ws165{word-spacing:21.744019px;}
.ws18e{word-spacing:21.785178px;}
.wsb6{word-spacing:21.796937px;}
.ws59{word-spacing:21.820458px;}
.wsd3{word-spacing:21.914536px;}
.ws8b{word-spacing:21.961576px;}
.ws30{word-spacing:21.979215px;}
.ws23d{word-spacing:22.022706px;}
.ws74{word-spacing:22.161494px;}
.ws91{word-spacing:22.173254px;}
.ws178{word-spacing:22.202654px;}
.ws1c4{word-spacing:22.214418px;}
.ws15e{word-spacing:22.237934px;}
.ws9a{word-spacing:22.243812px;}
.ws8d{word-spacing:22.326133px;}
.wsab{word-spacing:22.355533px;}
.ws60{word-spacing:22.361411px;}
.ws1cc{word-spacing:22.402571px;}
.wsa2{word-spacing:22.531931px;}
.ws97{word-spacing:22.573089px;}
.ws15a{word-spacing:22.590730px;}
.ws79{word-spacing:22.637769px;}
.ws96{word-spacing:22.643649px;}
.ws1c5{word-spacing:22.667169px;}
.wsfc{word-spacing:22.684808px;}
.ws21{word-spacing:22.800256px;}
.ws114{word-spacing:22.837687px;}
.ws190{word-spacing:22.837688px;}
.ws8a{word-spacing:22.861206px;}
.ws6a{word-spacing:22.902366px;}
.ws9e{word-spacing:22.943527px;}
.ws19d{word-spacing:22.978805px;}
.ws6b{word-spacing:23.008205px;}
.ws167{word-spacing:23.067004px;}
.ws159{word-spacing:23.072884px;}
.ws107{word-spacing:23.261043px;}
.ws8f{word-spacing:23.266922px;}
.ws188{word-spacing:23.302202px;}
.ws22{word-spacing:23.316234px;}
.ws31{word-spacing:23.319843px;}
.ws64{word-spacing:23.366881px;}
.ws6c{word-spacing:23.378642px;}
.ws62{word-spacing:23.413922px;}
.ws57{word-spacing:23.431561px;}
.ws69{word-spacing:23.525641px;}
.ws20{word-spacing:23.526236px;}
.ws173{word-spacing:23.537399px;}
.ws109{word-spacing:23.602079px;}
.ws0{word-spacing:23.649601px;}
.ws6d{word-spacing:23.654999px;}
.ws1c1{word-spacing:23.660878px;}
.ws5b{word-spacing:23.678519px;}
.ws12f{word-spacing:23.760838px;}
.ws34{word-spacing:23.772597px;}
.ws137{word-spacing:23.813757px;}
.ws138{word-spacing:23.860796px;}
.ws5c{word-spacing:23.884317px;}
.wse3{word-spacing:23.907837px;}
.ws72{word-spacing:23.943117px;}
.ws6e{word-spacing:23.984282px;}
.ws1a4{word-spacing:24.019555px;}
.ws13b{word-spacing:24.043074px;}
.ws90{word-spacing:24.242992px;}
.wsc6{word-spacing:24.272392px;}
.wse0{word-spacing:24.342952px;}
.wsf9{word-spacing:24.378232px;}
.ws53{word-spacing:24.531109px;}
.ws2c{word-spacing:24.572269px;}
.ws4f{word-spacing:24.584030px;}
.wsba{word-spacing:24.601669px;}
.wsbb{word-spacing:24.660469px;}
.ws32{word-spacing:24.707509px;}
.ws128{word-spacing:24.830986px;}
.ws16a{word-spacing:24.960345px;}
.ws51{word-spacing:24.989745px;}
.ws134{word-spacing:25.048545px;}
.ws1ba{word-spacing:25.095583px;}
.ws2a{word-spacing:25.113223px;}
.wsa3{word-spacing:25.266103px;}
.ws1a2{word-spacing:25.295501px;}
.ws170{word-spacing:25.313142px;}
.ws2b{word-spacing:25.354302px;}
.ws1c6{word-spacing:25.471901px;}
.wsb5{word-spacing:25.507179px;}
.ws13a{word-spacing:25.607139px;}
.ws15c{word-spacing:25.642419px;}
.wsc3{word-spacing:25.718857px;}
.ws1a7{word-spacing:25.730617px;}
.ws14e{word-spacing:25.942295px;}
.ws162{word-spacing:25.948175px;}
.ws1a0{word-spacing:26.001095px;}
.wscb{word-spacing:26.083414px;}
.ws70{word-spacing:26.124573px;}
.ws87{word-spacing:26.195133px;}
.ws100{word-spacing:26.218653px;}
.ws4d{word-spacing:26.236292px;}
.ws135{word-spacing:26.242172px;}
.ws14a{word-spacing:26.283332px;}
.wsf5{word-spacing:26.377411px;}
.ws145{word-spacing:26.436211px;}
.ws164{word-spacing:26.500890px;}
.ws113{word-spacing:26.518530px;}
.ws176{word-spacing:26.583209px;}
.ws7d{word-spacing:26.642009px;}
.wse1{word-spacing:26.653767px;}
.ws174{word-spacing:26.689047px;}
.ws1ab{word-spacing:26.783127px;}
.wse5{word-spacing:26.865446px;}
.ws147{word-spacing:26.924245px;}
.ws27{word-spacing:27.118284px;}
.wsad{word-spacing:27.135923px;}
.wsec{word-spacing:27.212362px;}
.wsb8{word-spacing:27.241763px;}
.ws1cb{word-spacing:27.259402px;}
.ws175{word-spacing:27.288802px;}
.ws102{word-spacing:27.306441px;}
.ws196{word-spacing:27.347601px;}
.wsf8{word-spacing:27.353482px;}
.wsdf{word-spacing:27.388761px;}
.ws14c{word-spacing:27.412281px;}
.wsd4{word-spacing:27.453439px;}
.ws16c{word-spacing:27.541639px;}
.ws14d{word-spacing:27.547519px;}
.ws198{word-spacing:27.594559px;}
.ws17e{word-spacing:27.600438px;}
.ws106{word-spacing:27.741556px;}
.ws182{word-spacing:27.894435px;}
.wsa7{word-spacing:27.900315px;}
.ws194{word-spacing:27.964994px;}
.ws151{word-spacing:28.059075px;}
.wsea{word-spacing:28.064953px;}
.ws192{word-spacing:28.094354px;}
.ws9f{word-spacing:28.111994px;}
.ws112{word-spacing:28.176673px;}
.ws12a{word-spacing:28.282512px;}
.ws131{word-spacing:28.288392px;}
.wsde{word-spacing:28.329550px;}
.wsf0{word-spacing:28.347190px;}
.wse7{word-spacing:28.364830px;}
.wsed{word-spacing:28.405990px;}
.ws13d{word-spacing:28.429510px;}
.wsf4{word-spacing:28.464790px;}
.wsd7{word-spacing:28.523589px;}
.wsee{word-spacing:28.588269px;}
.ws48{word-spacing:28.617668px;}
.wsa0{word-spacing:28.623547px;}
.ws84{word-spacing:28.705868px;}
.ws110{word-spacing:28.711746px;}
.ws49{word-spacing:28.735268px;}
.wsff{word-spacing:28.794066px;}
.wsd5{word-spacing:28.841107px;}
.wscf{word-spacing:28.988104px;}
.ws17d{word-spacing:29.005743px;}
.ws161{word-spacing:29.035143px;}
.wsac{word-spacing:29.052784px;}
.wsd6{word-spacing:29.152736px;}
.wsd0{word-spacing:29.176262px;}
.ws38{word-spacing:29.211541px;}
.ws26{word-spacing:29.299740px;}
.ws8e{word-spacing:29.346781px;}
.ws163{word-spacing:29.352661px;}
.ws65{word-spacing:29.434980px;}
.ws67{word-spacing:29.458499px;}
.ws95{word-spacing:29.552579px;}
.ws143{word-spacing:29.581979px;}
.ws130{word-spacing:29.605498px;}
.ws127{word-spacing:29.611378px;}
.wsc2{word-spacing:29.687817px;}
.ws169{word-spacing:29.781896px;}
.ws19c{word-spacing:29.817176px;}
.ws93{word-spacing:29.934775px;}
.ws13c{word-spacing:29.987696px;}
.ws1bc{word-spacing:30.028854px;}
.wsf7{word-spacing:30.052372px;}
.ws1bb{word-spacing:30.093532px;}
.ws136{word-spacing:30.122932px;}
.ws1c2{word-spacing:30.158214px;}
.wsc4{word-spacing:30.181731px;}
.wsdb{word-spacing:30.234652px;}
.ws146{word-spacing:30.299330px;}
.ws61{word-spacing:30.322851px;}
.ws4c{word-spacing:30.387529px;}
.ws9d{word-spacing:30.469850px;}
.ws105{word-spacing:30.587449px;}
.wsdd{word-spacing:30.622727px;}
.ws13f{word-spacing:30.628609px;}
.ws1c8{word-spacing:30.675648px;}
.ws1b5{word-spacing:30.710926px;}
.ws8c{word-spacing:31.075483px;}
.ws28{word-spacing:31.093122px;}
.ws14b{word-spacing:31.128404px;}
.ws73{word-spacing:31.169561px;}
.ws1c3{word-spacing:31.422401px;}
.ws29{word-spacing:31.434158px;}
.ws1be{word-spacing:31.487079px;}
.ws92{word-spacing:31.528239px;}
.ws133{word-spacing:31.551757px;}
.ws76{word-spacing:31.592917px;}
.ws78{word-spacing:32.069194px;}
.ws1a6{word-spacing:32.139754px;}
.ws1b3{word-spacing:32.563107px;}
.ws18f{word-spacing:32.751266px;}
.ws144{word-spacing:32.768905px;}
.wsda{word-spacing:33.086423px;}
.ws17b{word-spacing:33.127584px;}
.ws66{word-spacing:33.321619px;}
.ws16e{word-spacing:33.468619px;}
.ws5e{word-spacing:33.586227px;}
.ws5d{word-spacing:33.809655px;}
.ws75{word-spacing:33.933132px;}
.wse6{word-spacing:33.986053px;}
.wsa6{word-spacing:34.015452px;}
.ws19b{word-spacing:34.027214px;}
.ws172{word-spacing:34.127173px;}
.ws154{word-spacing:34.150692px;}
.ws68{word-spacing:34.162451px;}
.wsa5{word-spacing:34.327089px;}
.wsb2{word-spacing:34.932725px;}
.wse2{word-spacing:35.273760px;}
.wsa8{word-spacing:35.361961px;}
.wsa9{word-spacing:35.432517px;}
.wsbe{word-spacing:35.673597px;}
.ws187{word-spacing:36.226312px;}
.ws83{word-spacing:36.408589px;}
.ws6f{word-spacing:36.743745px;}
.ws1ca{word-spacing:37.008343px;}
.wsd1{word-spacing:37.049504px;}
.ws15b{word-spacing:37.419940px;}
.ws183{word-spacing:37.514017px;}
.wsb1{word-spacing:37.743335px;}
.ws140{word-spacing:37.743336px;}
.ws1b6{word-spacing:38.431287px;}
.ws12d{word-spacing:39.954193px;}
.ws1ad{word-spacing:40.377549px;}
.ws1ac{word-spacing:40.689185px;}
.ws1{word-spacing:43.329778px;}
.ws2{word-spacing:43.531378px;}
.ws52{word-spacing:43.976073px;}
.ws234{word-spacing:44.261430px;}
.ws11a{word-spacing:211.754212px;}
.ws119{word-spacing:230.094729px;}
.ws121{word-spacing:261.126341px;}
._21{margin-left:-31.081365px;}
._1f{margin-left:-28.053194px;}
._20{margin-left:-26.806644px;}
._11{margin-left:-20.515110px;}
._2{margin-left:-16.212163px;}
._3{margin-left:-15.120146px;}
._32{margin-left:-13.247823px;}
._33{margin-left:-12.181338px;}
._31{margin-left:-11.119352px;}
._16{margin-left:-7.298746px;}
._1e{margin-left:-6.143853px;}
._14{margin-left:-4.728528px;}
._8{margin-left:-2.478080px;}
._6{margin-left:-1.296014px;}
._5{width:1.728017px;}
._30{width:3.150574px;}
._0{width:8.954400px;}
._2c{width:12.766327px;}
._13{width:13.868197px;}
._7{width:14.868222px;}
._9{width:16.068338px;}
._4{width:17.088215px;}
._1b{width:18.563657px;}
._c{width:19.616168px;}
._10{width:21.404580px;}
._a{width:22.542393px;}
._b{width:24.462689px;}
._12{width:25.774204px;}
._f{width:26.859565px;}
._2b{width:28.147277px;}
._19{width:29.299739px;}
._d{width:30.529337px;}
._e{width:32.427871px;}
._1d{width:34.157255px;}
._17{width:35.192814px;}
._1a{width:37.132513px;}
._1c{width:39.248598px;}
._2a{width:41.647615px;}
._15{width:42.965408px;}
._2f{width:44.306407px;}
._2e{width:64.052145px;}
._2d{width:65.861120px;}
._25{width:185.800870px;}
._28{width:197.368725px;}
._23{width:208.931794px;}
._22{width:220.360452px;}
._26{width:320.160801px;}
._29{width:332.007055px;}
._24{width:343.632484px;}
._27{width:395.534244px;}
._18{width:1519.195435px;}
._1{width:1976.208060px;}
.fc3{color:rgb(85,123,178);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:29.995199px;}
.fsd{font-size:31.995000px;}
.fs11{font-size:37.800001px;}
.fs7{font-size:39.194401px;}
.fs10{font-size:40.800001px;}
.fsa{font-size:41.999399px;}
.fse{font-size:43.800599px;}
.fs3{font-size:43.996199px;}
.fs8{font-size:44.999399px;}
.fsb{font-size:47.999399px;}
.fsf{font-size:53.349003px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:58.799400px;}
.fs5{font-size:60.000601px;}
.fs4{font-size:61.800001px;}
.fs2{font-size:66.000601px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000595px;}
.y0{bottom:0.000000px;}
.y286{bottom:84.166878px;}
.y1fe{bottom:91.418398px;}
.ye5{bottom:91.418470px;}
.y249{bottom:91.418948px;}
.y16c{bottom:91.422512px;}
.y153{bottom:91.427084px;}
.yae{bottom:91.428184px;}
.y197{bottom:91.444836px;}
.y1cd{bottom:91.468357px;}
.y3c{bottom:91.501749px;}
.y285{bottom:94.666769px;}
.y72{bottom:100.771648px;}
.y135{bottom:100.771729px;}
.y3b{bottom:103.492571px;}
.y1fd{bottom:104.939593px;}
.y248{bottom:104.940143px;}
.ye4{bottom:109.446367px;}
.y16b{bottom:109.450413px;}
.y152{bottom:109.454967px;}
.yad{bottom:109.456080px;}
.y196{bottom:109.472732px;}
.y1cc{bottom:109.496254px;}
.y3a{bottom:115.483404px;}
.y134{bottom:115.823135px;}
.y1fc{bottom:118.460787px;}
.y247{bottom:118.461337px;}
.y284{bottom:127.200128px;}
.ye3{bottom:127.389004px;}
.y16a{bottom:127.393055px;}
.y151{bottom:127.482868px;}
.yac{bottom:127.483976px;}
.y195{bottom:127.500629px;}
.y1cb{bottom:127.524150px;}
.y133{bottom:130.790554px;}
.y1fb{bottom:131.896483px;}
.y246{bottom:131.897034px;}
.y39{bottom:141.590083px;}
.ye2{bottom:145.417351px;}
.y1fa{bottom:145.417678px;}
.y245{bottom:145.418228px;}
.y169{bottom:145.420956px;}
.y150{bottom:145.425510px;}
.yab{bottom:145.426613px;}
.y194{bottom:145.443266px;}
.y1ca{bottom:145.466787px;}
.y283{bottom:145.814973px;}
.y38{bottom:155.111278px;}
.y31{bottom:155.626262px;}
.y1f9{bottom:158.938872px;}
.y244{bottom:158.939422px;}
.y168{bottom:163.448833px;}
.y14f{bottom:163.453411px;}
.yaa{bottom:163.454509px;}
.y193{bottom:163.471162px;}
.y1c9{bottom:163.494683px;}
.y282{bottom:164.429521px;}
.y37{bottom:168.548106px;}
.y1f8{bottom:172.460067px;}
.y243{bottom:172.460617px;}
.y36{bottom:173.565299px;}
.y30{bottom:173.654162px;}
.ye0{bottom:179.007900px;}
.y167{bottom:181.391476px;}
.ye1{bottom:181.474045px;}
.y14e{bottom:181.481300px;}
.ya9{bottom:181.482406px;}
.y192{bottom:181.499058px;}
.ydf{bottom:181.505927px;}
.y1c8{bottom:181.522579px;}
.y35{bottom:182.069358px;}
.y281{bottom:183.044377px;}
.y242{bottom:185.897437px;}
.y2f{bottom:191.596793px;}
.y34{bottom:195.590564px;}
.y241{bottom:199.418631px;}
.y166{bottom:199.419365px;}
.y14d{bottom:199.423943px;}
.ya8{bottom:199.425043px;}
.y191{bottom:199.441695px;}
.yde{bottom:199.448564px;}
.y1c7{bottom:199.465216px;}
.y33{bottom:200.607905px;}
.y280{bottom:201.659223px;}
.y1f7{bottom:208.261589px;}
.y32{bottom:209.111713px;}
.y2e{bottom:209.624682px;}
.y240{bottom:212.939826px;}
.y165{bottom:217.447266px;}
.y14c{bottom:217.451843px;}
.ya7{bottom:217.452939px;}
.y190{bottom:217.469591px;}
.ydd{bottom:217.476460px;}
.y1c6{bottom:217.493113px;}
.y27f{bottom:220.274228px;}
.y1f6{bottom:221.782783px;}
.y23f{bottom:226.461020px;}
.y2d{bottom:227.652583px;}
.y24{bottom:227.653041px;}
.y164{bottom:235.389908px;}
.y14b{bottom:235.479744px;}
.ya6{bottom:235.480835px;}
.y18f{bottom:235.497488px;}
.ydc{bottom:235.504357px;}
.y1c5{bottom:235.521009px;}
.y23e{bottom:239.896717px;}
.y2c{bottom:245.595225px;}
.y23{bottom:245.595683px;}
.y27e{bottom:251.663815px;}
.y163{bottom:253.417809px;}
.y23d{bottom:253.417911px;}
.y14a{bottom:253.422363px;}
.ya5{bottom:253.423472px;}
.y18e{bottom:253.440125px;}
.ydb{bottom:253.446994px;}
.y1c4{bottom:253.463646px;}
.y1f5{bottom:257.584305px;}
.y2b{bottom:263.623103px;}
.y22{bottom:263.623584px;}
.y23c{bottom:266.939105px;}
.y27d{bottom:267.668515px;}
.y1f3{bottom:269.234550px;}
.y1f2{bottom:271.105453px;}
.y1f4{bottom:271.105499px;}
.y162{bottom:271.445709px;}
.y149{bottom:271.450264px;}
.ya4{bottom:271.451369px;}
.y18d{bottom:271.468021px;}
.yda{bottom:271.474890px;}
.y1c3{bottom:271.491542px;}
.y23b{bottom:280.460300px;}
.y2a{bottom:281.651004px;}
.y21{bottom:281.651462px;}
.y1f0{bottom:282.755859px;}
.y1f1{bottom:284.626648px;}
.y1ef{bottom:284.627300px;}
.y161{bottom:289.388992px;}
.y148{bottom:289.478165px;}
.ya3{bottom:289.479265px;}
.y18c{bottom:289.495917px;}
.yd9{bottom:289.502786px;}
.y1c2{bottom:289.519439px;}
.y23a{bottom:293.895996px;}
.y28{bottom:297.212543px;}
.y1ee{bottom:298.148494px;}
.y29{bottom:299.593646px;}
.y20{bottom:299.594104px;}
.y239{bottom:307.417191px;}
.y147{bottom:307.420807px;}
.ya2{bottom:307.421902px;}
.y18b{bottom:307.438554px;}
.yd8{bottom:307.445423px;}
.y1c1{bottom:307.462076px;}
.y1ec{bottom:309.713242px;}
.y1ed{bottom:311.584190px;}
.y1eb{bottom:311.584305px;}
.y27{bottom:315.155849px;}
.y1f{bottom:317.622005px;}
.y26{bottom:317.624934px;}
.y238{bottom:320.944777px;}
.y1e9{bottom:323.234550px;}
.y1ea{bottom:325.105499px;}
.y1e8{bottom:325.107699px;}
.y146{bottom:325.448685px;}
.ya1{bottom:325.449798px;}
.y160{bottom:325.460449px;}
.y18a{bottom:325.466451px;}
.yd7{bottom:325.473319px;}
.y1c0{bottom:325.489972px;}
.y237{bottom:334.465972px;}
.y1e{bottom:335.650363px;}
.y25{bottom:335.652835px;}
.y1e7{bottom:338.628893px;}
.ya0{bottom:343.392435px;}
.y189{bottom:343.409088px;}
.yd6{bottom:343.415956px;}
.y1bf{bottom:343.432609px;}
.y145{bottom:343.476585px;}
.y15f{bottom:343.488350px;}
.y236{bottom:347.901668px;}
.y144{bottom:361.419228px;}
.y9f{bottom:361.420331px;}
.y235{bottom:361.422863px;}
.y15e{bottom:361.430992px;}
.y188{bottom:361.436984px;}
.yd5{bottom:361.443853px;}
.y1be{bottom:361.460505px;}
.y27c{bottom:370.686788px;}
.y234{bottom:374.944057px;}
.y143{bottom:379.447128px;}
.y9e{bottom:379.448228px;}
.y15d{bottom:379.458893px;}
.y187{bottom:379.464880px;}
.yd4{bottom:379.471749px;}
.y1bd{bottom:379.488401px;}
.y1d{bottom:381.311168px;}
.y1e6{bottom:382.339060px;}
.y27b{bottom:383.442624px;}
.y233{bottom:388.465251px;}
.y1e5{bottom:395.860255px;}
.y27a{bottom:396.198461px;}
.y9d{bottom:397.390865px;}
.y186{bottom:397.407517px;}
.yd3{bottom:397.414386px;}
.y1bc{bottom:397.431038px;}
.y142{bottom:397.475006px;}
.y15c{bottom:397.486771px;}
.y1c{bottom:399.339847px;}
.y232{bottom:401.900948px;}
.y279{bottom:408.954274px;}
.y1e4{bottom:413.888138px;}
.y141{bottom:415.417648px;}
.y9c{bottom:415.418761px;}
.y231{bottom:415.422142px;}
.y15b{bottom:415.429413px;}
.y185{bottom:415.435413px;}
.yd2{bottom:415.442282px;}
.y1bb{bottom:415.458935px;}
.y1b{bottom:424.766604px;}
.y1e3{bottom:427.323835px;}
.y107{bottom:427.495926px;}
.y121{bottom:427.507690px;}
.y230{bottom:428.943337px;}
.y140{bottom:433.445572px;}
.y9b{bottom:433.446657px;}
.y13e{bottom:433.448685px;}
.y15a{bottom:433.457291px;}
.y184{bottom:433.463310px;}
.yd1{bottom:433.470178px;}
.y1ba{bottom:433.486831px;}
.y278{bottom:437.955296px;}
.y13f{bottom:439.993652px;}
.y22f{bottom:442.464531px;}
.y1a{bottom:442.795260px;}
.y1e2{bottom:445.351718px;}
.y106{bottom:445.523849px;}
.y120{bottom:445.535614px;}
.y9a{bottom:451.389294px;}
.y277{bottom:451.390981px;}
.y183{bottom:451.405947px;}
.yd0{bottom:451.412816px;}
.y1b9{bottom:451.429468px;}
.y13d{bottom:451.476562px;}
.y159{bottom:451.485214px;}
.y22e{bottom:455.900227px;}
.y1e1{bottom:458.872913px;}
.y19{bottom:460.823962px;}
.y105{bottom:463.466492px;}
.y11f{bottom:463.478256px;}
.y276{bottom:464.912175px;}
.y98{bottom:466.951035px;}
.y99{bottom:469.417191px;}
.y13c{bottom:469.419205px;}
.y22d{bottom:469.421422px;}
.y97{bottom:469.422387px;}
.y158{bottom:469.427856px;}
.y182{bottom:469.433843px;}
.ycf{bottom:469.440712px;}
.y1b8{bottom:469.457364px;}
.y1e0{bottom:472.308609px;}
.y275{bottom:478.433370px;}
.y104{bottom:481.494369px;}
.y11e{bottom:481.506134px;}
.y22c{bottom:482.942616px;}
.y18{bottom:483.274661px;}
.y13b{bottom:487.447128px;}
.y96{bottom:487.450283px;}
.y157{bottom:487.455734px;}
.y181{bottom:487.461739px;}
.yce{bottom:487.468608px;}
.y1b7{bottom:487.485261px;}
.y274{bottom:491.954564px;}
.y22b{bottom:496.463811px;}
.y103{bottom:499.522247px;}
.y11d{bottom:499.534012px;}
.y17{bottom:501.303363px;}
.y273{bottom:505.390248px;}
.y95{bottom:505.392920px;}
.y180{bottom:505.404376px;}
.ycd{bottom:505.411245px;}
.y1b6{bottom:505.427898px;}
.y13a{bottom:505.475006px;}
.y156{bottom:505.483658px;}
.y1df{bottom:505.729065px;}
.y22a{bottom:509.899507px;}
.y102{bottom:517.464890px;}
.y11c{bottom:517.476654px;}
.y272{bottom:518.911443px;}
.y16{bottom:519.332065px;}
.y139{bottom:523.417648px;}
.y229{bottom:523.420701px;}
.y94{bottom:523.420817px;}
.y155{bottom:523.426254px;}
.y17f{bottom:523.432273px;}
.ycc{bottom:523.439141px;}
.y1b5{bottom:523.455794px;}
.y271{bottom:532.432637px;}
.y100{bottom:533.026657px;}
.y101{bottom:535.492813px;}
.yff{bottom:535.497940px;}
.y11b{bottom:535.504578px;}
.y228{bottom:536.941896px;}
.y15{bottom:537.275210px;}
.y138{bottom:541.445572px;}
.y93{bottom:541.448713px;}
.y154{bottom:541.454178px;}
.y17e{bottom:541.460169px;}
.ycb{bottom:541.467038px;}
.y1b4{bottom:541.483690px;}
.y270{bottom:545.953832px;}
.y227{bottom:550.463090px;}
.y1de{bottom:550.552530px;}
.yfe{bottom:553.525864px;}
.y11a{bottom:553.532455px;}
.y26f{bottom:559.389562px;}
.y92{bottom:559.391350px;}
.y17d{bottom:559.402806px;}
.yca{bottom:559.409675px;}
.y1b3{bottom:559.426327px;}
.y14{bottom:559.811465px;}
.y226{bottom:563.898786px;}
.y1dd{bottom:568.580426px;}
.yfd{bottom:571.468506px;}
.y119{bottom:571.475098px;}
.y26e{bottom:572.910756px;}
.y91{bottom:577.419246px;}
.y225{bottom:577.419981px;}
.y17c{bottom:577.430702px;}
.yc9{bottom:577.437571px;}
.y1b2{bottom:577.454223px;}
.y13{bottom:577.840121px;}
.y26d{bottom:586.431951px;}
.y1dc{bottom:586.608322px;}
.yfc{bottom:589.496384px;}
.y118{bottom:589.502975px;}
.y224{bottom:590.941175px;}
.y90{bottom:595.447142px;}
.y71{bottom:595.448685px;}
.y17b{bottom:595.458598px;}
.y58{bottom:595.458618px;}
.yc8{bottom:595.465467px;}
.y1b1{bottom:595.482120px;}
.y12{bottom:595.783313px;}
.y26c{bottom:599.953145px;}
.y16f{bottom:603.014008px;}
.y223{bottom:604.462370px;}
.y1db{bottom:604.550959px;}
.yfb{bottom:607.524307px;}
.y117{bottom:607.530899px;}
.y26b{bottom:613.388829px;}
.y8f{bottom:613.389779px;}
.y70{bottom:613.391327px;}
.y26a{bottom:613.393315px;}
.y17a{bottom:613.401235px;}
.y57{bottom:613.401260px;}
.yc7{bottom:613.408104px;}
.y1b0{bottom:613.424757px;}
.y11{bottom:613.811969px;}
.y222{bottom:617.898066px;}
.y16e{bottom:617.981461px;}
.y1da{bottom:622.578856px;}
.yfa{bottom:625.466904px;}
.y116{bottom:625.473541px;}
.y269{bottom:626.914510px;}
.y8e{bottom:631.417676px;}
.y6f{bottom:631.419205px;}
.y221{bottom:631.419260px;}
.y179{bottom:631.429132px;}
.y56{bottom:631.429184px;}
.yc6{bottom:631.436000px;}
.y1af{bottom:631.452653px;}
.y16d{bottom:633.032867px;}
.y10{bottom:636.262713px;}
.y268{bottom:640.435704px;}
.y1d9{bottom:640.606752px;}
.yf9{bottom:643.494827px;}
.y115{bottom:643.501419px;}
.y220{bottom:644.940455px;}
.y8c{bottom:646.979416px;}
.y8d{bottom:649.445572px;}
.y6e{bottom:649.447128px;}
.y8b{bottom:649.449359px;}
.y178{bottom:649.457028px;}
.y55{bottom:649.457062px;}
.yc5{bottom:649.463897px;}
.y1ae{bottom:649.480549px;}
.y267{bottom:653.956899px;}
.yf{bottom:654.291415px;}
.y21f{bottom:658.461649px;}
.y1d8{bottom:658.549389px;}
.yf8{bottom:661.522705px;}
.y114{bottom:661.529297px;}
.y6d{bottom:667.389771px;}
.y8a{bottom:667.391996px;}
.y266{bottom:667.392583px;}
.y177{bottom:667.399665px;}
.y54{bottom:667.399704px;}
.yc4{bottom:667.406534px;}
.y1ad{bottom:667.423186px;}
.y21e{bottom:671.897345px;}
.ye{bottom:672.320071px;}
.y1d7{bottom:676.577285px;}
.yf7{bottom:679.465347px;}
.y113{bottom:679.471939px;}
.y265{bottom:680.913777px;}
.y6c{bottom:685.417648px;}
.y21d{bottom:685.418540px;}
.y89{bottom:685.419892px;}
.y176{bottom:685.427561px;}
.y53{bottom:685.427582px;}
.yc3{bottom:685.434430px;}
.y1ac{bottom:685.451082px;}
.yd{bottom:690.263263px;}
.y264{bottom:694.434972px;}
.y1d6{bottom:694.605182px;}
.yf6{bottom:697.493271px;}
.y112{bottom:697.499863px;}
.y21c{bottom:698.939734px;}
.y6b{bottom:703.445572px;}
.y88{bottom:703.447788px;}
.y175{bottom:703.455458px;}
.y52{bottom:703.455505px;}
.yc2{bottom:703.462326px;}
.y1ab{bottom:703.478979px;}
.y263{bottom:707.956166px;}
.yc{bottom:708.291919px;}
.y21b{bottom:712.460929px;}
.y1d5{bottom:712.547819px;}
.yf4{bottom:713.054993px;}
.yf5{bottom:715.521149px;}
.yf3{bottom:715.522568px;}
.y111{bottom:715.527740px;}
.y6a{bottom:721.388855px;}
.y87{bottom:721.390425px;}
.y262{bottom:721.391850px;}
.y174{bottom:721.398095px;}
.y51{bottom:721.398102px;}
.yc1{bottom:721.404963px;}
.y1aa{bottom:721.421616px;}
.y21a{bottom:725.896625px;}
.yb{bottom:726.320621px;}
.y1d4{bottom:730.575715px;}
.yf2{bottom:733.465210px;}
.y110{bottom:733.470383px;}
.y261{bottom:734.913045px;}
.y219{bottom:739.417819px;}
.y86{bottom:739.418322px;}
.y173{bottom:739.425991px;}
.y50{bottom:739.426025px;}
.yc0{bottom:739.432860px;}
.y1a9{bottom:739.449512px;}
.ya{bottom:744.263812px;}
.y260{bottom:748.434239px;}
.y1d3{bottom:748.603611px;}
.yf1{bottom:751.493088px;}
.y10f{bottom:751.498260px;}
.y218{bottom:752.939014px;}
.y85{bottom:757.446218px;}
.y172{bottom:757.453887px;}
.y4f{bottom:757.453903px;}
.ybf{bottom:757.460756px;}
.y69{bottom:757.465668px;}
.y1a8{bottom:757.477408px;}
.y25f{bottom:761.955434px;}
.y9{bottom:762.292468px;}
.y217{bottom:766.460208px;}
.y1d2{bottom:766.546248px;}
.yef{bottom:767.054993px;}
.yf0{bottom:769.520966px;}
.yee{bottom:769.524170px;}
.y10e{bottom:769.526184px;}
.y83{bottom:773.007751px;}
.y84{bottom:775.388855px;}
.y25e{bottom:775.392308px;}
.y82{bottom:775.396524px;}
.y4e{bottom:775.396545px;}
.ybe{bottom:775.403393px;}
.y68{bottom:775.408356px;}
.y1a7{bottom:775.420045px;}
.y216{bottom:779.895905px;}
.y8{bottom:780.321170px;}
.y1d1{bottom:784.574144px;}
.yed{bottom:787.466766px;}
.y10d{bottom:787.468781px;}
.y25d{bottom:788.913457px;}
.y215{bottom:793.417998px;}
.y81{bottom:793.424420px;}
.y4d{bottom:793.424469px;}
.ybd{bottom:793.431289px;}
.y67{bottom:793.436188px;}
.y1a6{bottom:793.447942px;}
.y25c{bottom:802.434697px;}
.y1d0{bottom:802.602041px;}
.yec{bottom:805.494690px;}
.y10c{bottom:805.496704px;}
.y7{bottom:807.278598px;}
.y4c{bottom:811.452301px;}
.y80{bottom:811.452317px;}
.ybc{bottom:811.459185px;}
.y66{bottom:811.464111px;}
.y1a5{bottom:811.475838px;}
.y25b{bottom:815.955846px;}
.y1cf{bottom:820.544678px;}
.yeb{bottom:823.522614px;}
.y10b{bottom:823.524628px;}
.y214{bottom:829.389392px;}
.y25a{bottom:829.391576px;}
.y7f{bottom:829.394954px;}
.y4b{bottom:829.394989px;}
.ybb{bottom:829.401822px;}
.y65{bottom:829.406708px;}
.y1a4{bottom:829.418475px;}
.y1ce{bottom:838.573059px;}
.yea{bottom:841.465210px;}
.y10a{bottom:841.467224px;}
.y213{bottom:842.910587px;}
.y259{bottom:842.912724px;}
.y7e{bottom:847.422850px;}
.y4a{bottom:847.422913px;}
.yba{bottom:847.429719px;}
.y64{bottom:847.434631px;}
.y1a3{bottom:847.446371px;}
.y258{bottom:856.433965px;}
.ye9{bottom:859.493134px;}
.y109{bottom:859.495148px;}
.y5{bottom:865.020267px;}
.y49{bottom:865.450745px;}
.y7d{bottom:865.450746px;}
.yb9{bottom:865.457615px;}
.y63{bottom:865.462555px;}
.y1a2{bottom:865.474267px;}
.y212{bottom:869.952976px;}
.y257{bottom:869.955113px;}
.y6{bottom:872.418643px;}
.ye8{bottom:877.520966px;}
.y108{bottom:877.522980px;}
.y211{bottom:883.388672px;}
.y256{bottom:883.390843px;}
.y7c{bottom:883.393383px;}
.y48{bottom:883.393433px;}
.yb8{bottom:883.400252px;}
.y62{bottom:883.405151px;}
.y1a1{bottom:883.416904px;}
.y210{bottom:888.406219px;}
.y20f{bottom:896.910141px;}
.y255{bottom:896.911992px;}
.y4{bottom:901.078036px;}
.y47{bottom:901.421265px;}
.y7b{bottom:901.421279px;}
.yb7{bottom:901.428148px;}
.y61{bottom:901.433075px;}
.y1a0{bottom:901.444801px;}
.y20e{bottom:910.431335px;}
.y20c{bottom:910.431381px;}
.y254{bottom:910.433232px;}
.y20d{bottom:915.448608px;}
.y7a{bottom:919.449176px;}
.y46{bottom:919.449188px;}
.yb6{bottom:919.456045px;}
.y60{bottom:919.460999px;}
.y19f{bottom:919.472697px;}
.y132{bottom:923.612366px;}
.y20b{bottom:923.952576px;}
.y253{bottom:923.954381px;}
.y20a{bottom:928.884888px;}
.y209{bottom:937.388809px;}
.y252{bottom:937.390111px;}
.y79{bottom:937.391813px;}
.y45{bottom:937.391876px;}
.yb5{bottom:937.398682px;}
.y5f{bottom:937.403595px;}
.y19e{bottom:937.415334px;}
.y3{bottom:940.026584px;}
.y12f{bottom:941.385590px;}
.y130{bottom:943.341431px;}
.y12e{bottom:943.341705px;}
.y131{bottom:948.699005px;}
.y208{bottom:950.910004px;}
.y206{bottom:950.910141px;}
.y251{bottom:950.911351px;}
.y44{bottom:955.419708px;}
.yb4{bottom:955.426578px;}
.y5e{bottom:955.431519px;}
.y19d{bottom:955.443230px;}
.y207{bottom:955.927368px;}
.y12d{bottom:964.346283px;}
.y12b{bottom:964.346374px;}
.y205{bottom:964.431335px;}
.y250{bottom:964.432500px;}
.y204{bottom:969.448608px;}
.y12c{bottom:969.703766px;}
.y78{bottom:973.447605px;}
.y43{bottom:973.447632px;}
.yb3{bottom:973.454474px;}
.y5d{bottom:973.459351px;}
.y19c{bottom:973.471127px;}
.y24f{bottom:977.953740px;}
.y203{bottom:977.953812px;}
.y2{bottom:979.057986px;}
.y12a{bottom:985.350861px;}
.y128{bottom:985.351135px;}
.y129{bottom:990.708435px;}
.y24e{bottom:991.389379px;}
.y77{bottom:991.390242px;}
.y42{bottom:991.390320px;}
.yb2{bottom:991.397111px;}
.y5c{bottom:991.402039px;}
.y19b{bottom:991.413764px;}
.y24d{bottom:1004.910619px;}
.y202{bottom:1004.910701px;}
.y127{bottom:1006.355713px;}
.y125{bottom:1006.355804px;}
.y76{bottom:1009.418139px;}
.y41{bottom:1009.418152px;}
.yb1{bottom:1009.425007px;}
.y5b{bottom:1009.429962px;}
.y19a{bottom:1009.441660px;}
.y126{bottom:1011.713287px;}
.y24c{bottom:1018.431767px;}
.y201{bottom:1018.431896px;}
.y124{bottom:1024.043884px;}
.y123{bottom:1026.084778px;}
.y75{bottom:1027.446035px;}
.y40{bottom:1027.446075px;}
.yb0{bottom:1027.452904px;}
.y5a{bottom:1027.457794px;}
.y199{bottom:1027.469556px;}
.y24b{bottom:1031.953008px;}
.y200{bottom:1031.953090px;}
.y1{bottom:1036.034366px;}
.y24a{bottom:1045.388646px;}
.y3f{bottom:1045.388672px;}
.y1ff{bottom:1045.388786px;}
.yaf{bottom:1045.395541px;}
.y59{bottom:1045.400482px;}
.y198{bottom:1045.412193px;}
.y122{bottom:1045.813934px;}
.y74{bottom:1114.946136px;}
.y137{bottom:1114.946228px;}
.y171{bottom:1114.948059px;}
.y3e{bottom:1114.950346px;}
.y288{bottom:1114.950411px;}
.ye7{bottom:1114.950525px;}
.y73{bottom:1129.913544px;}
.y136{bottom:1129.913635px;}
.y170{bottom:1129.915466px;}
.y3d{bottom:1129.917845px;}
.y287{bottom:1129.917910px;}
.ye6{bottom:1129.917938px;}
.hb{height:21.626539px;}
.hf{height:23.068395px;}
.h13{height:28.350001px;}
.h9{height:28.376746px;}
.hc{height:30.281567px;}
.h12{height:31.089601px;}
.h10{height:31.580232px;}
.h5{height:31.721259px;}
.ha{height:32.444567px;}
.hd{height:34.607567px;}
.he{height:38.934000px;}
.h11{height:40.651940px;}
.h8{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:44.557801px;}
.h4{height:47.586433px;}
.h2{height:56.238000px;}
.h3{height:103.824429px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039367px;}
.x12{left:89.036262px;}
.x1{left:91.077167px;}
.x34{left:92.947952px;}
.xa{left:94.818915px;}
.x14{left:97.030025px;}
.x37{left:98.390545px;}
.x38{left:102.472504px;}
.x44{left:107.575768px;}
.x15{left:115.568550px;}
.x16{left:127.899147px;}
.x3c{left:135.807896px;}
.x3d{left:144.396755px;}
.x19{left:158.938499px;}
.x39{left:159.958946px;}
.x3a{left:164.040905px;}
.x1a{left:171.269245px;}
.x21{left:196.355850px;}
.x22{left:212.343292px;}
.x3{left:216.085067px;}
.x2d{left:219.996757px;}
.x4{left:221.782668px;}
.x1e{left:235.218910px;}
.x2b{left:236.664459px;}
.x45{left:240.491249px;}
.x2e{left:242.277145px;}
.x2c{left:244.233009px;}
.x2f{left:249.845695px;}
.x29{left:261.496056px;}
.x23{left:263.366844px;}
.x2a{left:269.064446px;}
.x13{left:270.680304px;}
.x32{left:273.656708px;}
.x24{left:276.037651px;}
.x3b{left:277.908600px;}
.x33{left:279.184204px;}
.x30{left:284.626648px;}
.x1f{left:289.303940px;}
.x5{left:307.587310px;}
.x20{left:308.777847px;}
.x6{left:313.200019px;}
.x31{left:314.475449px;}
.x35{left:330.718048px;}
.x36{left:334.799995px;}
.x25{left:371.196739px;}
.x17{left:414.736954px;}
.x7{left:418.648833px;}
.x18{left:427.832977px;}
.x8{left:428.938537px;}
.x1b{left:431.064468px;}
.xb{left:457.085235px;}
.x3e{left:461.083328px;}
.x10{left:468.141601px;}
.x11{left:473.499175px;}
.x43{left:479.621798px;}
.x47{left:483.219131px;}
.x46{left:484.282654px;}
.x41{left:519.165298px;}
.x42{left:523.247086px;}
.x26{left:537.703812px;}
.x27{left:557.433014px;}
.x9{left:567.637679px;}
.x1c{left:588.387314px;}
.x1d{left:598.336807px;}
.x28{left:624.443985px;}
.x3f{left:628.185608px;}
.x40{left:632.267532px;}
.xc{left:740.182494px;}
.xd{left:745.540069px;}
.xe{left:774.963607px;}
.xf{left:785.593520px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls59{letter-spacing:-1.202121pt;}
.ls6d{letter-spacing:-0.903988pt;}
.ls6c{letter-spacing:-0.835985pt;}
.ls70{letter-spacing:-0.831989pt;}
.ls11{letter-spacing:-0.815352pt;}
.lsb{letter-spacing:-0.810675pt;}
.ls40{letter-spacing:-0.810125pt;}
.ls6{letter-spacing:-0.794675pt;}
.ls49{letter-spacing:-0.794445pt;}
.lsa{letter-spacing:-0.789341pt;}
.ls72{letter-spacing:-0.787989pt;}
.lsd{letter-spacing:-0.784008pt;}
.ls47{letter-spacing:-0.783992pt;}
.ls6f{letter-spacing:-0.779990pt;}
.lsf{letter-spacing:-0.778674pt;}
.ls7{letter-spacing:-0.773341pt;}
.ls43{letter-spacing:-0.768312pt;}
.ls9{letter-spacing:-0.768008pt;}
.ls41{letter-spacing:-0.763086pt;}
.lsc{letter-spacing:-0.762674pt;}
.ls3b{letter-spacing:-0.757859pt;}
.ls5{letter-spacing:-0.757341pt;}
.ls2d{letter-spacing:-0.752632pt;}
.lse{letter-spacing:-0.752008pt;}
.ls10{letter-spacing:-0.747406pt;}
.ls3d{letter-spacing:-0.745565pt;}
.ls6e{letter-spacing:-0.743986pt;}
.ls31{letter-spacing:-0.742179pt;}
.ls42{letter-spacing:-0.736952pt;}
.ls4{letter-spacing:-0.736007pt;}
.ls1f{letter-spacing:-0.731726pt;}
.ls2e{letter-spacing:-0.726499pt;}
.ls8{letter-spacing:-0.725341pt;}
.ls22{letter-spacing:-0.721273pt;}
.ls46{letter-spacing:-0.716046pt;}
.ls48{letter-spacing:-0.710819pt;}
.ls30{letter-spacing:-0.705593pt;}
.ls69{letter-spacing:-0.699991pt;}
.ls1e{letter-spacing:-0.689913pt;}
.ls2f{letter-spacing:-0.684686pt;}
.ls6a{letter-spacing:-0.667991pt;}
.ls3c{letter-spacing:-0.658553pt;}
.ls3f{letter-spacing:-0.648011pt;}
.ls68{letter-spacing:-0.599992pt;}
.ls20{letter-spacing:-0.501754pt;}
.ls34{letter-spacing:-0.005227pt;}
.ls2{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000130pt;}
.ls16{letter-spacing:0.005227pt;}
.ls5f{letter-spacing:0.020036pt;}
.ls5d{letter-spacing:0.051936pt;}
.ls62{letter-spacing:0.051979pt;}
.ls4f{letter-spacing:0.051998pt;}
.ls5c{letter-spacing:0.052022pt;}
.ls63{letter-spacing:0.052107pt;}
.ls14{letter-spacing:0.548794pt;}
.ls13{letter-spacing:0.574927pt;}
.ls4d{letter-spacing:0.580154pt;}
.ls12{letter-spacing:0.590607pt;}
.ls76{letter-spacing:0.607992pt;}
.ls15{letter-spacing:0.616740pt;}
.ls2c{letter-spacing:0.627193pt;}
.ls4c{letter-spacing:0.632420pt;}
.ls7b{letter-spacing:0.679991pt;}
.ls61{letter-spacing:0.687987pt;}
.ls7a{letter-spacing:0.719990pt;}
.ls74{letter-spacing:0.723990pt;}
.ls79{letter-spacing:0.751990pt;}
.ls5a{letter-spacing:0.767990pt;}
.ls45{letter-spacing:0.783992pt;}
.ls73{letter-spacing:0.795989pt;}
.ls51{letter-spacing:0.803989pt;}
.ls2b{letter-spacing:0.804898pt;}
.ls1a{letter-spacing:0.815352pt;}
.ls54{letter-spacing:0.815989pt;}
.ls50{letter-spacing:0.823989pt;}
.ls23{letter-spacing:0.825805pt;}
.ls57{letter-spacing:0.835989pt;}
.ls44{letter-spacing:0.836258pt;}
.ls1c{letter-spacing:0.851933pt;}
.ls26{letter-spacing:0.851938pt;}
.ls60{letter-spacing:0.855989pt;}
.ls1b{letter-spacing:0.857165pt;}
.ls53{letter-spacing:0.859989pt;}
.ls0{letter-spacing:0.862391pt;}
.ls5b{letter-spacing:0.863988pt;}
.ls24{letter-spacing:0.867618pt;}
.ls64{letter-spacing:0.867988pt;}
.ls21{letter-spacing:0.872844pt;}
.ls18{letter-spacing:0.878071pt;}
.ls28{letter-spacing:0.883298pt;}
.ls77{letter-spacing:0.883988pt;}
.ls67{letter-spacing:0.887988pt;}
.ls27{letter-spacing:0.888524pt;}
.ls55{letter-spacing:0.891988pt;}
.ls32{letter-spacing:0.893751pt;}
.ls19{letter-spacing:0.904204pt;}
.ls1d{letter-spacing:0.909431pt;}
.ls25{letter-spacing:0.914657pt;}
.ls52{letter-spacing:0.915988pt;}
.ls17{letter-spacing:0.919884pt;}
.ls78{letter-spacing:0.919988pt;}
.ls56{letter-spacing:0.923988pt;}
.ls29{letter-spacing:0.930337pt;}
.ls4b{letter-spacing:0.940790pt;}
.ls75{letter-spacing:0.995983pt;}
.ls58{letter-spacing:1.007987pt;}
.ls33{letter-spacing:1.013963pt;}
.ls6b{letter-spacing:9.883868pt;}
.ls71{letter-spacing:10.107865pt;}
.ls65{letter-spacing:11.680126pt;}
.ls4e{letter-spacing:12.003840pt;}
.ls5e{letter-spacing:12.171860pt;}
.ls3{letter-spacing:13.573469pt;}
.ls36{letter-spacing:14.122358pt;}
.ls35{letter-spacing:16.009073pt;}
.ls1{letter-spacing:18.235654pt;}
.ls3e{letter-spacing:23.979701pt;}
.ls4a{letter-spacing:25.380436pt;}
.ls2a{letter-spacing:27.539026pt;}
.ls3a{letter-spacing:175.652189pt;}
.ls37{letter-spacing:347.093270pt;}
.ls38{letter-spacing:415.124357pt;}
.ls39{letter-spacing:428.730640pt;}
.wsf1{word-spacing:-24.031967pt;}
.ws2e{word-spacing:-18.287920pt;}
.ws8{word-spacing:-13.626803pt;}
.ws245{word-spacing:-10.147865pt;}
.ws268{word-spacing:-9.340800pt;}
.ws209{word-spacing:-0.963987pt;}
.ws24d{word-spacing:-0.931988pt;}
.ws20a{word-spacing:-0.875988pt;}
.ws24c{word-spacing:-0.647991pt;}
.ws24{word-spacing:-0.054933pt;}
.ws23{word-spacing:-0.053334pt;}
.ws2f{word-spacing:-0.052266pt;}
.ws45{word-spacing:-0.042666pt;}
.ws3a{word-spacing:-0.039999pt;}
.ws260{word-spacing:-0.038934pt;}
.ws46{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.449488pt;}
.ws233{word-spacing:0.627992pt;}
.ws22d{word-spacing:9.603872pt;}
.ws231{word-spacing:9.611859pt;}
.ws22f{word-spacing:9.615871pt;}
.ws230{word-spacing:9.703871pt;}
.ws39{word-spacing:10.563859pt;}
.ws240{word-spacing:10.699857pt;}
.ws23f{word-spacing:10.807852pt;}
.ws22e{word-spacing:10.891854pt;}
.ws246{word-spacing:10.931854pt;}
.ws41{word-spacing:11.046775pt;}
.ws40{word-spacing:11.080374pt;}
.ws3f{word-spacing:11.169974pt;}
.ws232{word-spacing:11.207848pt;}
.ws123{word-spacing:11.244640pt;}
.ws1f9{word-spacing:11.299862pt;}
.ws237{word-spacing:11.387848pt;}
.ws244{word-spacing:11.391848pt;}
.ws220{word-spacing:11.403848pt;}
.ws217{word-spacing:11.407848pt;}
.ws264{word-spacing:11.493278pt;}
.ws261{word-spacing:11.582825pt;}
.ws262{word-spacing:11.676230pt;}
.ws22a{word-spacing:11.687844pt;}
.ws266{word-spacing:11.687947pt;}
.ws253{word-spacing:11.691843pt;}
.ws215{word-spacing:11.695844pt;}
.ws1fe{word-spacing:11.699844pt;}
.ws258{word-spacing:11.719844pt;}
.ws235{word-spacing:11.723844pt;}
.ws221{word-spacing:11.727844pt;}
.ws229{word-spacing:11.731843pt;}
.ws23e{word-spacing:11.739839pt;}
.ws263{word-spacing:11.742454pt;}
.ws23b{word-spacing:11.743843pt;}
.ws1fc{word-spacing:11.751843pt;}
.ws224{word-spacing:11.759843pt;}
.ws1da{word-spacing:11.763843pt;}
.ws238{word-spacing:11.767843pt;}
.ws1f6{word-spacing:11.771842pt;}
.ws1f4{word-spacing:11.775842pt;}
.ws243{word-spacing:11.775921pt;}
.ws216{word-spacing:11.779843pt;}
.ws1f0{word-spacing:11.783843pt;}
.ws250{word-spacing:11.787836pt;}
.ws21e{word-spacing:11.787843pt;}
.ws23a{word-spacing:11.791842pt;}
.ws222{word-spacing:11.795842pt;}
.ws200{word-spacing:11.799842pt;}
.ws3d{word-spacing:11.807843pt;}
.ws213{word-spacing:11.811842pt;}
.ws201{word-spacing:11.815842pt;}
.ws24e{word-spacing:11.819842pt;}
.ws1e7{word-spacing:11.823842pt;}
.ws256{word-spacing:11.827843pt;}
.ws1f7{word-spacing:11.831842pt;}
.ws1d5{word-spacing:11.835842pt;}
.ws267{word-spacing:11.839772pt;}
.ws21f{word-spacing:11.839842pt;}
.ws20e{word-spacing:11.843839pt;}
.ws1f5{word-spacing:11.843842pt;}
.ws22b{word-spacing:11.847795pt;}
.ws23c{word-spacing:11.847837pt;}
.ws1f1{word-spacing:11.847841pt;}
.ws254{word-spacing:11.847880pt;}
.ws1fa{word-spacing:11.851841pt;}
.ws3b{word-spacing:11.859842pt;}
.ws20f{word-spacing:11.863842pt;}
.ws1d2{word-spacing:11.867842pt;}
.ws1f2{word-spacing:11.871841pt;}
.ws242{word-spacing:11.875841pt;}
.ws20d{word-spacing:11.879841pt;}
.ws1e0{word-spacing:11.883842pt;}
.ws1ee{word-spacing:11.887842pt;}
.ws1fd{word-spacing:11.891841pt;}
.ws1e9{word-spacing:11.895841pt;}
.ws223{word-spacing:11.903834pt;}
.ws1e2{word-spacing:11.903841pt;}
.ws239{word-spacing:11.907841pt;}
.ws1e5{word-spacing:11.911840pt;}
.ws1f8{word-spacing:11.915841pt;}
.ws241{word-spacing:11.919841pt;}
.ws227{word-spacing:11.923841pt;}
.ws21d{word-spacing:11.927834pt;}
.ws21a{word-spacing:11.931840pt;}
.ws1ff{word-spacing:11.939841pt;}
.ws1d9{word-spacing:11.943841pt;}
.ws1db{word-spacing:11.951840pt;}
.ws20b{word-spacing:11.963841pt;}
.ws1d1{word-spacing:11.967841pt;}
.ws226{word-spacing:11.971840pt;}
.ws257{word-spacing:11.975840pt;}
.ws255{word-spacing:11.979840pt;}
.ws212{word-spacing:11.987838pt;}
.ws1f3{word-spacing:11.987840pt;}
.ws218{word-spacing:11.991839pt;}
.ws1d3{word-spacing:11.995840pt;}
.ws1d4{word-spacing:12.003840pt;}
.ws3e{word-spacing:12.007840pt;}
.ws214{word-spacing:12.011839pt;}
.ws21b{word-spacing:12.011841pt;}
.ws265{word-spacing:12.022777pt;}
.ws3c{word-spacing:12.023840pt;}
.ws1de{word-spacing:12.027840pt;}
.ws21c{word-spacing:12.031839pt;}
.ws1eb{word-spacing:12.035839pt;}
.ws1dd{word-spacing:12.039839pt;}
.ws1ef{word-spacing:12.043839pt;}
.ws225{word-spacing:12.047831pt;}
.ws219{word-spacing:12.047836pt;}
.ws211{word-spacing:12.047842pt;}
.ws252{word-spacing:12.047860pt;}
.ws228{word-spacing:12.055839pt;}
.ws1e3{word-spacing:12.067839pt;}
.ws1e8{word-spacing:12.071838pt;}
.ws1e4{word-spacing:12.091838pt;}
.ws1e6{word-spacing:12.095838pt;}
.ws1dc{word-spacing:12.099838pt;}
.ws1d7{word-spacing:12.103839pt;}
.ws1fb{word-spacing:12.107839pt;}
.ws1ec{word-spacing:12.115838pt;}
.ws1d6{word-spacing:12.143838pt;}
.ws20c{word-spacing:12.163837pt;}
.ws251{word-spacing:12.163850pt;}
.ws236{word-spacing:12.183838pt;}
.ws24f{word-spacing:12.223837pt;}
.ws125{word-spacing:12.240913pt;}
.ws80{word-spacing:12.266513pt;}
.ws1d8{word-spacing:12.267836pt;}
.ws1ea{word-spacing:12.279836pt;}
.ws1df{word-spacing:12.295836pt;}
.ws122{word-spacing:12.296380pt;}
.ws156{word-spacing:12.296433pt;}
.ws1e1{word-spacing:12.339835pt;}
.ws126{word-spacing:12.347579pt;}
.ws158{word-spacing:12.351845pt;}
.ws210{word-spacing:12.395834pt;}
.ws1ed{word-spacing:12.407835pt;}
.ws120{word-spacing:12.415845pt;}
.ws11e{word-spacing:12.424378pt;}
.ws7e{word-spacing:12.428644pt;}
.wse9{word-spacing:12.454247pt;}
.ws44{word-spacing:12.454276pt;}
.ws7f{word-spacing:12.475599pt;}
.ws81{word-spacing:12.496853pt;}
.wse8{word-spacing:12.496910pt;}
.ws42{word-spacing:12.496934pt;}
.ws43{word-spacing:12.509711pt;}
.ws157{word-spacing:12.556642pt;}
.ws11c{word-spacing:12.573710pt;}
.ws11b{word-spacing:12.577975pt;}
.ws155{word-spacing:12.595043pt;}
.ws11d{word-spacing:12.599308pt;}
.ws82{word-spacing:12.667575pt;}
.ws1aa{word-spacing:12.711124pt;}
.ws11f{word-spacing:12.723041pt;}
.ws124{word-spacing:12.782774pt;}
.ws18b{word-spacing:12.852242pt;}
.ws37{word-spacing:13.124026pt;}
.ws14f{word-spacing:13.160613pt;}
.ws47{word-spacing:13.171066pt;}
.ws1c{word-spacing:13.269466pt;}
.wsf2{word-spacing:13.306958pt;}
.ws1ae{word-spacing:13.495115pt;}
.wsc7{word-spacing:13.495116pt;}
.ws191{word-spacing:13.615328pt;}
.ws1e{word-spacing:13.621499pt;}
.ws1b{word-spacing:13.653470pt;}
.ws1f{word-spacing:13.728137pt;}
.ws5a{word-spacing:13.923698pt;}
.ws1d{word-spacing:13.957474pt;}
.ws1cd{word-spacing:13.991645pt;}
.wscd{word-spacing:14.017778pt;}
.ws149{word-spacing:14.028230pt;}
.ws18c{word-spacing:14.033457pt;}
.ws1b0{word-spacing:14.054363pt;}
.wsc5{word-spacing:14.137989pt;}
.ws111{word-spacing:14.158896pt;}
.ws15d{word-spacing:14.185028pt;}
.wsc8{word-spacing:14.252975pt;}
.wsfe{word-spacing:14.315694pt;}
.ws142{word-spacing:14.341827pt;}
.ws1a3{word-spacing:14.357508pt;}
.ws118{word-spacing:14.404800pt;}
.ws15{word-spacing:14.469478pt;}
.ws35{word-spacing:14.477719pt;}
.ws16{word-spacing:14.480146pt;}
.ws71{word-spacing:14.613610pt;}
.ws171{word-spacing:14.644971pt;}
.ws166{word-spacing:14.686784pt;}
.ws204{word-spacing:14.743809pt;}
.ws17{word-spacing:14.762842pt;}
.ws208{word-spacing:14.767801pt;}
.wsbf{word-spacing:14.770410pt;}
.ws101{word-spacing:14.780862pt;}
.ws25a{word-spacing:14.783803pt;}
.ws259{word-spacing:14.787802pt;}
.ws24a{word-spacing:14.803864pt;}
.ws1cf{word-spacing:14.843582pt;}
.ws25c{word-spacing:14.851802pt;}
.ws248{word-spacing:14.867802pt;}
.ws1a5{word-spacing:14.869716pt;}
.ws9{word-spacing:14.874816pt;}
.ws4e{word-spacing:14.890621pt;}
.ws1a{word-spacing:14.933449pt;}
.wsf3{word-spacing:14.937660pt;}
.ws207{word-spacing:14.943800pt;}
.wsc{word-spacing:14.949482pt;}
.ws10{word-spacing:14.965483pt;}
.ws12{word-spacing:14.976150pt;}
.wsc1{word-spacing:14.984701pt;}
.wsb{word-spacing:14.992151pt;}
.ws13{word-spacing:15.002817pt;}
.ws19{word-spacing:15.013484pt;}
.ws203{word-spacing:15.019800pt;}
.ws1b2{word-spacing:15.063100pt;}
.ws206{word-spacing:15.079798pt;}
.ws25f{word-spacing:15.087780pt;}
.ws24b{word-spacing:15.087823pt;}
.ws247{word-spacing:15.091777pt;}
.ws22c{word-spacing:15.095799pt;}
.wsd{word-spacing:15.104152pt;}
.wse{word-spacing:15.130818pt;}
.ws205{word-spacing:15.167798pt;}
.wsa{word-spacing:15.168153pt;}
.ws249{word-spacing:15.175797pt;}
.ws11{word-spacing:15.200152pt;}
.ws25b{word-spacing:15.227778pt;}
.wsf{word-spacing:15.232152pt;}
.ws141{word-spacing:15.235578pt;}
.ws202{word-spacing:15.263797pt;}
.ws25d{word-spacing:15.271796pt;}
.ws18{word-spacing:15.285486pt;}
.ws58{word-spacing:15.324431pt;}
.wsca{word-spacing:15.329656pt;}
.ws14{word-spacing:15.349487pt;}
.ws1b1{word-spacing:15.381922pt;}
.wsc0{word-spacing:15.387149pt;}
.ws195{word-spacing:15.423737pt;}
.ws1b8{word-spacing:15.439416pt;}
.ws25e{word-spacing:15.439820pt;}
.wsc9{word-spacing:15.465549pt;}
.ws10e{word-spacing:15.491682pt;}
.ws50{word-spacing:15.502136pt;}
.ws94{word-spacing:15.543948pt;}
.ws1bd{word-spacing:15.559629pt;}
.ws7a{word-spacing:15.596214pt;}
.ws7b{word-spacing:15.611895pt;}
.ws103{word-spacing:15.653707pt;}
.ws104{word-spacing:15.664161pt;}
.ws77{word-spacing:15.674613pt;}
.wsa4{word-spacing:15.711200pt;}
.ws86{word-spacing:15.732106pt;}
.ws16d{word-spacing:15.747786pt;}
.ws10f{word-spacing:15.768693pt;}
.wsb0{word-spacing:15.789599pt;}
.wsa1{word-spacing:15.805278pt;}
.ws132{word-spacing:15.831412pt;}
.ws129{word-spacing:15.836638pt;}
.wsaf{word-spacing:15.852318pt;}
.ws168{word-spacing:15.920265pt;}
.ws115{word-spacing:15.977758pt;}
.ws108{word-spacing:16.003891pt;}
.ws88{word-spacing:16.035249pt;}
.ws177{word-spacing:16.071836pt;}
.ws160{word-spacing:16.108423pt;}
.ws1ce{word-spacing:16.134556pt;}
.ws189{word-spacing:16.181594pt;}
.wsb3{word-spacing:16.192048pt;}
.wsfa{word-spacing:16.202501pt;}
.ws186{word-spacing:16.270448pt;}
.ws150{word-spacing:16.280901pt;}
.ws25{word-spacing:16.301807pt;}
.ws180{word-spacing:16.338394pt;}
.wseb{word-spacing:16.411566pt;}
.ws1bf{word-spacing:16.416793pt;}
.wsb7{word-spacing:16.432472pt;}
.ws1d0{word-spacing:16.441546pt;}
.ws19a{word-spacing:16.453378pt;}
.ws1c7{word-spacing:16.458605pt;}
.ws16f{word-spacing:16.510871pt;}
.ws1af{word-spacing:16.531777pt;}
.ws7{word-spacing:16.533485pt;}
.ws148{word-spacing:16.552685pt;}
.wsb9{word-spacing:16.573591pt;}
.ws9b{word-spacing:16.578818pt;}
.ws197{word-spacing:16.584045pt;}
.ws12c{word-spacing:16.646764pt;}
.ws89{word-spacing:16.662443pt;}
.ws99{word-spacing:16.672897pt;}
.wscc{word-spacing:16.714709pt;}
.ws1a1{word-spacing:16.719937pt;}
.ws9c{word-spacing:16.746069pt;}
.ws185{word-spacing:16.808789pt;}
.ws1b9{word-spacing:16.923773pt;}
.ws85{word-spacing:17.002173pt;}
.ws33{word-spacing:17.017853pt;}
.ws1b4{word-spacing:17.028306pt;}
.wsf6{word-spacing:17.054439pt;}
.ws12e{word-spacing:17.059666pt;}
.ws19f{word-spacing:17.096253pt;}
.ws13e{word-spacing:17.148519pt;}
.ws10a{word-spacing:17.153746pt;}
.ws56{word-spacing:17.216464pt;}
.ws10b{word-spacing:17.237370pt;}
.ws117{word-spacing:17.247824pt;}
.wsd8{word-spacing:17.258277pt;}
.ws199{word-spacing:17.289636pt;}
.ws139{word-spacing:17.315769pt;}
.ws1a9{word-spacing:17.404622pt;}
.ws4{word-spacing:17.406559pt;}
.ws1c0{word-spacing:17.503928pt;}
.ws179{word-spacing:17.540515pt;}
.wsdc{word-spacing:17.550967pt;}
.ws5{word-spacing:17.570827pt;}
.wsd2{word-spacing:17.587554pt;}
.ws19e{word-spacing:17.603233pt;}
.wsbd{word-spacing:17.676406pt;}
.wsfd{word-spacing:17.681632pt;}
.wsb4{word-spacing:17.697313pt;}
.wsae{word-spacing:17.712992pt;}
.ws6{word-spacing:17.758562pt;}
.ws2d{word-spacing:17.796618pt;}
.wsbc{word-spacing:17.807072pt;}
.ws3{word-spacing:17.817230pt;}
.ws1b7{word-spacing:17.848885pt;}
.ws17a{word-spacing:17.880245pt;}
.ws55{word-spacing:17.922057pt;}
.wsce{word-spacing:17.969096pt;}
.ws36{word-spacing:18.021362pt;}
.ws7c{word-spacing:18.073628pt;}
.ws17c{word-spacing:18.157254pt;}
.ws18a{word-spacing:18.178161pt;}
.ws10c{word-spacing:18.277467pt;}
.ws116{word-spacing:18.366319pt;}
.ws1a8{word-spacing:18.371546pt;}
.ws184{word-spacing:18.376773pt;}
.wse4{word-spacing:18.408133pt;}
.ws12b{word-spacing:18.538798pt;}
.ws16b{word-spacing:18.559704pt;}
.ws152{word-spacing:18.591064pt;}
.wsaa{word-spacing:18.638104pt;}
.ws4b{word-spacing:18.679916pt;}
.ws18d{word-spacing:18.700822pt;}
.wsef{word-spacing:18.711276pt;}
.ws181{word-spacing:18.763542pt;}
.ws1c9{word-spacing:18.815808pt;}
.ws193{word-spacing:18.841941pt;}
.ws4a{word-spacing:18.847168pt;}
.wsd9{word-spacing:18.883753pt;}
.wsfb{word-spacing:18.888980pt;}
.ws15f{word-spacing:18.904661pt;}
.ws54{word-spacing:18.977833pt;}
.ws153{word-spacing:19.003966pt;}
.ws10d{word-spacing:19.035326pt;}
.ws17f{word-spacing:19.134632pt;}
.ws63{word-spacing:19.165992pt;}
.ws98{word-spacing:19.244391pt;}
.ws165{word-spacing:19.328017pt;}
.ws18e{word-spacing:19.364602pt;}
.wsb6{word-spacing:19.375055pt;}
.ws59{word-spacing:19.395962pt;}
.wsd3{word-spacing:19.479587pt;}
.ws8b{word-spacing:19.521401pt;}
.ws30{word-spacing:19.537080pt;}
.ws23d{word-spacing:19.575739pt;}
.ws74{word-spacing:19.699105pt;}
.ws91{word-spacing:19.709559pt;}
.ws178{word-spacing:19.735692pt;}
.ws1c4{word-spacing:19.746149pt;}
.ws15e{word-spacing:19.767052pt;}
.ws9a{word-spacing:19.772278pt;}
.ws8d{word-spacing:19.845452pt;}
.wsab{word-spacing:19.871585pt;}
.ws60{word-spacing:19.876810pt;}
.ws1cc{word-spacing:19.913397pt;}
.wsa2{word-spacing:20.028383pt;}
.ws97{word-spacing:20.064968pt;}
.ws15a{word-spacing:20.080649pt;}
.ws79{word-spacing:20.122461pt;}
.ws96{word-spacing:20.127688pt;}
.ws1c5{word-spacing:20.148595pt;}
.wsfc{word-spacing:20.164274pt;}
.ws21{word-spacing:20.266894pt;}
.ws114{word-spacing:20.300166pt;}
.ws190{word-spacing:20.300167pt;}
.ws8a{word-spacing:20.321072pt;}
.ws6a{word-spacing:20.357659pt;}
.ws9e{word-spacing:20.394246pt;}
.ws19d{word-spacing:20.425604pt;}
.ws6b{word-spacing:20.451738pt;}
.ws167{word-spacing:20.504004pt;}
.ws159{word-spacing:20.509231pt;}
.ws107{word-spacing:20.676483pt;}
.ws8f{word-spacing:20.681708pt;}
.ws188{word-spacing:20.713069pt;}
.ws22{word-spacing:20.725541pt;}
.ws31{word-spacing:20.728749pt;}
.ws64{word-spacing:20.770561pt;}
.ws6c{word-spacing:20.781015pt;}
.ws62{word-spacing:20.812375pt;}
.ws57{word-spacing:20.828054pt;}
.ws69{word-spacing:20.911681pt;}
.ws20{word-spacing:20.912210pt;}
.ws173{word-spacing:20.922133pt;}
.ws109{word-spacing:20.979626pt;}
.ws0{word-spacing:21.021868pt;}
.ws6d{word-spacing:21.026666pt;}
.ws1c1{word-spacing:21.031892pt;}
.ws5b{word-spacing:21.047573pt;}
.ws12f{word-spacing:21.120745pt;}
.ws34{word-spacing:21.131197pt;}
.ws137{word-spacing:21.167784pt;}
.ws138{word-spacing:21.209596pt;}
.ws5c{word-spacing:21.230504pt;}
.wse3{word-spacing:21.251410pt;}
.ws72{word-spacing:21.282770pt;}
.ws6e{word-spacing:21.319362pt;}
.ws1a4{word-spacing:21.350716pt;}
.ws13b{word-spacing:21.371622pt;}
.ws90{word-spacing:21.549326pt;}
.wsc6{word-spacing:21.575459pt;}
.wse0{word-spacing:21.638179pt;}
.wsf9{word-spacing:21.669539pt;}
.ws53{word-spacing:21.805430pt;}
.ws2c{word-spacing:21.842017pt;}
.ws4f{word-spacing:21.852471pt;}
.wsba{word-spacing:21.868151pt;}
.wsbb{word-spacing:21.920417pt;}
.ws32{word-spacing:21.962230pt;}
.ws128{word-spacing:22.071988pt;}
.ws16a{word-spacing:22.186974pt;}
.ws51{word-spacing:22.213107pt;}
.ws134{word-spacing:22.265373pt;}
.ws1ba{word-spacing:22.307185pt;}
.ws2a{word-spacing:22.322865pt;}
.wsa3{word-spacing:22.458758pt;}
.ws1a2{word-spacing:22.484890pt;}
.ws170{word-spacing:22.500571pt;}
.ws2b{word-spacing:22.537157pt;}
.ws1c6{word-spacing:22.641690pt;}
.wsb5{word-spacing:22.673048pt;}
.ws13a{word-spacing:22.761901pt;}
.ws15c{word-spacing:22.793261pt;}
.wsc3{word-spacing:22.861207pt;}
.ws1a7{word-spacing:22.871660pt;}
.ws14e{word-spacing:23.059818pt;}
.ws162{word-spacing:23.065044pt;}
.ws1a0{word-spacing:23.112085pt;}
.wscb{word-spacing:23.185257pt;}
.ws70{word-spacing:23.221843pt;}
.ws87{word-spacing:23.284563pt;}
.ws100{word-spacing:23.305469pt;}
.ws4d{word-spacing:23.321149pt;}
.ws135{word-spacing:23.326375pt;}
.ws14a{word-spacing:23.362962pt;}
.wsf5{word-spacing:23.446588pt;}
.ws145{word-spacing:23.498854pt;}
.ws164{word-spacing:23.556347pt;}
.ws113{word-spacing:23.572026pt;}
.ws176{word-spacing:23.629519pt;}
.ws7d{word-spacing:23.681785pt;}
.wse1{word-spacing:23.692238pt;}
.ws174{word-spacing:23.723598pt;}
.ws1ab{word-spacing:23.807224pt;}
.wse5{word-spacing:23.880396pt;}
.ws147{word-spacing:23.932662pt;}
.ws27{word-spacing:24.105141pt;}
.wsad{word-spacing:24.120821pt;}
.wsec{word-spacing:24.188766pt;}
.wsb8{word-spacing:24.214900pt;}
.ws1cb{word-spacing:24.230579pt;}
.ws175{word-spacing:24.256713pt;}
.ws102{word-spacing:24.272392pt;}
.ws196{word-spacing:24.308979pt;}
.wsf8{word-spacing:24.314206pt;}
.wsdf{word-spacing:24.345566pt;}
.ws14c{word-spacing:24.366472pt;}
.wsd4{word-spacing:24.403057pt;}
.ws16c{word-spacing:24.481457pt;}
.ws14d{word-spacing:24.486684pt;}
.ws198{word-spacing:24.528497pt;}
.ws17e{word-spacing:24.533723pt;}
.ws106{word-spacing:24.659161pt;}
.ws182{word-spacing:24.795053pt;}
.wsa7{word-spacing:24.800280pt;}
.ws194{word-spacing:24.857773pt;}
.ws151{word-spacing:24.941400pt;}
.wsea{word-spacing:24.946625pt;}
.ws192{word-spacing:24.972759pt;}
.ws9f{word-spacing:24.988439pt;}
.ws112{word-spacing:25.045932pt;}
.ws12a{word-spacing:25.140010pt;}
.ws131{word-spacing:25.145237pt;}
.wsde{word-spacing:25.181823pt;}
.wsf0{word-spacing:25.197502pt;}
.wse7{word-spacing:25.213183pt;}
.wsed{word-spacing:25.249769pt;}
.ws13d{word-spacing:25.270676pt;}
.wsf4{word-spacing:25.302036pt;}
.wsd7{word-spacing:25.354301pt;}
.wsee{word-spacing:25.411795pt;}
.ws48{word-spacing:25.437927pt;}
.wsa0{word-spacing:25.443153pt;}
.ws84{word-spacing:25.516327pt;}
.ws110{word-spacing:25.521552pt;}
.ws49{word-spacing:25.542460pt;}
.wsff{word-spacing:25.594725pt;}
.wsd5{word-spacing:25.636539pt;}
.wscf{word-spacing:25.767204pt;}
.ws17d{word-spacing:25.782883pt;}
.ws161{word-spacing:25.809016pt;}
.wsac{word-spacing:25.824697pt;}
.wsd6{word-spacing:25.913543pt;}
.wsd0{word-spacing:25.934455pt;}
.ws38{word-spacing:25.965815pt;}
.ws26{word-spacing:26.044214pt;}
.ws8e{word-spacing:26.086028pt;}
.ws163{word-spacing:26.091254pt;}
.ws65{word-spacing:26.164427pt;}
.ws67{word-spacing:26.185332pt;}
.ws95{word-spacing:26.268959pt;}
.ws143{word-spacing:26.295092pt;}
.ws130{word-spacing:26.315998pt;}
.ws127{word-spacing:26.321225pt;}
.wsc2{word-spacing:26.389171pt;}
.ws169{word-spacing:26.472797pt;}
.ws19c{word-spacing:26.504156pt;}
.ws93{word-spacing:26.608689pt;}
.ws13c{word-spacing:26.655729pt;}
.ws1bc{word-spacing:26.692315pt;}
.wsf7{word-spacing:26.713220pt;}
.ws1bb{word-spacing:26.749807pt;}
.ws136{word-spacing:26.775940pt;}
.ws1c2{word-spacing:26.807301pt;}
.wsc4{word-spacing:26.828206pt;}
.wsdb{word-spacing:26.875247pt;}
.ws146{word-spacing:26.932738pt;}
.ws61{word-spacing:26.953646pt;}
.ws4c{word-spacing:27.011137pt;}
.ws9d{word-spacing:27.084311pt;}
.ws105{word-spacing:27.188843pt;}
.wsdd{word-spacing:27.220202pt;}
.ws13f{word-spacing:27.225430pt;}
.ws1c8{word-spacing:27.267243pt;}
.ws1b5{word-spacing:27.298601pt;}
.ws8c{word-spacing:27.622652pt;}
.ws28{word-spacing:27.638331pt;}
.ws14b{word-spacing:27.669692pt;}
.ws73{word-spacing:27.706276pt;}
.ws1c3{word-spacing:27.931023pt;}
.ws29{word-spacing:27.941474pt;}
.ws1be{word-spacing:27.988515pt;}
.ws92{word-spacing:28.025101pt;}
.ws133{word-spacing:28.046006pt;}
.ws76{word-spacing:28.082593pt;}
.ws78{word-spacing:28.505951pt;}
.ws1a6{word-spacing:28.568670pt;}
.ws1b3{word-spacing:28.944984pt;}
.ws18f{word-spacing:29.112236pt;}
.ws144{word-spacing:29.127916pt;}
.wsda{word-spacing:29.410154pt;}
.ws17b{word-spacing:29.446741pt;}
.ws66{word-spacing:29.619217pt;}
.ws16e{word-spacing:29.749884pt;}
.ws5e{word-spacing:29.854424pt;}
.ws5d{word-spacing:30.053027pt;}
.ws75{word-spacing:30.162784pt;}
.wse6{word-spacing:30.209825pt;}
.wsa6{word-spacing:30.235957pt;}
.ws19b{word-spacing:30.246412pt;}
.ws172{word-spacing:30.335265pt;}
.ws154{word-spacing:30.356171pt;}
.ws68{word-spacing:30.366623pt;}
.wsa5{word-spacing:30.512968pt;}
.wsb2{word-spacing:31.051311pt;}
.wse2{word-spacing:31.354454pt;}
.wsa8{word-spacing:31.432854pt;}
.wsa9{word-spacing:31.495571pt;}
.wsbe{word-spacing:31.709864pt;}
.ws187{word-spacing:32.201166pt;}
.ws83{word-spacing:32.363191pt;}
.ws6f{word-spacing:32.661106pt;}
.ws1ca{word-spacing:32.896305pt;}
.wsd1{word-spacing:32.932892pt;}
.ws15b{word-spacing:33.262169pt;}
.ws183{word-spacing:33.345793pt;}
.wsb1{word-spacing:33.549631pt;}
.ws140{word-spacing:33.549632pt;}
.ws1b6{word-spacing:34.161144pt;}
.ws12d{word-spacing:35.514838pt;}
.ws1ad{word-spacing:35.891155pt;}
.ws1ac{word-spacing:36.168164pt;}
.ws1{word-spacing:38.515358pt;}
.ws2{word-spacing:38.694558pt;}
.ws52{word-spacing:39.089843pt;}
.ws234{word-spacing:39.343494pt;}
.ws11a{word-spacing:188.225966pt;}
.ws119{word-spacing:204.528648pt;}
.ws121{word-spacing:232.112303pt;}
._21{margin-left:-27.627880pt;}
._1f{margin-left:-24.936173pt;}
._20{margin-left:-23.828128pt;}
._11{margin-left:-18.235654pt;}
._2{margin-left:-14.410812pt;}
._3{margin-left:-13.440130pt;}
._32{margin-left:-11.775843pt;}
._33{margin-left:-10.827856pt;}
._31{margin-left:-9.883868pt;}
._16{margin-left:-6.487774pt;}
._1e{margin-left:-5.461202pt;}
._14{margin-left:-4.203136pt;}
._8{margin-left:-2.202737pt;}
._6{margin-left:-1.152012pt;}
._5{width:1.536015pt;}
._30{width:2.800510pt;}
._0{width:7.959467pt;}
._2c{width:11.347847pt;}
._13{width:12.327286pt;}
._7{width:13.216197pt;}
._9{width:14.282967pt;}
._4{width:15.189525pt;}
._1b{width:16.501028pt;}
._c{width:17.436594pt;}
._10{width:19.026293pt;}
._a{width:20.037683pt;}
._b{width:21.744613pt;}
._12{width:22.910404pt;}
._f{width:23.875169pt;}
._2b{width:25.019802pt;}
._19{width:26.044213pt;}
._d{width:27.137188pt;}
._e{width:28.824774pt;}
._1d{width:30.362005pt;}
._17{width:31.282501pt;}
._1a{width:33.006678pt;}
._1c{width:34.887642pt;}
._2a{width:37.020102pt;}
._15{width:38.191473pt;}
._2f{width:39.383473pt;}
._2e{width:56.935240pt;}
._2d{width:58.543217pt;}
._25{width:165.156328pt;}
._28{width:175.438866pt;}
._23{width:185.717151pt;}
._22{width:195.875957pt;}
._26{width:284.587379pt;}
._29{width:295.117383pt;}
._24{width:305.451097pt;}
._27{width:351.585995pt;}
._18{width:1350.395942pt;}
._1{width:1756.629387pt;}
.fs9{font-size:26.662399pt;}
.fsd{font-size:28.440000pt;}
.fs11{font-size:33.600001pt;}
.fs7{font-size:34.839467pt;}
.fs10{font-size:36.266668pt;}
.fsa{font-size:37.332799pt;}
.fse{font-size:38.933866pt;}
.fs3{font-size:39.107732pt;}
.fs8{font-size:39.999466pt;}
.fsb{font-size:42.666133pt;}
.fsf{font-size:47.421336pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:52.266134pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933334pt;}
.fs2{font-size:58.667201pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000529pt;}
.y0{bottom:0.000000pt;}
.y286{bottom:74.815002pt;}
.y1fe{bottom:81.260799pt;}
.ye5{bottom:81.260863pt;}
.y249{bottom:81.261288pt;}
.y16c{bottom:81.264455pt;}
.y153{bottom:81.268519pt;}
.yae{bottom:81.269497pt;}
.y197{bottom:81.284299pt;}
.y1cd{bottom:81.305207pt;}
.y3c{bottom:81.334888pt;}
.y285{bottom:84.148239pt;}
.y72{bottom:89.574799pt;}
.y135{bottom:89.574870pt;}
.y3b{bottom:91.993397pt;}
.y1fd{bottom:93.279638pt;}
.y248{bottom:93.280127pt;}
.ye4{bottom:97.285659pt;}
.y16b{bottom:97.289256pt;}
.y152{bottom:97.293304pt;}
.yad{bottom:97.294293pt;}
.y196{bottom:97.309095pt;}
.y1cc{bottom:97.330003pt;}
.y3a{bottom:102.651915pt;}
.y134{bottom:102.953898pt;}
.y1fc{bottom:105.298478pt;}
.y247{bottom:105.298967pt;}
.y284{bottom:113.066780pt;}
.ye3{bottom:113.234670pt;}
.y16a{bottom:113.238271pt;}
.y151{bottom:113.318105pt;}
.yac{bottom:113.319090pt;}
.y195{bottom:113.333892pt;}
.y1cb{bottom:113.354800pt;}
.y133{bottom:116.258270pt;}
.y1fb{bottom:117.241319pt;}
.y246{bottom:117.241808pt;}
.y39{bottom:125.857852pt;}
.ye2{bottom:129.259867pt;}
.y1fa{bottom:129.260158pt;}
.y245{bottom:129.260647pt;}
.y169{bottom:129.263072pt;}
.y150{bottom:129.267120pt;}
.yab{bottom:129.268101pt;}
.y194{bottom:129.282903pt;}
.y1ca{bottom:129.303811pt;}
.y283{bottom:129.613309pt;}
.y38{bottom:137.876691pt;}
.y31{bottom:138.334455pt;}
.y1f9{bottom:141.278998pt;}
.y244{bottom:141.279487pt;}
.y168{bottom:145.287852pt;}
.y14f{bottom:145.291921pt;}
.yaa{bottom:145.292897pt;}
.y193{bottom:145.307699pt;}
.y1c9{bottom:145.328607pt;}
.y282{bottom:146.159574pt;}
.y37{bottom:149.820539pt;}
.y1f8{bottom:153.297837pt;}
.y243{bottom:153.298326pt;}
.y36{bottom:154.280266pt;}
.y30{bottom:154.359256pt;}
.ye0{bottom:159.118134pt;}
.y167{bottom:161.236867pt;}
.ye1{bottom:161.310262pt;}
.y14e{bottom:161.316711pt;}
.ya9{bottom:161.317694pt;}
.y192{bottom:161.332496pt;}
.ydf{bottom:161.338602pt;}
.y1c8{bottom:161.353404pt;}
.y35{bottom:161.839429pt;}
.y281{bottom:162.706113pt;}
.y242{bottom:165.242166pt;}
.y2f{bottom:170.308261pt;}
.y34{bottom:173.858279pt;}
.y241{bottom:177.261006pt;}
.y166{bottom:177.261658pt;}
.y14d{bottom:177.265727pt;}
.ya8{bottom:177.266705pt;}
.y191{bottom:177.281507pt;}
.yde{bottom:177.287612pt;}
.y1c7{bottom:177.302415pt;}
.y33{bottom:178.318138pt;}
.y280{bottom:179.252642pt;}
.y1f7{bottom:185.121412pt;}
.y32{bottom:185.877078pt;}
.y2e{bottom:186.333051pt;}
.y240{bottom:189.279845pt;}
.y165{bottom:193.286458pt;}
.y14c{bottom:193.290527pt;}
.ya7{bottom:193.291501pt;}
.y190{bottom:193.306304pt;}
.ydd{bottom:193.312409pt;}
.y1c6{bottom:193.327211pt;}
.y27f{bottom:195.799314pt;}
.y1f6{bottom:197.140252pt;}
.y23f{bottom:201.298685pt;}
.y2d{bottom:202.357852pt;}
.y24{bottom:202.358259pt;}
.y164{bottom:209.235474pt;}
.y14b{bottom:209.315328pt;}
.ya6{bottom:209.316298pt;}
.y18f{bottom:209.331100pt;}
.ydc{bottom:209.337206pt;}
.y1c5{bottom:209.352008pt;}
.y23e{bottom:213.241526pt;}
.y2c{bottom:218.306867pt;}
.y23{bottom:218.307274pt;}
.y27e{bottom:223.701169pt;}
.y163{bottom:225.260274pt;}
.y23d{bottom:225.260365pt;}
.y14a{bottom:225.264323pt;}
.ya5{bottom:225.265309pt;}
.y18e{bottom:225.280111pt;}
.ydb{bottom:225.286216pt;}
.y1c4{bottom:225.301019pt;}
.y1f5{bottom:228.963826pt;}
.y2b{bottom:234.331647pt;}
.y22{bottom:234.332075pt;}
.y23c{bottom:237.279205pt;}
.y27d{bottom:237.927569pt;}
.y1f3{bottom:239.319600pt;}
.y1f2{bottom:240.982625pt;}
.y1f4{bottom:240.982666pt;}
.y162{bottom:241.285075pt;}
.y149{bottom:241.289124pt;}
.ya4{bottom:241.290105pt;}
.y18d{bottom:241.304908pt;}
.yda{bottom:241.311013pt;}
.y1c3{bottom:241.325815pt;}
.y23b{bottom:249.298044pt;}
.y2a{bottom:250.356448pt;}
.y21{bottom:250.356855pt;}
.y1f0{bottom:251.338542pt;}
.y1f1{bottom:253.001465pt;}
.y1ef{bottom:253.002044pt;}
.y161{bottom:257.234660pt;}
.y148{bottom:257.313924pt;}
.ya3{bottom:257.314902pt;}
.y18c{bottom:257.329704pt;}
.yd9{bottom:257.335810pt;}
.y1c2{bottom:257.350612pt;}
.y23a{bottom:261.240885pt;}
.y28{bottom:264.188927pt;}
.y1ee{bottom:265.020884pt;}
.y29{bottom:266.305463pt;}
.y20{bottom:266.305870pt;}
.y239{bottom:273.259725pt;}
.y147{bottom:273.262939pt;}
.ya2{bottom:273.263913pt;}
.y18b{bottom:273.278715pt;}
.yd8{bottom:273.284821pt;}
.y1c1{bottom:273.299623pt;}
.y1ec{bottom:275.300659pt;}
.y1ed{bottom:276.963725pt;}
.y1eb{bottom:276.963826pt;}
.y27{bottom:280.138532pt;}
.y1f{bottom:282.330671pt;}
.y26{bottom:282.333275pt;}
.y238{bottom:285.284247pt;}
.y1e9{bottom:287.319600pt;}
.y1ea{bottom:288.982666pt;}
.y1e8{bottom:288.984621pt;}
.y146{bottom:289.287720pt;}
.ya1{bottom:289.288709pt;}
.y160{bottom:289.298177pt;}
.y18a{bottom:289.303512pt;}
.yd7{bottom:289.309617pt;}
.y1c0{bottom:289.324419pt;}
.y237{bottom:297.303086pt;}
.y1e{bottom:298.355878pt;}
.y25{bottom:298.358076pt;}
.y1e7{bottom:301.003461pt;}
.ya0{bottom:305.237720pt;}
.y189{bottom:305.252522pt;}
.yd6{bottom:305.258628pt;}
.y1bf{bottom:305.273430pt;}
.y145{bottom:305.312520pt;}
.y15f{bottom:305.322978pt;}
.y236{bottom:309.245927pt;}
.y144{bottom:321.261536pt;}
.y9f{bottom:321.262517pt;}
.y235{bottom:321.264767pt;}
.y15e{bottom:321.271993pt;}
.y188{bottom:321.277319pt;}
.yd5{bottom:321.283425pt;}
.y1be{bottom:321.298227pt;}
.y27c{bottom:329.499367pt;}
.y234{bottom:333.283606pt;}
.y143{bottom:337.286336pt;}
.y9e{bottom:337.287314pt;}
.y15d{bottom:337.296794pt;}
.y187{bottom:337.302116pt;}
.yd4{bottom:337.308221pt;}
.y1bd{bottom:337.323023pt;}
.y1d{bottom:338.943260pt;}
.y1e6{bottom:339.856942pt;}
.y27b{bottom:340.837888pt;}
.y233{bottom:345.302446pt;}
.y1e5{bottom:351.875782pt;}
.y27a{bottom:352.176409pt;}
.y9d{bottom:353.236324pt;}
.y186{bottom:353.251126pt;}
.yd3{bottom:353.257232pt;}
.y1bc{bottom:353.272034pt;}
.y142{bottom:353.311117pt;}
.y15c{bottom:353.321574pt;}
.y1c{bottom:354.968753pt;}
.y232{bottom:357.245287pt;}
.y279{bottom:363.514910pt;}
.y1e4{bottom:367.900567pt;}
.y141{bottom:369.260132pt;}
.y9c{bottom:369.261121pt;}
.y231{bottom:369.264126pt;}
.y15b{bottom:369.270589pt;}
.y185{bottom:369.275923pt;}
.yd2{bottom:369.282029pt;}
.y1bb{bottom:369.296831pt;}
.y1b{bottom:377.570315pt;}
.y1e3{bottom:379.843408pt;}
.y107{bottom:379.996379pt;}
.y121{bottom:380.006836pt;}
.y230{bottom:381.282966pt;}
.y140{bottom:385.284953pt;}
.y9b{bottom:385.285918pt;}
.y13e{bottom:385.287720pt;}
.y15a{bottom:385.295369pt;}
.y184{bottom:385.300720pt;}
.yd1{bottom:385.306825pt;}
.y1ba{bottom:385.321628pt;}
.y278{bottom:389.293597pt;}
.y13f{bottom:391.105469pt;}
.y22f{bottom:393.301805pt;}
.y1a{bottom:393.595787pt;}
.y1e2{bottom:395.868194pt;}
.y106{bottom:396.021200pt;}
.y120{bottom:396.031657pt;}
.y9a{bottom:401.234928pt;}
.y277{bottom:401.236427pt;}
.y183{bottom:401.249730pt;}
.yd0{bottom:401.255836pt;}
.y1b9{bottom:401.270638pt;}
.y13d{bottom:401.312500pt;}
.y159{bottom:401.320190pt;}
.y22e{bottom:405.244646pt;}
.y1e1{bottom:407.887034pt;}
.y19{bottom:409.621300pt;}
.y105{bottom:411.970215pt;}
.y11f{bottom:411.980672pt;}
.y276{bottom:413.255267pt;}
.y98{bottom:415.067586pt;}
.y99{bottom:417.259725pt;}
.y13c{bottom:417.261515pt;}
.y22d{bottom:417.263486pt;}
.y97{bottom:417.264344pt;}
.y158{bottom:417.269206pt;}
.y182{bottom:417.274527pt;}
.ycf{bottom:417.280633pt;}
.y1b8{bottom:417.295435pt;}
.y1e0{bottom:419.829875pt;}
.y275{bottom:425.274106pt;}
.y104{bottom:427.994995pt;}
.y11e{bottom:428.005452pt;}
.y22c{bottom:429.282325pt;}
.y18{bottom:429.577477pt;}
.y13b{bottom:433.286336pt;}
.y96{bottom:433.289141pt;}
.y157{bottom:433.293986pt;}
.y181{bottom:433.299324pt;}
.yce{bottom:433.305429pt;}
.y1b7{bottom:433.320232pt;}
.y274{bottom:437.292946pt;}
.y22b{bottom:441.301165pt;}
.y103{bottom:444.019775pt;}
.y11d{bottom:444.030233pt;}
.y17{bottom:445.602989pt;}
.y273{bottom:449.235776pt;}
.y95{bottom:449.238151pt;}
.y180{bottom:449.248334pt;}
.ycd{bottom:449.254440pt;}
.y1b6{bottom:449.269242pt;}
.y13a{bottom:449.311117pt;}
.y156{bottom:449.318807pt;}
.y1df{bottom:449.536947pt;}
.y22a{bottom:453.244006pt;}
.y102{bottom:459.968791pt;}
.y11c{bottom:459.979248pt;}
.y272{bottom:461.254616pt;}
.y16{bottom:461.628502pt;}
.y139{bottom:465.260132pt;}
.y229{bottom:465.262846pt;}
.y94{bottom:465.262948pt;}
.y155{bottom:465.267782pt;}
.y17f{bottom:465.273131pt;}
.ycc{bottom:465.279237pt;}
.y1b5{bottom:465.294039pt;}
.y271{bottom:473.273455pt;}
.y100{bottom:473.801473pt;}
.y101{bottom:475.993612pt;}
.yff{bottom:475.998169pt;}
.y11b{bottom:476.004069pt;}
.y228{bottom:477.281685pt;}
.y15{bottom:477.577965pt;}
.y138{bottom:481.284953pt;}
.y93{bottom:481.287745pt;}
.y154{bottom:481.292603pt;}
.y17e{bottom:481.297928pt;}
.ycb{bottom:481.304033pt;}
.y1b4{bottom:481.318836pt;}
.y270{bottom:485.292295pt;}
.y227{bottom:489.300525pt;}
.y1de{bottom:489.380027pt;}
.yfe{bottom:492.022990pt;}
.y11a{bottom:492.028849pt;}
.y26f{bottom:497.235166pt;}
.y92{bottom:497.236755pt;}
.y17d{bottom:497.246939pt;}
.yca{bottom:497.253044pt;}
.y1b3{bottom:497.267846pt;}
.y14{bottom:497.610191pt;}
.y226{bottom:501.243366pt;}
.y1dd{bottom:505.404823pt;}
.yfd{bottom:507.972005pt;}
.y119{bottom:507.977865pt;}
.y26e{bottom:509.254005pt;}
.y91{bottom:513.261552pt;}
.y225{bottom:513.262205pt;}
.y17c{bottom:513.271735pt;}
.yc9{bottom:513.277841pt;}
.y1b2{bottom:513.292643pt;}
.y13{bottom:513.635663pt;}
.y26d{bottom:521.272845pt;}
.y1dc{bottom:521.429620pt;}
.yfc{bottom:523.996785pt;}
.y118{bottom:524.002645pt;}
.y224{bottom:525.281045pt;}
.y90{bottom:529.286349pt;}
.y71{bottom:529.287720pt;}
.y17b{bottom:529.296532pt;}
.y58{bottom:529.296549pt;}
.yc8{bottom:529.302637pt;}
.y1b1{bottom:529.317440pt;}
.y12{bottom:529.585167pt;}
.y26c{bottom:533.291684pt;}
.y16f{bottom:536.012451pt;}
.y223{bottom:537.299884pt;}
.y1db{bottom:537.378631pt;}
.yfb{bottom:540.021606pt;}
.y117{bottom:540.027466pt;}
.y26b{bottom:545.234515pt;}
.y8f{bottom:545.235359pt;}
.y70{bottom:545.236735pt;}
.y26a{bottom:545.238502pt;}
.y17a{bottom:545.245543pt;}
.y57{bottom:545.245565pt;}
.yc7{bottom:545.251648pt;}
.y1b0{bottom:545.266450pt;}
.y11{bottom:545.610639pt;}
.y222{bottom:549.242725pt;}
.y16e{bottom:549.316854pt;}
.y1da{bottom:553.403427pt;}
.yfa{bottom:555.970581pt;}
.y116{bottom:555.976481pt;}
.y269{bottom:557.257342pt;}
.y8e{bottom:561.260156pt;}
.y6f{bottom:561.261515pt;}
.y221{bottom:561.261565pt;}
.y179{bottom:561.270339pt;}
.y56{bottom:561.270386pt;}
.yc6{bottom:561.276445pt;}
.y1af{bottom:561.291247pt;}
.y16d{bottom:562.695882pt;}
.y10{bottom:565.566856pt;}
.y268{bottom:569.276182pt;}
.y1d9{bottom:569.428224pt;}
.yf9{bottom:571.995402pt;}
.y115{bottom:572.001261pt;}
.y220{bottom:573.280404pt;}
.y8c{bottom:575.092814pt;}
.y8d{bottom:577.284953pt;}
.y6e{bottom:577.286336pt;}
.y8b{bottom:577.288319pt;}
.y178{bottom:577.295136pt;}
.y55{bottom:577.295166pt;}
.yc5{bottom:577.301242pt;}
.y1ae{bottom:577.316044pt;}
.y267{bottom:581.295021pt;}
.yf{bottom:581.592369pt;}
.y21f{bottom:585.299244pt;}
.y1d8{bottom:585.377235pt;}
.yf8{bottom:588.020182pt;}
.y114{bottom:588.026042pt;}
.y6d{bottom:593.235352pt;}
.y8a{bottom:593.237330pt;}
.y266{bottom:593.237851pt;}
.y177{bottom:593.244147pt;}
.y54{bottom:593.244181pt;}
.yc4{bottom:593.250252pt;}
.y1ad{bottom:593.265054pt;}
.y21e{bottom:597.242085pt;}
.ye{bottom:597.617841pt;}
.y1d7{bottom:601.402031pt;}
.yf7{bottom:603.969198pt;}
.y113{bottom:603.975057pt;}
.y265{bottom:605.256691pt;}
.y6c{bottom:609.260132pt;}
.y21d{bottom:609.260924pt;}
.y89{bottom:609.262126pt;}
.y176{bottom:609.268943pt;}
.y53{bottom:609.268962pt;}
.yc3{bottom:609.275049pt;}
.y1ac{bottom:609.289851pt;}
.yd{bottom:613.567345pt;}
.y264{bottom:617.275530pt;}
.y1d6{bottom:617.426828pt;}
.yf6{bottom:619.994019pt;}
.y112{bottom:619.999878pt;}
.y21c{bottom:621.279764pt;}
.y6b{bottom:625.284953pt;}
.y88{bottom:625.286923pt;}
.y175{bottom:625.293740pt;}
.y52{bottom:625.293783pt;}
.yc2{bottom:625.299846pt;}
.y1ab{bottom:625.314648pt;}
.y263{bottom:629.294370pt;}
.yc{bottom:629.592817pt;}
.y21b{bottom:633.298603pt;}
.y1d5{bottom:633.375839pt;}
.yf4{bottom:633.826660pt;}
.yf5{bottom:636.018799pt;}
.yf3{bottom:636.020060pt;}
.y111{bottom:636.024658pt;}
.y6a{bottom:641.234538pt;}
.y87{bottom:641.235934pt;}
.y262{bottom:641.237200pt;}
.y174{bottom:641.242751pt;}
.y51{bottom:641.242757pt;}
.yc1{bottom:641.248856pt;}
.y1aa{bottom:641.263658pt;}
.y21a{bottom:645.241444pt;}
.yb{bottom:645.618329pt;}
.y1d4{bottom:649.400635pt;}
.yf2{bottom:651.969076pt;}
.y110{bottom:651.973673pt;}
.y261{bottom:653.256040pt;}
.y219{bottom:657.260284pt;}
.y86{bottom:657.260730pt;}
.y173{bottom:657.267547pt;}
.y50{bottom:657.267578pt;}
.yc0{bottom:657.273653pt;}
.y1a9{bottom:657.288455pt;}
.ya{bottom:661.567833pt;}
.y260{bottom:665.274879pt;}
.y1d3{bottom:665.425432pt;}
.yf1{bottom:667.993856pt;}
.y10f{bottom:667.998454pt;}
.y218{bottom:669.279123pt;}
.y85{bottom:673.285527pt;}
.y172{bottom:673.292344pt;}
.y4f{bottom:673.292358pt;}
.ybf{bottom:673.298450pt;}
.y69{bottom:673.302816pt;}
.y1a8{bottom:673.313252pt;}
.y25f{bottom:677.293719pt;}
.y9{bottom:677.593305pt;}
.y217{bottom:681.297963pt;}
.y1d2{bottom:681.374443pt;}
.yef{bottom:681.826660pt;}
.yf0{bottom:684.018636pt;}
.yee{bottom:684.021484pt;}
.y10e{bottom:684.023275pt;}
.y83{bottom:687.118001pt;}
.y84{bottom:689.234538pt;}
.y25e{bottom:689.237607pt;}
.y82{bottom:689.241355pt;}
.y4e{bottom:689.241374pt;}
.ybe{bottom:689.247460pt;}
.y68{bottom:689.251872pt;}
.y1a7{bottom:689.262262pt;}
.y216{bottom:693.240804pt;}
.y8{bottom:693.618818pt;}
.y1d1{bottom:697.399240pt;}
.yed{bottom:699.970459pt;}
.y10d{bottom:699.972249pt;}
.y25d{bottom:701.256406pt;}
.y215{bottom:705.260442pt;}
.y81{bottom:705.266151pt;}
.y4d{bottom:705.266195pt;}
.ybd{bottom:705.272257pt;}
.y67{bottom:705.276611pt;}
.y1a6{bottom:705.287059pt;}
.y25c{bottom:713.275286pt;}
.y1d0{bottom:713.424036pt;}
.yec{bottom:715.995280pt;}
.y10c{bottom:715.997070pt;}
.y7{bottom:717.580976pt;}
.y4c{bottom:721.290934pt;}
.y80{bottom:721.290948pt;}
.ybc{bottom:721.297054pt;}
.y66{bottom:721.301432pt;}
.y1a5{bottom:721.311856pt;}
.y25b{bottom:725.294085pt;}
.y1cf{bottom:729.373047pt;}
.yeb{bottom:732.020101pt;}
.y10b{bottom:732.021891pt;}
.y214{bottom:737.235015pt;}
.y25a{bottom:737.236956pt;}
.y7f{bottom:737.239959pt;}
.y4b{bottom:737.239990pt;}
.ybb{bottom:737.246064pt;}
.y65{bottom:737.250407pt;}
.y1a4{bottom:737.260867pt;}
.y1ce{bottom:745.398275pt;}
.yea{bottom:747.969076pt;}
.y10a{bottom:747.970866pt;}
.y213{bottom:749.253855pt;}
.y259{bottom:749.255755pt;}
.y7e{bottom:753.264755pt;}
.y4a{bottom:753.264811pt;}
.yba{bottom:753.270861pt;}
.y64{bottom:753.275228pt;}
.y1a3{bottom:753.285663pt;}
.y258{bottom:761.274635pt;}
.ye9{bottom:763.993896pt;}
.y109{bottom:763.995687pt;}
.y5{bottom:768.906904pt;}
.y49{bottom:769.289551pt;}
.y7d{bottom:769.289552pt;}
.yb9{bottom:769.295658pt;}
.y63{bottom:769.300049pt;}
.y1a2{bottom:769.310460pt;}
.y212{bottom:773.291534pt;}
.y257{bottom:773.293434pt;}
.y6{bottom:775.483238pt;}
.ye8{bottom:780.018636pt;}
.y108{bottom:780.020426pt;}
.y211{bottom:785.234375pt;}
.y256{bottom:785.236305pt;}
.y7c{bottom:785.238563pt;}
.y48{bottom:785.238607pt;}
.yb8{bottom:785.244668pt;}
.y62{bottom:785.249023pt;}
.y1a1{bottom:785.259471pt;}
.y210{bottom:789.694417pt;}
.y20f{bottom:797.253459pt;}
.y255{bottom:797.255104pt;}
.y4{bottom:800.958255pt;}
.y47{bottom:801.263346pt;}
.y7b{bottom:801.263360pt;}
.yb7{bottom:801.269465pt;}
.y61{bottom:801.273844pt;}
.y1a0{bottom:801.284267pt;}
.y20e{bottom:809.272298pt;}
.y20c{bottom:809.272339pt;}
.y254{bottom:809.273984pt;}
.y20d{bottom:813.732096pt;}
.y7a{bottom:817.288156pt;}
.y46{bottom:817.288167pt;}
.yb6{bottom:817.294262pt;}
.y60{bottom:817.298665pt;}
.y19f{bottom:817.309064pt;}
.y132{bottom:820.988770pt;}
.y20b{bottom:821.291178pt;}
.y253{bottom:821.292783pt;}
.y20a{bottom:825.675456pt;}
.y209{bottom:833.234497pt;}
.y252{bottom:833.235654pt;}
.y79{bottom:833.237167pt;}
.y45{bottom:833.237223pt;}
.yb5{bottom:833.243272pt;}
.y5f{bottom:833.247640pt;}
.y19e{bottom:833.258075pt;}
.y3{bottom:835.579186pt;}
.y12f{bottom:836.787191pt;}
.y130{bottom:838.525716pt;}
.y12e{bottom:838.525960pt;}
.y131{bottom:843.288005pt;}
.y208{bottom:845.253337pt;}
.y206{bottom:845.253459pt;}
.y251{bottom:845.254534pt;}
.y44{bottom:849.261963pt;}
.yb4{bottom:849.268069pt;}
.y5e{bottom:849.272461pt;}
.y19d{bottom:849.282871pt;}
.y207{bottom:849.713216pt;}
.y12d{bottom:857.196696pt;}
.y12b{bottom:857.196777pt;}
.y205{bottom:857.272298pt;}
.y250{bottom:857.273333pt;}
.y204{bottom:861.732096pt;}
.y12c{bottom:861.958903pt;}
.y78{bottom:865.286760pt;}
.y43{bottom:865.286784pt;}
.yb3{bottom:865.292866pt;}
.y5d{bottom:865.297201pt;}
.y19c{bottom:865.307668pt;}
.y24f{bottom:869.292213pt;}
.y203{bottom:869.292277pt;}
.y2{bottom:870.273766pt;}
.y12a{bottom:875.867432pt;}
.y128{bottom:875.867676pt;}
.y129{bottom:880.629720pt;}
.y24e{bottom:881.235003pt;}
.y77{bottom:881.235771pt;}
.y42{bottom:881.235840pt;}
.yb2{bottom:881.241877pt;}
.y5c{bottom:881.246257pt;}
.y19b{bottom:881.256679pt;}
.y24d{bottom:893.253883pt;}
.y202{bottom:893.253957pt;}
.y127{bottom:894.538411pt;}
.y125{bottom:894.538493pt;}
.y76{bottom:897.260568pt;}
.y41{bottom:897.260579pt;}
.yb1{bottom:897.266673pt;}
.y5b{bottom:897.271077pt;}
.y19a{bottom:897.281475pt;}
.y126{bottom:899.300700pt;}
.y24c{bottom:905.272682pt;}
.y201{bottom:905.272796pt;}
.y124{bottom:910.261230pt;}
.y123{bottom:912.075358pt;}
.y75{bottom:913.285364pt;}
.y40{bottom:913.285400pt;}
.yb0{bottom:913.291470pt;}
.y5a{bottom:913.295817pt;}
.y199{bottom:913.306272pt;}
.y24b{bottom:917.291562pt;}
.y200{bottom:917.291636pt;}
.y1{bottom:920.919436pt;}
.y24a{bottom:929.234352pt;}
.y3f{bottom:929.234375pt;}
.y1ff{bottom:929.234477pt;}
.yaf{bottom:929.240481pt;}
.y59{bottom:929.244873pt;}
.y198{bottom:929.255283pt;}
.y122{bottom:929.612386pt;}
.y74{bottom:991.063232pt;}
.y137{bottom:991.063314pt;}
.y171{bottom:991.064941pt;}
.y3e{bottom:991.066974pt;}
.y288{bottom:991.067032pt;}
.ye7{bottom:991.067134pt;}
.y73{bottom:1004.367594pt;}
.y136{bottom:1004.367676pt;}
.y170{bottom:1004.369303pt;}
.y3d{bottom:1004.371418pt;}
.y287{bottom:1004.371475pt;}
.ye6{bottom:1004.371501pt;}
.hb{height:19.223590pt;}
.hf{height:20.505240pt;}
.h13{height:25.200001pt;}
.h9{height:25.223774pt;}
.hc{height:26.916948pt;}
.h12{height:27.635201pt;}
.h10{height:28.071317pt;}
.h5{height:28.196675pt;}
.ha{height:28.839615pt;}
.hd{height:30.762282pt;}
.he{height:34.608000pt;}
.h11{height:36.135058pt;}
.h8{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.606934pt;}
.h4{height:42.299052pt;}
.h2{height:49.989333pt;}
.h3{height:92.288381pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590548pt;}
.x12{left:79.143344pt;}
.x1{left:80.957481pt;}
.x34{left:82.620402pt;}
.xa{left:84.283480pt;}
.x14{left:86.248912pt;}
.x37{left:87.458262pt;}
.x38{left:91.086670pt;}
.x44{left:95.622904pt;}
.x15{left:102.727600pt;}
.x16{left:113.688131pt;}
.x3c{left:120.718129pt;}
.x3d{left:128.352671pt;}
.x19{left:141.278666pt;}
.x39{left:142.185730pt;}
.x3a{left:145.814138pt;}
.x1a{left:152.239329pt;}
.x21{left:174.538534pt;}
.x22{left:188.749593pt;}
.x3{left:192.075615pt;}
.x2d{left:195.552673pt;}
.x4{left:197.140149pt;}
.x1e{left:209.083476pt;}
.x2b{left:210.368408pt;}
.x45{left:213.769999pt;}
.x2e{left:215.357463pt;}
.x2c{left:217.096008pt;}
.x2f{left:222.085063pt;}
.x29{left:232.440938pt;}
.x23{left:234.103861pt;}
.x2a{left:239.168396pt;}
.x13{left:240.604715pt;}
.x32{left:243.250407pt;}
.x24{left:245.366801pt;}
.x3b{left:247.029867pt;}
.x33{left:248.163737pt;}
.x30{left:253.001465pt;}
.x1f{left:257.159058pt;}
.x5{left:273.410942pt;}
.x20{left:274.469198pt;}
.x6{left:278.400017pt;}
.x31{left:279.533732pt;}
.x35{left:293.971598pt;}
.x36{left:297.599996pt;}
.x25{left:329.952657pt;}
.x17{left:368.655070pt;}
.x7{left:372.132296pt;}
.x18{left:380.295980pt;}
.x8{left:381.278699pt;}
.x1b{left:383.168416pt;}
.xb{left:406.297986pt;}
.x3e{left:409.851847pt;}
.x10{left:416.125867pt;}
.x11{left:420.888156pt;}
.x43{left:426.330487pt;}
.x47{left:429.528117pt;}
.x46{left:430.473470pt;}
.x41{left:461.480265pt;}
.x42{left:465.108521pt;}
.x26{left:477.958944pt;}
.x27{left:495.496012pt;}
.x9{left:504.566826pt;}
.x1c{left:523.010946pt;}
.x1d{left:531.854940pt;}
.x28{left:555.061320pt;}
.x3f{left:558.387207pt;}
.x40{left:562.015584pt;}
.xc{left:657.939995pt;}
.xd{left:662.702283pt;}
.xe{left:688.856539pt;}
.xf{left:698.305351pt;}
}




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