
    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_da397bbb633baefc49c70628.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.263000;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_e5f46aeb72c0079c3af43222.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e5ef6ff059d6bd90c6dd20cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982000;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_08ba10a0ad0f9c673a249866.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_db219a28fa44ddb4925739bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122000;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_a86e55c8b68da99afa012d34.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031143;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_8441467d982109b0f47ff7b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_b640307bdceffc176c6c23f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.048000;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_a051503c3f47d76e84d7c9a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_57b3addaa839d0aece9edc7d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894000;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_34a4783ab1246bc6067964b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.263000;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_40cc8be6549447b2f2f996b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.977000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.979000px;}
.v1{vertical-align:22.977000px;}
.ls77{letter-spacing:-6.000000px;}
.lsaf{letter-spacing:-5.313000px;}
.ls9a{letter-spacing:-4.440000px;}
.ls7b{letter-spacing:-4.209000px;}
.ls97{letter-spacing:-3.906000px;}
.ls1d{letter-spacing:-3.840000px;}
.ls68{letter-spacing:-3.660000px;}
.lsed{letter-spacing:-3.477000px;}
.ls5a{letter-spacing:-3.420000px;}
.lsec{letter-spacing:-3.363000px;}
.lsd9{letter-spacing:-3.306000px;}
.ls73{letter-spacing:-3.240000px;}
.lsde{letter-spacing:-3.135000px;}
.ls44{letter-spacing:-3.120000px;}
.lsd3{letter-spacing:-2.964000px;}
.lse2{letter-spacing:-2.907000px;}
.ls1c{letter-spacing:-2.640000px;}
.ls3a{letter-spacing:-2.614755px;}
.lscf{letter-spacing:-2.451000px;}
.lsd1{letter-spacing:-2.394000px;}
.ls5f{letter-spacing:-2.346000px;}
.lsb2{letter-spacing:-2.340000px;}
.lsce{letter-spacing:-2.337000px;}
.ls96{letter-spacing:-2.331000px;}
.lsb8{letter-spacing:-2.220000px;}
.ls48{letter-spacing:-2.212485px;}
.lsdc{letter-spacing:-2.166000px;}
.ls2f{letter-spacing:-2.139000px;}
.lsbd{letter-spacing:-2.132031px;}
.ls41{letter-spacing:-2.098800px;}
.ls70{letter-spacing:-2.070000px;}
.ls2d{letter-spacing:-2.011350px;}
.ls47{letter-spacing:-1.850442px;}
.lse8{letter-spacing:-1.824000px;}
.lsa2{letter-spacing:-1.810215px;}
.lseb{letter-spacing:-1.767000px;}
.ls4b{letter-spacing:-1.764000px;}
.ls3f{letter-spacing:-1.689534px;}
.ls34{letter-spacing:-1.609080px;}
.ls56{letter-spacing:-1.587000px;}
.ls3{letter-spacing:-1.518000px;}
.ls6e{letter-spacing:-1.488399px;}
.lse6{letter-spacing:-1.482000px;}
.ls31{letter-spacing:-1.449000px;}
.ls4a{letter-spacing:-1.448172px;}
.ls4d{letter-spacing:-1.434180px;}
.lsa6{letter-spacing:-1.399200px;}
.ls2e{letter-spacing:-1.380000px;}
.lsc1{letter-spacing:-1.364220px;}
.ls45{letter-spacing:-1.329240px;}
.ls5d{letter-spacing:-1.320000px;}
.ls15{letter-spacing:-1.260000px;}
.ls37{letter-spacing:-1.259280px;}
.ls3d{letter-spacing:-1.247037px;}
.ls3e{letter-spacing:-1.173000px;}
.ls74{letter-spacing:-1.154340px;}
.ls4c{letter-spacing:-1.119360px;}
.lsba{letter-spacing:-1.104000px;}
.ls7c{letter-spacing:-1.086129px;}
.ls14{letter-spacing:-1.083000px;}
.ls84{letter-spacing:-1.080000px;}
.ls2b{letter-spacing:-1.045902px;}
.ls46{letter-spacing:-1.035000px;}
.ls29{letter-spacing:-1.020000px;}
.ls2{letter-spacing:-1.014000px;}
.lsbb{letter-spacing:-0.966000px;}
.ls43{letter-spacing:-0.960000px;}
.ls42{letter-spacing:-0.944460px;}
.lsad{letter-spacing:-0.918225px;}
.lsc4{letter-spacing:-0.897000px;}
.ls30{letter-spacing:-0.884994px;}
.lsb0{letter-spacing:-0.874500px;}
.lsa3{letter-spacing:-0.844767px;}
.ls24{letter-spacing:-0.840000px;}
.lsbe{letter-spacing:-0.828000px;}
.ls88{letter-spacing:-0.804540px;}
.ls6a{letter-spacing:-0.780000px;}
.ls2c{letter-spacing:-0.769560px;}
.ls21{letter-spacing:-0.759000px;}
.lsac{letter-spacing:-0.756000px;}
.lsa5{letter-spacing:-0.724086px;}
.ls82{letter-spacing:-0.720000px;}
.ls98{letter-spacing:-0.697851px;}
.ls12{letter-spacing:-0.693000px;}
.ls28{letter-spacing:-0.690000px;}
.lsda{letter-spacing:-0.684000px;}
.ls94{letter-spacing:-0.683859px;}
.ls11{letter-spacing:-0.630000px;}
.ls80{letter-spacing:-0.629640px;}
.ls62{letter-spacing:-0.621000px;}
.ls50{letter-spacing:-0.600000px;}
.lsa7{letter-spacing:-0.594660px;}
.lsca{letter-spacing:-0.570000px;}
.ls8d{letter-spacing:-0.559680px;}
.ls60{letter-spacing:-0.552000px;}
.ls6{letter-spacing:-0.540000px;}
.lsb3{letter-spacing:-0.522951px;}
.lsdd{letter-spacing:-0.513000px;}
.lsa8{letter-spacing:-0.489720px;}
.lsbf{letter-spacing:-0.483000px;}
.ls99{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.456000px;}
.ls57{letter-spacing:-0.442497px;}
.ls23{letter-spacing:-0.441000px;}
.ls3b{letter-spacing:-0.414000px;}
.ls71{letter-spacing:-0.402270px;}
.ls32{letter-spacing:-0.362043px;}
.ls1b{letter-spacing:-0.345000px;}
.lsdb{letter-spacing:-0.342000px;}
.lsc0{letter-spacing:-0.321816px;}
.ls38{letter-spacing:-0.300000px;}
.lsd7{letter-spacing:-0.285000px;}
.ls6f{letter-spacing:-0.281589px;}
.ls9b{letter-spacing:-0.279840px;}
.lsae{letter-spacing:-0.276000px;}
.ls13{letter-spacing:-0.252000px;}
.ls5b{letter-spacing:-0.244860px;}
.ls51{letter-spacing:-0.240000px;}
.ls76{letter-spacing:-0.209880px;}
.ls40{letter-spacing:-0.207000px;}
.ls91{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.174900px;}
.lsd4{letter-spacing:-0.171000px;}
.ls9e{letter-spacing:-0.160908px;}
.lsb5{letter-spacing:-0.139920px;}
.lsc3{letter-spacing:-0.138000px;}
.lsaa{letter-spacing:-0.126000px;}
.ls7f{letter-spacing:-0.120681px;}
.ls75{letter-spacing:-0.104940px;}
.lsb4{letter-spacing:-0.080454px;}
.ls9f{letter-spacing:-0.069960px;}
.lse{letter-spacing:-0.063000px;}
.ls9c{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000300px;}
.ls83{letter-spacing:0.034980px;}
.lsd5{letter-spacing:0.057000px;}
.lsb7{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.069000px;}
.ls35{letter-spacing:0.069960px;}
.ls7d{letter-spacing:0.080454px;}
.lsc2{letter-spacing:0.110187px;}
.lsd6{letter-spacing:0.114000px;}
.ls6d{letter-spacing:0.138000px;}
.lsc6{letter-spacing:0.139920px;}
.lse3{letter-spacing:0.171000px;}
.lsa1{letter-spacing:0.180000px;}
.ls7e{letter-spacing:0.207000px;}
.ls81{letter-spacing:0.209880px;}
.lsea{letter-spacing:0.228000px;}
.ls4e{letter-spacing:0.240000px;}
.lsb6{letter-spacing:0.244860px;}
.ls4{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.276000px;}
.ls18{letter-spacing:0.285000px;}
.ls1e{letter-spacing:0.297900px;}
.ls67{letter-spacing:0.314820px;}
.ls0{letter-spacing:0.342000px;}
.lsbc{letter-spacing:0.345000px;}
.ls5c{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.399000px;}
.ls20{letter-spacing:0.414000px;}
.ls54{letter-spacing:0.442497px;}
.ls10{letter-spacing:0.456000px;}
.ls66{letter-spacing:0.480000px;}
.ls49{letter-spacing:0.482724px;}
.lse9{letter-spacing:0.513000px;}
.ls55{letter-spacing:0.522951px;}
.lsa0{letter-spacing:0.524700px;}
.ls69{letter-spacing:0.540000px;}
.ls59{letter-spacing:0.559680px;}
.lscb{letter-spacing:0.570000px;}
.lsb1{letter-spacing:0.594660px;}
.lsa{letter-spacing:0.624000px;}
.lscc{letter-spacing:0.627000px;}
.lsab{letter-spacing:0.630000px;}
.ls61{letter-spacing:0.643632px;}
.ls26{letter-spacing:0.667500px;}
.ls16{letter-spacing:0.672000px;}
.ls53{letter-spacing:0.683859px;}
.lsd2{letter-spacing:0.684000px;}
.ls3c{letter-spacing:0.690000px;}
.ls58{letter-spacing:0.699600px;}
.ls7{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.720300px;}
.lscd{letter-spacing:0.741000px;}
.ls64{letter-spacing:0.780000px;}
.ls19{letter-spacing:0.798000px;}
.ls9d{letter-spacing:0.804540px;}
.ls9{letter-spacing:0.816000px;}
.lsa4{letter-spacing:0.828000px;}
.ls65{letter-spacing:0.839520px;}
.ls4f{letter-spacing:0.874500px;}
.ls8a{letter-spacing:0.884994px;}
.ls8e{letter-spacing:0.900000px;}
.ls63{letter-spacing:0.909480px;}
.lsd8{letter-spacing:0.912000px;}
.ls5e{letter-spacing:0.925221px;}
.ls1{letter-spacing:0.936000px;}
.lsdf{letter-spacing:0.969000px;}
.ls72{letter-spacing:1.005675px;}
.ls8c{letter-spacing:1.014420px;}
.ls25{letter-spacing:1.025700px;}
.lsd0{letter-spacing:1.026000px;}
.lsb9{letter-spacing:1.028412px;}
.ls93{letter-spacing:1.035000px;}
.ls87{letter-spacing:1.045902px;}
.ls8f{letter-spacing:1.119360px;}
.ls89{letter-spacing:1.126356px;}
.lse4{letter-spacing:1.140000px;}
.ls78{letter-spacing:1.154340px;}
.lsc8{letter-spacing:1.191000px;}
.ls95{letter-spacing:1.206810px;}
.lse1{letter-spacing:1.231200px;}
.lse7{letter-spacing:1.425000px;}
.lsc9{letter-spacing:1.449000px;}
.ls90{letter-spacing:1.469160px;}
.lsc5{letter-spacing:1.518000px;}
.lsd{letter-spacing:1.554000px;}
.ls8b{letter-spacing:1.568853px;}
.lse5{letter-spacing:1.596000px;}
.lsc7{letter-spacing:1.930200px;}
.lsb{letter-spacing:1.998000px;}
.ls27{letter-spacing:4.071000px;}
.ls2a{letter-spacing:6.940200px;}
.lse0{letter-spacing:9.009600px;}
.ls86{letter-spacing:33.954000px;}
.ls85{letter-spacing:34.031400px;}
.lsa9{letter-spacing:34.471200px;}
.ls79{letter-spacing:34.503600px;}
.ls7a{letter-spacing:35.028000px;}
.ls6c{letter-spacing:35.276400px;}
.ls52{letter-spacing:35.304600px;}
.ls92{letter-spacing:35.853600px;}
.ls39{letter-spacing:36.003600px;}
.ls6b{letter-spacing:36.210600px;}
.lsc{letter-spacing:1404.961200px;}
.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;}
}
.ws77{word-spacing:-21.321000px;}
.ws200{word-spacing:-18.768000px;}
.ws1b8{word-spacing:-18.078000px;}
.ws59{word-spacing:-17.664000px;}
.ws5a{word-spacing:-17.526000px;}
.ws162{word-spacing:-17.457000px;}
.ws147{word-spacing:-17.388000px;}
.wsd3{word-spacing:-17.319000px;}
.ws113{word-spacing:-17.250000px;}
.ws1ff{word-spacing:-17.112000px;}
.wsd6{word-spacing:-17.043000px;}
.ws1cc{word-spacing:-16.974000px;}
.ws146{word-spacing:-16.905000px;}
.wsd1{word-spacing:-16.836000px;}
.ws1f2{word-spacing:-16.767000px;}
.ws12e{word-spacing:-16.698000px;}
.ws1a5{word-spacing:-16.629000px;}
.ws112{word-spacing:-16.560000px;}
.ws94{word-spacing:-16.491000px;}
.ws1f1{word-spacing:-16.422000px;}
.ws1ef{word-spacing:-16.284000px;}
.ws1ee{word-spacing:-16.146000px;}
.wsd4{word-spacing:-16.077000px;}
.ws16{word-spacing:-15.687000px;}
.wsfd{word-spacing:-15.240000px;}
.ws15{word-spacing:-15.228000px;}
.ws231{word-spacing:-15.219000px;}
.ws0{word-spacing:-15.066000px;}
.ws18{word-spacing:-15.057000px;}
.ws1aa{word-spacing:-15.000000px;}
.ws213{word-spacing:-14.991000px;}
.ws197{word-spacing:-14.940000px;}
.ws216{word-spacing:-14.877000px;}
.ws17f{word-spacing:-14.820000px;}
.ws254{word-spacing:-14.763000px;}
.ws17{word-spacing:-14.706000px;}
.ws211{word-spacing:-14.649000px;}
.ws2{word-spacing:-14.592000px;}
.ws38{word-spacing:-14.535000px;}
.ws192{word-spacing:-14.520000px;}
.ws194{word-spacing:-14.460000px;}
.ws251{word-spacing:-14.421000px;}
.ws22d{word-spacing:-14.364000px;}
.ws212{word-spacing:-14.250000px;}
.ws133{word-spacing:-14.220000px;}
.ws5b{word-spacing:-14.160000px;}
.wsd9{word-spacing:-14.040000px;}
.ws195{word-spacing:-13.920000px;}
.ws22f{word-spacing:-13.737000px;}
.ws119{word-spacing:-13.680000px;}
.ws22e{word-spacing:-13.566000px;}
.ws19{word-spacing:-13.167000px;}
.ws1e6{word-spacing:-12.780000px;}
.ws252{word-spacing:-12.768000px;}
.ws1{word-spacing:-12.624000px;}
.ws255{word-spacing:-12.483000px;}
.ws253{word-spacing:-12.426000px;}
.ws214{word-spacing:-11.913000px;}
.ws217{word-spacing:-11.856000px;}
.ws215{word-spacing:-11.799000px;}
.ws14b{word-spacing:-11.760000px;}
.ws17d{word-spacing:-11.340000px;}
.ws22c{word-spacing:-11.286000px;}
.ws18e{word-spacing:-11.263560px;}
.ws178{word-spacing:-11.183106px;}
.ws5c{word-spacing:-11.160000px;}
.ws230{word-spacing:-11.115000px;}
.ws176{word-spacing:-11.102652px;}
.ws14a{word-spacing:-11.062425px;}
.ws12d{word-spacing:-10.981971px;}
.ws26c{word-spacing:-10.944000px;}
.ws179{word-spacing:-10.941744px;}
.ws1a4{word-spacing:-10.861290px;}
.ws110{word-spacing:-10.740609px;}
.ws12f{word-spacing:-10.700382px;}
.ws114{word-spacing:-10.579701px;}
.ws193{word-spacing:-10.560000px;}
.wsf9{word-spacing:-10.539474px;}
.ws111{word-spacing:-10.499247px;}
.ws17e{word-spacing:-10.214160px;}
.ws1ed{word-spacing:-10.210662px;}
.ws161{word-spacing:-10.137204px;}
.ws3b{word-spacing:-10.056750px;}
.ws1e3{word-spacing:-9.976296px;}
.ws163{word-spacing:-9.936069px;}
.ws14f{word-spacing:-9.899340px;}
.ws1a6{word-spacing:-9.895842px;}
.ws17c{word-spacing:-9.864360px;}
.ws149{word-spacing:-9.775161px;}
.ws17a{word-spacing:-9.759420px;}
.ws1f3{word-spacing:-9.734934px;}
.wsb1{word-spacing:-9.694707px;}
.ws130{word-spacing:-9.654480px;}
.wsfe{word-spacing:-9.619500px;}
.ws115{word-spacing:-9.614253px;}
.ws131{word-spacing:-9.584520px;}
.ws1a7{word-spacing:-9.549540px;}
.ws1e2{word-spacing:-9.533799px;}
.ws116{word-spacing:-9.444600px;}
.ws18d{word-spacing:-9.372891px;}
.ws1ce{word-spacing:-9.339660px;}
.ws1b9{word-spacing:-9.332664px;}
.ws117{word-spacing:-9.304680px;}
.ws1fe{word-spacing:-9.292437px;}
.ws1a9{word-spacing:-9.269700px;}
.ws177{word-spacing:-9.252210px;}
.ws1b7{word-spacing:-9.211983px;}
.wsb0{word-spacing:-9.171756px;}
.ws132{word-spacing:-9.059820px;}
.ws93{word-spacing:-9.010848px;}
.ws1e5{word-spacing:-8.989860px;}
.ws160{word-spacing:-8.970621px;}
.ws165{word-spacing:-8.954880px;}
.ws201{word-spacing:-8.884920px;}
.wsb4{word-spacing:-8.814960px;}
.wsd2{word-spacing:-8.809713px;}
.ws166{word-spacing:-8.779980px;}
.ws3c{word-spacing:-8.745000px;}
.ws1a8{word-spacing:-8.675040px;}
.ws14d{word-spacing:-8.640060px;}
.wsfa{word-spacing:-8.608578px;}
.ws1e4{word-spacing:-8.605080px;}
.wsb5{word-spacing:-8.570100px;}
.ws148{word-spacing:-8.568351px;}
.ws14e{word-spacing:-8.535120px;}
.ws118{word-spacing:-8.500140px;}
.ws190{word-spacing:-8.484399px;}
.ws196{word-spacing:-8.465160px;}
.wsb2{word-spacing:-8.447670px;}
.wsd5{word-spacing:-8.367216px;}
.ws1cb{word-spacing:-8.264025px;}
.ws1bc{word-spacing:-8.255280px;}
.ws1b6{word-spacing:-8.246535px;}
.wsf7{word-spacing:-8.206308px;}
.ws17b{word-spacing:-8.185320px;}
.ws1bb{word-spacing:-8.150340px;}
.ws164{word-spacing:-8.115360px;}
.wsaf{word-spacing:-8.045400px;}
.ws95{word-spacing:-7.975440px;}
.ws191{word-spacing:-7.940460px;}
.ws1f0{word-spacing:-7.924719px;}
.ws1cd{word-spacing:-7.870500px;}
.wsf8{word-spacing:-7.844265px;}
.wsd8{word-spacing:-7.800540px;}
.wsfb{word-spacing:-7.625640px;}
.ws14c{word-spacing:-7.590660px;}
.wsb6{word-spacing:-7.485720px;}
.wsd0{word-spacing:-7.441995px;}
.wsda{word-spacing:-7.415760px;}
.ws1f4{word-spacing:-7.380780px;}
.ws1ba{word-spacing:-7.345800px;}
.wsfc{word-spacing:-7.310820px;}
.wsb3{word-spacing:-7.135920px;}
.wsd7{word-spacing:-6.646200px;}
.ws62{word-spacing:-6.486000px;}
.ws152{word-spacing:-6.279000px;}
.ws4f{word-spacing:-6.210000px;}
.wsa3{word-spacing:-5.796000px;}
.ws1e9{word-spacing:-5.589000px;}
.ws154{word-spacing:-5.451000px;}
.ws103{word-spacing:-5.244000px;}
.ws47{word-spacing:-4.692000px;}
.ws1db{word-spacing:-4.623000px;}
.ws157{word-spacing:-4.416000px;}
.ws136{word-spacing:-4.347000px;}
.ws20e{word-spacing:-4.278000px;}
.ws271{word-spacing:-4.275000px;}
.ws24{word-spacing:-4.158000px;}
.ws1a0{word-spacing:-4.020000px;}
.wse8{word-spacing:-3.933000px;}
.ws1be{word-spacing:-3.657000px;}
.ws138{word-spacing:-3.588000px;}
.ws19f{word-spacing:-3.540000px;}
.ws2e{word-spacing:-3.528000px;}
.ws1e8{word-spacing:-3.519000px;}
.ws1de{word-spacing:-3.450000px;}
.ws139{word-spacing:-3.381000px;}
.wse7{word-spacing:-3.312000px;}
.ws16c{word-spacing:-3.243000px;}
.wsc2{word-spacing:-3.174000px;}
.ws1bd{word-spacing:-3.105000px;}
.ws206{word-spacing:-3.087000px;}
.wsbf{word-spacing:-3.036000px;}
.ws19d{word-spacing:-3.024000px;}
.wsc0{word-spacing:-2.967000px;}
.ws1f{word-spacing:-2.898000px;}
.ws8b{word-spacing:-2.829000px;}
.ws16e{word-spacing:-2.760000px;}
.ws125{word-spacing:-2.691000px;}
.ws208{word-spacing:-2.646000px;}
.wse3{word-spacing:-2.622000px;}
.ws29{word-spacing:-2.520000px;}
.ws7f{word-spacing:-2.484000px;}
.ws4d{word-spacing:-2.415000px;}
.ws22a{word-spacing:-2.394000px;}
.ws13c{word-spacing:-2.346000px;}
.ws1b3{word-spacing:-2.280000px;}
.ws155{word-spacing:-2.277000px;}
.ws266{word-spacing:-2.223000px;}
.wscc{word-spacing:-2.220000px;}
.ws248{word-spacing:-2.166000px;}
.ws1fa{word-spacing:-2.160000px;}
.ws1b0{word-spacing:-2.139000px;}
.ws1a3{word-spacing:-2.100000px;}
.ws83{word-spacing:-2.070000px;}
.ws218{word-spacing:-2.052000px;}
.wsce{word-spacing:-2.040000px;}
.ws28{word-spacing:-2.016000px;}
.ws5d{word-spacing:-2.001000px;}
.ws3d{word-spacing:-1.998000px;}
.ws21a{word-spacing:-1.938000px;}
.ws168{word-spacing:-1.932000px;}
.ws41{word-spacing:-1.863000px;}
.ws26d{word-spacing:-1.824000px;}
.wsab{word-spacing:-1.800000px;}
.ws15b{word-spacing:-1.794000px;}
.wsc3{word-spacing:-1.725000px;}
.ws134{word-spacing:-1.656000px;}
.ws1d5{word-spacing:-1.638000px;}
.wscf{word-spacing:-1.620000px;}
.ws9d{word-spacing:-1.587000px;}
.ws183{word-spacing:-1.568853px;}
.wscd{word-spacing:-1.560000px;}
.ws158{word-spacing:-1.518000px;}
.ws101{word-spacing:-1.449000px;}
.ws21{word-spacing:-1.386000px;}
.ws18b{word-spacing:-1.380000px;}
.ws267{word-spacing:-1.368000px;}
.ws2a{word-spacing:-1.323000px;}
.wsa9{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.311000px;}
.ws232{word-spacing:-1.254000px;}
.ws1a2{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.197000px;}
.ws90{word-spacing:-1.173000px;}
.ws5e{word-spacing:-1.104000px;}
.wsc9{word-spacing:-1.080000px;}
.ws9b{word-spacing:-1.035000px;}
.ws18a{word-spacing:-1.020000px;}
.ws1d3{word-spacing:-1.008000px;}
.wsde{word-spacing:-0.966000px;}
.ws234{word-spacing:-0.912000px;}
.ws185{word-spacing:-0.900000px;}
.ws20b{word-spacing:-0.897000px;}
.ws1d4{word-spacing:-0.882000px;}
.ws259{word-spacing:-0.855000px;}
.ws10e{word-spacing:-0.840000px;}
.ws150{word-spacing:-0.828000px;}
.ws1b{word-spacing:-0.819000px;}
.wsa{word-spacing:-0.816000px;}
.ws25e{word-spacing:-0.798000px;}
.ws141{word-spacing:-0.780000px;}
.ws7d{word-spacing:-0.759000px;}
.ws37{word-spacing:-0.756000px;}
.ws8{word-spacing:-0.720000px;}
.ws102{word-spacing:-0.690000px;}
.ws204{word-spacing:-0.630000px;}
.ws21e{word-spacing:-0.627000px;}
.wsdf{word-spacing:-0.621000px;}
.ws1c7{word-spacing:-0.600000px;}
.ws250{word-spacing:-0.570000px;}
.ws61{word-spacing:-0.552000px;}
.ws96{word-spacing:-0.483000px;}
.ws10d{word-spacing:-0.480000px;}
.ws22b{word-spacing:-0.456000px;}
.ws1c9{word-spacing:-0.420000px;}
.ws63{word-spacing:-0.414000px;}
.ws23{word-spacing:-0.399000px;}
.ws1f9{word-spacing:-0.378000px;}
.ws15e{word-spacing:-0.360000px;}
.ws87{word-spacing:-0.345000px;}
.ws85{word-spacing:-0.276000px;}
.ws6{word-spacing:-0.270000px;}
.ws25{word-spacing:-0.252000px;}
.ws189{word-spacing:-0.240000px;}
.ws235{word-spacing:-0.228000px;}
.ws11e{word-spacing:-0.207000px;}
.ws19c{word-spacing:-0.189000px;}
.ws1b5{word-spacing:-0.180000px;}
.wse6{word-spacing:-0.138000px;}
.ws97{word-spacing:-0.069000px;}
.wsd{word-spacing:-0.063000px;}
.ws10f{word-spacing:-0.060000px;}
.ws23d{word-spacing:-0.057000px;}
.ws3a{word-spacing:-0.039900px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:0.048000px;}
.ws25d{word-spacing:0.057000px;}
.wsed{word-spacing:0.069000px;}
.ws1d0{word-spacing:0.126000px;}
.wsa0{word-spacing:0.138000px;}
.ws269{word-spacing:0.171000px;}
.ws1fd{word-spacing:0.180000px;}
.ws1d8{word-spacing:0.189000px;}
.ws1c4{word-spacing:0.207000px;}
.ws2d{word-spacing:0.252000px;}
.ws6b{word-spacing:0.276000px;}
.ws241{word-spacing:0.285000px;}
.ws23a{word-spacing:0.342000px;}
.ws6c{word-spacing:0.345000px;}
.ws19e{word-spacing:0.360000px;}
.ws39{word-spacing:0.399000px;}
.ws7b{word-spacing:0.414000px;}
.ws6d{word-spacing:0.441000px;}
.ws236{word-spacing:0.456000px;}
.ws1b1{word-spacing:0.480000px;}
.wse0{word-spacing:0.483000px;}
.ws210{word-spacing:0.513000px;}
.ws4e{word-spacing:0.552000px;}
.ws31{word-spacing:0.567000px;}
.ws26a{word-spacing:0.570000px;}
.ws52{word-spacing:0.621000px;}
.ws237{word-spacing:0.627000px;}
.ws1c6{word-spacing:0.660000px;}
.wsb7{word-spacing:0.690000px;}
.ws2f{word-spacing:0.693000px;}
.ws174{word-spacing:0.720000px;}
.ws260{word-spacing:0.741000px;}
.ws1d9{word-spacing:0.756000px;}
.ws54{word-spacing:0.759000px;}
.ws239{word-spacing:0.798000px;}
.ws70{word-spacing:0.828000px;}
.ws142{word-spacing:0.840000px;}
.ws1da{word-spacing:0.897000px;}
.ws21f{word-spacing:0.912000px;}
.ws203{word-spacing:0.945000px;}
.ws10c{word-spacing:0.960000px;}
.ws9c{word-spacing:0.966000px;}
.ws265{word-spacing:0.969000px;}
.ws92{word-spacing:1.020000px;}
.ws4c{word-spacing:1.035000px;}
.ws20{word-spacing:1.071000px;}
.ws175{word-spacing:1.080000px;}
.ws24f{word-spacing:1.083000px;}
.ws46{word-spacing:1.104000px;}
.ws21c{word-spacing:1.140000px;}
.ws1ab{word-spacing:1.173000px;}
.ws7e{word-spacing:1.242000px;}
.ws25c{word-spacing:1.254000px;}
.ws13{word-spacing:1.260000px;}
.ws1ac{word-spacing:1.311000px;}
.ws1b2{word-spacing:1.320000px;}
.ws1d2{word-spacing:1.323000px;}
.ws16b{word-spacing:1.380000px;}
.ws5{word-spacing:1.518000px;}
.wsa8{word-spacing:1.560000px;}
.ws35{word-spacing:1.575000px;}
.ws80{word-spacing:1.587000px;}
.ws23c{word-spacing:1.596000px;}
.ws1ea{word-spacing:1.638000px;}
.ws199{word-spacing:1.656000px;}
.wsf5{word-spacing:1.680000px;}
.ws1c{word-spacing:1.701000px;}
.ws21b{word-spacing:1.710000px;}
.ws19a{word-spacing:1.725000px;}
.ws108{word-spacing:1.764000px;}
.ws6a{word-spacing:1.794000px;}
.ws246{word-spacing:1.824000px;}
.ws151{word-spacing:1.863000px;}
.ws10b{word-spacing:1.920000px;}
.wsc4{word-spacing:1.932000px;}
.ws219{word-spacing:1.938000px;}
.ws1eb{word-spacing:1.953000px;}
.wsef{word-spacing:2.001000px;}
.wsca{word-spacing:2.040000px;}
.ws261{word-spacing:2.052000px;}
.ws43{word-spacing:2.070000px;}
.ws34{word-spacing:2.079000px;}
.ws221{word-spacing:2.109000px;}
.ws82{word-spacing:2.139000px;}
.ws24c{word-spacing:2.166000px;}
.ws205{word-spacing:2.205000px;}
.ws233{word-spacing:2.223000px;}
.ws18f{word-spacing:2.268000px;}
.wsa6{word-spacing:2.277000px;}
.ws129{word-spacing:2.280000px;}
.ws24d{word-spacing:2.337000px;}
.ws75{word-spacing:2.340000px;}
.ws78{word-spacing:2.346000px;}
.ws1d1{word-spacing:2.394000px;}
.ws169{word-spacing:2.415000px;}
.ws21d{word-spacing:2.451000px;}
.ws33{word-spacing:2.457000px;}
.ws12b{word-spacing:2.460000px;}
.ws1f8{word-spacing:2.520000px;}
.wse4{word-spacing:2.553000px;}
.ws26e{word-spacing:2.565000px;}
.wsb{word-spacing:2.583000px;}
.ws44{word-spacing:2.622000px;}
.ws56{word-spacing:2.640000px;}
.ws79{word-spacing:2.691000px;}
.ws13b{word-spacing:2.760000px;}
.ws14{word-spacing:2.772000px;}
.ws12c{word-spacing:2.820000px;}
.ws8f{word-spacing:2.829000px;}
.ws1e{word-spacing:2.835000px;}
.ws26b{word-spacing:2.850000px;}
.ws89{word-spacing:2.898000px;}
.ws26f{word-spacing:2.907000px;}
.ws58{word-spacing:2.940000px;}
.ws257{word-spacing:2.964000px;}
.ws45{word-spacing:2.967000px;}
.ws220{word-spacing:3.021000px;}
.ws27{word-spacing:3.024000px;}
.ws13d{word-spacing:3.036000px;}
.ws135{word-spacing:3.105000px;}
.wsf6{word-spacing:3.120000px;}
.ws30{word-spacing:3.150000px;}
.ws69{word-spacing:3.174000px;}
.ws228{word-spacing:3.192000px;}
.ws74{word-spacing:3.240000px;}
.wsf1{word-spacing:3.243000px;}
.ws137{word-spacing:3.312000px;}
.ws123{word-spacing:3.381000px;}
.ws12a{word-spacing:3.420000px;}
.ws66{word-spacing:3.450000px;}
.ws270{word-spacing:3.477000px;}
.ws11f{word-spacing:3.519000px;}
.ws153{word-spacing:3.588000px;}
.wsba{word-spacing:3.657000px;}
.ws143{word-spacing:3.660000px;}
.wsbd{word-spacing:3.726000px;}
.ws86{word-spacing:3.795000px;}
.ws57{word-spacing:3.840000px;}
.ws207{word-spacing:3.843000px;}
.ws11d{word-spacing:3.864000px;}
.wse{word-spacing:3.906000px;}
.wsf0{word-spacing:3.933000px;}
.ws170{word-spacing:4.002000px;}
.ws25b{word-spacing:4.047000px;}
.ws50{word-spacing:4.071000px;}
.wsaa{word-spacing:4.140000px;}
.ws182{word-spacing:4.209000px;}
.wsa2{word-spacing:4.278000px;}
.ws26{word-spacing:4.284000px;}
.ws11a{word-spacing:4.416000px;}
.ws1d6{word-spacing:4.473000px;}
.ws1df{word-spacing:4.485000px;}
.ws5f{word-spacing:4.554000px;}
.ws1ca{word-spacing:4.620000px;}
.ws99{word-spacing:4.623000px;}
.ws1c8{word-spacing:4.680000px;}
.ws36{word-spacing:4.725000px;}
.ws100{word-spacing:4.761000px;}
.ws268{word-spacing:4.788000px;}
.ws73{word-spacing:4.800000px;}
.ws11c{word-spacing:4.830000px;}
.ws15a{word-spacing:4.899000px;}
.ws25a{word-spacing:4.959000px;}
.ws120{word-spacing:4.968000px;}
.ws11{word-spacing:4.977000px;}
.ws53{word-spacing:5.037000px;}
.ws3e{word-spacing:5.073000px;}
.ws1ad{word-spacing:5.106000px;}
.ws240{word-spacing:5.130000px;}
.wse9{word-spacing:5.175000px;}
.ws1e7{word-spacing:5.244000px;}
.ws13f{word-spacing:5.280000px;}
.wse5{word-spacing:5.313000px;}
.wsbe{word-spacing:5.382000px;}
.wsc5{word-spacing:5.451000px;}
.ws24b{word-spacing:5.472000px;}
.ws19b{word-spacing:5.481000px;}
.ws23f{word-spacing:5.529000px;}
.ws22{word-spacing:5.544000px;}
.ws7a{word-spacing:5.589000px;}
.wsf2{word-spacing:5.658000px;}
.wsf{word-spacing:5.670000px;}
.wsc{word-spacing:5.796000px;}
.ws67{word-spacing:5.865000px;}
.wsc7{word-spacing:5.880000px;}
.ws15f{word-spacing:6.000000px;}
.ws7c{word-spacing:6.003000px;}
.ws243{word-spacing:6.042000px;}
.ws4b{word-spacing:6.072000px;}
.ws224{word-spacing:6.099000px;}
.wsf3{word-spacing:6.120000px;}
.wsa5{word-spacing:6.141000px;}
.ws242{word-spacing:6.156000px;}
.ws11b{word-spacing:6.279000px;}
.ws10a{word-spacing:6.348000px;}
.wsac{word-spacing:6.360000px;}
.ws23b{word-spacing:6.384000px;}
.ws48{word-spacing:6.417000px;}
.wsf4{word-spacing:6.420000px;}
.ws9f{word-spacing:6.486000px;}
.ws24a{word-spacing:6.498000px;}
.wsb9{word-spacing:6.555000px;}
.ws1fb{word-spacing:6.600000px;}
.ws229{word-spacing:6.612000px;}
.ws128{word-spacing:6.693000px;}
.ws1fc{word-spacing:6.720000px;}
.ws249{word-spacing:6.726000px;}
.ws16d{word-spacing:6.762000px;}
.ws32{word-spacing:6.804000px;}
.ws222{word-spacing:6.954000px;}
.ws84{word-spacing:6.969000px;}
.ws91{word-spacing:7.020000px;}
.ws42{word-spacing:7.038000px;}
.ws124{word-spacing:7.107000px;}
.ws167{word-spacing:7.176000px;}
.ws1a{word-spacing:7.182000px;}
.ws180{word-spacing:7.314000px;}
.ws76{word-spacing:7.560000px;}
.ws65{word-spacing:7.590000px;}
.ws245{word-spacing:7.638000px;}
.ws9a{word-spacing:7.659000px;}
.ws264{word-spacing:7.695000px;}
.ws23e{word-spacing:7.809000px;}
.ws2c{word-spacing:7.812000px;}
.ws106{word-spacing:7.866000px;}
.ws1c2{word-spacing:8.004000px;}
.ws72{word-spacing:8.160000px;}
.ws1dc{word-spacing:8.211000px;}
.ws12{word-spacing:8.253000px;}
.ws1d{word-spacing:8.316000px;}
.ws247{word-spacing:8.322000px;}
.ws15d{word-spacing:8.349000px;}
.ws262{word-spacing:8.436000px;}
.ws2b{word-spacing:8.442000px;}
.ws8d{word-spacing:8.487000px;}
.ws1f5{word-spacing:8.505000px;}
.ws144{word-spacing:8.520000px;}
.ws227{word-spacing:8.607000px;}
.ws1af{word-spacing:8.625000px;}
.wseb{word-spacing:8.763000px;}
.ws263{word-spacing:8.778000px;}
.ws1ae{word-spacing:8.832000px;}
.ws25f{word-spacing:8.835000px;}
.ws98{word-spacing:8.901000px;}
.ws3{word-spacing:8.970000px;}
.ws1a1{word-spacing:9.000000px;}
.ws24e{word-spacing:9.006000px;}
.wsea{word-spacing:9.039000px;}
.ws145{word-spacing:9.060000px;}
.ws181{word-spacing:9.108000px;}
.wsec{word-spacing:9.177000px;}
.ws1b4{word-spacing:9.240000px;}
.ws107{word-spacing:9.246000px;}
.ws187{word-spacing:9.300000px;}
.wsbc{word-spacing:9.315000px;}
.ws202{word-spacing:9.324000px;}
.ws3f{word-spacing:9.348000px;}
.ws126{word-spacing:9.384000px;}
.ws1ec{word-spacing:9.420000px;}
.wsdb{word-spacing:9.453000px;}
.ws51{word-spacing:9.522000px;}
.ws209{word-spacing:9.591000px;}
.wscb{word-spacing:9.600000px;}
.ws8e{word-spacing:9.729000px;}
.ws105{word-spacing:9.798000px;}
.wse1{word-spacing:9.936000px;}
.wsc8{word-spacing:9.960000px;}
.wsff{word-spacing:10.005000px;}
.ws8c{word-spacing:10.074000px;}
.wsae{word-spacing:10.140000px;}
.ws1f6{word-spacing:10.143000px;}
.ws81{word-spacing:10.212000px;}
.ws16a{word-spacing:10.281000px;}
.wsa1{word-spacing:10.419000px;}
.ws68{word-spacing:10.488000px;}
.ws1c3{word-spacing:10.626000px;}
.ws18c{word-spacing:10.680000px;}
.ws6f{word-spacing:10.695000px;}
.ws256{word-spacing:10.716000px;}
.ws156{word-spacing:10.764000px;}
.ws13e{word-spacing:10.833000px;}
.ws225{word-spacing:10.887000px;}
.ws49{word-spacing:10.902000px;}
.ws4{word-spacing:10.920000px;}
.wsa4{word-spacing:10.971000px;}
.ws1bf{word-spacing:11.109000px;}
.ws244{word-spacing:11.115000px;}
.ws20c{word-spacing:11.178000px;}
.ws16f{word-spacing:11.316000px;}
.ws226{word-spacing:11.343000px;}
.ws1d7{word-spacing:11.403000px;}
.ws64{word-spacing:11.523000px;}
.ws55{word-spacing:11.592000px;}
.ws40{word-spacing:11.856000px;}
.ws171{word-spacing:11.868000px;}
.ws173{word-spacing:11.937000px;}
.ws172{word-spacing:12.006000px;}
.ws1dd{word-spacing:12.213000px;}
.ws1c5{word-spacing:12.282000px;}
.ws6e{word-spacing:12.351000px;}
.ws1f7{word-spacing:12.558000px;}
.ws88{word-spacing:12.696000px;}
.ws20d{word-spacing:12.765000px;}
.ws9e{word-spacing:12.834000px;}
.wsa7{word-spacing:13.179000px;}
.ws198{word-spacing:13.248000px;}
.ws258{word-spacing:13.281000px;}
.ws13a{word-spacing:13.317000px;}
.wse2{word-spacing:13.386000px;}
.wsbb{word-spacing:13.662000px;}
.wsc6{word-spacing:14.007000px;}
.ws121{word-spacing:14.076000px;}
.ws71{word-spacing:14.145000px;}
.ws122{word-spacing:14.214000px;}
.ws15c{word-spacing:14.283000px;}
.wsdd{word-spacing:14.421000px;}
.ws1e0{word-spacing:14.628000px;}
.ws159{word-spacing:14.835000px;}
.wsb8{word-spacing:15.249000px;}
.ws140{word-spacing:15.360000px;}
.ws186{word-spacing:15.780000px;}
.wsad{word-spacing:16.080000px;}
.wsdc{word-spacing:16.284000px;}
.ws127{word-spacing:16.353000px;}
.ws8a{word-spacing:16.422000px;}
.ws104{word-spacing:16.560000px;}
.ws1cf{word-spacing:17.388000px;}
.ws184{word-spacing:17.940000px;}
.wsc1{word-spacing:18.078000px;}
.ws4a{word-spacing:18.354000px;}
.ws1c1{word-spacing:18.837000px;}
.ws238{word-spacing:19.152000px;}
.wsee{word-spacing:20.079000px;}
.ws1e1{word-spacing:20.838000px;}
.ws188{word-spacing:21.900000px;}
.ws109{word-spacing:22.080000px;}
.ws1c0{word-spacing:24.495000px;}
.ws20a{word-spacing:28.842000px;}
.ws223{word-spacing:42.750000px;}
.ws20f{word-spacing:54.234000px;}
._4{margin-left:-8.962200px;}
._7{margin-left:-7.885800px;}
._6{margin-left:-6.669000px;}
._1{margin-left:-4.843800px;}
._a{margin-left:-3.786300px;}
._0{margin-left:-2.753400px;}
._2{margin-left:-1.466400px;}
._3{width:1.622400px;}
._5{width:2.753400px;}
._9{width:3.789000px;}
._e{width:4.871400px;}
._1c{width:6.121800px;}
._21{width:7.182000px;}
._1d{width:8.467800px;}
._19{width:9.470400px;}
._8{width:10.966800px;}
._1a{width:25.200960px;}
._20{width:27.930240px;}
._15{width:29.012280px;}
._18{width:31.674240px;}
._16{width:33.903960px;}
._13{width:35.026320px;}
._14{width:36.639960px;}
._1e{width:37.723080px;}
._11{width:44.400000px;}
._12{width:45.540000px;}
._f{width:49.620000px;}
._d{width:52.560000px;}
._1b{width:54.082200px;}
._17{width:58.571400px;}
._1f{width:67.231800px;}
._10{width:73.160400px;}
._c{width:86.516400px;}
._b{width:198.123300px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.980000px;}
.fs8{font-size:36.000000px;}
.fsd{font-size:36.729000px;}
.fs9{font-size:39.900000px;}
.fsa{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs6{font-size:62.400000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:69.000000px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:70.984950px;}
.y1c{bottom:127.559100px;}
.y62{bottom:127.559250px;}
.yaa{bottom:132.554100px;}
.y183{bottom:132.554250px;}
.yce{bottom:145.559100px;}
.y1b{bottom:145.726650px;}
.ya9{bottom:150.554100px;}
.y61{bottom:150.554250px;}
.y182{bottom:150.554400px;}
.ycd{bottom:163.559100px;}
.y84{bottom:163.559250px;}
.y2d6{bottom:163.701750px;}
.y2ae{bottom:163.711350px;}
.y1a{bottom:163.894200px;}
.y40{bottom:165.813450px;}
.ya8{bottom:168.554100px;}
.y60{bottom:168.554400px;}
.y181{bottom:168.554550px;}
.y26c{bottom:179.574900px;}
.ya7{bottom:181.559100px;}
.y83{bottom:181.559250px;}
.y190{bottom:181.559700px;}
.y2d5{bottom:181.701750px;}
.y2ad{bottom:181.711350px;}
.y19{bottom:182.061750px;}
.y284{bottom:182.796150px;}
.y122{bottom:186.554100px;}
.y180{bottom:186.554700px;}
.y20f{bottom:197.574900px;}
.y26b{bottom:199.074900px;}
.ycc{bottom:199.559100px;}
.y82{bottom:199.559250px;}
.y18f{bottom:199.559700px;}
.y17f{bottom:199.559850px;}
.y2ac{bottom:199.711350px;}
.y2d4{bottom:199.844400px;}
.y18{bottom:200.229150px;}
.y283{bottom:200.796150px;}
.ya6{bottom:204.554100px;}
.y5f{bottom:215.575200px;}
.y20e{bottom:217.074900px;}
.ycb{bottom:217.559100px;}
.y81{bottom:217.559250px;}
.y17e{bottom:217.559850px;}
.y2d3{bottom:217.844400px;}
.y2ab{bottom:217.863450px;}
.y3f{bottom:217.957650px;}
.y17{bottom:218.396700px;}
.y26a{bottom:218.574900px;}
.y282{bottom:218.796150px;}
.yed{bottom:222.554100px;}
.y18e{bottom:222.554700px;}
.y22e{bottom:233.574900px;}
.y5e{bottom:235.075200px;}
.yca{bottom:235.559100px;}
.y2d2{bottom:235.844400px;}
.y2aa{bottom:235.863450px;}
.y3e{bottom:235.957650px;}
.y16{bottom:236.564250px;}
.y20d{bottom:236.574900px;}
.y281{bottom:238.033350px;}
.y269{bottom:238.074900px;}
.y121{bottom:240.554100px;}
.y80{bottom:240.554250px;}
.y17d{bottom:240.554850px;}
.ya5{bottom:251.574900px;}
.y22d{bottom:253.074900px;}
.yec{bottom:253.559100px;}
.y2a9{bottom:253.863450px;}
.y3d{bottom:253.957650px;}
.y2d1{bottom:253.987200px;}
.y5d{bottom:254.575200px;}
.y15{bottom:254.731800px;}
.y280{bottom:256.033350px;}
.y20c{bottom:256.597950px;}
.y268{bottom:257.574900px;}
.yc9{bottom:258.554100px;}
.y142{bottom:269.574900px;}
.ya4{bottom:271.145850px;}
.y19a{bottom:271.559100px;}
.y3c{bottom:271.957650px;}
.y2d0{bottom:271.987200px;}
.y2a8{bottom:272.015700px;}
.y22c{bottom:272.574900px;}
.y14{bottom:272.899200px;}
.y27f{bottom:274.033350px;}
.y5c{bottom:274.075200px;}
.y20b{bottom:276.097950px;}
.yc8{bottom:276.554100px;}
.y267{bottom:277.074900px;}
.y10c{bottom:287.574900px;}
.y7f{bottom:287.575050px;}
.y17c{bottom:287.575650px;}
.y141{bottom:289.261350px;}
.yeb{bottom:289.559100px;}
.y3b{bottom:289.957650px;}
.y2cf{bottom:289.987200px;}
.y2a7{bottom:290.015700px;}
.ya3{bottom:290.716650px;}
.y13{bottom:291.066750px;}
.y22b{bottom:292.074900px;}
.y27e{bottom:293.270400px;}
.y5b{bottom:293.575200px;}
.y1b4{bottom:294.554100px;}
.y20a{bottom:295.597950px;}
.y266{bottom:296.574900px;}
.y160{bottom:305.574900px;}
.y120{bottom:307.189650px;}
.y7e{bottom:307.189800px;}
.y248{bottom:307.234200px;}
.y10b{bottom:307.247100px;}
.y17b{bottom:307.247850px;}
.y1d2{bottom:307.315650px;}
.y3a{bottom:307.957650px;}
.y2a6{bottom:308.015700px;}
.y2ce{bottom:308.129850px;}
.y140{bottom:308.947800px;}
.ya2{bottom:310.287600px;}
.y22a{bottom:311.574900px;}
.y27d{bottom:312.507450px;}
.yea{bottom:312.554100px;}
.y5a{bottom:313.075200px;}
.y209{bottom:315.097950px;}
.y265{bottom:316.634850px;}
.yc7{bottom:323.574900px;}
.y15f{bottom:325.373700px;}
.y39{bottom:325.957650px;}
.y2a5{bottom:326.015700px;}
.y2cd{bottom:326.129850px;}
.y7d{bottom:326.804550px;}
.y10a{bottom:326.919450px;}
.y17a{bottom:326.920050px;}
.y1d1{bottom:327.056550px;}
.y13f{bottom:328.634250px;}
.y12{bottom:328.734300px;}
.ya1{bottom:329.858550px;}
.y27c{bottom:330.507450px;}
.ye9{bottom:330.554100px;}
.y59{bottom:333.867300px;}
.y208{bottom:334.597950px;}
.y264{bottom:336.134850px;}
.y1b3{bottom:341.574900px;}
.yc6{bottom:343.289100px;}
.y38{bottom:343.957650px;}
.y2a4{bottom:344.167950px;}
.y2cc{bottom:344.272500px;}
.y15e{bottom:345.172650px;}
.y7c{bottom:346.419450px;}
.y109{bottom:346.591650px;}
.y179{bottom:346.592400px;}
.y1d0{bottom:346.797450px;}
.y13e{bottom:348.320700px;}
.y11f{bottom:348.430500px;}
.y247{bottom:348.519450px;}
.ya0{bottom:349.429500px;}
.y27b{bottom:349.744650px;}
.y229{bottom:352.272300px;}
.y58{bottom:353.367300px;}
.y207{bottom:354.097950px;}
.y263{bottom:355.634850px;}
.y1ed{bottom:359.574900px;}
.y1b2{bottom:361.383450px;}
.y37{bottom:361.957650px;}
.y2a3{bottom:362.167950px;}
.y2cb{bottom:362.272500px;}
.yc5{bottom:363.003450px;}
.y15d{bottom:364.971450px;}
.y7b{bottom:366.034200px;}
.y108{bottom:366.264000px;}
.y178{bottom:366.264600px;}
.y1cf{bottom:366.538200px;}
.y27a{bottom:367.744650px;}
.y13d{bottom:368.007150px;}
.y11e{bottom:368.045250px;}
.y9f{bottom:369.000300px;}
.y228{bottom:371.772300px;}
.y57{bottom:372.867300px;}
.y206{bottom:373.597950px;}
.y262{bottom:375.134850px;}
.ye8{bottom:377.574900px;}
.y1ec{bottom:379.494900px;}
.y36{bottom:379.957650px;}
.y2a2{bottom:380.167950px;}
.y2ca{bottom:380.272500px;}
.y1b1{bottom:381.192000px;}
.yc4{bottom:382.717650px;}
.y15c{bottom:384.770400px;}
.y7a{bottom:385.648950px;}
.y279{bottom:385.744650px;}
.y107{bottom:385.936200px;}
.y177{bottom:385.936800px;}
.y1ce{bottom:386.279100px;}
.y13c{bottom:387.693600px;}
.y9e{bottom:388.571250px;}
.y227{bottom:391.272300px;}
.y56{bottom:392.367300px;}
.y205{bottom:393.097950px;}
.y261{bottom:394.634850px;}
.ye7{bottom:397.568700px;}
.y35{bottom:397.957650px;}
.y2a1{bottom:398.320200px;}
.y2c9{bottom:398.415300px;}
.y1eb{bottom:399.414900px;}
.y1b0{bottom:401.000550px;}
.yc3{bottom:402.432000px;}
.y15b{bottom:404.569200px;}
.y278{bottom:404.981700px;}
.y79{bottom:405.263700px;}
.y106{bottom:405.608400px;}
.y176{bottom:405.609000px;}
.y1cd{bottom:406.020000px;}
.y13b{bottom:407.380050px;}
.y9d{bottom:408.142200px;}
.y246{bottom:409.304850px;}
.y226{bottom:410.772300px;}
.y55{bottom:411.867300px;}
.y204{bottom:413.121000px;}
.y260{bottom:414.134850px;}
.y34{bottom:415.957650px;}
.y2a0{bottom:416.320200px;}
.y2c8{bottom:416.415300px;}
.ye6{bottom:417.562650px;}
.y1ea{bottom:419.334900px;}
.y1af{bottom:420.809100px;}
.y277{bottom:422.981700px;}
.yc2{bottom:424.272300px;}
.y15a{bottom:424.368150px;}
.y78{bottom:424.878600px;}
.y105{bottom:425.280750px;}
.y175{bottom:425.281350px;}
.y1cc{bottom:425.760750px;}
.y11{bottom:426.401850px;}
.y13a{bottom:427.066500px;}
.y9c{bottom:427.713150px;}
.y11d{bottom:428.786100px;}
.y245{bottom:428.964150px;}
.y54{bottom:431.367300px;}
.y225{bottom:431.969700px;}
.y203{bottom:432.621000px;}
.y25f{bottom:433.634850px;}
.y33{bottom:433.957650px;}
.y29f{bottom:434.320200px;}
.y2c7{bottom:434.415300px;}
.ye5{bottom:437.556450px;}
.y276{bottom:440.981700px;}
.y1e9{bottom:441.380850px;}
.yc1{bottom:443.986650px;}
.y159{bottom:444.166950px;}
.y104{bottom:444.952950px;}
.y18d{bottom:444.953550px;}
.y1cb{bottom:445.501650px;}
.y139{bottom:446.752950px;}
.y174{bottom:447.079500px;}
.y9b{bottom:447.284100px;}
.y11c{bottom:448.400850px;}
.y244{bottom:448.623450px;}
.y53{bottom:450.867300px;}
.y224{bottom:451.469700px;}
.y32{bottom:451.957650px;}
.y202{bottom:452.121000px;}
.y2c6{bottom:452.415300px;}
.y29e{bottom:452.472300px;}
.y25e{bottom:453.134850px;}
.ye4{bottom:457.550250px;}
.y199{bottom:459.676350px;}
.y275{bottom:460.218750px;}
.y1e8{bottom:461.300850px;}
.y1ae{bottom:462.243750px;}
.yc0{bottom:463.700850px;}
.y158{bottom:463.965900px;}
.y103{bottom:464.625300px;}
.y18c{bottom:464.625750px;}
.y1ca{bottom:465.242550px;}
.y77{bottom:466.119300px;}
.y138{bottom:466.439400px;}
.y173{bottom:466.751850px;}
.y9a{bottom:466.855050px;}
.y11b{bottom:468.015600px;}
.y243{bottom:468.282750px;}
.y31{bottom:469.957650px;}
.y52{bottom:470.367300px;}
.y29d{bottom:470.472300px;}
.y2c5{bottom:470.557950px;}
.y223{bottom:470.969700px;}
.y201{bottom:471.621000px;}
.y25d{bottom:472.634850px;}
.ye3{bottom:477.544200px;}
.y274{bottom:478.218750px;}
.y198{bottom:479.670150px;}
.y10{bottom:480.568350px;}
.y1e7{bottom:481.220850px;}
.y1ad{bottom:482.052300px;}
.ybf{bottom:483.415200px;}
.y157{bottom:483.764700px;}
.y102{bottom:484.297500px;}
.y18b{bottom:484.298100px;}
.y1c9{bottom:484.983300px;}
.y172{bottom:486.424050px;}
.y11a{bottom:487.630350px;}
.y242{bottom:487.942050px;}
.y30{bottom:487.957650px;}
.y137{bottom:488.251800px;}
.y29c{bottom:488.472300px;}
.y99{bottom:488.551950px;}
.y2c4{bottom:488.700600px;}
.y51{bottom:489.867300px;}
.y222{bottom:490.469700px;}
.y200{bottom:491.121000px;}
.y25c{bottom:492.134850px;}
.yf{bottom:495.735900px;}
.y273{bottom:497.455950px;}
.ye2{bottom:497.538000px;}
.y197{bottom:499.663950px;}
.y1e6{bottom:501.141000px;}
.ybe{bottom:503.129400px;}
.y156{bottom:503.563650px;}
.y101{bottom:503.969850px;}
.y18a{bottom:503.970300px;}
.y1c8{bottom:504.724200px;}
.y2f{bottom:505.957650px;}
.y171{bottom:506.096250px;}
.y29b{bottom:506.624550px;}
.y2c3{bottom:506.700600px;}
.y119{bottom:507.245250px;}
.y241{bottom:507.601500px;}
.y136{bottom:507.938250px;}
.y98{bottom:508.122750px;}
.y50{bottom:509.367300px;}
.y221{bottom:509.969700px;}
.y1ff{bottom:510.621000px;}
.ye{bottom:510.903450px;}
.y25b{bottom:512.194800px;}
.y272{bottom:515.455950px;}
.ye1{bottom:517.531800px;}
.y196{bottom:519.657900px;}
.y1e5{bottom:521.061000px;}
.ybd{bottom:522.843750px;}
.y155{bottom:523.362600px;}
.y189{bottom:523.642500px;}
.y2e{bottom:523.957650px;}
.y1c7{bottom:524.465100px;}
.y29a{bottom:524.624550px;}
.y2c2{bottom:524.700600px;}
.y100{bottom:525.768150px;}
.y170{bottom:525.768600px;}
.yd{bottom:526.071000px;}
.y118{bottom:526.860000px;}
.y76{bottom:526.860150px;}
.y240{bottom:527.260800px;}
.y135{bottom:527.624700px;}
.y97{bottom:527.693700px;}
.y4f{bottom:528.867300px;}
.y220{bottom:529.469700px;}
.y1fe{bottom:530.121000px;}
.y25a{bottom:531.694650px;}
.y271{bottom:533.455950px;}
.ye0{bottom:537.525750px;}
.y195{bottom:539.651700px;}
.y1e4{bottom:540.981000px;}
.yc{bottom:541.238550px;}
.y2d{bottom:541.957650px;}
.ybc{bottom:542.557950px;}
.y299{bottom:542.624550px;}
.y2c1{bottom:542.843400px;}
.y1ac{bottom:542.986800px;}
.y154{bottom:543.161400px;}
.yff{bottom:545.440350px;}
.y16f{bottom:545.440800px;}
.y1c6{bottom:546.331950px;}
.y117{bottom:546.474750px;}
.y75{bottom:546.474900px;}
.y23f{bottom:546.920100px;}
.y96{bottom:547.264650px;}
.y134{bottom:547.311150px;}
.y4e{bottom:548.367300px;}
.y21f{bottom:548.969700px;}
.y1fd{bottom:549.621000px;}
.y259{bottom:551.194650px;}
.y270{bottom:552.693000px;}
.yb{bottom:556.405950px;}
.ydf{bottom:557.519550px;}
.y194{bottom:559.645500px;}
.y2c{bottom:559.957650px;}
.y298{bottom:560.776650px;}
.y2c0{bottom:560.843400px;}
.y1e3{bottom:560.901000px;}
.ybb{bottom:562.272300px;}
.y1ab{bottom:562.795500px;}
.y153{bottom:562.960350px;}
.yfe{bottom:565.112700px;}
.y16e{bottom:565.113000px;}
.y1c5{bottom:566.072700px;}
.y74{bottom:566.089650px;}
.y23e{bottom:566.579400px;}
.y95{bottom:566.835600px;}
.y133{bottom:566.997600px;}
.y4d{bottom:567.867300px;}
.y21e{bottom:568.469700px;}
.y1fc{bottom:569.121000px;}
.y26f{bottom:570.693000px;}
.y258{bottom:570.694650px;}
.yde{bottom:577.513500px;}
.y297{bottom:578.776650px;}
.y2bf{bottom:578.843400px;}
.y193{bottom:579.639450px;}
.y1e2{bottom:580.821000px;}
.yba{bottom:581.986650px;}
.y1aa{bottom:582.603900px;}
.y152{bottom:582.759150px;}
.yfd{bottom:584.784900px;}
.y16d{bottom:584.785200px;}
.y116{bottom:585.704400px;}
.y73{bottom:585.704550px;}
.y1c4{bottom:585.813600px;}
.y23d{bottom:586.238700px;}
.y94{bottom:586.406550px;}
.y132{bottom:586.684050px;}
.y4c{bottom:587.367300px;}
.y1fb{bottom:588.621000px;}
.y26e{bottom:588.693000px;}
.y21d{bottom:589.667250px;}
.y257{bottom:590.194650px;}
.y296{bottom:596.776650px;}
.y2be{bottom:596.986050px;}
.ydd{bottom:597.507300px;}
.y2b{bottom:598.212000px;}
.y192{bottom:599.633400px;}
.y1e1{bottom:600.741000px;}
.yb9{bottom:601.700850px;}
.y1a9{bottom:602.412600px;}
.y151{bottom:602.558100px;}
.yfc{bottom:604.457100px;}
.y16c{bottom:604.457550px;}
.y115{bottom:605.319150px;}
.y72{bottom:605.319300px;}
.y1c3{bottom:605.554350px;}
.y23c{bottom:605.898150px;}
.y93{bottom:605.977350px;}
.y131{bottom:606.370500px;}
.y4b{bottom:606.867300px;}
.y1fa{bottom:608.121000px;}
.y21c{bottom:609.167250px;}
.y256{bottom:609.694650px;}
.y295{bottom:614.928900px;}
.y2bd{bottom:614.986050px;}
.ydc{bottom:619.627200px;}
.y1e0{bottom:620.661000px;}
.yb8{bottom:621.415200px;}
.y1a8{bottom:622.221150px;}
.y150{bottom:622.356900px;}
.yfb{bottom:624.129450px;}
.y16b{bottom:624.129750px;}
.y71{bottom:624.934050px;}
.y1c2{bottom:625.295250px;}
.y92{bottom:625.548300px;}
.y23b{bottom:625.557450px;}
.y130{bottom:626.056950px;}
.y4a{bottom:626.367300px;}
.y26d{bottom:627.430050px;}
.y1f9{bottom:627.621000px;}
.y21b{bottom:628.667250px;}
.y255{bottom:629.194650px;}
.y294{bottom:632.928900px;}
.y2bc{bottom:632.986050px;}
.ydb{bottom:639.621000px;}
.y1df{bottom:640.581000px;}
.yb7{bottom:641.129400px;}
.y1a7{bottom:642.029700px;}
.y14f{bottom:642.155850px;}
.yfa{bottom:643.801650px;}
.y16a{bottom:643.802100px;}
.y70{bottom:644.548800px;}
.y1c1{bottom:645.036150px;}
.y91{bottom:645.119250px;}
.y23a{bottom:645.216750px;}
.y12f{bottom:645.743400px;}
.y49{bottom:645.867300px;}
.y1f8{bottom:647.121000px;}
.y21a{bottom:648.167250px;}
.y254{bottom:648.694650px;}
.ya{bottom:649.573500px;}
.y2a{bottom:650.356200px;}
.y293{bottom:651.081150px;}
.y2bb{bottom:651.128700px;}
.yda{bottom:659.614950px;}
.yb6{bottom:660.843750px;}
.y1a6{bottom:661.838250px;}
.y14e{bottom:661.954650px;}
.y1de{bottom:662.626950px;}
.yf9{bottom:663.474000px;}
.y169{bottom:663.474300px;}
.y6f{bottom:664.163700px;}
.y90{bottom:664.690200px;}
.y1c0{bottom:664.777050px;}
.y239{bottom:664.876050px;}
.y12e{bottom:665.429850px;}
.y219{bottom:667.667250px;}
.y253{bottom:668.194650px;}
.y292{bottom:669.081150px;}
.y2ba{bottom:669.128700px;}
.y9{bottom:669.241050px;}
.yd9{bottom:679.608750px;}
.y1a5{bottom:681.646800px;}
.y14d{bottom:681.753600px;}
.y1dd{bottom:682.547100px;}
.yb5{bottom:682.684050px;}
.yf8{bottom:683.146200px;}
.y168{bottom:683.146500px;}
.y6e{bottom:683.778450px;}
.y8f{bottom:684.261150px;}
.y1bf{bottom:684.517800px;}
.y238{bottom:684.535350px;}
.y12d{bottom:685.116300px;}
.y48{bottom:686.159400px;}
.y1f7{bottom:686.644200px;}
.y291{bottom:687.081150px;}
.y2b9{bottom:687.128700px;}
.y218{bottom:687.167250px;}
.y252{bottom:687.694650px;}
.y29{bottom:688.610550px;}
.y8{bottom:688.908600px;}
.yd8{bottom:699.602550px;}
.y1a4{bottom:701.455500px;}
.y14c{bottom:701.552400px;}
.yb4{bottom:702.398400px;}
.y1dc{bottom:702.467100px;}
.yf7{bottom:702.818550px;}
.y167{bottom:702.818700px;}
.y114{bottom:703.393200px;}
.y237{bottom:704.194650px;}
.y1be{bottom:704.258700px;}
.y12c{bottom:704.802750px;}
.y290{bottom:705.233400px;}
.y2b8{bottom:705.271350px;}
.y6d{bottom:705.519300px;}
.y8e{bottom:705.958050px;}
.y1f6{bottom:706.144200px;}
.y217{bottom:706.667250px;}
.y251{bottom:707.194650px;}
.yd7{bottom:719.596500px;}
.y1a3{bottom:721.264050px;}
.y14b{bottom:721.351350px;}
.yb3{bottom:722.112600px;}
.y1db{bottom:722.387100px;}
.yf6{bottom:722.490750px;}
.y166{bottom:722.490900px;}
.y113{bottom:723.007950px;}
.y28f{bottom:723.233400px;}
.y2b7{bottom:723.271350px;}
.y236{bottom:723.854100px;}
.y1bd{bottom:723.999600px;}
.y12b{bottom:724.489200px;}
.y6c{bottom:725.134050px;}
.y8d{bottom:725.528850px;}
.y1f5{bottom:725.644050px;}
.y216{bottom:726.167250px;}
.yd6{bottom:739.590300px;}
.y28{bottom:740.754750px;}
.y1a2{bottom:741.072600px;}
.y28e{bottom:741.233400px;}
.y2b6{bottom:741.414150px;}
.yb2{bottom:741.826950px;}
.yf5{bottom:742.163100px;}
.y165{bottom:742.163250px;}
.y1da{bottom:742.307100px;}
.y112{bottom:742.622850px;}
.y14a{bottom:743.276250px;}
.y235{bottom:743.513400px;}
.y1bc{bottom:743.740350px;}
.y12a{bottom:744.175650px;}
.y188{bottom:744.289200px;}
.y6b{bottom:744.748800px;}
.y8c{bottom:745.099800px;}
.y1f4{bottom:745.144050px;}
.y215{bottom:745.667250px;}
.y250{bottom:746.754750px;}
.y7{bottom:750.830700px;}
.y27{bottom:758.754750px;}
.y28d{bottom:759.385500px;}
.y2b5{bottom:759.414150px;}
.yd5{bottom:759.584250px;}
.y1a1{bottom:760.881150px;}
.yb1{bottom:761.541150px;}
.yf4{bottom:761.835300px;}
.y164{bottom:761.835450px;}
.y1d9{bottom:762.227100px;}
.y111{bottom:762.237600px;}
.y149{bottom:763.075050px;}
.y234{bottom:763.172700px;}
.y1bb{bottom:763.481250px;}
.y129{bottom:763.862100px;}
.y187{bottom:763.961400px;}
.y6a{bottom:764.363550px;}
.y1f3{bottom:764.644050px;}
.y8b{bottom:764.670750px;}
.y214{bottom:765.167250px;}
.y24f{bottom:766.254750px;}
.y6{bottom:773.498250px;}
.y26{bottom:776.754600px;}
.y2b4{bottom:777.414150px;}
.y28c{bottom:777.537750px;}
.yd4{bottom:779.578050px;}
.yb0{bottom:781.255500px;}
.yf3{bottom:781.507650px;}
.y110{bottom:781.852350px;}
.y1d8{bottom:782.147100px;}
.y1a0{bottom:782.815650px;}
.y233{bottom:782.832150px;}
.y148{bottom:782.874000px;}
.y1ba{bottom:783.222150px;}
.y128{bottom:783.548550px;}
.y186{bottom:783.633750px;}
.y69{bottom:783.978450px;}
.y1f2{bottom:784.144200px;}
.y8a{bottom:784.241700px;}
.y213{bottom:784.667250px;}
.y47{bottom:784.951500px;}
.y24e{bottom:785.754600px;}
.y25{bottom:794.754600px;}
.y2b3{bottom:795.414150px;}
.y28b{bottom:795.537750px;}
.y5{bottom:796.165800px;}
.yd3{bottom:799.571850px;}
.yaf{bottom:800.969850px;}
.yf2{bottom:801.179850px;}
.y163{bottom:801.180000px;}
.y10f{bottom:801.467250px;}
.y191{bottom:801.697950px;}
.y1d7{bottom:802.067100px;}
.y232{bottom:802.491450px;}
.y19f{bottom:802.624350px;}
.y147{bottom:802.672800px;}
.y1b9{bottom:802.962900px;}
.y127{bottom:803.235000px;}
.y185{bottom:803.305950px;}
.y68{bottom:803.593200px;}
.y1f1{bottom:803.644200px;}
.y89{bottom:803.812650px;}
.y212{bottom:804.167250px;}
.y46{bottom:804.451500px;}
.y24d{bottom:805.254600px;}
.y24{bottom:812.754600px;}
.y28a{bottom:813.537750px;}
.y2b2{bottom:813.556800px;}
.y2d9{bottom:813.842250px;}
.yae{bottom:820.684050px;}
.yf1{bottom:820.852050px;}
.y162{bottom:820.852200px;}
.yd2{bottom:821.691750px;}
.y1d6{bottom:821.987100px;}
.y231{bottom:822.150750px;}
.y19e{bottom:822.432900px;}
.y146{bottom:822.471750px;}
.y1b8{bottom:822.703800px;}
.y126{bottom:822.921450px;}
.y184{bottom:822.978300px;}
.y1f0{bottom:823.144200px;}
.y10e{bottom:823.207950px;}
.y67{bottom:823.208100px;}
.y88{bottom:823.383600px;}
.y211{bottom:823.667250px;}
.y45{bottom:823.951500px;}
.y24c{bottom:824.754600px;}
.y4{bottom:830.083350px;}
.y23{bottom:830.754600px;}
.y2b1{bottom:831.556800px;}
.y289{bottom:831.690000px;}
.y2d8{bottom:831.842250px;}
.yad{bottom:840.398400px;}
.yd1{bottom:841.685550px;}
.y1d5{bottom:841.907100px;}
.y19d{bottom:842.241450px;}
.y145{bottom:842.270550px;}
.y1b7{bottom:842.444700px;}
.y125{bottom:842.607900px;}
.yf0{bottom:842.650350px;}
.y161{bottom:842.650500px;}
.y10d{bottom:842.822700px;}
.y66{bottom:842.822850px;}
.y87{bottom:842.954400px;}
.y210{bottom:843.167250px;}
.y44{bottom:843.451500px;}
.y24b{bottom:844.254600px;}
.y22{bottom:848.754600px;}
.y288{bottom:849.690000px;}
.y2b0{bottom:849.699450px;}
.y2d7{bottom:849.842250px;}
.y3{bottom:852.750750px;}
.yac{bottom:860.112600px;}
.yd0{bottom:861.679500px;}
.y1d4{bottom:861.827250px;}
.y19c{bottom:862.050000px;}
.y144{bottom:862.069500px;}
.y1b6{bottom:862.185450px;}
.y124{bottom:862.294350px;}
.yef{bottom:862.322700px;}
.y65{bottom:862.437600px;}
.y86{bottom:862.525350px;}
.y1ef{bottom:862.667250px;}
.y43{bottom:862.951500px;}
.y230{bottom:863.436000px;}
.y24a{bottom:863.754600px;}
.y21{bottom:866.754600px;}
.y2af{bottom:867.699450px;}
.y287{bottom:867.842250px;}
.y2{bottom:875.418300px;}
.ycf{bottom:881.673300px;}
.y1d3{bottom:881.747100px;}
.y19b{bottom:881.858700px;}
.y143{bottom:881.868300px;}
.y1b5{bottom:881.926350px;}
.yab{bottom:881.952900px;}
.y123{bottom:881.980800px;}
.yee{bottom:881.994900px;}
.y64{bottom:882.052350px;}
.y85{bottom:882.096300px;}
.y1ee{bottom:882.167250px;}
.y22f{bottom:883.095300px;}
.y249{bottom:883.254600px;}
.y20{bottom:884.754600px;}
.y286{bottom:885.842250px;}
.y1{bottom:898.085850px;}
.y63{bottom:901.667250px;}
.y1f{bottom:902.754600px;}
.y42{bottom:903.243600px;}
.y285{bottom:903.842250px;}
.y1d{bottom:945.383100px;}
.y41{bottom:946.905600px;}
.hb{height:26.748000px;}
.h11{height:31.200000px;}
.h7{height:35.376000px;}
.h5{height:35.472000px;}
.h6{height:35.664000px;}
.h8{height:42.123000px;}
.hc{height:46.872000px;}
.h14{height:48.621000px;}
.he{height:50.217000px;}
.hd{height:50.274000px;}
.h12{height:51.180000px;}
.h4{height:53.730000px;}
.h9{height:53.739000px;}
.ha{height:54.163200px;}
.h13{height:56.715000px;}
.h10{height:58.857000px;}
.hf{height:62.685000px;}
.h3{height:68.655000px;}
.h2{height:77.610000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:106.299300px;}
.x2{left:115.225650px;}
.x11{left:119.383500px;}
.x5{left:122.939250px;}
.x14{left:127.559100px;}
.x13{left:140.315100px;}
.x6{left:152.105100px;}
.x3{left:160.049700px;}
.x1{left:166.900950px;}
.x7{left:220.885050px;}
.x4{left:243.303000px;}
.x8{left:266.003850px;}
.xd{left:267.508950px;}
.xe{left:286.971600px;}
.x9{left:290.588850px;}
.xa{left:303.106050px;}
.x10{left:424.077150px;}
.xf{left:469.267950px;}
.xc{left:488.201850px;}
.xb{left:517.683450px;}
@media print{
.v2{vertical-align:-20.424000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.648000pt;}
.v1{vertical-align:20.424000pt;}
.ls77{letter-spacing:-5.333333pt;}
.lsaf{letter-spacing:-4.722667pt;}
.ls9a{letter-spacing:-3.946667pt;}
.ls7b{letter-spacing:-3.741333pt;}
.ls97{letter-spacing:-3.472000pt;}
.ls1d{letter-spacing:-3.413333pt;}
.ls68{letter-spacing:-3.253333pt;}
.lsed{letter-spacing:-3.090667pt;}
.ls5a{letter-spacing:-3.040000pt;}
.lsec{letter-spacing:-2.989333pt;}
.lsd9{letter-spacing:-2.938667pt;}
.ls73{letter-spacing:-2.880000pt;}
.lsde{letter-spacing:-2.786667pt;}
.ls44{letter-spacing:-2.773333pt;}
.lsd3{letter-spacing:-2.634667pt;}
.lse2{letter-spacing:-2.584000pt;}
.ls1c{letter-spacing:-2.346667pt;}
.ls3a{letter-spacing:-2.324227pt;}
.lscf{letter-spacing:-2.178667pt;}
.lsd1{letter-spacing:-2.128000pt;}
.ls5f{letter-spacing:-2.085333pt;}
.lsb2{letter-spacing:-2.080000pt;}
.lsce{letter-spacing:-2.077333pt;}
.ls96{letter-spacing:-2.072000pt;}
.lsb8{letter-spacing:-1.973333pt;}
.ls48{letter-spacing:-1.966653pt;}
.lsdc{letter-spacing:-1.925333pt;}
.ls2f{letter-spacing:-1.901333pt;}
.lsbd{letter-spacing:-1.895139pt;}
.ls41{letter-spacing:-1.865600pt;}
.ls70{letter-spacing:-1.840000pt;}
.ls2d{letter-spacing:-1.787867pt;}
.ls47{letter-spacing:-1.644837pt;}
.lse8{letter-spacing:-1.621333pt;}
.lsa2{letter-spacing:-1.609080pt;}
.lseb{letter-spacing:-1.570667pt;}
.ls4b{letter-spacing:-1.568000pt;}
.ls3f{letter-spacing:-1.501808pt;}
.ls34{letter-spacing:-1.430293pt;}
.ls56{letter-spacing:-1.410667pt;}
.ls3{letter-spacing:-1.349333pt;}
.ls6e{letter-spacing:-1.323021pt;}
.lse6{letter-spacing:-1.317333pt;}
.ls31{letter-spacing:-1.288000pt;}
.ls4a{letter-spacing:-1.287264pt;}
.ls4d{letter-spacing:-1.274827pt;}
.lsa6{letter-spacing:-1.243733pt;}
.ls2e{letter-spacing:-1.226667pt;}
.lsc1{letter-spacing:-1.212640pt;}
.ls45{letter-spacing:-1.181547pt;}
.ls5d{letter-spacing:-1.173333pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls37{letter-spacing:-1.119360pt;}
.ls3d{letter-spacing:-1.108477pt;}
.ls3e{letter-spacing:-1.042667pt;}
.ls74{letter-spacing:-1.026080pt;}
.ls4c{letter-spacing:-0.994987pt;}
.lsba{letter-spacing:-0.981333pt;}
.ls7c{letter-spacing:-0.965448pt;}
.ls14{letter-spacing:-0.962667pt;}
.ls84{letter-spacing:-0.960000pt;}
.ls2b{letter-spacing:-0.929691pt;}
.ls46{letter-spacing:-0.920000pt;}
.ls29{letter-spacing:-0.906667pt;}
.ls2{letter-spacing:-0.901333pt;}
.lsbb{letter-spacing:-0.858667pt;}
.ls43{letter-spacing:-0.853333pt;}
.ls42{letter-spacing:-0.839520pt;}
.lsad{letter-spacing:-0.816200pt;}
.lsc4{letter-spacing:-0.797333pt;}
.ls30{letter-spacing:-0.786661pt;}
.lsb0{letter-spacing:-0.777333pt;}
.lsa3{letter-spacing:-0.750904pt;}
.ls24{letter-spacing:-0.746667pt;}
.lsbe{letter-spacing:-0.736000pt;}
.ls88{letter-spacing:-0.715147pt;}
.ls6a{letter-spacing:-0.693333pt;}
.ls2c{letter-spacing:-0.684053pt;}
.ls21{letter-spacing:-0.674667pt;}
.lsac{letter-spacing:-0.672000pt;}
.lsa5{letter-spacing:-0.643632pt;}
.ls82{letter-spacing:-0.640000pt;}
.ls98{letter-spacing:-0.620312pt;}
.ls12{letter-spacing:-0.616000pt;}
.ls28{letter-spacing:-0.613333pt;}
.lsda{letter-spacing:-0.608000pt;}
.ls94{letter-spacing:-0.607875pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls80{letter-spacing:-0.559680pt;}
.ls62{letter-spacing:-0.552000pt;}
.ls50{letter-spacing:-0.533333pt;}
.lsa7{letter-spacing:-0.528587pt;}
.lsca{letter-spacing:-0.506667pt;}
.ls8d{letter-spacing:-0.497493pt;}
.ls60{letter-spacing:-0.490667pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsb3{letter-spacing:-0.464845pt;}
.lsdd{letter-spacing:-0.456000pt;}
.lsa8{letter-spacing:-0.435307pt;}
.lsbf{letter-spacing:-0.429333pt;}
.ls99{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.405333pt;}
.ls57{letter-spacing:-0.393331pt;}
.ls23{letter-spacing:-0.392000pt;}
.ls3b{letter-spacing:-0.368000pt;}
.ls71{letter-spacing:-0.357573pt;}
.ls32{letter-spacing:-0.321816pt;}
.ls1b{letter-spacing:-0.306667pt;}
.lsdb{letter-spacing:-0.304000pt;}
.lsc0{letter-spacing:-0.286059pt;}
.ls38{letter-spacing:-0.266667pt;}
.lsd7{letter-spacing:-0.253333pt;}
.ls6f{letter-spacing:-0.250301pt;}
.ls9b{letter-spacing:-0.248747pt;}
.lsae{letter-spacing:-0.245333pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls5b{letter-spacing:-0.217653pt;}
.ls51{letter-spacing:-0.213333pt;}
.ls76{letter-spacing:-0.186560pt;}
.ls40{letter-spacing:-0.184000pt;}
.ls91{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.155467pt;}
.lsd4{letter-spacing:-0.152000pt;}
.ls9e{letter-spacing:-0.143029pt;}
.lsb5{letter-spacing:-0.124373pt;}
.lsc3{letter-spacing:-0.122667pt;}
.lsaa{letter-spacing:-0.112000pt;}
.ls7f{letter-spacing:-0.107272pt;}
.ls75{letter-spacing:-0.093280pt;}
.lsb4{letter-spacing:-0.071515pt;}
.ls9f{letter-spacing:-0.062187pt;}
.lse{letter-spacing:-0.056000pt;}
.ls9c{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000267pt;}
.ls83{letter-spacing:0.031093pt;}
.lsd5{letter-spacing:0.050667pt;}
.lsb7{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.061333pt;}
.ls35{letter-spacing:0.062187pt;}
.ls7d{letter-spacing:0.071515pt;}
.lsc2{letter-spacing:0.097944pt;}
.lsd6{letter-spacing:0.101333pt;}
.ls6d{letter-spacing:0.122667pt;}
.lsc6{letter-spacing:0.124373pt;}
.lse3{letter-spacing:0.152000pt;}
.lsa1{letter-spacing:0.160000pt;}
.ls7e{letter-spacing:0.184000pt;}
.ls81{letter-spacing:0.186560pt;}
.lsea{letter-spacing:0.202667pt;}
.ls4e{letter-spacing:0.213333pt;}
.lsb6{letter-spacing:0.217653pt;}
.ls4{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.245333pt;}
.ls18{letter-spacing:0.253333pt;}
.ls1e{letter-spacing:0.264800pt;}
.ls67{letter-spacing:0.279840pt;}
.ls0{letter-spacing:0.304000pt;}
.lsbc{letter-spacing:0.306667pt;}
.ls5c{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.354667pt;}
.ls20{letter-spacing:0.368000pt;}
.ls54{letter-spacing:0.393331pt;}
.ls10{letter-spacing:0.405333pt;}
.ls66{letter-spacing:0.426667pt;}
.ls49{letter-spacing:0.429088pt;}
.lse9{letter-spacing:0.456000pt;}
.ls55{letter-spacing:0.464845pt;}
.lsa0{letter-spacing:0.466400pt;}
.ls69{letter-spacing:0.480000pt;}
.ls59{letter-spacing:0.497493pt;}
.lscb{letter-spacing:0.506667pt;}
.lsb1{letter-spacing:0.528587pt;}
.lsa{letter-spacing:0.554667pt;}
.lscc{letter-spacing:0.557333pt;}
.lsab{letter-spacing:0.560000pt;}
.ls61{letter-spacing:0.572117pt;}
.ls26{letter-spacing:0.593333pt;}
.ls16{letter-spacing:0.597333pt;}
.ls53{letter-spacing:0.607875pt;}
.lsd2{letter-spacing:0.608000pt;}
.ls3c{letter-spacing:0.613333pt;}
.ls58{letter-spacing:0.621867pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.640267pt;}
.lscd{letter-spacing:0.658667pt;}
.ls64{letter-spacing:0.693333pt;}
.ls19{letter-spacing:0.709333pt;}
.ls9d{letter-spacing:0.715147pt;}
.ls9{letter-spacing:0.725333pt;}
.lsa4{letter-spacing:0.736000pt;}
.ls65{letter-spacing:0.746240pt;}
.ls4f{letter-spacing:0.777333pt;}
.ls8a{letter-spacing:0.786661pt;}
.ls8e{letter-spacing:0.800000pt;}
.ls63{letter-spacing:0.808427pt;}
.lsd8{letter-spacing:0.810667pt;}
.ls5e{letter-spacing:0.822419pt;}
.ls1{letter-spacing:0.832000pt;}
.lsdf{letter-spacing:0.861333pt;}
.ls72{letter-spacing:0.893933pt;}
.ls8c{letter-spacing:0.901707pt;}
.ls25{letter-spacing:0.911733pt;}
.lsd0{letter-spacing:0.912000pt;}
.lsb9{letter-spacing:0.914144pt;}
.ls93{letter-spacing:0.920000pt;}
.ls87{letter-spacing:0.929691pt;}
.ls8f{letter-spacing:0.994987pt;}
.ls89{letter-spacing:1.001205pt;}
.lse4{letter-spacing:1.013333pt;}
.ls78{letter-spacing:1.026080pt;}
.lsc8{letter-spacing:1.058667pt;}
.ls95{letter-spacing:1.072720pt;}
.lse1{letter-spacing:1.094400pt;}
.lse7{letter-spacing:1.266667pt;}
.lsc9{letter-spacing:1.288000pt;}
.ls90{letter-spacing:1.305920pt;}
.lsc5{letter-spacing:1.349333pt;}
.lsd{letter-spacing:1.381333pt;}
.ls8b{letter-spacing:1.394536pt;}
.lse5{letter-spacing:1.418667pt;}
.lsc7{letter-spacing:1.715733pt;}
.lsb{letter-spacing:1.776000pt;}
.ls27{letter-spacing:3.618667pt;}
.ls2a{letter-spacing:6.169067pt;}
.lse0{letter-spacing:8.008533pt;}
.ls86{letter-spacing:30.181333pt;}
.ls85{letter-spacing:30.250133pt;}
.lsa9{letter-spacing:30.641067pt;}
.ls79{letter-spacing:30.669867pt;}
.ls7a{letter-spacing:31.136000pt;}
.ls6c{letter-spacing:31.356800pt;}
.ls52{letter-spacing:31.381867pt;}
.ls92{letter-spacing:31.869867pt;}
.ls39{letter-spacing:32.003200pt;}
.ls6b{letter-spacing:32.187200pt;}
.lsc{letter-spacing:1248.854400pt;}
.ws77{word-spacing:-18.952000pt;}
.ws200{word-spacing:-16.682667pt;}
.ws1b8{word-spacing:-16.069333pt;}
.ws59{word-spacing:-15.701333pt;}
.ws5a{word-spacing:-15.578667pt;}
.ws162{word-spacing:-15.517333pt;}
.ws147{word-spacing:-15.456000pt;}
.wsd3{word-spacing:-15.394667pt;}
.ws113{word-spacing:-15.333333pt;}
.ws1ff{word-spacing:-15.210667pt;}
.wsd6{word-spacing:-15.149333pt;}
.ws1cc{word-spacing:-15.088000pt;}
.ws146{word-spacing:-15.026667pt;}
.wsd1{word-spacing:-14.965333pt;}
.ws1f2{word-spacing:-14.904000pt;}
.ws12e{word-spacing:-14.842667pt;}
.ws1a5{word-spacing:-14.781333pt;}
.ws112{word-spacing:-14.720000pt;}
.ws94{word-spacing:-14.658667pt;}
.ws1f1{word-spacing:-14.597333pt;}
.ws1ef{word-spacing:-14.474667pt;}
.ws1ee{word-spacing:-14.352000pt;}
.wsd4{word-spacing:-14.290667pt;}
.ws16{word-spacing:-13.944000pt;}
.wsfd{word-spacing:-13.546667pt;}
.ws15{word-spacing:-13.536000pt;}
.ws231{word-spacing:-13.528000pt;}
.ws0{word-spacing:-13.392000pt;}
.ws18{word-spacing:-13.384000pt;}
.ws1aa{word-spacing:-13.333333pt;}
.ws213{word-spacing:-13.325333pt;}
.ws197{word-spacing:-13.280000pt;}
.ws216{word-spacing:-13.224000pt;}
.ws17f{word-spacing:-13.173333pt;}
.ws254{word-spacing:-13.122667pt;}
.ws17{word-spacing:-13.072000pt;}
.ws211{word-spacing:-13.021333pt;}
.ws2{word-spacing:-12.970667pt;}
.ws38{word-spacing:-12.920000pt;}
.ws192{word-spacing:-12.906667pt;}
.ws194{word-spacing:-12.853333pt;}
.ws251{word-spacing:-12.818667pt;}
.ws22d{word-spacing:-12.768000pt;}
.ws212{word-spacing:-12.666667pt;}
.ws133{word-spacing:-12.640000pt;}
.ws5b{word-spacing:-12.586667pt;}
.wsd9{word-spacing:-12.480000pt;}
.ws195{word-spacing:-12.373333pt;}
.ws22f{word-spacing:-12.210667pt;}
.ws119{word-spacing:-12.160000pt;}
.ws22e{word-spacing:-12.058667pt;}
.ws19{word-spacing:-11.704000pt;}
.ws1e6{word-spacing:-11.360000pt;}
.ws252{word-spacing:-11.349333pt;}
.ws1{word-spacing:-11.221333pt;}
.ws255{word-spacing:-11.096000pt;}
.ws253{word-spacing:-11.045333pt;}
.ws214{word-spacing:-10.589333pt;}
.ws217{word-spacing:-10.538667pt;}
.ws215{word-spacing:-10.488000pt;}
.ws14b{word-spacing:-10.453333pt;}
.ws17d{word-spacing:-10.080000pt;}
.ws22c{word-spacing:-10.032000pt;}
.ws18e{word-spacing:-10.012053pt;}
.ws178{word-spacing:-9.940539pt;}
.ws5c{word-spacing:-9.920000pt;}
.ws230{word-spacing:-9.880000pt;}
.ws176{word-spacing:-9.869024pt;}
.ws14a{word-spacing:-9.833267pt;}
.ws12d{word-spacing:-9.761752pt;}
.ws26c{word-spacing:-9.728000pt;}
.ws179{word-spacing:-9.725995pt;}
.ws1a4{word-spacing:-9.654480pt;}
.ws110{word-spacing:-9.547208pt;}
.ws12f{word-spacing:-9.511451pt;}
.ws114{word-spacing:-9.404179pt;}
.ws193{word-spacing:-9.386667pt;}
.wsf9{word-spacing:-9.368421pt;}
.ws111{word-spacing:-9.332664pt;}
.ws17e{word-spacing:-9.079253pt;}
.ws1ed{word-spacing:-9.076144pt;}
.ws161{word-spacing:-9.010848pt;}
.ws3b{word-spacing:-8.939333pt;}
.ws1e3{word-spacing:-8.867819pt;}
.ws163{word-spacing:-8.832061pt;}
.ws14f{word-spacing:-8.799413pt;}
.ws1a6{word-spacing:-8.796304pt;}
.ws17c{word-spacing:-8.768320pt;}
.ws149{word-spacing:-8.689032pt;}
.ws17a{word-spacing:-8.675040pt;}
.ws1f3{word-spacing:-8.653275pt;}
.wsb1{word-spacing:-8.617517pt;}
.ws130{word-spacing:-8.581760pt;}
.wsfe{word-spacing:-8.550667pt;}
.ws115{word-spacing:-8.546003pt;}
.ws131{word-spacing:-8.519573pt;}
.ws1a7{word-spacing:-8.488480pt;}
.ws1e2{word-spacing:-8.474488pt;}
.ws116{word-spacing:-8.395200pt;}
.ws18d{word-spacing:-8.331459pt;}
.ws1ce{word-spacing:-8.301920pt;}
.ws1b9{word-spacing:-8.295701pt;}
.ws117{word-spacing:-8.270827pt;}
.ws1fe{word-spacing:-8.259944pt;}
.ws1a9{word-spacing:-8.239733pt;}
.ws177{word-spacing:-8.224187pt;}
.ws1b7{word-spacing:-8.188429pt;}
.wsb0{word-spacing:-8.152672pt;}
.ws132{word-spacing:-8.053173pt;}
.ws93{word-spacing:-8.009643pt;}
.ws1e5{word-spacing:-7.990987pt;}
.ws160{word-spacing:-7.973885pt;}
.ws165{word-spacing:-7.959893pt;}
.ws201{word-spacing:-7.897707pt;}
.wsb4{word-spacing:-7.835520pt;}
.wsd2{word-spacing:-7.830856pt;}
.ws166{word-spacing:-7.804427pt;}
.ws3c{word-spacing:-7.773333pt;}
.ws1a8{word-spacing:-7.711147pt;}
.ws14d{word-spacing:-7.680053pt;}
.wsfa{word-spacing:-7.652069pt;}
.ws1e4{word-spacing:-7.648960pt;}
.wsb5{word-spacing:-7.617867pt;}
.ws148{word-spacing:-7.616312pt;}
.ws14e{word-spacing:-7.586773pt;}
.ws118{word-spacing:-7.555680pt;}
.ws190{word-spacing:-7.541688pt;}
.ws196{word-spacing:-7.524587pt;}
.wsb2{word-spacing:-7.509040pt;}
.wsd5{word-spacing:-7.437525pt;}
.ws1cb{word-spacing:-7.345800pt;}
.ws1bc{word-spacing:-7.338027pt;}
.ws1b6{word-spacing:-7.330253pt;}
.wsf7{word-spacing:-7.294496pt;}
.ws17b{word-spacing:-7.275840pt;}
.ws1bb{word-spacing:-7.244747pt;}
.ws164{word-spacing:-7.213653pt;}
.wsaf{word-spacing:-7.151467pt;}
.ws95{word-spacing:-7.089280pt;}
.ws191{word-spacing:-7.058187pt;}
.ws1f0{word-spacing:-7.044195pt;}
.ws1cd{word-spacing:-6.996000pt;}
.wsf8{word-spacing:-6.972680pt;}
.wsd8{word-spacing:-6.933813pt;}
.wsfb{word-spacing:-6.778347pt;}
.ws14c{word-spacing:-6.747253pt;}
.wsb6{word-spacing:-6.653973pt;}
.wsd0{word-spacing:-6.615107pt;}
.wsda{word-spacing:-6.591787pt;}
.ws1f4{word-spacing:-6.560693pt;}
.ws1ba{word-spacing:-6.529600pt;}
.wsfc{word-spacing:-6.498507pt;}
.wsb3{word-spacing:-6.343040pt;}
.wsd7{word-spacing:-5.907733pt;}
.ws62{word-spacing:-5.765333pt;}
.ws152{word-spacing:-5.581333pt;}
.ws4f{word-spacing:-5.520000pt;}
.wsa3{word-spacing:-5.152000pt;}
.ws1e9{word-spacing:-4.968000pt;}
.ws154{word-spacing:-4.845333pt;}
.ws103{word-spacing:-4.661333pt;}
.ws47{word-spacing:-4.170667pt;}
.ws1db{word-spacing:-4.109333pt;}
.ws157{word-spacing:-3.925333pt;}
.ws136{word-spacing:-3.864000pt;}
.ws20e{word-spacing:-3.802667pt;}
.ws271{word-spacing:-3.800000pt;}
.ws24{word-spacing:-3.696000pt;}
.ws1a0{word-spacing:-3.573333pt;}
.wse8{word-spacing:-3.496000pt;}
.ws1be{word-spacing:-3.250667pt;}
.ws138{word-spacing:-3.189333pt;}
.ws19f{word-spacing:-3.146667pt;}
.ws2e{word-spacing:-3.136000pt;}
.ws1e8{word-spacing:-3.128000pt;}
.ws1de{word-spacing:-3.066667pt;}
.ws139{word-spacing:-3.005333pt;}
.wse7{word-spacing:-2.944000pt;}
.ws16c{word-spacing:-2.882667pt;}
.wsc2{word-spacing:-2.821333pt;}
.ws1bd{word-spacing:-2.760000pt;}
.ws206{word-spacing:-2.744000pt;}
.wsbf{word-spacing:-2.698667pt;}
.ws19d{word-spacing:-2.688000pt;}
.wsc0{word-spacing:-2.637333pt;}
.ws1f{word-spacing:-2.576000pt;}
.ws8b{word-spacing:-2.514667pt;}
.ws16e{word-spacing:-2.453333pt;}
.ws125{word-spacing:-2.392000pt;}
.ws208{word-spacing:-2.352000pt;}
.wse3{word-spacing:-2.330667pt;}
.ws29{word-spacing:-2.240000pt;}
.ws7f{word-spacing:-2.208000pt;}
.ws4d{word-spacing:-2.146667pt;}
.ws22a{word-spacing:-2.128000pt;}
.ws13c{word-spacing:-2.085333pt;}
.ws1b3{word-spacing:-2.026667pt;}
.ws155{word-spacing:-2.024000pt;}
.ws266{word-spacing:-1.976000pt;}
.wscc{word-spacing:-1.973333pt;}
.ws248{word-spacing:-1.925333pt;}
.ws1fa{word-spacing:-1.920000pt;}
.ws1b0{word-spacing:-1.901333pt;}
.ws1a3{word-spacing:-1.866667pt;}
.ws83{word-spacing:-1.840000pt;}
.ws218{word-spacing:-1.824000pt;}
.wsce{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.792000pt;}
.ws5d{word-spacing:-1.778667pt;}
.ws3d{word-spacing:-1.776000pt;}
.ws21a{word-spacing:-1.722667pt;}
.ws168{word-spacing:-1.717333pt;}
.ws41{word-spacing:-1.656000pt;}
.ws26d{word-spacing:-1.621333pt;}
.wsab{word-spacing:-1.600000pt;}
.ws15b{word-spacing:-1.594667pt;}
.wsc3{word-spacing:-1.533333pt;}
.ws134{word-spacing:-1.472000pt;}
.ws1d5{word-spacing:-1.456000pt;}
.wscf{word-spacing:-1.440000pt;}
.ws9d{word-spacing:-1.410667pt;}
.ws183{word-spacing:-1.394536pt;}
.wscd{word-spacing:-1.386667pt;}
.ws158{word-spacing:-1.349333pt;}
.ws101{word-spacing:-1.288000pt;}
.ws21{word-spacing:-1.232000pt;}
.ws18b{word-spacing:-1.226667pt;}
.ws267{word-spacing:-1.216000pt;}
.ws2a{word-spacing:-1.176000pt;}
.wsa9{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.165333pt;}
.ws232{word-spacing:-1.114667pt;}
.ws1a2{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.064000pt;}
.ws90{word-spacing:-1.042667pt;}
.ws5e{word-spacing:-0.981333pt;}
.wsc9{word-spacing:-0.960000pt;}
.ws9b{word-spacing:-0.920000pt;}
.ws18a{word-spacing:-0.906667pt;}
.ws1d3{word-spacing:-0.896000pt;}
.wsde{word-spacing:-0.858667pt;}
.ws234{word-spacing:-0.810667pt;}
.ws185{word-spacing:-0.800000pt;}
.ws20b{word-spacing:-0.797333pt;}
.ws1d4{word-spacing:-0.784000pt;}
.ws259{word-spacing:-0.760000pt;}
.ws10e{word-spacing:-0.746667pt;}
.ws150{word-spacing:-0.736000pt;}
.ws1b{word-spacing:-0.728000pt;}
.wsa{word-spacing:-0.725333pt;}
.ws25e{word-spacing:-0.709333pt;}
.ws141{word-spacing:-0.693333pt;}
.ws7d{word-spacing:-0.674667pt;}
.ws37{word-spacing:-0.672000pt;}
.ws8{word-spacing:-0.640000pt;}
.ws102{word-spacing:-0.613333pt;}
.ws204{word-spacing:-0.560000pt;}
.ws21e{word-spacing:-0.557333pt;}
.wsdf{word-spacing:-0.552000pt;}
.ws1c7{word-spacing:-0.533333pt;}
.ws250{word-spacing:-0.506667pt;}
.ws61{word-spacing:-0.490667pt;}
.ws96{word-spacing:-0.429333pt;}
.ws10d{word-spacing:-0.426667pt;}
.ws22b{word-spacing:-0.405333pt;}
.ws1c9{word-spacing:-0.373333pt;}
.ws63{word-spacing:-0.368000pt;}
.ws23{word-spacing:-0.354667pt;}
.ws1f9{word-spacing:-0.336000pt;}
.ws15e{word-spacing:-0.320000pt;}
.ws87{word-spacing:-0.306667pt;}
.ws85{word-spacing:-0.245333pt;}
.ws6{word-spacing:-0.240000pt;}
.ws25{word-spacing:-0.224000pt;}
.ws189{word-spacing:-0.213333pt;}
.ws235{word-spacing:-0.202667pt;}
.ws11e{word-spacing:-0.184000pt;}
.ws19c{word-spacing:-0.168000pt;}
.ws1b5{word-spacing:-0.160000pt;}
.wse6{word-spacing:-0.122667pt;}
.ws97{word-spacing:-0.061333pt;}
.wsd{word-spacing:-0.056000pt;}
.ws10f{word-spacing:-0.053333pt;}
.ws23d{word-spacing:-0.050667pt;}
.ws3a{word-spacing:-0.035467pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:0.042667pt;}
.ws25d{word-spacing:0.050667pt;}
.wsed{word-spacing:0.061333pt;}
.ws1d0{word-spacing:0.112000pt;}
.wsa0{word-spacing:0.122667pt;}
.ws269{word-spacing:0.152000pt;}
.ws1fd{word-spacing:0.160000pt;}
.ws1d8{word-spacing:0.168000pt;}
.ws1c4{word-spacing:0.184000pt;}
.ws2d{word-spacing:0.224000pt;}
.ws6b{word-spacing:0.245333pt;}
.ws241{word-spacing:0.253333pt;}
.ws23a{word-spacing:0.304000pt;}
.ws6c{word-spacing:0.306667pt;}
.ws19e{word-spacing:0.320000pt;}
.ws39{word-spacing:0.354667pt;}
.ws7b{word-spacing:0.368000pt;}
.ws6d{word-spacing:0.392000pt;}
.ws236{word-spacing:0.405333pt;}
.ws1b1{word-spacing:0.426667pt;}
.wse0{word-spacing:0.429333pt;}
.ws210{word-spacing:0.456000pt;}
.ws4e{word-spacing:0.490667pt;}
.ws31{word-spacing:0.504000pt;}
.ws26a{word-spacing:0.506667pt;}
.ws52{word-spacing:0.552000pt;}
.ws237{word-spacing:0.557333pt;}
.ws1c6{word-spacing:0.586667pt;}
.wsb7{word-spacing:0.613333pt;}
.ws2f{word-spacing:0.616000pt;}
.ws174{word-spacing:0.640000pt;}
.ws260{word-spacing:0.658667pt;}
.ws1d9{word-spacing:0.672000pt;}
.ws54{word-spacing:0.674667pt;}
.ws239{word-spacing:0.709333pt;}
.ws70{word-spacing:0.736000pt;}
.ws142{word-spacing:0.746667pt;}
.ws1da{word-spacing:0.797333pt;}
.ws21f{word-spacing:0.810667pt;}
.ws203{word-spacing:0.840000pt;}
.ws10c{word-spacing:0.853333pt;}
.ws9c{word-spacing:0.858667pt;}
.ws265{word-spacing:0.861333pt;}
.ws92{word-spacing:0.906667pt;}
.ws4c{word-spacing:0.920000pt;}
.ws20{word-spacing:0.952000pt;}
.ws175{word-spacing:0.960000pt;}
.ws24f{word-spacing:0.962667pt;}
.ws46{word-spacing:0.981333pt;}
.ws21c{word-spacing:1.013333pt;}
.ws1ab{word-spacing:1.042667pt;}
.ws7e{word-spacing:1.104000pt;}
.ws25c{word-spacing:1.114667pt;}
.ws13{word-spacing:1.120000pt;}
.ws1ac{word-spacing:1.165333pt;}
.ws1b2{word-spacing:1.173333pt;}
.ws1d2{word-spacing:1.176000pt;}
.ws16b{word-spacing:1.226667pt;}
.ws5{word-spacing:1.349333pt;}
.wsa8{word-spacing:1.386667pt;}
.ws35{word-spacing:1.400000pt;}
.ws80{word-spacing:1.410667pt;}
.ws23c{word-spacing:1.418667pt;}
.ws1ea{word-spacing:1.456000pt;}
.ws199{word-spacing:1.472000pt;}
.wsf5{word-spacing:1.493333pt;}
.ws1c{word-spacing:1.512000pt;}
.ws21b{word-spacing:1.520000pt;}
.ws19a{word-spacing:1.533333pt;}
.ws108{word-spacing:1.568000pt;}
.ws6a{word-spacing:1.594667pt;}
.ws246{word-spacing:1.621333pt;}
.ws151{word-spacing:1.656000pt;}
.ws10b{word-spacing:1.706667pt;}
.wsc4{word-spacing:1.717333pt;}
.ws219{word-spacing:1.722667pt;}
.ws1eb{word-spacing:1.736000pt;}
.wsef{word-spacing:1.778667pt;}
.wsca{word-spacing:1.813333pt;}
.ws261{word-spacing:1.824000pt;}
.ws43{word-spacing:1.840000pt;}
.ws34{word-spacing:1.848000pt;}
.ws221{word-spacing:1.874667pt;}
.ws82{word-spacing:1.901333pt;}
.ws24c{word-spacing:1.925333pt;}
.ws205{word-spacing:1.960000pt;}
.ws233{word-spacing:1.976000pt;}
.ws18f{word-spacing:2.016000pt;}
.wsa6{word-spacing:2.024000pt;}
.ws129{word-spacing:2.026667pt;}
.ws24d{word-spacing:2.077333pt;}
.ws75{word-spacing:2.080000pt;}
.ws78{word-spacing:2.085333pt;}
.ws1d1{word-spacing:2.128000pt;}
.ws169{word-spacing:2.146667pt;}
.ws21d{word-spacing:2.178667pt;}
.ws33{word-spacing:2.184000pt;}
.ws12b{word-spacing:2.186667pt;}
.ws1f8{word-spacing:2.240000pt;}
.wse4{word-spacing:2.269333pt;}
.ws26e{word-spacing:2.280000pt;}
.wsb{word-spacing:2.296000pt;}
.ws44{word-spacing:2.330667pt;}
.ws56{word-spacing:2.346667pt;}
.ws79{word-spacing:2.392000pt;}
.ws13b{word-spacing:2.453333pt;}
.ws14{word-spacing:2.464000pt;}
.ws12c{word-spacing:2.506667pt;}
.ws8f{word-spacing:2.514667pt;}
.ws1e{word-spacing:2.520000pt;}
.ws26b{word-spacing:2.533333pt;}
.ws89{word-spacing:2.576000pt;}
.ws26f{word-spacing:2.584000pt;}
.ws58{word-spacing:2.613333pt;}
.ws257{word-spacing:2.634667pt;}
.ws45{word-spacing:2.637333pt;}
.ws220{word-spacing:2.685333pt;}
.ws27{word-spacing:2.688000pt;}
.ws13d{word-spacing:2.698667pt;}
.ws135{word-spacing:2.760000pt;}
.wsf6{word-spacing:2.773333pt;}
.ws30{word-spacing:2.800000pt;}
.ws69{word-spacing:2.821333pt;}
.ws228{word-spacing:2.837333pt;}
.ws74{word-spacing:2.880000pt;}
.wsf1{word-spacing:2.882667pt;}
.ws137{word-spacing:2.944000pt;}
.ws123{word-spacing:3.005333pt;}
.ws12a{word-spacing:3.040000pt;}
.ws66{word-spacing:3.066667pt;}
.ws270{word-spacing:3.090667pt;}
.ws11f{word-spacing:3.128000pt;}
.ws153{word-spacing:3.189333pt;}
.wsba{word-spacing:3.250667pt;}
.ws143{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.312000pt;}
.ws86{word-spacing:3.373333pt;}
.ws57{word-spacing:3.413333pt;}
.ws207{word-spacing:3.416000pt;}
.ws11d{word-spacing:3.434667pt;}
.wse{word-spacing:3.472000pt;}
.wsf0{word-spacing:3.496000pt;}
.ws170{word-spacing:3.557333pt;}
.ws25b{word-spacing:3.597333pt;}
.ws50{word-spacing:3.618667pt;}
.wsaa{word-spacing:3.680000pt;}
.ws182{word-spacing:3.741333pt;}
.wsa2{word-spacing:3.802667pt;}
.ws26{word-spacing:3.808000pt;}
.ws11a{word-spacing:3.925333pt;}
.ws1d6{word-spacing:3.976000pt;}
.ws1df{word-spacing:3.986667pt;}
.ws5f{word-spacing:4.048000pt;}
.ws1ca{word-spacing:4.106667pt;}
.ws99{word-spacing:4.109333pt;}
.ws1c8{word-spacing:4.160000pt;}
.ws36{word-spacing:4.200000pt;}
.ws100{word-spacing:4.232000pt;}
.ws268{word-spacing:4.256000pt;}
.ws73{word-spacing:4.266667pt;}
.ws11c{word-spacing:4.293333pt;}
.ws15a{word-spacing:4.354667pt;}
.ws25a{word-spacing:4.408000pt;}
.ws120{word-spacing:4.416000pt;}
.ws11{word-spacing:4.424000pt;}
.ws53{word-spacing:4.477333pt;}
.ws3e{word-spacing:4.509333pt;}
.ws1ad{word-spacing:4.538667pt;}
.ws240{word-spacing:4.560000pt;}
.wse9{word-spacing:4.600000pt;}
.ws1e7{word-spacing:4.661333pt;}
.ws13f{word-spacing:4.693333pt;}
.wse5{word-spacing:4.722667pt;}
.wsbe{word-spacing:4.784000pt;}
.wsc5{word-spacing:4.845333pt;}
.ws24b{word-spacing:4.864000pt;}
.ws19b{word-spacing:4.872000pt;}
.ws23f{word-spacing:4.914667pt;}
.ws22{word-spacing:4.928000pt;}
.ws7a{word-spacing:4.968000pt;}
.wsf2{word-spacing:5.029333pt;}
.wsf{word-spacing:5.040000pt;}
.wsc{word-spacing:5.152000pt;}
.ws67{word-spacing:5.213333pt;}
.wsc7{word-spacing:5.226667pt;}
.ws15f{word-spacing:5.333333pt;}
.ws7c{word-spacing:5.336000pt;}
.ws243{word-spacing:5.370667pt;}
.ws4b{word-spacing:5.397333pt;}
.ws224{word-spacing:5.421333pt;}
.wsf3{word-spacing:5.440000pt;}
.wsa5{word-spacing:5.458667pt;}
.ws242{word-spacing:5.472000pt;}
.ws11b{word-spacing:5.581333pt;}
.ws10a{word-spacing:5.642667pt;}
.wsac{word-spacing:5.653333pt;}
.ws23b{word-spacing:5.674667pt;}
.ws48{word-spacing:5.704000pt;}
.wsf4{word-spacing:5.706667pt;}
.ws9f{word-spacing:5.765333pt;}
.ws24a{word-spacing:5.776000pt;}
.wsb9{word-spacing:5.826667pt;}
.ws1fb{word-spacing:5.866667pt;}
.ws229{word-spacing:5.877333pt;}
.ws128{word-spacing:5.949333pt;}
.ws1fc{word-spacing:5.973333pt;}
.ws249{word-spacing:5.978667pt;}
.ws16d{word-spacing:6.010667pt;}
.ws32{word-spacing:6.048000pt;}
.ws222{word-spacing:6.181333pt;}
.ws84{word-spacing:6.194667pt;}
.ws91{word-spacing:6.240000pt;}
.ws42{word-spacing:6.256000pt;}
.ws124{word-spacing:6.317333pt;}
.ws167{word-spacing:6.378667pt;}
.ws1a{word-spacing:6.384000pt;}
.ws180{word-spacing:6.501333pt;}
.ws76{word-spacing:6.720000pt;}
.ws65{word-spacing:6.746667pt;}
.ws245{word-spacing:6.789333pt;}
.ws9a{word-spacing:6.808000pt;}
.ws264{word-spacing:6.840000pt;}
.ws23e{word-spacing:6.941333pt;}
.ws2c{word-spacing:6.944000pt;}
.ws106{word-spacing:6.992000pt;}
.ws1c2{word-spacing:7.114667pt;}
.ws72{word-spacing:7.253333pt;}
.ws1dc{word-spacing:7.298667pt;}
.ws12{word-spacing:7.336000pt;}
.ws1d{word-spacing:7.392000pt;}
.ws247{word-spacing:7.397333pt;}
.ws15d{word-spacing:7.421333pt;}
.ws262{word-spacing:7.498667pt;}
.ws2b{word-spacing:7.504000pt;}
.ws8d{word-spacing:7.544000pt;}
.ws1f5{word-spacing:7.560000pt;}
.ws144{word-spacing:7.573333pt;}
.ws227{word-spacing:7.650667pt;}
.ws1af{word-spacing:7.666667pt;}
.wseb{word-spacing:7.789333pt;}
.ws263{word-spacing:7.802667pt;}
.ws1ae{word-spacing:7.850667pt;}
.ws25f{word-spacing:7.853333pt;}
.ws98{word-spacing:7.912000pt;}
.ws3{word-spacing:7.973333pt;}
.ws1a1{word-spacing:8.000000pt;}
.ws24e{word-spacing:8.005333pt;}
.wsea{word-spacing:8.034667pt;}
.ws145{word-spacing:8.053333pt;}
.ws181{word-spacing:8.096000pt;}
.wsec{word-spacing:8.157333pt;}
.ws1b4{word-spacing:8.213333pt;}
.ws107{word-spacing:8.218667pt;}
.ws187{word-spacing:8.266667pt;}
.wsbc{word-spacing:8.280000pt;}
.ws202{word-spacing:8.288000pt;}
.ws3f{word-spacing:8.309333pt;}
.ws126{word-spacing:8.341333pt;}
.ws1ec{word-spacing:8.373333pt;}
.wsdb{word-spacing:8.402667pt;}
.ws51{word-spacing:8.464000pt;}
.ws209{word-spacing:8.525333pt;}
.wscb{word-spacing:8.533333pt;}
.ws8e{word-spacing:8.648000pt;}
.ws105{word-spacing:8.709333pt;}
.wse1{word-spacing:8.832000pt;}
.wsc8{word-spacing:8.853333pt;}
.wsff{word-spacing:8.893333pt;}
.ws8c{word-spacing:8.954667pt;}
.wsae{word-spacing:9.013333pt;}
.ws1f6{word-spacing:9.016000pt;}
.ws81{word-spacing:9.077333pt;}
.ws16a{word-spacing:9.138667pt;}
.wsa1{word-spacing:9.261333pt;}
.ws68{word-spacing:9.322667pt;}
.ws1c3{word-spacing:9.445333pt;}
.ws18c{word-spacing:9.493333pt;}
.ws6f{word-spacing:9.506667pt;}
.ws256{word-spacing:9.525333pt;}
.ws156{word-spacing:9.568000pt;}
.ws13e{word-spacing:9.629333pt;}
.ws225{word-spacing:9.677333pt;}
.ws49{word-spacing:9.690667pt;}
.ws4{word-spacing:9.706667pt;}
.wsa4{word-spacing:9.752000pt;}
.ws1bf{word-spacing:9.874667pt;}
.ws244{word-spacing:9.880000pt;}
.ws20c{word-spacing:9.936000pt;}
.ws16f{word-spacing:10.058667pt;}
.ws226{word-spacing:10.082667pt;}
.ws1d7{word-spacing:10.136000pt;}
.ws64{word-spacing:10.242667pt;}
.ws55{word-spacing:10.304000pt;}
.ws40{word-spacing:10.538667pt;}
.ws171{word-spacing:10.549333pt;}
.ws173{word-spacing:10.610667pt;}
.ws172{word-spacing:10.672000pt;}
.ws1dd{word-spacing:10.856000pt;}
.ws1c5{word-spacing:10.917333pt;}
.ws6e{word-spacing:10.978667pt;}
.ws1f7{word-spacing:11.162667pt;}
.ws88{word-spacing:11.285333pt;}
.ws20d{word-spacing:11.346667pt;}
.ws9e{word-spacing:11.408000pt;}
.wsa7{word-spacing:11.714667pt;}
.ws198{word-spacing:11.776000pt;}
.ws258{word-spacing:11.805333pt;}
.ws13a{word-spacing:11.837333pt;}
.wse2{word-spacing:11.898667pt;}
.wsbb{word-spacing:12.144000pt;}
.wsc6{word-spacing:12.450667pt;}
.ws121{word-spacing:12.512000pt;}
.ws71{word-spacing:12.573333pt;}
.ws122{word-spacing:12.634667pt;}
.ws15c{word-spacing:12.696000pt;}
.wsdd{word-spacing:12.818667pt;}
.ws1e0{word-spacing:13.002667pt;}
.ws159{word-spacing:13.186667pt;}
.wsb8{word-spacing:13.554667pt;}
.ws140{word-spacing:13.653333pt;}
.ws186{word-spacing:14.026667pt;}
.wsad{word-spacing:14.293333pt;}
.wsdc{word-spacing:14.474667pt;}
.ws127{word-spacing:14.536000pt;}
.ws8a{word-spacing:14.597333pt;}
.ws104{word-spacing:14.720000pt;}
.ws1cf{word-spacing:15.456000pt;}
.ws184{word-spacing:15.946667pt;}
.wsc1{word-spacing:16.069333pt;}
.ws4a{word-spacing:16.314667pt;}
.ws1c1{word-spacing:16.744000pt;}
.ws238{word-spacing:17.024000pt;}
.wsee{word-spacing:17.848000pt;}
.ws1e1{word-spacing:18.522667pt;}
.ws188{word-spacing:19.466667pt;}
.ws109{word-spacing:19.626667pt;}
.ws1c0{word-spacing:21.773333pt;}
.ws20a{word-spacing:25.637333pt;}
.ws223{word-spacing:38.000000pt;}
.ws20f{word-spacing:48.208000pt;}
._4{margin-left:-7.966400pt;}
._7{margin-left:-7.009600pt;}
._6{margin-left:-5.928000pt;}
._1{margin-left:-4.305600pt;}
._a{margin-left:-3.365600pt;}
._0{margin-left:-2.447467pt;}
._2{margin-left:-1.303467pt;}
._3{width:1.442133pt;}
._5{width:2.447467pt;}
._9{width:3.368000pt;}
._e{width:4.330133pt;}
._1c{width:5.441600pt;}
._21{width:6.384000pt;}
._1d{width:7.526933pt;}
._19{width:8.418133pt;}
._8{width:9.748267pt;}
._1a{width:22.400853pt;}
._20{width:24.826880pt;}
._15{width:25.788693pt;}
._18{width:28.154880pt;}
._16{width:30.136853pt;}
._13{width:31.134507pt;}
._14{width:32.568853pt;}
._1e{width:33.531627pt;}
._11{width:39.466667pt;}
._12{width:40.480000pt;}
._f{width:44.106667pt;}
._d{width:46.720000pt;}
._1b{width:48.073067pt;}
._17{width:52.063467pt;}
._1f{width:59.761600pt;}
._10{width:65.031467pt;}
._c{width:76.903467pt;}
._b{width:176.109600pt;}
.fsb{font-size:31.093333pt;}
.fs8{font-size:32.000000pt;}
.fsd{font-size:32.648000pt;}
.fs9{font-size:35.466667pt;}
.fsa{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs6{font-size:55.466667pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:61.333333pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:63.097733pt;}
.y1c{bottom:113.385867pt;}
.y62{bottom:113.386000pt;}
.yaa{bottom:117.825867pt;}
.y183{bottom:117.826000pt;}
.yce{bottom:129.385867pt;}
.y1b{bottom:129.534800pt;}
.ya9{bottom:133.825867pt;}
.y61{bottom:133.826000pt;}
.y182{bottom:133.826133pt;}
.ycd{bottom:145.385867pt;}
.y84{bottom:145.386000pt;}
.y2d6{bottom:145.512667pt;}
.y2ae{bottom:145.521200pt;}
.y1a{bottom:145.683733pt;}
.y40{bottom:147.389733pt;}
.ya8{bottom:149.825867pt;}
.y60{bottom:149.826133pt;}
.y181{bottom:149.826267pt;}
.y26c{bottom:159.622133pt;}
.ya7{bottom:161.385867pt;}
.y83{bottom:161.386000pt;}
.y190{bottom:161.386400pt;}
.y2d5{bottom:161.512667pt;}
.y2ad{bottom:161.521200pt;}
.y19{bottom:161.832667pt;}
.y284{bottom:162.485467pt;}
.y122{bottom:165.825867pt;}
.y180{bottom:165.826400pt;}
.y20f{bottom:175.622133pt;}
.y26b{bottom:176.955467pt;}
.ycc{bottom:177.385867pt;}
.y82{bottom:177.386000pt;}
.y18f{bottom:177.386400pt;}
.y17f{bottom:177.386533pt;}
.y2ac{bottom:177.521200pt;}
.y2d4{bottom:177.639467pt;}
.y18{bottom:177.981467pt;}
.y283{bottom:178.485467pt;}
.ya6{bottom:181.825867pt;}
.y5f{bottom:191.622400pt;}
.y20e{bottom:192.955467pt;}
.ycb{bottom:193.385867pt;}
.y81{bottom:193.386000pt;}
.y17e{bottom:193.386533pt;}
.y2d3{bottom:193.639467pt;}
.y2ab{bottom:193.656400pt;}
.y3f{bottom:193.740133pt;}
.y17{bottom:194.130400pt;}
.y26a{bottom:194.288800pt;}
.y282{bottom:194.485467pt;}
.yed{bottom:197.825867pt;}
.y18e{bottom:197.826400pt;}
.y22e{bottom:207.622133pt;}
.y5e{bottom:208.955733pt;}
.yca{bottom:209.385867pt;}
.y2d2{bottom:209.639467pt;}
.y2aa{bottom:209.656400pt;}
.y3e{bottom:209.740133pt;}
.y16{bottom:210.279333pt;}
.y20d{bottom:210.288800pt;}
.y281{bottom:211.585200pt;}
.y269{bottom:211.622133pt;}
.y121{bottom:213.825867pt;}
.y80{bottom:213.826000pt;}
.y17d{bottom:213.826533pt;}
.ya5{bottom:223.622133pt;}
.y22d{bottom:224.955467pt;}
.yec{bottom:225.385867pt;}
.y2a9{bottom:225.656400pt;}
.y3d{bottom:225.740133pt;}
.y2d1{bottom:225.766400pt;}
.y5d{bottom:226.289067pt;}
.y15{bottom:226.428267pt;}
.y280{bottom:227.585200pt;}
.y20c{bottom:228.087067pt;}
.y268{bottom:228.955467pt;}
.yc9{bottom:229.825867pt;}
.y142{bottom:239.622133pt;}
.ya4{bottom:241.018533pt;}
.y19a{bottom:241.385867pt;}
.y3c{bottom:241.740133pt;}
.y2d0{bottom:241.766400pt;}
.y2a8{bottom:241.791733pt;}
.y22c{bottom:242.288800pt;}
.y14{bottom:242.577067pt;}
.y27f{bottom:243.585200pt;}
.y5c{bottom:243.622400pt;}
.y20b{bottom:245.420400pt;}
.yc8{bottom:245.825867pt;}
.y267{bottom:246.288800pt;}
.y10c{bottom:255.622133pt;}
.y7f{bottom:255.622267pt;}
.y17c{bottom:255.622800pt;}
.y141{bottom:257.121200pt;}
.yeb{bottom:257.385867pt;}
.y3b{bottom:257.740133pt;}
.y2cf{bottom:257.766400pt;}
.y2a7{bottom:257.791733pt;}
.ya3{bottom:258.414800pt;}
.y13{bottom:258.726000pt;}
.y22b{bottom:259.622133pt;}
.y27e{bottom:260.684800pt;}
.y5b{bottom:260.955733pt;}
.y1b4{bottom:261.825867pt;}
.y20a{bottom:262.753733pt;}
.y266{bottom:263.622133pt;}
.y160{bottom:271.622133pt;}
.y120{bottom:273.057467pt;}
.y7e{bottom:273.057600pt;}
.y248{bottom:273.097067pt;}
.y10b{bottom:273.108533pt;}
.y17b{bottom:273.109200pt;}
.y1d2{bottom:273.169467pt;}
.y3a{bottom:273.740133pt;}
.y2a6{bottom:273.791733pt;}
.y2ce{bottom:273.893200pt;}
.y140{bottom:274.620267pt;}
.ya2{bottom:275.811200pt;}
.y22a{bottom:276.955467pt;}
.y27d{bottom:277.784400pt;}
.yea{bottom:277.825867pt;}
.y5a{bottom:278.289067pt;}
.y209{bottom:280.087067pt;}
.y265{bottom:281.453200pt;}
.yc7{bottom:287.622133pt;}
.y15f{bottom:289.221067pt;}
.y39{bottom:289.740133pt;}
.y2a5{bottom:289.791733pt;}
.y2cd{bottom:289.893200pt;}
.y7d{bottom:290.492933pt;}
.y10a{bottom:290.595067pt;}
.y17a{bottom:290.595600pt;}
.y1d1{bottom:290.716933pt;}
.y13f{bottom:292.119333pt;}
.y12{bottom:292.208267pt;}
.ya1{bottom:293.207600pt;}
.y27c{bottom:293.784400pt;}
.ye9{bottom:293.825867pt;}
.y59{bottom:296.770933pt;}
.y208{bottom:297.420400pt;}
.y264{bottom:298.786533pt;}
.y1b3{bottom:303.622133pt;}
.yc6{bottom:305.145867pt;}
.y38{bottom:305.740133pt;}
.y2a4{bottom:305.927067pt;}
.y2cc{bottom:306.020000pt;}
.y15e{bottom:306.820133pt;}
.y7c{bottom:307.928400pt;}
.y109{bottom:308.081467pt;}
.y179{bottom:308.082133pt;}
.y1d0{bottom:308.264400pt;}
.y13e{bottom:309.618400pt;}
.y11f{bottom:309.716000pt;}
.y247{bottom:309.795067pt;}
.ya0{bottom:310.604000pt;}
.y27b{bottom:310.884133pt;}
.y229{bottom:313.130933pt;}
.y58{bottom:314.104267pt;}
.y207{bottom:314.753733pt;}
.y263{bottom:316.119867pt;}
.y1ed{bottom:319.622133pt;}
.y1b2{bottom:321.229733pt;}
.y37{bottom:321.740133pt;}
.y2a3{bottom:321.927067pt;}
.y2cb{bottom:322.020000pt;}
.yc5{bottom:322.669733pt;}
.y15d{bottom:324.419067pt;}
.y7b{bottom:325.363733pt;}
.y108{bottom:325.568000pt;}
.y178{bottom:325.568533pt;}
.y1cf{bottom:325.811733pt;}
.y27a{bottom:326.884133pt;}
.y13d{bottom:327.117467pt;}
.y11e{bottom:327.151333pt;}
.y9f{bottom:328.000267pt;}
.y228{bottom:330.464267pt;}
.y57{bottom:331.437600pt;}
.y206{bottom:332.087067pt;}
.y262{bottom:333.453200pt;}
.ye8{bottom:335.622133pt;}
.y1ec{bottom:337.328800pt;}
.y36{bottom:337.740133pt;}
.y2a2{bottom:337.927067pt;}
.y2ca{bottom:338.020000pt;}
.y1b1{bottom:338.837333pt;}
.yc4{bottom:340.193467pt;}
.y15c{bottom:342.018133pt;}
.y7a{bottom:342.799067pt;}
.y279{bottom:342.884133pt;}
.y107{bottom:343.054400pt;}
.y177{bottom:343.054933pt;}
.y1ce{bottom:343.359200pt;}
.y13c{bottom:344.616533pt;}
.y9e{bottom:345.396667pt;}
.y227{bottom:347.797600pt;}
.y56{bottom:348.770933pt;}
.y205{bottom:349.420400pt;}
.y261{bottom:350.786533pt;}
.ye7{bottom:353.394400pt;}
.y35{bottom:353.740133pt;}
.y2a1{bottom:354.062400pt;}
.y2c9{bottom:354.146933pt;}
.y1eb{bottom:355.035467pt;}
.y1b0{bottom:356.444933pt;}
.yc3{bottom:357.717333pt;}
.y15b{bottom:359.617067pt;}
.y278{bottom:359.983733pt;}
.y79{bottom:360.234400pt;}
.y106{bottom:360.540800pt;}
.y176{bottom:360.541333pt;}
.y1cd{bottom:360.906667pt;}
.y13b{bottom:362.115600pt;}
.y9d{bottom:362.793067pt;}
.y246{bottom:363.826533pt;}
.y226{bottom:365.130933pt;}
.y55{bottom:366.104267pt;}
.y204{bottom:367.218667pt;}
.y260{bottom:368.119867pt;}
.y34{bottom:369.740133pt;}
.y2a0{bottom:370.062400pt;}
.y2c8{bottom:370.146933pt;}
.ye6{bottom:371.166800pt;}
.y1ea{bottom:372.742133pt;}
.y1af{bottom:374.052533pt;}
.y277{bottom:375.983733pt;}
.yc2{bottom:377.130933pt;}
.y15a{bottom:377.216133pt;}
.y78{bottom:377.669867pt;}
.y105{bottom:378.027333pt;}
.y175{bottom:378.027867pt;}
.y1cc{bottom:378.454000pt;}
.y11{bottom:379.023867pt;}
.y13a{bottom:379.614667pt;}
.y9c{bottom:380.189467pt;}
.y11d{bottom:381.143200pt;}
.y245{bottom:381.301467pt;}
.y54{bottom:383.437600pt;}
.y225{bottom:383.973067pt;}
.y203{bottom:384.552000pt;}
.y25f{bottom:385.453200pt;}
.y33{bottom:385.740133pt;}
.y29f{bottom:386.062400pt;}
.y2c7{bottom:386.146933pt;}
.ye5{bottom:388.939067pt;}
.y276{bottom:391.983733pt;}
.y1e9{bottom:392.338533pt;}
.yc1{bottom:394.654800pt;}
.y159{bottom:394.815067pt;}
.y104{bottom:395.513733pt;}
.y18d{bottom:395.514267pt;}
.y1cb{bottom:396.001467pt;}
.y139{bottom:397.113733pt;}
.y174{bottom:397.404000pt;}
.y9b{bottom:397.585867pt;}
.y11c{bottom:398.578533pt;}
.y244{bottom:398.776400pt;}
.y53{bottom:400.770933pt;}
.y224{bottom:401.306400pt;}
.y32{bottom:401.740133pt;}
.y202{bottom:401.885333pt;}
.y2c6{bottom:402.146933pt;}
.y29e{bottom:402.197600pt;}
.y25e{bottom:402.786533pt;}
.ye4{bottom:406.711333pt;}
.y199{bottom:408.601200pt;}
.y275{bottom:409.083333pt;}
.y1e8{bottom:410.045200pt;}
.y1ae{bottom:410.883333pt;}
.yc0{bottom:412.178533pt;}
.y158{bottom:412.414133pt;}
.y103{bottom:413.000267pt;}
.y18c{bottom:413.000667pt;}
.y1ca{bottom:413.548933pt;}
.y77{bottom:414.328267pt;}
.y138{bottom:414.612800pt;}
.y173{bottom:414.890533pt;}
.y9a{bottom:414.982267pt;}
.y11b{bottom:416.013867pt;}
.y243{bottom:416.251333pt;}
.y31{bottom:417.740133pt;}
.y52{bottom:418.104267pt;}
.y29d{bottom:418.197600pt;}
.y2c5{bottom:418.273733pt;}
.y223{bottom:418.639733pt;}
.y201{bottom:419.218667pt;}
.y25d{bottom:420.119867pt;}
.ye3{bottom:424.483733pt;}
.y274{bottom:425.083333pt;}
.y198{bottom:426.373467pt;}
.y10{bottom:427.171867pt;}
.y1e7{bottom:427.751867pt;}
.y1ad{bottom:428.490933pt;}
.ybf{bottom:429.702400pt;}
.y157{bottom:430.013067pt;}
.y102{bottom:430.486667pt;}
.y18b{bottom:430.487200pt;}
.y1c9{bottom:431.096267pt;}
.y172{bottom:432.376933pt;}
.y11a{bottom:433.449200pt;}
.y242{bottom:433.726267pt;}
.y30{bottom:433.740133pt;}
.y137{bottom:434.001600pt;}
.y29c{bottom:434.197600pt;}
.y99{bottom:434.268400pt;}
.y2c4{bottom:434.400533pt;}
.y51{bottom:435.437600pt;}
.y222{bottom:435.973067pt;}
.y200{bottom:436.552000pt;}
.y25c{bottom:437.453200pt;}
.yf{bottom:440.654133pt;}
.y273{bottom:442.183067pt;}
.ye2{bottom:442.256000pt;}
.y197{bottom:444.145733pt;}
.y1e6{bottom:445.458667pt;}
.ybe{bottom:447.226133pt;}
.y156{bottom:447.612133pt;}
.y101{bottom:447.973200pt;}
.y18a{bottom:447.973600pt;}
.y1c8{bottom:448.643733pt;}
.y2f{bottom:449.740133pt;}
.y171{bottom:449.863333pt;}
.y29b{bottom:450.332933pt;}
.y2c3{bottom:450.400533pt;}
.y119{bottom:450.884667pt;}
.y241{bottom:451.201333pt;}
.y136{bottom:451.500667pt;}
.y98{bottom:451.664667pt;}
.y50{bottom:452.770933pt;}
.y221{bottom:453.306400pt;}
.y1ff{bottom:453.885333pt;}
.ye{bottom:454.136400pt;}
.y25b{bottom:455.284267pt;}
.y272{bottom:458.183067pt;}
.ye1{bottom:460.028267pt;}
.y196{bottom:461.918133pt;}
.y1e5{bottom:463.165333pt;}
.ybd{bottom:464.750000pt;}
.y155{bottom:465.211200pt;}
.y189{bottom:465.460000pt;}
.y2e{bottom:465.740133pt;}
.y1c7{bottom:466.191200pt;}
.y29a{bottom:466.332933pt;}
.y2c2{bottom:466.400533pt;}
.y100{bottom:467.349467pt;}
.y170{bottom:467.349867pt;}
.yd{bottom:467.618667pt;}
.y118{bottom:468.320000pt;}
.y76{bottom:468.320133pt;}
.y240{bottom:468.676267pt;}
.y135{bottom:468.999733pt;}
.y97{bottom:469.061067pt;}
.y4f{bottom:470.104267pt;}
.y220{bottom:470.639733pt;}
.y1fe{bottom:471.218667pt;}
.y25a{bottom:472.617467pt;}
.y271{bottom:474.183067pt;}
.ye0{bottom:477.800667pt;}
.y195{bottom:479.690400pt;}
.y1e4{bottom:480.872000pt;}
.yc{bottom:481.100933pt;}
.y2d{bottom:481.740133pt;}
.ybc{bottom:482.273733pt;}
.y299{bottom:482.332933pt;}
.y2c1{bottom:482.527467pt;}
.y1ac{bottom:482.654933pt;}
.y154{bottom:482.810133pt;}
.yff{bottom:484.835867pt;}
.y16f{bottom:484.836267pt;}
.y1c6{bottom:485.628400pt;}
.y117{bottom:485.755333pt;}
.y75{bottom:485.755467pt;}
.y23f{bottom:486.151200pt;}
.y96{bottom:486.457467pt;}
.y134{bottom:486.498800pt;}
.y4e{bottom:487.437600pt;}
.y21f{bottom:487.973067pt;}
.y1fd{bottom:488.552000pt;}
.y259{bottom:489.950800pt;}
.y270{bottom:491.282667pt;}
.yb{bottom:494.583067pt;}
.ydf{bottom:495.572933pt;}
.y194{bottom:497.462667pt;}
.y2c{bottom:497.740133pt;}
.y298{bottom:498.468133pt;}
.y2c0{bottom:498.527467pt;}
.y1e3{bottom:498.578667pt;}
.ybb{bottom:499.797600pt;}
.y1ab{bottom:500.262667pt;}
.y153{bottom:500.409200pt;}
.yfe{bottom:502.322400pt;}
.y16e{bottom:502.322667pt;}
.y1c5{bottom:503.175733pt;}
.y74{bottom:503.190800pt;}
.y23e{bottom:503.626133pt;}
.y95{bottom:503.853867pt;}
.y133{bottom:503.997867pt;}
.y4d{bottom:504.770933pt;}
.y21e{bottom:505.306400pt;}
.y1fc{bottom:505.885333pt;}
.y26f{bottom:507.282667pt;}
.y258{bottom:507.284133pt;}
.yde{bottom:513.345333pt;}
.y297{bottom:514.468133pt;}
.y2bf{bottom:514.527467pt;}
.y193{bottom:515.235067pt;}
.y1e2{bottom:516.285333pt;}
.yba{bottom:517.321467pt;}
.y1aa{bottom:517.870133pt;}
.y152{bottom:518.008133pt;}
.yfd{bottom:519.808800pt;}
.y16d{bottom:519.809067pt;}
.y116{bottom:520.626133pt;}
.y73{bottom:520.626267pt;}
.y1c4{bottom:520.723200pt;}
.y23d{bottom:521.101067pt;}
.y94{bottom:521.250267pt;}
.y132{bottom:521.496933pt;}
.y4c{bottom:522.104267pt;}
.y1fb{bottom:523.218667pt;}
.y26e{bottom:523.282667pt;}
.y21d{bottom:524.148667pt;}
.y257{bottom:524.617467pt;}
.y296{bottom:530.468133pt;}
.y2be{bottom:530.654267pt;}
.ydd{bottom:531.117600pt;}
.y2b{bottom:531.744000pt;}
.y192{bottom:533.007467pt;}
.y1e1{bottom:533.992000pt;}
.yb9{bottom:534.845200pt;}
.y1a9{bottom:535.477867pt;}
.y151{bottom:535.607200pt;}
.yfc{bottom:537.295200pt;}
.y16c{bottom:537.295600pt;}
.y115{bottom:538.061467pt;}
.y72{bottom:538.061600pt;}
.y1c3{bottom:538.270533pt;}
.y23c{bottom:538.576133pt;}
.y93{bottom:538.646533pt;}
.y131{bottom:538.996000pt;}
.y4b{bottom:539.437600pt;}
.y1fa{bottom:540.552000pt;}
.y21c{bottom:541.482000pt;}
.y256{bottom:541.950800pt;}
.y295{bottom:546.603467pt;}
.y2bd{bottom:546.654267pt;}
.ydc{bottom:550.779733pt;}
.y1e0{bottom:551.698667pt;}
.yb8{bottom:552.369067pt;}
.y1a8{bottom:553.085467pt;}
.y150{bottom:553.206133pt;}
.yfb{bottom:554.781733pt;}
.y16b{bottom:554.782000pt;}
.y71{bottom:555.496933pt;}
.y1c2{bottom:555.818000pt;}
.y92{bottom:556.042933pt;}
.y23b{bottom:556.051067pt;}
.y130{bottom:556.495067pt;}
.y4a{bottom:556.770933pt;}
.y26d{bottom:557.715600pt;}
.y1f9{bottom:557.885333pt;}
.y21b{bottom:558.815333pt;}
.y255{bottom:559.284133pt;}
.y294{bottom:562.603467pt;}
.y2bc{bottom:562.654267pt;}
.ydb{bottom:568.552000pt;}
.y1df{bottom:569.405333pt;}
.yb7{bottom:569.892800pt;}
.y1a7{bottom:570.693067pt;}
.y14f{bottom:570.805200pt;}
.yfa{bottom:572.268133pt;}
.y16a{bottom:572.268533pt;}
.y70{bottom:572.932267pt;}
.y1c1{bottom:573.365467pt;}
.y91{bottom:573.439333pt;}
.y23a{bottom:573.526000pt;}
.y12f{bottom:573.994133pt;}
.y49{bottom:574.104267pt;}
.y1f8{bottom:575.218667pt;}
.y21a{bottom:576.148667pt;}
.y254{bottom:576.617467pt;}
.ya{bottom:577.398667pt;}
.y2a{bottom:578.094400pt;}
.y293{bottom:578.738800pt;}
.y2bb{bottom:578.781067pt;}
.yda{bottom:586.324400pt;}
.yb6{bottom:587.416667pt;}
.y1a6{bottom:588.300667pt;}
.y14e{bottom:588.404133pt;}
.y1de{bottom:589.001733pt;}
.yf9{bottom:589.754667pt;}
.y169{bottom:589.754933pt;}
.y6f{bottom:590.367733pt;}
.y90{bottom:590.835733pt;}
.y1c0{bottom:590.912933pt;}
.y239{bottom:591.000933pt;}
.y12e{bottom:591.493200pt;}
.y219{bottom:593.482000pt;}
.y253{bottom:593.950800pt;}
.y292{bottom:594.738800pt;}
.y2ba{bottom:594.781067pt;}
.y9{bottom:594.880933pt;}
.yd9{bottom:604.096667pt;}
.y1a5{bottom:605.908267pt;}
.y14d{bottom:606.003200pt;}
.y1dd{bottom:606.708533pt;}
.yb5{bottom:606.830267pt;}
.yf8{bottom:607.241067pt;}
.y168{bottom:607.241333pt;}
.y6e{bottom:607.803067pt;}
.y8f{bottom:608.232133pt;}
.y1bf{bottom:608.460267pt;}
.y238{bottom:608.475867pt;}
.y12d{bottom:608.992267pt;}
.y48{bottom:609.919467pt;}
.y1f7{bottom:610.350400pt;}
.y291{bottom:610.738800pt;}
.y2b9{bottom:610.781067pt;}
.y218{bottom:610.815333pt;}
.y252{bottom:611.284133pt;}
.y29{bottom:612.098267pt;}
.y8{bottom:612.363200pt;}
.yd8{bottom:621.868933pt;}
.y1a4{bottom:623.516000pt;}
.y14c{bottom:623.602133pt;}
.yb4{bottom:624.354133pt;}
.y1dc{bottom:624.415200pt;}
.yf7{bottom:624.727600pt;}
.y167{bottom:624.727733pt;}
.y114{bottom:625.238400pt;}
.y237{bottom:625.950800pt;}
.y1be{bottom:626.007733pt;}
.y12c{bottom:626.491333pt;}
.y290{bottom:626.874133pt;}
.y2b8{bottom:626.907867pt;}
.y6d{bottom:627.128267pt;}
.y8e{bottom:627.518267pt;}
.y1f6{bottom:627.683733pt;}
.y217{bottom:628.148667pt;}
.y251{bottom:628.617467pt;}
.yd7{bottom:639.641333pt;}
.y1a3{bottom:641.123600pt;}
.y14b{bottom:641.201200pt;}
.yb3{bottom:641.877867pt;}
.y1db{bottom:642.121867pt;}
.yf6{bottom:642.214000pt;}
.y166{bottom:642.214133pt;}
.y113{bottom:642.673733pt;}
.y28f{bottom:642.874133pt;}
.y2b7{bottom:642.907867pt;}
.y236{bottom:643.425867pt;}
.y1bd{bottom:643.555200pt;}
.y12b{bottom:643.990400pt;}
.y6c{bottom:644.563600pt;}
.y8d{bottom:644.914533pt;}
.y1f5{bottom:645.016933pt;}
.y216{bottom:645.482000pt;}
.yd6{bottom:657.413600pt;}
.y28{bottom:658.448667pt;}
.y1a2{bottom:658.731200pt;}
.y28e{bottom:658.874133pt;}
.y2b6{bottom:659.034800pt;}
.yb2{bottom:659.401733pt;}
.yf5{bottom:659.700533pt;}
.y165{bottom:659.700667pt;}
.y1da{bottom:659.828533pt;}
.y112{bottom:660.109200pt;}
.y14a{bottom:660.690000pt;}
.y235{bottom:660.900800pt;}
.y1bc{bottom:661.102533pt;}
.y12a{bottom:661.489467pt;}
.y188{bottom:661.590400pt;}
.y6b{bottom:661.998933pt;}
.y8c{bottom:662.310933pt;}
.y1f4{bottom:662.350267pt;}
.y215{bottom:662.815333pt;}
.y250{bottom:663.782000pt;}
.y7{bottom:667.405067pt;}
.y27{bottom:674.448667pt;}
.y28d{bottom:675.009333pt;}
.y2b5{bottom:675.034800pt;}
.yd5{bottom:675.186000pt;}
.y1a1{bottom:676.338800pt;}
.yb1{bottom:676.925467pt;}
.yf4{bottom:677.186933pt;}
.y164{bottom:677.187067pt;}
.y1d9{bottom:677.535200pt;}
.y111{bottom:677.544533pt;}
.y149{bottom:678.288933pt;}
.y234{bottom:678.375733pt;}
.y1bb{bottom:678.650000pt;}
.y129{bottom:678.988533pt;}
.y187{bottom:679.076800pt;}
.y6a{bottom:679.434267pt;}
.y1f3{bottom:679.683600pt;}
.y8b{bottom:679.707333pt;}
.y214{bottom:680.148667pt;}
.y24f{bottom:681.115333pt;}
.y6{bottom:687.554000pt;}
.y26{bottom:690.448533pt;}
.y2b4{bottom:691.034800pt;}
.y28c{bottom:691.144667pt;}
.yd4{bottom:692.958267pt;}
.yb0{bottom:694.449333pt;}
.yf3{bottom:694.673467pt;}
.y110{bottom:694.979867pt;}
.y1d8{bottom:695.241867pt;}
.y1a0{bottom:695.836133pt;}
.y233{bottom:695.850800pt;}
.y148{bottom:695.888000pt;}
.y1ba{bottom:696.197467pt;}
.y128{bottom:696.487600pt;}
.y186{bottom:696.563333pt;}
.y69{bottom:696.869733pt;}
.y1f2{bottom:697.017067pt;}
.y8a{bottom:697.103733pt;}
.y213{bottom:697.482000pt;}
.y47{bottom:697.734667pt;}
.y24e{bottom:698.448533pt;}
.y25{bottom:706.448533pt;}
.y2b3{bottom:707.034800pt;}
.y28b{bottom:707.144667pt;}
.y5{bottom:707.702933pt;}
.yd3{bottom:710.730533pt;}
.yaf{bottom:711.973200pt;}
.yf2{bottom:712.159867pt;}
.y163{bottom:712.160000pt;}
.y10f{bottom:712.415333pt;}
.y191{bottom:712.620400pt;}
.y1d7{bottom:712.948533pt;}
.y232{bottom:713.325733pt;}
.y19f{bottom:713.443867pt;}
.y147{bottom:713.486933pt;}
.y1b9{bottom:713.744800pt;}
.y127{bottom:713.986667pt;}
.y185{bottom:714.049733pt;}
.y68{bottom:714.305067pt;}
.y1f1{bottom:714.350400pt;}
.y89{bottom:714.500133pt;}
.y212{bottom:714.815333pt;}
.y46{bottom:715.068000pt;}
.y24d{bottom:715.781867pt;}
.y24{bottom:722.448533pt;}
.y28a{bottom:723.144667pt;}
.y2b2{bottom:723.161600pt;}
.y2d9{bottom:723.415333pt;}
.yae{bottom:729.496933pt;}
.yf1{bottom:729.646267pt;}
.y162{bottom:729.646400pt;}
.yd2{bottom:730.392667pt;}
.y1d6{bottom:730.655200pt;}
.y231{bottom:730.800667pt;}
.y19e{bottom:731.051467pt;}
.y146{bottom:731.086000pt;}
.y1b8{bottom:731.292267pt;}
.y126{bottom:731.485733pt;}
.y184{bottom:731.536267pt;}
.y1f0{bottom:731.683733pt;}
.y10e{bottom:731.740400pt;}
.y67{bottom:731.740533pt;}
.y88{bottom:731.896533pt;}
.y211{bottom:732.148667pt;}
.y45{bottom:732.401333pt;}
.y24c{bottom:733.115200pt;}
.y4{bottom:737.851867pt;}
.y23{bottom:738.448533pt;}
.y2b1{bottom:739.161600pt;}
.y289{bottom:739.280000pt;}
.y2d8{bottom:739.415333pt;}
.yad{bottom:747.020800pt;}
.yd1{bottom:748.164933pt;}
.y1d5{bottom:748.361867pt;}
.y19d{bottom:748.659067pt;}
.y145{bottom:748.684933pt;}
.y1b7{bottom:748.839733pt;}
.y125{bottom:748.984800pt;}
.yf0{bottom:749.022533pt;}
.y161{bottom:749.022667pt;}
.y10d{bottom:749.175733pt;}
.y66{bottom:749.175867pt;}
.y87{bottom:749.292800pt;}
.y210{bottom:749.482000pt;}
.y44{bottom:749.734667pt;}
.y24b{bottom:750.448533pt;}
.y22{bottom:754.448533pt;}
.y288{bottom:755.280000pt;}
.y2b0{bottom:755.288400pt;}
.y2d7{bottom:755.415333pt;}
.y3{bottom:758.000667pt;}
.yac{bottom:764.544533pt;}
.yd0{bottom:765.937333pt;}
.y1d4{bottom:766.068667pt;}
.y19c{bottom:766.266667pt;}
.y144{bottom:766.284000pt;}
.y1b6{bottom:766.387067pt;}
.y124{bottom:766.483867pt;}
.yef{bottom:766.509067pt;}
.y65{bottom:766.611200pt;}
.y86{bottom:766.689200pt;}
.y1ef{bottom:766.815333pt;}
.y43{bottom:767.068000pt;}
.y230{bottom:767.498667pt;}
.y24a{bottom:767.781867pt;}
.y21{bottom:770.448533pt;}
.y2af{bottom:771.288400pt;}
.y287{bottom:771.415333pt;}
.y2{bottom:778.149600pt;}
.ycf{bottom:783.709600pt;}
.y1d3{bottom:783.775200pt;}
.y19b{bottom:783.874400pt;}
.y143{bottom:783.882933pt;}
.y1b5{bottom:783.934533pt;}
.yab{bottom:783.958133pt;}
.y123{bottom:783.982933pt;}
.yee{bottom:783.995467pt;}
.y64{bottom:784.046533pt;}
.y85{bottom:784.085600pt;}
.y1ee{bottom:784.148667pt;}
.y22f{bottom:784.973600pt;}
.y249{bottom:785.115200pt;}
.y20{bottom:786.448533pt;}
.y286{bottom:787.415333pt;}
.y1{bottom:798.298533pt;}
.y63{bottom:801.482000pt;}
.y1f{bottom:802.448533pt;}
.y42{bottom:802.883200pt;}
.y285{bottom:803.415333pt;}
.y1d{bottom:840.340533pt;}
.y41{bottom:841.693867pt;}
.hb{height:23.776000pt;}
.h11{height:27.733333pt;}
.h7{height:31.445333pt;}
.h5{height:31.530667pt;}
.h6{height:31.701333pt;}
.h8{height:37.442667pt;}
.hc{height:41.664000pt;}
.h14{height:43.218667pt;}
.he{height:44.637333pt;}
.hd{height:44.688000pt;}
.h12{height:45.493333pt;}
.h4{height:47.760000pt;}
.h9{height:47.768000pt;}
.ha{height:48.145067pt;}
.h13{height:50.413333pt;}
.h10{height:52.317333pt;}
.hf{height:55.720000pt;}
.h3{height:61.026667pt;}
.h2{height:68.986667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:94.488267pt;}
.x2{left:102.422800pt;}
.x11{left:106.118667pt;}
.x5{left:109.279333pt;}
.x14{left:113.385867pt;}
.x13{left:124.724533pt;}
.x6{left:135.204533pt;}
.x3{left:142.266400pt;}
.x1{left:148.356400pt;}
.x7{left:196.342267pt;}
.x4{left:216.269333pt;}
.x8{left:236.447867pt;}
.xd{left:237.785733pt;}
.xe{left:255.085867pt;}
.x9{left:258.301200pt;}
.xa{left:269.427600pt;}
.x10{left:376.957467pt;}
.xf{left:417.127067pt;}
.xc{left:433.957200pt;}
.xb{left:460.163067pt;}
}




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