
    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_d14e1fc4b0003dbda6415c30.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;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_4da0388a0dd5ba7454aacab4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120000;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_efb81e926e6fce7e765bde0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_0808296c6ef7325309350d44.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_0ce04384c4570fb57f5fb433.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;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:21.420000px;}
.ls4d{letter-spacing:-6.858000px;}
.ls32{letter-spacing:-6.487800px;}
.ls47{letter-spacing:-6.480000px;}
.ls45{letter-spacing:-5.880600px;}
.ls49{letter-spacing:-4.309200px;}
.ls2b{letter-spacing:-4.092000px;}
.ls22{letter-spacing:-3.630000px;}
.ls26{letter-spacing:-3.187800px;}
.ls3c{letter-spacing:-2.970000px;}
.ls3b{letter-spacing:-2.926800px;}
.ls41{letter-spacing:-2.705400px;}
.ls3a{letter-spacing:-2.435400px;}
.ls4c{letter-spacing:-2.424600px;}
.ls39{letter-spacing:-2.327400px;}
.ls2f{letter-spacing:-2.250600px;}
.ls42{letter-spacing:-2.160000px;}
.ls43{letter-spacing:-1.998000px;}
.ls36{letter-spacing:-1.968000px;}
.ls2d{letter-spacing:-1.914000px;}
.ls46{letter-spacing:-1.836000px;}
.ls84{letter-spacing:-1.650000px;}
.ls1c{letter-spacing:-1.641600px;}
.ls4b{letter-spacing:-1.620000px;}
.ls2a{letter-spacing:-1.584000px;}
.ls25{letter-spacing:-1.518000px;}
.ls40{letter-spacing:-1.468800px;}
.ls31{letter-spacing:-1.452000px;}
.lsb2{letter-spacing:-1.395000px;}
.ls95{letter-spacing:-1.386000px;}
.lsb3{letter-spacing:-1.380000px;}
.ls4e{letter-spacing:-1.368000px;}
.ls1d{letter-spacing:-1.362300px;}
.ls3f{letter-spacing:-1.350000px;}
.ls89{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.311000px;}
.ls1a{letter-spacing:-1.299600px;}
.lsaf{letter-spacing:-1.260000px;}
.ls2e{letter-spacing:-1.254000px;}
.ls38{letter-spacing:-1.242000px;}
.ls19{letter-spacing:-1.197000px;}
.ls74{letter-spacing:-1.188000px;}
.lsae{letter-spacing:-1.170000px;}
.lsac{letter-spacing:-1.140000px;}
.ls77{letter-spacing:-1.134000px;}
.lsab{letter-spacing:-1.125000px;}
.ls75{letter-spacing:-1.122000px;}
.ls65{letter-spacing:-1.056000px;}
.lsa7{letter-spacing:-1.035000px;}
.ls18{letter-spacing:-1.026000px;}
.lsa8{letter-spacing:-1.020000px;}
.ls59{letter-spacing:-0.990000px;}
.ls4a{letter-spacing:-0.972000px;}
.lsb0{letter-spacing:-0.945000px;}
.ls29{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.912000px;}
.ls3d{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.858000px;}
.lsaa{letter-spacing:-0.840000px;}
.ls6e{letter-spacing:-0.810000px;}
.ls28{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.746700px;}
.ls34{letter-spacing:-0.726000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.684000px;}
.ls27{letter-spacing:-0.660000px;}
.ls37{letter-spacing:-0.648000px;}
.ls7c{letter-spacing:-0.646800px;}
.ls48{letter-spacing:-0.594000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.528000px;}
.lsc3{letter-spacing:-0.495000px;}
.ls72{letter-spacing:-0.486000px;}
.lsc4{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.462000px;}
.ls24{letter-spacing:-0.455400px;}
.ls73{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.399000px;}
.ls2c{letter-spacing:-0.396000px;}
.ls44{letter-spacing:-0.378000px;}
.ls93{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.342000px;}
.ls5a{letter-spacing:-0.330000px;}
.ls8a{letter-spacing:-0.324000px;}
.lsc0{letter-spacing:-0.300000px;}
.ls7d{letter-spacing:-0.277200px;}
.ls7e{letter-spacing:-0.270000px;}
.ls64{letter-spacing:-0.264000px;}
.lsc1{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.228000px;}
.lsbf{letter-spacing:-0.225000px;}
.ls66{letter-spacing:-0.198000px;}
.lsb1{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.171000px;}
.ls94{letter-spacing:-0.162000px;}
.lsc2{letter-spacing:-0.135000px;}
.ls33{letter-spacing:-0.132000px;}
.ls6d{letter-spacing:-0.108000px;}
.ls9f{letter-spacing:-0.092400px;}
.lsc6{letter-spacing:-0.090000px;}
.ls23{letter-spacing:-0.066000px;}
.ls76{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls81{letter-spacing:-0.054000px;}
.ls35{letter-spacing:-0.048000px;}
.ls9c{letter-spacing:-0.046200px;}
.lsad{letter-spacing:-0.045000px;}
.ls5{letter-spacing:0.000000px;}
.lsa4{letter-spacing:0.045000px;}
.ls14{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.057000px;}
.ls78{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.066000px;}
.ls9d{letter-spacing:0.092400px;}
.ls15{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.114000px;}
.ls6f{letter-spacing:0.120000px;}
.ls50{letter-spacing:0.132000px;}
.ls6b{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.171000px;}
.ls92{letter-spacing:0.184800px;}
.ls56{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.216000px;}
.lsc5{letter-spacing:0.225000px;}
.ls4{letter-spacing:0.228000px;}
.ls9e{letter-spacing:0.231000px;}
.ls68{letter-spacing:0.240000px;}
.lse{letter-spacing:0.264000px;}
.ls71{letter-spacing:0.270000px;}
.lsb9{letter-spacing:0.300000px;}
.lsbc{letter-spacing:0.315000px;}
.ls7b{letter-spacing:0.324000px;}
.ls4f{letter-spacing:0.330000px;}
.lsa0{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.378000px;}
.ls52{letter-spacing:0.396000px;}
.lsa2{letter-spacing:0.420000px;}
.ls7a{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.456000px;}
.ls53{letter-spacing:0.462000px;}
.ls62{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.486000px;}
.ls55{letter-spacing:0.528000px;}
.ls70{letter-spacing:0.540000px;}
.lsb6{letter-spacing:0.585000px;}
.lsf{letter-spacing:0.594000px;}
.lsb7{letter-spacing:0.600000px;}
.lsbb{letter-spacing:0.630000px;}
.ls9a{letter-spacing:0.648000px;}
.ls54{letter-spacing:0.660000px;}
.lsba{letter-spacing:0.675000px;}
.ls8d{letter-spacing:0.702000px;}
.lsbe{letter-spacing:0.720000px;}
.ls63{letter-spacing:0.726000px;}
.ls8c{letter-spacing:0.756000px;}
.ls9b{letter-spacing:0.785400px;}
.ls51{letter-spacing:0.792000px;}
.ls5b{letter-spacing:0.858000px;}
.lsb4{letter-spacing:0.900000px;}
.ls57{letter-spacing:0.924000px;}
.lsa6{letter-spacing:0.945000px;}
.lsa5{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.990000px;}
.lsa1{letter-spacing:1.020000px;}
.ls3{letter-spacing:1.026000px;}
.lsa9{letter-spacing:1.035000px;}
.ls58{letter-spacing:1.056000px;}
.lsbd{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.134000px;}
.ls5f{letter-spacing:1.188000px;}
.ls7f{letter-spacing:1.254000px;}
.ls96{letter-spacing:1.320000px;}
.ls80{letter-spacing:1.452000px;}
.lsa3{letter-spacing:1.500000px;}
.ls98{letter-spacing:1.518000px;}
.ls16{letter-spacing:1.566000px;}
.ls97{letter-spacing:1.584000px;}
.lsb8{letter-spacing:1.620000px;}
.ls67{letter-spacing:1.650000px;}
.ls5c{letter-spacing:1.716000px;}
.ls61{letter-spacing:1.782000px;}
.ls99{letter-spacing:1.848000px;}
.ls8b{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.244000px;}
.lsd{letter-spacing:15.789000px;}
.lsb5{letter-spacing:30.000000px;}
.ls69{letter-spacing:31.506316px;}
.ls11{letter-spacing:49.518000px;}
.ls85{letter-spacing:67.020000px;}
.ls6a{letter-spacing:83.927368px;}
.ls83{letter-spacing:116.460000px;}
.ls88{letter-spacing:124.200000px;}
.ls86{letter-spacing:141.780000px;}
.ls82{letter-spacing:150.480000px;}
.ls87{letter-spacing:157.620000px;}
.ls8f{letter-spacing:205.500000px;}
.ls91{letter-spacing:353.400000px;}
.ls8e{letter-spacing:1193.040000px;}
.ls90{letter-spacing:1216.920000px;}
.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;}
}
.ws8b{word-spacing:-18.150000px;}
.wsc0{word-spacing:-17.754000px;}
.ws7e{word-spacing:-17.688000px;}
.ws7c{word-spacing:-17.622000px;}
.ws80{word-spacing:-17.556000px;}
.wsa1{word-spacing:-17.490000px;}
.ws9e{word-spacing:-17.424000px;}
.ws9f{word-spacing:-17.358000px;}
.ws8a{word-spacing:-17.292000px;}
.ws89{word-spacing:-17.226000px;}
.ws65{word-spacing:-17.160000px;}
.ws69{word-spacing:-17.094000px;}
.wsf1{word-spacing:-17.028000px;}
.wsb5{word-spacing:-16.962000px;}
.wsaa{word-spacing:-16.896000px;}
.wse5{word-spacing:-16.830000px;}
.ws68{word-spacing:-16.764000px;}
.ws67{word-spacing:-16.698000px;}
.wsa2{word-spacing:-16.632000px;}
.ws12a{word-spacing:-16.620000px;}
.ws7d{word-spacing:-16.566000px;}
.ws25{word-spacing:-16.500000px;}
.ws21{word-spacing:-16.434000px;}
.wsa9{word-spacing:-16.368000px;}
.wsa0{word-spacing:-16.302000px;}
.ws64{word-spacing:-16.170000px;}
.wsb6{word-spacing:-16.104000px;}
.ws22{word-spacing:-16.044600px;}
.ws66{word-spacing:-16.038000px;}
.wsfc{word-spacing:-16.020000px;}
.ws2e{word-spacing:-15.972000px;}
.ws108{word-spacing:-15.960000px;}
.wsf8{word-spacing:-15.906000px;}
.ws12b{word-spacing:-15.900000px;}
.ws24{word-spacing:-15.840000px;}
.ws31{word-spacing:-15.774000px;}
.ws26{word-spacing:-15.708000px;}
.ws1f{word-spacing:-15.642000px;}
.ws28{word-spacing:-15.576000px;}
.ws7f{word-spacing:-15.444000px;}
.wsf6{word-spacing:-15.378000px;}
.wsfa{word-spacing:-15.360000px;}
.wsc1{word-spacing:-15.312000px;}
.ws8c{word-spacing:-15.300000px;}
.ws2c{word-spacing:-15.246000px;}
.ws8d{word-spacing:-15.240000px;}
.wsd0{word-spacing:-15.120000px;}
.wsf7{word-spacing:-15.114000px;}
.ws13e{word-spacing:-15.060000px;}
.ws2f{word-spacing:-15.048000px;}
.wsd1{word-spacing:-15.000000px;}
.ws27{word-spacing:-14.982000px;}
.wsdc{word-spacing:-14.940000px;}
.ws29{word-spacing:-14.916000px;}
.ws10d{word-spacing:-14.820000px;}
.ws124{word-spacing:-14.700000px;}
.ws2b{word-spacing:-14.586000px;}
.ws0{word-spacing:-14.535000px;}
.ws11d{word-spacing:-14.460000px;}
.ws121{word-spacing:-14.280000px;}
.ws2d{word-spacing:-14.249400px;}
.wsdb{word-spacing:-14.202000px;}
.ws100{word-spacing:-14.160000px;}
.ws120{word-spacing:-13.980000px;}
.wsec{word-spacing:-13.932000px;}
.ws91{word-spacing:-13.878000px;}
.ws16{word-spacing:-13.851000px;}
.wsa4{word-spacing:-13.770000px;}
.ws10a{word-spacing:-13.740000px;}
.wsed{word-spacing:-13.662000px;}
.ws10f{word-spacing:-13.620000px;}
.ws4b{word-spacing:-13.608000px;}
.ws1e{word-spacing:-13.566000px;}
.ws1c{word-spacing:-13.509000px;}
.ws1d{word-spacing:-13.503300px;}
.ws1{word-spacing:-13.500000px;}
.wsc8{word-spacing:-13.446000px;}
.wsda{word-spacing:-13.392000px;}
.ws23{word-spacing:-13.312200px;}
.ws17{word-spacing:-13.224000px;}
.ws4d{word-spacing:-13.167000px;}
.ws44{word-spacing:-13.122000px;}
.ws18{word-spacing:-13.053000px;}
.wsa3{word-spacing:-13.014000px;}
.ws3c{word-spacing:-12.960000px;}
.ws19{word-spacing:-12.950400px;}
.ws4c{word-spacing:-12.906000px;}
.ws1b{word-spacing:-12.887700px;}
.ws20{word-spacing:-12.870000px;}
.ws35{word-spacing:-12.852000px;}
.ws92{word-spacing:-12.690000px;}
.ws3b{word-spacing:-12.636000px;}
.ws1a{word-spacing:-12.608400px;}
.ws3a{word-spacing:-12.474000px;}
.ws2a{word-spacing:-12.408000px;}
.ws63{word-spacing:-12.375000px;}
.wsea{word-spacing:-12.335400px;}
.wsff{word-spacing:-12.285000px;}
.ws43{word-spacing:-12.258000px;}
.wsfd{word-spacing:-12.240000px;}
.ws11e{word-spacing:-12.195000px;}
.ws33{word-spacing:-12.192000px;}
.ws3d{word-spacing:-12.150000px;}
.ws3e{word-spacing:-12.031200px;}
.ws11f{word-spacing:-11.970000px;}
.ws82{word-spacing:-11.952000px;}
.ws12d{word-spacing:-11.925000px;}
.ws48{word-spacing:-11.880000px;}
.ws128{word-spacing:-11.835000px;}
.wsf3{word-spacing:-11.781000px;}
.wse6{word-spacing:-11.734800px;}
.ws45{word-spacing:-11.664000px;}
.wsf2{word-spacing:-11.642400px;}
.wsf9{word-spacing:-11.610000px;}
.ws32{word-spacing:-11.550000px;}
.ws131{word-spacing:-11.520000px;}
.wseb{word-spacing:-11.503800px;}
.ws41{word-spacing:-11.502000px;}
.ws132{word-spacing:-11.475000px;}
.wsf4{word-spacing:-11.457600px;}
.ws40{word-spacing:-11.340000px;}
.ws105{word-spacing:-11.295000px;}
.wsb8{word-spacing:-11.272800px;}
.ws102{word-spacing:-11.250000px;}
.ws103{word-spacing:-11.205000px;}
.ws36{word-spacing:-11.172600px;}
.ws13f{word-spacing:-11.160000px;}
.ws127{word-spacing:-11.115000px;}
.ws49{word-spacing:-11.075400px;}
.ws10c{word-spacing:-11.070000px;}
.ws37{word-spacing:-11.064600px;}
.ws126{word-spacing:-10.980000px;}
.wsb7{word-spacing:-10.903200px;}
.ws12f{word-spacing:-10.890000px;}
.ws3f{word-spacing:-10.794600px;}
.ws12c{word-spacing:-10.755000px;}
.ws140{word-spacing:-10.710000px;}
.ws38{word-spacing:-10.573200px;}
.ws39{word-spacing:-10.530000px;}
.ws10b{word-spacing:-10.305000px;}
.wsfb{word-spacing:-10.215000px;}
.ws101{word-spacing:-10.125000px;}
.ws104{word-spacing:-10.080000px;}
.ws34{word-spacing:-10.032000px;}
.ws30{word-spacing:-10.012200px;}
.ws109{word-spacing:-9.990000px;}
.ws10e{word-spacing:-9.855000px;}
.ws47{word-spacing:-9.190800px;}
.ws42{word-spacing:-7.619400px;}
.ws15{word-spacing:-7.104000px;}
.ws46{word-spacing:-7.020000px;}
.ws4a{word-spacing:-6.642000px;}
.ws134{word-spacing:-2.640000px;}
.wscd{word-spacing:-2.280000px;}
.wsab{word-spacing:-1.740000px;}
.wsc2{word-spacing:-0.858000px;}
.ws70{word-spacing:-0.792000px;}
.ws3{word-spacing:-0.741000px;}
.ws57{word-spacing:-0.726000px;}
.ws142{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.684000px;}
.ws75{word-spacing:-0.660000px;}
.wsbc{word-spacing:-0.648000px;}
.ws11a{word-spacing:-0.600000px;}
.ws74{word-spacing:-0.594000px;}
.ws11{word-spacing:-0.570000px;}
.wsa7{word-spacing:-0.554400px;}
.ws9d{word-spacing:-0.540000px;}
.ws77{word-spacing:-0.528000px;}
.wse{word-spacing:-0.513000px;}
.ws94{word-spacing:-0.508200px;}
.wse4{word-spacing:-0.486000px;}
.ws141{word-spacing:-0.480000px;}
.ws72{word-spacing:-0.462000px;}
.wsf0{word-spacing:-0.432000px;}
.ws119{word-spacing:-0.420000px;}
.wsf{word-spacing:-0.399000px;}
.ws4f{word-spacing:-0.396000px;}
.wsbf{word-spacing:-0.378000px;}
.ws11c{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.342000px;}
.ws84{word-spacing:-0.330000px;}
.ws5e{word-spacing:-0.324000px;}
.ws13c{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.285000px;}
.ws9a{word-spacing:-0.270000px;}
.ws54{word-spacing:-0.264000px;}
.wsa8{word-spacing:-0.216000px;}
.ws79{word-spacing:-0.198000px;}
.ws137{word-spacing:-0.180000px;}
.ws5c{word-spacing:-0.162000px;}
.ws50{word-spacing:-0.132000px;}
.ws8{word-spacing:-0.114000px;}
.wse8{word-spacing:-0.108000px;}
.ws6b{word-spacing:-0.066000px;}
.ws138{word-spacing:-0.060000px;}
.ws60{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.wse9{word-spacing:0.054000px;}
.ws113{word-spacing:0.060000px;}
.ws76{word-spacing:0.066000px;}
.ws5f{word-spacing:0.108000px;}
.ws115{word-spacing:0.120000px;}
.ws6a{word-spacing:0.132000px;}
.ws12{word-spacing:0.171000px;}
.ws13a{word-spacing:0.180000px;}
.ws53{word-spacing:0.198000px;}
.wse7{word-spacing:0.216000px;}
.ws135{word-spacing:0.240000px;}
.ws93{word-spacing:0.264000px;}
.ws111{word-spacing:0.300000px;}
.ws61{word-spacing:0.324000px;}
.ws6f{word-spacing:0.330000px;}
.ws114{word-spacing:0.360000px;}
.wsbe{word-spacing:0.378000px;}
.ws55{word-spacing:0.396000px;}
.ws9{word-spacing:0.399000px;}
.ws116{word-spacing:0.420000px;}
.ws9c{word-spacing:0.432000px;}
.wsb{word-spacing:0.456000px;}
.ws86{word-spacing:0.462000px;}
.ws112{word-spacing:0.480000px;}
.wsb4{word-spacing:0.486000px;}
.ws4{word-spacing:0.513000px;}
.ws85{word-spacing:0.528000px;}
.ws118{word-spacing:0.540000px;}
.ws5b{word-spacing:0.594000px;}
.ws11b{word-spacing:0.600000px;}
.ws6{word-spacing:0.627000px;}
.wse1{word-spacing:0.648000px;}
.ws87{word-spacing:0.660000px;}
.wsee{word-spacing:0.702000px;}
.ws52{word-spacing:0.726000px;}
.wsef{word-spacing:0.756000px;}
.ws6e{word-spacing:0.792000px;}
.wscf{word-spacing:0.810000px;}
.ws13d{word-spacing:0.840000px;}
.ws7a{word-spacing:0.858000px;}
.wsbb{word-spacing:0.864000px;}
.ws13b{word-spacing:0.900000px;}
.wsbd{word-spacing:0.918000px;}
.ws88{word-spacing:0.924000px;}
.ws2{word-spacing:0.969000px;}
.ws9b{word-spacing:0.972000px;}
.wsa5{word-spacing:0.990000px;}
.wsba{word-spacing:1.016400px;}
.wsa{word-spacing:1.026000px;}
.ws98{word-spacing:1.050000px;}
.ws78{word-spacing:1.056000px;}
.ws5a{word-spacing:1.080000px;}
.wsa6{word-spacing:1.108800px;}
.ws71{word-spacing:1.122000px;}
.ws99{word-spacing:1.134000px;}
.ws110{word-spacing:1.140000px;}
.ws62{word-spacing:1.188000px;}
.ws13{word-spacing:1.197000px;}
.ws139{word-spacing:1.200000px;}
.ws5d{word-spacing:1.242000px;}
.ws5{word-spacing:1.254000px;}
.ws136{word-spacing:1.260000px;}
.wsce{word-spacing:1.296000px;}
.ws14{word-spacing:1.311000px;}
.ws51{word-spacing:1.320000px;}
.ws7{word-spacing:1.368000px;}
.ws7b{word-spacing:1.386000px;}
.ws117{word-spacing:1.440000px;}
.ws73{word-spacing:1.452000px;}
.ws97{word-spacing:1.500000px;}
.ws6d{word-spacing:1.518000px;}
.ws56{word-spacing:1.584000px;}
.ws6c{word-spacing:1.650000px;}
.wsc9{word-spacing:2.100000px;}
.wse0{word-spacing:2.244000px;}
.ws90{word-spacing:2.484000px;}
.wsb9{word-spacing:2.508000px;}
.ws130{word-spacing:3.045000px;}
.ws133{word-spacing:3.075000px;}
.ws123{word-spacing:3.150000px;}
.ws125{word-spacing:3.195000px;}
.ws122{word-spacing:3.240000px;}
.wse3{word-spacing:3.600000px;}
.wse2{word-spacing:3.660000px;}
.ws12e{word-spacing:3.900000px;}
.ws129{word-spacing:3.960000px;}
.wsfe{word-spacing:4.245000px;}
.ws107{word-spacing:4.320000px;}
.ws106{word-spacing:4.365000px;}
.wsd8{word-spacing:4.875600px;}
.wsf5{word-spacing:5.610000px;}
.ws96{word-spacing:7.260000px;}
.wsd7{word-spacing:7.380000px;}
.wsc3{word-spacing:7.392000px;}
.ws95{word-spacing:7.440000px;}
.wsd6{word-spacing:7.560000px;}
.wsd9{word-spacing:9.018000px;}
.ws58{word-spacing:35.856000px;}
.ws81{word-spacing:35.904000px;}
.ws83{word-spacing:36.018000px;}
.ws8e{word-spacing:43.260000px;}
.wsca{word-spacing:85.500000px;}
.wscc{word-spacing:113.760000px;}
.ws8f{word-spacing:123.420000px;}
.wsd4{word-spacing:136.680000px;}
.wscb{word-spacing:143.160000px;}
.wsd5{word-spacing:166.020000px;}
.wsd2{word-spacing:166.680000px;}
.wsd3{word-spacing:196.020000px;}
.wsdd{word-spacing:199.980000px;}
.wsdf{word-spacing:214.980000px;}
.wsde{word-spacing:229.980000px;}
.wsc6{word-spacing:291.000000px;}
.wsc4{word-spacing:324.000000px;}
.wsc5{word-spacing:388.260000px;}
.wsc7{word-spacing:395.280000px;}
.wsac{word-spacing:423.540000px;}
.wsaf{word-spacing:682.980000px;}
.wsb3{word-spacing:743.460000px;}
.wsb1{word-spacing:831.900000px;}
.wsae{word-spacing:858.240000px;}
.wsb2{word-spacing:883.020000px;}
.wsb0{word-spacing:886.980000px;}
.wsad{word-spacing:890.520000px;}
.ws59{word-spacing:939.696000px;}
._49{margin-left:-10.731000px;}
._c{margin-left:-8.844000px;}
._1e{margin-left:-7.836000px;}
._8{margin-left:-6.459000px;}
._5{margin-left:-4.788000px;}
._0{margin-left:-3.648000px;}
._3{margin-left:-2.394000px;}
._1{margin-left:-1.197000px;}
._2{width:1.140000px;}
._a{width:3.036000px;}
._3f{width:4.158000px;}
._4{width:12.654000px;}
._9{width:14.988000px;}
._7{width:19.602000px;}
._17{width:45.840158px;}
._6{width:48.378000px;}
._e{width:49.518000px;}
._2c{width:66.240000px;}
._2d{width:79.260000px;}
._16{width:81.600000px;}
._10{width:87.057000px;}
._13{width:99.174000px;}
._12{width:104.937000px;}
._14{width:108.057000px;}
._38{width:115.860000px;}
._2b{width:141.240000px;}
._2a{width:142.854000px;}
._11{width:149.754000px;}
._39{width:158.220000px;}
._33{width:165.072000px;}
._2f{width:166.740000px;}
._f{width:169.911000px;}
._29{width:193.860000px;}
._18{width:195.000000px;}
._31{width:206.688000px;}
._1d{width:210.900000px;}
._41{width:214.980000px;}
._15{width:219.780000px;}
._34{width:224.820000px;}
._1a{width:230.400000px;}
._30{width:235.800000px;}
._3e{width:238.332000px;}
._36{width:239.772000px;}
._19{width:240.900000px;}
._25{width:244.320000px;}
._24{width:253.053000px;}
._3c{width:254.172000px;}
._3a{width:259.368000px;}
._32{width:269.100000px;}
._1c{width:270.900000px;}
._3b{width:285.000000px;}
._3d{width:289.368000px;}
._2e{width:299.100000px;}
._35{width:314.100000px;}
._1b{width:315.900000px;}
._20{width:324.600000px;}
._26{width:410.280000px;}
._27{width:449.088000px;}
._28{width:486.594000px;}
._44{width:513.357000px;}
._37{width:522.294000px;}
._40{width:548.820000px;}
._1f{width:600.474000px;}
._46{width:643.680000px;}
._b{width:678.144000px;}
._23{width:703.434000px;}
._22{width:735.048000px;}
._21{width:767.973000px;}
._d{width:952.170000px;}
._43{width:1167.780000px;}
._42{width:1199.400000px;}
._45{width:1226.460000px;}
._48{width:1295.616000px;}
._47{width:1329.360000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:1.396500px;}
.y4a{bottom:2.146500px;}
.y4c{bottom:2.896500px;}
.y53{bottom:3.646500px;}
.yba{bottom:50.130000px;}
.y20d{bottom:50.376000px;}
.y295{bottom:50.385000px;}
.y1ab{bottom:50.451000px;}
.y47{bottom:50.490000px;}
.yae{bottom:50.493000px;}
.y85{bottom:50.632500px;}
.y1e4{bottom:50.649000px;}
.y27d{bottom:50.682000px;}
.y148{bottom:50.715000px;}
.y14e{bottom:50.745000px;}
.y13f{bottom:50.997000px;}
.y246{bottom:51.063000px;}
.y1e{bottom:51.116250px;}
.y233{bottom:51.123000px;}
.yf0{bottom:51.171000px;}
.y17e{bottom:51.270000px;}
.y162{bottom:51.382500px;}
.y108{bottom:51.652500px;}
.y2c5{bottom:53.385000px;}
.y20c{bottom:64.632000px;}
.y1aa{bottom:64.707000px;}
.y46{bottom:64.746000px;}
.yad{bottom:64.749000px;}
.y13e{bottom:65.253000px;}
.y245{bottom:65.319000px;}
.y232{bottom:65.379000px;}
.yef{bottom:65.427000px;}
.y1d{bottom:66.121500px;}
.y294{bottom:66.135000px;}
.y84{bottom:67.875000px;}
.y1e3{bottom:67.891500px;}
.y27c{bottom:67.924500px;}
.y147{bottom:67.957500px;}
.y17d{bottom:68.512500px;}
.y161{bottom:68.625000px;}
.y107{bottom:68.895000px;}
.y2c4{bottom:69.135000px;}
.y14d{bottom:73.500000px;}
.y20b{bottom:78.888000px;}
.y1a9{bottom:78.963000px;}
.y45{bottom:79.002000px;}
.yac{bottom:79.005000px;}
.y13d{bottom:79.509000px;}
.y244{bottom:79.575000px;}
.y231{bottom:79.635000px;}
.yee{bottom:79.683000px;}
.y1c{bottom:81.126750px;}
.y293{bottom:81.885000px;}
.y2c3{bottom:84.885000px;}
.y83{bottom:85.117500px;}
.y1e2{bottom:85.134000px;}
.y27b{bottom:85.167000px;}
.y146{bottom:85.200000px;}
.y17c{bottom:85.755000px;}
.y160{bottom:85.867500px;}
.y106{bottom:86.137500px;}
.yb9{bottom:92.625000px;}
.y20a{bottom:93.144000px;}
.y1a8{bottom:93.219000px;}
.y44{bottom:93.258000px;}
.y14c{bottom:93.750000px;}
.y13c{bottom:93.765000px;}
.y243{bottom:93.831000px;}
.y230{bottom:93.891000px;}
.yed{bottom:93.939000px;}
.y1b{bottom:96.132000px;}
.y292{bottom:97.635000px;}
.y2c2{bottom:100.635000px;}
.y82{bottom:102.360000px;}
.y1e1{bottom:102.376500px;}
.y27a{bottom:102.409500px;}
.y145{bottom:102.442500px;}
.y17b{bottom:102.997500px;}
.y15f{bottom:103.110000px;}
.y105{bottom:103.380000px;}
.y209{bottom:107.400000px;}
.y1a7{bottom:107.475000px;}
.y43{bottom:107.514000px;}
.y13b{bottom:108.021000px;}
.y242{bottom:108.087000px;}
.y22f{bottom:108.147000px;}
.yec{bottom:108.195000px;}
.yb8{bottom:109.867500px;}
.y1a{bottom:111.137250px;}
.y291{bottom:113.385000px;}
.y14b{bottom:114.000000px;}
.y2c1{bottom:116.385000px;}
.y81{bottom:119.602500px;}
.y1e0{bottom:119.619000px;}
.y279{bottom:119.652000px;}
.y144{bottom:119.685000px;}
.y17a{bottom:120.240000px;}
.y15e{bottom:120.352500px;}
.y104{bottom:120.622500px;}
.y208{bottom:121.656000px;}
.y42{bottom:121.770000px;}
.y13a{bottom:122.277000px;}
.y241{bottom:122.343000px;}
.y22e{bottom:122.403000px;}
.y19{bottom:126.142500px;}
.yb7{bottom:127.165500px;}
.y290{bottom:129.135000px;}
.y2c0{bottom:132.135000px;}
.y207{bottom:135.912000px;}
.y41{bottom:136.026000px;}
.y139{bottom:136.533000px;}
.y240{bottom:136.599000px;}
.y22d{bottom:136.659000px;}
.y80{bottom:136.845000px;}
.y1df{bottom:136.861500px;}
.y278{bottom:136.894500px;}
.y143{bottom:136.927500px;}
.y179{bottom:137.482500px;}
.y15d{bottom:137.595000px;}
.y103{bottom:137.865000px;}
.y14a{bottom:139.500000px;}
.y18{bottom:141.147750px;}
.yb6{bottom:144.408000px;}
.y28f{bottom:144.885000px;}
.y2bf{bottom:147.885000px;}
.y206{bottom:150.168000px;}
.y40{bottom:150.282000px;}
.y138{bottom:150.789000px;}
.y23f{bottom:150.855000px;}
.y22c{bottom:150.915000px;}
.y1a6{bottom:151.597500px;}
.yeb{bottom:153.907500px;}
.yab{bottom:154.035000px;}
.y7f{bottom:154.087500px;}
.y1de{bottom:154.104000px;}
.y277{bottom:154.137000px;}
.y142{bottom:154.170000px;}
.y178{bottom:154.725000px;}
.y15c{bottom:154.837500px;}
.y102{bottom:155.107500px;}
.y149{bottom:155.250000px;}
.y17{bottom:156.153000px;}
.y28e{bottom:160.635000px;}
.yb5{bottom:161.650500px;}
.y2be{bottom:163.635000px;}
.y205{bottom:164.424000px;}
.y3f{bottom:164.538000px;}
.y137{bottom:165.045000px;}
.y23e{bottom:165.111000px;}
.y22b{bottom:165.171000px;}
.y1a5{bottom:168.840000px;}
.yea{bottom:171.150000px;}
.y16{bottom:171.158250px;}
.yaa{bottom:171.277500px;}
.y7e{bottom:171.330000px;}
.y1dd{bottom:171.346500px;}
.y276{bottom:171.379500px;}
.y141{bottom:171.412500px;}
.y177{bottom:171.967500px;}
.y15b{bottom:172.080000px;}
.y101{bottom:172.350000px;}
.y28d{bottom:176.385000px;}
.y204{bottom:178.680000px;}
.y3e{bottom:178.794000px;}
.yb4{bottom:178.893000px;}
.y136{bottom:179.301000px;}
.y23d{bottom:179.367000px;}
.y2bd{bottom:179.385000px;}
.y22a{bottom:179.427000px;}
.y1a4{bottom:186.082500px;}
.y15{bottom:186.163500px;}
.ye9{bottom:188.392500px;}
.ya9{bottom:188.520000px;}
.y7d{bottom:188.572500px;}
.y1dc{bottom:188.589000px;}
.y275{bottom:188.622000px;}
.y140{bottom:188.655000px;}
.y176{bottom:189.210000px;}
.y15a{bottom:189.322500px;}
.y100{bottom:189.592500px;}
.y28c{bottom:192.135000px;}
.y203{bottom:192.936000px;}
.y3d{bottom:193.050000px;}
.y135{bottom:193.557000px;}
.y23c{bottom:193.623000px;}
.y229{bottom:193.683000px;}
.y2bc{bottom:195.135000px;}
.yb3{bottom:196.135500px;}
.y14{bottom:201.168750px;}
.y1a3{bottom:203.325000px;}
.ya8{bottom:205.762500px;}
.y7c{bottom:205.815000px;}
.y1db{bottom:205.831500px;}
.y274{bottom:205.864500px;}
.ye8{bottom:205.897500px;}
.y159{bottom:206.565000px;}
.yff{bottom:206.835000px;}
.y202{bottom:207.192000px;}
.y134{bottom:207.813000px;}
.y23b{bottom:207.879000px;}
.y28b{bottom:207.885000px;}
.y228{bottom:207.939000px;}
.y2bb{bottom:210.885000px;}
.yb2{bottom:213.378000px;}
.y1a2{bottom:220.567500px;}
.y201{bottom:221.448000px;}
.y133{bottom:222.069000px;}
.y23a{bottom:222.135000px;}
.y227{bottom:222.195000px;}
.ya7{bottom:223.005000px;}
.y7b{bottom:223.057500px;}
.y1da{bottom:223.074000px;}
.y273{bottom:223.107000px;}
.ye7{bottom:223.140000px;}
.y28a{bottom:223.635000px;}
.y158{bottom:223.807500px;}
.yfe{bottom:224.077500px;}
.y2ba{bottom:226.635000px;}
.yb1{bottom:230.620500px;}
.y13{bottom:231.165000px;}
.y200{bottom:235.704000px;}
.y132{bottom:236.325000px;}
.y1a1{bottom:237.810000px;}
.y289{bottom:239.385000px;}
.ya6{bottom:240.247500px;}
.y7a{bottom:240.300000px;}
.y1d9{bottom:240.316500px;}
.y272{bottom:240.349500px;}
.ye6{bottom:240.382500px;}
.y157{bottom:241.050000px;}
.yfd{bottom:241.320000px;}
.y19e{bottom:241.416000px;}
.y2b9{bottom:242.385000px;}
.y12{bottom:246.095250px;}
.y1ff{bottom:249.960000px;}
.y1a0{bottom:255.052500px;}
.y288{bottom:255.135000px;}
.y19d{bottom:255.672000px;}
.yb0{bottom:256.492500px;}
.ya5{bottom:257.490000px;}
.y79{bottom:257.542500px;}
.y1d8{bottom:257.559000px;}
.y271{bottom:257.592000px;}
.ye5{bottom:257.625000px;}
.y2b8{bottom:258.135000px;}
.y156{bottom:258.292500px;}
.yfc{bottom:258.562500px;}
.y3c{bottom:260.475000px;}
.y19c{bottom:269.928000px;}
.y287{bottom:270.885000px;}
.y19f{bottom:272.295000px;}
.yaf{bottom:273.735000px;}
.y2b7{bottom:273.885000px;}
.y239{bottom:274.642500px;}
.ya4{bottom:274.732500px;}
.y226{bottom:274.740000px;}
.y78{bottom:274.785000px;}
.y1d7{bottom:274.801500px;}
.y270{bottom:274.834500px;}
.ye4{bottom:274.867500px;}
.y155{bottom:275.535000px;}
.yfb{bottom:275.805000px;}
.y3b{bottom:277.717500px;}
.y11{bottom:282.090750px;}
.y19b{bottom:284.184000px;}
.y286{bottom:286.635000px;}
.y2b6{bottom:289.635000px;}
.y131{bottom:291.915000px;}
.y238{bottom:291.922500px;}
.y1fe{bottom:291.960000px;}
.ya3{bottom:291.975000px;}
.y225{bottom:291.982500px;}
.y77{bottom:292.027500px;}
.y1d6{bottom:292.044000px;}
.y261{bottom:292.062000px;}
.y26f{bottom:292.077000px;}
.ye3{bottom:292.110000px;}
.y154{bottom:292.777500px;}
.yfa{bottom:293.047500px;}
.y3a{bottom:294.960000px;}
.y10{bottom:297.096000px;}
.y19a{bottom:298.440000px;}
.y285{bottom:302.385000px;}
.y2b5{bottom:305.385000px;}
.y130{bottom:309.157500px;}
.y237{bottom:309.165000px;}
.y1fd{bottom:309.202500px;}
.ya2{bottom:309.217500px;}
.y224{bottom:309.225000px;}
.y76{bottom:309.270000px;}
.y1d5{bottom:309.286500px;}
.y260{bottom:309.304500px;}
.y26e{bottom:309.319500px;}
.ye2{bottom:309.352500px;}
.y153{bottom:310.020000px;}
.yf9{bottom:310.290000px;}
.y39{bottom:312.202500px;}
.y199{bottom:312.696000px;}
.yf{bottom:318.100500px;}
.y284{bottom:318.135000px;}
.y2b4{bottom:321.135000px;}
.y12f{bottom:326.400000px;}
.y236{bottom:326.407500px;}
.y1fc{bottom:326.445000px;}
.ya1{bottom:326.460000px;}
.y223{bottom:326.467500px;}
.y75{bottom:326.512500px;}
.y1d4{bottom:326.529000px;}
.y25f{bottom:326.547000px;}
.y26d{bottom:326.562000px;}
.ye1{bottom:326.595000px;}
.y198{bottom:326.952000px;}
.y152{bottom:327.262500px;}
.yf8{bottom:327.532500px;}
.yd7{bottom:327.609000px;}
.y38{bottom:329.445000px;}
.y1c4{bottom:331.776000px;}
.ye{bottom:333.105750px;}
.y283{bottom:333.885000px;}
.y2b3{bottom:336.885000px;}
.y197{bottom:341.208000px;}
.yd6{bottom:341.865000px;}
.y12e{bottom:343.642500px;}
.y235{bottom:343.650000px;}
.y1fb{bottom:343.687500px;}
.ya0{bottom:343.702500px;}
.y222{bottom:343.710000px;}
.y74{bottom:343.755000px;}
.y1d3{bottom:343.771500px;}
.y25e{bottom:343.789500px;}
.y26c{bottom:343.804500px;}
.ye0{bottom:343.837500px;}
.y151{bottom:344.505000px;}
.yf7{bottom:344.775000px;}
.y1c3{bottom:346.032000px;}
.y37{bottom:346.687500px;}
.yd{bottom:348.111000px;}
.y282{bottom:349.635000px;}
.y2b2{bottom:352.635000px;}
.y196{bottom:355.464000px;}
.yd5{bottom:356.121000px;}
.y1c2{bottom:360.288000px;}
.y234{bottom:360.892500px;}
.y1fa{bottom:360.930000px;}
.y9f{bottom:360.945000px;}
.y221{bottom:360.952500px;}
.y12d{bottom:360.960000px;}
.y73{bottom:360.997500px;}
.y1d2{bottom:361.014000px;}
.y25d{bottom:361.032000px;}
.y26b{bottom:361.047000px;}
.ydf{bottom:361.080000px;}
.y150{bottom:361.747500px;}
.yf6{bottom:362.017500px;}
.yc{bottom:363.116250px;}
.y36{bottom:363.930000px;}
.y281{bottom:365.385000px;}
.y2b1{bottom:368.385000px;}
.y195{bottom:369.720000px;}
.yd4{bottom:370.377000px;}
.y1c1{bottom:374.544000px;}
.yb{bottom:378.121500px;}
.y1f9{bottom:378.172500px;}
.y9e{bottom:378.187500px;}
.y220{bottom:378.195000px;}
.y12c{bottom:378.202500px;}
.y72{bottom:378.240000px;}
.y1d1{bottom:378.256500px;}
.y25c{bottom:378.274500px;}
.y26a{bottom:378.289500px;}
.yde{bottom:378.322500px;}
.y14f{bottom:378.990000px;}
.yf5{bottom:379.260000px;}
.y280{bottom:381.135000px;}
.y35{bottom:381.172500px;}
.y2b0{bottom:384.135000px;}
.yd3{bottom:384.633000px;}
.y1c0{bottom:388.800000px;}
.y194{bottom:392.475000px;}
.ya{bottom:393.126750px;}
.y1f8{bottom:395.415000px;}
.y9d{bottom:395.430000px;}
.y21f{bottom:395.437500px;}
.y12b{bottom:395.445000px;}
.y71{bottom:395.482500px;}
.y1d0{bottom:395.499000px;}
.y25b{bottom:395.517000px;}
.y269{bottom:395.532000px;}
.ydd{bottom:395.565000px;}
.yf4{bottom:396.502500px;}
.y27f{bottom:396.885000px;}
.y34{bottom:398.415000px;}
.yd2{bottom:398.889000px;}
.y2af{bottom:399.885000px;}
.y1bf{bottom:403.056000px;}
.y9{bottom:408.132000px;}
.y1f7{bottom:412.657500px;}
.y9c{bottom:412.672500px;}
.y21e{bottom:412.680000px;}
.y12a{bottom:412.687500px;}
.y70{bottom:412.725000px;}
.y1cf{bottom:412.741500px;}
.y25a{bottom:412.759500px;}
.y268{bottom:412.774500px;}
.ydc{bottom:412.807500px;}
.yd1{bottom:413.145000px;}
.yf3{bottom:413.745000px;}
.y2ae{bottom:415.635000px;}
.y33{bottom:415.657500px;}
.y1be{bottom:417.312000px;}
.y27e{bottom:421.404000px;}
.y8{bottom:423.137250px;}
.yd0{bottom:427.401000px;}
.y1f6{bottom:429.900000px;}
.y9b{bottom:429.915000px;}
.y21d{bottom:429.922500px;}
.y129{bottom:429.930000px;}
.y6f{bottom:429.967500px;}
.y1ce{bottom:429.984000px;}
.y259{bottom:430.002000px;}
.y267{bottom:430.017000px;}
.ydb{bottom:430.050000px;}
.yf2{bottom:430.987500px;}
.y2ad{bottom:431.385000px;}
.y1bd{bottom:431.568000px;}
.y32{bottom:432.900000px;}
.y193{bottom:432.975000px;}
.y7{bottom:438.142500px;}
.y175{bottom:438.663000px;}
.ycf{bottom:441.657000px;}
.y1bc{bottom:445.824000px;}
.y2ac{bottom:447.135000px;}
.y1f5{bottom:447.142500px;}
.y9a{bottom:447.157500px;}
.y21c{bottom:447.165000px;}
.y128{bottom:447.172500px;}
.y6e{bottom:447.210000px;}
.y1cd{bottom:447.226500px;}
.y258{bottom:447.244500px;}
.y266{bottom:447.259500px;}
.yda{bottom:447.292500px;}
.yf1{bottom:448.230000px;}
.y192{bottom:448.725000px;}
.y31{bottom:450.142500px;}
.y174{bottom:452.919000px;}
.y6{bottom:453.147750px;}
.yce{bottom:455.913000px;}
.y1bb{bottom:460.080000px;}
.y2ab{bottom:462.885000px;}
.y99{bottom:464.400000px;}
.y21b{bottom:464.407500px;}
.y127{bottom:464.415000px;}
.y6d{bottom:464.452500px;}
.y257{bottom:464.487000px;}
.y265{bottom:464.502000px;}
.y1f4{bottom:464.505000px;}
.yd9{bottom:464.535000px;}
.y173{bottom:467.175000px;}
.y30{bottom:467.385000px;}
.y5{bottom:468.153000px;}
.y191{bottom:468.975000px;}
.ycd{bottom:470.169000px;}
.y1cc{bottom:473.098500px;}
.y2aa{bottom:478.635000px;}
.y172{bottom:481.431000px;}
.y98{bottom:481.642500px;}
.y21a{bottom:481.650000px;}
.y126{bottom:481.657500px;}
.y6c{bottom:481.695000px;}
.y256{bottom:481.729500px;}
.y264{bottom:481.744500px;}
.y1f3{bottom:481.747500px;}
.yd8{bottom:481.777500px;}
.y1ba{bottom:482.835000px;}
.y4{bottom:483.158250px;}
.ycc{bottom:484.425000px;}
.y190{bottom:489.225000px;}
.y2a9{bottom:494.385000px;}
.y171{bottom:495.687000px;}
.y3{bottom:498.163500px;}
.y219{bottom:498.892500px;}
.y125{bottom:498.900000px;}
.y6b{bottom:498.937500px;}
.y255{bottom:498.972000px;}
.y263{bottom:498.987000px;}
.y1f2{bottom:498.990000px;}
.y97{bottom:499.020000px;}
.y118{bottom:500.424000px;}
.y1b9{bottom:503.085000px;}
.ycb{bottom:507.180000px;}
.y18f{bottom:509.475000px;}
.y170{bottom:509.943000px;}
.y2a8{bottom:510.135000px;}
.y2{bottom:513.168750px;}
.y117{bottom:514.680000px;}
.y124{bottom:516.142500px;}
.y6a{bottom:516.180000px;}
.y218{bottom:516.187500px;}
.y254{bottom:516.214500px;}
.y1cb{bottom:516.229500px;}
.y1f1{bottom:516.232500px;}
.y96{bottom:516.262500px;}
.yca{bottom:522.930000px;}
.y1b8{bottom:523.335000px;}
.y55{bottom:523.500000px;}
.y16f{bottom:524.199000px;}
.y18e{bottom:525.225000px;}
.y2a7{bottom:525.885000px;}
.y123{bottom:533.415000px;}
.y69{bottom:533.422500px;}
.y217{bottom:533.430000px;}
.y253{bottom:533.457000px;}
.y1ca{bottom:533.472000px;}
.y1f0{bottom:533.475000px;}
.y95{bottom:533.505000px;}
.y16e{bottom:538.455000px;}
.y5a{bottom:538.500000px;}
.yc9{bottom:538.680000px;}
.y1b7{bottom:539.085000px;}
.y54{bottom:540.000000px;}
.y2a6{bottom:541.635000px;}
.y116{bottom:541.695000px;}
.y262{bottom:542.101500px;}
.y1{bottom:543.165000px;}
.y18d{bottom:545.475000px;}
.y122{bottom:550.657500px;}
.y68{bottom:550.665000px;}
.y216{bottom:550.672500px;}
.y252{bottom:550.699500px;}
.y1c9{bottom:550.714500px;}
.y1ef{bottom:550.717500px;}
.y94{bottom:550.747500px;}
.y52{bottom:555.000000px;}
.y2a5{bottom:557.385000px;}
.yc8{bottom:558.930000px;}
.y1b6{bottom:559.335000px;}
.y16d{bottom:561.210000px;}
.y18c{bottom:565.725000px;}
.y115{bottom:566.190000px;}
.y121{bottom:567.900000px;}
.y67{bottom:567.907500px;}
.y215{bottom:567.915000px;}
.y251{bottom:567.942000px;}
.y1c8{bottom:567.957000px;}
.y1ee{bottom:567.960000px;}
.y93{bottom:567.990000px;}
.y59{bottom:573.000000px;}
.y2a4{bottom:573.135000px;}
.y51{bottom:576.000000px;}
.yc7{bottom:579.180000px;}
.y1b5{bottom:579.585000px;}
.y16c{bottom:581.460000px;}
.y120{bottom:585.142500px;}
.y66{bottom:585.150000px;}
.y214{bottom:585.157500px;}
.y250{bottom:585.184500px;}
.y1c7{bottom:585.199500px;}
.y1ed{bottom:585.202500px;}
.y92{bottom:585.232500px;}
.y18b{bottom:585.975000px;}
.y114{bottom:586.200000px;}
.y2a3{bottom:588.885000px;}
.y50{bottom:591.000000px;}
.y1b4{bottom:595.335000px;}
.yc6{bottom:599.430000px;}
.y16b{bottom:601.710000px;}
.y65{bottom:602.392500px;}
.y213{bottom:602.400000px;}
.y11f{bottom:602.419500px;}
.y24f{bottom:602.427000px;}
.y1c6{bottom:602.442000px;}
.y1ec{bottom:602.445000px;}
.y91{bottom:602.475000px;}
.y29{bottom:603.072000px;}
.y2a2{bottom:604.635000px;}
.y113{bottom:606.195000px;}
.y18a{bottom:606.225000px;}
.y4e{bottom:607.500000px;}
.y1b3{bottom:615.585000px;}
.y28{bottom:617.328000px;}
.y212{bottom:619.642500px;}
.y11e{bottom:619.662000px;}
.y24e{bottom:619.669500px;}
.yc5{bottom:619.680000px;}
.y1eb{bottom:619.687500px;}
.y64{bottom:619.701000px;}
.y90{bottom:619.717500px;}
.y2a1{bottom:620.385000px;}
.y16a{bottom:621.960000px;}
.y4d{bottom:622.500000px;}
.y58{bottom:624.000000px;}
.y112{bottom:626.205000px;}
.y189{bottom:626.475000px;}
.y1c5{bottom:628.314000px;}
.y27{bottom:631.584000px;}
.y1b2{bottom:635.835000px;}
.y2a0{bottom:636.135000px;}
.y11d{bottom:636.904500px;}
.y24d{bottom:636.912000px;}
.y211{bottom:636.927000px;}
.y1ea{bottom:636.930000px;}
.y63{bottom:636.943500px;}
.y8f{bottom:636.960000px;}
.yc4{bottom:639.930000px;}
.y4b{bottom:642.000000px;}
.y169{bottom:642.210000px;}
.y57{bottom:643.500000px;}
.y26{bottom:645.840000px;}
.y111{bottom:646.200000px;}
.y188{bottom:646.725000px;}
.y29f{bottom:651.885000px;}
.y11c{bottom:654.147000px;}
.y24c{bottom:654.154500px;}
.y210{bottom:654.169500px;}
.y1e9{bottom:654.172500px;}
.y62{bottom:654.186000px;}
.y8e{bottom:654.202500px;}
.y1b1{bottom:656.085000px;}
.y56{bottom:657.000000px;}
.y49{bottom:658.500000px;}
.yc3{bottom:660.180000px;}
.y168{bottom:662.460000px;}
.y25{bottom:663.840000px;}
.y110{bottom:666.210000px;}
.y187{bottom:666.975000px;}
.y29e{bottom:667.635000px;}
.y11b{bottom:671.389500px;}
.y24b{bottom:671.397000px;}
.y20f{bottom:671.412000px;}
.y1e8{bottom:671.415000px;}
.y61{bottom:671.428500px;}
.y8d{bottom:671.445000px;}
.y1b0{bottom:671.835000px;}
.y167{bottom:678.210000px;}
.yc2{bottom:680.430000px;}
.y29d{bottom:683.385000px;}
.y48{bottom:684.885000px;}
.y10f{bottom:686.205000px;}
.y186{bottom:687.225000px;}
.y24a{bottom:688.639500px;}
.y1e7{bottom:688.657500px;}
.y60{bottom:688.671000px;}
.y8c{bottom:688.687500px;}
.y1af{bottom:692.085000px;}
.y24{bottom:694.605000px;}
.y11a{bottom:697.261500px;}
.y20e{bottom:697.284000px;}
.y166{bottom:698.460000px;}
.y29c{bottom:699.135000px;}
.yc1{bottom:700.680000px;}
.y1e6{bottom:705.900000px;}
.y5f{bottom:705.913500px;}
.y8b{bottom:705.930000px;}
.y10e{bottom:706.215000px;}
.y185{bottom:707.475000px;}
.y1ae{bottom:712.335000px;}
.y23{bottom:712.605000px;}
.y119{bottom:714.504000px;}
.y249{bottom:714.511500px;}
.y29b{bottom:714.885000px;}
.y165{bottom:718.710000px;}
.yc0{bottom:720.930000px;}
.y1e5{bottom:723.142500px;}
.y5e{bottom:723.156000px;}
.y8a{bottom:723.172500px;}
.y10d{bottom:726.210000px;}
.y184{bottom:727.725000px;}
.y29a{bottom:730.635000px;}
.y248{bottom:731.754000px;}
.y1ad{bottom:732.585000px;}
.ybf{bottom:736.680000px;}
.y164{bottom:738.960000px;}
.y5d{bottom:740.398500px;}
.y89{bottom:740.415000px;}
.y2f{bottom:743.385000px;}
.y183{bottom:743.475000px;}
.y10c{bottom:746.205000px;}
.y299{bottom:746.385000px;}
.ybe{bottom:752.430000px;}
.y1ac{bottom:752.835000px;}
.y22{bottom:757.605000px;}
.y5c{bottom:757.641000px;}
.y88{bottom:757.657500px;}
.y2e{bottom:758.370000px;}
.y163{bottom:759.210000px;}
.y182{bottom:759.225000px;}
.y298{bottom:762.135000px;}
.ybd{bottom:768.180000px;}
.y5b{bottom:774.883500px;}
.y247{bottom:774.892500px;}
.y87{bottom:774.900000px;}
.y10b{bottom:774.960000px;}
.y181{bottom:774.975000px;}
.y297{bottom:777.885000px;}
.y2d{bottom:779.374500px;}
.y21{bottom:781.605000px;}
.y86{bottom:792.142500px;}
.y296{bottom:793.635000px;}
.ybc{bottom:793.680000px;}
.y2c{bottom:794.379750px;}
.y10a{bottom:800.460000px;}
.y180{bottom:800.475000px;}
.y20{bottom:805.605000px;}
.y2b{bottom:809.385000px;}
.ybb{bottom:809.430000px;}
.y109{bottom:816.210000px;}
.y17f{bottom:816.225000px;}
.y1f{bottom:856.605000px;}
.y2a{bottom:1014.000000px;}
.he{height:12.000000px;}
.hb{height:13.500000px;}
.hd{height:15.000000px;}
.hf{height:16.500000px;}
.h4{height:41.568000px;}
.h7{height:45.954000px;}
.h8{height:47.085938px;}
.h3{height:48.507000px;}
.h2{height:49.362000px;}
.h14{height:51.060000px;}
.h13{height:51.960000px;}
.hc{height:52.998047px;}
.h1c{height:55.542000px;}
.h9{height:56.166000px;}
.h15{height:56.172000px;}
.h10{height:57.156000px;}
.h16{height:60.046200px;}
.h23{height:60.388200px;}
.h11{height:60.556200px;}
.h1d{height:60.616200px;}
.ha{height:60.736200px;}
.h1a{height:60.796200px;}
.h20{height:60.826200px;}
.h12{height:60.874200px;}
.h1f{height:60.886200px;}
.h1e{height:60.928200px;}
.h21{height:60.946200px;}
.h18{height:60.958200px;}
.h19{height:60.976200px;}
.h17{height:61.006200px;}
.h22{height:61.066200px;}
.h1b{height:61.096200px;}
.h6{height:61.272000px;}
.h5{height:81.696000px;}
.h1{height:889.500000px;}
.h0{height:892.500000px;}
.w11{width:171.000000px;}
.w10{width:174.000000px;}
.we{width:186.000000px;}
.w5{width:187.500000px;}
.wb{width:205.500000px;}
.w6{width:207.000000px;}
.w9{width:208.500000px;}
.w3{width:220.500000px;}
.wd{width:228.000000px;}
.wf{width:231.000000px;}
.wa{width:232.500000px;}
.wc{width:234.000000px;}
.w4{width:238.500000px;}
.w2{width:244.500000px;}
.w8{width:252.000000px;}
.w7{width:256.500000px;}
.w1{width:636.000000px;}
.w0{width:637.500000px;}
.x4{left:-31.500000px;}
.xf{left:-14.189850px;}
.x0{left:0.000000px;}
.x1{left:1.500000px;}
.x13{left:17.311950px;}
.x16{left:29.668200px;}
.xd{left:36.810000px;}
.x11{left:46.899150px;}
.x14{left:51.000000px;}
.x15{left:52.500000px;}
.x10{left:60.000000px;}
.x8{left:64.500000px;}
.x9{left:66.406350px;}
.xc{left:70.500000px;}
.x2{left:77.700000px;}
.x5{left:78.915000px;}
.xa{left:85.500000px;}
.x22{left:91.848000px;}
.x17{left:93.000000px;}
.x1e{left:94.414500px;}
.xb{left:96.784650px;}
.x12{left:99.000000px;}
.x1d{left:100.216500px;}
.x6{left:101.406000px;}
.xe{left:124.500000px;}
.x18{left:135.019650px;}
.x20{left:162.744000px;}
.x21{left:170.790000px;}
.x23{left:204.975000px;}
.x7{left:298.245000px;}
.x19{left:336.000000px;}
.x1a{left:337.500000px;}
.x1b{left:339.000000px;}
.x1c{left:340.500000px;}
.x24{left:347.415000px;}
.x3{left:432.270000px;}
.x1f{left:498.645000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:19.040000pt;}
.ls4d{letter-spacing:-6.096000pt;}
.ls32{letter-spacing:-5.766933pt;}
.ls47{letter-spacing:-5.760000pt;}
.ls45{letter-spacing:-5.227200pt;}
.ls49{letter-spacing:-3.830400pt;}
.ls2b{letter-spacing:-3.637333pt;}
.ls22{letter-spacing:-3.226667pt;}
.ls26{letter-spacing:-2.833600pt;}
.ls3c{letter-spacing:-2.640000pt;}
.ls3b{letter-spacing:-2.601600pt;}
.ls41{letter-spacing:-2.404800pt;}
.ls3a{letter-spacing:-2.164800pt;}
.ls4c{letter-spacing:-2.155200pt;}
.ls39{letter-spacing:-2.068800pt;}
.ls2f{letter-spacing:-2.000533pt;}
.ls42{letter-spacing:-1.920000pt;}
.ls43{letter-spacing:-1.776000pt;}
.ls36{letter-spacing:-1.749333pt;}
.ls2d{letter-spacing:-1.701333pt;}
.ls46{letter-spacing:-1.632000pt;}
.ls84{letter-spacing:-1.466667pt;}
.ls1c{letter-spacing:-1.459200pt;}
.ls4b{letter-spacing:-1.440000pt;}
.ls2a{letter-spacing:-1.408000pt;}
.ls25{letter-spacing:-1.349333pt;}
.ls40{letter-spacing:-1.305600pt;}
.ls31{letter-spacing:-1.290667pt;}
.lsb2{letter-spacing:-1.240000pt;}
.ls95{letter-spacing:-1.232000pt;}
.lsb3{letter-spacing:-1.226667pt;}
.ls4e{letter-spacing:-1.216000pt;}
.ls1d{letter-spacing:-1.210933pt;}
.ls3f{letter-spacing:-1.200000pt;}
.ls89{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.165333pt;}
.ls1a{letter-spacing:-1.155200pt;}
.lsaf{letter-spacing:-1.120000pt;}
.ls2e{letter-spacing:-1.114667pt;}
.ls38{letter-spacing:-1.104000pt;}
.ls19{letter-spacing:-1.064000pt;}
.ls74{letter-spacing:-1.056000pt;}
.lsae{letter-spacing:-1.040000pt;}
.lsac{letter-spacing:-1.013333pt;}
.ls77{letter-spacing:-1.008000pt;}
.lsab{letter-spacing:-1.000000pt;}
.ls75{letter-spacing:-0.997333pt;}
.ls65{letter-spacing:-0.938667pt;}
.lsa7{letter-spacing:-0.920000pt;}
.ls18{letter-spacing:-0.912000pt;}
.lsa8{letter-spacing:-0.906667pt;}
.ls59{letter-spacing:-0.880000pt;}
.ls4a{letter-spacing:-0.864000pt;}
.lsb0{letter-spacing:-0.840000pt;}
.ls29{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.810667pt;}
.ls3d{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.762667pt;}
.lsaa{letter-spacing:-0.746667pt;}
.ls6e{letter-spacing:-0.720000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.663733pt;}
.ls34{letter-spacing:-0.645333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.608000pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls7c{letter-spacing:-0.574933pt;}
.ls48{letter-spacing:-0.528000pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.469333pt;}
.lsc3{letter-spacing:-0.440000pt;}
.ls72{letter-spacing:-0.432000pt;}
.lsc4{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.410667pt;}
.ls24{letter-spacing:-0.404800pt;}
.ls73{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.354667pt;}
.ls2c{letter-spacing:-0.352000pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls93{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls5a{letter-spacing:-0.293333pt;}
.ls8a{letter-spacing:-0.288000pt;}
.lsc0{letter-spacing:-0.266667pt;}
.ls7d{letter-spacing:-0.246400pt;}
.ls7e{letter-spacing:-0.240000pt;}
.ls64{letter-spacing:-0.234667pt;}
.lsc1{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.202667pt;}
.lsbf{letter-spacing:-0.200000pt;}
.ls66{letter-spacing:-0.176000pt;}
.lsb1{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.152000pt;}
.ls94{letter-spacing:-0.144000pt;}
.lsc2{letter-spacing:-0.120000pt;}
.ls33{letter-spacing:-0.117333pt;}
.ls6d{letter-spacing:-0.096000pt;}
.ls9f{letter-spacing:-0.082133pt;}
.lsc6{letter-spacing:-0.080000pt;}
.ls23{letter-spacing:-0.058667pt;}
.ls76{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls81{letter-spacing:-0.048000pt;}
.ls35{letter-spacing:-0.042667pt;}
.ls9c{letter-spacing:-0.041067pt;}
.lsad{letter-spacing:-0.040000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa4{letter-spacing:0.040000pt;}
.ls14{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.050667pt;}
.ls78{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.058667pt;}
.ls9d{letter-spacing:0.082133pt;}
.ls15{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.101333pt;}
.ls6f{letter-spacing:0.106667pt;}
.ls50{letter-spacing:0.117333pt;}
.ls6b{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.152000pt;}
.ls92{letter-spacing:0.164267pt;}
.ls56{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.192000pt;}
.lsc5{letter-spacing:0.200000pt;}
.ls4{letter-spacing:0.202667pt;}
.ls9e{letter-spacing:0.205333pt;}
.ls68{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.234667pt;}
.ls71{letter-spacing:0.240000pt;}
.lsb9{letter-spacing:0.266667pt;}
.lsbc{letter-spacing:0.280000pt;}
.ls7b{letter-spacing:0.288000pt;}
.ls4f{letter-spacing:0.293333pt;}
.lsa0{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.336000pt;}
.ls52{letter-spacing:0.352000pt;}
.lsa2{letter-spacing:0.373333pt;}
.ls7a{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.405333pt;}
.ls53{letter-spacing:0.410667pt;}
.ls62{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.432000pt;}
.ls55{letter-spacing:0.469333pt;}
.ls70{letter-spacing:0.480000pt;}
.lsb6{letter-spacing:0.520000pt;}
.lsf{letter-spacing:0.528000pt;}
.lsb7{letter-spacing:0.533333pt;}
.lsbb{letter-spacing:0.560000pt;}
.ls9a{letter-spacing:0.576000pt;}
.ls54{letter-spacing:0.586667pt;}
.lsba{letter-spacing:0.600000pt;}
.ls8d{letter-spacing:0.624000pt;}
.lsbe{letter-spacing:0.640000pt;}
.ls63{letter-spacing:0.645333pt;}
.ls8c{letter-spacing:0.672000pt;}
.ls9b{letter-spacing:0.698133pt;}
.ls51{letter-spacing:0.704000pt;}
.ls5b{letter-spacing:0.762667pt;}
.lsb4{letter-spacing:0.800000pt;}
.ls57{letter-spacing:0.821333pt;}
.lsa6{letter-spacing:0.840000pt;}
.lsa5{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.880000pt;}
.lsa1{letter-spacing:0.906667pt;}
.ls3{letter-spacing:0.912000pt;}
.lsa9{letter-spacing:0.920000pt;}
.ls58{letter-spacing:0.938667pt;}
.lsbd{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.008000pt;}
.ls5f{letter-spacing:1.056000pt;}
.ls7f{letter-spacing:1.114667pt;}
.ls96{letter-spacing:1.173333pt;}
.ls80{letter-spacing:1.290667pt;}
.lsa3{letter-spacing:1.333333pt;}
.ls98{letter-spacing:1.349333pt;}
.ls16{letter-spacing:1.392000pt;}
.ls97{letter-spacing:1.408000pt;}
.lsb8{letter-spacing:1.440000pt;}
.ls67{letter-spacing:1.466667pt;}
.ls5c{letter-spacing:1.525333pt;}
.ls61{letter-spacing:1.584000pt;}
.ls99{letter-spacing:1.642667pt;}
.ls8b{letter-spacing:1.760000pt;}
.ls10{letter-spacing:1.994667pt;}
.lsd{letter-spacing:14.034667pt;}
.lsb5{letter-spacing:26.666667pt;}
.ls69{letter-spacing:28.005614pt;}
.ls11{letter-spacing:44.016000pt;}
.ls85{letter-spacing:59.573333pt;}
.ls6a{letter-spacing:74.602105pt;}
.ls83{letter-spacing:103.520000pt;}
.ls88{letter-spacing:110.400000pt;}
.ls86{letter-spacing:126.026667pt;}
.ls82{letter-spacing:133.760000pt;}
.ls87{letter-spacing:140.106667pt;}
.ls8f{letter-spacing:182.666667pt;}
.ls91{letter-spacing:314.133333pt;}
.ls8e{letter-spacing:1060.480000pt;}
.ls90{letter-spacing:1081.706667pt;}
.ws8b{word-spacing:-16.133333pt;}
.wsc0{word-spacing:-15.781333pt;}
.ws7e{word-spacing:-15.722667pt;}
.ws7c{word-spacing:-15.664000pt;}
.ws80{word-spacing:-15.605333pt;}
.wsa1{word-spacing:-15.546667pt;}
.ws9e{word-spacing:-15.488000pt;}
.ws9f{word-spacing:-15.429333pt;}
.ws8a{word-spacing:-15.370667pt;}
.ws89{word-spacing:-15.312000pt;}
.ws65{word-spacing:-15.253333pt;}
.ws69{word-spacing:-15.194667pt;}
.wsf1{word-spacing:-15.136000pt;}
.wsb5{word-spacing:-15.077333pt;}
.wsaa{word-spacing:-15.018667pt;}
.wse5{word-spacing:-14.960000pt;}
.ws68{word-spacing:-14.901333pt;}
.ws67{word-spacing:-14.842667pt;}
.wsa2{word-spacing:-14.784000pt;}
.ws12a{word-spacing:-14.773333pt;}
.ws7d{word-spacing:-14.725333pt;}
.ws25{word-spacing:-14.666667pt;}
.ws21{word-spacing:-14.608000pt;}
.wsa9{word-spacing:-14.549333pt;}
.wsa0{word-spacing:-14.490667pt;}
.ws64{word-spacing:-14.373333pt;}
.wsb6{word-spacing:-14.314667pt;}
.ws22{word-spacing:-14.261867pt;}
.ws66{word-spacing:-14.256000pt;}
.wsfc{word-spacing:-14.240000pt;}
.ws2e{word-spacing:-14.197333pt;}
.ws108{word-spacing:-14.186667pt;}
.wsf8{word-spacing:-14.138667pt;}
.ws12b{word-spacing:-14.133333pt;}
.ws24{word-spacing:-14.080000pt;}
.ws31{word-spacing:-14.021333pt;}
.ws26{word-spacing:-13.962667pt;}
.ws1f{word-spacing:-13.904000pt;}
.ws28{word-spacing:-13.845333pt;}
.ws7f{word-spacing:-13.728000pt;}
.wsf6{word-spacing:-13.669333pt;}
.wsfa{word-spacing:-13.653333pt;}
.wsc1{word-spacing:-13.610667pt;}
.ws8c{word-spacing:-13.600000pt;}
.ws2c{word-spacing:-13.552000pt;}
.ws8d{word-spacing:-13.546667pt;}
.wsd0{word-spacing:-13.440000pt;}
.wsf7{word-spacing:-13.434667pt;}
.ws13e{word-spacing:-13.386667pt;}
.ws2f{word-spacing:-13.376000pt;}
.wsd1{word-spacing:-13.333333pt;}
.ws27{word-spacing:-13.317333pt;}
.wsdc{word-spacing:-13.280000pt;}
.ws29{word-spacing:-13.258667pt;}
.ws10d{word-spacing:-13.173333pt;}
.ws124{word-spacing:-13.066667pt;}
.ws2b{word-spacing:-12.965333pt;}
.ws0{word-spacing:-12.920000pt;}
.ws11d{word-spacing:-12.853333pt;}
.ws121{word-spacing:-12.693333pt;}
.ws2d{word-spacing:-12.666133pt;}
.wsdb{word-spacing:-12.624000pt;}
.ws100{word-spacing:-12.586667pt;}
.ws120{word-spacing:-12.426667pt;}
.wsec{word-spacing:-12.384000pt;}
.ws91{word-spacing:-12.336000pt;}
.ws16{word-spacing:-12.312000pt;}
.wsa4{word-spacing:-12.240000pt;}
.ws10a{word-spacing:-12.213333pt;}
.wsed{word-spacing:-12.144000pt;}
.ws10f{word-spacing:-12.106667pt;}
.ws4b{word-spacing:-12.096000pt;}
.ws1e{word-spacing:-12.058667pt;}
.ws1c{word-spacing:-12.008000pt;}
.ws1d{word-spacing:-12.002933pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc8{word-spacing:-11.952000pt;}
.wsda{word-spacing:-11.904000pt;}
.ws23{word-spacing:-11.833067pt;}
.ws17{word-spacing:-11.754667pt;}
.ws4d{word-spacing:-11.704000pt;}
.ws44{word-spacing:-11.664000pt;}
.ws18{word-spacing:-11.602667pt;}
.wsa3{word-spacing:-11.568000pt;}
.ws3c{word-spacing:-11.520000pt;}
.ws19{word-spacing:-11.511467pt;}
.ws4c{word-spacing:-11.472000pt;}
.ws1b{word-spacing:-11.455733pt;}
.ws20{word-spacing:-11.440000pt;}
.ws35{word-spacing:-11.424000pt;}
.ws92{word-spacing:-11.280000pt;}
.ws3b{word-spacing:-11.232000pt;}
.ws1a{word-spacing:-11.207467pt;}
.ws3a{word-spacing:-11.088000pt;}
.ws2a{word-spacing:-11.029333pt;}
.ws63{word-spacing:-11.000000pt;}
.wsea{word-spacing:-10.964800pt;}
.wsff{word-spacing:-10.920000pt;}
.ws43{word-spacing:-10.896000pt;}
.wsfd{word-spacing:-10.880000pt;}
.ws11e{word-spacing:-10.840000pt;}
.ws33{word-spacing:-10.837333pt;}
.ws3d{word-spacing:-10.800000pt;}
.ws3e{word-spacing:-10.694400pt;}
.ws11f{word-spacing:-10.640000pt;}
.ws82{word-spacing:-10.624000pt;}
.ws12d{word-spacing:-10.600000pt;}
.ws48{word-spacing:-10.560000pt;}
.ws128{word-spacing:-10.520000pt;}
.wsf3{word-spacing:-10.472000pt;}
.wse6{word-spacing:-10.430933pt;}
.ws45{word-spacing:-10.368000pt;}
.wsf2{word-spacing:-10.348800pt;}
.wsf9{word-spacing:-10.320000pt;}
.ws32{word-spacing:-10.266667pt;}
.ws131{word-spacing:-10.240000pt;}
.wseb{word-spacing:-10.225600pt;}
.ws41{word-spacing:-10.224000pt;}
.ws132{word-spacing:-10.200000pt;}
.wsf4{word-spacing:-10.184533pt;}
.ws40{word-spacing:-10.080000pt;}
.ws105{word-spacing:-10.040000pt;}
.wsb8{word-spacing:-10.020267pt;}
.ws102{word-spacing:-10.000000pt;}
.ws103{word-spacing:-9.960000pt;}
.ws36{word-spacing:-9.931200pt;}
.ws13f{word-spacing:-9.920000pt;}
.ws127{word-spacing:-9.880000pt;}
.ws49{word-spacing:-9.844800pt;}
.ws10c{word-spacing:-9.840000pt;}
.ws37{word-spacing:-9.835200pt;}
.ws126{word-spacing:-9.760000pt;}
.wsb7{word-spacing:-9.691733pt;}
.ws12f{word-spacing:-9.680000pt;}
.ws3f{word-spacing:-9.595200pt;}
.ws12c{word-spacing:-9.560000pt;}
.ws140{word-spacing:-9.520000pt;}
.ws38{word-spacing:-9.398400pt;}
.ws39{word-spacing:-9.360000pt;}
.ws10b{word-spacing:-9.160000pt;}
.wsfb{word-spacing:-9.080000pt;}
.ws101{word-spacing:-9.000000pt;}
.ws104{word-spacing:-8.960000pt;}
.ws34{word-spacing:-8.917333pt;}
.ws30{word-spacing:-8.899733pt;}
.ws109{word-spacing:-8.880000pt;}
.ws10e{word-spacing:-8.760000pt;}
.ws47{word-spacing:-8.169600pt;}
.ws42{word-spacing:-6.772800pt;}
.ws15{word-spacing:-6.314667pt;}
.ws46{word-spacing:-6.240000pt;}
.ws4a{word-spacing:-5.904000pt;}
.ws134{word-spacing:-2.346667pt;}
.wscd{word-spacing:-2.026667pt;}
.wsab{word-spacing:-1.546667pt;}
.wsc2{word-spacing:-0.762667pt;}
.ws70{word-spacing:-0.704000pt;}
.ws3{word-spacing:-0.658667pt;}
.ws57{word-spacing:-0.645333pt;}
.ws142{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.608000pt;}
.ws75{word-spacing:-0.586667pt;}
.wsbc{word-spacing:-0.576000pt;}
.ws11a{word-spacing:-0.533333pt;}
.ws74{word-spacing:-0.528000pt;}
.ws11{word-spacing:-0.506667pt;}
.wsa7{word-spacing:-0.492800pt;}
.ws9d{word-spacing:-0.480000pt;}
.ws77{word-spacing:-0.469333pt;}
.wse{word-spacing:-0.456000pt;}
.ws94{word-spacing:-0.451733pt;}
.wse4{word-spacing:-0.432000pt;}
.ws141{word-spacing:-0.426667pt;}
.ws72{word-spacing:-0.410667pt;}
.wsf0{word-spacing:-0.384000pt;}
.ws119{word-spacing:-0.373333pt;}
.wsf{word-spacing:-0.354667pt;}
.ws4f{word-spacing:-0.352000pt;}
.wsbf{word-spacing:-0.336000pt;}
.ws11c{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.304000pt;}
.ws84{word-spacing:-0.293333pt;}
.ws5e{word-spacing:-0.288000pt;}
.ws13c{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.253333pt;}
.ws9a{word-spacing:-0.240000pt;}
.ws54{word-spacing:-0.234667pt;}
.wsa8{word-spacing:-0.192000pt;}
.ws79{word-spacing:-0.176000pt;}
.ws137{word-spacing:-0.160000pt;}
.ws5c{word-spacing:-0.144000pt;}
.ws50{word-spacing:-0.117333pt;}
.ws8{word-spacing:-0.101333pt;}
.wse8{word-spacing:-0.096000pt;}
.ws6b{word-spacing:-0.058667pt;}
.ws138{word-spacing:-0.053333pt;}
.ws60{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.wse9{word-spacing:0.048000pt;}
.ws113{word-spacing:0.053333pt;}
.ws76{word-spacing:0.058667pt;}
.ws5f{word-spacing:0.096000pt;}
.ws115{word-spacing:0.106667pt;}
.ws6a{word-spacing:0.117333pt;}
.ws12{word-spacing:0.152000pt;}
.ws13a{word-spacing:0.160000pt;}
.ws53{word-spacing:0.176000pt;}
.wse7{word-spacing:0.192000pt;}
.ws135{word-spacing:0.213333pt;}
.ws93{word-spacing:0.234667pt;}
.ws111{word-spacing:0.266667pt;}
.ws61{word-spacing:0.288000pt;}
.ws6f{word-spacing:0.293333pt;}
.ws114{word-spacing:0.320000pt;}
.wsbe{word-spacing:0.336000pt;}
.ws55{word-spacing:0.352000pt;}
.ws9{word-spacing:0.354667pt;}
.ws116{word-spacing:0.373333pt;}
.ws9c{word-spacing:0.384000pt;}
.wsb{word-spacing:0.405333pt;}
.ws86{word-spacing:0.410667pt;}
.ws112{word-spacing:0.426667pt;}
.wsb4{word-spacing:0.432000pt;}
.ws4{word-spacing:0.456000pt;}
.ws85{word-spacing:0.469333pt;}
.ws118{word-spacing:0.480000pt;}
.ws5b{word-spacing:0.528000pt;}
.ws11b{word-spacing:0.533333pt;}
.ws6{word-spacing:0.557333pt;}
.wse1{word-spacing:0.576000pt;}
.ws87{word-spacing:0.586667pt;}
.wsee{word-spacing:0.624000pt;}
.ws52{word-spacing:0.645333pt;}
.wsef{word-spacing:0.672000pt;}
.ws6e{word-spacing:0.704000pt;}
.wscf{word-spacing:0.720000pt;}
.ws13d{word-spacing:0.746667pt;}
.ws7a{word-spacing:0.762667pt;}
.wsbb{word-spacing:0.768000pt;}
.ws13b{word-spacing:0.800000pt;}
.wsbd{word-spacing:0.816000pt;}
.ws88{word-spacing:0.821333pt;}
.ws2{word-spacing:0.861333pt;}
.ws9b{word-spacing:0.864000pt;}
.wsa5{word-spacing:0.880000pt;}
.wsba{word-spacing:0.903467pt;}
.wsa{word-spacing:0.912000pt;}
.ws98{word-spacing:0.933333pt;}
.ws78{word-spacing:0.938667pt;}
.ws5a{word-spacing:0.960000pt;}
.wsa6{word-spacing:0.985600pt;}
.ws71{word-spacing:0.997333pt;}
.ws99{word-spacing:1.008000pt;}
.ws110{word-spacing:1.013333pt;}
.ws62{word-spacing:1.056000pt;}
.ws13{word-spacing:1.064000pt;}
.ws139{word-spacing:1.066667pt;}
.ws5d{word-spacing:1.104000pt;}
.ws5{word-spacing:1.114667pt;}
.ws136{word-spacing:1.120000pt;}
.wsce{word-spacing:1.152000pt;}
.ws14{word-spacing:1.165333pt;}
.ws51{word-spacing:1.173333pt;}
.ws7{word-spacing:1.216000pt;}
.ws7b{word-spacing:1.232000pt;}
.ws117{word-spacing:1.280000pt;}
.ws73{word-spacing:1.290667pt;}
.ws97{word-spacing:1.333333pt;}
.ws6d{word-spacing:1.349333pt;}
.ws56{word-spacing:1.408000pt;}
.ws6c{word-spacing:1.466667pt;}
.wsc9{word-spacing:1.866667pt;}
.wse0{word-spacing:1.994667pt;}
.ws90{word-spacing:2.208000pt;}
.wsb9{word-spacing:2.229333pt;}
.ws130{word-spacing:2.706667pt;}
.ws133{word-spacing:2.733333pt;}
.ws123{word-spacing:2.800000pt;}
.ws125{word-spacing:2.840000pt;}
.ws122{word-spacing:2.880000pt;}
.wse3{word-spacing:3.200000pt;}
.wse2{word-spacing:3.253333pt;}
.ws12e{word-spacing:3.466667pt;}
.ws129{word-spacing:3.520000pt;}
.wsfe{word-spacing:3.773333pt;}
.ws107{word-spacing:3.840000pt;}
.ws106{word-spacing:3.880000pt;}
.wsd8{word-spacing:4.333867pt;}
.wsf5{word-spacing:4.986667pt;}
.ws96{word-spacing:6.453333pt;}
.wsd7{word-spacing:6.560000pt;}
.wsc3{word-spacing:6.570667pt;}
.ws95{word-spacing:6.613333pt;}
.wsd6{word-spacing:6.720000pt;}
.wsd9{word-spacing:8.016000pt;}
.ws58{word-spacing:31.872000pt;}
.ws81{word-spacing:31.914667pt;}
.ws83{word-spacing:32.016000pt;}
.ws8e{word-spacing:38.453333pt;}
.wsca{word-spacing:76.000000pt;}
.wscc{word-spacing:101.120000pt;}
.ws8f{word-spacing:109.706667pt;}
.wsd4{word-spacing:121.493333pt;}
.wscb{word-spacing:127.253333pt;}
.wsd5{word-spacing:147.573333pt;}
.wsd2{word-spacing:148.160000pt;}
.wsd3{word-spacing:174.240000pt;}
.wsdd{word-spacing:177.760000pt;}
.wsdf{word-spacing:191.093333pt;}
.wsde{word-spacing:204.426667pt;}
.wsc6{word-spacing:258.666667pt;}
.wsc4{word-spacing:288.000000pt;}
.wsc5{word-spacing:345.120000pt;}
.wsc7{word-spacing:351.360000pt;}
.wsac{word-spacing:376.480000pt;}
.wsaf{word-spacing:607.093333pt;}
.wsb3{word-spacing:660.853333pt;}
.wsb1{word-spacing:739.466667pt;}
.wsae{word-spacing:762.880000pt;}
.wsb2{word-spacing:784.906667pt;}
.wsb0{word-spacing:788.426667pt;}
.wsad{word-spacing:791.573333pt;}
.ws59{word-spacing:835.285333pt;}
._49{margin-left:-9.538667pt;}
._c{margin-left:-7.861333pt;}
._1e{margin-left:-6.965333pt;}
._8{margin-left:-5.741333pt;}
._5{margin-left:-4.256000pt;}
._0{margin-left:-3.242667pt;}
._3{margin-left:-2.128000pt;}
._1{margin-left:-1.064000pt;}
._2{width:1.013333pt;}
._a{width:2.698667pt;}
._3f{width:3.696000pt;}
._4{width:11.248000pt;}
._9{width:13.322667pt;}
._7{width:17.424000pt;}
._17{width:40.746807pt;}
._6{width:43.002667pt;}
._e{width:44.016000pt;}
._2c{width:58.880000pt;}
._2d{width:70.453333pt;}
._16{width:72.533333pt;}
._10{width:77.384000pt;}
._13{width:88.154667pt;}
._12{width:93.277333pt;}
._14{width:96.050667pt;}
._38{width:102.986667pt;}
._2b{width:125.546667pt;}
._2a{width:126.981333pt;}
._11{width:133.114667pt;}
._39{width:140.640000pt;}
._33{width:146.730667pt;}
._2f{width:148.213333pt;}
._f{width:151.032000pt;}
._29{width:172.320000pt;}
._18{width:173.333333pt;}
._31{width:183.722667pt;}
._1d{width:187.466667pt;}
._41{width:191.093333pt;}
._15{width:195.360000pt;}
._34{width:199.840000pt;}
._1a{width:204.800000pt;}
._30{width:209.600000pt;}
._3e{width:211.850667pt;}
._36{width:213.130667pt;}
._19{width:214.133333pt;}
._25{width:217.173333pt;}
._24{width:224.936000pt;}
._3c{width:225.930667pt;}
._3a{width:230.549333pt;}
._32{width:239.200000pt;}
._1c{width:240.800000pt;}
._3b{width:253.333333pt;}
._3d{width:257.216000pt;}
._2e{width:265.866667pt;}
._35{width:279.200000pt;}
._1b{width:280.800000pt;}
._20{width:288.533333pt;}
._26{width:364.693333pt;}
._27{width:399.189333pt;}
._28{width:432.528000pt;}
._44{width:456.317333pt;}
._37{width:464.261333pt;}
._40{width:487.840000pt;}
._1f{width:533.754667pt;}
._46{width:572.160000pt;}
._b{width:602.794667pt;}
._23{width:625.274667pt;}
._22{width:653.376000pt;}
._21{width:682.642667pt;}
._d{width:846.373333pt;}
._43{width:1038.026667pt;}
._42{width:1066.133333pt;}
._45{width:1090.186667pt;}
._48{width:1151.658667pt;}
._47{width:1181.653333pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:1.241333pt;}
.y4a{bottom:1.908000pt;}
.y4c{bottom:2.574667pt;}
.y53{bottom:3.241333pt;}
.yba{bottom:44.560000pt;}
.y20d{bottom:44.778667pt;}
.y295{bottom:44.786667pt;}
.y1ab{bottom:44.845333pt;}
.y47{bottom:44.880000pt;}
.yae{bottom:44.882667pt;}
.y85{bottom:45.006667pt;}
.y1e4{bottom:45.021333pt;}
.y27d{bottom:45.050667pt;}
.y148{bottom:45.080000pt;}
.y14e{bottom:45.106667pt;}
.y13f{bottom:45.330667pt;}
.y246{bottom:45.389333pt;}
.y1e{bottom:45.436667pt;}
.y233{bottom:45.442667pt;}
.yf0{bottom:45.485333pt;}
.y17e{bottom:45.573333pt;}
.y162{bottom:45.673333pt;}
.y108{bottom:45.913333pt;}
.y2c5{bottom:47.453333pt;}
.y20c{bottom:57.450667pt;}
.y1aa{bottom:57.517333pt;}
.y46{bottom:57.552000pt;}
.yad{bottom:57.554667pt;}
.y13e{bottom:58.002667pt;}
.y245{bottom:58.061333pt;}
.y232{bottom:58.114667pt;}
.yef{bottom:58.157333pt;}
.y1d{bottom:58.774667pt;}
.y294{bottom:58.786667pt;}
.y84{bottom:60.333333pt;}
.y1e3{bottom:60.348000pt;}
.y27c{bottom:60.377333pt;}
.y147{bottom:60.406667pt;}
.y17d{bottom:60.900000pt;}
.y161{bottom:61.000000pt;}
.y107{bottom:61.240000pt;}
.y2c4{bottom:61.453333pt;}
.y14d{bottom:65.333333pt;}
.y20b{bottom:70.122667pt;}
.y1a9{bottom:70.189333pt;}
.y45{bottom:70.224000pt;}
.yac{bottom:70.226667pt;}
.y13d{bottom:70.674667pt;}
.y244{bottom:70.733333pt;}
.y231{bottom:70.786667pt;}
.yee{bottom:70.829333pt;}
.y1c{bottom:72.112667pt;}
.y293{bottom:72.786667pt;}
.y2c3{bottom:75.453333pt;}
.y83{bottom:75.660000pt;}
.y1e2{bottom:75.674667pt;}
.y27b{bottom:75.704000pt;}
.y146{bottom:75.733333pt;}
.y17c{bottom:76.226667pt;}
.y160{bottom:76.326667pt;}
.y106{bottom:76.566667pt;}
.yb9{bottom:82.333333pt;}
.y20a{bottom:82.794667pt;}
.y1a8{bottom:82.861333pt;}
.y44{bottom:82.896000pt;}
.y14c{bottom:83.333333pt;}
.y13c{bottom:83.346667pt;}
.y243{bottom:83.405333pt;}
.y230{bottom:83.458667pt;}
.yed{bottom:83.501333pt;}
.y1b{bottom:85.450667pt;}
.y292{bottom:86.786667pt;}
.y2c2{bottom:89.453333pt;}
.y82{bottom:90.986667pt;}
.y1e1{bottom:91.001333pt;}
.y27a{bottom:91.030667pt;}
.y145{bottom:91.060000pt;}
.y17b{bottom:91.553333pt;}
.y15f{bottom:91.653333pt;}
.y105{bottom:91.893333pt;}
.y209{bottom:95.466667pt;}
.y1a7{bottom:95.533333pt;}
.y43{bottom:95.568000pt;}
.y13b{bottom:96.018667pt;}
.y242{bottom:96.077333pt;}
.y22f{bottom:96.130667pt;}
.yec{bottom:96.173333pt;}
.yb8{bottom:97.660000pt;}
.y1a{bottom:98.788667pt;}
.y291{bottom:100.786667pt;}
.y14b{bottom:101.333333pt;}
.y2c1{bottom:103.453333pt;}
.y81{bottom:106.313333pt;}
.y1e0{bottom:106.328000pt;}
.y279{bottom:106.357333pt;}
.y144{bottom:106.386667pt;}
.y17a{bottom:106.880000pt;}
.y15e{bottom:106.980000pt;}
.y104{bottom:107.220000pt;}
.y208{bottom:108.138667pt;}
.y42{bottom:108.240000pt;}
.y13a{bottom:108.690667pt;}
.y241{bottom:108.749333pt;}
.y22e{bottom:108.802667pt;}
.y19{bottom:112.126667pt;}
.yb7{bottom:113.036000pt;}
.y290{bottom:114.786667pt;}
.y2c0{bottom:117.453333pt;}
.y207{bottom:120.810667pt;}
.y41{bottom:120.912000pt;}
.y139{bottom:121.362667pt;}
.y240{bottom:121.421333pt;}
.y22d{bottom:121.474667pt;}
.y80{bottom:121.640000pt;}
.y1df{bottom:121.654667pt;}
.y278{bottom:121.684000pt;}
.y143{bottom:121.713333pt;}
.y179{bottom:122.206667pt;}
.y15d{bottom:122.306667pt;}
.y103{bottom:122.546667pt;}
.y14a{bottom:124.000000pt;}
.y18{bottom:125.464667pt;}
.yb6{bottom:128.362667pt;}
.y28f{bottom:128.786667pt;}
.y2bf{bottom:131.453333pt;}
.y206{bottom:133.482667pt;}
.y40{bottom:133.584000pt;}
.y138{bottom:134.034667pt;}
.y23f{bottom:134.093333pt;}
.y22c{bottom:134.146667pt;}
.y1a6{bottom:134.753333pt;}
.yeb{bottom:136.806667pt;}
.yab{bottom:136.920000pt;}
.y7f{bottom:136.966667pt;}
.y1de{bottom:136.981333pt;}
.y277{bottom:137.010667pt;}
.y142{bottom:137.040000pt;}
.y178{bottom:137.533333pt;}
.y15c{bottom:137.633333pt;}
.y102{bottom:137.873333pt;}
.y149{bottom:138.000000pt;}
.y17{bottom:138.802667pt;}
.y28e{bottom:142.786667pt;}
.yb5{bottom:143.689333pt;}
.y2be{bottom:145.453333pt;}
.y205{bottom:146.154667pt;}
.y3f{bottom:146.256000pt;}
.y137{bottom:146.706667pt;}
.y23e{bottom:146.765333pt;}
.y22b{bottom:146.818667pt;}
.y1a5{bottom:150.080000pt;}
.yea{bottom:152.133333pt;}
.y16{bottom:152.140667pt;}
.yaa{bottom:152.246667pt;}
.y7e{bottom:152.293333pt;}
.y1dd{bottom:152.308000pt;}
.y276{bottom:152.337333pt;}
.y141{bottom:152.366667pt;}
.y177{bottom:152.860000pt;}
.y15b{bottom:152.960000pt;}
.y101{bottom:153.200000pt;}
.y28d{bottom:156.786667pt;}
.y204{bottom:158.826667pt;}
.y3e{bottom:158.928000pt;}
.yb4{bottom:159.016000pt;}
.y136{bottom:159.378667pt;}
.y23d{bottom:159.437333pt;}
.y2bd{bottom:159.453333pt;}
.y22a{bottom:159.490667pt;}
.y1a4{bottom:165.406667pt;}
.y15{bottom:165.478667pt;}
.ye9{bottom:167.460000pt;}
.ya9{bottom:167.573333pt;}
.y7d{bottom:167.620000pt;}
.y1dc{bottom:167.634667pt;}
.y275{bottom:167.664000pt;}
.y140{bottom:167.693333pt;}
.y176{bottom:168.186667pt;}
.y15a{bottom:168.286667pt;}
.y100{bottom:168.526667pt;}
.y28c{bottom:170.786667pt;}
.y203{bottom:171.498667pt;}
.y3d{bottom:171.600000pt;}
.y135{bottom:172.050667pt;}
.y23c{bottom:172.109333pt;}
.y229{bottom:172.162667pt;}
.y2bc{bottom:173.453333pt;}
.yb3{bottom:174.342667pt;}
.y14{bottom:178.816667pt;}
.y1a3{bottom:180.733333pt;}
.ya8{bottom:182.900000pt;}
.y7c{bottom:182.946667pt;}
.y1db{bottom:182.961333pt;}
.y274{bottom:182.990667pt;}
.ye8{bottom:183.020000pt;}
.y159{bottom:183.613333pt;}
.yff{bottom:183.853333pt;}
.y202{bottom:184.170667pt;}
.y134{bottom:184.722667pt;}
.y23b{bottom:184.781333pt;}
.y28b{bottom:184.786667pt;}
.y228{bottom:184.834667pt;}
.y2bb{bottom:187.453333pt;}
.yb2{bottom:189.669333pt;}
.y1a2{bottom:196.060000pt;}
.y201{bottom:196.842667pt;}
.y133{bottom:197.394667pt;}
.y23a{bottom:197.453333pt;}
.y227{bottom:197.506667pt;}
.ya7{bottom:198.226667pt;}
.y7b{bottom:198.273333pt;}
.y1da{bottom:198.288000pt;}
.y273{bottom:198.317333pt;}
.ye7{bottom:198.346667pt;}
.y28a{bottom:198.786667pt;}
.y158{bottom:198.940000pt;}
.yfe{bottom:199.180000pt;}
.y2ba{bottom:201.453333pt;}
.yb1{bottom:204.996000pt;}
.y13{bottom:205.480000pt;}
.y200{bottom:209.514667pt;}
.y132{bottom:210.066667pt;}
.y1a1{bottom:211.386667pt;}
.y289{bottom:212.786667pt;}
.ya6{bottom:213.553333pt;}
.y7a{bottom:213.600000pt;}
.y1d9{bottom:213.614667pt;}
.y272{bottom:213.644000pt;}
.ye6{bottom:213.673333pt;}
.y157{bottom:214.266667pt;}
.yfd{bottom:214.506667pt;}
.y19e{bottom:214.592000pt;}
.y2b9{bottom:215.453333pt;}
.y12{bottom:218.751333pt;}
.y1ff{bottom:222.186667pt;}
.y1a0{bottom:226.713333pt;}
.y288{bottom:226.786667pt;}
.y19d{bottom:227.264000pt;}
.yb0{bottom:227.993333pt;}
.ya5{bottom:228.880000pt;}
.y79{bottom:228.926667pt;}
.y1d8{bottom:228.941333pt;}
.y271{bottom:228.970667pt;}
.ye5{bottom:229.000000pt;}
.y2b8{bottom:229.453333pt;}
.y156{bottom:229.593333pt;}
.yfc{bottom:229.833333pt;}
.y3c{bottom:231.533333pt;}
.y19c{bottom:239.936000pt;}
.y287{bottom:240.786667pt;}
.y19f{bottom:242.040000pt;}
.yaf{bottom:243.320000pt;}
.y2b7{bottom:243.453333pt;}
.y239{bottom:244.126667pt;}
.ya4{bottom:244.206667pt;}
.y226{bottom:244.213333pt;}
.y78{bottom:244.253333pt;}
.y1d7{bottom:244.268000pt;}
.y270{bottom:244.297333pt;}
.ye4{bottom:244.326667pt;}
.y155{bottom:244.920000pt;}
.yfb{bottom:245.160000pt;}
.y3b{bottom:246.860000pt;}
.y11{bottom:250.747333pt;}
.y19b{bottom:252.608000pt;}
.y286{bottom:254.786667pt;}
.y2b6{bottom:257.453333pt;}
.y131{bottom:259.480000pt;}
.y238{bottom:259.486667pt;}
.y1fe{bottom:259.520000pt;}
.ya3{bottom:259.533333pt;}
.y225{bottom:259.540000pt;}
.y77{bottom:259.580000pt;}
.y1d6{bottom:259.594667pt;}
.y261{bottom:259.610667pt;}
.y26f{bottom:259.624000pt;}
.ye3{bottom:259.653333pt;}
.y154{bottom:260.246667pt;}
.yfa{bottom:260.486667pt;}
.y3a{bottom:262.186667pt;}
.y10{bottom:264.085333pt;}
.y19a{bottom:265.280000pt;}
.y285{bottom:268.786667pt;}
.y2b5{bottom:271.453333pt;}
.y130{bottom:274.806667pt;}
.y237{bottom:274.813333pt;}
.y1fd{bottom:274.846667pt;}
.ya2{bottom:274.860000pt;}
.y224{bottom:274.866667pt;}
.y76{bottom:274.906667pt;}
.y1d5{bottom:274.921333pt;}
.y260{bottom:274.937333pt;}
.y26e{bottom:274.950667pt;}
.ye2{bottom:274.980000pt;}
.y153{bottom:275.573333pt;}
.yf9{bottom:275.813333pt;}
.y39{bottom:277.513333pt;}
.y199{bottom:277.952000pt;}
.yf{bottom:282.756000pt;}
.y284{bottom:282.786667pt;}
.y2b4{bottom:285.453333pt;}
.y12f{bottom:290.133333pt;}
.y236{bottom:290.140000pt;}
.y1fc{bottom:290.173333pt;}
.ya1{bottom:290.186667pt;}
.y223{bottom:290.193333pt;}
.y75{bottom:290.233333pt;}
.y1d4{bottom:290.248000pt;}
.y25f{bottom:290.264000pt;}
.y26d{bottom:290.277333pt;}
.ye1{bottom:290.306667pt;}
.y198{bottom:290.624000pt;}
.y152{bottom:290.900000pt;}
.yf8{bottom:291.140000pt;}
.yd7{bottom:291.208000pt;}
.y38{bottom:292.840000pt;}
.y1c4{bottom:294.912000pt;}
.ye{bottom:296.094000pt;}
.y283{bottom:296.786667pt;}
.y2b3{bottom:299.453333pt;}
.y197{bottom:303.296000pt;}
.yd6{bottom:303.880000pt;}
.y12e{bottom:305.460000pt;}
.y235{bottom:305.466667pt;}
.y1fb{bottom:305.500000pt;}
.ya0{bottom:305.513333pt;}
.y222{bottom:305.520000pt;}
.y74{bottom:305.560000pt;}
.y1d3{bottom:305.574667pt;}
.y25e{bottom:305.590667pt;}
.y26c{bottom:305.604000pt;}
.ye0{bottom:305.633333pt;}
.y151{bottom:306.226667pt;}
.yf7{bottom:306.466667pt;}
.y1c3{bottom:307.584000pt;}
.y37{bottom:308.166667pt;}
.yd{bottom:309.432000pt;}
.y282{bottom:310.786667pt;}
.y2b2{bottom:313.453333pt;}
.y196{bottom:315.968000pt;}
.yd5{bottom:316.552000pt;}
.y1c2{bottom:320.256000pt;}
.y234{bottom:320.793333pt;}
.y1fa{bottom:320.826667pt;}
.y9f{bottom:320.840000pt;}
.y221{bottom:320.846667pt;}
.y12d{bottom:320.853333pt;}
.y73{bottom:320.886667pt;}
.y1d2{bottom:320.901333pt;}
.y25d{bottom:320.917333pt;}
.y26b{bottom:320.930667pt;}
.ydf{bottom:320.960000pt;}
.y150{bottom:321.553333pt;}
.yf6{bottom:321.793333pt;}
.yc{bottom:322.770000pt;}
.y36{bottom:323.493333pt;}
.y281{bottom:324.786667pt;}
.y2b1{bottom:327.453333pt;}
.y195{bottom:328.640000pt;}
.yd4{bottom:329.224000pt;}
.y1c1{bottom:332.928000pt;}
.yb{bottom:336.108000pt;}
.y1f9{bottom:336.153333pt;}
.y9e{bottom:336.166667pt;}
.y220{bottom:336.173333pt;}
.y12c{bottom:336.180000pt;}
.y72{bottom:336.213333pt;}
.y1d1{bottom:336.228000pt;}
.y25c{bottom:336.244000pt;}
.y26a{bottom:336.257333pt;}
.yde{bottom:336.286667pt;}
.y14f{bottom:336.880000pt;}
.yf5{bottom:337.120000pt;}
.y280{bottom:338.786667pt;}
.y35{bottom:338.820000pt;}
.y2b0{bottom:341.453333pt;}
.yd3{bottom:341.896000pt;}
.y1c0{bottom:345.600000pt;}
.y194{bottom:348.866667pt;}
.ya{bottom:349.446000pt;}
.y1f8{bottom:351.480000pt;}
.y9d{bottom:351.493333pt;}
.y21f{bottom:351.500000pt;}
.y12b{bottom:351.506667pt;}
.y71{bottom:351.540000pt;}
.y1d0{bottom:351.554667pt;}
.y25b{bottom:351.570667pt;}
.y269{bottom:351.584000pt;}
.ydd{bottom:351.613333pt;}
.yf4{bottom:352.446667pt;}
.y27f{bottom:352.786667pt;}
.y34{bottom:354.146667pt;}
.yd2{bottom:354.568000pt;}
.y2af{bottom:355.453333pt;}
.y1bf{bottom:358.272000pt;}
.y9{bottom:362.784000pt;}
.y1f7{bottom:366.806667pt;}
.y9c{bottom:366.820000pt;}
.y21e{bottom:366.826667pt;}
.y12a{bottom:366.833333pt;}
.y70{bottom:366.866667pt;}
.y1cf{bottom:366.881333pt;}
.y25a{bottom:366.897333pt;}
.y268{bottom:366.910667pt;}
.ydc{bottom:366.940000pt;}
.yd1{bottom:367.240000pt;}
.yf3{bottom:367.773333pt;}
.y2ae{bottom:369.453333pt;}
.y33{bottom:369.473333pt;}
.y1be{bottom:370.944000pt;}
.y27e{bottom:374.581333pt;}
.y8{bottom:376.122000pt;}
.yd0{bottom:379.912000pt;}
.y1f6{bottom:382.133333pt;}
.y9b{bottom:382.146667pt;}
.y21d{bottom:382.153333pt;}
.y129{bottom:382.160000pt;}
.y6f{bottom:382.193333pt;}
.y1ce{bottom:382.208000pt;}
.y259{bottom:382.224000pt;}
.y267{bottom:382.237333pt;}
.ydb{bottom:382.266667pt;}
.yf2{bottom:383.100000pt;}
.y2ad{bottom:383.453333pt;}
.y1bd{bottom:383.616000pt;}
.y32{bottom:384.800000pt;}
.y193{bottom:384.866667pt;}
.y7{bottom:389.460000pt;}
.y175{bottom:389.922667pt;}
.ycf{bottom:392.584000pt;}
.y1bc{bottom:396.288000pt;}
.y2ac{bottom:397.453333pt;}
.y1f5{bottom:397.460000pt;}
.y9a{bottom:397.473333pt;}
.y21c{bottom:397.480000pt;}
.y128{bottom:397.486667pt;}
.y6e{bottom:397.520000pt;}
.y1cd{bottom:397.534667pt;}
.y258{bottom:397.550667pt;}
.y266{bottom:397.564000pt;}
.yda{bottom:397.593333pt;}
.yf1{bottom:398.426667pt;}
.y192{bottom:398.866667pt;}
.y31{bottom:400.126667pt;}
.y174{bottom:402.594667pt;}
.y6{bottom:402.798000pt;}
.yce{bottom:405.256000pt;}
.y1bb{bottom:408.960000pt;}
.y2ab{bottom:411.453333pt;}
.y99{bottom:412.800000pt;}
.y21b{bottom:412.806667pt;}
.y127{bottom:412.813333pt;}
.y6d{bottom:412.846667pt;}
.y257{bottom:412.877333pt;}
.y265{bottom:412.890667pt;}
.y1f4{bottom:412.893333pt;}
.yd9{bottom:412.920000pt;}
.y173{bottom:415.266667pt;}
.y30{bottom:415.453333pt;}
.y5{bottom:416.136000pt;}
.y191{bottom:416.866667pt;}
.ycd{bottom:417.928000pt;}
.y1cc{bottom:420.532000pt;}
.y2aa{bottom:425.453333pt;}
.y172{bottom:427.938667pt;}
.y98{bottom:428.126667pt;}
.y21a{bottom:428.133333pt;}
.y126{bottom:428.140000pt;}
.y6c{bottom:428.173333pt;}
.y256{bottom:428.204000pt;}
.y264{bottom:428.217333pt;}
.y1f3{bottom:428.220000pt;}
.yd8{bottom:428.246667pt;}
.y1ba{bottom:429.186667pt;}
.y4{bottom:429.474000pt;}
.ycc{bottom:430.600000pt;}
.y190{bottom:434.866667pt;}
.y2a9{bottom:439.453333pt;}
.y171{bottom:440.610667pt;}
.y3{bottom:442.812000pt;}
.y219{bottom:443.460000pt;}
.y125{bottom:443.466667pt;}
.y6b{bottom:443.500000pt;}
.y255{bottom:443.530667pt;}
.y263{bottom:443.544000pt;}
.y1f2{bottom:443.546667pt;}
.y97{bottom:443.573333pt;}
.y118{bottom:444.821333pt;}
.y1b9{bottom:447.186667pt;}
.ycb{bottom:450.826667pt;}
.y18f{bottom:452.866667pt;}
.y170{bottom:453.282667pt;}
.y2a8{bottom:453.453333pt;}
.y2{bottom:456.150000pt;}
.y117{bottom:457.493333pt;}
.y124{bottom:458.793333pt;}
.y6a{bottom:458.826667pt;}
.y218{bottom:458.833333pt;}
.y254{bottom:458.857333pt;}
.y1cb{bottom:458.870667pt;}
.y1f1{bottom:458.873333pt;}
.y96{bottom:458.900000pt;}
.yca{bottom:464.826667pt;}
.y1b8{bottom:465.186667pt;}
.y55{bottom:465.333333pt;}
.y16f{bottom:465.954667pt;}
.y18e{bottom:466.866667pt;}
.y2a7{bottom:467.453333pt;}
.y123{bottom:474.146667pt;}
.y69{bottom:474.153333pt;}
.y217{bottom:474.160000pt;}
.y253{bottom:474.184000pt;}
.y1ca{bottom:474.197333pt;}
.y1f0{bottom:474.200000pt;}
.y95{bottom:474.226667pt;}
.y16e{bottom:478.626667pt;}
.y5a{bottom:478.666667pt;}
.yc9{bottom:478.826667pt;}
.y1b7{bottom:479.186667pt;}
.y54{bottom:480.000000pt;}
.y2a6{bottom:481.453333pt;}
.y116{bottom:481.506667pt;}
.y262{bottom:481.868000pt;}
.y1{bottom:482.813333pt;}
.y18d{bottom:484.866667pt;}
.y122{bottom:489.473333pt;}
.y68{bottom:489.480000pt;}
.y216{bottom:489.486667pt;}
.y252{bottom:489.510667pt;}
.y1c9{bottom:489.524000pt;}
.y1ef{bottom:489.526667pt;}
.y94{bottom:489.553333pt;}
.y52{bottom:493.333333pt;}
.y2a5{bottom:495.453333pt;}
.yc8{bottom:496.826667pt;}
.y1b6{bottom:497.186667pt;}
.y16d{bottom:498.853333pt;}
.y18c{bottom:502.866667pt;}
.y115{bottom:503.280000pt;}
.y121{bottom:504.800000pt;}
.y67{bottom:504.806667pt;}
.y215{bottom:504.813333pt;}
.y251{bottom:504.837333pt;}
.y1c8{bottom:504.850667pt;}
.y1ee{bottom:504.853333pt;}
.y93{bottom:504.880000pt;}
.y59{bottom:509.333333pt;}
.y2a4{bottom:509.453333pt;}
.y51{bottom:512.000000pt;}
.yc7{bottom:514.826667pt;}
.y1b5{bottom:515.186667pt;}
.y16c{bottom:516.853333pt;}
.y120{bottom:520.126667pt;}
.y66{bottom:520.133333pt;}
.y214{bottom:520.140000pt;}
.y250{bottom:520.164000pt;}
.y1c7{bottom:520.177333pt;}
.y1ed{bottom:520.180000pt;}
.y92{bottom:520.206667pt;}
.y18b{bottom:520.866667pt;}
.y114{bottom:521.066667pt;}
.y2a3{bottom:523.453333pt;}
.y50{bottom:525.333333pt;}
.y1b4{bottom:529.186667pt;}
.yc6{bottom:532.826667pt;}
.y16b{bottom:534.853333pt;}
.y65{bottom:535.460000pt;}
.y213{bottom:535.466667pt;}
.y11f{bottom:535.484000pt;}
.y24f{bottom:535.490667pt;}
.y1c6{bottom:535.504000pt;}
.y1ec{bottom:535.506667pt;}
.y91{bottom:535.533333pt;}
.y29{bottom:536.064000pt;}
.y2a2{bottom:537.453333pt;}
.y113{bottom:538.840000pt;}
.y18a{bottom:538.866667pt;}
.y4e{bottom:540.000000pt;}
.y1b3{bottom:547.186667pt;}
.y28{bottom:548.736000pt;}
.y212{bottom:550.793333pt;}
.y11e{bottom:550.810667pt;}
.y24e{bottom:550.817333pt;}
.yc5{bottom:550.826667pt;}
.y1eb{bottom:550.833333pt;}
.y64{bottom:550.845333pt;}
.y90{bottom:550.860000pt;}
.y2a1{bottom:551.453333pt;}
.y16a{bottom:552.853333pt;}
.y4d{bottom:553.333333pt;}
.y58{bottom:554.666667pt;}
.y112{bottom:556.626667pt;}
.y189{bottom:556.866667pt;}
.y1c5{bottom:558.501333pt;}
.y27{bottom:561.408000pt;}
.y1b2{bottom:565.186667pt;}
.y2a0{bottom:565.453333pt;}
.y11d{bottom:566.137333pt;}
.y24d{bottom:566.144000pt;}
.y211{bottom:566.157333pt;}
.y1ea{bottom:566.160000pt;}
.y63{bottom:566.172000pt;}
.y8f{bottom:566.186667pt;}
.yc4{bottom:568.826667pt;}
.y4b{bottom:570.666667pt;}
.y169{bottom:570.853333pt;}
.y57{bottom:572.000000pt;}
.y26{bottom:574.080000pt;}
.y111{bottom:574.400000pt;}
.y188{bottom:574.866667pt;}
.y29f{bottom:579.453333pt;}
.y11c{bottom:581.464000pt;}
.y24c{bottom:581.470667pt;}
.y210{bottom:581.484000pt;}
.y1e9{bottom:581.486667pt;}
.y62{bottom:581.498667pt;}
.y8e{bottom:581.513333pt;}
.y1b1{bottom:583.186667pt;}
.y56{bottom:584.000000pt;}
.y49{bottom:585.333333pt;}
.yc3{bottom:586.826667pt;}
.y168{bottom:588.853333pt;}
.y25{bottom:590.080000pt;}
.y110{bottom:592.186667pt;}
.y187{bottom:592.866667pt;}
.y29e{bottom:593.453333pt;}
.y11b{bottom:596.790667pt;}
.y24b{bottom:596.797333pt;}
.y20f{bottom:596.810667pt;}
.y1e8{bottom:596.813333pt;}
.y61{bottom:596.825333pt;}
.y8d{bottom:596.840000pt;}
.y1b0{bottom:597.186667pt;}
.y167{bottom:602.853333pt;}
.yc2{bottom:604.826667pt;}
.y29d{bottom:607.453333pt;}
.y48{bottom:608.786667pt;}
.y10f{bottom:609.960000pt;}
.y186{bottom:610.866667pt;}
.y24a{bottom:612.124000pt;}
.y1e7{bottom:612.140000pt;}
.y60{bottom:612.152000pt;}
.y8c{bottom:612.166667pt;}
.y1af{bottom:615.186667pt;}
.y24{bottom:617.426667pt;}
.y11a{bottom:619.788000pt;}
.y20e{bottom:619.808000pt;}
.y166{bottom:620.853333pt;}
.y29c{bottom:621.453333pt;}
.yc1{bottom:622.826667pt;}
.y1e6{bottom:627.466667pt;}
.y5f{bottom:627.478667pt;}
.y8b{bottom:627.493333pt;}
.y10e{bottom:627.746667pt;}
.y185{bottom:628.866667pt;}
.y1ae{bottom:633.186667pt;}
.y23{bottom:633.426667pt;}
.y119{bottom:635.114667pt;}
.y249{bottom:635.121333pt;}
.y29b{bottom:635.453333pt;}
.y165{bottom:638.853333pt;}
.yc0{bottom:640.826667pt;}
.y1e5{bottom:642.793333pt;}
.y5e{bottom:642.805333pt;}
.y8a{bottom:642.820000pt;}
.y10d{bottom:645.520000pt;}
.y184{bottom:646.866667pt;}
.y29a{bottom:649.453333pt;}
.y248{bottom:650.448000pt;}
.y1ad{bottom:651.186667pt;}
.ybf{bottom:654.826667pt;}
.y164{bottom:656.853333pt;}
.y5d{bottom:658.132000pt;}
.y89{bottom:658.146667pt;}
.y2f{bottom:660.786667pt;}
.y183{bottom:660.866667pt;}
.y10c{bottom:663.293333pt;}
.y299{bottom:663.453333pt;}
.ybe{bottom:668.826667pt;}
.y1ac{bottom:669.186667pt;}
.y22{bottom:673.426667pt;}
.y5c{bottom:673.458667pt;}
.y88{bottom:673.473333pt;}
.y2e{bottom:674.106667pt;}
.y163{bottom:674.853333pt;}
.y182{bottom:674.866667pt;}
.y298{bottom:677.453333pt;}
.ybd{bottom:682.826667pt;}
.y5b{bottom:688.785333pt;}
.y247{bottom:688.793333pt;}
.y87{bottom:688.800000pt;}
.y10b{bottom:688.853333pt;}
.y181{bottom:688.866667pt;}
.y297{bottom:691.453333pt;}
.y2d{bottom:692.777333pt;}
.y21{bottom:694.760000pt;}
.y86{bottom:704.126667pt;}
.y296{bottom:705.453333pt;}
.ybc{bottom:705.493333pt;}
.y2c{bottom:706.115333pt;}
.y10a{bottom:711.520000pt;}
.y180{bottom:711.533333pt;}
.y20{bottom:716.093333pt;}
.y2b{bottom:719.453333pt;}
.ybb{bottom:719.493333pt;}
.y109{bottom:725.520000pt;}
.y17f{bottom:725.533333pt;}
.y1f{bottom:761.426667pt;}
.y2a{bottom:901.333333pt;}
.he{height:10.666667pt;}
.hb{height:12.000000pt;}
.hd{height:13.333333pt;}
.hf{height:14.666667pt;}
.h4{height:36.949333pt;}
.h7{height:40.848000pt;}
.h8{height:41.854167pt;}
.h3{height:43.117333pt;}
.h2{height:43.877333pt;}
.h14{height:45.386667pt;}
.h13{height:46.186667pt;}
.hc{height:47.109375pt;}
.h1c{height:49.370667pt;}
.h9{height:49.925333pt;}
.h15{height:49.930667pt;}
.h10{height:50.805333pt;}
.h16{height:53.374400pt;}
.h23{height:53.678400pt;}
.h11{height:53.827733pt;}
.h1d{height:53.881067pt;}
.ha{height:53.987733pt;}
.h1a{height:54.041067pt;}
.h20{height:54.067733pt;}
.h12{height:54.110400pt;}
.h1f{height:54.121067pt;}
.h1e{height:54.158400pt;}
.h21{height:54.174400pt;}
.h18{height:54.185067pt;}
.h19{height:54.201067pt;}
.h17{height:54.227733pt;}
.h22{height:54.281067pt;}
.h1b{height:54.307733pt;}
.h6{height:54.464000pt;}
.h5{height:72.618667pt;}
.h1{height:790.666667pt;}
.h0{height:793.333333pt;}
.w11{width:152.000000pt;}
.w10{width:154.666667pt;}
.we{width:165.333333pt;}
.w5{width:166.666667pt;}
.wb{width:182.666667pt;}
.w6{width:184.000000pt;}
.w9{width:185.333333pt;}
.w3{width:196.000000pt;}
.wd{width:202.666667pt;}
.wf{width:205.333333pt;}
.wa{width:206.666667pt;}
.wc{width:208.000000pt;}
.w4{width:212.000000pt;}
.w2{width:217.333333pt;}
.w8{width:224.000000pt;}
.w7{width:228.000000pt;}
.w1{width:565.333333pt;}
.w0{width:566.666667pt;}
.x4{left:-28.000000pt;}
.xf{left:-12.613200pt;}
.x0{left:0.000000pt;}
.x1{left:1.333333pt;}
.x13{left:15.388400pt;}
.x16{left:26.371733pt;}
.xd{left:32.720000pt;}
.x11{left:41.688133pt;}
.x14{left:45.333333pt;}
.x15{left:46.666667pt;}
.x10{left:53.333333pt;}
.x8{left:57.333333pt;}
.x9{left:59.027867pt;}
.xc{left:62.666667pt;}
.x2{left:69.066667pt;}
.x5{left:70.146667pt;}
.xa{left:76.000000pt;}
.x22{left:81.642667pt;}
.x17{left:82.666667pt;}
.x1e{left:83.924000pt;}
.xb{left:86.030800pt;}
.x12{left:88.000000pt;}
.x1d{left:89.081333pt;}
.x6{left:90.138667pt;}
.xe{left:110.666667pt;}
.x18{left:120.017467pt;}
.x20{left:144.661333pt;}
.x21{left:151.813333pt;}
.x23{left:182.200000pt;}
.x7{left:265.106667pt;}
.x19{left:298.666667pt;}
.x1a{left:300.000000pt;}
.x1b{left:301.333333pt;}
.x1c{left:302.666667pt;}
.x24{left:308.813333pt;}
.x3{left:384.240000pt;}
.x1f{left:443.240000pt;}
}




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