
    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_3a522af247848fbaf5eff4c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_faca2dc42d45ee2cfe57002c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_f1e8684f25b549511e6bd3c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_a3209c0de991f0f381f7ed6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_a0714f29379d95bd1cd5ec8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a55e03ddfc20f5f33ffe6df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f134c71133aa0be858d48361.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ce42d71ed607208479ad1fba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ae8b19e7f6d64e419cafde42.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_172104fe6ee639f3970f2cbe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e070628f2ee547add4fa780e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0247c10f03545485aa2d57b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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);}
.v8{vertical-align:-32.976000px;}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.790000px;}
.v7{vertical-align:-9.357600px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.620000px;}
.v5{vertical-align:11.697000px;}
.v4{vertical-align:22.591800px;}
.v6{vertical-align:28.254000px;}
.v1{vertical-align:30.381600px;}
.ls50{letter-spacing:-1.776000px;}
.ls2{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.633000px;}
.ls6f{letter-spacing:-0.480000px;}
.ls56{letter-spacing:-0.420000px;}
.ls66{letter-spacing:-0.360000px;}
.ls63{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.240000px;}
.lsb5{letter-spacing:-0.192000px;}
.ls39{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.135000px;}
.ls61{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.096000px;}
.ls4a{letter-spacing:-0.060000px;}
.lsb4{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls78{letter-spacing:0.004200px;}
.ls5f{letter-spacing:0.012000px;}
.ls90{letter-spacing:0.048000px;}
.ls34{letter-spacing:0.060000px;}
.ls65{letter-spacing:0.069960px;}
.ls5b{letter-spacing:0.081600px;}
.ls9b{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.120000px;}
.lsb2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls93{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.270720px;}
.ls77{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.300000px;}
.ls84{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.360000px;}
.lsa8{letter-spacing:0.384000px;}
.ls70{letter-spacing:0.384780px;}
.ls43{letter-spacing:0.420000px;}
.ls8f{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.480000px;}
.ls89{letter-spacing:0.528000px;}
.ls1f{letter-spacing:0.540000px;}
.lsa5{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.600000px;}
.lsaa{letter-spacing:0.624000px;}
.ls6d{letter-spacing:0.628800px;}
.ls71{letter-spacing:0.654000px;}
.ls17{letter-spacing:0.660000px;}
.ls94{letter-spacing:0.672000px;}
.ls24{letter-spacing:0.720000px;}
.ls6a{letter-spacing:0.722520px;}
.ls3d{letter-spacing:0.780000px;}
.lsa1{letter-spacing:0.816000px;}
.ls2d{letter-spacing:0.840000px;}
.ls8b{letter-spacing:0.864000px;}
.ls64{letter-spacing:0.874500px;}
.lsb{letter-spacing:0.900000px;}
.lsb0{letter-spacing:0.912000px;}
.ls32{letter-spacing:0.960000px;}
.ls4b{letter-spacing:0.979440px;}
.lsae{letter-spacing:1.008000px;}
.ls3e{letter-spacing:1.020000px;}
.lsa2{letter-spacing:1.056000px;}
.lsf{letter-spacing:1.080000px;}
.ls83{letter-spacing:1.104000px;}
.ls36{letter-spacing:1.140000px;}
.ls96{letter-spacing:1.152000px;}
.ls69{letter-spacing:1.179000px;}
.lsc{letter-spacing:1.200000px;}
.ls81{letter-spacing:1.248000px;}
.ls3b{letter-spacing:1.260000px;}
.ls8a{letter-spacing:1.296000px;}
.ls18{letter-spacing:1.320000px;}
.ls23{letter-spacing:1.380000px;}
.ls82{letter-spacing:1.392000px;}
.ls38{letter-spacing:1.440000px;}
.ls95{letter-spacing:1.488000px;}
.ls53{letter-spacing:1.500000px;}
.ls80{letter-spacing:1.536000px;}
.ls6c{letter-spacing:1.557000px;}
.ls20{letter-spacing:1.560000px;}
.ls92{letter-spacing:1.584000px;}
.ls5a{letter-spacing:1.610400px;}
.lsa{letter-spacing:1.620000px;}
.ls9f{letter-spacing:1.632000px;}
.ls47{letter-spacing:1.666800px;}
.lse{letter-spacing:1.680000px;}
.ls98{letter-spacing:1.728000px;}
.ls28{letter-spacing:1.740000px;}
.ls87{letter-spacing:1.776000px;}
.ls2e{letter-spacing:1.800000px;}
.ls91{letter-spacing:1.824000px;}
.ls3c{letter-spacing:1.860000px;}
.lsad{letter-spacing:1.872000px;}
.ls8{letter-spacing:1.920000px;}
.lsaf{letter-spacing:1.968000px;}
.ls40{letter-spacing:1.980000px;}
.ls1a{letter-spacing:2.040000px;}
.ls8c{letter-spacing:2.064000px;}
.ls21{letter-spacing:2.100000px;}
.ls86{letter-spacing:2.112000px;}
.ls22{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.208000px;}
.ls27{letter-spacing:2.220000px;}
.lsab{letter-spacing:2.256000px;}
.ls3a{letter-spacing:2.280000px;}
.ls31{letter-spacing:2.340000px;}
.ls85{letter-spacing:2.352000px;}
.lsd{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.460000px;}
.ls49{letter-spacing:2.520000px;}
.ls19{letter-spacing:2.580000px;}
.lsb1{letter-spacing:2.592000px;}
.ls42{letter-spacing:2.640000px;}
.ls41{letter-spacing:2.700000px;}
.ls1c{letter-spacing:2.760000px;}
.ls5c{letter-spacing:2.820000px;}
.lsa7{letter-spacing:2.832000px;}
.ls46{letter-spacing:2.880000px;}
.ls12{letter-spacing:2.940000px;}
.ls9e{letter-spacing:2.976000px;}
.ls7{letter-spacing:3.000000px;}
.ls2b{letter-spacing:3.060000px;}
.ls51{letter-spacing:3.120000px;}
.lsa6{letter-spacing:3.168000px;}
.ls2c{letter-spacing:3.180000px;}
.ls9c{letter-spacing:3.216000px;}
.ls5d{letter-spacing:3.290400px;}
.ls5e{letter-spacing:3.300000px;}
.ls9a{letter-spacing:3.312000px;}
.ls9{letter-spacing:3.360000px;}
.ls45{letter-spacing:3.420000px;}
.lsb3{letter-spacing:3.456000px;}
.ls7b{letter-spacing:3.480000px;}
.ls97{letter-spacing:3.504000px;}
.ls57{letter-spacing:3.660000px;}
.ls1e{letter-spacing:3.780000px;}
.ls60{letter-spacing:3.840000px;}
.lsa9{letter-spacing:3.888000px;}
.ls30{letter-spacing:3.900000px;}
.ls52{letter-spacing:3.960000px;}
.ls62{letter-spacing:4.020000px;}
.ls7a{letter-spacing:4.080000px;}
.ls48{letter-spacing:4.140000px;}
.ls67{letter-spacing:4.200000px;}
.ls16{letter-spacing:4.260000px;}
.ls6{letter-spacing:4.320000px;}
.ls26{letter-spacing:4.380000px;}
.ls58{letter-spacing:4.440000px;}
.ls2f{letter-spacing:4.500000px;}
.ls6b{letter-spacing:4.560000px;}
.lsa3{letter-spacing:4.608000px;}
.lsac{letter-spacing:4.656000px;}
.ls44{letter-spacing:4.680000px;}
.ls7c{letter-spacing:4.740000px;}
.ls59{letter-spacing:4.860000px;}
.ls9d{letter-spacing:4.896000px;}
.ls3f{letter-spacing:4.920000px;}
.ls7f{letter-spacing:5.040000px;}
.ls99{letter-spacing:5.088000px;}
.ls2a{letter-spacing:5.100000px;}
.ls7e{letter-spacing:5.160000px;}
.lsa0{letter-spacing:5.184000px;}
.ls35{letter-spacing:5.400000px;}
.ls8e{letter-spacing:5.664000px;}
.ls25{letter-spacing:5.700000px;}
.ls73{letter-spacing:5.940000px;}
.ls7d{letter-spacing:6.120000px;}
.ls15{letter-spacing:6.180000px;}
.ls37{letter-spacing:6.660000px;}
.lsa4{letter-spacing:8.592000px;}
.ls55{letter-spacing:197.088000px;}
.ls76{letter-spacing:231.120000px;}
.ls54{letter-spacing:316.176000px;}
.ls72{letter-spacing:385.104000px;}
.ls4f{letter-spacing:388.680000px;}
.ls4e{letter-spacing:388.704600px;}
.ls4d{letter-spacing:392.712000px;}
.ls4c{letter-spacing:392.803800px;}
.ls6e{letter-spacing:402.096000px;}
.ls75{letter-spacing:473.790600px;}
.ls74{letter-spacing:539.834400px;}
.ls79{letter-spacing:543.505896px;}
.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;}
}
.ws99{word-spacing:-209.088000px;}
.wsf5{word-spacing:-194.208000px;}
.ws0{word-spacing:-34.561800px;}
.ws122{word-spacing:-19.740000px;}
.wsb{word-spacing:-19.320000px;}
.wsac{word-spacing:-18.300000px;}
.wsc1{word-spacing:-18.120000px;}
.ws10{word-spacing:-18.000000px;}
.ws101{word-spacing:-17.940000px;}
.ws124{word-spacing:-17.880000px;}
.wsfe{word-spacing:-17.460000px;}
.ws113{word-spacing:-17.220000px;}
.ws11{word-spacing:-17.160000px;}
.ws3b{word-spacing:-16.980000px;}
.ws103{word-spacing:-16.860000px;}
.ws12{word-spacing:-16.740000px;}
.ws4{word-spacing:-16.680000px;}
.ws13e{word-spacing:-16.656000px;}
.wsad{word-spacing:-16.560000px;}
.wsa4{word-spacing:-16.500000px;}
.ws102{word-spacing:-16.440000px;}
.ws96{word-spacing:-16.320000px;}
.ws95{word-spacing:-16.140000px;}
.wsff{word-spacing:-16.020000px;}
.ws100{word-spacing:-15.960000px;}
.wsa7{word-spacing:-15.900000px;}
.wsa8{word-spacing:-15.840000px;}
.ws104{word-spacing:-15.780000px;}
.wsf{word-spacing:-15.720000px;}
.wsa5{word-spacing:-15.660000px;}
.wsa6{word-spacing:-15.600000px;}
.ws3a{word-spacing:-15.540000px;}
.wsb1{word-spacing:-15.480000px;}
.ws169{word-spacing:-15.456000px;}
.ws123{word-spacing:-15.420000px;}
.wsc{word-spacing:-15.360000px;}
.wsaf{word-spacing:-15.300000px;}
.ws112{word-spacing:-15.180000px;}
.wsd{word-spacing:-15.120000px;}
.wsc9{word-spacing:-15.060000px;}
.wse{word-spacing:-15.000000px;}
.wsae{word-spacing:-14.940000px;}
.wsb0{word-spacing:-14.760000px;}
.ws97{word-spacing:-14.580000px;}
.ws166{word-spacing:-14.256000px;}
.ws126{word-spacing:-14.064000px;}
.ws167{word-spacing:-13.632000px;}
.ws11d{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.344000px;}
.ws13c{word-spacing:-13.200000px;}
.ws13b{word-spacing:-13.104000px;}
.ws141{word-spacing:-12.960000px;}
.ws125{word-spacing:-12.864000px;}
.ws13d{word-spacing:-12.816000px;}
.ws117{word-spacing:-12.720000px;}
.ws13f{word-spacing:-12.576000px;}
.ws5{word-spacing:-12.510000px;}
.ws140{word-spacing:-12.432000px;}
.ws16b{word-spacing:-12.240000px;}
.ws168{word-spacing:-12.144000px;}
.ws13a{word-spacing:-12.048000px;}
.ws76{word-spacing:-12.000000px;}
.ws165{word-spacing:-11.952000px;}
.ws16a{word-spacing:-11.904000px;}
.ws2{word-spacing:-10.210662px;}
.ws3c{word-spacing:-9.724440px;}
.wsa9{word-spacing:-9.619500px;}
.wscc{word-spacing:-9.129780px;}
.wsaa{word-spacing:-8.814960px;}
.wsab{word-spacing:-8.745000px;}
.ws3{word-spacing:-7.293330px;}
.ws58{word-spacing:-6.996000px;}
.ws44{word-spacing:-4.980000px;}
.ws153{word-spacing:-4.896000px;}
.ws127{word-spacing:-4.800000px;}
.ws12c{word-spacing:-4.740000px;}
.ws15a{word-spacing:-4.656000px;}
.wsd9{word-spacing:-4.560000px;}
.wsb4{word-spacing:-4.440000px;}
.ws50{word-spacing:-4.320000px;}
.ws21{word-spacing:-4.260000px;}
.wsb8{word-spacing:-4.020000px;}
.ws2f{word-spacing:-3.780000px;}
.ws14c{word-spacing:-3.552000px;}
.wsb5{word-spacing:-3.420000px;}
.ws163{word-spacing:-3.360000px;}
.ws150{word-spacing:-3.312000px;}
.wsd7{word-spacing:-3.300000px;}
.ws152{word-spacing:-3.216000px;}
.ws31{word-spacing:-3.180000px;}
.ws15d{word-spacing:-3.168000px;}
.ws15f{word-spacing:-3.120000px;}
.ws30{word-spacing:-3.060000px;}
.ws1e{word-spacing:-3.000000px;}
.ws154{word-spacing:-2.976000px;}
.ws10e{word-spacing:-2.940000px;}
.ws8{word-spacing:-2.886000px;}
.ws12b{word-spacing:-2.880000px;}
.ws15e{word-spacing:-2.832000px;}
.ws129{word-spacing:-2.820000px;}
.ws2e{word-spacing:-2.760000px;}
.ws46{word-spacing:-2.700000px;}
.ws4b{word-spacing:-2.640000px;}
.ws12a{word-spacing:-2.580000px;}
.ws24{word-spacing:-2.400000px;}
.ws90{word-spacing:-2.340000px;}
.ws130{word-spacing:-2.280000px;}
.ws164{word-spacing:-2.256000px;}
.ws2b{word-spacing:-2.220000px;}
.ws176{word-spacing:-2.208000px;}
.ws3d{word-spacing:-2.160000px;}
.ws16e{word-spacing:-2.112000px;}
.ws28{word-spacing:-2.100000px;}
.ws139{word-spacing:-2.064000px;}
.ws87{word-spacing:-2.040000px;}
.ws16f{word-spacing:-2.016000px;}
.ws45{word-spacing:-1.980000px;}
.ws16c{word-spacing:-1.872000px;}
.ws8b{word-spacing:-1.860000px;}
.ws144{word-spacing:-1.824000px;}
.wsc0{word-spacing:-1.800000px;}
.ws135{word-spacing:-1.776000px;}
.ws2d{word-spacing:-1.740000px;}
.ws14d{word-spacing:-1.728000px;}
.ws15{word-spacing:-1.680000px;}
.ws156{word-spacing:-1.632000px;}
.ws23{word-spacing:-1.620000px;}
.ws145{word-spacing:-1.584000px;}
.ws4d{word-spacing:-1.560000px;}
.ws15c{word-spacing:-1.536000px;}
.ws9f{word-spacing:-1.500000px;}
.ws4e{word-spacing:-1.440000px;}
.ws2a{word-spacing:-1.380000px;}
.ws174{word-spacing:-1.344000px;}
.ws22{word-spacing:-1.320000px;}
.ws149{word-spacing:-1.296000px;}
.ws92{word-spacing:-1.260000px;}
.ws155{word-spacing:-1.248000px;}
.ws1f{word-spacing:-1.200000px;}
.ws157{word-spacing:-1.152000px;}
.ws38{word-spacing:-1.140000px;}
.ws132{word-spacing:-1.104000px;}
.ws40{word-spacing:-1.080000px;}
.ws159{word-spacing:-1.056000px;}
.ws43{word-spacing:-1.020000px;}
.ws48{word-spacing:-0.960000px;}
.ws171{word-spacing:-0.912000px;}
.ws8c{word-spacing:-0.900000px;}
.ws14f{word-spacing:-0.864000px;}
.wsb9{word-spacing:-0.840000px;}
.ws175{word-spacing:-0.816000px;}
.ws8f{word-spacing:-0.780000px;}
.ws3e{word-spacing:-0.720000px;}
.ws147{word-spacing:-0.672000px;}
.ws52{word-spacing:-0.660000px;}
.ws172{word-spacing:-0.624000px;}
.wsb6{word-spacing:-0.600000px;}
.ws15b{word-spacing:-0.576000px;}
.ws49{word-spacing:-0.540000px;}
.ws136{word-spacing:-0.528000px;}
.wsa0{word-spacing:-0.480000px;}
.ws142{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.420000px;}
.ws158{word-spacing:-0.384000px;}
.ws1d{word-spacing:-0.360000px;}
.ws134{word-spacing:-0.336000px;}
.ws33{word-spacing:-0.300000px;}
.wsfd{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.240000px;}
.ws146{word-spacing:-0.192000px;}
.wsba{word-spacing:-0.180000px;}
.ws178{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.120000px;}
.ws14e{word-spacing:-0.096000px;}
.ws17{word-spacing:-0.060000px;}
.ws143{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wscb{word-spacing:0.048000px;}
.ws4f{word-spacing:0.060000px;}
.ws137{word-spacing:0.096000px;}
.wsb2{word-spacing:0.120000px;}
.wsa{word-spacing:0.135000px;}
.ws177{word-spacing:0.144000px;}
.ws54{word-spacing:0.180000px;}
.ws170{word-spacing:0.192000px;}
.wsb3{word-spacing:0.240000px;}
.ws173{word-spacing:0.288000px;}
.ws27{word-spacing:0.300000px;}
.wsbe{word-spacing:0.360000px;}
.ws78{word-spacing:0.420000px;}
.ws151{word-spacing:0.432000px;}
.ws121{word-spacing:0.540000px;}
.ws56{word-spacing:0.600000px;}
.ws9{word-spacing:0.633000px;}
.ws10d{word-spacing:0.720000px;}
.wsc5{word-spacing:0.816000px;}
.wsc4{word-spacing:0.840000px;}
.wsc2{word-spacing:0.960000px;}
.ws16{word-spacing:1.020000px;}
.ws11f{word-spacing:1.080000px;}
.ws2c{word-spacing:1.200000px;}
.ws4a{word-spacing:1.260000px;}
.ws161{word-spacing:1.296000px;}
.ws91{word-spacing:1.320000px;}
.ws1c{word-spacing:1.380000px;}
.wsbb{word-spacing:1.500000px;}
.ws88{word-spacing:1.560000px;}
.ws20{word-spacing:1.620000px;}
.ws9e{word-spacing:1.740000px;}
.wsa3{word-spacing:1.776000px;}
.ws29{word-spacing:1.800000px;}
.ws36{word-spacing:1.860000px;}
.ws138{word-spacing:1.872000px;}
.wsf0{word-spacing:1.920000px;}
.ws39{word-spacing:1.980000px;}
.wsc3{word-spacing:2.016000px;}
.ws89{word-spacing:2.040000px;}
.ws12f{word-spacing:2.100000px;}
.wsa1{word-spacing:2.160000px;}
.wsc8{word-spacing:2.208000px;}
.ws93{word-spacing:2.220000px;}
.wsa2{word-spacing:2.280000px;}
.ws8e{word-spacing:2.340000px;}
.wsd8{word-spacing:2.520000px;}
.ws11e{word-spacing:2.580000px;}
.ws120{word-spacing:2.700000px;}
.ws160{word-spacing:2.736000px;}
.ws34{word-spacing:2.760000px;}
.ws18{word-spacing:2.820000px;}
.ws14a{word-spacing:2.832000px;}
.ws128{word-spacing:2.880000px;}
.ws179{word-spacing:2.928000px;}
.ws133{word-spacing:3.024000px;}
.ws8a{word-spacing:3.060000px;}
.ws17a{word-spacing:3.072000px;}
.ws148{word-spacing:3.120000px;}
.ws14b{word-spacing:3.168000px;}
.ws35{word-spacing:3.180000px;}
.ws110{word-spacing:3.240000px;}
.wsc7{word-spacing:3.360000px;}
.wsbc{word-spacing:3.420000px;}
.ws41{word-spacing:3.480000px;}
.wsbf{word-spacing:3.540000px;}
.wsda{word-spacing:3.600000px;}
.ws16d{word-spacing:3.648000px;}
.wsca{word-spacing:3.660000px;}
.ws162{word-spacing:3.696000px;}
.ws55{word-spacing:3.780000px;}
.ws3f{word-spacing:3.840000px;}
.ws1a{word-spacing:3.900000px;}
.ws118{word-spacing:3.936000px;}
.ws131{word-spacing:3.984000px;}
.ws10f{word-spacing:4.080000px;}
.ws8d{word-spacing:4.140000px;}
.wsdb{word-spacing:4.200000px;}
.ws47{word-spacing:4.260000px;}
.ws94{word-spacing:4.320000px;}
.ws37{word-spacing:4.380000px;}
.ws42{word-spacing:4.500000px;}
.ws19{word-spacing:4.560000px;}
.ws4c{word-spacing:4.620000px;}
.ws32{word-spacing:4.680000px;}
.ws53{word-spacing:4.740000px;}
.wsbd{word-spacing:4.800000px;}
.wsb7{word-spacing:4.860000px;}
.ws14{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.wsc6{word-spacing:5.220000px;}
.ws11c{word-spacing:5.280000px;}
.ws12e{word-spacing:5.460000px;}
.ws12d{word-spacing:5.520000px;}
.wsdc{word-spacing:5.640000px;}
.ws111{word-spacing:6.300000px;}
.ws26{word-spacing:8.760000px;}
.ws1{word-spacing:49.321242px;}
.ws9b{word-spacing:101.088000px;}
.ws9d{word-spacing:102.000000px;}
.ws9c{word-spacing:102.864000px;}
.ws9a{word-spacing:162.000000px;}
.wsfc{word-spacing:207.120000px;}
.wsf3{word-spacing:208.464000px;}
.wsf7{word-spacing:219.120000px;}
.ws98{word-spacing:304.176000px;}
.wse2{word-spacing:305.184000px;}
.wse5{word-spacing:306.096000px;}
.ws67{word-spacing:342.072000px;}
.wse0{word-spacing:343.872000px;}
.ws62{word-spacing:344.683800px;}
.ws5b{word-spacing:344.687400px;}
.ws5e{word-spacing:344.712000px;}
.ws68{word-spacing:345.024000px;}
.ws61{word-spacing:346.008000px;}
.ws5f{word-spacing:346.036200px;}
.ws5c{word-spacing:347.664000px;}
.ws63{word-spacing:347.679000px;}
.ws60{word-spacing:349.008000px;}
.ws5d{word-spacing:350.040000px;}
.wsdf{word-spacing:353.619072px;}
.wsde{word-spacing:354.480000px;}
.ws5a{word-spacing:355.680000px;}
.ws59{word-spacing:359.664000px;}
.wsd0{word-spacing:360.864000px;}
.ws6c{word-spacing:365.952000px;}
.ws64{word-spacing:366.025200px;}
.ws66{word-spacing:366.072000px;}
.ws6d{word-spacing:368.880000px;}
.ws65{word-spacing:369.024000px;}
.ws6e{word-spacing:369.072000px;}
.ws77{word-spacing:370.416000px;}
.wscf{word-spacing:370.626672px;}
.ws6a{word-spacing:371.280000px;}
.wsce{word-spacing:371.472000px;}
.ws69{word-spacing:372.192000px;}
.ws70{word-spacing:373.056000px;}
.ws72{word-spacing:373.968000px;}
.ws6b{word-spacing:374.208000px;}
.wsd5{word-spacing:387.360000px;}
.wsd1{word-spacing:395.376000px;}
.ws57{word-spacing:402.432000px;}
.ws74{word-spacing:403.536000px;}
.ws10a{word-spacing:405.744000px;}
.ws7b{word-spacing:408.864000px;}
.wsf4{word-spacing:415.008000px;}
.wsd6{word-spacing:419.376000px;}
.ws116{word-spacing:420.288000px;}
.ws71{word-spacing:422.640000px;}
.wsd4{word-spacing:422.976000px;}
.wsf9{word-spacing:423.024000px;}
.ws73{word-spacing:427.056000px;}
.ws83{word-spacing:427.296000px;}
.wsfa{word-spacing:428.304000px;}
.ws7e{word-spacing:431.328000px;}
.wsef{word-spacing:442.512000px;}
.ws109{word-spacing:445.728000px;}
.wsd2{word-spacing:446.928000px;}
.wsfb{word-spacing:446.976000px;}
.ws7c{word-spacing:451.296000px;}
.ws81{word-spacing:452.160000px;}
.ws108{word-spacing:462.624000px;}
.wsf8{word-spacing:463.008000px;}
.ws79{word-spacing:473.952000px;}
.wsd3{word-spacing:478.944000px;}
.wsf6{word-spacing:481.632000px;}
.ws7a{word-spacing:489.264000px;}
.ws107{word-spacing:500.400000px;}
.ws10b{word-spacing:503.040000px;}
.ws10c{word-spacing:521.712000px;}
.ws106{word-spacing:528.624000px;}
.ws105{word-spacing:543.504000px;}
.wsed{word-spacing:545.232000px;}
.wse3{word-spacing:555.888000px;}
.wseb{word-spacing:563.904000px;}
.wsee{word-spacing:569.184000px;}
.wse4{word-spacing:571.920000px;}
.wse1{word-spacing:590.544000px;}
.wsec{word-spacing:595.920000px;}
.wse8{word-spacing:599.520000px;}
.ws11a{word-spacing:602.592000px;}
.wse9{word-spacing:603.888000px;}
.wsea{word-spacing:620.725200px;}
.wse6{word-spacing:639.504000px;}
.ws6f{word-spacing:641.232000px;}
.wscd{word-spacing:643.776000px;}
.wse7{word-spacing:655.488000px;}
.ws11b{word-spacing:666.576000px;}
.ws115{word-spacing:669.216000px;}
.ws75{word-spacing:689.232000px;}
.wsdd{word-spacing:720.288000px;}
.ws114{word-spacing:866.976000px;}
.ws119{word-spacing:909.648000px;}
.wsf2{word-spacing:936.048000px;}
.ws7f{word-spacing:992.304000px;}
.ws82{word-spacing:1024.272000px;}
.ws80{word-spacing:1035.840000px;}
.ws85{word-spacing:1108.272000px;}
.ws84{word-spacing:1114.944000px;}
.ws86{word-spacing:1117.632000px;}
.ws7d{word-spacing:1183.008000px;}
.wsf1{word-spacing:1225.200000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._3c{margin-left:-12.000000px;}
._2{margin-left:-9.368400px;}
._2a{margin-left:-7.140000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.375660px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._5{width:1.053720px;}
._6{width:2.400000px;}
._b{width:3.435660px;}
._8{width:4.680000px;}
._7{width:6.300000px;}
._9{width:8.160000px;}
._a{width:9.180000px;}
._d{width:10.536000px;}
._36{width:80.208000px;}
._39{width:82.518000px;}
._43{width:113.088000px;}
._41{width:115.110000px;}
._48{width:134.256000px;}
._4e{width:135.654000px;}
._7e{width:154.656000px;}
._46{width:159.120000px;}
._86{width:164.640000px;}
._45{width:168.630000px;}
._3b{width:172.224000px;}
._49{width:182.256000px;}
._85{width:184.608000px;}
._7d{width:188.640000px;}
._7c{width:194.640000px;}
._87{width:196.608000px;}
._44{width:214.320000px;}
._77{width:219.120000px;}
._70{width:225.072000px;}
._76{width:231.120000px;}
._12{width:235.536000px;}
._81{width:256.656000px;}
._25{width:258.192000px;}
._28{width:259.920000px;}
._42{width:262.320000px;}
._78{width:268.032000px;}
._21{width:270.726000px;}
._80{width:278.640000px;}
._3e{width:280.992000px;}
._1f{width:282.975660px;}
._7f{width:284.640000px;}
._3f{width:297.024000px;}
._40{width:313.008000px;}
._3d{width:315.648000px;}
._65{width:317.184000px;}
._5a{width:319.446000px;}
._79{width:324.000000px;}
._72{width:327.984000px;}
._53{width:329.184000px;}
._5b{width:330.630000px;}
._71{width:334.800000px;}
._7a{width:335.952000px;}
._20{width:357.168000px;}
._89{width:360.720000px;}
._84{width:364.080000px;}
._4c{width:367.392000px;}
._74{width:369.072000px;}
._8b{width:372.048000px;}
._83{width:373.200000px;}
._26{width:375.840000px;}
._88{width:379.866000px;}
._1d{width:381.414000px;}
._1e{width:384.000000px;}
._1a{width:386.304000px;}
._4a{width:391.344000px;}
._7b{width:397.776000px;}
._24{width:408.912000px;}
._27{width:411.322860px;}
._13{width:414.207660px;}
._52{width:415.392000px;}
._23{width:418.656000px;}
._4b{width:423.360000px;}
._47{width:426.000000px;}
._8f{width:432.288000px;}
._92{width:433.935660px;}
._4f{width:439.344000px;}
._8c{width:443.040000px;}
._50{width:455.328000px;}
._73{width:458.976000px;}
._2f{width:463.296000px;}
._6f{width:466.512000px;}
._51{width:471.360000px;}
._4d{width:474.912000px;}
._59{width:477.168000px;}
._75{width:478.992000px;}
._8a{width:483.072000px;}
._6d{width:485.232000px;}
._6e{width:490.512000px;}
._57{width:501.168000px;}
._f{width:505.296000px;}
._62{width:509.184000px;}
._15{width:512.112000px;}
._19{width:513.888000px;}
._82{width:520.560000px;}
._58{width:525.168000px;}
._60{width:533.184000px;}
._6b{width:541.200000px;}
._10{width:544.320000px;}
._17{width:548.064000px;}
._55{width:549.216000px;}
._11{width:550.992000px;}
._61{width:557.184000px;}
._6c{width:563.904000px;}
._69{width:565.200000px;}
._56{width:567.888000px;}
._5f{width:569.184000px;}
._66{width:573.216000px;}
._64{width:585.216000px;}
._18{width:588.048000px;}
._6a{width:589.200000px;}
._16{width:590.736000px;}
._5e{width:591.840000px;}
._2c{width:596.736000px;}
._54{width:599.904000px;}
._67{width:601.200000px;}
._5c{width:603.840000px;}
._8e{width:614.592000px;}
._68{width:619.872000px;}
._5d{width:622.512000px;}
._14{width:625.344000px;}
._3a{width:631.728000px;}
._22{width:634.560000px;}
._63{width:647.904000px;}
._1b{width:654.480000px;}
._35{width:655.680000px;}
._90{width:662.592000px;}
._1c{width:664.422000px;}
._37{width:671.712000px;}
._91{width:678.576000px;}
._38{width:688.608000px;}
._34{width:690.336000px;}
._2d{width:693.072000px;}
._29{width:766.512000px;}
._2e{width:955.776000px;}
._30{width:1038.912000px;}
._8d{width:1071.216000px;}
._32{width:1112.304000px;}
._2b{width:1115.040000px;}
._31{width:1126.944000px;}
._33{width:1129.632000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsc{font-size:32.400000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2a{bottom:47.777250px;}
.y221{bottom:79.084050px;}
.y202{bottom:79.417200px;}
.y11e{bottom:80.937750px;}
.y261{bottom:83.353950px;}
.y15c{bottom:83.460300px;}
.y284{bottom:83.635350px;}
.y134{bottom:83.635500px;}
.y8b{bottom:83.770350px;}
.y5f{bottom:83.772600px;}
.y15f{bottom:83.779200px;}
.ye6{bottom:83.912100px;}
.yb2{bottom:83.920350px;}
.y27{bottom:88.340250px;}
.y2a3{bottom:89.121900px;}
.y242{bottom:90.306750px;}
.y150{bottom:92.592000px;}
.y24b{bottom:92.650800px;}
.y259{bottom:92.953950px;}
.y2e4{bottom:95.263500px;}
.y220{bottom:95.584050px;}
.y201{bottom:95.917200px;}
.y260{bottom:99.097950px;}
.y15b{bottom:99.204300px;}
.y15e{bottom:99.523200px;}
.y133{bottom:99.883500px;}
.y1c7{bottom:100.300950px;}
.y190{bottom:100.426800px;}
.y283{bottom:101.635350px;}
.y8a{bottom:101.770350px;}
.y5e{bottom:101.772600px;}
.ye5{bottom:101.912100px;}
.yb1{bottom:101.920350px;}
.y26{bottom:103.336500px;}
.y2a2{bottom:104.121900px;}
.y11d{bottom:105.273750px;}
.y241{bottom:106.554750px;}
.y14f{bottom:108.840000px;}
.y24a{bottom:108.898800px;}
.y258{bottom:109.201950px;}
.y2e3{bottom:110.263500px;}
.y200{bottom:112.417200px;}
.y132{bottom:116.131500px;}
.y1c6{bottom:116.548950px;}
.y18f{bottom:116.674800px;}
.y25{bottom:118.330050px;}
.y2a1{bottom:119.121900px;}
.y282{bottom:119.635350px;}
.y89{bottom:119.770350px;}
.y5d{bottom:119.772600px;}
.ye4{bottom:119.912100px;}
.yb0{bottom:119.920350px;}
.y11c{bottom:120.249750px;}
.y21f{bottom:121.096050px;}
.y240{bottom:122.802750px;}
.y14e{bottom:125.088000px;}
.y249{bottom:125.146800px;}
.y2e2{bottom:125.263500px;}
.y257{bottom:125.449950px;}
.y1ff{bottom:128.917200px;}
.y131{bottom:132.379500px;}
.y1c5{bottom:132.796950px;}
.y18e{bottom:132.922800px;}
.y2a0{bottom:134.121900px;}
.y11b{bottom:135.188850px;}
.y21e{bottom:137.344050px;}
.y281{bottom:137.635350px;}
.y88{bottom:137.770350px;}
.y5c{bottom:137.772600px;}
.ye3{bottom:137.912100px;}
.yaf{bottom:137.920350px;}
.y23f{bottom:139.050750px;}
.y2e1{bottom:140.263500px;}
.y14d{bottom:141.336000px;}
.y248{bottom:141.394800px;}
.y256{bottom:141.697950px;}
.y1fe{bottom:145.417200px;}
.y130{bottom:148.627500px;}
.y1c4{bottom:149.044950px;}
.y29f{bottom:149.121900px;}
.y18d{bottom:149.170800px;}
.y11a{bottom:150.164850px;}
.y21d{bottom:153.592050px;}
.y2e0{bottom:155.263500px;}
.y23e{bottom:155.298750px;}
.y280{bottom:155.635350px;}
.y87{bottom:155.770350px;}
.y5b{bottom:155.772600px;}
.ye2{bottom:155.912100px;}
.yae{bottom:155.920350px;}
.y14c{bottom:157.584000px;}
.y247{bottom:157.642800px;}
.y1fd{bottom:161.917200px;}
.y29e{bottom:164.121900px;}
.y12f{bottom:164.875500px;}
.y119{bottom:165.140850px;}
.y1c3{bottom:165.292950px;}
.y18c{bottom:165.418800px;}
.y21c{bottom:169.840050px;}
.y2df{bottom:170.263500px;}
.y23d{bottom:171.546750px;}
.y255{bottom:173.209950px;}
.y27f{bottom:173.635350px;}
.y86{bottom:173.770350px;}
.y5a{bottom:173.772600px;}
.y14b{bottom:173.832000px;}
.ye1{bottom:173.912100px;}
.yad{bottom:173.920350px;}
.y1fc{bottom:178.417200px;}
.y29d{bottom:179.121900px;}
.y118{bottom:180.116850px;}
.y12e{bottom:181.123500px;}
.y1c2{bottom:181.540950px;}
.y18b{bottom:181.666800px;}
.y2de{bottom:185.263500px;}
.y21b{bottom:186.088050px;}
.y23c{bottom:187.794750px;}
.y246{bottom:189.154800px;}
.y14a{bottom:190.080000px;}
.y27e{bottom:191.635350px;}
.y85{bottom:191.770350px;}
.y59{bottom:191.772600px;}
.ye0{bottom:191.912100px;}
.yac{bottom:191.920350px;}
.y29c{bottom:194.121900px;}
.y1fb{bottom:194.917200px;}
.y12d{bottom:197.371500px;}
.y1c1{bottom:197.788950px;}
.y18a{bottom:197.914800px;}
.y2dd{bottom:200.263500px;}
.y21a{bottom:202.336050px;}
.y23b{bottom:204.042750px;}
.y117{bottom:204.452850px;}
.y149{bottom:206.328000px;}
.y254{bottom:208.105050px;}
.y29b{bottom:209.121900px;}
.y27d{bottom:209.635350px;}
.y84{bottom:209.770350px;}
.y58{bottom:209.772600px;}
.ydf{bottom:209.912100px;}
.yab{bottom:209.920350px;}
.y1fa{bottom:211.417200px;}
.y12c{bottom:213.619500px;}
.y1c0{bottom:214.036950px;}
.y189{bottom:214.162800px;}
.y2dc{bottom:215.263500px;}
.y219{bottom:218.584050px;}
.y23a{bottom:220.290750px;}
.y148{bottom:222.576000px;}
.y245{bottom:224.052600px;}
.y29a{bottom:224.121900px;}
.y116{bottom:224.324850px;}
.y27c{bottom:227.635350px;}
.y83{bottom:227.770350px;}
.y57{bottom:227.772600px;}
.yde{bottom:227.912100px;}
.y1f9{bottom:227.917200px;}
.yaa{bottom:227.920350px;}
.y12b{bottom:229.867500px;}
.y2db{bottom:230.263500px;}
.y1bf{bottom:230.284950px;}
.y188{bottom:230.410800px;}
.y218{bottom:234.832050px;}
.y239{bottom:236.538750px;}
.y147{bottom:238.824000px;}
.y299{bottom:239.121900px;}
.y115{bottom:239.300850px;}
.y1f8{bottom:244.417200px;}
.y2da{bottom:245.263500px;}
.y27b{bottom:245.635350px;}
.y82{bottom:245.770350px;}
.y56{bottom:245.772600px;}
.ydd{bottom:245.912100px;}
.ya9{bottom:245.920350px;}
.y12a{bottom:246.115500px;}
.y1be{bottom:246.532950px;}
.y187{bottom:246.658800px;}
.y217{bottom:251.080050px;}
.y238{bottom:252.786750px;}
.y298{bottom:254.121900px;}
.y146{bottom:255.072000px;}
.y2d9{bottom:260.263500px;}
.y253{bottom:260.678400px;}
.y1f7{bottom:260.917200px;}
.y129{bottom:262.363500px;}
.y1bd{bottom:262.864200px;}
.y186{bottom:262.906800px;}
.y27a{bottom:263.635350px;}
.y114{bottom:263.636850px;}
.y81{bottom:263.770350px;}
.y55{bottom:263.772600px;}
.ya8{bottom:263.920350px;}
.ydc{bottom:263.935350px;}
.y216{bottom:267.328050px;}
.y24{bottom:268.114200px;}
.y297{bottom:269.121900px;}
.y24d{bottom:269.802900px;}
.y2d8{bottom:275.263500px;}
.y252{bottom:276.926400px;}
.y1f6{bottom:277.417200px;}
.y237{bottom:277.914750px;}
.y128{bottom:278.611500px;}
.y1bc{bottom:279.112200px;}
.y185{bottom:279.154800px;}
.y279{bottom:281.635350px;}
.y80{bottom:281.770350px;}
.y54{bottom:281.772600px;}
.ya7{bottom:281.920350px;}
.ydb{bottom:281.935350px;}
.y215{bottom:283.576050px;}
.y296{bottom:284.121900px;}
.y24c{bottom:285.546900px;}
.y145{bottom:286.584000px;}
.y113{bottom:287.972850px;}
.y2d7{bottom:290.263500px;}
.y251{bottom:293.174400px;}
.y1f5{bottom:293.917200px;}
.y127{bottom:294.859500px;}
.y1bb{bottom:295.360200px;}
.y184{bottom:295.402800px;}
.y23{bottom:295.459200px;}
.y295{bottom:299.121900px;}
.y278{bottom:299.635350px;}
.y7f{bottom:299.770350px;}
.y53{bottom:299.772600px;}
.ya6{bottom:299.920350px;}
.yda{bottom:299.935350px;}
.y112{bottom:302.948850px;}
.y2d6{bottom:305.263500px;}
.y1f4{bottom:310.417200px;}
.y126{bottom:311.107500px;}
.y1ba{bottom:311.608200px;}
.y183{bottom:311.650800px;}
.y214{bottom:312.580050px;}
.y236{bottom:312.805350px;}
.y22{bottom:313.459200px;}
.y294{bottom:314.121900px;}
.y152{bottom:317.515350px;}
.y277{bottom:317.635350px;}
.y7e{bottom:317.770350px;}
.y52{bottom:317.772600px;}
.ya5{bottom:317.920350px;}
.y111{bottom:317.924850px;}
.yd9{bottom:317.935350px;}
.y2d5{bottom:320.263500px;}
.y144{bottom:321.479100px;}
.y250{bottom:324.686400px;}
.y1f3{bottom:326.917200px;}
.y125{bottom:327.355500px;}
.y1b9{bottom:327.856200px;}
.y182{bottom:327.898800px;}
.y293{bottom:329.121900px;}
.y21{bottom:331.459200px;}
.y110{bottom:332.900850px;}
.y2d4{bottom:335.263500px;}
.y276{bottom:335.635350px;}
.y7d{bottom:335.770350px;}
.y51{bottom:335.772600px;}
.ya4{bottom:335.920350px;}
.yd8{bottom:335.935350px;}
.y143{bottom:340.979100px;}
.y1f2{bottom:343.417200px;}
.y1b8{bottom:344.104200px;}
.y292{bottom:344.121900px;}
.y213{bottom:344.971200px;}
.y20{bottom:349.459200px;}
.y2d3{bottom:350.263500px;}
.y275{bottom:353.635350px;}
.y7c{bottom:353.770350px;}
.y50{bottom:353.772600px;}
.ya3{bottom:353.920350px;}
.yd7{bottom:353.935350px;}
.y10f{bottom:357.236850px;}
.y124{bottom:358.867500px;}
.y291{bottom:359.121900px;}
.y181{bottom:359.410800px;}
.y24f{bottom:359.575350px;}
.y1f1{bottom:359.917200px;}
.y1b7{bottom:360.352200px;}
.y212{bottom:364.471200px;}
.y2d2{bottom:365.263500px;}
.y1f{bottom:367.459200px;}
.y274{bottom:371.635350px;}
.y7b{bottom:371.770350px;}
.y4f{bottom:371.772600px;}
.ya2{bottom:371.920350px;}
.yd6{bottom:371.935350px;}
.y10e{bottom:372.212850px;}
.y290{bottom:374.121900px;}
.y1f0{bottom:376.417200px;}
.y1b6{bottom:376.600200px;}
.y2d1{bottom:380.263500px;}
.y1e{bottom:385.459200px;}
.y28f{bottom:389.121900px;}
.y235{bottom:389.515350px;}
.y273{bottom:389.635350px;}
.y7a{bottom:389.770350px;}
.y4e{bottom:389.772600px;}
.ya1{bottom:389.920350px;}
.yd5{bottom:389.935350px;}
.y1b5{bottom:392.848200px;}
.y1ef{bottom:392.917200px;}
.y123{bottom:393.760350px;}
.y180{bottom:394.305900px;}
.y142{bottom:394.402800px;}
.y2d0{bottom:395.263500px;}
.y10d{bottom:396.548850px;}
.y1d{bottom:403.459200px;}
.y25a{bottom:403.549950px;}
.y28e{bottom:404.121900px;}
.y232{bottom:406.158600px;}
.y272{bottom:407.230350px;}
.y234{bottom:407.515350px;}
.y79{bottom:407.770350px;}
.y4d{bottom:407.772600px;}
.ya0{bottom:407.920350px;}
.yd4{bottom:407.935350px;}
.y1b4{bottom:409.096200px;}
.y1ee{bottom:409.417200px;}
.y2cf{bottom:410.263500px;}
.y141{bottom:410.650800px;}
.y10c{bottom:411.524850px;}
.y122{bottom:413.260350px;}
.y17f{bottom:413.805900px;}
.y28d{bottom:419.121900px;}
.y1c{bottom:421.459200px;}
.y231{bottom:422.658600px;}
.y2ce{bottom:425.263500px;}
.y1b3{bottom:425.344200px;}
.y78{bottom:425.770350px;}
.y4c{bottom:425.772600px;}
.y1ed{bottom:425.917200px;}
.y9f{bottom:425.920350px;}
.yd3{bottom:425.935350px;}
.y10b{bottom:426.500850px;}
.y140{bottom:426.898800px;}
.y17e{bottom:433.300350px;}
.y28c{bottom:434.121900px;}
.y1b{bottom:439.459200px;}
.y2cd{bottom:440.263500px;}
.y10a{bottom:441.476850px;}
.y1b2{bottom:441.592200px;}
.y13f{bottom:443.146800px;}
.y271{bottom:443.635350px;}
.y77{bottom:443.770350px;}
.y4b{bottom:443.772600px;}
.y9e{bottom:443.920350px;}
.yd2{bottom:443.935350px;}
.y230{bottom:448.170600px;}
.y28b{bottom:449.121900px;}
.y1ec{bottom:452.257200px;}
.y17d{bottom:452.800350px;}
.y2cc{bottom:455.263500px;}
.y109{bottom:456.452850px;}
.y1a{bottom:457.459200px;}
.y1b1{bottom:457.840200px;}
.y13e{bottom:459.394800px;}
.y270{bottom:461.635350px;}
.y76{bottom:461.770350px;}
.y4a{bottom:461.772600px;}
.y9d{bottom:461.920350px;}
.yd1{bottom:461.935350px;}
.y28a{bottom:464.121900px;}
.y22f{bottom:464.670600px;}
.y2cb{bottom:470.263500px;}
.y1b0{bottom:474.088200px;}
.y19{bottom:475.459200px;}
.y13d{bottom:475.642800px;}
.y26f{bottom:479.635350px;}
.y75{bottom:479.770350px;}
.y49{bottom:479.772600px;}
.y9c{bottom:479.920350px;}
.yd0{bottom:479.935350px;}
.y108{bottom:480.788850px;}
.y22e{bottom:480.918600px;}
.y1eb{bottom:484.648350px;}
.y2ca{bottom:485.263500px;}
.y1af{bottom:490.336200px;}
.y18{bottom:493.459200px;}
.y107{bottom:495.764850px;}
.y289{bottom:497.230350px;}
.y22d{bottom:497.418600px;}
.y26e{bottom:497.635350px;}
.y74{bottom:497.770350px;}
.y48{bottom:497.772600px;}
.y17c{bottom:497.907600px;}
.y9b{bottom:497.920350px;}
.y2c9{bottom:500.263500px;}
.y1ea{bottom:504.148350px;}
.y25f{bottom:505.112100px;}
.y1ae{bottom:506.584200px;}
.y13c{bottom:507.154800px;}
.y106{bottom:510.740850px;}
.y17{bottom:511.459200px;}
.y22c{bottom:513.666600px;}
.y2c8{bottom:515.263500px;}
.ycf{bottom:515.530350px;}
.y26d{bottom:515.635350px;}
.y73{bottom:515.770350px;}
.y47{bottom:515.772600px;}
.y17b{bottom:515.907600px;}
.y1ad{bottom:522.832200px;}
.y105{bottom:525.716850px;}
.y16{bottom:529.459200px;}
.y22b{bottom:530.166600px;}
.y2c7{bottom:530.263500px;}
.y9a{bottom:533.515350px;}
.y26c{bottom:533.635350px;}
.y72{bottom:533.770350px;}
.y46{bottom:533.772600px;}
.y17a{bottom:533.907600px;}
.y1ac{bottom:539.080200px;}
.y25e{bottom:539.952750px;}
.y104{bottom:540.692850px;}
.y13b{bottom:542.065350px;}
.y2c6{bottom:545.263500px;}
.y22a{bottom:546.414600px;}
.y15{bottom:547.459200px;}
.y99{bottom:551.515350px;}
.y26b{bottom:551.635350px;}
.y1e9{bottom:551.727150px;}
.y71{bottom:551.770350px;}
.y45{bottom:551.772600px;}
.yce{bottom:551.785350px;}
.y179{bottom:551.907600px;}
.y1ab{bottom:555.328200px;}
.y25d{bottom:555.558750px;}
.y2c5{bottom:560.263500px;}
.y13a{bottom:561.565350px;}
.y229{bottom:562.914600px;}
.y1e8{bottom:563.723250px;}
.y103{bottom:565.029300px;}
.y14{bottom:565.459200px;}
.y26a{bottom:569.635350px;}
.y70{bottom:569.770350px;}
.y44{bottom:569.772600px;}
.ycd{bottom:569.785350px;}
.y178{bottom:569.907600px;}
.y25c{bottom:569.920350px;}
.y1aa{bottom:571.576200px;}
.y2c4{bottom:575.263500px;}
.y1e7{bottom:575.719350px;}
.y228{bottom:579.162600px;}
.y102{bottom:580.005600px;}
.y13{bottom:583.459200px;}
.y25b{bottom:587.515350px;}
.y269{bottom:587.635350px;}
.y1e6{bottom:587.715450px;}
.y6f{bottom:587.770350px;}
.y43{bottom:587.772600px;}
.ycc{bottom:587.785350px;}
.y1a9{bottom:587.903400px;}
.y177{bottom:587.907600px;}
.y2c3{bottom:590.263500px;}
.y101{bottom:594.982050px;}
.y227{bottom:595.662600px;}
.y1e5{bottom:599.711550px;}
.y12{bottom:601.459200px;}
.y1a8{bottom:604.151400px;}
.y2c2{bottom:605.263500px;}
.y268{bottom:605.635350px;}
.y6e{bottom:605.770350px;}
.y42{bottom:605.772600px;}
.ycb{bottom:605.785350px;}
.y176{bottom:605.907600px;}
.y139{bottom:605.920350px;}
.y100{bottom:609.958500px;}
.y1e4{bottom:611.707650px;}
.y226{bottom:611.910600px;}
.y11{bottom:619.459200px;}
.y2c1{bottom:620.263500px;}
.y1a7{bottom:620.399400px;}
.y267{bottom:623.635350px;}
.y1e3{bottom:623.703750px;}
.y6d{bottom:623.770350px;}
.y41{bottom:623.772600px;}
.yca{bottom:623.785350px;}
.y175{bottom:623.907600px;}
.yff{bottom:624.934800px;}
.y225{bottom:628.410600px;}
.y2c0{bottom:635.263500px;}
.y1e2{bottom:635.699850px;}
.y1a6{bottom:636.647400px;}
.y10{bottom:637.459200px;}
.yfe{bottom:639.911250px;}
.y138{bottom:641.515350px;}
.y266{bottom:641.635350px;}
.y6c{bottom:641.770350px;}
.y40{bottom:641.772600px;}
.yc9{bottom:641.785350px;}
.y174{bottom:641.907600px;}
.y1e1{bottom:647.695950px;}
.y2bf{bottom:650.263500px;}
.y1a5{bottom:652.895400px;}
.yfd{bottom:654.887550px;}
.y224{bottom:657.414600px;}
.y288{bottom:659.365350px;}
.y265{bottom:659.635350px;}
.y1e0{bottom:659.692050px;}
.y6b{bottom:659.770350px;}
.y3f{bottom:659.772600px;}
.yc8{bottom:659.785350px;}
.y173{bottom:659.907600px;}
.y2be{bottom:665.263500px;}
.y1a4{bottom:669.143400px;}
.yfc{bottom:669.864000px;}
.y1df{bottom:671.688150px;}
.y264{bottom:677.635350px;}
.y6a{bottom:677.770350px;}
.y3e{bottom:677.772600px;}
.yc7{bottom:677.785350px;}
.y172{bottom:677.907600px;}
.y2bd{bottom:680.263500px;}
.yf{bottom:682.617300px;}
.y1de{bottom:683.684250px;}
.yfb{bottom:684.840300px;}
.y1a3{bottom:685.391400px;}
.y223{bottom:689.805900px;}
.ye{bottom:695.068050px;}
.y2bc{bottom:695.263500px;}
.y1dd{bottom:695.680350px;}
.y69{bottom:695.770350px;}
.y3d{bottom:695.772600px;}
.yc6{bottom:695.785350px;}
.y171{bottom:695.907600px;}
.yfa{bottom:699.816750px;}
.y1a2{bottom:701.639400px;}
.y1dc{bottom:707.676450px;}
.y222{bottom:709.305900px;}
.y2bb{bottom:710.263500px;}
.y263{bottom:713.230350px;}
.y287{bottom:713.365350px;}
.y68{bottom:713.770350px;}
.y3c{bottom:713.772600px;}
.yc5{bottom:713.785350px;}
.y170{bottom:713.907600px;}
.yf9{bottom:714.793050px;}
.y1a1{bottom:717.887400px;}
.y1db{bottom:719.672550px;}
.y2ba{bottom:725.263500px;}
.yf8{bottom:729.769500px;}
.y1da{bottom:731.668650px;}
.y67{bottom:731.770350px;}
.y3b{bottom:731.772600px;}
.yc4{bottom:731.785350px;}
.y16f{bottom:731.907600px;}
.yd{bottom:732.208950px;}
.y1a0{bottom:734.135400px;}
.y2b9{bottom:740.263500px;}
.y1d9{bottom:743.664750px;}
.yf7{bottom:744.745800px;}
.yc{bottom:745.708950px;}
.y66{bottom:749.770350px;}
.y3a{bottom:749.772600px;}
.yc3{bottom:749.785350px;}
.y16e{bottom:749.907600px;}
.y19f{bottom:750.383400px;}
.yb{bottom:753.783600px;}
.y2b8{bottom:755.263500px;}
.y1d8{bottom:755.660850px;}
.y211{bottom:759.415200px;}
.yf6{bottom:759.722250px;}
.y19e{bottom:766.631400px;}
.ya{bottom:767.283600px;}
.y1d7{bottom:767.656950px;}
.y65{bottom:767.770350px;}
.y39{bottom:767.772600px;}
.yc2{bottom:767.785350px;}
.y16d{bottom:767.907600px;}
.y2b7{bottom:770.263500px;}
.yf5{bottom:774.698550px;}
.y210{bottom:775.915200px;}
.y1d6{bottom:779.653050px;}
.y19d{bottom:782.879400px;}
.y2b6{bottom:785.263500px;}
.y98{bottom:785.365350px;}
.y64{bottom:785.770350px;}
.y38{bottom:785.772600px;}
.yc1{bottom:785.785350px;}
.y16c{bottom:785.907600px;}
.y9{bottom:786.208950px;}
.yf4{bottom:789.675000px;}
.y1d5{bottom:791.649150px;}
.y20f{bottom:792.415200px;}
.y19c{bottom:799.127400px;}
.y2b5{bottom:800.263500px;}
.y137{bottom:803.365350px;}
.y1d4{bottom:803.645250px;}
.y63{bottom:803.770350px;}
.y37{bottom:803.772600px;}
.yc0{bottom:803.785350px;}
.y16b{bottom:803.907600px;}
.yf3{bottom:804.651300px;}
.y20e{bottom:808.915200px;}
.y8{bottom:814.930800px;}
.y2b4{bottom:815.263500px;}
.y19b{bottom:815.375400px;}
.y1d3{bottom:815.641350px;}
.yf2{bottom:819.627750px;}
.y97{bottom:821.230350px;}
.y62{bottom:821.770350px;}
.y36{bottom:821.772600px;}
.ybf{bottom:821.785350px;}
.y16a{bottom:821.907600px;}
.y20d{bottom:825.415200px;}
.y1d2{bottom:827.637450px;}
.y2b3{bottom:830.263500px;}
.y19a{bottom:831.623400px;}
.yf1{bottom:834.604050px;}
.y136{bottom:839.230350px;}
.y286{bottom:839.365350px;}
.y1d1{bottom:839.633550px;}
.y121{bottom:839.770350px;}
.y35{bottom:839.772600px;}
.ybe{bottom:839.785350px;}
.y169{bottom:839.907600px;}
.y20c{bottom:841.915200px;}
.y2b2{bottom:845.263500px;}
.y199{bottom:847.871400px;}
.yf0{bottom:849.580500px;}
.y1d0{bottom:851.629650px;}
.y120{bottom:857.770350px;}
.y34{bottom:857.772600px;}
.ybd{bottom:857.785350px;}
.y168{bottom:857.907600px;}
.y20b{bottom:858.415200px;}
.y2b1{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y1cf{bottom:863.625750px;}
.y198{bottom:864.119400px;}
.yef{bottom:864.556800px;}
.y20a{bottom:874.915200px;}
.y2b0{bottom:875.263500px;}
.y1ce{bottom:875.621850px;}
.y96{bottom:875.770350px;}
.y33{bottom:875.772600px;}
.ybc{bottom:875.785350px;}
.y167{bottom:875.907600px;}
.yee{bottom:879.533250px;}
.y197{bottom:880.367400px;}
.y1cd{bottom:887.617950px;}
.y2af{bottom:890.263500px;}
.y209{bottom:891.415200px;}
.y95{bottom:893.770350px;}
.y32{bottom:893.772600px;}
.ybb{bottom:893.785350px;}
.y166{bottom:893.907600px;}
.yed{bottom:894.509550px;}
.y196{bottom:896.615400px;}
.y6{bottom:897.543600px;}
.y1cc{bottom:899.614050px;}
.y2ae{bottom:905.263500px;}
.y208{bottom:907.915200px;}
.yec{bottom:909.486000px;}
.y1cb{bottom:911.610150px;}
.y94{bottom:911.770350px;}
.y31{bottom:911.772600px;}
.y15a{bottom:911.777100px;}
.yba{bottom:911.785350px;}
.y165{bottom:911.907600px;}
.y195{bottom:912.863400px;}
.y2ad{bottom:920.263500px;}
.y1ca{bottom:923.606250px;}
.y207{bottom:924.415200px;}
.yeb{bottom:924.462300px;}
.y93{bottom:929.770350px;}
.y30{bottom:929.772600px;}
.y159{bottom:929.777100px;}
.yb9{bottom:929.785350px;}
.y164{bottom:929.907600px;}
.y5{bottom:934.004400px;}
.y2ac{bottom:935.263500px;}
.yea{bottom:939.438750px;}
.y206{bottom:940.915200px;}
.y194{bottom:944.375400px;}
.y1c9{bottom:946.879200px;}
.y92{bottom:947.770350px;}
.y2f{bottom:947.772600px;}
.y158{bottom:947.777100px;}
.yb8{bottom:947.785350px;}
.y2ab{bottom:950.263500px;}
.ye9{bottom:954.419400px;}
.y205{bottom:957.415200px;}
.y2aa{bottom:965.263500px;}
.y285{bottom:965.365350px;}
.y163{bottom:965.502600px;}
.y91{bottom:965.770350px;}
.y2e{bottom:965.772600px;}
.y157{bottom:965.777100px;}
.yb7{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y193{bottom:979.270350px;}
.y2a9{bottom:980.263500px;}
.ye8{bottom:983.375400px;}
.y162{bottom:983.502600px;}
.y90{bottom:983.770350px;}
.y2d{bottom:983.772600px;}
.y156{bottom:983.777100px;}
.yb6{bottom:983.785350px;}
.y204{bottom:985.879200px;}
.y2a8{bottom:995.263500px;}
.y192{bottom:998.770350px;}
.y161{bottom:1001.502600px;}
.y8f{bottom:1001.770350px;}
.y2c{bottom:1001.772600px;}
.y155{bottom:1001.777100px;}
.yb5{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y2a7{bottom:1010.263500px;}
.ye7{bottom:1018.270350px;}
.y244{bottom:1019.367600px;}
.y8e{bottom:1019.770350px;}
.y61{bottom:1019.772600px;}
.y154{bottom:1019.777100px;}
.yb4{bottom:1019.785350px;}
.y2a6{bottom:1025.263500px;}
.y2b{bottom:1037.367600px;}
.y8d{bottom:1037.770350px;}
.y60{bottom:1037.772600px;}
.y153{bottom:1037.777100px;}
.yb3{bottom:1037.785350px;}
.y2a5{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y11f{bottom:1132.413750px;}
.y2a4{bottom:1132.413900px;}
.y203{bottom:1132.417200px;}
.y8c{bottom:1132.418700px;}
.y24e{bottom:1132.422900px;}
.y160{bottom:1132.423200px;}
.y2e5{bottom:1132.423500px;}
.y15d{bottom:1132.428300px;}
.y262{bottom:1132.429950px;}
.y233{bottom:1132.434600px;}
.y1c8{bottom:1132.456950px;}
.y243{bottom:1132.458750px;}
.y151{bottom:1132.464000px;}
.y191{bottom:1132.474800px;}
.y135{bottom:1132.483500px;}
.y29{bottom:1136.092500px;}
.y28{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h19{height:21.594727px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h1a{height:31.992188px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.hd{height:32.815976px;}
.h12{height:33.351562px;}
.h16{height:33.499162px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.h1c{height:37.520508px;}
.h11{height:41.689453px;}
.h18{height:41.711653px;}
.h13{height:42.035761px;}
.h14{height:42.052561px;}
.h15{height:42.053161px;}
.h1b{height:42.054361px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.718034px;}
.h9{height:43.740234px;}
.h17{height:52.558951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x13{left:78.661350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x2c{left:102.047250px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x2e{left:123.307350px;}
.x3{left:125.427900px;}
.xf{left:131.815350px;}
.xe{left:165.985350px;}
.x1b{left:170.078700px;}
.x1c{left:172.204650px;}
.x8{left:190.553550px;}
.x19{left:198.877650px;}
.x15{left:211.100400px;}
.x1d{left:309.783300px;}
.x16{left:324.401550px;}
.x1e{left:374.559300px;}
.x23{left:377.559300px;}
.x20{left:449.571300px;}
.x1f{left:453.567300px;}
.x6{left:455.041500px;}
.xb{left:457.148550px;}
.x28{left:470.802900px;}
.x26{left:472.445400px;}
.x10{left:478.345350px;}
.x2d{left:482.627250px;}
.xa{left:491.153550px;}
.x2b{left:503.858400px;}
.x11{left:512.365350px;}
.x29{left:578.843400px;}
.x2a{left:596.121000px;}
.x22{left:598.467300px;}
.x21{left:602.463300px;}
.x27{left:603.620400px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x17{left:721.718100px;}
.xc{left:728.391600px;}
.x1a{left:742.869450px;}
.x18{left:743.870850px;}
.x12{left:749.651400px;}
.x24{left:752.739300px;}
.x25{left:757.239300px;}
@media print{
.v8{vertical-align:-29.312000pt;}
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.480000pt;}
.v7{vertical-align:-8.317867pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.440000pt;}
.v5{vertical-align:10.397333pt;}
.v4{vertical-align:20.081600pt;}
.v6{vertical-align:25.114667pt;}
.v1{vertical-align:27.005867pt;}
.ls50{letter-spacing:-1.578667pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.562667pt;}
.ls6f{letter-spacing:-0.426667pt;}
.ls56{letter-spacing:-0.373333pt;}
.ls66{letter-spacing:-0.320000pt;}
.ls63{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsb5{letter-spacing:-0.170667pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.120000pt;}
.ls61{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.085333pt;}
.ls4a{letter-spacing:-0.053333pt;}
.lsb4{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls78{letter-spacing:0.003733pt;}
.ls5f{letter-spacing:0.010667pt;}
.ls90{letter-spacing:0.042667pt;}
.ls34{letter-spacing:0.053333pt;}
.ls65{letter-spacing:0.062187pt;}
.ls5b{letter-spacing:0.072533pt;}
.ls9b{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.106667pt;}
.lsb2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls93{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.240640pt;}
.ls77{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls84{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.320000pt;}
.lsa8{letter-spacing:0.341333pt;}
.ls70{letter-spacing:0.342027pt;}
.ls43{letter-spacing:0.373333pt;}
.ls8f{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls89{letter-spacing:0.469333pt;}
.ls1f{letter-spacing:0.480000pt;}
.lsa5{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.533333pt;}
.lsaa{letter-spacing:0.554667pt;}
.ls6d{letter-spacing:0.558933pt;}
.ls71{letter-spacing:0.581333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls94{letter-spacing:0.597333pt;}
.ls24{letter-spacing:0.640000pt;}
.ls6a{letter-spacing:0.642240pt;}
.ls3d{letter-spacing:0.693333pt;}
.lsa1{letter-spacing:0.725333pt;}
.ls2d{letter-spacing:0.746667pt;}
.ls8b{letter-spacing:0.768000pt;}
.ls64{letter-spacing:0.777333pt;}
.lsb{letter-spacing:0.800000pt;}
.lsb0{letter-spacing:0.810667pt;}
.ls32{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.870613pt;}
.lsae{letter-spacing:0.896000pt;}
.ls3e{letter-spacing:0.906667pt;}
.lsa2{letter-spacing:0.938667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls83{letter-spacing:0.981333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls96{letter-spacing:1.024000pt;}
.ls69{letter-spacing:1.048000pt;}
.lsc{letter-spacing:1.066667pt;}
.ls81{letter-spacing:1.109333pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls8a{letter-spacing:1.152000pt;}
.ls18{letter-spacing:1.173333pt;}
.ls23{letter-spacing:1.226667pt;}
.ls82{letter-spacing:1.237333pt;}
.ls38{letter-spacing:1.280000pt;}
.ls95{letter-spacing:1.322667pt;}
.ls53{letter-spacing:1.333333pt;}
.ls80{letter-spacing:1.365333pt;}
.ls6c{letter-spacing:1.384000pt;}
.ls20{letter-spacing:1.386667pt;}
.ls92{letter-spacing:1.408000pt;}
.ls5a{letter-spacing:1.431467pt;}
.lsa{letter-spacing:1.440000pt;}
.ls9f{letter-spacing:1.450667pt;}
.ls47{letter-spacing:1.481600pt;}
.lse{letter-spacing:1.493333pt;}
.ls98{letter-spacing:1.536000pt;}
.ls28{letter-spacing:1.546667pt;}
.ls87{letter-spacing:1.578667pt;}
.ls2e{letter-spacing:1.600000pt;}
.ls91{letter-spacing:1.621333pt;}
.ls3c{letter-spacing:1.653333pt;}
.lsad{letter-spacing:1.664000pt;}
.ls8{letter-spacing:1.706667pt;}
.lsaf{letter-spacing:1.749333pt;}
.ls40{letter-spacing:1.760000pt;}
.ls1a{letter-spacing:1.813333pt;}
.ls8c{letter-spacing:1.834667pt;}
.ls21{letter-spacing:1.866667pt;}
.ls86{letter-spacing:1.877333pt;}
.ls22{letter-spacing:1.920000pt;}
.ls88{letter-spacing:1.962667pt;}
.ls27{letter-spacing:1.973333pt;}
.lsab{letter-spacing:2.005333pt;}
.ls3a{letter-spacing:2.026667pt;}
.ls31{letter-spacing:2.080000pt;}
.ls85{letter-spacing:2.090667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.186667pt;}
.ls49{letter-spacing:2.240000pt;}
.ls19{letter-spacing:2.293333pt;}
.lsb1{letter-spacing:2.304000pt;}
.ls42{letter-spacing:2.346667pt;}
.ls41{letter-spacing:2.400000pt;}
.ls1c{letter-spacing:2.453333pt;}
.ls5c{letter-spacing:2.506667pt;}
.lsa7{letter-spacing:2.517333pt;}
.ls46{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.613333pt;}
.ls9e{letter-spacing:2.645333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls51{letter-spacing:2.773333pt;}
.lsa6{letter-spacing:2.816000pt;}
.ls2c{letter-spacing:2.826667pt;}
.ls9c{letter-spacing:2.858667pt;}
.ls5d{letter-spacing:2.924800pt;}
.ls5e{letter-spacing:2.933333pt;}
.ls9a{letter-spacing:2.944000pt;}
.ls9{letter-spacing:2.986667pt;}
.ls45{letter-spacing:3.040000pt;}
.lsb3{letter-spacing:3.072000pt;}
.ls7b{letter-spacing:3.093333pt;}
.ls97{letter-spacing:3.114667pt;}
.ls57{letter-spacing:3.253333pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls60{letter-spacing:3.413333pt;}
.lsa9{letter-spacing:3.456000pt;}
.ls30{letter-spacing:3.466667pt;}
.ls52{letter-spacing:3.520000pt;}
.ls62{letter-spacing:3.573333pt;}
.ls7a{letter-spacing:3.626667pt;}
.ls48{letter-spacing:3.680000pt;}
.ls67{letter-spacing:3.733333pt;}
.ls16{letter-spacing:3.786667pt;}
.ls6{letter-spacing:3.840000pt;}
.ls26{letter-spacing:3.893333pt;}
.ls58{letter-spacing:3.946667pt;}
.ls2f{letter-spacing:4.000000pt;}
.ls6b{letter-spacing:4.053333pt;}
.lsa3{letter-spacing:4.096000pt;}
.lsac{letter-spacing:4.138667pt;}
.ls44{letter-spacing:4.160000pt;}
.ls7c{letter-spacing:4.213333pt;}
.ls59{letter-spacing:4.320000pt;}
.ls9d{letter-spacing:4.352000pt;}
.ls3f{letter-spacing:4.373333pt;}
.ls7f{letter-spacing:4.480000pt;}
.ls99{letter-spacing:4.522667pt;}
.ls2a{letter-spacing:4.533333pt;}
.ls7e{letter-spacing:4.586667pt;}
.lsa0{letter-spacing:4.608000pt;}
.ls35{letter-spacing:4.800000pt;}
.ls8e{letter-spacing:5.034667pt;}
.ls25{letter-spacing:5.066667pt;}
.ls73{letter-spacing:5.280000pt;}
.ls7d{letter-spacing:5.440000pt;}
.ls15{letter-spacing:5.493333pt;}
.ls37{letter-spacing:5.920000pt;}
.lsa4{letter-spacing:7.637333pt;}
.ls55{letter-spacing:175.189333pt;}
.ls76{letter-spacing:205.440000pt;}
.ls54{letter-spacing:281.045333pt;}
.ls72{letter-spacing:342.314667pt;}
.ls4f{letter-spacing:345.493333pt;}
.ls4e{letter-spacing:345.515200pt;}
.ls4d{letter-spacing:349.077333pt;}
.ls4c{letter-spacing:349.158933pt;}
.ls6e{letter-spacing:357.418667pt;}
.ls75{letter-spacing:421.147200pt;}
.ls74{letter-spacing:479.852800pt;}
.ls79{letter-spacing:483.116352pt;}
.ws99{word-spacing:-185.856000pt;}
.wsf5{word-spacing:-172.629333pt;}
.ws0{word-spacing:-30.721600pt;}
.ws122{word-spacing:-17.546667pt;}
.wsb{word-spacing:-17.173333pt;}
.wsac{word-spacing:-16.266667pt;}
.wsc1{word-spacing:-16.106667pt;}
.ws10{word-spacing:-16.000000pt;}
.ws101{word-spacing:-15.946667pt;}
.ws124{word-spacing:-15.893333pt;}
.wsfe{word-spacing:-15.520000pt;}
.ws113{word-spacing:-15.306667pt;}
.ws11{word-spacing:-15.253333pt;}
.ws3b{word-spacing:-15.093333pt;}
.ws103{word-spacing:-14.986667pt;}
.ws12{word-spacing:-14.880000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws13e{word-spacing:-14.805333pt;}
.wsad{word-spacing:-14.720000pt;}
.wsa4{word-spacing:-14.666667pt;}
.ws102{word-spacing:-14.613333pt;}
.ws96{word-spacing:-14.506667pt;}
.ws95{word-spacing:-14.346667pt;}
.wsff{word-spacing:-14.240000pt;}
.ws100{word-spacing:-14.186667pt;}
.wsa7{word-spacing:-14.133333pt;}
.wsa8{word-spacing:-14.080000pt;}
.ws104{word-spacing:-14.026667pt;}
.wsf{word-spacing:-13.973333pt;}
.wsa5{word-spacing:-13.920000pt;}
.wsa6{word-spacing:-13.866667pt;}
.ws3a{word-spacing:-13.813333pt;}
.wsb1{word-spacing:-13.760000pt;}
.ws169{word-spacing:-13.738667pt;}
.ws123{word-spacing:-13.706667pt;}
.wsc{word-spacing:-13.653333pt;}
.wsaf{word-spacing:-13.600000pt;}
.ws112{word-spacing:-13.493333pt;}
.wsd{word-spacing:-13.440000pt;}
.wsc9{word-spacing:-13.386667pt;}
.wse{word-spacing:-13.333333pt;}
.wsae{word-spacing:-13.280000pt;}
.wsb0{word-spacing:-13.120000pt;}
.ws97{word-spacing:-12.960000pt;}
.ws166{word-spacing:-12.672000pt;}
.ws126{word-spacing:-12.501333pt;}
.ws167{word-spacing:-12.117333pt;}
.ws11d{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.861333pt;}
.ws13c{word-spacing:-11.733333pt;}
.ws13b{word-spacing:-11.648000pt;}
.ws141{word-spacing:-11.520000pt;}
.ws125{word-spacing:-11.434667pt;}
.ws13d{word-spacing:-11.392000pt;}
.ws117{word-spacing:-11.306667pt;}
.ws13f{word-spacing:-11.178667pt;}
.ws5{word-spacing:-11.120000pt;}
.ws140{word-spacing:-11.050667pt;}
.ws16b{word-spacing:-10.880000pt;}
.ws168{word-spacing:-10.794667pt;}
.ws13a{word-spacing:-10.709333pt;}
.ws76{word-spacing:-10.666667pt;}
.ws165{word-spacing:-10.624000pt;}
.ws16a{word-spacing:-10.581333pt;}
.ws2{word-spacing:-9.076144pt;}
.ws3c{word-spacing:-8.643947pt;}
.wsa9{word-spacing:-8.550667pt;}
.wscc{word-spacing:-8.115360pt;}
.wsaa{word-spacing:-7.835520pt;}
.wsab{word-spacing:-7.773333pt;}
.ws3{word-spacing:-6.482960pt;}
.ws58{word-spacing:-6.218667pt;}
.ws44{word-spacing:-4.426667pt;}
.ws153{word-spacing:-4.352000pt;}
.ws127{word-spacing:-4.266667pt;}
.ws12c{word-spacing:-4.213333pt;}
.ws15a{word-spacing:-4.138667pt;}
.wsd9{word-spacing:-4.053333pt;}
.wsb4{word-spacing:-3.946667pt;}
.ws50{word-spacing:-3.840000pt;}
.ws21{word-spacing:-3.786667pt;}
.wsb8{word-spacing:-3.573333pt;}
.ws2f{word-spacing:-3.360000pt;}
.ws14c{word-spacing:-3.157333pt;}
.wsb5{word-spacing:-3.040000pt;}
.ws163{word-spacing:-2.986667pt;}
.ws150{word-spacing:-2.944000pt;}
.wsd7{word-spacing:-2.933333pt;}
.ws152{word-spacing:-2.858667pt;}
.ws31{word-spacing:-2.826667pt;}
.ws15d{word-spacing:-2.816000pt;}
.ws15f{word-spacing:-2.773333pt;}
.ws30{word-spacing:-2.720000pt;}
.ws1e{word-spacing:-2.666667pt;}
.ws154{word-spacing:-2.645333pt;}
.ws10e{word-spacing:-2.613333pt;}
.ws8{word-spacing:-2.565333pt;}
.ws12b{word-spacing:-2.560000pt;}
.ws15e{word-spacing:-2.517333pt;}
.ws129{word-spacing:-2.506667pt;}
.ws2e{word-spacing:-2.453333pt;}
.ws46{word-spacing:-2.400000pt;}
.ws4b{word-spacing:-2.346667pt;}
.ws12a{word-spacing:-2.293333pt;}
.ws24{word-spacing:-2.133333pt;}
.ws90{word-spacing:-2.080000pt;}
.ws130{word-spacing:-2.026667pt;}
.ws164{word-spacing:-2.005333pt;}
.ws2b{word-spacing:-1.973333pt;}
.ws176{word-spacing:-1.962667pt;}
.ws3d{word-spacing:-1.920000pt;}
.ws16e{word-spacing:-1.877333pt;}
.ws28{word-spacing:-1.866667pt;}
.ws139{word-spacing:-1.834667pt;}
.ws87{word-spacing:-1.813333pt;}
.ws16f{word-spacing:-1.792000pt;}
.ws45{word-spacing:-1.760000pt;}
.ws16c{word-spacing:-1.664000pt;}
.ws8b{word-spacing:-1.653333pt;}
.ws144{word-spacing:-1.621333pt;}
.wsc0{word-spacing:-1.600000pt;}
.ws135{word-spacing:-1.578667pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws14d{word-spacing:-1.536000pt;}
.ws15{word-spacing:-1.493333pt;}
.ws156{word-spacing:-1.450667pt;}
.ws23{word-spacing:-1.440000pt;}
.ws145{word-spacing:-1.408000pt;}
.ws4d{word-spacing:-1.386667pt;}
.ws15c{word-spacing:-1.365333pt;}
.ws9f{word-spacing:-1.333333pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws2a{word-spacing:-1.226667pt;}
.ws174{word-spacing:-1.194667pt;}
.ws22{word-spacing:-1.173333pt;}
.ws149{word-spacing:-1.152000pt;}
.ws92{word-spacing:-1.120000pt;}
.ws155{word-spacing:-1.109333pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws157{word-spacing:-1.024000pt;}
.ws38{word-spacing:-1.013333pt;}
.ws132{word-spacing:-0.981333pt;}
.ws40{word-spacing:-0.960000pt;}
.ws159{word-spacing:-0.938667pt;}
.ws43{word-spacing:-0.906667pt;}
.ws48{word-spacing:-0.853333pt;}
.ws171{word-spacing:-0.810667pt;}
.ws8c{word-spacing:-0.800000pt;}
.ws14f{word-spacing:-0.768000pt;}
.wsb9{word-spacing:-0.746667pt;}
.ws175{word-spacing:-0.725333pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws147{word-spacing:-0.597333pt;}
.ws52{word-spacing:-0.586667pt;}
.ws172{word-spacing:-0.554667pt;}
.wsb6{word-spacing:-0.533333pt;}
.ws15b{word-spacing:-0.512000pt;}
.ws49{word-spacing:-0.480000pt;}
.ws136{word-spacing:-0.469333pt;}
.wsa0{word-spacing:-0.426667pt;}
.ws142{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.373333pt;}
.ws158{word-spacing:-0.341333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws134{word-spacing:-0.298667pt;}
.ws33{word-spacing:-0.266667pt;}
.wsfd{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.213333pt;}
.ws146{word-spacing:-0.170667pt;}
.wsba{word-spacing:-0.160000pt;}
.ws178{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws14e{word-spacing:-0.085333pt;}
.ws17{word-spacing:-0.053333pt;}
.ws143{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wscb{word-spacing:0.042667pt;}
.ws4f{word-spacing:0.053333pt;}
.ws137{word-spacing:0.085333pt;}
.wsb2{word-spacing:0.106667pt;}
.wsa{word-spacing:0.120000pt;}
.ws177{word-spacing:0.128000pt;}
.ws54{word-spacing:0.160000pt;}
.ws170{word-spacing:0.170667pt;}
.wsb3{word-spacing:0.213333pt;}
.ws173{word-spacing:0.256000pt;}
.ws27{word-spacing:0.266667pt;}
.wsbe{word-spacing:0.320000pt;}
.ws78{word-spacing:0.373333pt;}
.ws151{word-spacing:0.384000pt;}
.ws121{word-spacing:0.480000pt;}
.ws56{word-spacing:0.533333pt;}
.ws9{word-spacing:0.562667pt;}
.ws10d{word-spacing:0.640000pt;}
.wsc5{word-spacing:0.725333pt;}
.wsc4{word-spacing:0.746667pt;}
.wsc2{word-spacing:0.853333pt;}
.ws16{word-spacing:0.906667pt;}
.ws11f{word-spacing:0.960000pt;}
.ws2c{word-spacing:1.066667pt;}
.ws4a{word-spacing:1.120000pt;}
.ws161{word-spacing:1.152000pt;}
.ws91{word-spacing:1.173333pt;}
.ws1c{word-spacing:1.226667pt;}
.wsbb{word-spacing:1.333333pt;}
.ws88{word-spacing:1.386667pt;}
.ws20{word-spacing:1.440000pt;}
.ws9e{word-spacing:1.546667pt;}
.wsa3{word-spacing:1.578667pt;}
.ws29{word-spacing:1.600000pt;}
.ws36{word-spacing:1.653333pt;}
.ws138{word-spacing:1.664000pt;}
.wsf0{word-spacing:1.706667pt;}
.ws39{word-spacing:1.760000pt;}
.wsc3{word-spacing:1.792000pt;}
.ws89{word-spacing:1.813333pt;}
.ws12f{word-spacing:1.866667pt;}
.wsa1{word-spacing:1.920000pt;}
.wsc8{word-spacing:1.962667pt;}
.ws93{word-spacing:1.973333pt;}
.wsa2{word-spacing:2.026667pt;}
.ws8e{word-spacing:2.080000pt;}
.wsd8{word-spacing:2.240000pt;}
.ws11e{word-spacing:2.293333pt;}
.ws120{word-spacing:2.400000pt;}
.ws160{word-spacing:2.432000pt;}
.ws34{word-spacing:2.453333pt;}
.ws18{word-spacing:2.506667pt;}
.ws14a{word-spacing:2.517333pt;}
.ws128{word-spacing:2.560000pt;}
.ws179{word-spacing:2.602667pt;}
.ws133{word-spacing:2.688000pt;}
.ws8a{word-spacing:2.720000pt;}
.ws17a{word-spacing:2.730667pt;}
.ws148{word-spacing:2.773333pt;}
.ws14b{word-spacing:2.816000pt;}
.ws35{word-spacing:2.826667pt;}
.ws110{word-spacing:2.880000pt;}
.wsc7{word-spacing:2.986667pt;}
.wsbc{word-spacing:3.040000pt;}
.ws41{word-spacing:3.093333pt;}
.wsbf{word-spacing:3.146667pt;}
.wsda{word-spacing:3.200000pt;}
.ws16d{word-spacing:3.242667pt;}
.wsca{word-spacing:3.253333pt;}
.ws162{word-spacing:3.285333pt;}
.ws55{word-spacing:3.360000pt;}
.ws3f{word-spacing:3.413333pt;}
.ws1a{word-spacing:3.466667pt;}
.ws118{word-spacing:3.498667pt;}
.ws131{word-spacing:3.541333pt;}
.ws10f{word-spacing:3.626667pt;}
.ws8d{word-spacing:3.680000pt;}
.wsdb{word-spacing:3.733333pt;}
.ws47{word-spacing:3.786667pt;}
.ws94{word-spacing:3.840000pt;}
.ws37{word-spacing:3.893333pt;}
.ws42{word-spacing:4.000000pt;}
.ws19{word-spacing:4.053333pt;}
.ws4c{word-spacing:4.106667pt;}
.ws32{word-spacing:4.160000pt;}
.ws53{word-spacing:4.213333pt;}
.wsbd{word-spacing:4.266667pt;}
.wsb7{word-spacing:4.320000pt;}
.ws14{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.wsc6{word-spacing:4.640000pt;}
.ws11c{word-spacing:4.693333pt;}
.ws12e{word-spacing:4.853333pt;}
.ws12d{word-spacing:4.906667pt;}
.wsdc{word-spacing:5.013333pt;}
.ws111{word-spacing:5.600000pt;}
.ws26{word-spacing:7.786667pt;}
.ws1{word-spacing:43.841104pt;}
.ws9b{word-spacing:89.856000pt;}
.ws9d{word-spacing:90.666667pt;}
.ws9c{word-spacing:91.434667pt;}
.ws9a{word-spacing:144.000000pt;}
.wsfc{word-spacing:184.106667pt;}
.wsf3{word-spacing:185.301333pt;}
.wsf7{word-spacing:194.773333pt;}
.ws98{word-spacing:270.378667pt;}
.wse2{word-spacing:271.274667pt;}
.wse5{word-spacing:272.085333pt;}
.ws67{word-spacing:304.064000pt;}
.wse0{word-spacing:305.664000pt;}
.ws62{word-spacing:306.385600pt;}
.ws5b{word-spacing:306.388800pt;}
.ws5e{word-spacing:306.410667pt;}
.ws68{word-spacing:306.688000pt;}
.ws61{word-spacing:307.562667pt;}
.ws5f{word-spacing:307.587733pt;}
.ws5c{word-spacing:309.034667pt;}
.ws63{word-spacing:309.048000pt;}
.ws60{word-spacing:310.229333pt;}
.ws5d{word-spacing:311.146667pt;}
.wsdf{word-spacing:314.328064pt;}
.wsde{word-spacing:315.093333pt;}
.ws5a{word-spacing:316.160000pt;}
.ws59{word-spacing:319.701333pt;}
.wsd0{word-spacing:320.768000pt;}
.ws6c{word-spacing:325.290667pt;}
.ws64{word-spacing:325.355733pt;}
.ws66{word-spacing:325.397333pt;}
.ws6d{word-spacing:327.893333pt;}
.ws65{word-spacing:328.021333pt;}
.ws6e{word-spacing:328.064000pt;}
.ws77{word-spacing:329.258667pt;}
.wscf{word-spacing:329.445931pt;}
.ws6a{word-spacing:330.026667pt;}
.wsce{word-spacing:330.197333pt;}
.ws69{word-spacing:330.837333pt;}
.ws70{word-spacing:331.605333pt;}
.ws72{word-spacing:332.416000pt;}
.ws6b{word-spacing:332.629333pt;}
.wsd5{word-spacing:344.320000pt;}
.wsd1{word-spacing:351.445333pt;}
.ws57{word-spacing:357.717333pt;}
.ws74{word-spacing:358.698667pt;}
.ws10a{word-spacing:360.661333pt;}
.ws7b{word-spacing:363.434667pt;}
.wsf4{word-spacing:368.896000pt;}
.wsd6{word-spacing:372.778667pt;}
.ws116{word-spacing:373.589333pt;}
.ws71{word-spacing:375.680000pt;}
.wsd4{word-spacing:375.978667pt;}
.wsf9{word-spacing:376.021333pt;}
.ws73{word-spacing:379.605333pt;}
.ws83{word-spacing:379.818667pt;}
.wsfa{word-spacing:380.714667pt;}
.ws7e{word-spacing:383.402667pt;}
.wsef{word-spacing:393.344000pt;}
.ws109{word-spacing:396.202667pt;}
.wsd2{word-spacing:397.269333pt;}
.wsfb{word-spacing:397.312000pt;}
.ws7c{word-spacing:401.152000pt;}
.ws81{word-spacing:401.920000pt;}
.ws108{word-spacing:411.221333pt;}
.wsf8{word-spacing:411.562667pt;}
.ws79{word-spacing:421.290667pt;}
.wsd3{word-spacing:425.728000pt;}
.wsf6{word-spacing:428.117333pt;}
.ws7a{word-spacing:434.901333pt;}
.ws107{word-spacing:444.800000pt;}
.ws10b{word-spacing:447.146667pt;}
.ws10c{word-spacing:463.744000pt;}
.ws106{word-spacing:469.888000pt;}
.ws105{word-spacing:483.114667pt;}
.wsed{word-spacing:484.650667pt;}
.wse3{word-spacing:494.122667pt;}
.wseb{word-spacing:501.248000pt;}
.wsee{word-spacing:505.941333pt;}
.wse4{word-spacing:508.373333pt;}
.wse1{word-spacing:524.928000pt;}
.wsec{word-spacing:529.706667pt;}
.wse8{word-spacing:532.906667pt;}
.ws11a{word-spacing:535.637333pt;}
.wse9{word-spacing:536.789333pt;}
.wsea{word-spacing:551.755733pt;}
.wse6{word-spacing:568.448000pt;}
.ws6f{word-spacing:569.984000pt;}
.wscd{word-spacing:572.245333pt;}
.wse7{word-spacing:582.656000pt;}
.ws11b{word-spacing:592.512000pt;}
.ws115{word-spacing:594.858667pt;}
.ws75{word-spacing:612.650667pt;}
.wsdd{word-spacing:640.256000pt;}
.ws114{word-spacing:770.645333pt;}
.ws119{word-spacing:808.576000pt;}
.wsf2{word-spacing:832.042667pt;}
.ws7f{word-spacing:882.048000pt;}
.ws82{word-spacing:910.464000pt;}
.ws80{word-spacing:920.746667pt;}
.ws85{word-spacing:985.130667pt;}
.ws84{word-spacing:991.061333pt;}
.ws86{word-spacing:993.450667pt;}
.ws7d{word-spacing:1051.562667pt;}
.wsf1{word-spacing:1089.066667pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._3c{margin-left:-10.666667pt;}
._2{margin-left:-8.327467pt;}
._2a{margin-left:-6.346667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.000587pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._5{width:0.936640pt;}
._6{width:2.133333pt;}
._b{width:3.053920pt;}
._8{width:4.160000pt;}
._7{width:5.600000pt;}
._9{width:7.253333pt;}
._a{width:8.160000pt;}
._d{width:9.365333pt;}
._36{width:71.296000pt;}
._39{width:73.349333pt;}
._43{width:100.522667pt;}
._41{width:102.320000pt;}
._48{width:119.338667pt;}
._4e{width:120.581333pt;}
._7e{width:137.472000pt;}
._46{width:141.440000pt;}
._86{width:146.346667pt;}
._45{width:149.893333pt;}
._3b{width:153.088000pt;}
._49{width:162.005333pt;}
._85{width:164.096000pt;}
._7d{width:167.680000pt;}
._7c{width:173.013333pt;}
._87{width:174.762667pt;}
._44{width:190.506667pt;}
._77{width:194.773333pt;}
._70{width:200.064000pt;}
._76{width:205.440000pt;}
._12{width:209.365333pt;}
._81{width:228.138667pt;}
._25{width:229.504000pt;}
._28{width:231.040000pt;}
._42{width:233.173333pt;}
._78{width:238.250667pt;}
._21{width:240.645333pt;}
._80{width:247.680000pt;}
._3e{width:249.770667pt;}
._1f{width:251.533920pt;}
._7f{width:253.013333pt;}
._3f{width:264.021333pt;}
._40{width:278.229333pt;}
._3d{width:280.576000pt;}
._65{width:281.941333pt;}
._5a{width:283.952000pt;}
._79{width:288.000000pt;}
._72{width:291.541333pt;}
._53{width:292.608000pt;}
._5b{width:293.893333pt;}
._71{width:297.600000pt;}
._7a{width:298.624000pt;}
._20{width:317.482667pt;}
._89{width:320.640000pt;}
._84{width:323.626667pt;}
._4c{width:326.570667pt;}
._74{width:328.064000pt;}
._8b{width:330.709333pt;}
._83{width:331.733333pt;}
._26{width:334.080000pt;}
._88{width:337.658667pt;}
._1d{width:339.034667pt;}
._1e{width:341.333333pt;}
._1a{width:343.381333pt;}
._4a{width:347.861333pt;}
._7b{width:353.578667pt;}
._24{width:363.477333pt;}
._27{width:365.620320pt;}
._13{width:368.184587pt;}
._52{width:369.237333pt;}
._23{width:372.138667pt;}
._4b{width:376.320000pt;}
._47{width:378.666667pt;}
._8f{width:384.256000pt;}
._92{width:385.720587pt;}
._4f{width:390.528000pt;}
._8c{width:393.813333pt;}
._50{width:404.736000pt;}
._73{width:407.978667pt;}
._2f{width:411.818667pt;}
._6f{width:414.677333pt;}
._51{width:418.986667pt;}
._4d{width:422.144000pt;}
._59{width:424.149333pt;}
._75{width:425.770667pt;}
._8a{width:429.397333pt;}
._6d{width:431.317333pt;}
._6e{width:436.010667pt;}
._57{width:445.482667pt;}
._f{width:449.152000pt;}
._62{width:452.608000pt;}
._15{width:455.210667pt;}
._19{width:456.789333pt;}
._82{width:462.720000pt;}
._58{width:466.816000pt;}
._60{width:473.941333pt;}
._6b{width:481.066667pt;}
._10{width:483.840000pt;}
._17{width:487.168000pt;}
._55{width:488.192000pt;}
._11{width:489.770667pt;}
._61{width:495.274667pt;}
._6c{width:501.248000pt;}
._69{width:502.400000pt;}
._56{width:504.789333pt;}
._5f{width:505.941333pt;}
._66{width:509.525333pt;}
._64{width:520.192000pt;}
._18{width:522.709333pt;}
._6a{width:523.733333pt;}
._16{width:525.098667pt;}
._5e{width:526.080000pt;}
._2c{width:530.432000pt;}
._54{width:533.248000pt;}
._67{width:534.400000pt;}
._5c{width:536.746667pt;}
._8e{width:546.304000pt;}
._68{width:550.997333pt;}
._5d{width:553.344000pt;}
._14{width:555.861333pt;}
._3a{width:561.536000pt;}
._22{width:564.053333pt;}
._63{width:575.914667pt;}
._1b{width:581.760000pt;}
._35{width:582.826667pt;}
._90{width:588.970667pt;}
._1c{width:590.597333pt;}
._37{width:597.077333pt;}
._91{width:603.178667pt;}
._38{width:612.096000pt;}
._34{width:613.632000pt;}
._2d{width:616.064000pt;}
._29{width:681.344000pt;}
._2e{width:849.578667pt;}
._30{width:923.477333pt;}
._8d{width:952.192000pt;}
._32{width:988.714667pt;}
._2b{width:991.146667pt;}
._31{width:1001.728000pt;}
._33{width:1004.117333pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsc{font-size:28.800000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2a{bottom:42.468667pt;}
.y221{bottom:70.296933pt;}
.y202{bottom:70.593067pt;}
.y11e{bottom:71.944667pt;}
.y261{bottom:74.092400pt;}
.y15c{bottom:74.186933pt;}
.y284{bottom:74.342533pt;}
.y134{bottom:74.342667pt;}
.y8b{bottom:74.462533pt;}
.y5f{bottom:74.464533pt;}
.y15f{bottom:74.470400pt;}
.ye6{bottom:74.588533pt;}
.yb2{bottom:74.595867pt;}
.y27{bottom:78.524667pt;}
.y2a3{bottom:79.219467pt;}
.y242{bottom:80.272667pt;}
.y150{bottom:82.304000pt;}
.y24b{bottom:82.356267pt;}
.y259{bottom:82.625733pt;}
.y2e4{bottom:84.678667pt;}
.y220{bottom:84.963600pt;}
.y201{bottom:85.259733pt;}
.y260{bottom:88.087067pt;}
.y15b{bottom:88.181600pt;}
.y15e{bottom:88.465067pt;}
.y133{bottom:88.785333pt;}
.y1c7{bottom:89.156400pt;}
.y190{bottom:89.268267pt;}
.y283{bottom:90.342533pt;}
.y8a{bottom:90.462533pt;}
.y5e{bottom:90.464533pt;}
.ye5{bottom:90.588533pt;}
.yb1{bottom:90.595867pt;}
.y26{bottom:91.854667pt;}
.y2a2{bottom:92.552800pt;}
.y11d{bottom:93.576667pt;}
.y241{bottom:94.715333pt;}
.y14f{bottom:96.746667pt;}
.y24a{bottom:96.798933pt;}
.y258{bottom:97.068400pt;}
.y2e3{bottom:98.012000pt;}
.y200{bottom:99.926400pt;}
.y132{bottom:103.228000pt;}
.y1c6{bottom:103.599067pt;}
.y18f{bottom:103.710933pt;}
.y25{bottom:105.182267pt;}
.y2a1{bottom:105.886133pt;}
.y282{bottom:106.342533pt;}
.y89{bottom:106.462533pt;}
.y5d{bottom:106.464533pt;}
.ye4{bottom:106.588533pt;}
.yb0{bottom:106.595867pt;}
.y11c{bottom:106.888667pt;}
.y21f{bottom:107.640933pt;}
.y240{bottom:109.158000pt;}
.y14e{bottom:111.189333pt;}
.y249{bottom:111.241600pt;}
.y2e2{bottom:111.345333pt;}
.y257{bottom:111.511067pt;}
.y1ff{bottom:114.593067pt;}
.y131{bottom:117.670667pt;}
.y1c5{bottom:118.041733pt;}
.y18e{bottom:118.153600pt;}
.y2a0{bottom:119.219467pt;}
.y11b{bottom:120.167867pt;}
.y21e{bottom:122.083600pt;}
.y281{bottom:122.342533pt;}
.y88{bottom:122.462533pt;}
.y5c{bottom:122.464533pt;}
.ye3{bottom:122.588533pt;}
.yaf{bottom:122.595867pt;}
.y23f{bottom:123.600667pt;}
.y2e1{bottom:124.678667pt;}
.y14d{bottom:125.632000pt;}
.y248{bottom:125.684267pt;}
.y256{bottom:125.953733pt;}
.y1fe{bottom:129.259733pt;}
.y130{bottom:132.113333pt;}
.y1c4{bottom:132.484400pt;}
.y29f{bottom:132.552800pt;}
.y18d{bottom:132.596267pt;}
.y11a{bottom:133.479867pt;}
.y21d{bottom:136.526267pt;}
.y2e0{bottom:138.012000pt;}
.y23e{bottom:138.043333pt;}
.y280{bottom:138.342533pt;}
.y87{bottom:138.462533pt;}
.y5b{bottom:138.464533pt;}
.ye2{bottom:138.588533pt;}
.yae{bottom:138.595867pt;}
.y14c{bottom:140.074667pt;}
.y247{bottom:140.126933pt;}
.y1fd{bottom:143.926400pt;}
.y29e{bottom:145.886133pt;}
.y12f{bottom:146.556000pt;}
.y119{bottom:146.791867pt;}
.y1c3{bottom:146.927067pt;}
.y18c{bottom:147.038933pt;}
.y21c{bottom:150.968933pt;}
.y2df{bottom:151.345333pt;}
.y23d{bottom:152.486000pt;}
.y255{bottom:153.964400pt;}
.y27f{bottom:154.342533pt;}
.y86{bottom:154.462533pt;}
.y5a{bottom:154.464533pt;}
.y14b{bottom:154.517333pt;}
.ye1{bottom:154.588533pt;}
.yad{bottom:154.595867pt;}
.y1fc{bottom:158.593067pt;}
.y29d{bottom:159.219467pt;}
.y118{bottom:160.103867pt;}
.y12e{bottom:160.998667pt;}
.y1c2{bottom:161.369733pt;}
.y18b{bottom:161.481600pt;}
.y2de{bottom:164.678667pt;}
.y21b{bottom:165.411600pt;}
.y23c{bottom:166.928667pt;}
.y246{bottom:168.137600pt;}
.y14a{bottom:168.960000pt;}
.y27e{bottom:170.342533pt;}
.y85{bottom:170.462533pt;}
.y59{bottom:170.464533pt;}
.ye0{bottom:170.588533pt;}
.yac{bottom:170.595867pt;}
.y29c{bottom:172.552800pt;}
.y1fb{bottom:173.259733pt;}
.y12d{bottom:175.441333pt;}
.y1c1{bottom:175.812400pt;}
.y18a{bottom:175.924267pt;}
.y2dd{bottom:178.012000pt;}
.y21a{bottom:179.854267pt;}
.y23b{bottom:181.371333pt;}
.y117{bottom:181.735867pt;}
.y149{bottom:183.402667pt;}
.y254{bottom:184.982267pt;}
.y29b{bottom:185.886133pt;}
.y27d{bottom:186.342533pt;}
.y84{bottom:186.462533pt;}
.y58{bottom:186.464533pt;}
.ydf{bottom:186.588533pt;}
.yab{bottom:186.595867pt;}
.y1fa{bottom:187.926400pt;}
.y12c{bottom:189.884000pt;}
.y1c0{bottom:190.255067pt;}
.y189{bottom:190.366933pt;}
.y2dc{bottom:191.345333pt;}
.y219{bottom:194.296933pt;}
.y23a{bottom:195.814000pt;}
.y148{bottom:197.845333pt;}
.y245{bottom:199.157867pt;}
.y29a{bottom:199.219467pt;}
.y116{bottom:199.399867pt;}
.y27c{bottom:202.342533pt;}
.y83{bottom:202.462533pt;}
.y57{bottom:202.464533pt;}
.yde{bottom:202.588533pt;}
.y1f9{bottom:202.593067pt;}
.yaa{bottom:202.595867pt;}
.y12b{bottom:204.326667pt;}
.y2db{bottom:204.678667pt;}
.y1bf{bottom:204.697733pt;}
.y188{bottom:204.809600pt;}
.y218{bottom:208.739600pt;}
.y239{bottom:210.256667pt;}
.y147{bottom:212.288000pt;}
.y299{bottom:212.552800pt;}
.y115{bottom:212.711867pt;}
.y1f8{bottom:217.259733pt;}
.y2da{bottom:218.012000pt;}
.y27b{bottom:218.342533pt;}
.y82{bottom:218.462533pt;}
.y56{bottom:218.464533pt;}
.ydd{bottom:218.588533pt;}
.ya9{bottom:218.595867pt;}
.y12a{bottom:218.769333pt;}
.y1be{bottom:219.140400pt;}
.y187{bottom:219.252267pt;}
.y217{bottom:223.182267pt;}
.y238{bottom:224.699333pt;}
.y298{bottom:225.886133pt;}
.y146{bottom:226.730667pt;}
.y2d9{bottom:231.345333pt;}
.y253{bottom:231.714133pt;}
.y1f7{bottom:231.926400pt;}
.y129{bottom:233.212000pt;}
.y1bd{bottom:233.657067pt;}
.y186{bottom:233.694933pt;}
.y27a{bottom:234.342533pt;}
.y114{bottom:234.343867pt;}
.y81{bottom:234.462533pt;}
.y55{bottom:234.464533pt;}
.ya8{bottom:234.595867pt;}
.ydc{bottom:234.609200pt;}
.y216{bottom:237.624933pt;}
.y24{bottom:238.323733pt;}
.y297{bottom:239.219467pt;}
.y24d{bottom:239.824800pt;}
.y2d8{bottom:244.678667pt;}
.y252{bottom:246.156800pt;}
.y1f6{bottom:246.593067pt;}
.y237{bottom:247.035333pt;}
.y128{bottom:247.654667pt;}
.y1bc{bottom:248.099733pt;}
.y185{bottom:248.137600pt;}
.y279{bottom:250.342533pt;}
.y80{bottom:250.462533pt;}
.y54{bottom:250.464533pt;}
.ya7{bottom:250.595867pt;}
.ydb{bottom:250.609200pt;}
.y215{bottom:252.067600pt;}
.y296{bottom:252.552800pt;}
.y24c{bottom:253.819467pt;}
.y145{bottom:254.741333pt;}
.y113{bottom:255.975867pt;}
.y2d7{bottom:258.012000pt;}
.y251{bottom:260.599467pt;}
.y1f5{bottom:261.259733pt;}
.y127{bottom:262.097333pt;}
.y1bb{bottom:262.542400pt;}
.y184{bottom:262.580267pt;}
.y23{bottom:262.630400pt;}
.y295{bottom:265.886133pt;}
.y278{bottom:266.342533pt;}
.y7f{bottom:266.462533pt;}
.y53{bottom:266.464533pt;}
.ya6{bottom:266.595867pt;}
.yda{bottom:266.609200pt;}
.y112{bottom:269.287867pt;}
.y2d6{bottom:271.345333pt;}
.y1f4{bottom:275.926400pt;}
.y126{bottom:276.540000pt;}
.y1ba{bottom:276.985067pt;}
.y183{bottom:277.022933pt;}
.y214{bottom:277.848933pt;}
.y236{bottom:278.049200pt;}
.y22{bottom:278.630400pt;}
.y294{bottom:279.219467pt;}
.y152{bottom:282.235867pt;}
.y277{bottom:282.342533pt;}
.y7e{bottom:282.462533pt;}
.y52{bottom:282.464533pt;}
.ya5{bottom:282.595867pt;}
.y111{bottom:282.599867pt;}
.yd9{bottom:282.609200pt;}
.y2d5{bottom:284.678667pt;}
.y144{bottom:285.759200pt;}
.y250{bottom:288.610133pt;}
.y1f3{bottom:290.593067pt;}
.y125{bottom:290.982667pt;}
.y1b9{bottom:291.427733pt;}
.y182{bottom:291.465600pt;}
.y293{bottom:292.552800pt;}
.y21{bottom:294.630400pt;}
.y110{bottom:295.911867pt;}
.y2d4{bottom:298.012000pt;}
.y276{bottom:298.342533pt;}
.y7d{bottom:298.462533pt;}
.y51{bottom:298.464533pt;}
.ya4{bottom:298.595867pt;}
.yd8{bottom:298.609200pt;}
.y143{bottom:303.092533pt;}
.y1f2{bottom:305.259733pt;}
.y1b8{bottom:305.870400pt;}
.y292{bottom:305.886133pt;}
.y213{bottom:306.641067pt;}
.y20{bottom:310.630400pt;}
.y2d3{bottom:311.345333pt;}
.y275{bottom:314.342533pt;}
.y7c{bottom:314.462533pt;}
.y50{bottom:314.464533pt;}
.ya3{bottom:314.595867pt;}
.yd7{bottom:314.609200pt;}
.y10f{bottom:317.543867pt;}
.y124{bottom:318.993333pt;}
.y291{bottom:319.219467pt;}
.y181{bottom:319.476267pt;}
.y24f{bottom:319.622533pt;}
.y1f1{bottom:319.926400pt;}
.y1b7{bottom:320.313067pt;}
.y212{bottom:323.974400pt;}
.y2d2{bottom:324.678667pt;}
.y1f{bottom:326.630400pt;}
.y274{bottom:330.342533pt;}
.y7b{bottom:330.462533pt;}
.y4f{bottom:330.464533pt;}
.ya2{bottom:330.595867pt;}
.yd6{bottom:330.609200pt;}
.y10e{bottom:330.855867pt;}
.y290{bottom:332.552800pt;}
.y1f0{bottom:334.593067pt;}
.y1b6{bottom:334.755733pt;}
.y2d1{bottom:338.012000pt;}
.y1e{bottom:342.630400pt;}
.y28f{bottom:345.886133pt;}
.y235{bottom:346.235867pt;}
.y273{bottom:346.342533pt;}
.y7a{bottom:346.462533pt;}
.y4e{bottom:346.464533pt;}
.ya1{bottom:346.595867pt;}
.yd5{bottom:346.609200pt;}
.y1b5{bottom:349.198400pt;}
.y1ef{bottom:349.259733pt;}
.y123{bottom:350.009200pt;}
.y180{bottom:350.494133pt;}
.y142{bottom:350.580267pt;}
.y2d0{bottom:351.345333pt;}
.y10d{bottom:352.487867pt;}
.y1d{bottom:358.630400pt;}
.y25a{bottom:358.711067pt;}
.y28e{bottom:359.219467pt;}
.y232{bottom:361.029867pt;}
.y272{bottom:361.982533pt;}
.y234{bottom:362.235867pt;}
.y79{bottom:362.462533pt;}
.y4d{bottom:362.464533pt;}
.ya0{bottom:362.595867pt;}
.yd4{bottom:362.609200pt;}
.y1b4{bottom:363.641067pt;}
.y1ee{bottom:363.926400pt;}
.y2cf{bottom:364.678667pt;}
.y141{bottom:365.022933pt;}
.y10c{bottom:365.799867pt;}
.y122{bottom:367.342533pt;}
.y17f{bottom:367.827467pt;}
.y28d{bottom:372.552800pt;}
.y1c{bottom:374.630400pt;}
.y231{bottom:375.696533pt;}
.y2ce{bottom:378.012000pt;}
.y1b3{bottom:378.083733pt;}
.y78{bottom:378.462533pt;}
.y4c{bottom:378.464533pt;}
.y1ed{bottom:378.593067pt;}
.y9f{bottom:378.595867pt;}
.yd3{bottom:378.609200pt;}
.y10b{bottom:379.111867pt;}
.y140{bottom:379.465600pt;}
.y17e{bottom:385.155867pt;}
.y28c{bottom:385.886133pt;}
.y1b{bottom:390.630400pt;}
.y2cd{bottom:391.345333pt;}
.y10a{bottom:392.423867pt;}
.y1b2{bottom:392.526400pt;}
.y13f{bottom:393.908267pt;}
.y271{bottom:394.342533pt;}
.y77{bottom:394.462533pt;}
.y4b{bottom:394.464533pt;}
.y9e{bottom:394.595867pt;}
.yd2{bottom:394.609200pt;}
.y230{bottom:398.373867pt;}
.y28b{bottom:399.219467pt;}
.y1ec{bottom:402.006400pt;}
.y17d{bottom:402.489200pt;}
.y2cc{bottom:404.678667pt;}
.y109{bottom:405.735867pt;}
.y1a{bottom:406.630400pt;}
.y1b1{bottom:406.969067pt;}
.y13e{bottom:408.350933pt;}
.y270{bottom:410.342533pt;}
.y76{bottom:410.462533pt;}
.y4a{bottom:410.464533pt;}
.y9d{bottom:410.595867pt;}
.yd1{bottom:410.609200pt;}
.y28a{bottom:412.552800pt;}
.y22f{bottom:413.040533pt;}
.y2cb{bottom:418.012000pt;}
.y1b0{bottom:421.411733pt;}
.y19{bottom:422.630400pt;}
.y13d{bottom:422.793600pt;}
.y26f{bottom:426.342533pt;}
.y75{bottom:426.462533pt;}
.y49{bottom:426.464533pt;}
.y9c{bottom:426.595867pt;}
.yd0{bottom:426.609200pt;}
.y108{bottom:427.367867pt;}
.y22e{bottom:427.483200pt;}
.y1eb{bottom:430.798533pt;}
.y2ca{bottom:431.345333pt;}
.y1af{bottom:435.854400pt;}
.y18{bottom:438.630400pt;}
.y107{bottom:440.679867pt;}
.y289{bottom:441.982533pt;}
.y22d{bottom:442.149867pt;}
.y26e{bottom:442.342533pt;}
.y74{bottom:442.462533pt;}
.y48{bottom:442.464533pt;}
.y17c{bottom:442.584533pt;}
.y9b{bottom:442.595867pt;}
.y2c9{bottom:444.678667pt;}
.y1ea{bottom:448.131867pt;}
.y25f{bottom:448.988533pt;}
.y1ae{bottom:450.297067pt;}
.y13c{bottom:450.804267pt;}
.y106{bottom:453.991867pt;}
.y17{bottom:454.630400pt;}
.y22c{bottom:456.592533pt;}
.y2c8{bottom:458.012000pt;}
.ycf{bottom:458.249200pt;}
.y26d{bottom:458.342533pt;}
.y73{bottom:458.462533pt;}
.y47{bottom:458.464533pt;}
.y17b{bottom:458.584533pt;}
.y1ad{bottom:464.739733pt;}
.y105{bottom:467.303867pt;}
.y16{bottom:470.630400pt;}
.y22b{bottom:471.259200pt;}
.y2c7{bottom:471.345333pt;}
.y9a{bottom:474.235867pt;}
.y26c{bottom:474.342533pt;}
.y72{bottom:474.462533pt;}
.y46{bottom:474.464533pt;}
.y17a{bottom:474.584533pt;}
.y1ac{bottom:479.182400pt;}
.y25e{bottom:479.958000pt;}
.y104{bottom:480.615867pt;}
.y13b{bottom:481.835867pt;}
.y2c6{bottom:484.678667pt;}
.y22a{bottom:485.701867pt;}
.y15{bottom:486.630400pt;}
.y99{bottom:490.235867pt;}
.y26b{bottom:490.342533pt;}
.y1e9{bottom:490.424133pt;}
.y71{bottom:490.462533pt;}
.y45{bottom:490.464533pt;}
.yce{bottom:490.475867pt;}
.y179{bottom:490.584533pt;}
.y1ab{bottom:493.625067pt;}
.y25d{bottom:493.830000pt;}
.y2c5{bottom:498.012000pt;}
.y13a{bottom:499.169200pt;}
.y229{bottom:500.368533pt;}
.y1e8{bottom:501.087333pt;}
.y103{bottom:502.248267pt;}
.y14{bottom:502.630400pt;}
.y26a{bottom:506.342533pt;}
.y70{bottom:506.462533pt;}
.y44{bottom:506.464533pt;}
.ycd{bottom:506.475867pt;}
.y178{bottom:506.584533pt;}
.y25c{bottom:506.595867pt;}
.y1aa{bottom:508.067733pt;}
.y2c4{bottom:511.345333pt;}
.y1e7{bottom:511.750533pt;}
.y228{bottom:514.811200pt;}
.y102{bottom:515.560533pt;}
.y13{bottom:518.630400pt;}
.y25b{bottom:522.235867pt;}
.y269{bottom:522.342533pt;}
.y1e6{bottom:522.413733pt;}
.y6f{bottom:522.462533pt;}
.y43{bottom:522.464533pt;}
.ycc{bottom:522.475867pt;}
.y1a9{bottom:522.580800pt;}
.y177{bottom:522.584533pt;}
.y2c3{bottom:524.678667pt;}
.y101{bottom:528.872933pt;}
.y227{bottom:529.477867pt;}
.y1e5{bottom:533.076933pt;}
.y12{bottom:534.630400pt;}
.y1a8{bottom:537.023467pt;}
.y2c2{bottom:538.012000pt;}
.y268{bottom:538.342533pt;}
.y6e{bottom:538.462533pt;}
.y42{bottom:538.464533pt;}
.ycb{bottom:538.475867pt;}
.y176{bottom:538.584533pt;}
.y139{bottom:538.595867pt;}
.y100{bottom:542.185333pt;}
.y1e4{bottom:543.740133pt;}
.y226{bottom:543.920533pt;}
.y11{bottom:550.630400pt;}
.y2c1{bottom:551.345333pt;}
.y1a7{bottom:551.466133pt;}
.y267{bottom:554.342533pt;}
.y1e3{bottom:554.403333pt;}
.y6d{bottom:554.462533pt;}
.y41{bottom:554.464533pt;}
.yca{bottom:554.475867pt;}
.y175{bottom:554.584533pt;}
.yff{bottom:555.497600pt;}
.y225{bottom:558.587200pt;}
.y2c0{bottom:564.678667pt;}
.y1e2{bottom:565.066533pt;}
.y1a6{bottom:565.908800pt;}
.y10{bottom:566.630400pt;}
.yfe{bottom:568.810000pt;}
.y138{bottom:570.235867pt;}
.y266{bottom:570.342533pt;}
.y6c{bottom:570.462533pt;}
.y40{bottom:570.464533pt;}
.yc9{bottom:570.475867pt;}
.y174{bottom:570.584533pt;}
.y1e1{bottom:575.729733pt;}
.y2bf{bottom:578.012000pt;}
.y1a5{bottom:580.351467pt;}
.yfd{bottom:582.122267pt;}
.y224{bottom:584.368533pt;}
.y288{bottom:586.102533pt;}
.y265{bottom:586.342533pt;}
.y1e0{bottom:586.392933pt;}
.y6b{bottom:586.462533pt;}
.y3f{bottom:586.464533pt;}
.yc8{bottom:586.475867pt;}
.y173{bottom:586.584533pt;}
.y2be{bottom:591.345333pt;}
.y1a4{bottom:594.794133pt;}
.yfc{bottom:595.434667pt;}
.y1df{bottom:597.056133pt;}
.y264{bottom:602.342533pt;}
.y6a{bottom:602.462533pt;}
.y3e{bottom:602.464533pt;}
.yc7{bottom:602.475867pt;}
.y172{bottom:602.584533pt;}
.y2bd{bottom:604.678667pt;}
.yf{bottom:606.770933pt;}
.y1de{bottom:607.719333pt;}
.yfb{bottom:608.746933pt;}
.y1a3{bottom:609.236800pt;}
.y223{bottom:613.160800pt;}
.ye{bottom:617.838267pt;}
.y2bc{bottom:618.012000pt;}
.y1dd{bottom:618.382533pt;}
.y69{bottom:618.462533pt;}
.y3d{bottom:618.464533pt;}
.yc6{bottom:618.475867pt;}
.y171{bottom:618.584533pt;}
.yfa{bottom:622.059333pt;}
.y1a2{bottom:623.679467pt;}
.y1dc{bottom:629.045733pt;}
.y222{bottom:630.494133pt;}
.y2bb{bottom:631.345333pt;}
.y263{bottom:633.982533pt;}
.y287{bottom:634.102533pt;}
.y68{bottom:634.462533pt;}
.y3c{bottom:634.464533pt;}
.yc5{bottom:634.475867pt;}
.y170{bottom:634.584533pt;}
.yf9{bottom:635.371600pt;}
.y1a1{bottom:638.122133pt;}
.y1db{bottom:639.708933pt;}
.y2ba{bottom:644.678667pt;}
.yf8{bottom:648.684000pt;}
.y1da{bottom:650.372133pt;}
.y67{bottom:650.462533pt;}
.y3b{bottom:650.464533pt;}
.yc4{bottom:650.475867pt;}
.y16f{bottom:650.584533pt;}
.yd{bottom:650.852400pt;}
.y1a0{bottom:652.564800pt;}
.y2b9{bottom:658.012000pt;}
.y1d9{bottom:661.035333pt;}
.yf7{bottom:661.996267pt;}
.yc{bottom:662.852400pt;}
.y66{bottom:666.462533pt;}
.y3a{bottom:666.464533pt;}
.yc3{bottom:666.475867pt;}
.y16e{bottom:666.584533pt;}
.y19f{bottom:667.007467pt;}
.yb{bottom:670.029867pt;}
.y2b8{bottom:671.345333pt;}
.y1d8{bottom:671.698533pt;}
.y211{bottom:675.035733pt;}
.yf6{bottom:675.308667pt;}
.y19e{bottom:681.450133pt;}
.ya{bottom:682.029867pt;}
.y1d7{bottom:682.361733pt;}
.y65{bottom:682.462533pt;}
.y39{bottom:682.464533pt;}
.yc2{bottom:682.475867pt;}
.y16d{bottom:682.584533pt;}
.y2b7{bottom:684.678667pt;}
.yf5{bottom:688.620933pt;}
.y210{bottom:689.702400pt;}
.y1d6{bottom:693.024933pt;}
.y19d{bottom:695.892800pt;}
.y2b6{bottom:698.012000pt;}
.y98{bottom:698.102533pt;}
.y64{bottom:698.462533pt;}
.y38{bottom:698.464533pt;}
.yc1{bottom:698.475867pt;}
.y16c{bottom:698.584533pt;}
.y9{bottom:698.852400pt;}
.yf4{bottom:701.933333pt;}
.y1d5{bottom:703.688133pt;}
.y20f{bottom:704.369067pt;}
.y19c{bottom:710.335467pt;}
.y2b5{bottom:711.345333pt;}
.y137{bottom:714.102533pt;}
.y1d4{bottom:714.351333pt;}
.y63{bottom:714.462533pt;}
.y37{bottom:714.464533pt;}
.yc0{bottom:714.475867pt;}
.y16b{bottom:714.584533pt;}
.yf3{bottom:715.245600pt;}
.y20e{bottom:719.035733pt;}
.y8{bottom:724.382933pt;}
.y2b4{bottom:724.678667pt;}
.y19b{bottom:724.778133pt;}
.y1d3{bottom:725.014533pt;}
.yf2{bottom:728.558000pt;}
.y97{bottom:729.982533pt;}
.y62{bottom:730.462533pt;}
.y36{bottom:730.464533pt;}
.ybf{bottom:730.475867pt;}
.y16a{bottom:730.584533pt;}
.y20d{bottom:733.702400pt;}
.y1d2{bottom:735.677733pt;}
.y2b3{bottom:738.012000pt;}
.y19a{bottom:739.220800pt;}
.yf1{bottom:741.870267pt;}
.y136{bottom:745.982533pt;}
.y286{bottom:746.102533pt;}
.y1d1{bottom:746.340933pt;}
.y121{bottom:746.462533pt;}
.y35{bottom:746.464533pt;}
.ybe{bottom:746.475867pt;}
.y169{bottom:746.584533pt;}
.y20c{bottom:748.369067pt;}
.y2b2{bottom:751.345333pt;}
.y199{bottom:753.663467pt;}
.yf0{bottom:755.182667pt;}
.y1d0{bottom:757.004133pt;}
.y120{bottom:762.462533pt;}
.y34{bottom:762.464533pt;}
.ybd{bottom:762.475867pt;}
.y168{bottom:762.584533pt;}
.y20b{bottom:763.035733pt;}
.y2b1{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y1cf{bottom:767.667333pt;}
.y198{bottom:768.106133pt;}
.yef{bottom:768.494933pt;}
.y20a{bottom:777.702400pt;}
.y2b0{bottom:778.012000pt;}
.y1ce{bottom:778.330533pt;}
.y96{bottom:778.462533pt;}
.y33{bottom:778.464533pt;}
.ybc{bottom:778.475867pt;}
.y167{bottom:778.584533pt;}
.yee{bottom:781.807333pt;}
.y197{bottom:782.548800pt;}
.y1cd{bottom:788.993733pt;}
.y2af{bottom:791.345333pt;}
.y209{bottom:792.369067pt;}
.y95{bottom:794.462533pt;}
.y32{bottom:794.464533pt;}
.ybb{bottom:794.475867pt;}
.y166{bottom:794.584533pt;}
.yed{bottom:795.119600pt;}
.y196{bottom:796.991467pt;}
.y6{bottom:797.816533pt;}
.y1cc{bottom:799.656933pt;}
.y2ae{bottom:804.678667pt;}
.y208{bottom:807.035733pt;}
.yec{bottom:808.432000pt;}
.y1cb{bottom:810.320133pt;}
.y94{bottom:810.462533pt;}
.y31{bottom:810.464533pt;}
.y15a{bottom:810.468533pt;}
.yba{bottom:810.475867pt;}
.y165{bottom:810.584533pt;}
.y195{bottom:811.434133pt;}
.y2ad{bottom:818.012000pt;}
.y1ca{bottom:820.983333pt;}
.y207{bottom:821.702400pt;}
.yeb{bottom:821.744267pt;}
.y93{bottom:826.462533pt;}
.y30{bottom:826.464533pt;}
.y159{bottom:826.468533pt;}
.yb9{bottom:826.475867pt;}
.y164{bottom:826.584533pt;}
.y5{bottom:830.226133pt;}
.y2ac{bottom:831.345333pt;}
.yea{bottom:835.056667pt;}
.y206{bottom:836.369067pt;}
.y194{bottom:839.444800pt;}
.y1c9{bottom:841.670400pt;}
.y92{bottom:842.462533pt;}
.y2f{bottom:842.464533pt;}
.y158{bottom:842.468533pt;}
.yb8{bottom:842.475867pt;}
.y2ab{bottom:844.678667pt;}
.ye9{bottom:848.372800pt;}
.y205{bottom:851.035733pt;}
.y2aa{bottom:858.012000pt;}
.y285{bottom:858.102533pt;}
.y163{bottom:858.224533pt;}
.y91{bottom:858.462533pt;}
.y2e{bottom:858.464533pt;}
.y157{bottom:858.468533pt;}
.yb7{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y193{bottom:870.462533pt;}
.y2a9{bottom:871.345333pt;}
.ye8{bottom:874.111467pt;}
.y162{bottom:874.224533pt;}
.y90{bottom:874.462533pt;}
.y2d{bottom:874.464533pt;}
.y156{bottom:874.468533pt;}
.yb6{bottom:874.475867pt;}
.y204{bottom:876.337067pt;}
.y2a8{bottom:884.678667pt;}
.y192{bottom:887.795867pt;}
.y161{bottom:890.224533pt;}
.y8f{bottom:890.462533pt;}
.y2c{bottom:890.464533pt;}
.y155{bottom:890.468533pt;}
.yb5{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y2a7{bottom:898.012000pt;}
.ye7{bottom:905.129200pt;}
.y244{bottom:906.104533pt;}
.y8e{bottom:906.462533pt;}
.y61{bottom:906.464533pt;}
.y154{bottom:906.468533pt;}
.yb4{bottom:906.475867pt;}
.y2a6{bottom:911.345333pt;}
.y2b{bottom:922.104533pt;}
.y8d{bottom:922.462533pt;}
.y60{bottom:922.464533pt;}
.y153{bottom:922.468533pt;}
.yb3{bottom:922.475867pt;}
.y2a5{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y11f{bottom:1006.590000pt;}
.y2a4{bottom:1006.590133pt;}
.y203{bottom:1006.593067pt;}
.y8c{bottom:1006.594400pt;}
.y24e{bottom:1006.598133pt;}
.y160{bottom:1006.598400pt;}
.y2e5{bottom:1006.598667pt;}
.y15d{bottom:1006.602933pt;}
.y262{bottom:1006.604400pt;}
.y233{bottom:1006.608533pt;}
.y1c8{bottom:1006.628400pt;}
.y243{bottom:1006.630000pt;}
.y151{bottom:1006.634667pt;}
.y191{bottom:1006.644267pt;}
.y135{bottom:1006.652000pt;}
.y29{bottom:1009.860000pt;}
.y28{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h19{height:19.195313pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h1a{height:28.437500pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.hd{height:29.169756pt;}
.h12{height:29.645833pt;}
.h16{height:29.777033pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.h1c{height:33.351562pt;}
.h11{height:37.057292pt;}
.h18{height:37.077025pt;}
.h13{height:37.365121pt;}
.h14{height:37.380054pt;}
.h15{height:37.380588pt;}
.h1b{height:37.381654pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.860475pt;}
.h9{height:38.880208pt;}
.h17{height:46.719068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x13{left:69.921200pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x2c{left:90.708667pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x2e{left:109.606533pt;}
.x3{left:111.491467pt;}
.xf{left:117.169200pt;}
.xe{left:147.542533pt;}
.x1b{left:151.181067pt;}
.x1c{left:153.070800pt;}
.x8{left:169.380933pt;}
.x19{left:176.780133pt;}
.x15{left:187.644800pt;}
.x1d{left:275.362933pt;}
.x16{left:288.356933pt;}
.x1e{left:332.941600pt;}
.x23{left:335.608267pt;}
.x20{left:399.618933pt;}
.x1f{left:403.170933pt;}
.x6{left:404.481333pt;}
.xb{left:406.354267pt;}
.x28{left:418.491467pt;}
.x26{left:419.951467pt;}
.x10{left:425.195867pt;}
.x2d{left:429.002000pt;}
.xa{left:436.580933pt;}
.x2b{left:447.874133pt;}
.x11{left:455.435867pt;}
.x29{left:514.527467pt;}
.x2a{left:529.885333pt;}
.x22{left:531.970933pt;}
.x21{left:535.522933pt;}
.x27{left:536.551467pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x17{left:641.527200pt;}
.xc{left:647.459200pt;}
.x1a{left:660.328400pt;}
.x18{left:661.218533pt;}
.x12{left:666.356800pt;}
.x24{left:669.101600pt;}
.x25{left:673.101600pt;}
}




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