
    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_96519cadebfcec181ad9bdbf.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_aa2d525ef20389dd2f7f73d5.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_1e2313353861fe1fd66b4728.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_0ccb83a21260e1414a5ed2ce.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;}
.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:-1.020000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.910000px;}
.v1{vertical-align:27.732000px;}
.ls1b{letter-spacing:-7.011000px;}
.ls29{letter-spacing:-4.560000px;}
.ls2a{letter-spacing:-4.275000px;}
.ls28{letter-spacing:-3.933000px;}
.ls32{letter-spacing:-3.456000px;}
.ls15{letter-spacing:-3.420000px;}
.ls2d{letter-spacing:-3.402000px;}
.ls21{letter-spacing:-2.964000px;}
.ls1c{letter-spacing:-2.622000px;}
.ls1d{letter-spacing:-2.508000px;}
.ls16{letter-spacing:-2.394000px;}
.ls38{letter-spacing:-2.268000px;}
.ls31{letter-spacing:-2.064000px;}
.ls1a{letter-spacing:-2.052000px;}
.ls19{letter-spacing:-1.881000px;}
.ls20{letter-spacing:-1.824000px;}
.lsf{letter-spacing:-1.767000px;}
.ls1e{letter-spacing:-1.653000px;}
.ls49{letter-spacing:-1.650000px;}
.ls2e{letter-spacing:-1.620000px;}
.ls90{letter-spacing:-1.584000px;}
.ls7e{letter-spacing:-1.512000px;}
.ls17{letter-spacing:-1.425000px;}
.ls64{letter-spacing:-1.386000px;}
.lsb4{letter-spacing:-1.380000px;}
.ls3a{letter-spacing:-1.368000px;}
.ls8d{letter-spacing:-1.320000px;}
.ls24{letter-spacing:-1.311000px;}
.ls35{letter-spacing:-1.296000px;}
.ls4f{letter-spacing:-1.254000px;}
.ls33{letter-spacing:-1.248000px;}
.ls39{letter-spacing:-1.242000px;}
.lsac{letter-spacing:-1.215000px;}
.lsad{letter-spacing:-1.200000px;}
.ls4e{letter-spacing:-1.188000px;}
.lsc{letter-spacing:-1.140000px;}
.ls8c{letter-spacing:-1.134000px;}
.ls73{letter-spacing:-1.122000px;}
.ls1f{letter-spacing:-1.083000px;}
.ls5e{letter-spacing:-1.056000px;}
.ls26{letter-spacing:-1.026000px;}
.ls34{letter-spacing:-1.008000px;}
.ls5d{letter-spacing:-0.990000px;}
.ls37{letter-spacing:-0.972000px;}
.ls8a{letter-spacing:-0.970200px;}
.ls13{letter-spacing:-0.969000px;}
.ls6c{letter-spacing:-0.924000px;}
.ls6f{letter-spacing:-0.918000px;}
.ls23{letter-spacing:-0.912000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls48{letter-spacing:-0.858000px;}
.ls25{letter-spacing:-0.855000px;}
.ls67{letter-spacing:-0.810000px;}
.ls2b{letter-spacing:-0.798000px;}
.ls5f{letter-spacing:-0.792000px;}
.ls8f{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.741000px;}
.ls6d{letter-spacing:-0.726000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls96{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.684000px;}
.ls72{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.627000px;}
.ls66{letter-spacing:-0.607500px;}
.ls4b{letter-spacing:-0.594000px;}
.ls30{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.513000px;}
.ls7b{letter-spacing:-0.462000px;}
.ls92{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.399000px;}
.ls4a{letter-spacing:-0.396000px;}
.ls6e{letter-spacing:-0.378000px;}
.ls8b{letter-spacing:-0.369600px;}
.lsba{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.342000px;}
.ls63{letter-spacing:-0.330000px;}
.ls81{letter-spacing:-0.324000px;}
.lsb1{letter-spacing:-0.315000px;}
.lsb2{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.285000px;}
.ls7f{letter-spacing:-0.270000px;}
.ls61{letter-spacing:-0.264000px;}
.lsb7{letter-spacing:-0.240000px;}
.ls88{letter-spacing:-0.231000px;}
.lsb3{letter-spacing:-0.225000px;}
.ls80{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.198000px;}
.lsb6{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.171000px;}
.ls2c{letter-spacing:-0.162000px;}
.ls89{letter-spacing:-0.144000px;}
.ls6b{letter-spacing:-0.132000px;}
.lsb9{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.114000px;}
.ls68{letter-spacing:-0.108000px;}
.lsae{letter-spacing:-0.090000px;}
.ls5b{letter-spacing:-0.066000px;}
.lsb0{letter-spacing:-0.060000px;}
.ls10{letter-spacing:-0.057000px;}
.ls47{letter-spacing:-0.054000px;}
.ls50{letter-spacing:-0.048000px;}
.ls62{letter-spacing:-0.046200px;}
.lsaf{letter-spacing:-0.045000px;}
.lsb{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.040500px;}
.ls8e{letter-spacing:0.046200px;}
.ls86{letter-spacing:0.054000px;}
.lsa9{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.108000px;}
.ls4c{letter-spacing:0.132000px;}
.lsb8{letter-spacing:0.135000px;}
.ls5a{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.lsaa{letter-spacing:0.180000px;}
.ls65{letter-spacing:0.192000px;}
.ls41{letter-spacing:0.198000px;}
.ls57{letter-spacing:0.216000px;}
.ls87{letter-spacing:0.231000px;}
.ls9a{letter-spacing:0.240000px;}
.ls3d{letter-spacing:0.264000px;}
.ls59{letter-spacing:0.270000px;}
.ls9e{letter-spacing:0.300000px;}
.ls9c{letter-spacing:0.315000px;}
.ls82{letter-spacing:0.330000px;}
.ls9f{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.396000px;}
.ls97{letter-spacing:0.405000px;}
.lsa4{letter-spacing:0.420000px;}
.ls98{letter-spacing:0.432000px;}
.lsa5{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.456000px;}
.ls52{letter-spacing:0.462000px;}
.ls46{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.528000px;}
.ls58{letter-spacing:0.540000px;}
.ls74{letter-spacing:0.558000px;}
.ls71{letter-spacing:0.594000px;}
.ls75{letter-spacing:0.607500px;}
.ls0{letter-spacing:0.627000px;}
.ls7a{letter-spacing:0.646800px;}
.ls45{letter-spacing:0.660000px;}
.ls94{letter-spacing:0.688500px;}
.ls8{letter-spacing:0.702000px;}
.ls3c{letter-spacing:0.726000px;}
.ls95{letter-spacing:0.729000px;}
.ls99{letter-spacing:0.739200px;}
.ls43{letter-spacing:0.792000px;}
.ls7d{letter-spacing:0.810000px;}
.lsa6{letter-spacing:0.840000px;}
.ls3e{letter-spacing:0.858000px;}
.ls9b{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.924000px;}
.lsa2{letter-spacing:0.945000px;}
.lsa1{letter-spacing:0.960000px;}
.ls56{letter-spacing:0.990000px;}
.ls76{letter-spacing:1.026000px;}
.ls54{letter-spacing:1.056000px;}
.lsab{letter-spacing:1.080000px;}
.ls91{letter-spacing:1.122000px;}
.ls2{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.188000px;}
.ls44{letter-spacing:1.254000px;}
.lsb5{letter-spacing:1.260000px;}
.lsa8{letter-spacing:1.305000px;}
.lsa7{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.350000px;}
.ls79{letter-spacing:1.377000px;}
.ls78{letter-spacing:1.404000px;}
.lsa0{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.584000px;}
.ls3f{letter-spacing:1.650000px;}
.ls83{letter-spacing:1.716000px;}
.ls93{letter-spacing:2.046000px;}
.ls53{letter-spacing:2.178000px;}
.ls7{letter-spacing:2.214000px;}
.ls3{letter-spacing:13.566000px;}
.lsa3{letter-spacing:14.040000px;}
.ls5{letter-spacing:14.250000px;}
.ls70{letter-spacing:15.480000px;}
.ls69{letter-spacing:15.540000px;}
.ls9d{letter-spacing:16.800000px;}
.ls55{letter-spacing:18.180000px;}
.ls6a{letter-spacing:18.900000px;}
.ls6{letter-spacing:49.518000px;}
.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;}
}
.ws26{word-spacing:-22.752000px;}
.ws28{word-spacing:-21.000000px;}
.ws25{word-spacing:-20.544000px;}
.ws27{word-spacing:-19.992000px;}
.wscd{word-spacing:-18.546000px;}
.wsc1{word-spacing:-18.216000px;}
.ws8e{word-spacing:-18.150000px;}
.wsc6{word-spacing:-17.622000px;}
.ws63{word-spacing:-17.490000px;}
.ws94{word-spacing:-17.424000px;}
.wsd4{word-spacing:-17.358000px;}
.wsae{word-spacing:-17.292000px;}
.ws7e{word-spacing:-17.226000px;}
.ws5f{word-spacing:-17.160000px;}
.ws29{word-spacing:-17.136000px;}
.ws93{word-spacing:-17.094000px;}
.ws5e{word-spacing:-17.028000px;}
.wsc5{word-spacing:-16.962000px;}
.ws46{word-spacing:-16.896000px;}
.wsc2{word-spacing:-16.830000px;}
.ws44{word-spacing:-16.764000px;}
.ws2a{word-spacing:-16.704000px;}
.ws96{word-spacing:-16.698000px;}
.ws43{word-spacing:-16.632000px;}
.ws47{word-spacing:-16.566000px;}
.ws42{word-spacing:-16.500000px;}
.ws5d{word-spacing:-16.434000px;}
.wsb3{word-spacing:-16.368000px;}
.wsf9{word-spacing:-16.320000px;}
.wsb4{word-spacing:-16.302000px;}
.wsf4{word-spacing:-16.260000px;}
.ws8a{word-spacing:-16.236000px;}
.ws62{word-spacing:-16.170000px;}
.ws97{word-spacing:-16.104000px;}
.ws105{word-spacing:-16.080000px;}
.wsca{word-spacing:-16.038000px;}
.wsb0{word-spacing:-15.972000px;}
.ws8d{word-spacing:-15.906000px;}
.wse0{word-spacing:-15.900000px;}
.wscb{word-spacing:-15.840000px;}
.ws60{word-spacing:-15.708000px;}
.ws61{word-spacing:-15.642000px;}
.ws104{word-spacing:-15.540000px;}
.wsc8{word-spacing:-15.510000px;}
.wse7{word-spacing:-15.420000px;}
.ws8c{word-spacing:-15.378000px;}
.wsee{word-spacing:-15.360000px;}
.wsc9{word-spacing:-15.312000px;}
.ws45{word-spacing:-15.246000px;}
.wsdb{word-spacing:-15.240000px;}
.wsfb{word-spacing:-15.180000px;}
.wsd8{word-spacing:-15.000000px;}
.wsde{word-spacing:-14.940000px;}
.wsfe{word-spacing:-14.880000px;}
.wsa4{word-spacing:-14.850000px;}
.wsf5{word-spacing:-14.760000px;}
.wseb{word-spacing:-14.700000px;}
.ws1b{word-spacing:-14.535000px;}
.ws9e{word-spacing:-14.526000px;}
.ws9d{word-spacing:-14.310000px;}
.ws8{word-spacing:-14.250000px;}
.ws90{word-spacing:-14.094000px;}
.ws17{word-spacing:-13.965000px;}
.wsd7{word-spacing:-13.932000px;}
.ws1{word-spacing:-13.908000px;}
.ws0{word-spacing:-13.851000px;}
.ws69{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.737000px;}
.ws9f{word-spacing:-13.662000px;}
.ws4{word-spacing:-13.623000px;}
.ws1a{word-spacing:-13.566000px;}
.wsb{word-spacing:-13.509000px;}
.ws2f{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.452000px;}
.ws41{word-spacing:-13.446000px;}
.ws18{word-spacing:-13.395000px;}
.ws15{word-spacing:-13.338000px;}
.ws5{word-spacing:-13.281000px;}
.ws19{word-spacing:-13.224000px;}
.wsa0{word-spacing:-13.176000px;}
.ws12{word-spacing:-13.167000px;}
.ws80{word-spacing:-13.122000px;}
.ws9{word-spacing:-13.110000px;}
.ws23{word-spacing:-12.960000px;}
.ws16{word-spacing:-12.939000px;}
.ws2b{word-spacing:-12.852000px;}
.wscf{word-spacing:-12.798000px;}
.ws22{word-spacing:-12.636000px;}
.ws11{word-spacing:-12.597000px;}
.ws2c{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.483000px;}
.ws13{word-spacing:-12.426000px;}
.wsc{word-spacing:-12.369000px;}
.wsb8{word-spacing:-12.366000px;}
.wsb7{word-spacing:-12.312000px;}
.ws2e{word-spacing:-12.258000px;}
.wsd{word-spacing:-12.198000px;}
.ws95{word-spacing:-12.196800px;}
.ws64{word-spacing:-12.192000px;}
.wsdf{word-spacing:-12.150000px;}
.ws7{word-spacing:-12.141000px;}
.wsce{word-spacing:-12.012000px;}
.ws8f{word-spacing:-12.000000px;}
.ws49{word-spacing:-11.952000px;}
.ws21{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.856000px;}
.ws10{word-spacing:-11.742000px;}
.wsf8{word-spacing:-11.700000px;}
.wsf{word-spacing:-11.628000px;}
.wse8{word-spacing:-11.610000px;}
.wsbb{word-spacing:-11.596200px;}
.wse6{word-spacing:-11.565000px;}
.ws8b{word-spacing:-11.550000px;}
.wse5{word-spacing:-11.520000px;}
.wscc{word-spacing:-11.472000px;}
.wsfa{word-spacing:-11.385000px;}
.wsaf{word-spacing:-11.319000px;}
.ws14{word-spacing:-11.286000px;}
.wsd9{word-spacing:-11.250000px;}
.ws2d{word-spacing:-11.232000px;}
.wsdd{word-spacing:-11.205000px;}
.wsdc{word-spacing:-11.160000px;}
.wsf7{word-spacing:-11.070000px;}
.wse2{word-spacing:-11.025000px;}
.wsea{word-spacing:-10.935000px;}
.ws6{word-spacing:-10.830000px;}
.wsb5{word-spacing:-10.579800px;}
.wsd6{word-spacing:-10.530000px;}
.ws1c{word-spacing:-10.317000px;}
.ws66{word-spacing:-10.125000px;}
.ws20{word-spacing:-10.098000px;}
.wsda{word-spacing:-10.035000px;}
.ws1e{word-spacing:-9.975000px;}
.ws24{word-spacing:-9.936000px;}
.ws1d{word-spacing:-9.690000px;}
.ws67{word-spacing:-9.517500px;}
.wsbc{word-spacing:-9.315000px;}
.wse{word-spacing:-7.239000px;}
.ws40{word-spacing:-7.104000px;}
.ws70{word-spacing:-0.858000px;}
.ws77{word-spacing:-0.792000px;}
.ws3b{word-spacing:-0.741000px;}
.ws81{word-spacing:-0.726000px;}
.ws108{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.684000px;}
.ws6d{word-spacing:-0.660000px;}
.wsc7{word-spacing:-0.648000px;}
.ws34{word-spacing:-0.627000px;}
.ws114{word-spacing:-0.600000px;}
.ws6a{word-spacing:-0.594000px;}
.ws37{word-spacing:-0.570000px;}
.ws3d{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.528000px;}
.ws92{word-spacing:-0.486000px;}
.ws10c{word-spacing:-0.480000px;}
.ws4d{word-spacing:-0.462000px;}
.ws39{word-spacing:-0.456000px;}
.wsc0{word-spacing:-0.432000px;}
.ws110{word-spacing:-0.420000px;}
.ws84{word-spacing:-0.415800px;}
.ws5b{word-spacing:-0.396000px;}
.ws87{word-spacing:-0.378000px;}
.ws52{word-spacing:-0.330000px;}
.wsac{word-spacing:-0.324000px;}
.ws38{word-spacing:-0.285000px;}
.ws89{word-spacing:-0.270000px;}
.ws56{word-spacing:-0.264000px;}
.ws35{word-spacing:-0.228000px;}
.wsab{word-spacing:-0.216000px;}
.ws4f{word-spacing:-0.198000px;}
.ws33{word-spacing:-0.171000px;}
.ws6c{word-spacing:-0.132000px;}
.ws7b{word-spacing:-0.108000px;}
.ws72{word-spacing:-0.066000px;}
.ws78{word-spacing:-0.054000px;}
.ws30{word-spacing:0.000000px;}
.wsbe{word-spacing:0.054000px;}
.ws58{word-spacing:0.066000px;}
.wsbf{word-spacing:0.108000px;}
.ws6f{word-spacing:0.132000px;}
.ws79{word-spacing:0.162000px;}
.ws112{word-spacing:0.180000px;}
.ws82{word-spacing:0.198000px;}
.ws57{word-spacing:0.264000px;}
.ws74{word-spacing:0.323400px;}
.wsa7{word-spacing:0.324000px;}
.wsbd{word-spacing:0.330000px;}
.ws85{word-spacing:0.369600px;}
.wsa8{word-spacing:0.378000px;}
.ws54{word-spacing:0.396000px;}
.ws31{word-spacing:0.399000px;}
.ws116{word-spacing:0.420000px;}
.ws73{word-spacing:0.462000px;}
.ws106{word-spacing:0.480000px;}
.wsba{word-spacing:0.486000px;}
.wsa6{word-spacing:0.526500px;}
.ws4e{word-spacing:0.528000px;}
.wsef{word-spacing:0.540000px;}
.ws3e{word-spacing:0.594000px;}
.ws10b{word-spacing:0.600000px;}
.ws75{word-spacing:0.660000px;}
.wsa5{word-spacing:0.702000px;}
.ws76{word-spacing:0.726000px;}
.ws7c{word-spacing:0.756000px;}
.ws4b{word-spacing:0.792000px;}
.ws10a{word-spacing:0.840000px;}
.ws71{word-spacing:0.858000px;}
.wsa9{word-spacing:0.864000px;}
.wsaa{word-spacing:0.918000px;}
.ws4c{word-spacing:0.924000px;}
.ws115{word-spacing:0.960000px;}
.ws3c{word-spacing:0.969000px;}
.wsb2{word-spacing:0.990000px;}
.ws111{word-spacing:1.020000px;}
.ws3a{word-spacing:1.026000px;}
.ws53{word-spacing:1.056000px;}
.ws5c{word-spacing:1.062600px;}
.ws7a{word-spacing:1.080000px;}
.ws83{word-spacing:1.122000px;}
.ws7d{word-spacing:1.134000px;}
.ws10e{word-spacing:1.140000px;}
.ws5a{word-spacing:1.188000px;}
.ws36{word-spacing:1.197000px;}
.ws10d{word-spacing:1.200000px;}
.ws86{word-spacing:1.242000px;}
.ws6e{word-spacing:1.254000px;}
.ws107{word-spacing:1.260000px;}
.ws88{word-spacing:1.296000px;}
.ws6b{word-spacing:1.320000px;}
.ws113{word-spacing:1.380000px;}
.ws51{word-spacing:1.386000px;}
.ws59{word-spacing:1.452000px;}
.ws68{word-spacing:1.458000px;}
.ws109{word-spacing:1.500000px;}
.wsa1{word-spacing:1.512000px;}
.ws50{word-spacing:1.518000px;}
.ws55{word-spacing:1.584000px;}
.wsd2{word-spacing:1.650000px;}
.wsad{word-spacing:1.944000px;}
.wsc3{word-spacing:1.980000px;}
.wsc4{word-spacing:2.046000px;}
.wse9{word-spacing:2.460000px;}
.ws10f{word-spacing:2.520000px;}
.wsfc{word-spacing:2.835000px;}
.ws100{word-spacing:2.955000px;}
.ws101{word-spacing:3.000000px;}
.wsff{word-spacing:3.045000px;}
.wsf6{word-spacing:3.105000px;}
.wsfd{word-spacing:3.120000px;}
.wsec{word-spacing:3.180000px;}
.wsb1{word-spacing:3.366000px;}
.wse3{word-spacing:3.390000px;}
.wse1{word-spacing:3.420000px;}
.ws99{word-spacing:4.027500px;}
.wsd1{word-spacing:4.050000px;}
.ws9c{word-spacing:4.081500px;}
.ws9a{word-spacing:4.090500px;}
.ws9b{word-spacing:4.105500px;}
.wsd0{word-spacing:4.285500px;}
.ws102{word-spacing:4.305000px;}
.ws103{word-spacing:4.320000px;}
.wsf1{word-spacing:4.335000px;}
.wsf3{word-spacing:4.395000px;}
.wsf0{word-spacing:4.410000px;}
.wsf2{word-spacing:4.440000px;}
.wsb6{word-spacing:4.498800px;}
.wse4{word-spacing:4.635000px;}
.wsed{word-spacing:4.725000px;}
.wsa3{word-spacing:4.977000px;}
.wsa2{word-spacing:5.149500px;}
.wsb9{word-spacing:5.280000px;}
.wsd5{word-spacing:6.152400px;}
.wsd3{word-spacing:8.910000px;}
.ws98{word-spacing:9.018000px;}
.ws91{word-spacing:10.098000px;}
.ws48{word-spacing:35.904000px;}
.ws65{word-spacing:36.018000px;}
.ws3f{word-spacing:36.048000px;}
.ws7f{word-spacing:37.638000px;}
._d{margin-left:-13.162220px;}
._e{margin-left:-12.012000px;}
._3{margin-left:-9.098440px;}
._b{margin-left:-7.260000px;}
._1{margin-left:-5.940000px;}
._8{margin-left:-4.884000px;}
._7{margin-left:-3.498000px;}
._4{margin-left:-2.470220px;}
._0{margin-left:-1.423780px;}
._2{width:1.489780px;}
._c{width:2.611780px;}
._f{width:12.474000px;}
._10{width:17.556000px;}
._a{width:48.406220px;}
._6{width:49.518000px;}
._9{width:820.822220px;}
._5{width:1117.702220px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.500000px;}
.fsb{font-size:45.000000px;}
.fs8{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:58.800000px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:2.896500px;}
.y27{bottom:3.646500px;}
.y23{bottom:4.396500px;}
.y17{bottom:50.154000px;}
.y13f{bottom:50.373000px;}
.y1cc{bottom:50.394000px;}
.ye6{bottom:50.454000px;}
.ybc{bottom:50.472000px;}
.y19e{bottom:50.649000px;}
.y156{bottom:50.665500px;}
.y191{bottom:50.682000px;}
.y17d{bottom:50.757000px;}
.y1c2{bottom:50.763000px;}
.y109{bottom:50.772000px;}
.y7a{bottom:50.877000px;}
.y126{bottom:50.988000px;}
.y4e{bottom:51.000000px;}
.y94{bottom:51.009000px;}
.y16{bottom:64.410000px;}
.y13e{bottom:64.629000px;}
.ye5{bottom:64.638000px;}
.y1cb{bottom:64.650000px;}
.ybb{bottom:64.728000px;}
.y17c{bottom:65.013000px;}
.y1c1{bottom:65.019000px;}
.y108{bottom:65.028000px;}
.y79{bottom:65.133000px;}
.y125{bottom:65.244000px;}
.y93{bottom:65.265000px;}
.y19d{bottom:67.891500px;}
.y155{bottom:67.908000px;}
.y190{bottom:67.924500px;}
.y13d{bottom:78.885000px;}
.ye4{bottom:78.894000px;}
.yba{bottom:78.984000px;}
.y17b{bottom:79.269000px;}
.y107{bottom:79.284000px;}
.y78{bottom:79.389000px;}
.y124{bottom:79.482000px;}
.y92{bottom:79.521000px;}
.y19c{bottom:85.134000px;}
.y154{bottom:85.150500px;}
.y18f{bottom:85.167000px;}
.ye3{bottom:93.150000px;}
.yb9{bottom:93.240000px;}
.y17a{bottom:93.525000px;}
.y106{bottom:93.540000px;}
.y77{bottom:93.645000px;}
.y123{bottom:93.738000px;}
.y91{bottom:93.777000px;}
.y4d{bottom:100.972500px;}
.y19b{bottom:102.376500px;}
.y153{bottom:102.393000px;}
.y18e{bottom:102.409500px;}
.ye2{bottom:107.406000px;}
.yb8{bottom:107.496000px;}
.y76{bottom:107.901000px;}
.y122{bottom:107.994000px;}
.y90{bottom:108.033000px;}
.y26{bottom:112.500000px;}
.y4c{bottom:118.215000px;}
.y1ca{bottom:119.430000px;}
.y13c{bottom:119.550000px;}
.y19a{bottom:119.619000px;}
.y152{bottom:119.635500px;}
.y18d{bottom:119.652000px;}
.ye1{bottom:121.662000px;}
.yb7{bottom:121.752000px;}
.y75{bottom:122.157000px;}
.y121{bottom:122.250000px;}
.y8f{bottom:122.289000px;}
.y28{bottom:129.000000px;}
.y24{bottom:133.500000px;}
.y4b{bottom:135.457500px;}
.ye0{bottom:135.918000px;}
.yb6{bottom:136.008000px;}
.y74{bottom:136.413000px;}
.y8e{bottom:136.545000px;}
.y1c0{bottom:136.657500px;}
.y1c9{bottom:136.672500px;}
.y105{bottom:136.732500px;}
.y13b{bottom:136.792500px;}
.y179{bottom:136.798500px;}
.y199{bottom:136.861500px;}
.y151{bottom:136.878000px;}
.y18c{bottom:136.894500px;}
.y1f6{bottom:139.260000px;}
.ydf{bottom:150.174000px;}
.yb5{bottom:150.264000px;}
.y73{bottom:150.669000px;}
.y22{bottom:151.500000px;}
.y4a{bottom:152.700000px;}
.y1bf{bottom:153.900000px;}
.y1c8{bottom:153.915000px;}
.y104{bottom:153.975000px;}
.y13a{bottom:154.035000px;}
.y178{bottom:154.041000px;}
.y198{bottom:154.104000px;}
.y150{bottom:154.120500px;}
.y18b{bottom:154.137000px;}
.y1f5{bottom:155.010000px;}
.yde{bottom:164.430000px;}
.yb4{bottom:164.520000px;}
.y72{bottom:164.925000px;}
.y49{bottom:169.942500px;}
.y1f4{bottom:170.760000px;}
.y1be{bottom:171.142500px;}
.y1c7{bottom:171.157500px;}
.y120{bottom:171.210000px;}
.y103{bottom:171.217500px;}
.y139{bottom:171.277500px;}
.y177{bottom:171.283500px;}
.y197{bottom:171.346500px;}
.y18a{bottom:171.379500px;}
.ydd{bottom:178.686000px;}
.y20{bottom:183.765000px;}
.y1f3{bottom:186.510000px;}
.y1c6{bottom:188.400000px;}
.y8d{bottom:188.415000px;}
.y11f{bottom:188.452500px;}
.y102{bottom:188.460000px;}
.y138{bottom:188.520000px;}
.y176{bottom:188.526000px;}
.y196{bottom:188.589000px;}
.y14f{bottom:188.622000px;}
.y1bd{bottom:188.640000px;}
.ydc{bottom:192.942000px;}
.y48{bottom:195.814500px;}
.y189{bottom:197.251500px;}
.y1f2{bottom:202.260000px;}
.y1c5{bottom:205.642500px;}
.y8c{bottom:205.657500px;}
.y71{bottom:205.695000px;}
.y101{bottom:205.702500px;}
.y137{bottom:205.762500px;}
.y175{bottom:205.768500px;}
.y195{bottom:205.831500px;}
.yb3{bottom:205.849500px;}
.y14e{bottom:205.864500px;}
.y1bc{bottom:205.882500px;}
.ydb{bottom:207.198000px;}
.y1f1{bottom:218.010000px;}
.yda{bottom:221.454000px;}
.y8b{bottom:222.900000px;}
.y70{bottom:222.937500px;}
.y100{bottom:222.945000px;}
.y136{bottom:223.005000px;}
.y174{bottom:223.011000px;}
.yb2{bottom:223.092000px;}
.y14d{bottom:223.107000px;}
.y1bb{bottom:223.125000px;}
.y15{bottom:224.100000px;}
.y194{bottom:231.703500px;}
.y1f0{bottom:233.760000px;}
.yd9{bottom:235.710000px;}
.y47{bottom:238.945500px;}
.y8a{bottom:240.142500px;}
.y6f{bottom:240.180000px;}
.yff{bottom:240.187500px;}
.y135{bottom:240.247500px;}
.y173{bottom:240.253500px;}
.yb1{bottom:240.334500px;}
.y14c{bottom:240.349500px;}
.y1ba{bottom:240.367500px;}
.y188{bottom:240.382500px;}
.y14{bottom:245.072250px;}
.y1ef{bottom:249.510000px;}
.yd8{bottom:249.960000px;}
.y46{bottom:256.188000px;}
.y6e{bottom:257.422500px;}
.yfe{bottom:257.430000px;}
.y134{bottom:257.490000px;}
.y172{bottom:257.496000px;}
.yb0{bottom:257.577000px;}
.y89{bottom:257.592000px;}
.y1b9{bottom:257.610000px;}
.y187{bottom:257.625000px;}
.y13{bottom:260.077500px;}
.y1ee{bottom:265.260000px;}
.y45{bottom:273.430500px;}
.y6d{bottom:274.665000px;}
.yfd{bottom:274.672500px;}
.y133{bottom:274.732500px;}
.y171{bottom:274.738500px;}
.yaf{bottom:274.819500px;}
.y88{bottom:274.834500px;}
.y1b8{bottom:274.852500px;}
.y186{bottom:274.867500px;}
.y12{bottom:275.082750px;}
.y1ed{bottom:281.010000px;}
.y11{bottom:290.088000px;}
.y44{bottom:290.673000px;}
.y6c{bottom:291.907500px;}
.yd7{bottom:291.915000px;}
.y132{bottom:291.975000px;}
.y170{bottom:291.981000px;}
.yae{bottom:292.062000px;}
.y87{bottom:292.077000px;}
.y1b7{bottom:292.095000px;}
.y185{bottom:292.110000px;}
.y1ec{bottom:296.760000px;}
.y10{bottom:305.093250px;}
.y43{bottom:307.915500px;}
.y6b{bottom:309.150000px;}
.yd6{bottom:309.157500px;}
.y131{bottom:309.217500px;}
.y16f{bottom:309.223500px;}
.yad{bottom:309.304500px;}
.y86{bottom:309.319500px;}
.y14b{bottom:309.336000px;}
.y1b6{bottom:309.337500px;}
.y184{bottom:309.352500px;}
.y1eb{bottom:312.510000px;}
.yf{bottom:320.098500px;}
.y42{bottom:325.158000px;}
.y6a{bottom:326.392500px;}
.yd5{bottom:326.400000px;}
.y130{bottom:326.460000px;}
.y16e{bottom:326.466000px;}
.yac{bottom:326.547000px;}
.y85{bottom:326.562000px;}
.y14a{bottom:326.578500px;}
.y1b5{bottom:326.580000px;}
.y183{bottom:326.595000px;}
.y1ea{bottom:328.260000px;}
.ye{bottom:335.103750px;}
.y41{bottom:342.400500px;}
.yd4{bottom:343.642500px;}
.y69{bottom:343.672500px;}
.y11e{bottom:343.677000px;}
.y12f{bottom:343.702500px;}
.y16d{bottom:343.708500px;}
.yab{bottom:343.789500px;}
.y84{bottom:343.804500px;}
.y149{bottom:343.821000px;}
.y1b4{bottom:343.822500px;}
.y182{bottom:343.837500px;}
.y1e9{bottom:344.010000px;}
.y40{bottom:359.643000px;}
.y1e8{bottom:359.760000px;}
.yd3{bottom:360.885000px;}
.y68{bottom:360.915000px;}
.y11d{bottom:360.919500px;}
.y12e{bottom:360.945000px;}
.y16c{bottom:360.951000px;}
.yaa{bottom:361.032000px;}
.yfc{bottom:361.042500px;}
.y83{bottom:361.047000px;}
.y148{bottom:361.063500px;}
.y1b3{bottom:361.065000px;}
.y181{bottom:361.080000px;}
.yd{bottom:365.100000px;}
.y1e7{bottom:375.510000px;}
.y3f{bottom:376.885500px;}
.y67{bottom:378.157500px;}
.y11c{bottom:378.162000px;}
.y12d{bottom:378.187500px;}
.y16b{bottom:378.193500px;}
.ya9{bottom:378.274500px;}
.yfb{bottom:378.285000px;}
.y82{bottom:378.289500px;}
.y147{bottom:378.306000px;}
.y1b2{bottom:378.307500px;}
.y180{bottom:378.322500px;}
.yd2{bottom:386.836500px;}
.y1e6{bottom:391.260000px;}
.y3e{bottom:394.128000px;}
.y66{bottom:395.400000px;}
.y11b{bottom:395.404500px;}
.y12c{bottom:395.430000px;}
.y16a{bottom:395.436000px;}
.ya8{bottom:395.517000px;}
.yfa{bottom:395.527500px;}
.y81{bottom:395.532000px;}
.y146{bottom:395.548500px;}
.y1b1{bottom:395.550000px;}
.y17f{bottom:395.565000px;}
.yc{bottom:401.052000px;}
.y1e5{bottom:407.010000px;}
.y3d{bottom:411.370500px;}
.y65{bottom:412.642500px;}
.y12b{bottom:412.672500px;}
.y169{bottom:412.678500px;}
.ya7{bottom:412.759500px;}
.yf9{bottom:412.770000px;}
.y80{bottom:412.774500px;}
.y145{bottom:412.791000px;}
.y1b0{bottom:412.792500px;}
.y17e{bottom:412.807500px;}
.yb{bottom:416.057250px;}
.y11a{bottom:421.276500px;}
.y1e4{bottom:422.760000px;}
.y3c{bottom:428.613000px;}
.y12a{bottom:429.915000px;}
.y168{bottom:429.921000px;}
.yd1{bottom:429.967500px;}
.ya6{bottom:430.002000px;}
.yf8{bottom:430.012500px;}
.y7f{bottom:430.017000px;}
.y144{bottom:430.033500px;}
.y1af{bottom:430.035000px;}
.y64{bottom:430.050000px;}
.ya{bottom:437.061750px;}
.y1e3{bottom:438.510000px;}
.y3b{bottom:445.855500px;}
.y129{bottom:447.157500px;}
.y167{bottom:447.163500px;}
.yd0{bottom:447.210000px;}
.ya5{bottom:447.244500px;}
.yf7{bottom:447.255000px;}
.y7e{bottom:447.259500px;}
.y143{bottom:447.276000px;}
.y1ae{bottom:447.277500px;}
.y63{bottom:447.292500px;}
.y9{bottom:452.067000px;}
.y1e2{bottom:454.260000px;}
.y3a{bottom:463.098000px;}
.y128{bottom:464.400000px;}
.y166{bottom:464.406000px;}
.y119{bottom:464.407500px;}
.ycf{bottom:464.452500px;}
.ya4{bottom:464.487000px;}
.yf6{bottom:464.497500px;}
.y7d{bottom:464.502000px;}
.y142{bottom:464.518500px;}
.y1ad{bottom:464.520000px;}
.y62{bottom:464.535000px;}
.y8{bottom:467.072250px;}
.y1e1{bottom:470.010000px;}
.y39{bottom:480.340500px;}
.y127{bottom:481.642500px;}
.y165{bottom:481.648500px;}
.y118{bottom:481.650000px;}
.yce{bottom:481.695000px;}
.ya3{bottom:481.729500px;}
.yf5{bottom:481.740000px;}
.y7c{bottom:481.744500px;}
.y141{bottom:481.761000px;}
.y1ac{bottom:481.762500px;}
.y61{bottom:481.777500px;}
.y7{bottom:482.077500px;}
.y1e0{bottom:485.760000px;}
.y6{bottom:497.082750px;}
.y38{bottom:497.583000px;}
.y164{bottom:498.891000px;}
.y117{bottom:498.892500px;}
.ycd{bottom:498.937500px;}
.ya2{bottom:498.972000px;}
.yf4{bottom:498.982500px;}
.y193{bottom:498.987000px;}
.y140{bottom:499.003500px;}
.y1ab{bottom:499.005000px;}
.y60{bottom:499.020000px;}
.y1df{bottom:501.510000px;}
.y7b{bottom:507.616500px;}
.y5{bottom:512.088000px;}
.y37{bottom:514.825500px;}
.y163{bottom:516.133500px;}
.ycc{bottom:516.180000px;}
.ya1{bottom:516.214500px;}
.yf3{bottom:516.225000px;}
.y116{bottom:516.229500px;}
.y1aa{bottom:516.247500px;}
.y5f{bottom:516.262500px;}
.y1de{bottom:517.260000px;}
.y4{bottom:527.093250px;}
.y36{bottom:532.068000px;}
.y1dd{bottom:533.010000px;}
.ycb{bottom:533.422500px;}
.ya0{bottom:533.457000px;}
.yf2{bottom:533.467500px;}
.y115{bottom:533.472000px;}
.y1a9{bottom:533.490000px;}
.y5e{bottom:533.505000px;}
.y3{bottom:542.098500px;}
.y1dc{bottom:548.760000px;}
.y35{bottom:549.310500px;}
.yca{bottom:550.665000px;}
.y9f{bottom:550.699500px;}
.yf1{bottom:550.710000px;}
.y114{bottom:550.714500px;}
.y162{bottom:550.731000px;}
.y1a8{bottom:550.732500px;}
.y5d{bottom:550.747500px;}
.y2{bottom:557.103750px;}
.y1db{bottom:564.510000px;}
.y34{bottom:566.553000px;}
.yc9{bottom:567.907500px;}
.y9e{bottom:567.942000px;}
.yf0{bottom:567.952500px;}
.y113{bottom:567.957000px;}
.y161{bottom:567.973500px;}
.y1a7{bottom:567.975000px;}
.y5c{bottom:567.990000px;}
.y1da{bottom:580.260000px;}
.y33{bottom:583.795500px;}
.yc8{bottom:585.150000px;}
.y9d{bottom:585.184500px;}
.yef{bottom:585.195000px;}
.y112{bottom:585.199500px;}
.y160{bottom:585.216000px;}
.y1a6{bottom:585.217500px;}
.y5b{bottom:585.232500px;}
.y1{bottom:587.100000px;}
.y1d9{bottom:596.010000px;}
.y32{bottom:601.038000px;}
.yc7{bottom:602.392500px;}
.y9c{bottom:602.427000px;}
.yee{bottom:602.437500px;}
.y111{bottom:602.442000px;}
.y15f{bottom:602.458500px;}
.y1a5{bottom:602.460000px;}
.y5a{bottom:602.475000px;}
.y1d8{bottom:611.760000px;}
.y31{bottom:618.280500px;}
.y9b{bottom:619.669500px;}
.yed{bottom:619.680000px;}
.y110{bottom:619.684500px;}
.y15e{bottom:619.701000px;}
.y1a4{bottom:619.702500px;}
.yc6{bottom:619.710000px;}
.y59{bottom:619.717500px;}
.y1d7{bottom:627.510000px;}
.y30{bottom:635.523000px;}
.y9a{bottom:636.912000px;}
.yec{bottom:636.922500px;}
.y10f{bottom:636.927000px;}
.y15d{bottom:636.943500px;}
.y1a3{bottom:636.945000px;}
.yc5{bottom:636.952500px;}
.y58{bottom:636.960000px;}
.y1d6{bottom:643.260000px;}
.y192{bottom:645.556500px;}
.y2f{bottom:652.765500px;}
.y99{bottom:654.154500px;}
.yeb{bottom:654.165000px;}
.y10e{bottom:654.169500px;}
.y15c{bottom:654.186000px;}
.y1a2{bottom:654.187500px;}
.yc4{bottom:654.195000px;}
.y57{bottom:654.202500px;}
.y1d5{bottom:659.010000px;}
.y1f{bottom:666.093000px;}
.y2e{bottom:670.008000px;}
.yea{bottom:671.407500px;}
.y10d{bottom:671.412000px;}
.y15b{bottom:671.428500px;}
.y1a1{bottom:671.430000px;}
.yc3{bottom:671.437500px;}
.y56{bottom:671.445000px;}
.y1d4{bottom:674.760000px;}
.y98{bottom:680.026500px;}
.y1e{bottom:680.349000px;}
.ye9{bottom:688.650000px;}
.y10c{bottom:688.654500px;}
.y15a{bottom:688.671000px;}
.y1a0{bottom:688.672500px;}
.yc2{bottom:688.680000px;}
.y55{bottom:688.687500px;}
.y1d3{bottom:690.510000px;}
.y1d{bottom:694.605000px;}
.y2d{bottom:695.880000px;}
.ye8{bottom:705.892500px;}
.y10b{bottom:705.897000px;}
.y159{bottom:705.913500px;}
.y19f{bottom:705.915000px;}
.yc1{bottom:705.922500px;}
.y54{bottom:705.930000px;}
.y1d2{bottom:706.260000px;}
.y1c{bottom:712.605000px;}
.y1d1{bottom:722.010000px;}
.ye7{bottom:723.135000px;}
.y1c4{bottom:723.139500px;}
.y158{bottom:723.156000px;}
.y97{bottom:723.157500px;}
.yc0{bottom:723.165000px;}
.y53{bottom:723.172500px;}
.y10a{bottom:731.769000px;}
.y1d0{bottom:737.760000px;}
.y157{bottom:740.398500px;}
.y96{bottom:740.400000px;}
.ybf{bottom:740.407500px;}
.y52{bottom:740.415000px;}
.y1c3{bottom:749.011500px;}
.y1cf{bottom:753.510000px;}
.y1b{bottom:757.602000px;}
.y95{bottom:757.642500px;}
.ybe{bottom:757.650000px;}
.y51{bottom:757.657500px;}
.y2c{bottom:758.112000px;}
.y1ce{bottom:769.260000px;}
.ybd{bottom:774.892500px;}
.y50{bottom:774.900000px;}
.y2b{bottom:780.873000px;}
.y1a{bottom:781.605000px;}
.y1cd{bottom:785.010000px;}
.y4f{bottom:792.142500px;}
.y2a{bottom:795.129000px;}
.y19{bottom:805.605000px;}
.y29{bottom:809.385000px;}
.y18{bottom:856.605000px;}
.y21{bottom:1014.000000px;}
.hc{height:15.000000px;}
.hd{height:16.500000px;}
.ha{height:18.000000px;}
.h4{height:41.568000px;}
.h3{height:45.954000px;}
.h23{height:45.978000px;}
.h24{height:46.002000px;}
.h1f{height:46.026000px;}
.h1b{height:46.242000px;}
.h9{height:47.085938px;}
.h2{height:48.507000px;}
.h1{height:49.362000px;}
.h26{height:51.060000px;}
.hb{height:52.998047px;}
.h10{height:56.166000px;}
.hf{height:57.156000px;}
.h22{height:60.076200px;}
.h25{height:60.208200px;}
.h11{height:60.226200px;}
.h14{height:60.268200px;}
.h12{height:60.436200px;}
.h1c{height:60.466200px;}
.h20{height:60.556200px;}
.h21{height:60.712200px;}
.h1d{height:60.718200px;}
.h1a{height:60.790200px;}
.h19{height:60.796200px;}
.h1e{height:60.928200px;}
.h13{height:60.946200px;}
.h15{height:60.976200px;}
.h17{height:61.036200px;}
.h18{height:61.066200px;}
.h16{height:61.096200px;}
.h8{height:61.272000px;}
.h6{height:71.484000px;}
.h7{height:77.770800px;}
.h5{height:81.696000px;}
.he{height:889.500000px;}
.h0{height:892.500000px;}
.w5{width:165.000000px;}
.w4{width:196.500000px;}
.w3{width:201.000000px;}
.w2{width:243.000000px;}
.w1{width:247.500000px;}
.w6{width:636.000000px;}
.w0{width:637.500000px;}
.x5{left:-31.500000px;}
.x0{left:0.000000px;}
.xe{left:1.500000px;}
.x9{left:18.387150px;}
.xb{left:42.023850px;}
.x6{left:58.500000px;}
.x8{left:63.000000px;}
.x11{left:77.415000px;}
.x1{left:79.200000px;}
.x14{left:84.165000px;}
.x12{left:99.921000px;}
.x2{left:101.705850px;}
.xa{left:103.500000px;}
.x13{left:113.637000px;}
.x7{left:163.515150px;}
.xf{left:258.405000px;}
.x4{left:298.530000px;}
.xc{left:334.500000px;}
.xd{left:336.000000px;}
.x3{left:433.770000px;}
.x10{left:486.865500px;}
@media print{
.v3{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.586667pt;}
.v1{vertical-align:24.650667pt;}
.ls1b{letter-spacing:-6.232000pt;}
.ls29{letter-spacing:-4.053333pt;}
.ls2a{letter-spacing:-3.800000pt;}
.ls28{letter-spacing:-3.496000pt;}
.ls32{letter-spacing:-3.072000pt;}
.ls15{letter-spacing:-3.040000pt;}
.ls2d{letter-spacing:-3.024000pt;}
.ls21{letter-spacing:-2.634667pt;}
.ls1c{letter-spacing:-2.330667pt;}
.ls1d{letter-spacing:-2.229333pt;}
.ls16{letter-spacing:-2.128000pt;}
.ls38{letter-spacing:-2.016000pt;}
.ls31{letter-spacing:-1.834667pt;}
.ls1a{letter-spacing:-1.824000pt;}
.ls19{letter-spacing:-1.672000pt;}
.ls20{letter-spacing:-1.621333pt;}
.lsf{letter-spacing:-1.570667pt;}
.ls1e{letter-spacing:-1.469333pt;}
.ls49{letter-spacing:-1.466667pt;}
.ls2e{letter-spacing:-1.440000pt;}
.ls90{letter-spacing:-1.408000pt;}
.ls7e{letter-spacing:-1.344000pt;}
.ls17{letter-spacing:-1.266667pt;}
.ls64{letter-spacing:-1.232000pt;}
.lsb4{letter-spacing:-1.226667pt;}
.ls3a{letter-spacing:-1.216000pt;}
.ls8d{letter-spacing:-1.173333pt;}
.ls24{letter-spacing:-1.165333pt;}
.ls35{letter-spacing:-1.152000pt;}
.ls4f{letter-spacing:-1.114667pt;}
.ls33{letter-spacing:-1.109333pt;}
.ls39{letter-spacing:-1.104000pt;}
.lsac{letter-spacing:-1.080000pt;}
.lsad{letter-spacing:-1.066667pt;}
.ls4e{letter-spacing:-1.056000pt;}
.lsc{letter-spacing:-1.013333pt;}
.ls8c{letter-spacing:-1.008000pt;}
.ls73{letter-spacing:-0.997333pt;}
.ls1f{letter-spacing:-0.962667pt;}
.ls5e{letter-spacing:-0.938667pt;}
.ls26{letter-spacing:-0.912000pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls5d{letter-spacing:-0.880000pt;}
.ls37{letter-spacing:-0.864000pt;}
.ls8a{letter-spacing:-0.862400pt;}
.ls13{letter-spacing:-0.861333pt;}
.ls6c{letter-spacing:-0.821333pt;}
.ls6f{letter-spacing:-0.816000pt;}
.ls23{letter-spacing:-0.810667pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls48{letter-spacing:-0.762667pt;}
.ls25{letter-spacing:-0.760000pt;}
.ls67{letter-spacing:-0.720000pt;}
.ls2b{letter-spacing:-0.709333pt;}
.ls5f{letter-spacing:-0.704000pt;}
.ls8f{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.658667pt;}
.ls6d{letter-spacing:-0.645333pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls96{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls72{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.557333pt;}
.ls66{letter-spacing:-0.540000pt;}
.ls4b{letter-spacing:-0.528000pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.456000pt;}
.ls7b{letter-spacing:-0.410667pt;}
.ls92{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.354667pt;}
.ls4a{letter-spacing:-0.352000pt;}
.ls6e{letter-spacing:-0.336000pt;}
.ls8b{letter-spacing:-0.328533pt;}
.lsba{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls63{letter-spacing:-0.293333pt;}
.ls81{letter-spacing:-0.288000pt;}
.lsb1{letter-spacing:-0.280000pt;}
.lsb2{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.253333pt;}
.ls7f{letter-spacing:-0.240000pt;}
.ls61{letter-spacing:-0.234667pt;}
.lsb7{letter-spacing:-0.213333pt;}
.ls88{letter-spacing:-0.205333pt;}
.lsb3{letter-spacing:-0.200000pt;}
.ls80{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.176000pt;}
.lsb6{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.152000pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls89{letter-spacing:-0.128000pt;}
.ls6b{letter-spacing:-0.117333pt;}
.lsb9{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.101333pt;}
.ls68{letter-spacing:-0.096000pt;}
.lsae{letter-spacing:-0.080000pt;}
.ls5b{letter-spacing:-0.058667pt;}
.lsb0{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:-0.050667pt;}
.ls47{letter-spacing:-0.048000pt;}
.ls50{letter-spacing:-0.042667pt;}
.ls62{letter-spacing:-0.041067pt;}
.lsaf{letter-spacing:-0.040000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.036000pt;}
.ls8e{letter-spacing:0.041067pt;}
.ls86{letter-spacing:0.048000pt;}
.lsa9{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.096000pt;}
.ls4c{letter-spacing:0.117333pt;}
.lsb8{letter-spacing:0.120000pt;}
.ls5a{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.lsaa{letter-spacing:0.160000pt;}
.ls65{letter-spacing:0.170667pt;}
.ls41{letter-spacing:0.176000pt;}
.ls57{letter-spacing:0.192000pt;}
.ls87{letter-spacing:0.205333pt;}
.ls9a{letter-spacing:0.213333pt;}
.ls3d{letter-spacing:0.234667pt;}
.ls59{letter-spacing:0.240000pt;}
.ls9e{letter-spacing:0.266667pt;}
.ls9c{letter-spacing:0.280000pt;}
.ls82{letter-spacing:0.293333pt;}
.ls9f{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.352000pt;}
.ls97{letter-spacing:0.360000pt;}
.lsa4{letter-spacing:0.373333pt;}
.ls98{letter-spacing:0.384000pt;}
.lsa5{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls52{letter-spacing:0.410667pt;}
.ls46{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.469333pt;}
.ls58{letter-spacing:0.480000pt;}
.ls74{letter-spacing:0.496000pt;}
.ls71{letter-spacing:0.528000pt;}
.ls75{letter-spacing:0.540000pt;}
.ls0{letter-spacing:0.557333pt;}
.ls7a{letter-spacing:0.574933pt;}
.ls45{letter-spacing:0.586667pt;}
.ls94{letter-spacing:0.612000pt;}
.ls8{letter-spacing:0.624000pt;}
.ls3c{letter-spacing:0.645333pt;}
.ls95{letter-spacing:0.648000pt;}
.ls99{letter-spacing:0.657067pt;}
.ls43{letter-spacing:0.704000pt;}
.ls7d{letter-spacing:0.720000pt;}
.lsa6{letter-spacing:0.746667pt;}
.ls3e{letter-spacing:0.762667pt;}
.ls9b{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.821333pt;}
.lsa2{letter-spacing:0.840000pt;}
.lsa1{letter-spacing:0.853333pt;}
.ls56{letter-spacing:0.880000pt;}
.ls76{letter-spacing:0.912000pt;}
.ls54{letter-spacing:0.938667pt;}
.lsab{letter-spacing:0.960000pt;}
.ls91{letter-spacing:0.997333pt;}
.ls2{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.056000pt;}
.ls44{letter-spacing:1.114667pt;}
.lsb5{letter-spacing:1.120000pt;}
.lsa8{letter-spacing:1.160000pt;}
.lsa7{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.200000pt;}
.ls79{letter-spacing:1.224000pt;}
.ls78{letter-spacing:1.248000pt;}
.lsa0{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.408000pt;}
.ls3f{letter-spacing:1.466667pt;}
.ls83{letter-spacing:1.525333pt;}
.ls93{letter-spacing:1.818667pt;}
.ls53{letter-spacing:1.936000pt;}
.ls7{letter-spacing:1.968000pt;}
.ls3{letter-spacing:12.058667pt;}
.lsa3{letter-spacing:12.480000pt;}
.ls5{letter-spacing:12.666667pt;}
.ls70{letter-spacing:13.760000pt;}
.ls69{letter-spacing:13.813333pt;}
.ls9d{letter-spacing:14.933333pt;}
.ls55{letter-spacing:16.160000pt;}
.ls6a{letter-spacing:16.800000pt;}
.ls6{letter-spacing:44.016000pt;}
.ws26{word-spacing:-20.224000pt;}
.ws28{word-spacing:-18.666667pt;}
.ws25{word-spacing:-18.261333pt;}
.ws27{word-spacing:-17.770667pt;}
.wscd{word-spacing:-16.485333pt;}
.wsc1{word-spacing:-16.192000pt;}
.ws8e{word-spacing:-16.133333pt;}
.wsc6{word-spacing:-15.664000pt;}
.ws63{word-spacing:-15.546667pt;}
.ws94{word-spacing:-15.488000pt;}
.wsd4{word-spacing:-15.429333pt;}
.wsae{word-spacing:-15.370667pt;}
.ws7e{word-spacing:-15.312000pt;}
.ws5f{word-spacing:-15.253333pt;}
.ws29{word-spacing:-15.232000pt;}
.ws93{word-spacing:-15.194667pt;}
.ws5e{word-spacing:-15.136000pt;}
.wsc5{word-spacing:-15.077333pt;}
.ws46{word-spacing:-15.018667pt;}
.wsc2{word-spacing:-14.960000pt;}
.ws44{word-spacing:-14.901333pt;}
.ws2a{word-spacing:-14.848000pt;}
.ws96{word-spacing:-14.842667pt;}
.ws43{word-spacing:-14.784000pt;}
.ws47{word-spacing:-14.725333pt;}
.ws42{word-spacing:-14.666667pt;}
.ws5d{word-spacing:-14.608000pt;}
.wsb3{word-spacing:-14.549333pt;}
.wsf9{word-spacing:-14.506667pt;}
.wsb4{word-spacing:-14.490667pt;}
.wsf4{word-spacing:-14.453333pt;}
.ws8a{word-spacing:-14.432000pt;}
.ws62{word-spacing:-14.373333pt;}
.ws97{word-spacing:-14.314667pt;}
.ws105{word-spacing:-14.293333pt;}
.wsca{word-spacing:-14.256000pt;}
.wsb0{word-spacing:-14.197333pt;}
.ws8d{word-spacing:-14.138667pt;}
.wse0{word-spacing:-14.133333pt;}
.wscb{word-spacing:-14.080000pt;}
.ws60{word-spacing:-13.962667pt;}
.ws61{word-spacing:-13.904000pt;}
.ws104{word-spacing:-13.813333pt;}
.wsc8{word-spacing:-13.786667pt;}
.wse7{word-spacing:-13.706667pt;}
.ws8c{word-spacing:-13.669333pt;}
.wsee{word-spacing:-13.653333pt;}
.wsc9{word-spacing:-13.610667pt;}
.ws45{word-spacing:-13.552000pt;}
.wsdb{word-spacing:-13.546667pt;}
.wsfb{word-spacing:-13.493333pt;}
.wsd8{word-spacing:-13.333333pt;}
.wsde{word-spacing:-13.280000pt;}
.wsfe{word-spacing:-13.226667pt;}
.wsa4{word-spacing:-13.200000pt;}
.wsf5{word-spacing:-13.120000pt;}
.wseb{word-spacing:-13.066667pt;}
.ws1b{word-spacing:-12.920000pt;}
.ws9e{word-spacing:-12.912000pt;}
.ws9d{word-spacing:-12.720000pt;}
.ws8{word-spacing:-12.666667pt;}
.ws90{word-spacing:-12.528000pt;}
.ws17{word-spacing:-12.413333pt;}
.wsd7{word-spacing:-12.384000pt;}
.ws1{word-spacing:-12.362667pt;}
.ws0{word-spacing:-12.312000pt;}
.ws69{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.210667pt;}
.ws9f{word-spacing:-12.144000pt;}
.ws4{word-spacing:-12.109333pt;}
.ws1a{word-spacing:-12.058667pt;}
.wsb{word-spacing:-12.008000pt;}
.ws2f{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.957333pt;}
.ws41{word-spacing:-11.952000pt;}
.ws18{word-spacing:-11.906667pt;}
.ws15{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.805333pt;}
.ws19{word-spacing:-11.754667pt;}
.wsa0{word-spacing:-11.712000pt;}
.ws12{word-spacing:-11.704000pt;}
.ws80{word-spacing:-11.664000pt;}
.ws9{word-spacing:-11.653333pt;}
.ws23{word-spacing:-11.520000pt;}
.ws16{word-spacing:-11.501333pt;}
.ws2b{word-spacing:-11.424000pt;}
.wscf{word-spacing:-11.376000pt;}
.ws22{word-spacing:-11.232000pt;}
.ws11{word-spacing:-11.197333pt;}
.ws2c{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.096000pt;}
.ws13{word-spacing:-11.045333pt;}
.wsc{word-spacing:-10.994667pt;}
.wsb8{word-spacing:-10.992000pt;}
.wsb7{word-spacing:-10.944000pt;}
.ws2e{word-spacing:-10.896000pt;}
.wsd{word-spacing:-10.842667pt;}
.ws95{word-spacing:-10.841600pt;}
.ws64{word-spacing:-10.837333pt;}
.wsdf{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.792000pt;}
.wsce{word-spacing:-10.677333pt;}
.ws8f{word-spacing:-10.666667pt;}
.ws49{word-spacing:-10.624000pt;}
.ws21{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.538667pt;}
.ws10{word-spacing:-10.437333pt;}
.wsf8{word-spacing:-10.400000pt;}
.wsf{word-spacing:-10.336000pt;}
.wse8{word-spacing:-10.320000pt;}
.wsbb{word-spacing:-10.307733pt;}
.wse6{word-spacing:-10.280000pt;}
.ws8b{word-spacing:-10.266667pt;}
.wse5{word-spacing:-10.240000pt;}
.wscc{word-spacing:-10.197333pt;}
.wsfa{word-spacing:-10.120000pt;}
.wsaf{word-spacing:-10.061333pt;}
.ws14{word-spacing:-10.032000pt;}
.wsd9{word-spacing:-10.000000pt;}
.ws2d{word-spacing:-9.984000pt;}
.wsdd{word-spacing:-9.960000pt;}
.wsdc{word-spacing:-9.920000pt;}
.wsf7{word-spacing:-9.840000pt;}
.wse2{word-spacing:-9.800000pt;}
.wsea{word-spacing:-9.720000pt;}
.ws6{word-spacing:-9.626667pt;}
.wsb5{word-spacing:-9.404267pt;}
.wsd6{word-spacing:-9.360000pt;}
.ws1c{word-spacing:-9.170667pt;}
.ws66{word-spacing:-9.000000pt;}
.ws20{word-spacing:-8.976000pt;}
.wsda{word-spacing:-8.920000pt;}
.ws1e{word-spacing:-8.866667pt;}
.ws24{word-spacing:-8.832000pt;}
.ws1d{word-spacing:-8.613333pt;}
.ws67{word-spacing:-8.460000pt;}
.wsbc{word-spacing:-8.280000pt;}
.wse{word-spacing:-6.434667pt;}
.ws40{word-spacing:-6.314667pt;}
.ws70{word-spacing:-0.762667pt;}
.ws77{word-spacing:-0.704000pt;}
.ws3b{word-spacing:-0.658667pt;}
.ws81{word-spacing:-0.645333pt;}
.ws108{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.608000pt;}
.ws6d{word-spacing:-0.586667pt;}
.wsc7{word-spacing:-0.576000pt;}
.ws34{word-spacing:-0.557333pt;}
.ws114{word-spacing:-0.533333pt;}
.ws6a{word-spacing:-0.528000pt;}
.ws37{word-spacing:-0.506667pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.469333pt;}
.ws92{word-spacing:-0.432000pt;}
.ws10c{word-spacing:-0.426667pt;}
.ws4d{word-spacing:-0.410667pt;}
.ws39{word-spacing:-0.405333pt;}
.wsc0{word-spacing:-0.384000pt;}
.ws110{word-spacing:-0.373333pt;}
.ws84{word-spacing:-0.369600pt;}
.ws5b{word-spacing:-0.352000pt;}
.ws87{word-spacing:-0.336000pt;}
.ws52{word-spacing:-0.293333pt;}
.wsac{word-spacing:-0.288000pt;}
.ws38{word-spacing:-0.253333pt;}
.ws89{word-spacing:-0.240000pt;}
.ws56{word-spacing:-0.234667pt;}
.ws35{word-spacing:-0.202667pt;}
.wsab{word-spacing:-0.192000pt;}
.ws4f{word-spacing:-0.176000pt;}
.ws33{word-spacing:-0.152000pt;}
.ws6c{word-spacing:-0.117333pt;}
.ws7b{word-spacing:-0.096000pt;}
.ws72{word-spacing:-0.058667pt;}
.ws78{word-spacing:-0.048000pt;}
.ws30{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.048000pt;}
.ws58{word-spacing:0.058667pt;}
.wsbf{word-spacing:0.096000pt;}
.ws6f{word-spacing:0.117333pt;}
.ws79{word-spacing:0.144000pt;}
.ws112{word-spacing:0.160000pt;}
.ws82{word-spacing:0.176000pt;}
.ws57{word-spacing:0.234667pt;}
.ws74{word-spacing:0.287467pt;}
.wsa7{word-spacing:0.288000pt;}
.wsbd{word-spacing:0.293333pt;}
.ws85{word-spacing:0.328533pt;}
.wsa8{word-spacing:0.336000pt;}
.ws54{word-spacing:0.352000pt;}
.ws31{word-spacing:0.354667pt;}
.ws116{word-spacing:0.373333pt;}
.ws73{word-spacing:0.410667pt;}
.ws106{word-spacing:0.426667pt;}
.wsba{word-spacing:0.432000pt;}
.wsa6{word-spacing:0.468000pt;}
.ws4e{word-spacing:0.469333pt;}
.wsef{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.528000pt;}
.ws10b{word-spacing:0.533333pt;}
.ws75{word-spacing:0.586667pt;}
.wsa5{word-spacing:0.624000pt;}
.ws76{word-spacing:0.645333pt;}
.ws7c{word-spacing:0.672000pt;}
.ws4b{word-spacing:0.704000pt;}
.ws10a{word-spacing:0.746667pt;}
.ws71{word-spacing:0.762667pt;}
.wsa9{word-spacing:0.768000pt;}
.wsaa{word-spacing:0.816000pt;}
.ws4c{word-spacing:0.821333pt;}
.ws115{word-spacing:0.853333pt;}
.ws3c{word-spacing:0.861333pt;}
.wsb2{word-spacing:0.880000pt;}
.ws111{word-spacing:0.906667pt;}
.ws3a{word-spacing:0.912000pt;}
.ws53{word-spacing:0.938667pt;}
.ws5c{word-spacing:0.944533pt;}
.ws7a{word-spacing:0.960000pt;}
.ws83{word-spacing:0.997333pt;}
.ws7d{word-spacing:1.008000pt;}
.ws10e{word-spacing:1.013333pt;}
.ws5a{word-spacing:1.056000pt;}
.ws36{word-spacing:1.064000pt;}
.ws10d{word-spacing:1.066667pt;}
.ws86{word-spacing:1.104000pt;}
.ws6e{word-spacing:1.114667pt;}
.ws107{word-spacing:1.120000pt;}
.ws88{word-spacing:1.152000pt;}
.ws6b{word-spacing:1.173333pt;}
.ws113{word-spacing:1.226667pt;}
.ws51{word-spacing:1.232000pt;}
.ws59{word-spacing:1.290667pt;}
.ws68{word-spacing:1.296000pt;}
.ws109{word-spacing:1.333333pt;}
.wsa1{word-spacing:1.344000pt;}
.ws50{word-spacing:1.349333pt;}
.ws55{word-spacing:1.408000pt;}
.wsd2{word-spacing:1.466667pt;}
.wsad{word-spacing:1.728000pt;}
.wsc3{word-spacing:1.760000pt;}
.wsc4{word-spacing:1.818667pt;}
.wse9{word-spacing:2.186667pt;}
.ws10f{word-spacing:2.240000pt;}
.wsfc{word-spacing:2.520000pt;}
.ws100{word-spacing:2.626667pt;}
.ws101{word-spacing:2.666667pt;}
.wsff{word-spacing:2.706667pt;}
.wsf6{word-spacing:2.760000pt;}
.wsfd{word-spacing:2.773333pt;}
.wsec{word-spacing:2.826667pt;}
.wsb1{word-spacing:2.992000pt;}
.wse3{word-spacing:3.013333pt;}
.wse1{word-spacing:3.040000pt;}
.ws99{word-spacing:3.580000pt;}
.wsd1{word-spacing:3.600000pt;}
.ws9c{word-spacing:3.628000pt;}
.ws9a{word-spacing:3.636000pt;}
.ws9b{word-spacing:3.649333pt;}
.wsd0{word-spacing:3.809333pt;}
.ws102{word-spacing:3.826667pt;}
.ws103{word-spacing:3.840000pt;}
.wsf1{word-spacing:3.853333pt;}
.wsf3{word-spacing:3.906667pt;}
.wsf0{word-spacing:3.920000pt;}
.wsf2{word-spacing:3.946667pt;}
.wsb6{word-spacing:3.998933pt;}
.wse4{word-spacing:4.120000pt;}
.wsed{word-spacing:4.200000pt;}
.wsa3{word-spacing:4.424000pt;}
.wsa2{word-spacing:4.577333pt;}
.wsb9{word-spacing:4.693333pt;}
.wsd5{word-spacing:5.468800pt;}
.wsd3{word-spacing:7.920000pt;}
.ws98{word-spacing:8.016000pt;}
.ws91{word-spacing:8.976000pt;}
.ws48{word-spacing:31.914667pt;}
.ws65{word-spacing:32.016000pt;}
.ws3f{word-spacing:32.042667pt;}
.ws7f{word-spacing:33.456000pt;}
._d{margin-left:-11.699751pt;}
._e{margin-left:-10.677333pt;}
._3{margin-left:-8.087502pt;}
._b{margin-left:-6.453333pt;}
._1{margin-left:-5.280000pt;}
._8{margin-left:-4.341333pt;}
._7{margin-left:-3.109333pt;}
._4{margin-left:-2.195751pt;}
._0{margin-left:-1.265582pt;}
._2{width:1.324249pt;}
._c{width:2.321582pt;}
._f{width:11.088000pt;}
._10{width:15.605333pt;}
._a{width:43.027751pt;}
._6{width:44.016000pt;}
._9{width:729.619751pt;}
._5{width:993.513084pt;}
.fs9{font-size:36.000000pt;}
.fsb{font-size:40.000000pt;}
.fs8{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:52.266667pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:2.574667pt;}
.y27{bottom:3.241333pt;}
.y23{bottom:3.908000pt;}
.y17{bottom:44.581333pt;}
.y13f{bottom:44.776000pt;}
.y1cc{bottom:44.794667pt;}
.ye6{bottom:44.848000pt;}
.ybc{bottom:44.864000pt;}
.y19e{bottom:45.021333pt;}
.y156{bottom:45.036000pt;}
.y191{bottom:45.050667pt;}
.y17d{bottom:45.117333pt;}
.y1c2{bottom:45.122667pt;}
.y109{bottom:45.130667pt;}
.y7a{bottom:45.224000pt;}
.y126{bottom:45.322667pt;}
.y4e{bottom:45.333333pt;}
.y94{bottom:45.341333pt;}
.y16{bottom:57.253333pt;}
.y13e{bottom:57.448000pt;}
.ye5{bottom:57.456000pt;}
.y1cb{bottom:57.466667pt;}
.ybb{bottom:57.536000pt;}
.y17c{bottom:57.789333pt;}
.y1c1{bottom:57.794667pt;}
.y108{bottom:57.802667pt;}
.y79{bottom:57.896000pt;}
.y125{bottom:57.994667pt;}
.y93{bottom:58.013333pt;}
.y19d{bottom:60.348000pt;}
.y155{bottom:60.362667pt;}
.y190{bottom:60.377333pt;}
.y13d{bottom:70.120000pt;}
.ye4{bottom:70.128000pt;}
.yba{bottom:70.208000pt;}
.y17b{bottom:70.461333pt;}
.y107{bottom:70.474667pt;}
.y78{bottom:70.568000pt;}
.y124{bottom:70.650667pt;}
.y92{bottom:70.685333pt;}
.y19c{bottom:75.674667pt;}
.y154{bottom:75.689333pt;}
.y18f{bottom:75.704000pt;}
.ye3{bottom:82.800000pt;}
.yb9{bottom:82.880000pt;}
.y17a{bottom:83.133333pt;}
.y106{bottom:83.146667pt;}
.y77{bottom:83.240000pt;}
.y123{bottom:83.322667pt;}
.y91{bottom:83.357333pt;}
.y4d{bottom:89.753333pt;}
.y19b{bottom:91.001333pt;}
.y153{bottom:91.016000pt;}
.y18e{bottom:91.030667pt;}
.ye2{bottom:95.472000pt;}
.yb8{bottom:95.552000pt;}
.y76{bottom:95.912000pt;}
.y122{bottom:95.994667pt;}
.y90{bottom:96.029333pt;}
.y26{bottom:100.000000pt;}
.y4c{bottom:105.080000pt;}
.y1ca{bottom:106.160000pt;}
.y13c{bottom:106.266667pt;}
.y19a{bottom:106.328000pt;}
.y152{bottom:106.342667pt;}
.y18d{bottom:106.357333pt;}
.ye1{bottom:108.144000pt;}
.yb7{bottom:108.224000pt;}
.y75{bottom:108.584000pt;}
.y121{bottom:108.666667pt;}
.y8f{bottom:108.701333pt;}
.y28{bottom:114.666667pt;}
.y24{bottom:118.666667pt;}
.y4b{bottom:120.406667pt;}
.ye0{bottom:120.816000pt;}
.yb6{bottom:120.896000pt;}
.y74{bottom:121.256000pt;}
.y8e{bottom:121.373333pt;}
.y1c0{bottom:121.473333pt;}
.y1c9{bottom:121.486667pt;}
.y105{bottom:121.540000pt;}
.y13b{bottom:121.593333pt;}
.y179{bottom:121.598667pt;}
.y199{bottom:121.654667pt;}
.y151{bottom:121.669333pt;}
.y18c{bottom:121.684000pt;}
.y1f6{bottom:123.786667pt;}
.ydf{bottom:133.488000pt;}
.yb5{bottom:133.568000pt;}
.y73{bottom:133.928000pt;}
.y22{bottom:134.666667pt;}
.y4a{bottom:135.733333pt;}
.y1bf{bottom:136.800000pt;}
.y1c8{bottom:136.813333pt;}
.y104{bottom:136.866667pt;}
.y13a{bottom:136.920000pt;}
.y178{bottom:136.925333pt;}
.y198{bottom:136.981333pt;}
.y150{bottom:136.996000pt;}
.y18b{bottom:137.010667pt;}
.y1f5{bottom:137.786667pt;}
.yde{bottom:146.160000pt;}
.yb4{bottom:146.240000pt;}
.y72{bottom:146.600000pt;}
.y49{bottom:151.060000pt;}
.y1f4{bottom:151.786667pt;}
.y1be{bottom:152.126667pt;}
.y1c7{bottom:152.140000pt;}
.y120{bottom:152.186667pt;}
.y103{bottom:152.193333pt;}
.y139{bottom:152.246667pt;}
.y177{bottom:152.252000pt;}
.y197{bottom:152.308000pt;}
.y18a{bottom:152.337333pt;}
.ydd{bottom:158.832000pt;}
.y20{bottom:163.346667pt;}
.y1f3{bottom:165.786667pt;}
.y1c6{bottom:167.466667pt;}
.y8d{bottom:167.480000pt;}
.y11f{bottom:167.513333pt;}
.y102{bottom:167.520000pt;}
.y138{bottom:167.573333pt;}
.y176{bottom:167.578667pt;}
.y196{bottom:167.634667pt;}
.y14f{bottom:167.664000pt;}
.y1bd{bottom:167.680000pt;}
.ydc{bottom:171.504000pt;}
.y48{bottom:174.057333pt;}
.y189{bottom:175.334667pt;}
.y1f2{bottom:179.786667pt;}
.y1c5{bottom:182.793333pt;}
.y8c{bottom:182.806667pt;}
.y71{bottom:182.840000pt;}
.y101{bottom:182.846667pt;}
.y137{bottom:182.900000pt;}
.y175{bottom:182.905333pt;}
.y195{bottom:182.961333pt;}
.yb3{bottom:182.977333pt;}
.y14e{bottom:182.990667pt;}
.y1bc{bottom:183.006667pt;}
.ydb{bottom:184.176000pt;}
.y1f1{bottom:193.786667pt;}
.yda{bottom:196.848000pt;}
.y8b{bottom:198.133333pt;}
.y70{bottom:198.166667pt;}
.y100{bottom:198.173333pt;}
.y136{bottom:198.226667pt;}
.y174{bottom:198.232000pt;}
.yb2{bottom:198.304000pt;}
.y14d{bottom:198.317333pt;}
.y1bb{bottom:198.333333pt;}
.y15{bottom:199.200000pt;}
.y194{bottom:205.958667pt;}
.y1f0{bottom:207.786667pt;}
.yd9{bottom:209.520000pt;}
.y47{bottom:212.396000pt;}
.y8a{bottom:213.460000pt;}
.y6f{bottom:213.493333pt;}
.yff{bottom:213.500000pt;}
.y135{bottom:213.553333pt;}
.y173{bottom:213.558667pt;}
.yb1{bottom:213.630667pt;}
.y14c{bottom:213.644000pt;}
.y1ba{bottom:213.660000pt;}
.y188{bottom:213.673333pt;}
.y14{bottom:217.842000pt;}
.y1ef{bottom:221.786667pt;}
.yd8{bottom:222.186667pt;}
.y46{bottom:227.722667pt;}
.y6e{bottom:228.820000pt;}
.yfe{bottom:228.826667pt;}
.y134{bottom:228.880000pt;}
.y172{bottom:228.885333pt;}
.yb0{bottom:228.957333pt;}
.y89{bottom:228.970667pt;}
.y1b9{bottom:228.986667pt;}
.y187{bottom:229.000000pt;}
.y13{bottom:231.180000pt;}
.y1ee{bottom:235.786667pt;}
.y45{bottom:243.049333pt;}
.y6d{bottom:244.146667pt;}
.yfd{bottom:244.153333pt;}
.y133{bottom:244.206667pt;}
.y171{bottom:244.212000pt;}
.yaf{bottom:244.284000pt;}
.y88{bottom:244.297333pt;}
.y1b8{bottom:244.313333pt;}
.y186{bottom:244.326667pt;}
.y12{bottom:244.518000pt;}
.y1ed{bottom:249.786667pt;}
.y11{bottom:257.856000pt;}
.y44{bottom:258.376000pt;}
.y6c{bottom:259.473333pt;}
.yd7{bottom:259.480000pt;}
.y132{bottom:259.533333pt;}
.y170{bottom:259.538667pt;}
.yae{bottom:259.610667pt;}
.y87{bottom:259.624000pt;}
.y1b7{bottom:259.640000pt;}
.y185{bottom:259.653333pt;}
.y1ec{bottom:263.786667pt;}
.y10{bottom:271.194000pt;}
.y43{bottom:273.702667pt;}
.y6b{bottom:274.800000pt;}
.yd6{bottom:274.806667pt;}
.y131{bottom:274.860000pt;}
.y16f{bottom:274.865333pt;}
.yad{bottom:274.937333pt;}
.y86{bottom:274.950667pt;}
.y14b{bottom:274.965333pt;}
.y1b6{bottom:274.966667pt;}
.y184{bottom:274.980000pt;}
.y1eb{bottom:277.786667pt;}
.yf{bottom:284.532000pt;}
.y42{bottom:289.029333pt;}
.y6a{bottom:290.126667pt;}
.yd5{bottom:290.133333pt;}
.y130{bottom:290.186667pt;}
.y16e{bottom:290.192000pt;}
.yac{bottom:290.264000pt;}
.y85{bottom:290.277333pt;}
.y14a{bottom:290.292000pt;}
.y1b5{bottom:290.293333pt;}
.y183{bottom:290.306667pt;}
.y1ea{bottom:291.786667pt;}
.ye{bottom:297.870000pt;}
.y41{bottom:304.356000pt;}
.yd4{bottom:305.460000pt;}
.y69{bottom:305.486667pt;}
.y11e{bottom:305.490667pt;}
.y12f{bottom:305.513333pt;}
.y16d{bottom:305.518667pt;}
.yab{bottom:305.590667pt;}
.y84{bottom:305.604000pt;}
.y149{bottom:305.618667pt;}
.y1b4{bottom:305.620000pt;}
.y182{bottom:305.633333pt;}
.y1e9{bottom:305.786667pt;}
.y40{bottom:319.682667pt;}
.y1e8{bottom:319.786667pt;}
.yd3{bottom:320.786667pt;}
.y68{bottom:320.813333pt;}
.y11d{bottom:320.817333pt;}
.y12e{bottom:320.840000pt;}
.y16c{bottom:320.845333pt;}
.yaa{bottom:320.917333pt;}
.yfc{bottom:320.926667pt;}
.y83{bottom:320.930667pt;}
.y148{bottom:320.945333pt;}
.y1b3{bottom:320.946667pt;}
.y181{bottom:320.960000pt;}
.yd{bottom:324.533333pt;}
.y1e7{bottom:333.786667pt;}
.y3f{bottom:335.009333pt;}
.y67{bottom:336.140000pt;}
.y11c{bottom:336.144000pt;}
.y12d{bottom:336.166667pt;}
.y16b{bottom:336.172000pt;}
.ya9{bottom:336.244000pt;}
.yfb{bottom:336.253333pt;}
.y82{bottom:336.257333pt;}
.y147{bottom:336.272000pt;}
.y1b2{bottom:336.273333pt;}
.y180{bottom:336.286667pt;}
.yd2{bottom:343.854667pt;}
.y1e6{bottom:347.786667pt;}
.y3e{bottom:350.336000pt;}
.y66{bottom:351.466667pt;}
.y11b{bottom:351.470667pt;}
.y12c{bottom:351.493333pt;}
.y16a{bottom:351.498667pt;}
.ya8{bottom:351.570667pt;}
.yfa{bottom:351.580000pt;}
.y81{bottom:351.584000pt;}
.y146{bottom:351.598667pt;}
.y1b1{bottom:351.600000pt;}
.y17f{bottom:351.613333pt;}
.yc{bottom:356.490667pt;}
.y1e5{bottom:361.786667pt;}
.y3d{bottom:365.662667pt;}
.y65{bottom:366.793333pt;}
.y12b{bottom:366.820000pt;}
.y169{bottom:366.825333pt;}
.ya7{bottom:366.897333pt;}
.yf9{bottom:366.906667pt;}
.y80{bottom:366.910667pt;}
.y145{bottom:366.925333pt;}
.y1b0{bottom:366.926667pt;}
.y17e{bottom:366.940000pt;}
.yb{bottom:369.828667pt;}
.y11a{bottom:374.468000pt;}
.y1e4{bottom:375.786667pt;}
.y3c{bottom:380.989333pt;}
.y12a{bottom:382.146667pt;}
.y168{bottom:382.152000pt;}
.yd1{bottom:382.193333pt;}
.ya6{bottom:382.224000pt;}
.yf8{bottom:382.233333pt;}
.y7f{bottom:382.237333pt;}
.y144{bottom:382.252000pt;}
.y1af{bottom:382.253333pt;}
.y64{bottom:382.266667pt;}
.ya{bottom:388.499333pt;}
.y1e3{bottom:389.786667pt;}
.y3b{bottom:396.316000pt;}
.y129{bottom:397.473333pt;}
.y167{bottom:397.478667pt;}
.yd0{bottom:397.520000pt;}
.ya5{bottom:397.550667pt;}
.yf7{bottom:397.560000pt;}
.y7e{bottom:397.564000pt;}
.y143{bottom:397.578667pt;}
.y1ae{bottom:397.580000pt;}
.y63{bottom:397.593333pt;}
.y9{bottom:401.837333pt;}
.y1e2{bottom:403.786667pt;}
.y3a{bottom:411.642667pt;}
.y128{bottom:412.800000pt;}
.y166{bottom:412.805333pt;}
.y119{bottom:412.806667pt;}
.ycf{bottom:412.846667pt;}
.ya4{bottom:412.877333pt;}
.yf6{bottom:412.886667pt;}
.y7d{bottom:412.890667pt;}
.y142{bottom:412.905333pt;}
.y1ad{bottom:412.906667pt;}
.y62{bottom:412.920000pt;}
.y8{bottom:415.175333pt;}
.y1e1{bottom:417.786667pt;}
.y39{bottom:426.969333pt;}
.y127{bottom:428.126667pt;}
.y165{bottom:428.132000pt;}
.y118{bottom:428.133333pt;}
.yce{bottom:428.173333pt;}
.ya3{bottom:428.204000pt;}
.yf5{bottom:428.213333pt;}
.y7c{bottom:428.217333pt;}
.y141{bottom:428.232000pt;}
.y1ac{bottom:428.233333pt;}
.y61{bottom:428.246667pt;}
.y7{bottom:428.513333pt;}
.y1e0{bottom:431.786667pt;}
.y6{bottom:441.851333pt;}
.y38{bottom:442.296000pt;}
.y164{bottom:443.458667pt;}
.y117{bottom:443.460000pt;}
.ycd{bottom:443.500000pt;}
.ya2{bottom:443.530667pt;}
.yf4{bottom:443.540000pt;}
.y193{bottom:443.544000pt;}
.y140{bottom:443.558667pt;}
.y1ab{bottom:443.560000pt;}
.y60{bottom:443.573333pt;}
.y1df{bottom:445.786667pt;}
.y7b{bottom:451.214667pt;}
.y5{bottom:455.189333pt;}
.y37{bottom:457.622667pt;}
.y163{bottom:458.785333pt;}
.ycc{bottom:458.826667pt;}
.ya1{bottom:458.857333pt;}
.yf3{bottom:458.866667pt;}
.y116{bottom:458.870667pt;}
.y1aa{bottom:458.886667pt;}
.y5f{bottom:458.900000pt;}
.y1de{bottom:459.786667pt;}
.y4{bottom:468.527333pt;}
.y36{bottom:472.949333pt;}
.y1dd{bottom:473.786667pt;}
.ycb{bottom:474.153333pt;}
.ya0{bottom:474.184000pt;}
.yf2{bottom:474.193333pt;}
.y115{bottom:474.197333pt;}
.y1a9{bottom:474.213333pt;}
.y5e{bottom:474.226667pt;}
.y3{bottom:481.865333pt;}
.y1dc{bottom:487.786667pt;}
.y35{bottom:488.276000pt;}
.yca{bottom:489.480000pt;}
.y9f{bottom:489.510667pt;}
.yf1{bottom:489.520000pt;}
.y114{bottom:489.524000pt;}
.y162{bottom:489.538667pt;}
.y1a8{bottom:489.540000pt;}
.y5d{bottom:489.553333pt;}
.y2{bottom:495.203333pt;}
.y1db{bottom:501.786667pt;}
.y34{bottom:503.602667pt;}
.yc9{bottom:504.806667pt;}
.y9e{bottom:504.837333pt;}
.yf0{bottom:504.846667pt;}
.y113{bottom:504.850667pt;}
.y161{bottom:504.865333pt;}
.y1a7{bottom:504.866667pt;}
.y5c{bottom:504.880000pt;}
.y1da{bottom:515.786667pt;}
.y33{bottom:518.929333pt;}
.yc8{bottom:520.133333pt;}
.y9d{bottom:520.164000pt;}
.yef{bottom:520.173333pt;}
.y112{bottom:520.177333pt;}
.y160{bottom:520.192000pt;}
.y1a6{bottom:520.193333pt;}
.y5b{bottom:520.206667pt;}
.y1{bottom:521.866667pt;}
.y1d9{bottom:529.786667pt;}
.y32{bottom:534.256000pt;}
.yc7{bottom:535.460000pt;}
.y9c{bottom:535.490667pt;}
.yee{bottom:535.500000pt;}
.y111{bottom:535.504000pt;}
.y15f{bottom:535.518667pt;}
.y1a5{bottom:535.520000pt;}
.y5a{bottom:535.533333pt;}
.y1d8{bottom:543.786667pt;}
.y31{bottom:549.582667pt;}
.y9b{bottom:550.817333pt;}
.yed{bottom:550.826667pt;}
.y110{bottom:550.830667pt;}
.y15e{bottom:550.845333pt;}
.y1a4{bottom:550.846667pt;}
.yc6{bottom:550.853333pt;}
.y59{bottom:550.860000pt;}
.y1d7{bottom:557.786667pt;}
.y30{bottom:564.909333pt;}
.y9a{bottom:566.144000pt;}
.yec{bottom:566.153333pt;}
.y10f{bottom:566.157333pt;}
.y15d{bottom:566.172000pt;}
.y1a3{bottom:566.173333pt;}
.yc5{bottom:566.180000pt;}
.y58{bottom:566.186667pt;}
.y1d6{bottom:571.786667pt;}
.y192{bottom:573.828000pt;}
.y2f{bottom:580.236000pt;}
.y99{bottom:581.470667pt;}
.yeb{bottom:581.480000pt;}
.y10e{bottom:581.484000pt;}
.y15c{bottom:581.498667pt;}
.y1a2{bottom:581.500000pt;}
.yc4{bottom:581.506667pt;}
.y57{bottom:581.513333pt;}
.y1d5{bottom:585.786667pt;}
.y1f{bottom:592.082667pt;}
.y2e{bottom:595.562667pt;}
.yea{bottom:596.806667pt;}
.y10d{bottom:596.810667pt;}
.y15b{bottom:596.825333pt;}
.y1a1{bottom:596.826667pt;}
.yc3{bottom:596.833333pt;}
.y56{bottom:596.840000pt;}
.y1d4{bottom:599.786667pt;}
.y98{bottom:604.468000pt;}
.y1e{bottom:604.754667pt;}
.ye9{bottom:612.133333pt;}
.y10c{bottom:612.137333pt;}
.y15a{bottom:612.152000pt;}
.y1a0{bottom:612.153333pt;}
.yc2{bottom:612.160000pt;}
.y55{bottom:612.166667pt;}
.y1d3{bottom:613.786667pt;}
.y1d{bottom:617.426667pt;}
.y2d{bottom:618.560000pt;}
.ye8{bottom:627.460000pt;}
.y10b{bottom:627.464000pt;}
.y159{bottom:627.478667pt;}
.y19f{bottom:627.480000pt;}
.yc1{bottom:627.486667pt;}
.y54{bottom:627.493333pt;}
.y1d2{bottom:627.786667pt;}
.y1c{bottom:633.426667pt;}
.y1d1{bottom:641.786667pt;}
.ye7{bottom:642.786667pt;}
.y1c4{bottom:642.790667pt;}
.y158{bottom:642.805333pt;}
.y97{bottom:642.806667pt;}
.yc0{bottom:642.813333pt;}
.y53{bottom:642.820000pt;}
.y10a{bottom:650.461333pt;}
.y1d0{bottom:655.786667pt;}
.y157{bottom:658.132000pt;}
.y96{bottom:658.133333pt;}
.ybf{bottom:658.140000pt;}
.y52{bottom:658.146667pt;}
.y1c3{bottom:665.788000pt;}
.y1cf{bottom:669.786667pt;}
.y1b{bottom:673.424000pt;}
.y95{bottom:673.460000pt;}
.ybe{bottom:673.466667pt;}
.y51{bottom:673.473333pt;}
.y2c{bottom:673.877333pt;}
.y1ce{bottom:683.786667pt;}
.ybd{bottom:688.793333pt;}
.y50{bottom:688.800000pt;}
.y2b{bottom:694.109333pt;}
.y1a{bottom:694.760000pt;}
.y1cd{bottom:697.786667pt;}
.y4f{bottom:704.126667pt;}
.y2a{bottom:706.781333pt;}
.y19{bottom:716.093333pt;}
.y29{bottom:719.453333pt;}
.y18{bottom:761.426667pt;}
.y21{bottom:901.333333pt;}
.hc{height:13.333333pt;}
.hd{height:14.666667pt;}
.ha{height:16.000000pt;}
.h4{height:36.949333pt;}
.h3{height:40.848000pt;}
.h23{height:40.869333pt;}
.h24{height:40.890667pt;}
.h1f{height:40.912000pt;}
.h1b{height:41.104000pt;}
.h9{height:41.854167pt;}
.h2{height:43.117333pt;}
.h1{height:43.877333pt;}
.h26{height:45.386667pt;}
.hb{height:47.109375pt;}
.h10{height:49.925333pt;}
.hf{height:50.805333pt;}
.h22{height:53.401067pt;}
.h25{height:53.518400pt;}
.h11{height:53.534400pt;}
.h14{height:53.571733pt;}
.h12{height:53.721067pt;}
.h1c{height:53.747733pt;}
.h20{height:53.827733pt;}
.h21{height:53.966400pt;}
.h1d{height:53.971733pt;}
.h1a{height:54.035733pt;}
.h19{height:54.041067pt;}
.h1e{height:54.158400pt;}
.h13{height:54.174400pt;}
.h15{height:54.201067pt;}
.h17{height:54.254400pt;}
.h18{height:54.281067pt;}
.h16{height:54.307733pt;}
.h8{height:54.464000pt;}
.h6{height:63.541333pt;}
.h7{height:69.129600pt;}
.h5{height:72.618667pt;}
.he{height:790.666667pt;}
.h0{height:793.333333pt;}
.w5{width:146.666667pt;}
.w4{width:174.666667pt;}
.w3{width:178.666667pt;}
.w2{width:216.000000pt;}
.w1{width:220.000000pt;}
.w6{width:565.333333pt;}
.w0{width:566.666667pt;}
.x5{left:-28.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.333333pt;}
.x9{left:16.344133pt;}
.xb{left:37.354533pt;}
.x6{left:52.000000pt;}
.x8{left:56.000000pt;}
.x11{left:68.813333pt;}
.x1{left:70.400000pt;}
.x14{left:74.813333pt;}
.x12{left:88.818667pt;}
.x2{left:90.405200pt;}
.xa{left:92.000000pt;}
.x13{left:101.010667pt;}
.x7{left:145.346800pt;}
.xf{left:229.693333pt;}
.x4{left:265.360000pt;}
.xc{left:297.333333pt;}
.xd{left:298.666667pt;}
.x3{left:385.573333pt;}
.x10{left:432.769333pt;}
}




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