
    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_6e21ca32795786c193c68882.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0523b6c873f010f86a45efe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.879000;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_96cff12bc0f3f13178324765.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_ce3e1c5d90e854f4f078f36e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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_64cd4e16220237f18a9fbfeb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1b9c831f039ebfde903ba93b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4e711a53b9f24001c0e0650e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_87fbf62a8057be050008d127.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968262;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_21d8cd7dfd0bd0efb0da87aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063000;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_89b3f52bf0c69ab872be02fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.953000;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_fb73fda5e210ba0a5017f566.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8113119fdddb353d374f3866.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_0f3bc697b7e5c389748282d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_247293bc94a424fb17a75f37.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.032000;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_d4a71d696de90db7d7591777.woff2')format("woff");}.fff{font-family:fff;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c0053114da3432ab75483b75.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0bde09263e1609ef48c89217.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_60261ae25e30fa2c8cda39b7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.185000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9c1cdb8cb69e6bb21d146968.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.066000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375043,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v9{vertical-align:-37.080360px;}
.vb{vertical-align:-23.130000px;}
.vc{vertical-align:-11.910000px;}
.va{vertical-align:-10.547400px;}
.ve{vertical-align:-7.823400px;}
.v6{vertical-align:-3.060000px;}
.v7{vertical-align:-2.046000px;}
.v4{vertical-align:-1.021792px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.021792px;}
.v2{vertical-align:2.035784px;}
.v5{vertical-align:6.120000px;}
.vd{vertical-align:21.084000px;}
.v8{vertical-align:23.466000px;}
.v1{vertical-align:39.456000px;}
.ls11{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.010800px;}
.ls15{letter-spacing:0.042000px;}
.ls33{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.084000px;}
.ls23{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.108403px;}
.ls43{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.124891px;}
.ls30{letter-spacing:0.132000px;}
.ls60{letter-spacing:0.135000px;}
.ls5d{letter-spacing:0.145800px;}
.ls9{letter-spacing:0.162000px;}
.ls24{letter-spacing:0.192000px;}
.ls62{letter-spacing:0.194400px;}
.ls4c{letter-spacing:0.199800px;}
.lsd{letter-spacing:0.210000px;}
.ls5c{letter-spacing:0.210600px;}
.ls13{letter-spacing:0.251086px;}
.lsa{letter-spacing:0.257086px;}
.ls25{letter-spacing:0.264000px;}
.ls2e{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.273600px;}
.ls36{letter-spacing:0.300000px;}
.ls51{letter-spacing:0.302400px;}
.ls37{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.318000px;}
.ls35{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.366000px;}
.ls39{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.420000px;}
.ls65{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.456000px;}
.ls6{letter-spacing:0.480000px;}
.ls52{letter-spacing:0.567000px;}
.lsb{letter-spacing:0.624000px;}
.ls46{letter-spacing:0.690000px;}
.ls38{letter-spacing:0.708000px;}
.ls16{letter-spacing:0.726000px;}
.ls68{letter-spacing:0.729000px;}
.ls5f{letter-spacing:0.761400px;}
.ls47{letter-spacing:0.774000px;}
.ls34{letter-spacing:0.792000px;}
.ls18{letter-spacing:0.918000px;}
.ls32{letter-spacing:0.942000px;}
.ls5{letter-spacing:1.032000px;}
.ls48{letter-spacing:1.056000px;}
.lse{letter-spacing:1.092000px;}
.lsf{letter-spacing:1.128000px;}
.ls3b{letter-spacing:1.152000px;}
.ls3{letter-spacing:1.194000px;}
.ls2{letter-spacing:1.212000px;}
.ls12{letter-spacing:1.227859px;}
.ls21{letter-spacing:1.356000px;}
.ls1{letter-spacing:1.357190px;}
.ls10{letter-spacing:1.380000px;}
.lsc{letter-spacing:1.404000px;}
.ls7{letter-spacing:1.476000px;}
.ls45{letter-spacing:1.596000px;}
.ls40{letter-spacing:1.698000px;}
.ls3e{letter-spacing:1.704000px;}
.ls57{letter-spacing:1.917000px;}
.ls1e{letter-spacing:1.980000px;}
.ls44{letter-spacing:2.040000px;}
.ls4b{letter-spacing:12.933000px;}
.ls2b{letter-spacing:13.396891px;}
.ls50{letter-spacing:13.613400px;}
.ls2a{letter-spacing:13.640400px;}
.ls2c{letter-spacing:13.732891px;}
.ls29{letter-spacing:13.883407px;}
.ls5a{letter-spacing:14.634000px;}
.ls69{letter-spacing:14.968800px;}
.ls64{letter-spacing:14.974200px;}
.ls6b{letter-spacing:15.654600px;}
.ls1c{letter-spacing:15.768000px;}
.ls2f{letter-spacing:16.050000px;}
.ls14{letter-spacing:16.114891px;}
.ls4f{letter-spacing:17.355600px;}
.ls3d{letter-spacing:17.406000px;}
.ls2d{letter-spacing:18.026567px;}
.ls4a{letter-spacing:18.030600px;}
.ls4e{letter-spacing:18.036000px;}
.ls49{letter-spacing:18.376200px;}
.ls1f{letter-spacing:18.623086px;}
.ls20{letter-spacing:18.638497px;}
.ls66{letter-spacing:19.056600px;}
.ls63{letter-spacing:19.737000px;}
.ls3f{letter-spacing:19.788000px;}
.ls56{letter-spacing:20.071800px;}
.ls42{letter-spacing:20.124000px;}
.ls41{letter-spacing:20.130000px;}
.ls54{letter-spacing:21.438000px;}
.ls27{letter-spacing:22.023886px;}
.ls28{letter-spacing:22.025086px;}
.ls61{letter-spacing:23.479200px;}
.ls59{letter-spacing:23.819400px;}
.ls1d{letter-spacing:25.085086px;}
.ls4d{letter-spacing:25.860600px;}
.ls3a{letter-spacing:26.789086px;}
.ls55{letter-spacing:27.216000px;}
.ls67{letter-spacing:33.345000px;}
.ls5e{letter-spacing:36.163800px;}
.ls5b{letter-spacing:36.585000px;}
.ls53{letter-spacing:37.195200px;}
.ls4{letter-spacing:37.738200px;}
.ls3c{letter-spacing:38.082000px;}
.ls58{letter-spacing:39.965400px;}
.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;}
}
.ws1cf{word-spacing:-41.100000px;}
.ws2{word-spacing:-38.609703px;}
.ws160{word-spacing:-31.074000px;}
.ws10c{word-spacing:-30.732000px;}
.ws114{word-spacing:-30.714000px;}
.ws1c5{word-spacing:-30.618000px;}
.ws19e{word-spacing:-30.372000px;}
.ws203{word-spacing:-29.700000px;}
.ws14c{word-spacing:-29.118000px;}
.ws14e{word-spacing:-29.022000px;}
.wsfc{word-spacing:-29.016000px;}
.wsb2{word-spacing:-28.878000px;}
.wsb1{word-spacing:-28.680000px;}
.ws175{word-spacing:-28.200000px;}
.ws81{word-spacing:-27.912600px;}
.ws199{word-spacing:-27.894000px;}
.wscc{word-spacing:-27.852000px;}
.wsca{word-spacing:-27.654000px;}
.ws147{word-spacing:-27.324000px;}
.ws141{word-spacing:-27.194400px;}
.wsdf{word-spacing:-26.634000px;}
.ws13c{word-spacing:-26.514000px;}
.ws84{word-spacing:-25.990200px;}
.ws88{word-spacing:-25.871400px;}
.ws127{word-spacing:-25.614000px;}
.wsf0{word-spacing:-25.392000px;}
.ws16c{word-spacing:-25.266000px;}
.ws1e9{word-spacing:-25.158000px;}
.ws1f5{word-spacing:-25.146000px;}
.ws1{word-spacing:-25.000053px;}
.ws1a1{word-spacing:-24.942000px;}
.ws0{word-spacing:-24.928653px;}
.ws7d{word-spacing:-24.726600px;}
.ws134{word-spacing:-24.714000px;}
.ws200{word-spacing:-24.570000px;}
.wsf5{word-spacing:-24.516000px;}
.ws7b{word-spacing:-24.510600px;}
.wsf2{word-spacing:-24.386400px;}
.ws20a{word-spacing:-24.072000px;}
.ws22b{word-spacing:-24.040800px;}
.ws169{word-spacing:-23.928000px;}
.ws1f3{word-spacing:-23.892000px;}
.ws65{word-spacing:-23.855702px;}
.ws1f4{word-spacing:-23.712000px;}
.ws247{word-spacing:-23.662800px;}
.wsd3{word-spacing:-23.220000px;}
.ws72{word-spacing:-22.771800px;}
.ws106{word-spacing:-22.656000px;}
.ws1d1{word-spacing:-22.566000px;}
.ws1d4{word-spacing:-22.464000px;}
.ws2b2{word-spacing:-22.431600px;}
.ws287{word-spacing:-22.393800px;}
.ws122{word-spacing:-22.224000px;}
.ws2ab{word-spacing:-21.934800px;}
.ws201{word-spacing:-21.792000px;}
.ws2cf{word-spacing:-21.783600px;}
.ws1fd{word-spacing:-21.330000px;}
.ws21e{word-spacing:-21.324600px;}
.ws1f7{word-spacing:-21.312000px;}
.ws1f9{word-spacing:-21.306000px;}
.ws207{word-spacing:-21.258000px;}
.ws1ff{word-spacing:-21.240000px;}
.ws10a{word-spacing:-21.204000px;}
.ws2c0{word-spacing:-21.184200px;}
.ws1f6{word-spacing:-21.168000px;}
.ws208{word-spacing:-21.126000px;}
.ws1f8{word-spacing:-21.102000px;}
.ws205{word-spacing:-21.066000px;}
.ws1fe{word-spacing:-21.024000px;}
.ws187{word-spacing:-20.922000px;}
.ws12f{word-spacing:-20.058000px;}
.ws15d{word-spacing:-20.040000px;}
.ws2e9{word-spacing:-19.618200px;}
.ws23d{word-spacing:-19.537200px;}
.ws3{word-spacing:-19.499850px;}
.ws23a{word-spacing:-19.278000px;}
.ws226{word-spacing:-19.256400px;}
.ws74{word-spacing:-19.251000px;}
.ws78{word-spacing:-19.245600px;}
.ws292{word-spacing:-19.234800px;}
.ws2e4{word-spacing:-19.126800px;}
.ws2d5{word-spacing:-19.121400px;}
.ws243{word-spacing:-19.040400px;}
.ws76{word-spacing:-19.035000px;}
.ws267{word-spacing:-19.013400px;}
.ws2a1{word-spacing:-19.008000px;}
.ws2f6{word-spacing:-18.981000px;}
.ws253{word-spacing:-18.916200px;}
.ws2b7{word-spacing:-18.835200px;}
.ws1df{word-spacing:-18.810000px;}
.ws261{word-spacing:-18.646200px;}
.ws222{word-spacing:-18.349200px;}
.ws2a5{word-spacing:-17.749800px;}
.ws2c1{word-spacing:-17.609400px;}
.ws233{word-spacing:-17.404200px;}
.ws2bb{word-spacing:-17.280000px;}
.ws1b7{word-spacing:-16.776000px;}
.ws2fa{word-spacing:-16.718400px;}
.ws295{word-spacing:-16.696800px;}
.ws296{word-spacing:-16.659000px;}
.ws259{word-spacing:-15.919200px;}
.ws275{word-spacing:-15.681600px;}
.ws19{word-spacing:-15.557168px;}
.ws1f0{word-spacing:-15.409800px;}
.wsa9{word-spacing:-15.365700px;}
.ws1ea{word-spacing:-15.246000px;}
.ws28b{word-spacing:-15.211800px;}
.ws10{word-spacing:-15.204000px;}
.ws8c{word-spacing:-14.772000px;}
.ws2af{word-spacing:-14.607000px;}
.ws2f1{word-spacing:-14.175000px;}
.wsf7{word-spacing:-14.001196px;}
.ws1f1{word-spacing:-13.856700px;}
.ws1ec{word-spacing:-13.828200px;}
.ws11b{word-spacing:-13.716000px;}
.ws20c{word-spacing:-13.702800px;}
.ws284{word-spacing:-13.494600px;}
.ws8{word-spacing:-13.192200px;}
.ws29d{word-spacing:-13.154400px;}
.ws1d7{word-spacing:-13.127400px;}
.wsb{word-spacing:-13.122000px;}
.ws5{word-spacing:-12.854301px;}
.wsee{word-spacing:-12.792000px;}
.ws6{word-spacing:-12.721702px;}
.ws4{word-spacing:-12.643703px;}
.ws7{word-spacing:-12.604703px;}
.ws1f2{word-spacing:-12.558000px;}
.ws237{word-spacing:-11.485800px;}
.ws22f{word-spacing:-10.773000px;}
.ws270{word-spacing:-10.135800px;}
.ws1fb{word-spacing:-9.858000px;}
.ws204{word-spacing:-9.852000px;}
.ws209{word-spacing:-9.846000px;}
.ws206{word-spacing:-9.804000px;}
.ws1fc{word-spacing:-9.660000px;}
.ws64{word-spacing:-9.574200px;}
.ws1ac{word-spacing:-9.462000px;}
.ws38{word-spacing:-9.252000px;}
.ws15f{word-spacing:-9.240000px;}
.ws17{word-spacing:-9.216000px;}
.ws3a{word-spacing:-9.210000px;}
.ws1ab{word-spacing:-9.156000px;}
.ws9{word-spacing:-9.142200px;}
.ws1aa{word-spacing:-9.090000px;}
.ws162{word-spacing:-9.060000px;}
.ws115{word-spacing:-9.054000px;}
.wsa{word-spacing:-8.980200px;}
.wsfe{word-spacing:-8.946000px;}
.ws10b{word-spacing:-8.940000px;}
.ws1c6{word-spacing:-8.922000px;}
.wsff{word-spacing:-8.892000px;}
.ws39{word-spacing:-8.820000px;}
.ws161{word-spacing:-8.760000px;}
.ws19f{word-spacing:-8.706000px;}
.ws19d{word-spacing:-8.682000px;}
.ws10d{word-spacing:-8.628000px;}
.ws137{word-spacing:-8.592000px;}
.ws126{word-spacing:-8.568000px;}
.ws44{word-spacing:-8.562000px;}
.ws53{word-spacing:-8.424000px;}
.ws2f8{word-spacing:-8.413200px;}
.ws1d9{word-spacing:-8.412000px;}
.ws12a{word-spacing:-8.388000px;}
.ws1b5{word-spacing:-8.340000px;}
.ws1d{word-spacing:-8.322000px;}
.ws5b{word-spacing:-8.256000px;}
.wsb9{word-spacing:-8.250000px;}
.ws82{word-spacing:-8.218800px;}
.ws80{word-spacing:-8.175600px;}
.ws129{word-spacing:-8.136000px;}
.ws198{word-spacing:-8.130000px;}
.ws91{word-spacing:-8.124000px;}
.ws2cd{word-spacing:-8.110800px;}
.ws83{word-spacing:-8.100000px;}
.ws5a{word-spacing:-8.094000px;}
.ws92{word-spacing:-8.082000px;}
.wsba{word-spacing:-8.058000px;}
.ws1ba{word-spacing:-8.052000px;}
.ws228{word-spacing:-8.046000px;}
.ws22a{word-spacing:-8.029800px;}
.ws1c9{word-spacing:-8.010000px;}
.ws1c8{word-spacing:-7.998000px;}
.ws22c{word-spacing:-7.997400px;}
.ws140{word-spacing:-7.962000px;}
.ws120{word-spacing:-7.956000px;}
.ws13b{word-spacing:-7.914000px;}
.ws22d{word-spacing:-7.851600px;}
.ws2b5{word-spacing:-7.846200px;}
.ws2ee{word-spacing:-7.808400px;}
.ws2d9{word-spacing:-7.803000px;}
.ws12c{word-spacing:-7.758000px;}
.ws24{word-spacing:-7.734000px;}
.ws21c{word-spacing:-7.684200px;}
.ws2b4{word-spacing:-7.646400px;}
.ws26b{word-spacing:-7.614000px;}
.ws223{word-spacing:-7.608600px;}
.ws1bb{word-spacing:-7.608000px;}
.ws12b{word-spacing:-7.566000px;}
.ws145{word-spacing:-7.565400px;}
.ws143{word-spacing:-7.560000px;}
.ws2a9{word-spacing:-7.538400px;}
.ws142{word-spacing:-7.527600px;}
.ws14a{word-spacing:-7.522200px;}
.ws146{word-spacing:-7.473600px;}
.ws144{word-spacing:-7.468200px;}
.ws148{word-spacing:-7.457400px;}
.wsbe{word-spacing:-7.392000px;}
.wsbf{word-spacing:-7.386000px;}
.ws149{word-spacing:-7.344000px;}
.wsbd{word-spacing:-7.320000px;}
.ws12{word-spacing:-7.278000px;}
.ws248{word-spacing:-7.273800px;}
.ws2ba{word-spacing:-7.187400px;}
.ws6f{word-spacing:-7.104000px;}
.ws70{word-spacing:-7.050000px;}
.ws25b{word-spacing:-7.025400px;}
.wsb0{word-spacing:-7.014000px;}
.ws14d{word-spacing:-6.978000px;}
.wsfd{word-spacing:-6.972000px;}
.ws52{word-spacing:-6.894000px;}
.ws51{word-spacing:-6.888000px;}
.ws20f{word-spacing:-6.882000px;}
.ws2b0{word-spacing:-6.874200px;}
.wsb3{word-spacing:-6.774000px;}
.ws132{word-spacing:-6.684000px;}
.wsa7{word-spacing:-6.636000px;}
.ws281{word-spacing:-6.555600px;}
.ws85{word-spacing:-6.517800px;}
.ws56{word-spacing:-6.510000px;}
.ws8a{word-spacing:-6.458400px;}
.ws67{word-spacing:-6.448680px;}
.ws173{word-spacing:-6.426000px;}
.ws289{word-spacing:-6.409800px;}
.ws66{word-spacing:-6.395760px;}
.ws2b{word-spacing:-6.390000px;}
.ws158{word-spacing:-6.372000px;}
.ws86{word-spacing:-6.361200px;}
.ws87{word-spacing:-6.355800px;}
.ws93{word-spacing:-6.354000px;}
.ws2b1{word-spacing:-6.291000px;}
.ws174{word-spacing:-6.288000px;}
.ws2f3{word-spacing:-6.269400px;}
.ws2d6{word-spacing:-6.264000px;}
.ws288{word-spacing:-6.258600px;}
.ws159{word-spacing:-6.222000px;}
.ws2ad{word-spacing:-6.220800px;}
.ws185{word-spacing:-6.210000px;}
.ws2ef{word-spacing:-6.199200px;}
.ws89{word-spacing:-6.177600px;}
.wsc5{word-spacing:-6.168000px;}
.ws2cb{word-spacing:-6.145200px;}
.ws265{word-spacing:-6.118200px;}
.ws68{word-spacing:-6.109200px;}
.ws2ac{word-spacing:-6.107400px;}
.ws176{word-spacing:-6.084000px;}
.ws2f7{word-spacing:-6.069600px;}
.ws69{word-spacing:-6.015600px;}
.ws2aa{word-spacing:-5.999400px;}
.ws1e3{word-spacing:-5.934000px;}
.ws244{word-spacing:-5.918400px;}
.wsbc{word-spacing:-5.868000px;}
.ws2d1{word-spacing:-5.864400px;}
.ws19a{word-spacing:-5.838000px;}
.wse9{word-spacing:-5.748000px;}
.wsc6{word-spacing:-5.712000px;}
.ws19b{word-spacing:-5.700000px;}
.wscb{word-spacing:-5.694000px;}
.wscd{word-spacing:-5.688000px;}
.ws2ca{word-spacing:-5.659200px;}
.ws1e{word-spacing:-5.616000px;}
.ws2ce{word-spacing:-5.605200px;}
.wsc9{word-spacing:-5.586000px;}
.ws1e2{word-spacing:-5.562000px;}
.wsd{word-spacing:-5.524731px;}
.wsfb{word-spacing:-5.484000px;}
.ws27d{word-spacing:-5.443200px;}
.ws2d0{word-spacing:-5.427000px;}
.wsf{word-spacing:-5.404732px;}
.ws136{word-spacing:-5.370000px;}
.ws21d{word-spacing:-5.329800px;}
.ws1af{word-spacing:-5.226000px;}
.ws18a{word-spacing:-5.172000px;}
.ws2d4{word-spacing:-5.157000px;}
.ws9a{word-spacing:-5.124000px;}
.ws13f{word-spacing:-5.070000px;}
.ws7c{word-spacing:-5.038200px;}
.wsf6{word-spacing:-5.016600px;}
.ws11{word-spacing:-5.010000px;}
.ws71{word-spacing:-4.968000px;}
.wsf8{word-spacing:-4.962600px;}
.ws7f{word-spacing:-4.924800px;}
.wsde{word-spacing:-4.908000px;}
.ws7e{word-spacing:-4.870800px;}
.wsf1{word-spacing:-4.865400px;}
.ws7a{word-spacing:-4.854600px;}
.wsf3{word-spacing:-4.849200px;}
.wsf4{word-spacing:-4.843800px;}
.ws151{word-spacing:-4.836000px;}
.ws29b{word-spacing:-4.816800px;}
.wsdd{word-spacing:-4.800000px;}
.ws1dd{word-spacing:-4.788000px;}
.wsac{word-spacing:-4.776000px;}
.ws13d{word-spacing:-4.734000px;}
.ws2d8{word-spacing:-4.719600px;}
.wse0{word-spacing:-4.674000px;}
.ws94{word-spacing:-4.614000px;}
.ws256{word-spacing:-4.606200px;}
.ws2e5{word-spacing:-4.595400px;}
.ws2dd{word-spacing:-4.541400px;}
.wse1{word-spacing:-4.524000px;}
.ws2b3{word-spacing:-4.401000px;}
.ws13e{word-spacing:-4.356000px;}
.ws2a8{word-spacing:-4.303800px;}
.ws31{word-spacing:-4.266000px;}
.ws2b9{word-spacing:-4.174200px;}
.ws17f{word-spacing:-4.158000px;}
.ws30{word-spacing:-4.056000px;}
.ws240{word-spacing:-4.039200px;}
.ws2bf{word-spacing:-4.033800px;}
.wsa1{word-spacing:-3.990000px;}
.ws2c6{word-spacing:-3.974400px;}
.ws1b{word-spacing:-3.972000px;}
.ws249{word-spacing:-3.947400px;}
.ws1a9{word-spacing:-3.918000px;}
.ws1e4{word-spacing:-3.912000px;}
.ws128{word-spacing:-3.870000px;}
.ws180{word-spacing:-3.858000px;}
.ws2e8{word-spacing:-3.850200px;}
.ws2d7{word-spacing:-3.785400px;}
.ws179{word-spacing:-3.744000px;}
.ws23f{word-spacing:-3.726000px;}
.ws23c{word-spacing:-3.655800px;}
.ws2b6{word-spacing:-3.623400px;}
.wsdb{word-spacing:-3.576000px;}
.ws8e{word-spacing:-3.552000px;}
.ws23e{word-spacing:-3.531600px;}
.ws1ef{word-spacing:-3.498000px;}
.wsdc{word-spacing:-3.492000px;}
.ws99{word-spacing:-3.480000px;}
.ws20b{word-spacing:-3.462000px;}
.ws1fa{word-spacing:-3.450000px;}
.ws20e{word-spacing:-3.420000px;}
.ws55{word-spacing:-3.408000px;}
.ws18d{word-spacing:-3.396000px;}
.ws182{word-spacing:-3.390000px;}
.ws58{word-spacing:-3.378000px;}
.ws3f{word-spacing:-3.372000px;}
.ws57{word-spacing:-3.348000px;}
.ws193{word-spacing:-3.336000px;}
.ws20d{word-spacing:-3.312000px;}
.ws192{word-spacing:-3.306000px;}
.ws1e8{word-spacing:-3.276000px;}
.ws125{word-spacing:-3.258000px;}
.ws194{word-spacing:-3.240000px;}
.wsa8{word-spacing:-3.234000px;}
.ws239{word-spacing:-3.223800px;}
.ws135{word-spacing:-3.216000px;}
.ws293{word-spacing:-3.191400px;}
.ws73{word-spacing:-3.186000px;}
.ws16b{word-spacing:-3.180000px;}
.ws202{word-spacing:-3.168000px;}
.ws2f5{word-spacing:-3.159000px;}
.ws1f{word-spacing:-3.150000px;}
.ws21b{word-spacing:-3.126600px;}
.ws242{word-spacing:-3.115800px;}
.ws266{word-spacing:-3.110400px;}
.ws2e0{word-spacing:-3.105000px;}
.ws2e3{word-spacing:-3.099600px;}
.ws27a{word-spacing:-3.056400px;}
.wsf9{word-spacing:-3.051000px;}
.ws60{word-spacing:-3.045600px;}
.ws2e1{word-spacing:-3.040200px;}
.ws2ec{word-spacing:-3.029400px;}
.ws2dc{word-spacing:-3.024000px;}
.ws8b{word-spacing:-3.002400px;}
.ws1a8{word-spacing:-3.000000px;}
.wsfa{word-spacing:-2.997000px;}
.ws1a6{word-spacing:-2.994000px;}
.ws1a7{word-spacing:-2.982000px;}
.ws14b{word-spacing:-2.970000px;}
.ws27c{word-spacing:-2.959200px;}
.ws62{word-spacing:-2.948400px;}
.ws1d6{word-spacing:-2.904000px;}
.ws230{word-spacing:-2.899800px;}
.ws1a0{word-spacing:-2.898000px;}
.ws2f2{word-spacing:-2.894400px;}
.ws26c{word-spacing:-2.889000px;}
.ws1a2{word-spacing:-2.886000px;}
.ws255{word-spacing:-2.883600px;}
.ws1c3{word-spacing:-2.880000px;}
.ws227{word-spacing:-2.872800px;}
.ws29a{word-spacing:-2.867400px;}
.ws2b8{word-spacing:-2.851200px;}
.ws1d5{word-spacing:-2.850000px;}
.ws225{word-spacing:-2.845800px;}
.ws1c4{word-spacing:-2.814000px;}
.ws252{word-spacing:-2.775600px;}
.ws291{word-spacing:-2.770200px;}
.ws229{word-spacing:-2.737800px;}
.ws124{word-spacing:-2.730000px;}
.ws254{word-spacing:-2.705400px;}
.ws2a2{word-spacing:-2.700000px;}
.wsaf{word-spacing:-2.694000px;}
.ws1c0{word-spacing:-2.658000px;}
.ws97{word-spacing:-2.556000px;}
.ws260{word-spacing:-2.467800px;}
.ws2c3{word-spacing:-2.462400px;}
.ws2d2{word-spacing:-2.430000px;}
.ws263{word-spacing:-2.408400px;}
.ws221{word-spacing:-2.397600px;}
.ws6c{word-spacing:-2.340000px;}
.ws15c{word-spacing:-2.286000px;}
.ws9f{word-spacing:-2.250000px;}
.ws15e{word-spacing:-2.232000px;}
.ws262{word-spacing:-2.219400px;}
.ws133{word-spacing:-2.214000px;}
.ws16a{word-spacing:-2.178000px;}
.ws191{word-spacing:-2.124000px;}
.ws168{word-spacing:-2.100000px;}
.ws257{word-spacing:-2.089800px;}
.ws150{word-spacing:-2.088000px;}
.ws1ad{word-spacing:-1.992000px;}
.ws40{word-spacing:-1.956000px;}
.ws14f{word-spacing:-1.944000px;}
.ws27b{word-spacing:-1.884600px;}
.ws2c{word-spacing:-1.884000px;}
.ws167{word-spacing:-1.872000px;}
.ws42{word-spacing:-1.866000px;}
.ws41{word-spacing:-1.860000px;}
.ws2a{word-spacing:-1.854000px;}
.wsa6{word-spacing:-1.836000px;}
.ws19c{word-spacing:-1.794000px;}
.ws236{word-spacing:-1.792800px;}
.wsb6{word-spacing:-1.788000px;}
.wsd5{word-spacing:-1.698000px;}
.ws2c2{word-spacing:-1.684800px;}
.wse4{word-spacing:-1.668000px;}
.ws24f{word-spacing:-1.647000px;}
.ws8f{word-spacing:-1.500000px;}
.ws2a6{word-spacing:-1.495800px;}
.wsce{word-spacing:-1.488000px;}
.ws232{word-spacing:-1.485000px;}
.ws116{word-spacing:-1.482000px;}
.wsa4{word-spacing:-1.452000px;}
.wsd6{word-spacing:-1.446000px;}
.ws2a7{word-spacing:-1.344600px;}
.wscf{word-spacing:-1.338000px;}
.ws18f{word-spacing:-1.326000px;}
.ws2e2{word-spacing:-1.312200px;}
.ws24d{word-spacing:-1.252800px;}
.ws2bd{word-spacing:-1.220400px;}
.ws2a4{word-spacing:-1.198800px;}
.ws2bc{word-spacing:-1.193400px;}
.ws1c1{word-spacing:-1.188000px;}
.ws27f{word-spacing:-1.150200px;}
.ws29c{word-spacing:-1.144800px;}
.ws298{word-spacing:-1.117800px;}
.ws28f{word-spacing:-1.096200px;}
.ws113{word-spacing:-1.056000px;}
.ws1c2{word-spacing:-1.044000px;}
.ws277{word-spacing:-1.015200px;}
.ws10f{word-spacing:-0.996000px;}
.ws111{word-spacing:-0.936000px;}
.ws105{word-spacing:-0.930000px;}
.ws100{word-spacing:-0.882000px;}
.ws103{word-spacing:-0.864000px;}
.ws276{word-spacing:-0.858600px;}
.ws197{word-spacing:-0.858000px;}
.ws294{word-spacing:-0.842400px;}
.ws110{word-spacing:-0.840000px;}
.ws112{word-spacing:-0.828000px;}
.wse3{word-spacing:-0.822000px;}
.ws2ed{word-spacing:-0.804600px;}
.wsd1{word-spacing:-0.792000px;}
.wsd0{word-spacing:-0.774000px;}
.wse2{word-spacing:-0.726000px;}
.ws1d2{word-spacing:-0.714000px;}
.ws297{word-spacing:-0.685800px;}
.ws121{word-spacing:-0.684000px;}
.ws1d3{word-spacing:-0.666000px;}
.ws102{word-spacing:-0.648000px;}
.ws107{word-spacing:-0.636000px;}
.wsbb{word-spacing:-0.600000px;}
.ws2f{word-spacing:-0.588000px;}
.ws2db{word-spacing:-0.534600px;}
.ws29{word-spacing:-0.528000px;}
.ws101{word-spacing:-0.522000px;}
.ws27{word-spacing:-0.516000px;}
.ws123{word-spacing:-0.492000px;}
.ws28{word-spacing:-0.426000px;}
.ws2f9{word-spacing:-0.421200px;}
.ws49{word-spacing:-0.360000px;}
.ws1a5{word-spacing:-0.318000px;}
.ws1ce{word-spacing:-0.306000px;}
.ws246{word-spacing:-0.199800px;}
.ws268{word-spacing:-0.162000px;}
.ws98{word-spacing:-0.114000px;}
.ws280{word-spacing:-0.081000px;}
.ws2eb{word-spacing:-0.059400px;}
.ws6a{word-spacing:0.000000px;}
.ws1b2{word-spacing:0.054000px;}
.ws1b4{word-spacing:0.120000px;}
.ws170{word-spacing:0.162000px;}
.ws25a{word-spacing:0.167400px;}
.ws274{word-spacing:0.178200px;}
.ws16f{word-spacing:0.186000px;}
.ws258{word-spacing:0.237600px;}
.ws1bf{word-spacing:0.252000px;}
.ws2da{word-spacing:0.275400px;}
.ws1b3{word-spacing:0.372000px;}
.ws109{word-spacing:0.414000px;}
.ws75{word-spacing:0.415800px;}
.ws108{word-spacing:0.426000px;}
.ws79{word-spacing:0.453600px;}
.ws195{word-spacing:0.474000px;}
.wse8{word-spacing:0.534000px;}
.ws241{word-spacing:0.540000px;}
.ws77{word-spacing:0.626400px;}
.wse7{word-spacing:0.708000px;}
.ws188{word-spacing:0.720000px;}
.ws15a{word-spacing:0.768000px;}
.ws25e{word-spacing:0.793800px;}
.ws186{word-spacing:0.840000px;}
.wse6{word-spacing:0.882000px;}
.ws25f{word-spacing:0.955800px;}
.ws273{word-spacing:1.128600px;}
.ws152{word-spacing:1.176000px;}
.wsda{word-spacing:1.182000px;}
.ws217{word-spacing:1.218000px;}
.ws166{word-spacing:1.392000px;}
.ws1e6{word-spacing:1.494000px;}
.ws2ae{word-spacing:1.517400px;}
.ws1b8{word-spacing:1.752000px;}
.ws36{word-spacing:1.776000px;}
.ws1b9{word-spacing:1.788000px;}
.wsed{word-spacing:1.794000px;}
.ws251{word-spacing:1.841400px;}
.ws11f{word-spacing:1.866000px;}
.ws130{word-spacing:1.884000px;}
.ws35{word-spacing:1.902000px;}
.ws189{word-spacing:1.908000px;}
.ws34{word-spacing:1.950000px;}
.wsea{word-spacing:1.956000px;}
.ws2f0{word-spacing:1.992600px;}
.ws12e{word-spacing:2.016000px;}
.wseb{word-spacing:2.034000px;}
.ws2f4{word-spacing:2.052000px;}
.wsec{word-spacing:2.070000px;}
.ws178{word-spacing:2.076000px;}
.wsd2{word-spacing:2.130000px;}
.ws90{word-spacing:2.142000px;}
.ws1dc{word-spacing:2.220000px;}
.ws12d{word-spacing:2.226000px;}
.ws1c{word-spacing:2.262000px;}
.wsd4{word-spacing:2.304000px;}
.ws29e{word-spacing:2.435400px;}
.ws2e6{word-spacing:2.446200px;}
.ws2e7{word-spacing:2.473200px;}
.ws4d{word-spacing:2.640000px;}
.ws285{word-spacing:2.737800px;}
.ws283{word-spacing:2.797200px;}
.ws1e7{word-spacing:2.886000px;}
.ws1de{word-spacing:2.904000px;}
.ws1e0{word-spacing:2.928000px;}
.ws1a3{word-spacing:2.940000px;}
.ws20{word-spacing:2.946000px;}
.ws264{word-spacing:2.959200px;}
.ws272{word-spacing:3.007800px;}
.ws28a{word-spacing:3.040200px;}
.ws95{word-spacing:3.054000px;}
.ws23{word-spacing:3.084000px;}
.ws131{word-spacing:3.240000px;}
.ws1c7{word-spacing:3.408000px;}
.ws29f{word-spacing:3.488400px;}
.ws54{word-spacing:3.636000px;}
.ws245{word-spacing:3.661200px;}
.ws46{word-spacing:3.690000px;}
.ws33{word-spacing:3.744000px;}
.ws1ca{word-spacing:3.774000px;}
.ws1e1{word-spacing:3.816000px;}
.ws25d{word-spacing:3.877200px;}
.ws250{word-spacing:3.909600px;}
.ws96{word-spacing:3.996000px;}
.ws1a{word-spacing:4.110000px;}
.ws18{word-spacing:4.218000px;}
.ws16{word-spacing:4.224000px;}
.ws4a{word-spacing:4.362000px;}
.ws2c7{word-spacing:4.368600px;}
.ws220{word-spacing:4.433400px;}
.wsd8{word-spacing:4.446000px;}
.wsd7{word-spacing:4.512000px;}
.ws238{word-spacing:4.606200px;}
.ws219{word-spacing:4.620000px;}
.ws21f{word-spacing:4.627800px;}
.ws17e{word-spacing:4.674000px;}
.wsd9{word-spacing:4.734000px;}
.ws1b1{word-spacing:4.776000px;}
.ws59{word-spacing:4.782000px;}
.ws171{word-spacing:4.830000px;}
.ws172{word-spacing:4.848000px;}
.ws47{word-spacing:4.854000px;}
.ws22e{word-spacing:4.881600px;}
.ws118{word-spacing:4.896000px;}
.ws117{word-spacing:4.956000px;}
.ws1b6{word-spacing:5.022000px;}
.ws2be{word-spacing:5.032800px;}
.ws153{word-spacing:5.292000px;}
.ws1e5{word-spacing:5.310000px;}
.wsc0{word-spacing:5.364000px;}
.ws5c{word-spacing:5.436000px;}
.ws63{word-spacing:5.437800px;}
.ws25c{word-spacing:5.686200px;}
.ws23b{word-spacing:5.718600px;}
.ws6e{word-spacing:5.766000px;}
.ws231{word-spacing:5.869800px;}
.ws271{word-spacing:5.950800px;}
.ws164{word-spacing:5.970000px;}
.ws235{word-spacing:6.042600px;}
.ws26f{word-spacing:6.085800px;}
.ws183{word-spacing:6.234000px;}
.ws218{word-spacing:6.240000px;}
.ws1d8{word-spacing:6.431400px;}
.ws3d{word-spacing:6.504000px;}
.ws3e{word-spacing:6.642000px;}
.ws11e{word-spacing:6.996000px;}
.ws37{word-spacing:7.098000px;}
.ws1d0{word-spacing:7.131167px;}
.ws212{word-spacing:7.230000px;}
.ws1bd{word-spacing:7.344000px;}
.ws1be{word-spacing:7.500000px;}
.ws17a{word-spacing:7.572000px;}
.ws214{word-spacing:7.608000px;}
.ws1bc{word-spacing:7.650000px;}
.ws17c{word-spacing:7.740000px;}
.ws17b{word-spacing:7.782000px;}
.ws18e{word-spacing:7.788000px;}
.ws15b{word-spacing:7.890000px;}
.ws11a{word-spacing:7.992000px;}
.ws1cd{word-spacing:8.004000px;}
.ws11c{word-spacing:8.010000px;}
.ws2c4{word-spacing:8.143200px;}
.ws26{word-spacing:8.256000px;}
.ws11d{word-spacing:8.310000px;}
.ws1cc{word-spacing:8.412000px;}
.ws2a0{word-spacing:8.461800px;}
.ws26a{word-spacing:8.532000px;}
.ws1cb{word-spacing:8.634000px;}
.ws163{word-spacing:8.778000px;}
.wsef{word-spacing:8.808000px;}
.ws21a{word-spacing:9.102000px;}
.ws48{word-spacing:9.150000px;}
.ws24a{word-spacing:9.207000px;}
.wsc8{word-spacing:9.576000px;}
.ws6b{word-spacing:9.678000px;}
.ws1ed{word-spacing:9.714000px;}
.ws1da{word-spacing:9.948000px;}
.wsc7{word-spacing:9.954000px;}
.ws2de{word-spacing:10.022400px;}
.ws1db{word-spacing:10.116000px;}
.ws2df{word-spacing:10.157400px;}
.ws3c{word-spacing:10.218000px;}
.ws9d{word-spacing:10.230000px;}
.ws9e{word-spacing:10.296000px;}
.ws2d3{word-spacing:10.351800px;}
.ws279{word-spacing:10.378800px;}
.ws9c{word-spacing:10.398000px;}
.ws5f{word-spacing:10.405800px;}
.ws286{word-spacing:10.724400px;}
.ws119{word-spacing:10.980000px;}
.wsae{word-spacing:11.040000px;}
.ws26d{word-spacing:11.118600px;}
.wsad{word-spacing:11.166000px;}
.ws2c9{word-spacing:11.253600px;}
.ws2a3{word-spacing:11.404800px;}
.ws26e{word-spacing:11.415600px;}
.ws155{word-spacing:11.562000px;}
.ws156{word-spacing:11.598000px;}
.ws184{word-spacing:11.670000px;}
.ws157{word-spacing:11.682000px;}
.ws16e{word-spacing:11.886000px;}
.ws138{word-spacing:12.156000px;}
.wsb4{word-spacing:12.198000px;}
.ws2c5{word-spacing:12.204000px;}
.ws139{word-spacing:12.276000px;}
.ws13a{word-spacing:12.330000px;}
.ws278{word-spacing:12.387600px;}
.wsb5{word-spacing:12.402000px;}
.ws165{word-spacing:12.438000px;}
.ws43{word-spacing:12.618000px;}
.wsa5{word-spacing:12.834000px;}
.ws211{word-spacing:12.888000px;}
.ws282{word-spacing:13.527000px;}
.ws2ea{word-spacing:13.645800px;}
.ws15{word-spacing:13.920000px;}
.ws28d{word-spacing:14.218200px;}
.wsb8{word-spacing:14.226000px;}
.ws4c{word-spacing:14.286000px;}
.wsc1{word-spacing:14.454000px;}
.ws269{word-spacing:14.461200px;}
.wsb7{word-spacing:14.466000px;}
.ws4b{word-spacing:14.526000px;}
.ws213{word-spacing:14.604000px;}
.wsc2{word-spacing:14.652000px;}
.wsc3{word-spacing:14.658000px;}
.ws224{word-spacing:14.812200px;}
.ws24b{word-spacing:14.833800px;}
.ws28c{word-spacing:14.860800px;}
.ws24c{word-spacing:14.887800px;}
.ws2c8{word-spacing:14.920200px;}
.ws28e{word-spacing:14.931000px;}
.ws234{word-spacing:14.974200px;}
.ws299{word-spacing:14.979600px;}
.ws24e{word-spacing:15.017400px;}
.ws27e{word-spacing:15.093000px;}
.ws290{word-spacing:15.174000px;}
.ws2cc{word-spacing:15.190200px;}
.ws10e{word-spacing:15.216000px;}
.wsc4{word-spacing:15.474000px;}
.ws21{word-spacing:16.056000px;}
.ws22{word-spacing:16.116000px;}
.ws154{word-spacing:16.152000px;}
.ws32{word-spacing:16.452000px;}
.ws16d{word-spacing:16.458000px;}
.ws177{word-spacing:16.470000px;}
.ws50{word-spacing:16.476000px;}
.ws210{word-spacing:16.488000px;}
.ws1b0{word-spacing:16.524000px;}
.ws14{word-spacing:16.530000px;}
.ws181{word-spacing:16.536000px;}
.ws13{word-spacing:16.548000px;}
.ws4e{word-spacing:16.560000px;}
.wsa3{word-spacing:16.566000px;}
.ws6d{word-spacing:16.578000px;}
.wsa0{word-spacing:16.584000px;}
.ws9b{word-spacing:16.602000px;}
.ws17d{word-spacing:16.614000px;}
.ws2d{word-spacing:16.620000px;}
.ws2e{word-spacing:16.632000px;}
.ws4f{word-spacing:16.638000px;}
.ws215{word-spacing:16.644000px;}
.ws25{word-spacing:16.650000px;}
.ws45{word-spacing:16.662000px;}
.ws3b{word-spacing:16.668000px;}
.ws5e{word-spacing:16.674000px;}
.ws1ee{word-spacing:16.680000px;}
.wsab{word-spacing:16.704000px;}
.ws216{word-spacing:16.710000px;}
.ws1a4{word-spacing:16.716000px;}
.wsa2{word-spacing:16.734000px;}
.ws196{word-spacing:16.770000px;}
.ws190{word-spacing:16.776000px;}
.ws104{word-spacing:16.794000px;}
.ws18c{word-spacing:16.854000px;}
.ws1ae{word-spacing:16.908000px;}
.ws5d{word-spacing:16.920000px;}
.wse5{word-spacing:16.932000px;}
.ws18b{word-spacing:16.992000px;}
.wsaa{word-spacing:17.004000px;}
.ws1eb{word-spacing:20.108886px;}
.wse{word-spacing:21.278249px;}
.ws61{word-spacing:36.919800px;}
.wsc{word-spacing:321.527400px;}
.ws8d{word-spacing:673.676379px;}
._11{margin-left:-2981.957925px;}
._1{margin-left:-1.528788px;}
._1b{width:11.944800px;}
._12{width:13.456800px;}
._7{width:15.024000px;}
._9{width:16.572000px;}
._16{width:18.126000px;}
._4{width:19.212000px;}
._c{width:20.226000px;}
._19{width:21.234000px;}
._b{width:22.428000px;}
._15{width:24.414000px;}
._18{width:25.494000px;}
._8{width:26.874000px;}
._6{width:28.584000px;}
._10{width:30.018000px;}
._e{width:31.404000px;}
._a{width:32.556000px;}
._1c{width:33.582600px;}
._0{width:34.885987px;}
._f{width:36.972000px;}
._17{width:39.366000px;}
._d{width:40.842000px;}
._5{width:42.408000px;}
._13{width:74.942280px;}
._1a{width:80.406000px;}
._3{width:280.619744px;}
._2{width:457.807763px;}
._14{width:659.981400px;}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc5{color:rgb(38,51,128);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:35.995200px;}
.fs10{font-size:36.000000px;}
.fs13{font-size:36.178800px;}
.fse{font-size:37.800000px;}
.fs16{font-size:39.186000px;}
.fsd{font-size:39.995400px;}
.fsa{font-size:40.199400px;}
.fs8{font-size:41.248800px;}
.fs11{font-size:42.000000px;}
.fsf{font-size:44.999400px;}
.fs6{font-size:47.999400px;}
.fs12{font-size:48.000000px;}
.fs3{font-size:51.993000px;}
.fs4{font-size:54.000000px;}
.fs17{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs1{font-size:68.338800px;}
.fs15{font-size:71.248800px;}
.fs7{font-size:74.999400px;}
.fs2{font-size:77.999400px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fsb{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.436250px;}
.y79{bottom:22.621350px;}
.y67{bottom:27.553650px;}
.y78{bottom:32.399850px;}
.y65{bottom:35.207040px;}
.y66{bottom:37.332150px;}
.y64{bottom:43.880250px;}
.y1e2{bottom:59.952450px;}
.y155{bottom:59.952600px;}
.ydc{bottom:59.953200px;}
.y6e{bottom:59.953350px;}
.y70{bottom:59.953950px;}
.y16d{bottom:59.954100px;}
.yc2{bottom:59.954250px;}
.y132{bottom:59.955750px;}
.y6f{bottom:66.670800px;}
.y3f{bottom:68.712150px;}
.y1e1{bottom:75.004950px;}
.y225{bottom:75.430200px;}
.y154{bottom:76.450350px;}
.y6d{bottom:76.450950px;}
.y16c{bottom:76.451100px;}
.y152{bottom:76.451250px;}
.y19e{bottom:76.452750px;}
.y9c{bottom:76.535850px;}
.y131{bottom:76.538250px;}
.ydb{bottom:76.792200px;}
.yc1{bottom:76.961250px;}
.y153{bottom:83.168400px;}
.y3e{bottom:85.551150px;}
.y1e0{bottom:89.972400px;}
.y224{bottom:90.822900px;}
.y6b{bottom:92.947950px;}
.y151{bottom:92.948250px;}
.y19d{bottom:92.949750px;}
.y9b{bottom:93.118350px;}
.y130{bottom:93.120750px;}
.yda{bottom:93.544200px;}
.yc0{bottom:93.884250px;}
.y16b{bottom:97.455600px;}
.y6c{bottom:99.666000px;}
.y3d{bottom:102.472650px;}
.y1df{bottom:104.938500px;}
.y223{bottom:106.214250px;}
.y62{bottom:107.405400px;}
.y150{bottom:109.446750px;}
.y19c{bottom:109.448250px;}
.y9a{bottom:109.700850px;}
.y12f{bottom:109.703250px;}
.yed{bottom:110.296200px;}
.yd9{bottom:110.381700px;}
.ybf{bottom:110.807250px;}
.y16a{bottom:113.952600px;}
.y3b{bottom:119.310150px;}
.y1de{bottom:119.991000px;}
.y222{bottom:121.606950px;}
.y61{bottom:123.903750px;}
.y3c{bottom:125.943150px;}
.y14f{bottom:125.943750px;}
.y19b{bottom:125.945250px;}
.y99{bottom:126.283350px;}
.y12e{bottom:126.285750px;}
.yec{bottom:127.133700px;}
.yd8{bottom:127.134750px;}
.ybe{bottom:127.730250px;}
.y168{bottom:130.450350px;}
.y169{bottom:132.406200px;}
.y1dd{bottom:134.957100px;}
.y39{bottom:136.233750px;}
.y221{bottom:136.998300px;}
.y60{bottom:140.400750px;}
.y76{bottom:141.676050px;}
.y14e{bottom:142.440750px;}
.y14c{bottom:142.442250px;}
.y3a{bottom:142.865250px;}
.y12d{bottom:142.868250px;}
.y98{bottom:143.546250px;}
.yeb{bottom:143.885700px;}
.yd7{bottom:143.888250px;}
.y167{bottom:144.311250px;}
.ybd{bottom:144.651750px;}
.y14d{bottom:149.159250px;}
.y1dc{bottom:150.009600px;}
.y220{bottom:152.391000px;}
.y37{bottom:153.071250px;}
.y75{bottom:156.727200px;}
.y5f{bottom:156.897750px;}
.y14b{bottom:158.940750px;}
.y19a{bottom:159.024750px;}
.y12c{bottom:159.450750px;}
.y38{bottom:159.704250px;}
.yea{bottom:160.637700px;}
.yd6{bottom:160.725750px;}
.ybb{bottom:161.576250px;}
.y1db{bottom:164.977050px;}
.y21f{bottom:167.782350px;}
.ybc{bottom:168.207750px;}
.y36{bottom:169.910250px;}
.y74{bottom:171.694650px;}
.y14a{bottom:175.523250px;}
.y12b{bottom:176.033250px;}
.ye9{bottom:177.475200px;}
.yd5{bottom:177.479250px;}
.yba{bottom:178.499250px;}
.y1da{bottom:179.943150px;}
.y166{bottom:181.050750px;}
.y21e{bottom:183.175050px;}
.y73{bottom:186.662100px;}
.y35{bottom:186.831750px;}
.y97{bottom:187.088250px;}
.y149{bottom:192.020250px;}
.y12a{bottom:192.615750px;}
.ye8{bottom:194.228700px;}
.yd4{bottom:194.316750px;}
.y1d9{bottom:194.995650px;}
.y5d{bottom:195.165750px;}
.yb8{bottom:195.420750px;}
.y165{bottom:197.549250px;}
.y21d{bottom:198.567750px;}
.y72{bottom:201.713250px;}
.y5e{bottom:201.798750px;}
.yb9{bottom:202.053750px;}
.y34{bottom:203.670750px;}
.y147{bottom:208.517250px;}
.y129{bottom:209.112750px;}
.y1d8{bottom:209.961750px;}
.ye7{bottom:210.980700px;}
.yd3{bottom:211.068750px;}
.y5c{bottom:211.917750px;}
.yb7{bottom:212.343750px;}
.y21c{bottom:213.959100px;}
.y164{bottom:214.046250px;}
.y148{bottom:215.150250px;}
.y96{bottom:220.169250px;}
.y33{bottom:220.592250px;}
.y1d7{bottom:225.014250px;}
.y146{bottom:225.015750px;}
.y128{bottom:225.695250px;}
.ye6{bottom:227.818200px;}
.yd2{bottom:227.906250px;}
.y5b{bottom:228.755250px;}
.y59{bottom:228.756750px;}
.y21b{bottom:229.011600px;}
.yb6{bottom:229.266750px;}
.y163{bottom:230.543250px;}
.y5a{bottom:235.473750px;}
.y95{bottom:236.751750px;}
.y32{bottom:237.429750px;}
.y30{bottom:237.431250px;}
.y1d6{bottom:239.981700px;}
.y145{bottom:241.512750px;}
.y127{bottom:242.277750px;}
.y31{bottom:244.148250px;}
.y21a{bottom:244.402950px;}
.ye5{bottom:244.571700px;}
.yd1{bottom:244.659750px;}
.y58{bottom:245.594250px;}
.yb5{bottom:246.189750px;}
.y162{bottom:247.041750px;}
.y94{bottom:253.334250px;}
.y2f{bottom:254.352750px;}
.y1d5{bottom:254.947800px;}
.y144{bottom:258.009750px;}
.y142{bottom:258.011250px;}
.y125{bottom:258.860250px;}
.y219{bottom:259.795650px;}
.ye4{bottom:261.323700px;}
.yd0{bottom:261.411750px;}
.y57{bottom:262.431750px;}
.yb4{bottom:263.112750px;}
.y161{bottom:263.538750px;}
.y143{bottom:264.642750px;}
.y126{bottom:265.493250px;}
.y93{bottom:269.916750px;}
.y1d4{bottom:270.000300px;}
.y2e{bottom:271.190250px;}
.y2c{bottom:271.191750px;}
.y141{bottom:274.508250px;}
.y218{bottom:275.187000px;}
.y124{bottom:275.442750px;}
.y2d{bottom:277.908750px;}
.ycf{bottom:278.079750px;}
.ye3{bottom:278.161200px;}
.y56{bottom:279.269250px;}
.y54{bottom:279.270750px;}
.yb3{bottom:280.035750px;}
.y1d3{bottom:284.967750px;}
.y55{bottom:285.987750px;}
.y92{bottom:286.499250px;}
.y2b{bottom:288.113250px;}
.y217{bottom:290.579700px;}
.y140{bottom:291.003750px;}
.y199{bottom:291.005250px;}
.y123{bottom:292.025250px;}
.y121{bottom:292.029750px;}
.ye2{bottom:294.914700px;}
.yce{bottom:294.917250px;}
.y53{bottom:296.108250px;}
.y160{bottom:296.534250px;}
.yb2{bottom:296.958750px;}
.y122{bottom:298.658250px;}
.y1d2{bottom:300.018900px;}
.y91{bottom:303.081750px;}
.y2a{bottom:304.950750px;}
.y28{bottom:304.952250px;}
.y216{bottom:305.972400px;}
.y13f{bottom:307.502250px;}
.y120{bottom:308.612250px;}
.ye1{bottom:311.666700px;}
.y29{bottom:311.669250px;}
.y52{bottom:312.776250px;}
.y15f{bottom:313.031250px;}
.yb1{bottom:313.967250px;}
.y1d1{bottom:314.986350px;}
.y90{bottom:319.664250px;}
.y215{bottom:321.363750px;}
.y27{bottom:321.875250px;}
.y198{bottom:322.979250px;}
.y13e{bottom:323.999250px;}
.y11f{bottom:325.110750px;}
.ycd{bottom:328.422750px;}
.ye0{bottom:328.504200px;}
.y15e{bottom:329.528250px;}
.y51{bottom:329.613750px;}
.y1d0{bottom:329.952450px;}
.yb0{bottom:330.888750px;}
.y8f{bottom:336.246750px;}
.y214{bottom:336.756450px;}
.y26{bottom:338.712750px;}
.y13d{bottom:340.496250px;}
.y11e{bottom:341.693250px;}
.y1cf{bottom:345.004950px;}
.ydf{bottom:345.257700px;}
.ycc{bottom:345.260250px;}
.y15d{bottom:346.025250px;}
.y50{bottom:346.451250px;}
.yaf{bottom:347.811750px;}
.y213{bottom:352.147800px;}
.y8e{bottom:352.829250px;}
.y25{bottom:355.635750px;}
.y13c{bottom:356.994750px;}
.y6a{bottom:357.195000px;}
.y11d{bottom:358.275750px;}
.y1ce{bottom:359.972400px;}
.y15c{bottom:360.992250px;}
.y197{bottom:361.247250px;}
.yde{bottom:362.009700px;}
.ycb{bottom:362.012250px;}
.y4f{bottom:363.288750px;}
.y4d{bottom:363.290250px;}
.yae{bottom:364.734750px;}
.y212{bottom:367.625550px;}
.y8d{bottom:369.326250px;}
.y4e{bottom:369.921750px;}
.y24{bottom:372.473250px;}
.y13b{bottom:373.491750px;}
.y11c{bottom:374.858250px;}
.y1cd{bottom:374.938500px;}
.y196{bottom:378.254250px;}
.ydd{bottom:378.847200px;}
.yca{bottom:378.849750px;}
.y4c{bottom:380.127750px;}
.yad{bottom:381.657750px;}
.y211{bottom:383.016900px;}
.y8c{bottom:385.908750px;}
.y23{bottom:389.396250px;}
.y13a{bottom:389.988750px;}
.y1cc{bottom:389.991000px;}
.y11b{bottom:391.440750px;}
.y4b{bottom:396.965250px;}
.y15b{bottom:397.814250px;}
.y210{bottom:398.409600px;}
.y195{bottom:398.579250px;}
.yac{bottom:398.580750px;}
.y8a{bottom:402.491250px;}
.y1cb{bottom:404.957100px;}
.y194{bottom:405.212250px;}
.y22{bottom:406.233750px;}
.y139{bottom:406.487250px;}
.y11a{bottom:408.023250px;}
.y8b{bottom:409.124250px;}
.yf0{bottom:411.081150px;}
.y20f{bottom:413.802300px;}
.y4a{bottom:413.802750px;}
.y15a{bottom:414.312750px;}
.yab{bottom:415.503750px;}
.y193{bottom:415.587750px;}
.y89{bottom:419.073750px;}
.y1ca{bottom:420.009600px;}
.y69{bottom:421.365000px;}
.y138{bottom:422.984250px;}
.y21{bottom:423.155250px;}
.y1f{bottom:423.156750px;}
.y119{bottom:424.605750px;}
.yef{bottom:426.048600px;}
.y20e{bottom:428.768400px;}
.y20{bottom:429.788250px;}
.y49{bottom:430.641750px;}
.y159{bottom:430.809750px;}
.yaa{bottom:432.425250px;}
.y1c9{bottom:434.977050px;}
.y88{bottom:435.656250px;}
.y86{bottom:435.657750px;}
.y137{bottom:439.481250px;}
.y1e{bottom:439.995750px;}
.yee{bottom:441.099750px;}
.y118{bottom:441.102750px;}
.y87{bottom:442.289250px;}
.y20d{bottom:444.161100px;}
.y158{bottom:447.306750px;}
.y48{bottom:447.479250px;}
.y192{bottom:447.903750px;}
.ya9{bottom:449.348250px;}
.y1c8{bottom:449.943150px;}
.y85{bottom:452.240250px;}
.y136{bottom:455.979750px;}
.y1d{bottom:456.917250px;}
.y117{bottom:457.685250px;}
.y20c{bottom:459.552450px;}
.y47{bottom:464.231250px;}
.y191{bottom:464.402250px;}
.y1c7{bottom:464.995650px;}
.ya8{bottom:466.271250px;}
.y84{bottom:468.737250px;}
.y135{bottom:472.476750px;}
.y1c{bottom:473.756250px;}
.y116{bottom:474.267750px;}
.y20b{bottom:474.945150px;}
.y1c6{bottom:479.961750px;}
.y46{bottom:481.068750px;}
.ya7{bottom:483.194250px;}
.y83{bottom:485.319750px;}
.y190{bottom:486.851250px;}
.y134{bottom:488.975250px;}
.y20a{bottom:490.422900px;}
.y1b{bottom:490.677750px;}
.y115{bottom:490.851750px;}
.y1c5{bottom:495.014250px;}
.y45{bottom:497.906250px;}
.ya6{bottom:500.117250px;}
.y82{bottom:501.902250px;}
.y19f{bottom:503.348250px;}
.y18f{bottom:503.349750px;}
.y209{bottom:505.389000px;}
.y133{bottom:505.472250px;}
.y114{bottom:507.434250px;}
.y19{bottom:507.515250px;}
.y1c4{bottom:509.981700px;}
.y1a{bottom:514.148250px;}
.y42{bottom:514.740150px;}
.y44{bottom:514.743750px;}
.ya5{bottom:517.038750px;}
.ya3{bottom:517.040250px;}
.y80{bottom:518.484750px;}
.y18e{bottom:519.846750px;}
.y208{bottom:520.781700px;}
.y43{bottom:521.460750px;}
.ya4{bottom:523.757250px;}
.y113{bottom:524.016750px;}
.y18{bottom:524.352750px;}
.y1c3{bottom:524.947800px;}
.y81{bottom:525.117750px;}
.y41{bottom:531.577650px;}
.ya0{bottom:533.959350px;}
.ya2{bottom:533.961750px;}
.y7f{bottom:535.067250px;}
.y7d{bottom:535.068750px;}
.y207{bottom:536.173050px;}
.y18d{bottom:536.345250px;}
.y1c2{bottom:540.000300px;}
.y112{bottom:540.599250px;}
.ya1{bottom:540.680250px;}
.y7e{bottom:541.700250px;}
.y17{bottom:541.871250px;}
.y157{bottom:543.061650px;}
.y40{bottom:548.415150px;}
.y9f{bottom:550.880850px;}
.y206{bottom:551.225550px;}
.y7c{bottom:551.651250px;}
.y18c{bottom:552.842250px;}
.y1c1{bottom:554.967750px;}
.y111{bottom:557.181750px;}
.y156{bottom:558.027750px;}
.y205{bottom:566.616900px;}
.y9e{bottom:567.889350px;}
.y7b{bottom:568.233750px;}
.y18b{bottom:569.340750px;}
.y1c0{bottom:570.018900px;}
.y110{bottom:573.678750px;}
.y248{bottom:578.949150px;}
.y204{bottom:582.009600px;}
.y9d{bottom:584.812350px;}
.y7a{bottom:584.816250px;}
.y1bf{bottom:584.986350px;}
.y18a{bottom:585.923250px;}
.y10f{bottom:590.261250px;}
.y247{bottom:594.000300px;}
.y203{bottom:597.402300px;}
.y1be{bottom:599.952450px;}
.y16{bottom:600.209250px;}
.y189{bottom:602.420250px;}
.y10e{bottom:606.843750px;}
.y246{bottom:608.967750px;}
.y202{bottom:612.793650px;}
.y1bd{bottom:615.004950px;}
.y15{bottom:616.706250px;}
.y188{bottom:618.917250px;}
.yc9{bottom:622.317750px;}
.yc7{bottom:622.319100px;}
.y10d{bottom:623.426250px;}
.y245{bottom:623.935200px;}
.y201{bottom:628.186350px;}
.yc8{bottom:628.355250px;}
.y1bc{bottom:629.972400px;}
.y14{bottom:633.203250px;}
.y71{bottom:634.818750px;}
.y187{bottom:635.415750px;}
.yc6{bottom:637.370250px;}
.y244{bottom:638.986350px;}
.y10c{bottom:640.008750px;}
.yc5{bottom:643.322250px;}
.y200{bottom:643.577700px;}
.y1bb{bottom:645.023550px;}
.y13{bottom:649.701750px;}
.y186{bottom:651.912750px;}
.y243{bottom:653.953800px;}
.y10b{bottom:656.591250px;}
.y1ff{bottom:658.970400px;}
.y1ba{bottom:659.991000px;}
.y12{bottom:666.198750px;}
.y185{bottom:668.409750px;}
.y242{bottom:669.004950px;}
.y10a{bottom:673.173750px;}
.y1fe{bottom:674.022900px;}
.y1b9{bottom:674.957100px;}
.y11{bottom:682.697250px;}
.y241{bottom:683.972400px;}
.y184{bottom:684.908250px;}
.y1fd{bottom:689.414250px;}
.y109{bottom:689.672250px;}
.y1b8{bottom:690.009600px;}
.y240{bottom:698.939850px;}
.y10{bottom:699.194250px;}
.y183{bottom:701.405250px;}
.y1fc{bottom:704.806950px;}
.y1b7{bottom:704.977050px;}
.y108{bottom:706.254750px;}
.y23f{bottom:713.991000px;}
.yf{bottom:715.692750px;}
.y182{bottom:717.902250px;}
.y1b6{bottom:719.943150px;}
.y1fb{bottom:720.198300px;}
.y107{bottom:722.837250px;}
.y23e{bottom:728.958450px;}
.ye{bottom:732.189750px;}
.y181{bottom:734.910750px;}
.y1b5{bottom:734.995650px;}
.y1fa{bottom:735.591000px;}
.y106{bottom:739.419750px;}
.y23d{bottom:744.009600px;}
.yd{bottom:748.686750px;}
.y1b4{bottom:749.961750px;}
.y1f9{bottom:750.982350px;}
.y105{bottom:756.002250px;}
.y23c{bottom:758.977050px;}
.y180{bottom:762.719250px;}
.y1b3{bottom:765.014250px;}
.yc{bottom:765.185250px;}
.y1f8{bottom:765.949800px;}
.y104{bottom:772.584750px;}
.y23b{bottom:773.944500px;}
.y17f{bottom:779.216250px;}
.y1b2{bottom:779.981700px;}
.y1f7{bottom:781.342500px;}
.yb{bottom:781.682250px;}
.y23a{bottom:788.995650px;}
.y103{bottom:789.167250px;}
.y1b1{bottom:794.947800px;}
.y17e{bottom:795.714750px;}
.y1f6{bottom:796.818900px;}
.ya{bottom:798.179250px;}
.y239{bottom:803.963100px;}
.y102{bottom:805.749750px;}
.y1b0{bottom:810.000300px;}
.y1f5{bottom:812.211600px;}
.y17d{bottom:812.213250px;}
.y238{bottom:819.014250px;}
.y101{bottom:822.332250px;}
.y1af{bottom:824.967750px;}
.y1f4{bottom:827.177700px;}
.y17c{bottom:828.710250px;}
.y8{bottom:833.385750px;}
.y237{bottom:833.981700px;}
.y9{bottom:835.427250px;}
.y100{bottom:838.914750px;}
.y1ae{bottom:840.018900px;}
.y1f3{bottom:842.570400px;}
.y17b{bottom:845.207250px;}
.y236{bottom:848.949150px;}
.y1ad{bottom:854.986350px;}
.yff{bottom:855.497250px;}
.y1f2{bottom:857.961750px;}
.y17a{bottom:861.705750px;}
.y235{bottom:864.000300px;}
.y1ac{bottom:869.952450px;}
.yfe{bottom:871.995750px;}
.y1f1{bottom:873.354450px;}
.y179{bottom:878.202750px;}
.y234{bottom:878.967750px;}
.y1ab{bottom:885.004950px;}
.y7{bottom:887.300250px;}
.yfd{bottom:888.578250px;}
.y1f0{bottom:888.747150px;}
.y233{bottom:894.020250px;}
.y178{bottom:894.699750px;}
.y1aa{bottom:899.972400px;}
.y1ef{bottom:904.138500px;}
.yfc{bottom:905.160750px;}
.y232{bottom:908.986350px;}
.y177{bottom:911.198250px;}
.y1a9{bottom:915.023550px;}
.y1ee{bottom:919.616250px;}
.yfb{bottom:921.743250px;}
.y231{bottom:923.953800px;}
.y6{bottom:923.953962px;}
.y176{bottom:927.695250px;}
.y1a8{bottom:929.991000px;}
.y1ed{bottom:935.007600px;}
.yfa{bottom:938.325750px;}
.y230{bottom:939.004950px;}
.y175{bottom:944.192250px;}
.y1a7{bottom:944.957100px;}
.y4{bottom:944.957250px;}
.y1ec{bottom:950.400300px;}
.y5{bottom:953.631750px;}
.y22f{bottom:953.972400px;}
.yf9{bottom:954.908250px;}
.y1a6{bottom:960.009600px;}
.y174{bottom:960.690750px;}
.y1eb{bottom:965.793000px;}
.y22e{bottom:968.939850px;}
.yf8{bottom:971.490750px;}
.y1a5{bottom:974.977050px;}
.y3{bottom:974.978709px;}
.y173{bottom:977.187750px;}
.y1ea{bottom:981.184350px;}
.y22d{bottom:983.991000px;}
.yf7{bottom:987.987750px;}
.y1a4{bottom:989.943150px;}
.y172{bottom:993.684750px;}
.y1e9{bottom:996.577050px;}
.y22c{bottom:998.958450px;}
.y2{bottom:1002.018750px;}
.yf6{bottom:1004.570250px;}
.y1a3{bottom:1004.995650px;}
.y171{bottom:1010.693250px;}
.y1e8{bottom:1011.968400px;}
.y22b{bottom:1014.009600px;}
.y1a2{bottom:1019.961750px;}
.yf5{bottom:1021.152750px;}
.y170{bottom:1025.489250px;}
.y1e7{bottom:1027.359750px;}
.y22a{bottom:1028.977050px;}
.y1a1{bottom:1033.653750px;}
.yf4{bottom:1037.735250px;}
.y1e6{bottom:1042.751100px;}
.y229{bottom:1043.944500px;}
.y63{bottom:1050.746250px;}
.yf3{bottom:1054.317750px;}
.y1e5{bottom:1058.143800px;}
.y228{bottom:1058.995650px;}
.y16f{bottom:1069.617600px;}
.yf2{bottom:1070.900250px;}
.y1a0{bottom:1070.985750px;}
.y1e4{bottom:1073.536500px;}
.y227{bottom:1073.963100px;}
.y16e{bottom:1086.116100px;}
.yc3{bottom:1086.717750px;}
.y68{bottom:1087.350000px;}
.yf1{bottom:1087.482750px;}
.y1e3{bottom:1089.012900px;}
.y226{bottom:1089.014250px;}
.yc4{bottom:1093.436250px;}
.y77{bottom:1117.502250px;}
.h14{height:25.560000px;}
.h13{height:26.838000px;}
.h21{height:27.500333px;}
.h28{height:27.596826px;}
.h20{height:27.716812px;}
.h1f{height:27.996780px;}
.hf{height:30.316513px;}
.h1a{height:32.444567px;}
.h26{height:33.273600px;}
.h12{height:34.079574px;}
.hb{height:34.445731px;}
.h6{height:35.875170px;}
.h9{height:38.934000px;}
.h11{height:40.932000px;}
.h27{height:41.097000px;}
.h29{height:41.256000px;}
.h1e{height:41.580000px;}
.h19{height:43.260000px;}
.h15{height:43.804688px;}
.hc{height:45.480000px;}
.h24{height:45.486000px;}
.h1c{height:45.840000px;}
.h17{height:47.109375px;}
.h22{height:48.507530px;}
.h23{height:48.509930px;}
.h25{height:51.156638px;}
.h1d{height:53.595145px;}
.hd{height:53.937145px;}
.h18{height:53.939545px;}
.h10{height:53.941945px;}
.h1b{height:53.943145px;}
.h7{height:54.053584px;}
.h5{height:55.855370px;}
.h8{height:59.123545px;}
.ha{height:64.863281px;}
.h4{height:73.541567px;}
.h3{height:88.728275px;}
.he{height:145.536000px;}
.h2{height:1174.479000px;}
.h16{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x2a{left:27.000000px;}
.x2{left:63.779400px;}
.x40{left:69.817200px;}
.x36{left:77.215650px;}
.x7{left:99.325950px;}
.xe{left:133.596750px;}
.xf{left:143.886750px;}
.x2b{left:145.587750px;}
.x3{left:158.513250px;}
.x2c{left:164.721750px;}
.x35{left:170.333250px;}
.x4{left:172.884750px;}
.x45{left:182.409750px;}
.x46{left:197.546250px;}
.x41{left:210.216750px;}
.x42{left:216.339750px;}
.x12{left:223.058250px;}
.x14{left:224.843250px;}
.x13{left:234.963750px;}
.x15{left:237.770250px;}
.x3d{left:256.733250px;}
.xc{left:258.944250px;}
.x3e{left:263.876250px;}
.x3f{left:266.513250px;}
.x31{left:268.724250px;}
.xd{left:270.170250px;}
.x32{left:283.350750px;}
.xa{left:289.559250px;}
.x5{left:292.959750px;}
.x26{left:298.827720px;}
.x6{left:307.247250px;}
.xb{left:312.434250px;}
.x17{left:367.370250px;}
.x43{left:377.064750px;}
.x33{left:381.060750px;}
.x18{left:383.867250px;}
.x2f{left:385.398750px;}
.x44{left:393.392250px;}
.x34{left:397.218750px;}
.x10{left:399.089250px;}
.x16{left:401.555250px;}
.x30{left:402.660750px;}
.x11{left:411.420750px;}
.x2d{left:412.866750px;}
.x2e{left:426.642750px;}
.x1a{left:459.720750px;}
.x55{left:465.675750px;}
.x19{left:473.241750px;}
.x52{left:474.774750px;}
.x53{left:486.764250px;}
.x8{left:492.717750px;}
.x51{left:495.777750px;}
.x54{left:498.755250px;}
.x47{left:561.684750px;}
.x4f{left:566.702250px;}
.x23{left:573.080250px;}
.x37{left:579.288750px;}
.x48{left:580.308750px;}
.x50{left:582.689250px;}
.x24{left:595.020750px;}
.x38{left:604.970250px;}
.x29{left:608.550000px;}
.x21{left:610.326750px;}
.x22{left:624.954750px;}
.x9{left:638.559750px;}
.x1d{left:649.275750px;}
.x28{left:656.249850px;}
.x3a{left:669.684750px;}
.x1e{left:671.045250px;}
.x1f{left:672.746250px;}
.x4d{left:678.104250px;}
.x27{left:681.675750px;}
.x20{left:683.291250px;}
.x3b{left:685.502250px;}
.x4b{left:687.627750px;}
.x4e{left:694.686750px;}
.x4c{left:702.339750px;}
.x49{left:723.260250px;}
.x4a{left:752.513250px;}
.x39{left:761.357250px;}
.x1b{left:775.388250px;}
.x25{left:777.005250px;}
.x1c{left:787.974750px;}
.x3c{left:796.053750px;}
@media print{
.v9{vertical-align:-32.960320pt;}
.vb{vertical-align:-20.560000pt;}
.vc{vertical-align:-10.586667pt;}
.va{vertical-align:-9.375467pt;}
.ve{vertical-align:-6.954133pt;}
.v6{vertical-align:-2.720000pt;}
.v7{vertical-align:-1.818667pt;}
.v4{vertical-align:-0.908260pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.908260pt;}
.v2{vertical-align:1.809586pt;}
.v5{vertical-align:5.440000pt;}
.vd{vertical-align:18.741333pt;}
.v8{vertical-align:20.858667pt;}
.v1{vertical-align:35.072000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.009600pt;}
.ls15{letter-spacing:0.037333pt;}
.ls33{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.074667pt;}
.ls23{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.096358pt;}
.ls43{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.111014pt;}
.ls30{letter-spacing:0.117333pt;}
.ls60{letter-spacing:0.120000pt;}
.ls5d{letter-spacing:0.129600pt;}
.ls9{letter-spacing:0.144000pt;}
.ls24{letter-spacing:0.170667pt;}
.ls62{letter-spacing:0.172800pt;}
.ls4c{letter-spacing:0.177600pt;}
.lsd{letter-spacing:0.186667pt;}
.ls5c{letter-spacing:0.187200pt;}
.ls13{letter-spacing:0.223187pt;}
.lsa{letter-spacing:0.228521pt;}
.ls25{letter-spacing:0.234667pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.243200pt;}
.ls36{letter-spacing:0.266667pt;}
.ls51{letter-spacing:0.268800pt;}
.ls37{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.282667pt;}
.ls35{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.325333pt;}
.ls39{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.373333pt;}
.ls65{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.405333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls52{letter-spacing:0.504000pt;}
.lsb{letter-spacing:0.554667pt;}
.ls46{letter-spacing:0.613333pt;}
.ls38{letter-spacing:0.629333pt;}
.ls16{letter-spacing:0.645333pt;}
.ls68{letter-spacing:0.648000pt;}
.ls5f{letter-spacing:0.676800pt;}
.ls47{letter-spacing:0.688000pt;}
.ls34{letter-spacing:0.704000pt;}
.ls18{letter-spacing:0.816000pt;}
.ls32{letter-spacing:0.837333pt;}
.ls5{letter-spacing:0.917333pt;}
.ls48{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.970667pt;}
.lsf{letter-spacing:1.002667pt;}
.ls3b{letter-spacing:1.024000pt;}
.ls3{letter-spacing:1.061333pt;}
.ls2{letter-spacing:1.077333pt;}
.ls12{letter-spacing:1.091430pt;}
.ls21{letter-spacing:1.205333pt;}
.ls1{letter-spacing:1.206391pt;}
.ls10{letter-spacing:1.226667pt;}
.lsc{letter-spacing:1.248000pt;}
.ls7{letter-spacing:1.312000pt;}
.ls45{letter-spacing:1.418667pt;}
.ls40{letter-spacing:1.509333pt;}
.ls3e{letter-spacing:1.514667pt;}
.ls57{letter-spacing:1.704000pt;}
.ls1e{letter-spacing:1.760000pt;}
.ls44{letter-spacing:1.813333pt;}
.ls4b{letter-spacing:11.496000pt;}
.ls2b{letter-spacing:11.908348pt;}
.ls50{letter-spacing:12.100800pt;}
.ls2a{letter-spacing:12.124800pt;}
.ls2c{letter-spacing:12.207014pt;}
.ls29{letter-spacing:12.340806pt;}
.ls5a{letter-spacing:13.008000pt;}
.ls69{letter-spacing:13.305600pt;}
.ls64{letter-spacing:13.310400pt;}
.ls6b{letter-spacing:13.915200pt;}
.ls1c{letter-spacing:14.016000pt;}
.ls2f{letter-spacing:14.266667pt;}
.ls14{letter-spacing:14.324348pt;}
.ls4f{letter-spacing:15.427200pt;}
.ls3d{letter-spacing:15.472000pt;}
.ls2d{letter-spacing:16.023615pt;}
.ls4a{letter-spacing:16.027200pt;}
.ls4e{letter-spacing:16.032000pt;}
.ls49{letter-spacing:16.334400pt;}
.ls1f{letter-spacing:16.553854pt;}
.ls20{letter-spacing:16.567553pt;}
.ls66{letter-spacing:16.939200pt;}
.ls63{letter-spacing:17.544000pt;}
.ls3f{letter-spacing:17.589333pt;}
.ls56{letter-spacing:17.841600pt;}
.ls42{letter-spacing:17.888000pt;}
.ls41{letter-spacing:17.893333pt;}
.ls54{letter-spacing:19.056000pt;}
.ls27{letter-spacing:19.576787pt;}
.ls28{letter-spacing:19.577854pt;}
.ls61{letter-spacing:20.870400pt;}
.ls59{letter-spacing:21.172800pt;}
.ls1d{letter-spacing:22.297854pt;}
.ls4d{letter-spacing:22.987200pt;}
.ls3a{letter-spacing:23.812521pt;}
.ls55{letter-spacing:24.192000pt;}
.ls67{letter-spacing:29.640000pt;}
.ls5e{letter-spacing:32.145600pt;}
.ls5b{letter-spacing:32.520000pt;}
.ls53{letter-spacing:33.062400pt;}
.ls4{letter-spacing:33.545067pt;}
.ls3c{letter-spacing:33.850667pt;}
.ls58{letter-spacing:35.524800pt;}
.ws1cf{word-spacing:-36.533333pt;}
.ws2{word-spacing:-34.319736pt;}
.ws160{word-spacing:-27.621333pt;}
.ws10c{word-spacing:-27.317333pt;}
.ws114{word-spacing:-27.301333pt;}
.ws1c5{word-spacing:-27.216000pt;}
.ws19e{word-spacing:-26.997333pt;}
.ws203{word-spacing:-26.400000pt;}
.ws14c{word-spacing:-25.882667pt;}
.ws14e{word-spacing:-25.797333pt;}
.wsfc{word-spacing:-25.792000pt;}
.wsb2{word-spacing:-25.669333pt;}
.wsb1{word-spacing:-25.493333pt;}
.ws175{word-spacing:-25.066667pt;}
.ws81{word-spacing:-24.811200pt;}
.ws199{word-spacing:-24.794667pt;}
.wscc{word-spacing:-24.757333pt;}
.wsca{word-spacing:-24.581333pt;}
.ws147{word-spacing:-24.288000pt;}
.ws141{word-spacing:-24.172800pt;}
.wsdf{word-spacing:-23.674667pt;}
.ws13c{word-spacing:-23.568000pt;}
.ws84{word-spacing:-23.102400pt;}
.ws88{word-spacing:-22.996800pt;}
.ws127{word-spacing:-22.768000pt;}
.wsf0{word-spacing:-22.570667pt;}
.ws16c{word-spacing:-22.458667pt;}
.ws1e9{word-spacing:-22.362667pt;}
.ws1f5{word-spacing:-22.352000pt;}
.ws1{word-spacing:-22.222269pt;}
.ws1a1{word-spacing:-22.170667pt;}
.ws0{word-spacing:-22.158803pt;}
.ws7d{word-spacing:-21.979200pt;}
.ws134{word-spacing:-21.968000pt;}
.ws200{word-spacing:-21.840000pt;}
.wsf5{word-spacing:-21.792000pt;}
.ws7b{word-spacing:-21.787200pt;}
.wsf2{word-spacing:-21.676800pt;}
.ws20a{word-spacing:-21.397333pt;}
.ws22b{word-spacing:-21.369600pt;}
.ws169{word-spacing:-21.269333pt;}
.ws1f3{word-spacing:-21.237333pt;}
.ws65{word-spacing:-21.205068pt;}
.ws1f4{word-spacing:-21.077333pt;}
.ws247{word-spacing:-21.033600pt;}
.wsd3{word-spacing:-20.640000pt;}
.ws72{word-spacing:-20.241600pt;}
.ws106{word-spacing:-20.138667pt;}
.ws1d1{word-spacing:-20.058667pt;}
.ws1d4{word-spacing:-19.968000pt;}
.ws2b2{word-spacing:-19.939200pt;}
.ws287{word-spacing:-19.905600pt;}
.ws122{word-spacing:-19.754667pt;}
.ws2ab{word-spacing:-19.497600pt;}
.ws201{word-spacing:-19.370667pt;}
.ws2cf{word-spacing:-19.363200pt;}
.ws1fd{word-spacing:-18.960000pt;}
.ws21e{word-spacing:-18.955200pt;}
.ws1f7{word-spacing:-18.944000pt;}
.ws1f9{word-spacing:-18.938667pt;}
.ws207{word-spacing:-18.896000pt;}
.ws1ff{word-spacing:-18.880000pt;}
.ws10a{word-spacing:-18.848000pt;}
.ws2c0{word-spacing:-18.830400pt;}
.ws1f6{word-spacing:-18.816000pt;}
.ws208{word-spacing:-18.778667pt;}
.ws1f8{word-spacing:-18.757333pt;}
.ws205{word-spacing:-18.725333pt;}
.ws1fe{word-spacing:-18.688000pt;}
.ws187{word-spacing:-18.597333pt;}
.ws12f{word-spacing:-17.829333pt;}
.ws15d{word-spacing:-17.813333pt;}
.ws2e9{word-spacing:-17.438400pt;}
.ws23d{word-spacing:-17.366400pt;}
.ws3{word-spacing:-17.333200pt;}
.ws23a{word-spacing:-17.136000pt;}
.ws226{word-spacing:-17.116800pt;}
.ws74{word-spacing:-17.112000pt;}
.ws78{word-spacing:-17.107200pt;}
.ws292{word-spacing:-17.097600pt;}
.ws2e4{word-spacing:-17.001600pt;}
.ws2d5{word-spacing:-16.996800pt;}
.ws243{word-spacing:-16.924800pt;}
.ws76{word-spacing:-16.920000pt;}
.ws267{word-spacing:-16.900800pt;}
.ws2a1{word-spacing:-16.896000pt;}
.ws2f6{word-spacing:-16.872000pt;}
.ws253{word-spacing:-16.814400pt;}
.ws2b7{word-spacing:-16.742400pt;}
.ws1df{word-spacing:-16.720000pt;}
.ws261{word-spacing:-16.574400pt;}
.ws222{word-spacing:-16.310400pt;}
.ws2a5{word-spacing:-15.777600pt;}
.ws2c1{word-spacing:-15.652800pt;}
.ws233{word-spacing:-15.470400pt;}
.ws2bb{word-spacing:-15.360000pt;}
.ws1b7{word-spacing:-14.912000pt;}
.ws2fa{word-spacing:-14.860800pt;}
.ws295{word-spacing:-14.841600pt;}
.ws296{word-spacing:-14.808000pt;}
.ws259{word-spacing:-14.150400pt;}
.ws275{word-spacing:-13.939200pt;}
.ws19{word-spacing:-13.828594pt;}
.ws1f0{word-spacing:-13.697600pt;}
.wsa9{word-spacing:-13.658400pt;}
.ws1ea{word-spacing:-13.552000pt;}
.ws28b{word-spacing:-13.521600pt;}
.ws10{word-spacing:-13.514667pt;}
.ws8c{word-spacing:-13.130667pt;}
.ws2af{word-spacing:-12.984000pt;}
.ws2f1{word-spacing:-12.600000pt;}
.wsf7{word-spacing:-12.445507pt;}
.ws1f1{word-spacing:-12.317067pt;}
.ws1ec{word-spacing:-12.291733pt;}
.ws11b{word-spacing:-12.192000pt;}
.ws20c{word-spacing:-12.180267pt;}
.ws284{word-spacing:-11.995200pt;}
.ws8{word-spacing:-11.726400pt;}
.ws29d{word-spacing:-11.692800pt;}
.ws1d7{word-spacing:-11.668800pt;}
.wsb{word-spacing:-11.664000pt;}
.ws5{word-spacing:-11.426045pt;}
.wsee{word-spacing:-11.370667pt;}
.ws6{word-spacing:-11.308180pt;}
.ws4{word-spacing:-11.238847pt;}
.ws7{word-spacing:-11.204180pt;}
.ws1f2{word-spacing:-11.162667pt;}
.ws237{word-spacing:-10.209600pt;}
.ws22f{word-spacing:-9.576000pt;}
.ws270{word-spacing:-9.009600pt;}
.ws1fb{word-spacing:-8.762667pt;}
.ws204{word-spacing:-8.757333pt;}
.ws209{word-spacing:-8.752000pt;}
.ws206{word-spacing:-8.714667pt;}
.ws1fc{word-spacing:-8.586667pt;}
.ws64{word-spacing:-8.510400pt;}
.ws1ac{word-spacing:-8.410667pt;}
.ws38{word-spacing:-8.224000pt;}
.ws15f{word-spacing:-8.213333pt;}
.ws17{word-spacing:-8.192000pt;}
.ws3a{word-spacing:-8.186667pt;}
.ws1ab{word-spacing:-8.138667pt;}
.ws9{word-spacing:-8.126400pt;}
.ws1aa{word-spacing:-8.080000pt;}
.ws162{word-spacing:-8.053333pt;}
.ws115{word-spacing:-8.048000pt;}
.wsa{word-spacing:-7.982400pt;}
.wsfe{word-spacing:-7.952000pt;}
.ws10b{word-spacing:-7.946667pt;}
.ws1c6{word-spacing:-7.930667pt;}
.wsff{word-spacing:-7.904000pt;}
.ws39{word-spacing:-7.840000pt;}
.ws161{word-spacing:-7.786667pt;}
.ws19f{word-spacing:-7.738667pt;}
.ws19d{word-spacing:-7.717333pt;}
.ws10d{word-spacing:-7.669333pt;}
.ws137{word-spacing:-7.637333pt;}
.ws126{word-spacing:-7.616000pt;}
.ws44{word-spacing:-7.610667pt;}
.ws53{word-spacing:-7.488000pt;}
.ws2f8{word-spacing:-7.478400pt;}
.ws1d9{word-spacing:-7.477333pt;}
.ws12a{word-spacing:-7.456000pt;}
.ws1b5{word-spacing:-7.413333pt;}
.ws1d{word-spacing:-7.397333pt;}
.ws5b{word-spacing:-7.338667pt;}
.wsb9{word-spacing:-7.333333pt;}
.ws82{word-spacing:-7.305600pt;}
.ws80{word-spacing:-7.267200pt;}
.ws129{word-spacing:-7.232000pt;}
.ws198{word-spacing:-7.226667pt;}
.ws91{word-spacing:-7.221333pt;}
.ws2cd{word-spacing:-7.209600pt;}
.ws83{word-spacing:-7.200000pt;}
.ws5a{word-spacing:-7.194667pt;}
.ws92{word-spacing:-7.184000pt;}
.wsba{word-spacing:-7.162667pt;}
.ws1ba{word-spacing:-7.157333pt;}
.ws228{word-spacing:-7.152000pt;}
.ws22a{word-spacing:-7.137600pt;}
.ws1c9{word-spacing:-7.120000pt;}
.ws1c8{word-spacing:-7.109333pt;}
.ws22c{word-spacing:-7.108800pt;}
.ws140{word-spacing:-7.077333pt;}
.ws120{word-spacing:-7.072000pt;}
.ws13b{word-spacing:-7.034667pt;}
.ws22d{word-spacing:-6.979200pt;}
.ws2b5{word-spacing:-6.974400pt;}
.ws2ee{word-spacing:-6.940800pt;}
.ws2d9{word-spacing:-6.936000pt;}
.ws12c{word-spacing:-6.896000pt;}
.ws24{word-spacing:-6.874667pt;}
.ws21c{word-spacing:-6.830400pt;}
.ws2b4{word-spacing:-6.796800pt;}
.ws26b{word-spacing:-6.768000pt;}
.ws223{word-spacing:-6.763200pt;}
.ws1bb{word-spacing:-6.762667pt;}
.ws12b{word-spacing:-6.725333pt;}
.ws145{word-spacing:-6.724800pt;}
.ws143{word-spacing:-6.720000pt;}
.ws2a9{word-spacing:-6.700800pt;}
.ws142{word-spacing:-6.691200pt;}
.ws14a{word-spacing:-6.686400pt;}
.ws146{word-spacing:-6.643200pt;}
.ws144{word-spacing:-6.638400pt;}
.ws148{word-spacing:-6.628800pt;}
.wsbe{word-spacing:-6.570667pt;}
.wsbf{word-spacing:-6.565333pt;}
.ws149{word-spacing:-6.528000pt;}
.wsbd{word-spacing:-6.506667pt;}
.ws12{word-spacing:-6.469333pt;}
.ws248{word-spacing:-6.465600pt;}
.ws2ba{word-spacing:-6.388800pt;}
.ws6f{word-spacing:-6.314667pt;}
.ws70{word-spacing:-6.266667pt;}
.ws25b{word-spacing:-6.244800pt;}
.wsb0{word-spacing:-6.234667pt;}
.ws14d{word-spacing:-6.202667pt;}
.wsfd{word-spacing:-6.197333pt;}
.ws52{word-spacing:-6.128000pt;}
.ws51{word-spacing:-6.122667pt;}
.ws20f{word-spacing:-6.117333pt;}
.ws2b0{word-spacing:-6.110400pt;}
.wsb3{word-spacing:-6.021333pt;}
.ws132{word-spacing:-5.941333pt;}
.wsa7{word-spacing:-5.898667pt;}
.ws281{word-spacing:-5.827200pt;}
.ws85{word-spacing:-5.793600pt;}
.ws56{word-spacing:-5.786667pt;}
.ws8a{word-spacing:-5.740800pt;}
.ws67{word-spacing:-5.732160pt;}
.ws173{word-spacing:-5.712000pt;}
.ws289{word-spacing:-5.697600pt;}
.ws66{word-spacing:-5.685120pt;}
.ws2b{word-spacing:-5.680000pt;}
.ws158{word-spacing:-5.664000pt;}
.ws86{word-spacing:-5.654400pt;}
.ws87{word-spacing:-5.649600pt;}
.ws93{word-spacing:-5.648000pt;}
.ws2b1{word-spacing:-5.592000pt;}
.ws174{word-spacing:-5.589333pt;}
.ws2f3{word-spacing:-5.572800pt;}
.ws2d6{word-spacing:-5.568000pt;}
.ws288{word-spacing:-5.563200pt;}
.ws159{word-spacing:-5.530667pt;}
.ws2ad{word-spacing:-5.529600pt;}
.ws185{word-spacing:-5.520000pt;}
.ws2ef{word-spacing:-5.510400pt;}
.ws89{word-spacing:-5.491200pt;}
.wsc5{word-spacing:-5.482667pt;}
.ws2cb{word-spacing:-5.462400pt;}
.ws265{word-spacing:-5.438400pt;}
.ws68{word-spacing:-5.430400pt;}
.ws2ac{word-spacing:-5.428800pt;}
.ws176{word-spacing:-5.408000pt;}
.ws2f7{word-spacing:-5.395200pt;}
.ws69{word-spacing:-5.347200pt;}
.ws2aa{word-spacing:-5.332800pt;}
.ws1e3{word-spacing:-5.274667pt;}
.ws244{word-spacing:-5.260800pt;}
.wsbc{word-spacing:-5.216000pt;}
.ws2d1{word-spacing:-5.212800pt;}
.ws19a{word-spacing:-5.189333pt;}
.wse9{word-spacing:-5.109333pt;}
.wsc6{word-spacing:-5.077333pt;}
.ws19b{word-spacing:-5.066667pt;}
.wscb{word-spacing:-5.061333pt;}
.wscd{word-spacing:-5.056000pt;}
.ws2ca{word-spacing:-5.030400pt;}
.ws1e{word-spacing:-4.992000pt;}
.ws2ce{word-spacing:-4.982400pt;}
.wsc9{word-spacing:-4.965333pt;}
.ws1e2{word-spacing:-4.944000pt;}
.wsd{word-spacing:-4.910872pt;}
.wsfb{word-spacing:-4.874667pt;}
.ws27d{word-spacing:-4.838400pt;}
.ws2d0{word-spacing:-4.824000pt;}
.wsf{word-spacing:-4.804207pt;}
.ws136{word-spacing:-4.773333pt;}
.ws21d{word-spacing:-4.737600pt;}
.ws1af{word-spacing:-4.645333pt;}
.ws18a{word-spacing:-4.597333pt;}
.ws2d4{word-spacing:-4.584000pt;}
.ws9a{word-spacing:-4.554667pt;}
.ws13f{word-spacing:-4.506667pt;}
.ws7c{word-spacing:-4.478400pt;}
.wsf6{word-spacing:-4.459200pt;}
.ws11{word-spacing:-4.453333pt;}
.ws71{word-spacing:-4.416000pt;}
.wsf8{word-spacing:-4.411200pt;}
.ws7f{word-spacing:-4.377600pt;}
.wsde{word-spacing:-4.362667pt;}
.ws7e{word-spacing:-4.329600pt;}
.wsf1{word-spacing:-4.324800pt;}
.ws7a{word-spacing:-4.315200pt;}
.wsf3{word-spacing:-4.310400pt;}
.wsf4{word-spacing:-4.305600pt;}
.ws151{word-spacing:-4.298667pt;}
.ws29b{word-spacing:-4.281600pt;}
.wsdd{word-spacing:-4.266667pt;}
.ws1dd{word-spacing:-4.256000pt;}
.wsac{word-spacing:-4.245333pt;}
.ws13d{word-spacing:-4.208000pt;}
.ws2d8{word-spacing:-4.195200pt;}
.wse0{word-spacing:-4.154667pt;}
.ws94{word-spacing:-4.101333pt;}
.ws256{word-spacing:-4.094400pt;}
.ws2e5{word-spacing:-4.084800pt;}
.ws2dd{word-spacing:-4.036800pt;}
.wse1{word-spacing:-4.021333pt;}
.ws2b3{word-spacing:-3.912000pt;}
.ws13e{word-spacing:-3.872000pt;}
.ws2a8{word-spacing:-3.825600pt;}
.ws31{word-spacing:-3.792000pt;}
.ws2b9{word-spacing:-3.710400pt;}
.ws17f{word-spacing:-3.696000pt;}
.ws30{word-spacing:-3.605333pt;}
.ws240{word-spacing:-3.590400pt;}
.ws2bf{word-spacing:-3.585600pt;}
.wsa1{word-spacing:-3.546667pt;}
.ws2c6{word-spacing:-3.532800pt;}
.ws1b{word-spacing:-3.530667pt;}
.ws249{word-spacing:-3.508800pt;}
.ws1a9{word-spacing:-3.482667pt;}
.ws1e4{word-spacing:-3.477333pt;}
.ws128{word-spacing:-3.440000pt;}
.ws180{word-spacing:-3.429333pt;}
.ws2e8{word-spacing:-3.422400pt;}
.ws2d7{word-spacing:-3.364800pt;}
.ws179{word-spacing:-3.328000pt;}
.ws23f{word-spacing:-3.312000pt;}
.ws23c{word-spacing:-3.249600pt;}
.ws2b6{word-spacing:-3.220800pt;}
.wsdb{word-spacing:-3.178667pt;}
.ws8e{word-spacing:-3.157333pt;}
.ws23e{word-spacing:-3.139200pt;}
.ws1ef{word-spacing:-3.109333pt;}
.wsdc{word-spacing:-3.104000pt;}
.ws99{word-spacing:-3.093333pt;}
.ws20b{word-spacing:-3.077333pt;}
.ws1fa{word-spacing:-3.066667pt;}
.ws20e{word-spacing:-3.040000pt;}
.ws55{word-spacing:-3.029333pt;}
.ws18d{word-spacing:-3.018667pt;}
.ws182{word-spacing:-3.013333pt;}
.ws58{word-spacing:-3.002667pt;}
.ws3f{word-spacing:-2.997333pt;}
.ws57{word-spacing:-2.976000pt;}
.ws193{word-spacing:-2.965333pt;}
.ws20d{word-spacing:-2.944000pt;}
.ws192{word-spacing:-2.938667pt;}
.ws1e8{word-spacing:-2.912000pt;}
.ws125{word-spacing:-2.896000pt;}
.ws194{word-spacing:-2.880000pt;}
.wsa8{word-spacing:-2.874667pt;}
.ws239{word-spacing:-2.865600pt;}
.ws135{word-spacing:-2.858667pt;}
.ws293{word-spacing:-2.836800pt;}
.ws73{word-spacing:-2.832000pt;}
.ws16b{word-spacing:-2.826667pt;}
.ws202{word-spacing:-2.816000pt;}
.ws2f5{word-spacing:-2.808000pt;}
.ws1f{word-spacing:-2.800000pt;}
.ws21b{word-spacing:-2.779200pt;}
.ws242{word-spacing:-2.769600pt;}
.ws266{word-spacing:-2.764800pt;}
.ws2e0{word-spacing:-2.760000pt;}
.ws2e3{word-spacing:-2.755200pt;}
.ws27a{word-spacing:-2.716800pt;}
.wsf9{word-spacing:-2.712000pt;}
.ws60{word-spacing:-2.707200pt;}
.ws2e1{word-spacing:-2.702400pt;}
.ws2ec{word-spacing:-2.692800pt;}
.ws2dc{word-spacing:-2.688000pt;}
.ws8b{word-spacing:-2.668800pt;}
.ws1a8{word-spacing:-2.666667pt;}
.wsfa{word-spacing:-2.664000pt;}
.ws1a6{word-spacing:-2.661333pt;}
.ws1a7{word-spacing:-2.650667pt;}
.ws14b{word-spacing:-2.640000pt;}
.ws27c{word-spacing:-2.630400pt;}
.ws62{word-spacing:-2.620800pt;}
.ws1d6{word-spacing:-2.581333pt;}
.ws230{word-spacing:-2.577600pt;}
.ws1a0{word-spacing:-2.576000pt;}
.ws2f2{word-spacing:-2.572800pt;}
.ws26c{word-spacing:-2.568000pt;}
.ws1a2{word-spacing:-2.565333pt;}
.ws255{word-spacing:-2.563200pt;}
.ws1c3{word-spacing:-2.560000pt;}
.ws227{word-spacing:-2.553600pt;}
.ws29a{word-spacing:-2.548800pt;}
.ws2b8{word-spacing:-2.534400pt;}
.ws1d5{word-spacing:-2.533333pt;}
.ws225{word-spacing:-2.529600pt;}
.ws1c4{word-spacing:-2.501333pt;}
.ws252{word-spacing:-2.467200pt;}
.ws291{word-spacing:-2.462400pt;}
.ws229{word-spacing:-2.433600pt;}
.ws124{word-spacing:-2.426667pt;}
.ws254{word-spacing:-2.404800pt;}
.ws2a2{word-spacing:-2.400000pt;}
.wsaf{word-spacing:-2.394667pt;}
.ws1c0{word-spacing:-2.362667pt;}
.ws97{word-spacing:-2.272000pt;}
.ws260{word-spacing:-2.193600pt;}
.ws2c3{word-spacing:-2.188800pt;}
.ws2d2{word-spacing:-2.160000pt;}
.ws263{word-spacing:-2.140800pt;}
.ws221{word-spacing:-2.131200pt;}
.ws6c{word-spacing:-2.080000pt;}
.ws15c{word-spacing:-2.032000pt;}
.ws9f{word-spacing:-2.000000pt;}
.ws15e{word-spacing:-1.984000pt;}
.ws262{word-spacing:-1.972800pt;}
.ws133{word-spacing:-1.968000pt;}
.ws16a{word-spacing:-1.936000pt;}
.ws191{word-spacing:-1.888000pt;}
.ws168{word-spacing:-1.866667pt;}
.ws257{word-spacing:-1.857600pt;}
.ws150{word-spacing:-1.856000pt;}
.ws1ad{word-spacing:-1.770667pt;}
.ws40{word-spacing:-1.738667pt;}
.ws14f{word-spacing:-1.728000pt;}
.ws27b{word-spacing:-1.675200pt;}
.ws2c{word-spacing:-1.674667pt;}
.ws167{word-spacing:-1.664000pt;}
.ws42{word-spacing:-1.658667pt;}
.ws41{word-spacing:-1.653333pt;}
.ws2a{word-spacing:-1.648000pt;}
.wsa6{word-spacing:-1.632000pt;}
.ws19c{word-spacing:-1.594667pt;}
.ws236{word-spacing:-1.593600pt;}
.wsb6{word-spacing:-1.589333pt;}
.wsd5{word-spacing:-1.509333pt;}
.ws2c2{word-spacing:-1.497600pt;}
.wse4{word-spacing:-1.482667pt;}
.ws24f{word-spacing:-1.464000pt;}
.ws8f{word-spacing:-1.333333pt;}
.ws2a6{word-spacing:-1.329600pt;}
.wsce{word-spacing:-1.322667pt;}
.ws232{word-spacing:-1.320000pt;}
.ws116{word-spacing:-1.317333pt;}
.wsa4{word-spacing:-1.290667pt;}
.wsd6{word-spacing:-1.285333pt;}
.ws2a7{word-spacing:-1.195200pt;}
.wscf{word-spacing:-1.189333pt;}
.ws18f{word-spacing:-1.178667pt;}
.ws2e2{word-spacing:-1.166400pt;}
.ws24d{word-spacing:-1.113600pt;}
.ws2bd{word-spacing:-1.084800pt;}
.ws2a4{word-spacing:-1.065600pt;}
.ws2bc{word-spacing:-1.060800pt;}
.ws1c1{word-spacing:-1.056000pt;}
.ws27f{word-spacing:-1.022400pt;}
.ws29c{word-spacing:-1.017600pt;}
.ws298{word-spacing:-0.993600pt;}
.ws28f{word-spacing:-0.974400pt;}
.ws113{word-spacing:-0.938667pt;}
.ws1c2{word-spacing:-0.928000pt;}
.ws277{word-spacing:-0.902400pt;}
.ws10f{word-spacing:-0.885333pt;}
.ws111{word-spacing:-0.832000pt;}
.ws105{word-spacing:-0.826667pt;}
.ws100{word-spacing:-0.784000pt;}
.ws103{word-spacing:-0.768000pt;}
.ws276{word-spacing:-0.763200pt;}
.ws197{word-spacing:-0.762667pt;}
.ws294{word-spacing:-0.748800pt;}
.ws110{word-spacing:-0.746667pt;}
.ws112{word-spacing:-0.736000pt;}
.wse3{word-spacing:-0.730667pt;}
.ws2ed{word-spacing:-0.715200pt;}
.wsd1{word-spacing:-0.704000pt;}
.wsd0{word-spacing:-0.688000pt;}
.wse2{word-spacing:-0.645333pt;}
.ws1d2{word-spacing:-0.634667pt;}
.ws297{word-spacing:-0.609600pt;}
.ws121{word-spacing:-0.608000pt;}
.ws1d3{word-spacing:-0.592000pt;}
.ws102{word-spacing:-0.576000pt;}
.ws107{word-spacing:-0.565333pt;}
.wsbb{word-spacing:-0.533333pt;}
.ws2f{word-spacing:-0.522667pt;}
.ws2db{word-spacing:-0.475200pt;}
.ws29{word-spacing:-0.469333pt;}
.ws101{word-spacing:-0.464000pt;}
.ws27{word-spacing:-0.458667pt;}
.ws123{word-spacing:-0.437333pt;}
.ws28{word-spacing:-0.378667pt;}
.ws2f9{word-spacing:-0.374400pt;}
.ws49{word-spacing:-0.320000pt;}
.ws1a5{word-spacing:-0.282667pt;}
.ws1ce{word-spacing:-0.272000pt;}
.ws246{word-spacing:-0.177600pt;}
.ws268{word-spacing:-0.144000pt;}
.ws98{word-spacing:-0.101333pt;}
.ws280{word-spacing:-0.072000pt;}
.ws2eb{word-spacing:-0.052800pt;}
.ws6a{word-spacing:0.000000pt;}
.ws1b2{word-spacing:0.048000pt;}
.ws1b4{word-spacing:0.106667pt;}
.ws170{word-spacing:0.144000pt;}
.ws25a{word-spacing:0.148800pt;}
.ws274{word-spacing:0.158400pt;}
.ws16f{word-spacing:0.165333pt;}
.ws258{word-spacing:0.211200pt;}
.ws1bf{word-spacing:0.224000pt;}
.ws2da{word-spacing:0.244800pt;}
.ws1b3{word-spacing:0.330667pt;}
.ws109{word-spacing:0.368000pt;}
.ws75{word-spacing:0.369600pt;}
.ws108{word-spacing:0.378667pt;}
.ws79{word-spacing:0.403200pt;}
.ws195{word-spacing:0.421333pt;}
.wse8{word-spacing:0.474667pt;}
.ws241{word-spacing:0.480000pt;}
.ws77{word-spacing:0.556800pt;}
.wse7{word-spacing:0.629333pt;}
.ws188{word-spacing:0.640000pt;}
.ws15a{word-spacing:0.682667pt;}
.ws25e{word-spacing:0.705600pt;}
.ws186{word-spacing:0.746667pt;}
.wse6{word-spacing:0.784000pt;}
.ws25f{word-spacing:0.849600pt;}
.ws273{word-spacing:1.003200pt;}
.ws152{word-spacing:1.045333pt;}
.wsda{word-spacing:1.050667pt;}
.ws217{word-spacing:1.082667pt;}
.ws166{word-spacing:1.237333pt;}
.ws1e6{word-spacing:1.328000pt;}
.ws2ae{word-spacing:1.348800pt;}
.ws1b8{word-spacing:1.557333pt;}
.ws36{word-spacing:1.578667pt;}
.ws1b9{word-spacing:1.589333pt;}
.wsed{word-spacing:1.594667pt;}
.ws251{word-spacing:1.636800pt;}
.ws11f{word-spacing:1.658667pt;}
.ws130{word-spacing:1.674667pt;}
.ws35{word-spacing:1.690667pt;}
.ws189{word-spacing:1.696000pt;}
.ws34{word-spacing:1.733333pt;}
.wsea{word-spacing:1.738667pt;}
.ws2f0{word-spacing:1.771200pt;}
.ws12e{word-spacing:1.792000pt;}
.wseb{word-spacing:1.808000pt;}
.ws2f4{word-spacing:1.824000pt;}
.wsec{word-spacing:1.840000pt;}
.ws178{word-spacing:1.845333pt;}
.wsd2{word-spacing:1.893333pt;}
.ws90{word-spacing:1.904000pt;}
.ws1dc{word-spacing:1.973333pt;}
.ws12d{word-spacing:1.978667pt;}
.ws1c{word-spacing:2.010667pt;}
.wsd4{word-spacing:2.048000pt;}
.ws29e{word-spacing:2.164800pt;}
.ws2e6{word-spacing:2.174400pt;}
.ws2e7{word-spacing:2.198400pt;}
.ws4d{word-spacing:2.346667pt;}
.ws285{word-spacing:2.433600pt;}
.ws283{word-spacing:2.486400pt;}
.ws1e7{word-spacing:2.565333pt;}
.ws1de{word-spacing:2.581333pt;}
.ws1e0{word-spacing:2.602667pt;}
.ws1a3{word-spacing:2.613333pt;}
.ws20{word-spacing:2.618667pt;}
.ws264{word-spacing:2.630400pt;}
.ws272{word-spacing:2.673600pt;}
.ws28a{word-spacing:2.702400pt;}
.ws95{word-spacing:2.714667pt;}
.ws23{word-spacing:2.741333pt;}
.ws131{word-spacing:2.880000pt;}
.ws1c7{word-spacing:3.029333pt;}
.ws29f{word-spacing:3.100800pt;}
.ws54{word-spacing:3.232000pt;}
.ws245{word-spacing:3.254400pt;}
.ws46{word-spacing:3.280000pt;}
.ws33{word-spacing:3.328000pt;}
.ws1ca{word-spacing:3.354667pt;}
.ws1e1{word-spacing:3.392000pt;}
.ws25d{word-spacing:3.446400pt;}
.ws250{word-spacing:3.475200pt;}
.ws96{word-spacing:3.552000pt;}
.ws1a{word-spacing:3.653333pt;}
.ws18{word-spacing:3.749333pt;}
.ws16{word-spacing:3.754667pt;}
.ws4a{word-spacing:3.877333pt;}
.ws2c7{word-spacing:3.883200pt;}
.ws220{word-spacing:3.940800pt;}
.wsd8{word-spacing:3.952000pt;}
.wsd7{word-spacing:4.010667pt;}
.ws238{word-spacing:4.094400pt;}
.ws219{word-spacing:4.106667pt;}
.ws21f{word-spacing:4.113600pt;}
.ws17e{word-spacing:4.154667pt;}
.wsd9{word-spacing:4.208000pt;}
.ws1b1{word-spacing:4.245333pt;}
.ws59{word-spacing:4.250667pt;}
.ws171{word-spacing:4.293333pt;}
.ws172{word-spacing:4.309333pt;}
.ws47{word-spacing:4.314667pt;}
.ws22e{word-spacing:4.339200pt;}
.ws118{word-spacing:4.352000pt;}
.ws117{word-spacing:4.405333pt;}
.ws1b6{word-spacing:4.464000pt;}
.ws2be{word-spacing:4.473600pt;}
.ws153{word-spacing:4.704000pt;}
.ws1e5{word-spacing:4.720000pt;}
.wsc0{word-spacing:4.768000pt;}
.ws5c{word-spacing:4.832000pt;}
.ws63{word-spacing:4.833600pt;}
.ws25c{word-spacing:5.054400pt;}
.ws23b{word-spacing:5.083200pt;}
.ws6e{word-spacing:5.125333pt;}
.ws231{word-spacing:5.217600pt;}
.ws271{word-spacing:5.289600pt;}
.ws164{word-spacing:5.306667pt;}
.ws235{word-spacing:5.371200pt;}
.ws26f{word-spacing:5.409600pt;}
.ws183{word-spacing:5.541333pt;}
.ws218{word-spacing:5.546667pt;}
.ws1d8{word-spacing:5.716800pt;}
.ws3d{word-spacing:5.781333pt;}
.ws3e{word-spacing:5.904000pt;}
.ws11e{word-spacing:6.218667pt;}
.ws37{word-spacing:6.309333pt;}
.ws1d0{word-spacing:6.338815pt;}
.ws212{word-spacing:6.426667pt;}
.ws1bd{word-spacing:6.528000pt;}
.ws1be{word-spacing:6.666667pt;}
.ws17a{word-spacing:6.730667pt;}
.ws214{word-spacing:6.762667pt;}
.ws1bc{word-spacing:6.800000pt;}
.ws17c{word-spacing:6.880000pt;}
.ws17b{word-spacing:6.917333pt;}
.ws18e{word-spacing:6.922667pt;}
.ws15b{word-spacing:7.013333pt;}
.ws11a{word-spacing:7.104000pt;}
.ws1cd{word-spacing:7.114667pt;}
.ws11c{word-spacing:7.120000pt;}
.ws2c4{word-spacing:7.238400pt;}
.ws26{word-spacing:7.338667pt;}
.ws11d{word-spacing:7.386667pt;}
.ws1cc{word-spacing:7.477333pt;}
.ws2a0{word-spacing:7.521600pt;}
.ws26a{word-spacing:7.584000pt;}
.ws1cb{word-spacing:7.674667pt;}
.ws163{word-spacing:7.802667pt;}
.wsef{word-spacing:7.829333pt;}
.ws21a{word-spacing:8.090667pt;}
.ws48{word-spacing:8.133333pt;}
.ws24a{word-spacing:8.184000pt;}
.wsc8{word-spacing:8.512000pt;}
.ws6b{word-spacing:8.602667pt;}
.ws1ed{word-spacing:8.634667pt;}
.ws1da{word-spacing:8.842667pt;}
.wsc7{word-spacing:8.848000pt;}
.ws2de{word-spacing:8.908800pt;}
.ws1db{word-spacing:8.992000pt;}
.ws2df{word-spacing:9.028800pt;}
.ws3c{word-spacing:9.082667pt;}
.ws9d{word-spacing:9.093333pt;}
.ws9e{word-spacing:9.152000pt;}
.ws2d3{word-spacing:9.201600pt;}
.ws279{word-spacing:9.225600pt;}
.ws9c{word-spacing:9.242667pt;}
.ws5f{word-spacing:9.249600pt;}
.ws286{word-spacing:9.532800pt;}
.ws119{word-spacing:9.760000pt;}
.wsae{word-spacing:9.813333pt;}
.ws26d{word-spacing:9.883200pt;}
.wsad{word-spacing:9.925333pt;}
.ws2c9{word-spacing:10.003200pt;}
.ws2a3{word-spacing:10.137600pt;}
.ws26e{word-spacing:10.147200pt;}
.ws155{word-spacing:10.277333pt;}
.ws156{word-spacing:10.309333pt;}
.ws184{word-spacing:10.373333pt;}
.ws157{word-spacing:10.384000pt;}
.ws16e{word-spacing:10.565333pt;}
.ws138{word-spacing:10.805333pt;}
.wsb4{word-spacing:10.842667pt;}
.ws2c5{word-spacing:10.848000pt;}
.ws139{word-spacing:10.912000pt;}
.ws13a{word-spacing:10.960000pt;}
.ws278{word-spacing:11.011200pt;}
.wsb5{word-spacing:11.024000pt;}
.ws165{word-spacing:11.056000pt;}
.ws43{word-spacing:11.216000pt;}
.wsa5{word-spacing:11.408000pt;}
.ws211{word-spacing:11.456000pt;}
.ws282{word-spacing:12.024000pt;}
.ws2ea{word-spacing:12.129600pt;}
.ws15{word-spacing:12.373333pt;}
.ws28d{word-spacing:12.638400pt;}
.wsb8{word-spacing:12.645333pt;}
.ws4c{word-spacing:12.698667pt;}
.wsc1{word-spacing:12.848000pt;}
.ws269{word-spacing:12.854400pt;}
.wsb7{word-spacing:12.858667pt;}
.ws4b{word-spacing:12.912000pt;}
.ws213{word-spacing:12.981333pt;}
.wsc2{word-spacing:13.024000pt;}
.wsc3{word-spacing:13.029333pt;}
.ws224{word-spacing:13.166400pt;}
.ws24b{word-spacing:13.185600pt;}
.ws28c{word-spacing:13.209600pt;}
.ws24c{word-spacing:13.233600pt;}
.ws2c8{word-spacing:13.262400pt;}
.ws28e{word-spacing:13.272000pt;}
.ws234{word-spacing:13.310400pt;}
.ws299{word-spacing:13.315200pt;}
.ws24e{word-spacing:13.348800pt;}
.ws27e{word-spacing:13.416000pt;}
.ws290{word-spacing:13.488000pt;}
.ws2cc{word-spacing:13.502400pt;}
.ws10e{word-spacing:13.525333pt;}
.wsc4{word-spacing:13.754667pt;}
.ws21{word-spacing:14.272000pt;}
.ws22{word-spacing:14.325333pt;}
.ws154{word-spacing:14.357333pt;}
.ws32{word-spacing:14.624000pt;}
.ws16d{word-spacing:14.629333pt;}
.ws177{word-spacing:14.640000pt;}
.ws50{word-spacing:14.645333pt;}
.ws210{word-spacing:14.656000pt;}
.ws1b0{word-spacing:14.688000pt;}
.ws14{word-spacing:14.693333pt;}
.ws181{word-spacing:14.698667pt;}
.ws13{word-spacing:14.709333pt;}
.ws4e{word-spacing:14.720000pt;}
.wsa3{word-spacing:14.725333pt;}
.ws6d{word-spacing:14.736000pt;}
.wsa0{word-spacing:14.741333pt;}
.ws9b{word-spacing:14.757333pt;}
.ws17d{word-spacing:14.768000pt;}
.ws2d{word-spacing:14.773333pt;}
.ws2e{word-spacing:14.784000pt;}
.ws4f{word-spacing:14.789333pt;}
.ws215{word-spacing:14.794667pt;}
.ws25{word-spacing:14.800000pt;}
.ws45{word-spacing:14.810667pt;}
.ws3b{word-spacing:14.816000pt;}
.ws5e{word-spacing:14.821333pt;}
.ws1ee{word-spacing:14.826667pt;}
.wsab{word-spacing:14.848000pt;}
.ws216{word-spacing:14.853333pt;}
.ws1a4{word-spacing:14.858667pt;}
.wsa2{word-spacing:14.874667pt;}
.ws196{word-spacing:14.906667pt;}
.ws190{word-spacing:14.912000pt;}
.ws104{word-spacing:14.928000pt;}
.ws18c{word-spacing:14.981333pt;}
.ws1ae{word-spacing:15.029333pt;}
.ws5d{word-spacing:15.040000pt;}
.wse5{word-spacing:15.050667pt;}
.ws18b{word-spacing:15.104000pt;}
.wsaa{word-spacing:15.114667pt;}
.ws1eb{word-spacing:17.874565pt;}
.wse{word-spacing:18.913999pt;}
.ws61{word-spacing:32.817600pt;}
.wsc{word-spacing:285.802133pt;}
.ws8d{word-spacing:598.823448pt;}
._11{margin-left:-2650.629267pt;}
._1{margin-left:-1.358923pt;}
._1b{width:10.617600pt;}
._12{width:11.961600pt;}
._7{width:13.354667pt;}
._9{width:14.730667pt;}
._16{width:16.112000pt;}
._4{width:17.077333pt;}
._c{width:17.978667pt;}
._19{width:18.874667pt;}
._b{width:19.936000pt;}
._15{width:21.701333pt;}
._18{width:22.661333pt;}
._8{width:23.888000pt;}
._6{width:25.408000pt;}
._10{width:26.682667pt;}
._e{width:27.914667pt;}
._a{width:28.938667pt;}
._1c{width:29.851200pt;}
._0{width:31.009767pt;}
._f{width:32.864000pt;}
._17{width:34.992000pt;}
._d{width:36.304000pt;}
._5{width:37.696000pt;}
._13{width:66.615360pt;}
._1a{width:71.472000pt;}
._3{width:249.439772pt;}
._2{width:406.940234pt;}
._14{width:586.650133pt;}
.fs14{font-size:31.995733pt;}
.fs10{font-size:32.000000pt;}
.fs13{font-size:32.158933pt;}
.fse{font-size:33.600000pt;}
.fs16{font-size:34.832000pt;}
.fsd{font-size:35.551467pt;}
.fsa{font-size:35.732800pt;}
.fs8{font-size:36.665600pt;}
.fs11{font-size:37.333333pt;}
.fsf{font-size:39.999467pt;}
.fs6{font-size:42.666133pt;}
.fs12{font-size:42.666667pt;}
.fs3{font-size:46.216000pt;}
.fs4{font-size:48.000000pt;}
.fs17{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs1{font-size:60.745600pt;}
.fs15{font-size:63.332267pt;}
.fs7{font-size:66.666133pt;}
.fs2{font-size:69.332800pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fsb{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.943333pt;}
.y79{bottom:20.107867pt;}
.y67{bottom:24.492133pt;}
.y78{bottom:28.799867pt;}
.y65{bottom:31.295147pt;}
.y66{bottom:33.184133pt;}
.y64{bottom:39.004667pt;}
.y1e2{bottom:53.291067pt;}
.y155{bottom:53.291200pt;}
.ydc{bottom:53.291733pt;}
.y6e{bottom:53.291867pt;}
.y70{bottom:53.292400pt;}
.y16d{bottom:53.292533pt;}
.yc2{bottom:53.292667pt;}
.y132{bottom:53.294000pt;}
.y6f{bottom:59.262933pt;}
.y3f{bottom:61.077467pt;}
.y1e1{bottom:66.671067pt;}
.y225{bottom:67.049067pt;}
.y154{bottom:67.955867pt;}
.y6d{bottom:67.956400pt;}
.y16c{bottom:67.956533pt;}
.y152{bottom:67.956667pt;}
.y19e{bottom:67.958000pt;}
.y9c{bottom:68.031867pt;}
.y131{bottom:68.034000pt;}
.ydb{bottom:68.259733pt;}
.yc1{bottom:68.410000pt;}
.y153{bottom:73.927467pt;}
.y3e{bottom:76.045467pt;}
.y1e0{bottom:79.975467pt;}
.y224{bottom:80.731467pt;}
.y6b{bottom:82.620400pt;}
.y151{bottom:82.620667pt;}
.y19d{bottom:82.622000pt;}
.y9b{bottom:82.771867pt;}
.y130{bottom:82.774000pt;}
.yda{bottom:83.150400pt;}
.yc0{bottom:83.452667pt;}
.y16b{bottom:86.627200pt;}
.y6c{bottom:88.592000pt;}
.y3d{bottom:91.086800pt;}
.y1df{bottom:93.278667pt;}
.y223{bottom:94.412667pt;}
.y62{bottom:95.471467pt;}
.y150{bottom:97.286000pt;}
.y19c{bottom:97.287333pt;}
.y9a{bottom:97.511867pt;}
.y12f{bottom:97.514000pt;}
.yed{bottom:98.041067pt;}
.yd9{bottom:98.117067pt;}
.ybf{bottom:98.495333pt;}
.y16a{bottom:101.291200pt;}
.y3b{bottom:106.053467pt;}
.y1de{bottom:106.658667pt;}
.y222{bottom:108.095067pt;}
.y61{bottom:110.136667pt;}
.y3c{bottom:111.949467pt;}
.y14f{bottom:111.950000pt;}
.y19b{bottom:111.951333pt;}
.y99{bottom:112.251867pt;}
.y12e{bottom:112.254000pt;}
.yec{bottom:113.007733pt;}
.yd8{bottom:113.008667pt;}
.ybe{bottom:113.538000pt;}
.y168{bottom:115.955867pt;}
.y169{bottom:117.694400pt;}
.y1dd{bottom:119.961867pt;}
.y39{bottom:121.096667pt;}
.y221{bottom:121.776267pt;}
.y60{bottom:124.800667pt;}
.y76{bottom:125.934267pt;}
.y14e{bottom:126.614000pt;}
.y14c{bottom:126.615333pt;}
.y3a{bottom:126.991333pt;}
.y12d{bottom:126.994000pt;}
.y98{bottom:127.596667pt;}
.yeb{bottom:127.898400pt;}
.yd7{bottom:127.900667pt;}
.y167{bottom:128.276667pt;}
.ybd{bottom:128.579333pt;}
.y14d{bottom:132.586000pt;}
.y1dc{bottom:133.341867pt;}
.y220{bottom:135.458667pt;}
.y37{bottom:136.063333pt;}
.y75{bottom:139.313067pt;}
.y5f{bottom:139.464667pt;}
.y14b{bottom:141.280667pt;}
.y19a{bottom:141.355333pt;}
.y12c{bottom:141.734000pt;}
.y38{bottom:141.959333pt;}
.yea{bottom:142.789067pt;}
.yd6{bottom:142.867333pt;}
.ybb{bottom:143.623333pt;}
.y1db{bottom:146.646267pt;}
.y21f{bottom:149.139867pt;}
.ybc{bottom:149.518000pt;}
.y36{bottom:151.031333pt;}
.y74{bottom:152.617467pt;}
.y14a{bottom:156.020667pt;}
.y12b{bottom:156.474000pt;}
.ye9{bottom:157.755733pt;}
.yd5{bottom:157.759333pt;}
.yba{bottom:158.666000pt;}
.y1da{bottom:159.949467pt;}
.y166{bottom:160.934000pt;}
.y21e{bottom:162.822267pt;}
.y73{bottom:165.921867pt;}
.y35{bottom:166.072667pt;}
.y97{bottom:166.300667pt;}
.y149{bottom:170.684667pt;}
.y12a{bottom:171.214000pt;}
.ye8{bottom:172.647733pt;}
.yd4{bottom:172.726000pt;}
.y1d9{bottom:173.329467pt;}
.y5d{bottom:173.480667pt;}
.yb8{bottom:173.707333pt;}
.y165{bottom:175.599333pt;}
.y21d{bottom:176.504667pt;}
.y72{bottom:179.300667pt;}
.y5e{bottom:179.376667pt;}
.yb9{bottom:179.603333pt;}
.y34{bottom:181.040667pt;}
.y147{bottom:185.348667pt;}
.y129{bottom:185.878000pt;}
.y1d8{bottom:186.632667pt;}
.ye7{bottom:187.538400pt;}
.yd3{bottom:187.616667pt;}
.y5c{bottom:188.371333pt;}
.yb7{bottom:188.750000pt;}
.y21c{bottom:190.185867pt;}
.y164{bottom:190.263333pt;}
.y148{bottom:191.244667pt;}
.y96{bottom:195.706000pt;}
.y33{bottom:196.082000pt;}
.y1d7{bottom:200.012667pt;}
.y146{bottom:200.014000pt;}
.y128{bottom:200.618000pt;}
.ye6{bottom:202.505067pt;}
.yd2{bottom:202.583333pt;}
.y5b{bottom:203.338000pt;}
.y59{bottom:203.339333pt;}
.y21b{bottom:203.565867pt;}
.yb6{bottom:203.792667pt;}
.y163{bottom:204.927333pt;}
.y5a{bottom:209.310000pt;}
.y95{bottom:210.446000pt;}
.y32{bottom:211.048667pt;}
.y30{bottom:211.050000pt;}
.y1d6{bottom:213.317067pt;}
.y145{bottom:214.678000pt;}
.y127{bottom:215.358000pt;}
.y31{bottom:217.020667pt;}
.y21a{bottom:217.247067pt;}
.ye5{bottom:217.397067pt;}
.yd1{bottom:217.475333pt;}
.y58{bottom:218.306000pt;}
.yb5{bottom:218.835333pt;}
.y162{bottom:219.592667pt;}
.y94{bottom:225.186000pt;}
.y2f{bottom:226.091333pt;}
.y1d5{bottom:226.620267pt;}
.y144{bottom:229.342000pt;}
.y142{bottom:229.343333pt;}
.y125{bottom:230.098000pt;}
.y219{bottom:230.929467pt;}
.ye4{bottom:232.287733pt;}
.yd0{bottom:232.366000pt;}
.y57{bottom:233.272667pt;}
.yb4{bottom:233.878000pt;}
.y161{bottom:234.256667pt;}
.y143{bottom:235.238000pt;}
.y126{bottom:235.994000pt;}
.y93{bottom:239.926000pt;}
.y1d4{bottom:240.000267pt;}
.y2e{bottom:241.058000pt;}
.y2c{bottom:241.059333pt;}
.y141{bottom:244.007333pt;}
.y218{bottom:244.610667pt;}
.y124{bottom:244.838000pt;}
.y2d{bottom:247.030000pt;}
.ycf{bottom:247.182000pt;}
.ye3{bottom:247.254400pt;}
.y56{bottom:248.239333pt;}
.y54{bottom:248.240667pt;}
.yb3{bottom:248.920667pt;}
.y1d3{bottom:253.304667pt;}
.y55{bottom:254.211333pt;}
.y92{bottom:254.666000pt;}
.y2b{bottom:256.100667pt;}
.y217{bottom:258.293067pt;}
.y140{bottom:258.670000pt;}
.y199{bottom:258.671333pt;}
.y123{bottom:259.578000pt;}
.y121{bottom:259.582000pt;}
.ye2{bottom:262.146400pt;}
.yce{bottom:262.148667pt;}
.y53{bottom:263.207333pt;}
.y160{bottom:263.586000pt;}
.yb2{bottom:263.963333pt;}
.y122{bottom:265.474000pt;}
.y1d2{bottom:266.683467pt;}
.y91{bottom:269.406000pt;}
.y2a{bottom:271.067333pt;}
.y28{bottom:271.068667pt;}
.y216{bottom:271.975467pt;}
.y13f{bottom:273.335333pt;}
.y120{bottom:274.322000pt;}
.ye1{bottom:277.037067pt;}
.y29{bottom:277.039333pt;}
.y52{bottom:278.023333pt;}
.y15f{bottom:278.250000pt;}
.yb1{bottom:279.082000pt;}
.y1d1{bottom:279.987867pt;}
.y90{bottom:284.146000pt;}
.y215{bottom:285.656667pt;}
.y27{bottom:286.111333pt;}
.y198{bottom:287.092667pt;}
.y13e{bottom:287.999333pt;}
.y11f{bottom:288.987333pt;}
.ycd{bottom:291.931333pt;}
.ye0{bottom:292.003733pt;}
.y15e{bottom:292.914000pt;}
.y51{bottom:292.990000pt;}
.y1d0{bottom:293.291067pt;}
.yb0{bottom:294.123333pt;}
.y8f{bottom:298.886000pt;}
.y214{bottom:299.339067pt;}
.y26{bottom:301.078000pt;}
.y13d{bottom:302.663333pt;}
.y11e{bottom:303.727333pt;}
.y1cf{bottom:306.671067pt;}
.ydf{bottom:306.895733pt;}
.ycc{bottom:306.898000pt;}
.y15d{bottom:307.578000pt;}
.y50{bottom:307.956667pt;}
.yaf{bottom:309.166000pt;}
.y213{bottom:313.020267pt;}
.y8e{bottom:313.626000pt;}
.y25{bottom:316.120667pt;}
.y13c{bottom:317.328667pt;}
.y6a{bottom:317.506667pt;}
.y11d{bottom:318.467333pt;}
.y1ce{bottom:319.975467pt;}
.y15c{bottom:320.882000pt;}
.y197{bottom:321.108667pt;}
.yde{bottom:321.786400pt;}
.ycb{bottom:321.788667pt;}
.y4f{bottom:322.923333pt;}
.y4d{bottom:322.924667pt;}
.yae{bottom:324.208667pt;}
.y212{bottom:326.778267pt;}
.y8d{bottom:328.290000pt;}
.y4e{bottom:328.819333pt;}
.y24{bottom:331.087333pt;}
.y13b{bottom:331.992667pt;}
.y11c{bottom:333.207333pt;}
.y1cd{bottom:333.278667pt;}
.y196{bottom:336.226000pt;}
.ydd{bottom:336.753067pt;}
.yca{bottom:336.755333pt;}
.y4c{bottom:337.891333pt;}
.yad{bottom:339.251333pt;}
.y211{bottom:340.459467pt;}
.y8c{bottom:343.030000pt;}
.y23{bottom:346.130000pt;}
.y13a{bottom:346.656667pt;}
.y1cc{bottom:346.658667pt;}
.y11b{bottom:347.947333pt;}
.y4b{bottom:352.858000pt;}
.y15b{bottom:353.612667pt;}
.y210{bottom:354.141867pt;}
.y195{bottom:354.292667pt;}
.yac{bottom:354.294000pt;}
.y8a{bottom:357.770000pt;}
.y1cb{bottom:359.961867pt;}
.y194{bottom:360.188667pt;}
.y22{bottom:361.096667pt;}
.y139{bottom:361.322000pt;}
.y11a{bottom:362.687333pt;}
.y8b{bottom:363.666000pt;}
.yf0{bottom:365.405467pt;}
.y20f{bottom:367.824267pt;}
.y4a{bottom:367.824667pt;}
.y15a{bottom:368.278000pt;}
.yab{bottom:369.336667pt;}
.y193{bottom:369.411333pt;}
.y89{bottom:372.510000pt;}
.y1ca{bottom:373.341867pt;}
.y69{bottom:374.546667pt;}
.y138{bottom:375.986000pt;}
.y21{bottom:376.138000pt;}
.y1f{bottom:376.139333pt;}
.y119{bottom:377.427333pt;}
.yef{bottom:378.709867pt;}
.y20e{bottom:381.127467pt;}
.y20{bottom:382.034000pt;}
.y49{bottom:382.792667pt;}
.y159{bottom:382.942000pt;}
.yaa{bottom:384.378000pt;}
.y1c9{bottom:386.646267pt;}
.y88{bottom:387.250000pt;}
.y86{bottom:387.251333pt;}
.y137{bottom:390.650000pt;}
.y1e{bottom:391.107333pt;}
.yee{bottom:392.088667pt;}
.y118{bottom:392.091333pt;}
.y87{bottom:393.146000pt;}
.y20d{bottom:394.809867pt;}
.y158{bottom:397.606000pt;}
.y48{bottom:397.759333pt;}
.y192{bottom:398.136667pt;}
.ya9{bottom:399.420667pt;}
.y1c8{bottom:399.949467pt;}
.y85{bottom:401.991333pt;}
.y136{bottom:405.315333pt;}
.y1d{bottom:406.148667pt;}
.y117{bottom:406.831333pt;}
.y20c{bottom:408.491067pt;}
.y47{bottom:412.650000pt;}
.y191{bottom:412.802000pt;}
.y1c7{bottom:413.329467pt;}
.ya8{bottom:414.463333pt;}
.y84{bottom:416.655333pt;}
.y135{bottom:419.979333pt;}
.y1c{bottom:421.116667pt;}
.y116{bottom:421.571333pt;}
.y20b{bottom:422.173467pt;}
.y1c6{bottom:426.632667pt;}
.y46{bottom:427.616667pt;}
.ya7{bottom:429.506000pt;}
.y83{bottom:431.395333pt;}
.y190{bottom:432.756667pt;}
.y134{bottom:434.644667pt;}
.y20a{bottom:435.931467pt;}
.y1b{bottom:436.158000pt;}
.y115{bottom:436.312667pt;}
.y1c5{bottom:440.012667pt;}
.y45{bottom:442.583333pt;}
.ya6{bottom:444.548667pt;}
.y82{bottom:446.135333pt;}
.y19f{bottom:447.420667pt;}
.y18f{bottom:447.422000pt;}
.y209{bottom:449.234667pt;}
.y133{bottom:449.308667pt;}
.y114{bottom:451.052667pt;}
.y19{bottom:451.124667pt;}
.y1c4{bottom:453.317067pt;}
.y1a{bottom:457.020667pt;}
.y42{bottom:457.546800pt;}
.y44{bottom:457.550000pt;}
.ya5{bottom:459.590000pt;}
.ya3{bottom:459.591333pt;}
.y80{bottom:460.875333pt;}
.y18e{bottom:462.086000pt;}
.y208{bottom:462.917067pt;}
.y43{bottom:463.520667pt;}
.ya4{bottom:465.562000pt;}
.y113{bottom:465.792667pt;}
.y18{bottom:466.091333pt;}
.y1c3{bottom:466.620267pt;}
.y81{bottom:466.771333pt;}
.y41{bottom:472.513467pt;}
.ya0{bottom:474.630533pt;}
.ya2{bottom:474.632667pt;}
.y7f{bottom:475.615333pt;}
.y7d{bottom:475.616667pt;}
.y207{bottom:476.598267pt;}
.y18d{bottom:476.751333pt;}
.y1c2{bottom:480.000267pt;}
.y112{bottom:480.532667pt;}
.ya1{bottom:480.604667pt;}
.y7e{bottom:481.511333pt;}
.y17{bottom:481.663333pt;}
.y157{bottom:482.721467pt;}
.y40{bottom:487.480133pt;}
.y9f{bottom:489.671867pt;}
.y206{bottom:489.978267pt;}
.y7c{bottom:490.356667pt;}
.y18c{bottom:491.415333pt;}
.y1c1{bottom:493.304667pt;}
.y111{bottom:495.272667pt;}
.y156{bottom:496.024667pt;}
.y205{bottom:503.659467pt;}
.y9e{bottom:504.790533pt;}
.y7b{bottom:505.096667pt;}
.y18b{bottom:506.080667pt;}
.y1c0{bottom:506.683467pt;}
.y110{bottom:509.936667pt;}
.y248{bottom:514.621467pt;}
.y204{bottom:517.341867pt;}
.y9d{bottom:519.833200pt;}
.y7a{bottom:519.836667pt;}
.y1bf{bottom:519.987867pt;}
.y18a{bottom:520.820667pt;}
.y10f{bottom:524.676667pt;}
.y247{bottom:528.000267pt;}
.y203{bottom:531.024267pt;}
.y1be{bottom:533.291067pt;}
.y16{bottom:533.519333pt;}
.y189{bottom:535.484667pt;}
.y10e{bottom:539.416667pt;}
.y246{bottom:541.304667pt;}
.y202{bottom:544.705467pt;}
.y1bd{bottom:546.671067pt;}
.y15{bottom:548.183333pt;}
.y188{bottom:550.148667pt;}
.yc9{bottom:553.171333pt;}
.yc7{bottom:553.172533pt;}
.y10d{bottom:554.156667pt;}
.y245{bottom:554.609067pt;}
.y201{bottom:558.387867pt;}
.yc8{bottom:558.538000pt;}
.y1bc{bottom:559.975467pt;}
.y14{bottom:562.847333pt;}
.y71{bottom:564.283333pt;}
.y187{bottom:564.814000pt;}
.yc6{bottom:566.551333pt;}
.y244{bottom:567.987867pt;}
.y10c{bottom:568.896667pt;}
.yc5{bottom:571.842000pt;}
.y200{bottom:572.069067pt;}
.y1bb{bottom:573.354267pt;}
.y13{bottom:577.512667pt;}
.y186{bottom:579.478000pt;}
.y243{bottom:581.292267pt;}
.y10b{bottom:583.636667pt;}
.y1ff{bottom:585.751467pt;}
.y1ba{bottom:586.658667pt;}
.y12{bottom:592.176667pt;}
.y185{bottom:594.142000pt;}
.y242{bottom:594.671067pt;}
.y10a{bottom:598.376667pt;}
.y1fe{bottom:599.131467pt;}
.y1b9{bottom:599.961867pt;}
.y11{bottom:606.842000pt;}
.y241{bottom:607.975467pt;}
.y184{bottom:608.807333pt;}
.y1fd{bottom:612.812667pt;}
.y109{bottom:613.042000pt;}
.y1b8{bottom:613.341867pt;}
.y240{bottom:621.279867pt;}
.y10{bottom:621.506000pt;}
.y183{bottom:623.471333pt;}
.y1fc{bottom:626.495067pt;}
.y1b7{bottom:626.646267pt;}
.y108{bottom:627.782000pt;}
.y23f{bottom:634.658667pt;}
.yf{bottom:636.171333pt;}
.y182{bottom:638.135333pt;}
.y1b6{bottom:639.949467pt;}
.y1fb{bottom:640.176267pt;}
.y107{bottom:642.522000pt;}
.y23e{bottom:647.963067pt;}
.ye{bottom:650.835333pt;}
.y181{bottom:653.254000pt;}
.y1b5{bottom:653.329467pt;}
.y1fa{bottom:653.858667pt;}
.y106{bottom:657.262000pt;}
.y23d{bottom:661.341867pt;}
.yd{bottom:665.499333pt;}
.y1b4{bottom:666.632667pt;}
.y1f9{bottom:667.539867pt;}
.y105{bottom:672.002000pt;}
.y23c{bottom:674.646267pt;}
.y180{bottom:677.972667pt;}
.y1b3{bottom:680.012667pt;}
.yc{bottom:680.164667pt;}
.y1f8{bottom:680.844267pt;}
.y104{bottom:686.742000pt;}
.y23b{bottom:687.950667pt;}
.y17f{bottom:692.636667pt;}
.y1b2{bottom:693.317067pt;}
.y1f7{bottom:694.526667pt;}
.yb{bottom:694.828667pt;}
.y23a{bottom:701.329467pt;}
.y103{bottom:701.482000pt;}
.y1b1{bottom:706.620267pt;}
.y17e{bottom:707.302000pt;}
.y1f6{bottom:708.283467pt;}
.ya{bottom:709.492667pt;}
.y239{bottom:714.633867pt;}
.y102{bottom:716.222000pt;}
.y1b0{bottom:720.000267pt;}
.y1f5{bottom:721.965867pt;}
.y17d{bottom:721.967333pt;}
.y238{bottom:728.012667pt;}
.y101{bottom:730.962000pt;}
.y1af{bottom:733.304667pt;}
.y1f4{bottom:735.269067pt;}
.y17c{bottom:736.631333pt;}
.y8{bottom:740.787333pt;}
.y237{bottom:741.317067pt;}
.y9{bottom:742.602000pt;}
.y100{bottom:745.702000pt;}
.y1ae{bottom:746.683467pt;}
.y1f3{bottom:748.951467pt;}
.y17b{bottom:751.295333pt;}
.y236{bottom:754.621467pt;}
.y1ad{bottom:759.987867pt;}
.yff{bottom:760.442000pt;}
.y1f2{bottom:762.632667pt;}
.y17a{bottom:765.960667pt;}
.y235{bottom:768.000267pt;}
.y1ac{bottom:773.291067pt;}
.yfe{bottom:775.107333pt;}
.y1f1{bottom:776.315067pt;}
.y179{bottom:780.624667pt;}
.y234{bottom:781.304667pt;}
.y1ab{bottom:786.671067pt;}
.y7{bottom:788.711333pt;}
.yfd{bottom:789.847333pt;}
.y1f0{bottom:789.997467pt;}
.y233{bottom:794.684667pt;}
.y178{bottom:795.288667pt;}
.y1aa{bottom:799.975467pt;}
.y1ef{bottom:803.678667pt;}
.yfc{bottom:804.587333pt;}
.y232{bottom:807.987867pt;}
.y177{bottom:809.954000pt;}
.y1a9{bottom:813.354267pt;}
.y1ee{bottom:817.436667pt;}
.yfb{bottom:819.327333pt;}
.y231{bottom:821.292267pt;}
.y6{bottom:821.292410pt;}
.y176{bottom:824.618000pt;}
.y1a8{bottom:826.658667pt;}
.y1ed{bottom:831.117867pt;}
.yfa{bottom:834.067333pt;}
.y230{bottom:834.671067pt;}
.y175{bottom:839.282000pt;}
.y1a7{bottom:839.961867pt;}
.y4{bottom:839.962000pt;}
.y1ec{bottom:844.800267pt;}
.y5{bottom:847.672667pt;}
.y22f{bottom:847.975467pt;}
.yf9{bottom:848.807333pt;}
.y1a6{bottom:853.341867pt;}
.y174{bottom:853.947333pt;}
.y1eb{bottom:858.482667pt;}
.y22e{bottom:861.279867pt;}
.yf8{bottom:863.547333pt;}
.y1a5{bottom:866.646267pt;}
.y3{bottom:866.647741pt;}
.y173{bottom:868.611333pt;}
.y1ea{bottom:872.163867pt;}
.y22d{bottom:874.658667pt;}
.yf7{bottom:878.211333pt;}
.y1a4{bottom:879.949467pt;}
.y172{bottom:883.275333pt;}
.y1e9{bottom:885.846267pt;}
.y22c{bottom:887.963067pt;}
.y2{bottom:890.683333pt;}
.yf6{bottom:892.951333pt;}
.y1a3{bottom:893.329467pt;}
.y171{bottom:898.394000pt;}
.y1e8{bottom:899.527467pt;}
.y22b{bottom:901.341867pt;}
.y1a2{bottom:906.632667pt;}
.yf5{bottom:907.691333pt;}
.y170{bottom:911.546000pt;}
.y1e7{bottom:913.208667pt;}
.y22a{bottom:914.646267pt;}
.y1a1{bottom:918.803333pt;}
.yf4{bottom:922.431333pt;}
.y1e6{bottom:926.889867pt;}
.y229{bottom:927.950667pt;}
.y63{bottom:933.996667pt;}
.yf3{bottom:937.171333pt;}
.y1e5{bottom:940.572267pt;}
.y228{bottom:941.329467pt;}
.y16f{bottom:950.771200pt;}
.yf2{bottom:951.911333pt;}
.y1a0{bottom:951.987333pt;}
.y1e4{bottom:954.254667pt;}
.y227{bottom:954.633867pt;}
.y16e{bottom:965.436533pt;}
.yc3{bottom:965.971333pt;}
.y68{bottom:966.533333pt;}
.yf1{bottom:966.651333pt;}
.y1e3{bottom:968.011467pt;}
.y226{bottom:968.012667pt;}
.yc4{bottom:971.943333pt;}
.y77{bottom:993.335333pt;}
.h14{height:22.720000pt;}
.h13{height:23.856000pt;}
.h21{height:24.444740pt;}
.h28{height:24.530512pt;}
.h20{height:24.637166pt;}
.h1f{height:24.886027pt;}
.hf{height:26.948012pt;}
.h1a{height:28.839615pt;}
.h26{height:29.576533pt;}
.h12{height:30.292955pt;}
.hb{height:30.618428pt;}
.h6{height:31.889040pt;}
.h9{height:34.608000pt;}
.h11{height:36.384000pt;}
.h27{height:36.530667pt;}
.h29{height:36.672000pt;}
.h1e{height:36.960000pt;}
.h19{height:38.453333pt;}
.h15{height:38.937500pt;}
.hc{height:40.426667pt;}
.h24{height:40.432000pt;}
.h1c{height:40.746667pt;}
.h17{height:41.875000pt;}
.h22{height:43.117805pt;}
.h23{height:43.119938pt;}
.h25{height:45.472567pt;}
.h1d{height:47.640129pt;}
.hd{height:47.944129pt;}
.h18{height:47.946262pt;}
.h10{height:47.948396pt;}
.h1b{height:47.949462pt;}
.h7{height:48.047630pt;}
.h5{height:49.649218pt;}
.h8{height:52.554262pt;}
.ha{height:57.656250pt;}
.h4{height:65.370282pt;}
.h3{height:78.869578pt;}
.he{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h16{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x2a{left:24.000000pt;}
.x2{left:56.692800pt;}
.x40{left:62.059733pt;}
.x36{left:68.636133pt;}
.x7{left:88.289733pt;}
.xe{left:118.752667pt;}
.xf{left:127.899333pt;}
.x2b{left:129.411333pt;}
.x3{left:140.900667pt;}
.x2c{left:146.419333pt;}
.x35{left:151.407333pt;}
.x4{left:153.675333pt;}
.x45{left:162.142000pt;}
.x46{left:175.596667pt;}
.x41{left:186.859333pt;}
.x42{left:192.302000pt;}
.x12{left:198.274000pt;}
.x14{left:199.860667pt;}
.x13{left:208.856667pt;}
.x15{left:211.351333pt;}
.x3d{left:228.207333pt;}
.xc{left:230.172667pt;}
.x3e{left:234.556667pt;}
.x3f{left:236.900667pt;}
.x31{left:238.866000pt;}
.xd{left:240.151333pt;}
.x32{left:251.867333pt;}
.xa{left:257.386000pt;}
.x5{left:260.408667pt;}
.x26{left:265.624640pt;}
.x6{left:273.108667pt;}
.xb{left:277.719333pt;}
.x17{left:326.551333pt;}
.x43{left:335.168667pt;}
.x33{left:338.720667pt;}
.x18{left:341.215333pt;}
.x2f{left:342.576667pt;}
.x44{left:349.682000pt;}
.x34{left:353.083333pt;}
.x10{left:354.746000pt;}
.x16{left:356.938000pt;}
.x30{left:357.920667pt;}
.x11{left:365.707333pt;}
.x2d{left:366.992667pt;}
.x2e{left:379.238000pt;}
.x1a{left:408.640667pt;}
.x55{left:413.934000pt;}
.x19{left:420.659333pt;}
.x52{left:422.022000pt;}
.x53{left:432.679333pt;}
.x8{left:437.971333pt;}
.x51{left:440.691333pt;}
.x54{left:443.338000pt;}
.x47{left:499.275333pt;}
.x4f{left:503.735333pt;}
.x23{left:509.404667pt;}
.x37{left:514.923333pt;}
.x48{left:515.830000pt;}
.x50{left:517.946000pt;}
.x24{left:528.907333pt;}
.x38{left:537.751333pt;}
.x29{left:540.933333pt;}
.x21{left:542.512667pt;}
.x22{left:555.515333pt;}
.x9{left:567.608667pt;}
.x1d{left:577.134000pt;}
.x28{left:583.333200pt;}
.x3a{left:595.275333pt;}
.x1e{left:596.484667pt;}
.x1f{left:597.996667pt;}
.x4d{left:602.759333pt;}
.x27{left:605.934000pt;}
.x20{left:607.370000pt;}
.x3b{left:609.335333pt;}
.x4b{left:611.224667pt;}
.x4e{left:617.499333pt;}
.x4c{left:624.302000pt;}
.x49{left:642.898000pt;}
.x4a{left:668.900667pt;}
.x39{left:676.762000pt;}
.x1b{left:689.234000pt;}
.x25{left:690.671333pt;}
.x1c{left:700.422000pt;}
.x3c{left:707.603333pt;}
}




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