
    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_a0b6e587cbffd6910e9e98f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_d73ed3d72c612d3f028c57de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_02167525432ac84bc72d8ca8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_7e8d7338722280d700f27b06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_8cd314f69298ff6fb80e011a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-21.780000px;}
.v3{vertical-align:-1.050000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.090000px;}
.v1{vertical-align:31.680000px;}
.ls44{letter-spacing:-4.270200px;}
.ls51{letter-spacing:-4.158000px;}
.ls2f{letter-spacing:-3.425400px;}
.ls56{letter-spacing:-2.880000px;}
.ls45{letter-spacing:-2.765400px;}
.ls30{letter-spacing:-2.666400px;}
.ls36{letter-spacing:-2.574000px;}
.ls50{letter-spacing:-2.501400px;}
.ls4b{letter-spacing:-2.442000px;}
.ls35{letter-spacing:-2.376000px;}
.ls4d{letter-spacing:-2.310000px;}
.ls52{letter-spacing:-2.138400px;}
.ls3c{letter-spacing:-2.098800px;}
.ls34{letter-spacing:-1.914000px;}
.ls98{letter-spacing:-1.782000px;}
.ls3d{letter-spacing:-1.775400px;}
.ls97{letter-spacing:-1.716000px;}
.ls4a{letter-spacing:-1.650000px;}
.ls3a{letter-spacing:-1.584000px;}
.lscb{letter-spacing:-1.530000px;}
.ls38{letter-spacing:-1.524600px;}
.ls90{letter-spacing:-1.518000px;}
.lscc{letter-spacing:-1.500000px;}
.lscd{letter-spacing:-1.485000px;}
.ls41{letter-spacing:-1.452000px;}
.ls92{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-1.386000px;}
.lsb0{letter-spacing:-1.380000px;}
.ls57{letter-spacing:-1.368000px;}
.ls2e{letter-spacing:-1.320000px;}
.lsa9{letter-spacing:-1.260000px;}
.ls31{letter-spacing:-1.254000px;}
.lsc3{letter-spacing:-1.215000px;}
.lsc4{letter-spacing:-1.200000px;}
.ls33{letter-spacing:-1.188000px;}
.lsb3{letter-spacing:-1.170000px;}
.lsb4{letter-spacing:-1.140000px;}
.ls88{letter-spacing:-1.134000px;}
.lsc2{letter-spacing:-1.125000px;}
.ls42{letter-spacing:-1.122000px;}
.lsb8{letter-spacing:-1.080000px;}
.ls5f{letter-spacing:-1.056000px;}
.ls3e{letter-spacing:-1.049400px;}
.lsc8{letter-spacing:-1.035000px;}
.lsf{letter-spacing:-1.026000px;}
.lsc7{letter-spacing:-1.020000px;}
.ls49{letter-spacing:-0.990000px;}
.ls69{letter-spacing:-0.972000px;}
.ls1b{letter-spacing:-0.969000px;}
.lsca{letter-spacing:-0.960000px;}
.ls37{letter-spacing:-0.930600px;}
.ls66{letter-spacing:-0.924000px;}
.ls1f{letter-spacing:-0.912000px;}
.lsb7{letter-spacing:-0.900000px;}
.ls53{letter-spacing:-0.864600px;}
.ls2d{letter-spacing:-0.858000px;}
.lsd6{letter-spacing:-0.855000px;}
.lsaa{letter-spacing:-0.840000px;}
.ls87{letter-spacing:-0.831600px;}
.ls46{letter-spacing:-0.805200px;}
.ls4c{letter-spacing:-0.798600px;}
.ls2a{letter-spacing:-0.792000px;}
.ls95{letter-spacing:-0.780000px;}
.ls1e{letter-spacing:-0.741000px;}
.ls47{letter-spacing:-0.732600px;}
.ls2b{letter-spacing:-0.726000px;}
.ls8f{letter-spacing:-0.720000px;}
.ls83{letter-spacing:-0.693000px;}
.lse{letter-spacing:-0.684000px;}
.ls11{letter-spacing:-0.672000px;}
.ls2c{letter-spacing:-0.660000px;}
.ls54{letter-spacing:-0.624000px;}
.ls8e{letter-spacing:-0.600000px;}
.ls3f{letter-spacing:-0.594000px;}
.lsb1{letter-spacing:-0.585000px;}
.ls55{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.570000px;}
.ls6d{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.528000px;}
.ls6c{letter-spacing:-0.486000px;}
.lsc9{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.456000px;}
.lsd4{letter-spacing:-0.450000px;}
.ls7d{letter-spacing:-0.432000px;}
.ls8d{letter-spacing:-0.420000px;}
.lsd5{letter-spacing:-0.405000px;}
.ls17{letter-spacing:-0.399000px;}
.ls40{letter-spacing:-0.396000px;}
.ls7e{letter-spacing:-0.378000px;}
.ls7c{letter-spacing:-0.369600px;}
.ls7f{letter-spacing:-0.364500px;}
.lsb6{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.342000px;}
.ls4f{letter-spacing:-0.330000px;}
.ls72{letter-spacing:-0.324000px;}
.lsaf{letter-spacing:-0.315000px;}
.ls8a{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.285000px;}
.ls84{letter-spacing:-0.277200px;}
.ls67{letter-spacing:-0.264000px;}
.ls96{letter-spacing:-0.240000px;}
.ls85{letter-spacing:-0.231000px;}
.ls18{letter-spacing:-0.228000px;}
.lsd3{letter-spacing:-0.225000px;}
.ls43{letter-spacing:-0.198000px;}
.ls89{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.171000px;}
.lsac{letter-spacing:-0.135000px;}
.ls48{letter-spacing:-0.132000px;}
.lsae{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.114000px;}
.ls80{letter-spacing:-0.108000px;}
.ls4e{letter-spacing:-0.066000px;}
.ls8c{letter-spacing:-0.060000px;}
.lsc{letter-spacing:-0.057000px;}
.ls68{letter-spacing:-0.054000px;}
.ls10{letter-spacing:-0.048000px;}
.lsab{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.lsd2{letter-spacing:0.045000px;}
.ls71{letter-spacing:0.049500px;}
.ls7b{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.057000px;}
.ls70{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.066000px;}
.ls79{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.114000px;}
.ls91{letter-spacing:0.120000px;}
.ls5e{letter-spacing:0.132000px;}
.lsd1{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.162000px;}
.ls61{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.198000px;}
.lsa7{letter-spacing:0.225000px;}
.ls4{letter-spacing:0.228000px;}
.ls94{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.264000px;}
.lsa3{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.285000px;}
.ls93{letter-spacing:0.300000px;}
.lsb2{letter-spacing:0.315000px;}
.ls21{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.342000px;}
.ls8b{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.399000px;}
.lsad{letter-spacing:0.405000px;}
.ls77{letter-spacing:0.420000px;}
.lsa2{letter-spacing:0.450000px;}
.ls8{letter-spacing:0.456000px;}
.ls59{letter-spacing:0.462000px;}
.lsa0{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.486000px;}
.lsce{letter-spacing:0.495000px;}
.ls0{letter-spacing:0.513000px;}
.ls60{letter-spacing:0.528000px;}
.ls58{letter-spacing:0.594000px;}
.lsb5{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.627000px;}
.ls65{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.660000px;}
.lsc6{letter-spacing:0.675000px;}
.ls5d{letter-spacing:0.726000px;}
.ls5c{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.798000px;}
.lsb9{letter-spacing:0.810000px;}
.lsbe{letter-spacing:0.840000px;}
.ls62{letter-spacing:0.858000px;}
.ls9e{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.912000px;}
.ls63{letter-spacing:0.924000px;}
.ls13{letter-spacing:0.969000px;}
.ls6e{letter-spacing:0.990000px;}
.lsa1{letter-spacing:1.035000px;}
.ls78{letter-spacing:1.056000px;}
.ls82{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.083000px;}
.ls73{letter-spacing:1.122000px;}
.ls15{letter-spacing:1.140000px;}
.lsbc{letter-spacing:1.170000px;}
.ls22{letter-spacing:1.174800px;}
.ls6f{letter-spacing:1.188000px;}
.ls1{letter-spacing:1.197000px;}
.lsbb{letter-spacing:1.200000px;}
.lsc5{letter-spacing:1.215000px;}
.ls5a{letter-spacing:1.254000px;}
.ls9b{letter-spacing:1.260000px;}
.lsba{letter-spacing:1.305000px;}
.ls5b{letter-spacing:1.320000px;}
.ls9d{letter-spacing:1.380000px;}
.ls76{letter-spacing:1.386000px;}
.ls74{letter-spacing:1.518000px;}
.ls75{letter-spacing:1.584000px;}
.ls64{letter-spacing:1.650000px;}
.lsbd{letter-spacing:1.710000px;}
.lsa4{letter-spacing:1.800000px;}
.lsa5{letter-spacing:1.845000px;}
.lsa6{letter-spacing:1.860000px;}
.ls86{letter-spacing:1.980000px;}
.ls9a{letter-spacing:2.244000px;}
.ls99{letter-spacing:2.640000px;}
.lsc1{letter-spacing:12.420000px;}
.lsc0{letter-spacing:12.960000px;}
.lsd0{letter-spacing:13.200000px;}
.lsa8{letter-spacing:13.680000px;}
.ls25{letter-spacing:14.586000px;}
.ls27{letter-spacing:15.510000px;}
.ls9f{letter-spacing:15.780000px;}
.ls81{letter-spacing:15.906000px;}
.lscf{letter-spacing:16.560000px;}
.lsbf{letter-spacing:17.580000px;}
.ls9c{letter-spacing:18.780000px;}
.ls6a{letter-spacing:63.018000px;}
.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;}
}
.ws7e{word-spacing:-18.150000px;}
.wsd0{word-spacing:-18.018000px;}
.wsed{word-spacing:-17.886000px;}
.wsec{word-spacing:-17.556000px;}
.ws97{word-spacing:-17.490000px;}
.wsa2{word-spacing:-17.424000px;}
.wsc4{word-spacing:-17.358000px;}
.ws8e{word-spacing:-17.292000px;}
.ws75{word-spacing:-17.226000px;}
.wsca{word-spacing:-17.160000px;}
.wsc6{word-spacing:-17.094000px;}
.wsa3{word-spacing:-17.028000px;}
.ws76{word-spacing:-16.962000px;}
.ws37{word-spacing:-16.896000px;}
.ws105{word-spacing:-16.860000px;}
.ws36{word-spacing:-16.830000px;}
.wsa6{word-spacing:-16.764000px;}
.ws74{word-spacing:-16.698000px;}
.ws98{word-spacing:-16.632000px;}
.ws9a{word-spacing:-16.566000px;}
.ws33{word-spacing:-16.500000px;}
.ws53{word-spacing:-16.434000px;}
.wsf3{word-spacing:-16.380000px;}
.ws9b{word-spacing:-16.368000px;}
.wsa9{word-spacing:-16.302000px;}
.wsf0{word-spacing:-16.260000px;}
.wsa1{word-spacing:-16.236000px;}
.ws54{word-spacing:-16.170000px;}
.wsa4{word-spacing:-16.104000px;}
.ws11a{word-spacing:-16.080000px;}
.ws30{word-spacing:-16.038000px;}
.ws3a{word-spacing:-15.972000px;}
.ws47{word-spacing:-15.906000px;}
.wsf4{word-spacing:-15.900000px;}
.ws32{word-spacing:-15.840000px;}
.ws31{word-spacing:-15.774000px;}
.ws4d{word-spacing:-15.767400px;}
.ws3f{word-spacing:-15.708000px;}
.ws50{word-spacing:-15.701400px;}
.ws4c{word-spacing:-15.694800px;}
.ws34{word-spacing:-15.642000px;}
.ws58{word-spacing:-15.635400px;}
.ws11f{word-spacing:-15.600000px;}
.wsc1{word-spacing:-15.576000px;}
.ws40{word-spacing:-15.569400px;}
.ws4e{word-spacing:-15.510000px;}
.ws125{word-spacing:-15.480000px;}
.ws46{word-spacing:-15.450600px;}
.ws9c{word-spacing:-15.444000px;}
.ws126{word-spacing:-15.420000px;}
.ws49{word-spacing:-15.378000px;}
.wsd4{word-spacing:-15.360000px;}
.ws1e{word-spacing:-15.333000px;}
.ws3c{word-spacing:-15.312000px;}
.ws119{word-spacing:-15.300000px;}
.ws39{word-spacing:-15.246000px;}
.wse4{word-spacing:-15.240000px;}
.ws19{word-spacing:-15.219000px;}
.wsa5{word-spacing:-15.180000px;}
.ws1a{word-spacing:-15.162000px;}
.ws42{word-spacing:-15.114000px;}
.ws134{word-spacing:-15.060000px;}
.ws48{word-spacing:-15.048000px;}
.wscb{word-spacing:-15.000000px;}
.ws41{word-spacing:-14.975400px;}
.wsd3{word-spacing:-14.940000px;}
.ws43{word-spacing:-14.916000px;}
.wsf9{word-spacing:-14.880000px;}
.ws52{word-spacing:-14.850000px;}
.ws1f{word-spacing:-14.820000px;}
.ws45{word-spacing:-14.724600px;}
.ws1b{word-spacing:-14.706000px;}
.ws124{word-spacing:-14.700000px;}
.ws109{word-spacing:-14.640000px;}
.ws3b{word-spacing:-14.586000px;}
.ws108{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.ws11d{word-spacing:-14.520000px;}
.ws106{word-spacing:-14.460000px;}
.ws1d{word-spacing:-14.421000px;}
.ws44{word-spacing:-14.401200px;}
.ws57{word-spacing:-14.361600px;}
.wsfe{word-spacing:-14.340000px;}
.wsd9{word-spacing:-14.280000px;}
.ws17{word-spacing:-14.250000px;}
.ws18{word-spacing:-14.193000px;}
.ws51{word-spacing:-14.190000px;}
.wsf5{word-spacing:-14.160000px;}
.ws3d{word-spacing:-14.124000px;}
.ws10c{word-spacing:-14.100000px;}
.ws4f{word-spacing:-14.058000px;}
.ws120{word-spacing:-14.040000px;}
.ws55{word-spacing:-13.998600px;}
.wsaf{word-spacing:-13.986000px;}
.ws130{word-spacing:-13.980000px;}
.ws1c{word-spacing:-13.965000px;}
.ws3e{word-spacing:-13.926000px;}
.ws10b{word-spacing:-13.920000px;}
.ws90{word-spacing:-13.878000px;}
.ws111{word-spacing:-13.860000px;}
.ws38{word-spacing:-13.833600px;}
.ws113{word-spacing:-13.800000px;}
.ws16{word-spacing:-13.794000px;}
.ws114{word-spacing:-13.740000px;}
.ws4b{word-spacing:-13.734600px;}
.wsb1{word-spacing:-13.662000px;}
.wsfb{word-spacing:-13.620000px;}
.wsde{word-spacing:-13.560000px;}
.wsab{word-spacing:-13.500000px;}
.ws80{word-spacing:-13.446000px;}
.wsae{word-spacing:-13.392000px;}
.ws5c{word-spacing:-13.167000px;}
.ws104{word-spacing:-13.095000px;}
.ws35{word-spacing:-13.074600px;}
.wsb0{word-spacing:-13.014000px;}
.wsef{word-spacing:-12.510000px;}
.ws81{word-spacing:-12.474000px;}
.ws116{word-spacing:-12.465000px;}
.ws99{word-spacing:-12.424500px;}
.ws115{word-spacing:-12.420000px;}
.wsc7{word-spacing:-12.366000px;}
.ws56{word-spacing:-12.342000px;}
.ws4a{word-spacing:-12.229800px;}
.wsa7{word-spacing:-12.000000px;}
.ws117{word-spacing:-11.925000px;}
.ws12c{word-spacing:-11.745000px;}
.wsfc{word-spacing:-11.700000px;}
.wsf8{word-spacing:-11.655000px;}
.ws136{word-spacing:-11.610000px;}
.wsff{word-spacing:-11.565000px;}
.ws8f{word-spacing:-11.550000px;}
.ws101{word-spacing:-11.520000px;}
.ws102{word-spacing:-11.475000px;}
.ws5a{word-spacing:-11.424000px;}
.ws131{word-spacing:-11.385000px;}
.ws59{word-spacing:-11.376000px;}
.wsc2{word-spacing:-11.319000px;}
.ws137{word-spacing:-11.295000px;}
.wsbd{word-spacing:-11.272800px;}
.wsf1{word-spacing:-11.250000px;}
.wsf6{word-spacing:-11.205000px;}
.wsaa{word-spacing:-11.180400px;}
.wsf7{word-spacing:-11.115000px;}
.ws12b{word-spacing:-11.025000px;}
.wsfa{word-spacing:-10.935000px;}
.ws107{word-spacing:-10.890000px;}
.ws12f{word-spacing:-10.845000px;}
.ws12e{word-spacing:-10.800000px;}
.wsc5{word-spacing:-10.718400px;}
.ws11b{word-spacing:-10.710000px;}
.wsfd{word-spacing:-10.665000px;}
.ws11e{word-spacing:-10.530000px;}
.ws132{word-spacing:-10.395000px;}
.ws10a{word-spacing:-10.350000px;}
.ws121{word-spacing:-10.260000px;}
.ws11c{word-spacing:-10.215000px;}
.ws110{word-spacing:-10.125000px;}
.ws103{word-spacing:-10.080000px;}
.ws112{word-spacing:-10.035000px;}
.wsf2{word-spacing:-9.990000px;}
.ws123{word-spacing:-9.765000px;}
.wsad{word-spacing:-9.760500px;}
.ws122{word-spacing:-9.720000px;}
.ws5b{word-spacing:-9.120000px;}
.ws15{word-spacing:-7.056000px;}
.wscc{word-spacing:-2.310000px;}
.wsc{word-spacing:-1.083000px;}
.ws118{word-spacing:-1.080000px;}
.ws65{word-spacing:-0.858000px;}
.ws7b{word-spacing:-0.792000px;}
.ws6d{word-spacing:-0.726000px;}
.wse1{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.684000px;}
.ws6b{word-spacing:-0.660000px;}
.ws8b{word-spacing:-0.648000px;}
.ws1{word-spacing:-0.627000px;}
.wsce{word-spacing:-0.600000px;}
.ws92{word-spacing:-0.594000px;}
.ws27{word-spacing:-0.570000px;}
.wsb6{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.528000px;}
.ws24{word-spacing:-0.513000px;}
.ws13{word-spacing:-0.486000px;}
.wsd2{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.462000px;}
.ws2a{word-spacing:-0.456000px;}
.ws89{word-spacing:-0.432000px;}
.ws13b{word-spacing:-0.420000px;}
.ws29{word-spacing:-0.399000px;}
.ws5e{word-spacing:-0.396000px;}
.wsbb{word-spacing:-0.378000px;}
.wscf{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.342000px;}
.ws83{word-spacing:-0.330000px;}
.wsa0{word-spacing:-0.324000px;}
.wsda{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.285000px;}
.ws8c{word-spacing:-0.270000px;}
.ws64{word-spacing:-0.264000px;}
.wsdf{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.198000px;}
.wsd7{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.171000px;}
.ws87{word-spacing:-0.162000px;}
.ws6f{word-spacing:-0.132000px;}
.wsdb{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.114000px;}
.wsbc{word-spacing:-0.108000px;}
.wsbe{word-spacing:-0.099000px;}
.ws85{word-spacing:-0.066000px;}
.wsd1{word-spacing:-0.060000px;}
.wse{word-spacing:-0.057000px;}
.wsb{word-spacing:0.000000px;}
.wsb3{word-spacing:0.054000px;}
.ws2c{word-spacing:0.057000px;}
.wse8{word-spacing:0.060000px;}
.ws9d{word-spacing:0.066000px;}
.wsb5{word-spacing:0.108000px;}
.ws129{word-spacing:0.120000px;}
.ws7a{word-spacing:0.132000px;}
.ws2f{word-spacing:0.171000px;}
.wsd5{word-spacing:0.180000px;}
.ws7c{word-spacing:0.198000px;}
.wsc0{word-spacing:0.216000px;}
.wsd{word-spacing:0.228000px;}
.wsd6{word-spacing:0.240000px;}
.ws82{word-spacing:0.264000px;}
.wse3{word-spacing:0.300000px;}
.ws8d{word-spacing:0.324000px;}
.ws62{word-spacing:0.330000px;}
.ws2e{word-spacing:0.342000px;}
.wsdd{word-spacing:0.360000px;}
.ws14{word-spacing:0.378000px;}
.ws6c{word-spacing:0.396000px;}
.ws23{word-spacing:0.399000px;}
.ws10e{word-spacing:0.420000px;}
.ws28{word-spacing:0.456000px;}
.ws5f{word-spacing:0.462000px;}
.wsea{word-spacing:0.480000px;}
.wsc9{word-spacing:0.486000px;}
.ws2d{word-spacing:0.513000px;}
.wsbf{word-spacing:0.528000px;}
.ws93{word-spacing:0.594000px;}
.wse5{word-spacing:0.600000px;}
.ws10{word-spacing:0.627000px;}
.ws8a{word-spacing:0.648000px;}
.ws7d{word-spacing:0.660000px;}
.ws2b{word-spacing:0.684000px;}
.wsb8{word-spacing:0.702000px;}
.ws12a{word-spacing:0.720000px;}
.ws67{word-spacing:0.726000px;}
.wsb2{word-spacing:0.739200px;}
.ws3{word-spacing:0.741000px;}
.ws10f{word-spacing:0.780000px;}
.ws6e{word-spacing:0.792000px;}
.ws25{word-spacing:0.798000px;}
.wsb7{word-spacing:0.810000px;}
.wsdc{word-spacing:0.840000px;}
.ws91{word-spacing:0.858000px;}
.ws127{word-spacing:0.900000px;}
.ws4{word-spacing:0.912000px;}
.ws63{word-spacing:0.924000px;}
.ws128{word-spacing:0.960000px;}
.ws11{word-spacing:0.969000px;}
.ws84{word-spacing:0.970200px;}
.ws96{word-spacing:0.972000px;}
.ws77{word-spacing:0.990000px;}
.ws10d{word-spacing:1.020000px;}
.ws7{word-spacing:1.026000px;}
.ws79{word-spacing:1.056000px;}
.ws9e{word-spacing:1.062600px;}
.wse9{word-spacing:1.080000px;}
.ws2{word-spacing:1.083000px;}
.ws78{word-spacing:1.122000px;}
.ws9f{word-spacing:1.134000px;}
.wsd8{word-spacing:1.140000px;}
.ws12{word-spacing:1.188000px;}
.ws9{word-spacing:1.197000px;}
.wse6{word-spacing:1.200000px;}
.wsb4{word-spacing:1.242000px;}
.ws60{word-spacing:1.254000px;}
.wse7{word-spacing:1.260000px;}
.wsb9{word-spacing:1.296000px;}
.wsa{word-spacing:1.311000px;}
.ws69{word-spacing:1.320000px;}
.wsba{word-spacing:1.350000px;}
.ws5{word-spacing:1.368000px;}
.wse0{word-spacing:1.380000px;}
.ws71{word-spacing:1.386000px;}
.wsf{word-spacing:1.425000px;}
.wse2{word-spacing:1.440000px;}
.ws61{word-spacing:1.452000px;}
.wscd{word-spacing:1.500000px;}
.ws95{word-spacing:1.518000px;}
.ws66{word-spacing:1.584000px;}
.ws5d{word-spacing:1.650000px;}
.wsee{word-spacing:2.178000px;}
.wsc8{word-spacing:2.508000px;}
.ws86{word-spacing:2.838000px;}
.wsac{word-spacing:3.081000px;}
.wseb{word-spacing:3.168000px;}
.ws133{word-spacing:3.390000px;}
.wsa8{word-spacing:3.894000px;}
.wsc3{word-spacing:4.686000px;}
.ws139{word-spacing:4.965000px;}
.ws138{word-spacing:5.025000px;}
.ws100{word-spacing:5.040000px;}
.ws13a{word-spacing:5.055000px;}
.ws12d{word-spacing:5.160000px;}
.ws135{word-spacing:5.355000px;}
.ws94{word-spacing:7.392000px;}
.ws20{word-spacing:35.712000px;}
.ws73{word-spacing:36.000000px;}
.ws7f{word-spacing:36.018000px;}
.ws72{word-spacing:190.320000px;}
._11{margin-left:-11.355000px;}
._10{margin-left:-9.702000px;}
._b{margin-left:-8.646000px;}
._0{margin-left:-7.353000px;}
._7{margin-left:-5.832000px;}
._4{margin-left:-4.788000px;}
._8{margin-left:-3.744000px;}
._2{margin-left:-2.508000px;}
._1{margin-left:-1.083000px;}
._3{width:1.083000px;}
._5{width:2.166000px;}
._d{width:3.432000px;}
._e{width:12.258000px;}
._f{width:16.896000px;}
._9{width:47.952000px;}
._6{width:49.356000px;}
._c{width:202.155000px;}
._a{width:947.604000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:40.500000px;}
.fsc{font-size:45.000000px;}
.fs8{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:48.600000px;}
.fs9{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y87{bottom:1.256850px;}
.y89{bottom:1.396500px;}
.y7e{bottom:2.146500px;}
.y77{bottom:2.896500px;}
.y75{bottom:3.646500px;}
.y14d{bottom:54.060000px;}
.y23b{bottom:54.135000px;}
.yd4{bottom:54.351000px;}
.y1f{bottom:54.372000px;}
.y169{bottom:54.921000px;}
.yfd{bottom:54.933000px;}
.y2b8{bottom:55.005000px;}
.ycb{bottom:55.089000px;}
.y17f{bottom:55.134000px;}
.y1a5{bottom:55.149000px;}
.yb7{bottom:55.182000px;}
.y128{bottom:55.198500px;}
.y290{bottom:55.215000px;}
.y16f{bottom:55.500000px;}
.y1e8{bottom:55.717500px;}
.y1f5{bottom:55.875000px;}
.y287{bottom:56.017500px;}
.y72{bottom:56.163000px;}
.y220{bottom:56.295000px;}
.y261{bottom:56.760000px;}
.y1cb{bottom:56.763000px;}
.y1ad{bottom:57.135000px;}
.y2e6{bottom:57.885000px;}
.y14c{bottom:68.316000px;}
.yd3{bottom:68.607000px;}
.y1e{bottom:68.628000px;}
.y168{bottom:69.177000px;}
.yfc{bottom:69.189000px;}
.yca{bottom:69.345000px;}
.y17e{bottom:69.390000px;}
.y23a{bottom:69.885000px;}
.y2b7{bottom:70.755000px;}
.y1f4{bottom:71.625000px;}
.y1a4{bottom:72.391500px;}
.yb6{bottom:72.424500px;}
.y127{bottom:72.441000px;}
.y28f{bottom:72.457500px;}
.y260{bottom:72.510000px;}
.y1e7{bottom:72.960000px;}
.y286{bottom:73.260000px;}
.y71{bottom:73.405500px;}
.y21f{bottom:73.537500px;}
.y2e5{bottom:73.635000px;}
.y1ca{bottom:74.005500px;}
.y1ac{bottom:74.377500px;}
.y54{bottom:78.885000px;}
.y14b{bottom:82.572000px;}
.yd2{bottom:82.863000px;}
.y1d{bottom:82.884000px;}
.y167{bottom:83.433000px;}
.yfb{bottom:83.445000px;}
.yc9{bottom:83.601000px;}
.y239{bottom:85.635000px;}
.y2b6{bottom:86.505000px;}
.y1f3{bottom:87.375000px;}
.y2e4{bottom:89.385000px;}
.y1a3{bottom:89.634000px;}
.yb5{bottom:89.667000px;}
.y126{bottom:89.683500px;}
.y28e{bottom:89.700000px;}
.y1e6{bottom:90.202500px;}
.y285{bottom:90.502500px;}
.y70{bottom:90.648000px;}
.y21e{bottom:90.780000px;}
.y1c9{bottom:91.248000px;}
.y1ab{bottom:91.620000px;}
.y14a{bottom:96.828000px;}
.yd1{bottom:97.119000px;}
.y1c{bottom:97.140000px;}
.y166{bottom:97.689000px;}
.yc8{bottom:97.857000px;}
.y53{bottom:99.820500px;}
.y2b5{bottom:102.255000px;}
.y2e3{bottom:105.135000px;}
.y25f{bottom:105.720000px;}
.y16e{bottom:106.770000px;}
.yb4{bottom:106.909500px;}
.y125{bottom:106.926000px;}
.y28d{bottom:106.942500px;}
.y1e5{bottom:107.445000px;}
.y284{bottom:107.745000px;}
.y6f{bottom:107.890500px;}
.y21d{bottom:108.022500px;}
.y1c8{bottom:108.490500px;}
.y149{bottom:111.084000px;}
.yd0{bottom:111.375000px;}
.y165{bottom:111.945000px;}
.yc7{bottom:112.113000px;}
.y52{bottom:114.825750px;}
.y1a2{bottom:115.506000px;}
.y1f2{bottom:118.005000px;}
.y238{bottom:118.680000px;}
.y2e2{bottom:120.885000px;}
.y25e{bottom:122.962500px;}
.y17d{bottom:123.990000px;}
.y16d{bottom:124.012500px;}
.yb3{bottom:124.152000px;}
.y124{bottom:124.168500px;}
.y28c{bottom:124.185000px;}
.y1e4{bottom:124.687500px;}
.y283{bottom:124.987500px;}
.y6e{bottom:125.133000px;}
.y21c{bottom:125.265000px;}
.y148{bottom:125.340000px;}
.y1c7{bottom:125.733000px;}
.yc6{bottom:126.369000px;}
.y1aa{bottom:127.995000px;}
.y51{bottom:129.831000px;}
.y1f1{bottom:133.755000px;}
.y237{bottom:135.922500px;}
.y2e1{bottom:136.635000px;}
.y1b{bottom:136.707000px;}
.y147{bottom:139.596000px;}
.y25d{bottom:140.205000px;}
.yc5{bottom:140.625000px;}
.y17c{bottom:141.232500px;}
.y16c{bottom:141.255000px;}
.yb2{bottom:141.394500px;}
.y123{bottom:141.411000px;}
.y28b{bottom:141.427500px;}
.y1e3{bottom:141.930000px;}
.y282{bottom:142.230000px;}
.y6d{bottom:142.375500px;}
.y21b{bottom:142.507500px;}
.y1c6{bottom:142.975500px;}
.y1a9{bottom:143.745000px;}
.y50{bottom:144.836250px;}
.y2b4{bottom:149.505000px;}
.yfa{bottom:149.865000px;}
.y1a{bottom:151.712250px;}
.y2e0{bottom:152.385000px;}
.y236{bottom:153.165000px;}
.y146{bottom:153.852000px;}
.y25c{bottom:157.447500px;}
.ycf{bottom:158.407500px;}
.y164{bottom:158.422500px;}
.y17b{bottom:158.475000px;}
.y16b{bottom:158.497500px;}
.yb1{bottom:158.637000px;}
.y122{bottom:158.653500px;}
.y28a{bottom:158.670000px;}
.y1e2{bottom:159.172500px;}
.y281{bottom:159.472500px;}
.y1a8{bottom:159.495000px;}
.y6c{bottom:159.618000px;}
.y21a{bottom:159.750000px;}
.y4f{bottom:159.841500px;}
.y1c5{bottom:160.218000px;}
.y1f0{bottom:164.557500px;}
.y2b3{bottom:165.255000px;}
.y19{bottom:166.717500px;}
.yf9{bottom:167.107500px;}
.y145{bottom:168.108000px;}
.y2df{bottom:168.135000px;}
.y235{bottom:170.407500px;}
.y25b{bottom:174.690000px;}
.y4e{bottom:174.846750px;}
.y1a7{bottom:175.245000px;}
.yce{bottom:175.650000px;}
.y163{bottom:175.665000px;}
.y17a{bottom:175.717500px;}
.y16a{bottom:175.740000px;}
.y1a1{bottom:175.879500px;}
.y121{bottom:175.896000px;}
.y289{bottom:175.912500px;}
.y1e1{bottom:176.415000px;}
.y280{bottom:176.715000px;}
.y6b{bottom:176.860500px;}
.y219{bottom:176.992500px;}
.y1c4{bottom:177.460500px;}
.y2b2{bottom:181.005000px;}
.y18{bottom:181.722750px;}
.y1ef{bottom:181.800000px;}
.y144{bottom:182.364000px;}
.y2de{bottom:183.885000px;}
.yf8{bottom:184.350000px;}
.yb0{bottom:184.509000px;}
.y234{bottom:187.650000px;}
.y4d{bottom:189.852000px;}
.y25a{bottom:191.932500px;}
.ycd{bottom:192.892500px;}
.y162{bottom:192.907500px;}
.y179{bottom:192.960000px;}
.yc4{bottom:192.982500px;}
.y1a0{bottom:193.122000px;}
.y120{bottom:193.138500px;}
.y288{bottom:193.155000px;}
.y1e0{bottom:193.657500px;}
.y27f{bottom:193.957500px;}
.y6a{bottom:194.103000px;}
.y218{bottom:194.235000px;}
.y1c3{bottom:194.703000px;}
.y143{bottom:196.620000px;}
.y17{bottom:196.728000px;}
.y2b1{bottom:196.755000px;}
.y1ee{bottom:199.042500px;}
.y2dd{bottom:199.635000px;}
.yf7{bottom:201.592500px;}
.y4c{bottom:204.857250px;}
.y233{bottom:204.892500px;}
.y259{bottom:209.175000px;}
.y161{bottom:210.150000px;}
.y178{bottom:210.202500px;}
.yc3{bottom:210.225000px;}
.y19f{bottom:210.364500px;}
.y11f{bottom:210.381000px;}
.ycc{bottom:210.397500px;}
.y142{bottom:210.876000px;}
.y1df{bottom:210.900000px;}
.y27e{bottom:211.200000px;}
.y69{bottom:211.345500px;}
.y217{bottom:211.477500px;}
.y16{bottom:211.733250px;}
.y1c2{bottom:211.945500px;}
.y2b0{bottom:212.505000px;}
.y2dc{bottom:215.385000px;}
.y1ed{bottom:216.285000px;}
.yf6{bottom:218.835000px;}
.y4b{bottom:219.862500px;}
.y232{bottom:222.135000px;}
.y141{bottom:225.132000px;}
.y258{bottom:226.417500px;}
.y15{bottom:226.738500px;}
.y160{bottom:227.392500px;}
.y177{bottom:227.445000px;}
.yc2{bottom:227.467500px;}
.y19e{bottom:227.607000px;}
.y11e{bottom:227.623500px;}
.yaf{bottom:227.640000px;}
.y1de{bottom:228.142500px;}
.y2af{bottom:228.255000px;}
.y27d{bottom:228.442500px;}
.y68{bottom:228.588000px;}
.y216{bottom:228.720000px;}
.y1c1{bottom:229.188000px;}
.y2db{bottom:231.135000px;}
.y1ec{bottom:233.527500px;}
.y4a{bottom:234.867750px;}
.yf5{bottom:236.077500px;}
.y140{bottom:239.388000px;}
.y14{bottom:241.743750px;}
.y257{bottom:243.660000px;}
.y2ae{bottom:244.005000px;}
.y176{bottom:244.687500px;}
.yc1{bottom:244.710000px;}
.y15f{bottom:244.762500px;}
.y19d{bottom:244.849500px;}
.y11d{bottom:244.866000px;}
.yae{bottom:244.882500px;}
.y1dd{bottom:245.385000px;}
.y27c{bottom:245.685000px;}
.y67{bottom:245.830500px;}
.y215{bottom:245.962500px;}
.y2da{bottom:246.885000px;}
.y49{bottom:249.873000px;}
.y1eb{bottom:250.770000px;}
.yf4{bottom:253.320000px;}
.y13f{bottom:253.644000px;}
.y231{bottom:256.635000px;}
.y1c0{bottom:259.366500px;}
.y2ad{bottom:259.755000px;}
.y256{bottom:260.902500px;}
.y175{bottom:261.930000px;}
.yc0{bottom:261.952500px;}
.y15e{bottom:262.005000px;}
.y19c{bottom:262.092000px;}
.y11c{bottom:262.108500px;}
.yad{bottom:262.125000px;}
.y2d9{bottom:262.635000px;}
.y27b{bottom:262.927500px;}
.y66{bottom:263.073000px;}
.y214{bottom:263.205000px;}
.y48{bottom:264.878250px;}
.y13e{bottom:267.870000px;}
.y1ea{bottom:268.012500px;}
.yf3{bottom:270.562500px;}
.y13{bottom:271.740000px;}
.y230{bottom:272.385000px;}
.y2ac{bottom:275.505000px;}
.y255{bottom:278.145000px;}
.y2d8{bottom:278.385000px;}
.y174{bottom:279.172500px;}
.ybf{bottom:279.195000px;}
.y15d{bottom:279.247500px;}
.y19b{bottom:279.334500px;}
.y11b{bottom:279.351000px;}
.yac{bottom:279.367500px;}
.y47{bottom:279.883500px;}
.y1dc{bottom:279.885000px;}
.y27a{bottom:280.170000px;}
.y65{bottom:280.315500px;}
.y213{bottom:280.447500px;}
.y13d{bottom:282.126000px;}
.y1e9{bottom:285.255000px;}
.y12{bottom:286.666500px;}
.yf2{bottom:287.805000px;}
.y22f{bottom:288.135000px;}
.y2ab{bottom:291.255000px;}
.y2d7{bottom:294.135000px;}
.y46{bottom:294.888750px;}
.y254{bottom:295.387500px;}
.y1db{bottom:295.635000px;}
.y13c{bottom:296.382000px;}
.y173{bottom:296.415000px;}
.ybe{bottom:296.437500px;}
.y15c{bottom:296.490000px;}
.y19a{bottom:296.577000px;}
.y11a{bottom:296.593500px;}
.yab{bottom:296.610000px;}
.y279{bottom:297.412500px;}
.y64{bottom:297.558000px;}
.y212{bottom:297.690000px;}
.y1bf{bottom:302.497500px;}
.y22e{bottom:303.885000px;}
.yf1{bottom:305.047500px;}
.y2aa{bottom:307.005000px;}
.y2d6{bottom:309.885000px;}
.y13b{bottom:310.638000px;}
.y1da{bottom:311.385000px;}
.y253{bottom:312.630000px;}
.y172{bottom:313.657500px;}
.ybd{bottom:313.680000px;}
.y15b{bottom:313.732500px;}
.y199{bottom:313.819500px;}
.y119{bottom:313.836000px;}
.yaa{bottom:313.852500px;}
.y278{bottom:314.655000px;}
.y63{bottom:314.800500px;}
.y211{bottom:314.932500px;}
.y1be{bottom:319.740000px;}
.yf0{bottom:322.290000px;}
.y11{bottom:322.662000px;}
.y2a9{bottom:322.755000px;}
.y45{bottom:324.885000px;}
.y13a{bottom:324.894000px;}
.y2d5{bottom:325.635000px;}
.y252{bottom:329.872500px;}
.y171{bottom:330.900000px;}
.ybc{bottom:330.922500px;}
.y15a{bottom:330.975000px;}
.y198{bottom:331.062000px;}
.y118{bottom:331.078500px;}
.ya9{bottom:331.095000px;}
.y277{bottom:331.897500px;}
.y62{bottom:332.043000px;}
.y210{bottom:332.175000px;}
.y22d{bottom:336.945000px;}
.y1bd{bottom:336.982500px;}
.y2a8{bottom:338.505000px;}
.y139{bottom:339.150000px;}
.yef{bottom:339.532500px;}
.y2d4{bottom:341.385000px;}
.y10{bottom:343.666500px;}
.y1d9{bottom:344.437500px;}
.y251{bottom:347.115000px;}
.y170{bottom:348.142500px;}
.ybb{bottom:348.165000px;}
.y159{bottom:348.217500px;}
.y197{bottom:348.304500px;}
.y117{bottom:348.321000px;}
.ya8{bottom:348.337500px;}
.y276{bottom:349.140000px;}
.y61{bottom:349.285500px;}
.y20f{bottom:349.417500px;}
.y22c{bottom:354.187500px;}
.y1bc{bottom:354.225000px;}
.y2a7{bottom:354.255000px;}
.yee{bottom:356.775000px;}
.y2d3{bottom:357.135000px;}
.yf{bottom:358.671750px;}
.y44{bottom:360.800250px;}
.y1d8{bottom:361.680000px;}
.y250{bottom:364.357500px;}
.yba{bottom:365.407500px;}
.y158{bottom:365.460000px;}
.y196{bottom:365.547000px;}
.y116{bottom:365.563500px;}
.ya7{bottom:365.580000px;}
.y275{bottom:366.382500px;}
.y60{bottom:366.528000px;}
.y20e{bottom:366.660000px;}
.y2a6{bottom:370.005000px;}
.y22b{bottom:371.430000px;}
.y1bb{bottom:371.467500px;}
.y2d2{bottom:372.885000px;}
.ye{bottom:373.677000px;}
.yed{bottom:374.017500px;}
.y1d7{bottom:378.922500px;}
.y24f{bottom:381.600000px;}
.y43{bottom:381.804750px;}
.yb9{bottom:382.650000px;}
.y157{bottom:382.702500px;}
.y195{bottom:382.789500px;}
.y115{bottom:382.806000px;}
.ya6{bottom:382.822500px;}
.y274{bottom:383.625000px;}
.y5f{bottom:383.770500px;}
.y20d{bottom:383.902500px;}
.y2a5{bottom:385.755000px;}
.y2d1{bottom:388.635000px;}
.y22a{bottom:388.672500px;}
.yd{bottom:388.682250px;}
.y1ba{bottom:388.710000px;}
.yec{bottom:391.275000px;}
.y138{bottom:391.327500px;}
.y1d6{bottom:396.165000px;}
.y42{bottom:396.810000px;}
.y24e{bottom:398.842500px;}
.yb8{bottom:399.892500px;}
.y156{bottom:399.945000px;}
.y194{bottom:400.032000px;}
.y114{bottom:400.048500px;}
.ya5{bottom:400.065000px;}
.y5e{bottom:401.013000px;}
.y20c{bottom:401.145000px;}
.y2a4{bottom:401.505000px;}
.yc{bottom:403.687500px;}
.y2d0{bottom:404.385000px;}
.y229{bottom:405.915000px;}
.y1b9{bottom:405.952500px;}
.yeb{bottom:408.517500px;}
.y137{bottom:408.570000px;}
.y41{bottom:411.815250px;}
.y1d5{bottom:413.407500px;}
.y24d{bottom:416.085000px;}
.y155{bottom:417.187500px;}
.y2a3{bottom:417.255000px;}
.y193{bottom:417.274500px;}
.y113{bottom:417.291000px;}
.ya4{bottom:417.307500px;}
.y273{bottom:418.125000px;}
.y5d{bottom:418.255500px;}
.y20b{bottom:418.387500px;}
.yb{bottom:418.692750px;}
.y2cf{bottom:420.135000px;}
.y228{bottom:423.157500px;}
.y1b8{bottom:423.195000px;}
.y136{bottom:425.812500px;}
.yea{bottom:425.920500px;}
.y40{bottom:426.820500px;}
.y1d4{bottom:430.650000px;}
.y2a2{bottom:433.005000px;}
.y24c{bottom:433.327500px;}
.ya{bottom:433.698000px;}
.y272{bottom:433.875000px;}
.y154{bottom:434.430000px;}
.y192{bottom:434.517000px;}
.y112{bottom:434.533500px;}
.ya3{bottom:434.550000px;}
.y5c{bottom:435.498000px;}
.y20a{bottom:435.630000px;}
.y2ce{bottom:435.885000px;}
.y227{bottom:440.400000px;}
.y1b7{bottom:440.437500px;}
.y3f{bottom:441.825750px;}
.y135{bottom:443.055000px;}
.ye9{bottom:443.163000px;}
.y1d3{bottom:447.892500px;}
.y9{bottom:448.703250px;}
.y2a1{bottom:448.755000px;}
.y271{bottom:449.625000px;}
.y24b{bottom:450.570000px;}
.y2cd{bottom:451.635000px;}
.y153{bottom:451.672500px;}
.y191{bottom:451.759500px;}
.y111{bottom:451.776000px;}
.ya2{bottom:451.792500px;}
.y5b{bottom:452.740500px;}
.y209{bottom:452.872500px;}
.y3e{bottom:456.831000px;}
.y226{bottom:457.642500px;}
.y1b6{bottom:457.680000px;}
.y134{bottom:460.297500px;}
.ye8{bottom:460.405500px;}
.y8{bottom:463.708500px;}
.y2a0{bottom:464.505000px;}
.y1d2{bottom:465.135000px;}
.y270{bottom:465.375000px;}
.y2cc{bottom:467.385000px;}
.y152{bottom:468.915000px;}
.y190{bottom:469.002000px;}
.y110{bottom:469.018500px;}
.ya1{bottom:469.035000px;}
.y5a{bottom:469.983000px;}
.y208{bottom:470.115000px;}
.y3d{bottom:471.836250px;}
.y225{bottom:474.885000px;}
.y1b5{bottom:474.922500px;}
.y133{bottom:477.540000px;}
.ye7{bottom:477.648000px;}
.y7{bottom:478.713750px;}
.y29f{bottom:480.255000px;}
.y2cb{bottom:483.135000px;}
.y24a{bottom:485.071500px;}
.y151{bottom:486.157500px;}
.y18f{bottom:486.244500px;}
.y10f{bottom:486.261000px;}
.ya0{bottom:486.277500px;}
.y3c{bottom:486.841500px;}
.y59{bottom:487.225500px;}
.y207{bottom:487.357500px;}
.y1b4{bottom:492.165000px;}
.y6{bottom:493.719000px;}
.y132{bottom:494.782500px;}
.ye6{bottom:494.890500px;}
.y26f{bottom:496.005000px;}
.y2ca{bottom:498.885000px;}
.y1d1{bottom:499.635000px;}
.y3b{bottom:501.846750px;}
.y249{bottom:502.314000px;}
.y150{bottom:503.400000px;}
.y18e{bottom:503.487000px;}
.y10e{bottom:503.503500px;}
.y9f{bottom:503.520000px;}
.y58{bottom:504.468000px;}
.y206{bottom:504.600000px;}
.y5{bottom:508.724250px;}
.y224{bottom:509.385000px;}
.y1b3{bottom:509.407500px;}
.y26e{bottom:511.755000px;}
.y131{bottom:512.025000px;}
.ye5{bottom:512.133000px;}
.y2c9{bottom:514.635000px;}
.y1d0{bottom:515.385000px;}
.y3a{bottom:516.852000px;}
.y14f{bottom:520.642500px;}
.y18d{bottom:520.729500px;}
.y10d{bottom:520.746000px;}
.y9e{bottom:520.762500px;}
.y57{bottom:521.710500px;}
.y205{bottom:521.842500px;}
.y4{bottom:523.729500px;}
.y223{bottom:525.135000px;}
.y1b2{bottom:526.650000px;}
.y29e{bottom:527.505000px;}
.y130{bottom:529.267500px;}
.ye4{bottom:529.375500px;}
.y2c8{bottom:530.385000px;}
.y1cf{bottom:531.135000px;}
.y39{bottom:531.857250px;}
.y14e{bottom:537.885000px;}
.y18c{bottom:537.972000px;}
.y10c{bottom:537.988500px;}
.y9d{bottom:538.005000px;}
.y3{bottom:538.734750px;}
.y56{bottom:538.953000px;}
.y204{bottom:539.085000px;}
.y222{bottom:540.885000px;}
.y26d{bottom:542.475000px;}
.y29d{bottom:543.255000px;}
.y1b1{bottom:543.892500px;}
.y248{bottom:545.445000px;}
.y2c7{bottom:546.135000px;}
.y12f{bottom:546.525000px;}
.y1a6{bottom:546.601500px;}
.ye3{bottom:546.618000px;}
.y38{bottom:546.862500px;}
.y2{bottom:553.740000px;}
.y18b{bottom:555.214500px;}
.y10b{bottom:555.231000px;}
.y9c{bottom:555.247500px;}
.y203{bottom:556.327500px;}
.y221{bottom:556.635000px;}
.y29c{bottom:559.005000px;}
.y26c{bottom:559.717500px;}
.y1b0{bottom:561.135000px;}
.y37{bottom:561.867750px;}
.y2c6{bottom:561.885000px;}
.y1ce{bottom:562.635000px;}
.y247{bottom:562.687500px;}
.y12e{bottom:563.767500px;}
.ye2{bottom:563.860500px;}
.y55{bottom:564.825000px;}
.y18a{bottom:572.457000px;}
.y10a{bottom:572.473500px;}
.y9b{bottom:572.490000px;}
.y202{bottom:573.570000px;}
.y29b{bottom:574.755000px;}
.y36{bottom:576.873000px;}
.y26b{bottom:576.960000px;}
.y2c5{bottom:577.635000px;}
.y1cd{bottom:578.385000px;}
.y246{bottom:579.930000px;}
.y12d{bottom:581.086500px;}
.ye1{bottom:581.103000px;}
.y1{bottom:583.740000px;}
.y189{bottom:589.699500px;}
.y109{bottom:589.716000px;}
.y9a{bottom:589.732500px;}
.y29a{bottom:590.505000px;}
.y201{bottom:590.812500px;}
.y35{bottom:591.878250px;}
.y2c4{bottom:593.385000px;}
.y1af{bottom:594.135000px;}
.y26a{bottom:594.202500px;}
.y245{bottom:597.172500px;}
.y12c{bottom:598.329000px;}
.ye0{bottom:598.345500px;}
.y81{bottom:604.500000px;}
.y299{bottom:606.255000px;}
.y34{bottom:606.883500px;}
.y188{bottom:606.942000px;}
.y108{bottom:606.958500px;}
.y99{bottom:606.975000px;}
.y200{bottom:608.055000px;}
.y2c3{bottom:609.135000px;}
.y1ae{bottom:609.885000px;}
.y269{bottom:611.445000px;}
.y244{bottom:614.415000px;}
.y12b{bottom:615.571500px;}
.ydf{bottom:615.588000px;}
.y33{bottom:621.888750px;}
.y298{bottom:622.005000px;}
.y8d{bottom:624.000000px;}
.y187{bottom:624.184500px;}
.y107{bottom:624.201000px;}
.y98{bottom:624.217500px;}
.y27{bottom:624.384000px;}
.y2c2{bottom:624.885000px;}
.y1ff{bottom:625.297500px;}
.y1cc{bottom:625.635000px;}
.y80{bottom:627.000000px;}
.y268{bottom:628.687500px;}
.y243{bottom:631.657500px;}
.y12a{bottom:632.814000px;}
.yde{bottom:632.830500px;}
.y297{bottom:637.755000px;}
.y26{bottom:638.640000px;}
.y2c1{bottom:640.635000px;}
.y186{bottom:641.427000px;}
.y106{bottom:641.443500px;}
.y97{bottom:641.460000px;}
.y7f{bottom:642.000000px;}
.y1fe{bottom:642.540000px;}
.y267{bottom:645.930000px;}
.y8c{bottom:646.500000px;}
.y242{bottom:648.900000px;}
.y129{bottom:650.056500px;}
.ydd{bottom:650.073000px;}
.y32{bottom:651.885000px;}
.y296{bottom:653.505000px;}
.y2c0{bottom:656.385000px;}
.y185{bottom:658.669500px;}
.y105{bottom:658.686000px;}
.y96{bottom:658.702500px;}
.y1fd{bottom:659.782500px;}
.y7d{bottom:663.000000px;}
.y266{bottom:663.172500px;}
.y241{bottom:666.142500px;}
.ydc{bottom:667.315500px;}
.y295{bottom:669.255000px;}
.y8b{bottom:670.500000px;}
.y2bf{bottom:672.135000px;}
.y184{bottom:675.912000px;}
.y104{bottom:675.928500px;}
.y95{bottom:675.945000px;}
.y1fc{bottom:677.025000px;}
.y7c{bottom:678.000000px;}
.y265{bottom:680.415000px;}
.y240{bottom:683.385000px;}
.y8a{bottom:684.000000px;}
.ydb{bottom:684.558000px;}
.y294{bottom:685.005000px;}
.y31{bottom:687.843750px;}
.y2be{bottom:687.885000px;}
.y183{bottom:693.154500px;}
.y103{bottom:693.171000px;}
.y94{bottom:693.187500px;}
.y1fb{bottom:694.267500px;}
.y7b{bottom:697.500000px;}
.y264{bottom:697.657500px;}
.y293{bottom:700.755000px;}
.yda{bottom:701.800500px;}
.y2bd{bottom:703.635000px;}
.y88{bottom:706.500000px;}
.y30{bottom:708.848250px;}
.y25{bottom:708.849000px;}
.y182{bottom:710.397000px;}
.y102{bottom:710.413500px;}
.y93{bottom:710.430000px;}
.y1fa{bottom:711.510000px;}
.y263{bottom:714.900000px;}
.y292{bottom:716.505000px;}
.y7a{bottom:717.000000px;}
.y23f{bottom:717.885000px;}
.yd9{bottom:719.043000px;}
.y2bc{bottom:719.385000px;}
.y86{bottom:722.850000px;}
.y24{bottom:723.105000px;}
.y2f{bottom:723.853500px;}
.y181{bottom:727.639500px;}
.y101{bottom:727.656000px;}
.y92{bottom:727.672500px;}
.y1f9{bottom:728.752500px;}
.y79{bottom:732.000000px;}
.y262{bottom:732.142500px;}
.y23e{bottom:733.635000px;}
.y2bb{bottom:735.135000px;}
.yd8{bottom:736.285500px;}
.y2e{bottom:738.858750px;}
.y291{bottom:740.889000px;}
.y85{bottom:741.000000px;}
.y23{bottom:741.105000px;}
.y100{bottom:744.898500px;}
.y91{bottom:744.915000px;}
.y1f8{bottom:745.995000px;}
.y23d{bottom:749.385000px;}
.y2ba{bottom:750.885000px;}
.y78{bottom:751.500000px;}
.y180{bottom:753.511500px;}
.yd7{bottom:753.528000px;}
.y2d{bottom:753.864000px;}
.y84{bottom:754.500000px;}
.yff{bottom:762.141000px;}
.y90{bottom:762.157500px;}
.y23c{bottom:765.135000px;}
.y2b9{bottom:766.635000px;}
.y76{bottom:768.000000px;}
.y2c{bottom:768.869250px;}
.yd6{bottom:770.770500px;}
.y83{bottom:774.000000px;}
.yfe{bottom:779.383500px;}
.y8f{bottom:779.400000px;}
.y1f7{bottom:782.385000px;}
.y2b{bottom:783.874500px;}
.y22{bottom:786.105000px;}
.yd5{bottom:788.013000px;}
.y74{bottom:789.000000px;}
.y82{bottom:790.500000px;}
.y8e{bottom:796.642500px;}
.y1f6{bottom:798.135000px;}
.y2a{bottom:798.879750px;}
.y21{bottom:810.105000px;}
.y29{bottom:813.885000px;}
.y73{bottom:820.185000px;}
.y20{bottom:861.105000px;}
.y28{bottom:924.000000px;}
.h10{height:10.800000px;}
.h12{height:12.000000px;}
.hf{height:13.500000px;}
.he{height:15.000000px;}
.hc{height:16.500000px;}
.h9{height:47.085938px;}
.h11{height:47.698242px;}
.h5{height:51.216000px;}
.hd{height:52.998047px;}
.h4{height:57.618000px;}
.h16{height:57.738000px;}
.h19{height:58.536000px;}
.h1{height:60.819000px;}
.h3{height:61.788000px;}
.h2{height:62.082000px;}
.h1a{height:64.020000px;}
.h1b{height:65.040000px;}
.ha{height:70.422000px;}
.h13{height:70.433400px;}
.h18{height:70.451400px;}
.h17{height:70.565400px;}
.h14{height:70.769400px;}
.h15{height:71.015400px;}
.hb{height:71.544000px;}
.h8{height:76.824000px;}
.h6{height:102.432000px;}
.h7{height:103.382400px;}
.h0{height:894.000000px;}
.w5{width:123.000000px;}
.w3{width:130.500000px;}
.w8{width:133.500000px;}
.w14{width:151.500000px;}
.we{width:157.527778px;}
.w6{width:169.500000px;}
.w13{width:171.000000px;}
.w4{width:174.000000px;}
.wa{width:175.500000px;}
.wf{width:184.500000px;}
.wd{width:193.500000px;}
.w9{width:201.000000px;}
.w2{width:204.000000px;}
.wb{width:213.000000px;}
.w7{width:216.000000px;}
.w12{width:223.500000px;}
.w10{width:226.500000px;}
.wc{width:231.000000px;}
.w11{width:232.500000px;}
.w1{width:252.000000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x1d{left:1.500000px;}
.x15{left:3.035700px;}
.x11{left:4.141350px;}
.x6{left:6.000000px;}
.x18{left:25.525350px;}
.xd{left:30.820800px;}
.x13{left:34.539450px;}
.x1b{left:46.533000px;}
.xb{left:54.000000px;}
.xc{left:60.770400px;}
.xf{left:71.260650px;}
.x17{left:72.763350px;}
.x1{left:76.200000px;}
.x7{left:77.415000px;}
.x14{left:87.000000px;}
.x21{left:91.200000px;}
.x9{left:93.409500px;}
.x20{left:94.657500px;}
.x2{left:98.700750px;}
.x8{left:99.930000px;}
.x1a{left:124.500000px;}
.x10{left:132.000000px;}
.x19{left:165.000000px;}
.x16{left:166.500000px;}
.xe{left:174.000000px;}
.x12{left:181.500000px;}
.xa{left:299.040000px;}
.x1f{left:331.500000px;}
.x1c{left:333.000000px;}
.x1e{left:334.486111px;}
.x5{left:386.590500px;}
.x3{left:391.110000px;}
.x4{left:412.335000px;}
@media print{
.v4{vertical-align:-19.360000pt;}
.v3{vertical-align:-0.933333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.746667pt;}
.v1{vertical-align:28.160000pt;}
.ls44{letter-spacing:-3.795733pt;}
.ls51{letter-spacing:-3.696000pt;}
.ls2f{letter-spacing:-3.044800pt;}
.ls56{letter-spacing:-2.560000pt;}
.ls45{letter-spacing:-2.458133pt;}
.ls30{letter-spacing:-2.370133pt;}
.ls36{letter-spacing:-2.288000pt;}
.ls50{letter-spacing:-2.223467pt;}
.ls4b{letter-spacing:-2.170667pt;}
.ls35{letter-spacing:-2.112000pt;}
.ls4d{letter-spacing:-2.053333pt;}
.ls52{letter-spacing:-1.900800pt;}
.ls3c{letter-spacing:-1.865600pt;}
.ls34{letter-spacing:-1.701333pt;}
.ls98{letter-spacing:-1.584000pt;}
.ls3d{letter-spacing:-1.578133pt;}
.ls97{letter-spacing:-1.525333pt;}
.ls4a{letter-spacing:-1.466667pt;}
.ls3a{letter-spacing:-1.408000pt;}
.lscb{letter-spacing:-1.360000pt;}
.ls38{letter-spacing:-1.355200pt;}
.ls90{letter-spacing:-1.349333pt;}
.lscc{letter-spacing:-1.333333pt;}
.lscd{letter-spacing:-1.320000pt;}
.ls41{letter-spacing:-1.290667pt;}
.ls92{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-1.232000pt;}
.lsb0{letter-spacing:-1.226667pt;}
.ls57{letter-spacing:-1.216000pt;}
.ls2e{letter-spacing:-1.173333pt;}
.lsa9{letter-spacing:-1.120000pt;}
.ls31{letter-spacing:-1.114667pt;}
.lsc3{letter-spacing:-1.080000pt;}
.lsc4{letter-spacing:-1.066667pt;}
.ls33{letter-spacing:-1.056000pt;}
.lsb3{letter-spacing:-1.040000pt;}
.lsb4{letter-spacing:-1.013333pt;}
.ls88{letter-spacing:-1.008000pt;}
.lsc2{letter-spacing:-1.000000pt;}
.ls42{letter-spacing:-0.997333pt;}
.lsb8{letter-spacing:-0.960000pt;}
.ls5f{letter-spacing:-0.938667pt;}
.ls3e{letter-spacing:-0.932800pt;}
.lsc8{letter-spacing:-0.920000pt;}
.lsf{letter-spacing:-0.912000pt;}
.lsc7{letter-spacing:-0.906667pt;}
.ls49{letter-spacing:-0.880000pt;}
.ls69{letter-spacing:-0.864000pt;}
.ls1b{letter-spacing:-0.861333pt;}
.lsca{letter-spacing:-0.853333pt;}
.ls37{letter-spacing:-0.827200pt;}
.ls66{letter-spacing:-0.821333pt;}
.ls1f{letter-spacing:-0.810667pt;}
.lsb7{letter-spacing:-0.800000pt;}
.ls53{letter-spacing:-0.768533pt;}
.ls2d{letter-spacing:-0.762667pt;}
.lsd6{letter-spacing:-0.760000pt;}
.lsaa{letter-spacing:-0.746667pt;}
.ls87{letter-spacing:-0.739200pt;}
.ls46{letter-spacing:-0.715733pt;}
.ls4c{letter-spacing:-0.709867pt;}
.ls2a{letter-spacing:-0.704000pt;}
.ls95{letter-spacing:-0.693333pt;}
.ls1e{letter-spacing:-0.658667pt;}
.ls47{letter-spacing:-0.651200pt;}
.ls2b{letter-spacing:-0.645333pt;}
.ls8f{letter-spacing:-0.640000pt;}
.ls83{letter-spacing:-0.616000pt;}
.lse{letter-spacing:-0.608000pt;}
.ls11{letter-spacing:-0.597333pt;}
.ls2c{letter-spacing:-0.586667pt;}
.ls54{letter-spacing:-0.554667pt;}
.ls8e{letter-spacing:-0.533333pt;}
.ls3f{letter-spacing:-0.528000pt;}
.lsb1{letter-spacing:-0.520000pt;}
.ls55{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls6d{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.469333pt;}
.ls6c{letter-spacing:-0.432000pt;}
.lsc9{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.405333pt;}
.lsd4{letter-spacing:-0.400000pt;}
.ls7d{letter-spacing:-0.384000pt;}
.ls8d{letter-spacing:-0.373333pt;}
.lsd5{letter-spacing:-0.360000pt;}
.ls17{letter-spacing:-0.354667pt;}
.ls40{letter-spacing:-0.352000pt;}
.ls7e{letter-spacing:-0.336000pt;}
.ls7c{letter-spacing:-0.328533pt;}
.ls7f{letter-spacing:-0.324000pt;}
.lsb6{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.304000pt;}
.ls4f{letter-spacing:-0.293333pt;}
.ls72{letter-spacing:-0.288000pt;}
.lsaf{letter-spacing:-0.280000pt;}
.ls8a{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.253333pt;}
.ls84{letter-spacing:-0.246400pt;}
.ls67{letter-spacing:-0.234667pt;}
.ls96{letter-spacing:-0.213333pt;}
.ls85{letter-spacing:-0.205333pt;}
.ls18{letter-spacing:-0.202667pt;}
.lsd3{letter-spacing:-0.200000pt;}
.ls43{letter-spacing:-0.176000pt;}
.ls89{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.152000pt;}
.lsac{letter-spacing:-0.120000pt;}
.ls48{letter-spacing:-0.117333pt;}
.lsae{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls80{letter-spacing:-0.096000pt;}
.ls4e{letter-spacing:-0.058667pt;}
.ls8c{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls68{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:-0.042667pt;}
.lsab{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.lsd2{letter-spacing:0.040000pt;}
.ls71{letter-spacing:0.044000pt;}
.ls7b{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.050667pt;}
.ls70{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.058667pt;}
.ls79{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.101333pt;}
.ls91{letter-spacing:0.106667pt;}
.ls5e{letter-spacing:0.117333pt;}
.lsd1{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls61{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.176000pt;}
.lsa7{letter-spacing:0.200000pt;}
.ls4{letter-spacing:0.202667pt;}
.ls94{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.234667pt;}
.lsa3{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.253333pt;}
.ls93{letter-spacing:0.266667pt;}
.lsb2{letter-spacing:0.280000pt;}
.ls21{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.304000pt;}
.ls8b{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.354667pt;}
.lsad{letter-spacing:0.360000pt;}
.ls77{letter-spacing:0.373333pt;}
.lsa2{letter-spacing:0.400000pt;}
.ls8{letter-spacing:0.405333pt;}
.ls59{letter-spacing:0.410667pt;}
.lsa0{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.432000pt;}
.lsce{letter-spacing:0.440000pt;}
.ls0{letter-spacing:0.456000pt;}
.ls60{letter-spacing:0.469333pt;}
.ls58{letter-spacing:0.528000pt;}
.lsb5{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.557333pt;}
.ls65{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.586667pt;}
.lsc6{letter-spacing:0.600000pt;}
.ls5d{letter-spacing:0.645333pt;}
.ls5c{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.709333pt;}
.lsb9{letter-spacing:0.720000pt;}
.lsbe{letter-spacing:0.746667pt;}
.ls62{letter-spacing:0.762667pt;}
.ls9e{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.810667pt;}
.ls63{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.861333pt;}
.ls6e{letter-spacing:0.880000pt;}
.lsa1{letter-spacing:0.920000pt;}
.ls78{letter-spacing:0.938667pt;}
.ls82{letter-spacing:0.960000pt;}
.ls14{letter-spacing:0.962667pt;}
.ls73{letter-spacing:0.997333pt;}
.ls15{letter-spacing:1.013333pt;}
.lsbc{letter-spacing:1.040000pt;}
.ls22{letter-spacing:1.044267pt;}
.ls6f{letter-spacing:1.056000pt;}
.ls1{letter-spacing:1.064000pt;}
.lsbb{letter-spacing:1.066667pt;}
.lsc5{letter-spacing:1.080000pt;}
.ls5a{letter-spacing:1.114667pt;}
.ls9b{letter-spacing:1.120000pt;}
.lsba{letter-spacing:1.160000pt;}
.ls5b{letter-spacing:1.173333pt;}
.ls9d{letter-spacing:1.226667pt;}
.ls76{letter-spacing:1.232000pt;}
.ls74{letter-spacing:1.349333pt;}
.ls75{letter-spacing:1.408000pt;}
.ls64{letter-spacing:1.466667pt;}
.lsbd{letter-spacing:1.520000pt;}
.lsa4{letter-spacing:1.600000pt;}
.lsa5{letter-spacing:1.640000pt;}
.lsa6{letter-spacing:1.653333pt;}
.ls86{letter-spacing:1.760000pt;}
.ls9a{letter-spacing:1.994667pt;}
.ls99{letter-spacing:2.346667pt;}
.lsc1{letter-spacing:11.040000pt;}
.lsc0{letter-spacing:11.520000pt;}
.lsd0{letter-spacing:11.733333pt;}
.lsa8{letter-spacing:12.160000pt;}
.ls25{letter-spacing:12.965333pt;}
.ls27{letter-spacing:13.786667pt;}
.ls9f{letter-spacing:14.026667pt;}
.ls81{letter-spacing:14.138667pt;}
.lscf{letter-spacing:14.720000pt;}
.lsbf{letter-spacing:15.626667pt;}
.ls9c{letter-spacing:16.693333pt;}
.ls6a{letter-spacing:56.016000pt;}
.ws7e{word-spacing:-16.133333pt;}
.wsd0{word-spacing:-16.016000pt;}
.wsed{word-spacing:-15.898667pt;}
.wsec{word-spacing:-15.605333pt;}
.ws97{word-spacing:-15.546667pt;}
.wsa2{word-spacing:-15.488000pt;}
.wsc4{word-spacing:-15.429333pt;}
.ws8e{word-spacing:-15.370667pt;}
.ws75{word-spacing:-15.312000pt;}
.wsca{word-spacing:-15.253333pt;}
.wsc6{word-spacing:-15.194667pt;}
.wsa3{word-spacing:-15.136000pt;}
.ws76{word-spacing:-15.077333pt;}
.ws37{word-spacing:-15.018667pt;}
.ws105{word-spacing:-14.986667pt;}
.ws36{word-spacing:-14.960000pt;}
.wsa6{word-spacing:-14.901333pt;}
.ws74{word-spacing:-14.842667pt;}
.ws98{word-spacing:-14.784000pt;}
.ws9a{word-spacing:-14.725333pt;}
.ws33{word-spacing:-14.666667pt;}
.ws53{word-spacing:-14.608000pt;}
.wsf3{word-spacing:-14.560000pt;}
.ws9b{word-spacing:-14.549333pt;}
.wsa9{word-spacing:-14.490667pt;}
.wsf0{word-spacing:-14.453333pt;}
.wsa1{word-spacing:-14.432000pt;}
.ws54{word-spacing:-14.373333pt;}
.wsa4{word-spacing:-14.314667pt;}
.ws11a{word-spacing:-14.293333pt;}
.ws30{word-spacing:-14.256000pt;}
.ws3a{word-spacing:-14.197333pt;}
.ws47{word-spacing:-14.138667pt;}
.wsf4{word-spacing:-14.133333pt;}
.ws32{word-spacing:-14.080000pt;}
.ws31{word-spacing:-14.021333pt;}
.ws4d{word-spacing:-14.015467pt;}
.ws3f{word-spacing:-13.962667pt;}
.ws50{word-spacing:-13.956800pt;}
.ws4c{word-spacing:-13.950933pt;}
.ws34{word-spacing:-13.904000pt;}
.ws58{word-spacing:-13.898133pt;}
.ws11f{word-spacing:-13.866667pt;}
.wsc1{word-spacing:-13.845333pt;}
.ws40{word-spacing:-13.839467pt;}
.ws4e{word-spacing:-13.786667pt;}
.ws125{word-spacing:-13.760000pt;}
.ws46{word-spacing:-13.733867pt;}
.ws9c{word-spacing:-13.728000pt;}
.ws126{word-spacing:-13.706667pt;}
.ws49{word-spacing:-13.669333pt;}
.wsd4{word-spacing:-13.653333pt;}
.ws1e{word-spacing:-13.629333pt;}
.ws3c{word-spacing:-13.610667pt;}
.ws119{word-spacing:-13.600000pt;}
.ws39{word-spacing:-13.552000pt;}
.wse4{word-spacing:-13.546667pt;}
.ws19{word-spacing:-13.528000pt;}
.wsa5{word-spacing:-13.493333pt;}
.ws1a{word-spacing:-13.477333pt;}
.ws42{word-spacing:-13.434667pt;}
.ws134{word-spacing:-13.386667pt;}
.ws48{word-spacing:-13.376000pt;}
.wscb{word-spacing:-13.333333pt;}
.ws41{word-spacing:-13.311467pt;}
.wsd3{word-spacing:-13.280000pt;}
.ws43{word-spacing:-13.258667pt;}
.wsf9{word-spacing:-13.226667pt;}
.ws52{word-spacing:-13.200000pt;}
.ws1f{word-spacing:-13.173333pt;}
.ws45{word-spacing:-13.088533pt;}
.ws1b{word-spacing:-13.072000pt;}
.ws124{word-spacing:-13.066667pt;}
.ws109{word-spacing:-13.013333pt;}
.ws3b{word-spacing:-12.965333pt;}
.ws108{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws11d{word-spacing:-12.906667pt;}
.ws106{word-spacing:-12.853333pt;}
.ws1d{word-spacing:-12.818667pt;}
.ws44{word-spacing:-12.801067pt;}
.ws57{word-spacing:-12.765867pt;}
.wsfe{word-spacing:-12.746667pt;}
.wsd9{word-spacing:-12.693333pt;}
.ws17{word-spacing:-12.666667pt;}
.ws18{word-spacing:-12.616000pt;}
.ws51{word-spacing:-12.613333pt;}
.wsf5{word-spacing:-12.586667pt;}
.ws3d{word-spacing:-12.554667pt;}
.ws10c{word-spacing:-12.533333pt;}
.ws4f{word-spacing:-12.496000pt;}
.ws120{word-spacing:-12.480000pt;}
.ws55{word-spacing:-12.443200pt;}
.wsaf{word-spacing:-12.432000pt;}
.ws130{word-spacing:-12.426667pt;}
.ws1c{word-spacing:-12.413333pt;}
.ws3e{word-spacing:-12.378667pt;}
.ws10b{word-spacing:-12.373333pt;}
.ws90{word-spacing:-12.336000pt;}
.ws111{word-spacing:-12.320000pt;}
.ws38{word-spacing:-12.296533pt;}
.ws113{word-spacing:-12.266667pt;}
.ws16{word-spacing:-12.261333pt;}
.ws114{word-spacing:-12.213333pt;}
.ws4b{word-spacing:-12.208533pt;}
.wsb1{word-spacing:-12.144000pt;}
.wsfb{word-spacing:-12.106667pt;}
.wsde{word-spacing:-12.053333pt;}
.wsab{word-spacing:-12.000000pt;}
.ws80{word-spacing:-11.952000pt;}
.wsae{word-spacing:-11.904000pt;}
.ws5c{word-spacing:-11.704000pt;}
.ws104{word-spacing:-11.640000pt;}
.ws35{word-spacing:-11.621867pt;}
.wsb0{word-spacing:-11.568000pt;}
.wsef{word-spacing:-11.120000pt;}
.ws81{word-spacing:-11.088000pt;}
.ws116{word-spacing:-11.080000pt;}
.ws99{word-spacing:-11.044000pt;}
.ws115{word-spacing:-11.040000pt;}
.wsc7{word-spacing:-10.992000pt;}
.ws56{word-spacing:-10.970667pt;}
.ws4a{word-spacing:-10.870933pt;}
.wsa7{word-spacing:-10.666667pt;}
.ws117{word-spacing:-10.600000pt;}
.ws12c{word-spacing:-10.440000pt;}
.wsfc{word-spacing:-10.400000pt;}
.wsf8{word-spacing:-10.360000pt;}
.ws136{word-spacing:-10.320000pt;}
.wsff{word-spacing:-10.280000pt;}
.ws8f{word-spacing:-10.266667pt;}
.ws101{word-spacing:-10.240000pt;}
.ws102{word-spacing:-10.200000pt;}
.ws5a{word-spacing:-10.154667pt;}
.ws131{word-spacing:-10.120000pt;}
.ws59{word-spacing:-10.112000pt;}
.wsc2{word-spacing:-10.061333pt;}
.ws137{word-spacing:-10.040000pt;}
.wsbd{word-spacing:-10.020267pt;}
.wsf1{word-spacing:-10.000000pt;}
.wsf6{word-spacing:-9.960000pt;}
.wsaa{word-spacing:-9.938133pt;}
.wsf7{word-spacing:-9.880000pt;}
.ws12b{word-spacing:-9.800000pt;}
.wsfa{word-spacing:-9.720000pt;}
.ws107{word-spacing:-9.680000pt;}
.ws12f{word-spacing:-9.640000pt;}
.ws12e{word-spacing:-9.600000pt;}
.wsc5{word-spacing:-9.527467pt;}
.ws11b{word-spacing:-9.520000pt;}
.wsfd{word-spacing:-9.480000pt;}
.ws11e{word-spacing:-9.360000pt;}
.ws132{word-spacing:-9.240000pt;}
.ws10a{word-spacing:-9.200000pt;}
.ws121{word-spacing:-9.120000pt;}
.ws11c{word-spacing:-9.080000pt;}
.ws110{word-spacing:-9.000000pt;}
.ws103{word-spacing:-8.960000pt;}
.ws112{word-spacing:-8.920000pt;}
.wsf2{word-spacing:-8.880000pt;}
.ws123{word-spacing:-8.680000pt;}
.wsad{word-spacing:-8.676000pt;}
.ws122{word-spacing:-8.640000pt;}
.ws5b{word-spacing:-8.106667pt;}
.ws15{word-spacing:-6.272000pt;}
.wscc{word-spacing:-2.053333pt;}
.wsc{word-spacing:-0.962667pt;}
.ws118{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.762667pt;}
.ws7b{word-spacing:-0.704000pt;}
.ws6d{word-spacing:-0.645333pt;}
.wse1{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.608000pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws8b{word-spacing:-0.576000pt;}
.ws1{word-spacing:-0.557333pt;}
.wsce{word-spacing:-0.533333pt;}
.ws92{word-spacing:-0.528000pt;}
.ws27{word-spacing:-0.506667pt;}
.wsb6{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.469333pt;}
.ws24{word-spacing:-0.456000pt;}
.ws13{word-spacing:-0.432000pt;}
.wsd2{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws2a{word-spacing:-0.405333pt;}
.ws89{word-spacing:-0.384000pt;}
.ws13b{word-spacing:-0.373333pt;}
.ws29{word-spacing:-0.354667pt;}
.ws5e{word-spacing:-0.352000pt;}
.wsbb{word-spacing:-0.336000pt;}
.wscf{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.304000pt;}
.ws83{word-spacing:-0.293333pt;}
.wsa0{word-spacing:-0.288000pt;}
.wsda{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.253333pt;}
.ws8c{word-spacing:-0.240000pt;}
.ws64{word-spacing:-0.234667pt;}
.wsdf{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.176000pt;}
.wsd7{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.152000pt;}
.ws87{word-spacing:-0.144000pt;}
.ws6f{word-spacing:-0.117333pt;}
.wsdb{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.101333pt;}
.wsbc{word-spacing:-0.096000pt;}
.wsbe{word-spacing:-0.088000pt;}
.ws85{word-spacing:-0.058667pt;}
.wsd1{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.050667pt;}
.wsb{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.048000pt;}
.ws2c{word-spacing:0.050667pt;}
.wse8{word-spacing:0.053333pt;}
.ws9d{word-spacing:0.058667pt;}
.wsb5{word-spacing:0.096000pt;}
.ws129{word-spacing:0.106667pt;}
.ws7a{word-spacing:0.117333pt;}
.ws2f{word-spacing:0.152000pt;}
.wsd5{word-spacing:0.160000pt;}
.ws7c{word-spacing:0.176000pt;}
.wsc0{word-spacing:0.192000pt;}
.wsd{word-spacing:0.202667pt;}
.wsd6{word-spacing:0.213333pt;}
.ws82{word-spacing:0.234667pt;}
.wse3{word-spacing:0.266667pt;}
.ws8d{word-spacing:0.288000pt;}
.ws62{word-spacing:0.293333pt;}
.ws2e{word-spacing:0.304000pt;}
.wsdd{word-spacing:0.320000pt;}
.ws14{word-spacing:0.336000pt;}
.ws6c{word-spacing:0.352000pt;}
.ws23{word-spacing:0.354667pt;}
.ws10e{word-spacing:0.373333pt;}
.ws28{word-spacing:0.405333pt;}
.ws5f{word-spacing:0.410667pt;}
.wsea{word-spacing:0.426667pt;}
.wsc9{word-spacing:0.432000pt;}
.ws2d{word-spacing:0.456000pt;}
.wsbf{word-spacing:0.469333pt;}
.ws93{word-spacing:0.528000pt;}
.wse5{word-spacing:0.533333pt;}
.ws10{word-spacing:0.557333pt;}
.ws8a{word-spacing:0.576000pt;}
.ws7d{word-spacing:0.586667pt;}
.ws2b{word-spacing:0.608000pt;}
.wsb8{word-spacing:0.624000pt;}
.ws12a{word-spacing:0.640000pt;}
.ws67{word-spacing:0.645333pt;}
.wsb2{word-spacing:0.657067pt;}
.ws3{word-spacing:0.658667pt;}
.ws10f{word-spacing:0.693333pt;}
.ws6e{word-spacing:0.704000pt;}
.ws25{word-spacing:0.709333pt;}
.wsb7{word-spacing:0.720000pt;}
.wsdc{word-spacing:0.746667pt;}
.ws91{word-spacing:0.762667pt;}
.ws127{word-spacing:0.800000pt;}
.ws4{word-spacing:0.810667pt;}
.ws63{word-spacing:0.821333pt;}
.ws128{word-spacing:0.853333pt;}
.ws11{word-spacing:0.861333pt;}
.ws84{word-spacing:0.862400pt;}
.ws96{word-spacing:0.864000pt;}
.ws77{word-spacing:0.880000pt;}
.ws10d{word-spacing:0.906667pt;}
.ws7{word-spacing:0.912000pt;}
.ws79{word-spacing:0.938667pt;}
.ws9e{word-spacing:0.944533pt;}
.wse9{word-spacing:0.960000pt;}
.ws2{word-spacing:0.962667pt;}
.ws78{word-spacing:0.997333pt;}
.ws9f{word-spacing:1.008000pt;}
.wsd8{word-spacing:1.013333pt;}
.ws12{word-spacing:1.056000pt;}
.ws9{word-spacing:1.064000pt;}
.wse6{word-spacing:1.066667pt;}
.wsb4{word-spacing:1.104000pt;}
.ws60{word-spacing:1.114667pt;}
.wse7{word-spacing:1.120000pt;}
.wsb9{word-spacing:1.152000pt;}
.wsa{word-spacing:1.165333pt;}
.ws69{word-spacing:1.173333pt;}
.wsba{word-spacing:1.200000pt;}
.ws5{word-spacing:1.216000pt;}
.wse0{word-spacing:1.226667pt;}
.ws71{word-spacing:1.232000pt;}
.wsf{word-spacing:1.266667pt;}
.wse2{word-spacing:1.280000pt;}
.ws61{word-spacing:1.290667pt;}
.wscd{word-spacing:1.333333pt;}
.ws95{word-spacing:1.349333pt;}
.ws66{word-spacing:1.408000pt;}
.ws5d{word-spacing:1.466667pt;}
.wsee{word-spacing:1.936000pt;}
.wsc8{word-spacing:2.229333pt;}
.ws86{word-spacing:2.522667pt;}
.wsac{word-spacing:2.738667pt;}
.wseb{word-spacing:2.816000pt;}
.ws133{word-spacing:3.013333pt;}
.wsa8{word-spacing:3.461333pt;}
.wsc3{word-spacing:4.165333pt;}
.ws139{word-spacing:4.413333pt;}
.ws138{word-spacing:4.466667pt;}
.ws100{word-spacing:4.480000pt;}
.ws13a{word-spacing:4.493333pt;}
.ws12d{word-spacing:4.586667pt;}
.ws135{word-spacing:4.760000pt;}
.ws94{word-spacing:6.570667pt;}
.ws20{word-spacing:31.744000pt;}
.ws73{word-spacing:32.000000pt;}
.ws7f{word-spacing:32.016000pt;}
.ws72{word-spacing:169.173333pt;}
._11{margin-left:-10.093333pt;}
._10{margin-left:-8.624000pt;}
._b{margin-left:-7.685333pt;}
._0{margin-left:-6.536000pt;}
._7{margin-left:-5.184000pt;}
._4{margin-left:-4.256000pt;}
._8{margin-left:-3.328000pt;}
._2{margin-left:-2.229333pt;}
._1{margin-left:-0.962667pt;}
._3{width:0.962667pt;}
._5{width:1.925333pt;}
._d{width:3.050667pt;}
._e{width:10.896000pt;}
._f{width:15.018667pt;}
._9{width:42.624000pt;}
._6{width:43.872000pt;}
._c{width:179.693333pt;}
._a{width:842.314667pt;}
.fsa{font-size:36.000000pt;}
.fsc{font-size:40.000000pt;}
.fs8{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:43.200000pt;}
.fs9{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:1.117200pt;}
.y89{bottom:1.241333pt;}
.y7e{bottom:1.908000pt;}
.y77{bottom:2.574667pt;}
.y75{bottom:3.241333pt;}
.y14d{bottom:48.053333pt;}
.y23b{bottom:48.120000pt;}
.yd4{bottom:48.312000pt;}
.y1f{bottom:48.330667pt;}
.y169{bottom:48.818667pt;}
.yfd{bottom:48.829333pt;}
.y2b8{bottom:48.893333pt;}
.ycb{bottom:48.968000pt;}
.y17f{bottom:49.008000pt;}
.y1a5{bottom:49.021333pt;}
.yb7{bottom:49.050667pt;}
.y128{bottom:49.065333pt;}
.y290{bottom:49.080000pt;}
.y16f{bottom:49.333333pt;}
.y1e8{bottom:49.526667pt;}
.y1f5{bottom:49.666667pt;}
.y287{bottom:49.793333pt;}
.y72{bottom:49.922667pt;}
.y220{bottom:50.040000pt;}
.y261{bottom:50.453333pt;}
.y1cb{bottom:50.456000pt;}
.y1ad{bottom:50.786667pt;}
.y2e6{bottom:51.453333pt;}
.y14c{bottom:60.725333pt;}
.yd3{bottom:60.984000pt;}
.y1e{bottom:61.002667pt;}
.y168{bottom:61.490667pt;}
.yfc{bottom:61.501333pt;}
.yca{bottom:61.640000pt;}
.y17e{bottom:61.680000pt;}
.y23a{bottom:62.120000pt;}
.y2b7{bottom:62.893333pt;}
.y1f4{bottom:63.666667pt;}
.y1a4{bottom:64.348000pt;}
.yb6{bottom:64.377333pt;}
.y127{bottom:64.392000pt;}
.y28f{bottom:64.406667pt;}
.y260{bottom:64.453333pt;}
.y1e7{bottom:64.853333pt;}
.y286{bottom:65.120000pt;}
.y71{bottom:65.249333pt;}
.y21f{bottom:65.366667pt;}
.y2e5{bottom:65.453333pt;}
.y1ca{bottom:65.782667pt;}
.y1ac{bottom:66.113333pt;}
.y54{bottom:70.120000pt;}
.y14b{bottom:73.397333pt;}
.yd2{bottom:73.656000pt;}
.y1d{bottom:73.674667pt;}
.y167{bottom:74.162667pt;}
.yfb{bottom:74.173333pt;}
.yc9{bottom:74.312000pt;}
.y239{bottom:76.120000pt;}
.y2b6{bottom:76.893333pt;}
.y1f3{bottom:77.666667pt;}
.y2e4{bottom:79.453333pt;}
.y1a3{bottom:79.674667pt;}
.yb5{bottom:79.704000pt;}
.y126{bottom:79.718667pt;}
.y28e{bottom:79.733333pt;}
.y1e6{bottom:80.180000pt;}
.y285{bottom:80.446667pt;}
.y70{bottom:80.576000pt;}
.y21e{bottom:80.693333pt;}
.y1c9{bottom:81.109333pt;}
.y1ab{bottom:81.440000pt;}
.y14a{bottom:86.069333pt;}
.yd1{bottom:86.328000pt;}
.y1c{bottom:86.346667pt;}
.y166{bottom:86.834667pt;}
.yc8{bottom:86.984000pt;}
.y53{bottom:88.729333pt;}
.y2b5{bottom:90.893333pt;}
.y2e3{bottom:93.453333pt;}
.y25f{bottom:93.973333pt;}
.y16e{bottom:94.906667pt;}
.yb4{bottom:95.030667pt;}
.y125{bottom:95.045333pt;}
.y28d{bottom:95.060000pt;}
.y1e5{bottom:95.506667pt;}
.y284{bottom:95.773333pt;}
.y6f{bottom:95.902667pt;}
.y21d{bottom:96.020000pt;}
.y1c8{bottom:96.436000pt;}
.y149{bottom:98.741333pt;}
.yd0{bottom:99.000000pt;}
.y165{bottom:99.506667pt;}
.yc7{bottom:99.656000pt;}
.y52{bottom:102.067333pt;}
.y1a2{bottom:102.672000pt;}
.y1f2{bottom:104.893333pt;}
.y238{bottom:105.493333pt;}
.y2e2{bottom:107.453333pt;}
.y25e{bottom:109.300000pt;}
.y17d{bottom:110.213333pt;}
.y16d{bottom:110.233333pt;}
.yb3{bottom:110.357333pt;}
.y124{bottom:110.372000pt;}
.y28c{bottom:110.386667pt;}
.y1e4{bottom:110.833333pt;}
.y283{bottom:111.100000pt;}
.y6e{bottom:111.229333pt;}
.y21c{bottom:111.346667pt;}
.y148{bottom:111.413333pt;}
.y1c7{bottom:111.762667pt;}
.yc6{bottom:112.328000pt;}
.y1aa{bottom:113.773333pt;}
.y51{bottom:115.405333pt;}
.y1f1{bottom:118.893333pt;}
.y237{bottom:120.820000pt;}
.y2e1{bottom:121.453333pt;}
.y1b{bottom:121.517333pt;}
.y147{bottom:124.085333pt;}
.y25d{bottom:124.626667pt;}
.yc5{bottom:125.000000pt;}
.y17c{bottom:125.540000pt;}
.y16c{bottom:125.560000pt;}
.yb2{bottom:125.684000pt;}
.y123{bottom:125.698667pt;}
.y28b{bottom:125.713333pt;}
.y1e3{bottom:126.160000pt;}
.y282{bottom:126.426667pt;}
.y6d{bottom:126.556000pt;}
.y21b{bottom:126.673333pt;}
.y1c6{bottom:127.089333pt;}
.y1a9{bottom:127.773333pt;}
.y50{bottom:128.743333pt;}
.y2b4{bottom:132.893333pt;}
.yfa{bottom:133.213333pt;}
.y1a{bottom:134.855333pt;}
.y2e0{bottom:135.453333pt;}
.y236{bottom:136.146667pt;}
.y146{bottom:136.757333pt;}
.y25c{bottom:139.953333pt;}
.ycf{bottom:140.806667pt;}
.y164{bottom:140.820000pt;}
.y17b{bottom:140.866667pt;}
.y16b{bottom:140.886667pt;}
.yb1{bottom:141.010667pt;}
.y122{bottom:141.025333pt;}
.y28a{bottom:141.040000pt;}
.y1e2{bottom:141.486667pt;}
.y281{bottom:141.753333pt;}
.y1a8{bottom:141.773333pt;}
.y6c{bottom:141.882667pt;}
.y21a{bottom:142.000000pt;}
.y4f{bottom:142.081333pt;}
.y1c5{bottom:142.416000pt;}
.y1f0{bottom:146.273333pt;}
.y2b3{bottom:146.893333pt;}
.y19{bottom:148.193333pt;}
.yf9{bottom:148.540000pt;}
.y145{bottom:149.429333pt;}
.y2df{bottom:149.453333pt;}
.y235{bottom:151.473333pt;}
.y25b{bottom:155.280000pt;}
.y4e{bottom:155.419333pt;}
.y1a7{bottom:155.773333pt;}
.yce{bottom:156.133333pt;}
.y163{bottom:156.146667pt;}
.y17a{bottom:156.193333pt;}
.y16a{bottom:156.213333pt;}
.y1a1{bottom:156.337333pt;}
.y121{bottom:156.352000pt;}
.y289{bottom:156.366667pt;}
.y1e1{bottom:156.813333pt;}
.y280{bottom:157.080000pt;}
.y6b{bottom:157.209333pt;}
.y219{bottom:157.326667pt;}
.y1c4{bottom:157.742667pt;}
.y2b2{bottom:160.893333pt;}
.y18{bottom:161.531333pt;}
.y1ef{bottom:161.600000pt;}
.y144{bottom:162.101333pt;}
.y2de{bottom:163.453333pt;}
.yf8{bottom:163.866667pt;}
.yb0{bottom:164.008000pt;}
.y234{bottom:166.800000pt;}
.y4d{bottom:168.757333pt;}
.y25a{bottom:170.606667pt;}
.ycd{bottom:171.460000pt;}
.y162{bottom:171.473333pt;}
.y179{bottom:171.520000pt;}
.yc4{bottom:171.540000pt;}
.y1a0{bottom:171.664000pt;}
.y120{bottom:171.678667pt;}
.y288{bottom:171.693333pt;}
.y1e0{bottom:172.140000pt;}
.y27f{bottom:172.406667pt;}
.y6a{bottom:172.536000pt;}
.y218{bottom:172.653333pt;}
.y1c3{bottom:173.069333pt;}
.y143{bottom:174.773333pt;}
.y17{bottom:174.869333pt;}
.y2b1{bottom:174.893333pt;}
.y1ee{bottom:176.926667pt;}
.y2dd{bottom:177.453333pt;}
.yf7{bottom:179.193333pt;}
.y4c{bottom:182.095333pt;}
.y233{bottom:182.126667pt;}
.y259{bottom:185.933333pt;}
.y161{bottom:186.800000pt;}
.y178{bottom:186.846667pt;}
.yc3{bottom:186.866667pt;}
.y19f{bottom:186.990667pt;}
.y11f{bottom:187.005333pt;}
.ycc{bottom:187.020000pt;}
.y142{bottom:187.445333pt;}
.y1df{bottom:187.466667pt;}
.y27e{bottom:187.733333pt;}
.y69{bottom:187.862667pt;}
.y217{bottom:187.980000pt;}
.y16{bottom:188.207333pt;}
.y1c2{bottom:188.396000pt;}
.y2b0{bottom:188.893333pt;}
.y2dc{bottom:191.453333pt;}
.y1ed{bottom:192.253333pt;}
.yf6{bottom:194.520000pt;}
.y4b{bottom:195.433333pt;}
.y232{bottom:197.453333pt;}
.y141{bottom:200.117333pt;}
.y258{bottom:201.260000pt;}
.y15{bottom:201.545333pt;}
.y160{bottom:202.126667pt;}
.y177{bottom:202.173333pt;}
.yc2{bottom:202.193333pt;}
.y19e{bottom:202.317333pt;}
.y11e{bottom:202.332000pt;}
.yaf{bottom:202.346667pt;}
.y1de{bottom:202.793333pt;}
.y2af{bottom:202.893333pt;}
.y27d{bottom:203.060000pt;}
.y68{bottom:203.189333pt;}
.y216{bottom:203.306667pt;}
.y1c1{bottom:203.722667pt;}
.y2db{bottom:205.453333pt;}
.y1ec{bottom:207.580000pt;}
.y4a{bottom:208.771333pt;}
.yf5{bottom:209.846667pt;}
.y140{bottom:212.789333pt;}
.y14{bottom:214.883333pt;}
.y257{bottom:216.586667pt;}
.y2ae{bottom:216.893333pt;}
.y176{bottom:217.500000pt;}
.yc1{bottom:217.520000pt;}
.y15f{bottom:217.566667pt;}
.y19d{bottom:217.644000pt;}
.y11d{bottom:217.658667pt;}
.yae{bottom:217.673333pt;}
.y1dd{bottom:218.120000pt;}
.y27c{bottom:218.386667pt;}
.y67{bottom:218.516000pt;}
.y215{bottom:218.633333pt;}
.y2da{bottom:219.453333pt;}
.y49{bottom:222.109333pt;}
.y1eb{bottom:222.906667pt;}
.yf4{bottom:225.173333pt;}
.y13f{bottom:225.461333pt;}
.y231{bottom:228.120000pt;}
.y1c0{bottom:230.548000pt;}
.y2ad{bottom:230.893333pt;}
.y256{bottom:231.913333pt;}
.y175{bottom:232.826667pt;}
.yc0{bottom:232.846667pt;}
.y15e{bottom:232.893333pt;}
.y19c{bottom:232.970667pt;}
.y11c{bottom:232.985333pt;}
.yad{bottom:233.000000pt;}
.y2d9{bottom:233.453333pt;}
.y27b{bottom:233.713333pt;}
.y66{bottom:233.842667pt;}
.y214{bottom:233.960000pt;}
.y48{bottom:235.447333pt;}
.y13e{bottom:238.106667pt;}
.y1ea{bottom:238.233333pt;}
.yf3{bottom:240.500000pt;}
.y13{bottom:241.546667pt;}
.y230{bottom:242.120000pt;}
.y2ac{bottom:244.893333pt;}
.y255{bottom:247.240000pt;}
.y2d8{bottom:247.453333pt;}
.y174{bottom:248.153333pt;}
.ybf{bottom:248.173333pt;}
.y15d{bottom:248.220000pt;}
.y19b{bottom:248.297333pt;}
.y11b{bottom:248.312000pt;}
.yac{bottom:248.326667pt;}
.y47{bottom:248.785333pt;}
.y1dc{bottom:248.786667pt;}
.y27a{bottom:249.040000pt;}
.y65{bottom:249.169333pt;}
.y213{bottom:249.286667pt;}
.y13d{bottom:250.778667pt;}
.y1e9{bottom:253.560000pt;}
.y12{bottom:254.814667pt;}
.yf2{bottom:255.826667pt;}
.y22f{bottom:256.120000pt;}
.y2ab{bottom:258.893333pt;}
.y2d7{bottom:261.453333pt;}
.y46{bottom:262.123333pt;}
.y254{bottom:262.566667pt;}
.y1db{bottom:262.786667pt;}
.y13c{bottom:263.450667pt;}
.y173{bottom:263.480000pt;}
.ybe{bottom:263.500000pt;}
.y15c{bottom:263.546667pt;}
.y19a{bottom:263.624000pt;}
.y11a{bottom:263.638667pt;}
.yab{bottom:263.653333pt;}
.y279{bottom:264.366667pt;}
.y64{bottom:264.496000pt;}
.y212{bottom:264.613333pt;}
.y1bf{bottom:268.886667pt;}
.y22e{bottom:270.120000pt;}
.yf1{bottom:271.153333pt;}
.y2aa{bottom:272.893333pt;}
.y2d6{bottom:275.453333pt;}
.y13b{bottom:276.122667pt;}
.y1da{bottom:276.786667pt;}
.y253{bottom:277.893333pt;}
.y172{bottom:278.806667pt;}
.ybd{bottom:278.826667pt;}
.y15b{bottom:278.873333pt;}
.y199{bottom:278.950667pt;}
.y119{bottom:278.965333pt;}
.yaa{bottom:278.980000pt;}
.y278{bottom:279.693333pt;}
.y63{bottom:279.822667pt;}
.y211{bottom:279.940000pt;}
.y1be{bottom:284.213333pt;}
.yf0{bottom:286.480000pt;}
.y11{bottom:286.810667pt;}
.y2a9{bottom:286.893333pt;}
.y45{bottom:288.786667pt;}
.y13a{bottom:288.794667pt;}
.y2d5{bottom:289.453333pt;}
.y252{bottom:293.220000pt;}
.y171{bottom:294.133333pt;}
.ybc{bottom:294.153333pt;}
.y15a{bottom:294.200000pt;}
.y198{bottom:294.277333pt;}
.y118{bottom:294.292000pt;}
.ya9{bottom:294.306667pt;}
.y277{bottom:295.020000pt;}
.y62{bottom:295.149333pt;}
.y210{bottom:295.266667pt;}
.y22d{bottom:299.506667pt;}
.y1bd{bottom:299.540000pt;}
.y2a8{bottom:300.893333pt;}
.y139{bottom:301.466667pt;}
.yef{bottom:301.806667pt;}
.y2d4{bottom:303.453333pt;}
.y10{bottom:305.481333pt;}
.y1d9{bottom:306.166667pt;}
.y251{bottom:308.546667pt;}
.y170{bottom:309.460000pt;}
.ybb{bottom:309.480000pt;}
.y159{bottom:309.526667pt;}
.y197{bottom:309.604000pt;}
.y117{bottom:309.618667pt;}
.ya8{bottom:309.633333pt;}
.y276{bottom:310.346667pt;}
.y61{bottom:310.476000pt;}
.y20f{bottom:310.593333pt;}
.y22c{bottom:314.833333pt;}
.y1bc{bottom:314.866667pt;}
.y2a7{bottom:314.893333pt;}
.yee{bottom:317.133333pt;}
.y2d3{bottom:317.453333pt;}
.yf{bottom:318.819333pt;}
.y44{bottom:320.711333pt;}
.y1d8{bottom:321.493333pt;}
.y250{bottom:323.873333pt;}
.yba{bottom:324.806667pt;}
.y158{bottom:324.853333pt;}
.y196{bottom:324.930667pt;}
.y116{bottom:324.945333pt;}
.ya7{bottom:324.960000pt;}
.y275{bottom:325.673333pt;}
.y60{bottom:325.802667pt;}
.y20e{bottom:325.920000pt;}
.y2a6{bottom:328.893333pt;}
.y22b{bottom:330.160000pt;}
.y1bb{bottom:330.193333pt;}
.y2d2{bottom:331.453333pt;}
.ye{bottom:332.157333pt;}
.yed{bottom:332.460000pt;}
.y1d7{bottom:336.820000pt;}
.y24f{bottom:339.200000pt;}
.y43{bottom:339.382000pt;}
.yb9{bottom:340.133333pt;}
.y157{bottom:340.180000pt;}
.y195{bottom:340.257333pt;}
.y115{bottom:340.272000pt;}
.ya6{bottom:340.286667pt;}
.y274{bottom:341.000000pt;}
.y5f{bottom:341.129333pt;}
.y20d{bottom:341.246667pt;}
.y2a5{bottom:342.893333pt;}
.y2d1{bottom:345.453333pt;}
.y22a{bottom:345.486667pt;}
.yd{bottom:345.495333pt;}
.y1ba{bottom:345.520000pt;}
.yec{bottom:347.800000pt;}
.y138{bottom:347.846667pt;}
.y1d6{bottom:352.146667pt;}
.y42{bottom:352.720000pt;}
.y24e{bottom:354.526667pt;}
.yb8{bottom:355.460000pt;}
.y156{bottom:355.506667pt;}
.y194{bottom:355.584000pt;}
.y114{bottom:355.598667pt;}
.ya5{bottom:355.613333pt;}
.y5e{bottom:356.456000pt;}
.y20c{bottom:356.573333pt;}
.y2a4{bottom:356.893333pt;}
.yc{bottom:358.833333pt;}
.y2d0{bottom:359.453333pt;}
.y229{bottom:360.813333pt;}
.y1b9{bottom:360.846667pt;}
.yeb{bottom:363.126667pt;}
.y137{bottom:363.173333pt;}
.y41{bottom:366.058000pt;}
.y1d5{bottom:367.473333pt;}
.y24d{bottom:369.853333pt;}
.y155{bottom:370.833333pt;}
.y2a3{bottom:370.893333pt;}
.y193{bottom:370.910667pt;}
.y113{bottom:370.925333pt;}
.ya4{bottom:370.940000pt;}
.y273{bottom:371.666667pt;}
.y5d{bottom:371.782667pt;}
.y20b{bottom:371.900000pt;}
.yb{bottom:372.171333pt;}
.y2cf{bottom:373.453333pt;}
.y228{bottom:376.140000pt;}
.y1b8{bottom:376.173333pt;}
.y136{bottom:378.500000pt;}
.yea{bottom:378.596000pt;}
.y40{bottom:379.396000pt;}
.y1d4{bottom:382.800000pt;}
.y2a2{bottom:384.893333pt;}
.y24c{bottom:385.180000pt;}
.ya{bottom:385.509333pt;}
.y272{bottom:385.666667pt;}
.y154{bottom:386.160000pt;}
.y192{bottom:386.237333pt;}
.y112{bottom:386.252000pt;}
.ya3{bottom:386.266667pt;}
.y5c{bottom:387.109333pt;}
.y20a{bottom:387.226667pt;}
.y2ce{bottom:387.453333pt;}
.y227{bottom:391.466667pt;}
.y1b7{bottom:391.500000pt;}
.y3f{bottom:392.734000pt;}
.y135{bottom:393.826667pt;}
.ye9{bottom:393.922667pt;}
.y1d3{bottom:398.126667pt;}
.y9{bottom:398.847333pt;}
.y2a1{bottom:398.893333pt;}
.y271{bottom:399.666667pt;}
.y24b{bottom:400.506667pt;}
.y2cd{bottom:401.453333pt;}
.y153{bottom:401.486667pt;}
.y191{bottom:401.564000pt;}
.y111{bottom:401.578667pt;}
.ya2{bottom:401.593333pt;}
.y5b{bottom:402.436000pt;}
.y209{bottom:402.553333pt;}
.y3e{bottom:406.072000pt;}
.y226{bottom:406.793333pt;}
.y1b6{bottom:406.826667pt;}
.y134{bottom:409.153333pt;}
.ye8{bottom:409.249333pt;}
.y8{bottom:412.185333pt;}
.y2a0{bottom:412.893333pt;}
.y1d2{bottom:413.453333pt;}
.y270{bottom:413.666667pt;}
.y2cc{bottom:415.453333pt;}
.y152{bottom:416.813333pt;}
.y190{bottom:416.890667pt;}
.y110{bottom:416.905333pt;}
.ya1{bottom:416.920000pt;}
.y5a{bottom:417.762667pt;}
.y208{bottom:417.880000pt;}
.y3d{bottom:419.410000pt;}
.y225{bottom:422.120000pt;}
.y1b5{bottom:422.153333pt;}
.y133{bottom:424.480000pt;}
.ye7{bottom:424.576000pt;}
.y7{bottom:425.523333pt;}
.y29f{bottom:426.893333pt;}
.y2cb{bottom:429.453333pt;}
.y24a{bottom:431.174667pt;}
.y151{bottom:432.140000pt;}
.y18f{bottom:432.217333pt;}
.y10f{bottom:432.232000pt;}
.ya0{bottom:432.246667pt;}
.y3c{bottom:432.748000pt;}
.y59{bottom:433.089333pt;}
.y207{bottom:433.206667pt;}
.y1b4{bottom:437.480000pt;}
.y6{bottom:438.861333pt;}
.y132{bottom:439.806667pt;}
.ye6{bottom:439.902667pt;}
.y26f{bottom:440.893333pt;}
.y2ca{bottom:443.453333pt;}
.y1d1{bottom:444.120000pt;}
.y3b{bottom:446.086000pt;}
.y249{bottom:446.501333pt;}
.y150{bottom:447.466667pt;}
.y18e{bottom:447.544000pt;}
.y10e{bottom:447.558667pt;}
.y9f{bottom:447.573333pt;}
.y58{bottom:448.416000pt;}
.y206{bottom:448.533333pt;}
.y5{bottom:452.199333pt;}
.y224{bottom:452.786667pt;}
.y1b3{bottom:452.806667pt;}
.y26e{bottom:454.893333pt;}
.y131{bottom:455.133333pt;}
.ye5{bottom:455.229333pt;}
.y2c9{bottom:457.453333pt;}
.y1d0{bottom:458.120000pt;}
.y3a{bottom:459.424000pt;}
.y14f{bottom:462.793333pt;}
.y18d{bottom:462.870667pt;}
.y10d{bottom:462.885333pt;}
.y9e{bottom:462.900000pt;}
.y57{bottom:463.742667pt;}
.y205{bottom:463.860000pt;}
.y4{bottom:465.537333pt;}
.y223{bottom:466.786667pt;}
.y1b2{bottom:468.133333pt;}
.y29e{bottom:468.893333pt;}
.y130{bottom:470.460000pt;}
.ye4{bottom:470.556000pt;}
.y2c8{bottom:471.453333pt;}
.y1cf{bottom:472.120000pt;}
.y39{bottom:472.762000pt;}
.y14e{bottom:478.120000pt;}
.y18c{bottom:478.197333pt;}
.y10c{bottom:478.212000pt;}
.y9d{bottom:478.226667pt;}
.y3{bottom:478.875333pt;}
.y56{bottom:479.069333pt;}
.y204{bottom:479.186667pt;}
.y222{bottom:480.786667pt;}
.y26d{bottom:482.200000pt;}
.y29d{bottom:482.893333pt;}
.y1b1{bottom:483.460000pt;}
.y248{bottom:484.840000pt;}
.y2c7{bottom:485.453333pt;}
.y12f{bottom:485.800000pt;}
.y1a6{bottom:485.868000pt;}
.ye3{bottom:485.882667pt;}
.y38{bottom:486.100000pt;}
.y2{bottom:492.213333pt;}
.y18b{bottom:493.524000pt;}
.y10b{bottom:493.538667pt;}
.y9c{bottom:493.553333pt;}
.y203{bottom:494.513333pt;}
.y221{bottom:494.786667pt;}
.y29c{bottom:496.893333pt;}
.y26c{bottom:497.526667pt;}
.y1b0{bottom:498.786667pt;}
.y37{bottom:499.438000pt;}
.y2c6{bottom:499.453333pt;}
.y1ce{bottom:500.120000pt;}
.y247{bottom:500.166667pt;}
.y12e{bottom:501.126667pt;}
.ye2{bottom:501.209333pt;}
.y55{bottom:502.066667pt;}
.y18a{bottom:508.850667pt;}
.y10a{bottom:508.865333pt;}
.y9b{bottom:508.880000pt;}
.y202{bottom:509.840000pt;}
.y29b{bottom:510.893333pt;}
.y36{bottom:512.776000pt;}
.y26b{bottom:512.853333pt;}
.y2c5{bottom:513.453333pt;}
.y1cd{bottom:514.120000pt;}
.y246{bottom:515.493333pt;}
.y12d{bottom:516.521333pt;}
.ye1{bottom:516.536000pt;}
.y1{bottom:518.880000pt;}
.y189{bottom:524.177333pt;}
.y109{bottom:524.192000pt;}
.y9a{bottom:524.206667pt;}
.y29a{bottom:524.893333pt;}
.y201{bottom:525.166667pt;}
.y35{bottom:526.114000pt;}
.y2c4{bottom:527.453333pt;}
.y1af{bottom:528.120000pt;}
.y26a{bottom:528.180000pt;}
.y245{bottom:530.820000pt;}
.y12c{bottom:531.848000pt;}
.ye0{bottom:531.862667pt;}
.y81{bottom:537.333333pt;}
.y299{bottom:538.893333pt;}
.y34{bottom:539.452000pt;}
.y188{bottom:539.504000pt;}
.y108{bottom:539.518667pt;}
.y99{bottom:539.533333pt;}
.y200{bottom:540.493333pt;}
.y2c3{bottom:541.453333pt;}
.y1ae{bottom:542.120000pt;}
.y269{bottom:543.506667pt;}
.y244{bottom:546.146667pt;}
.y12b{bottom:547.174667pt;}
.ydf{bottom:547.189333pt;}
.y33{bottom:552.790000pt;}
.y298{bottom:552.893333pt;}
.y8d{bottom:554.666667pt;}
.y187{bottom:554.830667pt;}
.y107{bottom:554.845333pt;}
.y98{bottom:554.860000pt;}
.y27{bottom:555.008000pt;}
.y2c2{bottom:555.453333pt;}
.y1ff{bottom:555.820000pt;}
.y1cc{bottom:556.120000pt;}
.y80{bottom:557.333333pt;}
.y268{bottom:558.833333pt;}
.y243{bottom:561.473333pt;}
.y12a{bottom:562.501333pt;}
.yde{bottom:562.516000pt;}
.y297{bottom:566.893333pt;}
.y26{bottom:567.680000pt;}
.y2c1{bottom:569.453333pt;}
.y186{bottom:570.157333pt;}
.y106{bottom:570.172000pt;}
.y97{bottom:570.186667pt;}
.y7f{bottom:570.666667pt;}
.y1fe{bottom:571.146667pt;}
.y267{bottom:574.160000pt;}
.y8c{bottom:574.666667pt;}
.y242{bottom:576.800000pt;}
.y129{bottom:577.828000pt;}
.ydd{bottom:577.842667pt;}
.y32{bottom:579.453333pt;}
.y296{bottom:580.893333pt;}
.y2c0{bottom:583.453333pt;}
.y185{bottom:585.484000pt;}
.y105{bottom:585.498667pt;}
.y96{bottom:585.513333pt;}
.y1fd{bottom:586.473333pt;}
.y7d{bottom:589.333333pt;}
.y266{bottom:589.486667pt;}
.y241{bottom:592.126667pt;}
.ydc{bottom:593.169333pt;}
.y295{bottom:594.893333pt;}
.y8b{bottom:596.000000pt;}
.y2bf{bottom:597.453333pt;}
.y184{bottom:600.810667pt;}
.y104{bottom:600.825333pt;}
.y95{bottom:600.840000pt;}
.y1fc{bottom:601.800000pt;}
.y7c{bottom:602.666667pt;}
.y265{bottom:604.813333pt;}
.y240{bottom:607.453333pt;}
.y8a{bottom:608.000000pt;}
.ydb{bottom:608.496000pt;}
.y294{bottom:608.893333pt;}
.y31{bottom:611.416667pt;}
.y2be{bottom:611.453333pt;}
.y183{bottom:616.137333pt;}
.y103{bottom:616.152000pt;}
.y94{bottom:616.166667pt;}
.y1fb{bottom:617.126667pt;}
.y7b{bottom:620.000000pt;}
.y264{bottom:620.140000pt;}
.y293{bottom:622.893333pt;}
.yda{bottom:623.822667pt;}
.y2bd{bottom:625.453333pt;}
.y88{bottom:628.000000pt;}
.y30{bottom:630.087333pt;}
.y25{bottom:630.088000pt;}
.y182{bottom:631.464000pt;}
.y102{bottom:631.478667pt;}
.y93{bottom:631.493333pt;}
.y1fa{bottom:632.453333pt;}
.y263{bottom:635.466667pt;}
.y292{bottom:636.893333pt;}
.y7a{bottom:637.333333pt;}
.y23f{bottom:638.120000pt;}
.yd9{bottom:639.149333pt;}
.y2bc{bottom:639.453333pt;}
.y86{bottom:642.533333pt;}
.y24{bottom:642.760000pt;}
.y2f{bottom:643.425333pt;}
.y181{bottom:646.790667pt;}
.y101{bottom:646.805333pt;}
.y92{bottom:646.820000pt;}
.y1f9{bottom:647.780000pt;}
.y79{bottom:650.666667pt;}
.y262{bottom:650.793333pt;}
.y23e{bottom:652.120000pt;}
.y2bb{bottom:653.453333pt;}
.yd8{bottom:654.476000pt;}
.y2e{bottom:656.763333pt;}
.y291{bottom:658.568000pt;}
.y85{bottom:658.666667pt;}
.y23{bottom:658.760000pt;}
.y100{bottom:662.132000pt;}
.y91{bottom:662.146667pt;}
.y1f8{bottom:663.106667pt;}
.y23d{bottom:666.120000pt;}
.y2ba{bottom:667.453333pt;}
.y78{bottom:668.000000pt;}
.y180{bottom:669.788000pt;}
.yd7{bottom:669.802667pt;}
.y2d{bottom:670.101333pt;}
.y84{bottom:670.666667pt;}
.yff{bottom:677.458667pt;}
.y90{bottom:677.473333pt;}
.y23c{bottom:680.120000pt;}
.y2b9{bottom:681.453333pt;}
.y76{bottom:682.666667pt;}
.y2c{bottom:683.439333pt;}
.yd6{bottom:685.129333pt;}
.y83{bottom:688.000000pt;}
.yfe{bottom:692.785333pt;}
.y8f{bottom:692.800000pt;}
.y1f7{bottom:695.453333pt;}
.y2b{bottom:696.777333pt;}
.y22{bottom:698.760000pt;}
.yd5{bottom:700.456000pt;}
.y74{bottom:701.333333pt;}
.y82{bottom:702.666667pt;}
.y8e{bottom:708.126667pt;}
.y1f6{bottom:709.453333pt;}
.y2a{bottom:710.115333pt;}
.y21{bottom:720.093333pt;}
.y29{bottom:723.453333pt;}
.y73{bottom:729.053333pt;}
.y20{bottom:765.426667pt;}
.y28{bottom:821.333333pt;}
.h10{height:9.600000pt;}
.h12{height:10.666667pt;}
.hf{height:12.000000pt;}
.he{height:13.333333pt;}
.hc{height:14.666667pt;}
.h9{height:41.854167pt;}
.h11{height:42.398438pt;}
.h5{height:45.525333pt;}
.hd{height:47.109375pt;}
.h4{height:51.216000pt;}
.h16{height:51.322667pt;}
.h19{height:52.032000pt;}
.h1{height:54.061333pt;}
.h3{height:54.922667pt;}
.h2{height:55.184000pt;}
.h1a{height:56.906667pt;}
.h1b{height:57.813333pt;}
.ha{height:62.597333pt;}
.h13{height:62.607467pt;}
.h18{height:62.623467pt;}
.h17{height:62.724800pt;}
.h14{height:62.906133pt;}
.h15{height:63.124800pt;}
.hb{height:63.594667pt;}
.h8{height:68.288000pt;}
.h6{height:91.050667pt;}
.h7{height:91.895467pt;}
.h0{height:794.666667pt;}
.w5{width:109.333333pt;}
.w3{width:116.000000pt;}
.w8{width:118.666667pt;}
.w14{width:134.666667pt;}
.we{width:140.024691pt;}
.w6{width:150.666667pt;}
.w13{width:152.000000pt;}
.w4{width:154.666667pt;}
.wa{width:156.000000pt;}
.wf{width:164.000000pt;}
.wd{width:172.000000pt;}
.w9{width:178.666667pt;}
.w2{width:181.333333pt;}
.wb{width:189.333333pt;}
.w7{width:192.000000pt;}
.w12{width:198.666667pt;}
.w10{width:201.333333pt;}
.wc{width:205.333333pt;}
.w11{width:206.666667pt;}
.w1{width:224.000000pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:1.333333pt;}
.x15{left:2.698400pt;}
.x11{left:3.681200pt;}
.x6{left:5.333333pt;}
.x18{left:22.689200pt;}
.xd{left:27.396267pt;}
.x13{left:30.701733pt;}
.x1b{left:41.362667pt;}
.xb{left:48.000000pt;}
.xc{left:54.018133pt;}
.xf{left:63.342800pt;}
.x17{left:64.678533pt;}
.x1{left:67.733333pt;}
.x7{left:68.813333pt;}
.x14{left:77.333333pt;}
.x21{left:81.066667pt;}
.x9{left:83.030667pt;}
.x20{left:84.140000pt;}
.x2{left:87.734000pt;}
.x8{left:88.826667pt;}
.x1a{left:110.666667pt;}
.x10{left:117.333333pt;}
.x19{left:146.666667pt;}
.x16{left:148.000000pt;}
.xe{left:154.666667pt;}
.x12{left:161.333333pt;}
.xa{left:265.813333pt;}
.x1f{left:294.666667pt;}
.x1c{left:296.000000pt;}
.x1e{left:297.320988pt;}
.x5{left:343.636000pt;}
.x3{left:347.653333pt;}
.x4{left:366.520000pt;}
}




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