
    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_b753c8c2e54851f1909be303.woff')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_cb770d608fa140587140c3d5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_39af5c874fe284fb16903b98.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_ccae0ece4cefa9188ea97941.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_f3e35cf587fdb2a179f20676.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_0280233d21c08e6d806629a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_e93e3eac86fc872fb4e56cc3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_117ba2c0a364395a43a7ae43.woff')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_5c081fca67122f4d16caf1c5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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:-19.800000px;}
.v4{vertical-align:-15.817800px;}
.v6{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v7{vertical-align:17.819400px;}
.v3{vertical-align:19.800000px;}
.v1{vertical-align:21.780600px;}
.ls82{letter-spacing:-1.606800px;}
.ls61{letter-spacing:-1.409040px;}
.ls64{letter-spacing:-1.211280px;}
.lsb7{letter-spacing:-1.139400px;}
.ls72{letter-spacing:-1.124760px;}
.lsc1{letter-spacing:-1.063800px;}
.lsc2{letter-spacing:-1.042200px;}
.lsc3{letter-spacing:-1.036800px;}
.ls62{letter-spacing:-0.927000px;}
.ls79{letter-spacing:-0.889920px;}
.ls63{letter-spacing:-0.871380px;}
.ls71{letter-spacing:-0.865200px;}
.ls7a{letter-spacing:-0.852840px;}
.ls29{letter-spacing:-0.846660px;}
.ls66{letter-spacing:-0.840480px;}
.lsb6{letter-spacing:-0.837000px;}
.ls96{letter-spacing:-0.828120px;}
.lsb8{letter-spacing:-0.810000px;}
.lsa1{letter-spacing:-0.788400px;}
.ls73{letter-spacing:-0.753960px;}
.ls74{letter-spacing:-0.741600px;}
.ls83{letter-spacing:-0.723060px;}
.ls51{letter-spacing:-0.716880px;}
.lsc7{letter-spacing:-0.685800px;}
.ls70{letter-spacing:-0.661260px;}
.ls65{letter-spacing:-0.657600px;}
.ls1d{letter-spacing:-0.618000px;}
.lsd5{letter-spacing:-0.615600px;}
.ls1f{letter-spacing:-0.605640px;}
.ls47{letter-spacing:-0.599460px;}
.lsa3{letter-spacing:-0.594000px;}
.ls38{letter-spacing:-0.593280px;}
.ls7e{letter-spacing:-0.587100px;}
.ls52{letter-spacing:-0.580920px;}
.lscd{letter-spacing:-0.572400px;}
.ls81{letter-spacing:-0.562380px;}
.ls54{letter-spacing:-0.556200px;}
.lsb5{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.537660px;}
.ls2e{letter-spacing:-0.531480px;}
.lsb9{letter-spacing:-0.529200px;}
.lsd0{letter-spacing:-0.523800px;}
.ls3d{letter-spacing:-0.500580px;}
.ls11{letter-spacing:-0.494400px;}
.ls36{letter-spacing:-0.482040px;}
.ls57{letter-spacing:-0.475860px;}
.lsc6{letter-spacing:-0.475200px;}
.lsad{letter-spacing:-0.464400px;}
.ls17{letter-spacing:-0.463500px;}
.lsd4{letter-spacing:-0.459000px;}
.ls8a{letter-spacing:-0.457320px;}
.ls16{letter-spacing:-0.451140px;}
.ls2d{letter-spacing:-0.444960px;}
.lsb0{letter-spacing:-0.437400px;}
.ls56{letter-spacing:-0.432600px;}
.ls1b{letter-spacing:-0.426420px;}
.ls90{letter-spacing:-0.420240px;}
.ls3c{letter-spacing:-0.414060px;}
.lsf{letter-spacing:-0.407880px;}
.ls87{letter-spacing:-0.401700px;}
.lsbd{letter-spacing:-0.394200px;}
.ls6d{letter-spacing:-0.383160px;}
.ls9e{letter-spacing:-0.367200px;}
.ls91{letter-spacing:-0.364620px;}
.ls3e{letter-spacing:-0.346080px;}
.lsd{letter-spacing:-0.334800px;}
.ls89{letter-spacing:-0.333720px;}
.lsae{letter-spacing:-0.324000px;}
.lsbe{letter-spacing:-0.318600px;}
.ls44{letter-spacing:-0.315180px;}
.lsa0{letter-spacing:-0.313200px;}
.ls50{letter-spacing:-0.309000px;}
.ls6e{letter-spacing:-0.302820px;}
.ls77{letter-spacing:-0.296640px;}
.lsa7{letter-spacing:-0.280800px;}
.ls7f{letter-spacing:-0.278100px;}
.lsa2{letter-spacing:-0.270000px;}
.ls45{letter-spacing:-0.265740px;}
.lsaf{letter-spacing:-0.264600px;}
.ls8b{letter-spacing:-0.259560px;}
.lsc8{letter-spacing:-0.259200px;}
.lsb4{letter-spacing:-0.253800px;}
.lsc9{letter-spacing:-0.248400px;}
.ls93{letter-spacing:-0.247200px;}
.ls3b{letter-spacing:-0.241020px;}
.ls95{letter-spacing:-0.234840px;}
.lscf{letter-spacing:-0.232200px;}
.ls78{letter-spacing:-0.228660px;}
.lsba{letter-spacing:-0.226800px;}
.ls7c{letter-spacing:-0.222480px;}
.ls2c{letter-spacing:-0.216300px;}
.lsbb{letter-spacing:-0.210600px;}
.ls7b{letter-spacing:-0.210120px;}
.lsc4{letter-spacing:-0.205200px;}
.ls18{letter-spacing:-0.203940px;}
.ls4e{letter-spacing:-0.197760px;}
.lsd1{letter-spacing:-0.194400px;}
.ls48{letter-spacing:-0.185400px;}
.ls86{letter-spacing:-0.179220px;}
.ls80{letter-spacing:-0.173040px;}
.ls75{letter-spacing:-0.166860px;}
.lsb{letter-spacing:-0.165600px;}
.lsa{letter-spacing:-0.162000px;}
.lsa4{letter-spacing:-0.156600px;}
.lsa5{letter-spacing:-0.151200px;}
.lsc{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.142140px;}
.lse{letter-spacing:-0.135000px;}
.lsd6{letter-spacing:-0.118800px;}
.ls6f{letter-spacing:-0.117420px;}
.ls46{letter-spacing:-0.111240px;}
.ls3a{letter-spacing:-0.105060px;}
.ls8d{letter-spacing:-0.098880px;}
.ls2f{letter-spacing:-0.092700px;}
.lsc5{letter-spacing:-0.091800px;}
.ls53{letter-spacing:-0.080340px;}
.lsbc{letter-spacing:-0.075600px;}
.ls2b{letter-spacing:-0.067980px;}
.ls19{letter-spacing:-0.061800px;}
.ls99{letter-spacing:-0.059400px;}
.ls1e{letter-spacing:-0.055620px;}
.ls15{letter-spacing:-0.049440px;}
.ls2a{letter-spacing:-0.037080px;}
.ls8e{letter-spacing:-0.030900px;}
.ls1c{letter-spacing:-0.024720px;}
.ls1a{letter-spacing:-0.018540px;}
.lsbf{letter-spacing:-0.016200px;}
.lsd2{letter-spacing:-0.010800px;}
.ls60{letter-spacing:-0.006180px;}
.ls9{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000600px;}
.ls5c{letter-spacing:0.001200px;}
.ls67{letter-spacing:0.003600px;}
.ls68{letter-spacing:0.004440px;}
.ls2{letter-spacing:0.005400px;}
.ls5b{letter-spacing:0.007200px;}
.ls5a{letter-spacing:0.010800px;}
.ls35{letter-spacing:0.012360px;}
.ls4{letter-spacing:0.016200px;}
.lsa9{letter-spacing:0.021600px;}
.ls97{letter-spacing:0.032400px;}
.lsaa{letter-spacing:0.037800px;}
.ls94{letter-spacing:0.043260px;}
.lsb1{letter-spacing:0.048600px;}
.ls34{letter-spacing:0.049440px;}
.ls5{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.055620px;}
.ls31{letter-spacing:0.061800px;}
.ls88{letter-spacing:0.067980px;}
.ls7d{letter-spacing:0.080340px;}
.ls98{letter-spacing:0.092700px;}
.lscb{letter-spacing:0.097200px;}
.ls0{letter-spacing:0.105000px;}
.ls26{letter-spacing:0.111240px;}
.ls37{letter-spacing:0.123600px;}
.ls55{letter-spacing:0.135960px;}
.ls22{letter-spacing:0.142140px;}
.ls23{letter-spacing:0.148320px;}
.ls6{letter-spacing:0.154500px;}
.lsdb{letter-spacing:0.156600px;}
.ls4b{letter-spacing:0.160680px;}
.ls24{letter-spacing:0.166860px;}
.ls9d{letter-spacing:0.172800px;}
.ls3f{letter-spacing:0.173040px;}
.lsa6{letter-spacing:0.174960px;}
.ls9c{letter-spacing:0.178200px;}
.lsac{letter-spacing:0.183600px;}
.ls40{letter-spacing:0.185400px;}
.lsda{letter-spacing:0.189000px;}
.ls4c{letter-spacing:0.203940px;}
.ls9f{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.222480px;}
.ls92{letter-spacing:0.234840px;}
.ls9b{letter-spacing:0.237600px;}
.ls27{letter-spacing:0.247200px;}
.ls14{letter-spacing:0.253380px;}
.ls9a{letter-spacing:0.264600px;}
.lsab{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.271920px;}
.ls32{letter-spacing:0.296640px;}
.lsc0{letter-spacing:0.302400px;}
.ls21{letter-spacing:0.309000px;}
.lsd9{letter-spacing:0.318600px;}
.ls13{letter-spacing:0.321360px;}
.ls25{letter-spacing:0.358440px;}
.ls8c{letter-spacing:0.364620px;}
.ls59{letter-spacing:0.370800px;}
.lsb2{letter-spacing:0.378000px;}
.ls76{letter-spacing:0.383160px;}
.ls33{letter-spacing:0.414060px;}
.lsa8{letter-spacing:0.415800px;}
.ls41{letter-spacing:0.420240px;}
.lsd3{letter-spacing:0.432000px;}
.lsb3{letter-spacing:0.437400px;}
.lsca{letter-spacing:0.448200px;}
.ls42{letter-spacing:0.451140px;}
.ls43{letter-spacing:0.469680px;}
.ls7{letter-spacing:0.488220px;}
.ls4a{letter-spacing:0.494400px;}
.lscc{letter-spacing:0.502200px;}
.ls8f{letter-spacing:0.531480px;}
.ls4d{letter-spacing:0.537660px;}
.ls3{letter-spacing:0.540000px;}
.lsce{letter-spacing:0.541080px;}
.lsd8{letter-spacing:0.546000px;}
.ls84{letter-spacing:0.550020px;}
.ls85{letter-spacing:0.562380px;}
.ls28{letter-spacing:0.593280px;}
.ls58{letter-spacing:0.599460px;}
.ls20{letter-spacing:0.605640px;}
.ls12{letter-spacing:0.611820px;}
.ls8{letter-spacing:0.618000px;}
.ls5f{letter-spacing:0.630360px;}
.ls5d{letter-spacing:1.134000px;}
.ls6b{letter-spacing:7.901400px;}
.ls69{letter-spacing:7.902000px;}
.ls6a{letter-spacing:8.792400px;}
.lsd7{letter-spacing:10.185000px;}
.ls6c{letter-spacing:10.886400px;}
.ls1{letter-spacing:12.585000px;}
.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;}
}
.wsb6{word-spacing:-61.800000px;}
.ws19c{word-spacing:-54.000000px;}
.ws125{word-spacing:-48.000000px;}
.wsb5{word-spacing:-16.068000px;}
.wsff{word-spacing:-15.623040px;}
.ws2{word-spacing:-15.604500px;}
.ws6e{word-spacing:-15.505620px;}
.ws96{word-spacing:-15.450000px;}
.wsb7{word-spacing:-14.733120px;}
.ws19d{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.500000px;}
.ws19e{word-spacing:-12.711600px;}
.wsdc{word-spacing:-12.000000px;}
.wsdb{word-spacing:-11.342400px;}
.wsde{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.900000px;}
.wsf4{word-spacing:-9.270000px;}
.ws1{word-spacing:-8.834400px;}
.ws20b{word-spacing:-8.641080px;}
.ws19f{word-spacing:-8.274960px;}
.ws1bc{word-spacing:-8.100000px;}
.wsf6{word-spacing:-7.200000px;}
.ws1f8{word-spacing:-4.773600px;}
.ws1a7{word-spacing:-2.980800px;}
.ws1fa{word-spacing:-2.500200px;}
.ws34{word-spacing:-2.317500px;}
.wsdf{word-spacing:-2.311320px;}
.ws2f{word-spacing:-2.298960px;}
.ws37{word-spacing:-2.292780px;}
.ws15b{word-spacing:-2.286600px;}
.ws50{word-spacing:-2.280420px;}
.ws108{word-spacing:-2.274240px;}
.ws23{word-spacing:-2.268060px;}
.ws40{word-spacing:-2.261880px;}
.ws2b{word-spacing:-2.255700px;}
.ws53{word-spacing:-2.249520px;}
.wsee{word-spacing:-2.237160px;}
.ws6c{word-spacing:-2.224800px;}
.ws8f{word-spacing:-2.218620px;}
.ws85{word-spacing:-2.212440px;}
.ws3e{word-spacing:-2.206260px;}
.ws106{word-spacing:-2.200080px;}
.ws10f{word-spacing:-2.193900px;}
.ws10e{word-spacing:-2.181540px;}
.ws80{word-spacing:-2.175360px;}
.ws111{word-spacing:-2.150640px;}
.ws141{word-spacing:-2.138280px;}
.wsae{word-spacing:-2.132100px;}
.ws171{word-spacing:-2.125920px;}
.ws2a{word-spacing:-2.113560px;}
.ws7{word-spacing:-2.106000px;}
.ws58{word-spacing:-2.101200px;}
.wseb{word-spacing:-2.095020px;}
.wsea{word-spacing:-2.088840px;}
.ws6{word-spacing:-2.088000px;}
.ws13b{word-spacing:-2.082660px;}
.ws88{word-spacing:-2.076480px;}
.ws10b{word-spacing:-2.070300px;}
.ws10a{word-spacing:-2.064120px;}
.ws156{word-spacing:-2.057940px;}
.ws77{word-spacing:-2.051760px;}
.wsca{word-spacing:-2.045580px;}
.ws12f{word-spacing:-2.039400px;}
.wse8{word-spacing:-2.033220px;}
.ws155{word-spacing:-2.020860px;}
.ws104{word-spacing:-2.014680px;}
.ws1ee{word-spacing:-2.008800px;}
.ws97{word-spacing:-2.002320px;}
.ws20f{word-spacing:-1.992600px;}
.ws73{word-spacing:-1.989960px;}
.ws14c{word-spacing:-1.983780px;}
.ws92{word-spacing:-1.971420px;}
.ws198{word-spacing:-1.965600px;}
.ws133{word-spacing:-1.965240px;}
.ws165{word-spacing:-1.952880px;}
.ws1e5{word-spacing:-1.949400px;}
.ws136{word-spacing:-1.946700px;}
.ws182{word-spacing:-1.940520px;}
.ws103{word-spacing:-1.934340px;}
.ws200{word-spacing:-1.933200px;}
.ws135{word-spacing:-1.928160px;}
.ws1e{word-spacing:-1.915800px;}
.ws1de{word-spacing:-1.911600px;}
.ws17{word-spacing:-1.909620px;}
.ws226{word-spacing:-1.906200px;}
.ws90{word-spacing:-1.903440px;}
.ws2e{word-spacing:-1.897260px;}
.wsdd{word-spacing:-1.893000px;}
.ws31{word-spacing:-1.891080px;}
.ws15{word-spacing:-1.890000px;}
.wsd0{word-spacing:-1.884900px;}
.ws5c{word-spacing:-1.872540px;}
.ws1b2{word-spacing:-1.868400px;}
.ws24{word-spacing:-1.866360px;}
.ws14f{word-spacing:-1.860180px;}
.ws29{word-spacing:-1.854000px;}
.wsd4{word-spacing:-1.841640px;}
.ws7a{word-spacing:-1.835460px;}
.ws21d{word-spacing:-1.830600px;}
.wsaf{word-spacing:-1.829280px;}
.ws20{word-spacing:-1.823100px;}
.ws1fe{word-spacing:-1.819800px;}
.ws91{word-spacing:-1.816920px;}
.ws1d4{word-spacing:-1.814400px;}
.ws10d{word-spacing:-1.810740px;}
.wsf1{word-spacing:-1.804560px;}
.ws186{word-spacing:-1.798380px;}
.ws1e1{word-spacing:-1.798200px;}
.ws1f9{word-spacing:-1.792800px;}
.ws63{word-spacing:-1.786020px;}
.ws1d{word-spacing:-1.779840px;}
.ws1f3{word-spacing:-1.776600px;}
.ws1ac{word-spacing:-1.771200px;}
.wsce{word-spacing:-1.761300px;}
.ws1c4{word-spacing:-1.760400px;}
.ws1d3{word-spacing:-1.755000px;}
.ws11{word-spacing:-1.744200px;}
.ws12d{word-spacing:-1.730400px;}
.ws1d5{word-spacing:-1.728000px;}
.ws7d{word-spacing:-1.724220px;}
.wsa{word-spacing:-1.722600px;}
.wsad{word-spacing:-1.718040px;}
.ws49{word-spacing:-1.711860px;}
.ws1aa{word-spacing:-1.711800px;}
.ws1eb{word-spacing:-1.706400px;}
.ws1ae{word-spacing:-1.701000px;}
.ws3b{word-spacing:-1.699500px;}
.ws1db{word-spacing:-1.695600px;}
.wsc{word-spacing:-1.690200px;}
.ws21a{word-spacing:-1.684800px;}
.ws225{word-spacing:-1.679400px;}
.ws1a0{word-spacing:-1.657800px;}
.ws18c{word-spacing:-1.650060px;}
.ws61{word-spacing:-1.637700px;}
.ws195{word-spacing:-1.631520px;}
.ws1e6{word-spacing:-1.630800px;}
.ws206{word-spacing:-1.609200px;}
.ws192{word-spacing:-1.600620px;}
.ws1c5{word-spacing:-1.587600px;}
.ws1bd{word-spacing:-1.560600px;}
.ws175{word-spacing:-1.557360px;}
.ws202{word-spacing:-1.549800px;}
.ws11d{word-spacing:-1.545000px;}
.ws1cc{word-spacing:-1.506600px;}
.wsb2{word-spacing:-1.501740px;}
.ws21b{word-spacing:-1.501200px;}
.ws1dd{word-spacing:-1.495800px;}
.ws26{word-spacing:-1.489380px;}
.ws18a{word-spacing:-1.458480px;}
.ws169{word-spacing:-1.452300px;}
.ws230{word-spacing:-1.447200px;}
.ws5d{word-spacing:-1.421400px;}
.ws57{word-spacing:-1.402860px;}
.ws4a{word-spacing:-1.390500px;}
.ws1f4{word-spacing:-1.382400px;}
.ws12b{word-spacing:-1.365780px;}
.ws48{word-spacing:-1.359600px;}
.ws51{word-spacing:-1.353420px;}
.ws16f{word-spacing:-1.328700px;}
.ws12{word-spacing:-1.285200px;}
.ws25{word-spacing:-1.279260px;}
.ws201{word-spacing:-1.258200px;}
.ws1a8{word-spacing:-1.231200px;}
.ws1b7{word-spacing:-1.220400px;}
.ws220{word-spacing:-1.215000px;}
.ws72{word-spacing:-1.198920px;}
.ws7b{word-spacing:-1.124760px;}
.ws128{word-spacing:-1.032060px;}
.ws1b0{word-spacing:-1.031400px;}
.ws5e{word-spacing:-0.982620px;}
.ws170{word-spacing:-0.970260px;}
.ws227{word-spacing:-0.950400px;}
.ws215{word-spacing:-0.945000px;}
.ws43{word-spacing:-0.865200px;}
.ws22c{word-spacing:-0.864000px;}
.wsa0{word-spacing:-0.859020px;}
.ws1c6{word-spacing:-0.858600px;}
.ws1c7{word-spacing:-0.853200px;}
.ws20d{word-spacing:-0.847800px;}
.ws207{word-spacing:-0.831600px;}
.wsd5{word-spacing:-0.821940px;}
.ws164{word-spacing:-0.815760px;}
.ws23d{word-spacing:-0.815400px;}
.ws1b1{word-spacing:-0.799200px;}
.ws151{word-spacing:-0.797220px;}
.ws1c3{word-spacing:-0.793800px;}
.ws105{word-spacing:-0.778680px;}
.wse0{word-spacing:-0.735420px;}
.ws1d7{word-spacing:-0.712800px;}
.ws1d1{word-spacing:-0.685800px;}
.ws27{word-spacing:-0.673620px;}
.ws130{word-spacing:-0.611820px;}
.ws1cb{word-spacing:-0.610200px;}
.ws17e{word-spacing:-0.605640px;}
.wsa6{word-spacing:-0.599460px;}
.ws52{word-spacing:-0.587100px;}
.ws7f{word-spacing:-0.580920px;}
.wsbf{word-spacing:-0.568560px;}
.ws1a1{word-spacing:-0.567000px;}
.wsc9{word-spacing:-0.562380px;}
.wsc6{word-spacing:-0.556200px;}
.ws8d{word-spacing:-0.550020px;}
.ws1ff{word-spacing:-0.523800px;}
.ws173{word-spacing:-0.519120px;}
.ws20a{word-spacing:-0.480600px;}
.ws13d{word-spacing:-0.457320px;}
.ws11e{word-spacing:-0.444960px;}
.ws1ed{word-spacing:-0.432000px;}
.ws1af{word-spacing:-0.405000px;}
.ws237{word-spacing:-0.399600px;}
.wsfc{word-spacing:-0.321600px;}
.wsfb{word-spacing:-0.321000px;}
.ws22b{word-spacing:-0.307800px;}
.ws17b{word-spacing:-0.271920px;}
.ws221{word-spacing:-0.264600px;}
.ws14a{word-spacing:-0.259560px;}
.ws222{word-spacing:-0.253800px;}
.ws21e{word-spacing:-0.248400px;}
.wsbb{word-spacing:-0.234840px;}
.ws1b5{word-spacing:-0.199800px;}
.ws191{word-spacing:-0.123600px;}
.ws20c{word-spacing:-0.102600px;}
.ws185{word-spacing:-0.098880px;}
.ws131{word-spacing:-0.080340px;}
.ws1ef{word-spacing:-0.054000px;}
.ws101{word-spacing:-0.024720px;}
.ws4{word-spacing:0.000000px;}
.ws1f2{word-spacing:0.010800px;}
.ws75{word-spacing:0.024720px;}
.ws1a5{word-spacing:0.027000px;}
.wse5{word-spacing:0.043260px;}
.ws132{word-spacing:0.111240px;}
.ws118{word-spacing:0.117420px;}
.ws22f{word-spacing:0.129600px;}
.ws1ad{word-spacing:0.135000px;}
.ws115{word-spacing:0.135960px;}
.ws224{word-spacing:0.162000px;}
.ws4f{word-spacing:0.185400px;}
.ws11c{word-spacing:0.216300px;}
.ws233{word-spacing:0.221400px;}
.wsd1{word-spacing:0.222480px;}
.ws1e2{word-spacing:0.243000px;}
.wsfd{word-spacing:0.286800px;}
.ws6d{word-spacing:0.296640px;}
.ws1b8{word-spacing:0.302400px;}
.ws89{word-spacing:0.302820px;}
.ws204{word-spacing:0.307800px;}
.ws214{word-spacing:0.313200px;}
.wsc1{word-spacing:0.315180px;}
.ws1b{word-spacing:0.370800px;}
.ws1e3{word-spacing:0.378000px;}
.ws159{word-spacing:0.383160px;}
.ws211{word-spacing:0.399600px;}
.wsf{word-spacing:0.432000px;}
.ws23b{word-spacing:0.442800px;}
.ws1dc{word-spacing:0.464400px;}
.ws1fb{word-spacing:0.480600px;}
.wsc8{word-spacing:0.506760px;}
.ws71{word-spacing:0.550020px;}
.ws10{word-spacing:0.599400px;}
.ws5b{word-spacing:0.618000px;}
.wsc4{word-spacing:0.648900px;}
.ws94{word-spacing:0.685980px;}
.ws1d8{word-spacing:0.696600px;}
.wsfe{word-spacing:0.700800px;}
.wsf9{word-spacing:0.701400px;}
.wsf7{word-spacing:0.702000px;}
.ws30{word-spacing:0.766320px;}
.ws229{word-spacing:0.766800px;}
.ws39{word-spacing:0.772500px;}
.ws205{word-spacing:0.831600px;}
.ws1fd{word-spacing:0.837000px;}
.ws134{word-spacing:0.852840px;}
.ws35{word-spacing:0.902280px;}
.ws232{word-spacing:0.923400px;}
.ws1c{word-spacing:0.927000px;}
.ws1e7{word-spacing:0.939600px;}
.ws196{word-spacing:0.957900px;}
.ws153{word-spacing:0.964080px;}
.wsa8{word-spacing:0.970260px;}
.ws14b{word-spacing:1.001160px;}
.ws160{word-spacing:1.025880px;}
.ws150{word-spacing:1.038240px;}
.ws174{word-spacing:1.056780px;}
.ws238{word-spacing:1.058400px;}
.ws1f7{word-spacing:1.090800px;}
.ws3a{word-spacing:1.124760px;}
.ws1c8{word-spacing:1.193400px;}
.wsd3{word-spacing:1.205100px;}
.ws33{word-spacing:1.211280px;}
.wsec{word-spacing:1.229820px;}
.ws14{word-spacing:1.236600px;}
.wsbe{word-spacing:1.242180px;}
.ws1d6{word-spacing:1.247400px;}
.ws59{word-spacing:1.254540px;}
.ws119{word-spacing:1.273080px;}
.ws1ca{word-spacing:1.279800px;}
.ws9d{word-spacing:1.303980px;}
.ws11b{word-spacing:1.328700px;}
.ws100{word-spacing:1.334880px;}
.ws149{word-spacing:1.347240px;}
.wsf0{word-spacing:1.427580px;}
.wse{word-spacing:1.436400px;}
.ws83{word-spacing:1.439940px;}
.ws102{word-spacing:1.446120px;}
.ws197{word-spacing:1.517400px;}
.ws3c{word-spacing:1.532640px;}
.ws15a{word-spacing:1.538820px;}
.ws157{word-spacing:1.600620px;}
.ws21{word-spacing:1.603800px;}
.ws193{word-spacing:1.687140px;}
.wse2{word-spacing:1.693320px;}
.ws98{word-spacing:1.705680px;}
.ws1df{word-spacing:1.711800px;}
.ws23a{word-spacing:1.717200px;}
.ws16a{word-spacing:1.755120px;}
.ws1ab{word-spacing:1.760400px;}
.wsc5{word-spacing:1.761300px;}
.ws1a6{word-spacing:1.782000px;}
.ws166{word-spacing:1.854000px;}
.ws2c{word-spacing:1.878720px;}
.wsb0{word-spacing:1.891080px;}
.wsa3{word-spacing:1.921980px;}
.wscb{word-spacing:1.940520px;}
.ws13a{word-spacing:1.971420px;}
.ws11a{word-spacing:1.977600px;}
.wsd2{word-spacing:2.002320px;}
.ws1d9{word-spacing:2.041200px;}
.ws152{word-spacing:2.057940px;}
.wsa4{word-spacing:2.070300px;}
.ws1e4{word-spacing:2.089800px;}
.ws16e{word-spacing:2.125920px;}
.ws18d{word-spacing:2.169180px;}
.ws18b{word-spacing:2.175360px;}
.ws67{word-spacing:2.181540px;}
.ws84{word-spacing:2.230980px;}
.ws145{word-spacing:2.243340px;}
.ws81{word-spacing:2.286600px;}
.ws137{word-spacing:2.298960px;}
.wsf8{word-spacing:2.309400px;}
.wsf5{word-spacing:2.310000px;}
.ws1c0{word-spacing:2.327400px;}
.ws110{word-spacing:2.329860px;}
.ws66{word-spacing:2.348400px;}
.wsab{word-spacing:2.354580px;}
.ws15e{word-spacing:2.360760px;}
.ws93{word-spacing:2.404020px;}
.ws167{word-spacing:2.447280px;}
.ws23c{word-spacing:2.484000px;}
.ws41{word-spacing:2.484360px;}
.ws217{word-spacing:2.521800px;}
.ws86{word-spacing:2.552340px;}
.ws223{word-spacing:2.613600px;}
.ws234{word-spacing:2.624400px;}
.ws16c{word-spacing:2.651220px;}
.ws121{word-spacing:2.657400px;}
.ws1bb{word-spacing:2.678400px;}
.ws113{word-spacing:2.682120px;}
.ws22e{word-spacing:2.705400px;}
.ws142{word-spacing:2.725380px;}
.wsd8{word-spacing:2.731560px;}
.wsb8{word-spacing:2.750100px;}
.ws82{word-spacing:2.824260px;}
.ws6f{word-spacing:2.842800px;}
.ws154{word-spacing:2.848980px;}
.ws21c{word-spacing:2.872800px;}
.ws56{word-spacing:2.879880px;}
.ws1f6{word-spacing:2.916000px;}
.ws218{word-spacing:2.926800px;}
.ws1e9{word-spacing:2.937600px;}
.wsb1{word-spacing:2.941680px;}
.ws22a{word-spacing:2.943000px;}
.ws14d{word-spacing:2.947860px;}
.ws1be{word-spacing:2.959200px;}
.ws1da{word-spacing:2.997000px;}
.ws117{word-spacing:3.003480px;}
.ws144{word-spacing:3.015840px;}
.ws15f{word-spacing:3.022020px;}
.wse9{word-spacing:3.040560px;}
.ws12e{word-spacing:3.046740px;}
.ws231{word-spacing:3.056400px;}
.wsed{word-spacing:3.065280px;}
.ws209{word-spacing:3.072600px;}
.ws6a{word-spacing:3.102360px;}
.ws1a2{word-spacing:3.110400px;}
.ws188{word-spacing:3.127080px;}
.wsa1{word-spacing:3.133260px;}
.ws1a3{word-spacing:3.137400px;}
.ws1a4{word-spacing:3.159000px;}
.ws235{word-spacing:3.186000px;}
.ws189{word-spacing:3.188880px;}
.ws5{word-spacing:3.189600px;}
.ws1d2{word-spacing:3.191400px;}
.ws1b3{word-spacing:3.196800px;}
.ws1b4{word-spacing:3.202200px;}
.ws236{word-spacing:3.218400px;}
.ws184{word-spacing:3.244500px;}
.ws22{word-spacing:3.250680px;}
.ws4b{word-spacing:3.256860px;}
.wse1{word-spacing:3.263040px;}
.ws69{word-spacing:3.269220px;}
.ws126{word-spacing:3.275400px;}
.ws219{word-spacing:3.277800px;}
.ws180{word-spacing:3.281580px;}
.wscd{word-spacing:3.300120px;}
.wsb4{word-spacing:3.312480px;}
.ws203{word-spacing:3.315600px;}
.ws13{word-spacing:3.321000px;}
.wsda{word-spacing:3.324840px;}
.ws15d{word-spacing:3.331020px;}
.ws1ce{word-spacing:3.337200px;}
.ws19b{word-spacing:3.342600px;}
.ws1c1{word-spacing:3.353400px;}
.wsb{word-spacing:3.358800px;}
.wsba{word-spacing:3.368100px;}
.ws8{word-spacing:3.369600px;}
.ws16{word-spacing:3.374280px;}
.ws15c{word-spacing:3.386640px;}
.wsac{word-spacing:3.392820px;}
.wsaa{word-spacing:3.411360px;}
.wsa5{word-spacing:3.442260px;}
.ws8c{word-spacing:3.448440px;}
.ws19a{word-spacing:3.466800px;}
.ws19{word-spacing:3.466980px;}
.ws122{word-spacing:3.479340px;}
.wse3{word-spacing:3.491700px;}
.ws158{word-spacing:3.497880px;}
.ws64{word-spacing:3.504060px;}
.ws123{word-spacing:3.534960px;}
.ws32{word-spacing:3.541140px;}
.ws107{word-spacing:3.553500px;}
.ws79{word-spacing:3.565860px;}
.wsd6{word-spacing:3.578220px;}
.wsbc{word-spacing:3.590580px;}
.ws17d{word-spacing:3.602940px;}
.ws42{word-spacing:3.609120px;}
.ws68{word-spacing:3.615300px;}
.ws168{word-spacing:3.627660px;}
.wscc{word-spacing:3.633840px;}
.wsb3{word-spacing:3.640020px;}
.wsd9{word-spacing:3.658560px;}
.wsa2{word-spacing:3.677100px;}
.wsfa{word-spacing:3.686400px;}
.ws9e{word-spacing:3.689460px;}
.ws5a{word-spacing:3.695640px;}
.wsc0{word-spacing:3.701820px;}
.ws99{word-spacing:3.708000px;}
.ws54{word-spacing:3.714180px;}
.ws4e{word-spacing:3.720360px;}
.wscf{word-spacing:3.726540px;}
.ws7c{word-spacing:3.738900px;}
.ws65{word-spacing:3.751260px;}
.ws178{word-spacing:3.757440px;}
.ws11f{word-spacing:3.763620px;}
.ws16b{word-spacing:3.769800px;}
.ws120{word-spacing:3.775980px;}
.ws116{word-spacing:3.782160px;}
.ws183{word-spacing:3.788340px;}
.ws146{word-spacing:3.794520px;}
.ws78{word-spacing:3.800700px;}
.ws74{word-spacing:3.806880px;}
.ws8e{word-spacing:3.813060px;}
.ws17f{word-spacing:3.819240px;}
.wsf2{word-spacing:3.831600px;}
.ws70{word-spacing:3.850140px;}
.ws109{word-spacing:3.924300px;}
.ws210{word-spacing:3.958200px;}
.ws212{word-spacing:3.969000px;}
.ws1a9{word-spacing:3.979800px;}
.ws1cd{word-spacing:4.044600px;}
.ws46{word-spacing:4.054080px;}
.ws161{word-spacing:4.103520px;}
.ws14e{word-spacing:4.122060px;}
.wsef{word-spacing:4.171500px;}
.ws6b{word-spacing:4.177680px;}
.ws1d0{word-spacing:4.320000px;}
.ws16d{word-spacing:4.406340px;}
.wsd{word-spacing:4.433400px;}
.ws13e{word-spacing:4.437240px;}
.wsd7{word-spacing:4.542300px;}
.ws112{word-spacing:4.573200px;}
.ws1cf{word-spacing:4.590000px;}
.ws18{word-spacing:4.610280px;}
.ws1b6{word-spacing:4.660200px;}
.ws179{word-spacing:4.665900px;}
.ws124{word-spacing:4.715340px;}
.ws129{word-spacing:4.727700px;}
.ws1c2{word-spacing:4.806000px;}
.ws21f{word-spacing:4.876200px;}
.ws13c{word-spacing:4.937820px;}
.ws208{word-spacing:5.178600px;}
.ws1f5{word-spacing:5.243400px;}
.ws143{word-spacing:5.246820px;}
.wsc2{word-spacing:5.296260px;}
.ws163{word-spacing:5.487840px;}
.ws18e{word-spacing:5.494020px;}
.ws1fc{word-spacing:5.508000px;}
.wsf3{word-spacing:5.716500px;}
.ws87{word-spacing:5.722680px;}
.ws1ec{word-spacing:5.734800px;}
.ws138{word-spacing:5.778300px;}
.ws148{word-spacing:5.889540px;}
.ws47{word-spacing:6.068760px;}
.ws127{word-spacing:6.167640px;}
.ws18f{word-spacing:6.260340px;}
.ws12c{word-spacing:6.340680px;}
.ws162{word-spacing:6.346860px;}
.ws216{word-spacing:6.496200px;}
.wsa7{word-spacing:6.532260px;}
.ws213{word-spacing:6.588000px;}
.ws176{word-spacing:6.594060px;}
.ws9c{word-spacing:6.624960px;}
.ws10c{word-spacing:6.637320px;}
.ws1f{word-spacing:6.668220px;}
.ws1bf{word-spacing:6.674400px;}
.wse4{word-spacing:6.692940px;}
.ws9{word-spacing:6.728400px;}
.ws44{word-spacing:6.742380px;}
.ws22d{word-spacing:6.841800px;}
.ws8a{word-spacing:6.878340px;}
.ws9b{word-spacing:6.958680px;}
.ws114{word-spacing:7.218240px;}
.ws139{word-spacing:7.280040px;}
.ws1b9{word-spacing:7.338600px;}
.ws177{word-spacing:7.348020px;}
.ws62{word-spacing:7.416000px;}
.ws239{word-spacing:7.441200px;}
.wsc3{word-spacing:7.595220px;}
.wsa9{word-spacing:7.632300px;}
.ws140{word-spacing:7.823880px;}
.ws1f0{word-spacing:7.975800px;}
.ws9a{word-spacing:7.978380px;}
.ws20e{word-spacing:8.197200px;}
.ws55{word-spacing:8.324460px;}
.ws95{word-spacing:8.410980px;}
.ws2d{word-spacing:8.590200px;}
.ws12a{word-spacing:8.602560px;}
.ws3d{word-spacing:8.936280px;}
.ws1a{word-spacing:8.948640px;}
.ws199{word-spacing:8.974800px;}
.ws1e0{word-spacing:9.045000px;}
.ws194{word-spacing:9.127860px;}
.wsb9{word-spacing:9.356520px;}
.ws17c{word-spacing:9.764400px;}
.ws17a{word-spacing:9.813840px;}
.ws228{word-spacing:9.930600px;}
.ws1c9{word-spacing:10.081800px;}
.ws13f{word-spacing:10.215540px;}
.ws181{word-spacing:10.407120px;}
.ws147{word-spacing:10.839720px;}
.ws172{word-spacing:11.074560px;}
.ws60{word-spacing:11.334120px;}
.wsc7{word-spacing:11.649300px;}
.wse7{word-spacing:12.205500px;}
.ws38{word-spacing:12.347640px;}
.ws8b{word-spacing:12.427980px;}
.ws9f{word-spacing:12.601020px;}
.ws4c{word-spacing:13.317900px;}
.ws187{word-spacing:13.472400px;}
.ws45{word-spacing:13.670160px;}
.ws1e8{word-spacing:13.872600px;}
.ws3f{word-spacing:13.892640px;}
.ws1ba{word-spacing:14.893200px;}
.wsbd{word-spacing:14.912340px;}
.ws36{word-spacing:15.672480px;}
.ws7e{word-spacing:16.630380px;}
.wse6{word-spacing:16.852860px;}
.ws23e{word-spacing:16.853400px;}
.ws1ea{word-spacing:17.798400px;}
.ws190{word-spacing:19.337220px;}
.ws5f{word-spacing:19.553520px;}
.ws1f1{word-spacing:21.119400px;}
.ws4d{word-spacing:21.222120px;}
.ws28{word-spacing:23.953680px;}
.ws76{word-spacing:25.949820px;}
._8{margin-left:-11.251680px;}
._d{margin-left:-7.953660px;}
._3{margin-left:-6.609600px;}
._4{margin-left:-5.342400px;}
._2{margin-left:-3.974400px;}
._5{margin-left:-2.334000px;}
._1{margin-left:-1.303200px;}
._7{width:1.206000px;}
._f{width:2.222400px;}
._6{width:3.402000px;}
._a{width:5.131200px;}
._9{width:6.489600px;}
._e{width:7.602000px;}
._b{width:8.784000px;}
._c{width:10.111200px;}
._10{width:16.831800px;}
._0{width:1115.457000px;}
._11{width:1412.245800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:28.800000px;}
.fsb{font-size:32.400000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:37.080000px;}
.fs3{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.022500px;}
.ydd{bottom:23.072565px;}
.y109{bottom:23.083830px;}
.y137{bottom:23.085240px;}
.yb3{bottom:23.089560px;}
.y167{bottom:23.090550px;}
.y250{bottom:23.091300px;}
.y186{bottom:23.091945px;}
.y17f{bottom:23.094525px;}
.y56{bottom:23.097285px;}
.y233{bottom:23.105010px;}
.y1b8{bottom:23.110590px;}
.y83{bottom:23.111190px;}
.y1dd{bottom:23.114280px;}
.y24{bottom:23.149200px;}
.y2fe{bottom:66.663450px;}
.y27b{bottom:66.671400px;}
.y327{bottom:66.671550px;}
.y2a6{bottom:66.672900px;}
.y24f{bottom:66.673200px;}
.y2d2{bottom:66.685350px;}
.ydc{bottom:67.074165px;}
.y108{bottom:67.085430px;}
.y136{bottom:67.086840px;}
.yb2{bottom:67.091160px;}
.y185{bottom:67.092000px;}
.y166{bottom:67.092150px;}
.y17e{bottom:67.097670px;}
.y55{bottom:67.098885px;}
.y1b7{bottom:67.104465px;}
.y232{bottom:67.106610px;}
.y82{bottom:67.112790px;}
.y1dc{bottom:67.115880px;}
.y26{bottom:68.174400px;}
.y37f{bottom:70.885950px;}
.y2fd{bottom:83.392650px;}
.y2a5{bottom:83.395350px;}
.y37e{bottom:83.471700px;}
.y24e{bottom:83.641350px;}
.y27a{bottom:83.792100px;}
.y2d1{bottom:84.000450px;}
.y326{bottom:84.417300px;}
.y25{bottom:84.671400px;}
.y81{bottom:85.153755px;}
.y1db{bottom:85.156845px;}
.y135{bottom:85.166430px;}
.y165{bottom:85.176375px;}
.y54{bottom:85.187745px;}
.y20b{bottom:85.244910px;}
.y1b6{bottom:85.250490px;}
.y107{bottom:85.277805px;}
.y231{bottom:85.498290px;}
.ydb{bottom:85.502925px;}
.yb1{bottom:85.609530px;}
.y17d{bottom:85.659300px;}
.y184{bottom:85.843980px;}
.y37d{bottom:96.052800px;}
.y325{bottom:102.161100px;}
.y80{bottom:103.194720px;}
.y1da{bottom:103.197810px;}
.y134{bottom:103.246020px;}
.y164{bottom:103.260600px;}
.y53{bottom:103.276605px;}
.y20a{bottom:103.377030px;}
.y1b5{bottom:103.396515px;}
.y106{bottom:103.470180px;}
.y230{bottom:103.889970px;}
.yda{bottom:103.931685px;}
.yb0{bottom:104.127900px;}
.y17c{bottom:104.220930px;}
.y183{bottom:104.845935px;}
.y2a4{bottom:108.621450px;}
.y2fc{bottom:108.625500px;}
.y24d{bottom:109.113150px;}
.y279{bottom:109.416450px;}
.y2d0{bottom:109.819200px;}
.y37c{bottom:115.011600px;}
.y324{bottom:119.906850px;}
.y7f{bottom:121.235685px;}
.y1d9{bottom:121.238775px;}
.y133{bottom:121.325610px;}
.y163{bottom:121.344825px;}
.y52{bottom:121.365465px;}
.y209{bottom:121.509150px;}
.y1b4{bottom:121.542540px;}
.y105{bottom:121.662555px;}
.y22f{bottom:122.281650px;}
.yd9{bottom:122.360445px;}
.yaf{bottom:122.646270px;}
.y17b{bottom:122.782560px;}
.y2a3{bottom:125.343900px;}
.y2fb{bottom:125.354700px;}
.y24c{bottom:126.081300px;}
.y278{bottom:126.537150px;}
.y2cf{bottom:127.134300px;}
.y37b{bottom:127.592700px;}
.y23{bottom:128.178300px;}
.y7e{bottom:139.276650px;}
.y1d8{bottom:139.279740px;}
.y132{bottom:139.405200px;}
.y162{bottom:139.429050px;}
.y51{bottom:139.454325px;}
.y208{bottom:139.641270px;}
.y1b3{bottom:139.687020px;}
.y104{bottom:139.854930px;}
.y37a{bottom:140.173800px;}
.y22e{bottom:140.673330px;}
.yd8{bottom:140.789205px;}
.yae{bottom:141.164640px;}
.y2a2{bottom:142.066350px;}
.y2fa{bottom:142.083900px;}
.y24b{bottom:143.049450px;}
.y277{bottom:143.657850px;}
.y2ce{bottom:144.449400px;}
.y323{bottom:146.156250px;}
.y22{bottom:146.471100px;}
.y379{bottom:152.754900px;}
.y17a{bottom:154.099710px;}
.y7d{bottom:157.317615px;}
.y1d7{bottom:157.320705px;}
.y131{bottom:157.484790px;}
.y161{bottom:157.513275px;}
.y50{bottom:157.543185px;}
.y207{bottom:157.773390px;}
.y1b2{bottom:157.831500px;}
.y103{bottom:158.047305px;}
.y22d{bottom:159.065010px;}
.yd7{bottom:159.217965px;}
.yad{bottom:159.683010px;}
.y322{bottom:163.902000px;}
.y21{bottom:164.763900px;}
.y2a1{bottom:167.292450px;}
.y2f9{bottom:167.316750px;}
.y24a{bottom:168.521250px;}
.y276{bottom:169.282200px;}
.y2cd{bottom:170.268150px;}
.y378{bottom:171.713700px;}
.y7c{bottom:175.358580px;}
.y1d6{bottom:175.361670px;}
.y130{bottom:175.564380px;}
.y160{bottom:175.597500px;}
.y4f{bottom:175.632045px;}
.y206{bottom:175.905510px;}
.y1b1{bottom:175.975980px;}
.y102{bottom:176.239680px;}
.y22c{bottom:177.456690px;}
.yd6{bottom:177.646725px;}
.yac{bottom:178.201380px;}
.y20{bottom:183.056700px;}
.y2a0{bottom:184.014900px;}
.y2f8{bottom:184.045950px;}
.y377{bottom:184.294800px;}
.y249{bottom:185.489400px;}
.y275{bottom:186.402900px;}
.y2cc{bottom:187.583250px;}
.y321{bottom:190.151400px;}
.y1d5{bottom:193.402635px;}
.y12f{bottom:193.643970px;}
.y4e{bottom:193.720905px;}
.y179{bottom:193.920540px;}
.y205{bottom:194.037630px;}
.y1b0{bottom:194.120460px;}
.y101{bottom:194.432055px;}
.y22b{bottom:195.848370px;}
.yd5{bottom:196.075485px;}
.yab{bottom:196.719750px;}
.y376{bottom:196.875900px;}
.y2f7{bottom:200.775150px;}
.y1f{bottom:201.349500px;}
.y248{bottom:202.457550px;}
.y274{bottom:203.523600px;}
.y2cb{bottom:204.898350px;}
.y7b{bottom:206.156610px;}
.y320{bottom:207.897150px;}
.y29f{bottom:209.241000px;}
.y375{bottom:209.457000px;}
.y1d4{bottom:211.443600px;}
.y12e{bottom:211.723560px;}
.y4d{bottom:211.809765px;}
.y204{bottom:212.169750px;}
.y1af{bottom:212.264940px;}
.y178{bottom:212.482170px;}
.y100{bottom:212.624430px;}
.y22a{bottom:214.240050px;}
.yaa{bottom:215.238120px;}
.y15f{bottom:219.193350px;}
.y1e{bottom:219.642300px;}
.y31f{bottom:225.642900px;}
.y29e{bottom:225.963450px;}
.y2f6{bottom:226.008000px;}
.yd4{bottom:227.259765px;}
.y374{bottom:228.415800px;}
.y273{bottom:229.147950px;}
.y1d3{bottom:229.484565px;}
.y12d{bottom:229.803150px;}
.y4c{bottom:229.898625px;}
.y203{bottom:230.301870px;}
.y1ae{bottom:230.409420px;}
.y2ca{bottom:230.717100px;}
.yff{bottom:230.816805px;}
.y177{bottom:231.043800px;}
.y229{bottom:232.631730px;}
.ya9{bottom:233.756490px;}
.y1d{bottom:237.935100px;}
.y15e{bottom:239.155350px;}
.y373{bottom:240.996900px;}
.y29d{bottom:242.685900px;}
.y2f5{bottom:242.737200px;}
.y247{bottom:244.934565px;}
.y272{bottom:246.268650px;}
.y1d2{bottom:247.525530px;}
.y12c{bottom:247.882740px;}
.y4b{bottom:247.987485px;}
.y2c9{bottom:248.032200px;}
.y202{bottom:248.433990px;}
.y1ad{bottom:248.553900px;}
.yfe{bottom:249.009180px;}
.y176{bottom:249.605430px;}
.y7a{bottom:249.710160px;}
.y228{bottom:251.023410px;}
.y31e{bottom:251.892300px;}
.ya8{bottom:252.274860px;}
.y15d{bottom:252.739500px;}
.y372{bottom:253.578000px;}
.y1c{bottom:256.227900px;}
.y2f4{bottom:259.466400px;}
.y271{bottom:263.389350px;}
.y2c8{bottom:265.347300px;}
.y1d1{bottom:265.566495px;}
.y12b{bottom:265.962330px;}
.y4a{bottom:266.076345px;}
.y15c{bottom:266.323650px;}
.y201{bottom:266.566110px;}
.y1ac{bottom:266.698380px;}
.yfd{bottom:267.201555px;}
.y79{bottom:267.751125px;}
.y29c{bottom:267.912000px;}
.y175{bottom:268.167060px;}
.y227{bottom:269.415090px;}
.y31d{bottom:269.638050px;}
.ya7{bottom:270.793230px;}
.yd3{bottom:271.199565px;}
.y371{bottom:272.536800px;}
.y1b{bottom:274.520700px;}
.y15b{bottom:279.907800px;}
.y1d0{bottom:283.607460px;}
.y12a{bottom:284.041920px;}
.y49{bottom:284.165205px;}
.y29b{bottom:284.634450px;}
.y200{bottom:284.698230px;}
.y2f3{bottom:284.699250px;}
.y1ab{bottom:284.842860px;}
.y370{bottom:285.117900px;}
.yfc{bottom:285.393930px;}
.y78{bottom:285.792090px;}
.y174{bottom:286.728690px;}
.y226{bottom:287.806770px;}
.y270{bottom:289.013700px;}
.ya6{bottom:289.311600px;}
.yd2{bottom:289.628325px;}
.y2c7{bottom:291.166050px;}
.y1a{bottom:292.813500px;}
.y15a{bottom:293.491800px;}
.y31c{bottom:295.887450px;}
.y36f{bottom:297.699000px;}
.y2f2{bottom:301.428450px;}
.y1cf{bottom:301.648425px;}
.y129{bottom:302.121510px;}
.y48{bottom:302.254065px;}
.y1ff{bottom:302.830350px;}
.y1aa{bottom:302.987340px;}
.yfb{bottom:303.586305px;}
.y77{bottom:303.833055px;}
.y173{bottom:305.290320px;}
.y26f{bottom:306.134400px;}
.y225{bottom:306.198450px;}
.y159{bottom:307.075950px;}
.ya5{bottom:307.829970px;}
.yd1{bottom:308.057085px;}
.y2c6{bottom:308.481150px;}
.y29a{bottom:309.860550px;}
.y19{bottom:311.106300px;}
.y246{bottom:314.427120px;}
.y36e{bottom:316.657800px;}
.y2f1{bottom:318.157650px;}
.y1ce{bottom:319.689390px;}
.y128{bottom:320.201100px;}
.y47{bottom:320.342925px;}
.y158{bottom:320.659950px;}
.y1fe{bottom:320.962470px;}
.y1a9{bottom:321.131820px;}
.y76{bottom:321.874020px;}
.y31b{bottom:322.136850px;}
.y172{bottom:323.851950px;}
.y224{bottom:324.590130px;}
.y2c5{bottom:325.796250px;}
.ya4{bottom:326.348340px;}
.yd0{bottom:326.485845px;}
.y299{bottom:326.583000px;}
.y36d{bottom:329.238900px;}
.y18{bottom:329.399100px;}
.y26e{bottom:331.758750px;}
.y245{bottom:332.896050px;}
.y157{bottom:334.244100px;}
.yfa{bottom:334.534200px;}
.y1cd{bottom:337.730355px;}
.y46{bottom:338.431785px;}
.y1fd{bottom:339.094590px;}
.y1a8{bottom:339.276300px;}
.y31a{bottom:339.882600px;}
.y75{bottom:339.914985px;}
.y36c{bottom:341.820000px;}
.y171{bottom:342.413580px;}
.y223{bottom:342.981810px;}
.y2f0{bottom:343.390500px;}
.ya3{bottom:344.866710px;}
.ycf{bottom:344.914605px;}
.y156{bottom:347.828250px;}
.y26d{bottom:348.879600px;}
.y244{bottom:351.364980px;}
.y2c4{bottom:351.616350px;}
.y298{bottom:351.809100px;}
.y36b{bottom:354.401100px;}
.y1cc{bottom:355.771320px;}
.y45{bottom:356.520645px;}
.y1fc{bottom:357.226710px;}
.y1a7{bottom:357.420780px;}
.y319{bottom:357.628350px;}
.y74{bottom:357.955950px;}
.y2ef{bottom:360.119700px;}
.y170{bottom:360.975210px;}
.y222{bottom:361.373490px;}
.y155{bottom:361.412250px;}
.ya2{bottom:363.385080px;}
.y127{bottom:363.792000px;}
.y36a{bottom:366.982200px;}
.y297{bottom:368.531550px;}
.y2c3{bottom:368.931450px;}
.y243{bottom:369.833910px;}
.y17{bottom:373.215300px;}
.y1cb{bottom:373.812285px;}
.y26c{bottom:374.503950px;}
.y44{bottom:374.609505px;}
.y1fb{bottom:375.358830px;}
.y1a6{bottom:375.565260px;}
.y73{bottom:375.996915px;}
.y2ee{bottom:376.848900px;}
.y126{bottom:377.371200px;}
.yf9{bottom:378.237615px;}
.y16f{bottom:379.536840px;}
.y221{bottom:379.765170px;}
.y154{bottom:381.374250px;}
.ya1{bottom:381.903450px;}
.y318{bottom:383.877750px;}
.y296{bottom:385.254000px;}
.y369{bottom:385.941000px;}
.y2c2{bottom:386.246550px;}
.yce{bottom:388.854405px;}
.y125{bottom:390.950400px;}
.y26b{bottom:391.624650px;}
.y1ca{bottom:391.853250px;}
.y43{bottom:392.698365px;}
.y1fa{bottom:393.490950px;}
.y1a5{bottom:393.709740px;}
.y72{bottom:394.037880px;}
.yf8{bottom:396.428445px;}
.y16e{bottom:398.098470px;}
.y220{bottom:398.156850px;}
.y368{bottom:398.522100px;}
.ya0{bottom:400.421820px;}
.y153{bottom:401.336250px;}
.y317{bottom:401.623500px;}
.y2ed{bottom:402.081750px;}
.y124{bottom:404.529600px;}
.y242{bottom:405.310200px;}
.y1c9{bottom:409.894215px;}
.y295{bottom:410.480700px;}
.y367{bottom:411.103200px;}
.y1f9{bottom:411.623070px;}
.y1a4{bottom:411.854220px;}
.y2c1{bottom:412.065300px;}
.y71{bottom:412.078845px;}
.yf7{bottom:414.619275px;}
.y21f{bottom:416.548530px;}
.y16d{bottom:416.660100px;}
.y26a{bottom:417.249000px;}
.y123{bottom:418.108650px;}
.y2ec{bottom:418.810950px;}
.y9f{bottom:418.940190px;}
.y42{bottom:423.542745px;}
.y152{bottom:423.670335px;}
.y366{bottom:423.684300px;}
.y294{bottom:427.203150px;}
.y316{bottom:427.872900px;}
.y1c8{bottom:427.935180px;}
.y2c0{bottom:429.380400px;}
.y1f8{bottom:429.755190px;}
.y1a3{bottom:429.998700px;}
.y70{bottom:430.119810px;}
.y122{bottom:431.687850px;}
.yf6{bottom:432.810105px;}
.y269{bottom:434.369700px;}
.y21e{bottom:434.940210px;}
.y16c{bottom:435.221730px;}
.y365{bottom:436.265400px;}
.y9e{bottom:437.458560px;}
.y16{bottom:442.600950px;}
.y2eb{bottom:444.043800px;}
.y121{bottom:445.267050px;}
.y315{bottom:445.618650px;}
.y1c7{bottom:445.976145px;}
.y1f7{bottom:447.887310px;}
.y1a2{bottom:448.143180px;}
.y6f{bottom:448.160775px;}
.y364{bottom:448.846500px;}
.y340{bottom:449.778900px;}
.yf5{bottom:451.000935px;}
.y268{bottom:451.490400px;}
.y293{bottom:452.429250px;}
.y16b{bottom:453.783360px;}
.y2bf{bottom:455.199150px;}
.y9d{bottom:455.976930px;}
.y241{bottom:457.793850px;}
.ycd{bottom:458.306790px;}
.y120{bottom:458.846250px;}
.y2ea{bottom:460.773000px;}
.y363{bottom:461.427600px;}
.y1c6{bottom:464.017110px;}
.y1f6{bottom:466.019430px;}
.y6e{bottom:466.201740px;}
.y33f{bottom:466.278600px;}
.y1a1{bottom:466.287660px;}
.y41{bottom:467.144190px;}
.y151{bottom:467.265600px;}
.y15{bottom:467.899950px;}
.y292{bottom:469.151700px;}
.y314{bottom:471.868050px;}
.y16a{bottom:472.344990px;}
.y11f{bottom:472.425450px;}
.y2be{bottom:472.514250px;}
.y362{bottom:474.008700px;}
.y9c{bottom:474.495300px;}
.y240{bottom:476.262780px;}
.ycc{bottom:476.735550px;}
.y267{bottom:477.114750px;}
.y21d{bottom:478.844475px;}
.yf4{bottom:481.948830px;}
.y1c5{bottom:482.058075px;}
.y33e{bottom:482.778300px;}
.y1f5{bottom:484.151550px;}
.y6d{bottom:484.242705px;}
.y1a0{bottom:484.432140px;}
.y14{bottom:484.693950px;}
.y40{bottom:485.233050px;}
.y150{bottom:485.349825px;}
.y11e{bottom:486.004500px;}
.y2e9{bottom:486.005850px;}
.y361{bottom:486.589800px;}
.y313{bottom:489.613800px;}
.y2bd{bottom:489.829350px;}
.y169{bottom:490.906620px;}
.y9b{bottom:493.013670px;}
.y266{bottom:494.235450px;}
.y291{bottom:494.379900px;}
.ycb{bottom:495.164310px;}
.y360{bottom:499.170900px;}
.y13{bottom:501.487950px;}
.y6c{bottom:502.283670px;}
.y19f{bottom:502.576620px;}
.y2e8{bottom:502.735050px;}
.y3f{bottom:503.321910px;}
.y14f{bottom:503.434050px;}
.y11d{bottom:505.961700px;}
.y33d{bottom:507.781650px;}
.y290{bottom:511.102350px;}
.y9a{bottom:511.532040px;}
.y23f{bottom:511.739070px;}
.y35f{bottom:511.752000px;}
.yca{bottom:513.593070px;}
.y2bc{bottom:515.648100px;}
.y312{bottom:515.863200px;}
.y12{bottom:518.281950px;}
.y2e7{bottom:519.464250px;}
.y265{bottom:519.859800px;}
.y6b{bottom:520.324635px;}
.y1f4{bottom:520.415790px;}
.y19e{bottom:520.721100px;}
.y3e{bottom:521.410770px;}
.y14e{bottom:521.518275px;}
.y33c{bottom:524.281350px;}
.y1c4{bottom:525.611625px;}
.yf3{bottom:525.652245px;}
.y11c{bottom:525.918900px;}
.y182{bottom:527.785050px;}
.y99{bottom:530.050410px;}
.y35e{bottom:530.710800px;}
.y168{bottom:530.727450px;}
.yc9{bottom:532.021830px;}
.y2bb{bottom:532.963200px;}
.y311{bottom:533.608950px;}
.y11{bottom:535.075950px;}
.y28f{bottom:536.328450px;}
.y264{bottom:536.980500px;}
.y6a{bottom:538.365600px;}
.y1f3{bottom:538.547910px;}
.y19d{bottom:538.865580px;}
.y394{bottom:539.498400px;}
.y3d{bottom:539.499630px;}
.y14d{bottom:539.602500px;}
.y35d{bottom:543.291900px;}
.yf2{bottom:543.843075px;}
.y2e6{bottom:544.697100px;}
.y181{bottom:546.538650px;}
.y11b{bottom:548.249880px;}
.y21c{bottom:548.259780px;}
.y98{bottom:548.568780px;}
.y33b{bottom:549.284700px;}
.y2ba{bottom:550.278300px;}
.yc8{bottom:550.450590px;}
.y10{bottom:551.869950px;}
.y28e{bottom:553.050900px;}
.y35c{bottom:555.873000px;}
.y69{bottom:556.406565px;}
.y1f2{bottom:556.680030px;}
.y19c{bottom:557.010060px;}
.y3c{bottom:557.588490px;}
.y14c{bottom:557.686725px;}
.y310{bottom:559.858350px;}
.y2e5{bottom:561.426300px;}
.yf1{bottom:562.033905px;}
.y263{bottom:562.604850px;}
.y23e{bottom:564.222720px;}
.y33a{bottom:565.784400px;}
.y21b{bottom:566.651460px;}
.y97{bottom:567.087150px;}
.y2b9{bottom:567.593400px;}
.y35b{bottom:568.454100px;}
.yf{bottom:568.663950px;}
.yc7{bottom:568.879350px;}
.y28d{bottom:569.773350px;}
.y68{bottom:574.447530px;}
.y1f1{bottom:574.812150px;}
.y19b{bottom:575.154540px;}
.y3b{bottom:575.677350px;}
.y14b{bottom:575.770950px;}
.y30f{bottom:577.604100px;}
.y262{bottom:579.725550px;}
.yf0{bottom:580.224735px;}
.y339{bottom:582.284100px;}
.y23d{bottom:582.691650px;}
.y2b8{bottom:584.908500px;}
.y21a{bottom:585.043140px;}
.ye{bottom:585.457950px;}
.y96{bottom:585.605520px;}
.y2e4{bottom:586.659150px;}
.yc6{bottom:587.308110px;}
.y35a{bottom:587.412900px;}
.y11a{bottom:591.840510px;}
.y67{bottom:592.488495px;}
.y1f0{bottom:592.944270px;}
.y19a{bottom:593.299020px;}
.y3a{bottom:593.766210px;}
.y14a{bottom:593.855175px;}
.y1c3{bottom:594.676215px;}
.y28c{bottom:594.999450px;}
.yef{bottom:598.415565px;}
.y359{bottom:599.994000px;}
.yd{bottom:602.251950px;}
.y2e3{bottom:603.388350px;}
.y219{bottom:603.434820px;}
.y30e{bottom:603.853500px;}
.y95{bottom:604.123890px;}
.y261{bottom:605.349900px;}
.yc5{bottom:605.736870px;}
.y338{bottom:607.287450px;}
.y393{bottom:608.522550px;}
.y119{bottom:609.914550px;}
.y66{bottom:610.529460px;}
.y2b7{bottom:610.727250px;}
.y1ef{bottom:611.076390px;}
.y199{bottom:611.443500px;}
.y39{bottom:611.855070px;}
.y149{bottom:611.939400px;}
.y358{bottom:612.575100px;}
.y1c2{bottom:612.717180px;}
.yee{bottom:616.606395px;}
.y23c{bottom:618.167940px;}
.yc{bottom:619.045950px;}
.y2e2{bottom:620.117550px;}
.y28b{bottom:620.225550px;}
.y30d{bottom:621.599250px;}
.y218{bottom:621.826500px;}
.y260{bottom:622.470600px;}
.y94{bottom:622.642260px;}
.y337{bottom:623.787150px;}
.yc4{bottom:624.165630px;}
.y392{bottom:625.022250px;}
.y357{bottom:625.156200px;}
.y118{bottom:627.994140px;}
.y2b6{bottom:628.042350px;}
.y65{bottom:628.570425px;}
.y1ee{bottom:629.208510px;}
.y198{bottom:629.587980px;}
.y38{bottom:629.943930px;}
.y148{bottom:630.023625px;}
.y1c1{bottom:630.758145px;}
.yb{bottom:635.839950px;}
.y28a{bottom:636.948000px;}
.y30c{bottom:639.345000px;}
.y217{bottom:640.218180px;}
.y336{bottom:640.286850px;}
.y93{bottom:641.160630px;}
.yc3{bottom:642.594390px;}
.yed{bottom:643.302450px;}
.y356{bottom:644.115000px;}
.y2e1{bottom:645.350400px;}
.y117{bottom:646.073730px;}
.y64{bottom:646.611390px;}
.y1ed{bottom:647.340630px;}
.y197{bottom:647.732460px;}
.y37{bottom:648.032790px;}
.y25f{bottom:648.094950px;}
.y147{bottom:648.107850px;}
.y1c0{bottom:648.799110px;}
.y391{bottom:650.025600px;}
.ya{bottom:652.633950px;}
.y289{bottom:653.670450px;}
.y2b5{bottom:653.861100px;}
.y355{bottom:656.696100px;}
.y216{bottom:658.609860px;}
.y92{bottom:659.679000px;}
.yc2{bottom:661.023150px;}
.yec{bottom:661.494825px;}
.y2e0{bottom:662.079600px;}
.y116{bottom:664.153320px;}
.y63{bottom:664.652355px;}
.y25e{bottom:665.215650px;}
.y335{bottom:665.290200px;}
.y1ec{bottom:665.472750px;}
.y30b{bottom:665.594400px;}
.y196{bottom:665.876940px;}
.y36{bottom:666.121650px;}
.y146{bottom:666.192075px;}
.y390{bottom:666.525300px;}
.y1bf{bottom:666.840075px;}
.y354{bottom:669.277200px;}
.y9{bottom:669.427950px;}
.y23b{bottom:670.651590px;}
.y2b4{bottom:671.176200px;}
.y215{bottom:677.001540px;}
.y91{bottom:678.197370px;}
.y288{bottom:678.896550px;}
.yc1{bottom:679.451910px;}
.yeb{bottom:679.685655px;}
.y334{bottom:681.789900px;}
.y353{bottom:681.858300px;}
.y115{bottom:682.232910px;}
.y25d{bottom:682.336350px;}
.y62{bottom:682.693320px;}
.y38f{bottom:683.025000px;}
.y30a{bottom:683.340150px;}
.y1eb{bottom:683.604870px;}
.y195{bottom:684.021420px;}
.y35{bottom:684.210510px;}
.y145{bottom:684.276300px;}
.y1be{bottom:684.881040px;}
.y8{bottom:686.221950px;}
.y2df{bottom:687.312450px;}
.y2b3{bottom:688.491300px;}
.y23a{bottom:689.120520px;}
.y352{bottom:694.439400px;}
.y214{bottom:695.393220px;}
.y287{bottom:695.619000px;}
.y90{bottom:696.715740px;}
.yea{bottom:697.876485px;}
.yc0{bottom:697.880670px;}
.y333{bottom:698.289600px;}
.y38e{bottom:699.524700px;}
.y114{bottom:700.312500px;}
.y61{bottom:700.734285px;}
.y1ea{bottom:701.736990px;}
.y194{bottom:702.165900px;}
.y34{bottom:702.299370px;}
.y144{bottom:702.360525px;}
.y1bd{bottom:702.922005px;}
.y2de{bottom:704.041650px;}
.y351{bottom:707.020500px;}
.y25c{bottom:707.960700px;}
.y309{bottom:709.589550px;}
.y213{bottom:713.784900px;}
.y2b2{bottom:714.310050px;}
.y332{bottom:714.789300px;}
.y8f{bottom:715.234110px;}
.y38d{bottom:716.024400px;}
.ye9{bottom:716.067315px;}
.ybf{bottom:716.309430px;}
.y113{bottom:718.392090px;}
.y60{bottom:718.775250px;}
.y350{bottom:719.601600px;}
.y1e9{bottom:719.869110px;}
.y33{bottom:720.388230px;}
.y143{bottom:720.444750px;}
.y2dd{bottom:720.770850px;}
.y286{bottom:720.845100px;}
.y1bc{bottom:720.962970px;}
.y239{bottom:724.596810px;}
.y308{bottom:727.335300px;}
.y2b1{bottom:731.625150px;}
.y34f{bottom:732.182700px;}
.y38c{bottom:732.524100px;}
.y25b{bottom:733.585050px;}
.y8e{bottom:733.752480px;}
.ye8{bottom:734.258145px;}
.ybe{bottom:734.738190px;}
.y112{bottom:736.471680px;}
.y1e8{bottom:738.001230px;}
.y32{bottom:738.477090px;}
.y142{bottom:738.528975px;}
.y1bb{bottom:739.003935px;}
.y331{bottom:739.792650px;}
.y34e{bottom:744.763800px;}
.y193{bottom:745.822950px;}
.y2dc{bottom:746.003700px;}
.y285{bottom:746.071200px;}
.y2b0{bottom:748.940250px;}
.y38b{bottom:749.023800px;}
.y5f{bottom:749.573280px;}
.y8d{bottom:752.270850px;}
.ye7{bottom:752.448975px;}
.ybd{bottom:753.166950px;}
.y307{bottom:753.584700px;}
.y1e7{bottom:756.133350px;}
.y330{bottom:756.292350px;}
.y31{bottom:756.565950px;}
.y141{bottom:756.613200px;}
.y1ba{bottom:757.044900px;}
.y34d{bottom:757.344900px;}
.y212{bottom:757.689165px;}
.y25a{bottom:759.209400px;}
.y192{bottom:759.468000px;}
.y7{bottom:762.546600px;}
.y2db{bottom:762.732900px;}
.y284{bottom:762.793650px;}
.y38a{bottom:765.523500px;}
.y111{bottom:767.306790px;}
.y34c{bottom:769.926000px;}
.y8c{bottom:770.789220px;}
.y306{bottom:771.329700px;}
.ybc{bottom:771.595710px;}
.y191{bottom:773.113200px;}
.y1e6{bottom:774.265470px;}
.y30{bottom:774.654810px;}
.y140{bottom:774.697425px;}
.y2af{bottom:774.759000px;}
.y1b9{bottom:775.085865px;}
.y259{bottom:776.330100px;}
.y238{bottom:777.080460px;}
.ye6{bottom:779.145030px;}
.y2da{bottom:779.462100px;}
.y32f{bottom:781.295700px;}
.y389{bottom:782.023200px;}
.y34b{bottom:782.507100px;}
.y6{bottom:785.796600px;}
.y190{bottom:786.758400px;}
.y283{bottom:788.019750px;}
.y8b{bottom:789.307590px;}
.ybb{bottom:790.024470px;}
.y2ae{bottom:792.074100px;}
.y1e5{bottom:792.397590px;}
.y2f{bottom:792.743670px;}
.y13f{bottom:792.781650px;}
.y5e{bottom:793.126830px;}
.y237{bottom:795.549390px;}
.ye5{bottom:797.337405px;}
.y305{bottom:797.579100px;}
.y32e{bottom:797.795400px;}
.y388{bottom:798.522900px;}
.y18f{bottom:800.403600px;}
.y34a{bottom:801.465900px;}
.y258{bottom:801.954450px;}
.y2d9{bottom:804.694950px;}
.y282{bottom:804.742200px;}
.y8a{bottom:807.825960px;}
.yba{bottom:808.453230px;}
.y2ad{bottom:809.389200px;}
.y1e4{bottom:810.529710px;}
.y2e{bottom:810.832530px;}
.y13e{bottom:810.865875px;}
.y110{bottom:810.897420px;}
.y5d{bottom:811.167795px;}
.y5{bottom:811.901100px;}
.y349{bottom:814.047000px;}
.y18e{bottom:814.048800px;}
.y387{bottom:815.022600px;}
.y304{bottom:815.324850px;}
.ye4{bottom:815.529780px;}
.y257{bottom:819.075150px;}
.y2d8{bottom:821.424150px;}
.y32d{bottom:822.801150px;}
.y89{bottom:826.344330px;}
.y348{bottom:826.628100px;}
.y2ac{bottom:826.704300px;}
.yb9{bottom:826.881990px;}
.y211{bottom:827.104470px;}
.y1e3{bottom:828.661830px;}
.y2d{bottom:828.921390px;}
.y13d{bottom:828.949200px;}
.y10f{bottom:828.977010px;}
.y5c{bottom:829.208760px;}
.y281{bottom:829.968300px;}
.y236{bottom:831.025680px;}
.y386{bottom:831.522300px;}
.y303{bottom:833.070600px;}
.ye3{bottom:833.722155px;}
.y18d{bottom:834.072000px;}
.y347{bottom:839.209200px;}
.y32c{bottom:839.300850px;}
.y4{bottom:844.460250px;}
.y256{bottom:844.699500px;}
.y88{bottom:844.862700px;}
.yb8{bottom:845.310750px;}
.y210{bottom:845.496150px;}
.y2d7{bottom:846.657000px;}
.y280{bottom:846.690750px;}
.y1e2{bottom:846.793950px;}
.y2c{bottom:847.010250px;}
.y13c{bottom:847.033425px;}
.y10e{bottom:847.056600px;}
.y5b{bottom:847.249725px;}
.y18c{bottom:847.717050px;}
.y385{bottom:848.022000px;}
.y346{bottom:851.790300px;}
.ye2{bottom:851.914530px;}
.y2ab{bottom:852.524400px;}
.y302{bottom:859.320000px;}
.y18b{bottom:861.362250px;}
.y255{bottom:861.820200px;}
.y87{bottom:863.381070px;}
.y2d6{bottom:863.386200px;}
.y27f{bottom:863.413200px;}
.yb7{bottom:863.739510px;}
.y20f{bottom:863.887830px;}
.y32b{bottom:864.304200px;}
.y345{bottom:864.371400px;}
.y384{bottom:864.521700px;}
.y1e1{bottom:864.926070px;}
.y2b{bottom:865.099110px;}
.y13b{bottom:865.117650px;}
.y10d{bottom:865.136190px;}
.y5a{bottom:865.290690px;}
.y3{bottom:865.754250px;}
.ye1{bottom:870.106905px;}
.y344{bottom:876.952500px;}
.y301{bottom:877.065750px;}
.y2aa{bottom:878.343150px;}
.y254{bottom:878.940900px;}
.y2d5{bottom:880.115400px;}
.y32a{bottom:880.803900px;}
.y383{bottom:881.021400px;}
.y18a{bottom:881.385450px;}
.y86{bottom:881.899440px;}
.yb6{bottom:882.168270px;}
.y20e{bottom:882.279510px;}
.y1e0{bottom:883.058190px;}
.y2a{bottom:883.187970px;}
.y13a{bottom:883.201875px;}
.y10c{bottom:883.215780px;}
.y59{bottom:883.331655px;}
.y235{bottom:883.509330px;}
.ye0{bottom:888.299280px;}
.y27e{bottom:888.639300px;}
.y189{bottom:895.030650px;}
.y2a9{bottom:895.658250px;}
.y343{bottom:895.911300px;}
.y253{bottom:896.061600px;}
.y382{bottom:897.521100px;}
.y85{bottom:900.417810px;}
.yb5{bottom:900.597030px;}
.y20d{bottom:900.671190px;}
.y1df{bottom:901.190310px;}
.y29{bottom:901.276830px;}
.y139{bottom:901.286100px;}
.y10b{bottom:901.295370px;}
.y58{bottom:901.372620px;}
.y234{bottom:901.978260px;}
.y300{bottom:903.315150px;}
.y2d4{bottom:905.348250px;}
.y27d{bottom:905.361750px;}
.y329{bottom:905.807250px;}
.ydf{bottom:906.491655px;}
.y342{bottom:914.870400px;}
.y188{bottom:915.053700px;}
.y180{bottom:918.452595px;}
.y84{bottom:918.936180px;}
.yb4{bottom:919.025790px;}
.y20c{bottom:919.062870px;}
.y1de{bottom:919.322430px;}
.y28{bottom:919.365690px;}
.y138{bottom:919.370325px;}
.y10a{bottom:919.374960px;}
.y57{bottom:919.413585px;}
.y2ff{bottom:921.060900px;}
.y2a8{bottom:921.478350px;}
.y252{bottom:921.685950px;}
.y2d3{bottom:922.077450px;}
.y27c{bottom:922.084200px;}
.y328{bottom:922.306950px;}
.y381{bottom:922.524450px;}
.yde{bottom:937.439550px;}
.y187{bottom:937.450950px;}
.y27{bottom:937.454550px;}
.y341{bottom:937.703550px;}
.y2{bottom:938.076450px;}
.y2a7{bottom:938.793450px;}
.y251{bottom:938.806650px;}
.y380{bottom:939.024150px;}
.h3{height:32.256000px;}
.h7{height:32.846484px;}
.h12{height:36.852539px;}
.h13{height:37.625977px;}
.hd{height:42.117188px;}
.he{height:42.117787px;}
.hb{height:42.909961px;}
.h10{height:43.060840px;}
.h9{height:47.381836px;}
.h11{height:47.384836px;}
.h4{height:50.167969px;}
.h8{height:52.646484px;}
.ha{height:54.225879px;}
.hf{height:54.229479px;}
.hc{height:54.248079px;}
.h6{height:57.911133px;}
.h5{height:63.175781px;}
.h1{height:1011.750000px;}
.h2{height:1011.946500px;}
.h0{height:1011.969000px;}
.w2{width:722.812500px;}
.w3{width:722.812502px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.756750px;}
.x5{left:65.256450px;}
.x7{left:66.442201px;}
.x3{left:80.767200px;}
.x6{left:82.264456px;}
.x2{left:89.268750px;}
.x4{left:634.356150px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v4{vertical-align:-14.060267pt;}
.v6{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v7{vertical-align:15.839467pt;}
.v3{vertical-align:17.600000pt;}
.v1{vertical-align:19.360533pt;}
.ls82{letter-spacing:-1.428267pt;}
.ls61{letter-spacing:-1.252480pt;}
.ls64{letter-spacing:-1.076693pt;}
.lsb7{letter-spacing:-1.012800pt;}
.ls72{letter-spacing:-0.999787pt;}
.lsc1{letter-spacing:-0.945600pt;}
.lsc2{letter-spacing:-0.926400pt;}
.lsc3{letter-spacing:-0.921600pt;}
.ls62{letter-spacing:-0.824000pt;}
.ls79{letter-spacing:-0.791040pt;}
.ls63{letter-spacing:-0.774560pt;}
.ls71{letter-spacing:-0.769067pt;}
.ls7a{letter-spacing:-0.758080pt;}
.ls29{letter-spacing:-0.752587pt;}
.ls66{letter-spacing:-0.747093pt;}
.lsb6{letter-spacing:-0.744000pt;}
.ls96{letter-spacing:-0.736107pt;}
.lsb8{letter-spacing:-0.720000pt;}
.lsa1{letter-spacing:-0.700800pt;}
.ls73{letter-spacing:-0.670187pt;}
.ls74{letter-spacing:-0.659200pt;}
.ls83{letter-spacing:-0.642720pt;}
.ls51{letter-spacing:-0.637227pt;}
.lsc7{letter-spacing:-0.609600pt;}
.ls70{letter-spacing:-0.587787pt;}
.ls65{letter-spacing:-0.584533pt;}
.ls1d{letter-spacing:-0.549333pt;}
.lsd5{letter-spacing:-0.547200pt;}
.ls1f{letter-spacing:-0.538347pt;}
.ls47{letter-spacing:-0.532853pt;}
.lsa3{letter-spacing:-0.528000pt;}
.ls38{letter-spacing:-0.527360pt;}
.ls7e{letter-spacing:-0.521867pt;}
.ls52{letter-spacing:-0.516373pt;}
.lscd{letter-spacing:-0.508800pt;}
.ls81{letter-spacing:-0.499893pt;}
.ls54{letter-spacing:-0.494400pt;}
.lsb5{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.477920pt;}
.ls2e{letter-spacing:-0.472427pt;}
.lsb9{letter-spacing:-0.470400pt;}
.lsd0{letter-spacing:-0.465600pt;}
.ls3d{letter-spacing:-0.444960pt;}
.ls11{letter-spacing:-0.439467pt;}
.ls36{letter-spacing:-0.428480pt;}
.ls57{letter-spacing:-0.422987pt;}
.lsc6{letter-spacing:-0.422400pt;}
.lsad{letter-spacing:-0.412800pt;}
.ls17{letter-spacing:-0.412000pt;}
.lsd4{letter-spacing:-0.408000pt;}
.ls8a{letter-spacing:-0.406507pt;}
.ls16{letter-spacing:-0.401013pt;}
.ls2d{letter-spacing:-0.395520pt;}
.lsb0{letter-spacing:-0.388800pt;}
.ls56{letter-spacing:-0.384533pt;}
.ls1b{letter-spacing:-0.379040pt;}
.ls90{letter-spacing:-0.373547pt;}
.ls3c{letter-spacing:-0.368053pt;}
.lsf{letter-spacing:-0.362560pt;}
.ls87{letter-spacing:-0.357067pt;}
.lsbd{letter-spacing:-0.350400pt;}
.ls6d{letter-spacing:-0.340587pt;}
.ls9e{letter-spacing:-0.326400pt;}
.ls91{letter-spacing:-0.324107pt;}
.ls3e{letter-spacing:-0.307627pt;}
.lsd{letter-spacing:-0.297600pt;}
.ls89{letter-spacing:-0.296640pt;}
.lsae{letter-spacing:-0.288000pt;}
.lsbe{letter-spacing:-0.283200pt;}
.ls44{letter-spacing:-0.280160pt;}
.lsa0{letter-spacing:-0.278400pt;}
.ls50{letter-spacing:-0.274667pt;}
.ls6e{letter-spacing:-0.269173pt;}
.ls77{letter-spacing:-0.263680pt;}
.lsa7{letter-spacing:-0.249600pt;}
.ls7f{letter-spacing:-0.247200pt;}
.lsa2{letter-spacing:-0.240000pt;}
.ls45{letter-spacing:-0.236213pt;}
.lsaf{letter-spacing:-0.235200pt;}
.ls8b{letter-spacing:-0.230720pt;}
.lsc8{letter-spacing:-0.230400pt;}
.lsb4{letter-spacing:-0.225600pt;}
.lsc9{letter-spacing:-0.220800pt;}
.ls93{letter-spacing:-0.219733pt;}
.ls3b{letter-spacing:-0.214240pt;}
.ls95{letter-spacing:-0.208747pt;}
.lscf{letter-spacing:-0.206400pt;}
.ls78{letter-spacing:-0.203253pt;}
.lsba{letter-spacing:-0.201600pt;}
.ls7c{letter-spacing:-0.197760pt;}
.ls2c{letter-spacing:-0.192267pt;}
.lsbb{letter-spacing:-0.187200pt;}
.ls7b{letter-spacing:-0.186773pt;}
.lsc4{letter-spacing:-0.182400pt;}
.ls18{letter-spacing:-0.181280pt;}
.ls4e{letter-spacing:-0.175787pt;}
.lsd1{letter-spacing:-0.172800pt;}
.ls48{letter-spacing:-0.164800pt;}
.ls86{letter-spacing:-0.159307pt;}
.ls80{letter-spacing:-0.153813pt;}
.ls75{letter-spacing:-0.148320pt;}
.lsb{letter-spacing:-0.147200pt;}
.lsa{letter-spacing:-0.144000pt;}
.lsa4{letter-spacing:-0.139200pt;}
.lsa5{letter-spacing:-0.134400pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.126347pt;}
.lse{letter-spacing:-0.120000pt;}
.lsd6{letter-spacing:-0.105600pt;}
.ls6f{letter-spacing:-0.104373pt;}
.ls46{letter-spacing:-0.098880pt;}
.ls3a{letter-spacing:-0.093387pt;}
.ls8d{letter-spacing:-0.087893pt;}
.ls2f{letter-spacing:-0.082400pt;}
.lsc5{letter-spacing:-0.081600pt;}
.ls53{letter-spacing:-0.071413pt;}
.lsbc{letter-spacing:-0.067200pt;}
.ls2b{letter-spacing:-0.060427pt;}
.ls19{letter-spacing:-0.054933pt;}
.ls99{letter-spacing:-0.052800pt;}
.ls1e{letter-spacing:-0.049440pt;}
.ls15{letter-spacing:-0.043947pt;}
.ls2a{letter-spacing:-0.032960pt;}
.ls8e{letter-spacing:-0.027467pt;}
.ls1c{letter-spacing:-0.021973pt;}
.ls1a{letter-spacing:-0.016480pt;}
.lsbf{letter-spacing:-0.014400pt;}
.lsd2{letter-spacing:-0.009600pt;}
.ls60{letter-spacing:-0.005493pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000533pt;}
.ls5c{letter-spacing:0.001067pt;}
.ls67{letter-spacing:0.003200pt;}
.ls68{letter-spacing:0.003947pt;}
.ls2{letter-spacing:0.004800pt;}
.ls5b{letter-spacing:0.006400pt;}
.ls5a{letter-spacing:0.009600pt;}
.ls35{letter-spacing:0.010987pt;}
.ls4{letter-spacing:0.014400pt;}
.lsa9{letter-spacing:0.019200pt;}
.ls97{letter-spacing:0.028800pt;}
.lsaa{letter-spacing:0.033600pt;}
.ls94{letter-spacing:0.038453pt;}
.lsb1{letter-spacing:0.043200pt;}
.ls34{letter-spacing:0.043947pt;}
.ls5{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.049440pt;}
.ls31{letter-spacing:0.054933pt;}
.ls88{letter-spacing:0.060427pt;}
.ls7d{letter-spacing:0.071413pt;}
.ls98{letter-spacing:0.082400pt;}
.lscb{letter-spacing:0.086400pt;}
.ls0{letter-spacing:0.093333pt;}
.ls26{letter-spacing:0.098880pt;}
.ls37{letter-spacing:0.109867pt;}
.ls55{letter-spacing:0.120853pt;}
.ls22{letter-spacing:0.126347pt;}
.ls23{letter-spacing:0.131840pt;}
.ls6{letter-spacing:0.137333pt;}
.lsdb{letter-spacing:0.139200pt;}
.ls4b{letter-spacing:0.142827pt;}
.ls24{letter-spacing:0.148320pt;}
.ls9d{letter-spacing:0.153600pt;}
.ls3f{letter-spacing:0.153813pt;}
.lsa6{letter-spacing:0.155520pt;}
.ls9c{letter-spacing:0.158400pt;}
.lsac{letter-spacing:0.163200pt;}
.ls40{letter-spacing:0.164800pt;}
.lsda{letter-spacing:0.168000pt;}
.ls4c{letter-spacing:0.181280pt;}
.ls9f{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.197760pt;}
.ls92{letter-spacing:0.208747pt;}
.ls9b{letter-spacing:0.211200pt;}
.ls27{letter-spacing:0.219733pt;}
.ls14{letter-spacing:0.225227pt;}
.ls9a{letter-spacing:0.235200pt;}
.lsab{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.241707pt;}
.ls32{letter-spacing:0.263680pt;}
.lsc0{letter-spacing:0.268800pt;}
.ls21{letter-spacing:0.274667pt;}
.lsd9{letter-spacing:0.283200pt;}
.ls13{letter-spacing:0.285653pt;}
.ls25{letter-spacing:0.318613pt;}
.ls8c{letter-spacing:0.324107pt;}
.ls59{letter-spacing:0.329600pt;}
.lsb2{letter-spacing:0.336000pt;}
.ls76{letter-spacing:0.340587pt;}
.ls33{letter-spacing:0.368053pt;}
.lsa8{letter-spacing:0.369600pt;}
.ls41{letter-spacing:0.373547pt;}
.lsd3{letter-spacing:0.384000pt;}
.lsb3{letter-spacing:0.388800pt;}
.lsca{letter-spacing:0.398400pt;}
.ls42{letter-spacing:0.401013pt;}
.ls43{letter-spacing:0.417493pt;}
.ls7{letter-spacing:0.433973pt;}
.ls4a{letter-spacing:0.439467pt;}
.lscc{letter-spacing:0.446400pt;}
.ls8f{letter-spacing:0.472427pt;}
.ls4d{letter-spacing:0.477920pt;}
.ls3{letter-spacing:0.480000pt;}
.lsce{letter-spacing:0.480960pt;}
.lsd8{letter-spacing:0.485333pt;}
.ls84{letter-spacing:0.488907pt;}
.ls85{letter-spacing:0.499893pt;}
.ls28{letter-spacing:0.527360pt;}
.ls58{letter-spacing:0.532853pt;}
.ls20{letter-spacing:0.538347pt;}
.ls12{letter-spacing:0.543840pt;}
.ls8{letter-spacing:0.549333pt;}
.ls5f{letter-spacing:0.560320pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls6b{letter-spacing:7.023467pt;}
.ls69{letter-spacing:7.024000pt;}
.ls6a{letter-spacing:7.815467pt;}
.lsd7{letter-spacing:9.053333pt;}
.ls6c{letter-spacing:9.676800pt;}
.ls1{letter-spacing:11.186667pt;}
.wsb6{word-spacing:-54.933333pt;}
.ws19c{word-spacing:-48.000000pt;}
.ws125{word-spacing:-42.666667pt;}
.wsb5{word-spacing:-14.282667pt;}
.wsff{word-spacing:-13.887147pt;}
.ws2{word-spacing:-13.870667pt;}
.ws6e{word-spacing:-13.782773pt;}
.ws96{word-spacing:-13.733333pt;}
.wsb7{word-spacing:-13.096107pt;}
.ws19d{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws19e{word-spacing:-11.299200pt;}
.wsdc{word-spacing:-10.666667pt;}
.wsdb{word-spacing:-10.082133pt;}
.wsde{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.800000pt;}
.wsf4{word-spacing:-8.240000pt;}
.ws1{word-spacing:-7.852800pt;}
.ws20b{word-spacing:-7.680960pt;}
.ws19f{word-spacing:-7.355520pt;}
.ws1bc{word-spacing:-7.200000pt;}
.wsf6{word-spacing:-6.400000pt;}
.ws1f8{word-spacing:-4.243200pt;}
.ws1a7{word-spacing:-2.649600pt;}
.ws1fa{word-spacing:-2.222400pt;}
.ws34{word-spacing:-2.060000pt;}
.wsdf{word-spacing:-2.054507pt;}
.ws2f{word-spacing:-2.043520pt;}
.ws37{word-spacing:-2.038027pt;}
.ws15b{word-spacing:-2.032533pt;}
.ws50{word-spacing:-2.027040pt;}
.ws108{word-spacing:-2.021547pt;}
.ws23{word-spacing:-2.016053pt;}
.ws40{word-spacing:-2.010560pt;}
.ws2b{word-spacing:-2.005067pt;}
.ws53{word-spacing:-1.999573pt;}
.wsee{word-spacing:-1.988587pt;}
.ws6c{word-spacing:-1.977600pt;}
.ws8f{word-spacing:-1.972107pt;}
.ws85{word-spacing:-1.966613pt;}
.ws3e{word-spacing:-1.961120pt;}
.ws106{word-spacing:-1.955627pt;}
.ws10f{word-spacing:-1.950133pt;}
.ws10e{word-spacing:-1.939147pt;}
.ws80{word-spacing:-1.933653pt;}
.ws111{word-spacing:-1.911680pt;}
.ws141{word-spacing:-1.900693pt;}
.wsae{word-spacing:-1.895200pt;}
.ws171{word-spacing:-1.889707pt;}
.ws2a{word-spacing:-1.878720pt;}
.ws7{word-spacing:-1.872000pt;}
.ws58{word-spacing:-1.867733pt;}
.wseb{word-spacing:-1.862240pt;}
.wsea{word-spacing:-1.856747pt;}
.ws6{word-spacing:-1.856000pt;}
.ws13b{word-spacing:-1.851253pt;}
.ws88{word-spacing:-1.845760pt;}
.ws10b{word-spacing:-1.840267pt;}
.ws10a{word-spacing:-1.834773pt;}
.ws156{word-spacing:-1.829280pt;}
.ws77{word-spacing:-1.823787pt;}
.wsca{word-spacing:-1.818293pt;}
.ws12f{word-spacing:-1.812800pt;}
.wse8{word-spacing:-1.807307pt;}
.ws155{word-spacing:-1.796320pt;}
.ws104{word-spacing:-1.790827pt;}
.ws1ee{word-spacing:-1.785600pt;}
.ws97{word-spacing:-1.779840pt;}
.ws20f{word-spacing:-1.771200pt;}
.ws73{word-spacing:-1.768853pt;}
.ws14c{word-spacing:-1.763360pt;}
.ws92{word-spacing:-1.752373pt;}
.ws198{word-spacing:-1.747200pt;}
.ws133{word-spacing:-1.746880pt;}
.ws165{word-spacing:-1.735893pt;}
.ws1e5{word-spacing:-1.732800pt;}
.ws136{word-spacing:-1.730400pt;}
.ws182{word-spacing:-1.724907pt;}
.ws103{word-spacing:-1.719413pt;}
.ws200{word-spacing:-1.718400pt;}
.ws135{word-spacing:-1.713920pt;}
.ws1e{word-spacing:-1.702933pt;}
.ws1de{word-spacing:-1.699200pt;}
.ws17{word-spacing:-1.697440pt;}
.ws226{word-spacing:-1.694400pt;}
.ws90{word-spacing:-1.691947pt;}
.ws2e{word-spacing:-1.686453pt;}
.wsdd{word-spacing:-1.682667pt;}
.ws31{word-spacing:-1.680960pt;}
.ws15{word-spacing:-1.680000pt;}
.wsd0{word-spacing:-1.675467pt;}
.ws5c{word-spacing:-1.664480pt;}
.ws1b2{word-spacing:-1.660800pt;}
.ws24{word-spacing:-1.658987pt;}
.ws14f{word-spacing:-1.653493pt;}
.ws29{word-spacing:-1.648000pt;}
.wsd4{word-spacing:-1.637013pt;}
.ws7a{word-spacing:-1.631520pt;}
.ws21d{word-spacing:-1.627200pt;}
.wsaf{word-spacing:-1.626027pt;}
.ws20{word-spacing:-1.620533pt;}
.ws1fe{word-spacing:-1.617600pt;}
.ws91{word-spacing:-1.615040pt;}
.ws1d4{word-spacing:-1.612800pt;}
.ws10d{word-spacing:-1.609547pt;}
.wsf1{word-spacing:-1.604053pt;}
.ws186{word-spacing:-1.598560pt;}
.ws1e1{word-spacing:-1.598400pt;}
.ws1f9{word-spacing:-1.593600pt;}
.ws63{word-spacing:-1.587573pt;}
.ws1d{word-spacing:-1.582080pt;}
.ws1f3{word-spacing:-1.579200pt;}
.ws1ac{word-spacing:-1.574400pt;}
.wsce{word-spacing:-1.565600pt;}
.ws1c4{word-spacing:-1.564800pt;}
.ws1d3{word-spacing:-1.560000pt;}
.ws11{word-spacing:-1.550400pt;}
.ws12d{word-spacing:-1.538133pt;}
.ws1d5{word-spacing:-1.536000pt;}
.ws7d{word-spacing:-1.532640pt;}
.wsa{word-spacing:-1.531200pt;}
.wsad{word-spacing:-1.527147pt;}
.ws49{word-spacing:-1.521653pt;}
.ws1aa{word-spacing:-1.521600pt;}
.ws1eb{word-spacing:-1.516800pt;}
.ws1ae{word-spacing:-1.512000pt;}
.ws3b{word-spacing:-1.510667pt;}
.ws1db{word-spacing:-1.507200pt;}
.wsc{word-spacing:-1.502400pt;}
.ws21a{word-spacing:-1.497600pt;}
.ws225{word-spacing:-1.492800pt;}
.ws1a0{word-spacing:-1.473600pt;}
.ws18c{word-spacing:-1.466720pt;}
.ws61{word-spacing:-1.455733pt;}
.ws195{word-spacing:-1.450240pt;}
.ws1e6{word-spacing:-1.449600pt;}
.ws206{word-spacing:-1.430400pt;}
.ws192{word-spacing:-1.422773pt;}
.ws1c5{word-spacing:-1.411200pt;}
.ws1bd{word-spacing:-1.387200pt;}
.ws175{word-spacing:-1.384320pt;}
.ws202{word-spacing:-1.377600pt;}
.ws11d{word-spacing:-1.373333pt;}
.ws1cc{word-spacing:-1.339200pt;}
.wsb2{word-spacing:-1.334880pt;}
.ws21b{word-spacing:-1.334400pt;}
.ws1dd{word-spacing:-1.329600pt;}
.ws26{word-spacing:-1.323893pt;}
.ws18a{word-spacing:-1.296427pt;}
.ws169{word-spacing:-1.290933pt;}
.ws230{word-spacing:-1.286400pt;}
.ws5d{word-spacing:-1.263467pt;}
.ws57{word-spacing:-1.246987pt;}
.ws4a{word-spacing:-1.236000pt;}
.ws1f4{word-spacing:-1.228800pt;}
.ws12b{word-spacing:-1.214027pt;}
.ws48{word-spacing:-1.208533pt;}
.ws51{word-spacing:-1.203040pt;}
.ws16f{word-spacing:-1.181067pt;}
.ws12{word-spacing:-1.142400pt;}
.ws25{word-spacing:-1.137120pt;}
.ws201{word-spacing:-1.118400pt;}
.ws1a8{word-spacing:-1.094400pt;}
.ws1b7{word-spacing:-1.084800pt;}
.ws220{word-spacing:-1.080000pt;}
.ws72{word-spacing:-1.065707pt;}
.ws7b{word-spacing:-0.999787pt;}
.ws128{word-spacing:-0.917387pt;}
.ws1b0{word-spacing:-0.916800pt;}
.ws5e{word-spacing:-0.873440pt;}
.ws170{word-spacing:-0.862453pt;}
.ws227{word-spacing:-0.844800pt;}
.ws215{word-spacing:-0.840000pt;}
.ws43{word-spacing:-0.769067pt;}
.ws22c{word-spacing:-0.768000pt;}
.wsa0{word-spacing:-0.763573pt;}
.ws1c6{word-spacing:-0.763200pt;}
.ws1c7{word-spacing:-0.758400pt;}
.ws20d{word-spacing:-0.753600pt;}
.ws207{word-spacing:-0.739200pt;}
.wsd5{word-spacing:-0.730613pt;}
.ws164{word-spacing:-0.725120pt;}
.ws23d{word-spacing:-0.724800pt;}
.ws1b1{word-spacing:-0.710400pt;}
.ws151{word-spacing:-0.708640pt;}
.ws1c3{word-spacing:-0.705600pt;}
.ws105{word-spacing:-0.692160pt;}
.wse0{word-spacing:-0.653707pt;}
.ws1d7{word-spacing:-0.633600pt;}
.ws1d1{word-spacing:-0.609600pt;}
.ws27{word-spacing:-0.598773pt;}
.ws130{word-spacing:-0.543840pt;}
.ws1cb{word-spacing:-0.542400pt;}
.ws17e{word-spacing:-0.538347pt;}
.wsa6{word-spacing:-0.532853pt;}
.ws52{word-spacing:-0.521867pt;}
.ws7f{word-spacing:-0.516373pt;}
.wsbf{word-spacing:-0.505387pt;}
.ws1a1{word-spacing:-0.504000pt;}
.wsc9{word-spacing:-0.499893pt;}
.wsc6{word-spacing:-0.494400pt;}
.ws8d{word-spacing:-0.488907pt;}
.ws1ff{word-spacing:-0.465600pt;}
.ws173{word-spacing:-0.461440pt;}
.ws20a{word-spacing:-0.427200pt;}
.ws13d{word-spacing:-0.406507pt;}
.ws11e{word-spacing:-0.395520pt;}
.ws1ed{word-spacing:-0.384000pt;}
.ws1af{word-spacing:-0.360000pt;}
.ws237{word-spacing:-0.355200pt;}
.wsfc{word-spacing:-0.285867pt;}
.wsfb{word-spacing:-0.285333pt;}
.ws22b{word-spacing:-0.273600pt;}
.ws17b{word-spacing:-0.241707pt;}
.ws221{word-spacing:-0.235200pt;}
.ws14a{word-spacing:-0.230720pt;}
.ws222{word-spacing:-0.225600pt;}
.ws21e{word-spacing:-0.220800pt;}
.wsbb{word-spacing:-0.208747pt;}
.ws1b5{word-spacing:-0.177600pt;}
.ws191{word-spacing:-0.109867pt;}
.ws20c{word-spacing:-0.091200pt;}
.ws185{word-spacing:-0.087893pt;}
.ws131{word-spacing:-0.071413pt;}
.ws1ef{word-spacing:-0.048000pt;}
.ws101{word-spacing:-0.021973pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f2{word-spacing:0.009600pt;}
.ws75{word-spacing:0.021973pt;}
.ws1a5{word-spacing:0.024000pt;}
.wse5{word-spacing:0.038453pt;}
.ws132{word-spacing:0.098880pt;}
.ws118{word-spacing:0.104373pt;}
.ws22f{word-spacing:0.115200pt;}
.ws1ad{word-spacing:0.120000pt;}
.ws115{word-spacing:0.120853pt;}
.ws224{word-spacing:0.144000pt;}
.ws4f{word-spacing:0.164800pt;}
.ws11c{word-spacing:0.192267pt;}
.ws233{word-spacing:0.196800pt;}
.wsd1{word-spacing:0.197760pt;}
.ws1e2{word-spacing:0.216000pt;}
.wsfd{word-spacing:0.254933pt;}
.ws6d{word-spacing:0.263680pt;}
.ws1b8{word-spacing:0.268800pt;}
.ws89{word-spacing:0.269173pt;}
.ws204{word-spacing:0.273600pt;}
.ws214{word-spacing:0.278400pt;}
.wsc1{word-spacing:0.280160pt;}
.ws1b{word-spacing:0.329600pt;}
.ws1e3{word-spacing:0.336000pt;}
.ws159{word-spacing:0.340587pt;}
.ws211{word-spacing:0.355200pt;}
.wsf{word-spacing:0.384000pt;}
.ws23b{word-spacing:0.393600pt;}
.ws1dc{word-spacing:0.412800pt;}
.ws1fb{word-spacing:0.427200pt;}
.wsc8{word-spacing:0.450453pt;}
.ws71{word-spacing:0.488907pt;}
.ws10{word-spacing:0.532800pt;}
.ws5b{word-spacing:0.549333pt;}
.wsc4{word-spacing:0.576800pt;}
.ws94{word-spacing:0.609760pt;}
.ws1d8{word-spacing:0.619200pt;}
.wsfe{word-spacing:0.622933pt;}
.wsf9{word-spacing:0.623467pt;}
.wsf7{word-spacing:0.624000pt;}
.ws30{word-spacing:0.681173pt;}
.ws229{word-spacing:0.681600pt;}
.ws39{word-spacing:0.686667pt;}
.ws205{word-spacing:0.739200pt;}
.ws1fd{word-spacing:0.744000pt;}
.ws134{word-spacing:0.758080pt;}
.ws35{word-spacing:0.802027pt;}
.ws232{word-spacing:0.820800pt;}
.ws1c{word-spacing:0.824000pt;}
.ws1e7{word-spacing:0.835200pt;}
.ws196{word-spacing:0.851467pt;}
.ws153{word-spacing:0.856960pt;}
.wsa8{word-spacing:0.862453pt;}
.ws14b{word-spacing:0.889920pt;}
.ws160{word-spacing:0.911893pt;}
.ws150{word-spacing:0.922880pt;}
.ws174{word-spacing:0.939360pt;}
.ws238{word-spacing:0.940800pt;}
.ws1f7{word-spacing:0.969600pt;}
.ws3a{word-spacing:0.999787pt;}
.ws1c8{word-spacing:1.060800pt;}
.wsd3{word-spacing:1.071200pt;}
.ws33{word-spacing:1.076693pt;}
.wsec{word-spacing:1.093173pt;}
.ws14{word-spacing:1.099200pt;}
.wsbe{word-spacing:1.104160pt;}
.ws1d6{word-spacing:1.108800pt;}
.ws59{word-spacing:1.115147pt;}
.ws119{word-spacing:1.131627pt;}
.ws1ca{word-spacing:1.137600pt;}
.ws9d{word-spacing:1.159093pt;}
.ws11b{word-spacing:1.181067pt;}
.ws100{word-spacing:1.186560pt;}
.ws149{word-spacing:1.197547pt;}
.wsf0{word-spacing:1.268960pt;}
.wse{word-spacing:1.276800pt;}
.ws83{word-spacing:1.279947pt;}
.ws102{word-spacing:1.285440pt;}
.ws197{word-spacing:1.348800pt;}
.ws3c{word-spacing:1.362347pt;}
.ws15a{word-spacing:1.367840pt;}
.ws157{word-spacing:1.422773pt;}
.ws21{word-spacing:1.425600pt;}
.ws193{word-spacing:1.499680pt;}
.wse2{word-spacing:1.505173pt;}
.ws98{word-spacing:1.516160pt;}
.ws1df{word-spacing:1.521600pt;}
.ws23a{word-spacing:1.526400pt;}
.ws16a{word-spacing:1.560107pt;}
.ws1ab{word-spacing:1.564800pt;}
.wsc5{word-spacing:1.565600pt;}
.ws1a6{word-spacing:1.584000pt;}
.ws166{word-spacing:1.648000pt;}
.ws2c{word-spacing:1.669973pt;}
.wsb0{word-spacing:1.680960pt;}
.wsa3{word-spacing:1.708427pt;}
.wscb{word-spacing:1.724907pt;}
.ws13a{word-spacing:1.752373pt;}
.ws11a{word-spacing:1.757867pt;}
.wsd2{word-spacing:1.779840pt;}
.ws1d9{word-spacing:1.814400pt;}
.ws152{word-spacing:1.829280pt;}
.wsa4{word-spacing:1.840267pt;}
.ws1e4{word-spacing:1.857600pt;}
.ws16e{word-spacing:1.889707pt;}
.ws18d{word-spacing:1.928160pt;}
.ws18b{word-spacing:1.933653pt;}
.ws67{word-spacing:1.939147pt;}
.ws84{word-spacing:1.983093pt;}
.ws145{word-spacing:1.994080pt;}
.ws81{word-spacing:2.032533pt;}
.ws137{word-spacing:2.043520pt;}
.wsf8{word-spacing:2.052800pt;}
.wsf5{word-spacing:2.053333pt;}
.ws1c0{word-spacing:2.068800pt;}
.ws110{word-spacing:2.070987pt;}
.ws66{word-spacing:2.087467pt;}
.wsab{word-spacing:2.092960pt;}
.ws15e{word-spacing:2.098453pt;}
.ws93{word-spacing:2.136907pt;}
.ws167{word-spacing:2.175360pt;}
.ws23c{word-spacing:2.208000pt;}
.ws41{word-spacing:2.208320pt;}
.ws217{word-spacing:2.241600pt;}
.ws86{word-spacing:2.268747pt;}
.ws223{word-spacing:2.323200pt;}
.ws234{word-spacing:2.332800pt;}
.ws16c{word-spacing:2.356640pt;}
.ws121{word-spacing:2.362133pt;}
.ws1bb{word-spacing:2.380800pt;}
.ws113{word-spacing:2.384107pt;}
.ws22e{word-spacing:2.404800pt;}
.ws142{word-spacing:2.422560pt;}
.wsd8{word-spacing:2.428053pt;}
.wsb8{word-spacing:2.444533pt;}
.ws82{word-spacing:2.510453pt;}
.ws6f{word-spacing:2.526933pt;}
.ws154{word-spacing:2.532427pt;}
.ws21c{word-spacing:2.553600pt;}
.ws56{word-spacing:2.559893pt;}
.ws1f6{word-spacing:2.592000pt;}
.ws218{word-spacing:2.601600pt;}
.ws1e9{word-spacing:2.611200pt;}
.wsb1{word-spacing:2.614827pt;}
.ws22a{word-spacing:2.616000pt;}
.ws14d{word-spacing:2.620320pt;}
.ws1be{word-spacing:2.630400pt;}
.ws1da{word-spacing:2.664000pt;}
.ws117{word-spacing:2.669760pt;}
.ws144{word-spacing:2.680747pt;}
.ws15f{word-spacing:2.686240pt;}
.wse9{word-spacing:2.702720pt;}
.ws12e{word-spacing:2.708213pt;}
.ws231{word-spacing:2.716800pt;}
.wsed{word-spacing:2.724693pt;}
.ws209{word-spacing:2.731200pt;}
.ws6a{word-spacing:2.757653pt;}
.ws1a2{word-spacing:2.764800pt;}
.ws188{word-spacing:2.779627pt;}
.wsa1{word-spacing:2.785120pt;}
.ws1a3{word-spacing:2.788800pt;}
.ws1a4{word-spacing:2.808000pt;}
.ws235{word-spacing:2.832000pt;}
.ws189{word-spacing:2.834560pt;}
.ws5{word-spacing:2.835200pt;}
.ws1d2{word-spacing:2.836800pt;}
.ws1b3{word-spacing:2.841600pt;}
.ws1b4{word-spacing:2.846400pt;}
.ws236{word-spacing:2.860800pt;}
.ws184{word-spacing:2.884000pt;}
.ws22{word-spacing:2.889493pt;}
.ws4b{word-spacing:2.894987pt;}
.wse1{word-spacing:2.900480pt;}
.ws69{word-spacing:2.905973pt;}
.ws126{word-spacing:2.911467pt;}
.ws219{word-spacing:2.913600pt;}
.ws180{word-spacing:2.916960pt;}
.wscd{word-spacing:2.933440pt;}
.wsb4{word-spacing:2.944427pt;}
.ws203{word-spacing:2.947200pt;}
.ws13{word-spacing:2.952000pt;}
.wsda{word-spacing:2.955413pt;}
.ws15d{word-spacing:2.960907pt;}
.ws1ce{word-spacing:2.966400pt;}
.ws19b{word-spacing:2.971200pt;}
.ws1c1{word-spacing:2.980800pt;}
.wsb{word-spacing:2.985600pt;}
.wsba{word-spacing:2.993867pt;}
.ws8{word-spacing:2.995200pt;}
.ws16{word-spacing:2.999360pt;}
.ws15c{word-spacing:3.010347pt;}
.wsac{word-spacing:3.015840pt;}
.wsaa{word-spacing:3.032320pt;}
.wsa5{word-spacing:3.059787pt;}
.ws8c{word-spacing:3.065280pt;}
.ws19a{word-spacing:3.081600pt;}
.ws19{word-spacing:3.081760pt;}
.ws122{word-spacing:3.092747pt;}
.wse3{word-spacing:3.103733pt;}
.ws158{word-spacing:3.109227pt;}
.ws64{word-spacing:3.114720pt;}
.ws123{word-spacing:3.142187pt;}
.ws32{word-spacing:3.147680pt;}
.ws107{word-spacing:3.158667pt;}
.ws79{word-spacing:3.169653pt;}
.wsd6{word-spacing:3.180640pt;}
.wsbc{word-spacing:3.191627pt;}
.ws17d{word-spacing:3.202613pt;}
.ws42{word-spacing:3.208107pt;}
.ws68{word-spacing:3.213600pt;}
.ws168{word-spacing:3.224587pt;}
.wscc{word-spacing:3.230080pt;}
.wsb3{word-spacing:3.235573pt;}
.wsd9{word-spacing:3.252053pt;}
.wsa2{word-spacing:3.268533pt;}
.wsfa{word-spacing:3.276800pt;}
.ws9e{word-spacing:3.279520pt;}
.ws5a{word-spacing:3.285013pt;}
.wsc0{word-spacing:3.290507pt;}
.ws99{word-spacing:3.296000pt;}
.ws54{word-spacing:3.301493pt;}
.ws4e{word-spacing:3.306987pt;}
.wscf{word-spacing:3.312480pt;}
.ws7c{word-spacing:3.323467pt;}
.ws65{word-spacing:3.334453pt;}
.ws178{word-spacing:3.339947pt;}
.ws11f{word-spacing:3.345440pt;}
.ws16b{word-spacing:3.350933pt;}
.ws120{word-spacing:3.356427pt;}
.ws116{word-spacing:3.361920pt;}
.ws183{word-spacing:3.367413pt;}
.ws146{word-spacing:3.372907pt;}
.ws78{word-spacing:3.378400pt;}
.ws74{word-spacing:3.383893pt;}
.ws8e{word-spacing:3.389387pt;}
.ws17f{word-spacing:3.394880pt;}
.wsf2{word-spacing:3.405867pt;}
.ws70{word-spacing:3.422347pt;}
.ws109{word-spacing:3.488267pt;}
.ws210{word-spacing:3.518400pt;}
.ws212{word-spacing:3.528000pt;}
.ws1a9{word-spacing:3.537600pt;}
.ws1cd{word-spacing:3.595200pt;}
.ws46{word-spacing:3.603627pt;}
.ws161{word-spacing:3.647573pt;}
.ws14e{word-spacing:3.664053pt;}
.wsef{word-spacing:3.708000pt;}
.ws6b{word-spacing:3.713493pt;}
.ws1d0{word-spacing:3.840000pt;}
.ws16d{word-spacing:3.916747pt;}
.wsd{word-spacing:3.940800pt;}
.ws13e{word-spacing:3.944213pt;}
.wsd7{word-spacing:4.037600pt;}
.ws112{word-spacing:4.065067pt;}
.ws1cf{word-spacing:4.080000pt;}
.ws18{word-spacing:4.098027pt;}
.ws1b6{word-spacing:4.142400pt;}
.ws179{word-spacing:4.147467pt;}
.ws124{word-spacing:4.191413pt;}
.ws129{word-spacing:4.202400pt;}
.ws1c2{word-spacing:4.272000pt;}
.ws21f{word-spacing:4.334400pt;}
.ws13c{word-spacing:4.389173pt;}
.ws208{word-spacing:4.603200pt;}
.ws1f5{word-spacing:4.660800pt;}
.ws143{word-spacing:4.663840pt;}
.wsc2{word-spacing:4.707787pt;}
.ws163{word-spacing:4.878080pt;}
.ws18e{word-spacing:4.883573pt;}
.ws1fc{word-spacing:4.896000pt;}
.wsf3{word-spacing:5.081333pt;}
.ws87{word-spacing:5.086827pt;}
.ws1ec{word-spacing:5.097600pt;}
.ws138{word-spacing:5.136267pt;}
.ws148{word-spacing:5.235147pt;}
.ws47{word-spacing:5.394453pt;}
.ws127{word-spacing:5.482347pt;}
.ws18f{word-spacing:5.564747pt;}
.ws12c{word-spacing:5.636160pt;}
.ws162{word-spacing:5.641653pt;}
.ws216{word-spacing:5.774400pt;}
.wsa7{word-spacing:5.806453pt;}
.ws213{word-spacing:5.856000pt;}
.ws176{word-spacing:5.861387pt;}
.ws9c{word-spacing:5.888853pt;}
.ws10c{word-spacing:5.899840pt;}
.ws1f{word-spacing:5.927307pt;}
.ws1bf{word-spacing:5.932800pt;}
.wse4{word-spacing:5.949280pt;}
.ws9{word-spacing:5.980800pt;}
.ws44{word-spacing:5.993227pt;}
.ws22d{word-spacing:6.081600pt;}
.ws8a{word-spacing:6.114080pt;}
.ws9b{word-spacing:6.185493pt;}
.ws114{word-spacing:6.416213pt;}
.ws139{word-spacing:6.471147pt;}
.ws1b9{word-spacing:6.523200pt;}
.ws177{word-spacing:6.531573pt;}
.ws62{word-spacing:6.592000pt;}
.ws239{word-spacing:6.614400pt;}
.wsc3{word-spacing:6.751307pt;}
.wsa9{word-spacing:6.784267pt;}
.ws140{word-spacing:6.954560pt;}
.ws1f0{word-spacing:7.089600pt;}
.ws9a{word-spacing:7.091893pt;}
.ws20e{word-spacing:7.286400pt;}
.ws55{word-spacing:7.399520pt;}
.ws95{word-spacing:7.476427pt;}
.ws2d{word-spacing:7.635733pt;}
.ws12a{word-spacing:7.646720pt;}
.ws3d{word-spacing:7.943360pt;}
.ws1a{word-spacing:7.954347pt;}
.ws199{word-spacing:7.977600pt;}
.ws1e0{word-spacing:8.040000pt;}
.ws194{word-spacing:8.113653pt;}
.wsb9{word-spacing:8.316907pt;}
.ws17c{word-spacing:8.679467pt;}
.ws17a{word-spacing:8.723413pt;}
.ws228{word-spacing:8.827200pt;}
.ws1c9{word-spacing:8.961600pt;}
.ws13f{word-spacing:9.080480pt;}
.ws181{word-spacing:9.250773pt;}
.ws147{word-spacing:9.635307pt;}
.ws172{word-spacing:9.844053pt;}
.ws60{word-spacing:10.074773pt;}
.wsc7{word-spacing:10.354933pt;}
.wse7{word-spacing:10.849333pt;}
.ws38{word-spacing:10.975680pt;}
.ws8b{word-spacing:11.047093pt;}
.ws9f{word-spacing:11.200907pt;}
.ws4c{word-spacing:11.838133pt;}
.ws187{word-spacing:11.975467pt;}
.ws45{word-spacing:12.151253pt;}
.ws1e8{word-spacing:12.331200pt;}
.ws3f{word-spacing:12.349013pt;}
.ws1ba{word-spacing:13.238400pt;}
.wsbd{word-spacing:13.255413pt;}
.ws36{word-spacing:13.931093pt;}
.ws7e{word-spacing:14.782560pt;}
.wse6{word-spacing:14.980320pt;}
.ws23e{word-spacing:14.980800pt;}
.ws1ea{word-spacing:15.820800pt;}
.ws190{word-spacing:17.188640pt;}
.ws5f{word-spacing:17.380907pt;}
.ws1f1{word-spacing:18.772800pt;}
.ws4d{word-spacing:18.864107pt;}
.ws28{word-spacing:21.292160pt;}
.ws76{word-spacing:23.066507pt;}
._8{margin-left:-10.001493pt;}
._d{margin-left:-7.069920pt;}
._3{margin-left:-5.875200pt;}
._4{margin-left:-4.748800pt;}
._2{margin-left:-3.532800pt;}
._5{margin-left:-2.074667pt;}
._1{margin-left:-1.158400pt;}
._7{width:1.072000pt;}
._f{width:1.975467pt;}
._6{width:3.024000pt;}
._a{width:4.561067pt;}
._9{width:5.768533pt;}
._e{width:6.757333pt;}
._b{width:7.808000pt;}
._c{width:8.987733pt;}
._10{width:14.961600pt;}
._0{width:991.517333pt;}
._11{width:1255.329600pt;}
.fsa{font-size:25.600000pt;}
.fsb{font-size:28.800000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:32.960000pt;}
.fs3{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.020000pt;}
.ydd{bottom:20.508947pt;}
.y109{bottom:20.518960pt;}
.y137{bottom:20.520213pt;}
.yb3{bottom:20.524053pt;}
.y167{bottom:20.524933pt;}
.y250{bottom:20.525600pt;}
.y186{bottom:20.526173pt;}
.y17f{bottom:20.528467pt;}
.y56{bottom:20.530920pt;}
.y233{bottom:20.537787pt;}
.y1b8{bottom:20.542747pt;}
.y83{bottom:20.543280pt;}
.y1dd{bottom:20.546027pt;}
.y24{bottom:20.577067pt;}
.y2fe{bottom:59.256400pt;}
.y27b{bottom:59.263467pt;}
.y327{bottom:59.263600pt;}
.y2a6{bottom:59.264800pt;}
.y24f{bottom:59.265067pt;}
.y2d2{bottom:59.275867pt;}
.ydc{bottom:59.621480pt;}
.y108{bottom:59.631493pt;}
.y136{bottom:59.632747pt;}
.yb2{bottom:59.636587pt;}
.y185{bottom:59.637333pt;}
.y166{bottom:59.637467pt;}
.y17e{bottom:59.642373pt;}
.y55{bottom:59.643453pt;}
.y1b7{bottom:59.648413pt;}
.y232{bottom:59.650320pt;}
.y82{bottom:59.655813pt;}
.y1dc{bottom:59.658560pt;}
.y26{bottom:60.599467pt;}
.y37f{bottom:63.009733pt;}
.y2fd{bottom:74.126800pt;}
.y2a5{bottom:74.129200pt;}
.y37e{bottom:74.197067pt;}
.y24e{bottom:74.347867pt;}
.y27a{bottom:74.481867pt;}
.y2d1{bottom:74.667067pt;}
.y326{bottom:75.037600pt;}
.y25{bottom:75.263467pt;}
.y81{bottom:75.692227pt;}
.y1db{bottom:75.694973pt;}
.y135{bottom:75.703493pt;}
.y165{bottom:75.712333pt;}
.y54{bottom:75.722440pt;}
.y20b{bottom:75.773253pt;}
.y1b6{bottom:75.778213pt;}
.y107{bottom:75.802493pt;}
.y231{bottom:75.998480pt;}
.ydb{bottom:76.002600pt;}
.yb1{bottom:76.097360pt;}
.y17d{bottom:76.141600pt;}
.y184{bottom:76.305760pt;}
.y37d{bottom:85.380267pt;}
.y325{bottom:90.809867pt;}
.y80{bottom:91.728640pt;}
.y1da{bottom:91.731387pt;}
.y134{bottom:91.774240pt;}
.y164{bottom:91.787200pt;}
.y53{bottom:91.801427pt;}
.y20a{bottom:91.890693pt;}
.y1b5{bottom:91.908013pt;}
.y106{bottom:91.973493pt;}
.y230{bottom:92.346640pt;}
.yda{bottom:92.383720pt;}
.yb0{bottom:92.558133pt;}
.y17c{bottom:92.640827pt;}
.y183{bottom:93.196387pt;}
.y2a4{bottom:96.552400pt;}
.y2fc{bottom:96.556000pt;}
.y24d{bottom:96.989467pt;}
.y279{bottom:97.259067pt;}
.y2d0{bottom:97.617067pt;}
.y37c{bottom:102.232533pt;}
.y324{bottom:106.583867pt;}
.y7f{bottom:107.765053pt;}
.y1d9{bottom:107.767800pt;}
.y133{bottom:107.844987pt;}
.y163{bottom:107.862067pt;}
.y52{bottom:107.880413pt;}
.y209{bottom:108.008133pt;}
.y1b4{bottom:108.037813pt;}
.y105{bottom:108.144493pt;}
.y22f{bottom:108.694800pt;}
.yd9{bottom:108.764840pt;}
.yaf{bottom:109.018907pt;}
.y17b{bottom:109.140053pt;}
.y2a3{bottom:111.416800pt;}
.y2fb{bottom:111.426400pt;}
.y24c{bottom:112.072267pt;}
.y278{bottom:112.477467pt;}
.y2cf{bottom:113.008267pt;}
.y37b{bottom:113.415733pt;}
.y23{bottom:113.936267pt;}
.y7e{bottom:123.801467pt;}
.y1d8{bottom:123.804213pt;}
.y132{bottom:123.915733pt;}
.y162{bottom:123.936933pt;}
.y51{bottom:123.959400pt;}
.y208{bottom:124.125573pt;}
.y1b3{bottom:124.166240pt;}
.y104{bottom:124.315493pt;}
.y37a{bottom:124.598933pt;}
.y22e{bottom:125.042960pt;}
.yd8{bottom:125.145960pt;}
.yae{bottom:125.479680pt;}
.y2a2{bottom:126.281200pt;}
.y2fa{bottom:126.296800pt;}
.y24b{bottom:127.155067pt;}
.y277{bottom:127.695867pt;}
.y2ce{bottom:128.399467pt;}
.y323{bottom:129.916667pt;}
.y22{bottom:130.196533pt;}
.y379{bottom:135.782133pt;}
.y17a{bottom:136.977520pt;}
.y7d{bottom:139.837880pt;}
.y1d7{bottom:139.840627pt;}
.y131{bottom:139.986480pt;}
.y161{bottom:140.011800pt;}
.y50{bottom:140.038387pt;}
.y207{bottom:140.243013pt;}
.y1b2{bottom:140.294667pt;}
.y103{bottom:140.486493pt;}
.y22d{bottom:141.391120pt;}
.yd7{bottom:141.527080pt;}
.yad{bottom:141.940453pt;}
.y322{bottom:145.690667pt;}
.y21{bottom:146.456800pt;}
.y2a1{bottom:148.704400pt;}
.y2f9{bottom:148.726000pt;}
.y24a{bottom:149.796667pt;}
.y276{bottom:150.473067pt;}
.y2cd{bottom:151.349467pt;}
.y378{bottom:152.634400pt;}
.y7c{bottom:155.874293pt;}
.y1d6{bottom:155.877040pt;}
.y130{bottom:156.057227pt;}
.y160{bottom:156.086667pt;}
.y4f{bottom:156.117373pt;}
.y206{bottom:156.360453pt;}
.y1b1{bottom:156.423093pt;}
.y102{bottom:156.657493pt;}
.y22c{bottom:157.739280pt;}
.yd6{bottom:157.908200pt;}
.yac{bottom:158.401227pt;}
.y20{bottom:162.717067pt;}
.y2a0{bottom:163.568800pt;}
.y2f8{bottom:163.596400pt;}
.y377{bottom:163.817600pt;}
.y249{bottom:164.879467pt;}
.y275{bottom:165.691467pt;}
.y2cc{bottom:166.740667pt;}
.y321{bottom:169.023467pt;}
.y1d5{bottom:171.913453pt;}
.y12f{bottom:172.127973pt;}
.y4e{bottom:172.196360pt;}
.y179{bottom:172.373813pt;}
.y205{bottom:172.477893pt;}
.y1b0{bottom:172.551520pt;}
.y101{bottom:172.828493pt;}
.y22b{bottom:174.087440pt;}
.yd5{bottom:174.289320pt;}
.yab{bottom:174.862000pt;}
.y376{bottom:175.000800pt;}
.y2f7{bottom:178.466800pt;}
.y1f{bottom:178.977333pt;}
.y248{bottom:179.962267pt;}
.y274{bottom:180.909867pt;}
.y2cb{bottom:182.131867pt;}
.y7b{bottom:183.250320pt;}
.y320{bottom:184.797467pt;}
.y29f{bottom:185.992000pt;}
.y375{bottom:186.184000pt;}
.y1d4{bottom:187.949867pt;}
.y12e{bottom:188.198720pt;}
.y4d{bottom:188.275347pt;}
.y204{bottom:188.595333pt;}
.y1af{bottom:188.679947pt;}
.y178{bottom:188.873040pt;}
.y100{bottom:188.999493pt;}
.y22a{bottom:190.435600pt;}
.yaa{bottom:191.322773pt;}
.y15f{bottom:194.838533pt;}
.y1e{bottom:195.237600pt;}
.y31f{bottom:200.571467pt;}
.y29e{bottom:200.856400pt;}
.y2f6{bottom:200.896000pt;}
.yd4{bottom:202.008680pt;}
.y374{bottom:203.036267pt;}
.y273{bottom:203.687067pt;}
.y1d3{bottom:203.986280pt;}
.y12d{bottom:204.269467pt;}
.y4c{bottom:204.354333pt;}
.y203{bottom:204.712773pt;}
.y1ae{bottom:204.808373pt;}
.y2ca{bottom:205.081867pt;}
.yff{bottom:205.170493pt;}
.y177{bottom:205.372267pt;}
.y229{bottom:206.783760pt;}
.ya9{bottom:207.783547pt;}
.y1d{bottom:211.497867pt;}
.y15e{bottom:212.582533pt;}
.y373{bottom:214.219467pt;}
.y29d{bottom:215.720800pt;}
.y2f5{bottom:215.766400pt;}
.y247{bottom:217.719613pt;}
.y272{bottom:218.905467pt;}
.y1d2{bottom:220.022693pt;}
.y12c{bottom:220.340213pt;}
.y4b{bottom:220.433320pt;}
.y2c9{bottom:220.473067pt;}
.y202{bottom:220.830213pt;}
.y1ad{bottom:220.936800pt;}
.yfe{bottom:221.341493pt;}
.y176{bottom:221.871493pt;}
.y7a{bottom:221.964587pt;}
.y228{bottom:223.131920pt;}
.y31e{bottom:223.904267pt;}
.ya8{bottom:224.244320pt;}
.y15d{bottom:224.657333pt;}
.y372{bottom:225.402667pt;}
.y1c{bottom:227.758133pt;}
.y2f4{bottom:230.636800pt;}
.y271{bottom:234.123867pt;}
.y2c8{bottom:235.864267pt;}
.y1d1{bottom:236.059107pt;}
.y12b{bottom:236.410960pt;}
.y4a{bottom:236.512307pt;}
.y15c{bottom:236.732133pt;}
.y201{bottom:236.947653pt;}
.y1ac{bottom:237.065227pt;}
.yfd{bottom:237.512493pt;}
.y79{bottom:238.001000pt;}
.y29c{bottom:238.144000pt;}
.y175{bottom:238.370720pt;}
.y227{bottom:239.480080pt;}
.y31d{bottom:239.678267pt;}
.ya7{bottom:240.705093pt;}
.yd3{bottom:241.066280pt;}
.y371{bottom:242.254933pt;}
.y1b{bottom:244.018400pt;}
.y15b{bottom:248.806933pt;}
.y1d0{bottom:252.095520pt;}
.y12a{bottom:252.481707pt;}
.y49{bottom:252.591293pt;}
.y29b{bottom:253.008400pt;}
.y200{bottom:253.065093pt;}
.y2f3{bottom:253.066000pt;}
.y1ab{bottom:253.193653pt;}
.y370{bottom:253.438133pt;}
.yfc{bottom:253.683493pt;}
.y78{bottom:254.037413pt;}
.y174{bottom:254.869947pt;}
.y226{bottom:255.828240pt;}
.y270{bottom:256.901067pt;}
.ya6{bottom:257.165867pt;}
.yd2{bottom:257.447400pt;}
.y2c7{bottom:258.814267pt;}
.y1a{bottom:260.278667pt;}
.y15a{bottom:260.881600pt;}
.y31c{bottom:263.011067pt;}
.y36f{bottom:264.621333pt;}
.y2f2{bottom:267.936400pt;}
.y1cf{bottom:268.131933pt;}
.y129{bottom:268.552453pt;}
.y48{bottom:268.670280pt;}
.y1ff{bottom:269.182533pt;}
.y1aa{bottom:269.322080pt;}
.yfb{bottom:269.854493pt;}
.y77{bottom:270.073827pt;}
.y173{bottom:271.369173pt;}
.y26f{bottom:272.119467pt;}
.y225{bottom:272.176400pt;}
.y159{bottom:272.956400pt;}
.ya5{bottom:273.626640pt;}
.yd1{bottom:273.828520pt;}
.y2c6{bottom:274.205467pt;}
.y29a{bottom:275.431600pt;}
.y19{bottom:276.538933pt;}
.y246{bottom:279.490773pt;}
.y36e{bottom:281.473600pt;}
.y2f1{bottom:282.806800pt;}
.y1ce{bottom:284.168347pt;}
.y128{bottom:284.623200pt;}
.y47{bottom:284.749267pt;}
.y158{bottom:285.031067pt;}
.y1fe{bottom:285.299973pt;}
.y1a9{bottom:285.450507pt;}
.y76{bottom:286.110240pt;}
.y31b{bottom:286.343867pt;}
.y172{bottom:287.868400pt;}
.y224{bottom:288.524560pt;}
.y2c5{bottom:289.596667pt;}
.ya4{bottom:290.087413pt;}
.yd0{bottom:290.209640pt;}
.y299{bottom:290.296000pt;}
.y36d{bottom:292.656800pt;}
.y18{bottom:292.799200pt;}
.y26e{bottom:294.896667pt;}
.y245{bottom:295.907600pt;}
.y157{bottom:297.105867pt;}
.yfa{bottom:297.363733pt;}
.y1cd{bottom:300.204760pt;}
.y46{bottom:300.828253pt;}
.y1fd{bottom:301.417413pt;}
.y1a8{bottom:301.578933pt;}
.y31a{bottom:302.117867pt;}
.y75{bottom:302.146653pt;}
.y36c{bottom:303.840000pt;}
.y171{bottom:304.367627pt;}
.y223{bottom:304.872720pt;}
.y2f0{bottom:305.236000pt;}
.ya3{bottom:306.548187pt;}
.ycf{bottom:306.590760pt;}
.y156{bottom:309.180667pt;}
.y26d{bottom:310.115200pt;}
.y244{bottom:312.324427pt;}
.y2c4{bottom:312.547867pt;}
.y298{bottom:312.719200pt;}
.y36b{bottom:315.023200pt;}
.y1cc{bottom:316.241173pt;}
.y45{bottom:316.907240pt;}
.y1fc{bottom:317.534853pt;}
.y1a7{bottom:317.707360pt;}
.y319{bottom:317.891867pt;}
.y74{bottom:318.183067pt;}
.y2ef{bottom:320.106400pt;}
.y170{bottom:320.866853pt;}
.y222{bottom:321.220880pt;}
.y155{bottom:321.255333pt;}
.ya2{bottom:323.008960pt;}
.y127{bottom:323.370667pt;}
.y36a{bottom:326.206400pt;}
.y297{bottom:327.583600pt;}
.y2c3{bottom:327.939067pt;}
.y243{bottom:328.741253pt;}
.y17{bottom:331.746933pt;}
.y1cb{bottom:332.277587pt;}
.y26c{bottom:332.892400pt;}
.y44{bottom:332.986227pt;}
.y1fb{bottom:333.652293pt;}
.y1a6{bottom:333.835787pt;}
.y73{bottom:334.219480pt;}
.y2ee{bottom:334.976800pt;}
.y126{bottom:335.441067pt;}
.yf9{bottom:336.211213pt;}
.y16f{bottom:337.366080pt;}
.y221{bottom:337.569040pt;}
.y154{bottom:338.999333pt;}
.ya1{bottom:339.469733pt;}
.y318{bottom:341.224667pt;}
.y296{bottom:342.448000pt;}
.y369{bottom:343.058667pt;}
.y2c2{bottom:343.330267pt;}
.yce{bottom:345.648360pt;}
.y125{bottom:347.511467pt;}
.y26b{bottom:348.110800pt;}
.y1ca{bottom:348.314000pt;}
.y43{bottom:349.065213pt;}
.y1fa{bottom:349.769733pt;}
.y1a5{bottom:349.964213pt;}
.y72{bottom:350.255893pt;}
.yf8{bottom:352.380840pt;}
.y16e{bottom:353.865307pt;}
.y220{bottom:353.917200pt;}
.y368{bottom:354.241867pt;}
.ya0{bottom:355.930507pt;}
.y153{bottom:356.743333pt;}
.y317{bottom:356.998667pt;}
.y2ed{bottom:357.406000pt;}
.y124{bottom:359.581867pt;}
.y242{bottom:360.275733pt;}
.y1c9{bottom:364.350413pt;}
.y295{bottom:364.871733pt;}
.y367{bottom:365.425067pt;}
.y1f9{bottom:365.887173pt;}
.y1a4{bottom:366.092640pt;}
.y2c1{bottom:366.280267pt;}
.y71{bottom:366.292307pt;}
.yf7{bottom:368.550467pt;}
.y21f{bottom:370.265360pt;}
.y16d{bottom:370.364533pt;}
.y26a{bottom:370.888000pt;}
.y123{bottom:371.652133pt;}
.y2ec{bottom:372.276400pt;}
.y9f{bottom:372.391280pt;}
.y42{bottom:376.482440pt;}
.y152{bottom:376.595853pt;}
.y366{bottom:376.608267pt;}
.y294{bottom:379.736133pt;}
.y316{bottom:380.331467pt;}
.y1c8{bottom:380.386827pt;}
.y2c0{bottom:381.671467pt;}
.y1f8{bottom:382.004613pt;}
.y1a3{bottom:382.221067pt;}
.y70{bottom:382.328720pt;}
.y122{bottom:383.722533pt;}
.yf6{bottom:384.720093pt;}
.y269{bottom:386.106400pt;}
.y21e{bottom:386.613520pt;}
.y16c{bottom:386.863760pt;}
.y365{bottom:387.791467pt;}
.y9e{bottom:388.852053pt;}
.y16{bottom:393.423067pt;}
.y2eb{bottom:394.705600pt;}
.y121{bottom:395.792933pt;}
.y315{bottom:396.105467pt;}
.y1c7{bottom:396.423240pt;}
.y1f7{bottom:398.122053pt;}
.y1a2{bottom:398.349493pt;}
.y6f{bottom:398.365133pt;}
.y364{bottom:398.974667pt;}
.y340{bottom:399.803467pt;}
.yf5{bottom:400.889720pt;}
.y268{bottom:401.324800pt;}
.y293{bottom:402.159333pt;}
.y16b{bottom:403.362987pt;}
.y2bf{bottom:404.621467pt;}
.y9d{bottom:405.312827pt;}
.y241{bottom:406.927867pt;}
.ycd{bottom:407.383813pt;}
.y120{bottom:407.863333pt;}
.y2ea{bottom:409.576000pt;}
.y363{bottom:410.157867pt;}
.y1c6{bottom:412.459653pt;}
.y1f6{bottom:414.239493pt;}
.y6e{bottom:414.401547pt;}
.y33f{bottom:414.469867pt;}
.y1a1{bottom:414.477920pt;}
.y41{bottom:415.239280pt;}
.y151{bottom:415.347200pt;}
.y15{bottom:415.911067pt;}
.y292{bottom:417.023733pt;}
.y314{bottom:419.438267pt;}
.y16a{bottom:419.862213pt;}
.y11f{bottom:419.933733pt;}
.y2be{bottom:420.012667pt;}
.y362{bottom:421.341067pt;}
.y9c{bottom:421.773600pt;}
.y240{bottom:423.344693pt;}
.ycc{bottom:423.764933pt;}
.y267{bottom:424.102000pt;}
.y21d{bottom:425.639533pt;}
.yf4{bottom:428.398960pt;}
.y1c5{bottom:428.496067pt;}
.y33e{bottom:429.136267pt;}
.y1f5{bottom:430.356933pt;}
.y6d{bottom:430.437960pt;}
.y1a0{bottom:430.606347pt;}
.y14{bottom:430.839067pt;}
.y40{bottom:431.318267pt;}
.y150{bottom:431.422067pt;}
.y11e{bottom:432.004000pt;}
.y2e9{bottom:432.005200pt;}
.y361{bottom:432.524267pt;}
.y313{bottom:435.212267pt;}
.y2bd{bottom:435.403867pt;}
.y169{bottom:436.361440pt;}
.y9b{bottom:438.234373pt;}
.y266{bottom:439.320400pt;}
.y291{bottom:439.448800pt;}
.ycb{bottom:440.146053pt;}
.y360{bottom:443.707467pt;}
.y13{bottom:445.767067pt;}
.y6c{bottom:446.474373pt;}
.y19f{bottom:446.734773pt;}
.y2e8{bottom:446.875600pt;}
.y3f{bottom:447.397253pt;}
.y14f{bottom:447.496933pt;}
.y11d{bottom:449.743733pt;}
.y33d{bottom:451.361467pt;}
.y290{bottom:454.313200pt;}
.y9a{bottom:454.695147pt;}
.y23f{bottom:454.879173pt;}
.y35f{bottom:454.890667pt;}
.yca{bottom:456.527173pt;}
.y2bc{bottom:458.353867pt;}
.y312{bottom:458.545067pt;}
.y12{bottom:460.695067pt;}
.y2e7{bottom:461.746000pt;}
.y265{bottom:462.097600pt;}
.y6b{bottom:462.510787pt;}
.y1f4{bottom:462.591813pt;}
.y19e{bottom:462.863200pt;}
.y3e{bottom:463.476240pt;}
.y14e{bottom:463.571800pt;}
.y33c{bottom:466.027867pt;}
.y1c4{bottom:467.210333pt;}
.yf3{bottom:467.246440pt;}
.y11c{bottom:467.483467pt;}
.y182{bottom:469.142267pt;}
.y99{bottom:471.155920pt;}
.y35e{bottom:471.742933pt;}
.y168{bottom:471.757733pt;}
.yc9{bottom:472.908293pt;}
.y2bb{bottom:473.745067pt;}
.y311{bottom:474.319067pt;}
.y11{bottom:475.623067pt;}
.y28f{bottom:476.736400pt;}
.y264{bottom:477.316000pt;}
.y6a{bottom:478.547200pt;}
.y1f3{bottom:478.709253pt;}
.y19d{bottom:478.991627pt;}
.y394{bottom:479.554133pt;}
.y3d{bottom:479.555227pt;}
.y14d{bottom:479.646667pt;}
.y35d{bottom:482.926133pt;}
.yf2{bottom:483.416067pt;}
.y2e6{bottom:484.175200pt;}
.y181{bottom:485.812133pt;}
.y11b{bottom:487.333227pt;}
.y21c{bottom:487.342027pt;}
.y98{bottom:487.616693pt;}
.y33b{bottom:488.253067pt;}
.y2ba{bottom:489.136267pt;}
.yc8{bottom:489.289413pt;}
.y10{bottom:490.551067pt;}
.y28e{bottom:491.600800pt;}
.y35c{bottom:494.109333pt;}
.y69{bottom:494.583613pt;}
.y1f2{bottom:494.826693pt;}
.y19c{bottom:495.120053pt;}
.y3c{bottom:495.634213pt;}
.y14c{bottom:495.721533pt;}
.y310{bottom:497.651867pt;}
.y2e5{bottom:499.045600pt;}
.yf1{bottom:499.585693pt;}
.y263{bottom:500.093200pt;}
.y23e{bottom:501.531307pt;}
.y33a{bottom:502.919467pt;}
.y21b{bottom:503.690187pt;}
.y97{bottom:504.077467pt;}
.y2b9{bottom:504.527467pt;}
.y35b{bottom:505.292533pt;}
.yf{bottom:505.479067pt;}
.yc7{bottom:505.670533pt;}
.y28d{bottom:506.465200pt;}
.y68{bottom:510.620027pt;}
.y1f1{bottom:510.944133pt;}
.y19b{bottom:511.248480pt;}
.y3b{bottom:511.713200pt;}
.y14b{bottom:511.796400pt;}
.y30f{bottom:513.425867pt;}
.y262{bottom:515.311600pt;}
.yf0{bottom:515.755320pt;}
.y339{bottom:517.585867pt;}
.y23d{bottom:517.948133pt;}
.y2b8{bottom:519.918667pt;}
.y21a{bottom:520.038347pt;}
.ye{bottom:520.407067pt;}
.y96{bottom:520.538240pt;}
.y2e4{bottom:521.474800pt;}
.yc6{bottom:522.051653pt;}
.y35a{bottom:522.144800pt;}
.y11a{bottom:526.080453pt;}
.y67{bottom:526.656440pt;}
.y1f0{bottom:527.061573pt;}
.y19a{bottom:527.376907pt;}
.y3a{bottom:527.792187pt;}
.y14a{bottom:527.871267pt;}
.y1c3{bottom:528.601080pt;}
.y28c{bottom:528.888400pt;}
.yef{bottom:531.924947pt;}
.y359{bottom:533.328000pt;}
.yd{bottom:535.335067pt;}
.y2e3{bottom:536.345200pt;}
.y219{bottom:536.386507pt;}
.y30e{bottom:536.758667pt;}
.y95{bottom:536.999013pt;}
.y261{bottom:538.088800pt;}
.yc5{bottom:538.432773pt;}
.y338{bottom:539.811067pt;}
.y393{bottom:540.908933pt;}
.y119{bottom:542.146267pt;}
.y66{bottom:542.692853pt;}
.y2b7{bottom:542.868667pt;}
.y1ef{bottom:543.179013pt;}
.y199{bottom:543.505333pt;}
.y39{bottom:543.871173pt;}
.y149{bottom:543.946133pt;}
.y358{bottom:544.511200pt;}
.y1c2{bottom:544.637493pt;}
.yee{bottom:548.094573pt;}
.y23c{bottom:549.482613pt;}
.yc{bottom:550.263067pt;}
.y2e2{bottom:551.215600pt;}
.y28b{bottom:551.311600pt;}
.y30d{bottom:552.532667pt;}
.y218{bottom:552.734667pt;}
.y260{bottom:553.307200pt;}
.y94{bottom:553.459787pt;}
.y337{bottom:554.477467pt;}
.yc4{bottom:554.813893pt;}
.y392{bottom:555.575333pt;}
.y357{bottom:555.694400pt;}
.y118{bottom:558.217013pt;}
.y2b6{bottom:558.259867pt;}
.y65{bottom:558.729267pt;}
.y1ee{bottom:559.296453pt;}
.y198{bottom:559.633760pt;}
.y38{bottom:559.950160pt;}
.y148{bottom:560.021000pt;}
.y1c1{bottom:560.673907pt;}
.yb{bottom:565.191067pt;}
.y28a{bottom:566.176000pt;}
.y30c{bottom:568.306667pt;}
.y217{bottom:569.082827pt;}
.y336{bottom:569.143867pt;}
.y93{bottom:569.920560pt;}
.yc3{bottom:571.195013pt;}
.yed{bottom:571.824400pt;}
.y356{bottom:572.546667pt;}
.y2e1{bottom:573.644800pt;}
.y117{bottom:574.287760pt;}
.y64{bottom:574.765680pt;}
.y1ed{bottom:575.413893pt;}
.y197{bottom:575.762187pt;}
.y37{bottom:576.029147pt;}
.y25f{bottom:576.084400pt;}
.y147{bottom:576.095867pt;}
.y1c0{bottom:576.710320pt;}
.y391{bottom:577.800533pt;}
.ya{bottom:580.119067pt;}
.y289{bottom:581.040400pt;}
.y2b5{bottom:581.209867pt;}
.y355{bottom:583.729867pt;}
.y216{bottom:585.430987pt;}
.y92{bottom:586.381333pt;}
.yc2{bottom:587.576133pt;}
.yec{bottom:587.995400pt;}
.y2e0{bottom:588.515200pt;}
.y116{bottom:590.358507pt;}
.y63{bottom:590.802093pt;}
.y25e{bottom:591.302800pt;}
.y335{bottom:591.369067pt;}
.y1ec{bottom:591.531333pt;}
.y30b{bottom:591.639467pt;}
.y196{bottom:591.890613pt;}
.y36{bottom:592.108133pt;}
.y146{bottom:592.170733pt;}
.y390{bottom:592.466933pt;}
.y1bf{bottom:592.746733pt;}
.y354{bottom:594.913067pt;}
.y9{bottom:595.047067pt;}
.y23b{bottom:596.134747pt;}
.y2b4{bottom:596.601067pt;}
.y215{bottom:601.779147pt;}
.y91{bottom:602.842107pt;}
.y288{bottom:603.463600pt;}
.yc1{bottom:603.957253pt;}
.yeb{bottom:604.165027pt;}
.y334{bottom:606.035467pt;}
.y353{bottom:606.096267pt;}
.y115{bottom:606.429253pt;}
.y25d{bottom:606.521200pt;}
.y62{bottom:606.838507pt;}
.y38f{bottom:607.133333pt;}
.y30a{bottom:607.413467pt;}
.y1eb{bottom:607.648773pt;}
.y195{bottom:608.019040pt;}
.y35{bottom:608.187120pt;}
.y145{bottom:608.245600pt;}
.y1be{bottom:608.783147pt;}
.y8{bottom:609.975067pt;}
.y2df{bottom:610.944400pt;}
.y2b3{bottom:611.992267pt;}
.y23a{bottom:612.551573pt;}
.y352{bottom:617.279467pt;}
.y214{bottom:618.127307pt;}
.y287{bottom:618.328000pt;}
.y90{bottom:619.302880pt;}
.yea{bottom:620.334653pt;}
.yc0{bottom:620.338373pt;}
.y333{bottom:620.701867pt;}
.y38e{bottom:621.799733pt;}
.y114{bottom:622.500000pt;}
.y61{bottom:622.874920pt;}
.y1ea{bottom:623.766213pt;}
.y194{bottom:624.147467pt;}
.y34{bottom:624.266107pt;}
.y144{bottom:624.320467pt;}
.y1bd{bottom:624.819560pt;}
.y2de{bottom:625.814800pt;}
.y351{bottom:628.462667pt;}
.y25c{bottom:629.298400pt;}
.y309{bottom:630.746267pt;}
.y213{bottom:634.475467pt;}
.y2b2{bottom:634.942267pt;}
.y332{bottom:635.368267pt;}
.y8f{bottom:635.763653pt;}
.y38d{bottom:636.466133pt;}
.ye9{bottom:636.504280pt;}
.ybf{bottom:636.719493pt;}
.y113{bottom:638.570747pt;}
.y60{bottom:638.911333pt;}
.y350{bottom:639.645867pt;}
.y1e9{bottom:639.883653pt;}
.y33{bottom:640.345093pt;}
.y143{bottom:640.395333pt;}
.y2dd{bottom:640.685200pt;}
.y286{bottom:640.751200pt;}
.y1bc{bottom:640.855973pt;}
.y239{bottom:644.086053pt;}
.y308{bottom:646.520267pt;}
.y2b1{bottom:650.333467pt;}
.y34f{bottom:650.829067pt;}
.y38c{bottom:651.132533pt;}
.y25b{bottom:652.075600pt;}
.y8e{bottom:652.224427pt;}
.ye8{bottom:652.673907pt;}
.ybe{bottom:653.100613pt;}
.y112{bottom:654.641493pt;}
.y1e8{bottom:656.001093pt;}
.y32{bottom:656.424080pt;}
.y142{bottom:656.470200pt;}
.y1bb{bottom:656.892387pt;}
.y331{bottom:657.593467pt;}
.y34e{bottom:662.012267pt;}
.y193{bottom:662.953733pt;}
.y2dc{bottom:663.114400pt;}
.y285{bottom:663.174400pt;}
.y2b0{bottom:665.724667pt;}
.y38b{bottom:665.798933pt;}
.y5f{bottom:666.287360pt;}
.y8d{bottom:668.685200pt;}
.ye7{bottom:668.843533pt;}
.ybd{bottom:669.481733pt;}
.y307{bottom:669.853067pt;}
.y1e7{bottom:672.118533pt;}
.y330{bottom:672.259867pt;}
.y31{bottom:672.503067pt;}
.y141{bottom:672.545067pt;}
.y1ba{bottom:672.928800pt;}
.y34d{bottom:673.195467pt;}
.y212{bottom:673.501480pt;}
.y25a{bottom:674.852800pt;}
.y192{bottom:675.082667pt;}
.y7{bottom:677.819200pt;}
.y2db{bottom:677.984800pt;}
.y284{bottom:678.038800pt;}
.y38a{bottom:680.465333pt;}
.y111{bottom:682.050480pt;}
.y34c{bottom:684.378667pt;}
.y8c{bottom:685.145973pt;}
.y306{bottom:685.626400pt;}
.ybc{bottom:685.862853pt;}
.y191{bottom:687.211733pt;}
.y1e6{bottom:688.235973pt;}
.y30{bottom:688.582053pt;}
.y140{bottom:688.619933pt;}
.y2af{bottom:688.674667pt;}
.y1b9{bottom:688.965213pt;}
.y259{bottom:690.071200pt;}
.y238{bottom:690.738187pt;}
.ye6{bottom:692.573360pt;}
.y2da{bottom:692.855200pt;}
.y32f{bottom:694.485067pt;}
.y389{bottom:695.131733pt;}
.y34b{bottom:695.561867pt;}
.y6{bottom:698.485867pt;}
.y190{bottom:699.340800pt;}
.y283{bottom:700.462000pt;}
.y8b{bottom:701.606747pt;}
.ybb{bottom:702.243973pt;}
.y2ae{bottom:704.065867pt;}
.y1e5{bottom:704.353413pt;}
.y2f{bottom:704.661040pt;}
.y13f{bottom:704.694800pt;}
.y5e{bottom:705.001627pt;}
.y237{bottom:707.155013pt;}
.ye5{bottom:708.744360pt;}
.y305{bottom:708.959200pt;}
.y32e{bottom:709.151467pt;}
.y388{bottom:709.798133pt;}
.y18f{bottom:711.469867pt;}
.y34a{bottom:712.414133pt;}
.y258{bottom:712.848400pt;}
.y2d9{bottom:715.284400pt;}
.y282{bottom:715.326400pt;}
.y8a{bottom:718.067520pt;}
.yba{bottom:718.625093pt;}
.y2ad{bottom:719.457067pt;}
.y1e4{bottom:720.470853pt;}
.y2e{bottom:720.740027pt;}
.y13e{bottom:720.769667pt;}
.y110{bottom:720.797707pt;}
.y5d{bottom:721.038040pt;}
.y5{bottom:721.689867pt;}
.y349{bottom:723.597333pt;}
.y18e{bottom:723.598933pt;}
.y387{bottom:724.464533pt;}
.y304{bottom:724.733200pt;}
.ye4{bottom:724.915360pt;}
.y257{bottom:728.066800pt;}
.y2d8{bottom:730.154800pt;}
.y32d{bottom:731.378800pt;}
.y89{bottom:734.528293pt;}
.y348{bottom:734.780533pt;}
.y2ac{bottom:734.848267pt;}
.yb9{bottom:735.006213pt;}
.y211{bottom:735.203973pt;}
.y1e3{bottom:736.588293pt;}
.y2d{bottom:736.819013pt;}
.y13d{bottom:736.843733pt;}
.y10f{bottom:736.868453pt;}
.y5c{bottom:737.074453pt;}
.y281{bottom:737.749600pt;}
.y236{bottom:738.689493pt;}
.y386{bottom:739.130933pt;}
.y303{bottom:740.507200pt;}
.ye3{bottom:741.086360pt;}
.y18d{bottom:741.397333pt;}
.y347{bottom:745.963733pt;}
.y32c{bottom:746.045200pt;}
.y4{bottom:750.631333pt;}
.y256{bottom:750.844000pt;}
.y88{bottom:750.989067pt;}
.yb8{bottom:751.387333pt;}
.y210{bottom:751.552133pt;}
.y2d7{bottom:752.584000pt;}
.y280{bottom:752.614000pt;}
.y1e2{bottom:752.705733pt;}
.y2c{bottom:752.898000pt;}
.y13c{bottom:752.918600pt;}
.y10e{bottom:752.939200pt;}
.y5b{bottom:753.110867pt;}
.y18c{bottom:753.526267pt;}
.y385{bottom:753.797333pt;}
.y346{bottom:757.146933pt;}
.ye2{bottom:757.257360pt;}
.y2ab{bottom:757.799467pt;}
.y302{bottom:763.840000pt;}
.y18b{bottom:765.655333pt;}
.y255{bottom:766.062400pt;}
.y87{bottom:767.449840pt;}
.y2d6{bottom:767.454400pt;}
.y27f{bottom:767.478400pt;}
.yb7{bottom:767.768453pt;}
.y20f{bottom:767.900293pt;}
.y32b{bottom:768.270400pt;}
.y345{bottom:768.330133pt;}
.y384{bottom:768.463733pt;}
.y1e1{bottom:768.823173pt;}
.y2b{bottom:768.976987pt;}
.y13b{bottom:768.993467pt;}
.y10d{bottom:769.009947pt;}
.y5a{bottom:769.147280pt;}
.y3{bottom:769.559333pt;}
.ye1{bottom:773.428360pt;}
.y344{bottom:779.513333pt;}
.y301{bottom:779.614000pt;}
.y2aa{bottom:780.749467pt;}
.y254{bottom:781.280800pt;}
.y2d5{bottom:782.324800pt;}
.y32a{bottom:782.936800pt;}
.y383{bottom:783.130133pt;}
.y18a{bottom:783.453733pt;}
.y86{bottom:783.910613pt;}
.yb6{bottom:784.149573pt;}
.y20e{bottom:784.248453pt;}
.y1e0{bottom:784.940613pt;}
.y2a{bottom:785.055973pt;}
.y13a{bottom:785.068333pt;}
.y10c{bottom:785.080693pt;}
.y59{bottom:785.183693pt;}
.y235{bottom:785.341627pt;}
.ye0{bottom:789.599360pt;}
.y27e{bottom:789.901600pt;}
.y189{bottom:795.582800pt;}
.y2a9{bottom:796.140667pt;}
.y343{bottom:796.365600pt;}
.y253{bottom:796.499200pt;}
.y382{bottom:797.796533pt;}
.y85{bottom:800.371387pt;}
.yb5{bottom:800.530693pt;}
.y20d{bottom:800.596613pt;}
.y1df{bottom:801.058053pt;}
.y29{bottom:801.134960pt;}
.y139{bottom:801.143200pt;}
.y10b{bottom:801.151440pt;}
.y58{bottom:801.220107pt;}
.y234{bottom:801.758453pt;}
.y300{bottom:802.946800pt;}
.y2d4{bottom:804.754000pt;}
.y27d{bottom:804.766000pt;}
.y329{bottom:805.162000pt;}
.ydf{bottom:805.770360pt;}
.y342{bottom:813.218133pt;}
.y188{bottom:813.381067pt;}
.y180{bottom:816.402307pt;}
.y84{bottom:816.832160pt;}
.yb4{bottom:816.911813pt;}
.y20c{bottom:816.944773pt;}
.y1de{bottom:817.175493pt;}
.y28{bottom:817.213947pt;}
.y138{bottom:817.218067pt;}
.y10a{bottom:817.222187pt;}
.y57{bottom:817.256520pt;}
.y2ff{bottom:818.720800pt;}
.y2a8{bottom:819.091867pt;}
.y252{bottom:819.276400pt;}
.y2d3{bottom:819.624400pt;}
.y27c{bottom:819.630400pt;}
.y328{bottom:819.828400pt;}
.y381{bottom:820.021733pt;}
.yde{bottom:833.279600pt;}
.y187{bottom:833.289733pt;}
.y27{bottom:833.292933pt;}
.y341{bottom:833.514267pt;}
.y2{bottom:833.845733pt;}
.y2a7{bottom:834.483067pt;}
.y251{bottom:834.494800pt;}
.y380{bottom:834.688133pt;}
.h3{height:28.672000pt;}
.h7{height:29.196875pt;}
.h12{height:32.757812pt;}
.h13{height:33.445312pt;}
.hd{height:37.437500pt;}
.he{height:37.438033pt;}
.hb{height:38.142187pt;}
.h10{height:38.276302pt;}
.h9{height:42.117188pt;}
.h11{height:42.119854pt;}
.h4{height:44.593750pt;}
.h8{height:46.796875pt;}
.ha{height:48.200781pt;}
.hf{height:48.203981pt;}
.hc{height:48.220515pt;}
.h6{height:51.476562pt;}
.h5{height:56.156250pt;}
.h1{height:899.333333pt;}
.h2{height:899.508000pt;}
.h0{height:899.528000pt;}
.w2{width:642.500000pt;}
.w3{width:642.500001pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.672667pt;}
.x5{left:58.005733pt;}
.x7{left:59.059735pt;}
.x3{left:71.793067pt;}
.x6{left:73.123961pt;}
.x2{left:79.350000pt;}
.x4{left:563.872133pt;}
}




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