
    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_467ba16679a415be650b412f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_7116f60d749b3903b28d1dc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2c34bf479418d431515c9468.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_200bc1df779f8320ada28d9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.071000;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_1c38f185c9840b2fae397910.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_98470d0205eaba772ed2dc11.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9b3e6b729055739a9798fce5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.947680px;}
.ls94{letter-spacing:-0.868320px;}
.ls6d{letter-spacing:-0.776880px;}
.ls1a{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.601200px;}
.ls36{letter-spacing:-0.597600px;}
.ls6{letter-spacing:-0.463680px;}
.ls38{letter-spacing:-0.418320px;}
.ls7{letter-spacing:-0.397440px;}
.ls15{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.358560px;}
.ls5{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.298800px;}
.ls8c{letter-spacing:-0.287280px;}
.lsb{letter-spacing:-0.264960px;}
.ls83{letter-spacing:-0.241200px;}
.ls3e{letter-spacing:-0.239040px;}
.ls60{letter-spacing:-0.233280px;}
.ls14{letter-spacing:-0.216000px;}
.ls85{letter-spacing:-0.192960px;}
.ls2d{letter-spacing:-0.191520px;}
.ls33{letter-spacing:-0.179280px;}
.ls81{letter-spacing:-0.167760px;}
.ls13{letter-spacing:-0.162000px;}
.ls84{letter-spacing:-0.144720px;}
.ls4{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.120240px;}
.ls31{letter-spacing:-0.119520px;}
.ls12{letter-spacing:-0.108000px;}
.ls3{letter-spacing:-0.077760px;}
.ls2e{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.053784px;}
.lsf{letter-spacing:0.054000px;}
.ls53{letter-spacing:0.059760px;}
.ls11{letter-spacing:0.077760px;}
.ls3c{letter-spacing:0.095760px;}
.lsa1{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.131760px;}
.ls41{letter-spacing:0.155520px;}
.ls17{letter-spacing:0.162000px;}
.ls3f{letter-spacing:0.167760px;}
.ls2b{letter-spacing:0.168480px;}
.ls35{letter-spacing:0.179280px;}
.ls90{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.191520px;}
.ls19{letter-spacing:0.216000px;}
.lsa0{letter-spacing:0.233280px;}
.ls52{letter-spacing:0.239040px;}
.ls24{letter-spacing:0.245016px;}
.ls29{letter-spacing:0.268920px;}
.ls10{letter-spacing:0.270000px;}
.ls9e{letter-spacing:0.274896px;}
.ls77{letter-spacing:0.280872px;}
.ls8d{letter-spacing:0.287280px;}
.ls82{letter-spacing:0.289440px;}
.ls39{letter-spacing:0.290880px;}
.ls1b{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.303120px;}
.ls8f{letter-spacing:0.304776px;}
.ls89{letter-spacing:0.310752px;}
.ls40{letter-spacing:0.311040px;}
.lse{letter-spacing:0.324000px;}
.ls2c{letter-spacing:0.325440px;}
.ls92{letter-spacing:0.326880px;}
.ls1{letter-spacing:0.331200px;}
.ls87{letter-spacing:0.334656px;}
.ls37{letter-spacing:0.358560px;}
.ls3a{letter-spacing:0.364536px;}
.ls3d{letter-spacing:0.383040px;}
.ls9f{letter-spacing:0.402480px;}
.ls7e{letter-spacing:0.418320px;}
.ls9c{letter-spacing:0.478080px;}
.ls34{letter-spacing:0.537840px;}
.ls93{letter-spacing:0.597600px;}
.ls8e{letter-spacing:0.657360px;}
.ls4e{letter-spacing:1.015920px;}
.ls86{letter-spacing:1.033848px;}
.ls8b{letter-spacing:1.207152px;}
.ls95{letter-spacing:1.374480px;}
.ls28{letter-spacing:1.733040px;}
.ls61{letter-spacing:1.756944px;}
.ls7b{letter-spacing:1.810728px;}
.ls57{letter-spacing:2.450160px;}
.ls99{letter-spacing:2.486016px;}
.ls68{letter-spacing:3.047760px;}
.ls25{letter-spacing:3.167280px;}
.ls67{letter-spacing:3.179232px;}
.ls44{letter-spacing:3.884400px;}
.ls4b{letter-spacing:3.991968px;}
.ls22{letter-spacing:4.601520px;}
.ls64{letter-spacing:4.685184px;}
.ls73{letter-spacing:5.318640px;}
.ls5f{letter-spacing:5.378400px;}
.ls5a{letter-spacing:5.479992px;}
.ls20{letter-spacing:6.035760px;}
.ls21{letter-spacing:6.059664px;}
.ls45{letter-spacing:6.752880px;}
.ls50{letter-spacing:7.470000px;}
.ls48{letter-spacing:8.067600px;}
.ls49{letter-spacing:8.187120px;}
.ls58{letter-spacing:8.904240px;}
.ls2a{letter-spacing:9.621360px;}
.ls80{letter-spacing:9.675144px;}
.ls91{letter-spacing:9.979920px;}
.ls1c{letter-spacing:10.326528px;}
.ls66{letter-spacing:10.398240px;}
.ls9a{letter-spacing:10.410192px;}
.ls59{letter-spacing:10.906200px;}
.ls23{letter-spacing:11.115360px;}
.ls7d{letter-spacing:11.810880px;}
.ls4f{letter-spacing:11.832480px;}
.ls8a{letter-spacing:11.856384px;}
.ls56{letter-spacing:12.358368px;}
.ls55{letter-spacing:12.549600px;}
.ls98{letter-spacing:13.159152px;}
.ls26{letter-spacing:13.266720px;}
.ls5c{letter-spacing:13.983840px;}
.ls74{letter-spacing:14.700960px;}
.ls43{letter-spacing:15.418080px;}
.ls42{letter-spacing:16.135200px;}
.ls4c{letter-spacing:16.852320px;}
.ls79{letter-spacing:17.569440px;}
.ls96{letter-spacing:17.928000px;}
.ls1f{letter-spacing:19.003680px;}
.ls6c{letter-spacing:19.087344px;}
.ls72{letter-spacing:19.720800px;}
.ls6b{letter-spacing:20.437920px;}
.ls65{letter-spacing:21.155040px;}
.ls7a{letter-spacing:21.214800px;}
.ls88{letter-spacing:21.872160px;}
.ls70{letter-spacing:22.015584px;}
.ls63{letter-spacing:22.589280px;}
.ls4a{letter-spacing:23.306400px;}
.ls54{letter-spacing:24.800400px;}
.ls97{letter-spacing:24.806376px;}
.ls5d{letter-spacing:25.517520px;}
.ls75{letter-spacing:26.234640px;}
.ls6a{letter-spacing:26.951760px;}
.ls69{letter-spacing:27.668880px;}
.ls9d{letter-spacing:28.302336px;}
.ls71{letter-spacing:28.350144px;}
.ls76{letter-spacing:31.254480px;}
.ls27{letter-spacing:31.971600px;}
.ls7f{letter-spacing:32.688720px;}
.ls5e{letter-spacing:33.405840px;}
.ls5b{letter-spacing:34.840080px;}
.ls78{letter-spacing:36.991440px;}
.ls6e{letter-spacing:37.774296px;}
.ls4d{letter-spacing:39.919680px;}
.ls6f{letter-spacing:40.636800px;}
.ls51{letter-spacing:41.353920px;}
.ls62{letter-spacing:42.071040px;}
.ls1d{letter-spacing:57.190320px;}
.ls1e{letter-spacing:57.214224px;}
.ls46{letter-spacing:64.002960px;}
.ls9b{letter-spacing:73.026720px;}
.ls7c{letter-spacing:167.686560px;}
.lsd{letter-spacing:851.330880px;}
.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;}
}
.ws77{word-spacing:-59.760000px;}
.ws67{word-spacing:-35.732880px;}
.ws124{word-spacing:-35.397360px;}
.ws0{word-spacing:-33.306480px;}
.ws62{word-spacing:-19.726560px;}
.ws61{word-spacing:-19.439280px;}
.ws76{word-spacing:-19.343520px;}
.ws22{word-spacing:-19.152000px;}
.ws174{word-spacing:-19.056240px;}
.ws1{word-spacing:-18.282240px;}
.wsc8{word-spacing:-16.018560px;}
.ws193{word-spacing:-13.685040px;}
.ws184{word-spacing:-13.326480px;}
.ws24{word-spacing:-13.206960px;}
.ws2a{word-spacing:-13.027680px;}
.ws27{word-spacing:-12.967920px;}
.wsb2{word-spacing:-12.908160px;}
.ws29{word-spacing:-12.848400px;}
.ws2d{word-spacing:-12.788640px;}
.ws125{word-spacing:-12.728880px;}
.ws25{word-spacing:-12.669120px;}
.ws28{word-spacing:-12.609360px;}
.ws2c{word-spacing:-12.549600px;}
.ws23{word-spacing:-12.489840px;}
.ws180{word-spacing:-12.430080px;}
.ws2b{word-spacing:-12.370320px;}
.ws26{word-spacing:-12.310560px;}
.ws2e{word-spacing:-12.191040px;}
.ws85{word-spacing:-12.131280px;}
.ws11f{word-spacing:-12.071520px;}
.ws84{word-spacing:-12.011760px;}
.ws156{word-spacing:-11.832480px;}
.ws2f{word-spacing:-11.772720px;}
.wsd{word-spacing:-11.772000px;}
.ws14{word-spacing:-11.664000px;}
.ws194{word-spacing:-11.556000px;}
.wsf{word-spacing:-11.448000px;}
.wsc{word-spacing:-11.340000px;}
.wsb{word-spacing:-11.286000px;}
.wse{word-spacing:-11.232000px;}
.ws15{word-spacing:-11.178000px;}
.ws11{word-spacing:-11.124000px;}
.ws10{word-spacing:-11.070000px;}
.ws158{word-spacing:-10.876320px;}
.ws157{word-spacing:-10.816560px;}
.ws12{word-spacing:-10.800000px;}
.ws13{word-spacing:-10.746000px;}
.ws63{word-spacing:-10.637280px;}
.ws159{word-spacing:-10.577520px;}
.ws12e{word-spacing:-10.516320px;}
.ws15a{word-spacing:-9.985680px;}
.ws1b{word-spacing:-0.972000px;}
.ws189{word-spacing:-0.717120px;}
.ws147{word-spacing:-0.657360px;}
.ws160{word-spacing:-0.597600px;}
.ws188{word-spacing:-0.478080px;}
.ws1c{word-spacing:-0.432000px;}
.ws10e{word-spacing:-0.418320px;}
.wsf0{word-spacing:-0.383040px;}
.ws20{word-spacing:-0.378000px;}
.ws8{word-spacing:-0.360720px;}
.ws64{word-spacing:-0.358560px;}
.ws1f{word-spacing:-0.324000px;}
.ws32{word-spacing:-0.298800px;}
.ws143{word-spacing:-0.287280px;}
.ws16{word-spacing:-0.270000px;}
.wsbd{word-spacing:-0.239040px;}
.ws1d{word-spacing:-0.216000px;}
.ws78{word-spacing:-0.191520px;}
.wsbf{word-spacing:-0.179280px;}
.ws10c{word-spacing:-0.155520px;}
.ws44{word-spacing:-0.119520px;}
.ws109{word-spacing:-0.095760px;}
.ws195{word-spacing:-0.077760px;}
.ws65{word-spacing:-0.059760px;}
.ws2{word-spacing:0.000000px;}
.ws130{word-spacing:0.048240px;}
.ws38{word-spacing:0.059760px;}
.ws3{word-spacing:0.077760px;}
.ws12f{word-spacing:0.096480px;}
.ws35{word-spacing:0.119520px;}
.ws16a{word-spacing:0.144720px;}
.ws17{word-spacing:0.155520px;}
.ws18{word-spacing:0.162000px;}
.ws5f{word-spacing:0.179280px;}
.ws128{word-spacing:0.191520px;}
.ws1a{word-spacing:0.216000px;}
.ws66{word-spacing:0.239040px;}
.wsa{word-spacing:0.264960px;}
.ws19{word-spacing:0.270000px;}
.ws68{word-spacing:0.287280px;}
.ws5e{word-spacing:0.298800px;}
.ws21{word-spacing:0.324000px;}
.ws30{word-spacing:0.358560px;}
.ws9{word-spacing:0.360720px;}
.ws1e{word-spacing:0.378000px;}
.wsab{word-spacing:0.388800px;}
.ws7{word-spacing:0.397440px;}
.ws4b{word-spacing:0.418320px;}
.ws4{word-spacing:0.463680px;}
.ws5d{word-spacing:0.478080px;}
.ws46{word-spacing:0.597600px;}
.ws56{word-spacing:0.657360px;}
.ws5{word-spacing:0.662400px;}
.ws69{word-spacing:0.717120px;}
.wsc4{word-spacing:0.776880px;}
.ws6{word-spacing:0.794880px;}
.ws79{word-spacing:0.855360px;}
.ws169{word-spacing:0.868320px;}
.ws12a{word-spacing:1.053360px;}
.ws6c{word-spacing:1.075680px;}
.ws166{word-spacing:1.135440px;}
.ws14b{word-spacing:1.314720px;}
.ws16d{word-spacing:1.374480px;}
.ws59{word-spacing:1.434240px;}
.wsb4{word-spacing:1.613520px;}
.ws57{word-spacing:1.792800px;}
.ws5a{word-spacing:1.852560px;}
.ws58{word-spacing:2.031840px;}
.ws6e{word-spacing:2.151360px;}
.ws14d{word-spacing:2.330640px;}
.ws9f{word-spacing:2.450160px;}
.wsb3{word-spacing:2.509920px;}
.wse8{word-spacing:2.569680px;}
.wsd1{word-spacing:2.748960px;}
.ws8b{word-spacing:2.808720px;}
.ws4c{word-spacing:2.868480px;}
.ws9d{word-spacing:2.928240px;}
.ws12d{word-spacing:3.047760px;}
.ws12c{word-spacing:3.167280px;}
.wsa4{word-spacing:3.227040px;}
.ws139{word-spacing:3.286800px;}
.ws74{word-spacing:3.346560px;}
.ws4d{word-spacing:3.466080px;}
.ws6f{word-spacing:3.585600px;}
.ws131{word-spacing:3.705120px;}
.ws8d{word-spacing:3.944160px;}
.ws186{word-spacing:4.003920px;}
.ws187{word-spacing:4.063680px;}
.ws8c{word-spacing:4.183200px;}
.wsa2{word-spacing:4.242960px;}
.ws45{word-spacing:4.302720px;}
.wsf7{word-spacing:4.482000px;}
.ws43{word-spacing:4.661280px;}
.ws137{word-spacing:4.721040px;}
.wsed{word-spacing:4.780800px;}
.ws185{word-spacing:4.900320px;}
.ws54{word-spacing:5.019840px;}
.ws144{word-spacing:5.075280px;}
.ws75{word-spacing:5.199120px;}
.ws145{word-spacing:5.318640px;}
.ws9e{word-spacing:5.378400px;}
.ws142{word-spacing:5.458320px;}
.ws116{word-spacing:5.617440px;}
.ws42{word-spacing:5.736960px;}
.wsf5{word-spacing:5.916240px;}
.ws123{word-spacing:6.095520px;}
.ws40{word-spacing:6.155280px;}
.ws41{word-spacing:6.334560px;}
.ws50{word-spacing:6.454080px;}
.ws15f{word-spacing:6.633360px;}
.ws4f{word-spacing:6.812640px;}
.ws9a{word-spacing:6.872400px;}
.ws4e{word-spacing:7.051680px;}
.wsd2{word-spacing:7.111440px;}
.ws92{word-spacing:7.171200px;}
.ws196{word-spacing:7.410240px;}
.ws13f{word-spacing:7.529760px;}
.wsb0{word-spacing:7.589520px;}
.ws121{word-spacing:7.649280px;}
.ws87{word-spacing:7.709040px;}
.ws16b{word-spacing:7.768800px;}
.ws86{word-spacing:7.828560px;}
.ws71{word-spacing:7.888320px;}
.ws138{word-spacing:7.948080px;}
.ws88{word-spacing:8.067600px;}
.ws16c{word-spacing:8.246880px;}
.ws146{word-spacing:8.306640px;}
.ws17f{word-spacing:8.366400px;}
.ws17e{word-spacing:8.485920px;}
.ws93{word-spacing:8.545680px;}
.ws60{word-spacing:8.665200px;}
.ws16f{word-spacing:8.964000px;}
.wsec{word-spacing:9.023760px;}
.ws16e{word-spacing:9.083520px;}
.ws154{word-spacing:9.262800px;}
.ws3b{word-spacing:9.382320px;}
.wsff{word-spacing:9.486720px;}
.ws117{word-spacing:9.681120px;}
.ws100{word-spacing:9.720000px;}
.ws39{word-spacing:9.740880px;}
.ws120{word-spacing:9.800640px;}
.ws9b{word-spacing:9.979920px;}
.ws31{word-spacing:10.099440px;}
.ws34{word-spacing:10.278720px;}
.ws177{word-spacing:10.342080px;}
.wsc5{word-spacing:10.458000px;}
.wsbb{word-spacing:10.517760px;}
.ws3a{word-spacing:10.577520px;}
.ws33{word-spacing:10.697040px;}
.wsbc{word-spacing:10.756800px;}
.ws48{word-spacing:10.816560px;}
.ws49{word-spacing:10.995840px;}
.ws47{word-spacing:11.175120px;}
.ws173{word-spacing:11.234880px;}
.ws9c{word-spacing:11.294640px;}
.ws4a{word-spacing:11.414160px;}
.ws13c{word-spacing:11.473920px;}
.ws6d{word-spacing:11.533680px;}
.ws91{word-spacing:11.712960px;}
.ws15b{word-spacing:11.892240px;}
.wsf8{word-spacing:11.952000px;}
.ws148{word-spacing:12.131280px;}
.ws126{word-spacing:12.161520px;}
.wsd9{word-spacing:12.250800px;}
.wsdd{word-spacing:12.370320px;}
.ws99{word-spacing:12.430080px;}
.ws199{word-spacing:12.489840px;}
.ws127{word-spacing:12.544560px;}
.wsd8{word-spacing:12.609360px;}
.ws115{word-spacing:12.669120px;}
.ws183{word-spacing:12.848400px;}
.ws162{word-spacing:12.908160px;}
.ws51{word-spacing:12.967920px;}
.ws52{word-spacing:13.147200px;}
.wsa5{word-spacing:13.326480px;}
.ws163{word-spacing:13.565520px;}
.ws140{word-spacing:13.597920px;}
.wsa6{word-spacing:13.625280px;}
.ws7d{word-spacing:13.685040px;}
.ws141{word-spacing:13.693680px;}
.ws168{word-spacing:13.864320px;}
.ws170{word-spacing:14.043600px;}
.wsad{word-spacing:14.103360px;}
.wsac{word-spacing:14.163120px;}
.wsce{word-spacing:14.282640px;}
.ws182{word-spacing:14.342400px;}
.ws7b{word-spacing:14.402160px;}
.wsa1{word-spacing:14.581440px;}
.wsa0{word-spacing:14.760720px;}
.wsbe{word-spacing:14.820480px;}
.ws13d{word-spacing:14.999760px;}
.ws3f{word-spacing:15.119280px;}
.ws13e{word-spacing:15.298560px;}
.wsde{word-spacing:15.477840px;}
.ws6a{word-spacing:15.537600px;}
.ws6b{word-spacing:15.716880px;}
.ws17a{word-spacing:15.776640px;}
.ws8e{word-spacing:15.836400px;}
.wsb8{word-spacing:16.194960px;}
.wsb7{word-spacing:16.254720px;}
.wse1{word-spacing:16.314480px;}
.ws72{word-spacing:16.553520px;}
.ws113{word-spacing:16.732800px;}
.ws10f{word-spacing:17.270640px;}
.ws17b{word-spacing:17.330400px;}
.ws178{word-spacing:17.449920px;}
.ws13a{word-spacing:17.629200px;}
.ws17c{word-spacing:17.688960px;}
.ws3c{word-spacing:17.987760px;}
.ws179{word-spacing:18.226800px;}
.ws129{word-spacing:18.290160px;}
.ws3d{word-spacing:18.346320px;}
.ws103{word-spacing:18.585360px;}
.ws7f{word-spacing:18.704880px;}
.ws18d{word-spacing:18.884160px;}
.wsc6{word-spacing:19.063440px;}
.wsc7{word-spacing:19.422000px;}
.ws18a{word-spacing:19.601280px;}
.ws18c{word-spacing:19.720800px;}
.wsd5{word-spacing:19.780560px;}
.ws18b{word-spacing:19.840320px;}
.wsf4{word-spacing:19.900080px;}
.wsc3{word-spacing:20.139120px;}
.wse7{word-spacing:20.497680px;}
.wse6{word-spacing:20.557440px;}
.ws13b{word-spacing:20.736720px;}
.ws5b{word-spacing:20.856240px;}
.wsb9{word-spacing:21.035520px;}
.ws5c{word-spacing:21.214800px;}
.ws155{word-spacing:21.274560px;}
.wsba{word-spacing:21.453840px;}
.ws55{word-spacing:21.573360px;}
.wsd3{word-spacing:21.931920px;}
.wsb6{word-spacing:21.991680px;}
.ws14c{word-spacing:22.170960px;}
.ws114{word-spacing:22.290480px;}
.ws110{word-spacing:22.708800px;}
.ws111{word-spacing:22.888080px;}
.ws8a{word-spacing:23.007600px;}
.wsfc{word-spacing:23.366160px;}
.ws89{word-spacing:23.425920px;}
.wsf1{word-spacing:23.784480px;}
.ws11c{word-spacing:24.143040px;}
.ws97{word-spacing:24.501600px;}
.ws10b{word-spacing:24.649920px;}
.ws98{word-spacing:24.860160px;}
.ws153{word-spacing:24.919920px;}
.wsa7{word-spacing:25.218720px;}
.wsef{word-spacing:25.338240px;}
.wsb5{word-spacing:25.398000px;}
.wsee{word-spacing:25.577280px;}
.ws10a{word-spacing:25.583040px;}
.wse2{word-spacing:25.935840px;}
.wse3{word-spacing:26.294400px;}
.ws14a{word-spacing:26.593200px;}
.ws149{word-spacing:26.652960px;}
.wsfd{word-spacing:26.772480px;}
.wsc2{word-spacing:26.832240px;}
.ws172{word-spacing:26.892000px;}
.wsc1{word-spacing:27.011520px;}
.ws171{word-spacing:27.071280px;}
.wsc0{word-spacing:27.370080px;}
.ws10d{word-spacing:27.728640px;}
.wsd4{word-spacing:28.087200px;}
.ws197{word-spacing:28.326240px;}
.ws198{word-spacing:28.505520px;}
.ws3e{word-spacing:28.804320px;}
.ws164{word-spacing:29.162880px;}
.ws73{word-spacing:29.461680px;}
.ws136{word-spacing:30.238560px;}
.wse5{word-spacing:30.955680px;}
.wse4{word-spacing:31.433760px;}
.ws53{word-spacing:31.672800px;}
.ws119{word-spacing:32.389920px;}
.ws11b{word-spacing:32.748480px;}
.ws11a{word-spacing:32.808240px;}
.wsa8{word-spacing:33.107040px;}
.ws14f{word-spacing:33.226560px;}
.wsdf{word-spacing:33.465600px;}
.wsaa{word-spacing:33.525360px;}
.wse0{word-spacing:33.585120px;}
.wsa9{word-spacing:33.704640px;}
.wsa3{word-spacing:33.824160px;}
.ws14e{word-spacing:34.242480px;}
.ws7c{word-spacing:34.541280px;}
.ws70{word-spacing:35.258400px;}
.ws7a{word-spacing:35.380800px;}
.ws118{word-spacing:35.856000px;}
.ws102{word-spacing:35.975520px;}
.ws101{word-spacing:36.393840px;}
.ws83{word-spacing:36.573120px;}
.wsea{word-spacing:36.692640px;}
.wseb{word-spacing:37.051200px;}
.wsfe{word-spacing:37.110960px;}
.wse9{word-spacing:37.170720px;}
.wscd{word-spacing:37.409760px;}
.wscc{word-spacing:37.768320px;}
.wscb{word-spacing:37.828080px;}
.ws122{word-spacing:38.126880px;}
.ws135{word-spacing:38.903760px;}
.ws134{word-spacing:39.262320px;}
.ws8f{word-spacing:39.620880px;}
.ws90{word-spacing:39.800160px;}
.wscf{word-spacing:40.338000px;}
.ws176{word-spacing:40.602240px;}
.wsd0{word-spacing:40.696560px;}
.ws96{word-spacing:41.055120px;}
.ws95{word-spacing:41.413680px;}
.wsaf{word-spacing:41.772240px;}
.ws80{word-spacing:42.847920px;}
.ws108{word-spacing:43.206480px;}
.ws17d{word-spacing:43.923600px;}
.ws11e{word-spacing:45.357840px;}
.wsae{word-spacing:46.792080px;}
.ws107{word-spacing:47.509200px;}
.wsf3{word-spacing:48.226320px;}
.wsf2{word-spacing:48.405600px;}
.wsd6{word-spacing:48.943440px;}
.wsda{word-spacing:51.094800px;}
.wsca{word-spacing:51.243840px;}
.ws181{word-spacing:51.274080px;}
.wsc9{word-spacing:51.477120px;}
.ws132{word-spacing:51.811920px;}
.ws133{word-spacing:52.170480px;}
.ws82{word-spacing:52.529040px;}
.ws152{word-spacing:52.887600px;}
.wsdc{word-spacing:55.457280px;}
.ws7e{word-spacing:56.174400px;}
.ws37{word-spacing:57.489120px;}
.ws36{word-spacing:57.967200px;}
.ws105{word-spacing:59.640480px;}
.wsd7{word-spacing:63.524880px;}
.ws81{word-spacing:64.779840px;}
.ws12b{word-spacing:65.496960px;}
.wsfa{word-spacing:66.632400px;}
.ws190{word-spacing:72.727920px;}
.ws191{word-spacing:72.907200px;}
.ws11d{word-spacing:74.162160px;}
.ws192{word-spacing:74.580480px;}
.wsfb{word-spacing:75.297600px;}
.ws165{word-spacing:75.596400px;}
.ws104{word-spacing:76.313520px;}
.ws151{word-spacing:79.182000px;}
.ws150{word-spacing:79.540560px;}
.ws94{word-spacing:79.899120px;}
.wsf9{word-spacing:80.018640px;}
.wsf6{word-spacing:84.978720px;}
.ws15c{word-spacing:85.695840px;}
.ws15e{word-spacing:86.054400px;}
.ws15d{word-spacing:86.293440px;}
.wsb1{word-spacing:102.966480px;}
.wsdb{word-spacing:107.269200px;}
.ws106{word-spacing:148.204800px;}
.ws112{word-spacing:196.550640px;}
.ws18f{word-spacing:237.605760px;}
.ws18e{word-spacing:237.964320px;}
.ws175{word-spacing:265.542480px;}
.ws161{word-spacing:493.916400px;}
.ws167{word-spacing:2175.144480px;}
._1c{margin-left:-17.908056px;}
._c{margin-left:-13.027680px;}
._b{margin-left:-10.725984px;}
._e{margin-left:-9.320688px;}
._a{margin-left:-6.861312px;}
._d{margin-left:-4.331664px;}
._2{margin-left:-1.469664px;}
._1{width:1.384128px;}
._24{width:2.386080px;}
._15{width:3.387024px;}
._9{width:4.402944px;}
._7{width:5.428512px;}
._8{width:6.570432px;}
._11{width:9.014112px;}
._4{width:10.527552px;}
._1d{width:11.715984px;}
._13{width:14.739264px;}
._10{width:15.907824px;}
._1e{width:17.298000px;}
._19{width:19.012608px;}
._17{width:20.172384px;}
._1b{width:21.584448px;}
._18{width:25.041312px;}
._22{width:26.473680px;}
._16{width:28.301904px;}
._1f{width:31.575456px;}
._14{width:34.182720px;}
._1a{width:36.718416px;}
._21{width:44.016624px;}
._6{width:56.628144px;}
._5{width:57.847680px;}
._23{width:237.723120px;}
._20{width:494.673984px;}
._12{width:621.440640px;}
._3{width:652.374000px;}
._f{width:829.029744px;}
._0{width:851.340960px;}
.fc5{color:rgb(153,204,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc6{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsb{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.fs3{font-size:144.000000px;}
.fs9{font-size:167.760000px;}
.y2b{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y23{bottom:2.520000px;}
.y33{bottom:4.320000px;}
.y25{bottom:5.940000px;}
.y84{bottom:7.200000px;}
.y82{bottom:7.380000px;}
.y34{bottom:10.080000px;}
.y86{bottom:27.540000px;}
.y9e{bottom:27.720000px;}
.y61{bottom:30.780000px;}
.y193{bottom:37.800000px;}
.y4{bottom:46.620000px;}
.y89{bottom:47.880000px;}
.y98{bottom:48.060000px;}
.y1e2{bottom:50.760000px;}
.y26f{bottom:52.740000px;}
.y112{bottom:63.180000px;}
.y2a5{bottom:65.880000px;}
.y90{bottom:68.400000px;}
.y5d{bottom:74.938500px;}
.y1e1{bottom:76.140000px;}
.y150{bottom:83.520000px;}
.y3b9{bottom:88.203960px;}
.y110{bottom:88.560000px;}
.y192{bottom:88.740000px;}
.y305{bottom:90.115920px;}
.y8f{bottom:92.520000px;}
.y169{bottom:93.185640px;}
.y1fc{bottom:95.352120px;}
.y196{bottom:95.763600px;}
.y1c0{bottom:97.096140px;}
.y2d{bottom:97.380000px;}
.yc7{bottom:97.380720px;}
.y5c{bottom:97.618500px;}
.y311{bottom:98.531100px;}
.y116{bottom:98.814420px;}
.y289{bottom:99.127620px;}
.y93{bottom:99.733320px;}
.y1e0{bottom:101.520000px;}
.y3eb{bottom:102.338100px;}
.y3b8{bottom:106.380000px;}
.y26c{bottom:108.540000px;}
.y347{bottom:108.635040px;}
.y14f{bottom:109.080000px;}
.y10f{bottom:114.120000px;}
.y304{bottom:115.678260px;}
.y23d{bottom:115.685460px;}
.y2a3{bottom:116.820000px;}
.y195{bottom:117.546120px;}
.yc6{bottom:117.893340px;}
.y168{bottom:118.568700px;}
.y92{bottom:120.066660px;}
.y5b{bottom:120.663000px;}
.y1fb{bottom:120.735180px;}
.y1bf{bottom:122.479200px;}
.y38c{bottom:123.279480px;}
.y310{bottom:123.914160px;}
.y288{bottom:124.689960px;}
.y3ea{bottom:127.900440px;}
.y3b7{bottom:131.040000px;}
.y346{bottom:134.018100px;}
.y26b{bottom:134.100000px;}
.y14e{bottom:134.460000px;}
.y365{bottom:136.374120px;}
.y10e{bottom:139.500000px;}
.y91{bottom:140.400000px;}
.y303{bottom:141.061320px;}
.y23c{bottom:141.068520px;}
.y2a2{bottom:142.200000px;}
.yc5{bottom:143.276400px;}
.y5a{bottom:143.518500px;}
.y167{bottom:144.131040px;}
.y257{bottom:145.080000px;}
.y1fa{bottom:146.476800px;}
.y1be{bottom:148.041540px;}
.y38b{bottom:148.662540px;}
.y30f{bottom:149.476500px;}
.y287{bottom:150.252300px;}
.y1de{bottom:152.460000px;}
.y3e9{bottom:153.283500px;}
.y40b{bottom:159.561000px;}
.y345{bottom:159.580440px;}
.y364{bottom:163.549980px;}
.y10d{bottom:164.880000px;}
.y226{bottom:165.060000px;}
.y59{bottom:166.374000px;}
.y302{bottom:166.444380px;}
.y23b{bottom:166.630860px;}
.y2a1{bottom:167.760000px;}
.yc4{bottom:168.659460px;}
.y166{bottom:169.872660px;}
.y1f9{bottom:172.039140px;}
.y1bd{bottom:173.424600px;}
.y38a{bottom:174.224880px;}
.y8c{bottom:174.780000px;}
.y30e{bottom:175.038840px;}
.y286{bottom:175.993920px;}
.y3e8{bottom:178.666560px;}
.y8e{bottom:181.986660px;}
.y40a{bottom:184.944060px;}
.y344{bottom:184.963500px;}
.y14c{bottom:185.400000px;}
.y363{bottom:189.112320px;}
.y58{bottom:189.229500px;}
.y268{bottom:189.900000px;}
.y18e{bottom:190.440000px;}
.y25a{bottom:191.696940px;}
.y301{bottom:192.006720px;}
.y23a{bottom:192.013920px;}
.y21{bottom:192.757140px;}
.yc3{bottom:194.221800px;}
.y165{bottom:195.255720px;}
.y255{bottom:196.020000px;}
.y3b6{bottom:196.787340px;}
.y227{bottom:197.460000px;}
.y1f8{bottom:197.601480px;}
.y1bc{bottom:198.807660px;}
.y389{bottom:199.607940px;}
.y325{bottom:199.884060px;}
.y30d{bottom:200.601180px;}
.y285{bottom:201.735540px;}
.y8d{bottom:202.320000px;}
.y3e7{bottom:204.228900px;}
.y57{bottom:204.714000px;}
.y1e4{bottom:209.700000px;}
.y343{bottom:210.346560px;}
.y409{bottom:210.506400px;}
.y21d{bottom:210.600000px;}
.y14b{bottom:210.780000px;}
.yc2{bottom:214.555140px;}
.y18d{bottom:215.820000px;}
.y362{bottom:216.467460px;}
.y259{bottom:217.080000px;}
.y3b5{bottom:217.299960px;}
.y300{bottom:217.389780px;}
.y239{bottom:217.576260px;}
.y29e{bottom:218.700000px;}
.y56{bottom:220.009500px;}
.y164{bottom:220.818060px;}
.y254{bottom:221.400000px;}
.y1d5{bottom:222.840000px;}
.y1f7{bottom:222.984540px;}
.y1bb{bottom:224.370000px;}
.y388{bottom:224.991000px;}
.y324{bottom:225.446400px;}
.y30c{bottom:226.163520px;}
.y284{bottom:227.118600px;}
.y1db{bottom:228.780000px;}
.y3e6{bottom:229.611960px;}
.y24d{bottom:230.220000px;}
.y1d4{bottom:231.442920px;}
.y55{bottom:235.129500px;}
.y408{bottom:235.889460px;}
.y342{bottom:235.908900px;}
.y14a{bottom:236.160000px;}
.y88{bottom:236.520000px;}
.y3b4{bottom:237.633300px;}
.yc1{bottom:239.938200px;}
.y10a{bottom:241.200000px;}
.y18c{bottom:241.380000px;}
.y24c{bottom:242.423820px;}
.y265{bottom:242.640000px;}
.y2ff{bottom:242.772840px;}
.y238{bottom:243.317880px;}
.y361{bottom:243.643320px;}
.y8b{bottom:243.726660px;}
.y163{bottom:246.201120px;}
.y253{bottom:246.960000px;}
.y1e3{bottom:248.040000px;}
.y1f6{bottom:248.367600px;}
.y1ba{bottom:249.753060px;}
.y54{bottom:250.425000px;}
.y387{bottom:250.553340px;}
.y323{bottom:250.829460px;}
.y30b{bottom:251.546580px;}
.y283{bottom:252.501660px;}
.y1da{bottom:254.340000px;}
.y3e5{bottom:255.174300px;}
.y3b3{bottom:257.966640px;}
.y341{bottom:261.291960px;}
.y407{bottom:261.451800px;}
.y149{bottom:261.720000px;}
.y8a{bottom:264.060000px;}
.y2b8{bottom:265.281660px;}
.yc0{bottom:265.500540px;}
.y53{bottom:265.720500px;}
.y108{bottom:266.760000px;}
.y264{bottom:268.020000px;}
.y2fe{bottom:268.335180px;}
.y237{bottom:268.700940px;}
.y360{bottom:270.998460px;}
.y162{bottom:271.584180px;}
.y252{bottom:272.340000px;}
.y1f5{bottom:273.929940px;}
.y1b9{bottom:275.315400px;}
.y386{bottom:275.936400px;}
.y322{bottom:276.212520px;}
.y30a{bottom:276.929640px;}
.y282{bottom:278.064000px;}
.y3b2{bottom:278.299980px;}
.y1d8{bottom:279.720000px;}
.y3e4{bottom:280.557360px;}
.y21c{bottom:285.613020px;}
.y340{bottom:286.675020px;}
.y406{bottom:286.834860px;}
.y148{bottom:287.100000px;}
.y52{bottom:288.576000px;}
.y2b7{bottom:290.844000px;}
.ybf{bottom:290.883600px;}
.y2da{bottom:292.068360px;}
.y2fd{bottom:293.897520px;}
.y236{bottom:294.084000px;}
.y20{bottom:294.812280px;}
.y161{bottom:297.146520px;}
.y250{bottom:297.720000px;}
.y35f{bottom:298.174320px;}
.y85{bottom:298.440000px;}
.y3b1{bottom:298.633320px;}
.y1f4{bottom:299.313000px;}
.y1b8{bottom:301.057020px;}
.y385{bottom:301.319460px;}
.y321{bottom:301.774860px;}
.y309{bottom:302.491980px;}
.y281{bottom:303.447060px;}
.y1d7{bottom:305.100000px;}
.y87{bottom:305.640000px;}
.y3e3{bottom:305.940420px;}
.yf2{bottom:307.871640px;}
.y51{bottom:311.620500px;}
.y405{bottom:312.217920px;}
.y33f{bottom:312.237360px;}
.y2b6{bottom:316.227060px;}
.ybe{bottom:316.266660px;}
.y2d9{bottom:317.451420px;}
.y21f{bottom:317.700000px;}
.y262{bottom:318.960000px;}
.y3b0{bottom:318.966660px;}
.y2fc{bottom:319.639140px;}
.y235{bottom:319.646340px;}
.y1f{bottom:320.195340px;}
.y29a{bottom:320.400000px;}
.y160{bottom:322.529580px;}
.y24f{bottom:323.280000px;}
.y35e{bottom:323.736660px;}
.y258{bottom:324.357660px;}
.y1f3{bottom:325.054620px;}
.y1b7{bottom:326.440080px;}
.y384{bottom:327.061080px;}
.y50{bottom:327.105000px;}
.y320{bottom:327.157920px;}
.y188{bottom:327.875040px;}
.y280{bottom:329.009400px;}
.y1d6{bottom:330.660000px;}
.y3e2{bottom:331.502760px;}
.yf1{bottom:333.433980px;}
.ybd{bottom:336.600000px;}
.y33e{bottom:337.620420px;}
.y404{bottom:337.780260px;}
.y146{bottom:338.040000px;}
.y3af{bottom:339.300000px;}
.y83{bottom:339.840000px;}
.y2b5{bottom:341.610120px;}
.y4f{bottom:342.400500px;}
.y2d8{bottom:343.013760px;}
.y21e{bottom:343.080000px;}
.y261{bottom:344.340000px;}
.y2fb{bottom:345.022200px;}
.y234{bottom:345.029400px;}
.y1e{bottom:345.757680px;}
.y15f{bottom:348.091920px;}
.y24e{bottom:348.660000px;}
.y35d{bottom:349.119720px;}
.y1df{bottom:349.920000px;}
.y1f2{bottom:350.616960px;}
.ybb{bottom:350.640000px;}
.y1b6{bottom:352.002420px;}
.y135{bottom:352.003140px;}
.y31f{bottom:352.720260px;}
.y187{bottom:353.437380px;}
.y27f{bottom:354.392460px;}
.y3e1{bottom:356.885820px;}
.y143{bottom:357.660000px;}
.y4e{bottom:357.696000px;}
.ybc{bottom:357.840000px;}
.yf0{bottom:358.817040px;}
.y3ae{bottom:359.640000px;}
.y81{bottom:360.900000px;}
.y403{bottom:363.163320px;}
.y33d{bottom:363.182760px;}
.y145{bottom:363.420000px;}
.y2b4{bottom:367.172460px;}
.y383{bottom:367.742700px;}
.y2d7{bottom:368.396820px;}
.y260{bottom:369.720000px;}
.y142{bottom:370.093140px;}
.y2fa{bottom:370.405260px;}
.y233{bottom:370.591740px;}
.y1d{bottom:371.140740px;}
.y4d{bottom:372.991500px;}
.y15e{bottom:373.833540px;}
.y35c{bottom:374.682060px;}
.yef{bottom:375.549840px;}
.y225{bottom:375.651540px;}
.y1f1{bottom:376.000020px;}
.y1b5{bottom:377.385480px;}
.y134{bottom:377.386200px;}
.y31e{bottom:378.103320px;}
.y186{bottom:378.820440px;}
.y27e{bottom:379.775520px;}
.y3ad{bottom:379.980000px;}
.y3e0{bottom:382.268880px;}
.y2ea{bottom:384.443820px;}
.y402{bottom:388.546380px;}
.y33c{bottom:388.565820px;}
.y144{bottom:388.980000px;}
.y80{bottom:389.520000px;}
.y427{bottom:389.622060px;}
.y152{bottom:390.237660px;}
.yb9{bottom:392.040000px;}
.y2b3{bottom:392.555520px;}
.yee{bottom:392.656140px;}
.y2d6{bottom:393.779880px;}
.y382{bottom:395.097840px;}
.y2f9{bottom:395.967600px;}
.y232{bottom:396.154080px;}
.y1c{bottom:396.523800px;}
.y15d{bottom:399.216600px;}
.yba{bottom:399.240000px;}
.y272{bottom:399.596940px;}
.y35b{bottom:400.244400px;}
.y3ac{bottom:400.580640px;}
.y1dd{bottom:400.677660px;}
.y256{bottom:400.680000px;}
.y224{bottom:401.034600px;}
.y1f0{bottom:401.562360px;}
.y1b4{bottom:402.768540px;}
.y133{bottom:402.769260px;}
.y31d{bottom:403.486380px;}
.y185{bottom:404.203500px;}
.y27d{bottom:405.337860px;}
.y4c{bottom:406.107000px;}
.y3df{bottom:407.831220px;}
.yed{bottom:409.583160px;}
.y2e9{bottom:409.826880px;}
.y33b{bottom:413.948880px;}
.y401{bottom:414.108720px;}
.y7f{bottom:415.004580px;}
.y426{bottom:415.005120px;}
.y151{bottom:415.800000px;}
.y2b2{bottom:418.117860px;}
.y2d5{bottom:419.342220px;}
.y3ab{bottom:420.913980px;}
.y2f8{bottom:421.350660px;}
.y231{bottom:421.716420px;}
.y1b{bottom:422.086140px;}
.y381{bottom:422.273700px;}
.y15c{bottom:424.778940px;}
.y271{bottom:424.980000px;}
.y1dc{bottom:426.240000px;}
.y223{bottom:426.417660px;}
.y1ef{bottom:426.945420px;}
.y1b3{bottom:428.330880px;}
.y132{bottom:428.331600px;}
.y31c{bottom:429.048720px;}
.y4b{bottom:429.151500px;}
.y184{bottom:429.765840px;}
.y27c{bottom:430.720920px;}
.yb7{bottom:433.440000px;}
.y3de{bottom:433.572840px;}
.yec{bottom:434.966220px;}
.y2e8{bottom:435.209940px;}
.y25f{bottom:438.120000px;}
.y400{bottom:439.491780px;}
.y33a{bottom:439.511220px;}
.y7e{bottom:440.387640px;}
.y425{bottom:440.567460px;}
.yb8{bottom:440.640000px;}
.y35a{bottom:440.926020px;}
.y3aa{bottom:441.247320px;}
.y2b1{bottom:443.680200px;}
.y2d4{bottom:444.725280px;}
.y2f7{bottom:446.733720px;}
.y230{bottom:447.278760px;}
.y1a{bottom:447.469200px;}
.y380{bottom:449.628840px;}
.y15b{bottom:450.162000px;}
.yeb{bottom:451.893240px;}
.y222{bottom:451.980000px;}
.y4a{bottom:452.007000px;}
.y1ee{bottom:452.328480px;}
.y1b2{bottom:453.713940px;}
.y131{bottom:453.893940px;}
.y25e{bottom:454.302900px;}
.y31b{bottom:454.431780px;}
.y183{bottom:455.148900px;}
.y308{bottom:455.328180px;}
.y27b{bottom:456.283260px;}
.y2e7{bottom:460.772280px;}
.y3a9{bottom:461.580660px;}
.y339{bottom:464.894280px;}
.y3ff{bottom:465.054120px;}
.y270{bottom:465.480000px;}
.y7d{bottom:465.770700px;}
.y424{bottom:465.950520px;}
.y359{bottom:466.309080px;}
.yea{bottom:468.820260px;}
.y2b0{bottom:469.242540px;}
.y2d3{bottom:470.108340px;}
.y2f6{bottom:472.296060px;}
.y22f{bottom:472.661820px;}
.y19{bottom:473.031540px;}
.y3dd{bottom:474.075180px;}
.y49{bottom:474.862500px;}
.yb5{bottom:475.020000px;}
.y15a{bottom:475.545060px;}
.y37f{bottom:476.983980px;}
.y1d9{bottom:477.180000px;}
.y221{bottom:477.356940px;}
.y1ed{bottom:477.890820px;}
.y1b1{bottom:479.276280px;}
.y130{bottom:479.635560px;}
.y31a{bottom:479.814840px;}
.y20e{bottom:480.531960px;}
.y182{bottom:480.711240px;}
.y307{bottom:480.890520px;}
.y3a8{bottom:481.914000px;}
.yb6{bottom:482.220000px;}
.y2e6{bottom:486.155340px;}
.y338{bottom:490.277340px;}
.y3fe{bottom:490.437180px;}
.y26e{bottom:490.860000px;}
.y7c{bottom:491.333040px;}
.y423{bottom:491.333580px;}
.y358{bottom:491.692140px;}
.y2af{bottom:494.804880px;}
.y2d2{bottom:495.670680px;}
.y27a{bottom:496.964880px;}
.y2f5{bottom:497.679120px;}
.y48{bottom:497.907000px;}
.y22e{bottom:498.044880px;}
.y18{bottom:498.414600px;}
.y3dc{bottom:499.458240px;}
.ye9{bottom:500.866560px;}
.y159{bottom:501.107400px;}
.y3a7{bottom:502.247340px;}
.y37e{bottom:502.367040px;}
.y251{bottom:502.560000px;}
.y220{bottom:502.740000px;}
.y1ec{bottom:503.273880px;}
.y1b0{bottom:505.197180px;}
.y12f{bottom:505.377180px;}
.y20d{bottom:506.094300px;}
.y181{bottom:506.452860px;}
.y2e5{bottom:511.717680px;}
.y3fd{bottom:515.820240px;}
.y337{bottom:515.839680px;}
.yb2{bottom:516.420000px;}
.y7b{bottom:516.716100px;}
.y422{bottom:516.895920px;}
.y357{bottom:517.254480px;}
.y14d{bottom:517.500000px;}
.ye8{bottom:517.599360px;}
.y2ae{bottom:520.187940px;}
.y47{bottom:520.951500px;}
.y2d1{bottom:521.053740px;}
.y26d{bottom:521.280000px;}
.y279{bottom:522.527220px;}
.y3a6{bottom:522.580680px;}
.y2f4{bottom:523.241460px;}
.y22d{bottom:523.607220px;}
.yb4{bottom:523.626660px;}
.y17{bottom:523.797660px;}
.y3db{bottom:525.020580px;}
.y158{bottom:526.490460px;}
.y1eb{bottom:528.836220px;}
.y37d{bottom:529.722180px;}
.y1af{bottom:530.759520px;}
.y12e{bottom:530.760240px;}
.y20c{bottom:531.477360px;}
.y180{bottom:531.835920px;}
.ye7{bottom:534.526380px;}
.y2e4{bottom:537.100740px;}
.y336{bottom:541.222740px;}
.y3fc{bottom:541.382580px;}
.y7a{bottom:542.278440px;}
.y421{bottom:542.278980px;}
.y356{bottom:542.637540px;}
.y3a5{bottom:542.914020px;}
.yb3{bottom:543.960000px;}
.y46{bottom:544.171500px;}
.y299{bottom:544.680000px;}
.y2ad{bottom:545.571000px;}
.y2d0{bottom:546.616080px;}
.y278{bottom:547.910280px;}
.y2f3{bottom:548.624520px;}
.y22c{bottom:548.990280px;}
.y16{bottom:549.360000px;}
.y3da{bottom:550.403640px;}
.ye6{bottom:551.632680px;}
.y157{bottom:551.873520px;}
.y1ea{bottom:554.219280px;}
.y1ae{bottom:556.321860px;}
.y12d{bottom:556.322580px;}
.y319{bottom:556.501860px;}
.y20b{bottom:557.039700px;}
.y37c{bottom:557.077320px;}
.y17f{bottom:557.398260px;}
.y45{bottom:559.656000px;}
.y2a7{bottom:559.796940px;}
.y2e3{bottom:562.483800px;}
.y3a4{bottom:563.247360px;}
.y15{bottom:566.280000px;}
.y3fb{bottom:566.765640px;}
.y335{bottom:566.964360px;}
.y79{bottom:567.661500px;}
.y420{bottom:567.841320px;}
.y355{bottom:568.199880px;}
.ye5{bottom:568.559700px;}
.y2ac{bottom:571.133340px;}
.y2cf{bottom:571.999140px;}
.y26a{bottom:572.220000px;}
.y277{bottom:573.293340px;}
.y2f2{bottom:574.007580px;}
.y22b{bottom:574.552620px;}
.y44{bottom:574.951500px;}
.y3d9{bottom:575.786700px;}
.y156{bottom:577.615140px;}
.yaf{bottom:578.340000px;}
.y1d3{bottom:579.022020px;}
.y115{bottom:579.240000px;}
.y21b{bottom:579.378240px;}
.y1e9{bottom:579.602340px;}
.y1ad{bottom:581.704920px;}
.y12c{bottom:581.705640px;}
.y318{bottom:582.243480px;}
.y20a{bottom:582.422760px;}
.y17e{bottom:582.781320px;}
.y3a3{bottom:583.580700px;}
.y37b{bottom:584.253180px;}
.y2a6{bottom:585.180000px;}
.ye4{bottom:585.486720px;}
.yb1{bottom:585.546660px;}
.y2e2{bottom:588.046140px;}
.y14{bottom:588.607920px;}
.y43{bottom:590.247000px;}
.y3fa{bottom:592.148700px;}
.y107{bottom:592.380000px;}
.y78{bottom:593.044560px;}
.y41f{bottom:593.224380px;}
.y354{bottom:593.582940px;}
.y2ab{bottom:596.695680px;}
.y2ce{bottom:597.382200px;}
.y276{bottom:599.034960px;}
.y2f1{bottom:599.569920px;}
.y22a{bottom:600.114960px;}
.y3d8{bottom:601.349040px;}
.ye3{bottom:602.413740px;}
.y269{bottom:602.460000px;}
.y155{bottom:603.356760px;}
.y3a2{bottom:604.093320px;}
.y24b{bottom:604.405080px;}
.y114{bottom:604.616940px;}
.y194{bottom:604.620000px;}
.y1e8{bottom:605.343960px;}
.y42{bottom:605.542500px;}
.yb0{bottom:605.880000px;}
.y1ac{bottom:607.087980px;}
.y12b{bottom:607.088700px;}
.y334{bottom:607.466700px;}
.y209{bottom:607.805820px;}
.y17d{bottom:608.164380px;}
.y37a{bottom:609.815520px;}
.y13{bottom:611.100000px;}
.y2e1{bottom:613.429200px;}
.y3f9{bottom:617.711040px;}
.y18b{bottom:617.760000px;}
.y77{bottom:618.606900px;}
.y41e{bottom:618.607440px;}
.y353{bottom:618.966000px;}
.ye2{bottom:619.146540px;}
.y1d2{bottom:619.703640px;}
.y21a{bottom:619.880580px;}
.y41{bottom:620.838000px;}
.y2aa{bottom:622.616580px;}
.y2cd{bottom:622.944540px;}
.y3a1{bottom:624.426660px;}
.y275{bottom:624.776580px;}
.y2f0{bottom:624.952980px;}
.y229{bottom:625.856580px;}
.y3d7{bottom:626.732100px;}
.y267{bottom:628.020000px;}
.y154{bottom:629.277660px;}
.y113{bottom:630.000000px;}
.y1e7{bottom:631.085580px;}
.y1ab{bottom:632.650320px;}
.y12a{bottom:632.651040px;}
.y333{bottom:633.029040px;}
.y208{bottom:633.368160px;}
.y17c{bottom:633.726720px;}
.y12{bottom:635.742000px;}
.y2a4{bottom:636.120000px;}
.y40{bottom:636.133500px;}
.ye1{bottom:636.252840px;}
.y379{bottom:637.170660px;}
.y298{bottom:637.189920px;}
.y2e0{bottom:638.812260px;}
.yac{bottom:640.080000px;}
.y2ba{bottom:640.620000px;}
.y3f8{bottom:643.094100px;}
.y76{bottom:643.989960px;}
.y41d{bottom:644.169780px;}
.y352{bottom:644.528340px;}
.y3a0{bottom:644.760000px;}
.y1d1{bottom:645.086700px;}
.y219{bottom:645.442920px;}
.yae{bottom:647.286660px;}
.y2cc{bottom:648.327600px;}
.y2a9{bottom:648.358200px;}
.y2ef{bottom:650.336040px;}
.y274{bottom:650.697480px;}
.y3f{bottom:651.253500px;}
.y1e6{bottom:651.598200px;}
.y228{bottom:651.777480px;}
.y3d6{bottom:652.294440px;}
.ye0{bottom:652.985640px;}
.y266{bottom:655.200000px;}
.y111{bottom:655.560000px;}
.y106{bottom:656.095140px;}
.y1aa{bottom:658.033380px;}
.y129{bottom:658.213380px;}
.y332{bottom:658.412100px;}
.y207{bottom:658.751220px;}
.y17b{bottom:659.109780px;}
.y25c{bottom:661.502880px;}
.y378{bottom:664.346520px;}
.y2df{bottom:664.374600px;}
.yfd{bottom:664.380000px;}
.y39f{bottom:665.106660px;}
.yad{bottom:667.620000px;}
.y3f7{bottom:668.656440px;}
.y75{bottom:669.373020px;}
.y41c{bottom:669.552840px;}
.y153{bottom:669.780000px;}
.y351{bottom:669.911400px;}
.ydf{bottom:669.912660px;}
.y11{bottom:670.311000px;}
.y147{bottom:670.320000px;}
.y1d0{bottom:670.649040px;}
.y218{bottom:670.825980px;}
.y2b9{bottom:673.380000px;}
.y2cb{bottom:673.710660px;}
.y3e{bottom:674.109000px;}
.y2ee{bottom:676.077660px;}
.y3d5{bottom:677.677500px;}
.y1a9{bottom:683.595720px;}
.y128{bottom:683.775720px;}
.y331{bottom:683.795160px;}
.y206{bottom:684.134280px;}
.y17a{bottom:684.492840px;}
.y18a{bottom:685.258020px;}
.y2a8{bottom:685.260000px;}
.y39e{bottom:685.440000px;}
.yde{bottom:686.839680px;}
.y273{bottom:687.420000px;}
.y1e5{bottom:688.500000px;}
.y377{bottom:689.729580px;}
.y2de{bottom:689.757660px;}
.y25b{bottom:692.100000px;}
.y3f6{bottom:694.039500px;}
.y74{bottom:694.935360px;}
.y41b{bottom:694.935900px;}
.y350{bottom:695.294460px;}
.y1cf{bottom:696.032100px;}
.y217{bottom:696.209040px;}
.y3d{bottom:696.964500px;}
.y2ca{bottom:699.273000px;}
.y2ed{bottom:701.640000px;}
.yaa{bottom:701.820000px;}
.y3d4{bottom:703.060560px;}
.ydd{bottom:703.766700px;}
.y10{bottom:704.880000px;}
.y39d{bottom:705.780000px;}
.y39c{bottom:705.859020px;}
.yab{bottom:709.200000px;}
.y1a8{bottom:709.337340px;}
.y127{bottom:709.338060px;}
.y330{bottom:709.357500px;}
.y205{bottom:709.696620px;}
.y179{bottom:710.055180px;}
.y2a0{bottom:712.436940px;}
.y376{bottom:715.291920px;}
.y2dd{bottom:715.320000px;}
.y3f5{bottom:719.422560px;}
.y3c{bottom:719.820000px;}
.y73{bottom:720.318420px;}
.y41a{bottom:720.498240px;}
.ydc{bottom:720.499500px;}
.y34f{bottom:720.856800px;}
.y1ce{bottom:721.415160px;}
.y216{bottom:721.771380px;}
.y2c9{bottom:724.656060px;}
.y2ec{bottom:724.680000px;}
.yfc{bottom:725.442660px;}
.y39b{bottom:726.192360px;}
.y439{bottom:726.480000px;}
.y3d3{bottom:728.622900px;}
.y263{bottom:731.520000px;}
.y191{bottom:731.880000px;}
.y1a7{bottom:734.720400px;}
.y126{bottom:734.721120px;}
.y32f{bottom:734.740560px;}
.y317{bottom:735.079680px;}
.y204{bottom:735.258960px;}
.y178{bottom:735.438240px;}
.ydb{bottom:737.605800px;}
.yf{bottom:737.640000px;}
.y29f{bottom:737.820000px;}
.y2dc{bottom:738.360000px;}
.y375{bottom:740.674980px;}
.y3b{bottom:742.675500px;}
.ya8{bottom:743.400000px;}
.y2eb{bottom:743.760000px;}
.y3f4{bottom:744.984900px;}
.y72{bottom:745.880760px;}
.y419{bottom:745.881300px;}
.y34e{bottom:746.239860px;}
.y39a{bottom:746.525700px;}
.y1cd{bottom:746.977500px;}
.y215{bottom:747.154440px;}
.y2c8{bottom:750.218400px;}
.ya9{bottom:750.600000px;}
.y3d2{bottom:754.005960px;}
.yda{bottom:754.338600px;}
.y190{bottom:757.257660px;}
.y2db{bottom:757.260000px;}
.y1a6{bottom:760.282740px;}
.y125{bottom:760.283460px;}
.y32e{bottom:760.302900px;}
.y438{bottom:760.500000px;}
.y316{bottom:760.642020px;}
.y177{bottom:761.000580px;}
.y24a{bottom:763.554600px;}
.ye{bottom:765.540180px;}
.y3a{bottom:765.720000px;}
.y374{bottom:766.058040px;}
.y399{bottom:766.859040px;}
.y3f3{bottom:770.367960px;}
.yfb{bottom:770.976540px;}
.yd9{bottom:771.071400px;}
.y71{bottom:771.263820px;}
.y418{bottom:771.443640px;}
.y34d{bottom:771.802200px;}
.y141{bottom:772.218180px;}
.y1cc{bottom:772.360560px;}
.y214{bottom:772.716780px;}
.y2c7{bottom:775.601460px;}
.y437{bottom:778.500000px;}
.y3d1{bottom:779.389020px;}
.y10c{bottom:782.816940px;}
.y18f{bottom:782.820000px;}
.ya6{bottom:784.800000px;}
.y1a5{bottom:785.665800px;}
.y124{bottom:785.666520px;}
.y32d{bottom:785.685960px;}
.y315{bottom:786.204360px;}
.y176{bottom:786.383640px;}
.y398{bottom:787.192380px;}
.yd8{bottom:788.177700px;}
.y39{bottom:788.575500px;}
.y29d{bottom:788.754600px;}
.y373{bottom:791.620380px;}
.ya7{bottom:792.000000px;}
.y3f2{bottom:796.109580px;}
.y70{bottom:796.646880px;}
.y417{bottom:796.826700px;}
.y34c{bottom:797.185260px;}
.y1cb{bottom:797.743620px;}
.y213{bottom:798.099840px;}
.y436{bottom:798.101640px;}
.y2c6{bottom:800.984520px;}
.yd{bottom:803.520000px;}
.y249{bottom:803.877660px;}
.y3d0{bottom:804.951360px;}
.yd7{bottom:805.104720px;}
.y397{bottom:807.705000px;}
.y10b{bottom:808.200000px;}
.y1a4{bottom:811.048860px;}
.y123{bottom:811.049580px;}
.y32c{bottom:811.069020px;}
.y290{bottom:811.228860px;}
.y38{bottom:811.431000px;}
.y175{bottom:811.766700px;}
.y140{bottom:812.720520px;}
.y29c{bottom:814.137660px;}
.yfa{bottom:816.510420px;}
.y372{bottom:817.003440px;}
.yd6{bottom:821.837520px;}
.y6f{bottom:822.209220px;}
.y416{bottom:822.209760px;}
.y34b{bottom:822.568320px;}
.y1ca{bottom:823.305960px;}
.y212{bottom:823.482900px;}
.y435{bottom:823.484700px;}
.ya3{bottom:826.380000px;}
.y2c5{bottom:826.546860px;}
.y396{bottom:828.038340px;}
.y3cf{bottom:830.334420px;}
.y248{bottom:831.412080px;}
.y25d{bottom:833.569740px;}
.y109{bottom:833.580000px;}
.ya5{bottom:833.586660px;}
.y37{bottom:834.475500px;}
.y1a3{bottom:836.611200px;}
.y3f1{bottom:836.611920px;}
.y32b{bottom:836.631360px;}
.y122{bottom:836.791200px;}
.y28f{bottom:836.970480px;}
.y203{bottom:837.329040px;}
.y174{bottom:837.508320px;}
.yd5{bottom:838.764540px;}
.y29b{bottom:839.700000px;}
.y13f{bottom:840.254940px;}
.y371{bottom:842.565780px;}
.y6e{bottom:847.592280px;}
.y415{bottom:847.772100px;}
.y34a{bottom:848.130660px;}
.y395{bottom:848.371680px;}
.y1c9{bottom:848.689020px;}
.y211{bottom:849.045240px;}
.y434{bottom:849.405600px;}
.y2c4{bottom:851.929920px;}
.ya4{bottom:853.920000px;}
.yd4{bottom:855.691560px;}
.y3ce{bottom:855.896760px;}
.y36{bottom:857.520000px;}
.y3c7{bottom:858.513960px;}
.y247{bottom:858.767220px;}
.y1a2{bottom:861.994260px;}
.y32a{bottom:862.014420px;}
.yf9{bottom:862.044300px;}
.y3f0{bottom:862.174260px;}
.y121{bottom:862.353540px;}
.y202{bottom:862.712100px;}
.y314{bottom:863.070660px;}
.y173{bottom:863.249940px;}
.yc{bottom:864.000000px;}
.y433{bottom:866.332620px;}
.y13e{bottom:867.610080px;}
.y370{bottom:867.948840px;}
.y394{bottom:868.705020px;}
.y35{bottom:870.480000px;}
.yd3{bottom:872.424360px;}
.y6d{bottom:872.975340px;}
.y414{bottom:873.155160px;}
.y349{bottom:873.513720px;}
.y1c8{bottom:874.251360px;}
.y210{bottom:874.428300px;}
.y2c3{bottom:877.312980px;}
.y3c6{bottom:878.847300px;}
.y3cd{bottom:881.279820px;}
.y432{bottom:883.438920px;}
.y105{bottom:884.692080px;}
.y246{bottom:885.943080px;}
.y1a1{bottom:887.377320px;}
.y329{bottom:887.397480px;}
.y3ef{bottom:887.557320px;}
.y120{bottom:887.736600px;}
.y201{bottom:888.095160px;}
.ya0{bottom:888.120000px;}
.y313{bottom:888.453720px;}
.y172{bottom:888.812280px;}
.y393{bottom:889.038360px;}
.yd2{bottom:889.530660px;}
.y297{bottom:890.811360px;}
.y36f{bottom:893.331900px;}
.y13d{bottom:894.785940px;}
.ya2{bottom:895.326660px;}
.y6c{bottom:898.537680px;}
.y413{bottom:898.538220px;}
.y3c5{bottom:899.180640px;}
.y348{bottom:899.255340px;}
.y1c7{bottom:899.634420px;}
.y20f{bottom:899.811360px;}
.y2c2{bottom:902.875320px;}
.yd1{bottom:906.457680px;}
.y3cc{bottom:906.662880px;}
.yf8{bottom:907.410600px;}
.y392{bottom:909.371700px;}
.y189{bottom:910.254420px;}
.y1a0{bottom:912.939660px;}
.y3ee{bottom:912.940380px;}
.y328{bottom:912.959820px;}
.y245{bottom:913.298220px;}
.y11f{bottom:913.298940px;}
.y200{bottom:913.657500px;}
.y2c{bottom:914.040000px;}
.y312{bottom:914.195340px;}
.y171{bottom:914.374620px;}
.ya1{bottom:915.660000px;}
.y36e{bottom:918.894240px;}
.y3c4{bottom:919.513980px;}
.y431{bottom:921.774960px;}
.y13c{bottom:922.141080px;}
.yd0{bottom:923.384700px;}
.y6b{bottom:923.920740px;}
.y412{bottom:924.279840px;}
.y1c6{bottom:925.017480px;}
.y104{bottom:925.373700px;}
.yb{bottom:925.920000px;}
.y2c1{bottom:928.258380px;}
.y391{bottom:929.705040px;}
.y296{bottom:931.313700px;}
.y3cb{bottom:932.404500px;}
.y32{bottom:935.104500px;}
.y327{bottom:938.342880px;}
.y19f{bottom:938.502000px;}
.y3ed{bottom:938.502720px;}
.y430{bottom:938.507760px;}
.y28e{bottom:938.682000px;}
.y244{bottom:938.860560px;}
.y11e{bottom:938.861280px;}
.y1ff{bottom:939.040560px;}
.y170{bottom:939.757680px;}
.y3c3{bottom:939.847320px;}
.ycf{bottom:940.117500px;}
.y36d{bottom:944.277300px;}
.y13b{bottom:947.703420px;}
.y6a{bottom:949.483080px;}
.y9d{bottom:949.860000px;}
.y390{bottom:950.038380px;}
.y31{bottom:950.400000px;}
.y1c5{bottom:950.579820px;}
.y103{bottom:950.756760px;}
.yf7{bottom:952.944480px;}
.y2c0{bottom:953.820720px;}
.y42f{bottom:955.614060px;}
.y295{bottom:956.876040px;}
.yce{bottom:957.044520px;}
.y9f{bottom:957.240000px;}
.y3c2{bottom:960.180660px;}
.y3ec{bottom:963.885780px;}
.y326{bottom:964.084500px;}
.y19e{bottom:964.243620px;}
.y28d{bottom:964.244340px;}
.y243{bottom:964.602180px;}
.y11d{bottom:964.602900px;}
.y411{bottom:964.961460px;}
.y16f{bottom:965.320020px;}
.y30{bottom:965.520000px;}
.y3ca{bottom:967.140000px;}
.y36c{bottom:969.660360px;}
.y13a{bottom:969.844500px;}
.ycd{bottom:974.150820px;}
.y69{bottom:974.866140px;}
.y38f{bottom:975.763080px;}
.y1c4{bottom:975.962880px;}
.y102{bottom:976.319100px;}
.y2bf{bottom:979.203780px;}
.y3c1{bottom:980.514000px;}
.y2f{bottom:980.820000px;}
.y294{bottom:982.259100px;}
.ya{bottom:987.840000px;}
.y19d{bottom:989.626680px;}
.y28c{bottom:989.806680px;}
.y242{bottom:989.985240px;}
.y11c{bottom:989.985960px;}
.y1fe{bottom:990.165240px;}
.y410{bottom:990.344520px;}
.y16e{bottom:990.703080px;}
.ycc{bottom:990.883620px;}
.y9b{bottom:991.440000px;}
.y42e{bottom:993.950100px;}
.y36b{bottom:995.222700px;}
.y2e{bottom:996.120000px;}
.yf6{bottom:998.478360px;}
.y9c{bottom:998.640000px;}
.y2be{bottom:998.820000px;}
.y68{bottom:1000.249200px;}
.y3c0{bottom:1000.847340px;}
.y101{bottom:1001.702160px;}
.y1c3{bottom:1001.704500px;}
.y3c9{bottom:1003.680000px;}
.y139{bottom:1004.580000px;}
.y293{bottom:1007.642160px;}
.y42d{bottom:1010.682900px;}
.y19c{bottom:1015.009740px;}
.y241{bottom:1015.368300px;}
.y11b{bottom:1015.369020px;}
.y28b{bottom:1015.548300px;}
.y306{bottom:1015.727580px;}
.y1fd{bottom:1015.906860px;}
.y16d{bottom:1016.086140px;}
.y38e{bottom:1016.265420px;}
.ycb{bottom:1016.266680px;}
.y36a{bottom:1020.964320px;}
.y3bf{bottom:1021.359960px;}
.y9{bottom:1023.843600px;}
.y67{bottom:1025.811540px;}
.y100{bottom:1027.443780px;}
.y42c{bottom:1027.609920px;}
.y97{bottom:1032.840000px;}
.yca{bottom:1033.372980px;}
.y292{bottom:1033.383780px;}
.y2bd{bottom:1035.360000px;}
.y1c2{bottom:1036.440000px;}
.y9a{bottom:1040.046660px;}
.y3c8{bottom:1040.229720px;}
.y19b{bottom:1040.572080px;}
.y240{bottom:1040.930640px;}
.y11a{bottom:1040.931360px;}
.y138{bottom:1041.117840px;}
.y40f{bottom:1041.289920px;}
.y28a{bottom:1041.469200px;}
.y16c{bottom:1041.648480px;}
.y3be{bottom:1041.693300px;}
.y38d{bottom:1041.827760px;}
.yf5{bottom:1044.012240px;}
.y8{bottom:1045.620000px;}
.y2a{bottom:1048.140000px;}
.yc9{bottom:1050.300000px;}
.y66{bottom:1051.194600px;}
.y29{bottom:1059.842160px;}
.y99{bottom:1060.380000px;}
.y369{bottom:1061.466660px;}
.yff{bottom:1062.000000px;}
.y3bd{bottom:1062.026640px;}
.y42b{bottom:1065.945960px;}
.y19a{bottom:1065.955140px;}
.y23f{bottom:1066.313700px;}
.y119{bottom:1066.314420px;}
.y5{bottom:1066.320000px;}
.y40e{bottom:1066.672980px;}
.y137{bottom:1066.856400px;}
.y16b{bottom:1067.031540px;}
.y291{bottom:1067.940000px;}
.y7{bottom:1068.122880px;}
.y2bc{bottom:1071.734760px;}
.y1c1{bottom:1072.801440px;}
.yc8{bottom:1073.700000px;}
.y27{bottom:1075.487580px;}
.y65{bottom:1076.577660px;}
.y3bc{bottom:1082.359980px;}
.y42a{bottom:1082.872980px;}
.y368{bottom:1088.821800px;}
.yf4{bottom:1089.546120px;}
.y6{bottom:1090.440000px;}
.y28{bottom:1091.160000px;}
.y199{bottom:1091.517480px;}
.y23e{bottom:1091.696760px;}
.y118{bottom:1091.697480px;}
.y40d{bottom:1092.056040px;}
.y16a{bottom:1092.414600px;}
.y136{bottom:1092.420000px;}
.y94{bottom:1094.760000px;}
.yfe{bottom:1098.540000px;}
.y429{bottom:1099.800000px;}
.y26{bottom:1101.049920px;}
.y96{bottom:1101.960000px;}
.y64{bottom:1102.140000px;}
.y3bb{bottom:1102.693320px;}
.y2bb{bottom:1103.407380px;}
.y367{bottom:1115.997660px;}
.y198{bottom:1117.438380px;}
.y117{bottom:1117.439100px;}
.y40c{bottom:1117.618380px;}
.y3{bottom:1117.976940px;}
.y95{bottom:1122.300000px;}
.y3ba{bottom:1123.026660px;}
.y63{bottom:1134.900000px;}
.yf3{bottom:1135.080000px;}
.y428{bottom:1139.040000px;}
.y366{bottom:1141.560000px;}
.y197{bottom:1143.180000px;}
.y2{bottom:1143.360000px;}
.y60{bottom:1175.580000px;}
.y24{bottom:1187.280000px;}
.y62{bottom:1190.880000px;}
.y5f{bottom:1191.240000px;}
.y22{bottom:1191.420000px;}
.y5e{bottom:1192.320000px;}
.y1{bottom:1196.640000px;}
.ha{height:15.660000px;}
.hb{height:17.820000px;}
.h19{height:20.340000px;}
.h17{height:20.701500px;}
.h30{height:24.857280px;}
.h13{height:38.934000px;}
.h2d{height:39.653280px;}
.h1a{height:40.680000px;}
.h1f{height:40.681500px;}
.h20{height:40.858500px;}
.h1e{height:40.860000px;}
.h14{height:42.480000px;}
.h21{height:43.086960px;}
.hc{height:44.388000px;}
.h12{height:45.900000px;}
.h2{height:49.122720px;}
.h32{height:49.196160px;}
.h16{height:49.424400px;}
.h18{height:50.796000px;}
.h2e{height:51.547680px;}
.h31{height:58.651172px;}
.h1b{height:61.020000px;}
.h1d{height:61.200000px;}
.h24{height:62.327813px;}
.he{height:66.096000px;}
.h5{height:69.086250px;}
.hf{height:69.480000px;}
.h2b{height:70.664062px;}
.h2a{height:75.093750px;}
.h4{height:81.101250px;}
.h15{height:81.396000px;}
.hd{height:81.445680px;}
.h1c{height:81.540000px;}
.h8{height:93.867188px;}
.h10{height:109.080000px;}
.h6{height:122.400000px;}
.h9{height:125.406562px;}
.h7{height:137.421562px;}
.h22{height:137.898720px;}
.h23{height:279.900000px;}
.h2c{height:333.538500px;}
.h26{height:343.798500px;}
.h27{height:356.220000px;}
.h28{height:361.800000px;}
.h29{height:382.860000px;}
.h25{height:402.120000px;}
.h11{height:882.540000px;}
.h3{height:1084.320000px;}
.h2f{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:-17.475000px;}
.w3{width:130.500000px;}
.w8{width:139.320000px;}
.wb{width:241.198500px;}
.wa{width:275.400000px;}
.we{width:341.640000px;}
.wd{width:345.240000px;}
.w4{width:395.460000px;}
.w5{width:402.300000px;}
.w7{width:420.841500px;}
.wc{width:448.018500px;}
.w6{width:578.880000px;}
.w2{width:676.080000px;}
.wf{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x7{left:9.720000px;}
.x3{left:10.800000px;}
.x25{left:15.480000px;}
.x26{left:35.280000px;}
.x1e{left:58.320000px;}
.x28{left:62.100000px;}
.x17{left:82.620000px;}
.xe{left:90.000000px;}
.x10{left:98.640000px;}
.xf{left:100.800000px;}
.x1{left:106.380000px;}
.xa{left:117.000000px;}
.x2{left:124.380000px;}
.x1a{left:133.376580px;}
.x4{left:135.180000px;}
.x18{left:143.640000px;}
.x35{left:148.847580px;}
.x1b{left:160.373160px;}
.x32{left:186.297480px;}
.x23{left:193.140000px;}
.x24{left:196.020000px;}
.x21{left:199.440000px;}
.x33{left:208.255860px;}
.x2d{left:235.440000px;}
.x9{left:263.698200px;}
.x30{left:273.240000px;}
.x31{left:279.180000px;}
.x12{left:340.560000px;}
.x13{left:348.300000px;}
.x34{left:387.177300px;}
.x22{left:417.236580px;}
.x1d{left:421.374960px;}
.x20{left:425.842020px;}
.x2a{left:428.023260px;}
.x14{left:430.398720px;}
.x8{left:432.540000px;}
.x15{left:443.700000px;}
.x2b{left:446.580000px;}
.x16{left:451.800000px;}
.x2c{left:454.680000px;}
.x27{left:478.800000px;}
.x29{left:505.800000px;}
.x5{left:559.983960px;}
.x36{left:568.980000px;}
.x6{left:724.682520px;}
.xb{left:753.120000px;}
.x1c{left:762.660000px;}
.x19{left:768.595500px;}
.xd{left:770.400000px;}
.x2e{left:772.920000px;}
.x1f{left:779.038560px;}
.x2f{left:786.780000px;}
.xc{left:910.440000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.620160pt;}
.ls94{letter-spacing:-0.771840pt;}
.ls6d{letter-spacing:-0.690560pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.534400pt;}
.ls36{letter-spacing:-0.531200pt;}
.ls6{letter-spacing:-0.412160pt;}
.ls38{letter-spacing:-0.371840pt;}
.ls7{letter-spacing:-0.353280pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.318720pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.265600pt;}
.ls8c{letter-spacing:-0.255360pt;}
.lsb{letter-spacing:-0.235520pt;}
.ls83{letter-spacing:-0.214400pt;}
.ls3e{letter-spacing:-0.212480pt;}
.ls60{letter-spacing:-0.207360pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls85{letter-spacing:-0.171520pt;}
.ls2d{letter-spacing:-0.170240pt;}
.ls33{letter-spacing:-0.159360pt;}
.ls81{letter-spacing:-0.149120pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls84{letter-spacing:-0.128640pt;}
.ls4{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.106880pt;}
.ls31{letter-spacing:-0.106240pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:-0.069120pt;}
.ls2e{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.047808pt;}
.lsf{letter-spacing:0.048000pt;}
.ls53{letter-spacing:0.053120pt;}
.ls11{letter-spacing:0.069120pt;}
.ls3c{letter-spacing:0.085120pt;}
.lsa1{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.117120pt;}
.ls41{letter-spacing:0.138240pt;}
.ls17{letter-spacing:0.144000pt;}
.ls3f{letter-spacing:0.149120pt;}
.ls2b{letter-spacing:0.149760pt;}
.ls35{letter-spacing:0.159360pt;}
.ls90{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.170240pt;}
.ls19{letter-spacing:0.192000pt;}
.lsa0{letter-spacing:0.207360pt;}
.ls52{letter-spacing:0.212480pt;}
.ls24{letter-spacing:0.217792pt;}
.ls29{letter-spacing:0.239040pt;}
.ls10{letter-spacing:0.240000pt;}
.ls9e{letter-spacing:0.244352pt;}
.ls77{letter-spacing:0.249664pt;}
.ls8d{letter-spacing:0.255360pt;}
.ls82{letter-spacing:0.257280pt;}
.ls39{letter-spacing:0.258560pt;}
.ls1b{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.269440pt;}
.ls8f{letter-spacing:0.270912pt;}
.ls89{letter-spacing:0.276224pt;}
.ls40{letter-spacing:0.276480pt;}
.lse{letter-spacing:0.288000pt;}
.ls2c{letter-spacing:0.289280pt;}
.ls92{letter-spacing:0.290560pt;}
.ls1{letter-spacing:0.294400pt;}
.ls87{letter-spacing:0.297472pt;}
.ls37{letter-spacing:0.318720pt;}
.ls3a{letter-spacing:0.324032pt;}
.ls3d{letter-spacing:0.340480pt;}
.ls9f{letter-spacing:0.357760pt;}
.ls7e{letter-spacing:0.371840pt;}
.ls9c{letter-spacing:0.424960pt;}
.ls34{letter-spacing:0.478080pt;}
.ls93{letter-spacing:0.531200pt;}
.ls8e{letter-spacing:0.584320pt;}
.ls4e{letter-spacing:0.903040pt;}
.ls86{letter-spacing:0.918976pt;}
.ls8b{letter-spacing:1.073024pt;}
.ls95{letter-spacing:1.221760pt;}
.ls28{letter-spacing:1.540480pt;}
.ls61{letter-spacing:1.561728pt;}
.ls7b{letter-spacing:1.609536pt;}
.ls57{letter-spacing:2.177920pt;}
.ls99{letter-spacing:2.209792pt;}
.ls68{letter-spacing:2.709120pt;}
.ls25{letter-spacing:2.815360pt;}
.ls67{letter-spacing:2.825984pt;}
.ls44{letter-spacing:3.452800pt;}
.ls4b{letter-spacing:3.548416pt;}
.ls22{letter-spacing:4.090240pt;}
.ls64{letter-spacing:4.164608pt;}
.ls73{letter-spacing:4.727680pt;}
.ls5f{letter-spacing:4.780800pt;}
.ls5a{letter-spacing:4.871104pt;}
.ls20{letter-spacing:5.365120pt;}
.ls21{letter-spacing:5.386368pt;}
.ls45{letter-spacing:6.002560pt;}
.ls50{letter-spacing:6.640000pt;}
.ls48{letter-spacing:7.171200pt;}
.ls49{letter-spacing:7.277440pt;}
.ls58{letter-spacing:7.914880pt;}
.ls2a{letter-spacing:8.552320pt;}
.ls80{letter-spacing:8.600128pt;}
.ls91{letter-spacing:8.871040pt;}
.ls1c{letter-spacing:9.179136pt;}
.ls66{letter-spacing:9.242880pt;}
.ls9a{letter-spacing:9.253504pt;}
.ls59{letter-spacing:9.694400pt;}
.ls23{letter-spacing:9.880320pt;}
.ls7d{letter-spacing:10.498560pt;}
.ls4f{letter-spacing:10.517760pt;}
.ls8a{letter-spacing:10.539008pt;}
.ls56{letter-spacing:10.985216pt;}
.ls55{letter-spacing:11.155200pt;}
.ls98{letter-spacing:11.697024pt;}
.ls26{letter-spacing:11.792640pt;}
.ls5c{letter-spacing:12.430080pt;}
.ls74{letter-spacing:13.067520pt;}
.ls43{letter-spacing:13.704960pt;}
.ls42{letter-spacing:14.342400pt;}
.ls4c{letter-spacing:14.979840pt;}
.ls79{letter-spacing:15.617280pt;}
.ls96{letter-spacing:15.936000pt;}
.ls1f{letter-spacing:16.892160pt;}
.ls6c{letter-spacing:16.966528pt;}
.ls72{letter-spacing:17.529600pt;}
.ls6b{letter-spacing:18.167040pt;}
.ls65{letter-spacing:18.804480pt;}
.ls7a{letter-spacing:18.857600pt;}
.ls88{letter-spacing:19.441920pt;}
.ls70{letter-spacing:19.569408pt;}
.ls63{letter-spacing:20.079360pt;}
.ls4a{letter-spacing:20.716800pt;}
.ls54{letter-spacing:22.044800pt;}
.ls97{letter-spacing:22.050112pt;}
.ls5d{letter-spacing:22.682240pt;}
.ls75{letter-spacing:23.319680pt;}
.ls6a{letter-spacing:23.957120pt;}
.ls69{letter-spacing:24.594560pt;}
.ls9d{letter-spacing:25.157632pt;}
.ls71{letter-spacing:25.200128pt;}
.ls76{letter-spacing:27.781760pt;}
.ls27{letter-spacing:28.419200pt;}
.ls7f{letter-spacing:29.056640pt;}
.ls5e{letter-spacing:29.694080pt;}
.ls5b{letter-spacing:30.968960pt;}
.ls78{letter-spacing:32.881280pt;}
.ls6e{letter-spacing:33.577152pt;}
.ls4d{letter-spacing:35.484160pt;}
.ls6f{letter-spacing:36.121600pt;}
.ls51{letter-spacing:36.759040pt;}
.ls62{letter-spacing:37.396480pt;}
.ls1d{letter-spacing:50.835840pt;}
.ls1e{letter-spacing:50.857088pt;}
.ls46{letter-spacing:56.891520pt;}
.ls9b{letter-spacing:64.912640pt;}
.ls7c{letter-spacing:149.054720pt;}
.lsd{letter-spacing:756.738560pt;}
.ws77{word-spacing:-53.120000pt;}
.ws67{word-spacing:-31.762560pt;}
.ws124{word-spacing:-31.464320pt;}
.ws0{word-spacing:-29.605760pt;}
.ws62{word-spacing:-17.534720pt;}
.ws61{word-spacing:-17.279360pt;}
.ws76{word-spacing:-17.194240pt;}
.ws22{word-spacing:-17.024000pt;}
.ws174{word-spacing:-16.938880pt;}
.ws1{word-spacing:-16.250880pt;}
.wsc8{word-spacing:-14.238720pt;}
.ws193{word-spacing:-12.164480pt;}
.ws184{word-spacing:-11.845760pt;}
.ws24{word-spacing:-11.739520pt;}
.ws2a{word-spacing:-11.580160pt;}
.ws27{word-spacing:-11.527040pt;}
.wsb2{word-spacing:-11.473920pt;}
.ws29{word-spacing:-11.420800pt;}
.ws2d{word-spacing:-11.367680pt;}
.ws125{word-spacing:-11.314560pt;}
.ws25{word-spacing:-11.261440pt;}
.ws28{word-spacing:-11.208320pt;}
.ws2c{word-spacing:-11.155200pt;}
.ws23{word-spacing:-11.102080pt;}
.ws180{word-spacing:-11.048960pt;}
.ws2b{word-spacing:-10.995840pt;}
.ws26{word-spacing:-10.942720pt;}
.ws2e{word-spacing:-10.836480pt;}
.ws85{word-spacing:-10.783360pt;}
.ws11f{word-spacing:-10.730240pt;}
.ws84{word-spacing:-10.677120pt;}
.ws156{word-spacing:-10.517760pt;}
.ws2f{word-spacing:-10.464640pt;}
.wsd{word-spacing:-10.464000pt;}
.ws14{word-spacing:-10.368000pt;}
.ws194{word-spacing:-10.272000pt;}
.wsf{word-spacing:-10.176000pt;}
.wsc{word-spacing:-10.080000pt;}
.wsb{word-spacing:-10.032000pt;}
.wse{word-spacing:-9.984000pt;}
.ws15{word-spacing:-9.936000pt;}
.ws11{word-spacing:-9.888000pt;}
.ws10{word-spacing:-9.840000pt;}
.ws158{word-spacing:-9.667840pt;}
.ws157{word-spacing:-9.614720pt;}
.ws12{word-spacing:-9.600000pt;}
.ws13{word-spacing:-9.552000pt;}
.ws63{word-spacing:-9.455360pt;}
.ws159{word-spacing:-9.402240pt;}
.ws12e{word-spacing:-9.347840pt;}
.ws15a{word-spacing:-8.876160pt;}
.ws1b{word-spacing:-0.864000pt;}
.ws189{word-spacing:-0.637440pt;}
.ws147{word-spacing:-0.584320pt;}
.ws160{word-spacing:-0.531200pt;}
.ws188{word-spacing:-0.424960pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws10e{word-spacing:-0.371840pt;}
.wsf0{word-spacing:-0.340480pt;}
.ws20{word-spacing:-0.336000pt;}
.ws8{word-spacing:-0.320640pt;}
.ws64{word-spacing:-0.318720pt;}
.ws1f{word-spacing:-0.288000pt;}
.ws32{word-spacing:-0.265600pt;}
.ws143{word-spacing:-0.255360pt;}
.ws16{word-spacing:-0.240000pt;}
.wsbd{word-spacing:-0.212480pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws78{word-spacing:-0.170240pt;}
.wsbf{word-spacing:-0.159360pt;}
.ws10c{word-spacing:-0.138240pt;}
.ws44{word-spacing:-0.106240pt;}
.ws109{word-spacing:-0.085120pt;}
.ws195{word-spacing:-0.069120pt;}
.ws65{word-spacing:-0.053120pt;}
.ws2{word-spacing:0.000000pt;}
.ws130{word-spacing:0.042880pt;}
.ws38{word-spacing:0.053120pt;}
.ws3{word-spacing:0.069120pt;}
.ws12f{word-spacing:0.085760pt;}
.ws35{word-spacing:0.106240pt;}
.ws16a{word-spacing:0.128640pt;}
.ws17{word-spacing:0.138240pt;}
.ws18{word-spacing:0.144000pt;}
.ws5f{word-spacing:0.159360pt;}
.ws128{word-spacing:0.170240pt;}
.ws1a{word-spacing:0.192000pt;}
.ws66{word-spacing:0.212480pt;}
.wsa{word-spacing:0.235520pt;}
.ws19{word-spacing:0.240000pt;}
.ws68{word-spacing:0.255360pt;}
.ws5e{word-spacing:0.265600pt;}
.ws21{word-spacing:0.288000pt;}
.ws30{word-spacing:0.318720pt;}
.ws9{word-spacing:0.320640pt;}
.ws1e{word-spacing:0.336000pt;}
.wsab{word-spacing:0.345600pt;}
.ws7{word-spacing:0.353280pt;}
.ws4b{word-spacing:0.371840pt;}
.ws4{word-spacing:0.412160pt;}
.ws5d{word-spacing:0.424960pt;}
.ws46{word-spacing:0.531200pt;}
.ws56{word-spacing:0.584320pt;}
.ws5{word-spacing:0.588800pt;}
.ws69{word-spacing:0.637440pt;}
.wsc4{word-spacing:0.690560pt;}
.ws6{word-spacing:0.706560pt;}
.ws79{word-spacing:0.760320pt;}
.ws169{word-spacing:0.771840pt;}
.ws12a{word-spacing:0.936320pt;}
.ws6c{word-spacing:0.956160pt;}
.ws166{word-spacing:1.009280pt;}
.ws14b{word-spacing:1.168640pt;}
.ws16d{word-spacing:1.221760pt;}
.ws59{word-spacing:1.274880pt;}
.wsb4{word-spacing:1.434240pt;}
.ws57{word-spacing:1.593600pt;}
.ws5a{word-spacing:1.646720pt;}
.ws58{word-spacing:1.806080pt;}
.ws6e{word-spacing:1.912320pt;}
.ws14d{word-spacing:2.071680pt;}
.ws9f{word-spacing:2.177920pt;}
.wsb3{word-spacing:2.231040pt;}
.wse8{word-spacing:2.284160pt;}
.wsd1{word-spacing:2.443520pt;}
.ws8b{word-spacing:2.496640pt;}
.ws4c{word-spacing:2.549760pt;}
.ws9d{word-spacing:2.602880pt;}
.ws12d{word-spacing:2.709120pt;}
.ws12c{word-spacing:2.815360pt;}
.wsa4{word-spacing:2.868480pt;}
.ws139{word-spacing:2.921600pt;}
.ws74{word-spacing:2.974720pt;}
.ws4d{word-spacing:3.080960pt;}
.ws6f{word-spacing:3.187200pt;}
.ws131{word-spacing:3.293440pt;}
.ws8d{word-spacing:3.505920pt;}
.ws186{word-spacing:3.559040pt;}
.ws187{word-spacing:3.612160pt;}
.ws8c{word-spacing:3.718400pt;}
.wsa2{word-spacing:3.771520pt;}
.ws45{word-spacing:3.824640pt;}
.wsf7{word-spacing:3.984000pt;}
.ws43{word-spacing:4.143360pt;}
.ws137{word-spacing:4.196480pt;}
.wsed{word-spacing:4.249600pt;}
.ws185{word-spacing:4.355840pt;}
.ws54{word-spacing:4.462080pt;}
.ws144{word-spacing:4.511360pt;}
.ws75{word-spacing:4.621440pt;}
.ws145{word-spacing:4.727680pt;}
.ws9e{word-spacing:4.780800pt;}
.ws142{word-spacing:4.851840pt;}
.ws116{word-spacing:4.993280pt;}
.ws42{word-spacing:5.099520pt;}
.wsf5{word-spacing:5.258880pt;}
.ws123{word-spacing:5.418240pt;}
.ws40{word-spacing:5.471360pt;}
.ws41{word-spacing:5.630720pt;}
.ws50{word-spacing:5.736960pt;}
.ws15f{word-spacing:5.896320pt;}
.ws4f{word-spacing:6.055680pt;}
.ws9a{word-spacing:6.108800pt;}
.ws4e{word-spacing:6.268160pt;}
.wsd2{word-spacing:6.321280pt;}
.ws92{word-spacing:6.374400pt;}
.ws196{word-spacing:6.586880pt;}
.ws13f{word-spacing:6.693120pt;}
.wsb0{word-spacing:6.746240pt;}
.ws121{word-spacing:6.799360pt;}
.ws87{word-spacing:6.852480pt;}
.ws16b{word-spacing:6.905600pt;}
.ws86{word-spacing:6.958720pt;}
.ws71{word-spacing:7.011840pt;}
.ws138{word-spacing:7.064960pt;}
.ws88{word-spacing:7.171200pt;}
.ws16c{word-spacing:7.330560pt;}
.ws146{word-spacing:7.383680pt;}
.ws17f{word-spacing:7.436800pt;}
.ws17e{word-spacing:7.543040pt;}
.ws93{word-spacing:7.596160pt;}
.ws60{word-spacing:7.702400pt;}
.ws16f{word-spacing:7.968000pt;}
.wsec{word-spacing:8.021120pt;}
.ws16e{word-spacing:8.074240pt;}
.ws154{word-spacing:8.233600pt;}
.ws3b{word-spacing:8.339840pt;}
.wsff{word-spacing:8.432640pt;}
.ws117{word-spacing:8.605440pt;}
.ws100{word-spacing:8.640000pt;}
.ws39{word-spacing:8.658560pt;}
.ws120{word-spacing:8.711680pt;}
.ws9b{word-spacing:8.871040pt;}
.ws31{word-spacing:8.977280pt;}
.ws34{word-spacing:9.136640pt;}
.ws177{word-spacing:9.192960pt;}
.wsc5{word-spacing:9.296000pt;}
.wsbb{word-spacing:9.349120pt;}
.ws3a{word-spacing:9.402240pt;}
.ws33{word-spacing:9.508480pt;}
.wsbc{word-spacing:9.561600pt;}
.ws48{word-spacing:9.614720pt;}
.ws49{word-spacing:9.774080pt;}
.ws47{word-spacing:9.933440pt;}
.ws173{word-spacing:9.986560pt;}
.ws9c{word-spacing:10.039680pt;}
.ws4a{word-spacing:10.145920pt;}
.ws13c{word-spacing:10.199040pt;}
.ws6d{word-spacing:10.252160pt;}
.ws91{word-spacing:10.411520pt;}
.ws15b{word-spacing:10.570880pt;}
.wsf8{word-spacing:10.624000pt;}
.ws148{word-spacing:10.783360pt;}
.ws126{word-spacing:10.810240pt;}
.wsd9{word-spacing:10.889600pt;}
.wsdd{word-spacing:10.995840pt;}
.ws99{word-spacing:11.048960pt;}
.ws199{word-spacing:11.102080pt;}
.ws127{word-spacing:11.150720pt;}
.wsd8{word-spacing:11.208320pt;}
.ws115{word-spacing:11.261440pt;}
.ws183{word-spacing:11.420800pt;}
.ws162{word-spacing:11.473920pt;}
.ws51{word-spacing:11.527040pt;}
.ws52{word-spacing:11.686400pt;}
.wsa5{word-spacing:11.845760pt;}
.ws163{word-spacing:12.058240pt;}
.ws140{word-spacing:12.087040pt;}
.wsa6{word-spacing:12.111360pt;}
.ws7d{word-spacing:12.164480pt;}
.ws141{word-spacing:12.172160pt;}
.ws168{word-spacing:12.323840pt;}
.ws170{word-spacing:12.483200pt;}
.wsad{word-spacing:12.536320pt;}
.wsac{word-spacing:12.589440pt;}
.wsce{word-spacing:12.695680pt;}
.ws182{word-spacing:12.748800pt;}
.ws7b{word-spacing:12.801920pt;}
.wsa1{word-spacing:12.961280pt;}
.wsa0{word-spacing:13.120640pt;}
.wsbe{word-spacing:13.173760pt;}
.ws13d{word-spacing:13.333120pt;}
.ws3f{word-spacing:13.439360pt;}
.ws13e{word-spacing:13.598720pt;}
.wsde{word-spacing:13.758080pt;}
.ws6a{word-spacing:13.811200pt;}
.ws6b{word-spacing:13.970560pt;}
.ws17a{word-spacing:14.023680pt;}
.ws8e{word-spacing:14.076800pt;}
.wsb8{word-spacing:14.395520pt;}
.wsb7{word-spacing:14.448640pt;}
.wse1{word-spacing:14.501760pt;}
.ws72{word-spacing:14.714240pt;}
.ws113{word-spacing:14.873600pt;}
.ws10f{word-spacing:15.351680pt;}
.ws17b{word-spacing:15.404800pt;}
.ws178{word-spacing:15.511040pt;}
.ws13a{word-spacing:15.670400pt;}
.ws17c{word-spacing:15.723520pt;}
.ws3c{word-spacing:15.989120pt;}
.ws179{word-spacing:16.201600pt;}
.ws129{word-spacing:16.257920pt;}
.ws3d{word-spacing:16.307840pt;}
.ws103{word-spacing:16.520320pt;}
.ws7f{word-spacing:16.626560pt;}
.ws18d{word-spacing:16.785920pt;}
.wsc6{word-spacing:16.945280pt;}
.wsc7{word-spacing:17.264000pt;}
.ws18a{word-spacing:17.423360pt;}
.ws18c{word-spacing:17.529600pt;}
.wsd5{word-spacing:17.582720pt;}
.ws18b{word-spacing:17.635840pt;}
.wsf4{word-spacing:17.688960pt;}
.wsc3{word-spacing:17.901440pt;}
.wse7{word-spacing:18.220160pt;}
.wse6{word-spacing:18.273280pt;}
.ws13b{word-spacing:18.432640pt;}
.ws5b{word-spacing:18.538880pt;}
.wsb9{word-spacing:18.698240pt;}
.ws5c{word-spacing:18.857600pt;}
.ws155{word-spacing:18.910720pt;}
.wsba{word-spacing:19.070080pt;}
.ws55{word-spacing:19.176320pt;}
.wsd3{word-spacing:19.495040pt;}
.wsb6{word-spacing:19.548160pt;}
.ws14c{word-spacing:19.707520pt;}
.ws114{word-spacing:19.813760pt;}
.ws110{word-spacing:20.185600pt;}
.ws111{word-spacing:20.344960pt;}
.ws8a{word-spacing:20.451200pt;}
.wsfc{word-spacing:20.769920pt;}
.ws89{word-spacing:20.823040pt;}
.wsf1{word-spacing:21.141760pt;}
.ws11c{word-spacing:21.460480pt;}
.ws97{word-spacing:21.779200pt;}
.ws10b{word-spacing:21.911040pt;}
.ws98{word-spacing:22.097920pt;}
.ws153{word-spacing:22.151040pt;}
.wsa7{word-spacing:22.416640pt;}
.wsef{word-spacing:22.522880pt;}
.wsb5{word-spacing:22.576000pt;}
.wsee{word-spacing:22.735360pt;}
.ws10a{word-spacing:22.740480pt;}
.wse2{word-spacing:23.054080pt;}
.wse3{word-spacing:23.372800pt;}
.ws14a{word-spacing:23.638400pt;}
.ws149{word-spacing:23.691520pt;}
.wsfd{word-spacing:23.797760pt;}
.wsc2{word-spacing:23.850880pt;}
.ws172{word-spacing:23.904000pt;}
.wsc1{word-spacing:24.010240pt;}
.ws171{word-spacing:24.063360pt;}
.wsc0{word-spacing:24.328960pt;}
.ws10d{word-spacing:24.647680pt;}
.wsd4{word-spacing:24.966400pt;}
.ws197{word-spacing:25.178880pt;}
.ws198{word-spacing:25.338240pt;}
.ws3e{word-spacing:25.603840pt;}
.ws164{word-spacing:25.922560pt;}
.ws73{word-spacing:26.188160pt;}
.ws136{word-spacing:26.878720pt;}
.wse5{word-spacing:27.516160pt;}
.wse4{word-spacing:27.941120pt;}
.ws53{word-spacing:28.153600pt;}
.ws119{word-spacing:28.791040pt;}
.ws11b{word-spacing:29.109760pt;}
.ws11a{word-spacing:29.162880pt;}
.wsa8{word-spacing:29.428480pt;}
.ws14f{word-spacing:29.534720pt;}
.wsdf{word-spacing:29.747200pt;}
.wsaa{word-spacing:29.800320pt;}
.wse0{word-spacing:29.853440pt;}
.wsa9{word-spacing:29.959680pt;}
.wsa3{word-spacing:30.065920pt;}
.ws14e{word-spacing:30.437760pt;}
.ws7c{word-spacing:30.703360pt;}
.ws70{word-spacing:31.340800pt;}
.ws7a{word-spacing:31.449600pt;}
.ws118{word-spacing:31.872000pt;}
.ws102{word-spacing:31.978240pt;}
.ws101{word-spacing:32.350080pt;}
.ws83{word-spacing:32.509440pt;}
.wsea{word-spacing:32.615680pt;}
.wseb{word-spacing:32.934400pt;}
.wsfe{word-spacing:32.987520pt;}
.wse9{word-spacing:33.040640pt;}
.wscd{word-spacing:33.253120pt;}
.wscc{word-spacing:33.571840pt;}
.wscb{word-spacing:33.624960pt;}
.ws122{word-spacing:33.890560pt;}
.ws135{word-spacing:34.581120pt;}
.ws134{word-spacing:34.899840pt;}
.ws8f{word-spacing:35.218560pt;}
.ws90{word-spacing:35.377920pt;}
.wscf{word-spacing:35.856000pt;}
.ws176{word-spacing:36.090880pt;}
.wsd0{word-spacing:36.174720pt;}
.ws96{word-spacing:36.493440pt;}
.ws95{word-spacing:36.812160pt;}
.wsaf{word-spacing:37.130880pt;}
.ws80{word-spacing:38.087040pt;}
.ws108{word-spacing:38.405760pt;}
.ws17d{word-spacing:39.043200pt;}
.ws11e{word-spacing:40.318080pt;}
.wsae{word-spacing:41.592960pt;}
.ws107{word-spacing:42.230400pt;}
.wsf3{word-spacing:42.867840pt;}
.wsf2{word-spacing:43.027200pt;}
.wsd6{word-spacing:43.505280pt;}
.wsda{word-spacing:45.417600pt;}
.wsca{word-spacing:45.550080pt;}
.ws181{word-spacing:45.576960pt;}
.wsc9{word-spacing:45.757440pt;}
.ws132{word-spacing:46.055040pt;}
.ws133{word-spacing:46.373760pt;}
.ws82{word-spacing:46.692480pt;}
.ws152{word-spacing:47.011200pt;}
.wsdc{word-spacing:49.295360pt;}
.ws7e{word-spacing:49.932800pt;}
.ws37{word-spacing:51.101440pt;}
.ws36{word-spacing:51.526400pt;}
.ws105{word-spacing:53.013760pt;}
.wsd7{word-spacing:56.466560pt;}
.ws81{word-spacing:57.582080pt;}
.ws12b{word-spacing:58.219520pt;}
.wsfa{word-spacing:59.228800pt;}
.ws190{word-spacing:64.647040pt;}
.ws191{word-spacing:64.806400pt;}
.ws11d{word-spacing:65.921920pt;}
.ws192{word-spacing:66.293760pt;}
.wsfb{word-spacing:66.931200pt;}
.ws165{word-spacing:67.196800pt;}
.ws104{word-spacing:67.834240pt;}
.ws151{word-spacing:70.384000pt;}
.ws150{word-spacing:70.702720pt;}
.ws94{word-spacing:71.021440pt;}
.wsf9{word-spacing:71.127680pt;}
.wsf6{word-spacing:75.536640pt;}
.ws15c{word-spacing:76.174080pt;}
.ws15e{word-spacing:76.492800pt;}
.ws15d{word-spacing:76.705280pt;}
.wsb1{word-spacing:91.525760pt;}
.wsdb{word-spacing:95.350400pt;}
.ws106{word-spacing:131.737600pt;}
.ws112{word-spacing:174.711680pt;}
.ws18f{word-spacing:211.205120pt;}
.ws18e{word-spacing:211.523840pt;}
.ws175{word-spacing:236.037760pt;}
.ws161{word-spacing:439.036800pt;}
.ws167{word-spacing:1933.461760pt;}
._1c{margin-left:-15.918272pt;}
._c{margin-left:-11.580160pt;}
._b{margin-left:-9.534208pt;}
._e{margin-left:-8.285056pt;}
._a{margin-left:-6.098944pt;}
._d{margin-left:-3.850368pt;}
._2{margin-left:-1.306368pt;}
._1{width:1.230336pt;}
._24{width:2.120960pt;}
._15{width:3.010688pt;}
._9{width:3.913728pt;}
._7{width:4.825344pt;}
._8{width:5.840384pt;}
._11{width:8.012544pt;}
._4{width:9.357824pt;}
._1d{width:10.414208pt;}
._13{width:13.101568pt;}
._10{width:14.140288pt;}
._1e{width:15.376000pt;}
._19{width:16.900096pt;}
._17{width:17.931008pt;}
._1b{width:19.186176pt;}
._18{width:22.258944pt;}
._22{width:23.532160pt;}
._16{width:25.157248pt;}
._1f{width:28.067072pt;}
._14{width:30.384640pt;}
._1a{width:32.638592pt;}
._21{width:39.125888pt;}
._6{width:50.336128pt;}
._5{width:51.420160pt;}
._23{width:211.309440pt;}
._20{width:439.710208pt;}
._12{width:552.391680pt;}
._3{width:579.888000pt;}
._f{width:736.915328pt;}
._0{width:756.747520pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.fs3{font-size:128.000000pt;}
.fs9{font-size:149.120000pt;}
.y2b{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.240000pt;}
.y33{bottom:3.840000pt;}
.y25{bottom:5.280000pt;}
.y84{bottom:6.400000pt;}
.y82{bottom:6.560000pt;}
.y34{bottom:8.960000pt;}
.y86{bottom:24.480000pt;}
.y9e{bottom:24.640000pt;}
.y61{bottom:27.360000pt;}
.y193{bottom:33.600000pt;}
.y4{bottom:41.440000pt;}
.y89{bottom:42.560000pt;}
.y98{bottom:42.720000pt;}
.y1e2{bottom:45.120000pt;}
.y26f{bottom:46.880000pt;}
.y112{bottom:56.160000pt;}
.y2a5{bottom:58.560000pt;}
.y90{bottom:60.800000pt;}
.y5d{bottom:66.612000pt;}
.y1e1{bottom:67.680000pt;}
.y150{bottom:74.240000pt;}
.y3b9{bottom:78.403520pt;}
.y110{bottom:78.720000pt;}
.y192{bottom:78.880000pt;}
.y305{bottom:80.103040pt;}
.y8f{bottom:82.240000pt;}
.y169{bottom:82.831680pt;}
.y1fc{bottom:84.757440pt;}
.y196{bottom:85.123200pt;}
.y1c0{bottom:86.307680pt;}
.y2d{bottom:86.560000pt;}
.yc7{bottom:86.560640pt;}
.y5c{bottom:86.772000pt;}
.y311{bottom:87.583200pt;}
.y116{bottom:87.835040pt;}
.y289{bottom:88.113440pt;}
.y93{bottom:88.651840pt;}
.y1e0{bottom:90.240000pt;}
.y3eb{bottom:90.967200pt;}
.y3b8{bottom:94.560000pt;}
.y26c{bottom:96.480000pt;}
.y347{bottom:96.564480pt;}
.y14f{bottom:96.960000pt;}
.y10f{bottom:101.440000pt;}
.y304{bottom:102.825120pt;}
.y23d{bottom:102.831520pt;}
.y2a3{bottom:103.840000pt;}
.y195{bottom:104.485440pt;}
.yc6{bottom:104.794080pt;}
.y168{bottom:105.394400pt;}
.y92{bottom:106.725920pt;}
.y5b{bottom:107.256000pt;}
.y1fb{bottom:107.320160pt;}
.y1bf{bottom:108.870400pt;}
.y38c{bottom:109.581760pt;}
.y310{bottom:110.145920pt;}
.y288{bottom:110.835520pt;}
.y3ea{bottom:113.689280pt;}
.y3b7{bottom:116.480000pt;}
.y346{bottom:119.127200pt;}
.y26b{bottom:119.200000pt;}
.y14e{bottom:119.520000pt;}
.y365{bottom:121.221440pt;}
.y10e{bottom:124.000000pt;}
.y91{bottom:124.800000pt;}
.y303{bottom:125.387840pt;}
.y23c{bottom:125.394240pt;}
.y2a2{bottom:126.400000pt;}
.yc5{bottom:127.356800pt;}
.y5a{bottom:127.572000pt;}
.y167{bottom:128.116480pt;}
.y257{bottom:128.960000pt;}
.y1fa{bottom:130.201600pt;}
.y1be{bottom:131.592480pt;}
.y38b{bottom:132.144480pt;}
.y30f{bottom:132.868000pt;}
.y287{bottom:133.557600pt;}
.y1de{bottom:135.520000pt;}
.y3e9{bottom:136.252000pt;}
.y40b{bottom:141.832000pt;}
.y345{bottom:141.849280pt;}
.y364{bottom:145.377760pt;}
.y10d{bottom:146.560000pt;}
.y226{bottom:146.720000pt;}
.y59{bottom:147.888000pt;}
.y302{bottom:147.950560pt;}
.y23b{bottom:148.116320pt;}
.y2a1{bottom:149.120000pt;}
.yc4{bottom:149.919520pt;}
.y166{bottom:150.997920pt;}
.y1f9{bottom:152.923680pt;}
.y1bd{bottom:154.155200pt;}
.y38a{bottom:154.866560pt;}
.y8c{bottom:155.360000pt;}
.y30e{bottom:155.590080pt;}
.y286{bottom:156.439040pt;}
.y3e8{bottom:158.814720pt;}
.y8e{bottom:161.765920pt;}
.y40a{bottom:164.394720pt;}
.y344{bottom:164.412000pt;}
.y14c{bottom:164.800000pt;}
.y363{bottom:168.099840pt;}
.y58{bottom:168.204000pt;}
.y268{bottom:168.800000pt;}
.y18e{bottom:169.280000pt;}
.y25a{bottom:170.397280pt;}
.y301{bottom:170.672640pt;}
.y23a{bottom:170.679040pt;}
.y21{bottom:171.339680pt;}
.yc3{bottom:172.641600pt;}
.y165{bottom:173.560640pt;}
.y255{bottom:174.240000pt;}
.y3b6{bottom:174.922080pt;}
.y227{bottom:175.520000pt;}
.y1f8{bottom:175.645760pt;}
.y1bc{bottom:176.717920pt;}
.y389{bottom:177.429280pt;}
.y325{bottom:177.674720pt;}
.y30d{bottom:178.312160pt;}
.y285{bottom:179.320480pt;}
.y8d{bottom:179.840000pt;}
.y3e7{bottom:181.536800pt;}
.y57{bottom:181.968000pt;}
.y1e4{bottom:186.400000pt;}
.y343{bottom:186.974720pt;}
.y409{bottom:187.116800pt;}
.y21d{bottom:187.200000pt;}
.y14b{bottom:187.360000pt;}
.yc2{bottom:190.715680pt;}
.y18d{bottom:191.840000pt;}
.y362{bottom:192.415520pt;}
.y259{bottom:192.960000pt;}
.y3b5{bottom:193.155520pt;}
.y300{bottom:193.235360pt;}
.y239{bottom:193.401120pt;}
.y29e{bottom:194.400000pt;}
.y56{bottom:195.564000pt;}
.y164{bottom:196.282720pt;}
.y254{bottom:196.800000pt;}
.y1d5{bottom:198.080000pt;}
.y1f7{bottom:198.208480pt;}
.y1bb{bottom:199.440000pt;}
.y388{bottom:199.992000pt;}
.y324{bottom:200.396800pt;}
.y30c{bottom:201.034240pt;}
.y284{bottom:201.883200pt;}
.y1db{bottom:203.360000pt;}
.y3e6{bottom:204.099520pt;}
.y24d{bottom:204.640000pt;}
.y1d4{bottom:205.727040pt;}
.y55{bottom:209.004000pt;}
.y408{bottom:209.679520pt;}
.y342{bottom:209.696800pt;}
.y14a{bottom:209.920000pt;}
.y88{bottom:210.240000pt;}
.y3b4{bottom:211.229600pt;}
.yc1{bottom:213.278400pt;}
.y10a{bottom:214.400000pt;}
.y18c{bottom:214.560000pt;}
.y24c{bottom:215.487840pt;}
.y265{bottom:215.680000pt;}
.y2ff{bottom:215.798080pt;}
.y238{bottom:216.282560pt;}
.y361{bottom:216.571840pt;}
.y8b{bottom:216.645920pt;}
.y163{bottom:218.845440pt;}
.y253{bottom:219.520000pt;}
.y1e3{bottom:220.480000pt;}
.y1f6{bottom:220.771200pt;}
.y1ba{bottom:222.002720pt;}
.y54{bottom:222.600000pt;}
.y387{bottom:222.714080pt;}
.y323{bottom:222.959520pt;}
.y30b{bottom:223.596960pt;}
.y283{bottom:224.445920pt;}
.y1da{bottom:226.080000pt;}
.y3e5{bottom:226.821600pt;}
.y3b3{bottom:229.303680pt;}
.y341{bottom:232.259520pt;}
.y407{bottom:232.401600pt;}
.y149{bottom:232.640000pt;}
.y8a{bottom:234.720000pt;}
.y2b8{bottom:235.805920pt;}
.yc0{bottom:236.000480pt;}
.y53{bottom:236.196000pt;}
.y108{bottom:237.120000pt;}
.y264{bottom:238.240000pt;}
.y2fe{bottom:238.520160pt;}
.y237{bottom:238.845280pt;}
.y360{bottom:240.887520pt;}
.y162{bottom:241.408160pt;}
.y252{bottom:242.080000pt;}
.y1f5{bottom:243.493280pt;}
.y1b9{bottom:244.724800pt;}
.y386{bottom:245.276800pt;}
.y322{bottom:245.522240pt;}
.y30a{bottom:246.159680pt;}
.y282{bottom:247.168000pt;}
.y3b2{bottom:247.377760pt;}
.y1d8{bottom:248.640000pt;}
.y3e4{bottom:249.384320pt;}
.y21c{bottom:253.878240pt;}
.y340{bottom:254.822240pt;}
.y406{bottom:254.964320pt;}
.y148{bottom:255.200000pt;}
.y52{bottom:256.512000pt;}
.y2b7{bottom:258.528000pt;}
.ybf{bottom:258.563200pt;}
.y2da{bottom:259.616320pt;}
.y2fd{bottom:261.242240pt;}
.y236{bottom:261.408000pt;}
.y20{bottom:262.055360pt;}
.y161{bottom:264.130240pt;}
.y250{bottom:264.640000pt;}
.y35f{bottom:265.043840pt;}
.y85{bottom:265.280000pt;}
.y3b1{bottom:265.451840pt;}
.y1f4{bottom:266.056000pt;}
.y1b8{bottom:267.606240pt;}
.y385{bottom:267.839520pt;}
.y321{bottom:268.244320pt;}
.y309{bottom:268.881760pt;}
.y281{bottom:269.730720pt;}
.y1d7{bottom:271.200000pt;}
.y87{bottom:271.680000pt;}
.y3e3{bottom:271.947040pt;}
.yf2{bottom:273.663680pt;}
.y51{bottom:276.996000pt;}
.y405{bottom:277.527040pt;}
.y33f{bottom:277.544320pt;}
.y2b6{bottom:281.090720pt;}
.ybe{bottom:281.125920pt;}
.y2d9{bottom:282.179040pt;}
.y21f{bottom:282.400000pt;}
.y262{bottom:283.520000pt;}
.y3b0{bottom:283.525920pt;}
.y2fc{bottom:284.123680pt;}
.y235{bottom:284.130080pt;}
.y1f{bottom:284.618080pt;}
.y29a{bottom:284.800000pt;}
.y160{bottom:286.692960pt;}
.y24f{bottom:287.360000pt;}
.y35e{bottom:287.765920pt;}
.y258{bottom:288.317920pt;}
.y1f3{bottom:288.937440pt;}
.y1b7{bottom:290.168960pt;}
.y384{bottom:290.720960pt;}
.y50{bottom:290.760000pt;}
.y320{bottom:290.807040pt;}
.y188{bottom:291.444480pt;}
.y280{bottom:292.452800pt;}
.y1d6{bottom:293.920000pt;}
.y3e2{bottom:294.669120pt;}
.yf1{bottom:296.385760pt;}
.ybd{bottom:299.200000pt;}
.y33e{bottom:300.107040pt;}
.y404{bottom:300.249120pt;}
.y146{bottom:300.480000pt;}
.y3af{bottom:301.600000pt;}
.y83{bottom:302.080000pt;}
.y2b5{bottom:303.653440pt;}
.y4f{bottom:304.356000pt;}
.y2d8{bottom:304.901120pt;}
.y21e{bottom:304.960000pt;}
.y261{bottom:306.080000pt;}
.y2fb{bottom:306.686400pt;}
.y234{bottom:306.692800pt;}
.y1e{bottom:307.340160pt;}
.y15f{bottom:309.415040pt;}
.y24e{bottom:309.920000pt;}
.y35d{bottom:310.328640pt;}
.y1df{bottom:311.040000pt;}
.y1f2{bottom:311.659520pt;}
.ybb{bottom:311.680000pt;}
.y1b6{bottom:312.891040pt;}
.y135{bottom:312.891680pt;}
.y31f{bottom:313.529120pt;}
.y187{bottom:314.166560pt;}
.y27f{bottom:315.015520pt;}
.y3e1{bottom:317.231840pt;}
.y143{bottom:317.920000pt;}
.y4e{bottom:317.952000pt;}
.ybc{bottom:318.080000pt;}
.yf0{bottom:318.948480pt;}
.y3ae{bottom:319.680000pt;}
.y81{bottom:320.800000pt;}
.y403{bottom:322.811840pt;}
.y33d{bottom:322.829120pt;}
.y145{bottom:323.040000pt;}
.y2b4{bottom:326.375520pt;}
.y383{bottom:326.882400pt;}
.y2d7{bottom:327.463840pt;}
.y260{bottom:328.640000pt;}
.y142{bottom:328.971680pt;}
.y2fa{bottom:329.249120pt;}
.y233{bottom:329.414880pt;}
.y1d{bottom:329.902880pt;}
.y4d{bottom:331.548000pt;}
.y15e{bottom:332.296480pt;}
.y35c{bottom:333.050720pt;}
.yef{bottom:333.822080pt;}
.y225{bottom:333.912480pt;}
.y1f1{bottom:334.222240pt;}
.y1b5{bottom:335.453760pt;}
.y134{bottom:335.454400pt;}
.y31e{bottom:336.091840pt;}
.y186{bottom:336.729280pt;}
.y27e{bottom:337.578240pt;}
.y3ad{bottom:337.760000pt;}
.y3e0{bottom:339.794560pt;}
.y2ea{bottom:341.727840pt;}
.y402{bottom:345.374560pt;}
.y33c{bottom:345.391840pt;}
.y144{bottom:345.760000pt;}
.y80{bottom:346.240000pt;}
.y427{bottom:346.330720pt;}
.y152{bottom:346.877920pt;}
.yb9{bottom:348.480000pt;}
.y2b3{bottom:348.938240pt;}
.yee{bottom:349.027680pt;}
.y2d6{bottom:350.026560pt;}
.y382{bottom:351.198080pt;}
.y2f9{bottom:351.971200pt;}
.y232{bottom:352.136960pt;}
.y1c{bottom:352.465600pt;}
.y15d{bottom:354.859200pt;}
.yba{bottom:354.880000pt;}
.y272{bottom:355.197280pt;}
.y35b{bottom:355.772800pt;}
.y3ac{bottom:356.071680pt;}
.y1dd{bottom:356.157920pt;}
.y256{bottom:356.160000pt;}
.y224{bottom:356.475200pt;}
.y1f0{bottom:356.944320pt;}
.y1b4{bottom:358.016480pt;}
.y133{bottom:358.017120pt;}
.y31d{bottom:358.654560pt;}
.y185{bottom:359.292000pt;}
.y27d{bottom:360.300320pt;}
.y4c{bottom:360.984000pt;}
.y3df{bottom:362.516640pt;}
.yed{bottom:364.073920pt;}
.y2e9{bottom:364.290560pt;}
.y33b{bottom:367.954560pt;}
.y401{bottom:368.096640pt;}
.y7f{bottom:368.892960pt;}
.y426{bottom:368.893440pt;}
.y151{bottom:369.600000pt;}
.y2b2{bottom:371.660320pt;}
.y2d5{bottom:372.748640pt;}
.y3ab{bottom:374.145760pt;}
.y2f8{bottom:374.533920pt;}
.y231{bottom:374.859040pt;}
.y1b{bottom:375.187680pt;}
.y381{bottom:375.354400pt;}
.y15c{bottom:377.581280pt;}
.y271{bottom:377.760000pt;}
.y1dc{bottom:378.880000pt;}
.y223{bottom:379.037920pt;}
.y1ef{bottom:379.507040pt;}
.y1b3{bottom:380.738560pt;}
.y132{bottom:380.739200pt;}
.y31c{bottom:381.376640pt;}
.y4b{bottom:381.468000pt;}
.y184{bottom:382.014080pt;}
.y27c{bottom:382.863040pt;}
.yb7{bottom:385.280000pt;}
.y3de{bottom:385.398080pt;}
.yec{bottom:386.636640pt;}
.y2e8{bottom:386.853280pt;}
.y25f{bottom:389.440000pt;}
.y400{bottom:390.659360pt;}
.y33a{bottom:390.676640pt;}
.y7e{bottom:391.455680pt;}
.y425{bottom:391.615520pt;}
.yb8{bottom:391.680000pt;}
.y35a{bottom:391.934240pt;}
.y3aa{bottom:392.219840pt;}
.y2b1{bottom:394.382400pt;}
.y2d4{bottom:395.311360pt;}
.y2f7{bottom:397.096640pt;}
.y230{bottom:397.581120pt;}
.y1a{bottom:397.750400pt;}
.y380{bottom:399.670080pt;}
.y15b{bottom:400.144000pt;}
.yeb{bottom:401.682880pt;}
.y222{bottom:401.760000pt;}
.y4a{bottom:401.784000pt;}
.y1ee{bottom:402.069760pt;}
.y1b2{bottom:403.301280pt;}
.y131{bottom:403.461280pt;}
.y25e{bottom:403.824800pt;}
.y31b{bottom:403.939360pt;}
.y183{bottom:404.576800pt;}
.y308{bottom:404.736160pt;}
.y27b{bottom:405.585120pt;}
.y2e7{bottom:409.575360pt;}
.y3a9{bottom:410.293920pt;}
.y339{bottom:413.239360pt;}
.y3ff{bottom:413.381440pt;}
.y270{bottom:413.760000pt;}
.y7d{bottom:414.018400pt;}
.y424{bottom:414.178240pt;}
.y359{bottom:414.496960pt;}
.yea{bottom:416.729120pt;}
.y2b0{bottom:417.104480pt;}
.y2d3{bottom:417.874080pt;}
.y2f6{bottom:419.818720pt;}
.y22f{bottom:420.143840pt;}
.y19{bottom:420.472480pt;}
.y3dd{bottom:421.400160pt;}
.y49{bottom:422.100000pt;}
.yb5{bottom:422.240000pt;}
.y15a{bottom:422.706720pt;}
.y37f{bottom:423.985760pt;}
.y1d9{bottom:424.160000pt;}
.y221{bottom:424.317280pt;}
.y1ed{bottom:424.791840pt;}
.y1b1{bottom:426.023360pt;}
.y130{bottom:426.342720pt;}
.y31a{bottom:426.502080pt;}
.y20e{bottom:427.139520pt;}
.y182{bottom:427.298880pt;}
.y307{bottom:427.458240pt;}
.y3a8{bottom:428.368000pt;}
.yb6{bottom:428.640000pt;}
.y2e6{bottom:432.138080pt;}
.y338{bottom:435.802080pt;}
.y3fe{bottom:435.944160pt;}
.y26e{bottom:436.320000pt;}
.y7c{bottom:436.740480pt;}
.y423{bottom:436.740960pt;}
.y358{bottom:437.059680pt;}
.y2af{bottom:439.826560pt;}
.y2d2{bottom:440.596160pt;}
.y27a{bottom:441.746560pt;}
.y2f5{bottom:442.381440pt;}
.y48{bottom:442.584000pt;}
.y22e{bottom:442.706560pt;}
.y18{bottom:443.035200pt;}
.y3dc{bottom:443.962880pt;}
.ye9{bottom:445.214720pt;}
.y159{bottom:445.428800pt;}
.y3a7{bottom:446.442080pt;}
.y37e{bottom:446.548480pt;}
.y251{bottom:446.720000pt;}
.y220{bottom:446.880000pt;}
.y1ec{bottom:447.354560pt;}
.y1b0{bottom:449.064160pt;}
.y12f{bottom:449.224160pt;}
.y20d{bottom:449.861600pt;}
.y181{bottom:450.180320pt;}
.y2e5{bottom:454.860160pt;}
.y3fd{bottom:458.506880pt;}
.y337{bottom:458.524160pt;}
.yb2{bottom:459.040000pt;}
.y7b{bottom:459.303200pt;}
.y422{bottom:459.463040pt;}
.y357{bottom:459.781760pt;}
.y14d{bottom:460.000000pt;}
.ye8{bottom:460.088320pt;}
.y2ae{bottom:462.389280pt;}
.y47{bottom:463.068000pt;}
.y2d1{bottom:463.158880pt;}
.y26d{bottom:463.360000pt;}
.y279{bottom:464.468640pt;}
.y3a6{bottom:464.516160pt;}
.y2f4{bottom:465.103520pt;}
.y22d{bottom:465.428640pt;}
.yb4{bottom:465.445920pt;}
.y17{bottom:465.597920pt;}
.y3db{bottom:466.684960pt;}
.y158{bottom:467.991520pt;}
.y1eb{bottom:470.076640pt;}
.y37d{bottom:470.864160pt;}
.y1af{bottom:471.786240pt;}
.y12e{bottom:471.786880pt;}
.y20c{bottom:472.424320pt;}
.y180{bottom:472.743040pt;}
.ye7{bottom:475.134560pt;}
.y2e4{bottom:477.422880pt;}
.y336{bottom:481.086880pt;}
.y3fc{bottom:481.228960pt;}
.y7a{bottom:482.025280pt;}
.y421{bottom:482.025760pt;}
.y356{bottom:482.344480pt;}
.y3a5{bottom:482.590240pt;}
.yb3{bottom:483.520000pt;}
.y46{bottom:483.708000pt;}
.y299{bottom:484.160000pt;}
.y2ad{bottom:484.952000pt;}
.y2d0{bottom:485.880960pt;}
.y278{bottom:487.031360pt;}
.y2f3{bottom:487.666240pt;}
.y22c{bottom:487.991360pt;}
.y16{bottom:488.320000pt;}
.y3da{bottom:489.247680pt;}
.ye6{bottom:490.340160pt;}
.y157{bottom:490.554240pt;}
.y1ea{bottom:492.639360pt;}
.y1ae{bottom:494.508320pt;}
.y12d{bottom:494.508960pt;}
.y319{bottom:494.668320pt;}
.y20b{bottom:495.146400pt;}
.y37c{bottom:495.179840pt;}
.y17f{bottom:495.465120pt;}
.y45{bottom:497.472000pt;}
.y2a7{bottom:497.597280pt;}
.y2e3{bottom:499.985600pt;}
.y3a4{bottom:500.664320pt;}
.y15{bottom:503.360000pt;}
.y3fb{bottom:503.791680pt;}
.y335{bottom:503.968320pt;}
.y79{bottom:504.588000pt;}
.y420{bottom:504.747840pt;}
.y355{bottom:505.066560pt;}
.ye5{bottom:505.386400pt;}
.y2ac{bottom:507.674080pt;}
.y2cf{bottom:508.443680pt;}
.y26a{bottom:508.640000pt;}
.y277{bottom:509.594080pt;}
.y2f2{bottom:510.228960pt;}
.y22b{bottom:510.713440pt;}
.y44{bottom:511.068000pt;}
.y3d9{bottom:511.810400pt;}
.y156{bottom:513.435680pt;}
.yaf{bottom:514.080000pt;}
.y1d3{bottom:514.686240pt;}
.y115{bottom:514.880000pt;}
.y21b{bottom:515.002880pt;}
.y1e9{bottom:515.202080pt;}
.y1ad{bottom:517.071040pt;}
.y12c{bottom:517.071680pt;}
.y318{bottom:517.549760pt;}
.y20a{bottom:517.709120pt;}
.y17e{bottom:518.027840pt;}
.y3a3{bottom:518.738400pt;}
.y37b{bottom:519.336160pt;}
.y2a6{bottom:520.160000pt;}
.ye4{bottom:520.432640pt;}
.yb1{bottom:520.485920pt;}
.y2e2{bottom:522.707680pt;}
.y14{bottom:523.207040pt;}
.y43{bottom:524.664000pt;}
.y3fa{bottom:526.354400pt;}
.y107{bottom:526.560000pt;}
.y78{bottom:527.150720pt;}
.y41f{bottom:527.310560pt;}
.y354{bottom:527.629280pt;}
.y2ab{bottom:530.396160pt;}
.y2ce{bottom:531.006400pt;}
.y276{bottom:532.475520pt;}
.y2f1{bottom:532.951040pt;}
.y22a{bottom:533.435520pt;}
.y3d8{bottom:534.532480pt;}
.ye3{bottom:535.478880pt;}
.y269{bottom:535.520000pt;}
.y155{bottom:536.317120pt;}
.y3a2{bottom:536.971840pt;}
.y24b{bottom:537.248960pt;}
.y114{bottom:537.437280pt;}
.y194{bottom:537.440000pt;}
.y1e8{bottom:538.083520pt;}
.y42{bottom:538.260000pt;}
.yb0{bottom:538.560000pt;}
.y1ac{bottom:539.633760pt;}
.y12b{bottom:539.634400pt;}
.y334{bottom:539.970400pt;}
.y209{bottom:540.271840pt;}
.y17d{bottom:540.590560pt;}
.y37a{bottom:542.058240pt;}
.y13{bottom:543.200000pt;}
.y2e1{bottom:545.270400pt;}
.y3f9{bottom:549.076480pt;}
.y18b{bottom:549.120000pt;}
.y77{bottom:549.872800pt;}
.y41e{bottom:549.873280pt;}
.y353{bottom:550.192000pt;}
.ye2{bottom:550.352480pt;}
.y1d2{bottom:550.847680pt;}
.y21a{bottom:551.004960pt;}
.y41{bottom:551.856000pt;}
.y2aa{bottom:553.436960pt;}
.y2cd{bottom:553.728480pt;}
.y3a1{bottom:555.045920pt;}
.y275{bottom:555.356960pt;}
.y2f0{bottom:555.513760pt;}
.y229{bottom:556.316960pt;}
.y3d7{bottom:557.095200pt;}
.y267{bottom:558.240000pt;}
.y154{bottom:559.357920pt;}
.y113{bottom:560.000000pt;}
.y1e7{bottom:560.964960pt;}
.y1ab{bottom:562.355840pt;}
.y12a{bottom:562.356480pt;}
.y333{bottom:562.692480pt;}
.y208{bottom:562.993920pt;}
.y17c{bottom:563.312640pt;}
.y12{bottom:565.104000pt;}
.y2a4{bottom:565.440000pt;}
.y40{bottom:565.452000pt;}
.ye1{bottom:565.558080pt;}
.y379{bottom:566.373920pt;}
.y298{bottom:566.391040pt;}
.y2e0{bottom:567.833120pt;}
.yac{bottom:568.960000pt;}
.y2ba{bottom:569.440000pt;}
.y3f8{bottom:571.639200pt;}
.y76{bottom:572.435520pt;}
.y41d{bottom:572.595360pt;}
.y352{bottom:572.914080pt;}
.y3a0{bottom:573.120000pt;}
.y1d1{bottom:573.410400pt;}
.y219{bottom:573.727040pt;}
.yae{bottom:575.365920pt;}
.y2cc{bottom:576.291200pt;}
.y2a9{bottom:576.318400pt;}
.y2ef{bottom:578.076480pt;}
.y274{bottom:578.397760pt;}
.y3f{bottom:578.892000pt;}
.y1e6{bottom:579.198400pt;}
.y228{bottom:579.357760pt;}
.y3d6{bottom:579.817280pt;}
.ye0{bottom:580.431680pt;}
.y266{bottom:582.400000pt;}
.y111{bottom:582.720000pt;}
.y106{bottom:583.195680pt;}
.y1aa{bottom:584.918560pt;}
.y129{bottom:585.078560pt;}
.y332{bottom:585.255200pt;}
.y207{bottom:585.556640pt;}
.y17b{bottom:585.875360pt;}
.y25c{bottom:588.002560pt;}
.y378{bottom:590.530240pt;}
.y2df{bottom:590.555200pt;}
.yfd{bottom:590.560000pt;}
.y39f{bottom:591.205920pt;}
.yad{bottom:593.440000pt;}
.y3f7{bottom:594.361280pt;}
.y75{bottom:594.998240pt;}
.y41c{bottom:595.158080pt;}
.y153{bottom:595.360000pt;}
.y351{bottom:595.476800pt;}
.ydf{bottom:595.477920pt;}
.y11{bottom:595.832000pt;}
.y147{bottom:595.840000pt;}
.y1d0{bottom:596.132480pt;}
.y218{bottom:596.289760pt;}
.y2b9{bottom:598.560000pt;}
.y2cb{bottom:598.853920pt;}
.y3e{bottom:599.208000pt;}
.y2ee{bottom:600.957920pt;}
.y3d5{bottom:602.380000pt;}
.y1a9{bottom:607.640640pt;}
.y128{bottom:607.800640pt;}
.y331{bottom:607.817920pt;}
.y206{bottom:608.119360pt;}
.y17a{bottom:608.438080pt;}
.y18a{bottom:609.118240pt;}
.y2a8{bottom:609.120000pt;}
.y39e{bottom:609.280000pt;}
.yde{bottom:610.524160pt;}
.y273{bottom:611.040000pt;}
.y1e5{bottom:612.000000pt;}
.y377{bottom:613.092960pt;}
.y2de{bottom:613.117920pt;}
.y25b{bottom:615.200000pt;}
.y3f6{bottom:616.924000pt;}
.y74{bottom:617.720320pt;}
.y41b{bottom:617.720800pt;}
.y350{bottom:618.039520pt;}
.y1cf{bottom:618.695200pt;}
.y217{bottom:618.852480pt;}
.y3d{bottom:619.524000pt;}
.y2ca{bottom:621.576000pt;}
.y2ed{bottom:623.680000pt;}
.yaa{bottom:623.840000pt;}
.y3d4{bottom:624.942720pt;}
.ydd{bottom:625.570400pt;}
.y10{bottom:626.560000pt;}
.y39d{bottom:627.360000pt;}
.y39c{bottom:627.430240pt;}
.yab{bottom:630.400000pt;}
.y1a8{bottom:630.522080pt;}
.y127{bottom:630.522720pt;}
.y330{bottom:630.540000pt;}
.y205{bottom:630.841440pt;}
.y179{bottom:631.160160pt;}
.y2a0{bottom:633.277280pt;}
.y376{bottom:635.815040pt;}
.y2dd{bottom:635.840000pt;}
.y3f5{bottom:639.486720pt;}
.y3c{bottom:639.840000pt;}
.y73{bottom:640.283040pt;}
.y41a{bottom:640.442880pt;}
.ydc{bottom:640.444000pt;}
.y34f{bottom:640.761600pt;}
.y1ce{bottom:641.257920pt;}
.y216{bottom:641.574560pt;}
.y2c9{bottom:644.138720pt;}
.y2ec{bottom:644.160000pt;}
.yfc{bottom:644.837920pt;}
.y39b{bottom:645.504320pt;}
.y439{bottom:645.760000pt;}
.y3d3{bottom:647.664800pt;}
.y263{bottom:650.240000pt;}
.y191{bottom:650.560000pt;}
.y1a7{bottom:653.084800pt;}
.y126{bottom:653.085440pt;}
.y32f{bottom:653.102720pt;}
.y317{bottom:653.404160pt;}
.y204{bottom:653.563520pt;}
.y178{bottom:653.722880pt;}
.ydb{bottom:655.649600pt;}
.yf{bottom:655.680000pt;}
.y29f{bottom:655.840000pt;}
.y2dc{bottom:656.320000pt;}
.y375{bottom:658.377760pt;}
.y3b{bottom:660.156000pt;}
.ya8{bottom:660.800000pt;}
.y2eb{bottom:661.120000pt;}
.y3f4{bottom:662.208800pt;}
.y72{bottom:663.005120pt;}
.y419{bottom:663.005600pt;}
.y34e{bottom:663.324320pt;}
.y39a{bottom:663.578400pt;}
.y1cd{bottom:663.980000pt;}
.y215{bottom:664.137280pt;}
.y2c8{bottom:666.860800pt;}
.ya9{bottom:667.200000pt;}
.y3d2{bottom:670.227520pt;}
.yda{bottom:670.523200pt;}
.y190{bottom:673.117920pt;}
.y2db{bottom:673.120000pt;}
.y1a6{bottom:675.806880pt;}
.y125{bottom:675.807520pt;}
.y32e{bottom:675.824800pt;}
.y438{bottom:676.000000pt;}
.y316{bottom:676.126240pt;}
.y177{bottom:676.444960pt;}
.y24a{bottom:678.715200pt;}
.ye{bottom:680.480160pt;}
.y3a{bottom:680.640000pt;}
.y374{bottom:680.940480pt;}
.y399{bottom:681.652480pt;}
.y3f3{bottom:684.771520pt;}
.yfb{bottom:685.312480pt;}
.yd9{bottom:685.396800pt;}
.y71{bottom:685.567840pt;}
.y418{bottom:685.727680pt;}
.y34d{bottom:686.046400pt;}
.y141{bottom:686.416160pt;}
.y1cc{bottom:686.542720pt;}
.y214{bottom:686.859360pt;}
.y2c7{bottom:689.423520pt;}
.y437{bottom:692.000000pt;}
.y3d1{bottom:692.790240pt;}
.y10c{bottom:695.837280pt;}
.y18f{bottom:695.840000pt;}
.ya6{bottom:697.600000pt;}
.y1a5{bottom:698.369600pt;}
.y124{bottom:698.370240pt;}
.y32d{bottom:698.387520pt;}
.y315{bottom:698.848320pt;}
.y176{bottom:699.007680pt;}
.y398{bottom:699.726560pt;}
.yd8{bottom:700.602400pt;}
.y39{bottom:700.956000pt;}
.y29d{bottom:701.115200pt;}
.y373{bottom:703.662560pt;}
.ya7{bottom:704.000000pt;}
.y3f2{bottom:707.652960pt;}
.y70{bottom:708.130560pt;}
.y417{bottom:708.290400pt;}
.y34c{bottom:708.609120pt;}
.y1cb{bottom:709.105440pt;}
.y213{bottom:709.422080pt;}
.y436{bottom:709.423680pt;}
.y2c6{bottom:711.986240pt;}
.yd{bottom:714.240000pt;}
.y249{bottom:714.557920pt;}
.y3d0{bottom:715.512320pt;}
.yd7{bottom:715.648640pt;}
.y397{bottom:717.960000pt;}
.y10b{bottom:718.400000pt;}
.y1a4{bottom:720.932320pt;}
.y123{bottom:720.932960pt;}
.y32c{bottom:720.950240pt;}
.y290{bottom:721.092320pt;}
.y38{bottom:721.272000pt;}
.y175{bottom:721.570400pt;}
.y140{bottom:722.418240pt;}
.y29c{bottom:723.677920pt;}
.yfa{bottom:725.787040pt;}
.y372{bottom:726.225280pt;}
.yd6{bottom:730.522240pt;}
.y6f{bottom:730.852640pt;}
.y416{bottom:730.853120pt;}
.y34b{bottom:731.171840pt;}
.y1ca{bottom:731.827520pt;}
.y212{bottom:731.984800pt;}
.y435{bottom:731.986400pt;}
.ya3{bottom:734.560000pt;}
.y2c5{bottom:734.708320pt;}
.y396{bottom:736.034080pt;}
.y3cf{bottom:738.075040pt;}
.y248{bottom:739.032960pt;}
.y25d{bottom:740.950880pt;}
.y109{bottom:740.960000pt;}
.ya5{bottom:740.965920pt;}
.y37{bottom:741.756000pt;}
.y1a3{bottom:743.654400pt;}
.y3f1{bottom:743.655040pt;}
.y32b{bottom:743.672320pt;}
.y122{bottom:743.814400pt;}
.y28f{bottom:743.973760pt;}
.y203{bottom:744.292480pt;}
.y174{bottom:744.451840pt;}
.yd5{bottom:745.568480pt;}
.y29b{bottom:746.400000pt;}
.y13f{bottom:746.893280pt;}
.y371{bottom:748.947360pt;}
.y6e{bottom:753.415360pt;}
.y415{bottom:753.575200pt;}
.y34a{bottom:753.893920pt;}
.y395{bottom:754.108160pt;}
.y1c9{bottom:754.390240pt;}
.y211{bottom:754.706880pt;}
.y434{bottom:755.027200pt;}
.y2c4{bottom:757.271040pt;}
.ya4{bottom:759.040000pt;}
.yd4{bottom:760.614720pt;}
.y3ce{bottom:760.797120pt;}
.y36{bottom:762.240000pt;}
.y3c7{bottom:763.123520pt;}
.y247{bottom:763.348640pt;}
.y1a2{bottom:766.217120pt;}
.y32a{bottom:766.235040pt;}
.yf9{bottom:766.261600pt;}
.y3f0{bottom:766.377120pt;}
.y121{bottom:766.536480pt;}
.y202{bottom:766.855200pt;}
.y314{bottom:767.173920pt;}
.y173{bottom:767.333280pt;}
.yc{bottom:768.000000pt;}
.y433{bottom:770.073440pt;}
.y13e{bottom:771.208960pt;}
.y370{bottom:771.510080pt;}
.y394{bottom:772.182240pt;}
.y35{bottom:773.760000pt;}
.yd3{bottom:775.488320pt;}
.y6d{bottom:775.978080pt;}
.y414{bottom:776.137920pt;}
.y349{bottom:776.456640pt;}
.y1c8{bottom:777.112320pt;}
.y210{bottom:777.269600pt;}
.y2c3{bottom:779.833760pt;}
.y3c6{bottom:781.197600pt;}
.y3cd{bottom:783.359840pt;}
.y432{bottom:785.279040pt;}
.y105{bottom:786.392960pt;}
.y246{bottom:787.504960pt;}
.y1a1{bottom:788.779840pt;}
.y329{bottom:788.797760pt;}
.y3ef{bottom:788.939840pt;}
.y120{bottom:789.099200pt;}
.y201{bottom:789.417920pt;}
.ya0{bottom:789.440000pt;}
.y313{bottom:789.736640pt;}
.y172{bottom:790.055360pt;}
.y393{bottom:790.256320pt;}
.yd2{bottom:790.693920pt;}
.y297{bottom:791.832320pt;}
.y36f{bottom:794.072800pt;}
.y13d{bottom:795.365280pt;}
.ya2{bottom:795.845920pt;}
.y6c{bottom:798.700160pt;}
.y413{bottom:798.700640pt;}
.y3c5{bottom:799.271680pt;}
.y348{bottom:799.338080pt;}
.y1c7{bottom:799.675040pt;}
.y20f{bottom:799.832320pt;}
.y2c2{bottom:802.555840pt;}
.yd1{bottom:805.740160pt;}
.y3cc{bottom:805.922560pt;}
.yf8{bottom:806.587200pt;}
.y392{bottom:808.330400pt;}
.y189{bottom:809.115040pt;}
.y1a0{bottom:811.501920pt;}
.y3ee{bottom:811.502560pt;}
.y328{bottom:811.519840pt;}
.y245{bottom:811.820640pt;}
.y11f{bottom:811.821280pt;}
.y200{bottom:812.140000pt;}
.y2c{bottom:812.480000pt;}
.y312{bottom:812.618080pt;}
.y171{bottom:812.777440pt;}
.ya1{bottom:813.920000pt;}
.y36e{bottom:816.794880pt;}
.y3c4{bottom:817.345760pt;}
.y431{bottom:819.355520pt;}
.y13c{bottom:819.680960pt;}
.yd0{bottom:820.786400pt;}
.y6b{bottom:821.262880pt;}
.y412{bottom:821.582080pt;}
.y1c6{bottom:822.237760pt;}
.y104{bottom:822.554400pt;}
.yb{bottom:823.040000pt;}
.y2c1{bottom:825.118560pt;}
.y391{bottom:826.404480pt;}
.y296{bottom:827.834400pt;}
.y3cb{bottom:828.804000pt;}
.y32{bottom:831.204000pt;}
.y327{bottom:834.082560pt;}
.y19f{bottom:834.224000pt;}
.y3ed{bottom:834.224640pt;}
.y430{bottom:834.229120pt;}
.y28e{bottom:834.384000pt;}
.y244{bottom:834.542720pt;}
.y11e{bottom:834.543360pt;}
.y1ff{bottom:834.702720pt;}
.y170{bottom:835.340160pt;}
.y3c3{bottom:835.419840pt;}
.ycf{bottom:835.660000pt;}
.y36d{bottom:839.357600pt;}
.y13b{bottom:842.403040pt;}
.y6a{bottom:843.984960pt;}
.y9d{bottom:844.320000pt;}
.y390{bottom:844.478560pt;}
.y31{bottom:844.800000pt;}
.y1c5{bottom:844.959840pt;}
.y103{bottom:845.117120pt;}
.yf7{bottom:847.061760pt;}
.y2c0{bottom:847.840640pt;}
.y42f{bottom:849.434720pt;}
.y295{bottom:850.556480pt;}
.yce{bottom:850.706240pt;}
.y9f{bottom:850.880000pt;}
.y3c2{bottom:853.493920pt;}
.y3ec{bottom:856.787360pt;}
.y326{bottom:856.964000pt;}
.y19e{bottom:857.105440pt;}
.y28d{bottom:857.106080pt;}
.y243{bottom:857.424160pt;}
.y11d{bottom:857.424800pt;}
.y411{bottom:857.743520pt;}
.y16f{bottom:858.062240pt;}
.y30{bottom:858.240000pt;}
.y3ca{bottom:859.680000pt;}
.y36c{bottom:861.920320pt;}
.y13a{bottom:862.084000pt;}
.ycd{bottom:865.911840pt;}
.y69{bottom:866.547680pt;}
.y38f{bottom:867.344960pt;}
.y1c4{bottom:867.522560pt;}
.y102{bottom:867.839200pt;}
.y2bf{bottom:870.403360pt;}
.y3c1{bottom:871.568000pt;}
.y2f{bottom:871.840000pt;}
.y294{bottom:873.119200pt;}
.ya{bottom:878.080000pt;}
.y19d{bottom:879.668160pt;}
.y28c{bottom:879.828160pt;}
.y242{bottom:879.986880pt;}
.y11c{bottom:879.987520pt;}
.y1fe{bottom:880.146880pt;}
.y410{bottom:880.306240pt;}
.y16e{bottom:880.624960pt;}
.ycc{bottom:880.785440pt;}
.y9b{bottom:881.280000pt;}
.y42e{bottom:883.511200pt;}
.y36b{bottom:884.642400pt;}
.y2e{bottom:885.440000pt;}
.yf6{bottom:887.536320pt;}
.y9c{bottom:887.680000pt;}
.y2be{bottom:887.840000pt;}
.y68{bottom:889.110400pt;}
.y3c0{bottom:889.642080pt;}
.y101{bottom:890.401920pt;}
.y1c3{bottom:890.404000pt;}
.y3c9{bottom:892.160000pt;}
.y139{bottom:892.960000pt;}
.y293{bottom:895.681920pt;}
.y42d{bottom:898.384800pt;}
.y19c{bottom:902.230880pt;}
.y241{bottom:902.549600pt;}
.y11b{bottom:902.550240pt;}
.y28b{bottom:902.709600pt;}
.y306{bottom:902.868960pt;}
.y1fd{bottom:903.028320pt;}
.y16d{bottom:903.187680pt;}
.y38e{bottom:903.347040pt;}
.ycb{bottom:903.348160pt;}
.y36a{bottom:907.523840pt;}
.y3bf{bottom:907.875520pt;}
.y9{bottom:910.083200pt;}
.y67{bottom:911.832480pt;}
.y100{bottom:913.283360pt;}
.y42c{bottom:913.431040pt;}
.y97{bottom:918.080000pt;}
.yca{bottom:918.553760pt;}
.y292{bottom:918.563360pt;}
.y2bd{bottom:920.320000pt;}
.y1c2{bottom:921.280000pt;}
.y9a{bottom:924.485920pt;}
.y3c8{bottom:924.648640pt;}
.y19b{bottom:924.952960pt;}
.y240{bottom:925.271680pt;}
.y11a{bottom:925.272320pt;}
.y138{bottom:925.438080pt;}
.y40f{bottom:925.591040pt;}
.y28a{bottom:925.750400pt;}
.y16c{bottom:925.909760pt;}
.y3be{bottom:925.949600pt;}
.y38d{bottom:926.069120pt;}
.yf5{bottom:928.010880pt;}
.y8{bottom:929.440000pt;}
.y2a{bottom:931.680000pt;}
.yc9{bottom:933.600000pt;}
.y66{bottom:934.395200pt;}
.y29{bottom:942.081920pt;}
.y99{bottom:942.560000pt;}
.y369{bottom:943.525920pt;}
.yff{bottom:944.000000pt;}
.y3bd{bottom:944.023680pt;}
.y42b{bottom:947.507520pt;}
.y19a{bottom:947.515680pt;}
.y23f{bottom:947.834400pt;}
.y119{bottom:947.835040pt;}
.y5{bottom:947.840000pt;}
.y40e{bottom:948.153760pt;}
.y137{bottom:948.316800pt;}
.y16b{bottom:948.472480pt;}
.y291{bottom:949.280000pt;}
.y7{bottom:949.442560pt;}
.y2bc{bottom:952.653120pt;}
.y1c1{bottom:953.601280pt;}
.yc8{bottom:954.400000pt;}
.y27{bottom:955.988960pt;}
.y65{bottom:956.957920pt;}
.y3bc{bottom:962.097760pt;}
.y42a{bottom:962.553760pt;}
.y368{bottom:967.841600pt;}
.yf4{bottom:968.485440pt;}
.y6{bottom:969.280000pt;}
.y28{bottom:969.920000pt;}
.y199{bottom:970.237760pt;}
.y23e{bottom:970.397120pt;}
.y118{bottom:970.397760pt;}
.y40d{bottom:970.716480pt;}
.y16a{bottom:971.035200pt;}
.y136{bottom:971.040000pt;}
.y94{bottom:973.120000pt;}
.yfe{bottom:976.480000pt;}
.y429{bottom:977.600000pt;}
.y26{bottom:978.711040pt;}
.y96{bottom:979.520000pt;}
.y64{bottom:979.680000pt;}
.y3bb{bottom:980.171840pt;}
.y2bb{bottom:980.806560pt;}
.y367{bottom:991.997920pt;}
.y198{bottom:993.278560pt;}
.y117{bottom:993.279200pt;}
.y40c{bottom:993.438560pt;}
.y3{bottom:993.757280pt;}
.y95{bottom:997.600000pt;}
.y3ba{bottom:998.245920pt;}
.y63{bottom:1008.800000pt;}
.yf3{bottom:1008.960000pt;}
.y428{bottom:1012.480000pt;}
.y366{bottom:1014.720000pt;}
.y197{bottom:1016.160000pt;}
.y2{bottom:1016.320000pt;}
.y60{bottom:1044.960000pt;}
.y24{bottom:1055.360000pt;}
.y62{bottom:1058.560000pt;}
.y5f{bottom:1058.880000pt;}
.y22{bottom:1059.040000pt;}
.y5e{bottom:1059.840000pt;}
.y1{bottom:1063.680000pt;}
.ha{height:13.920000pt;}
.hb{height:15.840000pt;}
.h19{height:18.080000pt;}
.h17{height:18.401333pt;}
.h30{height:22.095360pt;}
.h13{height:34.608000pt;}
.h2d{height:35.247360pt;}
.h1a{height:36.160000pt;}
.h1f{height:36.161333pt;}
.h20{height:36.318667pt;}
.h1e{height:36.320000pt;}
.h14{height:37.760000pt;}
.h21{height:38.299520pt;}
.hc{height:39.456000pt;}
.h12{height:40.800000pt;}
.h2{height:43.664640pt;}
.h32{height:43.729920pt;}
.h16{height:43.932800pt;}
.h18{height:45.152000pt;}
.h2e{height:45.820160pt;}
.h31{height:52.134375pt;}
.h1b{height:54.240000pt;}
.h1d{height:54.400000pt;}
.h24{height:55.402500pt;}
.he{height:58.752000pt;}
.h5{height:61.410000pt;}
.hf{height:61.760000pt;}
.h2b{height:62.812500pt;}
.h2a{height:66.750000pt;}
.h4{height:72.090000pt;}
.h15{height:72.352000pt;}
.hd{height:72.396160pt;}
.h1c{height:72.480000pt;}
.h8{height:83.437500pt;}
.h10{height:96.960000pt;}
.h6{height:108.800000pt;}
.h9{height:111.472500pt;}
.h7{height:122.152500pt;}
.h22{height:122.576640pt;}
.h23{height:248.800000pt;}
.h2c{height:296.478667pt;}
.h26{height:305.598667pt;}
.h27{height:316.640000pt;}
.h28{height:321.600000pt;}
.h29{height:340.320000pt;}
.h25{height:357.440000pt;}
.h11{height:784.480000pt;}
.h3{height:963.840000pt;}
.h2f{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:-15.533333pt;}
.w3{width:116.000000pt;}
.w8{width:123.840000pt;}
.wb{width:214.398667pt;}
.wa{width:244.800000pt;}
.we{width:303.680000pt;}
.wd{width:306.880000pt;}
.w4{width:351.520000pt;}
.w5{width:357.600000pt;}
.w7{width:374.081333pt;}
.wc{width:398.238667pt;}
.w6{width:514.560000pt;}
.w2{width:600.960000pt;}
.wf{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x7{left:8.640000pt;}
.x3{left:9.600000pt;}
.x25{left:13.760000pt;}
.x26{left:31.360000pt;}
.x1e{left:51.840000pt;}
.x28{left:55.200000pt;}
.x17{left:73.440000pt;}
.xe{left:80.000000pt;}
.x10{left:87.680000pt;}
.xf{left:89.600000pt;}
.x1{left:94.560000pt;}
.xa{left:104.000000pt;}
.x2{left:110.560000pt;}
.x1a{left:118.556960pt;}
.x4{left:120.160000pt;}
.x18{left:127.680000pt;}
.x35{left:132.308960pt;}
.x1b{left:142.553920pt;}
.x32{left:165.597760pt;}
.x23{left:171.680000pt;}
.x24{left:174.240000pt;}
.x21{left:177.280000pt;}
.x33{left:185.116320pt;}
.x2d{left:209.280000pt;}
.x9{left:234.398400pt;}
.x30{left:242.880000pt;}
.x31{left:248.160000pt;}
.x12{left:302.720000pt;}
.x13{left:309.600000pt;}
.x34{left:344.157600pt;}
.x22{left:370.876960pt;}
.x1d{left:374.555520pt;}
.x20{left:378.526240pt;}
.x2a{left:380.465120pt;}
.x14{left:382.576640pt;}
.x8{left:384.480000pt;}
.x15{left:394.400000pt;}
.x2b{left:396.960000pt;}
.x16{left:401.600000pt;}
.x2c{left:404.160000pt;}
.x27{left:425.600000pt;}
.x29{left:449.600000pt;}
.x5{left:497.763520pt;}
.x36{left:505.760000pt;}
.x6{left:644.162240pt;}
.xb{left:669.440000pt;}
.x1c{left:677.920000pt;}
.x19{left:683.196000pt;}
.xd{left:684.800000pt;}
.x2e{left:687.040000pt;}
.x1f{left:692.478720pt;}
.x2f{left:699.360000pt;}
.xc{left:809.280000pt;}
}




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