
    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_d19d6c3259f7aeac7d8078f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943500;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_29b5a4528ec5d1958e4daca4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119500;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_b4d31a9096d397ace2d05548.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_252bf4cd4a25b6947d5c7bd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918500;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_bbf67c988a77815e27478978.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.674000;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_a0cb512b4b8db01ad6a05e1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.744500;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_0fa9bd55a5523c8497a3aafe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923500;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_b7e181e61e5b46af5b84b27a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923500;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_1c1debf6176dc4af8bc8f1fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_5233cacdcdf35751e3bb1c8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.732500;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_5233cacdcdf35751e3bb1c8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732500;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_a3987bb33079091c619d08df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744500;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_9bf708f59c302838b949ea34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.731000;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_559764242ff9b41d66cdaa08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.751000;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_6de0a4bad0764c35a9757d6a.woff2')format("woff");}.fff{font-family:fff;line-height:0.744500;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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);}
.v3{vertical-align:-32.400600px;}
.v7{vertical-align:-21.600000px;}
.v4{vertical-align:-18.900000px;}
.v8{vertical-align:-15.840000px;}
.va{vertical-align:-14.835000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:15.830400px;}
.v9{vertical-align:20.250600px;}
.v6{vertical-align:21.600000px;}
.v5{vertical-align:24.480000px;}
.v2{vertical-align:32.400600px;}
.ls11c{letter-spacing:-11.520000px;}
.ls126{letter-spacing:-5.310000px;}
.ls12{letter-spacing:-4.737600px;}
.ls6c{letter-spacing:-4.320000px;}
.lse0{letter-spacing:-3.792000px;}
.ls10c{letter-spacing:-3.690000px;}
.ls12a{letter-spacing:-3.645000px;}
.ls10e{letter-spacing:-3.555000px;}
.lsdc{letter-spacing:-3.504000px;}
.lsac{letter-spacing:-3.408000px;}
.ls51{letter-spacing:-3.402000px;}
.ls73{letter-spacing:-3.312000px;}
.lsee{letter-spacing:-3.120000px;}
.ls124{letter-spacing:-3.015000px;}
.ls130{letter-spacing:-2.880000px;}
.ls114{letter-spacing:-2.700000px;}
.ls108{letter-spacing:-2.544000px;}
.lsf7{letter-spacing:-2.448000px;}
.ls12b{letter-spacing:-2.430000px;}
.lsf8{letter-spacing:-2.400000px;}
.ls11e{letter-spacing:-2.340000px;}
.ls128{letter-spacing:-2.205000px;}
.ls135{letter-spacing:-2.115000px;}
.lsd3{letter-spacing:-2.112000px;}
.ls65{letter-spacing:-2.064000px;}
.ls111{letter-spacing:-1.980000px;}
.ls112{letter-spacing:-1.935000px;}
.ls64{letter-spacing:-1.920000px;}
.ls13{letter-spacing:-1.872000px;}
.ls122{letter-spacing:-1.845000px;}
.lsc8{letter-spacing:-1.824000px;}
.ls120{letter-spacing:-1.755000px;}
.lse2{letter-spacing:-1.728000px;}
.ls16{letter-spacing:-1.713600px;}
.ls69{letter-spacing:-1.680000px;}
.ls6e{letter-spacing:-1.632000px;}
.ls15{letter-spacing:-1.612800px;}
.ls119{letter-spacing:-1.575000px;}
.lsed{letter-spacing:-1.536000px;}
.ls116{letter-spacing:-1.530000px;}
.ls6b{letter-spacing:-1.488000px;}
.ls117{letter-spacing:-1.485000px;}
.lsb0{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.411200px;}
.ls18{letter-spacing:-1.360800px;}
.lsfa{letter-spacing:-1.344000px;}
.ls12f{letter-spacing:-1.305000px;}
.lsd6{letter-spacing:-1.296000px;}
.ls4a{letter-spacing:-1.260000px;}
.ls10f{letter-spacing:-1.215000px;}
.ls6f{letter-spacing:-1.200000px;}
.lsb7{letter-spacing:-1.170000px;}
.ls61{letter-spacing:-1.104000px;}
.ls14{letter-spacing:-1.080000px;}
.lsec{letter-spacing:-1.056000px;}
.lsb{letter-spacing:-1.050000px;}
.lsc{letter-spacing:-1.008000px;}
.ls118{letter-spacing:-0.990000px;}
.lsde{letter-spacing:-0.960000px;}
.ls115{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.864000px;}
.ls123{letter-spacing:-0.855000px;}
.ls46{letter-spacing:-0.823200px;}
.lsfd{letter-spacing:-0.816000px;}
.ls113{letter-spacing:-0.810000px;}
.lsc7{letter-spacing:-0.768000px;}
.ls11d{letter-spacing:-0.765000px;}
.ls75{letter-spacing:-0.720000px;}
.ls127{letter-spacing:-0.675000px;}
.ls60{letter-spacing:-0.672000px;}
.ls1f{letter-spacing:-0.655200px;}
.ls39{letter-spacing:-0.630000px;}
.lscb{letter-spacing:-0.624000px;}
.ls31{letter-spacing:-0.617400px;}
.ls129{letter-spacing:-0.585000px;}
.lsef{letter-spacing:-0.576000px;}
.ls134{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.529200px;}
.ls74{letter-spacing:-0.528000px;}
.ls105{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.470400px;}
.ls17{letter-spacing:-0.453600px;}
.ls12c{letter-spacing:-0.450000px;}
.ls71{letter-spacing:-0.432000px;}
.ls4d{letter-spacing:-0.420000px;}
.ls125{letter-spacing:-0.405000px;}
.ls72{letter-spacing:-0.384000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.352800px;}
.ls63{letter-spacing:-0.336000px;}
.lsbb{letter-spacing:-0.315000px;}
.ls2d{letter-spacing:-0.294000px;}
.ls62{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.252000px;}
.ls6d{letter-spacing:-0.240000px;}
.lsb6{letter-spacing:-0.225000px;}
.lse{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.205800px;}
.ls59{letter-spacing:-0.192000px;}
.ls133{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.151200px;}
.ls20{letter-spacing:-0.144000px;}
.ls11a{letter-spacing:-0.135000px;}
.ls4c{letter-spacing:-0.126000px;}
.lsad{letter-spacing:-0.096000px;}
.ls110{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls30{letter-spacing:-0.058800px;}
.ls52{letter-spacing:-0.054000px;}
.lsaf{letter-spacing:-0.053813px;}
.lsdb{letter-spacing:-0.048000px;}
.ls10d{letter-spacing:-0.045000px;}
.ls47{letter-spacing:-0.029400px;}
.lsa{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.029400px;}
.lsb9{letter-spacing:0.045000px;}
.ls76{letter-spacing:0.048000px;}
.ls36{letter-spacing:0.058800px;}
.ls95{letter-spacing:0.066600px;}
.lsf{letter-spacing:0.072000px;}
.ls42{letter-spacing:0.088200px;}
.ls7c{letter-spacing:0.096000px;}
.ls26{letter-spacing:0.100800px;}
.ls8e{letter-spacing:0.114000px;}
.ls91{letter-spacing:0.118200px;}
.ls8d{letter-spacing:0.129000px;}
.lsc1{letter-spacing:0.129600px;}
.ls97{letter-spacing:0.135000px;}
.ls99{letter-spacing:0.136800px;}
.ls8a{letter-spacing:0.139800px;}
.lsbc{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.151200px;}
.lsd0{letter-spacing:0.178800px;}
.ls131{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.201600px;}
.lsb5{letter-spacing:0.225000px;}
.ls5a{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.240600px;}
.ls41{letter-spacing:0.264600px;}
.ls5f{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.294000px;}
.lsb3{letter-spacing:0.315000px;}
.ls68{letter-spacing:0.336000px;}
.ls11b{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.371400px;}
.ls53{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.382200px;}
.lsc4{letter-spacing:0.384000px;}
.ls67{letter-spacing:0.396000px;}
.ls82{letter-spacing:0.402000px;}
.lsf0{letter-spacing:0.405000px;}
.ls44{letter-spacing:0.411600px;}
.ls3{letter-spacing:0.425400px;}
.ls5e{letter-spacing:0.432000px;}
.ls8c{letter-spacing:0.445500px;}
.lsa5{letter-spacing:0.450000px;}
.ls21{letter-spacing:0.453600px;}
.lsaa{letter-spacing:0.456600px;}
.ls92{letter-spacing:0.468000px;}
.ls3d{letter-spacing:0.470400px;}
.lsa8{letter-spacing:0.471600px;}
.ls7a{letter-spacing:0.474000px;}
.ls9f{letter-spacing:0.475200px;}
.ls9c{letter-spacing:0.475800px;}
.ls4e{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.481200px;}
.lse9{letter-spacing:0.484800px;}
.ls78{letter-spacing:0.489600px;}
.lse4{letter-spacing:0.494400px;}
.ls106{letter-spacing:0.495000px;}
.lsa4{letter-spacing:0.498000px;}
.ls2f{letter-spacing:0.499800px;}
.ls23{letter-spacing:0.504000px;}
.lsa3{letter-spacing:0.505200px;}
.lse3{letter-spacing:0.508800px;}
.lsd1{letter-spacing:0.513600px;}
.lse5{letter-spacing:0.518400px;}
.ls79{letter-spacing:0.523200px;}
.ls107{letter-spacing:0.528000px;}
.ls4f{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.554400px;}
.ls57{letter-spacing:0.576000px;}
.ls89{letter-spacing:0.585000px;}
.ls3c{letter-spacing:0.588000px;}
.lsa2{letter-spacing:0.603000px;}
.ls27{letter-spacing:0.604800px;}
.ls35{letter-spacing:0.617400px;}
.ls5d{letter-spacing:0.624000px;}
.ls7b{letter-spacing:0.628800px;}
.lsb2{letter-spacing:0.630000px;}
.lsd9{letter-spacing:0.638400px;}
.ls49{letter-spacing:0.646800px;}
.ls50{letter-spacing:0.648000px;}
.lsca{letter-spacing:0.672000px;}
.lsba{letter-spacing:0.675000px;}
.ls4{letter-spacing:0.705000px;}
.ls3a{letter-spacing:0.705600px;}
.ls4b{letter-spacing:0.714000px;}
.ls58{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.735000px;}
.lsc9{letter-spacing:0.739200px;}
.ls11{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.757800px;}
.ls10b{letter-spacing:0.765000px;}
.ls5c{letter-spacing:0.768000px;}
.lsc0{letter-spacing:0.785400px;}
.ls7d{letter-spacing:0.789000px;}
.lsb1{letter-spacing:0.810000px;}
.ls7e{letter-spacing:0.814800px;}
.ls6a{letter-spacing:0.816000px;}
.lsb4{letter-spacing:0.855000px;}
.ls8{letter-spacing:0.858000px;}
.ls8b{letter-spacing:0.861000px;}
.lsda{letter-spacing:0.864000px;}
.ls98{letter-spacing:0.870600px;}
.ls37{letter-spacing:0.882000px;}
.lsb8{letter-spacing:0.900000px;}
.ls8f{letter-spacing:0.904800px;}
.lsf1{letter-spacing:0.906600px;}
.ls43{letter-spacing:0.911400px;}
.lse6{letter-spacing:0.912000px;}
.ls81{letter-spacing:0.913800px;}
.ls9a{letter-spacing:0.930000px;}
.ls12d{letter-spacing:0.945000px;}
.ls5{letter-spacing:0.954600px;}
.lsfe{letter-spacing:0.960000px;}
.lscf{letter-spacing:0.989400px;}
.ls12e{letter-spacing:0.990000px;}
.ls1c{letter-spacing:1.008000px;}
.lsa7{letter-spacing:1.035000px;}
.lsc6{letter-spacing:1.035600px;}
.ls7f{letter-spacing:1.044600px;}
.lsbe{letter-spacing:1.048200px;}
.lsbd{letter-spacing:1.054200px;}
.lsbf{letter-spacing:1.054800px;}
.lscd{letter-spacing:1.056000px;}
.ls10{letter-spacing:1.058400px;}
.lsc3{letter-spacing:1.063200px;}
.lsc5{letter-spacing:1.065000px;}
.lsc2{letter-spacing:1.070400px;}
.ls48{letter-spacing:1.087800px;}
.ls84{letter-spacing:1.098000px;}
.lseb{letter-spacing:1.104000px;}
.ls85{letter-spacing:1.107000px;}
.lsce{letter-spacing:1.108800px;}
.ls3e{letter-spacing:1.146600px;}
.lsd5{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.159200px;}
.ls38{letter-spacing:1.167600px;}
.ls11f{letter-spacing:1.170000px;}
.lsd8{letter-spacing:1.200000px;}
.ls10a{letter-spacing:1.215000px;}
.ls45{letter-spacing:1.234800px;}
.lsd4{letter-spacing:1.248000px;}
.ls28{letter-spacing:1.260000px;}
.lse7{letter-spacing:1.296000px;}
.lsd7{letter-spacing:1.344000px;}
.ls25{letter-spacing:1.360800px;}
.ls5b{letter-spacing:1.392000px;}
.ls136{letter-spacing:1.440000px;}
.ls94{letter-spacing:1.485000px;}
.lse1{letter-spacing:1.488000px;}
.ls103{letter-spacing:1.536000px;}
.lsf5{letter-spacing:1.584000px;}
.ls9b{letter-spacing:1.584600px;}
.ls9e{letter-spacing:1.585800px;}
.lsa1{letter-spacing:1.587000px;}
.ls80{letter-spacing:1.606800px;}
.lsa6{letter-spacing:1.608600px;}
.lsf3{letter-spacing:1.632000px;}
.lsa9{letter-spacing:1.635600px;}
.lsf6{letter-spacing:1.680000px;}
.lsf4{letter-spacing:1.728000px;}
.lsf9{letter-spacing:1.776000px;}
.lse8{letter-spacing:1.872000px;}
.lsfb{letter-spacing:1.920000px;}
.lsf2{letter-spacing:1.951200px;}
.ls100{letter-spacing:2.016000px;}
.lsea{letter-spacing:2.064000px;}
.ls132{letter-spacing:2.115000px;}
.ls121{letter-spacing:2.160000px;}
.ls102{letter-spacing:2.208000px;}
.lsfc{letter-spacing:2.400000px;}
.ls77{letter-spacing:2.592000px;}
.lsdf{letter-spacing:2.640000px;}
.lsdd{letter-spacing:2.880000px;}
.ls96{letter-spacing:2.893500px;}
.ls55{letter-spacing:2.898000px;}
.ls90{letter-spacing:2.925000px;}
.ls93{letter-spacing:2.929500px;}
.lsab{letter-spacing:2.943000px;}
.ls70{letter-spacing:3.312000px;}
.lscc{letter-spacing:4.032000px;}
.ls104{letter-spacing:5.136000px;}
.ls101{letter-spacing:5.424000px;}
.ls138{letter-spacing:5.616000px;}
.ls137{letter-spacing:5.664000px;}
.ls109{letter-spacing:5.904000px;}
.ls56{letter-spacing:5.940000px;}
.ls54{letter-spacing:6.000000px;}
.lsd2{letter-spacing:6.420000px;}
.lsae{letter-spacing:6.720000px;}
.ls66{letter-spacing:8.400000px;}
.lsd{letter-spacing:10.800000px;}
.lsff{letter-spacing:68.030400px;}
.ls1{letter-spacing:90.193800px;}
.ls2{letter-spacing:90.194400px;}
.ls0{letter-spacing:92.029800px;}
.ls86{letter-spacing:115.110000px;}
.ls83{letter-spacing:118.710000px;}
.lsa0{letter-spacing:167.400000px;}
.ls9d{letter-spacing:293.913000px;}
.ls87{letter-spacing:438.660000px;}
.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;}
}
.wsb2{word-spacing:-21.000000px;}
.wsc8{word-spacing:-20.580000px;}
.ws64{word-spacing:-20.520000px;}
.ws66{word-spacing:-18.606000px;}
.ws4{word-spacing:-18.432000px;}
.wsf0{word-spacing:-17.568000px;}
.ws3{word-spacing:-17.496000px;}
.ws163{word-spacing:-17.328000px;}
.wse1{word-spacing:-17.088000px;}
.wse3{word-spacing:-16.800000px;}
.ws55{word-spacing:-15.060000px;}
.ws7c{word-spacing:-14.580000px;}
.wse4{word-spacing:-14.496000px;}
.ws3d{word-spacing:-14.328000px;}
.ws65{word-spacing:-14.202000px;}
.ws126{word-spacing:-13.680000px;}
.ws7b{word-spacing:-13.380000px;}
.wsb4{word-spacing:-13.008000px;}
.ws162{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.700800px;}
.ws164{word-spacing:-12.480000px;}
.ws12f{word-spacing:-12.375000px;}
.wse2{word-spacing:-12.336000px;}
.wsa1{word-spacing:-12.330000px;}
.wse9{word-spacing:-12.195000px;}
.wsf1{word-spacing:-12.105000px;}
.wsf{word-spacing:-11.894400px;}
.wsec{word-spacing:-11.835000px;}
.wscc{word-spacing:-11.616000px;}
.wse7{word-spacing:-11.565000px;}
.ws92{word-spacing:-11.520000px;}
.ws94{word-spacing:-11.295000px;}
.ws103{word-spacing:-11.250000px;}
.ws7d{word-spacing:-11.232000px;}
.ws99{word-spacing:-11.160000px;}
.ws124{word-spacing:-11.115000px;}
.ws54{word-spacing:-11.088000px;}
.wsf5{word-spacing:-11.025000px;}
.wsf4{word-spacing:-10.980000px;}
.ws161{word-spacing:-10.935000px;}
.ws104{word-spacing:-10.890000px;}
.wsfc{word-spacing:-10.845000px;}
.ws9f{word-spacing:-10.800000px;}
.ws127{word-spacing:-10.755000px;}
.ws34{word-spacing:-10.752000px;}
.wsf8{word-spacing:-10.710000px;}
.ws128{word-spacing:-10.665000px;}
.ws7a{word-spacing:-10.656000px;}
.wsfd{word-spacing:-10.620000px;}
.ws9a{word-spacing:-10.530000px;}
.wsf3{word-spacing:-10.485000px;}
.wsf6{word-spacing:-10.440000px;}
.ws102{word-spacing:-10.395000px;}
.ws97{word-spacing:-10.350000px;}
.ws100{word-spacing:-10.305000px;}
.wsfe{word-spacing:-10.170000px;}
.ws129{word-spacing:-10.125000px;}
.ws12e{word-spacing:-10.080000px;}
.ws15f{word-spacing:-9.990000px;}
.wsfa{word-spacing:-9.900000px;}
.ws15e{word-spacing:-9.855000px;}
.wsf2{word-spacing:-9.810000px;}
.ws122{word-spacing:-9.765000px;}
.ws101{word-spacing:-9.720000px;}
.ws56{word-spacing:-9.676800px;}
.ws160{word-spacing:-9.450000px;}
.wsf9{word-spacing:-9.360000px;}
.wsac{word-spacing:-9.340800px;}
.ws12d{word-spacing:-9.315000px;}
.wsb3{word-spacing:-9.240000px;}
.wsff{word-spacing:-9.000000px;}
.wsfb{word-spacing:-8.820000px;}
.ws125{word-spacing:-8.775000px;}
.ws4f{word-spacing:-8.761200px;}
.ws48{word-spacing:-8.673000px;}
.ws52{word-spacing:-8.614200px;}
.ws79{word-spacing:-8.601600px;}
.wsf7{word-spacing:-8.550000px;}
.ws12a{word-spacing:-8.505000px;}
.ws4d{word-spacing:-8.437800px;}
.ws12b{word-spacing:-8.325000px;}
.ws8c{word-spacing:-8.265600px;}
.ws4a{word-spacing:-8.261400px;}
.ws43{word-spacing:-8.232000px;}
.ws123{word-spacing:-8.190000px;}
.ws53{word-spacing:-8.173200px;}
.ws30{word-spacing:-8.143800px;}
.ws46{word-spacing:-8.114400px;}
.ws96{word-spacing:-8.064000px;}
.ws2a{word-spacing:-8.026200px;}
.ws47{word-spacing:-7.996800px;}
.ws40{word-spacing:-7.992000px;}
.ws4e{word-spacing:-7.938000px;}
.ws2d{word-spacing:-7.908600px;}
.ws44{word-spacing:-7.820400px;}
.ws4b{word-spacing:-7.791000px;}
.ws4c{word-spacing:-7.614600px;}
.ws31{word-spacing:-7.585200px;}
.ws49{word-spacing:-7.555800px;}
.ws27{word-spacing:-7.526400px;}
.ws51{word-spacing:-7.497000px;}
.ws2b{word-spacing:-7.467600px;}
.ws2e{word-spacing:-7.320600px;}
.ws28{word-spacing:-7.232400px;}
.ws45{word-spacing:-7.173600px;}
.ws2f{word-spacing:-7.056000px;}
.ws29{word-spacing:-6.997200px;}
.ws2c{word-spacing:-6.909000px;}
.ws12c{word-spacing:-6.885000px;}
.wsa4{word-spacing:-6.720000px;}
.ws50{word-spacing:-6.703200px;}
.ws68{word-spacing:-6.000000px;}
.ws3f{word-spacing:-5.040000px;}
.ws107{word-spacing:-4.140000px;}
.wsb1{word-spacing:-4.032000px;}
.ws114{word-spacing:-4.005000px;}
.ws168{word-spacing:-3.870000px;}
.ws144{word-spacing:-3.375000px;}
.ws83{word-spacing:-3.312000px;}
.ws67{word-spacing:-2.898000px;}
.wsbf{word-spacing:-2.880000px;}
.wsc2{word-spacing:-2.640000px;}
.ws8a{word-spacing:-2.592000px;}
.wsde{word-spacing:-2.400000px;}
.ws13c{word-spacing:-2.385000px;}
.ws15d{word-spacing:-2.160000px;}
.wscd{word-spacing:-2.064000px;}
.wsed{word-spacing:-2.016000px;}
.wsdd{word-spacing:-1.920000px;}
.ws155{word-spacing:-1.890000px;}
.wscb{word-spacing:-1.872000px;}
.wsdb{word-spacing:-1.776000px;}
.wsd5{word-spacing:-1.728000px;}
.wsd7{word-spacing:-1.680000px;}
.wsd4{word-spacing:-1.632000px;}
.wsd6{word-spacing:-1.584000px;}
.wsef{word-spacing:-1.536000px;}
.wsc4{word-spacing:-1.488000px;}
.ws169{word-spacing:-1.485000px;}
.ws132{word-spacing:-1.440000px;}
.ws6d{word-spacing:-1.392000px;}
.wsba{word-spacing:-1.344000px;}
.wsca{word-spacing:-1.296000px;}
.ws156{word-spacing:-1.260000px;}
.wsb6{word-spacing:-1.248000px;}
.ws108{word-spacing:-1.215000px;}
.wsbb{word-spacing:-1.200000px;}
.ws137{word-spacing:-1.170000px;}
.wsb8{word-spacing:-1.152000px;}
.wsce{word-spacing:-1.104000px;}
.wsd1{word-spacing:-1.056000px;}
.wsda{word-spacing:-1.008000px;}
.ws15a{word-spacing:-0.990000px;}
.wse0{word-spacing:-0.960000px;}
.ws157{word-spacing:-0.945000px;}
.wsc9{word-spacing:-0.912000px;}
.ws10d{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.882000px;}
.wsbc{word-spacing:-0.864000px;}
.wsa7{word-spacing:-0.855000px;}
.ws7f{word-spacing:-0.816000px;}
.wsa6{word-spacing:-0.810000px;}
.ws6e{word-spacing:-0.768000px;}
.ws138{word-spacing:-0.765000px;}
.ws5a{word-spacing:-0.756000px;}
.ws6a{word-spacing:-0.720000px;}
.ws59{word-spacing:-0.714000px;}
.wsaa{word-spacing:-0.675000px;}
.wsaf{word-spacing:-0.672000px;}
.ws5e{word-spacing:-0.648000px;}
.ws11b{word-spacing:-0.630000px;}
.ws6f{word-spacing:-0.624000px;}
.ws113{word-spacing:-0.585000px;}
.ws69{word-spacing:-0.576000px;}
.ws5d{word-spacing:-0.540000px;}
.ws105{word-spacing:-0.528000px;}
.ws109{word-spacing:-0.495000px;}
.ws75{word-spacing:-0.480000px;}
.ws70{word-spacing:-0.432000px;}
.ws152{word-spacing:-0.405000px;}
.wsc5{word-spacing:-0.384000px;}
.ws61{word-spacing:-0.378000px;}
.ws147{word-spacing:-0.360000px;}
.ws87{word-spacing:-0.336000px;}
.ws13e{word-spacing:-0.315000px;}
.ws71{word-spacing:-0.288000px;}
.ws141{word-spacing:-0.270000px;}
.ws6c{word-spacing:-0.240000px;}
.ws167{word-spacing:-0.180000px;}
.ws38{word-spacing:-0.144000px;}
.ws11f{word-spacing:-0.135000px;}
.wsc0{word-spacing:-0.096000px;}
.ws37{word-spacing:-0.072000px;}
.ws8b{word-spacing:-0.053813px;}
.ws89{word-spacing:-0.048000px;}
.wsa8{word-spacing:-0.045000px;}
.ws32{word-spacing:0.000000px;}
.wsbd{word-spacing:0.048000px;}
.ws60{word-spacing:0.054000px;}
.ws3a{word-spacing:0.072000px;}
.wsa3{word-spacing:0.096000px;}
.ws5b{word-spacing:0.126000px;}
.ws3c{word-spacing:0.144000px;}
.ws16a{word-spacing:0.180000px;}
.ws6b{word-spacing:0.192000px;}
.ws36{word-spacing:0.216000px;}
.wsa9{word-spacing:0.225000px;}
.ws82{word-spacing:0.240000px;}
.ws74{word-spacing:0.288000px;}
.wsab{word-spacing:0.315000px;}
.ws76{word-spacing:0.336000px;}
.ws3b{word-spacing:0.360000px;}
.ws85{word-spacing:0.384000px;}
.ws154{word-spacing:0.405000px;}
.ws5c{word-spacing:0.420000px;}
.ws84{word-spacing:0.432000px;}
.ws41{word-spacing:0.453600px;}
.wsc7{word-spacing:0.480000px;}
.ws88{word-spacing:0.528000px;}
.wsd3{word-spacing:0.576000px;}
.ws146{word-spacing:0.585000px;}
.wsb0{word-spacing:0.624000px;}
.ws57{word-spacing:0.630000px;}
.ws72{word-spacing:0.672000px;}
.ws143{word-spacing:0.675000px;}
.ws39{word-spacing:0.720000px;}
.wsad{word-spacing:0.768000px;}
.ws117{word-spacing:0.810000px;}
.wsdf{word-spacing:0.816000px;}
.ws131{word-spacing:0.855000px;}
.ws3e{word-spacing:0.864000px;}
.wsc1{word-spacing:0.960000px;}
.ws11c{word-spacing:0.990000px;}
.ws35{word-spacing:1.008000px;}
.ws33{word-spacing:1.050000px;}
.wscf{word-spacing:1.056000px;}
.ws73{word-spacing:1.104000px;}
.ws110{word-spacing:1.215000px;}
.ws58{word-spacing:1.260000px;}
.wsb9{word-spacing:1.296000px;}
.ws15b{word-spacing:1.305000px;}
.wsdc{word-spacing:1.344000px;}
.wsa5{word-spacing:1.440000px;}
.ws11a{word-spacing:1.485000px;}
.ws80{word-spacing:1.488000px;}
.ws14a{word-spacing:1.530000px;}
.wsd0{word-spacing:1.536000px;}
.ws11d{word-spacing:1.575000px;}
.wsb7{word-spacing:1.632000px;}
.ws7e{word-spacing:1.680000px;}
.wsc6{word-spacing:1.728000px;}
.ws150{word-spacing:1.755000px;}
.wsae{word-spacing:1.824000px;}
.ws10f{word-spacing:1.845000px;}
.ws77{word-spacing:1.920000px;}
.ws112{word-spacing:1.935000px;}
.ws13a{word-spacing:2.025000px;}
.ws78{word-spacing:2.064000px;}
.wsb5{word-spacing:2.112000px;}
.ws16b{word-spacing:2.115000px;}
.ws14c{word-spacing:2.295000px;}
.wsd9{word-spacing:2.400000px;}
.ws14b{word-spacing:2.430000px;}
.wsd8{word-spacing:2.448000px;}
.ws106{word-spacing:2.544000px;}
.wsee{word-spacing:2.592000px;}
.ws13f{word-spacing:2.745000px;}
.ws15c{word-spacing:2.880000px;}
.ws13d{word-spacing:3.015000px;}
.wsd2{word-spacing:3.120000px;}
.ws86{word-spacing:3.312000px;}
.ws165{word-spacing:3.330000px;}
.ws111{word-spacing:3.375000px;}
.ws5f{word-spacing:3.402000px;}
.wsa2{word-spacing:3.408000px;}
.wsbe{word-spacing:3.504000px;}
.ws171{word-spacing:3.510000px;}
.ws10e{word-spacing:3.555000px;}
.ws10c{word-spacing:3.690000px;}
.wsc3{word-spacing:3.792000px;}
.ws14e{word-spacing:3.870000px;}
.ws16d{word-spacing:4.230000px;}
.ws14d{word-spacing:4.275000px;}
.ws81{word-spacing:4.320000px;}
.ws118{word-spacing:4.680000px;}
.ws16f{word-spacing:4.725000px;}
.ws140{word-spacing:5.040000px;}
.ws139{word-spacing:5.220000px;}
.ws142{word-spacing:5.310000px;}
.ws170{word-spacing:5.355000px;}
.ws136{word-spacing:5.625000px;}
.ws149{word-spacing:5.805000px;}
.ws10a{word-spacing:5.850000px;}
.ws133{word-spacing:5.985000px;}
.ws13b{word-spacing:6.075000px;}
.ws158{word-spacing:7.830000px;}
.ws148{word-spacing:8.055000px;}
.ws10b{word-spacing:8.505000px;}
.ws115{word-spacing:8.955000px;}
.ws62{word-spacing:9.126000px;}
.ws16c{word-spacing:9.405000px;}
.ws130{word-spacing:9.495000px;}
.ws145{word-spacing:9.630000px;}
.ws116{word-spacing:10.035000px;}
.ws159{word-spacing:10.305000px;}
.ws134{word-spacing:10.485000px;}
.ws153{word-spacing:11.385000px;}
.ws120{word-spacing:11.520000px;}
.ws135{word-spacing:11.835000px;}
.ws16e{word-spacing:14.085000px;}
.ws121{word-spacing:17.910000px;}
.ws11e{word-spacing:23.895000px;}
.ws151{word-spacing:25.245000px;}
.ws166{word-spacing:25.875000px;}
.ws14f{word-spacing:34.920000px;}
.ws119{word-spacing:36.450000px;}
.ws8d{word-spacing:44.005500px;}
.ws9d{word-spacing:58.621500px;}
.ws15{word-spacing:77.045400px;}
.ws1a{word-spacing:77.261400px;}
.ws21{word-spacing:77.262000px;}
.ws25{word-spacing:77.448000px;}
.ws1e{word-spacing:77.463000px;}
.ws0{word-spacing:77.678520px;}
.wse{word-spacing:77.750400px;}
.ws1{word-spacing:78.279720px;}
.ws19{word-spacing:78.586800px;}
.ws24{word-spacing:78.587400px;}
.ws10{word-spacing:78.667800px;}
.ws13{word-spacing:78.794400px;}
.ws1c{word-spacing:78.854400px;}
.ws14{word-spacing:79.373400px;}
.ws20{word-spacing:79.494000px;}
.ws17{word-spacing:79.568040px;}
.ws1b{word-spacing:79.598760px;}
.ws1f{word-spacing:79.600200px;}
.ws26{word-spacing:80.061720px;}
.ws23{word-spacing:80.305800px;}
.wsb{word-spacing:80.487600px;}
.ws1d{word-spacing:80.492400px;}
.ws16{word-spacing:80.668800px;}
.wsc{word-spacing:80.673600px;}
.ws8{word-spacing:80.674200px;}
.ws7{word-spacing:80.676480px;}
.ws9{word-spacing:80.687160px;}
.ws11{word-spacing:81.110160px;}
.ws5{word-spacing:81.156600px;}
.wsa{word-spacing:82.501080px;}
.wsd{word-spacing:82.599000px;}
.ws22{word-spacing:83.012400px;}
.ws18{word-spacing:83.199000px;}
.ws6{word-spacing:83.201760px;}
.ws98{word-spacing:83.920500px;}
.ws2{word-spacing:87.430200px;}
.ws95{word-spacing:103.167000px;}
.ws91{word-spacing:139.680000px;}
.ws9e{word-spacing:151.600500px;}
.wsa0{word-spacing:154.440000px;}
.ws9c{word-spacing:165.276000px;}
.ws8f{word-spacing:185.769000px;}
.ws9b{word-spacing:194.638500px;}
.ws8e{word-spacing:215.334000px;}
.ws93{word-spacing:228.654000px;}
.wse8{word-spacing:260.478000px;}
.wsea{word-spacing:286.857000px;}
.wseb{word-spacing:304.276500px;}
.ws90{word-spacing:305.946000px;}
.wse6{word-spacing:387.274500px;}
.wse5{word-spacing:663.174000px;}
.ws63{word-spacing:2519.881800px;}
._15{margin-left:-12.564000px;}
._27{margin-left:-11.143200px;}
._1a{margin-left:-7.572000px;}
._9{margin-left:-6.429600px;}
._1b{margin-left:-5.293200px;}
._6{margin-left:-4.244400px;}
._7{margin-left:-2.548800px;}
._5{margin-left:-1.544400px;}
._2{width:1.360800px;}
._4{width:2.562000px;}
._b{width:3.574800px;}
._8{width:4.762800px;}
._a{width:6.523200px;}
._c{width:8.321400px;}
._3{width:9.450000px;}
._d{width:11.080800px;}
._10{width:12.166200px;}
._f{width:13.994400px;}
._e{width:15.223200px;}
._11{width:17.173200px;}
._12{width:18.285600px;}
._14{width:19.488000px;}
._13{width:21.024000px;}
._1c{width:22.296000px;}
._1d{width:23.481600px;}
._28{width:25.772400px;}
._1e{width:27.789600px;}
._2c{width:29.546100px;}
._2a{width:34.073100px;}
._2b{width:38.970000px;}
._29{width:41.052600px;}
._20{width:67.137000px;}
._1f{width:68.381400px;}
._2d{width:70.043400px;}
._22{width:78.202800px;}
._18{width:86.695200px;}
._17{width:115.045200px;}
._16{width:141.359400px;}
._19{width:289.492200px;}
._24{width:320.130000px;}
._21{width:516.715200px;}
._23{width:544.773600px;}
._26{width:577.060200px;}
._25{width:652.366800px;}
._1{width:763.728000px;}
._0{width:1375.290000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.400000px;}
.fs10{font-size:31.500000px;}
.fsd{font-size:33.600000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:37.800000px;}
.fs0{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fse{font-size:53.813400px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs3{font-size:78.540000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.447800px;}
.y2{bottom:42.997800px;}
.y2f{bottom:64.462650px;}
.y6f{bottom:75.822150px;}
.y1cf{bottom:75.975000px;}
.y182{bottom:76.444950px;}
.y110{bottom:76.453650px;}
.yae{bottom:76.863900px;}
.yd4{bottom:76.875900px;}
.y11f{bottom:77.022900px;}
.y19f{bottom:77.246700px;}
.y1ee{bottom:79.093350px;}
.y2e{bottom:79.467150px;}
.y2e2{bottom:82.363650px;}
.y6e{bottom:90.826650px;}
.y1ce{bottom:92.475000px;}
.y2d{bottom:94.471650px;}
.y181{bottom:95.944950px;}
.y10f{bottom:95.953650px;}
.y21d{bottom:96.276750px;}
.yad{bottom:96.363900px;}
.yd3{bottom:96.375900px;}
.y11e{bottom:96.522900px;}
.y19e{bottom:96.746700px;}
.y231{bottom:97.032750px;}
.y2e1{bottom:98.113650px;}
.y1ed{bottom:98.593350px;}
.y2a1{bottom:98.794200px;}
.y261{bottom:99.097950px;}
.y87{bottom:102.532500px;}
.y6d{bottom:105.831150px;}
.y1cd{bottom:108.975000px;}
.y2e0{bottom:113.863650px;}
.y2a0{bottom:114.544200px;}
.y260{bottom:114.847950px;}
.y180{bottom:115.444950px;}
.y10e{bottom:115.453650px;}
.y21c{bottom:115.776750px;}
.yac{bottom:115.863900px;}
.yd2{bottom:115.875900px;}
.y11d{bottom:116.022900px;}
.y19d{bottom:116.246700px;}
.y1ec{bottom:118.093350px;}
.y6c{bottom:120.835650px;}
.y230{bottom:121.032750px;}
.y2c{bottom:121.737300px;}
.y86{bottom:125.037000px;}
.y1cc{bottom:125.475000px;}
.y2df{bottom:129.613650px;}
.y29f{bottom:130.294200px;}
.y17f{bottom:134.944950px;}
.y117{bottom:134.953650px;}
.y21b{bottom:135.276750px;}
.yab{bottom:135.363900px;}
.yd1{bottom:135.375900px;}
.y11c{bottom:135.522900px;}
.y19c{bottom:135.746700px;}
.y6b{bottom:135.840150px;}
.y1eb{bottom:137.593350px;}
.y2b{bottom:139.737300px;}
.y1f6{bottom:141.921000px;}
.y1cb{bottom:141.975000px;}
.y25f{bottom:144.097950px;}
.y10d{bottom:144.703650px;}
.y22f{bottom:145.032750px;}
.y2de{bottom:145.363650px;}
.y29e{bottom:146.044200px;}
.y85{bottom:147.541500px;}
.y6a{bottom:150.844650px;}
.y17e{bottom:154.444950px;}
.y116{bottom:154.453650px;}
.y21a{bottom:154.776750px;}
.yaa{bottom:154.863900px;}
.yd0{bottom:154.875900px;}
.y11b{bottom:155.022900px;}
.y19b{bottom:155.246700px;}
.y1ea{bottom:157.093350px;}
.y2a{bottom:157.737300px;}
.y1f5{bottom:158.421000px;}
.y1ca{bottom:158.475000px;}
.y2dd{bottom:161.113650px;}
.y29d{bottom:161.794200px;}
.y69{bottom:165.849150px;}
.y22e{bottom:169.032750px;}
.y84{bottom:170.046000px;}
.y17d{bottom:173.944950px;}
.y115{bottom:173.953650px;}
.y219{bottom:174.276750px;}
.ya9{bottom:174.363900px;}
.ycf{bottom:174.375900px;}
.y11a{bottom:174.522900px;}
.y19a{bottom:174.746700px;}
.y1f4{bottom:174.921000px;}
.y1c9{bottom:174.975000px;}
.y29{bottom:175.737300px;}
.y1e9{bottom:176.593350px;}
.y2dc{bottom:176.863650px;}
.y29c{bottom:177.544200px;}
.y68{bottom:180.853650px;}
.y10c{bottom:183.703650px;}
.y1f3{bottom:191.421000px;}
.y1c8{bottom:191.475000px;}
.y83{bottom:192.550500px;}
.y2db{bottom:192.613650px;}
.y22d{bottom:193.020750px;}
.y29b{bottom:193.294200px;}
.y17c{bottom:193.444950px;}
.y114{bottom:193.453650px;}
.y28{bottom:193.737300px;}
.y218{bottom:193.776750px;}
.ya8{bottom:193.863900px;}
.yce{bottom:193.875900px;}
.y119{bottom:194.022900px;}
.y199{bottom:194.246700px;}
.y25e{bottom:195.097950px;}
.y67{bottom:195.858150px;}
.y1e8{bottom:196.093350px;}
.y1c7{bottom:207.975000px;}
.y2da{bottom:208.363650px;}
.y29a{bottom:209.044200px;}
.y66{bottom:210.862650px;}
.y27{bottom:211.737300px;}
.y17b{bottom:212.944950px;}
.y113{bottom:212.953650px;}
.ya7{bottom:213.363900px;}
.ycd{bottom:213.375900px;}
.y118{bottom:213.522900px;}
.y198{bottom:213.746700px;}
.y82{bottom:215.055000px;}
.y1e7{bottom:215.593350px;}
.y25d{bottom:219.097950px;}
.y22c{bottom:222.276750px;}
.y217{bottom:223.032750px;}
.y2d9{bottom:224.113650px;}
.y1c6{bottom:224.475000px;}
.y299{bottom:224.794200px;}
.y65{bottom:225.867150px;}
.y26{bottom:229.737300px;}
.y17a{bottom:232.444950px;}
.y10b{bottom:232.453650px;}
.ya6{bottom:232.863900px;}
.ycc{bottom:232.875900px;}
.y197{bottom:233.246700px;}
.y1e6{bottom:235.093350px;}
.y81{bottom:237.559500px;}
.y2d8{bottom:239.863650px;}
.y298{bottom:240.544200px;}
.y64{bottom:240.871650px;}
.y1c5{bottom:240.975000px;}
.y25c{bottom:243.097950px;}
.y25{bottom:247.737300px;}
.y179{bottom:251.944950px;}
.y10a{bottom:251.953650px;}
.ya5{bottom:252.363900px;}
.ycb{bottom:252.375900px;}
.y196{bottom:252.746700px;}
.y1e5{bottom:254.593350px;}
.y2d7{bottom:255.613650px;}
.y63{bottom:255.876150px;}
.y297{bottom:256.294200px;}
.y80{bottom:260.064000px;}
.y130{bottom:260.312400px;}
.y14a{bottom:262.182900px;}
.y24{bottom:265.737300px;}
.y25b{bottom:267.097950px;}
.y150{bottom:267.496050px;}
.y62{bottom:270.880650px;}
.y2d6{bottom:271.363650px;}
.y178{bottom:271.444950px;}
.y109{bottom:271.453650px;}
.ya4{bottom:271.863900px;}
.yca{bottom:271.875900px;}
.y296{bottom:272.044200px;}
.y195{bottom:272.246700px;}
.y1e4{bottom:274.093350px;}
.y22b{bottom:277.776750px;}
.y216{bottom:281.532750px;}
.y7f{bottom:282.568500px;}
.y23{bottom:283.737300px;}
.y131{bottom:285.537431px;}
.y61{bottom:285.885150px;}
.y149{bottom:286.932900px;}
.y2d5{bottom:287.113650px;}
.y295{bottom:287.794200px;}
.y177{bottom:290.944950px;}
.y108{bottom:290.953650px;}
.y25a{bottom:291.097950px;}
.ya3{bottom:291.363900px;}
.yc9{bottom:291.375900px;}
.y194{bottom:291.746700px;}
.y1e3{bottom:293.593350px;}
.y22a{bottom:297.276750px;}
.y60{bottom:300.889650px;}
.y215{bottom:301.032750px;}
.y22{bottom:301.737300px;}
.y148{bottom:302.682900px;}
.y2d4{bottom:302.863650px;}
.y294{bottom:303.544200px;}
.y7e{bottom:305.073000px;}
.y176{bottom:310.444950px;}
.y107{bottom:310.453650px;}
.ya2{bottom:310.863900px;}
.yc8{bottom:310.875900px;}
.y193{bottom:311.246700px;}
.y1e2{bottom:313.093350px;}
.y259{bottom:315.097950px;}
.y5f{bottom:315.894150px;}
.y229{bottom:316.776750px;}
.y147{bottom:318.429000px;}
.y2d3{bottom:318.613650px;}
.y293{bottom:319.294200px;}
.y21{bottom:319.737300px;}
.y214{bottom:320.532750px;}
.y7d{bottom:327.577500px;}
.y175{bottom:329.944950px;}
.y112{bottom:329.953650px;}
.ya1{bottom:330.363900px;}
.yc7{bottom:330.375900px;}
.y192{bottom:330.746700px;}
.y5e{bottom:330.898650px;}
.y1e1{bottom:332.593350px;}
.y2d2{bottom:334.363650px;}
.y292{bottom:335.044200px;}
.y228{bottom:336.276750px;}
.y20{bottom:337.737300px;}
.y258{bottom:339.097950px;}
.y146{bottom:339.489000px;}
.y213{bottom:340.032750px;}
.y5d{bottom:345.903150px;}
.y174{bottom:349.444950px;}
.y106{bottom:349.453650px;}
.ya0{bottom:349.863900px;}
.yc6{bottom:349.875900px;}
.y7c{bottom:350.082000px;}
.y2d1{bottom:350.113650px;}
.y191{bottom:350.246700px;}
.y291{bottom:350.794200px;}
.y1e0{bottom:352.093350px;}
.y145{bottom:355.235100px;}
.y1f{bottom:355.737300px;}
.y227{bottom:355.776750px;}
.y212{bottom:359.532750px;}
.y5c{bottom:360.907650px;}
.y257{bottom:363.097950px;}
.y2d0{bottom:365.863650px;}
.y290{bottom:366.544200px;}
.y173{bottom:368.944950px;}
.y105{bottom:368.953650px;}
.y9f{bottom:369.363900px;}
.yc5{bottom:369.375900px;}
.y190{bottom:369.746700px;}
.y1df{bottom:371.593350px;}
.y1bb{bottom:371.960850px;}
.y7b{bottom:372.541500px;}
.y1e{bottom:373.737300px;}
.y226{bottom:375.276750px;}
.y5b{bottom:375.912150px;}
.y144{bottom:376.295100px;}
.y1f2{bottom:378.703650px;}
.y211{bottom:379.032750px;}
.y2cf{bottom:381.613650px;}
.y28f{bottom:382.294200px;}
.y172{bottom:384.487350px;}
.y256{bottom:387.097950px;}
.y171{bottom:388.444950px;}
.y104{bottom:388.453650px;}
.y9e{bottom:388.863900px;}
.yc4{bottom:388.875900px;}
.y18f{bottom:389.246700px;}
.y5a{bottom:390.916650px;}
.y1de{bottom:391.093350px;}
.y1ba{bottom:391.460850px;}
.y1d{bottom:391.737300px;}
.y141{bottom:392.045100px;}
.y225{bottom:394.776750px;}
.y7a{bottom:395.046000px;}
.y30f{bottom:397.354800px;}
.y2ce{bottom:397.363650px;}
.y28e{bottom:398.044200px;}
.y210{bottom:398.532750px;}
.y14d{bottom:403.996050px;}
.y59{bottom:405.921150px;}
.y140{bottom:407.795100px;}
.y170{bottom:407.944950px;}
.y103{bottom:407.953650px;}
.y9d{bottom:408.363900px;}
.yc3{bottom:408.375900px;}
.y18e{bottom:408.746700px;}
.y1c{bottom:409.737300px;}
.y1dd{bottom:410.593350px;}
.y1b9{bottom:410.960850px;}
.y255{bottom:411.097950px;}
.y30e{bottom:413.104800px;}
.y2cd{bottom:413.113650px;}
.y28d{bottom:413.794200px;}
.y224{bottom:414.276750px;}
.y79{bottom:417.550500px;}
.y20f{bottom:418.032750px;}
.y13f{bottom:423.541350px;}
.y143{bottom:423.545100px;}
.y32c{bottom:425.092800px;}
.y16f{bottom:427.444950px;}
.y102{bottom:427.453650px;}
.y1b{bottom:427.737300px;}
.y9c{bottom:427.863900px;}
.yc2{bottom:427.875900px;}
.y18d{bottom:428.246700px;}
.y30d{bottom:428.854800px;}
.y2cc{bottom:428.863650px;}
.y28c{bottom:429.544200px;}
.y1dc{bottom:430.093350px;}
.y1b8{bottom:430.460850px;}
.y223{bottom:433.776750px;}
.y254{bottom:435.097950px;}
.y58{bottom:435.919650px;}
.y111{bottom:437.203650px;}
.y20e{bottom:437.532750px;}
.y13e{bottom:439.291350px;}
.y142{bottom:439.295100px;}
.y78{bottom:440.055000px;}
.y32b{bottom:444.592800px;}
.y30c{bottom:444.604800px;}
.y2cb{bottom:444.613650px;}
.y28b{bottom:445.294200px;}
.y1a{bottom:445.737300px;}
.y16e{bottom:446.944950px;}
.y101{bottom:446.953650px;}
.y9b{bottom:447.363900px;}
.yc1{bottom:447.375900px;}
.y18c{bottom:447.746700px;}
.y1db{bottom:449.593350px;}
.y1b7{bottom:449.960850px;}
.y57{bottom:450.924150px;}
.y222{bottom:453.276750px;}
.y20d{bottom:457.032750px;}
.y253{bottom:459.097950px;}
.y13d{bottom:460.351350px;}
.y30b{bottom:460.354800px;}
.y2ca{bottom:460.363650px;}
.y28a{bottom:461.044200px;}
.y14f{bottom:462.496050px;}
.y77{bottom:462.559500px;}
.y19{bottom:463.737300px;}
.y32a{bottom:464.092800px;}
.y56{bottom:465.928650px;}
.y16d{bottom:466.444950px;}
.y100{bottom:466.453650px;}
.y9a{bottom:466.863900px;}
.yc0{bottom:466.875900px;}
.y1da{bottom:469.093350px;}
.y1b6{bottom:469.460850px;}
.y221{bottom:472.776750px;}
.y13c{bottom:476.101350px;}
.y30a{bottom:476.104800px;}
.y2c9{bottom:476.113650px;}
.y20c{bottom:476.532750px;}
.y289{bottom:476.794200px;}
.y18b{bottom:476.996700px;}
.y55{bottom:480.933150px;}
.y18{bottom:481.737300px;}
.y252{bottom:483.097950px;}
.y329{bottom:483.592800px;}
.y76{bottom:485.064000px;}
.y16c{bottom:485.944950px;}
.yff{bottom:485.953650px;}
.y99{bottom:486.363900px;}
.ybf{bottom:486.375900px;}
.y1d9{bottom:488.593350px;}
.y1b5{bottom:488.960850px;}
.y13a{bottom:491.851350px;}
.y309{bottom:491.854800px;}
.y2c8{bottom:491.863650px;}
.y220{bottom:492.276750px;}
.y288{bottom:492.544200px;}
.y54{bottom:495.937650px;}
.y20b{bottom:496.032750px;}
.y16b{bottom:505.444950px;}
.yfe{bottom:505.453650px;}
.y98{bottom:505.863900px;}
.ybe{bottom:505.875900px;}
.y251{bottom:507.097950px;}
.y75{bottom:507.568500px;}
.y139{bottom:507.597600px;}
.y13b{bottom:507.601350px;}
.y308{bottom:507.604800px;}
.y2c7{bottom:507.613650px;}
.y1d8{bottom:508.093350px;}
.y287{bottom:508.294200px;}
.y1c0{bottom:508.460850px;}
.y53{bottom:510.942150px;}
.y17{bottom:511.506300px;}
.y21f{bottom:511.776750px;}
.y20a{bottom:515.532750px;}
.y1b4{bottom:518.210850px;}
.y14c{bottom:520.996050px;}
.y307{bottom:523.354800px;}
.y2c6{bottom:523.363650px;}
.y286{bottom:524.044200px;}
.y16a{bottom:524.944950px;}
.yfd{bottom:524.953650px;}
.y97{bottom:525.363900px;}
.ybd{bottom:525.375900px;}
.y18a{bottom:525.746700px;}
.y52{bottom:525.946650px;}
.y1d7{bottom:527.593350px;}
.y1bf{bottom:527.960850px;}
.y138{bottom:528.657600px;}
.y74{bottom:530.073000px;}
.y250{bottom:531.097950px;}
.y209{bottom:535.032750px;}
.y328{bottom:536.836800px;}
.y306{bottom:539.104800px;}
.y2c5{bottom:539.113650px;}
.y285{bottom:539.794200px;}
.y51{bottom:540.951150px;}
.y21e{bottom:541.032750px;}
.y16{bottom:541.506300px;}
.y137{bottom:544.407600px;}
.y169{bottom:544.444950px;}
.yfc{bottom:544.453650px;}
.y96{bottom:544.863900px;}
.ybc{bottom:544.875900px;}
.y189{bottom:545.246700px;}
.y1d6{bottom:547.093350px;}
.y1be{bottom:547.460850px;}
.y73{bottom:552.577500px;}
.y208{bottom:554.532750px;}
.y305{bottom:554.854800px;}
.y2c4{bottom:554.863650px;}
.y24f{bottom:555.097950px;}
.y284{bottom:555.544200px;}
.y50{bottom:555.955650px;}
.y327{bottom:556.336800px;}
.y1b3{bottom:557.210850px;}
.y14b{bottom:559.996050px;}
.y136{bottom:560.157450px;}
.y168{bottom:563.944950px;}
.yfb{bottom:563.953650px;}
.y95{bottom:564.363900px;}
.ybb{bottom:564.375900px;}
.y188{bottom:564.746700px;}
.y1d5{bottom:566.593350px;}
.y1bd{bottom:566.960850px;}
.y304{bottom:570.604800px;}
.y2c3{bottom:570.613650px;}
.y4f{bottom:570.960150px;}
.y283{bottom:571.294200px;}
.y15{bottom:571.506300px;}
.y207{bottom:574.032750px;}
.y72{bottom:575.082000px;}
.y24e{bottom:579.097950px;}
.y167{bottom:583.444950px;}
.yfa{bottom:583.453650px;}
.y94{bottom:583.863900px;}
.yba{bottom:583.875900px;}
.y135{bottom:584.063700px;}
.y187{bottom:584.246700px;}
.y326{bottom:584.836800px;}
.y4e{bottom:585.964650px;}
.y1d4{bottom:586.093350px;}
.y303{bottom:586.354800px;}
.y2c2{bottom:586.363650px;}
.y1bc{bottom:586.460850px;}
.y282{bottom:587.044200px;}
.y206{bottom:593.532750px;}
.y71{bottom:597.586500px;}
.y4d{bottom:600.969150px;}
.y14{bottom:601.506300px;}
.y302{bottom:602.104800px;}
.y2c1{bottom:602.113650px;}
.y281{bottom:602.794200px;}
.y166{bottom:602.944950px;}
.yf9{bottom:602.953650px;}
.y24d{bottom:603.097950px;}
.y93{bottom:603.363900px;}
.yb9{bottom:603.375900px;}
.y186{bottom:603.746700px;}
.y1d3{bottom:605.593350px;}
.y1b2{bottom:605.960850px;}
.y134{bottom:612.094800px;}
.y205{bottom:613.032750px;}
.y4c{bottom:615.973650px;}
.y301{bottom:617.854800px;}
.y2c0{bottom:617.863650px;}
.y280{bottom:618.544200px;}
.y70{bottom:620.086500px;}
.y165{bottom:622.444950px;}
.yf8{bottom:622.453650px;}
.y92{bottom:622.863900px;}
.yb8{bottom:622.875900px;}
.y185{bottom:623.246700px;}
.y1d2{bottom:625.093350px;}
.y1b1{bottom:625.460850px;}
.y24c{bottom:627.097950px;}
.y133{bottom:628.594800px;}
.y4b{bottom:630.978150px;}
.y13{bottom:631.506300px;}
.y204{bottom:632.532750px;}
.y300{bottom:633.604800px;}
.y2bf{bottom:633.613650px;}
.y27f{bottom:634.294200px;}
.y325{bottom:641.836800px;}
.y164{bottom:641.944950px;}
.yf7{bottom:641.953650px;}
.y91{bottom:642.363900px;}
.yb7{bottom:642.375900px;}
.y184{bottom:642.748950px;}
.y1d1{bottom:644.593350px;}
.y1b0{bottom:644.960850px;}
.y132{bottom:645.094800px;}
.y2ff{bottom:649.354800px;}
.y2be{bottom:649.363650px;}
.y27e{bottom:650.044200px;}
.y24b{bottom:651.097950px;}
.y203{bottom:652.032750px;}
.y324{bottom:661.336800px;}
.y163{bottom:661.444950px;}
.yf6{bottom:661.453650px;}
.y12{bottom:661.506300px;}
.y90{bottom:661.863900px;}
.yb6{bottom:661.875900px;}
.y183{bottom:662.248950px;}
.y1d0{bottom:664.093350px;}
.y1af{bottom:664.460850px;}
.y2fe{bottom:665.104800px;}
.y2bd{bottom:665.113650px;}
.y27d{bottom:665.794200px;}
.y202{bottom:671.532750px;}
.y24a{bottom:675.097950px;}
.y323{bottom:680.836800px;}
.y2fd{bottom:680.854800px;}
.y2bc{bottom:680.863650px;}
.y162{bottom:680.944950px;}
.yf5{bottom:680.953650px;}
.y8f{bottom:681.363900px;}
.yb5{bottom:681.375900px;}
.y27c{bottom:681.544200px;}
.y4a{bottom:682.386150px;}
.y1ae{bottom:683.960850px;}
.y201{bottom:691.032750px;}
.y11{bottom:691.506300px;}
.y12f{bottom:695.943000px;}
.y2fc{bottom:696.604800px;}
.y2bb{bottom:696.613650px;}
.y27b{bottom:697.294200px;}
.y249{bottom:699.097950px;}
.y322{bottom:700.336800px;}
.y49{bottom:700.386150px;}
.y161{bottom:700.444950px;}
.yf4{bottom:700.453650px;}
.y8e{bottom:700.863900px;}
.yb4{bottom:700.875900px;}
.y1ad{bottom:703.460850px;}
.y1a8{bottom:704.906550px;}
.y1f1{bottom:709.684650px;}
.y14e{bottom:710.203650px;}
.y200{bottom:710.532750px;}
.y2fb{bottom:712.354800px;}
.y2ba{bottom:712.363650px;}
.y27a{bottom:713.044200px;}
.y48{bottom:718.386150px;}
.y321{bottom:719.836800px;}
.y160{bottom:719.944950px;}
.yf3{bottom:719.953650px;}
.y8d{bottom:720.363900px;}
.yb3{bottom:720.375900px;}
.y1a7{bottom:721.406550px;}
.y10{bottom:721.506300px;}
.y1ac{bottom:722.960850px;}
.y248{bottom:723.097950px;}
.y1f0{bottom:726.184650px;}
.y2fa{bottom:728.104800px;}
.y2b9{bottom:728.113650px;}
.y279{bottom:728.794200px;}
.y1ff{bottom:730.032750px;}
.y47{bottom:736.386150px;}
.y1a6{bottom:737.906550px;}
.y320{bottom:739.336800px;}
.y15f{bottom:739.444950px;}
.yf2{bottom:739.453650px;}
.y8c{bottom:739.863900px;}
.yb2{bottom:739.875900px;}
.y1ab{bottom:742.460850px;}
.y1ef{bottom:742.684650px;}
.y2f9{bottom:743.854800px;}
.y2b8{bottom:743.863650px;}
.y278{bottom:744.544200px;}
.y247{bottom:747.097950px;}
.y1fe{bottom:749.532750px;}
.yf{bottom:751.506300px;}
.y46{bottom:754.386150px;}
.y1a5{bottom:754.406550px;}
.y31f{bottom:758.836800px;}
.y15e{bottom:758.944950px;}
.yf1{bottom:758.953650px;}
.y8b{bottom:759.363900px;}
.yb1{bottom:759.375900px;}
.y2f8{bottom:759.604800px;}
.y2b7{bottom:759.613650px;}
.y277{bottom:760.294200px;}
.y1aa{bottom:761.960850px;}
.y1fd{bottom:769.032750px;}
.y1a4{bottom:770.906550px;}
.y246{bottom:771.097950px;}
.y45{bottom:772.386150px;}
.y2f7{bottom:775.354800px;}
.y2b6{bottom:775.363650px;}
.y276{bottom:776.044200px;}
.y31e{bottom:778.336800px;}
.y15d{bottom:778.444950px;}
.yf0{bottom:778.453650px;}
.yb0{bottom:778.875900px;}
.y1a9{bottom:781.460850px;}
.ye{bottom:781.506300px;}
.y1a3{bottom:787.406550px;}
.y1fc{bottom:788.532750px;}
.y44{bottom:790.386150px;}
.y2f6{bottom:791.104800px;}
.y2b5{bottom:791.113650px;}
.y275{bottom:791.794200px;}
.y245{bottom:795.097950px;}
.y15c{bottom:797.944950px;}
.yef{bottom:797.953650px;}
.y8a{bottom:798.363900px;}
.yaf{bottom:798.375900px;}
.y1a2{bottom:803.906550px;}
.y129{bottom:804.904500px;}
.y2f5{bottom:806.854800px;}
.y2b4{bottom:806.863650px;}
.y274{bottom:807.544200px;}
.y31d{bottom:807.592800px;}
.y1fb{bottom:808.032750px;}
.y43{bottom:808.386150px;}
.yd{bottom:811.506300px;}
.y15b{bottom:817.444950px;}
.yee{bottom:817.453650px;}
.y1c4{bottom:818.960850px;}
.y244{bottom:819.097950px;}
.y1a1{bottom:820.406550px;}
.y2f4{bottom:822.604800px;}
.y2b3{bottom:822.613650px;}
.y273{bottom:823.294200px;}
.y42{bottom:826.386150px;}
.y31c{bottom:827.092800px;}
.y1fa{bottom:827.532750px;}
.y12a{bottom:830.129531px;}
.y1c3{bottom:835.460850px;}
.y1a0{bottom:836.906550px;}
.y15a{bottom:836.944950px;}
.yed{bottom:836.953650px;}
.y2f3{bottom:838.354800px;}
.y2b2{bottom:838.363650px;}
.y272{bottom:839.044200px;}
.yc{bottom:841.506300px;}
.y243{bottom:843.097950px;}
.y41{bottom:844.386150px;}
.y31b{bottom:846.592800px;}
.y1f9{bottom:847.032750px;}
.y1c2{bottom:851.960850px;}
.y2f2{bottom:854.104800px;}
.y2b1{bottom:854.113650px;}
.y271{bottom:854.794200px;}
.y12b{bottom:855.354563px;}
.y159{bottom:856.444950px;}
.yec{bottom:856.453650px;}
.y40{bottom:862.386150px;}
.y31a{bottom:866.092800px;}
.y1f8{bottom:866.532750px;}
.y242{bottom:867.097950px;}
.y1c1{bottom:868.460850px;}
.y2f1{bottom:869.854800px;}
.y2b0{bottom:869.863650px;}
.y270{bottom:870.544200px;}
.yb{bottom:871.506300px;}
.yde{bottom:874.751550px;}
.y158{bottom:875.944950px;}
.yeb{bottom:875.953650px;}
.y3f{bottom:880.386150px;}
.y12c{bottom:880.579594px;}
.y319{bottom:885.592800px;}
.y2f0{bottom:885.604800px;}
.y2af{bottom:885.613650px;}
.y1f7{bottom:886.032750px;}
.y26f{bottom:886.294200px;}
.y241{bottom:891.097950px;}
.ydd{bottom:894.251550px;}
.y157{bottom:895.444950px;}
.yea{bottom:895.453650px;}
.y3e{bottom:898.386150px;}
.y2ef{bottom:901.354800px;}
.y2ae{bottom:901.363650px;}
.ya{bottom:901.512300px;}
.y26e{bottom:902.044200px;}
.y12d{bottom:905.804625px;}
.ydc{bottom:913.751550px;}
.y318{bottom:914.848800px;}
.y156{bottom:914.944950px;}
.ye9{bottom:914.953650px;}
.y240{bottom:915.097950px;}
.y3d{bottom:916.386150px;}
.y2ee{bottom:917.104800px;}
.y2ad{bottom:917.113650px;}
.y26d{bottom:917.794200px;}
.y12e{bottom:931.029656px;}
.y2ed{bottom:932.854800px;}
.y2ac{bottom:932.863650px;}
.ydb{bottom:933.251550px;}
.y26c{bottom:933.544200px;}
.y317{bottom:934.348800px;}
.y3c{bottom:934.386150px;}
.ye8{bottom:934.453650px;}
.y23f{bottom:939.097950px;}
.y155{bottom:944.194950px;}
.y2ec{bottom:948.604800px;}
.y2ab{bottom:948.613650px;}
.y26b{bottom:949.294200px;}
.y3b{bottom:952.386150px;}
.y316{bottom:953.848800px;}
.ye7{bottom:953.953650px;}
.y238{bottom:957.927300px;}
.y128{bottom:958.444950px;}
.y9{bottom:960.006300px;}
.y23e{bottom:963.097950px;}
.y2eb{bottom:964.354800px;}
.y2aa{bottom:964.363650px;}
.y26a{bottom:965.044200px;}
.yda{bottom:969.214950px;}
.y3a{bottom:970.386150px;}
.y315{bottom:973.348800px;}
.ye6{bottom:973.453650px;}
.y127{bottom:974.944950px;}
.y237{bottom:978.987300px;}
.y2ea{bottom:980.104800px;}
.y2a9{bottom:980.113650px;}
.y269{bottom:980.794200px;}
.y154{bottom:983.194950px;}
.y23d{bottom:987.097950px;}
.y39{bottom:988.386150px;}
.y126{bottom:991.444950px;}
.yd9{bottom:991.719450px;}
.y314{bottom:992.848800px;}
.ye5{bottom:992.953650px;}
.y8{bottom:994.512300px;}
.y2e9{bottom:995.854800px;}
.y2a8{bottom:995.863650px;}
.y268{bottom:996.544200px;}
.y236{bottom:1000.047300px;}
.y38{bottom:1006.386150px;}
.y125{bottom:1007.944950px;}
.y23c{bottom:1011.097950px;}
.y2e8{bottom:1011.604800px;}
.y2a7{bottom:1011.613650px;}
.y267{bottom:1012.294200px;}
.y313{bottom:1012.348800px;}
.ye4{bottom:1012.453650px;}
.yd8{bottom:1014.223950px;}
.y235{bottom:1021.107300px;}
.y37{bottom:1024.386150px;}
.y124{bottom:1024.444950px;}
.y2e7{bottom:1027.354800px;}
.y2a6{bottom:1027.363650px;}
.y266{bottom:1028.044200px;}
.y312{bottom:1031.848800px;}
.y153{bottom:1031.944950px;}
.ye3{bottom:1031.953650px;}
.y23b{bottom:1035.097950px;}
.yd7{bottom:1036.728450px;}
.y234{bottom:1036.857300px;}
.y123{bottom:1040.944950px;}
.y36{bottom:1042.386150px;}
.y2e6{bottom:1043.104800px;}
.y2a5{bottom:1043.113650px;}
.y265{bottom:1043.794200px;}
.y311{bottom:1051.348800px;}
.y152{bottom:1051.444950px;}
.ye2{bottom:1051.453650px;}
.y122{bottom:1057.444950px;}
.y233{bottom:1057.917300px;}
.y2e5{bottom:1058.854800px;}
.y2a4{bottom:1058.863650px;}
.y7{bottom:1059.012300px;}
.y23a{bottom:1059.097950px;}
.yd6{bottom:1059.232950px;}
.y264{bottom:1059.544200px;}
.y35{bottom:1060.386150px;}
.y151{bottom:1070.944950px;}
.ye1{bottom:1070.953650px;}
.y121{bottom:1073.944950px;}
.y2e4{bottom:1074.604800px;}
.y2a3{bottom:1074.613650px;}
.y263{bottom:1075.294200px;}
.y34{bottom:1078.386150px;}
.y310{bottom:1080.604800px;}
.yd5{bottom:1081.737450px;}
.y232{bottom:1081.823550px;}
.y239{bottom:1083.097950px;}
.y2e3{bottom:1090.354800px;}
.y2a2{bottom:1090.363650px;}
.y120{bottom:1090.444950px;}
.ye0{bottom:1090.453650px;}
.y262{bottom:1091.044200px;}
.ydf{bottom:1092.859800px;}
.y33{bottom:1096.386150px;}
.y6{bottom:1099.573650px;}
.y5{bottom:1118.319150px;}
.y4{bottom:1121.319150px;}
.y89{bottom:1126.684950px;}
.y31{bottom:1126.685700px;}
.y32{bottom:1129.263000px;}
.y88{bottom:1129.384950px;}
.y30{bottom:1129.385700px;}
.y3{bottom:1157.521800px;}
.hc{height:22.535100px;}
.hf{height:30.429000px;}
.hd{height:30.576000px;}
.h14{height:30.941400px;}
.h10{height:31.206000px;}
.h4{height:32.193000px;}
.h1d{height:33.435000px;}
.h18{height:33.732000px;}
.h26{height:34.492500px;}
.h24{height:35.664000px;}
.h1b{height:38.691835px;}
.h2{height:39.354000px;}
.h7{height:39.771000px;}
.h17{height:41.391000px;}
.h1f{height:42.165000px;}
.h20{height:42.180000px;}
.h22{height:42.180600px;}
.h3{height:44.104410px;}
.h21{height:44.394750px;}
.h1e{height:44.395350px;}
.h11{height:44.580000px;}
.h16{height:44.976000px;}
.h25{height:45.024000px;}
.h15{height:45.990000px;}
.h1a{height:47.353800px;}
.h19{height:47.354400px;}
.h5{height:48.528000px;}
.h12{height:50.598000px;}
.h13{height:53.453700px;}
.he{height:60.191460px;}
.h6{height:60.200910px;}
.h23{height:60.806400px;}
.h9{height:69.847800px;}
.hb{height:69.871200px;}
.ha{height:69.871800px;}
.h8{height:80.244000px;}
.h1c{height:404.161500px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:497.758500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:67.181100px;}
.x1{left:69.732300px;}
.x19{left:75.732300px;}
.x13{left:85.247100px;}
.x12{left:86.746950px;}
.xe{left:89.189700px;}
.x2{left:92.474850px;}
.x3{left:95.105100px;}
.x4{left:107.176500px;}
.x6{left:207.911550px;}
.x7{left:210.541650px;}
.x21{left:250.279950px;}
.x20{left:294.323400px;}
.xd{left:308.113800px;}
.x1b{left:310.104900px;}
.x11{left:313.216050px;}
.x25{left:330.431100px;}
.x26{left:336.427350px;}
.x8{left:342.906150px;}
.x9{left:345.536400px;}
.x1f{left:361.672500px;}
.x24{left:375.797850px;}
.x18{left:445.029150px;}
.x1c{left:457.491150px;}
.x14{left:458.734950px;}
.xf{left:461.213700px;}
.x1d{left:463.496100px;}
.x23{left:471.075750px;}
.x15{left:478.236150px;}
.x10{left:480.713700px;}
.x17{left:514.762650px;}
.x27{left:545.317350px;}
.x22{left:586.161450px;}
.x16{left:596.976300px;}
.x1e{left:621.783600px;}
.x1a{left:627.782250px;}
.x28{left:677.932350px;}
.xa{left:773.965350px;}
.xb{left:798.262350px;}
.xc{left:800.511450px;}
@media print{
.v3{vertical-align:-28.800533pt;}
.v7{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.800000pt;}
.v8{vertical-align:-14.080000pt;}
.va{vertical-align:-13.186667pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:14.071467pt;}
.v9{vertical-align:18.000533pt;}
.v6{vertical-align:19.200000pt;}
.v5{vertical-align:21.760000pt;}
.v2{vertical-align:28.800533pt;}
.ls11c{letter-spacing:-10.240000pt;}
.ls126{letter-spacing:-4.720000pt;}
.ls12{letter-spacing:-4.211200pt;}
.ls6c{letter-spacing:-3.840000pt;}
.lse0{letter-spacing:-3.370667pt;}
.ls10c{letter-spacing:-3.280000pt;}
.ls12a{letter-spacing:-3.240000pt;}
.ls10e{letter-spacing:-3.160000pt;}
.lsdc{letter-spacing:-3.114667pt;}
.lsac{letter-spacing:-3.029333pt;}
.ls51{letter-spacing:-3.024000pt;}
.ls73{letter-spacing:-2.944000pt;}
.lsee{letter-spacing:-2.773333pt;}
.ls124{letter-spacing:-2.680000pt;}
.ls130{letter-spacing:-2.560000pt;}
.ls114{letter-spacing:-2.400000pt;}
.ls108{letter-spacing:-2.261333pt;}
.lsf7{letter-spacing:-2.176000pt;}
.ls12b{letter-spacing:-2.160000pt;}
.lsf8{letter-spacing:-2.133333pt;}
.ls11e{letter-spacing:-2.080000pt;}
.ls128{letter-spacing:-1.960000pt;}
.ls135{letter-spacing:-1.880000pt;}
.lsd3{letter-spacing:-1.877333pt;}
.ls65{letter-spacing:-1.834667pt;}
.ls111{letter-spacing:-1.760000pt;}
.ls112{letter-spacing:-1.720000pt;}
.ls64{letter-spacing:-1.706667pt;}
.ls13{letter-spacing:-1.664000pt;}
.ls122{letter-spacing:-1.640000pt;}
.lsc8{letter-spacing:-1.621333pt;}
.ls120{letter-spacing:-1.560000pt;}
.lse2{letter-spacing:-1.536000pt;}
.ls16{letter-spacing:-1.523200pt;}
.ls69{letter-spacing:-1.493333pt;}
.ls6e{letter-spacing:-1.450667pt;}
.ls15{letter-spacing:-1.433600pt;}
.ls119{letter-spacing:-1.400000pt;}
.lsed{letter-spacing:-1.365333pt;}
.ls116{letter-spacing:-1.360000pt;}
.ls6b{letter-spacing:-1.322667pt;}
.ls117{letter-spacing:-1.320000pt;}
.lsb0{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.254400pt;}
.ls18{letter-spacing:-1.209600pt;}
.lsfa{letter-spacing:-1.194667pt;}
.ls12f{letter-spacing:-1.160000pt;}
.lsd6{letter-spacing:-1.152000pt;}
.ls4a{letter-spacing:-1.120000pt;}
.ls10f{letter-spacing:-1.080000pt;}
.ls6f{letter-spacing:-1.066667pt;}
.lsb7{letter-spacing:-1.040000pt;}
.ls61{letter-spacing:-0.981333pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsec{letter-spacing:-0.938667pt;}
.lsb{letter-spacing:-0.933333pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls118{letter-spacing:-0.880000pt;}
.lsde{letter-spacing:-0.853333pt;}
.ls115{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls123{letter-spacing:-0.760000pt;}
.ls46{letter-spacing:-0.731733pt;}
.lsfd{letter-spacing:-0.725333pt;}
.ls113{letter-spacing:-0.720000pt;}
.lsc7{letter-spacing:-0.682667pt;}
.ls11d{letter-spacing:-0.680000pt;}
.ls75{letter-spacing:-0.640000pt;}
.ls127{letter-spacing:-0.600000pt;}
.ls60{letter-spacing:-0.597333pt;}
.ls1f{letter-spacing:-0.582400pt;}
.ls39{letter-spacing:-0.560000pt;}
.lscb{letter-spacing:-0.554667pt;}
.ls31{letter-spacing:-0.548800pt;}
.ls129{letter-spacing:-0.520000pt;}
.lsef{letter-spacing:-0.512000pt;}
.ls134{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.470400pt;}
.ls74{letter-spacing:-0.469333pt;}
.ls105{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.418133pt;}
.ls17{letter-spacing:-0.403200pt;}
.ls12c{letter-spacing:-0.400000pt;}
.ls71{letter-spacing:-0.384000pt;}
.ls4d{letter-spacing:-0.373333pt;}
.ls125{letter-spacing:-0.360000pt;}
.ls72{letter-spacing:-0.341333pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.313600pt;}
.ls63{letter-spacing:-0.298667pt;}
.lsbb{letter-spacing:-0.280000pt;}
.ls2d{letter-spacing:-0.261333pt;}
.ls62{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.224000pt;}
.ls6d{letter-spacing:-0.213333pt;}
.lsb6{letter-spacing:-0.200000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.182933pt;}
.ls59{letter-spacing:-0.170667pt;}
.ls133{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.134400pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls11a{letter-spacing:-0.120000pt;}
.ls4c{letter-spacing:-0.112000pt;}
.lsad{letter-spacing:-0.085333pt;}
.ls110{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls30{letter-spacing:-0.052267pt;}
.ls52{letter-spacing:-0.048000pt;}
.lsaf{letter-spacing:-0.047834pt;}
.lsdb{letter-spacing:-0.042667pt;}
.ls10d{letter-spacing:-0.040000pt;}
.ls47{letter-spacing:-0.026133pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.026133pt;}
.lsb9{letter-spacing:0.040000pt;}
.ls76{letter-spacing:0.042667pt;}
.ls36{letter-spacing:0.052267pt;}
.ls95{letter-spacing:0.059200pt;}
.lsf{letter-spacing:0.064000pt;}
.ls42{letter-spacing:0.078400pt;}
.ls7c{letter-spacing:0.085333pt;}
.ls26{letter-spacing:0.089600pt;}
.ls8e{letter-spacing:0.101333pt;}
.ls91{letter-spacing:0.105067pt;}
.ls8d{letter-spacing:0.114667pt;}
.lsc1{letter-spacing:0.115200pt;}
.ls97{letter-spacing:0.120000pt;}
.ls99{letter-spacing:0.121600pt;}
.ls8a{letter-spacing:0.124267pt;}
.lsbc{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.134400pt;}
.lsd0{letter-spacing:0.158933pt;}
.ls131{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.179200pt;}
.lsb5{letter-spacing:0.200000pt;}
.ls5a{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.213867pt;}
.ls41{letter-spacing:0.235200pt;}
.ls5f{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.261333pt;}
.lsb3{letter-spacing:0.280000pt;}
.ls68{letter-spacing:0.298667pt;}
.ls11b{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.330133pt;}
.ls53{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.339733pt;}
.lsc4{letter-spacing:0.341333pt;}
.ls67{letter-spacing:0.352000pt;}
.ls82{letter-spacing:0.357333pt;}
.lsf0{letter-spacing:0.360000pt;}
.ls44{letter-spacing:0.365867pt;}
.ls3{letter-spacing:0.378133pt;}
.ls5e{letter-spacing:0.384000pt;}
.ls8c{letter-spacing:0.396000pt;}
.lsa5{letter-spacing:0.400000pt;}
.ls21{letter-spacing:0.403200pt;}
.lsaa{letter-spacing:0.405867pt;}
.ls92{letter-spacing:0.416000pt;}
.ls3d{letter-spacing:0.418133pt;}
.lsa8{letter-spacing:0.419200pt;}
.ls7a{letter-spacing:0.421333pt;}
.ls9f{letter-spacing:0.422400pt;}
.ls9c{letter-spacing:0.422933pt;}
.ls4e{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.427733pt;}
.lse9{letter-spacing:0.430933pt;}
.ls78{letter-spacing:0.435200pt;}
.lse4{letter-spacing:0.439467pt;}
.ls106{letter-spacing:0.440000pt;}
.lsa4{letter-spacing:0.442667pt;}
.ls2f{letter-spacing:0.444267pt;}
.ls23{letter-spacing:0.448000pt;}
.lsa3{letter-spacing:0.449067pt;}
.lse3{letter-spacing:0.452267pt;}
.lsd1{letter-spacing:0.456533pt;}
.lse5{letter-spacing:0.460800pt;}
.ls79{letter-spacing:0.465067pt;}
.ls107{letter-spacing:0.469333pt;}
.ls4f{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.492800pt;}
.ls57{letter-spacing:0.512000pt;}
.ls89{letter-spacing:0.520000pt;}
.ls3c{letter-spacing:0.522667pt;}
.lsa2{letter-spacing:0.536000pt;}
.ls27{letter-spacing:0.537600pt;}
.ls35{letter-spacing:0.548800pt;}
.ls5d{letter-spacing:0.554667pt;}
.ls7b{letter-spacing:0.558933pt;}
.lsb2{letter-spacing:0.560000pt;}
.lsd9{letter-spacing:0.567467pt;}
.ls49{letter-spacing:0.574933pt;}
.ls50{letter-spacing:0.576000pt;}
.lsca{letter-spacing:0.597333pt;}
.lsba{letter-spacing:0.600000pt;}
.ls4{letter-spacing:0.626667pt;}
.ls3a{letter-spacing:0.627200pt;}
.ls4b{letter-spacing:0.634667pt;}
.ls58{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.653333pt;}
.lsc9{letter-spacing:0.657067pt;}
.ls11{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.673600pt;}
.ls10b{letter-spacing:0.680000pt;}
.ls5c{letter-spacing:0.682667pt;}
.lsc0{letter-spacing:0.698133pt;}
.ls7d{letter-spacing:0.701333pt;}
.lsb1{letter-spacing:0.720000pt;}
.ls7e{letter-spacing:0.724267pt;}
.ls6a{letter-spacing:0.725333pt;}
.lsb4{letter-spacing:0.760000pt;}
.ls8{letter-spacing:0.762667pt;}
.ls8b{letter-spacing:0.765333pt;}
.lsda{letter-spacing:0.768000pt;}
.ls98{letter-spacing:0.773867pt;}
.ls37{letter-spacing:0.784000pt;}
.lsb8{letter-spacing:0.800000pt;}
.ls8f{letter-spacing:0.804267pt;}
.lsf1{letter-spacing:0.805867pt;}
.ls43{letter-spacing:0.810133pt;}
.lse6{letter-spacing:0.810667pt;}
.ls81{letter-spacing:0.812267pt;}
.ls9a{letter-spacing:0.826667pt;}
.ls12d{letter-spacing:0.840000pt;}
.ls5{letter-spacing:0.848533pt;}
.lsfe{letter-spacing:0.853333pt;}
.lscf{letter-spacing:0.879467pt;}
.ls12e{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:0.896000pt;}
.lsa7{letter-spacing:0.920000pt;}
.lsc6{letter-spacing:0.920533pt;}
.ls7f{letter-spacing:0.928533pt;}
.lsbe{letter-spacing:0.931733pt;}
.lsbd{letter-spacing:0.937067pt;}
.lsbf{letter-spacing:0.937600pt;}
.lscd{letter-spacing:0.938667pt;}
.ls10{letter-spacing:0.940800pt;}
.lsc3{letter-spacing:0.945067pt;}
.lsc5{letter-spacing:0.946667pt;}
.lsc2{letter-spacing:0.951467pt;}
.ls48{letter-spacing:0.966933pt;}
.ls84{letter-spacing:0.976000pt;}
.lseb{letter-spacing:0.981333pt;}
.ls85{letter-spacing:0.984000pt;}
.lsce{letter-spacing:0.985600pt;}
.ls3e{letter-spacing:1.019200pt;}
.lsd5{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.030400pt;}
.ls38{letter-spacing:1.037867pt;}
.ls11f{letter-spacing:1.040000pt;}
.lsd8{letter-spacing:1.066667pt;}
.ls10a{letter-spacing:1.080000pt;}
.ls45{letter-spacing:1.097600pt;}
.lsd4{letter-spacing:1.109333pt;}
.ls28{letter-spacing:1.120000pt;}
.lse7{letter-spacing:1.152000pt;}
.lsd7{letter-spacing:1.194667pt;}
.ls25{letter-spacing:1.209600pt;}
.ls5b{letter-spacing:1.237333pt;}
.ls136{letter-spacing:1.280000pt;}
.ls94{letter-spacing:1.320000pt;}
.lse1{letter-spacing:1.322667pt;}
.ls103{letter-spacing:1.365333pt;}
.lsf5{letter-spacing:1.408000pt;}
.ls9b{letter-spacing:1.408533pt;}
.ls9e{letter-spacing:1.409600pt;}
.lsa1{letter-spacing:1.410667pt;}
.ls80{letter-spacing:1.428267pt;}
.lsa6{letter-spacing:1.429867pt;}
.lsf3{letter-spacing:1.450667pt;}
.lsa9{letter-spacing:1.453867pt;}
.lsf6{letter-spacing:1.493333pt;}
.lsf4{letter-spacing:1.536000pt;}
.lsf9{letter-spacing:1.578667pt;}
.lse8{letter-spacing:1.664000pt;}
.lsfb{letter-spacing:1.706667pt;}
.lsf2{letter-spacing:1.734400pt;}
.ls100{letter-spacing:1.792000pt;}
.lsea{letter-spacing:1.834667pt;}
.ls132{letter-spacing:1.880000pt;}
.ls121{letter-spacing:1.920000pt;}
.ls102{letter-spacing:1.962667pt;}
.lsfc{letter-spacing:2.133333pt;}
.ls77{letter-spacing:2.304000pt;}
.lsdf{letter-spacing:2.346667pt;}
.lsdd{letter-spacing:2.560000pt;}
.ls96{letter-spacing:2.572000pt;}
.ls55{letter-spacing:2.576000pt;}
.ls90{letter-spacing:2.600000pt;}
.ls93{letter-spacing:2.604000pt;}
.lsab{letter-spacing:2.616000pt;}
.ls70{letter-spacing:2.944000pt;}
.lscc{letter-spacing:3.584000pt;}
.ls104{letter-spacing:4.565333pt;}
.ls101{letter-spacing:4.821333pt;}
.ls138{letter-spacing:4.992000pt;}
.ls137{letter-spacing:5.034667pt;}
.ls109{letter-spacing:5.248000pt;}
.ls56{letter-spacing:5.280000pt;}
.ls54{letter-spacing:5.333333pt;}
.lsd2{letter-spacing:5.706667pt;}
.lsae{letter-spacing:5.973333pt;}
.ls66{letter-spacing:7.466667pt;}
.lsd{letter-spacing:9.600000pt;}
.lsff{letter-spacing:60.471467pt;}
.ls1{letter-spacing:80.172267pt;}
.ls2{letter-spacing:80.172800pt;}
.ls0{letter-spacing:81.804267pt;}
.ls86{letter-spacing:102.320000pt;}
.ls83{letter-spacing:105.520000pt;}
.lsa0{letter-spacing:148.800000pt;}
.ls9d{letter-spacing:261.256000pt;}
.ls87{letter-spacing:389.920000pt;}
.wsb2{word-spacing:-18.666667pt;}
.wsc8{word-spacing:-18.293333pt;}
.ws64{word-spacing:-18.240000pt;}
.ws66{word-spacing:-16.538667pt;}
.ws4{word-spacing:-16.384000pt;}
.wsf0{word-spacing:-15.616000pt;}
.ws3{word-spacing:-15.552000pt;}
.ws163{word-spacing:-15.402667pt;}
.wse1{word-spacing:-15.189333pt;}
.wse3{word-spacing:-14.933333pt;}
.ws55{word-spacing:-13.386667pt;}
.ws7c{word-spacing:-12.960000pt;}
.wse4{word-spacing:-12.885333pt;}
.ws3d{word-spacing:-12.736000pt;}
.ws65{word-spacing:-12.624000pt;}
.ws126{word-spacing:-12.160000pt;}
.ws7b{word-spacing:-11.893333pt;}
.wsb4{word-spacing:-11.562667pt;}
.ws162{word-spacing:-11.520000pt;}
.ws12{word-spacing:-11.289600pt;}
.ws164{word-spacing:-11.093333pt;}
.ws12f{word-spacing:-11.000000pt;}
.wse2{word-spacing:-10.965333pt;}
.wsa1{word-spacing:-10.960000pt;}
.wse9{word-spacing:-10.840000pt;}
.wsf1{word-spacing:-10.760000pt;}
.wsf{word-spacing:-10.572800pt;}
.wsec{word-spacing:-10.520000pt;}
.wscc{word-spacing:-10.325333pt;}
.wse7{word-spacing:-10.280000pt;}
.ws92{word-spacing:-10.240000pt;}
.ws94{word-spacing:-10.040000pt;}
.ws103{word-spacing:-10.000000pt;}
.ws7d{word-spacing:-9.984000pt;}
.ws99{word-spacing:-9.920000pt;}
.ws124{word-spacing:-9.880000pt;}
.ws54{word-spacing:-9.856000pt;}
.wsf5{word-spacing:-9.800000pt;}
.wsf4{word-spacing:-9.760000pt;}
.ws161{word-spacing:-9.720000pt;}
.ws104{word-spacing:-9.680000pt;}
.wsfc{word-spacing:-9.640000pt;}
.ws9f{word-spacing:-9.600000pt;}
.ws127{word-spacing:-9.560000pt;}
.ws34{word-spacing:-9.557333pt;}
.wsf8{word-spacing:-9.520000pt;}
.ws128{word-spacing:-9.480000pt;}
.ws7a{word-spacing:-9.472000pt;}
.wsfd{word-spacing:-9.440000pt;}
.ws9a{word-spacing:-9.360000pt;}
.wsf3{word-spacing:-9.320000pt;}
.wsf6{word-spacing:-9.280000pt;}
.ws102{word-spacing:-9.240000pt;}
.ws97{word-spacing:-9.200000pt;}
.ws100{word-spacing:-9.160000pt;}
.wsfe{word-spacing:-9.040000pt;}
.ws129{word-spacing:-9.000000pt;}
.ws12e{word-spacing:-8.960000pt;}
.ws15f{word-spacing:-8.880000pt;}
.wsfa{word-spacing:-8.800000pt;}
.ws15e{word-spacing:-8.760000pt;}
.wsf2{word-spacing:-8.720000pt;}
.ws122{word-spacing:-8.680000pt;}
.ws101{word-spacing:-8.640000pt;}
.ws56{word-spacing:-8.601600pt;}
.ws160{word-spacing:-8.400000pt;}
.wsf9{word-spacing:-8.320000pt;}
.wsac{word-spacing:-8.302933pt;}
.ws12d{word-spacing:-8.280000pt;}
.wsb3{word-spacing:-8.213333pt;}
.wsff{word-spacing:-8.000000pt;}
.wsfb{word-spacing:-7.840000pt;}
.ws125{word-spacing:-7.800000pt;}
.ws4f{word-spacing:-7.787733pt;}
.ws48{word-spacing:-7.709333pt;}
.ws52{word-spacing:-7.657067pt;}
.ws79{word-spacing:-7.645867pt;}
.wsf7{word-spacing:-7.600000pt;}
.ws12a{word-spacing:-7.560000pt;}
.ws4d{word-spacing:-7.500267pt;}
.ws12b{word-spacing:-7.400000pt;}
.ws8c{word-spacing:-7.347200pt;}
.ws4a{word-spacing:-7.343467pt;}
.ws43{word-spacing:-7.317333pt;}
.ws123{word-spacing:-7.280000pt;}
.ws53{word-spacing:-7.265067pt;}
.ws30{word-spacing:-7.238933pt;}
.ws46{word-spacing:-7.212800pt;}
.ws96{word-spacing:-7.168000pt;}
.ws2a{word-spacing:-7.134400pt;}
.ws47{word-spacing:-7.108267pt;}
.ws40{word-spacing:-7.104000pt;}
.ws4e{word-spacing:-7.056000pt;}
.ws2d{word-spacing:-7.029867pt;}
.ws44{word-spacing:-6.951467pt;}
.ws4b{word-spacing:-6.925333pt;}
.ws4c{word-spacing:-6.768533pt;}
.ws31{word-spacing:-6.742400pt;}
.ws49{word-spacing:-6.716267pt;}
.ws27{word-spacing:-6.690133pt;}
.ws51{word-spacing:-6.664000pt;}
.ws2b{word-spacing:-6.637867pt;}
.ws2e{word-spacing:-6.507200pt;}
.ws28{word-spacing:-6.428800pt;}
.ws45{word-spacing:-6.376533pt;}
.ws2f{word-spacing:-6.272000pt;}
.ws29{word-spacing:-6.219733pt;}
.ws2c{word-spacing:-6.141333pt;}
.ws12c{word-spacing:-6.120000pt;}
.wsa4{word-spacing:-5.973333pt;}
.ws50{word-spacing:-5.958400pt;}
.ws68{word-spacing:-5.333333pt;}
.ws3f{word-spacing:-4.480000pt;}
.ws107{word-spacing:-3.680000pt;}
.wsb1{word-spacing:-3.584000pt;}
.ws114{word-spacing:-3.560000pt;}
.ws168{word-spacing:-3.440000pt;}
.ws144{word-spacing:-3.000000pt;}
.ws83{word-spacing:-2.944000pt;}
.ws67{word-spacing:-2.576000pt;}
.wsbf{word-spacing:-2.560000pt;}
.wsc2{word-spacing:-2.346667pt;}
.ws8a{word-spacing:-2.304000pt;}
.wsde{word-spacing:-2.133333pt;}
.ws13c{word-spacing:-2.120000pt;}
.ws15d{word-spacing:-1.920000pt;}
.wscd{word-spacing:-1.834667pt;}
.wsed{word-spacing:-1.792000pt;}
.wsdd{word-spacing:-1.706667pt;}
.ws155{word-spacing:-1.680000pt;}
.wscb{word-spacing:-1.664000pt;}
.wsdb{word-spacing:-1.578667pt;}
.wsd5{word-spacing:-1.536000pt;}
.wsd7{word-spacing:-1.493333pt;}
.wsd4{word-spacing:-1.450667pt;}
.wsd6{word-spacing:-1.408000pt;}
.wsef{word-spacing:-1.365333pt;}
.wsc4{word-spacing:-1.322667pt;}
.ws169{word-spacing:-1.320000pt;}
.ws132{word-spacing:-1.280000pt;}
.ws6d{word-spacing:-1.237333pt;}
.wsba{word-spacing:-1.194667pt;}
.wsca{word-spacing:-1.152000pt;}
.ws156{word-spacing:-1.120000pt;}
.wsb6{word-spacing:-1.109333pt;}
.ws108{word-spacing:-1.080000pt;}
.wsbb{word-spacing:-1.066667pt;}
.ws137{word-spacing:-1.040000pt;}
.wsb8{word-spacing:-1.024000pt;}
.wsce{word-spacing:-0.981333pt;}
.wsd1{word-spacing:-0.938667pt;}
.wsda{word-spacing:-0.896000pt;}
.ws15a{word-spacing:-0.880000pt;}
.wse0{word-spacing:-0.853333pt;}
.ws157{word-spacing:-0.840000pt;}
.wsc9{word-spacing:-0.810667pt;}
.ws10d{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.784000pt;}
.wsbc{word-spacing:-0.768000pt;}
.wsa7{word-spacing:-0.760000pt;}
.ws7f{word-spacing:-0.725333pt;}
.wsa6{word-spacing:-0.720000pt;}
.ws6e{word-spacing:-0.682667pt;}
.ws138{word-spacing:-0.680000pt;}
.ws5a{word-spacing:-0.672000pt;}
.ws6a{word-spacing:-0.640000pt;}
.ws59{word-spacing:-0.634667pt;}
.wsaa{word-spacing:-0.600000pt;}
.wsaf{word-spacing:-0.597333pt;}
.ws5e{word-spacing:-0.576000pt;}
.ws11b{word-spacing:-0.560000pt;}
.ws6f{word-spacing:-0.554667pt;}
.ws113{word-spacing:-0.520000pt;}
.ws69{word-spacing:-0.512000pt;}
.ws5d{word-spacing:-0.480000pt;}
.ws105{word-spacing:-0.469333pt;}
.ws109{word-spacing:-0.440000pt;}
.ws75{word-spacing:-0.426667pt;}
.ws70{word-spacing:-0.384000pt;}
.ws152{word-spacing:-0.360000pt;}
.wsc5{word-spacing:-0.341333pt;}
.ws61{word-spacing:-0.336000pt;}
.ws147{word-spacing:-0.320000pt;}
.ws87{word-spacing:-0.298667pt;}
.ws13e{word-spacing:-0.280000pt;}
.ws71{word-spacing:-0.256000pt;}
.ws141{word-spacing:-0.240000pt;}
.ws6c{word-spacing:-0.213333pt;}
.ws167{word-spacing:-0.160000pt;}
.ws38{word-spacing:-0.128000pt;}
.ws11f{word-spacing:-0.120000pt;}
.wsc0{word-spacing:-0.085333pt;}
.ws37{word-spacing:-0.064000pt;}
.ws8b{word-spacing:-0.047834pt;}
.ws89{word-spacing:-0.042667pt;}
.wsa8{word-spacing:-0.040000pt;}
.ws32{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.042667pt;}
.ws60{word-spacing:0.048000pt;}
.ws3a{word-spacing:0.064000pt;}
.wsa3{word-spacing:0.085333pt;}
.ws5b{word-spacing:0.112000pt;}
.ws3c{word-spacing:0.128000pt;}
.ws16a{word-spacing:0.160000pt;}
.ws6b{word-spacing:0.170667pt;}
.ws36{word-spacing:0.192000pt;}
.wsa9{word-spacing:0.200000pt;}
.ws82{word-spacing:0.213333pt;}
.ws74{word-spacing:0.256000pt;}
.wsab{word-spacing:0.280000pt;}
.ws76{word-spacing:0.298667pt;}
.ws3b{word-spacing:0.320000pt;}
.ws85{word-spacing:0.341333pt;}
.ws154{word-spacing:0.360000pt;}
.ws5c{word-spacing:0.373333pt;}
.ws84{word-spacing:0.384000pt;}
.ws41{word-spacing:0.403200pt;}
.wsc7{word-spacing:0.426667pt;}
.ws88{word-spacing:0.469333pt;}
.wsd3{word-spacing:0.512000pt;}
.ws146{word-spacing:0.520000pt;}
.wsb0{word-spacing:0.554667pt;}
.ws57{word-spacing:0.560000pt;}
.ws72{word-spacing:0.597333pt;}
.ws143{word-spacing:0.600000pt;}
.ws39{word-spacing:0.640000pt;}
.wsad{word-spacing:0.682667pt;}
.ws117{word-spacing:0.720000pt;}
.wsdf{word-spacing:0.725333pt;}
.ws131{word-spacing:0.760000pt;}
.ws3e{word-spacing:0.768000pt;}
.wsc1{word-spacing:0.853333pt;}
.ws11c{word-spacing:0.880000pt;}
.ws35{word-spacing:0.896000pt;}
.ws33{word-spacing:0.933333pt;}
.wscf{word-spacing:0.938667pt;}
.ws73{word-spacing:0.981333pt;}
.ws110{word-spacing:1.080000pt;}
.ws58{word-spacing:1.120000pt;}
.wsb9{word-spacing:1.152000pt;}
.ws15b{word-spacing:1.160000pt;}
.wsdc{word-spacing:1.194667pt;}
.wsa5{word-spacing:1.280000pt;}
.ws11a{word-spacing:1.320000pt;}
.ws80{word-spacing:1.322667pt;}
.ws14a{word-spacing:1.360000pt;}
.wsd0{word-spacing:1.365333pt;}
.ws11d{word-spacing:1.400000pt;}
.wsb7{word-spacing:1.450667pt;}
.ws7e{word-spacing:1.493333pt;}
.wsc6{word-spacing:1.536000pt;}
.ws150{word-spacing:1.560000pt;}
.wsae{word-spacing:1.621333pt;}
.ws10f{word-spacing:1.640000pt;}
.ws77{word-spacing:1.706667pt;}
.ws112{word-spacing:1.720000pt;}
.ws13a{word-spacing:1.800000pt;}
.ws78{word-spacing:1.834667pt;}
.wsb5{word-spacing:1.877333pt;}
.ws16b{word-spacing:1.880000pt;}
.ws14c{word-spacing:2.040000pt;}
.wsd9{word-spacing:2.133333pt;}
.ws14b{word-spacing:2.160000pt;}
.wsd8{word-spacing:2.176000pt;}
.ws106{word-spacing:2.261333pt;}
.wsee{word-spacing:2.304000pt;}
.ws13f{word-spacing:2.440000pt;}
.ws15c{word-spacing:2.560000pt;}
.ws13d{word-spacing:2.680000pt;}
.wsd2{word-spacing:2.773333pt;}
.ws86{word-spacing:2.944000pt;}
.ws165{word-spacing:2.960000pt;}
.ws111{word-spacing:3.000000pt;}
.ws5f{word-spacing:3.024000pt;}
.wsa2{word-spacing:3.029333pt;}
.wsbe{word-spacing:3.114667pt;}
.ws171{word-spacing:3.120000pt;}
.ws10e{word-spacing:3.160000pt;}
.ws10c{word-spacing:3.280000pt;}
.wsc3{word-spacing:3.370667pt;}
.ws14e{word-spacing:3.440000pt;}
.ws16d{word-spacing:3.760000pt;}
.ws14d{word-spacing:3.800000pt;}
.ws81{word-spacing:3.840000pt;}
.ws118{word-spacing:4.160000pt;}
.ws16f{word-spacing:4.200000pt;}
.ws140{word-spacing:4.480000pt;}
.ws139{word-spacing:4.640000pt;}
.ws142{word-spacing:4.720000pt;}
.ws170{word-spacing:4.760000pt;}
.ws136{word-spacing:5.000000pt;}
.ws149{word-spacing:5.160000pt;}
.ws10a{word-spacing:5.200000pt;}
.ws133{word-spacing:5.320000pt;}
.ws13b{word-spacing:5.400000pt;}
.ws158{word-spacing:6.960000pt;}
.ws148{word-spacing:7.160000pt;}
.ws10b{word-spacing:7.560000pt;}
.ws115{word-spacing:7.960000pt;}
.ws62{word-spacing:8.112000pt;}
.ws16c{word-spacing:8.360000pt;}
.ws130{word-spacing:8.440000pt;}
.ws145{word-spacing:8.560000pt;}
.ws116{word-spacing:8.920000pt;}
.ws159{word-spacing:9.160000pt;}
.ws134{word-spacing:9.320000pt;}
.ws153{word-spacing:10.120000pt;}
.ws120{word-spacing:10.240000pt;}
.ws135{word-spacing:10.520000pt;}
.ws16e{word-spacing:12.520000pt;}
.ws121{word-spacing:15.920000pt;}
.ws11e{word-spacing:21.240000pt;}
.ws151{word-spacing:22.440000pt;}
.ws166{word-spacing:23.000000pt;}
.ws14f{word-spacing:31.040000pt;}
.ws119{word-spacing:32.400000pt;}
.ws8d{word-spacing:39.116000pt;}
.ws9d{word-spacing:52.108000pt;}
.ws15{word-spacing:68.484800pt;}
.ws1a{word-spacing:68.676800pt;}
.ws21{word-spacing:68.677333pt;}
.ws25{word-spacing:68.842667pt;}
.ws1e{word-spacing:68.856000pt;}
.ws0{word-spacing:69.047573pt;}
.wse{word-spacing:69.111467pt;}
.ws1{word-spacing:69.581973pt;}
.ws19{word-spacing:69.854933pt;}
.ws24{word-spacing:69.855467pt;}
.ws10{word-spacing:69.926933pt;}
.ws13{word-spacing:70.039467pt;}
.ws1c{word-spacing:70.092800pt;}
.ws14{word-spacing:70.554133pt;}
.ws20{word-spacing:70.661333pt;}
.ws17{word-spacing:70.727147pt;}
.ws1b{word-spacing:70.754453pt;}
.ws1f{word-spacing:70.755733pt;}
.ws26{word-spacing:71.165973pt;}
.ws23{word-spacing:71.382933pt;}
.wsb{word-spacing:71.544533pt;}
.ws1d{word-spacing:71.548800pt;}
.ws16{word-spacing:71.705600pt;}
.wsc{word-spacing:71.709867pt;}
.ws8{word-spacing:71.710400pt;}
.ws7{word-spacing:71.712427pt;}
.ws9{word-spacing:71.721920pt;}
.ws11{word-spacing:72.097920pt;}
.ws5{word-spacing:72.139200pt;}
.wsa{word-spacing:73.334293pt;}
.wsd{word-spacing:73.421333pt;}
.ws22{word-spacing:73.788800pt;}
.ws18{word-spacing:73.954667pt;}
.ws6{word-spacing:73.957120pt;}
.ws98{word-spacing:74.596000pt;}
.ws2{word-spacing:77.715733pt;}
.ws95{word-spacing:91.704000pt;}
.ws91{word-spacing:124.160000pt;}
.ws9e{word-spacing:134.756000pt;}
.wsa0{word-spacing:137.280000pt;}
.ws9c{word-spacing:146.912000pt;}
.ws8f{word-spacing:165.128000pt;}
.ws9b{word-spacing:173.012000pt;}
.ws8e{word-spacing:191.408000pt;}
.ws93{word-spacing:203.248000pt;}
.wse8{word-spacing:231.536000pt;}
.wsea{word-spacing:254.984000pt;}
.wseb{word-spacing:270.468000pt;}
.ws90{word-spacing:271.952000pt;}
.wse6{word-spacing:344.244000pt;}
.wse5{word-spacing:589.488000pt;}
.ws63{word-spacing:2239.894933pt;}
._15{margin-left:-11.168000pt;}
._27{margin-left:-9.905067pt;}
._1a{margin-left:-6.730667pt;}
._9{margin-left:-5.715200pt;}
._1b{margin-left:-4.705067pt;}
._6{margin-left:-3.772800pt;}
._7{margin-left:-2.265600pt;}
._5{margin-left:-1.372800pt;}
._2{width:1.209600pt;}
._4{width:2.277333pt;}
._b{width:3.177600pt;}
._8{width:4.233600pt;}
._a{width:5.798400pt;}
._c{width:7.396800pt;}
._3{width:8.400000pt;}
._d{width:9.849600pt;}
._10{width:10.814400pt;}
._f{width:12.439467pt;}
._e{width:13.531733pt;}
._11{width:15.265067pt;}
._12{width:16.253867pt;}
._14{width:17.322667pt;}
._13{width:18.688000pt;}
._1c{width:19.818667pt;}
._1d{width:20.872533pt;}
._28{width:22.908800pt;}
._1e{width:24.701867pt;}
._2c{width:26.263200pt;}
._2a{width:30.287200pt;}
._2b{width:34.640000pt;}
._29{width:36.491200pt;}
._20{width:59.677333pt;}
._1f{width:60.783467pt;}
._2d{width:62.260800pt;}
._22{width:69.513600pt;}
._18{width:77.062400pt;}
._17{width:102.262400pt;}
._16{width:125.652800pt;}
._19{width:257.326400pt;}
._24{width:284.560000pt;}
._21{width:459.302400pt;}
._23{width:484.243200pt;}
._26{width:512.942400pt;}
._25{width:579.881600pt;}
._1{width:678.869333pt;}
._0{width:1222.480000pt;}
.fs7{font-size:26.133333pt;}
.fs10{font-size:28.000000pt;}
.fsd{font-size:29.866667pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:33.600000pt;}
.fs0{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fse{font-size:47.834133pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs3{font-size:69.813333pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.953600pt;}
.y2{bottom:38.220267pt;}
.y2f{bottom:57.300133pt;}
.y6f{bottom:67.397467pt;}
.y1cf{bottom:67.533333pt;}
.y182{bottom:67.951067pt;}
.y110{bottom:67.958800pt;}
.yae{bottom:68.323467pt;}
.yd4{bottom:68.334133pt;}
.y11f{bottom:68.464800pt;}
.y19f{bottom:68.663733pt;}
.y1ee{bottom:70.305200pt;}
.y2e{bottom:70.637467pt;}
.y2e2{bottom:73.212133pt;}
.y6e{bottom:80.734800pt;}
.y1ce{bottom:82.200000pt;}
.y2d{bottom:83.974800pt;}
.y181{bottom:85.284400pt;}
.y10f{bottom:85.292133pt;}
.y21d{bottom:85.579333pt;}
.yad{bottom:85.656800pt;}
.yd3{bottom:85.667467pt;}
.y11e{bottom:85.798133pt;}
.y19e{bottom:85.997067pt;}
.y231{bottom:86.251333pt;}
.y2e1{bottom:87.212133pt;}
.y1ed{bottom:87.638533pt;}
.y2a1{bottom:87.817067pt;}
.y261{bottom:88.087067pt;}
.y87{bottom:91.140000pt;}
.y6d{bottom:94.072133pt;}
.y1cd{bottom:96.866667pt;}
.y2e0{bottom:101.212133pt;}
.y2a0{bottom:101.817067pt;}
.y260{bottom:102.087067pt;}
.y180{bottom:102.617733pt;}
.y10e{bottom:102.625467pt;}
.y21c{bottom:102.912667pt;}
.yac{bottom:102.990133pt;}
.yd2{bottom:103.000800pt;}
.y11d{bottom:103.131467pt;}
.y19d{bottom:103.330400pt;}
.y1ec{bottom:104.971867pt;}
.y6c{bottom:107.409467pt;}
.y230{bottom:107.584667pt;}
.y2c{bottom:108.210933pt;}
.y86{bottom:111.144000pt;}
.y1cc{bottom:111.533333pt;}
.y2df{bottom:115.212133pt;}
.y29f{bottom:115.817067pt;}
.y17f{bottom:119.951067pt;}
.y117{bottom:119.958800pt;}
.y21b{bottom:120.246000pt;}
.yab{bottom:120.323467pt;}
.yd1{bottom:120.334133pt;}
.y11c{bottom:120.464800pt;}
.y19c{bottom:120.663733pt;}
.y6b{bottom:120.746800pt;}
.y1eb{bottom:122.305200pt;}
.y2b{bottom:124.210933pt;}
.y1f6{bottom:126.152000pt;}
.y1cb{bottom:126.200000pt;}
.y25f{bottom:128.087067pt;}
.y10d{bottom:128.625467pt;}
.y22f{bottom:128.918000pt;}
.y2de{bottom:129.212133pt;}
.y29e{bottom:129.817067pt;}
.y85{bottom:131.148000pt;}
.y6a{bottom:134.084133pt;}
.y17e{bottom:137.284400pt;}
.y116{bottom:137.292133pt;}
.y21a{bottom:137.579333pt;}
.yaa{bottom:137.656800pt;}
.yd0{bottom:137.667467pt;}
.y11b{bottom:137.798133pt;}
.y19b{bottom:137.997067pt;}
.y1ea{bottom:139.638533pt;}
.y2a{bottom:140.210933pt;}
.y1f5{bottom:140.818667pt;}
.y1ca{bottom:140.866667pt;}
.y2dd{bottom:143.212133pt;}
.y29d{bottom:143.817067pt;}
.y69{bottom:147.421467pt;}
.y22e{bottom:150.251333pt;}
.y84{bottom:151.152000pt;}
.y17d{bottom:154.617733pt;}
.y115{bottom:154.625467pt;}
.y219{bottom:154.912667pt;}
.ya9{bottom:154.990133pt;}
.ycf{bottom:155.000800pt;}
.y11a{bottom:155.131467pt;}
.y19a{bottom:155.330400pt;}
.y1f4{bottom:155.485333pt;}
.y1c9{bottom:155.533333pt;}
.y29{bottom:156.210933pt;}
.y1e9{bottom:156.971867pt;}
.y2dc{bottom:157.212133pt;}
.y29c{bottom:157.817067pt;}
.y68{bottom:160.758800pt;}
.y10c{bottom:163.292133pt;}
.y1f3{bottom:170.152000pt;}
.y1c8{bottom:170.200000pt;}
.y83{bottom:171.156000pt;}
.y2db{bottom:171.212133pt;}
.y22d{bottom:171.574000pt;}
.y29b{bottom:171.817067pt;}
.y17c{bottom:171.951067pt;}
.y114{bottom:171.958800pt;}
.y28{bottom:172.210933pt;}
.y218{bottom:172.246000pt;}
.ya8{bottom:172.323467pt;}
.yce{bottom:172.334133pt;}
.y119{bottom:172.464800pt;}
.y199{bottom:172.663733pt;}
.y25e{bottom:173.420400pt;}
.y67{bottom:174.096133pt;}
.y1e8{bottom:174.305200pt;}
.y1c7{bottom:184.866667pt;}
.y2da{bottom:185.212133pt;}
.y29a{bottom:185.817067pt;}
.y66{bottom:187.433467pt;}
.y27{bottom:188.210933pt;}
.y17b{bottom:189.284400pt;}
.y113{bottom:189.292133pt;}
.ya7{bottom:189.656800pt;}
.ycd{bottom:189.667467pt;}
.y118{bottom:189.798133pt;}
.y198{bottom:189.997067pt;}
.y82{bottom:191.160000pt;}
.y1e7{bottom:191.638533pt;}
.y25d{bottom:194.753733pt;}
.y22c{bottom:197.579333pt;}
.y217{bottom:198.251333pt;}
.y2d9{bottom:199.212133pt;}
.y1c6{bottom:199.533333pt;}
.y299{bottom:199.817067pt;}
.y65{bottom:200.770800pt;}
.y26{bottom:204.210933pt;}
.y17a{bottom:206.617733pt;}
.y10b{bottom:206.625467pt;}
.ya6{bottom:206.990133pt;}
.ycc{bottom:207.000800pt;}
.y197{bottom:207.330400pt;}
.y1e6{bottom:208.971867pt;}
.y81{bottom:211.164000pt;}
.y2d8{bottom:213.212133pt;}
.y298{bottom:213.817067pt;}
.y64{bottom:214.108133pt;}
.y1c5{bottom:214.200000pt;}
.y25c{bottom:216.087067pt;}
.y25{bottom:220.210933pt;}
.y179{bottom:223.951067pt;}
.y10a{bottom:223.958800pt;}
.ya5{bottom:224.323467pt;}
.ycb{bottom:224.334133pt;}
.y196{bottom:224.663733pt;}
.y1e5{bottom:226.305200pt;}
.y2d7{bottom:227.212133pt;}
.y63{bottom:227.445467pt;}
.y297{bottom:227.817067pt;}
.y80{bottom:231.168000pt;}
.y130{bottom:231.388800pt;}
.y14a{bottom:233.051467pt;}
.y24{bottom:236.210933pt;}
.y25b{bottom:237.420400pt;}
.y150{bottom:237.774267pt;}
.y62{bottom:240.782800pt;}
.y2d6{bottom:241.212133pt;}
.y178{bottom:241.284400pt;}
.y109{bottom:241.292133pt;}
.ya4{bottom:241.656800pt;}
.yca{bottom:241.667467pt;}
.y296{bottom:241.817067pt;}
.y195{bottom:241.997067pt;}
.y1e4{bottom:243.638533pt;}
.y22b{bottom:246.912667pt;}
.y216{bottom:250.251333pt;}
.y7f{bottom:251.172000pt;}
.y23{bottom:252.210933pt;}
.y131{bottom:253.811050pt;}
.y61{bottom:254.120133pt;}
.y149{bottom:255.051467pt;}
.y2d5{bottom:255.212133pt;}
.y295{bottom:255.817067pt;}
.y177{bottom:258.617733pt;}
.y108{bottom:258.625467pt;}
.y25a{bottom:258.753733pt;}
.ya3{bottom:258.990133pt;}
.yc9{bottom:259.000800pt;}
.y194{bottom:259.330400pt;}
.y1e3{bottom:260.971867pt;}
.y22a{bottom:264.246000pt;}
.y60{bottom:267.457467pt;}
.y215{bottom:267.584667pt;}
.y22{bottom:268.210933pt;}
.y148{bottom:269.051467pt;}
.y2d4{bottom:269.212133pt;}
.y294{bottom:269.817067pt;}
.y7e{bottom:271.176000pt;}
.y176{bottom:275.951067pt;}
.y107{bottom:275.958800pt;}
.ya2{bottom:276.323467pt;}
.yc8{bottom:276.334133pt;}
.y193{bottom:276.663733pt;}
.y1e2{bottom:278.305200pt;}
.y259{bottom:280.087067pt;}
.y5f{bottom:280.794800pt;}
.y229{bottom:281.579333pt;}
.y147{bottom:283.048000pt;}
.y2d3{bottom:283.212133pt;}
.y293{bottom:283.817067pt;}
.y21{bottom:284.210933pt;}
.y214{bottom:284.918000pt;}
.y7d{bottom:291.180000pt;}
.y175{bottom:293.284400pt;}
.y112{bottom:293.292133pt;}
.ya1{bottom:293.656800pt;}
.yc7{bottom:293.667467pt;}
.y192{bottom:293.997067pt;}
.y5e{bottom:294.132133pt;}
.y1e1{bottom:295.638533pt;}
.y2d2{bottom:297.212133pt;}
.y292{bottom:297.817067pt;}
.y228{bottom:298.912667pt;}
.y20{bottom:300.210933pt;}
.y258{bottom:301.420400pt;}
.y146{bottom:301.768000pt;}
.y213{bottom:302.251333pt;}
.y5d{bottom:307.469467pt;}
.y174{bottom:310.617733pt;}
.y106{bottom:310.625467pt;}
.ya0{bottom:310.990133pt;}
.yc6{bottom:311.000800pt;}
.y7c{bottom:311.184000pt;}
.y2d1{bottom:311.212133pt;}
.y191{bottom:311.330400pt;}
.y291{bottom:311.817067pt;}
.y1e0{bottom:312.971867pt;}
.y145{bottom:315.764533pt;}
.y1f{bottom:316.210933pt;}
.y227{bottom:316.246000pt;}
.y212{bottom:319.584667pt;}
.y5c{bottom:320.806800pt;}
.y257{bottom:322.753733pt;}
.y2d0{bottom:325.212133pt;}
.y290{bottom:325.817067pt;}
.y173{bottom:327.951067pt;}
.y105{bottom:327.958800pt;}
.y9f{bottom:328.323467pt;}
.yc5{bottom:328.334133pt;}
.y190{bottom:328.663733pt;}
.y1df{bottom:330.305200pt;}
.y1bb{bottom:330.631867pt;}
.y7b{bottom:331.148000pt;}
.y1e{bottom:332.210933pt;}
.y226{bottom:333.579333pt;}
.y5b{bottom:334.144133pt;}
.y144{bottom:334.484533pt;}
.y1f2{bottom:336.625467pt;}
.y211{bottom:336.918000pt;}
.y2cf{bottom:339.212133pt;}
.y28f{bottom:339.817067pt;}
.y172{bottom:341.766533pt;}
.y256{bottom:344.087067pt;}
.y171{bottom:345.284400pt;}
.y104{bottom:345.292133pt;}
.y9e{bottom:345.656800pt;}
.yc4{bottom:345.667467pt;}
.y18f{bottom:345.997067pt;}
.y5a{bottom:347.481467pt;}
.y1de{bottom:347.638533pt;}
.y1ba{bottom:347.965200pt;}
.y1d{bottom:348.210933pt;}
.y141{bottom:348.484533pt;}
.y225{bottom:350.912667pt;}
.y7a{bottom:351.152000pt;}
.y30f{bottom:353.204267pt;}
.y2ce{bottom:353.212133pt;}
.y28e{bottom:353.817067pt;}
.y210{bottom:354.251333pt;}
.y14d{bottom:359.107600pt;}
.y59{bottom:360.818800pt;}
.y140{bottom:362.484533pt;}
.y170{bottom:362.617733pt;}
.y103{bottom:362.625467pt;}
.y9d{bottom:362.990133pt;}
.yc3{bottom:363.000800pt;}
.y18e{bottom:363.330400pt;}
.y1c{bottom:364.210933pt;}
.y1dd{bottom:364.971867pt;}
.y1b9{bottom:365.298533pt;}
.y255{bottom:365.420400pt;}
.y30e{bottom:367.204267pt;}
.y2cd{bottom:367.212133pt;}
.y28d{bottom:367.817067pt;}
.y224{bottom:368.246000pt;}
.y79{bottom:371.156000pt;}
.y20f{bottom:371.584667pt;}
.y13f{bottom:376.481200pt;}
.y143{bottom:376.484533pt;}
.y32c{bottom:377.860267pt;}
.y16f{bottom:379.951067pt;}
.y102{bottom:379.958800pt;}
.y1b{bottom:380.210933pt;}
.y9c{bottom:380.323467pt;}
.yc2{bottom:380.334133pt;}
.y18d{bottom:380.663733pt;}
.y30d{bottom:381.204267pt;}
.y2cc{bottom:381.212133pt;}
.y28c{bottom:381.817067pt;}
.y1dc{bottom:382.305200pt;}
.y1b8{bottom:382.631867pt;}
.y223{bottom:385.579333pt;}
.y254{bottom:386.753733pt;}
.y58{bottom:387.484133pt;}
.y111{bottom:388.625467pt;}
.y20e{bottom:388.918000pt;}
.y13e{bottom:390.481200pt;}
.y142{bottom:390.484533pt;}
.y78{bottom:391.160000pt;}
.y32b{bottom:395.193600pt;}
.y30c{bottom:395.204267pt;}
.y2cb{bottom:395.212133pt;}
.y28b{bottom:395.817067pt;}
.y1a{bottom:396.210933pt;}
.y16e{bottom:397.284400pt;}
.y101{bottom:397.292133pt;}
.y9b{bottom:397.656800pt;}
.yc1{bottom:397.667467pt;}
.y18c{bottom:397.997067pt;}
.y1db{bottom:399.638533pt;}
.y1b7{bottom:399.965200pt;}
.y57{bottom:400.821467pt;}
.y222{bottom:402.912667pt;}
.y20d{bottom:406.251333pt;}
.y253{bottom:408.087067pt;}
.y13d{bottom:409.201200pt;}
.y30b{bottom:409.204267pt;}
.y2ca{bottom:409.212133pt;}
.y28a{bottom:409.817067pt;}
.y14f{bottom:411.107600pt;}
.y77{bottom:411.164000pt;}
.y19{bottom:412.210933pt;}
.y32a{bottom:412.526933pt;}
.y56{bottom:414.158800pt;}
.y16d{bottom:414.617733pt;}
.y100{bottom:414.625467pt;}
.y9a{bottom:414.990133pt;}
.yc0{bottom:415.000800pt;}
.y1da{bottom:416.971867pt;}
.y1b6{bottom:417.298533pt;}
.y221{bottom:420.246000pt;}
.y13c{bottom:423.201200pt;}
.y30a{bottom:423.204267pt;}
.y2c9{bottom:423.212133pt;}
.y20c{bottom:423.584667pt;}
.y289{bottom:423.817067pt;}
.y18b{bottom:423.997067pt;}
.y55{bottom:427.496133pt;}
.y18{bottom:428.210933pt;}
.y252{bottom:429.420400pt;}
.y329{bottom:429.860267pt;}
.y76{bottom:431.168000pt;}
.y16c{bottom:431.951067pt;}
.yff{bottom:431.958800pt;}
.y99{bottom:432.323467pt;}
.ybf{bottom:432.334133pt;}
.y1d9{bottom:434.305200pt;}
.y1b5{bottom:434.631867pt;}
.y13a{bottom:437.201200pt;}
.y309{bottom:437.204267pt;}
.y2c8{bottom:437.212133pt;}
.y220{bottom:437.579333pt;}
.y288{bottom:437.817067pt;}
.y54{bottom:440.833467pt;}
.y20b{bottom:440.918000pt;}
.y16b{bottom:449.284400pt;}
.yfe{bottom:449.292133pt;}
.y98{bottom:449.656800pt;}
.ybe{bottom:449.667467pt;}
.y251{bottom:450.753733pt;}
.y75{bottom:451.172000pt;}
.y139{bottom:451.197867pt;}
.y13b{bottom:451.201200pt;}
.y308{bottom:451.204267pt;}
.y2c7{bottom:451.212133pt;}
.y1d8{bottom:451.638533pt;}
.y287{bottom:451.817067pt;}
.y1c0{bottom:451.965200pt;}
.y53{bottom:454.170800pt;}
.y17{bottom:454.672267pt;}
.y21f{bottom:454.912667pt;}
.y20a{bottom:458.251333pt;}
.y1b4{bottom:460.631867pt;}
.y14c{bottom:463.107600pt;}
.y307{bottom:465.204267pt;}
.y2c6{bottom:465.212133pt;}
.y286{bottom:465.817067pt;}
.y16a{bottom:466.617733pt;}
.yfd{bottom:466.625467pt;}
.y97{bottom:466.990133pt;}
.ybd{bottom:467.000800pt;}
.y18a{bottom:467.330400pt;}
.y52{bottom:467.508133pt;}
.y1d7{bottom:468.971867pt;}
.y1bf{bottom:469.298533pt;}
.y138{bottom:469.917867pt;}
.y74{bottom:471.176000pt;}
.y250{bottom:472.087067pt;}
.y209{bottom:475.584667pt;}
.y328{bottom:477.188267pt;}
.y306{bottom:479.204267pt;}
.y2c5{bottom:479.212133pt;}
.y285{bottom:479.817067pt;}
.y51{bottom:480.845467pt;}
.y21e{bottom:480.918000pt;}
.y16{bottom:481.338933pt;}
.y137{bottom:483.917867pt;}
.y169{bottom:483.951067pt;}
.yfc{bottom:483.958800pt;}
.y96{bottom:484.323467pt;}
.ybc{bottom:484.334133pt;}
.y189{bottom:484.663733pt;}
.y1d6{bottom:486.305200pt;}
.y1be{bottom:486.631867pt;}
.y73{bottom:491.180000pt;}
.y208{bottom:492.918000pt;}
.y305{bottom:493.204267pt;}
.y2c4{bottom:493.212133pt;}
.y24f{bottom:493.420400pt;}
.y284{bottom:493.817067pt;}
.y50{bottom:494.182800pt;}
.y327{bottom:494.521600pt;}
.y1b3{bottom:495.298533pt;}
.y14b{bottom:497.774267pt;}
.y136{bottom:497.917733pt;}
.y168{bottom:501.284400pt;}
.yfb{bottom:501.292133pt;}
.y95{bottom:501.656800pt;}
.ybb{bottom:501.667467pt;}
.y188{bottom:501.997067pt;}
.y1d5{bottom:503.638533pt;}
.y1bd{bottom:503.965200pt;}
.y304{bottom:507.204267pt;}
.y2c3{bottom:507.212133pt;}
.y4f{bottom:507.520133pt;}
.y283{bottom:507.817067pt;}
.y15{bottom:508.005600pt;}
.y207{bottom:510.251333pt;}
.y72{bottom:511.184000pt;}
.y24e{bottom:514.753733pt;}
.y167{bottom:518.617733pt;}
.yfa{bottom:518.625467pt;}
.y94{bottom:518.990133pt;}
.yba{bottom:519.000800pt;}
.y135{bottom:519.167733pt;}
.y187{bottom:519.330400pt;}
.y326{bottom:519.854933pt;}
.y4e{bottom:520.857467pt;}
.y1d4{bottom:520.971867pt;}
.y303{bottom:521.204267pt;}
.y2c2{bottom:521.212133pt;}
.y1bc{bottom:521.298533pt;}
.y282{bottom:521.817067pt;}
.y206{bottom:527.584667pt;}
.y71{bottom:531.188000pt;}
.y4d{bottom:534.194800pt;}
.y14{bottom:534.672267pt;}
.y302{bottom:535.204267pt;}
.y2c1{bottom:535.212133pt;}
.y281{bottom:535.817067pt;}
.y166{bottom:535.951067pt;}
.yf9{bottom:535.958800pt;}
.y24d{bottom:536.087067pt;}
.y93{bottom:536.323467pt;}
.yb9{bottom:536.334133pt;}
.y186{bottom:536.663733pt;}
.y1d3{bottom:538.305200pt;}
.y1b2{bottom:538.631867pt;}
.y134{bottom:544.084267pt;}
.y205{bottom:544.918000pt;}
.y4c{bottom:547.532133pt;}
.y301{bottom:549.204267pt;}
.y2c0{bottom:549.212133pt;}
.y280{bottom:549.817067pt;}
.y70{bottom:551.188000pt;}
.y165{bottom:553.284400pt;}
.yf8{bottom:553.292133pt;}
.y92{bottom:553.656800pt;}
.yb8{bottom:553.667467pt;}
.y185{bottom:553.997067pt;}
.y1d2{bottom:555.638533pt;}
.y1b1{bottom:555.965200pt;}
.y24c{bottom:557.420400pt;}
.y133{bottom:558.750933pt;}
.y4b{bottom:560.869467pt;}
.y13{bottom:561.338933pt;}
.y204{bottom:562.251333pt;}
.y300{bottom:563.204267pt;}
.y2bf{bottom:563.212133pt;}
.y27f{bottom:563.817067pt;}
.y325{bottom:570.521600pt;}
.y164{bottom:570.617733pt;}
.yf7{bottom:570.625467pt;}
.y91{bottom:570.990133pt;}
.yb7{bottom:571.000800pt;}
.y184{bottom:571.332400pt;}
.y1d1{bottom:572.971867pt;}
.y1b0{bottom:573.298533pt;}
.y132{bottom:573.417600pt;}
.y2ff{bottom:577.204267pt;}
.y2be{bottom:577.212133pt;}
.y27e{bottom:577.817067pt;}
.y24b{bottom:578.753733pt;}
.y203{bottom:579.584667pt;}
.y324{bottom:587.854933pt;}
.y163{bottom:587.951067pt;}
.yf6{bottom:587.958800pt;}
.y12{bottom:588.005600pt;}
.y90{bottom:588.323467pt;}
.yb6{bottom:588.334133pt;}
.y183{bottom:588.665733pt;}
.y1d0{bottom:590.305200pt;}
.y1af{bottom:590.631867pt;}
.y2fe{bottom:591.204267pt;}
.y2bd{bottom:591.212133pt;}
.y27d{bottom:591.817067pt;}
.y202{bottom:596.918000pt;}
.y24a{bottom:600.087067pt;}
.y323{bottom:605.188267pt;}
.y2fd{bottom:605.204267pt;}
.y2bc{bottom:605.212133pt;}
.y162{bottom:605.284400pt;}
.yf5{bottom:605.292133pt;}
.y8f{bottom:605.656800pt;}
.yb5{bottom:605.667467pt;}
.y27c{bottom:605.817067pt;}
.y4a{bottom:606.565467pt;}
.y1ae{bottom:607.965200pt;}
.y201{bottom:614.251333pt;}
.y11{bottom:614.672267pt;}
.y12f{bottom:618.616000pt;}
.y2fc{bottom:619.204267pt;}
.y2bb{bottom:619.212133pt;}
.y27b{bottom:619.817067pt;}
.y249{bottom:621.420400pt;}
.y322{bottom:622.521600pt;}
.y49{bottom:622.565467pt;}
.y161{bottom:622.617733pt;}
.yf4{bottom:622.625467pt;}
.y8e{bottom:622.990133pt;}
.yb4{bottom:623.000800pt;}
.y1ad{bottom:625.298533pt;}
.y1a8{bottom:626.583600pt;}
.y1f1{bottom:630.830800pt;}
.y14e{bottom:631.292133pt;}
.y200{bottom:631.584667pt;}
.y2fb{bottom:633.204267pt;}
.y2ba{bottom:633.212133pt;}
.y27a{bottom:633.817067pt;}
.y48{bottom:638.565467pt;}
.y321{bottom:639.854933pt;}
.y160{bottom:639.951067pt;}
.yf3{bottom:639.958800pt;}
.y8d{bottom:640.323467pt;}
.yb3{bottom:640.334133pt;}
.y1a7{bottom:641.250267pt;}
.y10{bottom:641.338933pt;}
.y1ac{bottom:642.631867pt;}
.y248{bottom:642.753733pt;}
.y1f0{bottom:645.497467pt;}
.y2fa{bottom:647.204267pt;}
.y2b9{bottom:647.212133pt;}
.y279{bottom:647.817067pt;}
.y1ff{bottom:648.918000pt;}
.y47{bottom:654.565467pt;}
.y1a6{bottom:655.916933pt;}
.y320{bottom:657.188267pt;}
.y15f{bottom:657.284400pt;}
.yf2{bottom:657.292133pt;}
.y8c{bottom:657.656800pt;}
.yb2{bottom:657.667467pt;}
.y1ab{bottom:659.965200pt;}
.y1ef{bottom:660.164133pt;}
.y2f9{bottom:661.204267pt;}
.y2b8{bottom:661.212133pt;}
.y278{bottom:661.817067pt;}
.y247{bottom:664.087067pt;}
.y1fe{bottom:666.251333pt;}
.yf{bottom:668.005600pt;}
.y46{bottom:670.565467pt;}
.y1a5{bottom:670.583600pt;}
.y31f{bottom:674.521600pt;}
.y15e{bottom:674.617733pt;}
.yf1{bottom:674.625467pt;}
.y8b{bottom:674.990133pt;}
.yb1{bottom:675.000800pt;}
.y2f8{bottom:675.204267pt;}
.y2b7{bottom:675.212133pt;}
.y277{bottom:675.817067pt;}
.y1aa{bottom:677.298533pt;}
.y1fd{bottom:683.584667pt;}
.y1a4{bottom:685.250267pt;}
.y246{bottom:685.420400pt;}
.y45{bottom:686.565467pt;}
.y2f7{bottom:689.204267pt;}
.y2b6{bottom:689.212133pt;}
.y276{bottom:689.817067pt;}
.y31e{bottom:691.854933pt;}
.y15d{bottom:691.951067pt;}
.yf0{bottom:691.958800pt;}
.yb0{bottom:692.334133pt;}
.y1a9{bottom:694.631867pt;}
.ye{bottom:694.672267pt;}
.y1a3{bottom:699.916933pt;}
.y1fc{bottom:700.918000pt;}
.y44{bottom:702.565467pt;}
.y2f6{bottom:703.204267pt;}
.y2b5{bottom:703.212133pt;}
.y275{bottom:703.817067pt;}
.y245{bottom:706.753733pt;}
.y15c{bottom:709.284400pt;}
.yef{bottom:709.292133pt;}
.y8a{bottom:709.656800pt;}
.yaf{bottom:709.667467pt;}
.y1a2{bottom:714.583600pt;}
.y129{bottom:715.470667pt;}
.y2f5{bottom:717.204267pt;}
.y2b4{bottom:717.212133pt;}
.y274{bottom:717.817067pt;}
.y31d{bottom:717.860267pt;}
.y1fb{bottom:718.251333pt;}
.y43{bottom:718.565467pt;}
.yd{bottom:721.338933pt;}
.y15b{bottom:726.617733pt;}
.yee{bottom:726.625467pt;}
.y1c4{bottom:727.965200pt;}
.y244{bottom:728.087067pt;}
.y1a1{bottom:729.250267pt;}
.y2f4{bottom:731.204267pt;}
.y2b3{bottom:731.212133pt;}
.y273{bottom:731.817067pt;}
.y42{bottom:734.565467pt;}
.y31c{bottom:735.193600pt;}
.y1fa{bottom:735.584667pt;}
.y12a{bottom:737.892917pt;}
.y1c3{bottom:742.631867pt;}
.y1a0{bottom:743.916933pt;}
.y15a{bottom:743.951067pt;}
.yed{bottom:743.958800pt;}
.y2f3{bottom:745.204267pt;}
.y2b2{bottom:745.212133pt;}
.y272{bottom:745.817067pt;}
.yc{bottom:748.005600pt;}
.y243{bottom:749.420400pt;}
.y41{bottom:750.565467pt;}
.y31b{bottom:752.526933pt;}
.y1f9{bottom:752.918000pt;}
.y1c2{bottom:757.298533pt;}
.y2f2{bottom:759.204267pt;}
.y2b1{bottom:759.212133pt;}
.y271{bottom:759.817067pt;}
.y12b{bottom:760.315167pt;}
.y159{bottom:761.284400pt;}
.yec{bottom:761.292133pt;}
.y40{bottom:766.565467pt;}
.y31a{bottom:769.860267pt;}
.y1f8{bottom:770.251333pt;}
.y242{bottom:770.753733pt;}
.y1c1{bottom:771.965200pt;}
.y2f1{bottom:773.204267pt;}
.y2b0{bottom:773.212133pt;}
.y270{bottom:773.817067pt;}
.yb{bottom:774.672267pt;}
.yde{bottom:777.556933pt;}
.y158{bottom:778.617733pt;}
.yeb{bottom:778.625467pt;}
.y3f{bottom:782.565467pt;}
.y12c{bottom:782.737417pt;}
.y319{bottom:787.193600pt;}
.y2f0{bottom:787.204267pt;}
.y2af{bottom:787.212133pt;}
.y1f7{bottom:787.584667pt;}
.y26f{bottom:787.817067pt;}
.y241{bottom:792.087067pt;}
.ydd{bottom:794.890267pt;}
.y157{bottom:795.951067pt;}
.yea{bottom:795.958800pt;}
.y3e{bottom:798.565467pt;}
.y2ef{bottom:801.204267pt;}
.y2ae{bottom:801.212133pt;}
.ya{bottom:801.344267pt;}
.y26e{bottom:801.817067pt;}
.y12d{bottom:805.159667pt;}
.ydc{bottom:812.223600pt;}
.y318{bottom:813.198933pt;}
.y156{bottom:813.284400pt;}
.ye9{bottom:813.292133pt;}
.y240{bottom:813.420400pt;}
.y3d{bottom:814.565467pt;}
.y2ee{bottom:815.204267pt;}
.y2ad{bottom:815.212133pt;}
.y26d{bottom:815.817067pt;}
.y12e{bottom:827.581917pt;}
.y2ed{bottom:829.204267pt;}
.y2ac{bottom:829.212133pt;}
.ydb{bottom:829.556933pt;}
.y26c{bottom:829.817067pt;}
.y317{bottom:830.532267pt;}
.y3c{bottom:830.565467pt;}
.ye8{bottom:830.625467pt;}
.y23f{bottom:834.753733pt;}
.y155{bottom:839.284400pt;}
.y2ec{bottom:843.204267pt;}
.y2ab{bottom:843.212133pt;}
.y26b{bottom:843.817067pt;}
.y3b{bottom:846.565467pt;}
.y316{bottom:847.865600pt;}
.ye7{bottom:847.958800pt;}
.y238{bottom:851.490933pt;}
.y128{bottom:851.951067pt;}
.y9{bottom:853.338933pt;}
.y23e{bottom:856.087067pt;}
.y2eb{bottom:857.204267pt;}
.y2aa{bottom:857.212133pt;}
.y26a{bottom:857.817067pt;}
.yda{bottom:861.524400pt;}
.y3a{bottom:862.565467pt;}
.y315{bottom:865.198933pt;}
.ye6{bottom:865.292133pt;}
.y127{bottom:866.617733pt;}
.y237{bottom:870.210933pt;}
.y2ea{bottom:871.204267pt;}
.y2a9{bottom:871.212133pt;}
.y269{bottom:871.817067pt;}
.y154{bottom:873.951067pt;}
.y23d{bottom:877.420400pt;}
.y39{bottom:878.565467pt;}
.y126{bottom:881.284400pt;}
.yd9{bottom:881.528400pt;}
.y314{bottom:882.532267pt;}
.ye5{bottom:882.625467pt;}
.y8{bottom:884.010933pt;}
.y2e9{bottom:885.204267pt;}
.y2a8{bottom:885.212133pt;}
.y268{bottom:885.817067pt;}
.y236{bottom:888.930933pt;}
.y38{bottom:894.565467pt;}
.y125{bottom:895.951067pt;}
.y23c{bottom:898.753733pt;}
.y2e8{bottom:899.204267pt;}
.y2a7{bottom:899.212133pt;}
.y267{bottom:899.817067pt;}
.y313{bottom:899.865600pt;}
.ye4{bottom:899.958800pt;}
.yd8{bottom:901.532400pt;}
.y235{bottom:907.650933pt;}
.y37{bottom:910.565467pt;}
.y124{bottom:910.617733pt;}
.y2e7{bottom:913.204267pt;}
.y2a6{bottom:913.212133pt;}
.y266{bottom:913.817067pt;}
.y312{bottom:917.198933pt;}
.y153{bottom:917.284400pt;}
.ye3{bottom:917.292133pt;}
.y23b{bottom:920.087067pt;}
.yd7{bottom:921.536400pt;}
.y234{bottom:921.650933pt;}
.y123{bottom:925.284400pt;}
.y36{bottom:926.565467pt;}
.y2e6{bottom:927.204267pt;}
.y2a5{bottom:927.212133pt;}
.y265{bottom:927.817067pt;}
.y311{bottom:934.532267pt;}
.y152{bottom:934.617733pt;}
.ye2{bottom:934.625467pt;}
.y122{bottom:939.951067pt;}
.y233{bottom:940.370933pt;}
.y2e5{bottom:941.204267pt;}
.y2a4{bottom:941.212133pt;}
.y7{bottom:941.344267pt;}
.y23a{bottom:941.420400pt;}
.yd6{bottom:941.540400pt;}
.y264{bottom:941.817067pt;}
.y35{bottom:942.565467pt;}
.y151{bottom:951.951067pt;}
.ye1{bottom:951.958800pt;}
.y121{bottom:954.617733pt;}
.y2e4{bottom:955.204267pt;}
.y2a3{bottom:955.212133pt;}
.y263{bottom:955.817067pt;}
.y34{bottom:958.565467pt;}
.y310{bottom:960.537600pt;}
.yd5{bottom:961.544400pt;}
.y232{bottom:961.620933pt;}
.y239{bottom:962.753733pt;}
.y2e3{bottom:969.204267pt;}
.y2a2{bottom:969.212133pt;}
.y120{bottom:969.284400pt;}
.ye0{bottom:969.292133pt;}
.y262{bottom:969.817067pt;}
.ydf{bottom:971.430933pt;}
.y33{bottom:974.565467pt;}
.y6{bottom:977.398800pt;}
.y5{bottom:994.061467pt;}
.y4{bottom:996.728133pt;}
.y89{bottom:1001.497733pt;}
.y31{bottom:1001.498400pt;}
.y32{bottom:1003.789333pt;}
.y88{bottom:1003.897733pt;}
.y30{bottom:1003.898400pt;}
.y3{bottom:1028.908267pt;}
.hc{height:20.031200pt;}
.hf{height:27.048000pt;}
.hd{height:27.178667pt;}
.h14{height:27.503467pt;}
.h10{height:27.738667pt;}
.h4{height:28.616000pt;}
.h1d{height:29.720000pt;}
.h18{height:29.984000pt;}
.h26{height:30.660000pt;}
.h24{height:31.701333pt;}
.h1b{height:34.392742pt;}
.h2{height:34.981333pt;}
.h7{height:35.352000pt;}
.h17{height:36.792000pt;}
.h1f{height:37.480000pt;}
.h20{height:37.493333pt;}
.h22{height:37.493867pt;}
.h3{height:39.203920pt;}
.h21{height:39.462000pt;}
.h1e{height:39.462533pt;}
.h11{height:39.626667pt;}
.h16{height:39.978667pt;}
.h25{height:40.021333pt;}
.h15{height:40.880000pt;}
.h1a{height:42.092267pt;}
.h19{height:42.092800pt;}
.h5{height:43.136000pt;}
.h12{height:44.976000pt;}
.h13{height:47.514400pt;}
.he{height:53.503520pt;}
.h6{height:53.511920pt;}
.h23{height:54.050133pt;}
.h9{height:62.086933pt;}
.hb{height:62.107733pt;}
.ha{height:62.108267pt;}
.h8{height:71.328000pt;}
.h1c{height:359.254667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:442.452000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:59.716533pt;}
.x1{left:61.984267pt;}
.x19{left:67.317600pt;}
.x13{left:75.775200pt;}
.x12{left:77.108400pt;}
.xe{left:79.279733pt;}
.x2{left:82.199867pt;}
.x3{left:84.537867pt;}
.x4{left:95.268000pt;}
.x6{left:184.810267pt;}
.x7{left:187.148133pt;}
.x21{left:222.471067pt;}
.x20{left:261.620800pt;}
.xd{left:273.878933pt;}
.x1b{left:275.648800pt;}
.x11{left:278.414267pt;}
.x25{left:293.716533pt;}
.x26{left:299.046533pt;}
.x8{left:304.805467pt;}
.x9{left:307.143467pt;}
.x1f{left:321.486667pt;}
.x24{left:334.042533pt;}
.x18{left:395.581467pt;}
.x1c{left:406.658800pt;}
.x14{left:407.764400pt;}
.xf{left:409.967733pt;}
.x1d{left:411.996533pt;}
.x23{left:418.734000pt;}
.x15{left:425.098800pt;}
.x10{left:427.301067pt;}
.x17{left:457.566800pt;}
.x27{left:484.726533pt;}
.x22{left:521.032400pt;}
.x16{left:530.645600pt;}
.x1e{left:552.696533pt;}
.x1a{left:558.028667pt;}
.x28{left:602.606533pt;}
.xa{left:687.969200pt;}
.xb{left:709.566533pt;}
.xc{left:711.565733pt;}
}




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